aboutsummaryrefslogtreecommitdiffstats
path: root/modules/rpmdragora
diff options
context:
space:
mode:
authorAngelo Naselli <anaselli@linux.it>2014-11-07 00:20:53 +0100
committerAngelo Naselli <anaselli@linux.it>2014-11-07 00:20:53 +0100
commit95592ce9fc2e0edd1168d6d80152730cce9bb2a1 (patch)
tree4c1e8c0080bb87223dd2f2068d77fedc327d597f /modules/rpmdragora
parent390efecb238391bfe4b0335b4742d66054bde44c (diff)
downloadcolin-keep-95592ce9fc2e0edd1168d6d80152730cce9bb2a1.tar
colin-keep-95592ce9fc2e0edd1168d6d80152730cce9bb2a1.tar.gz
colin-keep-95592ce9fc2e0edd1168d6d80152730cce9bb2a1.tar.bz2
colin-keep-95592ce9fc2e0edd1168d6d80152730cce9bb2a1.tar.xz
colin-keep-95592ce9fc2e0edd1168d6d80152730cce9bb2a1.zip
- More porting for packages info
- Added a link to manage hidden information (though has problems in ncurses)
Diffstat (limited to 'modules/rpmdragora')
-rwxr-xr-xmodules/rpmdragora/dragoraUpdate31
-rwxr-xr-xmodules/rpmdragora/rpmdragora120
2 files changed, 97 insertions, 54 deletions
diff --git a/modules/rpmdragora/dragoraUpdate b/modules/rpmdragora/dragoraUpdate
index b0c4247..cdc5c47 100755
--- a/modules/rpmdragora/dragoraUpdate
+++ b/modules/rpmdragora/dragoraUpdate
@@ -252,6 +252,8 @@ sub run_treeview_dialog {
my $closeButton = $factory->createPushButton($hbox, $loc->N("Quit") );
$statusbar = $factory->createBusyIndicator($vbox, "" );
+ my $info_options = {};
+
while(1) {
my $event = $dialog->waitForEvent();
my $eventType = $event->eventType();
@@ -260,6 +262,31 @@ sub run_treeview_dialog {
if ($eventType == $yui::YEvent::CancelEvent) {
last if quit();
}
+ elsif ($eventType == $yui::YEvent::MenuEvent) {
+ my $item = $event->item();
+ if (!$item) {
+ #URL emitted or at least a ref into RichText widget
+ my $url = yui::toYMenuEvent($event)->id ();
+ $item = $packageTbl->selectedItem();
+ my $pkg = $data{$item->index()}{fullname};
+ if ($url eq $AdminPanel::Rpmdragora::gui::hidden_info{details}) {
+ $info_options->{details} = 1;
+ AdminPanel::Rpmdragora::gui::setInfoOnWidget($pkg, $infoBox, $info_options);
+ }
+ elsif ($url eq $AdminPanel::Rpmdragora::gui::hidden_info{files}) {
+ $info_options->{files} = 1;
+ AdminPanel::Rpmdragora::gui::setInfoOnWidget($pkg, $infoBox, $info_options);
+ }
+ elsif ($url eq $AdminPanel::Rpmdragora::gui::hidden_info{changelog}) {
+ $info_options->{changelog} = 1;
+ AdminPanel::Rpmdragora::gui::setInfoOnWidget($pkg, $infoBox, $info_options);
+ }
+ else {
+ # default it's really a URL
+ AdminPanel::Rpmdragora::gui::run_browser($url);
+ }
+ }
+ }
elsif ($eventType == $yui::YEvent::WidgetEvent) {
# widget selected
my $widget = $event->widget();
@@ -295,6 +322,7 @@ sub run_treeview_dialog {
my $item = $packageTbl->selectedItem();
if ($item) {
my $pkg = $data{$item->index()}{fullname};
+ $info_options = {};
AdminPanel::Rpmdragora::gui::setInfoOnWidget($pkg, $infoBox);
}
my $wEvent = yui::toYWidgetEvent($event);
@@ -308,9 +336,6 @@ sub run_treeview_dialog {
}
yui::YUI::app()->normalCursor();
}
- elsif ($widget == $infoBox) {
- print "RichText widget Event\n";
- }
elsif ($widget == $selectButton) {
yui::YUI::app()->busyCursor();
$initialized = 0;
diff --git a/modules/rpmdragora/rpmdragora b/modules/rpmdragora/rpmdragora
index 51f2b55..f566a76 100755
--- a/modules/rpmdragora/rpmdragora
+++ b/modules/rpmdragora/rpmdragora
@@ -198,14 +198,14 @@ sub detaillist_changeditem_callback {
}
sub detaillist_callback {
- my ($selection, $info, $options) = @_;
+ my ($selection, $info, $options, $show_options) = @_;
$info->setValue("");
return if( ref $selection ne "yui::YItem");
my $info_text ="<h2>" . $loc->N("Informations") . "</h2>";
- my @data = get_info($options->{table_item_list}[$selection->index()],$info->parent()->parent());
+ my @data = get_info($options->{table_item_list}[$selection->index()], $show_options);
for(@{$data[0]}){
if(ref $_ ne "ARRAY"){
$info_text .= "<br />" . $_;
@@ -1084,6 +1084,8 @@ sub run_treeview_dialog {
ask_browse_tree_given_widgets_for_rpmdragora($options);
+ my $info_options = {};
+
######## main loop ####################
while(1) {
my $event = $my_win->waitForEvent();
@@ -1098,58 +1100,73 @@ sub run_treeview_dialog {
elsif ($eventType == $yui::YEvent::MenuEvent) {
### MENU ###
my $item = $event->item();
- my $menuLabel = $item->label();
- if ($menuLabel eq $fileMenu{ quit }->label()) {
- #menu File->Quit
- quit();
- last;
- }
- elsif ($menuLabel eq $fileMenu{ update }->label()) {
- update_sources_interactive($urpm, transient => $my_win)
- and $reload_db_and_clear_all->();
+ if (!$item) {
+ #URL emitted or at least a ref into RichText widget
+ my $url = yui::toYMenuEvent($event)->id ();
+ $item = $detail_list->selectedItem();
+ if ($url eq $AdminPanel::Rpmdragora::gui::hidden_info{details}) {
+ $info_options->{details} = 1;
+ detaillist_callback($item, $info, \%$options, $info_options);
+ }
+ else {
+ # default it's really a URL
+ AdminPanel::Rpmdragora::gui::run_browser($url);
+ }
}
- elsif ($menuLabel eq $fileMenu{ reset_sel }->label()) {
- if ($MODE ne 'remove') {
- my $db = eval { open_rpm_db() };
- if (!ref($db)) {
- statusbar_msg($loc->N("Reset aborted (RPM DB is locked by another process)"), 1);
- return;
+ else {
+ my $menuLabel = $item->label();
+ if ($menuLabel eq $fileMenu{ quit }->label()) {
+ #menu File->Quit
+ quit();
+ last;
+ }
+ elsif ($menuLabel eq $fileMenu{ update }->label()) {
+ update_sources_interactive($urpm, transient => $my_win)
+ and $reload_db_and_clear_all->();
+ }
+ elsif ($menuLabel eq $fileMenu{ reset_sel }->label()) {
+ if ($MODE ne 'remove') {
+ my $db = eval { open_rpm_db() };
+ if (!ref($db)) {
+ statusbar_msg($loc->N("Reset aborted (RPM DB is locked by another process)"), 1);
+ return;
+ }
+ $urpm->disable_selected(
+ $db, $urpm->{state},
+ map { if_($pkgs->{$_}{selected}, $pkgs->{$_}{pkg}) } keys %$pkgs,);
}
- $urpm->disable_selected(
- $db, $urpm->{state},
- map { if_($pkgs->{$_}{selected}, $pkgs->{$_}{pkg}) } keys %$pkgs,);
+ undef $pkgs->{$_}{selected} foreach keys %$pkgs;
+ reset_search();
+ $size_selected = 0;
+ $force_displaying_group = 1;
+ my $tree_selection = $tree->currentItem();
+ }
+ elsif ($menuLabel eq $fileMenu{ reload }->label()) {
+ $reload_db_and_clear_all->();
+ }
+ elsif ($menuLabel eq $helpMenu{ about }->label()) {
+ my $translators = $loc->N("_: Translator(s) name(s) & email(s)\n");
+ $translators =~ s/\</\&lt\;/g;
+ $translators =~ s/\>/\&gt\;/g;
+ my $sh_gui = AdminPanel::Shared::GUI->new();
+ $sh_gui->AboutDialog({ name => "Rpmdragora",
+ version => "TODO",
+ credits => $loc->N("Copyright (C) %s Mageia community", '2013-2014'),
+ license => $loc->N("GPLv2"),
+ description => $loc->N("Rpmdragora is the Mageia package management tool."),
+ authors => $loc->N("<h3>Developers</h3>
+ <ul><li>%s</li>
+ <li>%s</li>
+ </ul>
+ <h3>Translators</h3>
+ <ul><li>%s</li></ul>",
+ "Angelo Naselli &lt;anaselli\@linux.it&gt;",
+ "Matteo Pasotti &lt;matteo.pasotti\@gmail.com&gt;",
+ $translators
+ ),
+ }
+ );
}
- undef $pkgs->{$_}{selected} foreach keys %$pkgs;
- reset_search();
- $size_selected = 0;
- $force_displaying_group = 1;
- my $tree_selection = $tree->currentItem();
- }
- elsif ($menuLabel eq $fileMenu{ reload }->label()) {
- $reload_db_and_clear_all->();
- }
- elsif ($menuLabel eq $helpMenu{ about }->label()) {
- my $translators = $loc->N("_: Translator(s) name(s) & email(s)\n");
- $translators =~ s/\</\&lt\;/g;
- $translators =~ s/\>/\&gt\;/g;
- my $sh_gui = AdminPanel::Shared::GUI->new();
- $sh_gui->AboutDialog({ name => "Rpmdragora",
- version => "TODO",
- credits => $loc->N("Copyright (C) %s Mageia community", '2013-2014'),
- license => $loc->N("GPLv2"),
- description => $loc->N("Rpmdragora is the Mageia package management tool."),
- authors => $loc->N("<h3>Developers</h3>
- <ul><li>%s</li>
- <li>%s</li>
- </ul>
- <h3>Translators</h3>
- <ul><li>%s</li></ul>",
- "Angelo Naselli &lt;anaselli\@linux.it&gt;",
- "Matteo Pasotti &lt;matteo.pasotti\@gmail.com&gt;",
- $translators
- ),
- }
- );
}
}
elsif ($eventType == $yui::YEvent::WidgetEvent) {
@@ -1180,6 +1197,7 @@ sub run_treeview_dialog {
tree_callback($tree->currentItem(),\%$options);
}
elsif ($widget == $detail_list){
+ $info_options = {};
detaillist_callback($detail_list->selectedItem(), $info, \%$options);
detaillist_changeditem_callback($detail_list, \%$options);
}
graph'>
-rw-r--r--perl-install/share/po/fa.po21186
-rw-r--r--perl-install/share/po/fi.po28908
-rw-r--r--perl-install/share/po/fr.po30034
-rw-r--r--perl-install/share/po/ga.po23379
-rw-r--r--perl-install/share/po/gl.po25052
-rw-r--r--perl-install/share/po/he.po23579
-rw-r--r--perl-install/share/po/help-de.pot1921
-rw-r--r--perl-install/share/po/help-es.pot2976
-rw-r--r--perl-install/share/po/help-fr.pot2687
-rw-r--r--perl-install/share/po/help-it.pot2000
-rw-r--r--perl-install/share/po/help-ru.pot158
-rwxr-xr-xperl-install/share/po/help_xml2pm.pl183
-rw-r--r--perl-install/share/po/hi.po18856
-rw-r--r--perl-install/share/po/hr.po28315
-rw-r--r--perl-install/share/po/hu.po30850
-rw-r--r--perl-install/share/po/i18n_compssUsers3
-rw-r--r--perl-install/share/po/id.po29987
-rw-r--r--perl-install/share/po/is.po25230
-rw-r--r--perl-install/share/po/it.po28976
-rw-r--r--perl-install/share/po/ja.po31420
-rw-r--r--perl-install/share/po/ko.po25894
-rw-r--r--perl-install/share/po/lt.po25400
-rw-r--r--perl-install/share/po/lv.po26783
-rw-r--r--perl-install/share/po/mk.po20884
-rw-r--r--perl-install/share/po/ms.po18502
-rw-r--r--perl-install/share/po/mt.po28664
-rw-r--r--perl-install/share/po/nb.po23034
-rw-r--r--perl-install/share/po/nl.po35532
-rw-r--r--perl-install/share/po/no.po14368
-rw-r--r--perl-install/share/po/pl.po29279
-rw-r--r--perl-install/share/po/pt.po29335
-rw-r--r--perl-install/share/po/pt_BR.po28999
-rw-r--r--perl-install/share/po/ro.po24829
-rw-r--r--perl-install/share/po/ru.po29574
-rw-r--r--perl-install/share/po/sk.po29439
-rw-r--r--perl-install/share/po/sl.po23518
-rw-r--r--perl-install/share/po/sp.po15424
-rw-r--r--perl-install/share/po/sq.po30408
-rw-r--r--perl-install/share/po/sr.po29498
-rw-r--r--perl-install/share/po/sr@Latn.po21158
-rw-r--r--perl-install/share/po/sv.po29047
-rw-r--r--perl-install/share/po/ta.po28566
-rw-r--r--perl-install/share/po/tg.po19988
-rw-r--r--perl-install/share/po/th.po24887
-rw-r--r--perl-install/share/po/tr.po28363
-rwxr-xr-xperl-install/share/po/translation_size.pl45
-rw-r--r--perl-install/share/po/uk.po28833
-rw-r--r--perl-install/share/po/uz.po19072
-rw-r--r--perl-install/share/po/uz@Cyrl.po19533
-rwxr-xr-xperl-install/share/po/validate.pl100
-rw-r--r--perl-install/share/po/vi.po29145
-rw-r--r--perl-install/share/po/wa.po28728
-rw-r--r--perl-install/share/po/zh_CN.po28054
-rw-r--r--perl-install/share/po/zh_TW.po27144
-rwxr-xr-xperl-install/standalone/drakconnect1109
100 files changed, 600974 insertions, 1088753 deletions
diff --git a/perl-install/list.sparc b/perl-install/list.sparc
deleted file mode 100644
index 448e0b63e..000000000
--- a/perl-install/list.sparc
+++ /dev/null
@@ -1,74 +0,0 @@
-/bin/ash
-/bin/cpio
-/lib/libnss_nis.so.2
-/lib/libnss_files.so.2
-/lib/libnss_dns.so.2
-/lib/libresolv.so.2
-/etc/protocols
-/sbin/fdisk
-/sbin/ifport
-/sbin/insmod
-/sbin/mkraid
-/sbin/rmmod
-/sbin/mkdosfs
-/sbin/mke2fs
-/sbin/raidstart
-/usr/bin/bzip2
-/usr/bin/perl
-/usr/lib/libimlib-png.so
-/usr/lib/gtk/themes/engines/libpixmap.so
-/usr/lib/gtk/themes/engines/libpixmap.la
-/usr/lib/libimlib-png.so
-/usr/lib/perl5/5.00503/AutoLoader.pm
-/usr/lib/perl5/5.00503/Carp.pm
-/usr/lib/perl5/5.00503/Data/Dumper.pm
-/usr/lib/perl5/5.00503/Exporter.pm
-/usr/lib/perl5/5.00503/FileHandle.pm
-/usr/lib/perl5/5.00503/SelectSaver.pm
-/usr/lib/perl5/5.00503/SelfLoader.pm
-/usr/lib/perl5/5.00503/Symbol.pm
-/usr/lib/perl5/5.00503/Time/Local.pm
-/usr/lib/perl5/5.00503/dumpvar.pl
-/usr/lib/perl5/5.00503/sparc-linux/Config.pm
-/usr/lib/perl5/5.00503/sparc-linux/DynaLoader.pm
-/usr/lib/perl5/5.00503/sparc-linux/Fcntl.pm
-/usr/lib/perl5/5.00503/sparc-linux/auto/Fcntl/Fcntl.bs
-/usr/lib/perl5/5.00503/sparc-linux/auto/Fcntl/Fcntl.so
-/usr/lib/perl5/5.00503/sparc-linux/IO/File.pm
-/usr/lib/perl5/5.00503/sparc-linux/IO/Handle.pm
-/usr/lib/perl5/5.00503/sparc-linux/IO/Seekable.pm
-/usr/lib/perl5/5.00503/sparc-linux/IO/Socket.pm
-/usr/lib/perl5/5.00503/sparc-linux/Socket.pm
-/usr/lib/perl5/5.00503/sparc-linux/_h2ph_pre.ph
-/usr/lib/perl5/5.00503/sparc-linux/asm/unistd.ph
-/usr/lib/perl5/5.00503/sparc-linux/asm-sparc/unistd.ph
-/usr/lib/perl5/5.00503/sparc-linux/asm-sparc64/unistd.ph
-/usr/lib/perl5/5.00503/sparc-linux/auto/Data/Dumper/Dumper.bs
-/usr/lib/perl5/5.00503/sparc-linux/auto/Data/Dumper/Dumper.so
-/usr/lib/perl5/5.00503/sparc-linux/auto/IO/IO.so
-/usr/lib/perl5/5.00503/sparc-linux/auto/Socket/Socket.bs
-/usr/lib/perl5/5.00503/sparc-linux/auto/Socket/Socket.so
-/usr/lib/perl5/5.00503/sparc-linux/bits/syscall.ph
-/usr/lib/perl5/5.00503/sparc-linux/sys/syscall.ph
-/usr/lib/perl5/5.00503/sparc-linux/syscall.ph
-/usr/lib/perl5/5.00503/lib.pm
-/usr/lib/perl5/5.00503/overload.pm
-/usr/lib/perl5/5.00503/strict.pm
-/usr/lib/perl5/5.00503/vars.pm
-/usr/lib/perl5/site_perl/5.005/sparc-linux/Gtk.pm
-/usr/lib/perl5/site_perl/5.005/sparc-linux/Gtk/Types.pm
-/usr/lib/perl5/site_perl/5.005/sparc-linux/Net/Cmd.pm
-/usr/lib/perl5/site_perl/5.005/sparc-linux/Net/Config.pm
-/usr/lib/perl5/site_perl/5.005/sparc-linux/Net/FTP.pm
-/usr/lib/perl5/site_perl/5.005/sparc-linux/Net/FTP/A.pm
-/usr/lib/perl5/site_perl/5.005/sparc-linux/Net/FTP/I.pm
-/usr/lib/perl5/site_perl/5.005/sparc-linux/Net/FTP/dataconn.pm
-/usr/lib/perl5/site_perl/5.005/sparc-linux/Net/Netrc.pm
-/usr/lib/perl5/site_perl/5.005/sparc-linux/auto/Gtk/Gtk.bs
-/usr/lib/perl5/site_perl/5.005/sparc-linux/auto/Gtk/Gtk.so
-/usr/lib/rpm/rpmrc
-/usr/X11R6/bin/XF86_FBDev
-/usr/X11R6/bin/XF86_Mach64
-/usr/X11R6/bin/Xsun
-/usr/X11R6/bin/xmodmap
-/usr/X11R6/lib/modules/xf86Wacom.so
diff --git a/perl-install/network/adsl.pm b/perl-install/network/adsl.pm
index 02d249b8f..99a5a6b5b 100644
--- a/perl-install/network/adsl.pm
+++ b/perl-install/network/adsl.pm
@@ -1,108 +1,96 @@
-package network::adsl; # $Id$
+package network::adsl;
use common;
use run_program;
use network::tools;
use network::ethernet;
use modules;
+use Data::Dumper;
use vars qw(@ISA @EXPORT);
use MDK::Common::Globals "network", qw($in $prefix);
@ISA = qw(Exporter);
@EXPORT = qw(adsl_ask_info adsl_detect adsl_conf adsl_conf_backend);
-
-sub get_wizard {
- my ($wiz, $_type) = @_;
- my $netc = $wiz->{var}{netc};
-
- my %l = (
- 'pppoe' => N("use pppoe"),
- 'pptp' => N("use pptp"),
- 'dhcp' => N("use dhcp"),
- 'speedtouch' => N("Alcatel speedtouch usb") . if_($netc->{autodetect}{adsl}{speedtouch}, N(" - detected")),
- 'sagem' => N("Sagem (using pppoa) usb") . if_($netc->{autodetect}{adsl}{sagem}, N(" - detected")),
- 'sagem_dhcp' => N("Sagem (using dhcp) usb") . if_($netc->{autodetect}{adsl}{sagem}, N(" - detected")),
- # 'eci' => N("ECI Hi-Focus"), # this one needs eci agreement
- );
-
- $wiz->{var}{adsl} = {
- connection_list => \%l,
- type => "",
- };
- add2hash($wiz->{pages},
- {
- adsl => {
- name => N("Connect to the Internet") . "\n\n" .
- N("The most common way to connect with adsl is pppoe.
-Some connections use pptp, a few use dhcp.
-If you don't know, choose 'use pppoe'"),
- data => [
- {
- label => N("ADSL connection type :"), val_ref => \$wiz->{var}{adsl}{type}, list => [ sort values %l ] },
- ],
- pre => sub {
- $wiz->{var}{adsl}{type} = $l{sagem}; # debug
- $wiz->{var}{adsl}{type} ||= find { $netc->{autodetect}{adsl}{$_} } keys %l;
- print "\n\ntype is «$wiz->{var}{adsl}{type}»\n\n";
- },
- post => sub {
- $wiz->{var}{adsl}{type} = find { $l{$_} eq $wiz->{var}{adsl}{type} } keys %l;
- my $adsl = $wiz->{var}{adsl}{connection};
- my $type = $wiz->{var}{adsl}{type};
- my $netcnx = $wiz->{var}{netcnx};
- $netcnx->{type} = "adsl_$type";
-
- my %packages = (
- 'dhcp' => [ 'dhcpcd' ],
- 'eci' => [ 'eciadsl' ],
- 'pppoe' => [ 'rp-pppoe' ],
- 'pptp' => [ 'pptp-adsl' ],
- 'sagem' => [ 'adiusbadsl' ],
- 'sagem_dhcp' => [ qw(adiusbadsl dhcpcd) ],
- 'speedtouch' => [ 'speedtouch' ],
- );
- $in->do_pkgs->install(@{$packages{$type}});
- $netcnx->{"adsl_$type"} = {};
- $netcnx->{"adsl_$type"}{vpivci} = '' if $type =~ /eci|speedtouch/;
- return 'ethernet' if $type eq 'dhcp';
- adsl_probe_info($adsl, $netc, $type);
- # my ($adsl, $netc, $intf, $adsl_type) = @_;
- # ask_info2($adsl, $netc);
- return "hw_account";
- },
- },
- adsl_conf2 => {
- #$adsl_type =~ /sagem|speedtouch|eci/ or conf_network_card($netc, $intf, 'static', '10.0.0.10') or goto adsl_conf_step_1;
- #adsl_conf_backend($adsl, $netc, $adsl_type) or goto adsl_conf_step_1;
- #1;
- },
- ethernet => {
- #go_ethernet($netc, $intf, 'dhcp', '', '', $first_time);
- },
- end => {
- post => sub {
- $wiz->{var}{adsl}{type} =~ /speedtouch|eci/ or $netconnect::need_restart_network = 1;
- },
- },
- });
-};
-
-sub adsl_probe_info {
- my ($adsl, $netc, $adsl_type) = @_;
- my $pppoe_file = "$prefix/etc/ppp/pppoe.conf";
- my $pptp_file = "$prefix/etc/sysconfig/network-scripts/net_cnx_up";
- my %pppoe_conf; %pppoe_conf = getVarsFromSh($pppoe_file) if (! defined $adsl_type || $adsl_type =~ /pppoe/) && -f $pppoe_file;
- my $login = $pppoe_conf{USER};
- foreach (qw(/etc/ppp/peers/adsl /etc/ppp/options /etc/ppp/options.adsl)) {
- ($login) = map { if_(/^user\s+"([^"]+)"/, $1) } cat_("$prefix/$_") if !$login && -r "$prefix/$_";
+sub configure {
+ my ($netcnx, $netc, $intf, $first_time) = @_;
+ $::isInstall and $in->set_help('configureNetworkADSL');
+ conf_adsl_step1:
+ # my $type = $in->ask_from_list_(N("Connect to the Internet"),
+ # N("The most common way to connect with adsl is pppoe.
+ # Some connections use pptp, a few ones use dhcp.
+ # If you don't know, choose 'use pppoe'"), [N_("use pppoe"), N_("use pptp"), N_("use dhcp"), N_("Alcatel speedtouch usb"), N_("ECI Hi-Focus")]) or return;
+ my $l = [ N_("use pppoe"),
+ N_("use pptp"),
+ N_("use dhcp"),
+ N_("Alcatel speedtouch usb") . if_($netc->{autodetect}{adsl}{speedtouch}, " - detected"),
+ N_("Sagem (using pppoe) usb") . if_($netc->{autodetect}{adsl}{sagem}, " - detected"),
+ ];
+ my $type = $in->ask_from_list_(N("Connect to the Internet"),
+ N("The most common way to connect with adsl is pppoe.
+Some connections use pptp, a few ones use dhcp.
+If you don't know, choose 'use pppoe'"), $l) or return;
+ $type =~ s/use //;
+ if ($type eq 'pppoe') {
+ $in->do_pkgs->install("rp-$type");
+ $netcnx->{type} = "adsl_$type";
+# $netcnx->{"adsl_$type"} = {};
+ adsl_conf($netcnx->{"adsl_$type"}, $netc, $intf, $type) or goto conf_adsl_step1;
+ #-network::configureNetwork($prefix, $netc, $in, $intf, $first_time);
+# if ($::isStandalone and $netc->{NET_DEVICE}) {
+# $in->ask_yesorno(N("Network interface"),
+# N("I'm about to restart the network device %s. Do you agree?", $netc->{NET_DEVICE}), 1)
+# and system("$prefix/sbin/ifdown $netc->{NET_DEVICE}; $prefix/sbin/ifup $netc->{NET_DEVICE}");
+# }
+ }
+ #- use pppoe for Sagem modem, but NET_DEVICE is now ADIModem instead of ethx.
+ if ($type =~ /Sagem/) {
+ $in->do_pkgs->install(qw(rp-pppoe adiusbadsl));
+ $netcnx->{type} = "adsl_pppoe";
+ $netcnx->{adsl_pppoe} = {};
+ modules::add_alias('ADIModem', 'adiusbadsl');
+ $netc->{$_} = 'ADIModem' foreach qw(NET_DEVICE NET_INTERFACE);
+ adsl_conf($netcnx->{adsl_pppoe}, $netc, $intf, $type) or goto conf_adsl_step1;
+ }
+ if ($type eq 'dhcp') {
+ $in->do_pkgs->install(qw(dhcpcd));
+ go_ethernet($netc, $intf, 'dhcp', '', '', $first_time) or goto conf_adsl_step1;
+ }
+ if ($type eq 'pptp') {
+ $in->do_pkgs->install(qw(pptp-adsl));
+ $netcnx->{type} = "adsl_$type";
+ $netcnx->{"adsl_$type"} = {};
+ adsl_conf($netcnx->{"adsl_$type"}, $netc, $intf, $type) or goto conf_adsl_step1;
}
- ($login) = map { if_(/\sname\s+([^ \n]+)/, $1) } cat_($pptp_file) if (! defined $adsl_type || $adsl_type =~ /pptp/) && -r $pptp_file;
- my $passwd = passwd_by_login($login);
- $pppoe_conf{DNS1} ||= '';
- $pppoe_conf{DNS2} ||= '';
- add2hash($netc, { dnsServer2 => $pppoe_conf{DNS1}, dnsServer3 => $pppoe_conf{DNS2}, DOMAINNAME2 => '' });
- add2hash($adsl, { login => $login, passwd => $passwd, passwd2 => '' });
+ if ($type =~ /speedtouch/) {
+ $type = 'speedtouch';
+ $in->do_pkgs->install(qw(speedtouch));
+ $netcnx->{type} = "adsl_$type";
+ $netcnx->{"adsl_$type"} = {};
+ $netcnx->{"adsl_$type"}{vpivci} = '';
+ adsl_conf($netcnx->{"adsl_$type"}, $netc, $intf, $type) or goto conf_adsl_step1;
+ }
+ if ($type =~ /ECI/) {
+ $type = 'eci';
+ $in->do_pkgs->install(qw(eciadsl));
+ $netcnx->{type} = "adsl_$type";
+ $netcnx->{"adsl_$type"} = {};
+ $netcnx->{"adsl_$type"}{vpivci} = '';
+ adsl_conf($netcnx->{"adsl_$type"}, $netc, $intf, $type) or goto conf_adsl_step1;
+ }
+ $type =~ /speedtouch|eci/ or $netconnect::need_restart_network = 1;
+ 1;
+}
+
+sub adsl_ask_info {
+ my ($adsl, $netc, $_intf, $adsl_type) = @_;
+ my $pppoe_file = "/etc/ppp/pppoe.conf";
+ my $pppoe_conf = { getVarsFromSh($pppoe_file) } if $adsl_type =~ /pppoe/ && -f $pppoe_file;
+ $pppoe_conf->{DNS1} ||= '';
+ $pppoe_conf->{DNS2} ||= '';
+ add2hash($netc, { dnsServer2 => $pppoe_conf->{DNS1}, dnsServer3 => $pppoe_conf->{DNS2}, DOMAINNAME2 => '' });
+ add2hash($adsl, { login => $pppoe_conf->{USER}, passwd => passwd_by_login($pppoe_conf->{USER}), passwd2 => '' });
+ ask_info2($adsl, $netc);
}
sub adsl_detect {
@@ -113,9 +101,20 @@ sub adsl_detect {
return $adsl if $adsl->{speedtouch} || $adsl->{sagem};
}
+sub adsl_conf {
+ my ($adsl, $netc, $intf, $adsl_type) = @_;
+
+ adsl_conf_step_1:
+ adsl_ask_info($adsl, $netc, $intf, $adsl_type) or return;
+ adsl_conf_step_2:
+ $adsl_type =~ /speedtouch|eci/ or conf_network_card($netc, $intf, 'static', '10.0.0.10') or goto adsl_conf_step_1;
+ adsl_conf_backend($adsl, $netc, $adsl_type);
+ 1;
+}
+
sub adsl_conf_backend {
- my ($adsl, $netc, $adsl_type, $o_netcnx) = @_;
- defined $o_netcnx and $netc->{adsltype} = $o_netcnx->{type};
+ my ($adsl, $netc, $adsl_type, $netcnx) = @_;
+ defined $netcnx and $netc->{adsltype} = $netcnx->{type};
$netc->{adsltype} ||= "adsl_$adsl_type";
mkdir_p("$prefix/etc/ppp");
output("$prefix/etc/ppp/options",
@@ -138,47 +137,12 @@ defaultroute
} "$prefix/etc/ppp/pppoe.conf";
}
- if ($adsl_type eq 'sagem') {
- substInFile {
- s/VCI=.*\n/VCI=00000023\n/;
- s/Encapsulation=.*\n/Encapsulation=00000006\n/;
- } "$prefix/etc/analog/adiusbadsl";
- output("$prefix/etc/ppp/peers/adsl",
-qq(noauth
-noipdefault
-pty "/usr/sbin/pppoa -I `/usr/sbin/adictrl -s; /usr/sbin/adictrl -i`"
-mru 1492
-mtu 1492
-kdebug 1
-nobsdcomp
-nodeflate
-noaccomp -am
-nopcomp
-noccp
-novj
-novjccomp
-holdoff 4
-maxfail 25
-persist
-usepeerdns
-defaultroute
-user "$adsl->{login}"
-));
- }
-
- if ($adsl_type eq 'sagem_dhcp') {
- substInFile {
- s/VCI=.*\n/VCI=00000024\n/;
- s/Encapsulation=.*\n/Encapsulation=00000004\n/;
- } "$prefix/etc/analog/adiusbadsl";
- }
-
if ($adsl_type eq 'speedtouch') {
- my ($vpi, $vci) = $netc->{vpivci} =~ /(\d+)_(\d+)/ or return;
+ $netc->{vpivci} =~ /(\d+)_(\d+)/;
output("$prefix/etc/ppp/peers/adsl",
qq(noauth
noipdefault
-pty "/usr/sbin/pppoa3 -e 1 -c -vpi $vpi -vci $vci"
+pty "/usr/bin/pppoa3 -vpi $1 -vci $2"
sync
kdebug 1
noaccomp
@@ -192,50 +156,29 @@ usepeerdns
defaultroute
user "$adsl->{login}"
));
- modules::add_alias($_->[0], $_->[1]) foreach ['speedtch', 'off'],
- ['char-major-108', 'ppp_generic'],
+ modules::add_alias($_->[0], $_->[1]) foreach ['char-major-108', 'ppp_generic'],
['tty-ldisc-3', 'ppp_async'],
['tty-ldisc-13', 'n_hdlc'],
['tty-ldisc-14', 'ppp_synctty'],
['ppp-compress-21', 'bsd_comp'],
['ppp-compress-24', 'ppp_deflate'],
['ppp-compress-26', 'ppp_deflate'];
- $::isStandalone and modules::write_conf();
- $in->do_pkgs->what_provides("speedtouch_mgmt") and $in->do_pkgs->ensure_is_installed('speedtouch_mgmt', '/usr/share/speedtouch/mgmt.o', 'auto');
- -e "$prefix/usr/share/speedtouch/mgmt.o" and goto end_firmware;
-
- firmware:
-
- my $l = [ N_("Use a floppy"),
- N_("Use my Windows partition"),
- N_("Do it later"),
- ];
-
- my $answer = $in->ask_from_list_(N("Firmware needed"),
- N("You need the Alcatel microcode.
-You can provide it now via a floppy or your windows partition,
-or skip and do it later."), $l) or return;
-
- my $destination = "$prefix/usr/share/speedtouch/";
- $answer eq 'Use a floppy' && network::tools::copy_firmware('floppy', $destination, 'mgmt.o') || goto firmware;
- $answer eq 'Use my Windows partition' && network::tools::copy_firmware('windows', $destination, 'alcaudsl.sys') || goto firmware;
- $answer eq 'Do it later' and $in->ask_warn('', N("You need the Alcatel microcode.
-Download it at:
-%s
-and copy the mgmt.o in /usr/share/speedtouch", 'http://prdownloads.sourceforge.net/speedtouch/speedtouch-20011007.tar.bz2'));
-
- -e "$destination/alcaudsl.sys" and rename "$destination/alcaudsl.sys", "$destination/mgmt.o";
- end_firmware:
+ $::isStandalone and modules::write_conf($prefix);
+ $in->do_pkgs->what_provides("speedtouch_mgmt") and $in->do_pkgs->install('speedtouch_mgmt');
+ -e "$prefix/usr/share/speedtouch/mgmt.o" or $in->ask_warn('', N("You need the alcatel microcode.
+Download it at
+http://www.speedtouchdsl.com/dvrreg_lx.htm
+and copy the mgmt.o in /usr/share/speedtouch"));
}
-
- if ($adsl_type eq 'eci') {
- my ($vpi, $vci) = $netc->{vpivci} =~ /(\d+)_(\d+)/ or return;
- output("$prefix/etc/ppp/peers/adsl",
+
+if ($adsl_type eq 'eci') {
+ $netc->{vpivci} =~ /(\d+)_(\d+)/;
+ output("$prefix/etc/ppp/peers/adsl",
qq(debug
kdebug 1
noipdefault
defaultroute
-pty "/usr/bin/pppoeci -v 1 -vpi $vpi -vci $vci"
+pty "/usr/bin/pppoeci -v 1 -vpi $1 -vci $2"
sync
noaccomp
nopcomp
@@ -249,11 +192,11 @@ usepeerdns
noauth
lcp-echo-interval 0
));
- modules::add_alias($_->[0], $_->[1]) foreach ['char-major-108', 'ppp_generic'],
- ['tty-ldisc-14', 'ppp_synctty'],
- ['tty-ldisc-13', 'n_hdlc'];
- $::isStandalone and modules::write_conf();
- }
+ modules::add_alias($_->[0], $_->[1]) foreach ['char-major-108', 'ppp_generic'],
+ ['tty-ldisc-14', 'ppp_synctty'],
+ ['tty-ldisc-13', 'n_hdlc'];
+ $::isStandalone and modules::write_conf($prefix);
+}
if ($adsl_type eq 'pptp') {
write_cnx_script($netc, "adsl",
@@ -274,30 +217,12 @@ LC_ALL=C LANG=C LANGUAGE=C LC_MESSAGES=C /usr/sbin/adsl-start $netc->{NET_DEVICE
/usr/share/speedtouch/speedtouch.sh start
',
'/usr/share/speedtouch/speedtouch.sh stop
-', $netc->{adsltype}) } elsif ($adsl_type eq 'sagem') {
- write_cnx_script($netc, 'adsl',
-'/sbin/route del default
-/usr/sbin/adictrl -w
-#INTERFACE=`/usr/sbin/adictrl -i`
-#/sbin/ifconfig $INTERFACE 192.168.60.30 netmask 255.255.255.0 up
-/usr/sbin/pppd file /etc/ppp/peers/adsl
-',
-'/usr/sbin/stopadsl
-', $netc->{adsltype}) } elsif ($adsl_type eq 'sagem_dhcp') {
- write_cnx_script($netc, 'adsl',
-'/sbin/route del default
-/usr/sbin/adictrl -w
-INTERFACE=`/usr/sbin/adictrl -i`
-/sbin/dhcpcd $INTERFACE
-',
-'INTERFACE=`/usr/sbin/adictrl -i`
-/sbin/ifdown $INTERFACE
', $netc->{adsltype}) } elsif ($adsl_type eq 'eci') {
write_cnx_script($netc, 'adsl',
'/sbin/route del default
/usr/bin/startmodem
',
-"# stop is still beta...
+"# et pour le stop on se touche c'est du beta...
echo 'not yet implemented, still beta software'
", $netc->{adsltype}) }
diff --git a/perl-install/network/drakfirewall.pm b/perl-install/network/drakfirewall.pm
index 428c855c2..8951ecd44 100644
--- a/perl-install/network/drakfirewall.pm
+++ b/perl-install/network/drakfirewall.pm
@@ -1,7 +1,7 @@
package network::drakfirewall; # $Id$
-use strict;
use diagnostics;
+use strict;
use network::shorewall;
use common;
@@ -9,49 +9,43 @@ use common;
my @all_servers =
(
{
- name => N_("Web Server"),
+ name => N("Web Server"),
pkg => 'apache apache-mod_perl boa',
ports => '80/tcp 443/tcp',
},
{
- name => N_("Domain Name Server"),
+ name => N("Domain Name Server"),
pkg => 'bind',
ports => '53/tcp 53/udp',
},
{
- name => N_("SSH server"),
+ name => "SSH",
pkg => 'openssh-server',
ports => '22/tcp',
},
{
- name => N_("FTP server"),
+ name => "FTP",
pkg => 'ftp-server-krb5 wu-ftpd proftpd pure-ftpd',
ports => '20/tcp 21/tcp',
},
{
- name => N_("Mail Server"),
+ name => N("Mail Server"),
pkg => 'sendmail postfix qmail',
ports => '25/tcp',
},
{
- name => N_("POP and IMAP Server"),
+ name => N("POP and IMAP Server"),
pkg => 'imap courier-imap-pop',
ports => '109/tcp 110/tcp 143/tcp',
},
{
- name => N_("Telnet server"),
+ name => "Telnet",
pkg => 'telnet-server-krb5',
ports => '23/tcp',
hide => 1,
},
{
- name => N_("Samba server"),
- pkg => 'samba-server',
- ports => '137/tcp 137/udp 138/tcp 138/udp 139/tcp 139/udp ',
- hide => 1,
- },
- {
- name => N_("CUPS server"),
+ name => "CUPS",
pkg => 'cups',
ports => '631/tcp 631/udp',
hide => 1,
@@ -60,9 +54,10 @@ my @all_servers =
sub port2server {
my ($port) = @_;
- find {
- any { $port eq $_ } split(' ', $_->{ports});
- } @all_servers;
+ foreach (@all_servers) {
+ return $_ if grep { $port eq $_ } split ' ', $_->{ports};
+ }
+ undef;
}
sub check_ports_syntax {
@@ -100,43 +95,41 @@ sub default_from_pkgs {
my @pkgs = $in->do_pkgs->are_installed(map { split ' ', $_->{pkg} } @all_servers);
[ grep {
my $s = $_;
- any { member($_, @pkgs) } (split ' ', $s->{pkg});
+ grep { member($_, @pkgs) } split ' ', $s->{pkg};
} @all_servers ];
}
sub get_ports {
- my ($in, $_ports) = @_;
- my $shorewall = network::shorewall::read($in, 'silent') or return;
+ my ($_ports) = @_;
+ my $shorewall = network::shorewall::read() or return;
\$shorewall->{ports};
}
sub set_ports {
- my ($in, $disabled, $ports) = @_;
- my $shorewall = network::shorewall::read($in, 'not_silent') || network::shorewall::default_interfaces($in) or die \N("No network card");
- if (!$disabled || -x "$::prefix/sbin/shorewall") {
- $in->do_pkgs->ensure_is_installed('shorewall', '/sbin/shorewall', $::isInstall) or return;
-
- $shorewall->{disabled} = $disabled;
- $shorewall->{ports} = $$ports;
- network::shorewall::write($shorewall);
- }
+ my ($disabled, $ports) = @_;
+
+ my $shorewall = network::shorewall::read() || network::shorewall::default_interfaces() or die N("No network card");
+ $shorewall->{disabled} = $disabled;
+ $shorewall->{ports} = $$ports;
+
+ network::shorewall::write($shorewall);
}
sub get_conf {
- my ($in, $disabled, $o_ports) = @_;
-
+ my ($in, $disabled, $ports) = @_;
+
my $possible_servers = default_from_pkgs($in);
$_->{hide} = 0 foreach @$possible_servers;
- if ($o_ports) {
- $disabled, from_ports($o_ports);
- } elsif (my $shorewall = network::shorewall::read($in, 'silent')) {
+ if ($ports) {
+ $disabled, from_ports($ports);
+ } elsif (my $shorewall = network::shorewall::read()) {
$shorewall->{disabled}, from_ports(\$shorewall->{ports});
} else {
$in->ask_okcancel('', N("drakfirewall configurator
This configures a personal firewall for this Mandrake Linux machine.
-For a powerful and dedicated firewall solution, please look to the
+For a powerful dedicated firewall solution, please look to the
specialized MandrakeSecurity Firewall distribution."), 1) or return;
$in->ask_okcancel('', N("drakfirewall configurator
@@ -172,7 +165,7 @@ where port is between 1 and 65535.", $invalid_port));
} },
[
{ text => N("Everything (no firewall)"), val => \$disabled, type => 'bool' },
- (map { { text => translate($_->{name}), val => \$_->{on}, type => 'bool', disabled => sub { $disabled } } } @l),
+ (map { { text => $_->{name}, val => \$_->{on}, type => 'bool', disabled => sub { $disabled } } } @l),
{ label => N("Other ports"), val => \$unlisted, advanced => 1, disabled => sub { $disabled } }
]) or return;
@@ -184,7 +177,9 @@ sub main {
($disabled, my $servers, my $unlisted) = get_conf($in, $disabled) or return;
+ $in->do_pkgs->ensure_is_installed('shorewall', '/sbin/shorewall', $::isInstall) or return;
+
($disabled, my $ports) = choose($in, $disabled, $servers, $unlisted) or return;
- set_ports($in, $disabled, $ports);
+ set_ports($disabled, $ports);
}
diff --git a/perl-install/network/ethernet.pm b/perl-install/network/ethernet.pm
index 80419f9b5..410b81e13 100644
--- a/perl-install/network/ethernet.pm
+++ b/perl-install/network/ethernet.pm
@@ -1,29 +1,68 @@
-package network::ethernet; # $Id$
-
+package network::ethernet;
use network::network;
use modules;
-use modules::interactive;
+use any;
use detect_devices;
use common;
use run_program;
use network::tools;
use vars qw(@ISA @EXPORT);
-
use MDK::Common::Globals "network", qw($in $prefix);
@ISA = qw(Exporter);
-@EXPORT = qw(conf_network_card conf_network_card_backend go_ethernet);
-
-my (@cards, @ether_steps, $last, %last);
+@EXPORT = qw(configureNetwork conf_network_card conf_network_card_backend go_ethernet);
+sub configure_cable {
+ my ($netcnx, $netc, $intf, $first_time) = @_;
+ $::isInstall and $in->set_help('configureNetworkCable');
+ $netcnx->{type} = 'cable';
+ # $netcnx->{cable}={};
+ # $in->ask_from_entries_ref(N("Cable connection"),
+ # N("Please enter your host name if you know it.
+ # Some DHCP servers require the hostname to work.
+ # Your host name should be a fully-qualified host name,
+ # such as ``mybox.mylab.myco.com''."),
+ # [N("Host name:")], [ \$netcnx->{cable}{hostname} ]);
+ if ($::expert) {
+ my @m = (
+ { description => "dhcp-client",
+ c => 1 },
+ { description => "dhcpcd",
+ c => 3 },
+ { description => "dhcpxd",
+ c => 4 },
+ );
+ if (my $f = $in->ask_from_listf(N("Connect to the Internet"),
+ N("Which dhcp client do you want to use?
+Default is dhcp-client"),
+ sub { $_[0]{description} },
+ \@m)) {
+ $f->{c} == 3 and $netcnx->{dhcp_client} = "dhcpcd" and $in->do_pkgs->install(qw(dhcpcd));
+ $f->{c} == 4 and $netcnx->{dhcp_client} = "dhcpxd" and $in->do_pkgs->install(qw(dhcpxd));
+ $f->{c} == 1 and $netcnx->{dhcp_client} = "dhcp-client" and $in->do_pkgs->install(qw(dhcp-client));
+ }
+ } else {
+ $in->do_pkgs->install(qw(dhcp-client));
+ }
+ go_ethernet($netc, $intf, 'dhcp', '', '', $first_time);
+ write_cnx_script($netc, "cable",
+qq(
+/sbin/ifup $netc->{NET_DEVICE}
+),
+qq(
+/sbin/ifdown $netc->{NET_DEVICE}
+), $netcnx->{type});
+ 1;
+}
-sub ether_conf{
- # my ($netcnx, $netc, $intf, $first_time) = @_;
- my ($in, $prefix, $netc, $intf) = @_;
+sub configure_lan {
+ my ($netcnx, $netc, $intf, $first_time) = @_;
+ $::isInstall and $in->set_help('configureNetworkIP');
+ configureNetwork($netc, $intf, $first_time) or return;
configureNetwork2($in, $prefix, $netc, $intf);
$netc->{NETWORKING} = "yes";
- if ($netc->{GATEWAY} || any { $_->{BOOTPROTO} =~ /dhcp/ } values %$intf) {
+ if ($netc->{GATEWAY} || grep { $_->{BOOTPROTO} eq 'dhcp' } values %$intf) {
$netcnx->{type} = 'lan';
$netcnx->{NET_DEVICE} = $netc->{NET_DEVICE} = '';
$netcnx->{NET_INTERFACE} = 'lan'; #$netc->{NET_INTERFACE};
@@ -36,12 +75,36 @@ qq(
/sbin/ifup lo
), $netcnx->{type});
}
- $::isStandalone and modules::write_conf();
+ $::isStandalone and modules::write_conf($prefix);
1;
}
+sub conf_network_card {
+ my ($netc, $intf, $type, $ipadr, $netadr) = @_;
+ #-type =static or dhcp
+ any::load_category($in, 'network/main|usb', !$::expert, 1);
+ my @all_cards = conf_network_card_backend($netc, $intf, $type, undef, $ipadr, $netadr);
+ my $interface;
+ @all_cards == () and $in->ask_warn('', N("No ethernet network adapter has been detected on your system.
+I cannot set up this connection type.")) and return;
+ @all_cards == 1 and $interface = $all_cards[0][0];
+ while (!$interface) {
+ $interface = $in->ask_from_list(N("Choose the network interface"),
+ N("Please choose which network adapter you want to use to connect to Internet"),
+ [ map { $_->[0] . ($_->[1] ? " (using module $_->[1])" : "") } @all_cards ]
+ ) or return;
+ }
+ $::isStandalone and modules::write_conf($prefix);
+
+ my $_device = conf_network_card_backend($netc, $intf, $type, $interface, $ipadr, $netadr, $interface);
+# if ( $::isStandalone and !($type eq "dhcp")) {
+# $in->ask_yesorno(N("Network interface"),
+# N("I'm about to restart the network device:\n") . $device . N("\nDo you agree?"), 1) and configureNetwork2($in, $prefix, $netc, $intf) and system("$prefix/sbin/ifdown $device;$prefix/sbin/ifup $device");
+# }
+ 1;
+}
-#- conf_network_card_backend : configure the network cards and return the list of them, or configure one specified interface : WARNING, you have to setup the ethernet cards, by calling load_category($in, 'network/main|gigabit|usb', !$::expert, 1) or load_category_backend before calling this function. Basically, you call this function in 2 times.
+#- conf_network_card_backend : configure the network cards and return the list of them, or configure one specified interface : WARNING, you have to setup the ethernet cards, by calling load_category($in, 'network/main|usb', !$::expert, 1) or load_category_backend before calling this function. Basically, you call this function in 2 times.
#- input
#- $prefix
#- $netc
@@ -63,39 +126,89 @@ qq(
#- $all_cards : a list of a list ( [eth1, module1], ... , [ethn, modulen]). Pass the ethx as $interface in further call.
#- $device : only returned in case $interface was given it's $interface, but filtered by /eth[0-9+]/ : string : /eth[0-9+]/
sub conf_network_card_backend {
- my ($netc, $intf, $o_type, $o_interface, $o_ipadr, $o_netadr) = @_;
+ my ($netc, $intf, $type, $interface, $ipadr, $netadr) = @_;
#-type =static or dhcp
- if (!$o_interface) {
+ if (!$interface) {
my @all_cards = detect_devices::getNet();
+ my @unconfigured_interfaces = qw(ADIModem);
my @devs = detect_devices::pcmcia_probe();
modules::mergein_conf("$prefix/etc/modules.conf");
my $saved_driver;
return map {
my $interface = $_;
- my $a = c::getNetDriver($interface) || modules::get_alias($interface);
- my $b = find { $_->{device} eq $interface } @devs;
- $a ||= $b->{driver};
- $a and $saved_driver = $a; # handle multiple cards managed by the same driver
- [ $interface, $saved_driver ]
- } @all_cards;
+ my $a = modules::get_alias($interface);
+ my $b;
+ foreach (@devs) {
+ $_->{device} eq $interface and $b = $_->{driver};
+ }
+ $a ||= $b;
+ $a and $saved_driver = $a;
+ if_(!member($interface, @unconfigured_interfaces) || $a, [$interface, $saved_driver]);
+ } @all_cards, @unconfigured_interfaces;
}
- $o_interface =~ /eth[0-9]+/ or die("the interface is not an ethx");
-
- $netc->{NET_DEVICE} = $o_interface; #- one consider that there is only ONE Internet connection device..
-
- @{$intf->{$o_interface}}{qw(DEVICE BOOTPROTO NETMASK NETWORK ONBOOT)} = ($o_interface, $o_type, '255.255.255.0', $o_netadr, 'yes');
-
- $intf->{$o_interface}{IPADDR} = $o_ipadr if $o_ipadr;
- $o_interface;
+ my ($device) = $interface =~ /(ADIModem|eth[0-9]+)/ or die("the interface is not an ethx or other (like ADIModem)");
+ $netc->{NET_DEVICE} = $device; #- one consider that there is only ONE Internet connection device..
+
+ @{$intf->{$device}}{qw(DEVICE BOOTPROTO NETMASK NETWORK ONBOOT)} =
+ ($device, $type, '255.255.255.0', $netadr, 'yes');
+
+ $intf->{$device}{IPADDR} = $ipadr if $ipadr;
+ $device;
+}
+
+sub go_ethernet {
+ my ($netc, $intf, $type, $ipadr, $netadr, $first_time) = @_;
+ conf_network_card($netc, $intf, $type, $ipadr, $netadr) or return;
+ $netc->{NET_INTERFACE} = $netc->{NET_DEVICE};
+ configureNetwork($netc, $intf, $first_time) or return;
+# if ( $::isStandalone and $netc->{NET_DEVICE}) {
+# $in->ask_yesorno(N("Network interface"),
+# N("I'm about to restart the network device %s. Do you agree?", $netc->{NET_DEVICE}), 1) and system("$prefix/sbin/ifdown $netc->{NET_DEVICE}; $prefix/sbin/ifup $netc->{NET_DEVICE}");
+# }
+ 1;
}
-# automatic net aliases configuration
-sub configure_eth_aliases() {
- foreach (detect_devices::getNet()) {
- my $driver = c::getNetDriver($_) or next;
- modules::add_alias($_, $driver);
+sub configureNetwork {
+ my ($netc, $intf, $_first_time) = @_;
+ local $_;
+ any::load_category($in, 'network/main|usb|pcmcia', !$::expert, 1) or return;
+ my @l = detect_devices::getNet() or die N("no network card found");
+ my @all_cards = conf_network_card_backend($netc, $intf, undef, undef, undef, undef);
+
+ configureNetwork_step_1:
+ my $n_card = 0;
+ $netc ||= {};
+ my $last; foreach (@l) {
+ my $intf2 = findIntf($intf ||= {}, $_);
+ add2hash($intf2, $last);
+ add2hash($intf2, { NETMASK => '255.255.255.0' });
+ configureNetworkIntf($netc, $in, $intf2, $netc->{NET_DEVICE}, 0, $all_cards[$n_card][1]) or return;
+
+ $last = $intf2;
+ $n_card++;
+ }
+ #- {
+ #- my $wait = $o->wait_message(N("Hostname"), N("Determining host name and domain..."));
+ #- network::guessHostname($o->{prefix}, $o->{netc}, $o->{intf});
+ #- }
+ $last or return;
+ if ($last->{BOOTPROTO} =~ /^(dhcp|bootp)$/) {
+ $netc->{minus_one} = 1;
+ my $dhcp_hostname = $netc->{HOSTNAME};
+ $::isInstall and $in->set_help('configureNetworkHostDHCP');
+ $in->ask_from(N("Configuring network"),
+N("Please enter your host name if you know it.
+Some DHCP servers require the hostname to work.
+Your host name should be a fully-qualified host name,
+such as ``mybox.mylab.myco.com''."),
+ [ { label => N("Host name"), val => \$netc->{HOSTNAME} } ]) or goto configureNetwork_step_1;
+ $netc->{HOSTNAME} ne $dhcp_hostname and $netc->{DHCP_HOSTNAME} = $netc->{HOSTNAME};
+ } else {
+ configureNetworkNet($in, $netc, $last ||= {}, @l) or goto configureNetwork_step_1;
}
+ miscellaneousNetwork($in) or goto configureNetwork_step_1;
+ 1;
}
1;
diff --git a/perl-install/network/isdn.pm b/perl-install/network/isdn.pm
index b66edfe75..2b747e255 100644
--- a/perl-install/network/isdn.pm
+++ b/perl-install/network/isdn.pm
@@ -1,6 +1,5 @@
-package network::isdn; # $Id$
+package network::isdn;
-use strict;
use network::isdn_consts;
use common;
use any;
@@ -11,24 +10,98 @@ use network::tools;
use vars qw(@ISA @EXPORT);
use MDK::Common::Globals "network", qw($in $prefix);
use MDK::Common::File;
-
-
@ISA = qw(Exporter);
@EXPORT = qw(isdn_write_config isdn_write_config_backend get_info_providers_backend isdn_ask_info isdn_ask_protocol isdn_ask isdn_detect isdn_detect_backend isdn_get_list isdn_get_info);
+sub configure {
+ my ($netcnx, $netc, $isdn) = @_;
+ isdn_step_1:
+ defined $netc->{autodetect}{isdn}{id} and goto intern_pci;
+ $::isInstall and $in->set_help('configureNetworkISDN');
+ my $e = $in->ask_from_list_(N("Network Configuration Wizard"),
+ N("Which ISDN configuration do you prefer?
+
+* The Old configuration uses isdn4net. It contains powerful
+ tools, but is tricky to configure, and not standard.
+
+* The New configuration is easier to understand, more
+ standard, but with less tools.
+
+We recommand the light configuration.
+"), [ N_("New configuration (isdn-light)"), N_("Old configuration (isdn4net)") ]
+ ) or return;
+ $netc->{autodetect}{isdn}{is_light} = $e =~ /light/ ? 1 : undef;
+ $e = $in->ask_from_list_(N("Network Configuration Wizard"),
+ N("What kind is your ISDN connection?"), [ N_("Internal ISDN card"), N_("External ISDN modem") ]
+ ) or return;
+
+ if ($e =~ /card/) {
+ intern_pci:
+ $netc->{isdntype} = 'isdn_internal';
+ $netcnx->{isdn_internal} = isdn_read_config($isdn);
+ $netcnx->{isdn_internal}{$_} = $netc->{autodetect}{isdn}{$_} foreach 'description', 'vendor', 'id', 'driver', 'card_type', 'type', 'is_light';
+ isdn_detect($netcnx->{isdn_internal}, $netc) or return;
+ } else {
+ $netc->{isdntype} = 'isdn_external';
+ $netcnx->{isdn_external} = isdn_read_config($isdn);
+ $netcnx->{isdn_external}{device} = $netc->{autodetect}{modem};
+ $netcnx->{isdn_external}{is_light} = $netc->{autodetect}{isdn}{is_light};
+ $netcnx->{isdn_external}{special_command} = 'AT&F&O2B40';
+ require network::modem;
+ network::modem::pppConfig($netcnx->{isdn_external}, undef, $netc) or goto isdn_step_1;
+ }
+ 1;
+}
sub isdn_write_config {
my ($isdn, $netc) = @_;
- $in->do_pkgs->install('isdn4net', if_($isdn->{speed} =~ /128/, 'ibod'), 'isdn4k-utils');
+ isdn_write_config_step_1:
+ my ($rmpackage, $instpackage) = $isdn->{is_light} ? ('isdn4net', 'isdn-light') : ('isdn-light', 'isdn4net');
+ if (!$::isStandalone) {
+ require pkgs;
+ my $p = pkgs::packageByName($in->{packages}, $rmpackage);
+ $p && $p->flag_selected and pkgs::unselectPackage($in->{packages}, $p);
+ }
+ run_program::rooted($prefix, "rpm", "-e", $rmpackage);
+ $in->do_pkgs->install($instpackage, if_($isdn->{speed} =~ /128/, 'ibod'), 'isdn4k-utils');
isdn_write_config_backend($isdn, $netc);
1;
}
sub isdn_write_config_backend {
- my ($isdn, $netc, $o_netcnx) = @_;
- defined $o_netcnx and $netc->{isdntype} = $o_netcnx->{type};
-
- output_with_perm("$prefix/etc/isdn/profile/link/myisp", 0600,
+ my ($isdn, $netc, $netcnx) = @_;
+ defined $netcnx and $netc->{isdntype} = $netcnx->{type};
+ if ($isdn->{is_light}) {
+ modules::mergein_conf("$prefix/etc/modules.conf");
+ if ($isdn->{id}) {
+ isdn_detect_backend($isdn);
+ } else {
+ my $a = "";
+ defined $isdn->{$_} and $a .= "$_=" . $isdn->{$_} . " " foreach qw(type protocol mem io io0 io1 irq);
+ $isdn->{driver} eq "hisax" and $a .= "id=HiSax";
+ modules::set_options($isdn->{driver}, $a);
+ }
+ modules::add_alias("ippp0", $isdn->{driver});
+ $::isStandalone and modules::write_conf($prefix);
+ foreach my $f ('ioptions1B', 'ioptions2B') {
+ substInFile { s/^name .*\n//; $_ .= "name $isdn->{login}\n" if eof } "$prefix/etc/ppp/$f";
+ chmod 0600, $f;
+ }
+ foreach my $f ('isdn1B.conf', 'isdn2B.conf') {
+ substInFile {
+ s/EAZ =.*/EAZ = $isdn->{phone_in}/;
+ s/PHONE_OUT =.*/PHONE_OUT = $isdn->{phone_out}/;
+ if (/NAME = ippp0/ .. /PPPBIND = 0/) {
+ s/HUPTIMEOUT =.*/HUPTIMEOUT = $isdn->{huptimeout}/;
+ }
+ } "$prefix/etc/isdn/$f";
+ chmod 0600, $f;
+ }
+ my $bundle = $isdn->{speed} =~ /64/ ? "1B" : "2B";
+ symlinkf("isdn" . $bundle . ".conf", "$prefix/etc/isdn/isdnctrl.conf");
+ symlinkf("ioptions" . $bundle, "$prefix/etc/ppp/ioptions");
+ } else {
+ output_with_perm("$prefix/etc/isdn/profile/link/myisp", 0600,
qq(
I4L_USERNAME="$isdn->{login}"
I4L_SYSNAME=""
@@ -56,22 +129,20 @@ usepeerdns
defaultroute
";
system "$prefix/etc/rc.d/init.d/isdn4linux restart";
+ }
substInFile { s/^FIRMWARE.*\n//; $_ .= qq(FIRMWARE="$isdn->{firmware}"\n) if eof } "$prefix/etc/sysconfig/network-scripts/ifcfg-ippp0";
- # we start the virtual interface at boot (we dial only on demand.
- substInFile { s/^ONBOOT.*\n//; $_ .= qq(ONBOOT=yes\n) if eof } "$prefix/etc/sysconfig/network-scripts/ifcfg-ippp$isdn->{intf_id}";
-
write_secret_backend($isdn->{login}, $isdn->{passwd});
write_cnx_script($netc, "isdn",
-"#/sbin/route del default
-#/sbin/ifup ippp0
-/usr/sbin/isdnctrl dial ippp0
+"/sbin/route del default
+/sbin/ifup ippp0
+/sbin/isdnctrl dial ippp0
" . if_($isdn->{speed} =~ /128/, "service ibod restart
"),
-"/usr/sbin/isdnctrl hangup ippp0
-#/sbin/ifdown ippp0
+"/sbin/isdnctrl hangup ippp0
+/sbin/ifdown ippp0
" . if_($isdn->{speed} =~ /128/, "service ibod stop
"), $netc->{isdntype});
1;
@@ -80,25 +151,52 @@ defaultroute
sub isdn_read_config {
my ($isdn) = @_;
- my %match = (I4L_USERNAME => 'login',
- I4L_LOCALMSN => 'phone_in',
- I4L_REMOTE_OUT => 'phone_out',
- I4L_DIALMODE => 'dialing_mode',
- I4L_MODULE => 'driver',
- I4L_TYPE => 'type',
- I4L_IRQ => 'irq',
- I4L_MEMBASE => 'mem',
- I4L_PORT => 'io',
- I4L_IO0 => 'io0',
- I4L_IO1 => 'io1',
- I4L_FIRMWARE => 'firmware');
- foreach ('link/myisp', 'card/mycard') {
- my %conf = getVarsFromSh("$prefix/etc/isdn/profile/$_");
- foreach (keys %conf) {
- $isdn->{$match{$_}} = $conf{$_} if $match{$_};
+ if ($isdn->{is_light}) {
+ my $c = modules::read_conf("/etc/modules.conf");
+ $isdn->{driver} = $c->{ippp0}{alias};
+ #- 'type' 'protocol' 'mem' 'io' 'io0' 'io1' 'irq' 'id'
+ foreach (split(' ', $c->{$isdn->{driver}}{options})) {
+ /(.*)=(.*)/;
+ $isdn->{$1} = $2;
+ }
+ foreach my $f ('ioptions1B', 'ioptions2B') {
+ foreach (cat_("$prefix/etc/ppp/$f")) {
+ if (/^\s*name\s*(.*)/) {
+ $isdn->{login} = $1;
+ goto NEXT;
+ }
+ }
+ }
+ NEXT:
+ foreach my $f ('isdn1B.conf', 'isdn2B.conf') {
+ foreach (cat_("$prefix/etc/isdn/$f")) {
+ /^\s*EAZ\s*=\s*(.*)/ and $isdn->{phone_in} = $1;
+ /^\s*PHONE_OUT\s*=\s*(.*)/ and $isdn->{phone_out} = $1;
+ if (/^\s*NAME\s*=\s*ippp0/ .. /PPPBIND\s*=\s*0/) {
+ /^\s*HUPTIMEOUT\s*=\s*(.*)/ and $isdn->{huptimeout} = $1;
+ }
+ }
+ }
+ } else {
+ my %match = (I4L_USERNAME => 'login',
+ I4L_LOCALMSN => 'phone_in',
+ I4L_REMOTE_OUT => 'phone_out',
+ I4L_DIALMODE => 'dialing_mode',
+ I4L_MODULE => 'driver',
+ I4L_TYPE => 'type',
+ I4L_IRQ => 'irq',
+ I4L_MEMBASE => 'mem',
+ I4L_PORT => 'io',
+ I4L_IO0 => 'io0',
+ I4L_IO1 => 'io1',
+ I4L_FIRMWARE => 'firmware');
+ foreach ('link/myisp', 'card/mycard') {
+ my %conf = getVarsFromSh("$prefix/etc/isdn/profile/$_");
+ foreach (keys %conf) {
+ $isdn->{$match{$_}} = $conf{$_} if $match{$_};
+ }
}
}
-
$isdn->{passwd} = network::tools::passwd_by_login($isdn->{login});
#$isdn->{description} = '';
#$isdn->{vendor} = '';
@@ -113,7 +211,7 @@ sub get_info_providers_backend {
chop;
my ($name_, $phone, $real, $dns1, $dns2) = split '=>';
if ($name eq $name_) {
- @$isdn{qw(user_name phone_out DOMAINNAME2 dnsServer3 dnsServer2)} =
+ @{$isdn}{qw(user_name phone_out DOMAINNAME2 dnsServer3 dnsServer2)} =
((split(/\|/, $name_))[2], $phone, $real, $dns1, $dns2);
}
}
@@ -123,7 +221,6 @@ sub isdn_ask_info {
my ($isdn, $netc) = @_;
my $f = "$ENV{SHARE_PATH}/ldetect-lst/isdn.db";
$f = "$prefix$f" if !-e $f;
- isdn_ask_info_step1:
my $str = $in->ask_from_treelist(N("ISDN Configuration"), N("Select your provider.\nIf it isn't listed, choose Unlisted."),
'|', ['Unlisted - edit manually',
read_providers_backend($f)], 'Unlisted - edit manually')
@@ -132,12 +229,12 @@ sub isdn_ask_info {
$isdn->{huptimeout} = 180;
$isdn->{$_} ||= '' foreach qw(phone_in phone_out dialing_mode login passwd passwd2 idl speed);
add2hash($netc, { dnsServer2 => '', dnsServer3 => '', DOMAINNAME2 => '' });
- ask_info2($isdn, $netc) or goto isdn_ask_info_step1;
+ ask_info2($isdn, $netc);
}
-sub isdn_ask_protocol() {
+sub isdn_ask_protocol {
my @toto = (
- { description => $::expert ? N("European protocol (EDSS1)") : N("European protocol"),
+ { description => $::expert ? N("Europe protocol (EDSS1)") : N("Europe protocol"),
protokol => 2 },
{ description => $::expert ? N("Protocol for the rest of the world\nNo D-Channel (leased lines)") : N("Protocol for the rest of the world"),
protokol => 3 }
@@ -162,13 +259,10 @@ sub isdn_ask {
isdn_ask_step_1:
my $e = $in->ask_from_list_(N("ISDN Configuration"),
$label . "\n" . N("What kind of card do you have?"),
- [ N_("ISA / PCMCIA"), N_("PCI"), N_("USB"), N_("I don't know") ]
+ [ N_("ISA / PCMCIA"), N_("PCI"), N_("I don't know") ]
) or return;
- isdn_ask_step_1b:
if ($e =~ /PCI/) {
$isdn->{card_type} = 'pci';
- } elsif ($e =~ /USB/) {
- $isdn->{card_type} = 'usb';
} else {
$in->ask_from_list_(N("ISDN Configuration"),
N("
@@ -181,9 +275,9 @@ If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your card.
isdn_ask_step_2:
$e = $in->ask_from_listf(N("ISDN Configuration"),
- N("Which of the following is your ISDN card?"),
+ N("Which is your ISDN card?"),
sub { $_[0]{description} },
- [ grep { $_->{card} eq $isdn->{card_type} } @isdndata ]) or goto($isdn->{card_type} =~ /usb|pci/ ? 'isdn_ask_step_1' : 'isdn_ask_step_1b');
+ [ grep { $_->{card} eq $isdn->{card_type} } @isdndata ]) or goto isdn_ask_step_1;
$e->{$_} and $isdn->{$_} = $e->{$_} foreach qw(driver type mem io io0 io1 irq firmware);
isdn_ask_step_3:
@@ -194,33 +288,51 @@ If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your card.
1;
}
-sub isdn_detect_backend() {
- my $isdn = { };
- each_index {
- my $c = $_;
- $isdn->{$::i} = { map { $_ => $c->{$_} } qw(description vendor id driver card_type type) };
- my $isdn = $isdn->{$::i};
- $isdn->{intf_id} = $::i;
+sub isdn_detect {
+ my ($isdn, $netc) = @_;
+ if ($isdn->{id}) {
+ log::l("found isdn card : $isdn->{description}; vendor : $isdn->{vendor}; id : $isdn->{id}; driver : $isdn->{driver}\n");
+ $isdn->{description} =~ s/\|/ -- /;
+ if ($isdn->{type} eq '') {
+ isdn_ask($isdn, $netc, N("I have detected an ISDN PCI card, but I don't know its type. Please select a PCI card on the next screen.")) or return;
+ } else {
+ isdn_detect_step_1:
+ $isdn->{protocol} = isdn_ask_protocol() or return;
+ isdn_detect_step_2:
+ isdn_ask_info($isdn, $netc) or goto isdn_detect_step_1;
+ isdn_write_config($isdn, $netc) or goto isdn_detect_step_2;
+ }
+ } else {
+ isdn_ask($isdn, $netc, N("No ISDN PCI card found. Please select one on the next screen.")) or return;
+ }
+ $netc->{$_} = 'ippp0' foreach 'NET_DEVICE', 'NET_INTERFACE';
+ 1;
+}
+
+sub isdn_detect_backend {
+ my ($isdn) = @_;
+ if (my ($c) = modules::probe_category('network/isdn')) {
+ $isdn->{$_} = $c->{$_} foreach qw(description vendor id driver options firmware);
$isdn->{$_} = sprintf("%0x", $isdn->{$_}) foreach 'vendor', 'id';
- $isdn->{card_type} = $c->{bus} eq 'USB' ? 'usb' : 'pci';
+ $isdn->{card_type} = 'pci';
($isdn->{type}) = $isdn->{options} =~ /type=(\d+)/;
- $isdn->{description} =~ s/.*\|//;
# $c->{options} !~ /id=HiSax/ && $isdn->{driver} eq "hisax" and $c->{options} .= " id=HiSax";
if ($c->{options} !~ /protocol=/ && $isdn->{protocol} =~ /\d/) {
modules::set_options($c->{driver}, $c->{options} . " protocol=" . $isdn->{protocol});
}
$c->{options} =~ /protocol=(\d)/ and $isdn->{protocol} = $1;
- } modules::probe_category('network/isdn');
- $isdn;
+ }
}
-sub isdn_get_list() {
+sub isdn_get_list {
map { $_->{description} } @isdndata;
}
sub isdn_get_info {
my ($desc) = @_;
- find { $_->{description} eq $desc } @isdndata;
+ foreach (@isdndata) {
+ return $_ if $_->{description} eq $desc;
+ }
}
1;
diff --git a/perl-install/network/isdn_consts.pm b/perl-install/network/isdn_consts.pm
index c38297641..b93a75e11 100644
--- a/perl-install/network/isdn_consts.pm
+++ b/perl-install/network/isdn_consts.pm
@@ -1,7 +1,4 @@
-package network::isdn_consts; # $Id$
-use vars qw(@ISA @EXPORT);
-@ISA = qw(Exporter);
-@EXPORT = qw(@isdndata);
+package network::isdn; # $Id$
our @isdndata =
(
@@ -324,16 +321,6 @@ our @isdndata =
type => '36',
card => 'pci',
},
- { description => "BeWAN R834 (USB)",
- driver => 'hisax_st5481',
- type => '99',
- card => 'usb',
- },
- { description => "Gazel 128 (USB)",
- driver => 'hisax_st5481',
- type => '99',
- card => 'usb',
- },
);
1;
diff --git a/perl-install/network/modem.pm b/perl-install/network/modem.pm
index f1ef4d9f7..fd2f54c50 100644
--- a/perl-install/network/modem.pm
+++ b/perl-install/network/modem.pm
@@ -1,176 +1,103 @@
-package network::modem; # $Id$
+package network::modem;
-use strict;
use common;
use any;
use modules;
use detect_devices;
use mouse;
use network::tools;
+use vars qw(@ISA @EXPORT);
+use MDK::Common::Globals "network", qw($in $prefix);
+use Data::Dumper;
+@ISA = qw(Exporter);
+@EXPORT = qw(pppConfig);
-sub ppp_configure_raw {
- my ($in, $netc, $modem) = @_;
- $netc->{DOMAINNAME2} = $modem->{domain};
- $in->do_pkgs->install('ppp') if !$::testing;
- $in->do_pkgs->install('kdenetwork-kppp') if $in->do_pkgs->is_installed('kdebase');
- any::devfssymlinkf($modem, 'modem') if $modem->{device} ne "/dev/modem";
-
- my %toreplace;
- $toreplace{$_} = $modem->{$_} foreach qw(connection phone login passwd auth domain dns1 dns2);
- $toreplace{kpppauth} = ${{ 'Script-based' => 0, 'PAP' => 1, 'Terminal-based' => 2, }}{$modem->{auth}};
- $toreplace{kpppauth} = ${{ 'Script-based' => 0, 'PAP' => 1, 'Terminal-based' => 2, 'CHAP' => 3 }}{$modem->{auth}};
- $toreplace{phone} =~ s/[a-zA-Z]//g;
- $toreplace{dnsserver} = join ',', map { $modem->{$_} } "dns1", "dns2";
- $toreplace{dnsserver} .= $toreplace{dnsserver} && ',';
-
- #- using peerdns or dns1,dns2 avoid writing a /etc/resolv.conf file.
- $toreplace{peerdns} = "yes";
-
- $toreplace{connection} ||= 'DialupConnection';
- $toreplace{domain} ||= 'localdomain';
- $toreplace{intf} ||= 'ppp0';
- $toreplace{papname} = ($modem->{auth} eq 'PAP' || $modem->{auth} eq 'CHAP') && $toreplace{login};
-
- #- build ifcfg-ppp0.
- my $various = <<END;
-DEVICE="$toreplace{intf}"
-ONBOOT="no"
-USERCTL="no"
-MODEMPORT="/dev/modem"
-LINESPEED="115200"
-PERSIST="yes"
-DEFABORT="yes"
-DEBUG="yes"
-INITSTRING="ATZ"
-DEFROUTE="yes"
-HARDFLOWCTL="yes"
-ESCAPECHARS="no"
-PPPOPTIONS=""
-PAPNAME="$toreplace{papname}"
-REMIP=""
-NETMASK=""
-IPADDR=""
-MRU=""
-MTU=""
-DISCONNECTTIMEOUT="5"
-RETRYTIMEOUT="60"
-BOOTPROTO="none"
-PEERDNS="$toreplace{peerdns}"
-END
- output("$::prefix/etc/sysconfig/network-scripts/ifcfg-ppp0",
- $various,
- map { qq(DNS$_=$toreplace{"dns$_"}\n) } grep { $toreplace{"dns$_"} } 1..2);
-
- #- build chat-ppp0.
- my @chat = <<END;
-'ABORT' 'BUSY'
-'ABORT' 'ERROR'
-'ABORT' 'NO CARRIER'
-'ABORT' 'NO DIALTONE'
-'ABORT' 'Invalid Login'
-'ABORT' 'Login incorrect'
-'' 'ATZ'
-END
- if ($modem->{special_command}) {
- push @chat, <<END;
-'OK' '$modem->{special_command}'
-END
+sub configure {
+ my ($netcnx, $mouse, $netc, $intf) = @_;
+ $netcnx->{type} = 'modem';
+ my $modem = $netcnx->{$netcnx->{type}};
+# $netcnx->{$netcnx->{type}} = {};
+ $modem->{device} = $netc->{autodetect}{modem};
+# modem_step_1:
+# $modem->{login} = ($modem->{auth} eq 'PAP' ||$modem->{auth} eq 'CHAP') && $intf->{ppp0}{PAPNAME};
+# $netcnx->{$netcnx->{type}}->{connection} = ($netcnx->{$netcnx->{type}}->{auth} eq 'PAP' || $netcnx->{$netcnx->{type}}->{auth} eq 'CHAP') && $intf->{ppp0}{PAPNAME};
+# $modem->{device} = readlink "$prefix/dev/modem";
+ foreach (cat_("/usr/share/config/kppprc")) {
+ /^DNS=(.*)$/ and ($modem->{dns1}, $modem->{dns2}) = split(',', $1);
}
- push @chat, <<END;
-'OK' 'ATDT$toreplace{phone}'
-'CONNECT' ''
-END
- if ($modem->{auth} eq 'Terminal-based' || $modem->{auth} eq 'Script-based') {
- push @chat, <<END;
-'ogin:--ogin:' '$toreplace{login}'
-'ord:' '$toreplace{passwd}'
-END
+ my $secret = network::tools::read_secret_backend();
+ foreach (@$secret) {
+ $modem->{passwd} = $_->{passwd} if $_->{login} eq $modem->{login};
}
- push @chat, <<END;
-'TIMEOUT' '5'
-'~--' ''
-END
- my $chat_file = "$::prefix/etc/sysconfig/network-scripts/chat-ppp0";
- output_with_perm($chat_file, 0600, @chat);
- if ($modem->{auth} eq 'PAP' || $modem->{auth} eq 'CHAP') {
- #- need to create a secrets file for the connection.
- my $secrets = "$::prefix/etc/ppp/" . lc($modem->{auth}) . "-secrets";
- my @l = cat_($secrets);
- my $replaced = 0;
- do { $replaced ||= 1
- if s/^\s*"?$toreplace{login}"?\s+ppp0\s+(\S+)/"$toreplace{login}" ppp0 "$toreplace{passwd}"/ } foreach @l;
- if ($replaced) {
- output($secrets, @l);
- } else {
- append_to_file($secrets, qq($toreplace{login} ppp0 "$toreplace{passwd}"\n));
+ foreach (cat_("/etc/sysconfig/network-scripts/chat-ppp0")) {
+ if (/.*ATDT(\d*).*/) {
+ $modem->{phone} = $1;
+ last;
}
- #- restore access right to secrets file, just in case.
- chmod 0600, $secrets;
}
+ pppConfig($modem, $mouse, $netc, $intf) or return;
+ write_cnx_script($netc, "modem",
+q(
+/sbin/route del default
+ifup ppp0
+),
+q(ifdown ppp0
+killall pppd
+), $netcnx->{type});
+ 1;
+}
- #- install kppprc file according to used configuration.
- mkdir_p("$::prefix/usr/share/config");
+sub pppConfig {
+ my ($modem, $mouse, $netc, $_intf) = @_;
+ $mouse ||= {};
- output("$::prefix/usr/share/config/kppprc", c::to_utf8(<<END));
-# KDE Config File
-[Account0]
-ExDNSDisabled=0
-AutoName=0
-ScriptArguments=
-AccountingEnabled=0
-DialString=ATDT
-Phonenumber=$toreplace{phone}
-IPAddr=0.0.0.0
-Domain=$toreplace{domain}
-Name=$toreplace{connection}
-VolumeAccountingEnabled=0
-pppdArguments=
-Password=$toreplace{passwd}
-BeforeDisconnect=
-Command=
-ScriptCommands=
-Authentication=$toreplace{kpppauth}
-DNS=$toreplace{dnsserver}
-SubnetMask=0.0.0.0
-AccountingFile=
-DefaultRoute=1
-Username=$toreplace{login}
-Gateway=0.0.0.0
-StorePassword=1
-DisconnectCommand=
-[Modem]
-BusyWait=0
-Enter=CR
-FlowControl=CRTSCTS
-Volume=0
-Timeout=60
-UseCDLine=0
-UseLockFile=1
-Device=/dev/modem
-Speed=115200
-[Graph]
-InBytes=0,0,255
-Text=0,0,0
-Background=255,255,255
-Enabled=true
-OutBytes=255,0,0
-[General]
-QuitOnDisconnect=0
-ShowLogWindow=0
-DisconnectOnXServerExit=1
-DefaultAccount=$toreplace{connection}
-iconifyOnConnect=1
-Hint_QuickHelp=0
-AutomaticRedial=0
-PPPDebug=0
-NumberOfAccounts=1
-ShowClock=1
-DockIntoPanel=0
-pppdTimeout=30
-END
- network::network::proxy_configure($::o->{miscellaneous});
+ $mouse->{device} ||= readlink "$prefix/dev/mouse";
+ $::isInstall and $in->set_help('selectSerialPort');
+ $modem->{device} ||= $in->ask_from_listf('', N("Please choose which serial port your modem is connected to."),
+ \&mouse::serial_port2text,
+ [ grep { $_ ne $mouse->{device} } (mouse::serial_ports(), if_(-e '/dev/modem', '/dev/modem')) ]) || return;
+
+ my @cnx_list;
+ my $secret = network::tools::read_secret_backend();
+ foreach (@$secret) {
+ push @cnx_list, $_->{server};
+ }
+ $::isStandalone || $in->set_help('configureNetworkISP');
+ $in->ask_from('', N("Dialup options"), [
+{ label => N("Connection name"), val => \$modem->{connection} },
+{ label => N("Phone number"), val => \$modem->{phone} },
+{ label => N("Login ID"), val => \$modem->{login} },
+{ label => N("Password"), val => \$modem->{passwd}, hidden => 1 },
+{ label => N("Authentication"), val => \$modem->{auth}, list => [ N_("PAP"), N_("Terminal-based"), N_("Script-based"), N_("CHAP") ] },
+{ label => N("Domain name"), val => \$modem->{domain} },
+{ label => N("First DNS Server (optional)"), val => \$modem->{dns1} },
+{ label => N("Second DNS Server (optional)"), val => \$modem->{dns2} },
+ ]) or return;
+ $netc->{DOMAINNAME2} = $modem->{domain};
+ any::pppConfig($in, $modem, $prefix);
+ $netc->{$_} = 'ppp0' foreach 'NET_DEVICE', 'NET_INTERFACE';
+ 1;
+}
+
+#- TODO: add choice between hcf/hsf
+sub winmodemConfigure {
+ my ($netc) = @_;
+ my $type;
+
+ foreach (keys %{$netc->{autodetect}{winmodem}}) {
+ my $temp;
+ /Hcf/ and $temp = "hcf";
+ /Hsf/ and $temp = "hsf";
+ $temp and $in->do_pkgs->what_provides("${temp}linmodem") and $type = "${temp}linmodem";
+ }
+
+ $type || $in->ask_warn(N("Warning"), N("Your modem isn't supported by the system.
+Take a look at http://www.linmodems.org")) && return 1;
+ my $e = $in->ask_from_list(N("Title"), N("\"%s\" based winmodem detected, do you want to install needed software ?", $type), [N("Install rpm"), N("Do nothing")]) or return 0;
+ $e =~ /rpm/ ? $in->do_pkgs->install($type) : return 1;
+ 1;
}
1;
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm
index f944dd762..32a3c17c3 100644
--- a/perl-install/network/netconnect.pm
+++ b/perl-install/network/netconnect.pm
@@ -1,6 +1,5 @@
-package network::netconnect; # $Id$
+package network::netconnect;
-use strict;
use common;
use log;
use detect_devices;
@@ -8,36 +7,101 @@ use run_program;
use modules;
use any;
use mouse;
-use network::network;
+use network;
+use Data::Dumper;
use network::tools;
use MDK::Common::Globals "network", qw($in $prefix $connect_file $disconnect_file $connect_prog);
-my %conf;
+my %conf;
+#- intro is called only in standalone.
+sub intro {
+ my ($prefix, $netcnx, $in) = @_;
+ my ($netc, $mouse, $intf) = ({}, {}, {});
+ my $text;
+ my $connected;
+ my $connect_file = "/etc/sysconfig/network-scripts/net_cnx_up";
+ my $disconnect_file = "/etc/sysconfig/network-scripts/net_cnx_down";
+ my $connect_prog = "/etc/sysconfig/network-scripts/net_cnx_pg";
+ read_net_conf($prefix, $netcnx, $netc);
+ if (!$::isWizard) {
+ if (connected()) {
+ $text = N("You are currently connected to internet.") . (-e $disconnect_file ? N("\nYou can disconnect or reconfigure your connection.") : N("\nYou can reconfigure your connection."));
+ $connected = 1;
+ } else {
+ $text = N("You are not currently connected to Internet.") . (-e $connect_file ? N("\nYou can connect to Internet or reconfigure your connection.") : N("\nYou can reconfigure your connection."));
+ $connected = 0;
+ }
+ my @l = (
+ if_(!$connected && -e $connect_file, { description => N("Connect"), c => 1 }),
+ if_($connected && -e $disconnect_file, { description => N("Disconnect"), c => 2 }),
+ { description => N("Configure the connection"), c => 3 },
+ { description => N("Cancel"), c => 4 },
+ );
+ my $e = $in->ask_from_listf(N("Internet connection & configuration"),
+ translate($text),
+ sub { $_[0]{description} },
+ \@l);
+ run_program::rooted($prefix, $connect_prog) if $e->{c} == 1;
+ run_program::rooted($prefix, $disconnect_file) if $e->{c} == 2;
+ main($prefix, $netcnx, $netc, $mouse, $in, $intf, 0, 0) if $e->{c} == 3;
+ $in->exit(0) if $e->{c} == 4;
+ } else {
+ main($prefix, $netcnx, $netc, $mouse, $in, $intf, 0, 0);
+ }
+}
sub detect {
- my ($auto_detect, $o_class) = @_;
- my %l = (
- isdn => sub {
- require network::isdn;
- $auto_detect->{isdn} = network::isdn::isdn_detect_backend();
- },
- lan => sub { # ethernet
- modules::load_category('network/main|gigabit|usb');
- require network::ethernet;
- $auto_detect->{lan} = { map { $_->[0] => $_->[1] } network::ethernet::conf_network_card_backend() };
- },
- adsl => sub {
- require network::adsl;
- $auto_detect->{adsl} = network::adsl::adsl_detect();
- },
- modem => sub {
- my ($modem, @pci_modems) = detect_devices::getModem();
- $modem->{device} and $auto_detect->{modem} = $modem->{device};
- @pci_modems and $auto_detect->{winmodem}{$_->{driver}} = $_->{description} foreach @pci_modems;
- },
- );
- $l{$_}->() foreach ($o_class || (keys %l));
- return;
+ my ($auto_detect, $net_install) = @_;
+ my $isdn = {};
+ require network::isdn;
+ network::isdn->import;
+ isdn_detect_backend($isdn);
+ $auto_detect->{isdn}{$_} = $isdn->{$_} foreach qw(description vendor id driver card_type type);
+ $auto_detect->{isdn}{description} =~ s/.*\|//;
+
+ modules::load_category('network/main|usb');
+ require network::ethernet;
+ network::ethernet->import;
+ my @all_cards = conf_network_card_backend(undef, undef, undef, undef, undef, undef);
+ map { $auto_detect->{lan}{$_->[0]} = $_->[1] } @all_cards if !$net_install;
+
+ my $adsl = {};
+ require network::adsl;
+ network::adsl->import;
+ $auto_detect->{adsl} = adsl_detect($adsl);
+
+ require network::modem;
+ network::modem->import;
+ my ($modem, @pci_modems) = detect_devices::getModem();
+ $modem->{device} and $auto_detect->{modem} = $modem->{device};
+ @pci_modems and $auto_detect->{winmodem}{$_->{driver}} = $_->{description} foreach @pci_modems;
+}
+
+sub pre_func {
+ my ($text) = @_;
+ $in->isa('interactive_gtk') or return;
+ $::Wizard_no_previous = 1;
+ if ($::isStandalone) {
+ $::Wizard_splash = 1;
+ require ugtk2;
+ ugtk2->import(qw(:wrappers));
+ my $W = ugtk2->new(N("Network Configuration Wizard"));
+ gtkadd($W->{window},
+ gtkpack_(new Gtk2::VBox(0, 0),
+ 1, write_on_pixmap(gtkcreate_img("drakconnect_step"),
+ 20,200,
+ N("We are now going to configure the %s connection.", translate($text)),
+ ),
+ 0, $W->create_okcancel(N("OK"))
+ )
+ );
+ $W->main;
+ $::Wizard_splash = 0;
+ } else {
+ #- for i18n : %s is the type of connection of the list: (modem, isdn, adsl, cable, local network);
+ $in->ask_okcancel(N("Network Configuration Wizard"), N("\n\n\nWe are now going to configure the %s connection.\n\n\nPress OK to continue.", translate($_[0])), 1);
+ }
+ undef $::Wizard_no_previous;
}
sub init_globals {
@@ -50,891 +114,180 @@ sub init_globals {
connect_prog => "/etc/sysconfig/network-scripts/net_cnx_pg");
}
-sub detect_timezone() {
- my %tmz2country = (
- 'Europe/Paris' => N("France"),
- 'Europe/Amsterdam' => N("Netherlands"),
- 'Europe/Rome' => N("Italy"),
- 'Europe/Brussels' => N("Belgium"),
- 'America/New_York' => N("United States"),
- 'Europe/London' => N("United Kingdom")
- );
- my %tm_parse = MDK::Common::System::getVarsFromSh('/etc/sysconfig/clock');
- my @country;
- foreach (keys %tmz2country) {
- if ($_ eq $tm_parse{ZONE}) {
- unshift @country, $tmz2country{$_};
- } else { push @country, $tmz2country{$_} };
+sub main {
+ my ($prefix, $netcnx, $netc, $mouse, $in, $intf, $first_time, $_direct_fr, $noauto) = @_;
+ init_globals($in, $prefix);
+ $netc->{minus_one} = 0; #When one configure an eth in dhcp without gateway
+ $::isInstall and $in->set_help('configureNetwork');
+ $::isStandalone and read_net_conf($prefix, $netcnx, $netc); # REDONDANCE with intro. FIXME
+ $netc->{NET_DEVICE} = $netcnx->{NET_DEVICE} if $netcnx->{NET_DEVICE}; # REDONDANCE with read_conf. FIXME
+ $netc->{NET_INTERFACE} = $netcnx->{NET_INTERFACE} if $netcnx->{NET_INTERFACE}; # REDONDANCE with read_conf. FIXME
+ network::network::read_all_conf($prefix, $netc ||= {}, $intf ||= {});
+
+ modules::mergein_conf("$prefix/etc/modules.conf");
+
+ my $direct_net_install;
+ if ($first_time && $::isInstall && ($in->{method} eq "ftp" || $in->{method} eq "http" || $in->{method} eq "nfs")) {
+ (!($::expert || $noauto) or $in->ask_okcancel(N("Network Configuration"),
+ N("Because you are doing a network installation, your network is already configured.
+Click on Ok to keep your configuration, or cancel to reconfigure your Internet & Network connection.
+"), 1)) and do {
+ $netcnx->{type} = 'lan';
+ output_with_perm("$prefix$connect_file", 0755,
+ qq(
+ifup eth0
+));
+ output("$prefix$disconnect_file", 0755,
+ qq(
+ifdown eth0
+));
+ $direct_net_install = 1;
+ goto step_5;
+};
}
- \@country;
-}
-
-
-# configuring all network devices
- sub main {
- my ($_prefix, $netcnx, $in, $o_netc, $o_mouse, $o_intf, $o_first_time, $o_noauto) = @_;
- my $netc = $o_netc || {};
- my $mouse = $o_mouse || {};
- my $intf = $o_intf || {};
- my $first_time = $o_first_time || 0;
- my ($network_configured, $direct_net_install, $cnx_type, $type, $interface, @cards, @all_cards, @devices);
- my (%connection_steps, %connections, %rconnections, @connection_list);
- my ($ntf_name, $ipadr, $netadr, $gateway_ex, $up, $modem, $isdn, $isdn_type, $adsl_type, $need_restart_network);
- my ($module, $text, $auto_ip, $net_device, $onboot, $needhostname, $hotplug, $track_network_id, @fields); # lan config
- my $success = 1;
- my $ethntf = {};
- use Data::Dumper;
-
- my %yesno = (yes => N("Yes"), no => N("No"));
-
- my %wireless_mode = (N("Ad-hoc") => "Ad-hoc",
- N("Managed") => "Managed",
- N("Master") => "Master",
- N("Repeater") => "Repeater",
- N("Secondary") => "Secondary",
- N("Auto") => "Auto",
- );
+ $netc->{autodetection} = 1;
+ $netc->{autodetect} = {};
- init_globals($in, $::prefix);
- $netc->{NET_DEVICE} = $netcnx->{NET_DEVICE} if $netcnx->{NET_DEVICE}; # REDONDANCE with read_conf. FIXME
- $netc->{NET_INTERFACE} = $netcnx->{NET_INTERFACE} if $netcnx->{NET_INTERFACE}; # REDONDANCE with read_conf. FIXME
- network::network::read_all_conf($::prefix, $netc, $intf);
-
- modules::mergein_conf("$::prefix/etc/modules.conf");
-
- $netc->{autodetection} = 0;
- $netc->{autodetect} = {};
-
- my $next_cnx_step = sub {
- my $next = connection_steps{$cnx_type};
- # FIXME: we want this in standalone mode too:
- $need_restart_network = 1 if $next =~ /lan|cable/;
- if ($next eq "multiple_internet_cnx") {
- return 1 < scalar(keys %{$netc->{internet_cnx}}) ? "multiple_internet_cnx" : $connection_steps{multiple_internet_cnx};
- }
- return $next;
- };
-
- my $ppp_first_step = sub {
- $mouse ||= {};
- $mouse->{device} ||= readlink "$::prefix/dev/mouse";
- write_cnx_script($netc, "modem", join("\n", if_($::testing, "/sbin/route del default"), "ifup ppp0"),
- q(ifdown ppp0
-killall pppd
-), $netcnx->{type});
- my $need_to_ask = $modem->{device} || !$netc->{autodetect}{winmodem};
- return $need_to_ask ? "ppp_choose" : "ppp_choose2";
- };
-
- # main wizard:
- my $wiz;
- $wiz =
- {
- defaultimage => "wiz_drakconnect.png",
- name => N("Network & Internet Configuration"),
- pages => {
- install =>
- {
- if_($::isInstall, no_back => 1),
- name => N("Welcome to The Network Configuration Wizard.
+ step_1:
+ $::Wizard_no_previous = 1;
+ my @profiles = get_profiles();
+ $in->ask_from(N("Network Configuration Wizard"),
+ N("Welcome to The Network Configuration Wizard.
We are about to configure your internet/network connection.
If you don't want to use the auto detection, deselect the checkbox.
"),
- interactive_help_id => 'configureNetwork',
- data => [
- { text => N("Use auto detection"), val => \$netc->{autodetection}, type => 'bool' },
- { text => N("Expert Mode"), val => \$::expert, type => 'bool' },
- ],
- post => sub {
- if ($netc->{autodetection}) {
- my $_w = $in->wait_message(N("Network Configuration Wizard"), N("Detecting devices..."));
- detect($netc->{autodetect});
- }
-
- $conf{$_} = values %{$netc->{autodetect}{$_}} ? 1 : 0 foreach 'lan';
- $conf{$_} = $netc->{autodetect}{$_} ? 1 : 0 foreach qw(adsl cable modem winmodem);
- $conf{isdn} = any { $_->{driver} } values %{$netc->{autodetect}{isdn}};
- return "connection";
- },
- },
-
- connection =>
- {
- pre => sub {
- if (!$::isInstall) {
- $conf{$_} = 0 foreach qw(adsl cable isdn lan modem winmodem);
- }
- my @connections =
- (
- [ #-PO: here, "(detected)" string will be appended to eg "ADSL connection"
- N("Normal modem connection"), N("(detected on port %s)", $netc->{autodetect}{modem}), "modem" ],
- [ N("Winmodem connection"), N("(detected)"), "winmodem" ],
- [ N("ISDN connection"), N("(detected %s)", join(', ', map { $_->{description} } values %{$netc->{autodetect}{isdn}})), "isdn" ],
- [ N("ADSL connection"), N("(detected)"), "adsl" ],
- [ N("Cable connection"), N("(detected)"), "cable" ],
- [ N("LAN connection"), N("(detected)"), "lan" ],
- # if we ever want to split out wireless connection, we'd to split out modules between network/main and network/wlan:
- if_(0, [ N("Wireless connection"), N("(detected)"), "lan" ]),
- );
-
- foreach (@connections) {
- my ($str, $extra_str, $type) = @$_;
- my $string = join('', $str, if_($conf{$type}, " - ", $extra_str));
- $connections{$string} = $type;
- }
- %rconnections = reverse %connections;
- if ($::isInstall) {
- @connection_list = map {
- my (undef, undef, $type) = @$_;
- +{ text => $rconnections{$type}, val => \$conf{$type}, type => 'bool' }
- } @connections;
- } else {
- @connection_list = ({ val => \$type, type => 'list', list => [ map { $_->[0] } @connections ], });
- }
- },
- if_(!$::isInstall, no_back => 1),
- name => N("Choose the connection you want to configure"),
- interactive_help_id => 'configureNetwork',
- data => \@connection_list,
- changed => sub {
- return if !$netc->{autodetection};
- my $c = 0;
- #- $conf{adsl} and $c++;
- $conf{cable} and $c++;
- my $a = keys(%{$netc->{autodetect}{lan}});
- 0 < $a && $a <= $c and $conf{lan} = undef;
- },
- complete => sub {
- # at least one connection type must be choosen
- return 0 if !$::isInstall;
- return !any { $conf{$_} } keys %conf;
- },
- post => sub {
- load_conf($netcnx, $netc, $intf) if $::isInstall; # :-(
- # while in installer, we need to link connections steps depending of which connections the user selected
- my @l;
- if ($::isInstall) {
- @l = grep { $conf{$_} } keys %conf;
- } else {
- $type = $connections{$type};
- @l = ($type);
- }
- my $first = shift @l;
- my @steps = (@l,
- "multiple_internet_cnx",
- ($::isInstall ? "miscellaneous_choose" : "apply_settings"));
- foreach my $cnx ($first, @l) {
- $connection_steps{$cnx} = shift @steps;
- }
- # FIXME: s/$type/"${type}_standalone"/ (because of newer steps for standalone mode just break all but lan paths:
- return $::isInstall ? "prepare_detection" : "${type}_standalone";
- },
- },
-
- prepare_detection =>
- {
- name => N("We are now going to configure the %s connection.\n\n\nPress \"%s\" to continue.",
- translate($type), N("Next")),
- post => $next_cnx_step,
- },
-
-
- hw_account =>
- { # ask_info2
- #my ($cnx, $netc) = @_;
-
- name => N("Connection Configuration") . "\n\n" .
- N("Please fill or check the field below"),
- data => [],
- pre => sub {
- push @{$wiz->{pages}{hw_account}{data}}, map {
- my ($dstruct, $field, $item) = @$_;
- $item->{val} = \$wiz->{var}{$dstruct}{$field};
- if__($wiz->{var}{$dstruct}{$field}, $item);
- } ([ "cnx", "irq", { label => N("Card IRQ") } ],
- [ "cnx", "mem", { label => N("Card mem (DMA)") } ],
- [ "cnx", "io", { label => N("Card IO") } ],
- [ "cnx", "io0", { label => N("Card IO_0") } ],
- [ "cnx", "io1", { label => N("Card IO_1") } ],
- [ "cnx", "phone_in", { label => N("Your personal phone number") } ],
- [ "netc", "DOMAINNAME2", { label => N("Provider name (ex provider.net)") } ],
- [ "cnx", "phone_out", { label => N("Provider phone number") } ],
- [ "netc", "dnsServer2", { label => N("Provider dns 1 (optional)") } ],
- [ "netc", "dnsServer3", { label => N("Provider dns 2 (optional)") } ],
- [ "cnx", "vpivci", { label => N("Choose your country"), list => detect_timezone() } ],
- [ "cnx", "dialing_mode", { label => N("Dialing mode"), list => ["auto", "manual"] } ],
- [ "cnx", "speed", { label => N("Connection speed"), list => ["64 Kb/s", "128 Kb/s"] } ],
- [ "cnx", "huptimeout", { label => N("Connection timeout (in sec)") } ],
- );
- push @{$wiz->{pages}{hw_account}{data}},
- ({ label => N("Account Login (user name)"), val => \$wiz->{var}{cnx}{login} },
- {
- label => N("Account Password"), val => \$wiz->{var}{cnx}{passwd}, hidden => 1 },
- );
- }
- },
- post => sub {
- my $netc = $wiz->{var}{netc};
- if ($netc->{vpivci}) {
- my %h = (N("Belgium") => '8_35' ,
- N("France") => '8_35' ,
- N("Italy") => '8_35' ,
- N("Netherlands") => '8_48' ,
- N("United Kingdom") => '0_38' ,
- N("United States") => '8_35',
- );
- $netc->{vpivci} = $h{$netc->{vpivci}};
- }
- },
-
- cable =>
- {
- name => N("Connect to the Internet") . "\n\n" .
- N("Which dhcp client do you want to use ? (default is dhcp-client)"),
- data =>
- [ { val => \$netcnx->{dhcp_client}, list => ["dhcp-client", "dhcpcd", "dhcpxd"] } ],
-
- post => sub {
- $netcnx->{type} = $type = 'cable';
- $in->do_pkgs->install($netcnx->{dhcp_client});
- write_cnx_script($netc, "cable", qq(
-/sbin/ifup $netc->{NET_DEVICE}
-),
- qq(
-/sbin/ifdown $netc->{NET_DEVICE}
-), $netcnx->{type});
- return "go_ethernet";
- },
- },
-
- go_ethernet =>
- {
- pre => sub {
- # my ($netc, $intf, $type, $ipadr, $netadr, $first_time) = @_;
- conf_network_card($netc, $intf, $type, $ipadr, $netadr) or return;
- $netc->{NET_INTERFACE} = $netc->{NET_DEVICE};
- configureNetwork($netc, $intf, $first_time) or return;
- },
- },
-
- isdn =>
- {
- pre=> sub {
- detect($netc->{autodetect}, 'isdn') if !$::isInstall && !$netc->{autodetection};
- # FIXME: offer to pick any card from values %{$netc->{autodetect}{isdn}}
- $isdn = top(values %{$netc->{autodetect}{isdn}});
- isdn_step_1:
- defined $isdn->{id} and goto intern_pci;
- },
- # !intern_pci:
- name => N("What kind is your ISDN connection?"),
- data => [ { val => \$isdn_type, type => "list", list => [ N_("Internal ISDN card"), N_("External ISDN modem") ], } ],
- post => sub {
- if ($isdn_type =~ /card/) {
- intern_pci:
- $netc->{isdntype} = 'isdn_internal';
- $netcnx->{isdn_internal} = $isdn;
- $netcnx->{isdn_internal} = isdn_read_config($netcnx->{isdn_internal});
- isdn_detect($netcnx->{isdn_internal}, $netc) or goto isdn_step_1;
- } else {
- $netc->{isdntype} = 'isdn_external';
- $netcnx->{isdn_external}{device} = $netc->{autodetect}{modem};
- $netcnx->{isdn_external} = isdn_read_config($netcnx->{isdn_external});
- $netcnx->{isdn_external}{special_command} = 'AT&F&O2B40';
- require network::modem;
- $modem = $netcnx->{isdn_external};
- return &$ppp_first_step->();
- };
-
- },
- },
-
- isdn_detect =>
- {
- pre => sub {
- my ($isdn, $netc) = @_;
- if ($isdn->{id}) {
- log::explanations("found isdn card : $isdn->{description}; vendor : $isdn->{vendor}; id : $isdn->{id}; driver : $isdn->{driver}\n");
- $isdn->{description} =~ s/\|/ -- /;
-
- isdn_detect_step_0:
- defined $isdn->{type} and my $new = $in->ask_yesorno(N("ISDN Configuration"), N("Do you want to start a new configuration ?"), 1);
-
- if ($isdn->{type} eq '' || $new) {
- isdn_ask($isdn, $netc, N("I have detected an ISDN PCI card, but I don't know its type. Please select a PCI card on the next screen.")) or goto isdn_detect_step_0;
- } else {
- isdn_detect_step_1:
- $isdn->{protocol} = isdn_ask_protocol() or goto isdn_detect_step_0;
- isdn_detect_step_2:
- isdn_ask_info($isdn, $netc) or goto isdn_detect_step_1;
- isdn_write_config($isdn, $netc) or goto isdn_detect_step_2;
- }
- } else {
- isdn_ask($isdn, $netc, N("No ISDN PCI card found. Please select one on the next screen.")) or return;
- }
- $netc->{$_} = 'ippp0' foreach 'NET_DEVICE', 'NET_INTERFACE';
- 1;
- }
- },
-
- winmodem =>
- {
- pre => sub {
- my ($in, $netcnx, $mouse, $netc) = @_;
- my %relocations = (ltmodem => $in->do_pkgs->check_kernel_module_packages('ltmodem'));
- my $type;
-
- detect($netc->{autodetect}, 'lan') if !$::isInstall && !$netc->{autodetection};
- $netc->{autodetect}{winmodem} or ($in->ask_warn(N("Warning"), N("You don't have any winmodem")) ? return 1 : $in->exit(0));
-
- foreach (keys %{$netc->{autodetect}{winmodem}}) {
- /Hcf/ and $type = "hcfpcimodem";
- /Hsf/ and $type = "hsflinmodem";
- /LT/ and $type = "ltmodem";
- $relocations{$type} || $type && $in->do_pkgs->what_provides($type) or $type = undef;
- }
-
- $type or ($in->ask_warn(N("Warning"), N("Your modem isn't supported by the system.
-Take a look at http://www.linmodems.org")) ? return 1 : $in->exit(0));
- my $e = $in->ask_from_list(N("Title"), N("\"%s\" based winmodem detected, do you want to install needed software ?", $type), [N("Install rpm"), N("Do nothing")]) or return 0;
- if ($e =~ /rpm/) {
- if ($in->do_pkgs->install($relocations{$type} ? @{$relocations{$type}} : $type)) {
- unless ($::isInstall) {
- #- fallback to modem configuration (beware to never allow test it).
- $netcnx->{type} = 'modem';
- #$type eq 'ltmodem' and $netc->{autodetect}{modem} = '/dev/ttyS14';
- return configure($in, $netcnx, $mouse, $netc);
- }
- } else {
- return 0;
- }
- }
- return 1;
- },
- },
-
- no_winmodem =>
- {
- name => N("Warning") . "\n\n" . N("You don't have any winmodem"),
- },
-
- no_supported_winmodem =>
- {
- name => N("Warning") . "\n\n" . N("Your modem isn't supported by the system.
-Take a look at http://www.linmodems.org")
- },
-
-
-
-
- modem =>
- {
- pre => sub {
- my ($in, $netcnx, $mouse, $netc) = @_;
- $netcnx->{type} = 'modem';
- my $modem = $netcnx->{$netcnx->{type}};
- $modem->{device} = $netc->{autodetect}{modem};
- my %l = getVarsFromSh("$::prefix/usr/share/config/kppprc");
- $modem->{connection} = $l{Name};
- $modem->{domain} = $l{Domain};
- ($modem->{dns1}, $modem->{dns2}) = split(',', $l{DNS});
-
- foreach (cat_("/etc/sysconfig/network-scripts/chat-ppp0")) {
- /.*ATDT(\d*)/ and $modem->{phone} = $1;
- }
- foreach (cat_("/etc/sysconfig/network-scripts/ifcfg-ppp0")) {
- /NAME=(['"]?)(.*)\1/ and $modem->{login} = $2;
- }
- my $secret = network::tools::read_secret_backend();
- foreach (@$secret) {
- $modem->{passwd} = $_->{passwd} if $_->{login} eq $modem->{login};
- }
-
- return &$ppp_first_step->();
- },
- },
-
- # FIXME: only if $need_to_ask
- ppp_choose =>
- {
- pre => sub {
- $mouse ||= {};
- $mouse->{device} ||= readlink "$::prefix/dev/mouse";
- write_cnx_script($netc, "modem", join("\n", if_($::testing, "/sbin/route del default"), "ifup ppp0"),
- q(ifdown ppp0
-killall pppd
-), $netcnx->{type});
- my $need_to_ask = $modem->{device} || !$netc->{autodetect}{winmodem};
- },
-
- name => N("Please choose which serial port your modem is connected to."),
- interactive_help_id => 'selectSerialPort',
- data => [ { var => \$modem->{device}, format => \&mouse::serial_port2text, type => "list",
- list => [ grep { $_ ne $o_mouse->{device} } (if_(-e '/dev/modem', '/dev/modem'), mouse::serial_ports()) ] } ],
-
- next => "ppp_choose2",
- },
-
- ppp_choose2 =>
- {
- pre => sub {
- #my $secret = network::tools::read_secret_backend();
- #my @cnx_list = map { $_->{server} } @$secret;
- },
- name => N("Dialup options"),
- data => [
- { label => N("Connection name"), val => \$modem->{connection} },
- { label => N("Phone number"), val => \$modem->{phone} },
- { label => N("Login ID"), val => \$modem->{login} },
- { label => N("Password"), val => \$modem->{passwd}, hidden => 1 },
- { label => N("Authentication"), val => \$modem->{auth}, list => [ N_("PAP"), N_("Terminal-based"), N_("Script-based"), N_("CHAP") ] },
- { label => N("Domain name"), val => \$modem->{domain} },
- { label => N("First DNS Server (optional)"), val => \$modem->{dns1} },
- { label => N("Second DNS Server (optional)"), val => \$modem->{dns2} },
- ],
- post => sub {
- network::modem::ppp_configure($in, $netc, $modem);
- $netc->{$_} = 'ppp0' foreach 'NET_DEVICE', 'NET_INTERFACE';
- &$next_cnx_step->();
- },
- },
-
-
- lan_standalone =>
- {
- pre => sub {
- detect($netc->{autodetect}, 'lan') if !$::isInstall;
- modules::interactive::load_category($in, 'network/main|gigabit|usb|pcmcia', !$::expert, 1);
- @all_cards = network::ethernet::conf_network_card_backend($netc, $intf);
- @cards = map { $_->[0] } @all_cards;
- foreach my $card (@all_cards) {
- modules::remove_alias($card->[1]);
- modules::add_alias($card->[0], $card->[1]);
- }
- },
- name => N("Select the network interface to configure:"),
- data => [ { label => N("Net Device"), val => \$ntf_name, list => [ detect_devices::getNet() ], allow_empty_list => 1 } ],
- post => sub {
- delete $ethntf->{$_} foreach keys %$ethntf;
- add2hash($ethntf, $intf->{$ntf_name});
- return 'lan';
- },
- },
-
-
- # FIXME: is_install: no return for each card "last step" because of manual popping
- # better construct an hash of { current_netintf => next_step } which next_step = last_card ? next_eth_step : next_card ?
- lan =>
- {
- pre => sub {
- # FIXME: set $module
- $net_device = $netc->{NET_DEVICE};
- if ($net_device eq $ethntf->{DEVICE}) {
- $text = N("WARNING: this device has been previously configured to connect to the Internet.
-Simply accept to keep this device configured.
-Modifying the fields below will override this configuration.");
- } else {
- $text = N("Please enter the IP configuration for this machine.
-Each item should be entered as an IP address in dotted-decimal
-notation (for example, 1.2.3.4).");
- }
- $auto_ip = $ethntf->{BOOTPROTO} !~ /static/;
- $onboot = $ethntf->{ONBOOT} ? $ethntf->{ONBOOT} =~ /yes/ : bool2yesno(!member($ethntf->{DEVICE},
- map { $_->{device} } detect_devices::pcmcia_probe()));
- $needhostname = $ethntf->{NEEDHOSTNAME} !~ /no/;
- $hotplug = $::isStandalone && !$ethntf->{MII_NOT_SUPPORTED} || 1;
- $track_network_id = $::isStandalone && $ethntf->{HWADDR} || detect_devices::isLaptop();
- delete $ethntf->{NETWORK};
- delete $ethntf->{BROADCAST};
- @fields = qw(IPADDR NETMASK);
- },
- name => sub { N("Configuring network device %s", $ethntf->{DEVICE}) . ($module ? N(" (driver %s)", $module) : '') . "\n\n" . $text },
- data => sub {
- [ { label => N("Automatic IP"), val => \$auto_ip, type => "bool", text => N("(bootp/dhcp/zeroconf)") },
- { label => N("IP address"), val => \$ethntf->{IPADDR}, disabled => sub { $auto_ip } },
- { label => N("Netmask"), val => \$ethntf->{NETMASK}, disabled => sub { $auto_ip } },
- { label => N("DHCP host name"), val => \$ethntf->{DHCP_HOSTNAME}, disabled => sub { ! ($auto_ip && $needhostname) }, advanced => 1 },
- { text => N("Track network card id (useful for laptops)"), val => \$track_network_id, type => "bool", advanced => 1 },
- { text => N("Network Hotplugging"), val => \$hotplug, type => "bool", advanced => 1 },
- { text => N("Assign host name from DHCP address"), val => \$needhostname, type => "bool", disabled => sub { ! $auto_ip }, advanced => 1 },
- { text => N("Start at boot"), val => \$onboot, type => "bool", advanced => 1 },
- ],
- },
- complete => sub {
- $ethntf->{BOOTPROTO} = $auto_ip ? join('', if_($auto_ip, "dhcp")) : "static";
- $netc->{DHCP} = $auto_ip;
- return 0 if $auto_ip;
- if (my @bad = map_index { if_(!is_ip($ethntf->{$_}), $::i) } @fields) {
- $in->ask_warn('', N("IP address should be in format 1.2.3.4"));
- return 1, $bad[0];
- }
- $in->ask_warn('', N("Warning : IP address %s is usually reserved !", $ethntf->{IPADDR})) if is_ip_forbidden($ethntf->{IPADDR});
- },
- focus_out => sub {
- $ethntf->{NETMASK} ||= netmask($ethntf->{IPADDR}) unless $_[0]
- },
- post => sub {
- $ethntf->{ONBOOT} = bool2yesno($onboot);
- $ethntf->{NEEDHOSTNAME} = bool2yesno($needhostname);
- $ethntf->{MII_NOT_SUPPORTED} = bool2yesno(!$hotplug);
- $ethntf->{HWADDR} = $track_network_id or delete $ethntf->{HWADDR};
-
- #FIXME "wireless" if $ethntf->{wireless_eth};
- # FIXME: only ask for zeroconf if no dynamic host *AND* no adsl/isdn/modem (aka type being lan|wireless)
- return is_dynamic_ip($intf) ?
- (is_dynamic_host($ethntf) ? "dhcp_hostname" : "zeroconf")
- : "static_hostname";
- },
- },
-
- wireless =>
- {
- pre => sub {
- if (is_wireless_intf($module)) {
- $ethntf->{wireless_eth} = 1;
- $netc->{wireless_eth} = 1;
- $ethntf->{WIRELESS_MODE} = "Managed";
- $ethntf->{WIRELESS_ESSID} = "any";
- }
- },
- name => N("Please enter the wireless parameters for this card:"),
- data => [
- { label => N("Operating Mode"), val => \$ethntf->{WIRELESS_MODE},
- list => [ keys %wireless_mode ] },
- { label => N("Netwok name (ESSID)"), val => \$ethntf->{WIRELESS_ESSID} },
- { label => N("Network ID"), val => \$ethntf->{WIRELESS_NWID} },
- { label => N("Operating frequency"), val => \$ethntf->{WIRELESS_FREQ} },
- { label => N("Sensitivity threshold"), val => \$ethntf->{WIRELESS_SENS} },
- { label => N("Bitrate (in b/s)"), val => \$ethntf->{WIRELESS_RATE} },
- { label => N("Encryption key"), val => \$ethntf->{WIRELESS_ENC_KEY} },
- { label => N("RTS/CTS"), val => \$ethntf->{WIRELESS_RTS},
- help => N("RTS/CTS adds a handshake before each packet transmission to make sure that the
-channel is clear. This adds overhead, but increase performance in case of hidden
-nodes or large number of active nodes. This parameters set the size of the
-smallest packet for which the node sends RTS, a value equal to the maximum
-packet size disable the scheme. You may also set this parameter to auto, fixed
-or off.")
- },
- { label => N("Fragmentation"), val => \$ethntf->{WIRELESS_FRAG} },
- { label => N("Iwconfig command extra arguments"), val => \$ethntf->{WIRELESS_IWCONFIG}, advanced => 1,
- help => N("Here, one can configure some extra wireless parameters such as:
-ap, channel, commit, enc, power, retry, sens, txpower (nick is already set as the hostname).
-
-See iwpconfig(8) man page for further information."),
- },
- { label => N("Iwspy command extra arguments"), val => \$ethntf->{WIRELESS_IWSPY}, advanced => 1,
- help => N("Iwspy is used to set a list of addresses in a wireless network
-interface and to read back quality of link information for each of those.
-
-This information is the same as the one available in /proc/net/wireless :
-quality of the link, signal strength and noise level.
-
-See iwpspy(8) man page for further information."),
- },
- { label => N("Iwpriv command extra arguments"), val => \$ethntf->{WIRELESS_IWPRIV}, advanced => 1,
- help => N("Iwpriv enable to set up optionals (private) parameters of a wireless network
-interface.
+ [
+ if_(@profiles > 1, { label => N("Choose the profile to configure"), val => \$netcnx->{PROFILE}, list => \@profiles }),
+ { label => N("Use auto detection"), val => \$netc->{autodetection}, type => 'bool' },
+ if_($::isStandalone, { label => N("Expert Mode"), val => \$::expert, type => 'bool' }),
+ ]
+ ) or goto step_5;
+ undef $::Wizard_no_previous;
+ set_profile($netcnx);
+ if ($netc->{autodetection}) {
+ my $_w = $in->wait_message(N("Network Configuration Wizard"), N("Detecting devices..."));
+ detect($netc->{autodetect}, $::isInstall && ($in->{method} eq "ftp" || $in->{method} eq "http" || $in->{method} eq "nfs"));
+ }
-Iwpriv deals with parameters and setting specific to each driver (as opposed to
-iwconfig which deals with generic ones).
+ step_2:
+
+# my $set_default;
+ $conf{$_} = $netc->{autodetect}{$_} ? 1 : 0 foreach 'modem', 'winmodem', 'adsl', 'cable', 'lan';
+ $conf{isdn} = $netc->{autodetect}{isdn}{description} ? 1 : 0;
+
+ $::isInstall and $in->set_help('configureNetwork');
+ my @l = (
+ [N("Normal modem connection") . if_($netc->{autodetect}{modem}, " - " . N("detected on port %s", $netc->{autodetect}{modem})), \$conf{modem}],
+ [N("Winmodem connection") . if_($netc->{autodetect}{winmodem}, " - " . N("detected")), \$conf{winmodem}],
+ [N("ISDN connection") . if_($netc->{autodetect}{isdn}{description}, " - " . N("detected %s", $netc->{autodetect}{isdn}{description})), \$conf{isdn}],
+ [N("ADSL connection") . if_($netc->{autodetect}{adsl}, " - " . N("detected")), \$conf{adsl}],
+ [N("Cable connection") . if_($netc->{autodetect}{cable}, " - " . N("cable connection detected")), \$conf{cable}],
+ [N("LAN connection") . if_($netc->{autodetect}{lan}, " - " . N("ethernet card(s) detected")), \$conf{lan}]
+ );
+ $::isInstall and $in->set_help('configureNetwork');
+ $in->ask_from(N("Network Configuration Wizard"), N("Choose the connection you want to configure"),
+ [ map { { label => $_->[0], val => $_->[1], type => 'bool' } } @l ],
+ changed => sub {
+ return if !$netc->{autodetection};
+ my $c = 0;
+ #- $conf{adsl} and $c++;
+ $conf{cable} and $c++;
+ my $a = keys(%{$netc->{autodetect}{lan}});
+ 0 < $a && $a <= $c and $conf{lan} = undef;
+ }
+ ) or goto step_1;
+ load_conf($netcnx, $netc, $intf);
+ $conf{modem} and do { pre_func("modem"); require network::modem; network::modem::configure($netcnx, $mouse, $netc, $intf) or goto step_2 };
+ $conf{winmodem} and do { pre_func("winmodem"); require network::modem; network::modem::winmodemConfigure($netc) or goto step_2 };
+ $conf{isdn} and do { pre_func("isdn"); require network::isdn; network::isdn::configure($netcnx, $netc, $isdn) or goto step_2 };
+ $conf{adsl} and do { pre_func("adsl"); require network::adsl; network::adsl::configure($netcnx, $netc, $intf, $first_time) or goto step_2 };
+ $conf{cable} and do { pre_func("cable"); require network::ethernet; network::ethernet::configure_cable($netcnx, $netc, $intf, $first_time) or goto step_2; $netconnect::need_restart_network = 1 };
+ $conf{lan} and do { pre_func("local network"); require network::ethernet; network::ethernet::configure_lan($netcnx, $netc, $intf, $first_time) or goto step_2; $netconnect::need_restart_network = 1 };
+
+ step_2_1:
+ my $nb = keys %{$netc->{internet_cnx}};
+ if ($nb < 1) {
+ } elsif ($nb > 1) {
+ $in->ask_from(N("Network Configuration Wizard"),
+ N("You have configured multiple ways to connect to the Internet.\nChoose the one you want to use.\n\n") . if_(!$::isStandalone, "You may want to configure some profiles after the installation, in the Mandrake Control Center"),
+ [ { label => N("Internet connection"), val => \$netc->{internet_cnx_choice}, list => [ keys %{$netc->{internet_cnx}} ] } ]
+ ) or goto step_2;
+ } elsif ($nb == 1) {
+ $netc->{internet_cnx_choice} = (keys %{$netc->{internet_cnx}})[0];
+ }
+ member($netc->{internet_cnx_choice}, ('adsl', 'isdn')) and
+ $netc->{at_boot} = $in->ask_yesorno(N("Network Configuration Wizard"), N("Do you want to start the connection at boot?"));
+ if ($netc->{internet_cnx_choice}) {
+ write_cnx_script($netc);
+ $netcnx->{type} = $netc->{internet_cnx}{$netc->{internet_cnx_choice}}{type};
+ } else {
+ unlink "$prefix/etc/sysconfig/network-scripts/net_cnx_up";
+ unlink "$prefix/etc/sysconfig/network-scripts/net_cnx_down";
+ undef $netc->{NET_DEVICE};
+ }
-In theory, the documentation of each device driver should indicate how to use
-those interface specific commands and their effect.
+ my $success = 1;
+ network::configureNetwork2($in, $prefix, $netc, $intf);
+ my $network_configured = 1;
+
+ if ($netconnect::need_restart_network && $::isStandalone and ($::expert or $in->ask_yesorno(N("Network configuration"),
+ N("The network needs to be restarted"), 1))) {
+#- run_program::rooted($prefix, "/etc/rc.d/init.d/network stop");
+ if (!run_program::rooted($prefix, "/etc/rc.d/init.d/network restart")) {
+ $success = 0;
+ $in->ask_okcancel(N("Network Configuration"), N("A problem occured while restarting the network: \n\n%s", `/etc/rc.d/init.d/network restart`), 0);
+ }
+ }
-See iwpriv(8) man page for further information."),
- }
- ],
- complete => sub {
- if ($ethntf->{WIRELESS_FREQ} !~ /[0-9.]*[kGM]/) {
- $in->ask_warn('', N("Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz frequency), or add enough '0' (zeroes)."));
- return 1, 6;
- }
- if ($ethntf->{WIRELESS_RATE} !~ /[0-9.]*[kGM]/) {
- $in->ask_warn('', N("Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add enough '0' (zeroes)."));
- return 1, 8;
- }
- },
- post => sub {
- # untranslate parameters
- $ethntf->{WIRELESS_MODE} = $wireless_mode{$ethntf->{WIRELESS_MODE}};
- },
- },
-
- conf_network_card =>
- {
- pre => sub {
- # my ($netc, $intf, $type, $ipadr, $o_netadr) = @_;
- #-type =static or dhcp
- modules::interactive::load_category($in, 'network/main|gigabit|usb', !$::expert, 1);
- @all_cards = conf_network_card_backend($netc, $intf, $type, undef, $ipadr, $netadr) or
- # FIXME: fix this
- $in->ask_warn('', N("No ethernet network adapter has been detected on your system.
-I cannot set up this connection type.")), return;
-
- },
- name => N("Choose the network interface") . "\n\n" .
- N("Please choose which network adapter you want to use to connect to Internet."),
- data => [ { var => \$interface, type => "list", list => \@all_cards, } ],
- format => sub { my ($e) = @_; $e->[0] . ($e->[1] ? " (using module $e->[1])" : "") },
-
- post => sub {
- modules::write_conf() if $::isStandalone;
- my $_device = conf_network_card_backend($netc, $intf, $type, $interface->[0], $ipadr, $netadr);
- return "lan";
- },
- },
-
- static_hostname =>
- {
- pre => sub {
- my ($in, $netc, $intf, @devices) = @_;
-
- $netc->{dnsServer} ||= dns($intf->{IPADDR});
- $gateway_ex = gateway($intf->{IPADDR});
- #- $netc->{GATEWAY} ||= gateway($intf->{IPADDR});
- },
- name => N("Please enter your host name.
-Your host name should be a fully-qualified host name,
-such as ``mybox.mylab.myco.com''.
-You may also enter the IP address of the gateway if you have one."),
- data =>
- [ { label => N("Host name"), val => \$netc->{HOSTNAME} },
- { label => N("DNS server"), val => \$netc->{dnsServer} },
- { label => N("Gateway (e.g. %s)", $gateway_ex), val => \$netc->{GATEWAY} },
- if_(@devices > 1,
- { label => N("Gateway device"), val => \$netc->{GATEWAYDEV}, list => \@devices },
- ),
- ],
- complete => sub {
- if ($netc->{dnsServer} && !is_ip($netc->{dnsServer})) {
- $in->ask_warn('', N("DNS server address should be in format 1.2.3.4"));
- return 1;
- }
- if ($netc->{GATEWAY} && !is_ip($netc->{GATEWAY})) {
- $in->ask_warn('', N("Gateway address should be in format 1.2.3.4"));
- return 1;
- }
- },
- next => "miscellaneous_choose",
- },
-
- dhcp_hostname =>
- {
- },
-
- zeroconf =>
- {
- name => N("Enter a Zeroconf host name which will be the one that your machine will get back to other machines on the network:"),
- data => [ { label => N("Zeroconf Host name"), val => \$netc->{ZEROCONF_HOSTNAME} } ],
- complete => sub {
- if ($netc->{ZEROCONF_HOSTNAME} =~ /\./) {
- $in->ask_warn('', N("Zeroconf host name must not contain a ."));
- return 1;
- }
- },
- next => "miscellaneous_choose",
- },
-
- multiple_internet_cnx =>
- {
- pre => sub {
- my $nb = keys %{$netc->{internet_cnx}};
- if ($nb > 1) {
- # BUG: remember to remove reference to profiles in mcc if we do not restore this feature
- $in->ask_from("",
- N("You have configured multiple ways to connect to the Internet.\nChoose the one you want to use.\n\n") . if_(!$::isStandalone, "You may want to configure some profiles after the installation, in the Mandrake Control Center"),
- [ { label => N("Internet connection"), val => \$netc->{internet_cnx_choice}, list => [ keys %{$netc->{internet_cnx}} ] } ]
- ) or goto step_2;
- } elsif ($nb == 1) {
- $netc->{internet_cnx_choice} = (keys %{$netc->{internet_cnx}})[0];
- }
- },
- post => sub { $::isInstall ? "miscellaneous_choose" : "apply_settings" },
- },
-
- miscellaneous_choose =>
- {
- name => N("Proxies configuration"),
- data => [
- { label => N("HTTP proxy"), val => \$::o->{miscellaneous}->{http_proxy} },
- { label => N("FTP proxy"), val => \$::o->{miscellaneous}->{ftp_proxy} },
- ],
- complete => sub {
- if ($::o->{miscellaneous}->{http_proxy} !~ m,^($|http://),) {
- $in->ask_warn('', N("Proxy should be http://..."));
- return 1, 0;
- }
- if ($::o->{miscellaneous}->{ftp_proxy} !~ m,^($|ftp://|http://),) {
- $in->ask_warn('', N("URL should begin with 'ftp:' or 'http:'"));
- return 1, 1;
- }
- 0;
- },
- # FIXME: call ether_conf();
- post => sub { return !$::isInstall ? "apply_settings" : "network_on_boot" },
- },
-
- apply_settings =>
- {
- name => N("Configuration is complete, do you want to apply settings ?"),
- data => [], # FIXME: yesorno
- next => "network_on_boot",
- },
-
- network_on_boot =>
- {
- pre => sub {
- member($netc->{internet_cnx_choice}, ('adsl', 'isdn')) and $netc->{at_boot} = $in->ask_yesorno(N("Network Configuration Wizard"), N("Do you want to start the connection at boot?"));
-
- if ($netc->{internet_cnx_choice}) {
- write_cnx_script($netc);
- $netcnx->{type} = $netc->{internet_cnx}{$netc->{internet_cnx_choice}}{type};
- } else {
- unlink "$::prefix/etc/sysconfig/network-scripts/net_cnx_up";
- unlink "$::prefix/etc/sysconfig/network-scripts/net_cnx_down";
- undef $netc->{NET_DEVICE};
- }
-
- network::network::configureNetwork2($in, $::prefix, $netc, $intf);
- $network_configured = 1;
- },
- name => N("Do you want to start the connection at boot?"),
- data => [], # FIXME yes/no
- },
+ write_initscript();
+ $::isStandalone && member($netc->{internet_cnx_choice}, ('modem', 'adsl', 'isdn')) and
+ $success = ask_connect_now($netc->{internet_cnx_choice});
- restart =>
- {
- # FIXME: condition is "if ($netconnect::need_restart_network && $::isStandalone && (!$::expert || $in->ask_yesorno(..."
- name => N("The network needs to be restarted. Do you want to restart it ?"),
- # data => [ { label => N("Connection:"), val => \$type, type => 'list', list => [ sort values %l ] }, ],
- post => sub {
- if (!$::testing && !run_program::rooted($::prefix, "/etc/rc.d/init.d/network restart")) {
- $success = 0;
- $in->ask_okcancel(N("Network Configuration"),
- N("A problem occured while restarting the network: \n\n%s", `/etc/rc.d/init.d/network restart`), 0);
- }
- write_initscript();
- return $::isStandalone && member($netc->{internet_cnx_choice}, qw(modem adsl isdn)) ? "ask_connect_now" : "end";
- },
- },
-
- ask_connect_now =>
- {
- no_back => 1,
- name => N("Do you want to try to connect to the Internet now?"),
- data => [], # FIXME: yes/no
- post => sub {
- my ($a) = @_;
- my ($type) = $netc->{internet_cnx_choice};
- $up = 1;
- #- FIXME : code the exception to be generated by ask_yesorno, to be able to remove the $::Wizard_no_previous=1;
- if ($a) {
- # local $::isWizard = 0;
- my $_w = $in->wait_message('', N("Testing your connection..."), 1);
- connect_backend();
- my $s = 30;
- $type =~ /modem/ and $s = 50;
- $type =~ /adsl/ and $s = 35;
- $type =~ /isdn/ and $s = 20;
- sleep $s;
- $up = connected();
- }
- $success = $up;
- return $a ? "disconnect" : "end";
- }
- },
- disconnect =>
- {
- name => sub {
- $up ? N("The system is now connected to the Internet.") .
- if_($::isInstall, N("For security reasons, it will be disconnected now.")) :
- N("The system doesn't seem to be connected to the Internet.
-Try to reconfigure your connection.");
- },
- no_back => 1,
- end => 1,
- post => sub {
- $::isInstall and disconnect_backend();
- return "end";
- },
- },
+ step_3:
- end =>
- {
- name => sub {
- return $success ? join('', N("Congratulations, the network and Internet configuration is finished.
+ my $m = $success ? N("Congratulations, the network and Internet configuration is finished.
+The configuration will now be applied to your system.
-"), if_($::isStandalone && $in->isa('interactive::gtk'),
- N("After this is done, we recommend that you restart your X environment to avoid any hostname-related problems."))) :
- N("Problems occured during configuration.
+") . if_($::isStandalone && $in->isa('interactive_gtk'),
+N("After this is done, we recommend that you restart your X environment to avoid any hostname-related problems.")) :
+ N("Problems occured during configuration.
Test your connection via net_monitor or mcc. If your connection doesn't work, you might want to relaunch the configuration.");
- },
- end => 1,
- },
- },
- };
-
- my $use_wizard = 1;
- if ($::isInstall) {
- if ($first_time && $in->{method} =~ /^(ftp|http|nfs)$/) {
- !$::expert && !$o_noauto || $in->ask_okcancel(N("Network Configuration"),
- N("Because you are doing a network installation, your network is already configured.
-Click on Ok to keep your configuration, or cancel to reconfigure your Internet & Network connection.
-"), 1)
- and do {
- $netcnx->{type} = 'lan';
- output_with_perm("$::prefix$connect_file", 0755, qq(ifup eth0
-));
- output("$::prefix$disconnect_file", 0755, qq(
-ifdown eth0
-));
- $direct_net_install = 1;
- $use_wizard = 0;
- };
- } else {
- $wiz->{pages}{welcome} = $wiz->{pages}{install};
- }
- } else {
- $wiz->{pages}{welcome} = $wiz->{pages}{connection};
- };
-
- if ($use_wizard) {
- require wizards;
- $wiz->{var} = {
- netc => $o_netc || {},
- mouse => $o_mouse || {},
- intf => $o_intf || {},
- };
- wizards->new->safe_process($wiz, $in);
- }
+ if ($::isWizard) {
+ $::Wizard_no_previous = 1;
+ $::Wizard_finished = 1;
+ $in->ask_okcancel(N("Network Configuration"), $m, 1);
+ undef $::Wizard_no_previous;
+ undef $::Wizard_finished;
+ } else { $::isStandalone and $in->ask_warn('', $m) }
- # install needed packages:
- $network_configured or network::network::configureNetwork2($in, $::prefix, $netc, $intf);
+ step_5:
+
+ $network_configured or network::configureNetwork2($in, $prefix, $netc, $intf);
my $connect_cmd;
if ($netcnx->{type} =~ /modem/ || $netcnx->{type} =~ /isdn_external/) {
$connect_cmd = qq(
#!/bin/bash
if [ -n "\$DISPLAY" ]; then
- if [ -e /usr/bin/kppp ]; then
- /sbin/route del default
- /usr/bin/kppp &
- else
- /usr/sbin/net_monitor --connect
- fi
- else
- $connect_file
+if [ -e /usr/bin/kppp ]; then
+/sbin/route del default
+/usr/bin/kppp &
+else
+/usr/sbin/net_monitor --connect
+fi
+else
+$connect_file
fi
);
} elsif ($netcnx->{type}) {
$connect_cmd = qq(
#!/bin/bash
if [ -n "\$DISPLAY" ]; then
- /usr/sbin/net_monitor --connect
+/usr/sbin/net_monitor --connect
else
- $connect_file
+$connect_file
fi
);
} else {
@@ -947,15 +300,18 @@ fi
$connect_cmd = qq(
#!/bin/bash
if [ -n "\$DISPLAY" ]; then
- /usr/sbin/net_monitor --connect
+/usr/sbin/net_monitor --connect
else
- $connect_file
+$connect_file
fi
);
}
output_with_perm("$prefix$connect_prog", 0755, $connect_cmd) if $connect_cmd;
$netcnx->{$_} = $netc->{$_} foreach qw(NET_DEVICE NET_INTERFACE);
+
+ $netcnx->{NET_INTERFACE} and set_net_conf($netcnx, $netc);
$netcnx->{type} =~ /adsl/ or system("/sbin/chkconfig --del adsl 2> /dev/null");
+ save_conf($netcnx, $netc, $intf);
if ($::isInstall && $::o->{security} >= 3) {
require network::drakfirewall;
@@ -963,69 +319,275 @@ fi
}
}
-sub set_profile {
- my ($netcnx) = @_;
- system(qq(/sbin/set-netprofile "$netcnx->{PROFILE}"));
- log::explanations(qq(Switching to "$netcnx->{PROFILE}" profile));
+sub save_conf {
+ my ($netcnx, $netc, $intf) = @_;
+ my $adsl;
+ my $modem;
+ my $isdn;
+ $netcnx->{type} =~ /adsl/ and $adsl = $netcnx->{$netcnx->{type}};
+ $netcnx->{type} eq 'isdn_external' || $netcnx->{type} eq 'modem' and $modem = $netcnx->{$netcnx->{type}};
+ $netcnx->{type} eq 'isdn_internal' and $isdn = $netcnx->{$netcnx->{type}};
+ modules::load_category('network/main|usb');
+ require network::ethernet;
+ network::ethernet->import;
+ my @_all_cards = conf_network_card_backend($netc, $intf, undef, undef, undef, undef);
+
+ $intf = { %$intf };
+# "SystemName=" . do { $netc->{HOSTNAME} =~ /([^\.]*)\./; $1 } . "
+#DomainName=" . do { $netc->{HOSTNAME} =~ /\.(.*)/; $1 } . "
+#InternetAccessType=" . do { if ($netcnx->{type}) { $netcnx->{type} } else { $netc->{GATEWAY} ? "lan" : "" } } . "
+#InternetInterface=" . ($netc->{GATEWAY} && (!$netcnx->{type} || $netcnx->{type} eq 'lan') ? $netc->{GATEWAYDEV} : $netcnx->{NET_INTERFACE}) . "
+# InternetGateway=$netc->{GATEWAY}
+# DNSPrimaryIP=$netc->{dnsServer}
+# DNSSecondaryIP=$netc->{dnsServer2}
+# DNSThirdIP=$netc->{dnsServer3}
+# AdminInterface=
+
+# " . join ('', map {
+# "Eth${_}Known=" . ($intf->{"eth$_"}{DEVICE} eq "eth$_" ? 'true' : 'false') . "
+# Eth${_}IP=" . $intf->{"eth$_"}{IPADDR} . "
+# Eth${_}Mask=" . $intf->{"eth$_"}{NETMASK} . "
+# Eth${_}Mac=
+# Eth${_}BootProto=" . $intf->{"eth$_"}{BOOTPROTO} . "
+# Eth${_}OnBoot=" . $intf->{"eth$_"}{ONBOOT} . "
+# Eth${_}Hostname=$netc->{HOSTNAME}
+# Eth${_}HostAlias=" . do { $netc->{HOSTNAME} =~ /([^\.]*)\./; $1 } . "
+# Eth${_}Driver=$all_cards[$_][1]
+# Eth${_}Irq=
+# Eth${_}Port=
+# Eth${_}DHCPClient=" . ($intf->{"eth$_"}{BOOTPROTO} eq 'dhcp' ? $netcnx->{dhcp_client} : '') . "
+# Eth${_}DHCPServerName=" . ($intf->{"eth$_"}{BOOTPROTO} eq 'dhcp' ? $netc->{HOSTNAME} : '') . "\n"
+# } (0..9)) .
+# ISDNDriver=$isdn->{driver}
+# ISDNDeviceType=$isdn->{type}
+# ISDNIrq=$isdn->{irq}
+# ISDNMem=$isdn->{mem}
+# ISDNIo=$isdn->{io}
+# ISDNIo0=$isdn->{io0}
+# ISDNIo1=$isdn->{io1}
+# ISDNProtocol=$isdn->{protocol}
+# ISDNCardDescription=$isdn->{description}
+# ISDNCardVendor=$isdn->{vendor}
+# ISDNId=$isdn->{id}
+# ISDNProvider=$netc->{DOMAINNAME2}
+# ISDNProviderPhone=$isdn->{phone_out}
+# ISDNProviderDomain=" . do { $netc->{DOMAINNAME2} =~ /\.(.*)/; $1 } . "
+# ISDNProviderDNS1=$netc->{dnsServer2}
+# ISDNProviderDNS2=$netc->{dnsServer3}
+# ISDNDialing=$isdn->{dialing_mode}
+# ISDNSpeed=$isdn->{speed}
+# ISDNTimeout=$isdn->{huptimeout}
+# ISDNHomePhone=$isdn->{phone_in}
+# ISDNLogin=$isdn->{login}
+# ISDNPassword=$isdn->{passwd}
+# ISDNConfirmPassword=$isdn->{passwd2}
+# PPPProviderPhone=$modem->{phone}
+# PPPProviderDNS1=$modem->{dns1}
+# PPPProviderDNS2=$modem->{dns2}
+# PPPPassword=$modem->{passwd}
+# PPPConfirmPassword=$modem->{passwd}
+# ADSLProviderDNS1=$netc->{dnsServer2}
+# ADSLProviderDNS2=$netc->{dnsServer3}
+
+ my $str;
+ $str .= "
+PPPDevice=$modem->{device}
+PPPDeviceSpeed=
+PPPConnectionName=$modem->{connection}
+PPPProviderDomain=$modem->{domain}
+PPPLogin=$modem->{login}
+PPPAuthentication=$modem->{auth}
+PPPSpecialCommand=" . ($netcnx->{type} eq 'isdn_external' ? $netcnx->{isdn_external}{special_command} : '') if $conf{modem};
+
+ $str .= "
+ADSLInterfacesList=
+ADSLModem=" . q( # Obsolete information. Please don't use it.) . "
+ADSLType=" . ($netcnx->{type} =~ /adsl/ ? $netcnx->{type} : '') . "
+ADSLProviderDomain=$netc->{DOMAINNAME2}
+ADSLLogin=$adsl->{login}
+" . #ADSLPassword=$adsl->{passwd}
+"DOMAINNAME2=$netc->{DOMAINNAME2}" if $conf{adsl};
+
+ output_with_perm("$prefix/etc/sysconfig/network-scripts/drakconnect_conf", 0600, $str);
+ my $a = $netcnx->{PROFILE} ? $netcnx->{PROFILE} : "default";
+ cp_af("$prefix/etc/sysconfig/network-scripts/drakconnect_conf", "$prefix/etc/sysconfig/network-scripts/drakconnect_conf." . $a);
+ chmod 0600, "$prefix/etc/sysconfig/network-scripts/drakconnect_conf";
+ chmod 0600, "$prefix/etc/sysconfig/network-scripts/drakconnect_conf." . $a;
+ foreach (["$prefix$connect_file", "up"],
+ ["$prefix$disconnect_file", "down"],
+ ["$prefix$connect_prog", "prog"],
+ ["$prefix/etc/ppp/ioptions1B", "iop1B"],
+ ["$prefix/etc/ppp/ioptions2B", "iop2B"],
+ ["$prefix/etc/isdn/isdn1B.conf", "isdn1B"],
+ ["$prefix/etc/isdn/isdn2B.conf", "isdn2B"],
+ ["$prefix/etc/resolv.conf", "resolv"],
+ ["$prefix/etc/ppp/peers/adsl", "speedtouch"],
+ ["$prefix/etc/ppp/peers/adsl", "eci"],
+ ) {
+ my $file = "$prefix/etc/sysconfig/network-scripts/net_" . $_->[1] . "." . $a;
+ -e ($_->[0]) and cp_af($_->[0], $file) and chmod 0755, $file;
+ }
}
-sub save_profile {
- my ($netcnx) = @_;
- system(qq(/sbin/save-netprofile "$netcnx->{PROFILE}"));
- log::explanations(qq(Saving "$netcnx->{PROFILE}" profile));
+sub set_profile {
+ my ($netcnx, $profile) = @_;
+ $profile ||= $netcnx->{PROFILE};
+ $profile or return;
+ my $f = "$prefix/etc/sysconfig/network-scripts/drakconnect_conf";
+ -e ($f . "." . $profile) or return;
+ $netcnx->{PROFILE} = $profile;
+ cp_af($f . "." . $profile, $f);
+ foreach (["$prefix$connect_file", "up"],
+ ["$prefix$disconnect_file", "down"],
+ ["$prefix$connect_prog", "prog"],
+ ["$prefix/etc/ppp/ioptions1B", "iop1B"],
+ ["$prefix/etc/ppp/ioptions2B", "iop2B"],
+ ["$prefix/etc/isdn/isdn1B.conf", "isdn1B"],
+ ["$prefix/etc/isdn/isdn2B.conf", "isdn2B"],
+ ["$prefix/etc/resolv.conf", "resolv"],
+ ["$prefix/etc/ppp/peers/adsl", "speedtouch"],
+ ["$prefix/etc/ppp/peers/adsl", "eci"],
+ ) {
+ my $c = "$prefix/etc/sysconfig/network-scripts/net_" . $_->[1] . "." . $profile;
+ -e ($c) and cp_af($c, $_->[0]);
+ }
}
sub del_profile {
- my ($profile) = @_;
- return if !$profile || $profile eq "default";
- rm_rf("$::prefix/etc/netprofile/profiles/$profile");
- log::explanations(qq(Deleting "$profile" profile));
+ my ($_netcnx, $profile) = @_;
+ $profile or return;
+ $profile eq "default" and return;
+ rm_rf("$prefix/etc/sysconfig/network-scripts/drakconnect_conf." . $profile);
+ rm_rf(glob_("$prefix/etc/sysconfig/network-scripts/net_{up,down,prog,iop1B,iop2B,isdn1B,isdn2B,resolv,speedtouch}." . $profile));
}
sub add_profile {
my ($netcnx, $profile) = @_;
- return if !$profile || $profile eq "default" || member($profile, get_profiles());
- system(qq(/sbin/clone-netprofile "$netcnx->{PROFILE}" "$profile"));
- log::explanations(qq("Creating "$profile" profile));
+ $profile or return;
+ $profile eq "default" and return;
+ my $cmd1 = "$prefix/etc/sysconfig/network-scripts/drakconnect_conf." . ($netcnx->{PROFILE} ? $netcnx->{PROFILE} : "default");
+ my $cmd2 = "$prefix/etc/sysconfig/network-scripts/drakconnect_conf." . $profile;
+ cp_af($cmd1, $cmd2);
}
-sub get_profiles() {
- map { if_(m!([^/]*)/$!, $1) } glob("$::prefix/etc/netprofile/profiles/*/");
+sub get_profiles {
+ map { if_(/drakconnect_conf\.(.*)/, $1) } all("$::prefix/etc/sysconfig/network-scripts");
}
+
sub load_conf {
my ($netcnx, $netc, $intf) = @_;
- my $current = { getVarsFromSh("$prefix/etc/netprofile/current") };
-
- $netcnx->{PROFILE} = $current->{PROFILE} || 'default';
- network::network::read_all_conf($prefix, $netc, $intf);
+ my $adsl_pptp = {};
+ my $adsl_pppoe = {};
+ my $modem = {};
+ my $isdn_external = {};
+ my $isdn = {};
+
+ if (-e "$prefix/etc/sysconfig/network-scripts/drakconnect_conf") {
+ foreach (cat_("$prefix/etc/sysconfig/network-scripts/drakconnect_conf")) {
+# /^DNSPrimaryIP=(.*)$/ and $netc->{dnsServer} = $1;
+# /^DNSSecondaryIP=(.*)$/ and $netc->{dnsServer2} = $1;
+# /^DNSThirdIP=(.*)$/ and $netc->{dnsServer3} = $1;
+# /^InternetAccessType=(.*)$/ and $netcnx->{type} = $1;
+# /^InternetInterface=(.*)$/ and $netcnx->{NET_INTERFACE} = $1;
+# /^InternetGateway=(.*)$/ and $netc->{GATEWAY} = $1;
+# /^SystemName=(.*)$/ and $system_name = $1;
+# /^DomainName=(.*)$/ and $domain_name = $1;
+# /^Eth([0-9])Known=true$/ and $intf->{"eth$1"}{DEVICE} = "eth$1";
+# /^Eth([0-9])IP=(.*)$/ && $intf->{"eth$1"}{DEVICE} and $intf->{"eth$1"}{IPADDR} = $2;
+# /^Eth([0-9])Mask=(.*)\n/ && $intf->{"eth$1"}{DEVICE} and $intf->{"eth$1"}{NETMASK} = $2;
+# /^Eth([0-9])BootProto=(.*)\n/ && $intf->{"eth$1"}{DEVICE} and $intf->{"eth$1"}{BOOTPROTO} = $2;
+# /^Eth([0-9])OnBoot=(.*)\n/ && $intf->{"eth$1"}{DEVICE} and $intf->{"eth$1"}{ONBOOT} = $2;
+# /^Eth([0-9])Hostname=(.*)\n/ && $intf->{"eth$1"}{DEVICE} and $netc->{HOSTNAME} = $2;
+# /^Eth([0-9])Driver=(.*)\n/ && $intf->{"eth$1"}{DEVICE} and $intf->{"eth$1"}{driver} = $2;
+# /^ISDNDriver=(.*)$/ and $isdn->{driver} = $1;
+# /^ISDNDeviceType=(.*)$/ and $isdn->{type} = $1;
+# /^ISDNIrq=(.*)/ and $isdn->{irq} = $1;
+# /^ISDNMem=(.*)$/ and $isdn->{mem} = $1;
+# /^ISDNIo=(.*)$/ and $isdn->{io} = $1;
+# /^ISDNIo0=(.*)$/ and $isdn->{io0} = $1;
+# /^ISDNIo1=(.*)$/ and $isdn->{io1} = $1;
+# /^ISDNProtocol=(.*)$/ and $isdn->{protocol} = $1;
+# /^ISDNCardDescription=(.*)$/ and $isdn->{description} = $1;
+# /^ISDNCardVendor=(.*)$/ and $isdn->{vendor} = $1;
+# /^ISDNId=(.*)$/ and $isdn->{id} = $1;
+# /^ISDNProviderPhone=(.*)$/ and $isdn->{phone_out} = $1;
+# /^ISDNDialing=(.*)$/ and $isdn->{dialing_mode} = $1;
+# /^ISDNISDNSpeed=(.*)$/ and $isdn->{speed} = $1;
+# /^ISDNTimeout=(.*)$/ and $isdn->{huptimeout} = $1;
+# /^ISDNHomePhone=(.*)$/ and $isdn->{phone_in} = $1;
+# /^ISDNLogin=(.*)$/ and $isdn->{login} = $1;
+# /^ISDNPassword=(.*)$/ and $isdn->{passwd} = $1;
+# /^ISDNConfirmPassword=(.*)$/ and $isdn->{passwd2} = $1;
+
+ #/^PPPDevice=(.*)$/ and $modem->{device} = $1;
+ /^PPPConnectionName=(.*)$/ and $modem->{connection} = $1; # Keep this for futur multiple cnx support
+ #/^PPPProviderPhone=(.*)$/ and $modem->{phone} = $1;
+ /^PPPProviderDomain=(.*)$/ and $modem->{domain} = $1; # used only for kppp
+ #/^PPPProviderDNS1=(.*)$/ and $modem->{dns1} = $1; # be aware that this value is now extracted from kppprc file ONLY
+ #/^PPPProviderDNS2=(.*)$/ and $modem->{dns2} = $1;
+ /^PPPLogin=(.*)$/ and $modem->{login} = $1;
+ #/^PPPPassword=(.*)$/ and $modem->{passwd} = $1;
+ /^PPPAuthentication=(.*)$/ and $modem->{auth} = $1; # We keep this because system is configured the same for both PAP and CHAP.
+ if (/^PPPSpecialCommand=(.*)$/) {
+ $netcnx->{type} eq 'isdn_external' and $netcnx->{$netcnx->{type}}{special_command} = $1;
+ }
+# /^ADSLLogin=(.*)$/ and $adsl_pppoe->{login} = $1;
+# /^ADSLPassword=(.*)$/ and $adsl_pppoe->{passwd} = $1;
+ /^DOMAINNAME2=(.*)$/ and $netc->{DOMAINNAME2} = $1;
+ }
+ }
+# $system_name && $domain_name and $netc->{HOSTNAME} = join ('.', $system_name, $domain_name);
+ $adsl_pptp->{$_} = $adsl_pppoe->{$_} foreach 'login', 'passwd', 'passwd2';
+ $isdn_external->{$_} = $modem->{$_} foreach 'device', 'connection', 'phone', 'domain', 'dns1', 'dns2', 'login', 'passwd', 'auth';
+ $netcnx->{adsl_pptp} = $adsl_pptp;
+ $netcnx->{adsl_pppoe} = $adsl_pppoe;
+ $netcnx->{modem} = $modem;
+ $netcnx->{modem} = $isdn_external;
+ $netcnx->{isdn_internal} = $isdn;
+# -e "$prefix/etc/sysconfig/network" and put_in_hash($netc, network::read_conf("$prefix/etc/sysconfig/network"));
+# foreach (glob_("$prefix/etc/sysconfig/ifcfg-*")) {
+# my $l = network::read_interface_conf($_);
+# $intf->{$l->{DEVICE}} = $l;
+# }
+# my $file = "$prefix/etc/resolv.conf";
+# if (-e $file) {
+# put_in_hash($netc, network::read_resolv_conf($file));
+# }
+ network::read_all_conf($prefix, $netc, $intf);
}
-sub get_net_device() {
- my $connect_file = "/etc/sysconfig/network-scripts/net_cnx_up";
- my $network_file = "/etc/sysconfig/network";
- if (cat_("$prefix$connect_file") =~ /ifup/) {
- if_(cat_($connect_file) =~ /^\s*ifup\s+(.*)/m, split(' ', $1))
- } elsif (cat_("$prefix$connect_file") =~ /network/) {
- ${{ getVarsFromSh("$prefix$network_file") }}{GATEWAYDEV};
- } elsif (cat_("$prefix$connect_file") =~ /isdn/) {
- "ippp+";
- } else {
- "ppp+";
- };
+#- ensures the migration from old config files
+sub read_raw_net_conf {
+ my ($suffix) = @_;
+ my $dir = "$::prefix/etc/sysconfig/network-scripts";
+# $suffix = $suffix ? ".$suffix" : '';
+ rename "$dir/draknet$suffix", "$dir/drakconnect$suffix";
+ getVarsFromSh("$dir/drakconnect_conf");
+}
+
+sub get_net_device {
+ ${{ read_raw_net_conf() }}{InternetInterface};
}
sub read_net_conf {
my ($_prefix, $netcnx, $netc) = @_;
+ add2hash($netcnx, { read_raw_net_conf('_conf') });
$netc->{$_} = $netcnx->{$_} foreach 'NET_DEVICE', 'NET_INTERFACE';
$netcnx->{$netcnx->{type}} ||= {};
+ add2hash($netcnx->{$netcnx->{type}}, { read_raw_net_conf($netcnx->{type}) });
+}
+
+sub set_net_conf {
+ my ($netcnx, $netc) = @_;
+ setVarsInShMode("$prefix/etc/sysconfig/drakconnect", 0600, $netcnx, "NET_DEVICE", "NET_INTERFACE", "type", "PROFILE");
+ setVarsInShMode("$prefix/etc/sysconfig/drakconnect." . $netcnx->{type}, 0600, $netcnx->{$netcnx->{type}}); #- doesn't work, don't know why
+ setVarsInShMode("$prefix/etc/sysconfig/drakconnect.netc", 0600, $netc); #- doesn't work, don't know why
}
sub start_internet {
my ($o) = @_;
init_globals($o, $o->{prefix});
- #- give a chance for module to be loaded using kernel-BOOT modules...
- $::isStandalone or modules::load_category('network/main|gigabit|usb');
run_program::rooted($prefix, $connect_file);
}
@@ -1035,6 +597,9 @@ sub stop_internet {
run_program::rooted($prefix, $disconnect_file);
}
+#---------------------------------------------
+# WONDERFULL pad
+#---------------------------------------------
1;
=head1 network::netconnect::detect()
diff --git a/perl-install/network/network.pm b/perl-install/network/network.pm
index abd0cf486..12085f636 100644
--- a/perl-install/network/network.pm
+++ b/perl-install/network/network.pm
@@ -3,48 +3,38 @@ package network::network; # $Id$wir
#-######################################################################################
#- misc imports
#-######################################################################################
-
-use strict;
-
use Socket;
+
use common;
use detect_devices;
use run_program;
-use network::tools;
use any;
-use vars qw(@ISA @EXPORT);
use log;
+use vars qw(@ISA @EXPORT);
@ISA = qw(Exporter);
-@EXPORT = qw(add2hosts addDefaultRoute configureNetwork2 dns dnsServers down_it findIntf gateway guessHostname is_ip is_ip_forbidden masked_ip netmask read_all_conf read_conf read_interface_conf read_resolv_conf resolv sethostname up_it write_conf write_resolv_conf);
+@EXPORT = qw(resolv configureNetworkIntf netmask dns is_ip masked_ip findIntf addDefaultRoute write_interface_conf read_all_conf dnsServers guessHostname configureNetworkNet read_resolv_conf read_interface_conf add2hosts gateway configureNetwork2 write_conf sethostname miscellaneousNetwork down_it read_conf write_resolv_conf up_it);
#-######################################################################################
#- Functions
#-######################################################################################
sub read_conf {
my ($file) = @_;
- +{ getVarsFromSh($file) };
-}
-
-sub read_resolv_conf_raw {
- my ($file) = @_;
- $file ||= "$::prefix/etc/resolv.conf";
- { nameserver => [ cat_($file) =~ /^\s*nameserver\s+(\S+)/mg ],
- search => [ if_(cat_($file) =~ /^\s*search\s+(.*)/m, split(' ', $1)) ] };
+ my %netc = getVarsFromSh($file);
+ \%netc;
}
sub read_resolv_conf {
my ($file) = @_;
- my $resolv_conf = read_resolv_conf_raw($file);
- +{
- (mapn { $_[0] => $_[1] } [ qw(dnsServer dnsServer2 dnsServer3) ], $resolv_conf->{nameserver}),
- (mapn { $_[0] => $_[1] } [ qw(DOMAINNAME DOMAINNAME2 DOMAINNAME3) ], $resolv_conf->{search}),
- };
+ my @l = map { if_(/^\s*nameserver\s+(\S+)/, $1) } cat_($file);
+
+ my %netc = mapn { $_[0] => $_[1] } [ qw(dnsServer dnsServer2 dnsServer3) ], \@l;
+ \%netc;
}
sub read_interface_conf {
my ($file) = @_;
- my %intf = getVarsFromSh($file);
+ my %intf = getVarsFromSh($file) or die "cannot open file $file: $!";
$intf{BOOTPROTO} ||= 'static';
$intf{isPtp} = $intf{NETWORK} eq '255.255.255.255';
@@ -52,31 +42,6 @@ sub read_interface_conf {
\%intf;
}
-sub read_dhcpd_conf {
- my ($file) = @_;
- $file ||= "$::prefix/etc/dhcpd.conf";
- { option_routers => [ cat_($file) =~ /^\s*option routers\s+(\S+);/mg ],
- subnet_mask => [ if_(cat_($file) =~ /^\s*option subnet-mask\s+(.*);/mg, split(' ', $1)) ],
- domain_name => [ if_(cat_($file) =~ /^\s*option domain-name\s+"(.*)";/mg, split(' ', $1)) ],
- domain_name_servers => [ if_(cat_($file) =~ /^\s*option domain-name-servers\s+(.*);/m, split(' ', $1)) ],
- dynamic_bootp => [ if_(cat_($file) =~ /^\s*range dynamic-bootp\s+\S+\.(\d+)\s+\S+\.(\d+)\s*;/m, split(' ', $1)) ],
- default_lease_time => [ if_(cat_($file) =~ /^\s*default-lease-time\s+(.*);/m, split(' ', $1)) ],
- max_lease_time => [ if_(cat_($file) =~ /^\s*max-lease-time\s+(.*);/m, split(' ', $1)) ] };
-}
-
-sub read_tmdns_conf {
- my ($file) = @_;
- local *F; open F, $file or die "cannot open file $file: $!";
- local $_;
- my %outf;
-
- while (<F>) {
- ($outf{ZEROCONF_HOSTNAME}) = /^\s*hostname\s*=\s*(\w+)/ and return \%outf;
- }
-
- \%outf;
-}
-
sub up_it {
my ($prefix, $intfs) = @_;
$_->{isUp} and return foreach values %$intfs;
@@ -94,24 +59,25 @@ sub down_it {
sub write_conf {
my ($file, $netc) = @_;
- if ($netc->{HOSTNAME} && $netc->{HOSTNAME} =~ /\.(.+)$/) {
- $netc->{DOMAINNAME} = $1;
+ if ($netc->{HOSTNAME}) {
+ $netc->{HOSTNAME} =~ /\.(.*)$/;
+ $1 and $netc->{DOMAINNAME} = $1;
}
- $netc->{NETWORKING} = 'yes';
-
- setVarsInSh($file, $netc, qw(HOSTNAME NETWORKING GATEWAY GATEWAYDEV NISDOMAIN));
-}
+ ($netc->{DOMAINNAME}) ||= 'localdomain';
+ add2hash($netc, {
+ NETWORKING => "yes",
+ FORWARD_IPV4 => "false",
+ HOSTNAME => "localhost.$netc->{DOMAINNAME}",
+ });
-sub write_zeroconf {
- my ($file, $zhostname) = @_;
- eval { substInFile { s/^\s*(hostname)\s*=.*/$1 = $zhostname/ } $file };
+ setVarsInSh($file, $netc, qw(NETWORKING FORWARD_IPV4 DHCP_HOSTNAME HOSTNAME DOMAINNAME GATEWAY GATEWAYDEV NISDOMAIN));
}
sub write_resolv_conf {
my ($file, $netc) = @_;
my %new = (
- search => [ grep { $_ } uniq(@$netc{'DOMAINNAME', 'DOMAINNAME2', 'DOMAINNAME3'}) ],
+ search => [ grep { $_ } uniq(@$netc{'DOMAINNAME', 'DOMAINNAME2'}) ],
nameserver => [ grep { $_ } uniq(@$netc{'dnsServer', 'dnsServer2', 'dnsServer3'}) ],
);
@@ -142,43 +108,32 @@ sub write_resolv_conf {
my @old = map { "# nameserver $_\n" } @{$prev{nameserver}};
@new, @old;
};
- output_with_perm($file, 0644, @search, @nameserver, (map { "# $_\n" } @unknown), "\n# ppp temp entry\n");
-
+ output($file, @search, @nameserver, (map { "# $_\n" } @unknown), "\n# ppp temp entry\n");
+
#-res_init(); # reinit the resolver so DNS changes take affect
1;
} else {
- log::explanations("neither domain name nor dns server are configured");
+ log::l("neither domain name nor dns server are configured");
0;
}
}
sub write_interface_conf {
- my ($file, $intf, $_netc, $prefix) = @_;
-
- if ($intf->{HWADDR} && -e "$prefix/sbin/ip") {
- $intf->{HWADDR} = undef;
- if (my $s = `LC_ALL= LANG= $prefix/sbin/ip -o link show $intf->{DEVICE} 2>/dev/null`) {
- if ($s =~ m|.*link/ether\s([0-9a-z:]+)\s|) {
- $intf->{HWADDR} = $1;
- }
- }
- }
+ my ($file, $intf, $prefix) = @_;
+
my @ip = split '\.', $intf->{IPADDR};
my @mask = split '\.', $intf->{NETMASK};
-
+ my $hwaddr;
+ $::o->{miscellaneous}{track_network_id} and $hwaddr = -e "$prefix/sbin/ip" && `LC_ALL= LANG= $prefix/sbin/ip -o link show $intf->{DEVICE} 2>/dev/null`;
+ if ($hwaddr) { chomp $hwaddr; $hwaddr =~ s/.*link\/ether\s([0-9a-z:]+)\s.*/$1/ }
+ $hwaddr and $intf->{HWADDR} = undef;
add2hash($intf, {
BROADCAST => join('.', mapn { int($_[0]) | ((~int($_[1])) & 255) } \@ip, \@mask),
NETWORK => join('.', mapn { int($_[0]) & $_[1] } \@ip, \@mask),
- ONBOOT => bool2yesno(!member($intf->{DEVICE}, map { $_->{device} } detect_devices::pcmcia_probe())),
+ ONBOOT => bool2yesno(!member($intf->{DEVICE}, map { $_->{device} } detect_devices::probeall())),
+ if_($::o->{miscellaneous}{track_network_id}, HWADDR => $hwaddr)
});
-
- $intf->{BOOTPROTO} =~ s/dhcp.*/dhcp/;
-
- setVarsInSh($file, $intf, qw(DEVICE BOOTPROTO IPADDR NETMASK NETWORK BROADCAST ONBOOT HWADDR MII_NOT_SUPPORTED),
- qw(WIRELESS_MODE WIRELESS_ESSID WIRELESS_NWID WIRELESS_FREQ WIRELESS_SENS WIRELESS_RATE WIRELESS_ENC_KEY WIRELESS_RTS WIRELESS_FRAG WIRELESS_IWCONFIG WIRELESS_IWSPY WIRELESS_IWPRIV),
- if_($intf->{BOOTPROTO} eq "dhcp", qw(DHCP_HOSTNAME NEEDHOSTNAME))
- );
- log::explanations("written $intf->{DEVICE} interface configuration in $file");
+ setVarsInSh($file, $intf, qw(DEVICE BOOTPROTO IPADDR NETMASK NETWORK BROADCAST ONBOOT HWADDR), if_($intf->{wireless_eth}, qw(WIRELESS_MODE WIRELESS_ESSID WIRELESS_NWID WIRELESS_FREQ WIRELESS_SENS WIRELESS_RATE WIRELESS_ENC_KEY WIRELESS_RTS WIRELESS_FRAG WIRELESS_IWCONFIG WIRELESS_IWSPY WIRELESS_IWPRIV)));
}
sub add2hosts {
@@ -190,7 +145,7 @@ sub add2hosts {
my $sub_hostname = $hostname =~ /(.*?)\./ ? " $1" : '';
$l{$_} = "\t\t$hostname$sub_hostname" foreach grep { $_ } @ips;
- log::explanations("writing host information to $file");
+ log::l("writing host information to $file");
output($file, map { "$_$l{$_}\n" } keys %l);
}
@@ -203,9 +158,9 @@ sub guessHostname {
write_resolv_conf("$prefix/etc/resolv.conf", $netc);
- my $name = gethostbyaddr(Socket::inet_aton($intf->{IPADDR}), Socket::AF_INET()) or log::explanations("reverse name lookup failed"), return 0;
+ my $name = gethostbyaddr(Socket::inet_aton($intf->{IPADDR}), Socket::AF_INET()) or log::l("reverse name lookup failed"), return 0;
- log::explanations("reverse name lookup worked");
+ log::l("reverse name lookup worked");
add2hash($netc, { HOSTNAME => $name });
1;
@@ -218,16 +173,14 @@ sub addDefaultRoute {
sub sethostname {
my ($netc) = @_;
- my $text;
- syscall_("sethostname", $netc->{HOSTNAME}, length $netc->{HOSTNAME}) ? ($text="set sethostname to $netc->{HOSTNAME}") : ($text="sethostname failed: $!");
- log::explanations($text);
+ syscall_("sethostname", $netc->{HOSTNAME}, length $netc->{HOSTNAME}) or log::l("sethostname failed: $!");
}
sub resolv($) {
my ($name) = @_;
is_ip($name) and return $name;
my $a = join(".", unpack "C4", (gethostbyname $name)[4]);
- #-log::explanations("resolved $name in $a");
+ #-log::l("resolved $name in $a");
$a;
}
@@ -242,31 +195,14 @@ sub findIntf {
$intf->{$device}{DEVICE} = $device;
$intf->{$device};
}
-
+#PAD \s* a la fin
my $ip_regexp = qr/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/;
-
sub is_ip {
my ($ip) = @_;
my @fields = $ip =~ $ip_regexp or return;
- every { 0 <= $_ && $_ <= 255 } @fields or return;
+ return if grep { $_ < 0 || $_ > 255 } @fields;
@fields;
}
-
-sub ip_compare {
- my ($ip1, $ip2) = @_;
- my (@ip1_fields) = $ip1 =~ $ip_regexp;
- my (@ip2_fields) = $ip2 =~ $ip_regexp;
-
- every { $ip1_fields[$_] eq $ip2_fields[$_] } (0 .. 3);
-}
-
-sub is_ip_forbidden {
- my ($ip) = @_;
- my @forbidden = ('127.0.0.1', '255.255.255.255');
-
- any { ip_compare($ip, $_) } @forbidden;
-}
-
sub is_domain_name {
my ($name) = @_;
my @fields = split /\./, $name;
@@ -276,7 +212,7 @@ sub is_domain_name {
sub netmask {
my ($ip) = @_;
return "255.255.255.0" unless is_ip($ip);
- $ip =~ $ip_regexp or warn "IP_regexp failed\n" and return "255.255.255.0";
+ $ip =~ $ip_regexp;
if ($1 >= 1 && $1 < 127) {
"255.0.0.0"; #-1.0.0.0 to 127.0.0.0
} elsif ($1 >= 128 && $1 <= 191) {
@@ -305,70 +241,168 @@ sub dns {
join(".", @masked);
}
-
sub gateway {
my ($ip) = @_;
my @masked = masked_ip($ip) =~ $ip_regexp;
$masked[3] = 1;
join(".", @masked);
+
}
-sub proxy_configure {
- my ($u) = @_;
- setExportedVarsInSh("$::prefix/etc/profile.d/proxy.sh", $u, qw(http_proxy ftp_proxy));
- setExportedVarsInCsh("$::prefix/etc/profile.d/proxy.csh", $u, qw(http_proxy ftp_proxy));
+sub configureNetworkIntf {
+ my ($netc, $in, $intf, $net_device, $skip, $module) = @_;
+ my $text;
+ my @wireless_modules = qw(aironet_cs aironet4500_cs hermes airo orinoco_cs orinoco airo_cs netwave_cs ray_cs wavelan_cs wvlan_cs airport);
+ my $flag = 0;
+ foreach (@wireless_modules) {
+ $module =~ /$_/ and $flag = 1;
+ }
+ if ($flag) {
+ $intf->{wireless_eth} = 1;
+ $netc->{wireless_eth} = 1;
+ $intf->{WIRELESS_MODE} = "Managed";
+ $intf->{WIRELESS_ESSID} = "any";
+#- $intf->{WIRELESS_NWID} = "";
+#- $intf->{WIRELESS_FREQ} = "";
+#- $intf->{WIRELESS_SENS} = "";
+#- $intf->{WIRELESS_RATE} = "";
+#- $intf->{WIRELESS_ENC_KEY} = "";
+#- $intf->{WIRELESS_RTS} = "";
+#- $intf->{WIRELESS_FRAG} = "";
+#- $intf->{WIRELESS_IWCONFIG} = "";
+#- $intf->{WIRELESS_IWSPY} = "";
+#- $intf->{WIRELESS_IWPRIV} = "";
+ }
+ if ($net_device eq $intf->{DEVICE}) {
+ $skip and return 1;
+ $text = N("WARNING: this device has been previously configured to connect to the Internet.
+Simply accept to keep this device configured.
+Modifying the fields below will override this configuration.");
+ }
+ else {
+ $text = N("Please enter the IP configuration for this machine.
+Each item should be entered as an IP address in dotted-decimal
+notation (for example, 1.2.3.4).");
+ }
+ my $pump = $intf->{BOOTPROTO} =~ /^(dhcp|bootp)$/;
+ delete $intf->{NETWORK};
+ delete $intf->{BROADCAST};
+ my $onboot = 1;
+ my @fields = qw(IPADDR NETMASK);
+ $::isStandalone or $in->set_help('configureNetworkIP');
+ $in->ask_from(N("Configuring network device %s", $intf->{DEVICE}),
+ (N("Configuring network device %s", $intf->{DEVICE}) . ($module ? N(" (driver %s)", $module) : '') . "\n\n") .
+ $text,
+ [ { label => N("IP address"), val => \$intf->{IPADDR}, disabled => sub { $pump } },
+ { label => N("Netmask"), val => \$intf->{NETMASK}, disabled => sub { $pump } },
+ { label => N("Automatic IP"), val => \$pump, type => "bool", text => N("(bootp/dhcp)") },
+ if_($::expert, { label => N("Start at boot"), val => \$onboot, type => "bool" }),
+ if_($intf->{wireless_eth},
+ { label => "WIRELESS_MODE", val => \$intf->{WIRELESS_MODE}, list => [ "Ad-hoc", "Managed", "Master", "Repeater", "Secondary", "Auto" ] },
+ { label => "WIRELESS_ESSID", val => \$intf->{WIRELESS_ESSID} },
+ { label => "WIRELESS_NWID", val => \$intf->{WIRELESS_NWID} },
+ { label => "WIRELESS_FREQ", val => \$intf->{WIRELESS_FREQ} },
+ { label => "WIRELESS_SENS", val => \$intf->{WIRELESS_SENS} },
+ { label => "WIRELESS_RATE", val => \$intf->{WIRELESS_RATE} },
+ { label => "WIRELESS_ENC_KEY", val => \$intf->{WIRELESS_ENC_KEY} },
+ { label => "WIRELESS_RTS", val => \$intf->{WIRELESS_RTS} },
+ { label => "WIRELESS_FRAG", val => \$intf->{WIRELESS_FRAG} },
+ { label => "WIRELESS_IWCONFIG", val => \$intf->{WIRELESS_IWCONFIG} },
+ { label => "WIRELESS_IWSPY", val => \$intf->{WIRELESS_IWSPY} },
+ { label => "WIRELESS_IWPRIV", val => \$intf->{WIRELESS_IWPRIV} }
+ ),
+ ],
+ complete => sub {
+ $intf->{BOOTPROTO} = $pump ? "dhcp" : "static";
+ return 0 if $pump;
+ for (my $i = 0; $i < @fields; $i++) {
+ unless (is_ip($intf->{$fields[$i]})) {
+ $in->ask_warn('', N("IP address should be in format 1.2.3.4"));
+ return (1,$i);
+ }
+ return 0;
+ }
+ if ($intf->{WIRELESS_FREQ} !~ /[0-9.]*[kGM]/) {
+ $in->ask_warn('', N("Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz frequency), or add enough \'0\'."));
+ return (1,6);
+ }
+ if ($intf->{WIRELESS_RATE} !~ /[0-9.]*[kGM]/) {
+ $in->ask_warn('', N("Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add enough \'0\'."));
+ return (1,8);
+ }
+ },
+ focus_out => sub {
+ $intf->{NETMASK} ||= netmask($intf->{IPADDR}) unless $_[0]
+ }
+ ) or return;
+ $intf->{ONBOOT} = bool2yesno($onboot);
+}
+
+sub configureNetworkNet {
+ my ($in, $netc, $intf, @devices) = @_;
+
+ $netc->{dnsServer} ||= dns($intf->{IPADDR});
+ my $gateway_ex = gateway($intf->{IPADDR});
+#- $netc->{GATEWAY} ||= gateway($intf->{IPADDR});
+
+ $::isInstall and $in->set_help('configureNetworkHost');
+ $in->ask_from(N("Configuring network"),
+N("Please enter your host name.
+Your host name should be a fully-qualified host name,
+such as ``mybox.mylab.myco.com''.
+You may also enter the IP address of the gateway if you have one"),
+ [ { label => N("Host name"), val => \$netc->{HOSTNAME} },
+ { label => N("DNS server"), val => \$netc->{dnsServer} },
+ { label => N("Gateway (e.g. %s)", $gateway_ex), val => \$netc->{GATEWAY} },
+ if_(@devices > 1,
+ { label => N("Gateway device"), val => \$netc->{GATEWAYDEV}, list => \@devices },
+ ),
+ ],
+ complete => sub {
+ if ($netc->{dnsServer} and !is_ip($netc->{dnsServer})) {
+ $in->ask_warn('', N("DNS server address should be in format 1.2.3.4"));
+ return 1;
+ }
+ if ($netc->{GATEWAY} and !is_ip($netc->{GATEWAY})) {
+ $in->ask_warn('', N("Gateway address should be in format 1.2.3.4"));
+ return 1;
+ }
+ 0;
+ }
+ );
+}
+
+sub miscellaneousNetwork {
+ my ($in, $clicked, $no_track_net) = @_;
+ my $u = $::o->{miscellaneous} ||= {};
+ $::isInstall and $in->set_help('configureNetworkProxy');
+ $u->{track_network_id} = detect_devices::isLaptop();
+ $::expert || $clicked and ($in->ask_from('',
+ N("Proxies configuration"),
+ [ { label => N("HTTP proxy"), val => \$u->{http_proxy} },
+ { label => N("FTP proxy"), val => \$u->{ftp_proxy} },
+ if_(!$no_track_net, { label => N("Track network card id (useful for laptops)"), val => \$u->{track_network_id}, type => "bool" }),
+ ],
+ complete => sub {
+ $u->{http_proxy} =~ m,^($|http://), or $in->ask_warn('', N("Proxy should be http://...")), return 1,0;
+ $u->{ftp_proxy} =~ m,^($|ftp://|http://), or $in->ask_warn('', N("Url should begin with 'ftp:' or 'http:'")), return 1,1;
+ 0;
+ }
+ ) or return);
+ 1;
}
sub read_all_conf {
- my ($prefix, $netc, $intf, $o_netcnx) = @_;
+ my ($prefix, $netc, $intf) = @_;
$netc ||= {}; $intf ||= {};
- my $netcnx = $o_netcnx || {};
add2hash($netc, read_conf("$prefix/etc/sysconfig/network")) if -r "$prefix/etc/sysconfig/network";
- add2hash($netc, read_resolv_conf());
- add2hash($netc, read_tmdns_conf("$prefix/etc/tmdns.conf")) if -r "$prefix/etc/tmdns.conf";
+ add2hash($netc, read_resolv_conf("$prefix/etc/resolv.conf")) if -r "$prefix/etc/resolv.conf";
foreach (all("$prefix/etc/sysconfig/network-scripts")) {
- if (/^ifcfg-(\w+)$/ && $1 ne 'lo') {
+ if (/ifcfg-(\w+)/ && $1 ne 'lo') {
my $intf = findIntf($intf, $1);
add2hash($intf, { getVarsFromSh("$prefix/etc/sysconfig/network-scripts/$_") });
}
}
- $netcnx->{type} or probe_netcnx_type($prefix, $netc, $intf, $netcnx);
-}
-
-sub probe_netcnx_type {
- my ($prefix, $_netc, $intf, $netcnx) = @_;
- #- try to probe $netcnx->{type} which is used almost everywhere.
- unless ($netcnx->{type}) {
- #- ugly hack to determine network type (avoid saying not configured in summary).
- -e "$prefix/etc/ppp/peers/adsl" and $netcnx->{type} ||= 'adsl'; # enough ?
- -e "$prefix/etc/ppp/ioptions1B" || -e "$prefix/etc/ppp/ioptions2B" and $netcnx->{type} ||= 'isdn'; # enough ?
- $intf->{ppp0} and $netcnx->{type} ||= 'modem';
- $intf->{eth0} and $netcnx->{type} ||= 'lan';
- }
-}
-
-sub easy_dhcp {
- my ($netc, $intf) = @_;
-
- return if text2bool($netc->{NETWORKING});
-
- require modules;
- require network::ethernet;
- modules::load_category('network/main|gigabit|usb');
- my @all_cards = network::ethernet::conf_network_card_backend();
-
- #- only for a single network card
- (any { $_->[0] eq 'eth0' } @all_cards) && (every { $_->[0] ne 'eth1' } @all_cards) or return;
-
- log::explanations("easy_dhcp: found eth0");
-
- network::ethernet::conf_network_card_backend($netc, $intf, 'dhcp', 'eth0');
-
- put_in_hash($netc, {
- NETWORKING => "yes",
- DHCP => "yes",
- });
- 1;
}
#- configureNetwork2 : configure the network interfaces.
@@ -398,22 +432,23 @@ sub easy_dhcp {
sub configureNetwork2 {
my ($in, $prefix, $netc, $intf) = @_;
my $etc = "$prefix/etc";
- if (!$::testing) {
- $netc->{wireless_eth} and $in->do_pkgs->ensure_is_installed('wireless-tools', '/sbin/iwconfig', 'auto');
- write_conf("$etc/sysconfig/network", $netc);
- write_resolv_conf("$etc/resolv.conf", $netc) if ! $netc->{DHCP};
- write_interface_conf("$etc/sysconfig/network-scripts/ifcfg-$_->{DEVICE}", $_, $netc, $prefix) foreach grep { $_->{DEVICE} ne 'ppp0' } values %$intf;
- add2hosts("$etc/hosts", $netc->{HOSTNAME}, map { $_->{IPADDR} } values %$intf) if $netc->{HOSTNAME} && !$netc->{DHCP};
- add2hosts("$etc/hosts", "localhost", "127.0.0.1");
-
- any { $_->{BOOTPROTO} eq "dhcp" } values %$intf and $in->do_pkgs->install($netc->{dhcp_client} || 'dhcp-client');
- $in->do_pkgs->ensure_is_installed('tmdns', '/sbin/tmdns', 'auto') if !$in->do_pkgs->is_installed('bind');
- $in->do_pkgs->ensure_is_installed('zcip', '/sbin/zcip', 'auto');
- $netc->{ZEROCONF_HOSTNAME} and write_zeroconf("$etc/tmdns.conf", $netc->{ZEROCONF_HOSTNAME});
- any { $_->{BOOTPROTO} =~ /^(pump|bootp)$/ } values %$intf and $in->do_pkgs->install('pump');
+
+ $netc->{wireless_eth} and $in->do_pkgs->install(qw(wireless-tools));
+ write_conf("$etc/sysconfig/network", $netc);
+ write_resolv_conf("$etc/resolv.conf", $netc);
+ write_interface_conf("$etc/sysconfig/network-scripts/ifcfg-$_->{DEVICE}", $_, $prefix) foreach grep { $_->{DEVICE} } values %$intf;
+ add2hosts("$etc/hosts", $netc->{HOSTNAME}, map { $_->{IPADDR} } values %$intf);
+
+ if (grep { $_->{BOOTPROTO} =~ /^(dhcp)$/ } values %$intf) {
+ $in->do_pkgs->install($netc->{dhcp_client} ? $netc->{dhcp_client} : 'dhcpcd');
+ }
+ if (grep { $_->{BOOTPROTO} =~ /^(pump|bootp)$/ } values %$intf) {
+ $in->do_pkgs->install('pump');
}
+ #-res_init(); #- reinit the resolver so DNS changes take affect
- proxy_configure($::o->{miscellaneous});
+ any::miscellaneousNetwork();
}
+
1;
diff --git a/perl-install/network/nfs.pm b/perl-install/network/nfs.pm
index 39faa716e..87f336e36 100644
--- a/perl-install/network/nfs.pm
+++ b/perl-install/network/nfs.pm
@@ -29,41 +29,35 @@ sub to_dev_raw {
sub check {
my ($_class, $in) = @_;
- $in->do_pkgs->ensure_is_installed('nfs-utils-clients', '/usr/sbin/showmount') or return;
- system('/etc/init.d/portmap start') if system('/etc/init.d/portmap status') != 0;
- 1;
+ $in->do_pkgs->ensure_is_installed('nfs-utils-clients', '/usr/sbin/showmount');
}
sub find_servers {
- open(my $F2, "rpcinfo-flushed -b mountd 2 |");
- open(my $F3, "rpcinfo-flushed -b mountd 3 |");
+ my $pid = open(my $F, "rpcinfo-flushed -b mountd 2 |");
+ $SIG{ALRM} = sub { kill(15, $pid) };
+ alarm 1;
- common::nonblock($F2);
- common::nonblock($F3);
my $domain = chomp_(`domainname`);
- my ($s, %servers);
- my $quit;
- while (!$quit) {
- $quit = 1;
- sleep 1;
- while ($s = <$F2> || <$F3>) {
- $quit = 0;
- my ($ip, $name) = $s =~ /(\S+)\s+(\S+)/ or log::explanations("bad line in rpcinfo output"), next;
- $name =~ s/\.$//;
- $name =~ s/\Q.$domain\E$//;
- $servers{$ip} ||= { ip => $ip, if_($name ne '(unknown)', name => $name) };
- }
+ my @servers;
+ local $_;
+ while (<$F>) {
+ chomp;
+ my ($ip, $name) = /(\S+)\s+(\S+)/ or log::l("bad line in rpcinfo output"), next;
+ $name =~ s/\Q.$domain//;
+ $name =~ s/\.$//;
+ push @servers, { ip => $ip, if_($name ne '(unknown)', name => $name) };
}
- values %servers;
+ @servers;
}
sub find_exports {
my ($_class, $server) = @_;
my @l;
- run_program::raw({ timeout => 1 }, "showmount", '>', \@l, "--no-headers", "-e", $server->{ip} || $server->{name});
+ run_program::raw({ timeout => 1 }, "showmount", '>', \@l, "-e", $server->{ip} || $server->{name});
- map { if_(/(\S+(\s*\S+)*)\s+(\S+)/, { name => $1, comment => $3, server => $server }) } @l;
+ shift @l; #- drop first line
+ map { /(\S+)\s*(\S+)/; { name => $1, comment => $2, server => $server } } @l;
}
1;
diff --git a/perl-install/network/shorewall.pm b/perl-install/network/shorewall.pm
index bd069f063..a173c13f8 100644
--- a/perl-install/network/shorewall.pm
+++ b/perl-install/network/shorewall.pm
@@ -24,7 +24,7 @@ sub check_iptables {
};
!$existing_config || $in->ask_okcancel(N("Firewalling configuration detected!"),
- N("Warning! An existing firewalling configuration has been detected. You may need some manual fixes after installation."));
+ N("Warning! An existing firewalling configuration has been detected. You may need some manual fix after installation."));
}
sub set_config_file {
@@ -46,58 +46,34 @@ sub get_config_file {
map { [ split ' ' ] } grep { !/^#/ } cat_("$::prefix/etc/shorewall/$file");
}
-sub default_interfaces_silent {
- my ($_in) = @_;
- my %conf;
- my @l = detect_devices::getNet() or return;
- if (@l == 1) {
+sub default_interfaces {
+ my %conf;
+
+ my @l = detect_devices::getNet() or return;
+ if (@l == 1) {
$conf{net_interface} = $l[0];
} else {
$conf{net_interface} = network::netconnect::get_net_device() || $l[0];
- $conf{loc_interface} = [ grep { $_ ne $conf{net_interface} } @l ];
+ $conf{loc_interface} = [ grep { $_ ne $conf{net_interface} } @l ];
}
\%conf;
}
-sub default_interfaces {
- my ($in) = @_;
- my %conf;
- my $card_netconnect = network::netconnect::get_net_device() || "eth0";
- defined $card_netconnect and log::l("[drakgw] Information from netconnect: ignore card $card_netconnect");
-
- my @l = detect_devices::getNet() or return;
- $in->ask_from('',
- N("Please enter the name of the interface connected to the internet.
-
-Examples:
- ppp+ for modem or DSL connections,
- eth0, or eth1 for cable connection,
- ippp+ for a isdn connection.
-", $card_netconnect),
- [ { label => N("Net Device"), val => \$card_netconnect, list => \@l } ]);
- $conf{net_interface} = $card_netconnect;
- #$conf{net_interface} = network::netconnect::get_net_device() || $l[0];
- $conf{loc_interface} = [ grep { $_ ne $conf{net_interface} } @l ];
- \%conf;
-}
-
sub read {
- my ($in, $mode) = @_;
- my %conf = (disabled => !glob_("$::prefix/etc/rc3.d/S*shorewall"),
- ports => join(' ', map {
- my $e = $_;
- map { "$_/$e->[3]" } split(',', $e->[4]);
- } grep { $_->[0] eq 'ACCEPT' && $_->[1] eq 'net' } get_config_file('rules'))
- );
+ my %conf;
+
+ $conf{disabled} = !glob_("$::prefix/etc/rc3.d/S*shorewall");
+
+ $conf{ports} =
+ join(' ', map {
+ my $e = $_;
+ map { "$_/$e->[3]" } split(',', $e->[4]);
+ } grep { $_->[0] eq 'ACCEPT' && $_->[1] eq 'net' } get_config_file('rules'));
if (my ($e) = get_config_file('masq')) {
$conf{masquerade}{subnet} = $e->[1] if $e->[1];
}
- if ($mode eq 'silent') {
- put_in_hash(\%conf, default_interfaces_silent($in));
- } else {
- put_in_hash(\%conf, default_interfaces($in));
- };
+ put_in_hash(\%conf, default_interfaces());
foreach (get_config_file('interfaces')) {
my ($name, $interface) = @$_;
if ($name eq 'masq') {
@@ -110,7 +86,6 @@ sub read {
sub write {
my ($conf) = @_;
- my $connect_file = "/etc/sysconfig/network-scripts/net_cnx_up";
my %ports_by_proto;
foreach (split ' ', $conf->{ports}) {
@@ -136,20 +111,16 @@ sub write {
[ 'all', 'all', 'REJECT', 'info' ],
);
set_config_file('rules',
- if_(cat_("$::prefix$connect_file") =~ /pptp/, [ 'ACCEPT', 'fw', 'loc:10.0.0.138', 'tcp', '1723' ]),
- if_(cat_("$::prefix$connect_file") =~ /pptp/, [ 'ACCEPT', 'fw', 'loc:10.0.0.138', 'gre' ]),
(map {
map_each { [ 'ACCEPT', $_, 'fw', $::a, join(',', @$::b), '-' ] } %ports_by_proto
} ('net', if_($conf->{masquerade}, 'masq'), if_($conf->{loc_interface}, 'loc'))),
if_($conf->{masquerade}, map { [ 'ACCEPT', 'masq', 'fw', $_, join(',', @drakgw_ports), '-' ] } 'tcp', 'udp'),
- if_($conf->{masquerade}, map { [ 'ACCEPT', 'fw', 'masq', $_, join(',', @internal_ports), '-' ] } 'tcp', 'udp'),
+ if_($conf->{masquerade}, map { [ 'ACCEPT', 'fw', 'masq', $_, join(',', @internal_ports), '-' ] } 'tcp', 'udp'),
);
set_config_file('masq',
$conf->{masquerade} ? [ $conf->{net_interface}, $conf->{masquerade}{subnet} ] : (),
);
- system('uniq /etc/shorewall/masq > /etc/shorewall/masq.uniq');
- rename("/etc/shorewall/masq.uniq", "/etc/shorewall/masq");
-
+
if ($conf->{disabled}) {
run_program::rooted($::prefix, 'chkconfig', '--del', 'shorewall');
run_program::run('service', '>', '/dev/null', 'shorewall', 'stop') if $::isStandalone;
diff --git a/perl-install/network/smb.pm b/perl-install/network/smb.pm
index 941463c65..7adf01a3a 100644
--- a/perl-install/network/smb.pm
+++ b/perl-install/network/smb.pm
@@ -70,7 +70,7 @@ sub find_servers {
my ($group, $name) = split(' ', lc($_));
# already done
- next if any { $group eq $_->{group} } values %servers;
+ next if grep { $group eq $_->{group} } values %servers;
$l{$name} = $group;
}
@@ -100,7 +100,7 @@ sub find_exports {
@l;
}
-sub authentications_available {
+sub authentifications_available {
my ($server) = @_;
map { if_(/^auth.\Q$server->{name}.\E(.*)/, $1) } all("/etc/samba");
}
@@ -146,36 +146,4 @@ sub read_credentials {
put_in_hash($server, read_credentials_raw(to_credentials($server->{name}, $username)));
}
-
-sub write_smb_conf {
- my ($domain) = @_;
-
- #- was going to just have a canned config in samba-winbind
- #- and replace the domain, but sylvestre/buchan didn't bless it yet
-
- my $f = "$::prefix/etc/samba/smb.conf";
- rename $f, "$f.orig";
- output($f, "
-[global]
- workgroup = $domain
- server string = Samba Server %v
- security = domain
- encrypt passwords = Yes
- password server = *
- log file = /var/log/samba/log.%m
- max log size = 50
- socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
- character set = ISO8859-15
- os level = 18
- local master = No
- dns proxy = No
- winbind uid = 10000-20000
- winbind gid = 10000-20000
- winbind separator = +
- template homedir = /home/%D/%U
- template shell = /bin/bash
- winbind use default domain = yes
-");
-}
-
1;
diff --git a/perl-install/network/smbnfs.pm b/perl-install/network/smbnfs.pm
index 97f2bd6e6..528a87be2 100644
--- a/perl-install/network/smbnfs.pm
+++ b/perl-install/network/smbnfs.pm
@@ -7,8 +7,8 @@ use fs;
sub new {
- my ($class, $o_v) = @_;
- bless($o_v || {}, $class);
+ my ($class, $v) = @_;
+ bless($v || {}, $class);
}
sub server_to_string {
diff --git a/perl-install/network/tools.pm b/perl-install/network/tools.pm
index 9735aef4b..489e0d966 100644
--- a/perl-install/network/tools.pm
+++ b/perl-install/network/tools.pm
@@ -1,6 +1,5 @@
-package network::tools; # $Id$
+package network::tools;
-use strict;
use common;
use run_program;
use c;
@@ -9,14 +8,14 @@ use MDK::Common::Globals "network", qw($in $prefix $disconnect_file $connect_pro
use MDK::Common::System qw(getVarsFromSh);
@ISA = qw(Exporter);
-@EXPORT = qw(ask_info2 connect_backend connected connected_bg disconnect_backend is_dynamic_ip is_wireless_intf passwd_by_login read_providers_backend read_secret_backend test_connected write_cnx_script write_initscript write_secret_backend);
+@EXPORT = qw(write_cnx_script write_secret_backend read_secret_backend passwd_by_login write_initscript ask_connect_now connect_backend disconnect_backend read_providers_backend ask_info2 type2interface connected connected_bg test_connected connected2 disconnected);
@EXPORT_OK = qw($in);
sub write_cnx_script {
- my ($netc, $o_type, $o_up, $o_down, $o_type2) = @_;
- if ($o_type) {
- $netc->{internet_cnx}{$o_type}{$_->[0]} = $_->[1] foreach [$connect_file, $o_up], [$disconnect_file, $o_down];
- $netc->{internet_cnx}{$o_type}{type} = $o_type2;
+ my ($netc, $type, $up, $down, $type2) = @_;
+ if ($type) {
+ $netc->{internet_cnx}{$type}{$_->[0]} = $_->[1] foreach [$connect_file, $up], [$disconnect_file, $down];
+ $netc->{internet_cnx}{$type}{type} = $type2;
} else {
foreach ($connect_file, $disconnect_file) {
output_with_perm("$prefix$_", 0755,
@@ -29,19 +28,18 @@ sub write_cnx_script {
sub write_secret_backend {
my ($a, $b) = @_;
- foreach my $i ("$prefix/etc/ppp/pap-secrets", "$prefix/etc/ppp/chap-secrets") {
- substInFile { s/^'$a'.*\n//; $_ .= "\n'$a' * '$b' * \n" if eof } $i;
- #- restore access right to secrets file, just in case.
- chmod 0600, $i;
+ foreach my $i ("pap-secrets", "chap-secrets") {
+ substInFile { s/^'$a'.*\n//; $_ .= "\n'$a' * '$b' * \n" if eof } "$prefix/etc/ppp/$i";
}
}
sub unquotify {
my ($word) = @_;
- $$word =~ s/^(['"]?)(.*)\1$/$2/;
+ my ($a, $b, $c) = $$word =~ /"(.*)"|'(.*)'|(.*)/;
+ $$word = $a ? $a : $b ? $b : $c;
}
-sub read_secret_backend() {
+sub read_secret_backend {
my $conf;
foreach my $i ("pap-secrets", "chap-secrets") {
foreach (cat_("$prefix/etc/ppp/$i")) {
@@ -69,30 +67,124 @@ sub passwd_by_login {
}
}
-sub connect_backend() { run_program::rooted($prefix, "$connect_file &") }
+sub ask_connect_now {
+ my ($type) = @_;
+ $::Wizard_no_previous = 1;
+ my $up;
+ #- FIXME : code the exception to be generated by ask_yesorno, to be able to remove the $::Wizard_no_previous=1;
+ if ($in->ask_yesorno(N("Internet configuration"),
+ N("Do you want to try to connect to the Internet now?")
+ )) {
+ {
+ my $_w = $in->wait_message('', N("Testing your connection..."), 1);
+ connect_backend();
+ my $s = 30;
+ $type =~ /modem/ and $s = 50;
+ $type =~ /adsl/ and $s = 35;
+ $type =~ /isdn/ and $s = 20;
+ sleep $s;
+ $up = connected();
+ }
+ my $m = $up ? N("The system is now connected to Internet.") .
+ if_($::isInstall, N("For security reason, it will be disconnected now.")) :
+ N("The system doesn't seem to be connected to internet.
+Try to reconfigure your connection.");
+ if ($::isWizard) {
+ $::Wizard_no_previous = 1;
+ $::Wizard_finished = 1;
+ $in->ask_okcancel(N("Network Configuration"), $m, 1);
+ undef $::Wizard_no_previous;
+ undef $::Wizard_finished;
+ } else { $in->ask_warn('', $m) }
+ $::isInstall and disconnect_backend();
+ }
+ undef $::Wizard_no_previous;
+ $up;
+}
+
+sub connect_backend { run_program::rooted($prefix, "$connect_prog &") }
-sub disconnect_backend() { run_program::rooted($prefix, "$disconnect_file &") }
+sub disconnect_backend { run_program::rooted($prefix, "$disconnect_file &") }
sub read_providers_backend { my ($file) = @_; map { /(.*?)=>/ } catMaybeCompressed($file) }
-sub connected() { gethostbyname("mandrakesoft.com") ? 1 : 0 }
+sub ask_info2 {
+ my ($cnx, $netc) = @_;
+ $::isInstall and $in->set_help('configureNetworkDNS');
+ $in->ask_from(N("Connection Configuration"),
+ N("Please fill or check the field below"),
+ [
+ if__($cnx->{irq}, { label => N("Card IRQ"), val => \$cnx->{irq} }),
+ if__($cnx->{mem}, { label => N("Card mem (DMA)"), val => \$cnx->{mem} }),
+ if__($cnx->{io}, { label => N("Card IO"), val => \$cnx->{io} }),
+ if__($cnx->{io0}, { label => N("Card IO_0"), val => \$cnx->{io0} }),
+ if__($cnx->{io1}, { label => N("Card IO_1"), val => \$cnx->{io1} }),
+ if__($cnx->{phone_in}, { label => N("Your personal phone number"), val => \$cnx->{phone_in} }),
+ if__($netc->{DOMAINNAME2}, { label => N("Provider name (ex provider.net)"), val => \$netc->{DOMAINNAME2} }),
+ if__($cnx->{phone_out}, { label => N("Provider phone number"), val => \$cnx->{phone_out} }),
+ if__($netc->{dnsServer2}, { label => N("Provider dns 1 (optional)"), val => \$netc->{dnsServer2} }),
+ if__($netc->{dnsServer3}, { label => N("Provider dns 2 (optional)"), val => \$netc->{dnsServer3} }),
+ if__($cnx->{vpivci}, { label => N("Choose your country"), val => \$netc->{vpivci}, list => detect_timezone() }),
+ if__($cnx->{dialing_mode}, { label => N("Dialing mode"), val => \$cnx->{dialing_mode},list => ["auto", "manual"] }),
+ if__($cnx->{speed}, { label => N("Connection speed"), val => \$cnx->{speed}, list => ["64 Kb/s", "128 Kb/s"] }),
+ if__($cnx->{huptimeout}, { label => N("Connection timeout (in sec)"), val => \$cnx->{huptimeout} }),
+ if__($cnx->{login}, { label => N("Account Login (user name)"), val => \$cnx->{login} }),
+ if__($cnx->{passwd}, { label => N("Account Password"), val => \$cnx->{passwd}, hidden => 1 }),
+ ]
+ ) or return;
+ if ($netc->{vpivci}) {
+ foreach ([N("Netherlands"), '8_48'], [N("France"), '8_35'], [N("Belgium"), '8_35'], [N("Italy"), '8_35'], [N("United Kingdom"), '0_38'], [N("United States"), '8_35']) {
+ $netc->{vpivci} eq $_->[0] and $netc->{vpivci} = $_->[1];
+ }
+ }
+ 1;
+}
+
+sub detect_timezone {
+ my %tmz2country = (
+ 'Europe/Paris' => N("France"),
+ 'Europe/Amsterdam' => N("Netherlands"),
+ 'Europe/Rome' => N("Italy"),
+ 'Europe/Brussels' => N("Belgium"),
+ 'America/New_York' => N("United States"),
+ 'Europe/London' => N("United Kingdom")
+ );
+ my %tm_parse = MDK::Common::System::getVarsFromSh('/etc/sysconfig/clock');
+ my @country;
+ foreach (keys %tmz2country) {
+ if ($_ eq $tm_parse{ZONE}) {
+ unshift @country, $tmz2country{$_};
+ } else { push @country, $tmz2country{$_} };
+ }
+ \@country;
+}
-# request a ref on a bg_connect and a ref on a scalar
-sub connected_bg__raw {
- my ($kid_pipe, $status) = @_;
- local $| = 1;
- if (ref($kid_pipe) && ref($$kid_pipe)) {
- my $fd = $$kid_pipe->{fd};
- fcntl($fd, c::F_SETFL(), c::O_NONBLOCK()) or die "can't fcntl F_SETFL: $!";
- my $a = <$fd>;
- $$status = $a if defined $a;
- } else { $$kid_pipe = check_link_beat() }
+sub type2interface {
+ my ($i) = @_;
+ $i =~ /$_->[0]/ and return $_->[1] foreach [ modem => 'ppp' ],
+ [ isdn_internal => 'ippp' ],
+ [ isdn_external => 'ppp' ],
+ [ adsl => 'ppp' ],
+ [ cable => 'eth' ],
+ [ lan => 'eth' ];
}
+sub connected { gethostbyname("mandrakesoft.com") ? 1 : 0 }
+
my $kid_pipe;
sub connected_bg {
- my ($status) = @_;
- connected_bg__raw(\$kid_pipe, $status);
+ local $| = 1;
+ my ($ref) = @_;
+ if (defined $kid_pipe) {
+ fcntl($kid_pipe, c::F_SETFL(), c::O_NONBLOCK()) or die "can't fcntl F_SETFL: $!";
+ my $a;
+ if (defined($a = <$kid_pipe>)) {
+ close($kid_pipe) || warn "kid exited $?";
+ undef $kid_pipe;
+ $$ref = $a;
+ }
+ } else { $kid_pipe = connected2() }
+ 1;
}
# test if connected;
@@ -104,38 +196,60 @@ sub connected_bg {
# return : nothing
# cmd = 3 : return current status even if a test is in progress
my $kid_pipe_connect;
+my $kid_pid;
my $current_connection_status;
sub test_connected {
local $| = 1;
my ($cmd) = @_;
-
- $current_connection_status = -1 if !defined $current_connection_status;
-
+
+ if (!defined $current_connection_status) { $current_connection_status = -1 }
+
if ($cmd == 0) {
- connected_bg__raw(\$kid_pipe_connect, \$current_connection_status);
- } elsif ($cmd == 1) {
+ if (defined $kid_pipe_connect) {
+ fcntl($kid_pipe_connect, c::F_SETFL(), c::O_NONBLOCK()) or die "can't fcntl F_SETFL: $!";
+ my $a;
+ if (defined($a = <$kid_pipe_connect>)) {
+ close($kid_pipe_connect) || warn "kid exited $?";
+ undef $kid_pipe_connect;
+ undef $kid_pid;
+ $current_connection_status = $a;
+ }
+ }
+ return $current_connection_status;
+ }
+
+ if ($cmd == 1) {
if ($current_connection_status != -2) {
$current_connection_status = -2;
- $kid_pipe_connect = check_link_beat();
+ $kid_pipe_connect = connected2();
}
- } elsif ($cmd == 2) {
- if (defined($kid_pipe_connect)) {
- kill -9, $kid_pipe_connect->{pid};
- undef $kid_pipe_connect;
+ }
+ if ($cmd == 2) {
+ if (defined($kid_pid)) {
+ kill -9, $kid_pid;
+ undef $kid_pid;
}
}
return $current_connection_status;
}
-sub check_link_beat() {
- bg_command->new(sub {
- require Net::Ping;
- print Net::Ping->new("icmp")->ping("mandrakesoft.com") ? 1 : 0;
- });
+sub connected2 {
+ if ($kid_pid = open(my $kid_to_read, "-|")) {
+ #- parent
+ $kid_to_read;
+ } else {
+ #- child
+ my $a = gethostbyname("mandrakesoft.com") ? 1 : 0;
+ print $a;
+ c::_exit(0);
+ }
}
-sub write_initscript() {
+sub disconnected {}
+
+
+sub write_initscript {
$::testing and return;
output_with_perm("$prefix/etc/rc.d/init.d/internet", 0755,
sprintf(<<'EOF', $connect_file, $connect_file, $disconnect_file, $disconnect_file));
@@ -188,64 +302,4 @@ EOF
};
}
-sub copy_firmware {
- my ($device, $destination, $file) = @_;
- my ($source, $failed, $mounted);
-
- $device eq 'floppy' and do { $mounted = 1; ($source, $failed) = use_floppy($file) };
- $device eq 'windows' and ($source, $failed) = use_windows();
-
- $source eq $failed and return;
- $mounted and my $_b = before_leaving { fs::umount('/mnt') };
- if ($failed) {
- eval { $in->ask_warn('', $failed) }; $in->exit if $@ =~ /wizcancel/;
- return;
- }
-
- if (-e "$source/$file") { cp_af("$source/$file", $destination) }
- else { $failed = N("Firmware copy failed, file %s not found", $file) }
- eval { $in->ask_warn('', $failed || N("Firmware copy succeeded")) }; $in->exit if $@ =~ /wizcancel/;
- log::explanations($failed || "Firmware copy $file in $destination succeeded");
-
- $failed ? 0 : 1;
-}
-
-sub use_windows() {
- my $all_hds = fsedit::get_hds({}, undef);
- fs::get_info_from_fstab($all_hds, '');
- my $part = find { $_->{device_windobe} eq 'C' } fsedit::get_fstab(@{$all_hds->{hds}});
- $part or my $failed = N("No partition available");
- my $source = -d "$part->{mntpoint}/windows/" ? "$part->{mntpoint}/windows/system" : "$part->{mntpoint}/winnt/system";
- log::explanations($failed || "Seek in $source to find firmware");
-
- return $source, $failed;
-}
-
-sub use_floppy {
- my ($file) = @_;
- my $floppy = detect_devices::floppy();
- $in->ask_okcancel(N("Insert floppy"),
- N("Insert a FAT formatted floppy in drive %s with %s in root directory and press %s", $floppy, $file, N("Next"))) or return;
- eval { fs::mount(devices::make($floppy), '/mnt', 'vfat', 'readonly'); 1 } or my $failed = N("Floppy access error, unable to mount device %s", $floppy);
- log::explanations($failed || "Mounting floppy device $floppy in /mnt");
-
- return '/mnt', $failed;
-}
-
-
-sub is_wireless_intf {
- my ($module) = @_;
- member($module, qw(acx100_pci airo aironet_cs aironet4500_cs airo_cs airport at76c503 hermes netwave_cs orinoco_cs prism2_usb orinoco ray_cs usbvnet_rfmd wavelan_cs wvlan_cs))
-}
-
-sub is_dynamic_ip {
- my ($intf) = @_;
- any { $_->{BOOTPROTO} !~ /^(none|static|)$/ } values %$intf;
-}
-
-sub is_dynamic_host {
- my ($intf) = @_;
- any { defined $_->{DHCP_HOSTNAME} } values %$intf;
-}
-
1;
diff --git a/perl-install/patch/9.1/hp.diff b/perl-install/patch/9.1/hp.diff
deleted file mode 100644
index befdf71f6..000000000
--- a/perl-install/patch/9.1/hp.diff
+++ /dev/null
@@ -1,137 +0,0 @@
-Index: install_steps_interactive.pm
-===================================================================
-RCS file: /cooker/gi/perl-install/install_steps_interactive.pm,v
-retrieving revision 1.810
-retrieving revision 1.812
-diff -u -p -r1.810 -r1.812
---- install_steps_interactive.pm 12 Mar 2003 15:34:46 -0000 1.810
-+++ install_steps_interactive.pm 20 Mar 2003 10:12:38 -0000 1.812
-@@ -1006,6 +1006,9 @@ sub summary {
- local $::expert = $::expert;
- require network::netconnect;
- network::netconnect::main($o->{prefix}, $o->{netcnx} ||= {}, $o->{netc}, $o->{mouse}, $o, $o->{intf}, 0, 0, 1);
-+ #- in case netcnx type is not updated.
-+ require network::network;
-+ network::network::probe_netcnx_type($o->{prefix}, $o->{netc}, $o->{intf}, $o->{netcnx});
- },
- b
- };
-
-Index: lang.pm
-===================================================================
-RCS file: /cooker/gi/perl-install/lang.pm,v
-retrieving revision 1.309
-retrieving revision 1.312
-diff -u -p -r1.309 -r1.312
---- lang.pm 11 Mar 2003 23:35:36 -0000 1.309
-+++ lang.pm 19 Mar 2003 17:06:18 -0000 1.312
-@@ -229,7 +229,7 @@ my %countries = (
- 'GU' => [ N_("Guam"), 'en_US', '4' ], #
- 'GW' => [ N_("Guinea-Bissau"), 'pt_PT', '3' ], #
- 'GY' => [ N_("Guyana"), 'en_US', '5' ], #
--'HK' => [ N_("Hong Kong"), 'zh_HK', '2' ],
-+'HK' => [ N_("China") . ' (' . N_("Hong Kong") . ')', 'zh_HK', '2' ],
- 'HM' => [ N_("Heard and McDonald Islands"), 'en_US', '4' ], #
- 'HN' => [ N_("Honduras"), 'es_HN', '5' ],
- 'HR' => [ N_("Croatia"), 'hr_HR', '1' ],
-@@ -742,6 +742,9 @@ sub l2pango_font {
-
- sub set {
- my ($lang, $translate_for_console) = @_;
-+
-+ #- disable Arabic in install as no (free) fonts are available.
-+ $lang eq 'ar' and $lang='en_US';
-
- exists $langs{$lang} or log::l("lang::set: trying to set to $lang but I don't know it!"), return;
-
-Index: standalone/service_harddrake
-===================================================================
-RCS file: /cooker/gi/perl-install/standalone/service_harddrake,v
-retrieving revision 1.34
-diff -u -p -r1.34 service_harddrake
---- standalone/service_harddrake 12 Mar 2003 10:55:35 -0000 1.34
-+++ standalone/service_harddrake 21 Mar 2003 16:06:52 -0000
-@@ -13,7 +13,7 @@ use modules;
- use Storable qw(store retrieve);
-
- my $invert_do_it = $ARGV[0] eq 'X11' ? 1 : 0;
--my ($hw_sysconfdir, $timeout) = ("/etc/sysconfig/harddrake2", $invert_do_it ? 600 : 5);
-+my ($hw_sysconfdir, $timeout) = ("/etc/sysconfig/harddrake2", $invert_do_it ? 600 : 25);
- my $last_boot_config = $hw_sysconfdir."/previous_hw";
-
- $last_boot_config .= '_X11' if $invert_do_it;
-Index: drakxtools.spec
-===================================================================
-RCS file: /cooker/gi/perl-install/drakxtools.spec,v
-retrieving revision 1.247
-diff -u -p -r1.247 drakxtools.spec
---- drakxtools.spec 16 Mar 2003 15:30:56 -0000 1.247
-+++ drakxtools.spec 21 Mar 2003 16:17:22 -0000
-@@ -1,7 +1,7 @@
- Summary: The drakxtools (XFdrake, diskdrake, keyboarddrake, mousedrake...)
- Name: drakxtools
- Version: 9.1
--Release: 26mdk
-+Release: 27mdk
- Url: http://www.mandrakelinux.com/en/drakx.php2
- Source0: %name-%version.tar.bz2
- License: GPL
-@@ -303,6 +303,9 @@ file /etc/sysconfig/harddrake2/previous_
- %config(noreplace) %_sysconfdir/logrotate.d/drakxtools-http
-
- %changelog
-+* Fri Mar 21 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-27mdk
-+- harddrake service: increase default timeout from 5 to 25 seconds
-+
- * Sun Mar 16 2003 Warly <warly@mandrakesoft.com> 9.1-25mdk
- - do a correct cvs up of all gi before (me sux)
-
-Index: install_steps_interactive.pm
-===================================================================
-RCS file: /cooker/gi/perl-install/install_steps_interactive.pm,v
-retrieving revision 1.810
-diff -u -p -r1.810 install_steps_interactive.pm
---- install_steps_interactive.pm 12 Mar 2003 15:34:46 -0000 1.810
-+++ install_steps_interactive.pm 21 Mar 2003 16:11:09 -0000
-@@ -894,7 +894,7 @@ sub summary {
- my $timezone_manually_set;
- push @l, {
- group => N("System"),
-- label => N("Country"),
-+ label => N("Country") . N(" / Region"),
- val => sub { lang::c2name($o->{locale}{country}) },
- clicked => sub {
- any::selectCountry($o, $o->{locale}) or return;
-Index: any.pm
-===================================================================
-RCS file: /cooker/gi/perl-install/any.pm,v
-retrieving revision 1.340
-diff -u -p -r1.340 any.pm
---- any.pm 13 Mar 2003 10:42:51 -0000 1.340
-+++ any.pm 21 Mar 2003 16:11:09 -0000
-@@ -688,7 +688,7 @@ sub selectCountry {
- my ($other, $ext_country);
- member($country, @best) or ($ext_country, $country) = ($country, $ext_country);
- $o->ask_from_(
-- { title => N("Country"),
-+ { title => N("Country") . N(" / Region"),
- messages => N("Please choose your country."),
- interactive_help_id => 'selectCountry',
- advanced_messages => N("Here is the full list of available countries"),
-Index: lang.pm
-===================================================================
-RCS file: /cooker/gi/perl-install/lang.pm,v
-retrieving revision 1.312
-diff -u -r1.312 lang.pm
---- lang.pm 19 Mar 2003 17:06:18 -0000 1.312
-+++ lang.pm 28 Mar 2003 15:24:41 -0000
-@@ -23,7 +23,8 @@
- my %langs = (
- 'af' => [ 'Afrikaans', 'Afrikaans', 'af_ZA', ' 3 ', 'iso-8859-1' ],
- 'am' => [ 'Amharic', 'ZZ emarNa', 'am_ET', ' 3 ', 'utf_am' ],
--'ar' => [ 'Arabic', 'AA Arabic', 'ar_EG', ' 23 ', 'utf_ar' ],
-+#- doesn't work well after install
-+#'ar' => [ 'Arabic', 'AA Arabic', 'ar_EG', ' 23 ', 'utf_ar' ],
- 'az' => [ 'Azeri (Latin)', 'Azerbaycanca', 'az_AZ', ' 2 ', 'utf_az' ],
- 'be' => [ 'Belarussian', 'Belaruskaya', 'be_BY', '1 ', 'cp1251' ],
- 'bg' => [ 'Bulgarian', 'Blgarski', 'bg_BG', '1 ', 'cp1251' ],
diff --git a/perl-install/patch/9.1/patch-detectSMP-K6.pl b/perl-install/patch/9.1/patch-detectSMP-K6.pl
deleted file mode 100644
index acf5821f6..000000000
--- a/perl-install/patch/9.1/patch-detectSMP-K6.pl
+++ /dev/null
@@ -1,5 +0,0 @@
-use detect_devices;
-package detect_devices;
-
-undef *hasSMP;
-*hasSMP = sub { 0 };
diff --git a/perl-install/patch/9.1/patch-loopback.pl b/perl-install/patch/9.1/patch-loopback.pl
deleted file mode 100644
index d0f4185b3..000000000
--- a/perl-install/patch/9.1/patch-loopback.pl
+++ /dev/null
@@ -1,18 +0,0 @@
-use bootloader;
-package bootloader;
-log::l("PATCHING: fixing 9.1 aes.o missing in initrd for / on loopback");
-
-*mkinitrd = sub {
- my ($kernelVersion, $initrdImage) = @_;
-
- my $loop_boot = loopback::prepare_boot();
-
- modules::load('loop');
- if (!run_program::rooted($::prefix, "mkinitrd", "--with=aes", "-v", "-f", $initrdImage, "--ifneeded", $kernelVersion)) {
- unlink("$::prefix/$initrdImage");
- die "mkinitrd failed";
- }
- loopback::save_boot($loop_boot);
-
- -e "$::prefix/$initrdImage";
-};
diff --git a/perl-install/patch/patch-9.0-auto-inst-network-config.pl b/perl-install/patch/patch-9.0-auto-inst-network-config.pl
deleted file mode 100644
index f7cdc95ce..000000000
--- a/perl-install/patch/patch-9.0-auto-inst-network-config.pl
+++ /dev/null
@@ -1,8 +0,0 @@
-package install_steps;
-log::l("fixing network module probe & configuration in interactive auto_install");
-my $old_configureNetwork = \&configureNetwork;
-undef *configureNetwork;
-*configureNetwork = sub {
- modules::load_category('network/main|usb');
- &$old_configureNetwork;
-};
diff --git a/perl-install/patch/patch-IMPS2.pl b/perl-install/patch/patch-IMPS2.pl
deleted file mode 100644
index 488b6ac11..000000000
--- a/perl-install/patch/patch-IMPS2.pl
+++ /dev/null
@@ -1,9 +0,0 @@
-use install_gtk;
-package install_gtk;
-
-my $old_createXconf = \&createXconf;
-undef *createXconf;
-*createXconf = sub {
- symlink 'mouse', '/dev/cdrom';
- &$old_createXconf;
-}
diff --git a/perl-install/patch/patch-da.pl b/perl-install/patch/patch-da.pl
deleted file mode 100644
index 63a9f76d5..000000000
--- a/perl-install/patch/patch-da.pl
+++ /dev/null
@@ -1,6 +0,0 @@
-use common;
-
-log::l("PATCHING: installing mo");
-my $dir = '/usr/share/locale_special/da/LC_MESSAGES';
-mkdir_p($dir);
-system("gzip -dc /mnt/da_mo.gz > $dir/libDrakX.mo");
diff --git a/perl-install/patch/patch-nforce.pl b/perl-install/patch/patch-nforce.pl
deleted file mode 100644
index 35587ec75..000000000
--- a/perl-install/patch/patch-nforce.pl
+++ /dev/null
@@ -1,35 +0,0 @@
-use install_steps;
-use common;
-
-package install_steps;
-
-my $old_afterInstallPackages = \&afterInstallPackages;
-undef *afterInstallPackages;
-*afterInstallPackages = sub {
- &$old_afterInstallPackages;
-
- my ($o) = @_;
-
- # workaround nforce stuff.
- #
- # modules.pm uses /lib/modules/VERSION/modules*map to know which
- # sound drivers to use : this'll cause i810_audio to override
- # nvaudio since it exports the nvforce audio pci ids
- #
- # the right solution is to :
- #
- # - remove the nforce ids from i810_audio until the oss driver got
- # fixes implemented in alsa driver for nforce (snd-intel8x0.o)
- #
- # - ask nvidia to declare which pci ids they use and export them
- # for depmod :
- # MODULE_DEVICE_TABLE (pci, <name_of_the struct pci_device_id variable>);
-
- #- try to workaround nforce stuff.
- foreach (keys %{$o->{packages}{provides}{kernel}}) {
- my $p = $o->{packages}{depslist}[$_];
- my ($ext, $version, $release) = $p->name =~ /^kernel-([^\d\-]*)-?([^\-]*)\.([^\-\.]*)$/ or next;
- -s "$o->{prefix}/lib/modules/$version-$release$ext/kernel/drivers/sound/nvaudio.o.gz" and
- run_program::rooted($o->{prefix}, "cp -f /lib/modules/$version-$release$ext/kernel/drivers/sound/nvaudio.o.gz /lib/modules/$version-$release$ext/kernel/drivers/sound/i810_audio.o.gz");
- }
-};
diff --git a/perl-install/patch/patch-oem-9.0.pl b/perl-install/patch/patch-oem-9.0.pl
deleted file mode 100644
index 60c7422fe..000000000
--- a/perl-install/patch/patch-oem-9.0.pl
+++ /dev/null
@@ -1,52 +0,0 @@
-use install_steps;
-package install_steps;
-
-my $old_afterInstallPackages = \&afterInstallPackages;
-undef *afterInstallPackages;
-*afterInstallPackages = sub {
- &$old_afterInstallPackages;
-
- my ($o) = @_;
-
- #- update oem lilo image if it exists.
- if (-s "$o->{prefix}/boot/oem-message-graphic") {
- rename "$o->{prefix}/boot/message-graphic", "$o->{prefix}/boot/message-graphic.mdkgiorig";
- rename "$o->{prefix}/boot/oem-message-graphic", "$o->{prefix}/boot/message-graphic";
- }
-
- #- update background image if it exists for common environment.
- if (-s "$o->{prefix}/usr/share/mdk/oem-background.png") {
- if (-e "$o->{prefix}/usr/share/mdk/backgrounds/default.png") {
- rename "$o->{prefix}/usr/share/mdk/backgrounds/default.png",
- "$o->{prefix}/usr/share/mdk/backgrounds/default.png.mdkgiorig";
- rename "$o->{prefix}/usr/share/mdk/oem-background.png", "$o->{prefix}/usr/share/mdk/backgrounds/default.png";
- } else {
- #- KDE desktop background.
- if (-e "$o->{prefix}/usr/share/config/kdesktoprc") {
- update_gnomekderc("$o->{prefix}/usr/share/config/kdesktoprc", "Desktop0",
- MultiWallpaperMode => "NoMulti",
- Wallpaper => "/usr/share/mdk/oem-background.png",
- WallpaperMode => "Scaled",
- );
- }
- #- GNOME desktop background.
- if (-e "$o->{prefix}/etc/gnome/config/Background") {
- update_gnomekderc("$o->{prefix}/etc/gnome/config/Background", "Default",
- wallpaper => "/usr/share/mdk/oem-background.png",
- wallpaperAlign => "3",
- );
- }
- }
- }
-
- #- try to workaround nforce stuff.
- foreach (keys %{$o->{packages}{provides}{kernel}}) {
- my $p = $o->{packages}{depslist}[$_];
- my ($ext, $version, $release) = $p->name =~ /^kernel-([^\d\-]*)-?([^\-]*)\.([^\-\.]*)$/ or next;
- -s "$o->{prefix}/lib/modules/$version-$release$ext/kernel/drivers/sound/nvaudio.o.gz" and
- run_program::rooted($o->{prefix}, "cp -f /lib/modules/$version-$release$ext/kernel/drivers/sound/nvaudio.o.gz /lib/modules/$version-$release$ext/kernel/drivers/sound/i810_audio.o.gz");
- }
-
- #- try to check if pcitable and others have been built correctly.
- -e "$o->{prefix}/usr/share/ldetect-lst/pcitable" or run_program::rooted($o->{prefix}, "/usr/sbin/update-ldetect-lst");
-};
diff --git a/perl-install/patch/patch-oem-hp.pl b/perl-install/patch/patch-oem-hp.pl
deleted file mode 100644
index 0a5b0b51e..000000000
--- a/perl-install/patch/patch-oem-hp.pl
+++ /dev/null
@@ -1,323 +0,0 @@
-use modules;
-package modules;
-my $old_load_raw = \&load_raw;
-undef *load_raw;
-*load_raw = sub {
- &$old_load_raw;
-
- my @l = map { my ($i, @i) = @$_; [ $i, \@i ] } grep { $_->[0] !~ /ignore/ } @_;
- foreach (@l) {
- if ($_->[0] eq 'ehci-hcd') {
- add_alias('usb-interface1', $_->[0]);
- }
- }
-
- if (get_alias("usb-interface") || get_alias("usb-interface1")) {
- unless (-e "/proc/bus/usb/devices") {
- require fs; fs::mount('/proc/bus/usb', '/proc/bus/usb', 'usbdevfs');
- #- ensure keyboard is working, the kernel must do the job the BIOS was doing
- sleep 4;
- load_multi("usbkbd", "keybdev") if detect_devices::usbKeyboards();
- }
- }
-};
-
-my $old_load = \&load;
-undef *load;
-*load = sub {
- &$old_load;
-
- #- hack to get back usb-interface (even if already loaded by stage1)
- #- NOTE load_multi is not used for that so not overloaded to fix that too.
- if ($_[0] =~ /usb-[uo]hci/ && !get_alias("usb-interface")) {
- add_alias('usb-interface', $_[0]);
- } elsif ($_[0] eq 'ehci-hcd' && !get_alias("usb-interface1")) {
- add_alias('usb-interface1', $_[0]);
- }
-
- if (get_alias("usb-interface") || get_alias("usb-interface1")) {
- unless (-e "/proc/bus/usb/devices") {
- require fs; fs::mount('/proc/bus/usb', '/proc/bus/usb', 'usbdevfs');
- #- ensure keyboard is working, the kernel must do the job the BIOS was doing
- sleep 4;
- load_multi("usbkbd", "keybdev") if detect_devices::usbKeyboards();
- }
- }
-};
-
-#- ensure it is loaded using this patch.
-$::noauto or modules::load_thiskind("usb");
-sleep 2;
-
-use install_steps;
-package install_steps;
-
-my $old_beforeInstallPackages = \&beforeInstallPackages;
-undef *beforeInstallPackages;
-*beforeInstallPackages = sub {
- &$old_beforeInstallPackages;
-
- my ($o) = @_;
- mkdir "$o->{prefix}$_" foreach qw(/boot /usr /usr/share /usr/share/mdk);
- install_any::getAndSaveFile("Mandrake/base/oem-message-graphic", "$o->{prefix}/boot/oem-message-graphic");
- install_any::getAndSaveFile("Mandrake/base/oem-background.png", "$o->{prefix}/usr/share/mdk/oem-background.png");
-};
-
-my $old_afterInstallPackages = \&afterInstallPackages;
-undef *afterInstallPackages;
-*afterInstallPackages = sub {
- &$old_afterInstallPackages;
-
- my ($o) = @_;
-
- #- lilo image.
- rename "$o->{prefix}/boot/lilo-graphic/message", "$o->{prefix}/boot/lilo-graphic/message.orig";
- system "chroot", $o->{prefix}, "cp", "-f", "/boot/oem-message-graphic", "/boot/lilo-graphic/message";
-
- #- KDE desktop background.
- if (-e "$o->{prefix}/usr/share/config/kdesktoprc") {
- update_gnomekderc("$o->{prefix}/usr/share/config/kdesktoprc", "Desktop0",
- MultiWallpaperMode => "NoMulti",
- Wallpaper => "/usr/share/mdk/oem-background.png",
- WallpaperMode => "Scaled",
- );
- }
- #- GNOME desktop background.
- if (-e "$o->{prefix}/etc/gnome/config/Background") {
- update_gnomekderc("$o->{prefix}/etc/gnome/config/Background", "Default",
- wallpaper => "/usr/share/mdk/oem-background.png",
- wallpaperAlign => "3",
- );
- }
-
- #- make sure no error can be forwarded, test staroffice installed and OpenOffice.org,
- #- remove the first if the second is installed.
- eval {
- if (!$o->{isUpgrade} && -e "$o->{prefix}/usr/lib/openoffice/program/soffice.bin" && grep { -e "$o->{prefix}/usr/lib/office60_$_/program/soffice.bin" } qw(de en es fr it)) {
- require run_program;
- log::l("removing OpenOffice.org as staroffice is installed");
- run_program::rooted($o->{prefix}, "rpm", "-e", "OpenOffice.org");
- }
- };
-};
-
-use install_any;
-package install_any;
-
-undef *copy_advertising;
-*copy_advertising = sub {
- my ($o) = @_;
-
- return if $::rootwidth < 800;
-
- my $f;
- my $source_dir = "Mandrake/share/advertising";
- foreach ("." . $o->{lang}, "." . substr($o->{lang},0,2), '') {
- $f = getFile("$source_dir$_/list") or next;
- $source_dir = "$source_dir$_";
- }
- if (my @files = <$f>) {
- my $dir = "$o->{prefix}/tmp/drakx-images";
- mkdir $dir;
- unlink glob_("$dir/*");
- foreach (@files) {
- chomp;
- getAndSaveFile("$source_dir/$_", "$dir/$_");
- s/\.png/\.pl/;
- getAndSaveFile("$source_dir/$_", "$dir/$_");
- s/\.pl/_icon\.png/;
- getAndSaveFile("$source_dir/$_", "$dir/$_");
- s/_icon\.png/\.png/;
- }
- @advertising_images = map { $_ && -e "$dir/$_" ? ("$dir/$_") : () } @files;
- }
-};
-
-#undef *allowNVIDIA_rpms;
-#*allowNVIDIA_rpms = sub {
-# my ($packages) = @_;
-# require pkgs;
-# if (pkgs::packageByName($packages, "NVIDIA_GLX")) {
-# #- at this point, we can allow using NVIDIA 3D acceleration packages.
-# my @rpms;
-# foreach (keys %{$packages->{names}}) {
-# my ($ext, $version, $release) = /kernel[^-]*(-smp|-enterprise|-secure)?(?:-(\d.*?)\.(\d+\.\d+mdk))?$/ or next;
-# my $p = pkgs::packageByName($packages, $_);
-# pkgs::packageSelectedOrInstalled($p) or next;
-# $version or ($version, $release) = (pkgs::packageVersion($p), pkgs::packageRelease($p));
-# my $name = "NVIDIA_kernel-$version-$release$ext";
-# pkgs::packageByName($packages, $name) or return;
-# push @rpms, $name;
-# }
-# @rpms > 0 or return;
-# return [ @rpms, "NVIDIA_GLX" ];
-# }
-#};
-
-use detect_devices;
-package detect_devices;
-
-undef *usbMice;
-*usbMice = sub { grep { ($_->{media_type} =~ /\|Mouse/ || $_->{driver} =~ /Mouse:USB/) &&
- $_->{driver} !~ /Tablet:wacom/} usb_probe() };
-
-use Xconfigurator;
-package Xconfigurator;
-
-undef *cardConfigurationAuto;
-*cardConfigurationAuto = sub {
- my @cards;
- if (my @c = grep { $_->{driver} =~ /(Card|Server):/ } detect_devices::probeall()) {
- @c >= 2 && $c[0]{description} eq $c[1]{description} && $c[0]{description} =~ /82830 CGC/ and shift @c;
- foreach my $i (0..$#c) {
- local $_ = $c[$i]->{driver};
- my $card = { identifier => ($c[$i]{description} . (@c > 1 && " $i")) };
- $card->{type} = $1 if /Card:(.*)/;
- $card->{server} = $1 if /Server:(.*)/;
- $card->{driver} = $1 if /Driver:(.*)/;
- $card->{flags}{needVideoRam} = /86c368|S3 Inc|Tseng.*ET6\d00/;
- $card->{busid} = "PCI:$c[$i]{pci_bus}:$c[$i]{pci_device}:$c[$i]{pci_function}";
- push @{$card->{lines}}, @{$lines{$card->{identifier}} || []};
- push @cards, $card;
- }
- }
- #- take a default on sparc if nothing has been found.
- if (arch() =~ /^sparc/ && !@cards) {
- log::l("Using probe with /proc/fb as nothing has been found!");
- local $_ = cat_("/proc/fb");
- if (/Mach64/) { push @cards, { server => "Mach64" } }
- elsif (/Permedia2/) { push @cards, { server => "3DLabs" } }
- else { push @cards, { server => "Sun24" } }
- }
- #- special case for dual head card using only one busid.
- @cards = map { my $dup = $_->{identifier} =~ /MGA G[45]50/ ? 2 : 1;
- if ($dup > 1) {
- my @result;
- my $orig = $_;
- foreach (1..$dup) {
- my $card = {};
- add2hash($card, $orig);
- push @result, $card;
- }
- @result;
- } else {
- ($_);
- }
- } @cards;
- #- make sure no type are already used, duplicate both screen
- #- and rename type (because used as id).
- if (@cards > 1) {
- my $card = 1;
- foreach (@cards) {
- updateCardAccordingName($_, $_->{type}) if $_->{type};
- $_->{type} = "$_->{type} $card";
- $card++;
- }
- }
- #- in case of only one cards, remove all busid reference, this will avoid
- #- need of change of it if the card is moved.
- #- on many PPC machines, card is on-board, busid is important, leave?
- @cards == 1 and delete $cards[0]{busid} if arch() !~ /ppc/;
- @cards;
-};
-
-use mouse;
-package mouse;
-undef *detect;
-*detect = sub {
- if (arch() =~ /^sparc/) {
- return fullname2mouse("sunmouse|Sun - Mouse");
- }
- if (arch() eq "ppc") {
- return fullname2mouse(detect_devices::hasMousePS2("usbmouse") ?
- "USB|1 button" :
- #- No need to search for an ADB mouse. If I did, the PPC kernel would
- #- find one whether or not I had one installed! So.. default to it.
- "busmouse|1 button");
- }
-
- my @wacom;
- my $fast_mouse_probe = sub {
- my $auxmouse = detect_devices::hasMousePS2("psaux") && fullname2mouse("PS/2|Standard", unsafe => 1);
-
- if (modules::get_alias("usb-interface")) {
- if (my (@l) = detect_devices::usbMice()) {
- log::l("found usb mouse $_->{driver} $_->{description} ($_->{type})") foreach @l;
- eval { modules::load($_) foreach qw(hid mousedev usbmouse) };
- if (!$@ && detect_devices::tryOpen("usbmouse")) {
- my $mouse = fullname2mouse($l[0]{driver} =~ /Mouse:(.*)/ ? $1 : "USB|Generic");
- $auxmouse and $mouse->{auxmouse} = $auxmouse; #- for laptop, we kept the PS/2 as secondary (symbolic).
- return $mouse;
- }
- eval { modules::unload($_) foreach qw(usbmouse mousedev hid) };
- }
- }
- $auxmouse;
- };
-
- if (modules::get_alias("usb-interface")) {
- my $keep_mouse;
- if (my (@l) = detect_devices::usbWacom()) {
- log::l("found usb wacom $_->{driver} $_->{description} ($_->{type})") foreach @l;
- eval { modules::load("wacom"); modules::load("evdev"); };
- unless ($@) {
- foreach (0..$#l) {
- detect_devices::tryOpen("input/event$_") and $keep_mouse = 1, push @wacom, "input/event$_";
- }
- }
- $keep_mouse or eval { modules::unload("evdev"); modules::unload("wacom"); };
- }
- }
-
- #- at this level, not all possible mice are detected so avoid invoking serial_probe
- #- which takes a while for its probe.
- if ($::isStandalone) {
- my $mouse = $fast_mouse_probe->();
- $mouse and return ($mouse, @wacom);
- }
-
- #- probe serial device to make sure a wacom has been detected.
- eval { modules::load("serial") };
- my ($r, @serial_wacom) = mouseconfig(); push @wacom, @serial_wacom;
-
- if (!$::isStandalone) {
- my $mouse = $fast_mouse_probe->();
- $r && $mouse and $r->{auxmouse} = $mouse; #- we kept the auxilliary mouse as PS/2.
- $r and return ($r, @wacom);
- $mouse and return ($mouse, @wacom);
- } else {
- $r and return ($r, @wacom);
- }
-
- #- in case only a wacom has been found, assume an inexistant mouse (necessary).
- @wacom and return { CLASS => 'MOUSE',
- nbuttons => 2,
- device => "nothing",
- MOUSETYPE => "Microsoft",
- XMOUSETYPE => "Microsoft"}, @wacom;
-
- if (!modules::get_alias("usb-interface") && detect_devices::is_a_recent_computer() && $::isInstall && !$::noauto) {
- #- special case for non detected usb interface on a box with no mouse.
- #- we *must* find out if there really is no usb, otherwise the box may
- #- not be accessible via the keyboard (if the keyboard is USB)
- #- the only way to know this is to make a full pci probe
- modules::load_thiskind("usb", '', 'unsafe');
- if (my $mouse = $fast_mouse_probe->()) {
- return $mouse;
- }
- }
-
- if (modules::get_alias("usb-interface")) {
- eval { modules::load($_) foreach qw(hid mousedev usbmouse) };
- sleep 1;
- if (!$@ && detect_devices::tryOpen("usbmouse")) {
- #- defaults to generic USB mouse on usbmouse.
- log::l("defaulting to usb generic mouse");
- return fullname2mouse("USB|Generic", unsafe => 1);
- }
- }
-
- #- defaults to generic serial mouse on ttyS0.
- #- Oops? using return let return a hash ref, if not using it, it return a list directly :-)
- return fullname2mouse("serial|Generic 2 Button Mouse", unsafe => 1);
-};
diff --git a/perl-install/patch/patch-raidtab.pl b/perl-install/patch/patch-raidtab.pl
deleted file mode 100644
index de03a1b2a..000000000
--- a/perl-install/patch/patch-raidtab.pl
+++ /dev/null
@@ -1,37 +0,0 @@
-use detect_devices;
-package detect_devices;
-log::l("PATCHING");
-
-*raidAutoStartRaidtab = sub {
- my (@parts) = @_;
- log::l("patched raidAutoStartRaidtab");
- $::isInstall or return;
- require raid;
- #- faking a raidtab, it seems to be working :-)))
- #- (choosing any inactive md)
- raid::inactivate_all();
- foreach (@parts) {
- my ($nb) = grep { !raid::is_active("md$_") } 0..7;
- output("/tmp/raidtab", "raiddev /dev/md$nb\n device " . devices::make($_->{device}) . "\n");
- run_program::run('raidstart', '-c', "/tmp/raidtab", devices::make("md$nb"));
- }
- unlink "/tmp/raidtab";
-};
-
-use raid;
-package raid;
-
-*prepare_prefixed = sub {
- my ($raids, $prefix) = @_;
-
- log::l("patched prepare_prefixed");
-
- $raids or return;
-
- &write($raids, "/etc/raidtab") if ! -e "/etc/raidtab";
-
- eval { cp_af("/etc/raidtab", "$prefix/etc/raidtab") };
- foreach (grep { $_ } @$raids) {
- devices::make("$prefix/dev/$_->{device}") foreach @{$_->{disks}};
- }
-};
diff --git a/perl-install/patch/rpmsrate.oem-9.0-openoffice b/perl-install/patch/rpmsrate.oem-9.0-openoffice
deleted file mode 100644
index a8d40cd0f..000000000
--- a/perl-install/patch/rpmsrate.oem-9.0-openoffice
+++ /dev/null
@@ -1,551 +0,0 @@
-LSB
- 5 lsb
-
-GRAPHICAL_DESKTOP
- 4 WindowMaker icewm
- 3 Epplets WMRack blackbox enlightenment ethemes icepref
- wmakerconf xlockmore xfce
- 2 wmnet
- 1 lesstif-mwm xbanner
-
-GNOME
- 5 gnome-panel nautilus gnome-control-center metacity gnome-terminal yelp
- nautilus-gtkhtml
- 4 gnome-tiles gdm gnome-applets gnome-user-docs gtk-themes file-roller
- gnome-network gnome-utils xlockmore gtk-engines2
- gnome-vfs-extras gconf-editor
- 3 gnome-pilot
- 2 bug-buddy
-
-KDE
- 5 kdebase kdebase-nsplugins
- 5 kde-i18n-af kde-i18n-az kde-i18n-bg kde-i18n-ca kde-i18n-cs kde-i18n-da kde-i18n-de kde-i18n-el kde-i18n-en_GB kde-i18n-eo kde-i18n-es kde-i18n-et kde-i18n-fi kde-i18n-fr kde-i18n-he kde-i18n-hu kde-i18n-is kde-i18n-it kde-i18n-ja kde-i18n-ko kde-i18n-lt kde-i18n-lv kde-i18n-nl kde-i18n-no kde-i18n-no_NY kde-i18n-pl kde-i18n-pt kde-i18n-pt_BR kde-i18n-ro kde-i18n-ru kde-i18n-sk kde-i18n-sl kde-i18n-sr kde-i18n-sv kde-i18n-ta kde-i18n-th kde-i18n-tr kde-i18n-uk kde-i18n-zh_CN.GB2312 kde-i18n-zh_TW.Big5
- 4 kdeaddutils kdeadmin kdegraphics kdemultimedia kdenetwork krozat
- kdepim kdetoys kdeutils quanta
-
- 2 kdesdk kdoc
-
-VIDEO
- 4 xine-ui xine-oss xine-xv powerdvd RealPlayer
- 3 nist xanim xmms-smpeg xmovie
- 2 mtv mtv-fullscreen-extension
- 1 bcast mpeg2_movie
-TV
- 4 zapping xawtv gatos
- 4 KDE kwintv
-
-OFFICE
- 4 staroffice-de staroffice-en staroffice-es staroffice-fr staroffice-it
- acroread acroread-nppdf
- OpenOffice.org OpenOffice.org-l10n-ca OpenOffice.org-l10n-cs OpenOffice.org-l10n-da OpenOffice.org-l10n-de OpenOffice.org-l10n-el OpenOffice.org-l10n-en OpenOffice.org-l10n-es OpenOffice.org-l10n-fr OpenOffice.org-l10n-it OpenOffice.org-l10n-ja OpenOffice.org-l10n-ko OpenOffice.org-l10n-nl OpenOffice.org-l10n-pl OpenOffice.org-l10n-pt OpenOffice.org-l10n-ru OpenOffice.org-l10n-sv OpenOffice.org-l10n-tr
- 4 cbb gaddr xpdf moneydance
- 3 wv ical pyDict
- 2 units lyx
- GNOME
- 4 gnome-pim gnome-pim-conduits gnumeric mrproject
- 3 dia gnome-pilot-conduits Guppi
- 2 ggv gnucash
- KDE
- 3 koffice
- 3 koffice-i18n-az koffice-i18n-bg koffice-i18n-cs koffice-i18n-da koffice-i18n-de koffice-i18n-en_GB koffice-i18n-eo koffice-i18n-es koffice-i18n-et koffice-i18n-fr koffice-i18n-hu koffice-i18n-it koffice-i18n-ja koffice-i18n-lt koffice-i18n-mt koffice-i18n-nl koffice-i18n-no koffice-i18n-no_NY koffice-i18n-pl koffice-i18n-pt koffice-i18n-pt_BR koffice-i18n-ro koffice-i18n-ru koffice-i18n-sk koffice-i18n-sl koffice-i18n-sv koffice-i18n-ta koffice-i18n-tr koffice-i18n-uk
- 2 klyx
-
-SOUND
- 5 sox
- 4 aumix
- 4 KDE xmms-arts
-
-AUDIO
- 4 grip xmms xmms-skins
- 4 GNOME gnome-audio gnome-media
- 4 KDE kdelibs-sound
- 4 3D xmms-mesa
- 3 cdp cdparanoia cdrecord-cdda2wav space_sounds timidity-instruments xmms-esd
- xmms-kjofol-skins xmms-more-vis-plugins
- 3 GNOME gnome-audio-extra
- 2 mokmod mp3info mpg123 playmidi playmidi-X11 xmms-mikmod
-
- 4 HW"Rio 500" rio500 grio500
-
-ACCESSIBILITY
- 2 gtkeyboard
-
-PUBLISHING
- 5 enscript ghostscript-module-X
- 4 ghostscript-utils gv psutils texinfo nlpr
- 2 latex2html jadetex tetex-afm tetex-dvips tetex-latex tetex-xdvi tetex-latex-arab tetex-latex-heb docbook-dtd31-sgml
- 2 BOOKS tetex-doc
- 1 docbook-style-dsssl openjade sgml-tools ghostscript-module-SVGALIB cttex
- 1 BOOKS docbook-style-dsssl-doc
-
- 5 CUPS
- cups-drivers xpp
- 5 CUPS || LPR foomatic
- 1 CUPS hpoj
-
-SHELLS
- 3 zsh
- 3 BOOKS bash-doc zsh-doc
- 2 eshell pdksh tcsh
- 1 bash1
-
-SCIENCES
- 5 3D openuniverse
- 4 gnuplot gtkgraphh
- 3 xlispstat HDF
- 2 mathplot octave
- 1 xoscope
-
-EDITORS
- 4 emacs-X11
- 3 GXedit vim-X11 yudit
- 2 nedit cooledit emacs-tramp joe emacs-leim jed-xjed xemacs xemacs-extras xemacs-info
- 1 auctex emacs-el jed xemacs-el emacs-nox xwpe xwpe-X11
- GNOME
- 4 gedit
-
-TEXT_TOOLS
- 5 words
- 4 groff patch recode rgrep
- 4 ispell-af ispell-br ispell-ca ispell-cs ispell-da ispell-de ispell-el ispell-en ispell-eo ispell-es ispell-fi ispell-fr ispell-ga ispell-gd ispell-gv ispell-id ispell-it ispell-nl ispell-no ispell-pl ispell-pt ispell-pt_BR ispell-ro ispell-ru ispell-sk ispell-sl ispell-sv
- 3 ed
- 2 groff-gxditview lout
- BOOKS
- 3 gawk-doc
- 1 lout-doc
-
-COMMUNICATIONS
- 4 efax
- 3 jpilot pilot-link
- 2 hylafax-server hylafax-client dip
- 2 lrzsz mgetty mgetty-contrib mgetty-sendfax mgetty-viewfax mgetty-voice minicom
- 1 jpilot-Mail jpilot-syncmal statserial tkbabel
-
-TERMINALS
- 5 open xterm
- 4 screen kon2
- 3 Eterm vlock
- 1 aterm x3270
-
- 4 KDE ktelnet
- 4 GNOME gnome-telnet
- 4 LOCALES"ja" kterm
-
-NETWORKING_CHAT
- 3 talk ytalk
-NETWORKING_CHAT_SERVER
- 4 jabber
- 3 talk-server
-
-NETWORKING_FILE_TRANSFER
- 5 lftp mirrordir rsync
- 4 gftp rdist
- 3 fmirror ncftp tftp
- 3 GNOME dpsftp
- 2 uucp
-
-NETWORKING_FILE_TRANSFER_SERVER
- 4 proftpd bwbserver_linux
- 2 wu-ftpd anonftp
-
-NETWORKING_LDAP_SERVER
- 4 openldap directory_administrator
-
-NETWORKING_INSTANT_MESSAGING
- 4 licq
- 3 everybuddy licq-console licq-rms
- GNOME
- 5 aspell-br aspell-ca aspell-cs aspell-da aspell-de aspell-de_CH aspell-en aspell-en_CA aspell-en_GB aspell-eo aspell-es aspell-fr aspell-it aspell-nl aspell-no aspell-pl aspell-sv
- 4 gnomeicu gabber gaim
- 3 gtk+licq
-
-NETWORKING_IRC
- 3 BitchX mozilla-irc
- 3 GNOME xchat
- 2 irssi
- 1 eggdrop
-
-NETWORKING_FIREWALLING_SERVER
- 5 iproute2 routed iptables
- 3 prelude
- 1 portsentry
-
-NETWORKING_GROUPWARE_SERVER
- 4 phpgroupware bwbserver_linux
-
-NETWORKING_MAIL
- 5 mailx metamail
- 4 faces mozilla-mail evolution
- 3 fetchmail urlview mutt
- 3 !GNOME !KDE xmailbox
- 2 FaxMail comsat elm faces-xface
- 1 exmh sylpheed fetchmail-daemon fetchmailconf
-NETWORKING_MAIL_SERVER
- 5 postfix
- 4 mailman
-
-NETWORKING_NEWS
- 5 GNOME pan
- 2 slrn tin trn
- 1 slrn-pull xrn
-NETWORKING_NEWS_SERVER
- 4 inn
- 3 inews
-
-NETWORKING_OTHER
- 2 finger fwhois ucd-snmp-utils htdig macutils
-NETWORKING_OTHER_SERVER
- 3 dhcp-server gated timed ntp
-
- 3 intimed mcserv nscd imap pidentd
- rdate bootparamd
- cleanfeed ucd-snmp leafnode
- cvsweb nut-server
- XFree86-Xvfb XFree86-Xnest
- 2 heartbeat diald finger-server mars-nwe
-
-NIS
- 5 ypbind
-NIS_SERVER
- 5 ypserv
-
-NETWORKING_REMOTE_ACCESS
- 5 openssh-clients telnet telnet-client-krb5
- KDE lisa
- 4 traceroute rfbdrake
- 3 vnc
- 2 rsh
- 2 BOOKS vnc-doc
-NETWORKING_REMOTE_ACCESS_SERVER
- 5 openssh-server
- 4 rfbdrake
- 2 vnc-server
- 1 telnet-server-krb5 rsh-server
-
-NETWORKING_DNS
- 4 bind-utils
-NETWORKING_DNS_SERVER
- 5 bind
- 4 caching-nameserver
- 1 nslint
-
-NETWORKING_FILE
- 4 samba-client nfs-utils-clients
- 2 arkeia-gui arkeia-client arkeia-arkc
- 2 GNOME gnomba gtm
- 2 autofs
- 1 am-utils
-NETWORKING_FILE_SERVER
- 5 nfs-utils
- 4 samba-server bwbserver_linux
- 3 BOOKS samba-doc
- 2 arkeia-server samba-winbind
- 3 squid squidGuard
-
-NETWORKING_WWW
- 3 lynx
- 4 !LOCALES"eu" netscape-communicator netscape-plugins
- 4 wget links mozilla Flashplayer crossover-plugin-demo j2re
- 4 GNOME
- screem
- !LOCALES"eu" galeon
- 3 plugger opera bluefish
-NETWORKING_WWW_SERVER
- 5 apache apache-mod_perl mod_ssl mod_php
- 4 apache-suexec
- bwbserver_linux
- 4 BOOKS apache-manual
- 3 php-dba_gdbm_db2 php-gd php-imap php-ldap php-manual php-mysql php-oracle
- php-pgsql php-readline php mod_sxnet auth_ldap HTML-Embperl
- 2 ApacheJServ
- 1 Zope Zope-core Zope-pcgi Zope-zserver
-
-GRAPHICS
- 4 ImageMagick giftrans gimp gphoto gphoto2 qiv ac3d
- 3 gimp-data-extras gqview sketch xwpick xli
- 2 gif2png gimp-perl xpcd xfig xpcd-gimp gd-utils cameleo
- 1 libgr-progs libungif-progs qcad transfig xpaint xmorph
- 1 3D Mesa-demos
- GNOME
- 4 gnome-iconedit
- 3 ee
-
-ARCHIVING
- 5 dump ncompress sharutils unzip
- 4 gtkzip zip
- 3 unarj unstuff mt-st
- 2 taper
- 1 lha
- GNOME
- 4 gnozip
- 3 gtktalog
-
-BURNER
- 5 mkisofs cdrecord
- 4 GNOME gnome-toaster gcombust
- 4 X xcdroast
- 2 X eroaster
- DEVELOPMENT
- 3 cdrecord-devel
-
-SCANNER
- 5 sane-frontends
- 4 gimp
- 4 xsane
-
-PHOTO
- 4 gphoto gphoto2
- 3 gnomemeeting openmcu
-
-DATABASES
- 5 postgresql
- 3 MySQL-client MySQL-shared
- DATABASES_SERVER
- 4 postgresql-server
- 3 MySQL
- 3 postgresql-perl postgresql-python
- 2 postgresql-jdbc postgresql-tk postgresql-odbc postgresql-tcl postgresql-test
- DEVELOPMENT
- 4 perl-Mysql
- 3 postgresql-devel
- 1 MySQL-bench MySQL-devel
-
-GAMES
- 4 sin-demo
- 4 clanbomber freeciv lbreakout2 toppler frozen-bubble
- 3 shogo-demo
- 3 cxhextris rocksndiamonds powermanga mures methane
- 2 Maelstrom pingus ltris penguin-command pysol xtrojka bunnies xpilot trophy xboard xgammon xkobo xpat2 xpuzzles xsoldier xfishtank
- 1 7colors xrally fortune-mod nil
- GNOME
- 4 gnome-games
- 3 gnome-chess
- 2 3D gtulpas
- 1 gtkgo
- DEVELOPMENT
- 2 gnomes-games-devel
- KDE
- 4 kdegames
- DEVELOPMENT
- 2 kdegames-devel
- 3D
- 4 csmash armagetron
- !HW"Riva.*128" chromium tuxracer
-
- 3 !HW"Riva.*128" !HW"Rage X[CL]" !HW"Rage Mobility (?:P\/M|L) " !HW"3D Rage (?:LT|Pro)"
- bzflag
-
-DEVELOPMENT
- 5 autoconf automake m4 make
- 3 autoconf2.5
- 1 tmake pmake pmake-customs
-
- 3 libtool binutils ltrace gdb gcc
- 2 gperf cdecl cproto indent ElectricFence
- 1 egcs glibc-profile xxgdb
-
- 4 gcc-c++ libstdc++5-devel libstdc++-devel
- 2 libsigc++-examples
- 1 egcs-c++
-
- 3 bison flex
- 2 byacc
-
- 2 doxygen C++2LaTeX
-
- 3 jikes kaffe
- 1 gcc-java
-
- 5 cvs rcs
- 2 diffstat tkcvs
-
- 3 swig
-
- 4 python veepee tkinter
- 3 libpython2.2-devel python-devel python-imaging pygtk-glarea pygtk pygtk-libglade rpm-python
-
- 4 perl perl-Term-Readline-Gnu perl-libnet perl-libwww-perl perl-devel
- 3 perl-DBI perl-Digest-MD5 perl-IO-stringy perl-PDL perl-Parse-RecDescent
- perl-GTK-GLArea perl-Tk perlftlib eperl perl-URI perl-DB_File
- perl-Data-ShowTable perl-HTML-Parser perl-HTML-SimpleParse perl-MIME-Base64
- perl-MIME-tools perl-MP3-Info perl-MailTools perl-Msgcat
-
- 4 rpm-build
- 3 rpmlint rpm-devel
- 3 kernel-source
-
- 2 gcc-g77 nasm dev86
- 1 gcc-objc
-
- 2 teyjus gprolog ocaml umb-scheme mawk guile clisp SmallEiffel p2c
- ghc ghc-prof happy haskell-GTK haskell-GTK-devel hugs98 mercury swi-prolog
- ruby-extensions ruby-gtk ruby
-
- 4 gettext-devel
-
- BOOKS
- 2 pam-doc python-docs slang-doc kernel-doc nasm-doc qt2-doc ruby-doc lkmpg
-
- KDE
- 3 kdevelop
- 3 kdebase-devel kdegraphics-devel kdelibs-devel kdelibs-sound-devel
- kdemultimedia-devel kdenetwork-devel
- 1 kdesupport-devel kdeaddutils-devel koffice-devel
-
- GNOME
- 4 perl-GTK-Glade perl-GTK-Gnome
- 3 memprof glade gnome-guile pygnome libgnomeui2_0-devel gnome-guile-devel
- gnome-pim-devel gob
- 2 pygnome-applet pygnome-capplet pygnome-libglade rep-gtk-gnome
- libgnomemm-1.2_9-devel gnomemm-devel libgnome-pilot1-devel gnome-pilot-devel glademm
- 1 gnucash-devel rep-gtk-libglade
-
- DEVELOPMENT_OTHER
- 2 ImageMagick-devel Mesa-common-devel libXaw3d7-devel Xaw3d-devel detect-devel
- libgd2-devel gd-devel p2c-devel libgmp3-devel gmp-devel libguile9-devel guile-devel libgr-devel libjpeg62-devel libjpeg-devel libpng3-devel libpng-devel
- libtermcap2-devel libtermcap-devel libtiff3-devel libtiff-devel libungif4-devel libungif-devel libxml2-devel libxml-devel
- linuxconf-devel libslang1-devel slang-devel sox-devel zlib1-devel zlib-devel XFree86-devel dev86-devel
- libgdk-pixbuf2-devel gdk-pixbuf-devel libgimp1.2_1-devel gimp-devel libgpm1-devel gpm-devel kudzu-devel libghttp1-devel libghttp-devel libgtop2.0_0-devel libgtop-devel
- libmikmod2-devel libmikmod-devel librep9-devel librep-devel libunicode-devel popt-devel pwdb-devel t1lib1-devel t1lib-devel
- ucd-snmp-devel mpeg_lib-devel WindowMaker-devel aalib-devel libadns1-devel adns-devel
- alsa-lib-devel audiofile-devel libcups1-devel cups-devel e2fsprogs-devel egcs-objc-devel
- libg-wrap2-devel g-wrap-devel gkrellm-devel ibtk libPropList-devel licq-devel openldap-devel
- libparted1.6-devel parted-devel pciutils-devel pilot-link-devel svgalib-devel
- recode-devel libaspell10-devel aspell-devel cracklib-devel faces-devel fnlib-devel
- freetype-devel libgtk+mdk0.1_6-devel gtk+mdk-devel libgtkglarea5-devel gtkglarea-devel XFree86-static-libs imap-devel
- php-devel libpth14-devel pth-devel libsane1-devel sane-devel swig-devel xdelta-devel isapnptools-devel
- libpango1.0_0-devel pango-devel readline-devel
-
-MONITORING
- 5 procinfo psacct
- 5 PCMCIA apmd
- 4 lsof swatch tcpdump traceroute
- 3 iplog arpwatch lslk nmap nmap-frontend procps-X11 xcpustate xsysinfo
- 2 cfengine gkrellm gps rusers mon xosview 3D xtraceroute
- 1 logcheck bonnie
- GNOME
- 4 gnome-system-monitor
-
-FILE_TOOLS
- 5 file gnupg mkxauth mtools slocate
- 4 symlinks
- 3 dosfstools draksync mc tree
- 2 git gentoo sfm xwc FileRunner
- 1 xdelta
-
-WEBMIN
- 3 webmin
-
-WIZARDS
- 5 drakwizard
-
-CONFIG
- 4 linuxconf linuxconf-lang-cs linuxconf-lang-de linuxconf-lang-es linuxconf-lang-fi linuxconf-lang-fr linuxconf-lang-hu linuxconf-lang-it linuxconf-lang-ko linuxconf-lang-no linuxconf-lang-pt linuxconf-lang-ro linuxconf-lang-sk linuxconf-lang-sv linuxconf-lang-zh
- 4 X gnome-linuxconf
- 3 ipvsadm quota usernet nut
- 2 gfcc control-panel adjtimex isicom xinput timeconfig samba-swat
- 1 ipxutils
-
-BOOKS
- 3 mandrake_doc-de mandrake_doc-en mandrake_doc-es mandrake_doc-fr mandrake_doc-it mandrake_doc-ru
-
-X
- 5 XFree86 rxvt XFree86-75dpi-fonts urw-fonts
- 5 icewm-light
-
- 4 vim-enhanced
- 4 gurpmi rpmdrake drakconf userdrake fonts-ttf-decoratives fonts-ttf-west_european
- mandrake-mime menudrake mandrake_desk
- mdkonline drakfirsttime gtk-engines bootsplash
- 4 LOCALES"ja" || LOCALES"ko" || LOCALES"zh" rxvt-CJK
-
- 3 XFree86-100dpi-fonts draksync drakprofile
- 3 USB usbview
- 2 LOCALES"ja" || LOCALES"ko" || LOCALES"zh" jmcce
- 2 tksysv imlib-cfgeditor
- 1 DrakeLogo Mesa xtoolwait X11R6-contrib
-
- GNOME
- 3 gnorpm
-
- 5 xcin Chinput xa+cv xvnkb FreeWnn ami kinput2-wnn4
-
- 2 app-defaults-be app-defaults-cs app-defaults-ga app-defaults-ru app-defaults-th app-defaults-uk
-
- 5 CHARSET"iso-8859-13" fonts-type1-baltic
- LOCALES"ru" || LOCALES"uk" XFree86-cyrillic-fonts
- LOCALES"he" fonts-hebrew-elmar
- LOCALES"hy" fonts-ttf-armenian
- LOCALES"ja" fonts-ttf-japanese
- LOCALES"ko" fonts-ttf-korean
- LOCALES"ta" fonts-ttf-tscii fonts-bitmap-tscii
- LOCALES"th" fonts-ttf-thai
- LOCALES"zh_CN" || LOCALES"zh" fonts-ttf-gb2312
- LOCALES"zh_TW" || LOCALES"zh" taipeifonts fonts-ttf-big5
-
-DOCS
- 5 man info man-pages
-
-SYSTEM
- 5 at MAKEDEV eject ldetect devfsd
- locales iputils urpmi cpio msec tmpwatch
-
- 5 HIGH_SECURITY libsafe kernel-secure-2.4.19.16mdk kernel-secure
- 5 BIGMEM kernel-enterprise-2.4.19.16mdk kernel-enterprise
- 5 SMP kernel-smp-2.4.19.16mdk kernel-smp
- 5 PCMCIA pcmcia-cs
- 5 USB hotplug
-
- 5 HW"nForce.*(?:Audio|Network)"
- NVIDIA_nforce-2.4.19-16mdk
- BIGMEM NVIDIA_nforce-2.4.19-16mdk-enterprise
-
- 4 ftp-client-krb5 gpm hexedit strace sudo grub procmail gnupg
-
- 3 bc
- 2 sndconfig kernel-utils acpid adns audiofile freeswan awesfx fbset vlan-utils
- 1 fdutils genromfs mailcap pinfo
-
- BOOKS
- 5 man-pages-cs man-pages-da man-pages-de man-pages-es man-pages-fr man-pages-hu man-pages-id man-pages-it man-pages-ja man-pages-ko man-pages-pl man-pages-ru man-pages-zh
- 3 grub-doc lilo-doc
- howto-html-de howto-html-el howto-html-en howto-html-es howto-html-fr howto-html-hr howto-html-hu howto-html-id howto-html-it howto-html-ja howto-html-ko howto-html-nl howto-html-pl howto-html-ro howto-html-sl howto-html-sv howto-html-zh
-
- 4 NIS yp-tools
- 3 PCMCIA irda-utils
- 3 USB usbutils
-
- 4 LOCALES"ar" || LOCALES"fa" || LOCALES"he" || LOCALES"yi" acon
- 3 LOCALES"zh" zh-autoconvert
-
-EMULATORS
- 3 wine
- 2 BasiliskII-jit
- 1 BasiliskII
- 2 xdosemu
- 1 xmame xmess
-
-INSTALL
- NOCOPY
- 5 kernel-2.4.19.16mdk kernel-2.4.19.16mdk kernel kernel-smp-2.4.19.16mdk kernel-smp-2.4.19.16mdk kernel-smp kernel-enterprise-2.4.19.16mdk kernel-enterprise-2.4.19.16mdk kernel-enterprise
- raidtools lvm reiserfsprogs jfsprogs xfsprogs
- alsa alsa-utils
- 4 XFree86
-
- 5 pptp-adsl dhcpcd dhcpxd dhcp-client isdn4net isdn-light isdn4k-utils ibod rp-pppoe pump wireless-tools speedtouch
- ppp nfs-utils-clients
- autologin ntp cups-drivers samba ncpfs hpoj ucd-snmp libptal0
- libhpojip0 libsnmp0 xojpanel libsane-hpoj0
- ipchains shorewall iptables printer-utils rlpr samba-client
- xpp pdq printer-testpages nmap scli net-tools
- cups lpr foomatic gimpprint
- nc sndconfig
- ImageMagick ghostscript printer-filters mpage a2ps ppdfilt libppd1 gpr groff libgimpprint1 numlock curl
- sane-backends sane-frontends xsane xsane-gimp mtools mtoolsfm
- hotplug dev ypbind speedtouch_mgmt
- 4 XFree86-server XFree86-FBDev
-# 4 XFree86-SVGA XFree86-server XFree86-Mach64 XFree86-FBDev
-# XFree86-glide-module Device3Dfx Glide_V3-DRI Glide_V5 Mesa
-# 3 XFree86-S3 XFree86-S3V XFree86-VGA16
-# 2 XFree86-8514 XFree86-AGX XFree86-I128 XFree86-Mach32 XFree86-Mach8 XFree86-Mono XFree86-P9000 XFree86-W32
-# 1 XFree86-3DLabs XFree86-Sun XFree86-SunMono XFree86-Sun24
diff --git a/perl-install/patch/rpmsrate.oem-9.0-staroffice b/perl-install/patch/rpmsrate.oem-9.0-staroffice
deleted file mode 100644
index 179e19d06..000000000
--- a/perl-install/patch/rpmsrate.oem-9.0-staroffice
+++ /dev/null
@@ -1,552 +0,0 @@
-LSB
- 5 lsb
-
-GRAPHICAL_DESKTOP
- 4 icewm
- 3 WindowMaker
- 3 Epplets WMRack blackbox enlightenment ethemes icepref
- wmakerconf xlockmore xfce
- 2 wmnet
- 1 lesstif-mwm xbanner
-
-GNOME
- 5 gnome-panel nautilus gnome-control-center metacity gnome-terminal yelp
- nautilus-gtkhtml
- 4 gnome-tiles gdm gnome-applets gnome-user-docs gtk-themes file-roller
- gnome-network gnome-utils xlockmore gtk-engines2
- gnome-vfs-extras gconf-editor
- 3 gnome-pilot
- 2 bug-buddy
-
-KDE
- 5 kdebase kdebase-nsplugins
- 5 kde-i18n-af kde-i18n-az kde-i18n-bg kde-i18n-ca kde-i18n-cs kde-i18n-da kde-i18n-de kde-i18n-el kde-i18n-en_GB kde-i18n-eo kde-i18n-es kde-i18n-et kde-i18n-fi kde-i18n-fr kde-i18n-he kde-i18n-hu kde-i18n-is kde-i18n-it kde-i18n-ja kde-i18n-ko kde-i18n-lt kde-i18n-lv kde-i18n-nl kde-i18n-no kde-i18n-no_NY kde-i18n-pl kde-i18n-pt kde-i18n-pt_BR kde-i18n-ro kde-i18n-ru kde-i18n-sk kde-i18n-sl kde-i18n-sr kde-i18n-sv kde-i18n-ta kde-i18n-th kde-i18n-tr kde-i18n-uk kde-i18n-zh_CN.GB2312 kde-i18n-zh_TW.Big5
- 4 kdeaddutils kdeadmin kdegraphics kdemultimedia kdenetwork krozat
- kdepim kdetoys kdeutils quanta
-
- 2 kdesdk kdoc
-
-VIDEO
- 4 xine-ui xine-oss xine-xv powerdvd RealPlayer
- 3 nist xanim xmms-smpeg xmovie
- 2 mtv mtv-fullscreen-extension
- 1 bcast mpeg2_movie
-TV
- 4 zapping xawtv gatos
- 4 KDE kwintv
-
-OFFICE
- 4 staroffice-de staroffice-en staroffice-es staroffice-fr staroffice-it
- acroread acroread-nppdf
- 3 OpenOffice.org OpenOffice.org-l10n-ca OpenOffice.org-l10n-cs OpenOffice.org-l10n-da OpenOffice.org-l10n-de OpenOffice.org-l10n-el OpenOffice.org-l10n-en OpenOffice.org-l10n-es OpenOffice.org-l10n-fr OpenOffice.org-l10n-it OpenOffice.org-l10n-ja OpenOffice.org-l10n-ko OpenOffice.org-l10n-nl OpenOffice.org-l10n-pl OpenOffice.org-l10n-pt OpenOffice.org-l10n-ru OpenOffice.org-l10n-sv OpenOffice.org-l10n-tr
- 4 cbb gaddr xpdf moneydance
- 3 wv ical pyDict
- 2 units lyx
- GNOME
- 4 gnome-pim gnome-pim-conduits gnumeric mrproject
- 3 dia gnome-pilot-conduits Guppi
- 2 ggv gnucash
- KDE
- 3 koffice
- 3 koffice-i18n-az koffice-i18n-bg koffice-i18n-cs koffice-i18n-da koffice-i18n-de koffice-i18n-en_GB koffice-i18n-eo koffice-i18n-es koffice-i18n-et koffice-i18n-fr koffice-i18n-hu koffice-i18n-it koffice-i18n-ja koffice-i18n-lt koffice-i18n-mt koffice-i18n-nl koffice-i18n-no koffice-i18n-no_NY koffice-i18n-pl koffice-i18n-pt koffice-i18n-pt_BR koffice-i18n-ro koffice-i18n-ru koffice-i18n-sk koffice-i18n-sl koffice-i18n-sv koffice-i18n-ta koffice-i18n-tr koffice-i18n-uk
- 2 klyx
-
-SOUND
- 5 sox
- 4 aumix
- 4 KDE xmms-arts
-
-AUDIO
- 4 grip xmms xmms-skins
- 4 GNOME gnome-audio gnome-media
- 4 KDE kdelibs-sound
- 4 3D xmms-mesa
- 3 cdp cdparanoia cdrecord-cdda2wav space_sounds timidity-instruments xmms-esd
- xmms-kjofol-skins xmms-more-vis-plugins
- 3 GNOME gnome-audio-extra
- 2 mokmod mp3info mpg123 playmidi playmidi-X11 xmms-mikmod
-
- 4 HW"Rio 500" rio500 grio500
-
-ACCESSIBILITY
- 2 gtkeyboard
-
-PUBLISHING
- 5 enscript ghostscript-module-X
- 4 ghostscript-utils gv psutils texinfo nlpr
- 2 latex2html jadetex tetex-afm tetex-dvips tetex-latex tetex-xdvi tetex-latex-arab tetex-latex-heb docbook-dtd31-sgml
- 2 BOOKS tetex-doc
- 1 docbook-style-dsssl openjade sgml-tools ghostscript-module-SVGALIB cttex
- 1 BOOKS docbook-style-dsssl-doc
-
- 5 CUPS
- cups-drivers xpp
- 5 CUPS || LPR foomatic
- 1 CUPS hpoj
-
-SHELLS
- 3 zsh
- 3 BOOKS bash-doc zsh-doc
- 2 eshell pdksh tcsh
- 1 bash1
-
-SCIENCES
- 5 3D openuniverse
- 4 gnuplot gtkgraphh
- 3 xlispstat HDF
- 2 mathplot octave
- 1 xoscope
-
-EDITORS
- 4 emacs-X11
- 3 GXedit vim-X11 yudit
- 2 nedit cooledit emacs-tramp joe emacs-leim jed-xjed xemacs xemacs-extras xemacs-info
- 1 auctex emacs-el jed xemacs-el emacs-nox xwpe xwpe-X11
- GNOME
- 4 gedit
-
-TEXT_TOOLS
- 5 words
- 4 groff patch recode rgrep
- 4 ispell-af ispell-br ispell-ca ispell-cs ispell-da ispell-de ispell-el ispell-en ispell-eo ispell-es ispell-fi ispell-fr ispell-ga ispell-gd ispell-gv ispell-id ispell-it ispell-nl ispell-no ispell-pl ispell-pt ispell-pt_BR ispell-ro ispell-ru ispell-sk ispell-sl ispell-sv
- 3 ed
- 2 groff-gxditview lout
- BOOKS
- 3 gawk-doc
- 1 lout-doc
-
-COMMUNICATIONS
- 4 efax
- 3 jpilot pilot-link
- 2 hylafax-server hylafax-client dip
- 2 lrzsz mgetty mgetty-contrib mgetty-sendfax mgetty-viewfax mgetty-voice minicom
- 1 jpilot-Mail jpilot-syncmal statserial tkbabel
-
-TERMINALS
- 5 open xterm
- 4 screen kon2
- 3 Eterm vlock
- 1 aterm x3270
-
- 4 KDE ktelnet
- 4 GNOME gnome-telnet
- 4 LOCALES"ja" kterm
-
-NETWORKING_CHAT
- 3 talk ytalk
-NETWORKING_CHAT_SERVER
- 4 jabber
- 3 talk-server
-
-NETWORKING_FILE_TRANSFER
- 5 lftp mirrordir rsync
- 4 gftp rdist
- 3 fmirror ncftp tftp
- 3 GNOME dpsftp
- 2 uucp
-
-NETWORKING_FILE_TRANSFER_SERVER
- 4 proftpd bwbserver_linux
- 2 wu-ftpd anonftp
-
-NETWORKING_LDAP_SERVER
- 4 openldap directory_administrator
-
-NETWORKING_INSTANT_MESSAGING
- 4 licq
- 3 everybuddy licq-console licq-rms
- GNOME
- 5 aspell-br aspell-ca aspell-cs aspell-da aspell-de aspell-de_CH aspell-en aspell-en_CA aspell-en_GB aspell-eo aspell-es aspell-fr aspell-it aspell-nl aspell-no aspell-pl aspell-sv
- 4 gnomeicu gabber gaim
- 3 gtk+licq
-
-NETWORKING_IRC
- 3 BitchX mozilla-irc
- 3 GNOME xchat
- 2 irssi
- 1 eggdrop
-
-NETWORKING_FIREWALLING_SERVER
- 5 iproute2 routed iptables
- 3 prelude
- 1 portsentry
-
-NETWORKING_GROUPWARE_SERVER
- 4 phpgroupware bwbserver_linux
-
-NETWORKING_MAIL
- 5 mailx metamail
- 4 faces mozilla-mail evolution
- 3 fetchmail urlview mutt
- 3 !GNOME !KDE xmailbox
- 2 FaxMail comsat elm faces-xface
- 1 exmh sylpheed fetchmail-daemon fetchmailconf
-NETWORKING_MAIL_SERVER
- 5 postfix
- 4 mailman
-
-NETWORKING_NEWS
- 5 GNOME pan
- 2 slrn tin trn
- 1 slrn-pull xrn
-NETWORKING_NEWS_SERVER
- 4 inn
- 3 inews
-
-NETWORKING_OTHER
- 2 finger fwhois ucd-snmp-utils htdig macutils
-NETWORKING_OTHER_SERVER
- 3 dhcp-server gated timed ntp
-
- 3 intimed mcserv nscd imap pidentd
- rdate bootparamd
- cleanfeed ucd-snmp leafnode
- cvsweb nut-server
- XFree86-Xvfb XFree86-Xnest
- 2 heartbeat diald finger-server mars-nwe
-
-NIS
- 5 ypbind
-NIS_SERVER
- 5 ypserv
-
-NETWORKING_REMOTE_ACCESS
- 5 openssh-clients telnet telnet-client-krb5
- KDE lisa
- 4 traceroute rfbdrake
- 3 vnc
- 2 rsh
- 2 BOOKS vnc-doc
-NETWORKING_REMOTE_ACCESS_SERVER
- 5 openssh-server
- 4 rfbdrake
- 2 vnc-server
- 1 telnet-server-krb5 rsh-server
-
-NETWORKING_DNS
- 4 bind-utils
-NETWORKING_DNS_SERVER
- 5 bind
- 4 caching-nameserver
- 1 nslint
-
-NETWORKING_FILE
- 4 samba-client nfs-utils-clients
- 2 arkeia-gui arkeia-client arkeia-arkc
- 2 GNOME gnomba gtm
- 2 autofs
- 1 am-utils
-NETWORKING_FILE_SERVER
- 5 nfs-utils
- 4 samba-server bwbserver_linux
- 3 BOOKS samba-doc
- 2 arkeia-server samba-winbind
- 3 squid squidGuard
-
-NETWORKING_WWW
- 3 lynx
- 4 !LOCALES"eu" netscape-communicator netscape-plugins
- 4 wget links mozilla Flashplayer crossover-plugin-demo j2re
- 4 GNOME
- screem
- !LOCALES"eu" galeon
- 3 plugger opera bluefish
-NETWORKING_WWW_SERVER
- 5 apache apache-mod_perl mod_ssl mod_php
- 4 apache-suexec
- bwbserver_linux
- 4 BOOKS apache-manual
- 3 php-dba_gdbm_db2 php-gd php-imap php-ldap php-manual php-mysql php-oracle
- php-pgsql php-readline php mod_sxnet auth_ldap HTML-Embperl
- 2 ApacheJServ
- 1 Zope Zope-core Zope-pcgi Zope-zserver
-
-GRAPHICS
- 4 ImageMagick giftrans gimp gphoto gphoto2 qiv ac3d
- 3 gimp-data-extras gqview sketch xwpick xli
- 2 gif2png gimp-perl xpcd xfig xpcd-gimp gd-utils cameleo
- 1 libgr-progs libungif-progs qcad transfig xpaint xmorph
- 1 3D Mesa-demos
- GNOME
- 4 gnome-iconedit
- 3 ee
-
-ARCHIVING
- 5 dump ncompress sharutils unzip
- 4 gtkzip zip
- 3 unarj unstuff mt-st
- 2 taper
- 1 lha
- GNOME
- 4 gnozip
- 3 gtktalog
-
-BURNER
- 5 mkisofs cdrecord
- 4 GNOME gnome-toaster gcombust
- 4 X xcdroast
- 2 X eroaster
- DEVELOPMENT
- 3 cdrecord-devel
-
-SCANNER
- 5 sane-frontends
- 4 gimp
- 4 xsane
-
-PHOTO
- 4 gphoto gphoto2
- 3 gnomemeeting openmcu
-
-DATABASES
- 5 postgresql
- 3 MySQL-client MySQL-shared
- DATABASES_SERVER
- 4 postgresql-server
- 3 MySQL
- 3 postgresql-perl postgresql-python
- 2 postgresql-jdbc postgresql-tk postgresql-odbc postgresql-tcl postgresql-test
- DEVELOPMENT
- 4 perl-Mysql
- 3 postgresql-devel
- 1 MySQL-bench MySQL-devel
-
-GAMES
- 4 sin-demo
- 3 clanbomber freeciv lbreakout2 toppler frozen-bubble
- 3 shogo-demo
- 3 cxhextris rocksndiamonds powermanga mures methane
- 2 Maelstrom pingus ltris penguin-command pysol xtrojka bunnies xpilot trophy xboard xgammon xkobo xpat2 xpuzzles xsoldier xfishtank
- 1 7colors xrally fortune-mod nil
- GNOME
- 3 gnome-games
- 3 gnome-chess
- 2 3D gtulpas
- 1 gtkgo
- DEVELOPMENT
- 2 gnomes-games-devel
- KDE
- 3 kdegames
- DEVELOPMENT
- 2 kdegames-devel
- 3D
- 3 csmash armagetron
- !HW"Riva.*128" chromium tuxracer
-
- 3 !HW"Riva.*128" !HW"Rage X[CL]" !HW"Rage Mobility (?:P\/M|L) " !HW"3D Rage (?:LT|Pro)"
- bzflag
-
-DEVELOPMENT
- 3 autoconf automake m4 make
- 3 autoconf2.5
- 1 tmake pmake pmake-customs
-
- 3 libtool binutils ltrace gdb gcc
- 2 gperf cdecl cproto indent ElectricFence
- 1 egcs glibc-profile xxgdb
-
- 3 gcc-c++ libstdc++5-devel libstdc++-devel
- 2 libsigc++-examples
- 1 egcs-c++
-
- 3 bison flex
- 2 byacc
-
- 2 doxygen C++2LaTeX
-
- 3 jikes kaffe
- 1 gcc-java
-
- 3 cvs rcs
- 2 diffstat tkcvs
-
- 3 swig
-
- 3 python veepee tkinter
- 3 libpython2.2-devel python-devel python-imaging pygtk-glarea pygtk pygtk-libglade rpm-python
-
- 4 perl perl-Term-Readline-Gnu perl-libnet perl-libwww-perl perl-devel
- 3 perl-DBI perl-Digest-MD5 perl-IO-stringy perl-PDL perl-Parse-RecDescent
- perl-GTK-GLArea perl-Tk perlftlib eperl perl-URI perl-DB_File
- perl-Data-ShowTable perl-HTML-Parser perl-HTML-SimpleParse perl-MIME-Base64
- perl-MIME-tools perl-MP3-Info perl-MailTools perl-Msgcat
-
- 3 rpm-build
- 3 rpmlint rpm-devel
- 3 kernel-source
-
- 2 gcc-g77 nasm dev86
- 1 gcc-objc
-
- 2 teyjus gprolog ocaml umb-scheme mawk guile clisp SmallEiffel p2c
- ghc ghc-prof happy haskell-GTK haskell-GTK-devel hugs98 mercury swi-prolog
- ruby-extensions ruby-gtk ruby
-
- 3 gettext-devel
-
- BOOKS
- 2 pam-doc python-docs slang-doc kernel-doc nasm-doc qt2-doc ruby-doc lkmpg
-
- KDE
- 3 kdevelop
- 3 kdebase-devel kdegraphics-devel kdelibs-devel kdelibs-sound-devel
- kdemultimedia-devel kdenetwork-devel
- 1 kdesupport-devel kdeaddutils-devel koffice-devel
-
- GNOME
- 4 perl-GTK-Glade perl-GTK-Gnome
- 3 memprof glade gnome-guile pygnome libgnomeui2_0-devel gnome-guile-devel
- gnome-pim-devel gob
- 2 pygnome-applet pygnome-capplet pygnome-libglade rep-gtk-gnome
- libgnomemm-1.2_9-devel gnomemm-devel libgnome-pilot1-devel gnome-pilot-devel glademm
- 1 gnucash-devel rep-gtk-libglade
-
- DEVELOPMENT_OTHER
- 2 ImageMagick-devel Mesa-common-devel libXaw3d7-devel Xaw3d-devel detect-devel
- libgd2-devel gd-devel p2c-devel libgmp3-devel gmp-devel libguile9-devel guile-devel libgr-devel libjpeg62-devel libjpeg-devel libpng3-devel libpng-devel
- libtermcap2-devel libtermcap-devel libtiff3-devel libtiff-devel libungif4-devel libungif-devel libxml2-devel libxml-devel
- linuxconf-devel libslang1-devel slang-devel sox-devel zlib1-devel zlib-devel XFree86-devel dev86-devel
- libgdk-pixbuf2-devel gdk-pixbuf-devel libgimp1.2_1-devel gimp-devel libgpm1-devel gpm-devel kudzu-devel libghttp1-devel libghttp-devel libgtop2.0_0-devel libgtop-devel
- libmikmod2-devel libmikmod-devel librep9-devel librep-devel libunicode-devel popt-devel pwdb-devel t1lib1-devel t1lib-devel
- ucd-snmp-devel mpeg_lib-devel WindowMaker-devel aalib-devel libadns1-devel adns-devel
- alsa-lib-devel audiofile-devel libcups1-devel cups-devel e2fsprogs-devel egcs-objc-devel
- libg-wrap2-devel g-wrap-devel gkrellm-devel ibtk libPropList-devel licq-devel openldap-devel
- libparted1.6-devel parted-devel pciutils-devel pilot-link-devel svgalib-devel
- recode-devel libaspell10-devel aspell-devel cracklib-devel faces-devel fnlib-devel
- freetype-devel libgtk+mdk0.1_6-devel gtk+mdk-devel libgtkglarea5-devel gtkglarea-devel XFree86-static-libs imap-devel
- php-devel libpth14-devel pth-devel libsane1-devel sane-devel swig-devel xdelta-devel isapnptools-devel
- libpango1.0_0-devel pango-devel readline-devel
-
-MONITORING
- 5 procinfo psacct
- 5 PCMCIA apmd
- 4 lsof swatch tcpdump traceroute
- 3 iplog arpwatch lslk nmap nmap-frontend procps-X11 xcpustate xsysinfo
- 2 cfengine gkrellm gps rusers mon xosview 3D xtraceroute
- 1 logcheck bonnie
- GNOME
- 4 gnome-system-monitor
-
-FILE_TOOLS
- 5 file gnupg mkxauth mtools slocate
- 4 symlinks
- 3 dosfstools draksync mc tree
- 2 git gentoo sfm xwc FileRunner
- 1 xdelta
-
-WEBMIN
- 3 webmin
-
-WIZARDS
- 5 drakwizard
-
-CONFIG
- 4 linuxconf linuxconf-lang-cs linuxconf-lang-de linuxconf-lang-es linuxconf-lang-fi linuxconf-lang-fr linuxconf-lang-hu linuxconf-lang-it linuxconf-lang-ko linuxconf-lang-no linuxconf-lang-pt linuxconf-lang-ro linuxconf-lang-sk linuxconf-lang-sv linuxconf-lang-zh
- 4 X gnome-linuxconf
- 3 ipvsadm quota usernet nut
- 2 gfcc control-panel adjtimex isicom xinput timeconfig samba-swat
- 1 ipxutils
-
-BOOKS
- 3 mandrake_doc-de mandrake_doc-en mandrake_doc-es mandrake_doc-fr mandrake_doc-it mandrake_doc-ru
-
-X
- 5 XFree86 rxvt XFree86-75dpi-fonts urw-fonts
- 5 icewm-light
-
- 4 vim-enhanced
- 4 gurpmi rpmdrake drakconf userdrake fonts-ttf-decoratives fonts-ttf-west_european
- mandrake-mime menudrake mandrake_desk
- mdkonline drakfirsttime gtk-engines bootsplash
- 4 LOCALES"ja" || LOCALES"ko" || LOCALES"zh" rxvt-CJK
-
- 3 XFree86-100dpi-fonts draksync drakprofile
- 3 USB usbview
- 2 LOCALES"ja" || LOCALES"ko" || LOCALES"zh" jmcce
- 2 tksysv imlib-cfgeditor
- 1 DrakeLogo Mesa xtoolwait X11R6-contrib
-
- GNOME
- 3 gnorpm
-
- 5 xcin Chinput xa+cv xvnkb FreeWnn ami kinput2-wnn4
-
- 2 app-defaults-be app-defaults-cs app-defaults-ga app-defaults-ru app-defaults-th app-defaults-uk
-
- 5 CHARSET"iso-8859-13" fonts-type1-baltic
- LOCALES"ru" || LOCALES"uk" XFree86-cyrillic-fonts
- LOCALES"he" fonts-hebrew-elmar
- LOCALES"hy" fonts-ttf-armenian
- LOCALES"ja" fonts-ttf-japanese
- LOCALES"ko" fonts-ttf-korean
- LOCALES"ta" fonts-ttf-tscii fonts-bitmap-tscii
- LOCALES"th" fonts-ttf-thai
- LOCALES"zh_CN" || LOCALES"zh" fonts-ttf-gb2312
- LOCALES"zh_TW" || LOCALES"zh" taipeifonts fonts-ttf-big5
-
-DOCS
- 5 man info man-pages
-
-SYSTEM
- 5 at MAKEDEV eject ldetect devfsd
- locales iputils urpmi cpio msec tmpwatch
-
- 5 HIGH_SECURITY libsafe kernel-secure-2.4.19.16mdk kernel-secure
- 5 BIGMEM kernel-enterprise-2.4.19.16mdk kernel-enterprise
- 5 SMP kernel-smp-2.4.19.16mdk kernel-smp
- 5 PCMCIA pcmcia-cs
- 5 USB hotplug
-
- 5 HW"nForce.*(?:Audio|Network)"
- NVIDIA_nforce-2.4.19-16mdk
- BIGMEM NVIDIA_nforce-2.4.19-16mdk-enterprise
-
- 4 ftp-client-krb5 gpm hexedit strace sudo grub procmail gnupg
-
- 3 bc
- 2 sndconfig kernel-utils acpid adns audiofile freeswan awesfx fbset vlan-utils
- 1 fdutils genromfs mailcap pinfo
-
- BOOKS
- 5 man-pages-cs man-pages-da man-pages-de man-pages-es man-pages-fr man-pages-hu man-pages-id man-pages-it man-pages-ja man-pages-ko man-pages-pl man-pages-ru man-pages-zh
- 3 grub-doc lilo-doc
- howto-html-de howto-html-el howto-html-en howto-html-es howto-html-fr howto-html-hr howto-html-hu howto-html-id howto-html-it howto-html-ja howto-html-ko howto-html-nl howto-html-pl howto-html-ro howto-html-sl howto-html-sv howto-html-zh
-
- 4 NIS yp-tools
- 3 PCMCIA irda-utils
- 3 USB usbutils
-
- 4 LOCALES"ar" || LOCALES"fa" || LOCALES"he" || LOCALES"yi" acon
- 3 LOCALES"zh" zh-autoconvert
-
-EMULATORS
- 3 wine
- 2 BasiliskII-jit
- 1 BasiliskII
- 2 xdosemu
- 1 xmame xmess
-
-INSTALL
- NOCOPY
- 5 kernel-2.4.19.16mdk kernel-2.4.19.16mdk kernel kernel-smp-2.4.19.16mdk kernel-smp-2.4.19.16mdk kernel-smp kernel-enterprise-2.4.19.16mdk kernel-enterprise-2.4.19.16mdk kernel-enterprise
- raidtools lvm reiserfsprogs jfsprogs xfsprogs
- alsa alsa-utils
- 4 XFree86
-
- 5 pptp-adsl dhcpcd dhcpxd dhcp-client isdn4net isdn-light isdn4k-utils ibod rp-pppoe pump wireless-tools speedtouch
- ppp nfs-utils-clients
- autologin ntp cups-drivers samba ncpfs hpoj ucd-snmp libptal0
- libhpojip0 libsnmp0 xojpanel libsane-hpoj0
- ipchains shorewall iptables printer-utils rlpr samba-client
- xpp pdq printer-testpages nmap scli net-tools
- cups lpr foomatic gimpprint
- nc sndconfig
- ImageMagick ghostscript printer-filters mpage a2ps ppdfilt libppd1 gpr groff libgimpprint1 numlock curl
- sane-backends sane-frontends xsane xsane-gimp mtools mtoolsfm
- hotplug dev ypbind speedtouch_mgmt
- 4 XFree86-server XFree86-FBDev
-# 4 XFree86-SVGA XFree86-server XFree86-Mach64 XFree86-FBDev
-# XFree86-glide-module Device3Dfx Glide_V3-DRI Glide_V5 Mesa
-# 3 XFree86-S3 XFree86-S3V XFree86-VGA16
-# 2 XFree86-8514 XFree86-AGX XFree86-I128 XFree86-Mach32 XFree86-Mach8 XFree86-Mono XFree86-P9000 XFree86-W32
-# 1 XFree86-3DLabs XFree86-Sun XFree86-SunMono XFree86-Sun24
diff --git a/perl-install/share/po/DrakX.pot b/perl-install/share/po/DrakX.pot
index 0279a08ec..5b960dac5 100644
--- a/perl-install/share/po/DrakX.pot
+++ b/perl-install/share/po/DrakX.pot
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2004-01-06 15:46+0100\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,4319 +14,2896 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, 0/1 for Local Config...\n"
-""
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Differential backups only save files that have changed or are new since the original 'base' backup."
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "network printer port"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Please insert floppy disk:"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Which username"
+#: ../../Xconfig/card.pm_.c:230
+msgid "Multi-head configuration"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"Iwpriv enable to set up optionals (private) parameters of a wireless network\n"
-"interface.\n"
-"\n"
-"Iwpriv deals with parameters and setting specific to each driver (as opposed to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr ""
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Restore partition table"
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure hostname..."
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
msgstr ""
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "On CUPS server \"%s\""
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Post-install configuration"
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``%s'' instead"
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1 ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Type"
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:389
#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers or with native CUPS drivers cannot be transferred."
+msgid "Configure only card \"%s\"%s"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Repeater"
+msgid "XFree %s"
msgstr ""
-#: ../../lang.pm:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Sri Lanka"
+msgid "XFree %s with 3D hardware acceleration"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr ""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Advanced preferences"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Net Method:"
-msgstr ""
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Ethernetcard"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
-msgstr ""
-
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "no"
-msgstr ""
-
-#: ../../harddrake/v4l.pm:1 ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Auto-detect"
-msgstr ""
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Select installation class"
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/drakconnect:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid "Interface:"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belarus"
-msgstr ""
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Error writing to file %s"
+"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."
msgstr ""
-#: ../../services.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result to syslog"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tape to backup"
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set as the hostname).\n"
-"\n"
-"See iwpconfig(8) man page for further information."
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS configuration"
+#: ../../Xconfig/main.pm_.c:102
+msgid "Graphic Card"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Total progress"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-""
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
msgstr ""
-#: ../../standalone/draksec:1
-#, c-format
-msgid "yes"
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
-"Welcome to The Network Configuration Wizard.\n"
+"Keep the changes?\n"
+"The current configuration is:\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 ""
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
+"%s"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Stop"
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "Edit selected host"
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD device defined!"
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+msgid "Vendor"
msgstr ""
-#: ../../network/shorewall.pm:1
-#, c-format
-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"
-""
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
-"\tUse .backupignore files\n"
-""
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr ""
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP start ip"
-msgstr ""
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "256 kB"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Don't rewind tape after backup"
-msgstr ""
-
-#: ../../any.pm:1 ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr ""
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-usbtable] [--dynamic=dev]"
-msgstr ""
-
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Tape"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Malaysia"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
+"\n"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning network..."
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
msgstr ""
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "The change is done, do you want to restart the dm service ?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (French layout)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "Other place"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
msgstr ""
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "August"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "FTP server"
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Webcam"
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "size of the (second level) cpu cache"
+msgid "Graphics card: %s"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Soundcard"
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Month"
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Search for files to restore"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Luxembourg"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s <file>\".\n"
-""
+msgid "Keyboard layout: %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid ""
-"Level %s\n"
-""
+msgid "Mouse type: %s\n"
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid "Syriac (phonetic)"
+msgid "Mouse device: %s\n"
msgstr ""
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid "Iran"
+msgid "Monitor: %s\n"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Bus"
+msgid "Monitor HorizSync: %s\n"
msgstr ""
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Iraq"
+msgid "Monitor VertRefresh: %s\n"
msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid "connecting to %s ..."
+msgid "Graphics card: %s\n"
msgstr ""
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid ""
-"Potential LAN address conflict found in current config of %s!\n"
-""
+msgid "Graphics memory: %s kB\n"
msgstr ""
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid "Configuring..."
+msgid "Color depth: %s\n"
msgstr ""
-#: ../../harddrake/v4l.pm:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types here. Just select your tv card parameters if needed."
+msgid "Resolution: %s\n"
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Password (again)"
+msgid "XFree86 server: %s\n"
msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Search installed fonts"
+msgid "XFree86 driver: %s\n"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default desktop"
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:62
msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will be \n"
-"transferred to that server."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr ""
-
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1 ../../standalone/drakconnect:1 ../../standalone/drakconnect:1 ../../standalone/drakups:1
-#, c-format
-msgid "IP address"
-msgstr ""
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:73
msgid ""
-"List of data corrupted:\n"
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
"\n"
-""
-msgstr ""
-
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
+#: ../../Xconfig/various.pm_.c:85
+msgid "What norm is your TV using?"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose another partition"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Current user"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Server Configuration"
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
msgstr ""
-#: ../../standalone/printerdrake:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Name"
+#: ../../any.pm_.c:142
+msgid "Grub"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1 ../../install_steps_interactive.pm:1 ../../diskdrake/smbnfs_gtk.pm:1 ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakconnect:1 ../../standalone/drakconnect:1 ../../standalone/drakups:1
-#, c-format
-msgid "Password"
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Advanced Configuration"
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1
-#, c-format
-msgid "Root"
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
+#: ../../any.pm_.c:164
+msgid "Compact"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
+#: ../../any.pm_.c:164
+msgid "compact"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo message not found"
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
+msgid "Password"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Failed..."
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
msgstr ""
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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"
-""
+#: ../../any.pm_.c:171
+msgid "restrict"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default user"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
msgstr ""
-#: ../../standalone/draksplash:1
+#: ../../any.pm_.c:174
#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
+msgid "Precise RAM size if needed (found %d MB)"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Current interface configuration"
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../any.pm_.c:182
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"
-""
+"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not print any test page"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
msgstr ""
-#: ../../standalone/drakTermServ:1 ../../standalone/drakTermServ:1 ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s already in use\n"
-""
+#: ../../any.pm_.c:191
+msgid "Init Message"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
-msgid "[keyboard]"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "FTP proxy"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install List"
+#: ../../any.pm_.c:197
+msgid "Default OS?"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:231
msgid ""
-"Change\n"
-"Restore Path"
-msgstr ""
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
+"\n"
+"On which drive are you booting?"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:247
msgid ""
-"\tLimit disk usage to %s MB\n"
-""
-msgstr ""
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr ""
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr ""
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Security"
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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"
-""
+#: ../../any.pm_.c:257
+msgid "Modify"
msgstr ""
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1 ../../standalone/drakups:1 ../../standalone/harddrake2:1 ../../standalone/logdrake:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "<control>Q"
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Unable to find backups to restore...\n"
-""
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"This server is already in the list, it cannot be added again.\n"
-""
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration"
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>S"
+#: ../../any.pm_.c:285
+msgid "Image"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, 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."
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
+#: ../../any.pm_.c:291
+msgid "Initrd"
msgstr ""
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1 ../../standalone/draksplash:1 ../../standalone/draksplash:1
-#, c-format
-msgid "Notice"
+#: ../../any.pm_.c:292
+msgid "Read-write"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
+#: ../../any.pm_.c:299
+msgid "Table"
msgstr ""
-#: ../../standalone/drakups:1
-#, c-format
-msgid "UPS devices"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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\"."
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "If this is the case, you can make this be done automatically."
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "What type of partitioning?"
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-" "
+#: ../../any.pm_.c:318
+msgid "NoVideo"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface"
+#: ../../any.pm_.c:326
+msgid "Remove entry"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Multisession CD"
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
msgstr ""
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated strings"
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
+#: ../../any.pm_.c:330
+msgid "You must specify a root partition"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Messages"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
msgstr ""
-#: ../../harddrake/v4l.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgid "Found %s %s interfaces"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "POP and IMAP Server"
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
msgstr ""
-#: ../../lang.pm:1
+#: ../../any.pm_.c:642
#, c-format
-msgid "Mexico"
+msgid "Do you have any %s interfaces?"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model stepping"
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Switzerland"
+#: ../../any.pm_.c:645
+msgid "See hardware info"
msgstr ""
-#: ../../lang.pm:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Brunei Darussalam"
+msgid "Installing driver for %s card %s"
msgstr ""
-#: ../../modules/interactive.pm:1
+#: ../../any.pm_.c:663
#, c-format
-msgid "Do you have any %s interfaces?"
+msgid "(module %s)"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../any.pm_.c:674
#, c-format
msgid ""
-"You must be root to read configuration file. \n"
-""
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../help.pm:1
+#: ../../any.pm_.c:680
#, 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."
+"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/drakbackup:1
-#, c-format
-msgid "Please choose the time interval between each backup"
+#: ../../any.pm_.c:682
+msgid "Module options:"
msgstr ""
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "Norway"
+msgid "Which %s driver should I try?"
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../any.pm_.c:703
#, c-format
-msgid "Danish"
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, 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)."
+#: ../../any.pm_.c:707
+msgid "Specify options"
msgstr ""
-#: ../../help.pm:1
+#: ../../any.pm_.c:719
#, 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."
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
+#: ../../any.pm_.c:738
+msgid "access to network tools"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No NIC selected!"
+#: ../../any.pm_.c:739
+msgid "access to compilation tools"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../any.pm_.c:744
#, 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 "(already added %s)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Other files..."
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
+#: ../../any.pm_.c:751
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
+#: ../../any.pm_.c:752
+msgid "The user name is too long"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing HPOJ package..."
+#: ../../any.pm_.c:757
+msgid "Add user"
msgstr ""
-#: ../../any.pm:1
+#: ../../any.pm_.c:758
#, 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"
+"Enter a user\n"
"%s"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-""
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, 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."
-msgstr ""
-
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr ""
-
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
-#, c-format
-msgid "Retry"
-msgstr ""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Start at boot"
-msgstr ""
-
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
-msgstr ""
-
-#: ../../any.pm:1 ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr ""
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "DVD"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "(detected on port %s)"
-msgstr ""
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
+#: ../../any.pm_.c:759
+msgid "Accept user"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
+#: ../../any.pm_.c:770
+msgid "Real name"
msgstr ""
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Is your hardware clock set to GMT?"
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
+#: ../../any.pm_.c:774
+msgid "Shell"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
+#: ../../any.pm_.c:776
+msgid "Icon"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
+#: ../../any.pm_.c:803
+msgid "Autologin"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../any.pm_.c:804
msgid ""
-"Entries you'll have to fill:\n"
-"%s"
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, 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."
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
msgstr ""
-#: ../../standalone/livedrake:1
-#, c-format
-msgid ""
-"Unable to start live upgrade !!!\n"
-""
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
+#: ../../any.pm_.c:824
+msgid "Please choose a language to use."
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
+#: ../../any.pm_.c:826
+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 ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
msgstr ""
-#: ../../any.pm:1
-#, c-format
+#: ../../any.pm_.c:961
msgid "Allow all users"
msgstr ""
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
+#: ../../any.pm_.c:961
+msgid "No sharing"
msgstr ""
-#: ../../install_interactive.pm:1 ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
#, c-format
-msgid "Resizing"
+msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:973
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
-msgid "Cable connection"
-msgstr ""
-
-#: ../../standalone/drakperm:1 ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, c-format
-msgid "User"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Secondary"
-msgstr ""
-
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr ""
-
-#: ../../standalone/drakups:1 ../../standalone/drakups:1 ../../standalone/drakups:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Name"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
+msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files..."
+#: ../../any.pm_.c:987
+msgid ""
+"Would you like to allow users to share some of their directories?\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror "
+"and nautilus.\n"
+"\n"
+"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
+#: ../../any.pm_.c:1003
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must choose/enter a printer/device!"
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
msgstr ""
-#: ../../standalone/drakups:1
-#, c-format
-msgid "Rules"
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+msgid "Higher"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer name, description, location"
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
+#: ../../any.pm_.c:1061
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+"but very sensitive: it must not be used for a machine connected to others\n"
+"or to the Internet. There is no password access."
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
+#: ../../any.pm_.c:1064
+msgid ""
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback"
+#: ../../any.pm_.c:1065
+msgid ""
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "West Europe"
+#: ../../any.pm_.c:1066
+msgid ""
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
+#: ../../any.pm_.c:1067
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"
+"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/drakbackup:1
-#, c-format
-msgid "On CD-R"
+#: ../../any.pm_.c:1070
+msgid ""
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake2 version %s"
+#: ../../any.pm_.c:1076
+msgid "DrakSec Basic Options"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Preferences"
+#: ../../any.pm_.c:1077
+msgid "Please choose the desired security level"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
+#: ../../any.pm_.c:1080
+msgid "Security level"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
+#: ../../any.pm_.c:1082
+msgid "Use libsafe for servers"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../any.pm_.c:1083
msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Choose color"
+"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
+#: ../../any.pm_.c:1166
+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 ""
-#: ../../help.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, 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!"
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
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
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr ""
-
-#: ../../scanner.pm:1
-#, c-format
-msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
msgstr ""
-#: ../../mouse.pm:1 ../../mouse.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:986
#, c-format
-msgid "Generic 2 Button Mouse"
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
-#: ../../lvm.pm:1
-#, c-format
-msgid ""
-"Remove the logical volumes first\n"
-""
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
+#: ../../bootloader.pm_.c:995
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
-msgstr ""
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet access"
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"y coordinate of text box\n"
-"in number of characters"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "To get a list of the options available for the current printer click on the \"Print option list\" button."
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
msgstr ""
-#: ../../standalone/service_harddrake:1
+#: ../../bootloader.pm_.c:1120
#, c-format
-msgid ""
-"Some devices were added: %s\n"
-""
+msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
+#: ../../bootlook.pm_.c:53
+msgid "Boot Style Configuration"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, 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."
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid ""
-"There is already a partition with mount point %s\n"
-""
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
msgstr ""
-#: ../../help.pm:1
-#, 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''."
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
+#: ../../bootlook.pm_.c:83
+msgid "NewStyle Monitor"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Application:"
+#: ../../bootlook.pm_.c:84
+msgid "Traditional Monitor"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "External ISDN modem"
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "ADSL connection type :"
+#: ../../bootlook.pm_.c:89
+msgid "Lilo/grub mode"
msgstr ""
-#: ../../interactive/stdio.pm:1 ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
+#: ../../bootlook.pm_.c:89
+msgid "Yaboot mode"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
+#: ../../bootlook.pm_.c:138
+msgid "Install themes"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:139
msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-""
-msgstr ""
-
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
+"Display theme\n"
+"under console"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and one unknown printer"
+#: ../../bootlook.pm_.c:140
+msgid "Create new theme"
msgstr ""
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#: ../../bootlook.pm_.c:184
#, c-format
-msgid "Ireland"
+msgid "Backup %s to %s.old"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:187
#, c-format
-msgid " Restore Configuration "
+msgid "Copy %s to %s"
msgstr ""
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Is this the correct setting?"
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wizard Configuration"
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../modules/interactive.pm:1
+#: ../../bootlook.pm_.c:222
#, c-format
-msgid "Autoprobe"
+msgid "Write %s"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:224
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 ""
-
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer \"%s\"..."
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-#: ../../security/l10n.pm:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Shell history size"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: ../../bootlook.pm_.c:238
#, c-format
-msgid "drakfloppy"
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../bootlook.pm_.c:244
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 ""
-
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on other machines"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Peru"
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " on device: %s"
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+msgid "Notice"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+#: ../../bootlook.pm_.c:251
+msgid "Theme installation failed!"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../bootlook.pm_.c:259
#, c-format
msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr ""
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
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
-#, c-format
-msgid "System"
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Do you want to use this feature?"
+#: ../../bootlook.pm_.c:268
+msgid "Splash selection"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
+#: ../../bootlook.pm_.c:271
+msgid "Themes"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:273
msgid ""
"\n"
-"- Options:\n"
-""
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Password required"
-msgstr ""
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d minutes"
-msgstr ""
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Graphics card: %s"
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV transfer failed!"
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Choose action"
+#: ../../bootlook.pm_.c:316
+msgid "System mode"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "French Polynesia"
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Files or wildcards listed in a .backupignore file at the top of a directory tree will not be backed up."
+#: ../../common.pm_.c:107
+msgid "GB"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Sending\n"
-"speed:"
+#: ../../common.pm_.c:107
+msgid "KB"
msgstr ""
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Installing driver for %s card %s"
+#: ../../common.pm_.c:107
+msgid "MB"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You have transferred your former default printer (\"%s\"), Should it be also the default printer under the new printing system %s?"
+#: ../../common.pm_.c:115
+msgid "TB"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../common.pm_.c:123
#, c-format
-msgid "Enable Server"
+msgid "%d minutes"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ukrainian"
+#: ../../common.pm_.c:125
+msgid "1 minute"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../common.pm_.c:127
#, 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 "%d seconds"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to write the file"
+#: ../../common.pm_.c:172
+msgid "Can't make screenshots before partitioning"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../common.pm_.c:179
#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
+msgid "Screenshots will be available after install in %s"
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local network(s)"
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+msgid "France"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Remove Windows"
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the applications menu."
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+msgid "Belgium"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Firewire controllers"
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
msgstr ""
-#: ../../help.pm:1
-#, 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!"
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+msgid "Germany"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "System mode"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+msgid "Greece"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+msgid "Norway"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Netmask:"
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+msgid "Sweden"
msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1
-#, c-format
-msgid "Append"
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+msgid "Italy"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+msgid "Austria"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../diskdrake/dav.pm_.c:19
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 ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Please choose what network adapter will be connected to your Local Area Network."
+"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
-#, c-format
-msgid "OK to restore the other files."
+#: ../../diskdrake/dav.pm_.c:27
+msgid "New"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your keyboard layout."
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not erasable media!"
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
+#: ../../diskdrake/dav.pm_.c:85
+msgid "Please enter the WebDAV server URL"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "The user name is too long"
+#: ../../diskdrake/dav.pm_.c:109
+msgid "Server: "
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "WebDAV remote site already in sync!"
+msgid "Options: %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Generate auto install floppy"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:100
msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-""
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr ""
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr ""
-
-#: ../../standalone/printerdrake:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
+"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 ""
-#: ../../security/level.pm:1
-#, c-format
-msgid "This is similar to the previous level, but the system is entirely closed and security features are at their maximum."
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network ID"
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
+#: ../../diskdrake/hd_gtk.pm_.c:191
+msgid ""
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Delete"
+#: ../../diskdrake/hd_gtk.pm_.c:254
+msgid "No hard drives found"
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1
-#, c-format
-msgid "Video mode"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Please enter your email address below "
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
msgstr ""
-#: ../../standalone/net_monitor:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Network Monitoring"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Journalised FS"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:325
msgid "SunOS"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "New size in MB: "
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Partition table type: %s\n"
-""
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication Windows Domain"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
msgstr ""
-#: ../../standalone/drakups:1
-#, c-format
-msgid "Manufacturer / Model:"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
msgstr ""
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid ", network printer \"%s\", port %s"
+msgid "Use ``%s'' instead"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-""
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by FTP.\n"
-""
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, 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"
-""
+"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
-msgstr ""
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert configuration"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr ""
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Matching"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bosnian"
-msgstr ""
-
-#: ../../standalone/drakbug:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Release: "
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose a partition"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection speed"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose another partition"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
+#: ../../diskdrake/interactive.pm_.c:202
+msgid "Exit"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Database Server"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
msgstr ""
-#: ../../raid.pm:1
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
msgstr ""
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Network Time Protocol"
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, 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."
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
msgstr ""
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security options..."
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
+#: ../../diskdrake/interactive.pm_.c:257
+msgid "Do you want to save /etc/fstab modifications"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+msgid "More"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
+#: ../../diskdrake/interactive.pm_.c:278
+msgid "Hard drive information"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
+#: ../../diskdrake/interactive.pm_.c:310
+msgid "All primary partitions are used"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:312
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."
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
msgstr ""
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr ""
-
-#: ../../services.pm:1
-#, c-format
-msgid "Start"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
-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
-#, c-format
-msgid "Configuring applications..."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../diskdrake/interactive.pm_.c:322
+msgid "Save partition table"
msgstr ""
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
+#: ../../diskdrake/interactive.pm_.c:323
+msgid "Restore partition table"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "File Selection"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
msgstr ""
-#: ../../help.pm:1 ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
+#: ../../diskdrake/interactive.pm_.c:326
+msgid "Reload partition table"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase tape before backup"
+#: ../../diskdrake/interactive.pm_.c:331
+msgid "Removable media automounting"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
+#: ../../diskdrake/interactive.pm_.c:347
+msgid ""
+"The backup partition table has not the same size\n"
+"Still continue?"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
+#: ../../diskdrake/interactive.pm_.c:362
+msgid ""
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "named (BIND) is a Domain Name Server (DNS) that is used to resolve host names to IP addresses."
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
+#: ../../diskdrake/interactive.pm_.c:379
+msgid "Detailed information"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
msgstr ""
-#: ../../standalone/drakups:1
-#, c-format
-msgid "IP mask"
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Report"
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
msgstr ""
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "All incidents will be followed up by a single qualified MandrakeSoft technical expert."
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "You can configure each parameter of the module here."
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
msgstr ""
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:481
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 ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Install updates"
-msgstr ""
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr ""
-
-#: ../../standalone/drakautoinst:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Creating auto install floppy"
+#: ../../diskdrake/interactive.pm_.c:511
+msgid "Remove the loopback file?"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "State"
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+msgid "Which filesystem do you want?"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Enable multiple profiles"
+msgid "Where do you want to mount loopback file %s?"
msgstr ""
-#: ../../fs.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Where do you want to mount device %s?"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-""
-msgstr ""
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Local printer"
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm_.c:606
#, c-format
-msgid "Files Restored..."
+msgid "Where do you want to mount %s?"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritania"
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
msgstr ""
-#: ../../standalone/drakgw:1
-#, 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"
-""
+#: ../../diskdrake/interactive.pm_.c:662
+msgid "This partition is not resizeable"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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, ...)."
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:669
#, c-format
-msgid "All primary partitions are used"
+msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "After this is done, we recommend that you restart your X environment to avoid any hostname-related problems."
+#: ../../diskdrake/interactive.pm_.c:675
+msgid "New size in MB: "
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation Server Configuration"
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network functionality not configured"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Configure module"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Host %s"
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
+#: ../../diskdrake/interactive.pm_.c:831
+msgid "Give a file name"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
+#: ../../diskdrake/interactive.pm_.c:858
+msgid "Mount options"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "secondary"
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Backup Configuration."
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
msgstr ""
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
+#: ../../diskdrake/interactive.pm_.c:962
+msgid "What type of partitioning?"
msgstr ""
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:978
#, c-format
-msgid "Nigeria"
+msgid "The package %s is needed. Install it?"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:992
msgid ""
-"%s: %s requires hostname...\n"
-""
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no existing partition to use"
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:996
msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-""
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on parallel port #%s"
+#: ../../diskdrake/interactive.pm_.c:1002
+msgid ""
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, 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 "Partition table of drive %s is going to be written to disk!"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Hard drive information"
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
msgstr ""
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1037
#, c-format
-msgid "Russian"
+msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Jordan"
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Hide files"
+msgid "Formatting loopback file %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "Auto-detect printers connected to this machine"
+msgid "Formatting partition %s"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Sorry, no floppy drive available"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Hide files"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Bolivia"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Move files to the new partition"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1053
#, c-format
msgid ""
-"Set up your Windows server to make the printer available under the IPP protocol and set up printing from this machine with the \"%s\" connection type in Printerdrake.\n"
-"\n"
-""
-msgstr ""
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
+"Directory %s already contains data\n"
+"(%s)"
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!"
+#: ../../diskdrake/interactive.pm_.c:1064
+msgid "Moving files to the new partition"
msgstr ""
-#: ../../security/level.pm:1
+#: ../../diskdrake/interactive.pm_.c:1068
#, c-format
-msgid "DrakSec Basic Options"
+msgid "Copying %s"
msgstr ""
-#: ../../standalone/draksound:1
+#: ../../diskdrake/interactive.pm_.c:1072
#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig program. Just type \"sndconfig\" in a console."
+msgid "Removing %s"
msgstr ""
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid "Romania"
+msgid "partition %s is now known as %s"
msgstr ""
-#: ../../standalone/drakperm:1 ../../standalone/drakperm:1
-#, c-format
-msgid "Group"
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
msgstr ""
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "Canada"
+msgid "DOS drive letter: %s (just a guess)\n"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "choose device"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from LVM"
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "Timezone"
+msgid "Start: sector %s\n"
msgstr ""
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "German"
+msgid "Size: %s"
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
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid "Next ->"
+msgid ", %s sectors"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1125
#, 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 "Cylinder %d to %d\n"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-""
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
msgstr ""
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
msgstr ""
-#: ../../standalone/drakperm:1 ../../standalone/drakups:1 ../../standalone/drakups:1 ../../standalone/drakups:1 ../../standalone/printerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Edit"
+msgid "RAID md%s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, c-format
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+"Loopback file(s):\n"
+" %s\n"
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\""
+#: ../../diskdrake/interactive.pm_.c:1132
+msgid ""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-#: ../../harddrake/data.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "USB controllers"
+msgid "Level %s\n"
msgstr ""
-#: ../../Xconfig/various.pm:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "What norm is your TV using?"
+msgid "Chunk size %s\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Share name"
+msgid "RAID-disks %s\n"
msgstr ""
-#: ../../standalone/drakgw:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "enable"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgid "Loopback file name: %s"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove the loopback file?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP server name missing!"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose your country."
-msgstr ""
-
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Laotian"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Samoa"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
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 ..."
-msgstr ""
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module configuration"
-msgstr ""
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Scanner"
+"\n"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
msgstr ""
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid "The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgid "Size: %s\n"
msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "Menudrake"
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr ""
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
msgstr ""
-#: ../../modules/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid "Module options:"
+msgid "LVM-disks %s\n"
msgstr ""
-#: ../advertising/11-mnf.pl:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
+msgid "Partition table type: %s\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1169
#, c-format
-msgid "Go on without configuring the network"
+msgid "on channel %d id %d\n"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Abort"
+#: ../../diskdrake/interactive.pm_.c:1199
+msgid "Filesystem encryption key"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../mouse.pm:1
+#: ../../diskdrake/interactive.pm_.c:1203
#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
+msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Usage of remote scanners"
+#: ../../diskdrake/interactive.pm_.c:1204
+msgid "The encryption keys do not match"
msgstr ""
-#: ../../install_interactive.pm:1
-#, 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."
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
+#: ../../diskdrake/removable.pm_.c:47
+msgid "Change type"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "Unable to fork: %s"
+msgid "Can't login using username %s (bad password?)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "no fonts found"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
-#, c-format
-msgid "Mouse"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../bootloader.pm:1
-#, c-format
-msgid "not enough room in /boot"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+msgid "Username"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "trying to promote %s"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Liechtenstein"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+msgid "Search servers"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "Host name"
+msgid "%s formatting of %s failed"
msgstr ""
-#: ../../standalone/draksplash:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "the color of the progress bar"
+msgid "I don't know how to format %s in type %s"
msgstr ""
-#: ../../standalone/drakfont:1 ../../standalone/drakfont:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "Suppress Fonts Files"
+msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid "Add to RAID"
+msgid "error unmounting %s: %s"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-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."
+#: ../../fsedit.pm_.c:21
+msgid "simple"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No floppy drive available!"
+#: ../../fsedit.pm_.c:30
+msgid "server"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:240
#, 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"
+"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 loose all the partitions?\n"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saudi Arabia"
-msgstr ""
-
-#: ../../services.pm:1
-#, c-format
-msgid "Internet"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If your printer is not listed, choose a compatible (see printer manual) or a similar one."
-msgstr ""
-
-#: ../../help.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer"
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Geometry: %s cylinders, %s heads, %s sectors\n"
-""
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, 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."
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "Printing on the printer \"%s\""
+msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../fsedit.pm_.c:526
#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Tape"
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../fsedit.pm_.c:530
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."
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-#: ../../security/l10n.pm:1
+#: ../../fsedit.pm_.c:532
#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr ""
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
+msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting printing system..."
+#: ../../fsedit.pm_.c:599
+msgid "Not enough free space for auto-allocating"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/tree/mdk_totem:1
-#, c-format
-msgid "You can only run with no CDROM support"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
msgstr ""
-#: ../../modules/interactive.pm:1
+#: ../../fsedit.pm_.c:694
#, c-format
-msgid "See hardware info"
+msgid "Error opening %s for writing: %s"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
msgstr ""
-#: ../../standalone.pm:1
+#: ../../harddrake/sound.pm_.c:171
#, 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)"
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Set password expiration and account inactivation delays"
+#: ../../harddrake/sound.pm_.c:173
+msgid "Sound configuration"
msgstr ""
-#: ../../standalone/logdrake:1
+#: ../../harddrake/sound.pm_.c:174
#, c-format
msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
msgstr ""
-#: ../../Xconfig/monitor.pm:1
+#: ../../harddrake/sound.pm_.c:176
#, c-format
msgid ""
-"The two critical parameters are the vertical refresh rate, which is the rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync range\n"
-"that is beyond the capabilities of your monitor: you may damage your monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Run the \"Add an interface\" assistant from the Mandrake Control Center"
-msgstr ""
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for a particular printing job. Simply add the desired settings to the command line, e. g. \"%s <file>\".\n"
-""
+#: ../../harddrake/sound.pm_.c:178
+msgid "Driver:"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+msgid "Help"
msgstr ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Insert floppy"
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
msgstr ""
-#: ../../diskdrake/dav.pm:1
-#, c-format
+#: ../../harddrake/sound.pm_.c:186
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\"."
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../harddrake/sound.pm_.c:202
#, c-format
-msgid "HardDrake"
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+msgid "Please Wait... Applying the configuration"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable syslog reports to console 12"
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Would you like to try again?"
+#: ../../harddrake/sound.pm_.c:210
+msgid "No known driver"
msgstr ""
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid "Wizard"
+msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected server"
+#: ../../harddrake/sound.pm_.c:214
+msgid "Unkown driver"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../harddrake/sound.pm_.c:215
#, c-format
-msgid "Please choose where you want to backup"
+msgid ""
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+msgid "Auto-detect"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+msgid "Unknown|Generic"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Failed to check filesystem %s. Do you want to repair the errors? (beware, you can lose data)"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr ""
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
+#: ../../harddrake/v4l.pm_.c:224
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
+#: ../../harddrake/v4l.pm_.c:227
+msgid "Card model:"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
+#: ../../harddrake/v4l.pm_.c:228
+msgid "Tuner type:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "not configured"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
+#: ../../harddrake/v4l.pm_.c:231
+msgid "PLL setting:"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "About"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Proxies configuration"
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+
+#: ../../help.pm_.c:48
+msgid ""
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/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 ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../help.pm_.c:79
msgid ""
-"Start: sector %s\n"
-""
-msgstr ""
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Mask"
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface already configured"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
-msgstr ""
-
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../help.pm_.c:84
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 ""
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Mail Server"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr ""
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr ""
-
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr ""
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
-msgstr ""
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Upgrade %s"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr ""
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
+"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"
+"you are not supposed to know them all by heart.\n"
+"\n"
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
+"\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
+"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
+"\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
+"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
+"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
+"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
+"\n"
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:135
msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:171
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/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:193
msgid ""
+"You may now choose which services you wish to start at boot time.\n"
"\n"
-"- Save via %s on host: %s\n"
-""
-msgstr ""
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr ""
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Domain Name Server"
-msgstr ""
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Level:"
-msgstr ""
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr ""
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "CUPS server"
-msgstr ""
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Postfix Mail Server"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr ""
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
+"\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../help.pm_.c:210
msgid ""
-"=> There are many things to choose from (%s).\n"
-""
-msgstr ""
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr ""
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
-#, c-format
+#: ../../help.pm_.c:224
msgid ""
-"An error occurred:\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.\n"
+"\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
+msgstr ""
+
+#: ../../help.pm_.c:246
+msgid ""
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
+msgstr ""
+
+#: ../../help.pm_.c:253
+msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
+msgstr ""
+
+#: ../../help.pm_.c:277
+msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft 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"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
-"%s\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\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"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../help.pm_.c:347
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 ""
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr ""
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr ""
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter summary text."
-msgstr ""
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../help.pm_.c:378
msgid ""
-"Mouse type: %s\n"
-""
-msgstr ""
-
-#: ../../Xconfig/card.pm:1 ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr ""
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr ""
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../help.pm_.c:404
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 ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Floppy format"
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Generic Printers"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the printer to which the print jobs should go or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of the root partition"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Alternative drivers"
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
+"\n"
+"Please be patient."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:412
msgid ""
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
"\n"
-"Please check all options that you need.\n"
-""
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr ""
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr ""
-
-#: ../../scanner.pm:1
-#, c-format
-msgid "Your scanner(s) will not be available for non-root users."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the port that your printer is connected to or enter a device name/file name in the input line"
-msgstr ""
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr ""
-
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:425
msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive. It must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-
-#: ../../fs.pm:1 ../../fs.pm:1
-#, c-format
-msgid "Mounting partition %s"
-msgstr ""
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr ""
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Userdrake"
-msgstr ""
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr ""
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to missing %s"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Test pages"
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Logical volume name "
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:432
msgid ""
-"List of data to restore:\n"
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
-""
-msgstr ""
-
-#: ../../fs.pm:1 ../../fs.pm:1
-#, c-format
-msgid "Checking %s"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr ""
-
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr ""
-
-#: ../../standalone/net_monitor:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr ""
-
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "France"
-msgstr ""
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name missing!"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Do you want to enable printing on printers in the local network?\n"
-""
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr ""
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Number of buttons"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Module"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "In addition, queues not created with this program or \"foomatic-configure\" cannot be transferred."
-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
-#, c-format
-msgid "Hardware"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
-
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "United States"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "User umask"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr ""
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the printer you want to set up. The configuration of the printer will work fully automatically. If your printer was not correctly detected or if you prefer a customized printer configuration, turn on \"Manual configuration\"."
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Sulogin(8) in single user level"
-msgstr ""
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Load/Save on floppy"
-msgstr ""
-
-#: ../../standalone/draksplash:1 ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
+"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr ""
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr ""
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Property"
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
-msgstr ""
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Advanced Options"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Configuration"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
-msgstr ""
-
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:442
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"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -4336,1716 +2913,949 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:513
msgid ""
-"Graphic Card\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-" 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"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\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 ""
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr ""
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr ""
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Save partition table"
-msgstr ""
-
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr ""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Authorize:\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if set to \"ALL\",\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"
-"- only local ones if set to \"LOCAL\"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
"\n"
-"- none if set to \"NONE\".\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow(5))."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Please enter the wireless parameters for this card:"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
-"- Burn to CD"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr ""
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr ""
-
-#: ../../standalone/harddrake2:1 ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Model"
-msgstr ""
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "USB printer #%s"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Stop Server"
-msgstr ""
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Modem"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr ""
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr ""
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste operations,\n"
-"and includes support for pop-up menus on the console."
-msgstr ""
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr ""
-
-#: ../advertising/12-mdkexpert.pl:1
-#, 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:"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "No password aging for"
-msgstr ""
-
-#: ../../standalone/draksec:1
-#, 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"
-""
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
+" * \"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 ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:547
msgid ""
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Login name"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing Foomatic..."
-msgstr ""
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr ""
-
-#: ../../standalone/drakbug:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Package: "
-msgstr ""
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "StarOffice"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Operating frequency"
-msgstr ""
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
-msgstr ""
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
-msgstr ""
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
+"\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
+"\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
+"\n"
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
+"\n"
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
+"\n"
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
+"\n"
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../help.pm_.c:582
msgid ""
-"%s not found...\n"
-""
-msgstr ""
-
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Testing your connection..."
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cache size"
-msgstr ""
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Passwords are now enabled, but use as a networked computer is still not recommended."
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr ""
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Read"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
+"\n"
+"Click on the \"More\" 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, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:598
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"
+"The first step is to choose your preferred language.\n"
"\n"
-"For your printer Printerdrake has found:\n"
+"Please choose your preferred language for installation and system usage.\n"
"\n"
-"%s"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Bad password on %s"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
+"\n"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:617
msgid ""
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Control key"
-msgstr ""
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s with %s in root directory and press %s"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr ""
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr ""
-
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../help.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Import Fonts"
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
+"\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../help.pm_.c:638
msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../help.pm_.c:642
msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
"\n"
-""
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
+"\n"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
+"\n"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
+"\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
+"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:678
msgid ""
-"Resolution\n"
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\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 ""
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Network Options"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable msec hourly security check"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, 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 in doubt, DrakX will display a dialog with various options.\n"
+"\n"
+" * \"Bootloader to use\": you have three choices:\n"
+"\n"
+" * \"GRUB\": if you prefer grub (text menu);\n"
+"\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\n"
+"\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
+"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
+"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
+"\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\n"
+"\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../help.pm_.c:718
msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr ""
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr ""
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "New printer name"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-#: ../../fs.pm:1
-#, c-format
+#: ../../help.pm_.c:732
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 ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup System"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Build Backup"
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\n"
+"\n"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:739
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s <file>\" or \"%s <file>\".\n"
-""
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwertz)"
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
+"\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
+"\n"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:759
msgid ""
-"The routed daemon allows for automatic IP router table updated via\n"
-"the RIP protocol. While RIP is widely used on small networks, more complex\n"
-"routing protocols are needed for complex networks."
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Write Config"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr ""
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"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 does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
+"\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:781
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"
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
"\n"
-"You will be presented with a list of different parameters to change to get\n"
-"an optimal graphical display: Graphic Card\n"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\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"
+"For Linux, there are a few possible options:\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"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
"\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
"\n"
-"Monitor\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
"\n"
-" 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"
+" 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"
-"Resolution\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
"\n"
-" 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"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
"\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support;\n"
"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
+msgstr ""
+
+#: ../../help.pm_.c:828
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
"\n"
-"Test\n"
+"Yaboot's main options are:\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"
+" * 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"
-"Options\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
-" 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 ""
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr ""
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Windows"
-msgstr ""
-
-#: ../../common.pm:1
-#, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Name"
-msgstr ""
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "To get access to printers on remote CUPS servers in your local network you only need to turn on the \"Automatically find available printers on remote machines\" option; the CUPS servers inform your machine automatically about their printers. All printers currently known to your machine are listed in the \"Remote printers\" section in the main window of Printerdrake. If your CUPS server(s) is/are not in your local network, you have to enter the IP address(es) and optionally the port number(s) here to get the printer information from the server(s)."
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Restrict command line options"
-msgstr ""
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "East Europe"
-msgstr ""
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr ""
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr ""
-
-#: ../../standalone/logdrake:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected %s"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _printers"
-msgstr ""
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr ""
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr ""
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr ""
-
-#: ../../standalone/drakups:1
-#, c-format
-msgid ""
-"We're going to add an UPS device.\n"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\n"
"\n"
-"Do you prefer autodetect UPS devices connected to this machine or ?"
-msgstr ""
-
-#: ../../any.pm:1 ../../any.pm:1 ../../install_steps_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The model is correct"
-msgstr ""
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr ""
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr ""
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr ""
-
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"DOS drive letter: %s (just a guess)\n"
-""
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr ""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit scsi modules"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your Internet & Network connection.\n"
-""
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
-msgstr ""
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid ""
-"Keyboard layout: %s\n"
-""
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr ""
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid ""
-"The creation of the boot floppy has been successfully completed \n"
-""
-msgstr ""
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Tvcard"
-msgstr ""
-
-#: ../../help.pm:1
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr ""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr ""
-
-#: ../../help.pm:1
-#, c-format
-msgid "GRUB"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr ""
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
-"What would you like to do?"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete All NBIs"
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:860
msgid ""
-"This dialog allows you to fine tune your bootloader:\n"
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
"\n"
-" * \"%s\": there are three choices for your bootloader:\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
"\n"
-" * \"%s\": if you prefer grub (text menu).\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
"\n"
-" * \"%s\": if you prefer LILO with its text menu interface.\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
-" * \"%s\": if you prefer LILO with its graphical interface.\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\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"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\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"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\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 ""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set, send the mail report to this email address else send it to root."
-msgstr ""
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-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
-#, c-format
-msgid "More"
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -scanbus' would also show you the device number."
-msgstr ""
-
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:891
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."
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Server Name"
+#: ../../help.pm_.c:896
+msgid ""
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1 ../../standalone/drakconnect:1
+#: ../../install2.pm_.c:111
#, c-format
-msgid "Account Password"
+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 ""
-#: ../../standalone/drakhelp:1
+#: ../../install2.pm_.c:167
#, c-format
-msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
-""
+msgid "You must also format %s"
msgstr ""
-#: ../../any.pm:1
+#: ../../install_any.pm_.c:423
#, 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"
+"You have selected the following server(s): %s\n"
"\n"
-"On which drive are you booting?"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_interactive.pm:1
+#: ../../install_any.pm_.c:441
#, c-format
msgid ""
-"WARNING!\n"
+"The following packages will be removed to allow upgrading your system: %s\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."
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tajik keyboard"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:879
#, 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 "Insert a FAT formatted floppy in drive %s"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Font List"
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_any.pm_.c:895
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."
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, 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 "Error reading file %s"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../install_any.pm_.c:1040
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."
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Select file"
+"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 ""
-#: ../../printer/printerdrake.pm:1
+#: ../../install_interactive.pm_.c:21
#, c-format
-msgid "Choose the network or host on which the local printers should be made available:"
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:56
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"
-""
+"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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print option list"
+#: ../../install_interactive.pm_.c:62
+msgid ""
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search servers"
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Warning, another internet connection has been detected, maybe using your network"
+#: ../../install_interactive.pm_.c:102
+msgid "There is no existing partition to use"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
+#: ../../install_interactive.pm_.c:112
+msgid "Which partition do you want to use for Linux4Win?"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
msgstr ""
-#: ../../standalone/drakups:1
-#, c-format
-msgid "No new UPS devices was found"
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
msgstr ""
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " (driver %s)"
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
-"Loopback file(s):\n"
-" %s\n"
-""
-msgstr ""
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr ""
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../install_interactive.pm_.c:137
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?"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Telugu"
-msgstr ""
-
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:138
msgid ""
+"WARNING!\n"
"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is \"%s\")"
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Uninstall"
-msgstr ""
-
-#: ../../standalone/net_monitor:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connecting to Internet "
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid level"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr ""
-#: ../../printer/main.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
+msgid "partition %s"
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid "Mongolian (cyrillic)"
+msgid "FAT resizing failed: %s"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Add a module"
+#: ../../install_interactive.pm_.c:171
+msgid ""
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Local measure"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "busmouse"
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../install_interactive.pm_.c:183
#, 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 "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
+#: ../../install_interactive.pm_.c:191
+msgid "Custom disk partitioning"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Benin"
+#: ../../install_interactive.pm_.c:227
+msgid "You don't have enough free space on your Windows partition"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
+#: ../../install_interactive.pm_.c:243
+msgid "I can't find any room for installing"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path selection"
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
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
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid "Name/IP address of host:"
+msgid "Partitioning failed: %s"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid ""
-"Monitor: %s\n"
-""
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom & system settings"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
msgstr ""
-#: ../../partition_table/raw.pm:1
-#, c-format
+#: ../../install_steps.pm_.c:76
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 ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP missing!"
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "Please check all users that you want to include in your backup."
+msgid "Duplicate mount point %s"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps.pm_.c:380
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware section."
-msgstr ""
-
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1 /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
-#, c-format
-msgid "Key isn't writable"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bangladesh"
-msgstr ""
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakfont:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Initial tests"
+"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 ""
-#: ../../network/isdn.pm:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "Continue"
+msgid "Welcome to %s"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom Restore"
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "Saturday"
+msgid "Entering step `%s'\n"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:146
msgid ""
-"\"%s\": if a sound card is detected on your system, it is displayed here.\n"
-"If you notice the sound card displayed is not the one that is actually\n"
-"present on your system, you can click on the button and choose another\n"
-"driver."
-msgstr ""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the root umask."
-msgstr ""
-
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr ""
-
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr ""
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "PLL setting:"
-msgstr ""
-
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
-msgstr ""
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "The URL must begin with http:// or https://"
+"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 ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (SunOS...)"
+#: ../../install_steps_gtk.pm_.c:160
+msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Install/Upgrade"
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d packages"
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
msgstr ""
-#: ../../crypto.pm:1 ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid "Costa Rica"
+msgid "Total size: %d / %d MB"
msgstr ""
-#: ../../standalone.pm:1
-#, 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"
-""
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "Domain Authentication Required"
+msgid "Name: %s\n"
msgstr ""
-#: ../../security/level.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid "Use libsafe for servers"
+msgid "Version: %s\n"
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid "Icelandic"
+msgid "Size: %d KB\n"
msgstr ""
-#: ../../standalone.pm:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--testing] [-v|--version] "
+msgid "Importance: %s\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:360
msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
+"You can't select this package as there is not enough space left to install it"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Ad-hoc"
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
msgstr ""
-#: ../../loopback.pm:1
-#, c-format
-msgid ""
-"Circular mounts %s\n"
-""
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Connection\n"
-"time: "
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:395
msgid ""
-"Old user list:\n"
-""
-msgstr ""
-
-#: ../../wizards.pm:1
-#, c-format
-msgid "Installation failed"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "a number"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
msgstr ""
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if one of the selected services is no longer running"
+#: ../../install_steps_gtk.pm_.c:407
+msgid "Load/Save on floppy"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Weekday"
+#: ../../install_steps_gtk.pm_.c:408
+msgid "Updating package selection"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Filesystem types:"
+#: ../../install_steps_gtk.pm_.c:413
+msgid "Minimal install"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Northern Mariana Islands"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Managed"
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Floppy"
+#: ../../install_steps_gtk.pm_.c:469
+msgid "Please wait, preparing installation..."
msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid "Ghostscript referencing"
+msgid "%d packages"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "Bootloader"
+msgid "Installing package %s"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1 ../../help.pm:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
-msgid "Bootloader to use"
+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 ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Name Servers:"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Minute"
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
msgstr ""
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:10
msgid ""
"\n"
"Warning\n"
@@ -6075,12088 +3885,8652 @@ msgid ""
"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 ""
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Expert mode"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr ""
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Operating Mode"
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
+#: ../../install_steps_interactive.pm_.c:85
+msgid "Do you really want to leave the installation?"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
msgstr ""
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
+"Introduction\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"
+"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"
-"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"
+"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"
-"<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"
+"2. Limited Warranty\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"
+"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"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
"\n"
+"3. The GPL License and Related Licenses\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"
+"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"
-"<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 ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr ""
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr ""
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "An error occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr ""
-
-#: ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr ""
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr ""
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Add Printer"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"4. Intellectual Property Rights\n"
"\n"
-"Drakbackup activities via CD:\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"
-""
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, 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"
+"5. Governing Laws \n"
"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr ""
-
-#: ../../standalone/net_monitor:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
+"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 ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
+#: ../../install_steps_interactive.pm_.c:218
+msgid "Please choose your keyboard layout."
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing"
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Click on a device in the left tree in order to display its information here."
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
msgstr ""
-#: ../../standalone/drakups:1
-#, c-format
-msgid ""
-"We are configuring the \"%s\" UPS from \"%s\".\n"
-"Please fill in its name, its driver and its port."
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade packages only"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
+#: ../../install_steps_interactive.pm_.c:282
+msgid "Please choose the type of your mouse."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
msgstr ""
-#: ../../standalone/livedrake:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use group id for execution"
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these printers will be automatically detected."
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
msgstr ""
-#: ../../any.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain"
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:386
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."
+"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 ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
+#: ../../install_steps_interactive.pm_.c:395
+msgid "No root partition found to perform an upgrade"
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
msgstr ""
-#: ../../standalone/drakups:1
-#, c-format
-msgid "ACL name"
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Djibouti"
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
msgstr ""
-#: ../../printer/data.pm:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid "LPD"
+msgid "Creating and formatting file %s"
msgstr ""
-#: ../../Xconfig/various.pm:1
+#: ../../install_steps_interactive.pm_.c:470
#, c-format
msgid ""
-"Graphics card: %s\n"
-""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/Set as _Default"
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
+#: ../../install_steps_interactive.pm_.c:479
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Yaboot"
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Looking at packages already installed..."
msgstr ""
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
msgstr ""
-#: ../../standalone/drakboot:1
+#: ../../install_steps_interactive.pm_.c:505
#, c-format
-msgid "Splash selection"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
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
-#, c-format
-msgid "ISDN Configuration"
+#: ../../install_steps_interactive.pm_.c:541
+msgid ""
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "high"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Load from floppy"
msgstr ""
-#: ../../standalone/drakgw:1 ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Choose file"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Loading from floppy"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Summary: "
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Package selection"
msgstr ""
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Warning! An existing firewalling configuration has been detected. You may need some manual fixes after installation."
+#: ../../install_steps_interactive.pm_.c:552
+msgid "Insert a floppy containing package selection"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Photo Card Access on \"%s\""
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
+#: ../../install_steps_interactive.pm_.c:649
+msgid "Type of install"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:650
msgid ""
-"Do you want to enable printing on the printers mentioned above or on printers in the local network?\n"
-""
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer default settings"
+#: ../../install_steps_interactive.pm_.c:653
+msgid "With X"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, 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)"
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing old printer \"%s\"..."
+#: ../../install_steps_interactive.pm_.c:741
+msgid ""
+"If you have all the CDs in the list below, click Ok.\n"
+"If you have none of those CDs, click Cancel.\n"
+"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm_.c:746
#, c-format
-msgid "Select a device !"
+msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected server"
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../install_steps_interactive.pm_.c:776
#, c-format
-msgid "Sagem (using dhcp) usb"
+msgid ""
+"Installing package %s\n"
+"%d%%"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "French Southern Territories"
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
msgstr ""
-#: ../../standalone/drakups:1
+#: ../../install_steps_interactive.pm_.c:828
#, c-format
-msgid "Add an UPS device"
+msgid "Please insert the Boot floppy used in drive %s"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm_.c:834
#, c-format
-msgid "the vendor name of the processor"
+msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:861
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
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr ""
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"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 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
+#: ../../install_steps_interactive.pm_.c:876
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "To have more partitions, please delete one to be able to create an extended partition"
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
+#: ../../install_steps_interactive.pm_.c:923
+msgid "Hardware clock set to GMT"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Your system does not have enough space left for installation or upgrade (%d > %d)"
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:931
+msgid "NTP Server"
msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
+#: ../../install_steps_interactive.pm_.c:966
+msgid "No printer"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
+#: ../../install_steps_interactive.pm_.c:982
+msgid "Do you have an ISA sound card?"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet failed."
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Not connected"
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "No internet connection configured"
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
msgstr ""
-#: ../../mouse.pm:1 ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase your RW media (1st Session)"
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+msgid "NIS"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid ""
-"Monitor VertRefresh: %s\n"
-""
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+msgid "Windows Domain"
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
-#, c-format
-msgid "Mount point"
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+msgid "Local files"
msgstr ""
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
msgstr ""
-#: ../../standalone/drakperm:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "User :"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore system"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Select the network interface to configure:"
+#: ../../install_steps_interactive.pm_.c:1088
+msgid "Authentication LDAP"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines on which the locally connected scanner(s) should be available:"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
+#: ../../install_steps_interactive.pm_.c:1090
+msgid "LDAP Server"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Another one"
+#: ../../install_steps_interactive.pm_.c:1096
+msgid "Authentication NIS"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Colombia"
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1104
msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"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 ""
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
+#: ../../install_steps_interactive.pm_.c:1106
+msgid "Authentication Windows Domain"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
+#: ../../install_steps_interactive.pm_.c:1108
+msgid "Domain Admin User Name"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
+#: ../../install_steps_interactive.pm_.c:1144
+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\"."
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Synchronization tool"
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking your system..."
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print"
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:1167
#, c-format
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
+"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"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1173
msgid ""
-"Mounted\n"
-""
-msgstr ""
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS"
+"\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)."
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Interface"
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Users"
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../install_steps_interactive.pm_.c:1189
#, c-format
-msgid "Bitrate (in b/s)"
+msgid "Insert a floppy in %s"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Encryption key for %s"
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to recover your system?"
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1210
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 ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detected hardware"
-msgstr ""
-
-#: ../../standalone/drakups:1
-#, c-format
-msgid "Connected through a serial port or an usb cable"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
-msgstr ""
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Enabling swap partition %s"
-msgstr ""
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
+"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 to boot your machine"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1219
msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Find the solutions of your problems via MandrakeSoft's online support platform."
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
+#: ../../install_steps_interactive.pm_.c:1226
+msgid "Installing bootloader"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Monaco"
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../install_steps_interactive.pm_.c:1240
#, 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"
-msgstr ""
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr ""
-
-#: ../../fs.pm:1 ../../fs.pm:1 ../../fs.pm:1 ../../fs.pm:1 ../../fs.pm:1 ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr ""
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Canada (cable)"
-msgstr ""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Floppy creation completed"
+"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 ""
-#: ../../help.pm:1 ../../help.pm:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "Upgrade"
+msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1289
msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
-msgstr ""
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on USB"
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: ../../install_steps_interactive.pm_.c:1300
#, 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"
+"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"
-"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."
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "With basic documentation"
+#: ../../install_steps_interactive.pm_.c:1313
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
+#: ../../install_steps_interactive.pm_.c:1318
+msgid "Generate auto install floppy"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1320
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 ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr ""
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Eject tape after the backup"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Modify printer configuration"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
+"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/drakperm:1
-#, c-format
-msgid "Edit current rule"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Replay"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Average"
+#: ../../install_steps_interactive.pm_.c:1328
+msgid "Save packages selection"
msgstr ""
-#: ../../mouse.pm:1
+#: ../../install_steps_newt.pm_.c:20
#, c-format
-msgid "Please test the mouse"
+msgid "Mandrake Linux Installation %s"
msgstr ""
-#: ../../fs.pm:1
-#, c-format
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
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 ""
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr ""
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Sticky-bit"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other Media"
-msgstr ""
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Sector"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Qatar"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Base dn"
-msgstr ""
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select this package as there is not enough space left to install it"
-msgstr ""
-
-#: ../../help.pm:1
-#, c-format
-msgid "generate auto-install floppy"
-msgstr ""
-
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr ""
-
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr ""
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "The alert wizard had unexpectly failled:"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Malawi"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: false"
-msgstr ""
-
-#: ../../scanner.pm:1
-#, c-format
-msgid "Could not set permissions of firmware file %s!"
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "System settings"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr ""
-
-#: ../../services.pm:1
-#, c-format
-msgid "running"
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "class of hardware device"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "These are the machines and networks on which the locally connected printer(s) should be available:"
+#: ../../interactive.pm_.c:152
+msgid "Choose a file"
msgstr ""
-#: ../../lang.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "United Kingdom"
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Indonesia"
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
msgstr ""
-#: ../../standalone/draksec:1 ../../standalone/draksec:1
-#, c-format
-msgid "default"
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "France [SECAM]"
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+msgid "Next"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
msgstr ""
-#: ../../pkgs.pm:1
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "must have"
+msgid "Your choice? (default %s) "
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
-"CUPS does not support printers on Novell servers or printers sending the data into a free-formed command.\n"
-""
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-#: ../../lang.pm:1
+#: ../../interactive/stdio.pm_.c:70
#, c-format
-msgid "Senegal"
+msgid "Your choice? (0/1, default `%s') "
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm_.c:95
#, c-format
-msgid "Command line"
+msgid "Button `%s': %s"
msgstr ""
-#: ../advertising/08-store.pl:1
-#, 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:"
+#: ../../interactive/stdio.pm_.c:96
+msgid "Do you want to click on this button?"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "March"
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
msgstr ""
-#: ../../any.pm:1
+#: ../../interactive/stdio.pm_.c:105
#, c-format
-msgid "access to administrative files"
+msgid "Your choice? (default `%s'%s) "
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../interactive/stdio.pm_.c:123
#, c-format
-msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
+msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../fs.pm:1
-#, c-format
+#: ../../interactive/stdio.pm_.c:126
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 ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
-msgstr ""
-
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr ""
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom settings"
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: ../../interactive/stdio.pm_.c:139
#, 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."
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Other"
-msgstr ""
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Configure CUPS"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected host/network"
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Postfix is a Mail Transport Agent, which is the program that moves mail from one machine to another."
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Uzbek (cyrillic)"
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
msgstr ""
-#: ../../keyboard.pm:1
-#, 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)"
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Hotplugging"
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From CD"
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
msgstr ""
-#: ../../standalone/drakgw:1
-#, 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)."
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Please choose which network adapter you want to use to connect to Internet."
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
+#: ../../keyboard.pm_.c:167
+msgid "Albanian"
msgstr ""
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Enhance your computer performance with the help of a selection of partners offering professional solutions compatible with Mandrake Linux"
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
msgstr ""
-#: ../../standalone/drakups:1
-#, c-format
-msgid "About DrakUPS"
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latin American"
+#: ../../keyboard.pm_.c:178
+msgid "Bengali"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Japanese text printing mode"
+#: ../../keyboard.pm_.c:179
+msgid "Bulgarian (phonetic)"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Old device file"
+#: ../../keyboard.pm_.c:180
+msgid "Bulgarian (BDS)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
+#: ../../keyboard.pm_.c:184
+msgid "Bosnian"
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
-#, c-format
-msgid "Please wait"
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
msgstr ""
-#: ../../mouse.pm:1 ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "None"
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The entered IP is not correct.\n"
-""
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete selected printer"
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
msgstr ""
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"An error occured while deleting the \"%s\" network interface:\n"
-"\n"
-"%s"
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
msgstr ""
-#: ../../help.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
+#: ../../keyboard.pm_.c:196
+msgid "Dvorak (Swedish)"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
msgstr ""
-#: ../../standalone/drakgw:1
-#, 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)."
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
msgstr ""
-#: ../../standalone/drakgw:1
-#, 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."
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Minimal install"
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, 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"
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "disabled"
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Search for new scanners"
+#: ../../keyboard.pm_.c:218
+msgid "Latin American"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Disabling servers..."
+#: ../../keyboard.pm_.c:219
+msgid "Laotian"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
msgstr ""
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
-""
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup User files..."
+#: ../../keyboard.pm_.c:225
+msgid "Latvian"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternatively, you can specify a device name/file name in the input line"
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../security/help.pm:1
-#, 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."
+#: ../../keyboard.pm_.c:229
+msgid "Mongolian (cyrillic)"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Config..."
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Truly minimal install"
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
+#: ../../keyboard.pm_.c:239
+msgid "Romanian (qwertz)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
+#: ../../keyboard.pm_.c:240
+msgid "Romanian (qwerty)"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "(This) DHCP Server IP"
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
msgstr ""
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Test of the configuration"
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing %s ..."
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
msgstr ""
-#: ../../standalone/drakups:1
-#, c-format
-msgid "Port:"
+#: ../../keyboard.pm_.c:248
+msgid "Serbian (cyrillic)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Andorra"
+#: ../../keyboard.pm_.c:254
+msgid "Tajik keyboard"
msgstr ""
-#: ../../standalone/draksec:1
-#, c-format
-msgid "(default value: %s)"
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (Letter)"
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-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"
-""
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Choose an X server"
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/tree/mdk_totem:1
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
+#: ../../keyboard.pm_.c:263
+msgid "Yugoslavian (latin)"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No changes to backup!"
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Formatted\n"
-""
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Type of install"
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Automatic Steps Configuration"
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
msgstr ""
-#: ../advertising/02-community.pl:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid "Want to know more and to contribute to the Open Source community? Get involved in the Free Software world!"
+msgid "Circular mounts %s\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to backup..."
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
+#: ../../modules.pm_.c:290
msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
+#: ../../modules/parameters.pm_.c:18
+msgid "modinfo is not available"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
+#: ../../modules/parameters.pm_.c:50
+msgid "a number"
msgstr ""
-#: ../../standalone/drakgw:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "The DNS Server IP"
+msgid "%d comma separated numbers"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "IP Range End:"
+msgid "%d comma separated strings"
msgstr ""
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add a new printer to the system"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated strings"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+#: ../../mouse.pm_.c:33
+msgid "Generic PS2 Wheel Mouse"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printers"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation image directory"
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Port: %s"
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+msgid "Microsoft Explorer"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "To do so, you need to supply the firmware file for your scanner so that it can be installed."
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
msgstr ""
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
+#: ../../mouse.pm_.c:51
+msgid "serial"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "Auto-detect available ports"
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
msgstr ""
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Belgium"
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"The current security level is %s.\n"
-"Select permissions to see/edit"
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "sub generation of the cpu"
+#: ../../mouse.pm_.c:68
+msgid "busmouse"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Taiwan"
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
+#: ../../mouse.pm_.c:75
+msgid "none"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
msgstr ""
-#: ../../install_steps.pm:1 /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Importance: "
+#: ../../mouse.pm_.c:491
+msgid "To activate the mouse,"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
msgstr ""
-#: ../../standalone/drakperm:1 ../../standalone/drakperm:1
-#, c-format
-msgid "Permissions"
+#: ../../my_gtk.pm_.c:65
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, 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'."
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "Floppy Disk"
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection type: "
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Graphical interface"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
msgstr ""
-#: ../../Xconfig/card.pm:1 ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:30
msgid ""
-"Monitor HorizSync: %s\n"
-""
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Interval cron not available as non-root"
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-#: ../../standalone/drakperm:1 ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
+#: ../../network/adsl.pm_.c:166
+msgid ""
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
+#: ../../network/drakfirewall.pm_.c:12
+msgid "Web Server"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../network/drakfirewall.pm_.c:17
+msgid "Domain Name Server"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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?"
+#: ../../network/drakfirewall.pm_.c:32
+msgid "Mail Server"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
+#: ../../network/drakfirewall.pm_.c:37
+msgid "POP and IMAP Server"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add host"
+#: ../../network/drakfirewall.pm_.c:111
+msgid "No network card"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:129
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"
+"drakfirewall configurator\n"
"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-#: ../../any.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:135
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"
+"drakfirewall configurator\n"
"\n"
-"\"Custom\" permit a per-user granularity.\n"
-""
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/tree/mdk_totem:1
-#, c-format
-msgid "No CDROM support"
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Wireless connection"
+#: ../../network/drakfirewall.pm_.c:153
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-#: ../../standalone/drakxtv:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
-msgid "China (broadcast)"
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use quota for backup files."
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer \"%s\"..."
+#: ../../network/drakfirewall.pm_.c:169
+msgid "Other ports"
msgstr ""
-#: ../../fs.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:37
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."
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, 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:"
+#: ../../network/ethernet.pm_.c:88
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection"
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:93
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
+"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:201
msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount point\n"
-""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"You must enter a host name or an IP address.\n"
-""
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
msgstr ""
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Netherlands"
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+msgid "Network Configuration Wizard"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files by FTP"
+#: ../../network/isdn.pm_.c:22
+msgid "External ISDN modem"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s) which currently uses \"%s\""
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Title"
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install & convert Fonts"
+#: ../../network/isdn.pm_.c:45
+msgid ""
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
+#: ../../network/isdn.pm_.c:54
+msgid "New configuration (isdn-light)"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
+#: ../../network/isdn.pm_.c:54
+msgid "Old configuration (isdn4net)"
msgstr ""
-#: ../../standalone/drakups:1
-#, c-format
-msgid "The name of your ups"
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "replay"
+#: ../../network/isdn.pm_.c:166
+msgid ""
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Expect is an extension to the Tcl scripting language that allows interactive sessions without user intervention."
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol (EDSS1)"
msgstr ""
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
+#: ../../network/isdn.pm_.c:181
+msgid "Protocol for the rest of the world"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/isdn.pm_.c:181
msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid "Pipe into command"
+msgid "Found \"%s\" interface do you want to use it ?"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom allows you to specify your own day and time. The other options use run-parts in /etc/crontab."
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/isdn.pm_.c:210
msgid ""
-"Description of the fields:\n"
"\n"
-""
-msgstr ""
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Basic options"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept bogus IPv4 error messages"
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
msgstr ""
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
+#: ../../network/isdn.pm_.c:239
+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 ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Insert a floppy containing package selection"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server: "
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
msgstr ""
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Alerts:"
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
msgstr ""
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Master"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Other ports"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
msgstr ""
-#: ../../network/adsl.pm:1 ../../network/adsl.pm:1 ../../network/adsl.pm:1
-#, c-format
-msgid " - detected"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection timeout (in sec)"
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+msgid "First DNS Server (optional)"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Some of the early i486DX-100 chips cannot reliably return to operating mode after the \"halt\" instruction is used"
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+msgid "Second DNS Server (optional)"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Croatian"
+#: ../../network/modem.pm_.c:95
+msgid ""
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-#: ../../help.pm:1
+#: ../../network/modem.pm_.c:97
#, c-format
-msgid "Use existing partition"
+msgid ""
+"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Auto"
+#: ../../network/modem.pm_.c:97
+msgid "Do nothing"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Unable to contact mirror %s"
+#: ../../network/modem.pm_.c:97
+msgid "Install rpm"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
+#: ../../network/modem.pm_.c:97
+msgid "Title"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
+#: ../../network/netconnect.pm_.c:29
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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?"
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can reconfigure your connection."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS printer configuration"
+#: ../../network/netconnect.pm_.c:29
+msgid "You are currently connected to internet."
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
+#: ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
+#: ../../network/netconnect.pm_.c:32
+msgid "You are not currently connected to Internet."
msgstr ""
-#: ../../Xconfig/card.pm:1 ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
+#: ../../network/netconnect.pm_.c:36
+msgid "Connect"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Domain Name:"
+#: ../../network/netconnect.pm_.c:37
+msgid "Disconnect"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Root umask"
+#: ../../network/netconnect.pm_.c:38
+msgid "Configure the connection"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "On Floppy"
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
msgstr ""
-#: ../../security/l10n.pm:1
+#: ../../network/netconnect.pm_.c:94
#, c-format
-msgid "Reboot by the console user"
+msgid "We are now going to configure the %s connection."
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm_.c:103
#, c-format
-msgid "Restore"
+msgid ""
+"\n"
+"\n"
+"\n"
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press OK to continue."
msgstr ""
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Server:"
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
+#: ../../network/netconnect.pm_.c:133
+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 ""
-#: ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
+#: ../../network/netconnect.pm_.c:157
+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 ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
+#: ../../network/netconnect.pm_.c:163
+msgid "Choose the profile to configure"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection complete."
+#: ../../network/netconnect.pm_.c:214
+msgid "Normal modem connection"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../network/netconnect.pm_.c:214
#, c-format
-msgid "Remove from RAID"
+msgid "detected on port %s"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
+#: ../../network/netconnect.pm_.c:215
+msgid "Winmodem connection"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Configuration Wizards"
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+msgid "detected"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:216
msgid "ISDN connection"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid "CD-R / DVD-R"
+msgid "detected %s"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
+#: ../../network/netconnect.pm_.c:217
+msgid "ADSL connection"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
+#: ../../network/netconnect.pm_.c:218
+msgid "Cable connection"
msgstr ""
-#: ../../help.pm:1
-#, 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"
-"!!"
+#: ../../network/netconnect.pm_.c:218
+msgid "cable connection detected"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Netwok name (ESSID)"
+#: ../../network/netconnect.pm_.c:219
+msgid "LAN connection"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Niue"
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
+#: ../../network/netconnect.pm_.c:222
+msgid "Choose the connection you want to configure"
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:246
msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-
-#: ../../standalone/drakups:1
-#, c-format
-msgid "Action"
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, 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)"
+#: ../../network/netconnect.pm_.c:247
+msgid "Internet connection"
msgstr ""
-#: ../../pkgs.pm:1
-#, c-format
-msgid "important"
+#: ../../network/netconnect.pm_.c:253
+msgid "Do you want to start the connection at boot?"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Mandrake Linux Printer Management Tool"
+#: ../../network/netconnect.pm_.c:267
+msgid "Network configuration"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
msgstr ""
-#: ../../help.pm:1
+#: ../../network/netconnect.pm_.c:272
#, 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"
+"A problem occured while restarting the network: \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 ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr ""
-
-#: ../../standalone/drakups:1
-#, c-format
-msgid "Name:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr ""
-
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
-
-#: ../../any.pm:1 ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
+"%s"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:282
msgid ""
-"Examples for correct IPs:\n"
-""
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the media for backup."
+#: ../../network/netconnect.pm_.c:286
+msgid ""
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Frequency (MHz)"
+#: ../../network/netconnect.pm_.c:287
+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 ""
-#: ../../install_any.pm:1
-#, c-format
-msgid "To use this saved packages selection, boot installation with ``linux defcfg=floppy''"
+#: ../../network/network.pm_.c:278
+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 ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of the processor"
+#: ../../network/network.pm_.c:283
+msgid ""
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "Hardware clock set to GMT"
+msgid "Configuring network device %s"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../network/network.pm_.c:294
#, c-format
-msgid "Do you want to start a new configuration ?"
+msgid " (driver %s)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Give a file name"
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the port that your printer is connected to."
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
msgstr ""
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
+#: ../../network/network.pm_.c:299
+msgid "Start at boot"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../network/network.pm_.c:326
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 ""
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr ""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "force"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Exit"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NOTE: Depending on the printer model and the printing system up to %d MB of additional software will be installed."
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Iwpriv command extra arguments"
-msgstr ""
-
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../network/network.pm_.c:330
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/network.pm_.c:350
msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ALL"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Clients"
-msgstr ""
-
-#: ../../network/netconnect.pm:1 ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Choose the network interface"
+"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 ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select firmware file for the %s"
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
msgstr ""
-#: ../../printer/detect.pm:1 ../../printer/detect.pm:1 ../../printer/detect.pm:1 ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "Unknown Model"
+msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-""
+#: ../../network/network.pm_.c:363
+msgid "DNS server address should be in format 1.2.3.4"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
+#: ../../network/network.pm_.c:367
+msgid "Gateway address should be in format 1.2.3.4"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image"
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
msgstr ""
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You may not be able to install lilo (since lilo doesn't handle a LV on multiple PVs)"
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Updating package selection"
+#: ../../network/network.pm_.c:388
+msgid "Url should begin with 'ftp:' or 'http:'"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../network/shorewall.pm_.c:27
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr ""
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
+#: ../../network/tools.pm_.c:58
+msgid "Do you want to try to connect to the Internet now?"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup other files"
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+msgid "Testing your connection..."
msgstr ""
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
+#: ../../network/tools.pm_.c:70
+msgid "The system is now connected to Internet."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
+#: ../../network/tools.pm_.c:72
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: thin"
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
msgstr ""
-#: ../../fsedit.pm:1
-#, 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"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Alert configuration"
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
msgstr ""
-#: ../../help.pm:1
-#, 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:\")."
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+msgid "Provider dns 1 (optional)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+msgid "Provider dns 2 (optional)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
+#: ../../network/tools.pm_.c:109
+msgid "Choose your country"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-""
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "custom"
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+msgid "Connection speed"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Content of the file"
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+msgid "Connection timeout (in sec)"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Palestine"
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../partition_table.pm_.c:685
msgid ""
-"RAID md%s\n"
-""
-msgstr ""
-
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Here is the full list of keyboards available"
+"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 ""
-#: ../../standalone/draksplash:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "Theme name"
+msgid "Restoring from file %s failed: %s"
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
-#, c-format
-msgid "/_Help"
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: ../../partition_table.pm_.c:796
#, c-format
-msgid "Choosing an arbitrary driver"
+msgid "Error writing to file %s"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
-#, c-format
+#: ../../partition_table/raw.pm_.c:192
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."
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
+#: ../../pkgs.pm_.c:26
+msgid "must have"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, 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."
+#: ../../pkgs.pm_.c:27
+msgid "important"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the width of the progress bar"
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
msgstr ""
-#: ../../fs.pm:1 ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
+#: ../../pkgs.pm_.c:29
+msgid "nice"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hostname required"
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselect fonts installed"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit kernel version"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
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
-#, c-format
-msgid "Cancel"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for configured scanners ..."
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Videocard"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\tBackups use tar and bzip2\n"
-""
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Remove Selected"
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _modems"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+msgid "Unknown Model"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove printer"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Last Log"
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
+#: ../../printer/main.pm_.c:28
+msgid "Printer on remote CUPS server"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Connection Type"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+msgid "Printer on remote lpd server"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-""
+#: ../../printer/main.pm_.c:30
+msgid "Network printer (TCP/Socket)"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1 ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1 ../../standalone/drakperm:1
-#, c-format
-msgid "Other"
+#: ../../printer/main.pm_.c:31
+msgid "Printer on SMB/Windows 95/98/NT server"
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
+#: ../../printer/main.pm_.c:32
+msgid "Printer on NetWare server"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+msgid "Enter a printer device URI"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter a package name."
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run chkrootkit checks"
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
msgstr ""
-#: ../../standalone/drakfont:1 ../../standalone/drakfont:1
-#, c-format
-msgid "type1inst building"
+#: ../../printer/main.pm_.c:317
+msgid "Local Printers"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Abiword"
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+msgid "Remote Printers"
msgstr ""
-#: ../../standalone/draksplash:1 ../../standalone/draksplash:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid "choose image file"
+msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid "X server"
+msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../any.pm:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid "Domain Admin User Name"
+msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "There was an error while scanning for TV channels"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Not installed"
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../printer/main.pm_.c:344
#, c-format
-msgid "Both Alt keys simultaneously"
+msgid ", printing to %s"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../printer/main.pm_.c:346
#, c-format
-msgid "LAN connection"
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../standalone/logdrake:1
+#: ../../printer/main.pm_.c:348
#, c-format
-msgid "/File/-"
+msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid "Italian"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../interactive.pm:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid "Basic"
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../install_messages.pm:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
+msgid ", using command %s"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Honduras"
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
msgstr ""
-#: ../../help.pm:1 ../../help.pm:1
+#: ../../printer/main.pm_.c:647
#, c-format
-msgid "pdq"
+msgid "(on %s)"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO"
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: ../../printer/main.pm_.c:674
#, c-format
-msgid "Samba server"
+msgid "On CUPS server \"%s\""
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-""
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Please choose for each step whether it will replay like your install, or it will be manual"
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "You can also decide here whether scanners on remote machines should be made available on this machine."
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:30
msgid ""
-"\t-Network by FTP.\n"
-""
+"\n"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reports check result to tty"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must enter a device or file name!"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+msgid "CUPS configuration"
msgstr ""
-#: ../../standalone/drakups:1 ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Quit"
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+msgid "Specify CUPS server"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:83
msgid ""
-"Graphics memory: %s kB\n"
-""
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:84
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 ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to compilation tools"
-msgstr ""
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Global statistics"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to restore..."
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, 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"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Standard test page"
-msgstr ""
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Time Zone"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create"
+#: ../../printer/printerdrake.pm_.c:88
+msgid "The IP address should look like 192.168.1.20"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "What"
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
+#: ../../printer/printerdrake.pm_.c:99
+msgid "CUPS server IP"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (BDS)"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Server"
+#: ../../printer/printerdrake.pm_.c:102
+msgid "Automatic CUPS configuration"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem encryption key"
+#: ../../printer/printerdrake.pm_.c:159
+msgid "Checking your system..."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+msgid "Printerdrake"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:167
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."
+"There are no printers found which are directly connected to your machine"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:179
msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
+"The following printers\n"
+"\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:180
msgid ""
+"The following printer\n"
"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
-""
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Save theme"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr ""
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install"
+#: ../../printer/printerdrake.pm_.c:182
+msgid ""
+"\n"
+"and one unknown printer are "
msgstr ""
-#: ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
+#: ../../printer/printerdrake.pm_.c:184
#, c-format
-msgid "Network Configuration Wizard"
+msgid ""
+"\n"
+"and %d unknown printers are "
msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"are "
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Printing"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"is "
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save:"
+#: ../../printer/printerdrake.pm_.c:189
+msgid "directly connected to your system"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "There are no printers found which are directly connected to your machine"
+#: ../../printer/printerdrake.pm_.c:192
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:194
#, c-format
-msgid "Create a new partition"
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
msgstr ""
-#: ../../harddrake/sound.pm:1 ../../harddrake/sound.pm:1 ../../standalone/drakups:1
-#, c-format
-msgid "Driver:"
+#: ../../printer/printerdrake.pm_.c:200
+msgid " (Make sure that all your printers are connected and turned on).\n"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
+#: ../../printer/printerdrake.pm_.c:214
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
+#: ../../printer/printerdrake.pm_.c:215
+msgid "Do you want to enable printing on printers in the local network?\n"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Services settings"
+#: ../../printer/printerdrake.pm_.c:217
+msgid "Do you want to enable printing on the printers mentioned above?\n"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
msgstr ""
-#: ../../standalone/net_monitor:1 ../../standalone/net_monitor:1
+#: ../../printer/printerdrake.pm_.c:219
#, c-format
-msgid "sent: "
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Automatic IP"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+msgid "Add a new printer"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:259
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"
+"Welcome to the Printer Setup Wizard\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"
+"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"
-" Note that two different options are available after clicking the button:\n"
+"It asks you for all necessary information to set up the printer and gives "
+"you access to all available printer drivers, driver options, and printer "
+"connection types."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:272
+msgid ""
"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\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"
-" 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"
+"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) and you Windows machines must be connected and "
+"turned on.\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"
+"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"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Moldova"
-msgstr ""
-
-#: ../../mouse.pm:1 ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuration of a remote printer"
-msgstr ""
-
-#: ../../standalone/drakups:1
-#, c-format
-msgid "Welcome to the UPS configuration tools"
-msgstr ""
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Oriya"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a new rule at the end"
-msgstr ""
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You can also decide here whether printers on remote machines should be automatically made available on this machine."
-msgstr ""
-
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
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 ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr ""
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetScroll"
-msgstr ""
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "Installing packages..."
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Hard Drive"
-msgstr ""
-
-#: ../../standalone/drakups:1
-#, c-format
-msgid "Access Control Lists"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dutch"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Angola"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"The following packages need to be installed:\n"
-""
-msgstr ""
-
-#: ../../standalone/drakups:1
-#, c-format
-msgid "The driver that manage your ups"
-msgstr ""
-
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr ""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
-msgstr ""
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
-msgstr ""
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If it is not the one you want to configure, enter a device name/file name in the input line"
+"\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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../standalone/draksound:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:289
msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-supported Sound Card is correctly plugged in.\n"
"\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"You can visit our hardware database at:\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"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Local Area Network..."
+#: ../../printer/printerdrake.pm_.c:307
+msgid "Auto-detect printers connected to this machine"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
+#: ../../printer/printerdrake.pm_.c:329
+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."
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run some checks against the rpm database"
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Printer auto-detection"
msgstr ""
-#: ../../standalone/drakperm:1
+#: ../../printer/printerdrake.pm_.c:385
#, c-format
-msgid "Execute"
+msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:387
#, c-format
-msgid "Preparing printer database..."
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:391
#, c-format
-msgid "Information"
+msgid "Detected %s"
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "No network card"
+msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../mouse.pm:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "3 buttons"
+msgid "USB printer \\/*%s"
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
+#: ../../printer/printerdrake.pm_.c:399
#, c-format
-msgid "Which filesystem do you want?"
+msgid "Network printer \"%s\", port %s"
msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:401
#, c-format
-msgid "Malta"
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Detailed information"
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+msgid "Local Printer"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:526
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"
+"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 ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This option will save files that have changed. Exact behavior depends on whether incremental or differential mode is used."
-msgstr ""
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Graphic Card"
-msgstr ""
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing Windows partition"
+#: ../../printer/printerdrake.pm_.c:530
+msgid "You must enter a device or file name!"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
+#: ../../printer/printerdrake.pm_.c:539
+msgid "No printer found!"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
+#: ../../printer/printerdrake.pm_.c:548
+msgid "Available printers"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:552
msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finnish)"
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../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
-#, c-format
-msgid "Close"
-msgstr ""
-
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:553
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"
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:555
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"
-msgstr ""
-
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr ""
-
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
-msgstr ""
-
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Ext2"
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
msgstr ""
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr ""
-
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:556
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
-"\n"
-"It has been reported to oops the kernel on unloading.\n"
-"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Expert Mode"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Local Network adress"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr ""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the user umask."
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:558
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 ?"
+"Please choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Samba Server"
+#: ../../printer/printerdrake.pm_.c:559
+msgid "Please choose the port where your printer is connected to."
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr ""
-
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet:"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zimbabwe"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "When"
-msgstr ""
-
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:561
msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
+" (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
-#, c-format
-msgid "Hour"
+#: ../../printer/printerdrake.pm_.c:565
+msgid "You must choose/enter a printer/device!"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Second DNS Server (optional)"
+#: ../../printer/printerdrake.pm_.c:584
+msgid "Manual configuration"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Finland"
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:634
msgid ""
-"Color depth: %s\n"
-""
-msgstr ""
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It must be upgraded"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Timezone - DrakClock"
+#: ../../printer/printerdrake.pm_.c:635
+msgid "Remote host name"
msgstr ""
-#: ../../standalone/drakups:1
-#, c-format
-msgid "DrakUPS"
+#: ../../printer/printerdrake.pm_.c:636
+msgid "Remote printer name"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
+#: ../../printer/printerdrake.pm_.c:639
+msgid "Remote host name missing!"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
+#: ../../printer/printerdrake.pm_.c:643
+msgid "Remote printer name missing!"
msgstr ""
-#: ../../standalone/mousedrake:1
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
#, c-format
-msgid "Mouse test"
+msgid "Detected model: %s %s"
msgstr ""
-#: ../../standalone/drakperm:1
-#, 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."
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Scanning network..."
msgstr ""
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
+msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
#, c-format
-msgid "- PCI and USB devices: this lists the vendor, device, subvendor and subdevice PCI/USB ids"
+msgid "Printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "ProgressBar color selection"
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
msgstr ""
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:796
msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
+"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 ""
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hda"
-msgstr ""
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hdb"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Iwspy command extra arguments"
-msgstr ""
-
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:797
msgid ""
-"Application Name\n"
-"or Full Path:"
+" 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 ""
-#: ../../services.pm:1
-#, 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."
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing SANE packages..."
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
msgstr ""
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
+#: ../../printer/printerdrake.pm_.c:806
+msgid "Auto-detected"
msgstr ""
-#: ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Change type"
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
msgstr ""
-#: ../../install_messages.pm:1
+#: ../../printer/printerdrake.pm_.c:827
#, c-format
msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
+"You are about to set up printing to a Windows account with password. Due to "
+"a fault in the architecture of the Samba client software the password is put "
+"in clear text into the command line of the Samba client used to transmit the "
+"print job to the Windows server. So it is possible for every user on this "
+"machine to display the password on the screen by issuing commands as \"ps "
+"auxwww\".\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"
-"For information on fixes which are available for this release of Mandrake Linux,\n"
-"consult the Errata available from:\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"
-"%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/drakclock:1
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "paranoid"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Do not send mails when unneeded"
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
msgid ""
-"This command you can also use in the \"Printing command\" field of the printing dialogs of many applications. But here do not supply the file name because the file to print is provided by the application.\n"
-""
-msgstr ""
-
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolution"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
+"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 ""
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enabling su only from members of the wheel group or allow su from any user."
+#: ../../printer/printerdrake.pm_.c:840
+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 ""
-#: ../../standalone/drakgw:1 ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
msgstr ""
-#: ../../Xconfig/card.pm:1 ../../Xconfig/card.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:912
msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+"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 ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell timeout"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Xinetd Service"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "access to network tools"
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
msgstr ""
-#: ../advertising/03-software.pl:1
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, 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 ", host \"%s\", port %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
-msgid "Here is a list of all auto-detected printers. "
+msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+#: ../../printer/printerdrake.pm_.c:1030
+msgid "TCP/Socket Printer Options"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1032
msgid ""
-"Restore Selected\n"
-"Files"
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1033
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."
+"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
-#, c-format
-msgid "Please fill or check the field below"
+#: ../../printer/printerdrake.pm_.c:1037
+msgid "Printer host name or IP missing!"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
+#: ../../printer/printerdrake.pm_.c:1059
+msgid "Printer host name or IP"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1108
msgid ""
-"LVM-disks %s\n"
-""
-msgstr ""
-
-#: ../../services.pm:1
-#, c-format
-msgid "On boot"
+"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 ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus identification"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vatican"
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please make a backup of your data first"
+#: ../../printer/printerdrake.pm_.c:1463
+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 ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ADSL adapters"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Eritrea"
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot ISO"
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+msgid "Reading printer database..."
msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Firmware needed"
+#: ../../printer/printerdrake.pm_.c:1482
+msgid "Preparing printer database..."
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove List"
+#: ../../printer/printerdrake.pm_.c:1578
+msgid "Your printer model"
msgstr ""
-#: ../advertising/05-desktop.pl:1
+#: ../../printer/printerdrake.pm_.c:1579
#, c-format
-msgid "A customizable environment"
+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 ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+msgid "The model is correct"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, 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."
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+msgid "Select model manually"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
+#: ../../printer/printerdrake.pm_.c:1606
+msgid "Printer model selection"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1607
msgid "Which printer model do you have?"
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
-#, c-format
-msgid "Add a new printer"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " All of your selected data have been "
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Delete"
-msgstr ""
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "chunk size"
-msgstr ""
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1608
msgid ""
-"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
"\n"
-"If set to NONE, no issues are allowed.\n"
"\n"
-"Else only /etc/issue is allowed."
-msgstr ""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-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
-#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr ""
-
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr ""
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
-msgstr ""
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh"
-msgstr ""
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Reload partition table"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
+#: ../../printer/printerdrake.pm_.c:1611
+msgid ""
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Selected"
+#: ../../printer/printerdrake.pm_.c:1697
+msgid "OKI winprinter configuration"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
+#: ../../printer/printerdrake.pm_.c:1698
+msgid ""
+"You are configuring an OKI laser winprinter. These printers\n"
+"use a very special communication protocol and therefore they work only when "
+"connected to the first parallel port. When your printer is connected to "
+"another port or to a print server box please connect the printer to the "
+"first parallel port before you print a test page. Otherwise the printer will "
+"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+msgid "Lexmark inkjet configuration"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Boot"
+#: ../../printer/printerdrake.pm_.c:1719
+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 ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " and the CD is in the drive"
+#: ../../printer/printerdrake.pm_.c:1746
+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 ""
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Tuner type:"
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1750
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"
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\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"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\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"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\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."
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1972
msgid ""
+"Printer default settings\n"
"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer model correctly. Find the correct model in the list when a wrong model or \"Raw printer\" is highlighted."
+"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/draksec:1
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid "Security Administrator:"
+msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
+msgid "Option %s must be a number!"
msgstr ""
-#: ../../network/tools.pm:1
+#: ../../printer/printerdrake.pm_.c:1989
#, c-format
-msgid "Firmware copy succeeded"
+msgid "Option %s out of range!"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/tree/mdk_totem:1
+#: ../../printer/printerdrake.pm_.c:2028
#, c-format
msgid ""
-"You can't use another CDROM when the following programs are running: \n"
-"%s"
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
+#: ../../printer/printerdrake.pm_.c:2051
+msgid "Test pages"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2052
msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Fonts copy"
+"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 ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
+#: ../../printer/printerdrake.pm_.c:2056
+msgid "No test pages"
msgstr ""
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
+#: ../../printer/printerdrake.pm_.c:2057
+msgid "Print"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/GIMP."
+#: ../../printer/printerdrake.pm_.c:2114
+msgid "Standard test page"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save packages selection"
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../standalone/printerdrake:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Actions"
+#: ../../printer/printerdrake.pm_.c:2120
+msgid "Alternative test page (A4)"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Remove the last item"
+#: ../../printer/printerdrake.pm_.c:2122
+msgid "Photo test page"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
+#: ../../printer/printerdrake.pm_.c:2126
+msgid "Do not print any test page"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../printer/printerdrake.pm_.c:2159
#, c-format
-msgid "use pptp"
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
msgstr ""
-#: ../../services.pm:1 ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
+#: ../../printer/printerdrake.pm_.c:2163
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check files/directories writable by everybody"
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Learn how to use this printer"
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+msgid "Raw printer"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
-msgid "Configure the network now"
+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 ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
+#: ../../printer/printerdrake.pm_.c:2218
+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 ""
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, c-format
msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
+"\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 ""
-#: ../../install_steps_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
#, c-format
-msgid "Size: "
+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\n"
+"\n"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
+#: ../../printer/printerdrake.pm_.c:2228
+msgid ""
+"Here is a list of the available printing options for the current printer:\n"
+"\n"
msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, c-format
-msgid "Bahamas"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Do you want to click on this button?"
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
+msgid ""
+"This command you can also use in the \"Printing command\" field of the "
+"printing dialogs of many applications. But here do not supply the file name "
+"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakups:1
-#, c-format
-msgid "Manual configuration"
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
+msgid ""
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
msgstr ""
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:2253
#, 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."
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "search"
+#: ../../printer/printerdrake.pm_.c:2257
+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 ""
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm_.c:2261
#, c-format
-msgid "Xpmac (installation display driver)"
+msgid ""
+"\n"
+"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
+"a particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../printer/printerdrake.pm_.c:2271
#, c-format
-msgid "Zeroconf host name must not contain a ."
+msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr ""
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2272
#, c-format
-msgid " Accept/Refuse icmp echo."
+msgid "Printing/Scanning on \"%s\""
msgstr ""
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:2274
#, 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 "Printing/Photo Card Access on \"%s\""
msgstr ""
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:2275
#, c-format
-msgid "Unknown/Others"
+msgid "Printing on the printer \"%s\""
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+msgid "Close"
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
-#, c-format
-msgid "Options"
+#: ../../printer/printerdrake.pm_.c:2281
+msgid "Print option list"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2301
#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
+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!"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2322
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."
+"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 ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+msgid "Reading printer data..."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detected"
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+msgid "Transfer printer configuration"
msgstr ""
-#: ../../standalone/drakpxe:1
+#: ../../printer/printerdrake.pm_.c:2365
#, 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)."
+"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 ""
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2368
msgid ""
-"OSS (Open Sound System) was the first sound API. It's an OS independent sound API (it's available on most UNIX(tm) systems) but it's a very basic and limited API.\n"
-"What's more, OSS drivers all reinvent the wheel.\n"
-"\n"
-"ALSA (Advanced Linux Sound Architecture) is a modularized architecture which\n"
-"supports quite a large range of ISA, USB and PCI cards.\n"
-"\n"
-"It also provides a much higher API than OSS.\n"
-"\n"
-"To use alsa, one can either use:\n"
-"- the old compatibility OSS api\n"
-"- the new ALSA api that provides many enhanced features but requires using the ALSA library.\n"
-""
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No free space for 1MB bootstrap! Install will continue, but to boot your system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "It is possible that your %s needs its firmware to be uploaded everytime when it is turned on."
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the printer you want to set up or enter a device name/file name in the input line"
+#: ../../printer/printerdrake.pm_.c:2370
+msgid ""
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2374
msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
msgstr ""
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
+#: ../../printer/printerdrake.pm_.c:2375
+msgid ""
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
+#: ../../printer/printerdrake.pm_.c:2376
+msgid ""
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid "Creating and formatting file %s"
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2392
#, 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"
-""
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing LVM to add to"
+"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/drakfont:1
-#, c-format
-msgid "xfs restart"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
+#: ../../printer/printerdrake.pm_.c:2413
+msgid "New printer name"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "No partition available"
+msgid "Transferring %s..."
msgstr ""
-#: ../../standalone/printerdrake:1
+#: ../../printer/printerdrake.pm_.c:2427
#, c-format
msgid ""
-"Printer Management \n"
-""
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Domain Name Resolver"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
+#: ../../printer/printerdrake.pm_.c:2437
+msgid "Refreshing printer data..."
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+msgid "Configuration of a remote printer"
msgstr ""
-#: ../../standalone/drakups:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Detection in progress"
+#: ../../printer/printerdrake.pm_.c:2446
+msgid "Starting network..."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+msgid "Configure the network now"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
+#: ../../printer/printerdrake.pm_.c:2480
+msgid "Network functionality not configured"
msgstr ""
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2481
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"
-""
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
+"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 ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
+#: ../../printer/printerdrake.pm_.c:2484
+msgid "Go on without configuring the network"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2518
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer sharing on hosts/networks: "
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2519
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>\". "
+"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 ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Receiving\n"
-"speed:"
+#: ../../printer/printerdrake.pm_.c:2529
+msgid "Restarting printing system..."
msgstr ""
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "DrakClock"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "high"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, 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."
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "paranoid"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
+msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2570
#, c-format
msgid ""
+"You are about to install the printing system %s on a system running in the %"
+"s security level.\n"
"\n"
-"- Daemon, %s via:\n"
-""
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belize"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Searching for new printers..."
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
+"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 ""
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
+#: ../../printer/printerdrake.pm_.c:2604
+msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm_.c:2605
#, 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."
+"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 ""
-#: ../../security/help.pm:1
-#, c-format
-msgid " Activate/Disable daily security check."
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2630
#, c-format
-msgid ""
-"\t-CD-R.\n"
-""
+msgid "Removing %s ..."
msgstr ""
-#: ../../security/l10n.pm:1
+#: ../../printer/printerdrake.pm_.c:2636
#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
+msgid "Installing %s ..."
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
+#: ../../printer/printerdrake.pm_.c:2685
+msgid "Select Printer Spooler"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
+#: ../../printer/printerdrake.pm_.c:2686
+msgid "Which printing system (spooler) do you want to use?"
msgstr ""
-#: ../../network/isdn.pm:1
+#: ../../printer/printerdrake.pm_.c:2720
#, c-format
-msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+msgid "Configuring printer \"%s\"..."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
+#: ../../printer/printerdrake.pm_.c:2731
+msgid "Installing Foomatic..."
msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use my Windows partition"
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
+#: ../../printer/printerdrake.pm_.c:2810
+msgid "Preparing Printerdrake..."
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Server"
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+msgid "Configuring applications..."
msgstr ""
-#: ../../services.pm:1
-#, 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."
+#: ../../printer/printerdrake.pm_.c:2845
+msgid "Would you like to configure printing?"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose your country"
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2915
msgid ""
-"\n"
-"- System Files:\n"
-""
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
-#: ../../standalone/drakbug:1 ../../standalone/drakbug:1 ../../standalone/drakbug:1 ../../standalone/drakbug:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
+#: ../../printer/printerdrake.pm_.c:2916
+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/drakbackup:1
-#, c-format
-msgid "Where"
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "but not matching"
+#: ../../printer/printerdrake.pm_.c:2960
+msgid "Change the printing system"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Here you can select an alternative driver (either OSS or ALSA) for your sound card (%s)."
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+msgid "Normal Mode"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+msgid "Do you want to configure another printer?"
msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "kdesu missing"
+#: ../../printer/printerdrake.pm_.c:3211
+msgid "Modify printer configuration"
msgstr ""
-#: ../../standalone/drakTermServ:1 ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm_.c:3213
#, c-format
msgid ""
-"%s: %s requires a username...\n"
-""
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Encryption key"
-msgstr ""
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft IntelliMouse"
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
-#: ../../keyboard.pm:1
-#, 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."
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+msgid "Printer connection type"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Automatic"
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+msgid "Printer name, description, location"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
msgid "Set this printer as the default"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr ""
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr ""
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Paranoid"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "NIS"
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Del User"
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Location on the bus"
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+msgid "Print test pages"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No printer found!"
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+msgid "Know how to use this printer"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+msgid "Remove printer"
msgstr ""
-#: ../../help.pm:1 ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:3282
#, c-format
-msgid "Erase entire disk"
+msgid "Removing old printer \"%s\"..."
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
-#, c-format
-msgid " (Default)"
+#: ../../printer/printerdrake.pm_.c:3307
+msgid "Default printer"
msgstr ""
-#: ../../standalone/drakgw:1
+#: ../../printer/printerdrake.pm_.c:3308
#, c-format
-msgid "Automatic reconfiguration"
+msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:3312
#, c-format
-msgid "No Ip"
+msgid ""
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
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
+#: ../../printer/printerdrake.pm_.c:3313
#, c-format
-msgid "<- Previous"
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Transfer Now"
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:3317
#, c-format
-msgid "Set root password and network authentication methods"
+msgid ""
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../ugtk2.pm:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
-msgid "Toggle between flat and group sorted"
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../standalone/drakboot:1
+#: ../../printer/printerdrake.pm_.c:3325
#, c-format
-msgid "Themes"
+msgid "Do you really want to remove the printer \"%s\"?"
msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:3329
#, c-format
-msgid "Options: %s"
+msgid "Removing printer \"%s\"..."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../raid.pm_.c:35
#, c-format
-msgid "OKI winprinter configuration"
+msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Parallel port #%s"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../raid.pm_.c:153
#, c-format
-msgid "Security Level"
+msgid "Not enough partitions for RAID level %d\n"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../security/main.pm_.c:36
msgid ""
-"Some steps are not completed.\n"
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
"\n"
-"Do you really want to quit now?"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
+"\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\n"
+"\n"
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
+"\n"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../security/main.pm_.c:77
#, c-format
-msgid "Polish (qwertz layout)"
+msgid " (default value: %s)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
+#: ../../security/main.pm_.c:113
+msgid "Security Alerts:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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?"
+#: ../../security/main.pm_.c:115
+msgid "Security Administrator:"
msgstr ""
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
-#, 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"
-""
+#: ../../security/main.pm_.c:128
+msgid "Network Options"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
+#: ../../security/main.pm_.c:128
+msgid "System Options"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Control key"
+#: ../../security/main.pm_.c:191
+msgid "Please wait, setting security level..."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
+#: ../../security/main.pm_.c:197
+msgid "Please wait, setting security options..."
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Newzealand"
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
-#: ../../fsedit.pm:1 ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
+#: ../../services.pm_.c:21
+msgid ""
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
+#: ../../services.pm_.c:23
+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 ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
+#: ../../services.pm_.c:25
+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 ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
+#: ../../services.pm_.c:28
+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 ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../services.pm_.c:31
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))."
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
+#: ../../services.pm_.c:33
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."
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
+#: ../../services.pm_.c:34
+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 ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
+#: ../../services.pm_.c:38
+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/service_harddrake:1
-#, c-format
+#: ../../services.pm_.c:40
msgid ""
-"Some devices in the \"%s\" hardware class were removed:\n"
-""
+"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 ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "The firmware file %s does not exist or is unreadable!"
+#: ../../services.pm_.c:43
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Install"
+#: ../../services.pm_.c:46
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The internal domain name"
+#: ../../services.pm_.c:48
+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 ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
+#: ../../services.pm_.c:50
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
+#: ../../services.pm_.c:52
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
+#: ../../services.pm_.c:53
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."
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+#: ../../services.pm_.c:55
+msgid ""
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
+#: ../../services.pm_.c:57
+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 ""
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
+#: ../../services.pm_.c:60
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
+#: ../../services.pm_.c:62
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
+#: ../../services.pm_.c:65
+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 ""
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Do"
+#: ../../services.pm_.c:68
+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 ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
+#: ../../services.pm_.c:71
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
+#: ../../services.pm_.c:72
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
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
-#, c-format
-msgid "IP address of host/network:"
+#: ../../services.pm_.c:76
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../services.pm_.c:79
msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
msgstr ""
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System installation"
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
+#: ../../services.pm_.c:83
+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 ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid reboot by the console user."
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Open"
+#: ../../services.pm_.c:86
+msgid ""
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Location of auto_install.cfg file"
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Open Firmware Delay"
+#: ../../services.pm_.c:89
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "New Zealand"
+#: ../../services.pm_.c:127
+msgid "Printing"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Color configuration"
+#: ../../services.pm_.c:128
+msgid "Internet"
msgstr ""
-#: ../../security/level.pm:1
-#, c-format
-msgid "There are already some restrictions, and more automatic checks are run every night."
+#: ../../services.pm_.c:131
+msgid "File sharing"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "please choose the date to restore"
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+msgid "System"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
+#: ../../services.pm_.c:138
+msgid "Remote Administration"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
+#: ../../services.pm_.c:146
+msgid "Database Server"
msgstr ""
-#: ../../printer/data.pm:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "LPRng"
+msgid "Services: %d activated for %d registered"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
+#: ../../services.pm_.c:191
+msgid "Services"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives you access to all available printer drivers, driver options, and printer connection types."
+#: ../../services.pm_.c:203
+msgid "running"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and %d unknown printers"
+#: ../../services.pm_.c:203
+msgid "stopped"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, 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)"
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:222
msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
+"No additional information\n"
+"about this service, sorry."
msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
+#: ../../services.pm_.c:229
+msgid "On boot"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
+#: ../../services.pm_.c:241
+msgid "Start"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
+#: ../../services.pm_.c:241
+msgid "Stop"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
-#, c-format
-msgid "Simply reboot"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../standalone/drakups:1 ../../standalone/drakups:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Congratulations"
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid " enter `void' for void entry"
+#: ../../share/advertising/01-thanks.pl_.c:11
+msgid ""
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password history length"
+#: ../../share/advertising/02-community.pl_.c:11
+msgid ""
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Winmodem connection"
+#: ../../share/advertising/03-internet.pl_.c:9
+msgid "Get the most from the Internet"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/03-internet.pl_.c:10
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."
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"Now, you can run xawtv (under X Window!) !\n"
-""
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
msgstr ""
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "%s on %s"
+#: ../../share/advertising/04-multimedia.pl_.c:11
+msgid ""
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid remote root login."
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../share/advertising/05-games.pl_.c:10
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."
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+msgid "Mandrake Control Center"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
+#: ../../share/advertising/06-mcc.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use .backupignore files"
+#: ../../share/advertising/07-desktop.pl_.c:9
+msgid "User interfaces"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
+#: ../../share/advertising/07-desktop.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The system is now connected to the Internet."
+#: ../../share/advertising/08-development.pl_.c:9
+msgid "Development simplified"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
+#: ../../share/advertising/08-development.pl_.c:11
+msgid ""
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Fragmentation"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../share/advertising/09-server.pl_.c:10
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."
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "The wizard successfully configured the mail alert."
+#: ../../share/advertising/10-mnf.pl_.c:10
+msgid ""
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/tree/mdk_totem:1
-#, c-format
-msgid "Kill those programs"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose what you want to backup"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Size: %s\n"
-""
-msgstr ""
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Hostname: "
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a rule"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"Chunk size %s\n"
-""
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
msgstr ""
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printer"
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+msgid "Become a MandrakeExpert"
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ADSL connection"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+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 ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"No configuration, please click Wizard or Advanced.\n"
-""
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+msgid "MandrakeExpert Corporate"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Error!"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-#: ../../standalone/drakups:1 ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
+#: ../../share/advertising/17-mdkclub.pl_.c:10
+msgid ""
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
+#: ../../standalone.pm_.c:21
+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 ""
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone.pm_.c:40
msgid ""
-"Resolution: %s\n"
-""
+"[--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 name.\n"
msgstr ""
-#: ../../install2.pm:1
-#, 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)"
+#: ../../standalone.pm_.c:51
+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 ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone.pm_.c:57
msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+"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 ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
+#: ../../standalone.pm_.c:68
+msgid ""
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
msgstr ""
-#: ../../network/adsl.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Connect to the Internet"
+#: ../../standalone.pm_.c:70
+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)"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
+#: ../../standalone.pm_.c:82
+msgid "[keyboard]"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone.pm_.c:84
msgid ""
-"Mouse device: %s\n"
-""
+"[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 ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Reselect correct fonts"
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone.pm_.c:94
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 ""
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The firmware file for your %s was successfully installed."
+"[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 ""
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "MandrakeExpert Corporate"
+#: ../../standalone.pm_.c:99
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
+#: ../../standalone.pm_.c:100
msgid ""
" [everything]\n"
" XFdrake [--noauto] monitor\n"
" XFdrake resolution"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../standalone.pm_.c:114
#, c-format
-msgid "Write protection"
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "You've not selected any font"
-msgstr ""
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Language"
+msgid ""
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer model selection"
+#: ../../standalone.pm_.c:168
+msgid "Installing packages..."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After changing type of partition %s, all data on this partition will be lost"
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
-#: ../../harddrake/data.pm:1
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "ISDN adapters"
+msgid "Please relog into %s to activate the changes"
msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
+#: ../../standalone/drakTermServ_.c:239
+msgid "Mandrake Terminal Server Configuration"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
+#: ../../standalone/drakTermServ_.c:253
+msgid "Enable Server"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
+#: ../../standalone/drakTermServ_.c:260
+msgid "Disable Server"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
+#: ../../standalone/drakTermServ_.c:268
+msgid "Start Server"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
+#: ../../standalone/drakTermServ_.c:275
+msgid "Stop Server"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound configuration"
+#: ../../standalone/drakTermServ_.c:283
+msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
msgstr ""
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Custom disk partitioning"
+#: ../../standalone/drakTermServ_.c:294
+msgid "Add/Del Users"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
+#: ../../standalone/drakTermServ_.c:299
+msgid "Add/Del Clients"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:328
msgid ""
-"The following printers\n"
"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-
-#: ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "You don't have any winmodem"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: %s"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, 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."
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
+"\n"
msgstr ""
-#: ../../standalone/drakups:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:332
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/scannerdrake:1
-#, c-format
-msgid "Install firmware for the"
-msgstr ""
-
-#: ../../standalone/draksound:1
-#, c-format
-msgid "No Sound Card detected!"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Ftp Server"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the type of bus on which the mouse is connected"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
+"\n"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:365
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"
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\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"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\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"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\n"
"\n"
-" * \"%s\": If you want to configure your Internet or local network access\n"
-"now.\n"
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\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"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click that\n"
-"button. This should be reserved to advanced users.\n"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "May"
-msgstr ""
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr ""
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
-msgstr ""
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select another media to restore from"
-msgstr ""
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Software Manager"
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD in place - continue."
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "KB"
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Network & Internet"
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Net Boot Images"
+#: ../../standalone/drakTermServ_.c:587
+msgid "No nic selected!"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "Sharing of local scanners"
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
msgstr ""
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
+#: ../../standalone/drakTermServ_.c:604
+msgid "<-- Delete"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Services and deamons"
+#: ../../standalone/drakTermServ_.c:611
+msgid "Delete All NBIs"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "It is possible that your %s needs its Firmware to be uploaded everytime when it is turned on."
+#: ../../standalone/drakTermServ_.c:668
+msgid ""
+"!!! Indicates the password in the system database is different than\n"
+" the one in the Terminal Server database.\n"
+"Delete/re-add the user to the Terminal Server to enable login."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name missing!"
+#: ../../standalone/drakTermServ_.c:673
+msgid "Add User -->"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "with /usr"
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
+#: ../../standalone/drakTermServ_.c:720
#, c-format
-msgid "Network"
+msgid "type: %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
+#: ../../standalone/drakTermServ_.c:773
+msgid "Thin Client"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Chkconfig obey msec rules"
+#: ../../standalone/drakTermServ_.c:775
+msgid "Allow Thin Clients"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTZ)"
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
msgstr ""
-#: ../advertising/06-development.pl:1
-#, 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."
+#: ../../standalone/drakTermServ_.c:821
+msgid "<-- Edit Client"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No devices found"
+#: ../../standalone/drakTermServ_.c:837
+msgid "Delete Client"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
+#: ../../standalone/drakTermServ_.c:843
+msgid "dhcpd Config..."
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" neither is a valid email nor is an existing local user!"
+#: ../../standalone/drakTermServ_.c:876
+msgid ""
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use daemon"
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../network/netconnect.pm:1 ../../standalone/drakauth:1 ../../standalone/drakconnect:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
+#: ../../standalone/drakTermServ_.c:901
+msgid "Netmask:"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Additional CUPS servers: "
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
+#: ../../standalone/drakTermServ_.c:929
+msgid "Domain Name:"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
+#: ../../standalone/drakTermServ_.c:937
+msgid "Name Servers:"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Install/Update firmware files"
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
+#: ../../standalone/drakTermServ_.c:1001
+msgid "dhcpd Server Configuration"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
+#: ../../standalone/drakTermServ_.c:1002
+msgid ""
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\tBackups use tar and gzip\n"
-""
+#: ../../standalone/drakTermServ_.c:1018
+msgid "Write Config"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set as default"
+#: ../../standalone/drakTermServ_.c:1120
+msgid "Please insert floppy disk:"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on this machine"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
+#: ../../standalone/drakTermServ_.c:1129
+msgid "No floppy drive available!"
msgstr ""
-#: ../../standalone/drakhelp:1
+#: ../../standalone/drakTermServ_.c:1138
#, c-format
-msgid ""
-" --help - display this help \n"
-""
+msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone.pm:1
-#, 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"
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Setting Default Printer..."
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Generating preview ..."
+#: ../../standalone/drakautoinst_.c:40
+msgid "Error!"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, 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 "I can't find needed image file `%s'."
msgstr ""
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ignore"
+#: ../../standalone/drakautoinst_.c:43
+msgid "Auto Install Configurator"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:44
msgid ""
-"Allow/Forbid X connections:\n"
+"You are about to configure an Auto Install floppy. This feature is somewhat "
+"dangerous and must be used circumspectly.\n"
"\n"
-"- ALL (all connections are allowed),\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"
-"- LOCAL (only connection from local machine),\n"
+"For maximum safety, the partitioning and formatting will never be performed "
+"automatically, whatever you chose during the install of this computer.\n"
"\n"
-"- NONE (no connection)."
-msgstr ""
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ""
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
+"Do you want to continue?"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
+#: ../../standalone/drakautoinst_.c:62
+msgid "replay"
msgstr ""
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
+#: ../../standalone/drakautoinst_.c:66
+msgid "Automatic Steps Configuration"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:67
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing mtools packages..."
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a root partition"
-msgstr ""
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "first step creation"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+msgid "Creating auto install floppy"
msgstr ""
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:139
msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-""
-msgstr ""
-
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "Do not install firmware file"
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select a scanner model"
-msgstr ""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
-msgstr ""
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr ""
-
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr ""
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr ""
-
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System configuration"
-msgstr ""
-
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
+"\n"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin Password"
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
msgstr ""
-#: ../advertising/05-desktop.pl:1
-#, 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, ..."
+#: ../../standalone/drakautoinst_.c:235
+msgid ""
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer ..."
+#: ../../standalone/drakautoinst_.c:273
+msgid "Auto Install"
msgstr ""
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, 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)"
+#: ../../standalone/drakautoinst_.c:343
+msgid "Add an item"
msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
+#: ../../standalone/drakautoinst_.c:350
+msgid "Remove the last item"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Bermuda"
+#: ../../standalone/drakbackup_.c:691
+msgid "FATAL"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:704
msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+"\n"
+" DrakBackup Report \n"
+"\n"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:705
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"
+" DrakBackup Daemon Report\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"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:709
+msgid ""
"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+" DrakBackup Report Details\n"
"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1 ../../standalone/drakups:1 ../../standalone/drakups:1 ../../standalone/drakups:1
-#, c-format
-msgid "Remove"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr ""
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr ""
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+msgid "Total progess"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: ../../standalone/drakbackup_.c:785
#, c-format
-msgid "Remove system config files"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-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
-#, c-format
-msgid "Yes"
-msgstr ""
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Progress"
+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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../partition_table.pm:1
+#: ../../standalone/drakbackup_.c:801
#, 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 "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
+msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakbackup_.c:819
#, c-format
-msgid "Channel"
+msgid "Bad password on %s"
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_.c:820
#, c-format
-msgid "Add"
+msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:821
#, c-format
-msgid ""
-" Error while sending mail. \n"
-""
+msgid "Can't find %s on %s"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1 ../../standalone/keyboarddrake:1
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid "Keyboard"
+msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:828
#, c-format
msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add enough '0' (zeroes)."
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the connection you want to configure"
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security level..."
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configuring network device %s"
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup_.c:1060
#, c-format
-msgid "Mount point: "
+msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid direct root login."
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+msgid "Hard Disk Backup files..."
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
+#: ../../standalone/drakbackup_.c:1236
+msgid "Backup User files..."
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
+#: ../../standalone/drakbackup_.c:1290
+msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "No browser available! Please install one"
+#: ../../standalone/drakbackup_.c:1296
+msgid "No changes to backup!"
msgstr ""
-#: ../../Xconfig/main.pm:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, c-format
msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
"\n"
-"%s"
-msgstr ""
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-#: ../../services.pm:1
+#: ../../standalone/drakbackup_.c:1319
#, 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)."
-msgstr ""
-
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Sharing of local printers"
-msgstr ""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Available printers"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "NO"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr ""
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Sensitivity threshold"
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Select the network interface to remove:"
+#: ../../standalone/drakbackup_.c:1322
+msgid ""
+"\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1340
msgid ""
-"We are now going to configure the %s connection.\n"
"\n"
+"Drakbackup activities via CD:\n"
"\n"
-"Press \"%s\" to continue."
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Interface \"%s\""
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr ""
-
-#: ../../mouse.pm:1 ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1345
msgid ""
"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Test"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea"
-msgstr ""
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
-msgstr ""
-
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Vendor"
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s"
-msgstr ""
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
-msgstr ""
-
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1 ../../standalone/drakfont:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr ""
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr ""
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Is this an install or an upgrade?"
+#: ../../standalone/drakbackup_.c:1354
+msgid " Error during mail sending. \n"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "ISDN card"
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
msgstr ""
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "To share your own knowledge and help build Linux software, join our discussion forums on our \"Community\" webpages."
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+msgid "File Selection"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\t-Hard drive.\n"
-""
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1573
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."
+"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1574
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"
-""
-msgstr ""
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "DHCP host name"
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
+"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
+#: ../../standalone/drakbackup_.c:1575
+msgid "Backup your System files. (/etc directory)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
+#: ../../standalone/drakbackup_.c:1578
+msgid ""
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result by mail"
+#: ../../standalone/drakbackup_.c:1595
+msgid "Please check all users that you want to include in your backup."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+msgid "Remove Selected"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "SSH server"
+#: ../../standalone/drakbackup_.c:1679
+msgid "Windows (FAT32)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
+#: ../../standalone/drakbackup_.c:1714
+msgid "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
-#, c-format
-msgid "No"
+#: ../../standalone/drakbackup_.c:1740
+msgid "Use network connection to backup"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Kannada"
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1747
msgid ""
-"could not find any font.\n"
-""
-msgstr ""
-
-#: ../../standalone/drakups:1 ../../standalone/drakups:1
-#, c-format
-msgid "UPS driver configuration"
-msgstr ""
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1748
msgid ""
-"Entering step `%s'\n"
-""
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niger"
+" Transfer \n"
+"Now"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan"
+#: ../../standalone/drakbackup_.c:1749
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing %s ..."
+#: ../../standalone/drakbackup_.c:1753
+msgid "Please enter the host name or IP."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No printer"
+#: ../../standalone/drakbackup_.c:1758
+msgid ""
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NetWare Printer Options"
+#: ../../standalone/drakbackup_.c:1763
+msgid "Please enter your login"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "%s BootSplash (%s) preview"
+#: ../../standalone/drakbackup_.c:1768
+msgid "Please enter your password"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "February"
+#: ../../standalone/drakbackup_.c:1774
+msgid "Remember this password"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
+#: ../../standalone/drakbackup_.c:1882
+msgid ""
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network configuration (%d adapters)"
+#: ../../standalone/drakbackup_.c:1887
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "April"
+#: ../../standalone/drakbackup_.c:1893
+msgid "Please check for multisession CD"
msgstr ""
-#: ../../scanner.pm:1
-#, c-format
-msgid "Could not create directory /usr/share/sane/firmware!"
+#: ../../standalone/drakbackup_.c:1899
+msgid "Please check if you are using CDRW media"
msgstr ""
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "Mandatory package %s is missing"
+#: ../../standalone/drakbackup_.c:1905
+msgid "Please check if you want to erase your RW media (1st Session)"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Deactivate now"
+#: ../../standalone/drakbackup_.c:1906
+msgid " Erase Now "
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
+#: ../../standalone/drakbackup_.c:1912
+msgid "Please check if you are using a DVDR device"
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
-#, c-format
-msgid "Ok"
+#: ../../standalone/drakbackup_.c:1918
+msgid "Please check if you are using a DVDRAM device"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "drakTermServ Overview"
+#: ../../standalone/drakbackup_.c:1931
+msgid ""
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
+#: ../../standalone/drakbackup_.c:1964
+msgid "No CD device defined!"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to use aboot?"
+#: ../../standalone/drakbackup_.c:2012
+msgid "Use tape to backup"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belarusian"
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP printers.\n"
-""
+#: ../../standalone/drakbackup_.c:2021
+msgid "Please check if you want to use the non-rewinding device."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move files to the new partition"
+#: ../../standalone/drakbackup_.c:2027
+msgid "Please check if you want to erase your tape before the backup."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakbackup_.c:2033
+msgid "Please check if you want to eject your tape after the backup."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
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 ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakups:1
-#, c-format
-msgid "The port on which is connected your ups"
+#: ../../standalone/drakbackup_.c:2103
+msgid "Please enter the directory to save to:"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Catalog"
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+msgid "Use quota for backup files."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "IDE"
+#: ../../standalone/drakbackup_.c:2180
+msgid "Network"
msgstr ""
-#: ../../fs.pm:1 ../../fs.pm:1
-#, c-format
-msgid "mounting partition %s in directory %s failed"
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
msgstr ""
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with graphical menu"
+#: ../../standalone/drakbackup_.c:2195
+msgid "Tape"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
+#: ../../standalone/drakbackup_.c:2229
+msgid "Use daemon"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2234
msgid ""
-"\n"
-" DrakBackup Report \n"
-""
+"Please choose the time \n"
+"interval between each backup"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr ""
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2240
msgid ""
-"New user list:\n"
-""
+"Please choose the\n"
+"media for backup."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2247
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"
+"Please be sure that the cron daemon is included in your services. \n"
"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the first\n"
-"drive and press \"Ok\"."
-msgstr ""
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password history length to prevent password reuse."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Theme installation failed!"
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
+#: ../../standalone/drakbackup_.c:2324
+msgid "What"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
+#: ../../standalone/drakbackup_.c:2329
+msgid "Where"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
+#: ../../standalone/drakbackup_.c:2334
+msgid "When"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
+#: ../../standalone/drakbackup_.c:2339
+msgid "More Options"
msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pppoe"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+msgid "Drakbackup Configuration"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving files to the new partition"
+#: ../../standalone/drakbackup_.c:2376
+msgid "Please choose where you want to backup"
msgstr ""
-#: ../../Xconfig/card.pm:1 ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
msgstr ""
-#: ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../interactive.pm:1
-#, c-format
-msgid "Advanced"
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer"
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Swedish)"
+#: ../../standalone/drakbackup_.c:2406
+msgid "on Tape Device"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Afghanistan"
+#: ../../standalone/drakbackup_.c:2449
+msgid "Please choose what you want to backup"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "More Options"
+#: ../../standalone/drakbackup_.c:2450
+msgid "Backup system"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2537
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 ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
+"\n"
+"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2538
msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "RTS/CTS"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../standalone/drakups:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-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
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr ""
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The encryption keys do not match"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "For a multisession CD, only the first session will erase the cdrw. Otherwise the cdrw is erased before each backup."
-msgstr ""
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "USB printer"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr ""
-
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
-#, c-format
-msgid "Detect USB key again"
-msgstr ""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
+"\n"
+"- System Files:\n"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2540
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."
+"\n"
+"- User Files:\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2542
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
"\n"
-""
-msgstr ""
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "It is possible that your scanners need their firmware to be uploaded everytime when they are turned on."
+"- Other Files:\n"
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: ../../standalone/drakbackup_.c:2544
#, 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."
-msgstr ""
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Please enter your username, password and domain name to access this host."
-msgstr ""
-
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "Remove selected host"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "No sharing"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule down one level"
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "TB"
+#: ../../standalone/drakbackup_.c:2553
+msgid ""
+"\n"
+"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "FATAL"
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: ../../standalone/drakbackup_.c:2555
#, c-format
-msgid "Refresh the list"
+msgid " on device: %s"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, 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."
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakpxe:1
+#: ../../standalone/drakbackup_.c:2557
#, 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"
-""
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1 ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "Delete"
+msgid "\t\tErase=%s"
msgstr ""
-#: ../../Xconfig/various.pm:1
+#: ../../standalone/drakbackup_.c:2561
#, 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?"
-msgstr ""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
+"\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: ../../standalone/drakbackup_.c:2562
#, c-format
-msgid "Disconnect %s"
+msgid ""
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakups:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2563
msgid ""
-"Welcome to the UPS configuration utility.\n"
"\n"
-"Here, you'll be add a new UPS to your system.\n"
-""
+"- Options:\n"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "HTTP proxy"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "SSH Server"
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:2572
#, c-format
msgid ""
-"\t-Network by rsync.\n"
-""
-msgstr ""
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
+"\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
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
-#, c-format
-msgid "Error"
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
msgstr ""
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Australia"
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure only card \"%s\"%s"
+#: ../../standalone/drakbackup_.c:2578
+msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakups:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Level"
+#: ../../standalone/drakbackup_.c:2579
+msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Change the printing system"
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2587
msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr ""
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
+"List of data to restore:\n"
+"\n"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, 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."
+#: ../../standalone/drakbackup_.c:2754
+msgid ""
+"List of data corrupted:\n"
+"\n"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
+#: ../../standalone/drakbackup_.c:2756
+msgid "Please uncheck or remove it on next time."
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Remote Administration"
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+#: ../../standalone/drakbackup_.c:2787
+msgid " All of your selected data have been "
msgstr ""
-#: ../../modules.pm:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Selected All"
+#: ../../standalone/drakbackup_.c:2906
+msgid " Restore Configuration "
msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Webmin Service"
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
+#: ../../standalone/drakbackup_.c:3019
+msgid "Backup the system files before:"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save to:"
+#: ../../standalone/drakbackup_.c:3021
+msgid "please choose the date to restore"
msgstr ""
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
+#: ../../standalone/drakbackup_.c:3057
+msgid "Use Hard Disk to backup"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
+#: ../../standalone/drakbackup_.c:3060
+msgid "Please enter the directory to save:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
+#: ../../standalone/drakbackup_.c:3103
+msgid "FTP Connection"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
+#: ../../standalone/drakbackup_.c:3110
+msgid "Secure Connection"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Prints into %s"
+#: ../../standalone/drakbackup_.c:3134
+msgid "Restore from Hard Disk."
msgstr ""
-#: ../../install_steps_interactive.pm:1 /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
-#, c-format
-msgid "An error occurred"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
+#: ../../standalone/drakbackup_.c:3204
+msgid "Select another media to restore from"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
+#: ../../standalone/drakbackup_.c:3206
+msgid "Other Media"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
+#: ../../standalone/drakbackup_.c:3211
+msgid "Restore system"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid the list of users on the system on display managers (kdm and gdm)."
+#: ../../standalone/drakbackup_.c:3212
+msgid "Restore Users"
msgstr ""
-#: ../../standalone/drakautoinst:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
+#: ../../standalone/drakbackup_.c:3213
+msgid "Restore Other"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
+#: ../../standalone/drakbackup_.c:3215
+msgid "select path to restore (instead of /)"
msgstr ""
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Reset"
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3334
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3344
msgid ""
-"Directory %s already contains data\n"
-"(%s)"
-msgstr ""
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on NetWare server"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr ""
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr ""
-
-#: ../../standalone/drakups:1
-#, c-format
-msgid "Autodetection"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-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
-#, c-format
-msgid "done"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr ""
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Higher"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
+"Restore Selected\n"
+"Files"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3361
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 ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't find %s on %s"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr ""
-
-#: ../../scanner.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
-msgstr ""
-
-#: ../../standalone/drakTermServ:1 ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "June"
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr ""
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Delete selected rule"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Insert a floppy in %s"
+"Change\n"
+"Restore Path"
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup_.c:3427
#, c-format
-msgid "Maldives"
+msgid "Backup files not found at %s."
msgstr ""
-#: ../../any.pm:1
+#: ../../standalone/drakbackup_.c:3440
#, c-format
-msgid "compact"
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
+#: ../../standalone/drakbackup_.c:3440
+msgid "Restore From CD"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup_.c:3442
#, c-format
-msgid "type: fat"
+msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup_.c:3452
#, c-format
msgid ""
-"on channel %d id %d\n"
-""
-msgstr ""
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
-#: ../advertising/04-configuration.pl:1
-#, 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!"
+#: ../../standalone/drakbackup_.c:3452
+msgid "Restore From Tape"
msgstr ""
-#: ../../security/help.pm:1
+#: ../../standalone/drakbackup_.c:3454
#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
+msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Congratulations, the \"%s\" network interface has been succesfully deleted"
+#: ../../standalone/drakbackup_.c:3474
+msgid "Restore Via Network"
msgstr ""
-#: ../../install_interactive.pm:1
+#: ../../standalone/drakbackup_.c:3474
#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
+msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
+#: ../../standalone/drakbackup_.c:3475
+msgid "Host Name"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
+#: ../../standalone/drakbackup_.c:3483
+msgid "Password required"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
+#: ../../standalone/drakbackup_.c:3489
+msgid "Username required"
msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
+#: ../../standalone/drakbackup_.c:3492
+msgid "Hostname required"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Custom configuration"
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "To do so, you need to supply the firmware files for your scanners so that it can be installed."
+#: ../../standalone/drakbackup_.c:3513
+msgid "Restore Failed..."
msgstr ""
-#: ../../standalone/drakpxe:1
-#, 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"
-""
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
+#: ../../standalone/drakbackup_.c:3760
+msgid "Custom Restore"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
+#: ../../standalone/drakbackup_.c:3813
+msgid "Restore From Catalog"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
+#: ../../standalone/drakbackup_.c:3841
+msgid "Restore Progress"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", printing to %s"
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+msgid "Previous"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Assign host name from DHCP address"
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+msgid "Save"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to normal mode"
+#: ../../standalone/drakbackup_.c:3946
+msgid "Build Backup"
msgstr ""
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+msgid "Restore"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4189
msgid ""
-"Cylinder %d to %d\n"
-""
-msgstr ""
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
-msgstr ""
-
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
-#, c-format
-msgid "NONE"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr ""
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Display logo on Console"
-msgstr ""
-
-#: ../../any.pm:1 ../../any.pm:1
-#, c-format
-msgid "Windows Domain"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (norwegian)"
-msgstr ""
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Interface %s (on network %s)"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4195
msgid ""
-"No additional information\n"
-"about this service, sorry."
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4209
msgid ""
-"There are no scanners found which are available on your system.\n"
-""
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr ""
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr ""
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Windows (FAT32)"
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
+#: ../../standalone/drakbackup_.c:4232
+msgid "Please select data to restore..."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVDRAM device"
+#: ../../standalone/drakbackup_.c:4267
+msgid "Please select media for backup..."
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
+#: ../../standalone/drakbackup_.c:4275
+msgid "Please select data to backup..."
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Version: "
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Server IP missing!"
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Suriname"
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use a floppy"
+#: ../../standalone/drakbackup_.c:4382
+msgid "Backup system files"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
+#: ../../standalone/drakbackup_.c:4384
+msgid "Backup user files"
msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
+#: ../../standalone/drakbackup_.c:4386
+msgid "Backup other files"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do nothing"
+#: ../../standalone/drakbackup_.c:4416
+msgid "Sending files..."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete Client"
+#: ../../standalone/drakbackup_.c:4500
+msgid "Backup Now from configuration file"
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
+#: ../../standalone/drakbackup_.c:4505
+msgid "View Backup Configuration."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting network..."
+#: ../../standalone/drakbackup_.c:4526
+msgid "Wizard Configuration"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
+#: ../../standalone/drakbackup_.c:4531
+msgid "Advanced Configuration"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_Fields description"
+#: ../../standalone/drakbackup_.c:4536
+msgid "Backup Now"
msgstr ""
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4624
msgid ""
+"options description:\n"
"\n"
+" In this step Drakbackup allow you to change:\n"
"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
"\n"
-""
-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
-#, c-format
-msgid "Help"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4654
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"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\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"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4662
msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-""
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Username required"
-msgstr ""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Device"
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4701
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"
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
"\n"
-"Click on the \"%s\" button to be presented with the complete list of\n"
-"supported keyboards.\n"
"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding that will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr ""
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr ""
-
-#: ../../standalone/drakups:1
-#, c-format
-msgid "The wizard successfully configured the new \"%s\" UPS device."
-msgstr ""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "mkinitrd optional arguments"
-msgstr ""
-
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "Surf the Web with Mozilla or Konqueror, read your mail with Evolution or Kmail, create your documents with OpenOffice.org."
-msgstr ""
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print test pages"
-msgstr ""
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Activate now"
-msgstr ""
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4727
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."
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4729
msgid ""
-"Not formatted\n"
-""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Periodic Checks"
-msgstr ""
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "PXE Server Configuration"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup the system files before:"
-msgstr ""
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "This is the standard security recommended for a computer that will be used to connect to the Internet as a client."
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "First floppy drive"
-msgstr ""
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1 ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose the new size"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Media class"
-msgstr ""
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Faroe Islands"
+#: ../../standalone/drakbackup_.c:4732
+msgid ""
+"Description:\n"
+"\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
+"\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
+"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
+"\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
+"\n"
+"\n"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Restart XFS"
+#: ../../standalone/drakbackup_.c:4769
+msgid ""
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
+#: ../../standalone/drakbackup_.c:4778
+msgid ""
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Scannerdrake will not be started now."
+msgid "Installation of %s failed. The following error occured:"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model name"
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Normal Mode"
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+msgid "Standalone Tools"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer connection type"
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
msgstr ""
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network %s"
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connect %s"
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting CUPS..."
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1 /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
msgstr ""
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
+#: ../../standalone/drakbug_.c:75
+msgid "Application:"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
+#: ../../standalone/drakbug_.c:76
+msgid "Package: "
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Connection Configuration"
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
msgstr ""
-#: ../../harddrake/v4l.pm:1 ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|Generic"
+#: ../../standalone/drakbug_.c:78
+msgid "Release: "
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbug_.c:93
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 ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
msgstr ""
-#: ../../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
-#, c-format
-msgid "Quit"
+#: ../../standalone/drakbug_.c:112
+msgid "Report"
msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
+#: ../../standalone/drakbug_.c:148
+msgid "Not installed"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
+#: ../../standalone/drakbug_.c:160
+msgid "Package not installed"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Other MultiMedia devices"
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "burner"
+#: ../../standalone/drakbug_.c:180
+msgid "No browser available! Please install one"
msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../standalone/drakconnect_.c:75
#, c-format
-msgid "Bug Description/System Information"
+msgid "Network configuration (%d adapters)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (Default is all users)"
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+msgid "Profile: "
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "No remote machines"
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want to set up your printer(s) now."
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
+#: ../../standalone/drakconnect_.c:125
+msgid "New profile..."
msgstr ""
-#: ../../standalone/drakclock:1
-#, c-format
+#: ../../standalone/drakconnect_.c:131
msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol\n"
-"\n"
-"Do you want to install ntp ?"
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-
-#: ../../standalone/drakups:1
-#, c-format
-msgid "Please select your UPS model."
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
+#: ../../standalone/drakconnect_.c:157
+msgid "Hostname: "
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
+#: ../../standalone/drakconnect_.c:164
+msgid "Internet access"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
+#: ../../standalone/drakconnect_.c:177
+msgid "Type:"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Interface:"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
+#: ../../standalone/drakconnect_.c:216
+msgid "Configure Internet Access..."
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Write"
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+msgid "LAN configuration"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
+#: ../../standalone/drakconnect_.c:228
+msgid "Driver"
msgstr ""
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
+#: ../../standalone/drakconnect_.c:228
+msgid "Interface"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
+#: ../../standalone/drakconnect_.c:228
+msgid "State"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
+#: ../../standalone/drakconnect_.c:240
+msgid "Configure Local Area Network..."
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Dialup options"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, 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."
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-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."
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Connected"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Not connected"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Online"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
msgstr ""
-#: ../../standalone/drakups:1
-#, c-format
-msgid "UPS users"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakconnect_.c:400
msgid ""
-"\t-Network by webdav.\n"
-""
-msgstr ""
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ""
-
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No ethernet network adapter has been detected on your system. Please run the hardware configuration tool."
-msgstr ""
-
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1 ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr ""
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "No hard drives found"
-msgstr ""
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
+#: ../../standalone/drakconnect_.c:427
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
+#: ../../standalone/drakconnect_.c:449
+msgid "LAN Configuration"
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1 ../../any.pm:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Label"
+msgid "Adapter %s: %s"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check open ports"
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Edit selected printer"
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "activate now"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which of the following is your ISDN card?"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "deactivate now"
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:499
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 ""
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Msec"
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:556
msgid ""
-"=> Notice, a label changed:\n"
-"%s"
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
+#: ../../standalone/drakconnect_.c:580
+msgid "Internet connection configuration"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet Connection Configuration"
msgstr ""
-#: ../../help.pm:1
-#, 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"
-"\n"
-"Click on \"%s\" if you wish to select partitions that will be checked for\n"
-"bad blocks on the disk."
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+msgid "Connection type: "
msgstr ""
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
-#, c-format
-msgid "French"
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTY)"
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow X Window connections"
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
msgstr ""
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Hardware probing in progress"
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../network/shorewall.pm:1 ../../standalone/drakconnect:1 ../../standalone/drakgw:1
-#, c-format
-msgid "Net Device"
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Module name"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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, ...)."
+#: ../../standalone/drakfloppy_.c:40
+msgid "Size"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Next"
+#: ../../standalone/drakfloppy_.c:45
+msgid "drakfloppy"
msgstr ""
-#: ../../bootloader.pm:1
-#, c-format
-msgid ""
-"You can't install the bootloader on a %s partition\n"
-""
+#: ../../standalone/drakfloppy_.c:63
+msgid "boot disk creation"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakfloppy_.c:87
#, c-format
-msgid "Puerto Rico"
+msgid "DrakFloppy Error: %s"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "(bootp/dhcp/zeroconf)"
+#: ../../standalone/drakfloppy_.c:98
+msgid "kernel version"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
+#: ../../standalone/drakfloppy_.c:104
+msgid "General"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+#: ../../standalone/drakfloppy_.c:109
+msgid "Expert Area"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select firmware file"
+#: ../../standalone/drakfloppy_.c:112
+msgid "mkinitrd optional arguments"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Telnet server"
+#: ../../standalone/drakfloppy_.c:113
+msgid "Add a module"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
+#: ../../standalone/drakfloppy_.c:133
+msgid "force"
msgstr ""
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-""
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
+#: ../../standalone/drakfloppy_.c:135
+msgid "omit scsi modules"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
+#: ../../standalone/drakfloppy_.c:172
+msgid "Remove a module"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-""
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "Jamaica"
+msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../services.pm:1
+#: ../../standalone/drakfloppy_.c:341
#, c-format
msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
-msgstr ""
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "Czech (QWERTZ)"
+msgid "Unable to fork: %s"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../standalone/drakfloppy_.c:349
#, c-format
-msgid "Track network card id (useful for laptops)"
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "You must choose an image file first!"
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore from Hard Disk."
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
+#: ../../standalone/drakfont_.c:242
+msgid "no fonts found"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "DNS server"
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+msgid "done"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"LPD and LPRng do not support IPP printers.\n"
-""
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host name or IP."
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Edit"
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
+#: ../../standalone/drakfont_.c:359
+msgid "Fonts copy"
msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
+#: ../../standalone/drakfont_.c:363
+msgid "True Type fonts installation"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No test pages"
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Boot disk creation"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
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
-#, c-format
-msgid "Unknown model"
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "authentication"
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now"
+#: ../../standalone/drakfont_.c:459
+msgid "Restart XFS"
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
-#, c-format
-msgid "/_File"
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+#: ../../standalone/drakfont_.c:528
+msgid "xfs restart"
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
+"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 using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Editable"
+#: ../../standalone/drakfont_.c:621
+msgid "Fonts Importation"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (ISCII-layout)"
+#: ../../standalone/drakfont_.c:658
+msgid "Uninstall Fonts"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
+#: ../../standalone/drakfont_.c:669
+msgid "Advanced Options"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
+#: ../../standalone/drakfont_.c:677
+msgid "Font List"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:737
msgid ""
-"%d KB\n"
-""
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
+"\n"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@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"
+"\n"
+"\n"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for scanners ..."
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:862
+msgid "Choose the applications that will support the fonts:"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Partitioning"
+#: ../../standalone/drakfont_.c:877
+msgid "StarOffice"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
+#: ../../standalone/drakfont_.c:884
+msgid "Abiword"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create catalog!"
+#: ../../standalone/drakfont_.c:891
+msgid "Generic Printers"
msgstr ""
-#: ../advertising/11-mnf.pl:1
-#, 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."
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
+#: ../../standalone/drakfont_.c:1005
+msgid "Install List"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable IP spoofing protection"
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no free driver for your sound card (%s), but there's a proprietary driver at \"%s\"."
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group :"
+#: ../../standalone/drakfont_.c:1116
+msgid "Selected All"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
+#: ../../standalone/drakfont_.c:1120
+msgid "Remove List"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet connection configuration"
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+msgid "Initials tests"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
+#: ../../standalone/drakfont_.c:1145
+msgid "Copy fonts on your system"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "USB"
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
+#: ../../standalone/drakfont_.c:1153
+msgid "Post Install"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
+#: ../../standalone/drakfont_.c:1178
+msgid "Remove fonts on your system"
msgstr ""
-#: ../../standalone/drakups:1 ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_About..."
+#: ../../standalone/drakfont_.c:1182
+msgid "Post Uninstall"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
+#: ../../standalone/drakgw_.c:126
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
+#: ../../standalone/drakgw_.c:130
+msgid "disable"
msgstr ""
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please test your mouse:"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "reconfigure"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
+#: ../../standalone/drakgw_.c:133
+msgid "Disabling servers..."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP"
+#: ../../standalone/drakgw_.c:142
+msgid "Internet connection sharing is now disabled."
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "down"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Path or Module"
+#: ../../standalone/drakgw_.c:150
+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 ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
+#: ../../standalone/drakgw_.c:154
+msgid "enable"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Show current interface configuration"
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add Printer"
+#: ../../standalone/drakgw_.c:166
+msgid "Internet connection sharing is now enabled."
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:183
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 ""
-
-#: ../../help.pm:1
-#, c-format
-msgid "Development"
+"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 ../../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/drakgw_.c:211
#, c-format
-msgid "Done"
+msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: ../../standalone/drakgw_.c:212
#, c-format
-msgid "Web Server"
+msgid "Interface %s"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakgw_.c:221
msgid ""
-"\tDo not include System Files\n"
-""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:228
#, 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"
+"There is only one configured network adapter on your system:\n"
"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation in progress"
-msgstr ""
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Users"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Iwconfig command extra arguments"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
-msgstr ""
-
-#: ../../network/netconnect.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "(detected)"
-msgstr ""
-
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
-msgstr ""
-
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
+"%s\n"
+"\n"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:235
msgid ""
-"The entered host/network IP is not correct.\n"
-""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (A4)"
+#: ../../standalone/drakgw_.c:261
+msgid "Network interface already configured"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakgw_.c:262
#, 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."
+"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 ""
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
+#: ../../standalone/drakgw_.c:267
+msgid "Automatic reconfiguration"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup user files"
+#: ../../standalone/drakgw_.c:268
+msgid "Show current interface configuration"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "CD-ROM"
+#: ../../standalone/drakgw_.c:269
+msgid "Current interface configuration"
msgstr ""
-#: ../../diskdrake/dav.pm:1
+#: ../../standalone/drakgw_.c:270
#, c-format
-msgid "New"
+msgid ""
+"Current configuration of `%s':\n"
+"\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:283
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"
+"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 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"
+"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"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\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 ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
+#: ../../standalone/drakgw_.c:290
+msgid "Local Network adress"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:294
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"
+"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"
-"If you do not know what to choose, stay with the default option."
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr ""
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Uses command %s"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
-msgstr ""
-
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for new scanners ..."
+#: ../../standalone/drakgw_.c:300
+msgid "(This) DHCP Server IP"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
+#: ../../standalone/drakgw_.c:301
+msgid "The DNS Server IP"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
+#: ../../standalone/drakgw_.c:302
+msgid "The internal domain name"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "select path to restore (instead of /)"
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
msgstr ""
-#: ../../standalone/draksplash:1 ../../standalone/draksplash:1
-#, c-format
-msgid "Configure bootsplash picture"
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-" (Make sure that all your printers are connected and turned on).\n"
-""
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Reading data of installed printers..."
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid " Erase Now "
+msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
+#: ../../standalone/drakgw_.c:335
+msgid "Configuring..."
msgstr ""
-#: ../../install_any.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakgw_.c:372
#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
+msgid "Problems installing package %s"
msgstr ""
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
+#: ../../standalone/drakgw_.c:505
+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 ""
-#. -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
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
+#: ../../standalone/drakgw_.c:525
+msgid "No Internet Connection Sharing has ever been configured."
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
+#: ../../standalone/drakgw_.c:531
+msgid "Internet connection sharing configuration"
msgstr ""
-#: ../../standalone/drakedm:1
+#: ../../standalone/drakgw_.c:539
#, c-format
-msgid "Choosing a display manager"
+msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Zeroconf Host name"
+#: ../../standalone/drakperm_.c:36
+msgid "group"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
+#: ../../standalone/drakperm_.c:36
+msgid "path"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
+#: ../../standalone/drakperm_.c:36
+msgid "permissions"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS printing system"
+#: ../../standalone/drakperm_.c:36
+msgid "user"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Add an item"
+#: ../../standalone/drakperm_.c:44
+msgid "delete"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
+#: ../../standalone/drakperm_.c:45
+msgid "edit"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "China (Hong Kong)"
+#: ../../standalone/drakperm_.c:46
+msgid "Down"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
+#: ../../standalone/drakperm_.c:47
+msgid "add a rule"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:51
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"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 ""
-#: ../../any.pm:1
-#, c-format
-msgid "Shell"
+#: ../../standalone/drakperm_.c:56
+msgid "Add a new rule at the end"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Sao Tome and Principe"
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
+#: ../../standalone/drakperm_.c:58
+msgid "Up selected rule one level"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
+#: ../../standalone/drakperm_.c:60
+msgid "Delete selected rule"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package not installed"
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "American Samoa"
+#: ../../standalone/drakperm_.c:231
+msgid "Current user"
msgstr ""
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Become a MandrakeExpert"
+#: ../../standalone/drakperm_.c:236
+msgid "Permissions"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Protocol"
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Copy fonts on your system"
+#: ../../standalone/drakperm_.c:238
+msgid "Property"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Mandrake Terminal Server Configuration"
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakperm_.c:296
msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-""
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
+#: ../../standalone/drakperm_.c:297
+msgid "Use owner id for execution"
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
+#: ../../standalone/drakperm_.c:298
+msgid "Use group id for execution"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password minimum length and minimum number of digit and minimum number of capitalized letters."
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
+#: ../../standalone/drakperm_.c:304
+msgid "Path selection"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
+#: ../../standalone/drakperm_.c:350
+msgid "user :"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
+#: ../../standalone/drakperm_.c:352
+msgid "group :"
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
-#, c-format
-msgid "Warning"
+#: ../../standalone/draksound_.c:46
+msgid "No Sound Card detected!"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/draksound_.c:47
msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
"\n"
-"- Other Files:\n"
-""
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr ""
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Computing the size of the Windows partition"
-msgstr ""
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr ""
-
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Italy"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
+#: ../../standalone/draksound_.c:54
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
+#: ../../standalone/draksplash_.c:21
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
+#: ../../standalone/draksplash_.c:67
+msgid "first step creation"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
+#: ../../standalone/draksplash_.c:70
+msgid "final resolution"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do it!"
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+msgid "choose image file"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
+#: ../../standalone/draksplash_.c:72
+msgid "Theme name"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select model manually"
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Format"
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
+msgid "Configure bootsplash picture"
msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:90
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'"
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
+#: ../../standalone/draksplash_.c:91
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Load setting"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:95
msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please choose the correct model from the list."
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set selected printer as the default printer"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
+#: ../../standalone/draksplash_.c:113
+msgid "Preview"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
+#: ../../standalone/draksplash_.c:115
+msgid "Save theme"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
+#: ../../standalone/draksplash_.c:116
+msgid "Choose color"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
msgstr ""
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../any.pm:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, c-format
-msgid "Local files"
+msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
+#: ../../standalone/draksplash_.c:428
+msgid "ProgressBar color selection"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Can't open %s!"
+#: ../../standalone/draksplash_.c:449
+msgid "You must choose an image file first!"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, 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?"
+#: ../../standalone/draksplash_.c:458
+msgid "Generating preview ..."
msgstr ""
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
#, c-format
-msgid "Monitor"
+msgid "%s BootSplash (%s) preview"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:46
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"
+"XawTV isn't installed!\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"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
"\n"
-"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"
-""
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
+#: ../../standalone/drakxtv_.c:63
+msgid "Canada (cable)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-""
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove fonts on your system"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakgw:1
-#, 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."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
msgstr ""
-#: ../../raid.pm:1
-#, c-format
-msgid ""
-"Not enough partitions for RAID level %d\n"
-""
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
msgstr ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy failed, file %s not found"
+#: ../../standalone/drakxtv_.c:65
+msgid "East Europe"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: true"
+#: ../../standalone/drakxtv_.c:65
+msgid "France [SECAM]"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakxtv_.c:65
+msgid "Ireland"
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connected"
+#: ../../standalone/drakxtv_.c:65
+msgid "West Europe"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
+#: ../../standalone/drakxtv_.c:66
+msgid "Australia"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "No details"
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
msgstr ""
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
+#: ../../standalone/drakxtv_.c:102
+msgid ""
+"Please,\n"
+"type in your tv norm and country"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Preview"
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Remote Control"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select media for backup..."
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid ""
-"XFree86 server: %s\n"
-""
+#: ../../standalone/drakxtv_.c:120
+msgid "There was an error while scanning for TV channels"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Allow Thin Clients"
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Your printer model"
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
msgstr ""
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:148
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"
-"(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)."
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"You can visit our hardware database at:\n"
"\n"
-"- Delete hard drive tar files after backup.\n"
-""
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "No CD or DVD image found, please copy the installation program and rpm files."
+#: ../../standalone/harddrake2_.c:17
+msgid "Alternative drivers"
msgstr ""
-#: ../advertising/04-configuration.pl:1
-#, c-format
-msgid "Mandrake's multipurpose configuration tool"
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Save"
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
+#: ../../standalone/harddrake2_.c:21
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
+#: ../../standalone/harddrake2_.c:22
+msgid "Channel"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Disk"
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter a printer device URI"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
msgstr ""
-#: ../advertising/01-thanks.pl:1
-#, 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."
+#: ../../standalone/harddrake2_.c:23
+msgid ""
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
+#: ../../standalone/harddrake2_.c:26
+msgid "Bus identification"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
+#: ../../standalone/harddrake2_.c:27
+msgid ""
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
+#: ../../standalone/harddrake2_.c:30
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
+#: ../../standalone/harddrake2_.c:33
+msgid "Cache size"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer printer configuration"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above?\n"
-""
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of suid root files"
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
msgstr ""
-#: ../../any.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "%s (Port %s)"
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use network connection to backup"
+#: ../../standalone/harddrake2_.c:36
+msgid "Cpuid level"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Kernel version"
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
+#: ../../standalone/harddrake2_.c:37
+msgid ""
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
msgstr ""
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
+#: ../../standalone/harddrake2_.c:38
+msgid "This field describes the device"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
+#: ../../standalone/harddrake2_.c:39
+msgid "Old device file"
msgstr ""
-#: ../../interactive/stdio.pm:1 ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"Bad choice, try again\n"
-""
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
+#: ../../standalone/harddrake2_.c:41
+msgid "New devfs device"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search new servers"
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
+#: ../../standalone/harddrake2_.c:43
+msgid "Module"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Instantaneous"
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
msgstr ""
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
+#: ../../standalone/harddrake2_.c:46
+msgid ""
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "\"%s\" based winmodem detected, do you want to install needed software ?"
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking at packages already installed..."
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/drakups:1
-#, c-format
-msgid "Driver"
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVD-R device"
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on remote lpd server"
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
msgstr ""
-#: ../../standalone/drakfont:1 ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/harddrake2_.c:53
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."
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:55
+msgid "Floppy format"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
msgstr ""
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
+#: ../../standalone/harddrake2_.c:56
+msgid "Level"
msgstr ""
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD media size (MB)"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check permissions of files in the users' home"
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+msgid "Model"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
+#: ../../standalone/harddrake2_.c:58
+msgid "hard disk model"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
msgstr ""
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
+#: ../../standalone/harddrake2_.c:60
+msgid "Model name"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install Configurator"
+#: ../../standalone/harddrake2_.c:60
+msgid "Official vendor name of the cpu"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
+#: ../../standalone/harddrake2_.c:61
+msgid "Number of buttons"
msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:62
+msgid "Name"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
+#: ../../standalone/harddrake2_.c:63
+msgid "network printer port"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "tape"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
+#: ../../standalone/harddrake2_.c:64
+msgid "the number of the processor"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
+#: ../../standalone/harddrake2_.c:65
+msgid "Model stepping"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
msgstr ""
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Restoring from file %s failed: %s"
+#: ../../standalone/harddrake2_.c:66
+msgid "The type of bus on which the mouse is connected"
msgstr ""
-#: ../../fsedit.pm:1
-#, 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"
-""
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Find Package"
+#: ../../standalone/harddrake2_.c:68
+msgid "the vendor name of the processor"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Are you sure that you want to set up printing on this machine?\n"
-""
+#: ../../standalone/harddrake2_.c:82
+msgid "/_Quit"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "New devfs device"
+#: ../../standalone/harddrake2_.c:83
+msgid "/Autodetect _printers"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Boot Style Configuration"
+#: ../../standalone/harddrake2_.c:85
+msgid "/Autodetect _modems"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic time synchronization"
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
+#: ../../standalone/harddrake2_.c:89
+msgid "/_Help..."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Card model:"
+#: ../../standalone/harddrake2_.c:93
+msgid ""
+"Description of the fields:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
+#: ../../standalone/harddrake2_.c:96
+msgid ""
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
msgstr ""
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
+#: ../../standalone/harddrake2_.c:96
+msgid "Select a device !"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Start Server"
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
+#: ../../standalone/harddrake2_.c:102
+msgid "/_About..."
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "All remote machines"
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Install themes"
+#: ../../standalone/harddrake2_.c:105
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
+#: ../../standalone/harddrake2_.c:106
+msgid "Author:"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
+#: ../../standalone/harddrake2_.c:113
+msgid "Detection in progress"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
+#: ../../standalone/harddrake2_.c:119
+msgid "Harddrake2 version "
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add User -->"
+#: ../../standalone/harddrake2_.c:126
+msgid "Detected hardware"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
+#: ../../standalone/harddrake2_.c:129
+msgid "Information"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type fonts installation"
+#: ../../standalone/harddrake2_.c:131
+msgid "Configure module"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/drakconnect:1 ../../standalone/drakconnect:1
+#: ../../standalone/harddrake2_.c:143
#, c-format
-msgid "LAN configuration"
+msgid "Running \"%s\" ..."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "hard disk model"
+#: ../../standalone/harddrake2_.c:159
+msgid ""
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, 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."
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
+#: ../../standalone/harddrake2_.c:231
+msgid "secondary"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
+#: ../../standalone/harddrake2_.c:260
+msgid "/Autodetect modems"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
+#: ../../standalone/harddrake2_.c:260
+msgid "/Autodetect printers"
msgstr ""
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
+#: ../../standalone/harddrake2_.c:261
+msgid "/Options"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "Install firmware file from"
+#: ../../standalone/livedrake_.c:18
+msgid "Change Cd-Rom"
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
+#: ../../standalone/livedrake_.c:19
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add server"
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name"
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../advertising/10-security.pl:1
-#, 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."
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
+#: ../../standalone/logdrake_.c:68
+msgid "Show only for the selected day"
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
-#, c-format
-msgid "Printerdrake"
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
msgstr ""
-#: ../../standalone/draksec:1
-#, c-format
-msgid "System Options"
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
msgstr ""
-#: ../../security/level.pm:1
-#, c-format
-msgid "Please choose the desired security level"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"This host is already in the list, it cannot be added again.\n"
-""
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", USB printer"
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Incremental backups only save files that have changed or are new since the last backup."
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Choose the applications that will support the fonts:"
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hd"
+#: ../../standalone/logdrake_.c:145
+msgid "User"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
+#: ../../standalone/logdrake_.c:146
+msgid "Messages"
msgstr ""
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
+#: ../../standalone/logdrake_.c:147
+msgid "Syslog"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow remote root login"
+#: ../../standalone/logdrake_.c:151
+msgid "search"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Down"
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Install rpm"
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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"
-""
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
msgstr ""
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
msgstr ""
-#: ../../standalone/drakups:1
-#, c-format
-msgid "The wizard successfully added the following UPS devices:"
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+msgid "Mail alert"
msgstr ""
-#: ../../mouse.pm:1 ../../mouse.pm:1
+#: ../../standalone/logdrake_.c:245
#, c-format
-msgid "Microsoft Explorer"
+msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
+#: ../../standalone/logdrake_.c:392
+msgid "Mail alert configuration"
msgstr ""
-#: ../../wizards.pm:1
-#, c-format
+#: ../../standalone/logdrake_.c:393
msgid ""
-"%s is not installed\n"
-"Click \"Next\" to install or \"Cancel\" to quit"
+"Welcome to the mail configuration utility.\n"
+"\n"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
+#: ../../standalone/logdrake_.c:401
+msgid "Domain Name Resolver"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\tSend mail to %s\n"
-""
+#: ../../standalone/logdrake_.c:402
+msgid "Ftp Server"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
+#: ../../standalone/logdrake_.c:403
+msgid "Postfix Mail Server"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
+#: ../../standalone/logdrake_.c:404
+msgid "Samba Server"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "You can export using NFS or Samba. Please select which you'd like to use."
+#: ../../standalone/logdrake_.c:405
+msgid "SSH Server"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
+#: ../../standalone/logdrake_.c:406
+msgid "Webmin Service"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
+#: ../../standalone/logdrake_.c:407
+msgid "Xinetd Service"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
-#, c-format
-msgid "Reboot"
+#: ../../standalone/logdrake_.c:414
+msgid "service setting"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device"
+#: ../../standalone/logdrake_.c:415
+msgid ""
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, 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."
+#: ../../standalone/logdrake_.c:428
+msgid "load setting"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\t-Tape \n"
-""
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid "No browser is installed on your system, Please install one if you want to browse the help system"
+#: ../../standalone/logdrake_.c:444
+msgid "alert configuration"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remember this password"
+#: ../../standalone/logdrake_.c:445
+msgid "Please enter your email address below "
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\t-Network by SSH.\n"
-""
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+msgid "Network Monitoring"
msgstr ""
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
+#: ../../standalone/net_monitor_.c:96
+msgid "Profile "
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s found on %s, configure it automatically?"
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Remove a network interface"
+#: ../../standalone/net_monitor_.c:103
+msgid "Sending Speed:"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid ""
-"XFree86 driver: %s\n"
-""
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"This host/network is already in the list, it cannot be added again.\n"
-""
+#: ../../standalone/net_monitor_.c:106
+msgid "Connection Time: "
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
+#: ../../standalone/net_monitor_.c:147
+msgid "Wait please, testing your connection..."
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on a parallel port"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+msgid "Connecting to Internet "
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+msgid "Disconnecting from Internet "
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "(detected %s)"
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory where backups are stored"
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
+#: ../../standalone/net_monitor_.c:225
+msgid "Connection complete."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:226
msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
+#: ../../standalone/net_monitor_.c:330
+msgid "Color configuration"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please, testing your connection..."
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+#: ../../standalone/net_monitor_.c:400
+msgid "Local measure"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/net_monitor_.c:453
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"
-""
+"Warning, another internet connection has been detected, maybe using your "
+"network"
msgstr ""
-#: ../../standalone/drakgw:1 ../../standalone/drakgw:1
+#: ../../standalone/net_monitor_.c:459
#, c-format
-msgid "dismiss"
+msgid "Connect %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/net_monitor_.c:459
#, c-format
-msgid "Printing/Scanning on \"%s\""
+msgid "Disconnect %s"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit raid modules"
+#: ../../standalone/printerdrake_.c:47
+msgid "Reading printer data ..."
msgstr ""
-#: ../../services.pm:1
-#, 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)."
+#: ../../standalone/scannerdrake_.c:39
+msgid "Detecting devices ..."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, c-format
-msgid "Sunday"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../standalone/scannerdrake_.c:54
#, c-format
-msgid "Internet Connection Configuration"
+msgid "%s found on %s, configure it?"
msgstr ""
-#: ../../modules/parameters.pm:1
+#: ../../standalone/scannerdrake_.c:57
#, c-format
-msgid "comma separated numbers"
+msgid "%s is not in the scanner database, configure it manually?"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, 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\")"
+#: ../../standalone/scannerdrake_.c:63
+msgid "Select a scanner"
msgstr ""
-#: ../../standalone/drakperm:1
+#: ../../standalone/scannerdrake_.c:91
#, c-format
-msgid "Move selected rule up one level"
+msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:105
#, c-format
msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-""
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr ""
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "I can't find any room for installing"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Default printer"
+#: ../../standalone/scannerdrake_.c:107
+msgid "choose device"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../standalone/scannerdrake_.c:113
#, c-format
msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-""
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Modify RAID"
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
msgstr ""
-#: ../../network/netconnect.pm:1
-#, 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."
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/scannerdrake_.c:118
#, c-format
msgid ""
-"RAID-disks %s\n"
-""
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "Liberia"
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to set up a scanner with Scannerdrake."
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose your keyboard"
+#: ../../standalone/service_harddrake_.c:64
+msgid "Hardware probing in progress"
msgstr ""
-#: ../../standalone/drakgw:1
-#, 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"
-""
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Format partitions"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatic correction of CUPS configuration"
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Running \"%s\" ..."
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "enable radio support"
+#: ../../steps.pm_.c:18
+msgid "Choose your keyboard"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing to hosts: "
+#: ../../steps.pm_.c:19
+msgid "Security"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: %s"
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
+#: ../../steps.pm_.c:21
+msgid "Format partitions"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not transfer printers"
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Delay before booting the default image"
+#: ../../steps.pm_.c:23
+msgid "Install system"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Hard Disk to backup"
+#: ../../steps.pm_.c:25
+msgid "Add a user"
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
-#, c-format
-msgid "Configure"
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
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
-#, c-format
-msgid "Scannerdrake"
+#: ../../steps.pm_.c:28
+msgid "Configure services"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Warning, another Internet connection has been detected, maybe using your network"
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, 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."
+#: ../../steps.pm_.c:33
+msgid "Configure X"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Spooler"
+#: ../../steps.pm_.c:34
+msgid "Install system updates"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Create new theme"
+#: ../../steps.pm_.c:35
+msgid "Exit install"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "No image found"
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
msgstr ""
-#: ../../install_steps.pm:1
-#, 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"
-""
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
msgstr ""
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Detected model: %s"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
msgstr ""
-#: ../../standalone/drakedm:1
-#, 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."
+#: ../../share/compssUsers:999
+msgid "Office"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
+#: ../../share/compssUsers:999
+msgid "Workstation"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
msgstr ""
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome frontend)\n"
-""
+#: ../../share/compssUsers:999
+msgid "Domain Name and Network Information Server"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
+#: ../../share/compssUsers:999
+msgid "Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, gnumeric), pdf viewers, etc"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+#: ../../share/compssUsers:999
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
+#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
msgstr ""
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security level"
+#: ../../share/compssUsers:999
+msgid "Books and Howto's on Linux and Free Software"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "final resolution"
+#: ../../share/compssUsers:999
+msgid "KDE Workstation"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
+#: ../../share/compssUsers:999
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
-#, c-format
-msgid "Auto configuration"
+#: ../../share/compssUsers:999
+msgid "Multimedia - Video"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
+#: ../../share/compssUsers:999
+msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr ""
-
#: ../../share/compssUsers:999
-msgid "Office Workstation"
+msgid "Database"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, gnumeric), pdf viewers, etc"
+msgid "PostgreSQL or MySQL database server"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Game station"
+msgid "Tools to ease the configuration of your computer"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
+msgid "Multimedia - Sound"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Multimedia station"
+msgid "Documentation"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
+msgid "Console Tools"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Internet station"
+msgid "Postfix mail server, Inn news server"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news (mutt, tin..) and to browse the Web"
+msgid "Internet station"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
+msgid "Multimedia station"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
+msgid "Configuration"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Configuration"
+msgid "More Graphical Desktops (Gnome, IceWM)"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
+msgid "The K Desktop Environment, the basic graphical environment with a collection of accompanying tools"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
+msgid "Graphical Environment"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
+msgid "Development"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Console Tools"
+msgid "Apache, Pro-ftpd"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
+msgid "Tools to create and burn CD's"
msgstr ""
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
+msgid "Office Workstation"
msgstr ""
#: ../../share/compssUsers:999
-msgid "The K Desktop Environment, the basic graphical environment with a collection of accompanying tools"
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
+msgid "Graphics programs such as The Gimp"
msgstr ""
#: ../../share/compssUsers:999
-msgid "A graphical environment with user-friendly set of applications and desktop tools"
+msgid "DNS/NIS "
msgstr ""
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
+msgid "C and C++ development libraries, programs and include files"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgid "Network Computer server"
msgstr ""
#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
+msgid "Mail/Groupware/News"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Documentation"
+msgid "Game station"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
+msgid "Video players and editors"
msgstr ""
#: ../../share/compssUsers:999
-msgid "LSB"
+msgid "Multimedia - Graphics"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
+msgid "Amusement programs: arcade, boards, strategy, etc"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Web/FTP"
+msgid "Set of tools to read and send mail and news (pine, mutt, tin..) and to browse the Web"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
+msgid "Personal Finance"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Mail"
+msgid "A graphical environment with user-friendly set of applications and desktop tools"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Postfix mail server"
+msgid "Clients for different protocols including ssh"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Database"
+msgid "LSB"
msgstr ""
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
+msgid "Internet gateway"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
+msgid "Sound and video playing/editing programs"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Internet gateway"
+msgid "Other Graphical Desktops"
msgstr ""
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
+msgid "Editors, shells, file tools, terminals"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
+msgid "Programs to manage your finance, such as gnucash"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Network Computer server"
+msgid "Personal Information Management"
msgstr ""
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
+msgid "Multimedia - CD Burning"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
+msgid "Scientific Workstation"
msgstr ""
diff --git a/perl-install/share/po/Makefile b/perl-install/share/po/Makefile
index 07355143c..4088668cb 100644
--- a/perl-install/share/po/Makefile
+++ b/perl-install/share/po/Makefile
@@ -1,18 +1,18 @@
include ../../Makefile.config
-PMSFILES = $(ALLPMS) ../move/move.pm ../move/tree/mdk_totem
-PMSFILES_HERE = $(wildcard $(PMSFILES:%=../../%))
+PMSFILES = $(wildcard $(ALLPMS:%=../../%))
+
+# temporarly don't include those po files
+# (too low translation percentage)
+POFILES = $(shell ls *.po|grep -v '\(ga.po\|is.po\|sl.po\)')
-POFILES = $(wildcard *.po)
MOFILES = $(POFILES:%.po=%.mo)
LANGS = $(POFILES:%.po=%)
LOCALEDIR=$(DATADIR)/locale
-all: help mofiles
-
-mofiles: $(MOFILES)
+all: help $(MOFILES)
help:
@if [ ! -d doc ]; then \
@@ -34,24 +34,24 @@ $(POFILES): DrakX.pot
if [ -e help-$@t ]; then perl -pe 's|^#~ ||' -i $@t ; msgmerge -C $@t help-$@t $< > $@; else msgmerge $@t $< > $@; fi
rm $@t
-DrakX.pot: $(PMSFILES_HERE)
- cd ../.. ; perl_checker -q --generate-pot share/po/$@ $(PMSFILES)
+DrakX.pot: $(PMSFILES)
+ perl_checker -q --generate-pot $@ $(PMSFILES)
perl i18n_compssUsers 2>/dev/null >> $@
install:
for l in $(LANGS); do \
- $(SUDO) install -d $(LOCALEDIR)/$$l/LC_MESSAGES; \
- $(SUDO) install -m 644 $$l.mo $(LOCALEDIR)/$$l/LC_MESSAGES/$(NAME).mo; \
+ install -d $(LOCALEDIR)/$$l/LC_MESSAGES; \
+ install -m 644 $$l.mo $(LOCALEDIR)/$$l/LC_MESSAGES/$(NAME).mo; \
done
clean:
@rm -rf drakx-help.xml .memdump doc empty.po tmp.* messages tmp.pot *.mo $(POFILES:%=%t)
check:
- @grep '[^\\]\$$' DrakX.pot && { echo 'bad translation strings (contains $$) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^'; exit 1; } ||:
+ @grep -F '$$' DrakX.pot && { echo "bad translation strings (contains \$$) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"; exit 1; } ||:
verif:
- perl -ne '/^\s*#/ or $$i += my @l = /\b__?\(/g; END { print "$$i\n" }' $(PMSFILES_HERE)
+ perl -ne '/^\s*#/ or $$i += my @l = /\b__?\(/g; END { print "$$i\n" }' $(PMSFILES)
perl -ne '$$i += my @l = /\.c:/g; END { print "$$i\n" }' DrakX.pot
verif2:
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 67afbc8a2..00fa8d64c 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -1,5197 +1,3157 @@
-# translation of DrakX-af21-09.po to Afrikaans
-# translation of DrakX-af.po to Afrikaans
# KTranslator Generated File
# KTranslator Generated File
-# Copyright (C) 2000,2003 Free Software Foundation, Inc.
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2000 Free Software Foundation, Inc.
# Schalk W. Cronjé <schalkc@ntaba.co.za>, 2000
-# Dirk van der Walt <mandrake@webmail.co.za>, 2003
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX-af21-09\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
-"PO-Revision-Date: 2003-09-23 16:06+0200\n"
-"Last-Translator: Dirk van der Walt <mandrake@webmail.co.za>\n"
-"Language-Team: Afrikaans\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"PO-Revision-Date: 2001-08-20 21:28-0000\n"
+"Last-Translator: Schalk W. Cronjé <schalkc@uk.ntaba.com>\n"
+"Language-Team: Afrikaans <mandrake@af.org.za>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-1\n"
+"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Deursoek partisies vir hegpunte"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr "indien ja gekies is, let na byvoeg/verwydering van 'suid root' lêers."
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s:%s benodig die rekenaarnaam,MAC-adres, IP, 'nbi-image', 0/1 vir "
-"maerkliënt, 0/1 vir die Plaaslike Konfigurasie...\n"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr "Konfigurasie het verander - herbegin 'clusterfs/dhcpd'?"
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tVerwyder=%s"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"'n Differensiële rugsteun stoor slegs die lêers wat nuut bygekom het, of "
-"verander is, sedert die 'base' rugsteun gedoen is."
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
-#
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "network printer port"
-msgstr "poort van netwerkdrukker"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Plaas disket in aandrywer:"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr "DrakTermServ"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64MB of meer"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "Kies 'n X-bediener"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "X-bediener"
+
+#: ../../Xconfig/card.pm_.c:230
+msgid "Multi-head configuration"
+msgstr "Multikopkonfigurasie"
+
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-"Die rugsteunpartisielys se grootte verskil\n"
-"Wil u voortgaan?"
+"U stelsel onderstuen multikopkonfigurasie.\n"
+"Wat wil u doen?"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Which username"
-msgstr "Watter gebruiker"
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
+msgstr "Kies die geheue grootte van u videokaart"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "Watter tipe inskrywing wil u byvoeg?"
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "XFree-konfigurasie"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Restore partition table"
-msgstr "Herstel partisielys"
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Watter tipe XFree-konfigurasie verlang u?"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure hostname..."
-msgstr "Stel rekenaarnaam op..."
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
+msgstr "Konfigureer skyfkoppe afsonderlik"
-#: ../../printer/cups.pm:1
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
+msgstr "Gebruik Xinerama-ekstensies"
+
+#: ../../Xconfig/card.pm_.c:389
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfigureer net die \"%s\" kaart (%s)"
+
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Op CUPS bediener\"%s\""
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../install_steps_interactive.pm:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Post-install configuration"
-msgstr "Post-installasiekonfigurasie"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s met 3D-hardwareversnelling"
-#: ../../standalone/drakperm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-"Die huidige vlak van sekuriteit is %s\n"
-"Ondersoek of verander vergunningsvlakke"
+"U videokaart kan slegs 3D-versnelling onder XFree %s ondersteun.\n"
+"DIt word wel onder XFree %s ondersteun wat dalk beter 2D-ondersteuning het."
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Gebruik ``%s'' instede."
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+"U videokaart kan vir 3D-hardewareversnelling ondestuen word in XFree %s."
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid "Type"
-msgstr "Tipe"
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s met EKSPERIMENTELE 3D-hardewareversnelling"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
+"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."
msgstr ""
-"\n"
-"Let tog dat drukkers wat opgestel is met hulle vervaardiger se PPD lêers of "
-"plaaslike CUPS drywers, nie oorgeplaas kan word nie."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+"Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling onder XFree86 %s "
+"bied,\n"
+"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES.\n"
+"U kaart word deur XFree %s ondersteun, wat beter 2D-ondersteuning bied."
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"Hierdie betrokke drukker\n"
-"\n"
-"%s%s\n"
-"is direk aan u rekenaar gekoppel."
+"Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling onder XFree86 %s "
+"bied,\n"
+"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
-msgstr "Sentrale-Afrika Republiek"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (installasievertoondrywer)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "Deurgangtoestel"
+#
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "Aangepaste"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Advanced preferences"
-msgstr "Gevorderde voorkeure"
+#: ../../Xconfig/main.pm_.c:102
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Videokaart"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Net Method:"
-msgstr "Netwerkmetode:"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "Monitor"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Ethernetcard"
-msgstr "Ethernetkaart"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "Resolusie"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
msgstr ""
-"Indien gespesifiseer, stuur die e-pos verslag na hierdie adres, so nie,\n"
-"stuur na 'root'"
-
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr "Parameters"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "no"
-msgstr "nee"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Auto-detect"
-msgstr "Gebruik outospeuring"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface:"
-msgstr "Koppelvlak:"
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Opsies"
-#: ../../steps.pm:1
-#, c-format
-msgid "Select installation class"
-msgstr "Kies installasieklas"
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "OK"
-#: ../../network/tools.pm:1
-#, c-format
-msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Dit blyk dat u rekenaar geen toegang tot die Internet het nie.\n"
-"Probeer weer u konneksie konfigureer."
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "Verlaat"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
+"Keep the changes?\n"
+"The current configuration is:\n"
"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+"%s"
msgstr ""
-"Konnekteer u drukker aan 'n Linux bediener, en laat u Windows-rekenaars ook "
-"daardie bediener gebruik.\n"
+"Behou die veranderinge?\n"
+"Huidige konfigurasie is:\n"
"\n"
-"Sal ons voortgaan?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belarus"
-msgstr "Belarus"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Fout met die skryf van %s"
+"%s"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result to syslog"
-msgstr "Skryf toetsreslutate na 'n staaflêer"
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "Kies 'n monitor"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
msgstr ""
-"Die apmd monitor die sterkte van u battery en skryf terugvoer na u\n"
-"staaflêers.\n"
-"Dit kan ook ingespan word om die rekenaar af te skakeel, sodra die battery\n"
-"pap word."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tape to backup"
-msgstr "Skryf rugsteun na magnetiese band"
-
-#
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Ons gaan die volgende pakette installeer"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS configuration"
-msgstr "CUPS-konfigurasie"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total progress"
-msgstr "Totale vordering"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Tekort aan oop spasie vir die nuwe partisies"
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "Generies"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "Verskuif"
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+#, fuzzy
+msgid "Vendor"
+msgstr "Herroep"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-"\n"
-"Drakbackup aktiviteite deur %s:\n"
-"\n"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "yes"
-msgstr "ja"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr "("
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
-"Welcome to The Network Configuration Wizard.\n"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"We are about to configure your internet/network connection.\n"
-"If you don't want to use the auto detection, deselect the checkbox.\n"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
-"Welkom by die Netwerkkonfigurasie-assistent\n"
+"Die kritiese twee parameters is die vertikale verfristempo (die tempo\n"
+"waarteen die hele skerm verfris) en die horisontale sinkronisasietempo (die\n"
+"tempo waarteen die horisontale skandeerlyne vertoon word). Lg. is die\n"
+"belangrikste.\n"
"\n"
-"Ons gaan nou u internet/netwerkkonneksie konfigureer.\n"
-"Iniden u nie outobespeuring verlang nie, deselekteer die opsie.\n"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ")"
+"Dit is BAIE BELANGRIK dat u nie 'n sinkronisasie bereik buite dié van u\n"
+"monitor spesifiseer nie, dit kan die monitor beskadig. Indien u twyfel,\n"
+"kies konservatief."
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "Libanon"
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "Horisontale verfristempo"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "Vertikale verfristempo"
-#: ../../services.pm:1
-#, c-format
-msgid "Stop"
-msgstr "Stop"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 kleure (8 bis)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Edit selected host"
-msgstr "Redigeer gekose rekenaar"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32-duisend kleure (15 bis)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD device defined!"
-msgstr "Geen opgestelde CD!"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65-duisend kleure (16 bis)"
-#: ../../network/shorewall.pm:1
-#, fuzzy, c-format
-msgid ""
-"Please enter the name of the interface connected to the "
-"internet. \n"
-" \n"
-"Examples:\n"
-" ppp+ for modem or DSL connections, \n"
-" eth0, or eth1 for cable connection, \n"
-" ippp+ for a isdn connection.\n"
-msgstr ""
-"Voorsien asseblief die koppelvlak-naam wat verbind is aan die Internet.\n"
-"\n"
-"Voorbeelde:\n"
-"\t\tppp+ vir modem of DSL konneksies, \n"
-"\t\teth0, or eth1 vir kabel konneksies, \n"
-"\t\tippp+ vir 'n isdn konneksie.\n"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16-miljoen kleure (24 bis)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\t Gebruik '.backupignore' lêers\n"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 biljoen kleure (32 bis)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "Bulgaars (Foneties)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "Resolusies"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP start ip"
-msgstr "Die DHCP-ip om mee te begin"
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "Kies die resolusie en kleurdiepte"
-#: ../../Xconfig/card.pm:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "256 kB"
-msgstr "256 kB"
+msgid "Graphics card: %s"
+msgstr "Videokaart: %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Don't rewind tape after backup"
-msgstr "Geen opwen na rugsteun"
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr "Kanselleer"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "Herlaaistelsel hoofopsies"
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "Toets konfigurasie"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
-msgstr ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "Wil u die konfigurasie toets?"
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Tape"
-msgstr "Magnetiese band"
+#: ../../Xconfig/test.pm_.c:30
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Waarskuwing: Toetsing is gevaarlik met hierdie videokaart"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid "Malaysia"
-msgstr "Maleisië"
+msgid "Keyboard layout: %s\n"
+msgstr "Sleutelbord uitleg: %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid "Scanning network..."
-msgstr "Deursoek die netwerk..."
+msgid "Mouse type: %s\n"
+msgstr "Muistipe: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Hierdie opsie stel u instaat om enige weergawe van u \n"
-"'/etc' lêergids te herstel."
+msgid "Mouse device: %s\n"
+msgstr "Muistoestel: %s\n"
-#: ../../standalone/drakedm:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr "Die veranderinge is voltooi, wil u die 'dm' diens oorbegin?"
+msgid "Monitor: %s\n"
+msgstr "Monitor: %s\n"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Swiss (French layout)"
-msgstr "Switsers (Franse uitleg)"
+msgid "Monitor HorizSync: %s\n"
+msgstr "Monitor HoriSink: %s\n"
-#: ../../raid.pm:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid het gefaal. Dalk is 'raidtools' nie beskikbaar nie."
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Monitor VertVerfris: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid "August"
-msgstr "Augustus"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "FTP server"
-msgstr "NTP-bediener"
+msgid "Graphics card: %s\n"
+msgstr "Videokaart: %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid "Webcam"
-msgstr "Webkamera"
+msgid "Graphics memory: %s kB\n"
+msgstr "Video geheue: %s kB\n"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "grotte van die (tweede vlak) verwerker-tussengeheue"
+msgid "Color depth: %s\n"
+msgstr "Kleurdiepte: %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid "Soundcard"
-msgstr "Klankkaart"
+msgid "Resolution: %s\n"
+msgstr "Resolusie: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Month"
-msgstr "Maand"
+msgid "XFree86 server: %s\n"
+msgstr "XFree86 bediener: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Search for files to restore"
-msgstr "Opsoek na lêers om te herstel"
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86-drywer: %s\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Luxembourg"
-msgstr "Luxemburg"
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "X met herlaai"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:62
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
-"Om 'n lêer uit te druk vanaf die instruksielyn, gebruik die opdrag \"%s "
-"<lêernaam>\".\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Level %s\n"
-msgstr "Vlak %s\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac (phonetic)"
-msgstr "Siries (Foneties)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Iran"
-msgstr "Iran"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus"
-msgstr "Bus"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Iraq"
-msgstr "Irak"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "connecting to %s ..."
-msgstr "konnekteer aan %s ..."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Moontlike LAN-adresbotsing in konfigurasie gevind%s!\n"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring..."
-msgstr "Konfigurasie in aabou..."
+"Ek kan u rekenaar so opstel om X outomaties te laai.\n"
+"Wil u X begin met 'n herlaai?"
-#: ../../harddrake/v4l.pm:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:73
msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
msgstr ""
-"Die GNU/Linux se bttv module outospeur gewoonlik al die TV-kaart se "
-"parameters korrek.\n"
-"Indien dit nie gebeur het nie, kan u die korrekte instemmer en kaart tipe "
-"hier opstel. Kies bloot die parameters wat benodig word."
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Password (again)"
-msgstr "Wagwoord (weer)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search installed fonts"
-msgstr "Opsoek na geïnstalleerde lettertipes"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default desktop"
-msgstr "Verstek werkskerm"
+#: ../../Xconfig/various.pm_.c:85
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Watter tipe is u ISDN-konneksie?"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
-msgstr ""
-"Klik die 'Verslag' knoppie, indien u 'n foutverslag wil instuur.\n"
-"Dit sal die blaaier oopmaak op %s\n"
-"en 'n vorm om in te vul aan u toon. Die bogenoemde inligting\n"
-"sal na daardie bediener gestuur word."
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
+msgstr "Eerste sektor van herlaaipartisie"
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr "Venezuela"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
+msgstr "Eerste sektor van skyf (MBR)"
-#
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "IP address"
-msgstr "IP-adres"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "SILO installasie"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "Kies die groottes"
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
+msgstr "Waar wil u die herlaaistelsel installeer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Lys van korrupte data:\n"
-"\n"
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "LILO/grub installasie"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
-msgstr ""
-"Kan slegs afsonderlik geheg word (- op sy eie - , \n"
-"die '-a' opsie sal hiedie lêerstelsel nie laat heg nie)."
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
+msgstr "SILO"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"U modem word nie ten volle deur Linux ondersteun nie.\n"
-"Probeer http://www.linmodems.org vir meer inligting."
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
+msgstr "LILO met tekskieskaart"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose another partition"
-msgstr "Kies 'n ander partisie"
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
+msgstr "LILO met grafiese kieskaart"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Current user"
-msgstr "Huidige gebruiker"
+#: ../../any.pm_.c:142
+msgid "Grub"
+msgstr "Grub"
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
-msgstr "Gebruikernaam"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "Laai vauit DOS/Windows (loadlin)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Linker \"Windows\" sleutel"
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "Guyana"
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "Herlaaistelsel hoofopsies"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "dhcpd Bediener-konfigurasie"
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
+msgstr "Herlaaistelsel om te gebruik"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Gebruik vir lêergids:\n"
-"kan slegs deur die eienaar van die lêergids (of lêer) verwyder word"
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "Herlaaiprogram installasie"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " op Novell bediener \"%s\", drukker \"%s\""
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "Herlaaitoestel"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Name"
-msgstr "Drukkernaam"
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "Kompak"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
-msgstr ""
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "kompak"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
-msgstr "Verwyder module"
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "Videomodus"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
+msgstr "Wagperiode voro verstekstelsel gelaai word"
+
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
msgid "Password"
msgstr "Wagwoord"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Gevorderde-konfigurasie"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr "Deursoek u HP multi-funksionele toestel"
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "Wagwoord (weer)"
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "'Root'"
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "Beperk instruksielynopsies"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "Kies 'n bestaande RAID om by toe te voeg"
+#: ../../any.pm_.c:171
+msgid "restrict"
+msgstr "beperk"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turks (moderne \"Q\" model)"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "Maak /tmp skoon met elke herlaai"
-#: ../../standalone/drakboot:1
+#: ../../any.pm_.c:174
#, c-format
-msgid "Lilo message not found"
-msgstr "Lilo boodskap nie gevind nie"
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Presiese RAM grootte indien nodig (%d MB bespeur)"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
+msgstr "Gebruik multiprofiele"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
-msgstr "indien nodig"
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "Gee die geheuegrootte in MB"
-#: ../../standalone/drakclock:1
-#, c-format
+#: ../../any.pm_.c:182
msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
+"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
+"Opsie ``Beperk instruksielynopsies'' kan nie sonder wagwoord gebruikword nie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Failed..."
-msgstr "Herstel Het Gefaal..."
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "Stoor hierdie rekenaar se wagwoord in 'drakbackup' se konfigurasie."
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "Die wagwoorde stem nie ooreen nie."
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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"
+#: ../../any.pm_.c:191
+msgid "Init Message"
+msgstr "Beginboodskap"
+
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
msgstr ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default user"
-msgstr "Verstekgebruiker"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
+msgstr "Tydsbeperking vir stelselkernlaai"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"die vorderingsbalk se x koördinaat\n"
-"van sy linker-boonste hoek"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
+msgstr "Laat CD-herlaai toe?"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Current interface configuration"
-msgstr "Huidige koppelvlak-konfigurasie"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
+msgstr "Laat OF-herlaai toe?"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Lyndrukkerdiensprogram"
+#: ../../any.pm_.c:197
+msgid "Default OS?"
+msgstr "Verstek bedryfstelsel?"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../any.pm_.c:231
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"
-"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"
+"On which drive are you booting?"
msgstr ""
-"\n"
-"Indien u 'n ISA-kaart het, behoort die waardes op die volgende skerm\n"
-"reg te wees.\n"
-"\n"
-"Indien u 'n PCMCIA-kaart het, moet u die IRQ en I/O van u kaart weet.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not print any test page"
-msgstr "Geen toetsbladsy(e)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr "Gurmukhi"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s is alreeds in gebruik\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
-msgstr "Dwing Geen APIC"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr "Hierdie wagwoord is te eenvoudig. (moet ten minste %d karakters bevat)"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "[keyboard]"
-msgstr "[sleutelbord]"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP-instaanbediener"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install List"
-msgstr "Installeer-lys"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:247
msgid ""
-"Change\n"
-"Restore Path"
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
-"Verander\n"
-"Herstelroete"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Vertoon slegs vir gekose dag"
+"Hier is die huidige inskrywings\n"
+"U kan byvoeg or verwyder soos nodig."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tBeperk gebruik van skyfspasie tot %s MB\n"
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "Voeg by"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 kB"
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "Klaar"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Aandag: Kan nie parallelle poorte outospeur nie)"
+#: ../../any.pm_.c:257
+msgid "Modify"
+msgstr "Verander"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Oor watter tipe kaart beskik u?"
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "Linux"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "Ander bedryfstelsel (SunOS...)"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Security"
-msgstr "Sekuriteit"
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "Ander bedryfstelsel (MacOS...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Om opsies te kies en druktake te bestuur, kan u ook die grafiese program "
-"\"xpdq\" gebruik \n"
-"Indien u KDE as werksomgewing gebruik, kan u 'n \"paniek knoppie\" opstel, "
-"dit is 'n ikoon op u werkskerm wat lui \"STOP Drukker\", wat dan dadelik "
-"alle druktake sal stop, sodra u op dit klik. Dit is byvoorbeeld handig as "
-"die papier vasdruk.\n"
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "Ander bedryfstelsel (windows...)"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "Beeld"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Kon nie 'n rugsteun om te herstel vind nie...\n"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "Basis"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown"
-msgstr "Onbekend"
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
+msgstr "Aanlas"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "Jammer, hierdie bediener is reeds deel van die lys.\n"
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Network Configuration"
-msgstr "Netwerkkonfigurasie"
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "Lees-skryf"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "Tabel"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Protokol vir die res vd wêreld \n"
-"geen D-Kanaal nie (bruikhuurlyne)"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "Onveilig"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - /etc/xinetd.d/tftp:\n"
-" \tdrakTermServ will configure this file to work in conjunction with "
-"the images created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical tftp configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "Etiket"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Opsie %s moet 'n nommer wees!"
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "Verstek"
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, c-format
-msgid "Notice"
-msgstr "Aandag"
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
+msgstr "Initrd-grootte"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "U het nog nie 'X' opgestel nie. Verlang u dit regtig?"
+#: ../../any.pm_.c:318
+msgid "NoVideo"
+msgstr "Geen video"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Die opstel van u drukker is ten volle outomaties. Indien u drukker nie "
-"korrek bespeur is nie, of u moonlik 'n pasmaak konfigurasie verkies, gebruik "
-"\"Selfdoen konfigurasie\"."
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "Verwyder inskrywing"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "What type of partitioning?"
-msgstr "Watter soort partisie?"
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "Leë etiket word nie toegelaat nie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-" "
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
msgstr ""
-"deur FTPgestuur: %s\n"
-" "
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface"
-msgstr "Koppelvlak"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Multisession CD"
-msgstr "Multisessie-CD"
-
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated strings"
-msgstr "komma-afgeskeie reekse"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "Gebruik die skandeerders vanaf hierdie rekenaars:"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Messages"
-msgstr "Boodskappe"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Onbekend|CPH06X (bt878) [baie vervaardigers]"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP en IMAP bediener"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mexico"
-msgstr "Mexiko"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model stepping"
-msgstr "Stap deur modelle"
+#: ../../any.pm_.c:330
+#, fuzzy
+msgid "You must specify a root partition"
+msgstr "U moet oor 'n ruilpartisie beskik"
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
-msgstr "Rwanda"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "Hierdie etiket is alreeds in gebruik"
-#: ../../lang.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Switzerland"
-msgstr "Switserland"
+msgid "Found %s %s interfaces"
+msgstr "Het %s %s koppelvlakke gevind"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "Beskik u oor nog?"
-#: ../../modules/interactive.pm:1
+#: ../../any.pm_.c:642
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Het u enige %s koppelvlakke?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "Om die konfigurasielêer te lees, moet u 'root' wees.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Eksterne lpd drukkeropsies"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"GNU/Linux is 'n multigebruikerstelsel, dit beteken dat elke gebruiker sy\n"
-"eie voorkeure kan stel, met sy eie lêers ens. U kan meer hieroor in die\n"
-"\"Starter Guide\" lees. Andersins as 'root' (die supergebruiker) kan\n"
-"gebruikers wat u hier byvoeg niks behalwe hul eie lêers en eie\n"
-"konfigurasie verander nie. U moet ten minste een gewone gebruiker vir uself\n"
-"skep.\n"
-"Hierdie gebruker is die een waaronder u moet inteken vir normale gebruik\n"
-"van die rekenaar. Alhoewel dit baie gemaklik is om as 'root' in te teken "
-"vir\n"
-"daaglikse werk, is dit baie gevaarlik. 'n Eenvoudige fout kan moontlik u\n"
-"stelsel\n"
-"breek. 'n Fout wat as gewone gebruiker gemaak word, sal net daardie\n"
-"gebruiker\n"
-"beïnvloed en nie hele stelsel nie.\n"
-"\n"
-"Eers moet u, u eie naam intik. Dit is nie verpligtend nie, want u kan\n"
-"eintlik\n"
-"enigiets intik, as u wil. DrakX sal dan die eerste woord wat u ingetik het,\n"
-"in die\n"
-"\"%s\" veld plaas. U kan hier verander indien u wil. Dit is die\n"
-"gebruikernaam waarmee\n"
-"die gebruiker op die rekenaar sal aanteken. U moet dan ook 'n wagwoord\n"
-"voorsien.\n"
-"'n Gewone gebruiker se wagwoord is nie so krities soos dié van die\n"
-"supergebruiker\n"
-"(uit 'n sekuriteitsoogpunt) nie, maar daar is geen\n"
-"rede om agterlosig met u data te wees nie.\n"
-"\n"
-"\n"
-"Indien u op \"%s\" kliek sal die gebruiker geskep word en kan u nog\n"
-"gebruikers byvoeg.\n"
-"U kan vir al u vriende gebruikername skep, sommer een vir pa en ma ook. \n"
-"Sodra u klaar is, kliek op \"%s\".\n"
-"Kliek op die \"%s\" knoppie indien u die verstek-instruksiedop vir die\n"
-"gebruiker\n"
-"wil verander.\n"
-"Dit is bash by verstek.\n"
-"\n"
-"Sodra u klaar is met die skep van gebruikers, sal u gevra word om 'n\n"
-"gebruiker\n"
-"te kies wie outomaties sal inteken sodra Linux klaar selfgelaai het. Indien\n"
-"u hierdie funksie wil gebruik (en plaaslike sekuriteit tans nie vreeslik\n"
-"belangrik is nie), kies asseblief die verlangde gebruiker en venstermaker,\n"
-"klik dan op \"%s\".\n"
-"Indien u NIE hierdie funksie wil gebruik nie, sorg dat \"%s\" NIE gemerk is\n"
-"nie."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Internet Access..."
-msgstr "Konfigureer Internettoegang..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Kies asseblief die tydsinterval tussen elke rugsteun"
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "Nee"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Norway"
-msgstr "Noorweë"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "Ja"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Delete profile"
-msgstr "Verwyder profiel"
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "Sien hardeware inligting"
-#: ../../keyboard.pm:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Danish"
-msgstr "Deens"
+msgid "Installing driver for %s card %s"
+msgstr "Drywer vir %s kaart %s in installasieproses"
-#: ../../services.pm:1
+#: ../../any.pm_.c:663
#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Aktiveer outomaties die numslot-sleutel vir die aantekentolk en\n"
-"'XFree' tydens selflaai."
+msgid "(module %s)"
+msgstr "(module %s)"
-#: ../../network/network.pm:1
+#: ../../any.pm_.c:674
#, 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)."
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-"Gee asb die IP-konfigurasie vir hierdie rekenaar.\n"
-"Elke item moet as 'n IP-adres in dot-desimalenotasie\n"
-"(1.2.3.4) gegee word."
-#: ../../help.pm:1
+#: ../../any.pm_.c:680
#, 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."
+"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 ""
-"Die Mandrake Linux installasie is versprei oor 'n aantal CD-ROMs.DrakX\n"
-"weet wanneer 'n gekose pakket op 'n ander CD-ROM is. DrakX sal in so\n"
-"geval die huidige CD uitskop en aandui watter een benodig word."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
-msgstr "Indien gemerk, sal die eienaar en groep nie verander nie"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "Bulgaars"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
-msgstr "Dinsdag"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "Verwerkers"
+"U kan noue die opsies voorsien vir module %s.\n"
+"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
+"Bv. ``io=0x300 irq-7''"
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "Svalbard en Jan Mayen Eilande"
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "Module opsies:"
-#: ../../standalone/drakTermServ:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "No NIC selected!"
-msgstr "Geen NIC gekies!"
+msgid "Which %s driver should I try?"
+msgstr "Watter %s drywer meot ek probeer?"
-#: ../../network/netconnect.pm:1
+#: ../../any.pm_.c:703
#, 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."
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
-"Probleme is tydens die konfigurasie ondervind.\n"
-"Toets u konneksie deur 'net_monitor' of 'mcc'. Indien u steeds probleme "
-"ondervind, konfigureer weer van voor af."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "partisie %s staan bekens as %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Other files..."
-msgstr "Skep 'n rugsteun van \"ander \" lêers..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
-msgstr "Kongo (Kinshasa)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "SMB-bediener se IP:"
+"In sekere gevalle sal die %s drywer ekstra inligting benodig, alhoewel in\n"
+"meeste gevalle dit nie nodig wees nie. Wil u ekstra opsies voorsien od moet\n"
+"rekenaar self daarvoor aftas. In uitsonderlike gevalle mag die rekenaar\n"
+"ophang, maar dit sal nie skade veroorsaak nie."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Die partisielys op skyf %s gaan opdateer word!"
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
+msgstr "Aftas"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing HPOJ package..."
-msgstr "Installeer HPOJ pakket..."
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "Spesifieer opsies"
-#: ../../any.pm:1
+#: ../../any.pm_.c:719
#, 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"
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
-"'n Spesiale herlaaiskyf voorsien 'n metode waarby u Linux kan laai sonder\n"
-"die gebruik van 'n normale herlaaistelsel. Dit is veral handig wanneer\n"
-"u nie LILO (of Grub) op u stelsel wil installeer nie, 'n ander "
-"bedryfstelsel\n"
-"LILO\n"
-"verwyder het, of LILO nie met u stelsel werk nie. Hierdie herlaaiskyf kan\n"
-"ook\n"
-"met die Mandrake reddingsbeeld gebruik word, wat dit makliker maak om van\n"
-"ernstige stelselfalings te herstel. Wil u 'n herlaaiskyf maak?\n"
-"%s"
+"Laai van module %s het gefaal.\n"
+"Wil u ander parameters probeer?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
msgstr ""
-"\n"
-" DrakBackup Daemon Verslag\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latvian"
-msgstr "Lets"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr "maandeliks"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Retry"
-msgstr "Herstel"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr "Modulenaam"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Start at boot"
-msgstr "Begin tydens herlaaityd"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Gebruik Aanwas-rugsteun"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "Eerste sektor van skyf (MBR)"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "El Salvador"
+#: ../../any.pm_.c:738
+msgid "access to network tools"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
-msgstr "Stuurstok"
+#: ../../any.pm_.c:739
+msgid "access to compilation tools"
+msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../any.pm_.c:744
#, c-format
-msgid "DVD"
-msgstr "DVD"
+msgid "(already added %s)"
+msgstr "(%s alreeds bygevoeg)"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
-msgstr "Gebruik Unicode by verstek"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "Die wagwoorde is te eenvoudig"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "die GNU/Liunux kernel se module wat die toestel beheer"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
+msgstr "Gee asb. 'n gebruikerskode"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Hardewareklok gestel vir GMT"
+#: ../../any.pm_.c:751
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr ""
+"Die gebruikerskode maag alleenlikui kleinletter, nommers, '-' en '_' bestaan"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "Probeer die partisielys red"
+#: ../../any.pm_.c:752
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Opsie %s moet 'n heeltal wees!"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
-msgstr "Geldigverklaring deur wagwoorde"
+#: ../../any.pm_.c:757
+msgid "Add user"
+msgstr "Voeg gebruiker by"
-#: ../../interactive/stdio.pm:1
+#: ../../any.pm_.c:758
#, c-format
msgid ""
-"Entries you'll have to fill:\n"
+"Enter a user\n"
"%s"
msgstr ""
-"Velde wat u moet invul:\n"
+"Tik 'n gebruiker in\n"
"%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-"Indien u 'n rugsteun na 'n ander media skryf, sal daar eers lêers op die "
-"hardeskyf geskep word en dan oorgeskuif word. Om daarna hierdie 'tar' lêers "
-"van u hardeskyf te verwyder, moet u hierdie opsie aktiveer."
-
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Kon nie die intydse opgradering begin nie !!!\n"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "Naam: "
+#: ../../any.pm_.c:759
+msgid "Accept user"
+msgstr "Aanvaar gebruiker"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
-msgstr ""
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "Regte naam"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16-miljoen kleure (24 bis)"
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "Gebruikerskode"
-#: ../../any.pm:1
-#, c-format
-msgid "Allow all users"
-msgstr "Laat alle gebruikers toe"
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "Dop"
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr "Die amptelike MandrakeSoft Winkel"
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "Ikoon"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "Grootteverandering"
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "Outointeken"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:804
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
-"Voorsien die maksimum grootte\n"
-"wat Drakbackup mag gebruik(MB)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Cable connection"
-msgstr "Kabelkonneksie"
-
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, c-format
-msgid "User"
-msgstr "Gebruiker"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Maak 'n nuwe rugsteun voor herstel (slegs vir 'n aanwas-rugsteun.)"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "mkraid het gefaal"
+"Ek kan u rekenaar so opstel om X outomaties een gebruiker in te teken.\n"
+"Verlang u hierdie funksionaliteit?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Name"
-msgstr "Naam"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "3-Knop emulasie"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
-msgstr "Ondersoek die byvoeg/verwydering van sgid-lêers"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files..."
-msgstr "Stuur lêers..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "Israelies (Foneties)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
-msgstr "toegang tot rpm-nutsprogramme"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "U moet 'n drukker / toestel spesifiseer!"
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "Kies die verstek gebruiker:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Toegangsprobleme na CD"
+#
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
+msgstr "Kies die vensterbestuurder om te loop:"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "Telefoonnommer"
+#: ../../any.pm_.c:824
+#, fuzzy
+msgid "Please choose a language to use."
+msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr "Fout: Die \"%s\" drywer vir u klankkaart in nie gelys nie"
+#: ../../any.pm_.c:826
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
+msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Drukkernaam, beskrywing, ligging"
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "Alles"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
-msgstr "VSA (uitsaai)"
+#: ../../any.pm_.c:961
+#, fuzzy
+msgid "Allow all users"
+msgstr "Voeg 'n gebruiker by"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Gebruik Xinerama-ekstensies"
+#: ../../any.pm_.c:961
+#, fuzzy
+msgid "No sharing"
+msgstr "CUPS word gelaai"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback"
-msgstr "Teruglus"
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
+#, fuzzy, c-format
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr ""
+"Hierdie pakket moet opgradeer word\n"
+"Is u seker u wil dit deselekteer?"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "West Europe"
-msgstr "Wes-Europa"
+#: ../../any.pm_.c:973
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
-msgid "On CD-R"
-msgstr "Op CD-R"
+msgid "Mandatory package %s is missing"
+msgstr ""
-#: ../../standalone.pm:1
-#, c-format
+#: ../../any.pm_.c:987
msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
+"Would you like to allow users to share some of their directories?\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror "
+"and nautilus.\n"
"\n"
-"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"
+"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-"[OPSIES] [PROGRAMNAAM]\n"
-"\n"
-"OPSIES:\n"
-" --help - vertoon hierdie hulp boodskap.\n"
-" --report - program behoort een van die 'mandrake tools' te wees\n"
-" --incedent - program behoort een van die 'mandrake tools' te wees"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake2 version %s"
-msgstr "Harddrake2 weergawe %s"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
+msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Preferences"
-msgstr "Voorkeure"
+#: ../../any.pm_.c:1003
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr "Swaziland"
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
+msgstr "Krakers welkom"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "Dominikaanse Republiek"
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Swak"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr "Kopieer %s"
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
+msgstr "Standaard"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Choose color"
-msgstr "Kies 'n kleur"
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Hoog"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac"
-msgstr "Siries"
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+#, fuzzy
+msgid "Higher"
+msgstr "Hoog"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "Paranoïes"
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1061
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!"
+"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 ""
-"Kies die hardeskyf wat u wil wis, om u nuwe Mandrake Linux\n"
-"te kan installeer. Wees tog versigtig, alle huidige data op daardie\n"
-"partisie sal vernietig word!"
-
-#. -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
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Gebruik die %c en %c sleutels om te kies wat uitgelig moet word."
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Generiese 2-knop muis"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Ontsper \"%s\" om lêer uit te kan voer"
-
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr "Verwyder eers die logiese volumes\n"
-
-#. -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
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Die uitgeligte inskrywing sal outomaties in %d sek gelaai word."
+"Hierdie vlak moet met sorg gebruik word. Dit maak 'n stelsel baie maklik\n"
+"om te gebruik, maar is baie sensitief. Dit moet nie gebruik vir 'n rekenaar\n"
+"wat aan ander rekenaars of die internet gekoppel is nie. Daar is geen "
+"wagwoord\n"
+"toegang nie."
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../any.pm_.c:1064
msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
-"Kan nie na ' /etc/sysconfig/bootsplash ' skryf nie.\n"
-"Lêer is soek."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet access"
-msgstr "Internettoegang"
+"Wagwoorde is nou ontsper, maar gebruik as 'n netwerkrekenaar word nie "
+"aanbeveel nie."
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../any.pm_.c:1065
+#, fuzzy
msgid ""
-"y coordinate of text box\n"
-"in number of characters"
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
-"die teksboksie se x koördinaat\n"
-"in aantal karakters"
+"Hierdie is die standaard sekuriteitsvlak wat aanbeveel word vir rekenaars\n"
+"wat aan die internet as 'n kliënt konnekteer. Daar is heelwat "
+"sekuriteitstoetse."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1066
msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
-"Klik op die \"Drukkeropsies\" knoppie, om 'n lys beskikbare opsies vir die "
-"huidige drukker te verkry."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr "Bedieners word geaktiveer..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Toetsbladsy(e) word gedruk..."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1067
+#, fuzzy
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."
+"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 ""
-"Suksesvolle Oordrag\n"
-"U kan net seker maak dat u by die bediener kan inteken:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"sonder om 'n wagwoord-porteks te ontvang."
+"Met hierdie sekuriteitsvlak, kan die stelsel as 'n bediener gebruik word.\n"
+"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie kliënte\n"
+"af kan aanvaar."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Daar is alreeds 'n partisie met hegpunt %s\n"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
-msgstr "Versper/Ontsper msec se uurlikse toets."
-
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1070
+#, fuzzy
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 ""
-"Op hierdie tydstip moet u besluit waar op die hardeskyf u Mandrake Linux\n"
-"wil installeer. Indien u 'n leë hardeskyf het, of indien 'n bestaande\n"
-"bedryfstelsel al\n"
-"die beskikbare spasie gebruik, sal u partisies moet skep. Om 'n partisie te\n"
-"skep\n"
-"veroorsaak dat u die hardeskyf logies verdeel, om spasie te skep vir u nuwe\n"
-"Mandrake Linux bedryfstelsel.\n"
-"\n"
-"Indien u 'n onervare gebruiker is, kan die skep van partisies vreemd en\n"
-"intimiderend\n"
-"wees\n"
-"Die skep van partisies is gewoonlik onomkeerbaar en kan dataverlies\n"
-"meebring indien daar reeds 'n bestaande bedryfstelsel op die hardeskyf is.\n"
-"Gelukkig sluit DrakX 'n assisstent in wat die proses vergemaklik.\n"
-"Voor u verder gaan, lees die volgende deel deeglik deur, en wees rustig!\n"
-"(Moet nie stres kap nie!)\n"
-"\n"
-"Afhangende van hoe u hardeskyf gekonfigureer is, is daar 'n aantal opsies\n"
-"beskikbaar:\n"
-"\n"
-" * \"%s\": hierdie opsie sal die partisies op u leë hardeskyf outomaties\n"
-"opstel.\n"
-"Indien u die een kies, is dit al inset wat u hoef te lewer.\n"
-"\n"
-" * \"%s\": die assistent het een of meer bestaande Linux-partisies op die\n"
-"hardeskyf\n"
-"gekry. Indien u wil gebruik maak van hulle, kies hierdie opsie.Daar is\n"
-"verstek hegpunte,\n"
-"wat u kan verander, indien u wil, maar ons stel voor u hou daarby.\n"
-"\n"
-" * \" %s\": indien u Microsoft Windows op u hardeskyf geïnstalleer het, en\n"
-"dit neem\n"
-"al die spasie in beslag, moet ons eers 'n plekkie vir Linux skep. U kan die\n"
-"Microsoft\n"
-"Windows partisie met al die data uitwis (verwys na 'Erase entie disk'\n"
-"oplossing)\n"
-"of u kan die Microsoft Windows FAT partisie verklein. Dit kan geskied "
-"sonner\n"
-"verlies\n"
-"van data, mits u die partisie gedefragmenteer het, en dit die FAT formaat\n"
-"gebruik.\n"
-"Ons beveel ten sterkste aan dat u 'n rugsteun maak van u data. Hierdie is\n"
-"die\n"
-"beste metode indien u beide Mandrake Linux en Microsoft Windows op die\n"
-"rekenaar wil gebruik.\n"
-"\n"
-"Neem tog kennis dat dit die beskikbare oop spasie in Microsoft Windows sal\n"
-"verminder, aangesien ons plek moet maak vir Linux op die hardeskyf.\n"
-"\n"
-" * \"%s\": Indien u alle data op alle partisies op u hardeskyf wil uitwis,\n"
-"en\n"
-"dit dan vervang met Mandrake Linux, kan u hierdie opsie kies. Wees "
-"versigtig\n"
-"die opsie is onomkeerbaar!\n"
-"\n"
-" !! Net weer waarsku: alle data op die skyf sal vernietig word. !! \n"
-" * \"%s\" hierdie opsie gaan doodeenvoudig alles uitwis en van vooraf\n"
-"die hardeskyf partisies skep. Alle data sal verlore gaan.\n"
-"\n"
-" !! Net weer waarsku: alle data up die skyf sal vernietig word. !! \n"
-" * \"%s\": kies hierdie opsie indien u self die partisies wil opstel. Wees\n"
-"uiters\n"
-"versigtig -- dit is 'n gevaarlike keuse en u kan maklik al u data verloor.\n"
-"Hierdie\n"
-"opsie word aanbeveel vir persone wat ondervinding het en vertroud is met\n"
-"Linux .\n"
-"U kan verder oplees oor hoe om te werk te gaan in die \"Managing Your\n"
-"Partitions\"\n"
-"deel van die \"Starter Guide\"."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
-msgstr "Oekraine"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Application:"
-msgstr "Applikasie:"
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
+msgstr ""
+"Hierdie is Vlak-4 sekuriteit, maar die stelsel is afgeslote.\n"
+"Sekuriteitseienskappe is maksimaal."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "External ISDN modem"
-msgstr "Eksterne ISDN modem"
+#: ../../any.pm_.c:1076
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Opsies"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr "indien ja gekies is, stuur toetsreslutate via e-pos."
+#: ../../any.pm_.c:1077
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Gebruik sekuriteitsvlak"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "U keuse? (verstek %s) "
+#: ../../any.pm_.c:1080
+#, fuzzy
+msgid "Security level"
+msgstr "Sekuriteitsvlak word gestel."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr "Probleemoplossing"
+#: ../../any.pm_.c:1082
+#, fuzzy
+msgid "Use libsafe for servers"
+msgstr "Selekteer opsies vir bediener"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1083
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"
+"A library which defends against buffer overflow and format string attacks."
msgstr ""
-"Toetsbladsy(e) is na die drukkerstelsel gestuur.\n"
-"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-"Drukstatus:\n"
-"%s\n"
-"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
-msgstr "daagliks"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and one unknown printer"
-msgstr "en een onbekende drukker"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Ireland"
-msgstr "Ierland"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Restore Configuration "
-msgstr " Herstel Konfigurasie "
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Is dit korrek?"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1166
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 ""
-"U kan nou die Internet/netwerk konneksie opstel. Indien u graag die "
-"rekenaar\n"
-"aan die Internet of plaaslike netwerk wil koppel, kies \"%s\".\n"
-"Mandrake Linux sal poog om u netwerk toestelle en modems te outospeur.\n"
-"Indien\n"
-"dit onsuksesvol was, probeer waar \"%s\" nie gemerk is nie. U kan ook kies\n"
-"om nie \n"
-"die netwerk op te stel nie, of dit selfs eers later te doen, kies dan \"%s"
-"\"\n"
-", wat u na die volgende stap sal neem.\n"
-"\n"
-"Waneer u die netwerk opstel, is die volgende opsies tot u beskiking:\n"
-"gewone modem, ISDN-modem, ADSL konneksie, kabel-modem, en ten laaste,\n"
-"'n normale LAN konneksie (Ethernet).\n"
-"\n"
-"Ons gaan nie al die opsies bespreek nie - maak net seker dat u die nodigste\n"
-"inligting soos IP-adres, 'default gateway', DNS bedieners, ens.\n"
-"verkry het van u ISP of administrateur.\n"
-"U kan die \"Starter Guide\" se hoofstuk omtrent die Internet raadpleeg\n"
-"vir besonderhede rakende die konfigurasie, of doodgewoon wag tot alles "
-"klaar\n"
-"geïnstalleer is en agterna die konneksie opstel."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Wysgeer Konfigurasie"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Autoprobe"
-msgstr "Aftas"
+"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 ""
-#: ../../security/help.pm:1
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, c-format
msgid ""
-"if set to yes, check for :\n"
-"\n"
-"- empty passwords,\n"
+"Welcome to %s the operating system chooser!\n"
"\n"
-"- no password in /etc/shadow\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
"\n"
-"- for users with the 0 id other than root."
msgstr ""
-"indien ja gekies is, toets vir:\n"
-"\n"
-"-leë wagwoorde,\n"
+"Welkom by %s die bedryfstelselkeuseprogram!\n"
"\n"
-"-geen wagwoord in /etc/shadow\n"
+"Kies u bedryfstelsel uit die bogelyste opsies of wag\n"
+"%d sekonde vir die verstekopsie.\n"
"\n"
-"-vir gebuikers buiten 'root' wie se UID '0' is."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files..."
-msgstr "Maak 'n rugsteun van die 'system'-lêers..."
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Welkom by GRUB, die bedryfstelselkieskaart!"
-#: ../../any.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:986
#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Kan nie uitsaai sonder 'n NIS-domein nie"
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr ""
+"Gebruik die %c en %c sleutels om die inskrywing te kies wat uitgelig moet "
+"word."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Verwyder drukker \"%s\"..."
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Druk ENTER om die gekose bedryfstelsel te laai, 'e' om te redigeer."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell history size"
-msgstr "Instruksiedop se geskiendenis-gootte"
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "instruksies voor herlaai, of 'c' vir 'n instruksielyn."
-#: ../../standalone/drakfloppy:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:995
#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Die uitgeligte inskrywing sal outomaties in %ds gelaai word."
-#: ../../standalone/drakpxe:1
-#, 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"
-msgstr ""
-"Dui asseblief aan waar 'auto_install.cfg' geleë is.\n"
-"\n"
-"Laat dit uit, indien u nie outomatiese installasie modus verlang nie.\n"
-"\n"
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
+msgstr "nie genoeg spasie in /boot nie"
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on other machines"
-msgstr "Gekonfigureer op ander rekenaars"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "Werkskerm"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "inligtingsvlak wat verkry kan word deur die cpuid instruksie"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "Beginkieskaart"
-#: ../../lang.pm:1
-#, c-format
-msgid "Peru"
-msgstr "Peru"
+#: ../../bootloader.pm_.c:1120
+#, fuzzy, c-format
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "Waar wil u die herlaaistelsel installeer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " on device: %s"
-msgstr " op toestel: %s"
+#: ../../bootlook.pm_.c:53
+msgid "Boot Style Configuration"
+msgstr "Herlaaistylkonfigurasie"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "Verwyder Windows(TM)"
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
+msgstr "/_Lêer"
-#: ../../services.pm:1
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Laai die X-fontbediener (dis nodig vir XFree)."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
+msgstr "/Lêer/_Verlaat"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"Meeste van hierdie waardes kom\n"
-"uit u huidige konfigurasie.\n"
-"U kan dit verander soos benodig."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
+msgstr "<control>Q"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Kies die fontlêer of lêergids en klik op 'Voeg by'"
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
+msgstr "Nuwe monitorkategoriasiestyl"
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "Madagaskar"
+#: ../../bootlook.pm_.c:83
+msgid "NewStyle Monitor"
+msgstr "Nuwe styl monitor"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
+#: ../../bootlook.pm_.c:84
+msgid "Traditional Monitor"
+msgstr "Tradisionele monitor"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
-msgstr "Cron nie beskikbaar vir normale gebruikers"
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
+msgstr "Tradisionele Gtk+ Monitor"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "System"
-msgstr "Stelsel"
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
+msgstr "Laai Aurora met herlaaityd"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Wil u hierdie funksie gebruik?"
+#: ../../bootlook.pm_.c:89
+msgid "Lilo/grub mode"
+msgstr "LILO/GRUB metode"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr "Arabies"
+#: ../../bootlook.pm_.c:89
+msgid "Yaboot mode"
+msgstr "Yaboot metode"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:138
+#, fuzzy
+msgid "Install themes"
+msgstr "Installeer stelsel"
+
+#: ../../bootlook.pm_.c:139
msgid ""
-"\n"
-"- Options:\n"
+"Display theme\n"
+"under console"
msgstr ""
-"\n"
-"-Opsies:\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Password required"
-msgstr "Benodig wagwoord"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d minutes"
-msgstr "%d minute"
+#: ../../bootlook.pm_.c:140
+#, fuzzy
+msgid "Create new theme"
+msgstr "Kies 'n nuwe grootte"
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: ../../bootlook.pm_.c:184
#, c-format
-msgid "Graphics card: %s"
-msgstr "Videokaart: %s"
+msgid "Backup %s to %s.old"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:187
#, c-format
-msgid "WebDAV transfer failed!"
-msgstr "WebDAV oordrag-probleme!"
+msgid "Copy %s to %s"
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "XFree-konfigurasie"
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+msgstr "Fout"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Choose action"
-msgstr "Kies aksie"
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "French Polynesia"
-msgstr "Fraanse Polinesië"
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"DrakX het gewoonlik geen probleme met die speur van die aantal muisknoppies\n"
-"nie. Indien wel, sal dit aanneem dat die muis twee knoppies het, en sal dan\n"
-"3-knop emulasie konfigureer. Die 3de knoppie kan \"gedruk\" word deur beide\n"
-"knoppies gelyktydig te klik. DrakX sal vanself weet watter tipe muis u het,\n"
-"of dit nou 'n PS/2, sierie of USB muis mag wees.\n"
-"\n"
-"Indien u moontlik 'n ander tipe muis wil spesifiseer, kies dit vanaf die\n"
-" voorsiende lys.\n"
-"\n"
-"Indien u gekose muis verskil van die verstek muis, sal 'n toetsskerm\n"
-"vertoon\n"
-"word. Gebruik die knoppies en wielletjie om seker te maak alles werk\n"
-"korrek.\n"
-"Indien u probleme ondervind, druk die spasiebalk of [ Enter ] sleutel om\n"
-"die toets te kansselleer en weer te kies.\n"
-"\n"
-"Wielmuise word soms verkeerdelik geïdentifiseer, dan moet u self u\n"
-"muis vanaf die lys kies.\n"
-"Maak tog seker u kies die regte poort waaraan die muis\n"
-"gekoppel is. Na u die muis gekies, en \"%s\" geklik het, sal 'n beeld van\n"
-" 'n muis verskyn.\n"
-"Rol die wielletjie om te bevestig dat dit korrek funksioneer. Sodra u\n"
-"die beeld van die muis se wielletjie sien reageer, kan u ook die knoppies\n"
-"en beweging van u muis toets."
-
-#: ../../services.pm:1
-#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Ondersteun die OKI-4W en aanpasbare WIN-drukkers"
+#: ../../bootlook.pm_.c:222
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:224
msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-"Lêers of wisselkaarte wat in die '.backupignore' lêer in die top van 'n "
-"gidsboom gelys is, sal nie deel van die rugsteun wees nie."
-#: ../../services.pm:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Loop die ALSA (Gevorderde Linux Klankargitektuur) klankstelsel"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
+#: ../../bootlook.pm_.c:238
#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Drywer vir %s kaart %s in installasieproses"
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:244
msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-"U het die vorige verstek-drukker (\"%s\") oorgeplaas, moet dit ook die "
-"verstek-drukker wees onder die nuwe drukkerstelsel %s?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Enable Server"
-msgstr "Ontsper Bediener"
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ukrainian"
-msgstr "Ukranies"
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+#, fuzzy
+msgid "Notice"
+msgstr "Geen video"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-"Die netwerk was ontoeganklik. Ondersoek asseblief u konfigurasie en "
-"hardeware. Probeer daarna weer om u eksterne drukker te konfigureer."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Laat \"%s\" toe om die lêer te skryf"
+#: ../../bootlook.pm_.c:251
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Kies installasieklas"
-#: ../../install_steps_interactive.pm:1
+#: ../../bootlook.pm_.c:259
#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Plaas die herlaaiskyf wat gebruik is, in aandrywer %s"
+msgid ""
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
+msgstr ""
+"U gebruik huidig %s as herlaaibestuurder.\n"
+"Kliek op Konfigureer om opstelassistent te laai."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local network(s)"
-msgstr "Plaaslike netwerk(e)"
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
+msgstr "Konfigureer"
-#: ../../help.pm:1
-#, c-format
-msgid "Remove Windows"
-msgstr "Verwyder Windows(TM)"
+#: ../../bootlook.pm_.c:268
+#, fuzzy
+msgid "Splash selection"
+msgstr "Stoor pakketseleksie"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
+#: ../../bootlook.pm_.c:271
+msgid "Themes"
msgstr ""
-"U %s is klaar gekonfigureer.\n"
-"U kan nou dokumente skandeer deur \"XSane\" te gebruik."
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Firewire controllers"
-msgstr "Firewire-beheerders"
-#: ../../help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:273
msgid ""
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options that will be available at boot time will be displayed.\n"
-"\n"
-"If there are other operating systems installed on your machine they will\n"
-"automatically be added to the boot menu. You can fine-tune the existing\n"
-"options by clicking \"%s\" to create a new entry; selecting an entry and\n"
-"clicking \"%s\" or \"%s\" to modify or remove it. \"%s\" validates your\n"
-"changes.\n"
"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone who goes to the console and reboots the machine. You can delete the\n"
-"corresponding entries for the operating systems to remove them from the\n"
-"bootloader menu, but you will need a boot disk in order to boot those other\n"
-"operating systems!"
-msgstr ""
-"Nadat u die algemene herlaaistelsel se parameters gekies het, sal die\n"
-"lys van beskikbare herlaai-opsies om te kies, na die rekenaar\n"
-"aangeskakel is, vertoon word.\n"
-"\n"
-"Indien daar bestaande bedryfstelsels op u rekenaar is, sal hulle\n"
-"outomaties by die keuses gevoeg word. U kan fyner verstellings\n"
-"maak: \"%s\" vir 'n nuwe toevoeging, kies 'n inskrywing en\n"
-"klik op \"%s\" of \"%s\" om dit te verander of te verwyder.\n"
-"\"%s\" bekragtig u veranderinge.\n"
-"\n"
-"U mag dalk toegang tot ander bedryfstelsels beperk, in welke geval u die\n"
-"nodige inskrywings kan uitvee. Maar dan het u die nodige herlaaiskywe\n"
-"nodig om die betrokke bedryfstelsels te laai!"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "System mode"
-msgstr "Stelselmodus"
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
msgstr ""
-"Om na 'n Netware drukker te druk, moet u die volgende voorsien: Netware "
-"rekenaarnaam (dis nie noodwendig dieselfde as die TCP/IP rekenaarnaam nie), "
-"asook die drukker se 'print queue' naam,en toepaslike gebruikernaam en "
-"wagwoord."
-#
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Netmask:"
-msgstr "Netmasker:"
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
+msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
-msgstr "Doen dit later"
+#: ../../bootlook.pm_.c:316
+msgid "System mode"
+msgstr "Stelselmode"
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "Aanlas"
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
+msgstr "Laai X-Windowstelsel met herlaai"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Verfris die drukkerlys (vertoon alle beskikbare eksterne CUPS-drukkers)"
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
+msgstr "Nee, ek verlang outo-aanteken"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Indien hierdie opsie gekies is, sal dit elke keer wanneer CUPS begin, "
-"verseker dat:\n"
-"\n"
-"- indien LPD/LPRng geïnstalleer is, CUPS nie die '/etc/printcap' lêer\n"
-" sal vernietig nie.\n"
-"\n"
-"- indien '/etc/cups/cupsd.conf' ontbreek, dit geskep sal word.\n"
-"\n"
-"- indien inligting oor die drukker uitgesaai word, die bediener se naam nie\n"
-"\"localhost\" sal wees nie.\n"
-"\n"
-"Indien sommige van hierdie punte probleme vir u mag skep, moet nie die "
-"opsie\n"
-"kies nie , maar dit in gedagte hou."
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "Ja, ek verlang outoaanteken met hierdie (gebruiker,werkskerm)"
+
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
+msgstr "OK"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Die outomatiese installasie kan ten volle geoutomatiseer\n"
-"word, in daardie geval kan dit die hardeskyf oorskryf!!!\n"
-"(dit is vir die installasie op 'n ander rekenaar).\n"
-"\n"
-"U mag verkies om hierdie installasie elders te herhaal.\n"
+#: ../../common.pm_.c:107
+msgid "GB"
+msgstr "GB"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Netwerkdrukker \"%s\", poort %s"
+#: ../../common.pm_.c:107
+msgid "KB"
+msgstr "KB"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "Kies asseblief die netwerkkaart wat aan u LAN gekoppel is."
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "MB"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
-msgstr "OK om die ander lêers te herstel."
+#: ../../common.pm_.c:115
+msgid "TB"
+msgstr "TB"
-#: ../../install_steps_interactive.pm:1
+#: ../../common.pm_.c:123
#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Kies asseblief u sleutelborduitleg."
+msgid "%d minutes"
+msgstr "%d minute"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "Drukkertoestel se URI"
+#: ../../common.pm_.c:125
+msgid "1 minute"
+msgstr "1 minuut"
-#: ../../standalone/drakbackup:1
+#: ../../common.pm_.c:127
#, c-format
-msgid "Not erasable media!"
-msgstr "Nie-uitveebare media!"
+msgid "%d seconds"
+msgstr "%d sekondes"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "Terminaaltipe"
+#: ../../common.pm_.c:172
+#, fuzzy
+msgid "Can't make screenshots before partitioning"
+msgstr "Ek kan nie meer partisies byvoeg nie"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr "Ontsper/Versper \"IP spoofing\" beskerming."
+#: ../../common.pm_.c:179
+#, fuzzy, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Installeer 'n drukkerstelsel in die %s sekuriteitsvlak"
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+msgid "France"
+msgstr "Frankryk"
-#: ../../any.pm:1
-#, c-format
-msgid "The user name is too long"
-msgstr "Hierdie naam is te lank"
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "Ander bedryfstelsel (windows...)"
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+#, fuzzy
+msgid "Belgium"
+msgstr "Belgies"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr "Eksterne WebDAV werf alteeds gesinchroniseer!"
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
-msgstr "Drukkerdata word gelees..."
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+msgid "Germany"
+msgstr "Duitsland"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Skep outoinstallasieskyf"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#, fuzzy
+msgid "Greece"
+msgstr "Grieks"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+#, fuzzy
+msgid "Norway"
+msgstr "Norweegs"
+
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+#, fuzzy
+msgid "Sweden"
+msgstr "Sien"
+
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
msgstr ""
-"\t\t gebruikernaam: %s\n"
-"\t\t op roete: %s \n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr "Somalië"
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "Italy"
+msgstr "Italiaans"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr "Geen oopbron drywer"
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+#, fuzzy
+msgid "Austria"
+msgstr "seriaal"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
-msgstr "Def."
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
+msgstr ""
-#: ../../security/level.pm:1
-#, c-format
+#: ../../diskdrake/dav.pm_.c:19
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"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 ""
-"Hierdie is soortgelyk aan die vorige vlak, maar die stelsel is totaal "
-"geslote en sekuriteit is op sy maksimum."
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "Nicaragua"
+#: ../../diskdrake/dav.pm_.c:27
+#, fuzzy
+msgid "New"
+msgstr "nuut"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "Nieu-Caledonië"
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Ontheg"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Europese protokol (EDSS1)"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Heg"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Delete"
-msgstr "/_Skrap"
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
+msgstr "Bediener"
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "Videomodus"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Hegpunt"
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
-msgstr "Oman"
+#
+#: ../../diskdrake/dav.pm_.c:85
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Toets asb. die muis"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Voorsien asseblief u e-posadres"
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Network Monitoring"
-msgstr "Monitor van Netwerk"
+#: ../../diskdrake/dav.pm_.c:109
+#, fuzzy
+msgid "Server: "
+msgstr "Bediener"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "SunOS"
-msgstr "SunOS"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
+msgstr "Hegpunt:"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "New size in MB: "
-msgstr "Nuwe grootte in MB: "
+msgid "Options: %s"
+msgstr "Opsies: %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Tipe Partisielys: %s\n"
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
+msgstr "Rugsteun u data eers asb."
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication Windows Domain"
-msgstr "Magtiging deur Windows-domein"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "Lees noukeurig!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "VSA sleutelbord"
+#: ../../diskdrake/hd_gtk.pm_.c:100
+msgid ""
+"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
+"enough)\n"
+"at the beginning of the disk"
+msgstr ""
+"Indien u beplan om 'aboot' te gebruik, los spasie aan die begin\n"
+"van die skyf. (2048 sektors is genoeg)."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr "Knoppie-emulasie"
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "Assistent"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", netwerkdrukker \"%s\", poort %s"
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
+msgstr "Kies aksie"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
-"\n"
-"Drakbackup deur magnetiese band:\n"
-"\n"
+"U het een massiewe FAT partisie. \n"
+"(gewoonlik deur DOS/Windows gebruik)\n"
+"Ek stel voor u verstel eers die grootte van dié partisie\n"
+"(kliek daarop en kliek dan op \"Verstel Grootte\")"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"Probleem met FTP-konneksie: dit was nie moontlik om u lêers via FTP te "
-"rugsteun nie.\n"
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Sending Speed:"
-msgstr "Stuurspoed:"
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "Detail"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"The classic bug sound tester is to run the following commands:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
-"currently uses\n"
-"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services're configured to be run on\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Probeer gerus hierdie metode om u klank aan die gang te kry:\n"
-"(vanaf die instruksielyn)\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\"sal vir u aandui watter verstek drywer u\n"
-"kaart gebruik\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" sal aan u vertoon watter drywer\n"
-"tans gebruik word\n"
-"\n"
-"- \"/sbin/lsmod\" sal u toelaat om te sien of die kaart se module (drywer)\n"
-"reeds gelaai is of nie.\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" en \"/sbin/chkconfig --list alsa\" sal\n"
-"aandui indien 'sound' en 'alsa' dienste loop in init vlak 3\n"
-"\n"
-"- \"aumix -q\" sal vir u aandui of die klank swygend is of nie \n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" sal aandui watter program die klankkaart\n"
-"gebruik.\n"
+#: ../../diskdrake/hd_gtk.pm_.c:254
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Plaaslike drukker"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
-msgstr "Halt-fout"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Konfigurasie van e-pos alarm"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "FAT"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr "Tokelau"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Matching"
-msgstr "Passend"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+#, fuzzy
+msgid "Journalised FS"
+msgstr "Gejoernaliseer"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bosnian"
-msgstr "Bosnies"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Release: "
-msgstr "Vrystelling: "
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "Ruilarea"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection speed"
-msgstr "Konneksiespoed"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "Leeg"
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr "Namibië"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "Ander"
-#: ../../services.pm:1
-#, c-format
-msgid "Database Server"
-msgstr "Databasis-bediener"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "LOersteltipes:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr "spesiale voordele van die drywer ( skryfvermoë en DVD-ondersteuning)"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "Skep"
-#: ../../raid.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "Tipe"
+
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Kan nie 'n partisie by geformatteerde RAID md%d byvoeg nie"
+msgid "Use ``%s'' instead"
+msgstr "Gebruik ``%s'' instede."
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Network Time Protocol"
-msgstr "Netwerkkoppelvlak"
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "Uitwis"
-#: ../../Xconfig/card.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
+msgstr "Gebruik ``Ontheg'' eerste"
+
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, 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."
+"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-"Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling onder XFree86 %"
-"s\n"
-"bied,\n"
-"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES.\n"
-"U kaart word deur XFree %s ondersteun, wat beter 2D-ondersteuning bied."
+"Alle data om hierdie partisie %s sal uitgewis word na verandering van die "
+"partisietipe"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Net 'n oomblik, verstel sekuriteitsopsies..."
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose a partition"
+msgstr "Kies 'n partisie"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "Onbekend|CPH05X (bt878) [baie vervaardigers]"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose another partition"
+msgstr "Kies 'n ander partisie"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Laai X-Windowstelsel met herlaai"
+#: ../../diskdrake/interactive.pm_.c:202
+msgid "Exit"
+msgstr "Verlaat"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr "uurliks"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
+msgstr "Skakel oor na kundige gebruiksvlak"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
-msgstr "Regter 'Shift'-sleutel"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
+msgstr "Skakel oor na normale gebruiksvlak"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " Suksesvolle Herstel op %s "
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "Herroep"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Stel drukkerpoort tot CUPS se beskikking..."
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "Wil u in elk geval voortgaan?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr "Antigua and Barbuda"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "Verlaat, maar moenie iets stoor nie"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! Dui dat die wagwoord in die stelsel se databasis verskil van\n"
-"die een in die 'Terminal Server' sin.\n"
-"Om weer die aanteken-vermoë te bekragtig, verwyder/voeg gebruiker by die\n"
-"'Terminal Server'."
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "Spaans"
+#: ../../diskdrake/interactive.pm_.c:257
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "Wil u die /etc/fstab veranderinge stoor?"
-#: ../../services.pm:1
-#, c-format
-msgid "Start"
-msgstr "Begin"
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "Verwydeer almal"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
-msgstr "Direkte 'root' inteken"
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
+msgstr "Outo-allokeer"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring applications..."
-msgstr "Konfigureer applikasies...."
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+msgid "More"
+msgstr "Nog"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"Welkom by die \"Printer Setup Wizard\"\n"
-"\n"
-"Hierdie wysgeer sal u help op u drukker(s) op te stel, hetsy hulle direk aan "
-"die rekenaar, direk aan die netwerk, of aan 'n eksterne Windows rekenaar\n"
-"gekoppel is.\n"
-"\n"
-"Maak tog seker die drukker(s) is reg gekoppel en aangeskakel, sodat "
-"outospeur sy werk reg kan doen. Maak ook seker u netwerkdrukker(s) en "
-"Windows drukker bedieners aangeskakel en gekonnekteer is.\n"
-"\n"
-"Let ook tog dat autospeur van drukkers oor die netwerk langer neem as die "
-"outospeur van plaaslike drukkers. U kan gerus die outospeur van netwerk en/"
-"of Windows-drukker-bedieners versper indien u dit nie gaan gebruik nie.\n"
-"\n"
-"Klik op \"Volgende\" sodra u gereed is, of op \"Kanselleer\" indien u NIE "
-"nou enige drukkers wil opstel NIE."
+#: ../../diskdrake/interactive.pm_.c:278
+msgid "Hard drive information"
+msgstr "Hardeskyfinligting"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
-msgstr "Normale modemkonneksie"
+#: ../../diskdrake/interactive.pm_.c:310
+msgid "All primary partitions are used"
+msgstr "Alle primêre partisies is gebruik"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "File Selection"
-msgstr "Lêerkeuse"
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "Ek kan nie meer partisies byvoeg nie"
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
+#: ../../diskdrake/interactive.pm_.c:312
+msgid ""
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
+msgstr ""
+"Om meer partisies te verkry, verwyder asb. een om 'n ektensiepartisiete kan "
+"skep"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Vee magnetiese band uit, voor begin met rugsteun"
+#: ../../diskdrake/interactive.pm_.c:322
+#, fuzzy
+msgid "Save partition table"
+msgstr "Skryf partisietabel"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
-msgstr "Loop konfigurasieprogram"
+#: ../../diskdrake/interactive.pm_.c:323
+#, fuzzy
+msgid "Restore partition table"
+msgstr "Reddingspartisietabel"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "Installasie van herlaaistelsel"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
+msgstr "Reddingspartisietabel"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "'root'-partisiegrootte in MB:"
+#: ../../diskdrake/interactive.pm_.c:326
+#, fuzzy
+msgid "Reload partition table"
+msgstr "Reddingspartisietabel"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Hierdie is 'n verpligte pakket. Dit kan nie uitgehaal word nie."
+#: ../../diskdrake/interactive.pm_.c:331
+#, fuzzy
+msgid "Removable media automounting"
+msgstr "Verwyderbare media"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "Selekteer lOer"
+
+#: ../../diskdrake/interactive.pm_.c:347
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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"The backup partition table has not the same size\n"
+"Still continue?"
msgstr ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to 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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"Die rugsteunpartisietabel het nie dieselfde grootte nie\n"
+"Wil u voortgaan?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "Etherboot ISO-beeld is %s"
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "Waarskuwing"
-#: ../../services.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:362
msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
-"named (BIND) is die domeinnaamdiens (DNS) wat gebruik word om\n"
-"rekenaarname na IP-adresse toe om te skakel."
+"Sit 'n floppie in die aandrywer.\n"
+"Alle data op hierdie floppie sal verloor word."
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr "Saint Lucia"
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
+msgstr "Partisietabel Reddingspoging"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "November"
+#: ../../diskdrake/interactive.pm_.c:379
+msgid "Detailed information"
+msgstr "Gedetaileerde inligting"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
-msgstr "Diskonnekteer..."
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "Verstel Grootte"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Report"
-msgstr "Verslag"
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "Skuif"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr "Palau"
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "Formatteer"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "vlak"
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "Voeg by RAID"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr ""
-"Alle insidente sal opgevolg word deur 'n bekwame deskundige van MandrakeSoft."
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "Voeg by LVM"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "Kies Pakketgroepe"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "Verwyder uit RAID"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Laat plaaslike hardeware-\n"
-"konfigurasie toe."
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "Verwyder uit LVM"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Herstel Via Netwerkprotokol: %s"
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "Verander RAID"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr "U kan elke parameter van die module hier konfigureer"
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
+msgstr "Gebruik vir teruglus"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Kies die resolusie en kleurdiepte"
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "Kies 'n nuwe grootte"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
-msgstr "Emuleer derde knop?"
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "Kies sektor: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "Grootte in MB: "
+
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "LOerstelseltipe: "
+
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Voorkeure: "
+
+#: ../../diskdrake/interactive.pm_.c:481
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 ""
-"U kan nie 'n nuwe partisie skep nie\n"
-"(aangsien u die maksimum aantal primêre partisies bereik het).\n"
-"Verwyder eerstens 'n primêre partisie en skep dan 'n sekondêre partisie."
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr "Heg"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Outo-installasieskyf word geskep."
-#: ../../steps.pm:1
-#, c-format
-msgid "Install updates"
-msgstr "Installeer updaterings"
+#: ../../diskdrake/interactive.pm_.c:511
+#, fuzzy
+msgid "Remove the loopback file?"
+msgstr "Terugluslêer %s word geformateer"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
-msgstr "tekskassie se hoogte"
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "Verander partisietipe"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "State"
-msgstr "Toestand"
+#
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+msgid "Which filesystem do you want?"
+msgstr "Watter lêerstelsel verlang u?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Versker asb dat die regte mediatipe vir toestel %s beskikbaar is"
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
+msgstr "Oorskakeling van ext2 na ext3"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Enable multiple profiles"
-msgstr "Gebruik multiprofiele"
+msgid "Where do you want to mount loopback file %s?"
+msgstr "Waar wil u terugluslêer %s heg?"
-#: ../../fs.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr ""
-"Moet nie teenwoordige karakter- of blok-toestelle op die lêerstelsel "
-"vertolk\n"
-"nie."
+msgid "Where do you want to mount device %s?"
+msgstr "Waar wil u toestel %s heg?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
-"Hierdie opsies kan alle lêers in u '/etc' lêergids rugsteun en herstel.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Local printer"
-msgstr "Plaaslike drukker"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Files Restored..."
-msgstr "Lêers Wat Herstel Is...."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
-msgstr "Pakketkeuse"
+"Kan nie hegpunt ontset nie, omdat hierdie partisie vir teruglus\n"
+"gebruik word. Verwyder eers die teruglus."
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritania"
-msgstr "Mauritanië"
+#: ../../diskdrake/interactive.pm_.c:606
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Waar wil u toestel %s heg?"
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
-"Ek kan u huidige konfigurasie behou en aanneem u het alreeds 'n DHCP "
-"bediener opgestel, in hierdie geval, maak tog seker dat ek die Netwerk "
-"korrek lees vir u plaaslike netwerk, Ek gaan dit nie herkonfigureer nie, en "
-"ook nie verander aan u DHCP bediener se konfigurasie nie.\n"
-"\n"
-"Die verstek DNS inskrywing is die van die 'Caching Nameserver' gekonfigureer "
-"op die vuurmuur. U kan dit vervang met die van u ISP DNS IP, byvoorbeeld:\n"
-"\t\t \n"
-"Anders kan ek u netwerk en 'n DHCP bediener vir u konfigureer of oor "
-"konfigureer.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "FAT lêerstelselgrense word bereken"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Geen plaaslike drukkers bespeur.Om self een te spesifiseer, voorsien 'n "
-"toestelnaam/lêernaam (Parallelle poorte: /dev/lp0,/dev/lp1,..., gelyk aan "
-"LPT1:,LPT2:,...,1e USB-drukker: /dev/usb/lp0, 2de USB- drukker: /dev/usb/"
-"lp1,...)."
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "Grootteverandering"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All primary partitions are used"
-msgstr "Alle primêre partisies is gebruik"
+#: ../../diskdrake/interactive.pm_.c:662
+msgid "This partition is not resizeable"
+msgstr "Hierdie partisie se greootte kan nie verstel word nie"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "LPD bediener \"%s\"/, drukker \"%s\""
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
+msgstr "Alle data om hierdie partisie moet gerugsteun word."
-#: ../../network/netconnect.pm:1
+#: ../../diskdrake/interactive.pm_.c:669
#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Nadat dit klaar is, sal dit beter wees om u X-omgewing te herlaai om die "
-"rekenaarnaamverandering-probleem te voorkom."
+msgid "After resizing partition %s, all data on this partition will be lost"
+msgstr "Alle data om partisie %s sal uitgewis word met die grootteverandering"
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Outospeuring en hardewarekonfigurasie met herlaaityd."
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "Kies die nuwe grootte"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation Server Configuration"
-msgstr "Konfigurasie van Installasie-bediener"
+#: ../../diskdrake/interactive.pm_.c:675
+msgid "New size in MB: "
+msgstr "Nuwe grootte in MB: "
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "IDE word opgestel"
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "Na watter skyf wil u skuif?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Netwerk nie gekonfigureer nie"
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "Sektor"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Configure module"
-msgstr "Konfigureer module"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "Na watter sektor wil u skuif?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "Kokos-eilande"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "Verskuiwing"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr "U sal moet herlaai voor die veranderinge geaktiveer kan word"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "Partisie word verskuif..."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
-msgstr "Verskaffer se foonnommer"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr "Kies 'n bestaande RAID om by toe te voeg"
-#
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Host %s"
-msgstr "Rekenaar %s"
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "nuut"
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
-msgstr "Fidji"
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
+msgstr "Kies 'n bestaande LVM om by toe te voeg"
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
-msgstr "Armenië"
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
+msgstr "LVM naam?"
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "Tweede disketaandrywer"
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
+msgstr "Hierdie partisie kan nie vir teruglus gebruik word nie."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
-msgstr "Omtrent Harddrake"
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
+msgstr "Teruglus"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
-msgstr "Magtig TCP konneksies na 'X Window'"
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
+msgstr "Teruglus lêernaam:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr "Kapasiteit"
+#: ../../diskdrake/interactive.pm_.c:831
+#, fuzzy
+msgid "Give a file name"
+msgstr "Regte naam"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Plaas 'n disket in die aandrywer.\n"
-"Alle data daarop sal vernietig word."
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
+msgstr "Lêer word alreeds deur 'n ander teruglus gebruik,kies 'n ander een"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "Grootte: %s"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
+msgstr "Lêer bestaan alreeds. Moet dit gebruik word?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "'Control' en 'Shift' sleutels gelyktydig"
+#: ../../diskdrake/interactive.pm_.c:858
+msgid "Mount options"
+msgstr "Hegopsies:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "secondary"
-msgstr "sekondêre"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
+msgstr "Verskeie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Bekyk Rugsteun-konfigurasie."
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "toestel"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr "indien ja gekies is, skryf deursoek-resultate na staaflêer."
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "vlak"
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "Geen wagwoord"
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "blokgrootte"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nigeria"
-msgstr "Nigerië"
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
+msgstr "Wees versigtig: hierdie is 'n gevaarlike operasie"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s:%s benodig 'n rekenaarnaam...\n"
+#: ../../diskdrake/interactive.pm_.c:962
+msgid "What type of partitioning?"
+msgstr "Watter tipe van partisionering?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "Daar is geen bestaande partisies om te gebruik nie"
+#: ../../diskdrake/interactive.pm_.c:978
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Hierdie pakket moet opgradeer word\n"
+"Is u seker u wil dit deselekteer?"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:992
msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
-"Die volgende skandeerders\n"
-"\n"
-"%s\n"
-"is tot u beskikking.\n"
+"Jammer, ek kan nie die versoek om /boot om hierdie skyf (op 'n silinder > "
+"1024) te skep,\n"
+"aanvaar nie. As u LILO gebruik sal dit nie werk nie en as u nie LILO "
+"gebruik\n"
+"nie, dan het u nie /boot nodig nie."
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Multi-funksionele toestel op parallelle poort #%s"
+#: ../../diskdrake/interactive.pm_.c:996
+msgid ""
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
+msgstr ""
+"_ keuse vir die \"root\" partisie (/) is fisies buite die 1024de silindervan "
+"die\n"
+"hardeskyf en u het nie 'n /boot partisie nie. Indien u beplan om LILO te "
+"gebruik,moet u\n"
+"asb. 'n /boot partisie skep,"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1002
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."
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
msgstr ""
-"Om aan 'n sokdrukker te konnekteer, moet u die rekenaarnaam van diedrukker "
-"voorsien en dalk ook 'n poortnommer voorsien.Met HP JetDirect-bedieners is "
-"die poortnommer gewoonlik 9100,maar dit mag anders wees met ander bedieners. "
-"Raadpleeg die handleidingwat saam met die hardeware gekom het."
+"U het 'n sagteware RAID-partisie as wortel (/).\n"
+"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
+"Onthou om 'n /boot by te voeg."
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid "Hard drive information"
-msgstr "Hardeskyfinligting"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "Partisietabel van skyf %s gaan opdateer word!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian"
-msgstr "Russies"
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
+msgstr "U sal moet herlaai voor die veranderinge geaktiveer kan word"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1037
#, c-format
-msgid "Jordan"
-msgstr "Jordanië"
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr "Alle data om partisie %s sal uitgewis word met formatering."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Hide files"
-msgstr "Versteek lêers"
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "Formatering"
-#
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Outospeur vir plaaslike drukkers"
+msgid "Formatting loopback file %s"
+msgstr "Terugluslêer %s word geformateer"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "Jammer, geen sagteskyfaandrywer beskikbaar nie"
+msgid "Formatting partition %s"
+msgstr "Partisie %s word formateer"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bolivia"
-msgstr "Bolivia"
+#: ../../diskdrake/interactive.pm_.c:1052
+#, fuzzy
+msgid "Hide files"
+msgstr "mkraid het gefaal"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1052
+#, fuzzy
+msgid "Move files to the new partition"
+msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
+
+#: ../../diskdrake/interactive.pm_.c:1053
#, c-format
msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-"Stel u Windows bediener so op dat dit die drukker beskikbaar stel onder die "
-"IPP-protokol en stel drukwerk vanaf die masjien op met die \"%s\" konneksie-"
-"tipe in Printerdrake.\n"
-"\n"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "Foutiewe pakket"
+#: ../../diskdrake/interactive.pm_.c:1064
+#, fuzzy
+msgid "Moving files to the new partition"
+msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../advertising/07-server.pl:1
+#: ../../diskdrake/interactive.pm_.c:1068
#, 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 "Copying %s"
msgstr ""
-"Met 'n paar klikke van u muis, het u 'n kragtige Linux bediener:Webbediener, "
-"e-pos, vuurmuur, lêer- en drukker-bediener (en nog meer!)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "DrakSec Basic Options"
-msgstr "DrakSec Basiese Opsies"
+#: ../../diskdrake/interactive.pm_.c:1072
+#, fuzzy, c-format
+msgid "Removing %s"
+msgstr "LPD word verwyder..."
-#: ../../standalone/draksound:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
+msgid "partition %s is now known as %s"
msgstr ""
-"\n"
-"\n"
-"\n"
-"Aandag: Indien u klankkaart 'n ISA PnP tipe kaart is, moet u gebruik maak "
-"van die 'sndconfig' program. ( tik \"sndconfig\" in op die instruksielyn)."
-#: ../../lang.pm:1
-#, c-format
-msgid "Romania"
-msgstr "Roemenië"
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "Toestel:"
-#: ../../standalone/drakperm:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "Group"
-msgstr "Groep:"
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "DOS-skyfletter: %s ('n raaiskoot)\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Canada"
-msgstr "Kanada"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "Tipe:"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "choose device"
-msgstr "kies toestel"
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "Naam: "
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "Remove from LVM"
-msgstr "Verwyder uit LVM"
+msgid "Start: sector %s\n"
+msgstr "Begin: sektor %s\n"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "Timezone"
-msgstr "Tydsone"
+msgid "Size: %s"
+msgstr "Grootte: %s"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid "German"
-msgstr "Duits"
+msgid ", %s sectors"
+msgstr ", %s sektore"
-#: ../../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
-#, c-format
-msgid "Next ->"
-msgstr "Volgende ->"
+#: ../../diskdrake/interactive.pm_.c:1125
+#, fuzzy, c-format
+msgid "Cylinder %d to %d\n"
+msgstr "Silinder %d na silinder %d\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in japanese language. Only "
-"use this function if you really want to print text in japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Deur hierdie keuse kan u standaard tekslêers in japanees druk. Kies dit "
-"SLEGS indien u japanese tekslêers wil druk, indien dit geaktiveer is kan u "
-"nie geaksentueerde karakters in latynse lettertipes druk nie, u sal ook nie "
-"die kantlyne of karaktergrottes kan verstel nie. Die verstelling affekteer "
-"slegs plaaslike drukkers. Indien u japanese teks op 'n eksterne drukker wil "
-"druk, moet u dit op daardie drukker se rekenaar aktiveer."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Dis hoogs waarskynlik dat hierdie partisie 'n\n"
-"drywerpartisie is en verkieslik alleen gelos\n"
-"moet word.\n"
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "Geformateer\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "Nie geformatter\n"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Horisontale verfristempo"
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
+msgstr "Geheg\n"
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Edit"
-msgstr "Redigeer"
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1131
+#, fuzzy, c-format
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Kan nie hegpunt ontset nie, omdat hierdie partisie vir teruglus\n"
-"gebruik word. Verwyder eers die teruglus."
+"Loopback file(s):\n"
+" %s\n"
+msgstr "Teruglus lêer(s): %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1132
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\""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"Die netwerk, soos opgestel gedurende die installasie, kom nie aan die gang "
-"nie. Maak tog seker die netwerk is tot u beskikking, en gaan u konfigurasie "
-"na deur die 'Mandrake Control Center' te gebruik. "
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "USB controllers"
-msgstr "USB beheerders"
+"Verstekpartisie vir herlaai\n"
+" (vir MS_DOS doeleindes, nie LILO s'n nie)\n"
-#: ../../Xconfig/various.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "What norm is your TV using?"
-msgstr "Watter norm gebruik u TV?"
+msgid "Level %s\n"
+msgstr "Vlak %s\n"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "Type:"
-msgstr "Tipe:"
+msgid "Chunk size %s\n"
+msgstr "Blokgrootte %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Share name"
-msgstr "Naam van deelarea"
+msgid "RAID-disks %s\n"
+msgstr "RAID-skywe %s\n"
-#: ../../standalone/drakgw:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "enable"
-msgstr "aktiveer"
+msgid "Loopback file name: %s"
+msgstr "Teruglus lêernaam: %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
-msgstr "Kontak MandrakeLinux se webwerf vir 'n lys van spieëlwebplekke...."
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
+msgstr ""
+"\n"
+"Dis hoogs waarskynlik dat hierdie partisie\n"
+"drywerpartisie is en verkieslik alleen gelos\n"
+"moet word.\n"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"Daar was 'n probleem met die herlaai van die netwerk.\n"
"\n"
-"%s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove the loopback file?"
-msgstr "Verwyder die terugluslêer?"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Geselekteerde grootte is groter as beskikbare spasie."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP server name missing!"
-msgstr "NCP-bedienernaam ontbreek!"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose your country."
-msgstr "Kies asseblief u land."
+"Hierdie spesiale herlaaipartisie\n"
+"is om u stelsel te duolaai.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Hardeskyf Rugsteun lêers..."
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid "Laotian"
-msgstr "Laoties"
+msgid "Size: %s\n"
+msgstr "Grootte: %s\n"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "Samoa"
-msgstr "Samoa"
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Geometrie: %s silinders, %s koppe, %s sektore\n"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Die 'rstat' protokol laat gebruikers op 'n netwerk toe om\n"
-"werksverrigting-inligting oor enige rekenaar op die\n"
-"netwerk te onttrek."
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
+msgstr "Info:"
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid "Re-generating list of configured scanners ..."
-msgstr "Vervris die lys van gekonfigureerde skandeerders ..."
+msgid "LVM-disks %s\n"
+msgstr "LVM-skywe %s\n"
-#: ../../modules/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid "Module configuration"
-msgstr "Konfigurasie van module"
+msgid "Partition table type: %s\n"
+msgstr "Partisietabeltipe: %s\n"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Scanner"
-msgstr "Skandeerder"
+#: ../../diskdrake/interactive.pm_.c:1169
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
+msgstr "op bus %d id %d\n"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Waarskuwing: deur hierdie grafikakaart te toets, mag u rekenaar fries"
+#: ../../diskdrake/interactive.pm_.c:1199
+#, fuzzy
+msgid "Filesystem encryption key"
+msgstr "LOerstelseltipe: "
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
msgstr ""
-"Die gebruikernaam mag alleenlik uit kleinletter, nommers, '-' en '_' bestaan"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
+#: ../../diskdrake/interactive.pm_.c:1203
+#, fuzzy, c-format
+msgid "This encryption key is too simple (must be at least %d characters long)"
+msgstr ""
+"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "Krakers Welkom"
+#: ../../diskdrake/interactive.pm_.c:1204
+#, fuzzy
+msgid "The encryption keys do not match"
+msgstr "Die wagwoorde stem nie ooreen nie."
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "Module opsies:"
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
+msgstr ""
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
-msgstr "Maak u netwerk veilig deur die \"Multi Network Firewall\""
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Gaan voort sonder om die netwerk te konfigureer"
+#: ../../diskdrake/removable.pm_.c:47
+msgid "Change type"
+msgstr "Verander tipe"
-#: ../../network/isdn.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "Abort"
-msgstr "Staak"
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "Geen wagwoord-porteks op %s by poort %s"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Magtiging"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse met Wiel-emulasie"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Gebruik van eksterne skandeerders"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Gebruikerskode"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
-msgstr "U Windows-partisie is te gefragmenteer. Loop eers 'defrag' asb."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norweegs)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Hardeskyf Rugsteun Vordering..."
-
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Kon nie vurk nie: %s"
+"Please enter your username, password and domain name to access this host."
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "Tipe:"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+#, fuzzy
+msgid "Username"
+msgstr "Gebruikerskode"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Redigeer Kliënt"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS-domein"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "no fonts found"
-msgstr "geen lettertipes gevind"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+#, fuzzy
+msgid "Search servers"
+msgstr "DNS bediener"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "Mouse"
-msgstr "Muis"
+msgid "%s formatting of %s failed"
+msgstr "%s formatering ban %s het gefaal"
-#: ../../bootloader.pm:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "not enough room in /boot"
-msgstr "nie genoeg spasie in /boot nie"
+msgid "I don't know how to format %s in type %s"
+msgstr "Ek weet nie om %s as tipe %s te formateer nie"
-#: ../../install_steps_gtk.pm:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "trying to promote %s"
+msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
-#
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid "Host name"
-msgstr "Rekenaarnaam"
+msgid "error unmounting %s: %s"
+msgstr "fout met onthegting van %s: %s"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the color of the progress bar"
-msgstr "die kleur van die vorderingbalk"
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "eenvoudig"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Onderdruk Lettertipe-lêers"
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to RAID"
-msgstr "Voeg by RAID"
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "bediener"
-#: ../../help.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
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"
+"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"
-" * 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."
+"Do you agree to loose all the partitions?\n"
msgstr ""
-"U kan ekstra inskrywings in 'yaboot' maak vir ander bedryfstelsels,\n"
-"alternatiewe 'kernels' of selfs 'n nood-herlaaibeeld.\n"
-"\n"
-"Die inskrywing vir ander bedryfstelsels bestaan uit die naam en die\n"
-"\"root\"partisie van daardie bedryfstelsel.\n"
-"\n"
-"Linux het 'n paar opsies beskikbaar:\n"
-"\n"
-" * Naam: Die naam wat u sal gebruik tydens die 'yaboot' por-teks om\n"
-"hierdie keuse te maak.\n"
-" * Beeld: dit is die naam van die 'kernel' wat gaan selflaai. Gewoonlik is\n"
-"dit 'vmlinux' of 'n variasie daarvan.\n"
-" * Root: die \"root\" toestel of '/' vir u Linux installasie.\n"
-"\n"
-" * Aanlas: spesifiseer spesifike opsies gewoonlik met hardeware te doen,\n"
-"bv die muis , sie grafiesekaart ens. \n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: hierdie opsie kan gebruik word om modules te laai alvorens die\n"
-"'boot' toestel beskikbaar is, of om 'n 'ramdisk' beeld te laai in 'n nood-\n"
-"herlaai toestand.\n"
-"\n"
-" * Initrd-size: die verstek 'ramdisk' se grootte is gewoonlik 4096 Kb.\n"
-"Indien u 'n groter 'ramdisk' verlang, kan u dit hier spesifiseer.\n"
-"\n"
-" * Read-write: \"root\" word gewoonlik eerstens gehag in lees-alleen modus\n"
-"dit is om te toets of alles korrek werk met die lêerstelsel. Indien u dit\n"
-"oorskryf kan u hierdie verstek opsie verander.\n"
-"\n"
-" * NoVideo: sou die Apple grafiese hardeware vir u probleme verskaf\n"
-"kan u herlaai in \"novideo\" modus, met plaaslike \"frame buffer\"\n"
-"ondersteuning\n"
+"Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
+"Ek sal die nodige partisies skoonmaak, maar alle data sal vernietig word.\n"
+"Die ander opsie is om DrakX te belet om die partisietabel te verander.\n"
+"(fout is %s)\n"
"\n"
-" * Default: kies hierdie een vir die verstek Linux keuse, waneer u\n"
-"\"ENTER\" druk tydens die yaboot-porteks. Hierdie inskrywing sal verlig\n"
-"wees met 'n '*' indien u [Tab] druk om die herlaai keuses te beskou"
+"Will u al die partisies verwyder?\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr "Drukker \"%s\" is korrek bygevoeg by Star Office/OpenOffice.org/GIMP."
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr "U kan nie JFS vir partisies kleiner as 16MB gebruik nie"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Geen disketdrywer beskikbaar nie!"
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "U kan nie ReiserFS vir partisies kleiner as 32MB gebruik nie"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"Om meer uit te vind oor die beskikbare opsies vir die huidige drukker, lees "
-"die onderstaande lys of klik op die \"Drukkeropsies\" knoppie.%s%s%s\n"
-"\n"
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
+msgstr "Hegpunte moet met 'n / begin"
-#: ../../lang.pm:1
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "Saudi Arabia"
-msgstr "Saoedi-Arabië"
+msgid "There is already a partition with mount point %s\n"
+msgstr "Daar is alreeds 'n partisie met hegpunt %s\n"
-#: ../../services.pm:1
+#: ../../fsedit.pm_.c:526
#, c-format
-msgid "Internet"
-msgstr "Internet"
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "Wil u in elk geval voortgaan?"
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
+msgstr "Hierdie lêergids moet altyd in die wortellêerstelsel bly"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:530
+#, fuzzy
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Indien u drukker nie gelys is nie, kies 'n versoenbare (verwys na u drukker "
-"se handleiding) of 'n soortgelyke een."
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
+msgstr "U benodig 'n ware lêerstelsel (ext2, reiserfs) vir hierdie hegpunt\n"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer"
-msgstr "Drukker"
+#: ../../fsedit.pm_.c:532
+#, fuzzy, c-format
+msgid "You can't use an encrypted file system for mount point %s"
+msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices were added:\n"
-msgstr "Party toestelle is bygevoeg:\n"
+#: ../../fsedit.pm_.c:599
+#, fuzzy
+msgid "Not enough free space for auto-allocating"
+msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometrie: %s silinders, %s koppe, %s sektore\n"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:694
#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Drukwerk vir drukker \"%s\""
+msgid "Error opening %s for writing: %s"
+msgstr "Four om %s in skryfmode te open: %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr "'/etc/hosts.allow' en 'etc'hosts.deny' is alreeds gekonfigureer"
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Tape"
-msgstr "Herstel vanaf Magnetiese Band"
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
+msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../harddrake/sound.pm_.c:171
#, 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's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-"Klik die 'Verslag' knoppie, indien u 'n foutverslag wil instuur.\n"
-"Dit sal die blaaier oopmaak by 'Anthill' waar u bogenoemde inligting\n"
-"na kan oplaai."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the profile to configure"
-msgstr "Kies die profiel om te konfigureer"
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Konfigurasie"
-#: ../../security/l10n.pm:1
+#: ../../harddrake/sound.pm_.c:174
#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
-msgstr "Wagwoord se minimum lente en die aantal syfers en hoofletters"
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
+msgstr ""
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../harddrake/sound.pm_.c:176
#, c-format
msgid ""
"\n"
"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
-msgstr ""
-"\n"
-"\n"
-"Voorsien 'n 'Zeroconf' rekenaarnaam sonder enige punt indien\n"
-"u nie die verstek-rekenaarnaam wil gebruik nie."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Maak nou 'n rugsteun vanaf konfigurasie-lêer"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr "Hegpunte kan slegs alfa-numeriese karakters bevat"
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Drukkerstelsel word herbegin..."
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "You can only run with no CDROM support"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "Sien hardeware inligting"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
-msgstr "Dag"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr "Eerste sektor van herlaaipartisie"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Drukkervervaardiger, model"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Druk sonder drukkertou"
+#: ../../harddrake/sound.pm_.c:178
+#, fuzzy
+msgid "Driver:"
+msgstr "Drywer"
-#: ../../standalone.pm:1
-#, 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)"
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+msgid "Help"
msgstr ""
-"[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)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Subnet-masker:"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Set password expiration and account inactivation delays"
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
msgstr ""
-"Spesifseer intervalle van wagwoord-verval en de-aktivering van rekeninge"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Laai"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
+#: ../../harddrake/sound.pm_.c:186
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"
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Die kritiese twee parameters is die vertikale verfristempo (die tempo\n"
-"waarteen die hele skerm verfris) en die horisontale sinkronisasietempo (die\n"
-"tempo waarteen die horisontale skandeerlyne vertoon word). Lg. is die\n"
-"belangrikste.\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
-"Dit is BAIE BELANGRIK dat u nie 'n sinkronisasie bereik buite dié van u\n"
-"monitor spesifiseer nie, dit kan die monitor beskadig. Indien u twyfel,\n"
-"kies konservatief."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
-msgstr "Verander"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"It also provides a much higher API than OSS.\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"
+"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 ""
-"\n"
-"\"%s\" en \"%s\" laat u ook toe om die opsies vir 'n spesifieke drukwerk te "
-"verander. Voeg net eenvoudig die verstellings wat u verlang by die opdrag "
-"bv. \"%s <lêer>\".\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Benodig rekenaarnaam, gebruikernaam en wagwoord!"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Insert floppy"
-msgstr "Plaas skyf in aandrywer"
-
-#: ../../diskdrake/dav.pm:1
+#: ../../harddrake/sound.pm_.c:202
#, 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\"."
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-"'WebDAV' is 'n protokol wat u in staat stel om 'n web-bediener se lêergids\n"
-"(e) plaaslik te kan heg. (dit is nou indien die web-bediener opgestel\n"
-"is as 'n WebDAV-bediener). Indien u 'n 'WebDAV' hegpunt\n"
-"wil heg, kies \"Nuwe\"."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
-msgstr "nuut"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable syslog reports to console 12"
-msgstr "Ontsper/Versper 'syslog' verslae na konsole 12"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Wil u weer probeer?"
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "Assistent"
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+msgid "Please Wait... Applying the configuration"
+msgstr "Wag asb... Konfigurasie word toegpas"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected server"
-msgstr "Redigeer gekose bediener"
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "Wag asb."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Kies asseblief die plek waarna u wil regsteun"
+#: ../../harddrake/sound.pm_.c:210
+msgid "No known driver"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "U moet herlaai om die partisielys-veranderinge te aktiveer"
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Moet nie die blaaier se kasgeheue insluit nie"
+#: ../../harddrake/sound.pm_.c:214
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Onbekende model"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, c-format
msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-"Probleme met die ondersoek van lêerstelsel %s. Wil u die foute herstel? "
-"( neem kennis dat dit dataverlies kan meebring)"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Wat is u sleutelborduitleg?"
-
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "Standaard"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Wat is u muistoestel?"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
-msgstr "Konnekteer..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Probleme met die konfigurasie van drukker \" %s\"!"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "not configured"
-msgstr "nie gekonfigureer nie"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "About"
-msgstr "Omtrent"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "Instaanbediener-konfigurasie"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Begin: sektor %s\n"
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Gebruik outobespeuring"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Mask"
-msgstr "Geen Masker"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generies"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface already configured"
-msgstr "Netwerk-koppelvlak alreeds gekonfigureer"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
-msgstr "Geen toegang tot skyf nie!"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-"Waarskuwing: Oopbronsagteware is nie noodwendig vry van patente nie.\n"
-"Sommige van die sagteware hier ingesluit mag dalk gedek wees deur\n"
-"patente in die land waar u woon.\n"
-"Die MP3-dekodeerders wat hier ingesluit word, benodig moonlik 'n\n"
-"lisensie om wettiglik gebruik te kan word.(http://www.mp3licensing.com)\n"
-"Indien u onseker is oor 'n patent, raadpleeg die plaaslike wette.\n"
-"( Wees daarom bly jy woon nie in die VSA nie! )"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Mail Server"
-msgstr "e-Pos bediener"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "Kliek asb. op 'n partisie"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Multi-funksionele toestel op 'HP JetDirect'"
-
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
-msgstr "Jy moet 'n wonderlike dag hê!"
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
+"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 ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Upgrade %s"
-msgstr "Opgradeer %s"
+#: ../../harddrake/v4l.pm_.c:227
+#, fuzzy
+msgid "Card model:"
+msgstr "Kaartgeheue (DMA)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Kies drukkerkonneksie"
+#: ../../harddrake/v4l.pm_.c:228
+#, fuzzy
+msgid "Tuner type:"
+msgstr "Verander tipe"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
-msgstr "Aftas vir TV-kanale in wording ..."
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
msgstr ""
-"Probleme met die stuur van die lêer via FTP.\n"
-" Gaan asseblief u FTP-konfigurasie na."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr "Begin van IP-reeks:"
+#: ../../harddrake/v4l.pm_.c:231
+#, fuzzy
+msgid "PLL setting:"
+msgstr "Formatering"
-#: ../../services.pm:1
-#, 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."
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
msgstr ""
-"Die internet-superbedienerdiensprogram (gewoonlik inetd genoem) laai 'n\n"
-"verskeidenheid internetdienste soos nodig. Dit is gewoonlik verantwoordelik "
-"vir\n"
-"telnet, ftp, rsh en rlogin. As inetd gesper word, sper dit ook die dienste "
-"waarvoor\n"
-"inetd verantwoordelik is."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
-msgstr "die hoogte van die vorderingbalk"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:13
+#, fuzzy
msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+"GNU/Linux is 'n multigebruikerstelsel en dit beteken dat elke gebruiker sy "
+"eie\n"
+"voorkeure kan stel, met sy eie lêers ens. U kan meer hieroor in die "
+"gebruikersgids\n"
+"lees. Maak andersins as 'root', die supergebruiker, kan gebruikers wat u "
+"hier byvoeg\n"
+"niks verander behalwe hul eie lêers en konfigurasie nie. U moet ten minste "
+"een gewone\n"
+"gebruiker vir u self skep. Hierdie gebruker is die een waaronder u moet "
+"inteken vir\n"
+"normale gebruik van die stelsel. Alhoewel dit baie gemaklik is om as 'root' "
+"in te teken vir\n"
+"daaglikse werk, is dit baie gevaarlik. 'n Eenvoudige fout kan u stelsel "
+"immobiliseer. 'n Fout\n"
+"wat as gewone gebruiker gemaak word sal net daardie gebruiker beïnvloed\n"
+"en nie hele stelsel nie.\n"
+"\n"
+"\n"
+"Eers moet u u eie naam intik. Dit is nie verpligtend nie, want u kan eintlik "
+"enigiets intik as\n"
+"u wil. DrakX sal dan die eerste woord wat u ingetik het in die "
+"gebruikerskode inskrywingsveld\n"
+"plaas. U kan hier verander indien u wil. Dit is die gebruikerskode waarmee "
+"die gebruiker in die\n"
+"stelsel sal inteken. U moet dan ook 'n wagwoord hier invoeg. 'n Gewone "
+"gebruiker se wagwoord\n"
+"is nie so krities as dié van die supergebruiker (uit 'n sekuriteitsoogpunt) "
+"nie, maar daar is geen\n"
+"rede om agterlosig met u data te wees nie.\n"
"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
"\n"
-"- Stoor via %s op rekenaar: %s\n"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "Argentinië"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Domain Name Server"
-msgstr "Domeinnaam-bediener"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Level:"
-msgstr "Sekuriteitsvlak:"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr "Hegpunte moet met 'n / begin"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Kies u CD/DVD toestel"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "CUPS server"
-msgstr "DNS-bediener"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Postfix e-posbediener"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "Verlaat, maar moenie iets stoor nie"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "Yemen"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
-msgstr "Hierdie produk is beskikbaar vanaf die MandrakeStore webwef."
+"Indien u op Aanvaar kliek sal die gebruiker geskep word en kan u nog "
+"gebruikers byvoeg.\n"
+"U kan vir al u vriende gebruikerskodes skep of sommer een vir pa en ma ook. "
+"Wanneer u\n"
+"klaar is kliek op Klaar.\n"
+"\n"
+"Kliek op die Gevorderd knoppie indien u die verstek instruksiedop vir die "
+"gebruiker wil verander.\n"
+"Dit is bash by verstek."
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Daar is heelwat dinge om van te kies (%s).\n"
+#: ../../help.pm_.c:48
+msgid ""
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/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 ""
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
+#: ../../help.pm_.c:79
+msgid ""
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../help.pm_.c:84
msgid ""
-"An error occurred:\n"
+"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"
+"you are not supposed to know them all by heart.\n"
"\n"
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
"\n"
-"%s\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
+"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
+"\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
+"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
+"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
"\n"
-"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"
+"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 (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
"\n"
-"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."
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "Hardeskyf-speuring."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../help.pm_.c:135
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
msgstr ""
-"U het glad nie 'n groep pakkette gekies nie.\n"
-"Kies asseblief die tipe minimale installasie:"
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../help.pm_.c:171
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."
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-"U benodig die 'Alcatel microcode'.\n"
-"U kan dit deur 'n disket voorsien, of deur u Windows partisie,\n"
-"of dit oorslaan en later doen."
-
-#
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "Voorsien asseblief die WebDAV-bediener se URL"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "Tajikistan"
-
-#
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "Aanvaar"
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "Beskrywing"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter summary text."
-msgstr "Voorsien asseblief 'n opsomming."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Fout om %s in skryfmodus te open: %s"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Muistipe: %s\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "U videokaart kan 3D-hardewareversnelling onderstuen in XFree %s."
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "Kies 'n monitor"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "Leë etiket word nie toegelaat nie"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
-msgstr "Maltese (UK)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "Ek kan nie meer partisies byvoeg nie"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "Grootte in MB: "
-
-#
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "Eksterne drukker"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
-msgstr "Kies asb. 'n taal om te gebruik."
-
-#: ../../network/network.pm:1
-#, c-format
+#: ../../help.pm_.c:193
+#, fuzzy
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."
+"You may now choose which services you wish to start at boot time.\n"
+"\n"
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
+"\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
-"WAARSKUWING: Die toestel is alreeds opgestel om aan die Internet "
-"konnekteer.\n"
-"U kan die toestel net so aanvaar.\n"
-"Veranderinge aan onderstaande velde sal hierdie\n"
-"konfigurasie oorskryf."
-
-#: ../../any.pm:1
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
-msgstr "Ek kan u rekenaar so opstel om een gebruiker outomaties in te teken."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Floppy format"
-msgstr "Disket se formaat"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Generic Printers"
-msgstr "Generiese Drukkers"
+"U kan nou dienste kies wat by herlaaityd moet afskop.\n"
+"Wanneer u die muis oor 'n item beweeg, sal 'n klein ballon opspring\n"
+"wat die rol van die diens verduidelik.\n"
+"\n"
+"Wees versigtig met hierdie stap. Indien u beplan om dié rekenaar as 'n\n"
+"bediener te gebruik wil u nie dienste afskop wat u nie gaan gebruik nie."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:210
msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
msgstr ""
-"Kies asseblief die drukker wat drukwerk moet ontvang of voorsien 'n "
-"toestelnaam / lêernaam."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
+#: ../../help.pm_.c:224
+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.\n"
+"\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
+msgstr ""
+
+#: ../../help.pm_.c:246
+msgid ""
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
+msgstr ""
+
+#: ../../help.pm_.c:253
+msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
+msgstr ""
+
+#: ../../help.pm_.c:277
+msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft 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"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
+"\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
msgstr ""
-"Die skandeerders op hierdie rekenaar is tot ander rekenaars se beskikking"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of the root partition"
-msgstr "Eerste sektor van die 'root'-partisie"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Alternative drivers"
-msgstr "Alternatiewe drywers"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:347
msgid ""
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
"\n"
-"Please check all options that you need.\n"
-msgstr ""
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
"\n"
-" Merk asseblief al die opsies wat u benodig.\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
-msgstr "Cape Verde"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "indien hierdie verwerker die 'Cyrix 6x86 Coma'-gogga het"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr "Laai tans die drukkerkonfigurasie.... Net 'n oomblik asb"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-"vroeë pentiums het foute gehad en het gevries wanneer 'F00F bytecode' "
-"gedekodeer word"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr "Guam"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:378
msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-"Kies asseblief die poort waaraan u drukker gekoppel is of voorsien 'n "
-"toestelnaam / lêernaam."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/Opsies/Toets"
-
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:404
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."
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
+"\n"
+"Please be patient."
msgstr ""
-"Hierdie vlak moet met sorg gebruik word. Dit maak 'n stelsel baie maklik\n"
-"om te gebruik, maar is baie sensitief. Dit moet nie gebruik vir 'n rekenaar\n"
-"wat aan ander rekenaars of die internet gekoppel is nie. Daar is geen\n"
-"wagwoord toegang nie."
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mounting partition %s"
-msgstr "Heg partisie %s"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "Gebruiker"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Watter partisie wil u vir Linux4Win gebruik?"
-
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "due to missing %s"
-msgstr "kdesu is weg"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Test pages"
-msgstr "Toetsbladsye"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Logical volume name "
-msgstr "Logiese-volumenaam "
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:412
msgid ""
-"List of data to restore:\n"
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-"Lys van data om te herstel:\n"
-"\n"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Checking %s"
-msgstr "Toets %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/Sokdrukker-opsies"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Kaartgeheue (DMA)"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Diskonnekteer van die Internet "
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "Frankryk"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
-msgstr "blaai"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
-msgstr "Geïnstalleerde sagteware word deursoek..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Eksterne drukkernaam ontbreek!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Wil u drukwerk op drukkers in die plaaslike netwerk toelaat?\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "Turkye"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Number of buttons"
-msgstr "Aantal knoppies"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Viëtnamees \"nommerry\" QWERTY"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Module"
-msgstr "Module"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:425
+#, fuzzy
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
msgstr ""
-"En boonop, druker-rye kan nie oorgedra word nie, indien hulle nie deur "
-"hierdie program of \"foomatic-configure\" geskep is nie."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
-msgstr "Hardeware"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl- en Atl-sleutels tegelyk"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "Verenigde State"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "User umask"
-msgstr "Gebruiker se 'umask'"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "Verstek bedryfstelsel?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "Switsers (Duitse uitleg)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Konfigureer skyfkoppe afsonderlik"
+"Voordat u voortgaan, lees asb die lisensieterme noukeurig deur. Dit dek\n"
+"die hele Mandrake Lnux distirbusie, and indien u nie saamstem met al die\n"
+"terme daarin bevat nie, kliek om die Weier knoppie. Dit sal onmiddelik die\n"
+"installasie stop sit. Om met die installasie voort te gaan kliek op die "
+"Aanvaar\n"
+"knoppie."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:432
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\"."
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
msgstr ""
-"Kies asseblief die drukker om op te stel.Die opstel van u drukker is ten "
-"volle outomaties. Indien u drukker nie korrek bespeur is nie of u moonlik "
-"'n pasmaak konfigurasie verkies, gebruik \"Selfdoen konfigurasie\""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "NTP-bediener"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Sulogin(8) in single user level"
-msgstr "'Sulogin(8)' in enkel-gebruikervlak"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Load/Save on floppy"
-msgstr "Laai/Stoor op disket"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
-msgstr "Hierdie tema het nie huidiglik 'n selflaai-splatskerm in %s nie!"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "oulik"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Verlaat in %d sekondes"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Op watter seriepoort is u modem gekoppel?"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Property"
-msgstr "Eienskap"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr "LAN-konfigurasie"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "Ghana"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
-msgstr "Benodig Roete of Module"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Advanced Options"
-msgstr "Gevorderde Opsies"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Configuration"
-msgstr "Bekyk Konfigurasie"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
-msgstr "Comba gogga"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:442
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"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -5201,2141 +3161,1042 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"Nou moet u asseblief besluit watter partisie(s) u gaan gebruik vir die\n"
-"installasie van u Mandrake Linux rekenaar.Indien die partisies reeds\n"
-"geskep is gedurende 'n vorige GNU/Linux installasie of deur 'n ander\n"
-"partisie-program, kan u hulle gebruik.Indien nie, moet u eerstens\n"
-"partisies skep.\n"
-"\n"
-"Die skep van 'n partisie behels dat u 'n hardeskyf kies.U kan klik op\n"
-"\"hda\" om die eerste IDE hardeskyf te kies, \"hdb\" is die tweede ens.\n"
-"\"sda\" is die eerste SCSI skyf.\n"
-"\n"
-"Hier is die opsies wanneer u partisies skep op die gekose hardeskyf:\n"
-"\n"
-" * \"%s\": hierdie opsie wis alle partisies op die gekose skyf uit.\n"
-"\n"
-" * \"%s\": hierdie opsie sal outomaties 'ext3' en 'swap' partisies in die\n"
-"vrye spasie op die hardeskyf skep.\n"
-"\n"
-"\"%s\": gee u toegang tot verdere keuses:\n"
-"\n"
-" * \"%s\": stoor die partisielys op 'n disket. Handig indien u later die\n"
-"partisielys wil herstel.Ons beveel hierdie stap aan.\n"
-"\n"
-" * \"%s\": stel u in staat om 'n vorige gestoorde partisielys van 'n\n"
-"disket af te herstel.\n"
-"\n"
-" * \"%s\": indien u partisielys beskadig is, kan u poog om dit te\n"
-" herstel met hierdie opsie. Wees asseblief versigtig, en onthou\n"
-"dat dit nie altyd werk nie.\n"
-"\n"
-" * \"%s\": ignoreer al die veranderinge en herlaai die partisielys wat\n"
-"oorspronklik op die hardeskyf was.\n"
-"\n"
-" * \"%s\": deur hierdie opsie NIE te merk NIE, sal u gebruikers verplig\n"
-"om verwyderbere media soos diskette en CD-ROMs self te heg en\n"
-"te ontheg.\n"
-"\n"
-" * \"%s\": gebruik die opsie indien u 'n assistent verlang wat sal help\n"
-" met die skep van partisies. Word aanbeveel indien u nie vertroud met\n"
-"die skep van partisies is nie\n"
-"\n"
-" * \"%s\": kanselleer al u veranderinge.\n"
-"\n"
-" * \"%s\": laat ekstra aksies toe op die partisies (tipe, opsies, formaat)\n"
-"en gee ook eksta inligting omtrent die hardeskyf.\n"
-"\n"
-" * \"%s\": sodra u klaar is, sal sal dit u veranderinge stoor\n"
+
+#: ../../help.pm_.c:513
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-"Wanneer u die grootte spesifiseer, kan u die fyner verstellings spesifiseer\n"
-"deur u sleutelbord se Pyltjie sleutels te gebruik.\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
"\n"
-"Aandag: U kan enige opsie bereik deur die sleutelbort te gebruik. Gebruik\n"
-"bloot die [Tab] sleutel en die [Op/Af] pyltjies. om 'n partisie te kies\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"Wanneer 'n partisie gekies is, kan u die volgende doen:\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"
-" * Ctrl-c om 'n nuwe partisie te skep (mits 'n leë partisie gekies is)\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
"\n"
-" * Ctrl-d om 'n partisie uit te wis\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-" * Ctrl-m om 'n hegpunt te spesifiseer\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
-"Om inligting rakende die verskillende beskikbare lêerstelsels te bekom, "
-"lees\n"
-"asseblief die ext2FS hoofstuk in die \"Reference Manual\".\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-"Indien u op 'n PPC masjien installeer, sal u 'n klien HFS 'bootstrap'\n"
-"partisie van ten minste 1MB wil skep. Dit sal deur 'yaboot' herlaai-\n"
-" stelsel gebruik word. Maak dit bietjie groter vir spaar 'kernel' en\n"
-"'ramdisk' beelde vir hulp in nood situasies."
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Graphic Card\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\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"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\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."
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
msgstr ""
-"Grafiesekaart\n"
-"\n"
-" Die installeer-program sal in meeste gevalle u grafiesekaart outomaties\n"
-"opspoor. Indien daar probleme is, kan u self van hierdie lys die kaart\n"
-"kies.\n"
-"\n"
-" Dit mag gebeur dat daar verskillende tipe X-bedieners beskikbaar sal\n"
-"wees vir u kaart, met of sonder 3D-versnelling, kies dan die een wat u\n"
-"behoefdes die beste sal bevredig."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Daar was 'n fout met die installasie van die pakkette:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Lexmark inkjet konfigurasie"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "Herroep"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Save partition table"
-msgstr "Skryf partisielys"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "Finnies"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "Masedonië"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
msgstr ""
-"Die per-gebruiker saamdeel-fasiliteit gebruik die groep \"fileshare\".\n"
-"U kan van 'userdrake' gebruik maak om gebruikers by heirdie\n"
-"groep te voeg."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "Sloveens"
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../help.pm_.c:547
+#, fuzzy
msgid ""
-"Authorize:\n"
-"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\n"
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
"\n"
-"- only local ones if set to \"LOCAL\"\n"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
-"- none if set to \"NONE\".\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
-msgstr ""
-"Authorize:\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\n"
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
"\n"
-"- only local ones if set to \"LOCAL\"\n"
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
"\n"
-"- none if set to \"NONE\".\n"
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr "Libië"
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
+msgstr "Kies asb. "
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"Skrips word konfigureer, sagterware installeer en bedieners afgeskop..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Drukker op parallele poort #%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr ""
-"\n"
-" Skryf na CD"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "Tabel"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Ek weet nie om %s as tipe %s te formateer nie"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Model"
-msgstr "Model"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "USB printer #%s"
-msgstr "USB drukker #%s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Stop Server"
-msgstr "Stop Bediener"
-
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../help.pm_.c:582
msgid ""
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
+"Click on the \"More\" button to be presented with the complete list of\n"
+"supported keyboards.\n"
"\n"
-"Kies die tema vir \n"
-"lilo en selflaai- \n"
-"splatskerm, u kan\n"
-"hulle apart kies."
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Modem"
-msgstr "Modem"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr "Tuvalu"
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr "Gebruik outobespeuring"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
-msgstr ""
-"GPM verleen muisvermoëns aan teksgebaseerde Linuxapplikasies soos\n"
-"Midnight Commander. Dit laat muisgebaseerde knip-en-plak aksies op die\n"
-"konsole toe asook opspringkieskaarte."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr "Gelaai tydens herlaaityd"
-
-#: ../advertising/12-mdkexpert.pl:1
-#, 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:"
-msgstr ""
-"Sluit by die MandrakeSoft ondersteuning-spanne, of by die Linux Gemeenskap "
-"aan deur u kennis aanlyn te deel en so ander mense te help. Hierdeur kan u "
-"'n erkende kenner word:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "No password aging for"
-msgstr "Geen wagwoordveroudering vir"
-
-#: ../../standalone/draksec:1
-#, 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"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
msgstr ""
-"Die volgende opsies kan gestel word om u rekenaar-sekuriteit\n"
-"te verander. Indien u 'n verduideliking soek, kyk na die gereedskap-wenke.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Vind beskikbare drukkers op eksterne rekenaars outomaties"
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr "East Timor"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
-msgstr "Op Band-toestel"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:598
msgid ""
+"The first step is to choose your preferred language.\n"
"\n"
-"- Save to Tape on device: %s"
-msgstr ""
+"Please choose your preferred language for installation and system usage.\n"
"\n"
-" Stoor na Band op toestel: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Login name"
-msgstr "Aanteken naam"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
-msgstr "Raporteer eienaarlose-lêers"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr "Vee profiel uit..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Installeer Foomatic..."
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected"
-msgstr "reeds bespeur"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "Die netwerk moet herbegin word. Wil u dit nou doen?"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package: "
-msgstr "Pakket: "
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr "Kan nie '/etc/sysconfig/bootsplash' skryf nie."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "SEKURITEITS WAARSKUWING!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
-msgstr "Nee, ek verlang NIE outo-aanteken NIE"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Nutsprogram vir Windows-migrasie "
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr "Alle tale"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "Verwyder %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s is nie gevind nie...\n"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Testing your connection..."
-msgstr "Konneksie word getoets..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cache size"
-msgstr "Grootte van Kas"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Wagwoorde is nou ontsper, maar die gebruik as 'n netwerk-rekenaar word nie "
-"aanbeveel nie."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr "Begin-sektor: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr "Congo (Brazzaville)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Read"
-msgstr "Lees"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Die pakket %s moet geïnstalleer word. Wil u dit installeer?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
-msgstr "Seychelle"
-
-#: ../../printer/printerdrake.pm:1
-#, 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"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
"\n"
-"For your printer Printerdrake has found:\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
"\n"
-"%s"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
-"Printerdrake het die model wat dit deur outospeur bekom het vergelyk met die "
-"modelle in die drukker-databasis. Daarna is die beste eweknie gesoek. Die "
-"resultaat-drukker mag verkeerd wees, veral indien u drukker nie in die "
-"drukker-databasis gelys word nie. Maak dus seker dat die model korrek is en "
-"klik op \"Die model is korrek\", andersins moet u op \"Kies model self\" "
-"klik, om self u drukker te kan kies.\n"
-"\n"
-"Die model drukker wat 'Printerdrake' gevind het:\n"
-"\n"
-"%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Bad password on %s"
-msgstr "Slegte wagwoord op %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:617
msgid ""
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
"\n"
-"Daar is een onbekende drukker wat direk aan u rekenaar gekoppel is"
-
-#
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Control key"
-msgstr "Regter 'Control'-sleutel"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
msgstr ""
-"Plaas 'n FAT-geformatteerde skyf in aandrywer %s met %s in die 'root' "
-"lêergids en druk %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "Zambië"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr "Sekuriteits-administrateur (gebruiker of e-pos)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr "Jammer, slegs 2.4 kernels word ondersteun."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr "Romanies (QWERTY)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
-msgstr "Onder Ontwikkeling... wag asseblief."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "Egipte"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "Tsjeggiese Republiek"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "Klankkaart"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Import Fonts"
-msgstr "Trek Lettertipes in"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../help.pm_.c:638
msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"U het een massiewe Microsoft Windows partisie. \n"
-"Ek stel voor u verstel eers die grootte van dié partisie\n"
-"(kliek daarop en kliek dan op \"Verstel Grootte\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Onderdruk tydelike-lêers"
+"Kies asb. die korrekte poort. Onthou dat COM1 onder MS Windows \n"
+"ttyS0 onder GNU/Linux is."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+#: ../../help.pm_.c:642
+msgid ""
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
"\n"
-msgstr ""
-"Daarsy dude / dudes, die netwerk en Internetkonfigurasie is voltooi.\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
"\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "Verander partisietipe"
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Resolution\n"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
"\n"
-" 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 ""
-"Resolusie\n"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
"\n"
-" Hier kan u die resolusie en aantal kleure kies wat vir u hardeware\n"
-"beskikbaar is. Kies die een wat u die beste sal pas.( let dat u wel hierdie\n"
-"keuse weer kan verander na die installasie). 'n voorbeeld van die gekose\n"
-"konfigurasie word vertoon op die skerm."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Network Options"
-msgstr "Netwerk Opsies:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable msec hourly security check"
-msgstr "Aktiveer msec se uurlikse ondersoek"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"Vertoon tema\n"
-"onder konsole"
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr "(op %s)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"'n Programmateek wat beskerm teen buffer-vloede en formaat-string aanvalle."
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr "gemiddeld"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "New printer name"
-msgstr "Nuwe drukkernaam"
-
-#: ../../fs.pm:1
-#, 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 )."
-msgstr ""
-"Laat 'n gewone gebruiker toe om 'n lêerstelsel te kan heg.\n"
-"Die naam van daardie gebruiker word na 'mtab' geskryf sodat hy/sy dit NIE\n"
-"kan ontheg NIE.\n"
-"Hierdie opsie sluit in opsies 'noexec, nosuid, en nodev'\n"
-"(behalwe dit oorskryf word deur ekstra opsies in die\n"
-"opsielyn\n"
-"'user,exec,dev,suid')."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr "Ekwatoriale Guinea"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup System"
-msgstr "Rugsteun Stelsel"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Build Backup"
-msgstr "Rugsteun in Aanbou"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Om 'n lêer uit te druk vanaf die instruksielyn, gebruik die opdrag \"%s "
-"<lêernaam>\" of \"%s <lêernaam>\".\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Huidiglik is daar geen alternatiwe moontlikheid beskikbaar nie"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwertz)"
-msgstr "Romanies (QWERTZ)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Write Config"
-msgstr "Skryf Konfigurasie"
-
-#: ../../services.pm:1
-#, 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."
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
+"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
msgstr ""
-"Die 'routed' diensprogram hanteer outomatiese IP-roeteer-tabel-opdatering\n"
-"via die RIP protokol. Alhoewel RIP baie gebruik word in klein netwerke, is\n"
-"meer komplekse protokolle nodig vir komplekser netwerke."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr "Kiribati"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech Muis (seriaal, ou C7 tipe) met wielletjie-emulasie"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Ander (nie drakbackup) sleutels alreeds in plek"
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:678
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"
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\n"
"\n"
-"You will be presented with a list of different parameters to change to get\n"
-"an optimal graphical display: Graphic Card\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, 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"
-" 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"
+"if in doubt, DrakX will display a dialog with various options.\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"
+" * \"Bootloader to use\": you have three choices:\n"
"\n"
+" * \"GRUB\": if you prefer grub (text menu);\n"
"\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\n"
"\n"
-"Monitor\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\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"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
"\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\n"
"\n"
-"Resolution\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:718
+msgid ""
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\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"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
+msgstr ""
+"LILO (Die LInux LOader) en Grub is herlaaistelsels. Beide kan GNU/Linux of "
+"enige ander\n"
+"bedryfstelsel wat op u rekenar teenwoordig is, laai. Gewoonlik word hierdie\n"
+"beryfstelsels reg bespeur en bygevoeg. Indien nie, kan u 'n inskrywing maak\n"
+"op hierdie skerm. Maak seker u kies die korrekte paramters.\n"
"\n"
"\n"
-"Test\n"
+"U mag dalk toegang tot ander bedryfstelsels beperk, in welke geval u die "
+"nodige\n"
+"inskrywings kan uitvee. Maar dan het u die nodige herlaaiskywe nodig om die\n"
+"betrokke bedryfstelsels te laai."
+
+#: ../../help.pm_.c:732
+msgid ""
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\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"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
+msgstr ""
+"U moet aandui waar u die informasie om Linux te herlaai, wil plaas.\n"
"\n"
"\n"
+"Behalwe as u werklik weet wat u doen moet u \"Eerste sektor van skyf (MBR)\" "
+"kies."
+
+#: ../../help.pm_.c:739
+msgid ""
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
"\n"
-"Options\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
"\n"
-" 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."
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
msgstr ""
-"X (staan vir X Window Stelsel -let geen 's') is die hart van die GNU/Linux \n"
-"se grafiese-koppelvlak. Bo-op X, laai grafiese omgewings. ( dit sluit\n"
-"KDE, GNOME, AfterStep, WindowMaker ens. in)\n"
+
+#: ../../help.pm_.c:759
+#, fuzzy
+msgid ""
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Hier is 'n lys van verstellings wat u kan verander om die beste resultate\n"
-"te verkry: Grafiesekaart\n"
+"Because hardware detection does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
-"Die program sal gewoonlik die regte grafiesekaart optel en opstel.\n"
-"Indien nie, kan u self die regte een vanaf hierdie lys kies.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
"\n"
-" Dit mag gebeur dat daar verskillende tipe X-bedieners beskikbaar sal\n"
-"wees vir u kaart, met of sonder 3D-versnelling, kies dan die een wat u\n"
-"behoefdes die beste sal bevredig.\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
+msgstr ""
+"DrakX sal probeer om vir PCI SCSI-kaarte te soek.\n"
+"Indien DrakX 'n SCSI-kaart bespeur en weet watter drywer omte gebruik sal "
+"dit outomaties installeer word.\n"
"\n"
+"Indien u nie oor 'n SCSI-kaart, beskik nie of oor 'n ISA SCSI-kaart of 'n "
+"PCI SCSI-kaart beskik wat DrakX nie kan herken nie, sal u gevra word of daar "
+"enige SCSI-kaarte in diestelsel is. Indien daar geen is nie kliek op 'Nee', "
+"andersins op 'Ja'. U sal dan uit'n drywerlys kan kies.\n"
"\n"
"\n"
-"Monitor\n"
+"Indien u self 'n drywer moes spesifiseer, sal DrakX u ook vra vir enige "
+"spesifiekeopsies.\n"
+"U kan egter DrakX toelaat om self die hardeware te ondervra. DIt werk "
+"gewoonlik die beste.\n"
"\n"
-" Die program sal gewoonlik u monitor korrek kies.\n"
-"Indien nie, kan u self die regte een vanaf hierdie lys kies.\n"
+"Lees die installasie inligting hoe om hierdie tipe inligting m.b.v. die "
+"Windows-bedryfstelsel te bekom.\n"
+"U kan dit ook vanaf die internet onttrek indien u sulke toegang het."
+
+#: ../../help.pm_.c:781
+msgid ""
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
"\n"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\n"
"\n"
+"For Linux, there are a few possible options:\n"
"\n"
-"Resolusie\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
-" Hier kan u die resolusie en aantal kleure kies wat vir u hardeware\n"
-"beskikbaar is. Kies die een wat u die beste sal pas.( let dat u wel\n"
-"hierdie keuse weer kan verander na die installasie). 'n voorbeeld\n"
-"van die gekose konfigurasie word vertoon op die skerm.\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
"\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
"\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
"\n"
-"Toets\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"hda=autotune\n"
"\n"
-" ons gaan 'n grafiese skerm probeer opstel met die verstellings\n"
-"wat u gemaak het. Indien u die boodskap daarop kan sien en \"%s\"\n"
-"antwoord, sal DrakX na die volgende stap gaan. Indien u nie die boodskap\n"
-"kan sien nie, dui dit aan dat iets nie reg opgestel is nie. Die toets sal "
-"dan\n"
-"na 12 sekondes eindig, en terugval na die kieslys toe. Verander dan u\n"
-"keuses vir nog 'n probeerslag.\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
+" * Initrd: this option can be used either to load initial modules, before\n"
+"the boot device is available, or to load a ramdisk image for an emergency\n"
+"boot situation;\n"
"\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
"\n"
-"Opsies\n"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
"\n"
-" Hier kan u spesifiseer indien u rekenaar die grafiese-koppelvlak moet\n"
-"begin tydens selflaai. U kan \"%s\" merk indien u 'die rekenaar as bediener\n"
-"gaan gebruik, of indien u nie X met sukses kon opstel nie"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr "Blaai"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr "CDROM"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Wil u nou aan die internet konnekteer?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "Belgies"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Beskik u oor 'n ISA klankkaart?"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Geen ethernetkaart is op die stelsel gevind nie.\n"
-"Ek kan nie hierdie tipe konneksie opstel nie."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Windows"
-msgstr "Windows"
-
-#: ../../common.pm:1
-#, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "Kan nie skermfoto's neem voor partisie skep nie"
-
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Name"
-msgstr "Rekenaarnaam"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Lêer/Stoor _as"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"Om toegang tot eksterne CUPS-bedieners in u plaaslike netwerk te bekom, kies "
-"die \"Vind beskikbare drukkers op eksterne rekenaars outomaties\" opsie. die "
-"CUPS-bedieners sal u rekenaar outomaties verwittig oor hulle drukkers. Al "
-"die drukkers wat tans bekend is aan u rekenaar sal in \"Eksterne drukkers\" "
-"gelys wees (in Printerdrake). Indien u CUPS-bediener(s) nie op die plaaslike "
-"netwerk is nie, sal u self die IP adres(se) en ook opsioneel hulle poort(e) "
-"moet voorsien, om die inligting oor hulle drukkers te verkry."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
-"%s is nie teenwoordig in die skandeerder-databasis nie, stel dit self op?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "Wagperiode voor verstekstelsel gelaai word"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Restrict command line options"
-msgstr "Beperk instruksielyn-opsies"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "East Europe"
-msgstr "Oos-Europa"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "Gebruik beskikbare spasie"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "gebruik dhcp"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr "e-pos waarskuwing"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Internet configuration"
-msgstr "Internetkonfigurasie"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected %s"
-msgstr "%s bespeur"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "Outospeur drukkers"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "Voltooi"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Wys outogeselekteerde pakkette."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr "Togo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "CPU flaggies deur kernel geraporteer"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Iets is fout! - Is mkisofs geïnstalleer?"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "Probeer asb. weer"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The model is correct"
-msgstr "Die model is korrek"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT-grootteverandering het gefaal: %s"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr "Individuele pakket-seleksie"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr "Hierdie partisie se grootte kan nie verstel word nie"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr "Ligging"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "VSA (cable-hrc)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr "Gejoernaliseerde FS"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr "Ethernetkaarte 'promoscuity' toets"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
-msgstr "Hierdie rekenaar"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS-skyfletter: %s ('n raaiskoot)\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr "Bahrain"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Kies die lêers en lêergidse, klik daarna op 'OK'"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit scsi modules"
-msgstr "laat SCSI-modules weg"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "CPU se familie (bv. 6 vir i686 tipe)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Omdat u netwerk installasie doen, is u netwerk aslreeds opgestel.\n"
-"Kliek op OK om hierdee konfigurasie te behou, of op Kanselleer om u "
-"Internet\n"
-"& Netwerkkonneksie te herkonfigureer.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
-msgstr "Loop die daaglikse sekuriteits-toetse"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Sleutelbord uitleg: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"Hier kan u kies of die drukkers wat aan hierdie masjien beskikbaar sal wees "
-"aan eksterne rekenaars en watter rekenaars dit sal wees."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr "Maltees (VSA)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "Die selflaai-disket is suksesvol geskep.\n"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Heg en ontheg alle netwerklêerstels (NFS), SMB (Lan Manger/Windows)\n"
-"en NCP (Netware) hegpunte."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Launch the wizard"
-msgstr "Loods die wysgeer"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Tvcard"
-msgstr "TV-kaart"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Skakel tussen normale/kenner modus"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr "Grootte"
-
-#: ../../help.pm:1
-#, c-format
-msgid "GRUB"
-msgstr "GRUB"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr "Groenland"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "Donderdag"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Nie die korrekte etiket nie. Band se etiket is %s."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\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"
-"What would you like to do?"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
msgstr ""
-"Die opstelling van die Internetkonnkesiedeling is alreeds gedoen.\n"
-"Dis tans aktief.\n"
-"\n"
-"Wat wil u doen?"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Verwyder alle NBIs"
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:828
msgid ""
-"This dialog allows you to fine tune your bootloader:\n"
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
"\n"
-" * \"%s\": there are three choices for your bootloader:\n"
+"Yaboot's main options are:\n"
"\n"
-" * \"%s\": if you prefer grub (text menu).\n"
+" * Init Message: a simple text message displayed before the boot prompt;\n"
"\n"
-" * \"%s\": if you prefer LILO with its text menu interface.\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"
-" * \"%s\": if you prefer LILO with its graphical interface.\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"
-" * \"%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"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
-" * \"%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"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\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"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
-"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
-"are normally reserved for the expert user."
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
msgstr ""
-"Hierdie deel help met die fyner verstelling van u\n"
-"herlaaistelsel: \n"
-"\n"
-" * \"%s\": kies een van drie herlaaistelsels:\n"
+
+#: ../../help.pm_.c:860
+msgid ""
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
"\n"
-" * \"%s\": indien u grub (teks-kieslys) verkies.\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
"\n"
-" * \"%s\": indien u LILO met 'n teks-koppelvlak verkies.\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
"\n"
-" * \"%s\": indien u LILO met 'n grafiese-koppelvlak verkies.\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
-" * \"%s\": in die meeste gevalle, sal die verstek (\"%s\") reg wees, indien\n"
-"u so verkies, kan die herlaaistelsel op die tweede hardeskyf geïnstalleer\n"
-"word (\"%s\"), of selfs op 'n disket (\"%s\");\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\n"
"\n"
-" * \"%s\": met die herlaai of selflaai, sal hierdie die wagperiode wees \n"
-"wat aan die gebruiker gegun sal word, waarin hy/sy 'n keuse kan\n"
-"maak oor die bedryfstelsel wat dan sal selflaai\n"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\n"
"\n"
-"!! AANDAG: indien u sou verkies om nie 'n herlaaistelsel te installeer\n"
-"nie(deur \"%s\" te kies) moet u 'n ander metode vind om u Mandrake\n"
-"Linux te selflaai! Maak seker dat u uitmaak wat die move doen voor u\n"
-" dit verander, maak uit !!\n"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\n"
"\n"
-"Deur op die \"%s\" knoppie klik, sal u gevorderde opsies kan gebruik\n"
-"wat normaalweg slegs vir slimkoppe nodig is."
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../help.pm_.c:891
msgid ""
-"if set, send the mail report to this email address else send it to root."
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
-"Indien gespesifiseer, stuur die e-pos verslag na hierdie adres, so nie,\n"
-"stuur na 'root'"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Watter tipe XFree-konfigurasie verlang u?"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "More"
-msgstr "Meer Keuses"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:896
msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"Hierdie een gebruik dieselfde sintaksis as die program 'cdrecord', 'cdrecord "
-"- scanbus' sal ook aan u die toestelnommer vertoon."
-#: ../../security/level.pm:1
+#: ../../install2.pm_.c:111
#, 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."
+"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 ""
-"Met hierdie sekuriteitsvlak kan u stelsel as 'n bediener gebruik word.\n"
-"Die sekuriteit is goed genoeg sodat die rekenaar konneksies van kliënte\n"
-"af kan aanvaar.\n"
-"Aandag: Indien u masjien bloot 'n kliënt op die Internet is, kan u 'n laer\n"
-"vlak kies."
-#: ../../standalone/printerdrake:1
+#: ../../install2.pm_.c:167
#, c-format
-msgid "Server Name"
-msgstr "Bedienernaam"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Password"
-msgstr "Wagwoord"
-
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
+msgid "You must also format %s"
msgstr ""
-"Kan nie %s vertoon nie \n"
-" Geen Hulp inskrywing van hierdie tipe nie\n"
-#: ../../any.pm:1
+#: ../../install_any.pm_.c:423
#, 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"
+"You have selected the following server(s): %s\n"
"\n"
-"On which drive are you booting?"
-msgstr ""
-"U het verkies om die herlaaistelsel op 'n partisie\n"
-"te installeer. Hiermee impliseer u dat u alreeds 'n herlaaistelsel op\n"
-"die hardeskyf waarmee u selflaai het (bv 'System Commander').\n"
"\n"
-"Vanaf watter hardeyskyf geskied die selflaai?"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"WARNING!\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\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 ""
-"WAARSKUWING\n"
"\n"
-"DrakX gaan nou u Windows-partisie vestel. WEES VERSIGTIG:\n"
-"Hierdie aksie kan gevaarlik wees. Indien nog nie, moet u tog\n"
-"\"chkdsk c:\" loop vanaf die instruksielyn in Windows. (let daarop\n"
-"die grafiese \"scandisk\" is nie voldoende nie - GEBRUIK \"chkdsk\"!)\n"
-"U kan ook gerus \"defrag\" daarna loop, en u data rugsteun\n"
-"Begin dan weer hierdie installasie.\n"
-"Andersins, klik op OK."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tajik keyboard"
-msgstr "Tajik sleutelbord"
-
-#: ../../printer/printerdrake.pm:1
-#, 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"
+"Do you really want to install these servers?\n"
msgstr ""
-"U kan die drukker se konfigurasie wat u vir spoel %s gedoen het, dupliseer "
-"na %s, u huidige spoeller. Al die konfigurasie (drukkernaam, beskrywing, "
-"ligging, konneksie-tipe en verstek opsies) sal oorgeplaas word, drukwerk sal "
-"nie oorgeplaas word nie.\n"
-"Nie alle druk-rye kan so oorgeplaas word nie a.g.v. die volgende redes:\n"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Font List"
-msgstr "Lettertipe-lys"
-
-#: ../../install_steps_interactive.pm:1
+#: ../../install_any.pm_.c:441
#, 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."
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-"U mag moontlik u 'Open Firmware' selflaai-toestel verander om\n"
-" die herlaaistelsel te aktiveer. Indien u nie die herlaaistelsel-porteks \n"
-" tydens seklflaai sien nie, hou die \"Command-Option-O-F\" in\n"
-" gedurende selflaai en tik die volgende in:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-"Tik daarna 'shut-down' in\n"
-"U behoort die herlaaistelsel-porteks met die volgende selflaai te sien."
-#: ../../install_steps_interactive.pm:1
-#, 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"
-msgstr ""
-"Dit wil voorkom of u 'n 'OldWorld' of Onbekende\n"
-"rekenaar het, die yaboot herlaaistelsel sal nie hier werk nie.\n"
-"Ons sal voortgaan met die installasie, maar u sal\n"
-"BootX of 'n ander manier moet gedruik om u rekenaar te selflaai"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
+msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_any.pm_.c:879
#, c-format
-msgid "Select file"
-msgstr "Kies lêer"
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Sit 'n FAT-geformatteerde skyf in aandrywer %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr ""
-"Kies die netwerk of rekenaar waarop die plaaslike drukkers beskikbaar\n"
-"gestel moet word:"
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
+msgstr "Hierdie floppie is nie in FAT-formaat nie"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_any.pm_.c:895
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"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-"Hierdie opdragte kan u ook in die \"Printing command\" veld in die drukker-"
-"dialoogvensters van baie programme gebruik, maar nou hoef u nie die lêernaam "
-"te voorsien nie , die program doen dit vir jou.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "Japan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print option list"
-msgstr "Drukkeropsies"
-
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "Die verandering is aangebring, maar u moet eers afteken"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
-msgstr "Land / Omgewing"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search servers"
-msgstr "Soek bedieners"
+"Om hierdie gestoorde pakketkeuse te gebruik, herlaai die installasie met "
+"\"linux defcfg=floppy\""
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, c-format
-msgid "NCP queue name missing!"
-msgstr "NCP-tounaam ontbreek!"
+msgid "Error reading file %s"
+msgstr "Fout met die les van lêer %s"
-#: ../../standalone/net_monitor:1
-#, c-format
+#: ../../install_any.pm_.c:1040
msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
+"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 ""
-"Pasop, daar is 'n ander internet konneksie, wat moontlik u netwerk gebruik, "
-"bespeur"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CDROM getiteld \"%s\""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr "CDRW media"
+"'n Fout het voorgekom - geen geldige toestelle om die nuwe lêerstelsels op "
+"te skep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
-#: ../../services.pm:1
+#: ../../install_interactive.pm_.c:21
#, c-format
msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"Stoor en herstel die stelsel-entropie-poel vir hoë kwaliteit,\n"
-"lukraak-nommergenerasie."
-
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr "Verander u rekenaar in 'n betroubare bediener"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr "Kyk vir leë wagwoorde in '/etc/shadow'"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid " (driver %s)"
-msgstr " (drywer %s)"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
-msgstr "Begin sodra gevra word"
+"Sekere hardeware op u rekenaar benodig geslote drywers.\n"
+" U kan inligting hieroorvind by %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:56
msgid ""
-"Loopback file(s):\n"
-" %s\n"
+"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 ""
-"Teruglus lêer(s):\n"
-" %s\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr "Ek weet nie"
+"U moet 'n wortelpartisie definieer.\n"
+"Skep 'n partisie of kliek op 'n bestaande een.\n"
+"Kies dan Hegpunt en stel dit dan '/'."
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP rekenaar \"%s\", poort %s"
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
+msgstr "U moet oor 'n ruilpartisie beskik"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../install_interactive.pm_.c:62
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"
+"You don't have a swap partition.\n"
"\n"
-"Do you want to continue?"
+"Continue anyway?"
msgstr ""
-"U gaan nou 'n Outomatiese Installasie disket opstel. Die gebruik daarvan kan "
-"gevaarlik wees, en u moet bewus wees daarvan.\n"
-"\n"
-"Dit laat u toe om die installasie, wat u op hierdie rekenaar uitgevoer het, "
-"te kan herhaal.(op 'n ander rekenaar) U sal hier en daar gevra word om die "
-"waardes van sekere stappe te verander, sou u so verkies.\n"
-"\n"
-"Die skep van partisies en formattering daarvan sal altyd nog voor gevra word."
-"Dit is om te verhoed dat u ongewense glipse maak.\n"
+"U het nie 'n ruilpartisie nie\n"
"\n"
-"Sal ons voortgaan?"
+"Wil u steeds voortgaan?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Telugu"
-msgstr "Telugu"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "U moet oor 'n FAT partisie wat as /boot/efi geheg is, beskik"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
-msgstr ""
-"\n"
-"\n"
-"U kaart gebruik tans die %s\"%s\" drywer ( die kaart se verstek drywer is \"%"
-"s\")"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
+msgstr "Gebruik beskikbare spasie"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Uninstall"
-msgstr "Post-Verwyder"
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
+msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Konnekteer aan die Internet"
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
+msgstr "Gebruik bestaande partisies"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
-msgstr " ("
+#: ../../install_interactive.pm_.c:102
+msgid "There is no existing partition to use"
+msgstr "Daar is geen bestaande partisies om te gebruik nie"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid level"
-msgstr "Cpuid vlak"
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
+msgstr "Gebruik vir die Windows-partisie vir teruglus"
-#
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Novell-bediener \"%s\", drukker \"%s\""
+#: ../../install_interactive.pm_.c:112
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Watter partisie wil u vir Linux4Win gebruik?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "Mongools (cyrillic)"
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
+msgstr "Kies die groottes"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Add a module"
-msgstr "Voeg module by"
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
+msgstr "Basispartisiegrootte in MB:"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr "Profiel om uit te vee:"
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr "Ruilpartisiegrootte in MB: "
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Local measure"
-msgstr "Plaaslike meting"
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
+msgstr "Gebruik die beskikbare spasie op die Windowspartisie"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
-msgstr "Pasop: IP-adres %s is alreeds gebruik !"
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
+msgstr "Watter partisie se grootte wil u verander?"
-#: ../../mouse.pm:1
-#, c-format
-msgid "busmouse"
-msgstr "busmuis"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "Windowslêerstelselgrense word bereken"
-#: ../../standalone/drakTermServ:1
+#: ../../install_interactive.pm_.c:134
#, 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."
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and drakTermServ is just a "
-"graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Gebruikerskode"
+"Die FAT-verstellingsprogram kan nie u partisie hanteer nie.\n"
+"Fout: %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
-msgstr "Fdiv-gogga"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
+msgstr "U Windows-partisie is te gefragmenteer. Loop eers 'defrag' asb."
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:138
+#, fuzzy
msgid ""
-"drakfirewall configurator\n"
+"WARNING!\n"
"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-"drakefirewall assistent\n"
+"WAARSKUWING\n"
"\n"
-"Maak seker dat u alreeds die Netwerk/Internet toegang opgestel het\n"
-"deur 'drakconnect' te gebruik."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr "Aanvaar uitgesaaide icmp-ego's"
+"DrakX moet nou u WIndowspartisie se grootte verander. Hierdie operasie\n"
+"IS GEVAARLIK. Indien u nie alreeds so gemaak het nie, moet u hierdie "
+"installasie\n"
+"verlaat, scandisk onder Windows loop en dalk ook defrag. Dan kan u terugkeer "
+"na\n"
+"hierdie installasie. Rugstuen ook u data. Insien u skeer is van u saak, kies "
+"OK."
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr "Uruguay"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Watter grootte wil u vir Windows behou?"
-#: ../../lang.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Benin"
-msgstr "Benin"
+msgid "partition %s"
+msgstr "partisie %s"
-#: ../../printer/main.pm:1
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "SMB/Windows-bediener \"%s\", deelarea \"%s\""
+msgid "FAT resizing failed: %s"
+msgstr "FAT-grootteverandering het gefaal: %s"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path selection"
-msgstr "Roete-keuse"
+#: ../../install_interactive.pm_.c:171
+msgid ""
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Daar is geen FAT partisies om te verander of om as teruglus (nie genoeg "
+"spasie nie) te gebruik nie"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Name/IP address of host:"
-msgstr "Naam/IP-adres van rekenaar:"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr "Wis hele skyf"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr "Verwyder Windows(TM)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom & system settings"
-msgstr "Pasmaak & stelsel verstellings"
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "U het meer as een hardeskyf, waar wil u Linux installeer?"
-#: ../../partition_table/raw.pm:1
+#: ../../install_interactive.pm_.c:183
#, c-format
-msgid ""
-"Something bad is happening on your drive. \n"
-"A test to check the integrity of data has failed. \n"
-"It means writing anything on the disk will end up with random, corrupted "
-"data."
-msgstr ""
-"Iets vrots gebeur op u hardeskyf.\n"
-"'n Data-integriteitstoets het misluk.\n"
-"Dit beteken dat enigiets wat na u hardeskyf geskryf word as gemors sal "
-"eindig."
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Alle bestaande partisies en data sal uitgewis word op skyf %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Drukkerbedienernaam of IP ontbreek!"
+#: ../../install_interactive.pm_.c:191
+msgid "Custom disk partitioning"
+msgstr "Gespesialiseerde skyfpartisionering"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Kies al die gebruikers wie ingesluit moet word by die rugsteun."
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr "Gebruik fdisk"
-#: ../../standalone/scannerdrake:1
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-"Die %s moet opgestel word deur 'printerdrake'.\n"
-"U kan printerdrake onder die Mandrake Control Center se Hardeware gedeelte "
-"vind."
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Key isn't writable"
-msgstr "XawTV in nie geïnstalleer nie"
+"U het nou partisie %s partisioneer.\n"
+"Wanneer u klaar is, stoor u veranderinge met 'w'."
-#: ../../lang.pm:1
-#, c-format
-msgid "Bangladesh"
-msgstr "Bangladesh"
+#: ../../install_interactive.pm_.c:227
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Die Windowspartisie beskik nie oor die nodige spasie nie."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
-msgstr "Japan (kabel)"
+#: ../../install_interactive.pm_.c:243
+msgid "I can't find any room for installing"
+msgstr "Ek kon geen plek vir installasie vind nie."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Initial tests"
-msgstr "Begin-toetse"
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Die DrakX partisioneringsassistent het die volgende oplossings:"
-#: ../../network/isdn.pm:1
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid "Continue"
-msgstr "Gaan voort"
+msgid "Partitioning failed: %s"
+msgstr "Partisionering het misluk: %s"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom Restore"
-msgstr "Aangepaste-herstel"
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr "Netwerk op pad op"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Saturday"
-msgstr "Saterdag"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr "Netwerk op pad af"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps.pm_.c:76
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."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"\"%s\" die bespeurde klankkaart op u rekenaar sal hier vertoon word.\n"
-"Indien die aangeduide klankkaart verskil van die werklike een op u\n"
-"rekenaar,\n"
-"kan u op die knoppie klik, om 'n ander drywer te kies."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the root umask."
-msgstr "Kies 'root' se 'umask'."
-
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "Fout met die lees van lêer %s"
+"'n Fout het plaasgevind en ek weet nie hoe om dit veilig te hanteer\n"
+"nie. Gaan op u eie risiko voort."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "Script-based"
-msgstr "Skriptipe"
+msgid "Duplicate mount point %s"
+msgstr "Duplikaat hegpunt %s"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "PLL setting:"
-msgstr "PLL verstelling:"
+#: ../../install_steps.pm_.c:380
+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 ""
+"Sekere belangrike pakkette het nie korrek geïnstalleer nie.\n"
+"Óf die CDROM-aandrywer óf die CD is foutief.\n"
+"Toets die CD op 'n werkende Linux installasie met \"rpm -qpl Mandrake/RPMS/*."
+"rpm\"\n"
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "U moet oor 'n FAT partisie wat as /boot/efi geheg is, beskik"
+msgid "Welcome to %s"
+msgstr "Welkom by %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
-msgstr " on "
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr "Geen sagteskyaandrywer beskikbaar nie"
-#: ../../diskdrake/dav.pm:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "The URL must begin with http:// or https://"
-msgstr "Die URL moet begin met http:// or https://"
+msgid "Entering step `%s'\n"
+msgstr "Gaan stap '%s' binne\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:146
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."
+"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 ""
-"U kan die URI om die drukker te bereik direk spesifiseer. Die URI moet in "
-"CUPS- of Foomatic-formaat wees. Nie alle URI-tipes word deur die "
-"spoelprogramme ondersteun nie."
+"U stelsel het min hulpbronne beskikbaar. U mag dalk probleme ondervind met "
+"die installering\n"
+"van Mandrake Linux. In so 'n geval probeer eerder die teksinstallasie. "
+"Daarvoor moet u\n"
+"'F1' druk wanneer u vanaf die CDROM herlaai en dan 'text' op die "
+"instruksielyn intik."
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "Ander bedryfstelsel (SunOS...)"
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr "Installasieklas"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Install/Upgrade"
-msgstr "Installeer/Opgradeer"
+#: ../../install_steps_gtk.pm_.c:160
+#, fuzzy
+msgid "Please choose one of the following classes of installation:"
+msgstr "Kies asb. een van die volgende installasieklasse:"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d packages"
-msgstr "%d pakkette"
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
+msgstr "Kies pakketgroepe"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Costa Rica"
-msgstr "Costa Rica"
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
+msgstr "Individuele pakketseleksie"
-#: ../../standalone.pm:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Backup and Restore application\n"
-"\n"
-"--default : save default directories.\n"
-"--debug : show all debug messages.\n"
-"--show-conf : list of files or directories to backup.\n"
-"--config-info : explain configuration file options (for non-X "
-"users).\n"
-"--daemon : use daemon configuration. \n"
-"--help : show this message.\n"
-"--version : show version number.\n"
-msgstr ""
-"[--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 "Total size: %d / %d MB"
+msgstr "Totale grootte: %d / %d MB"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain Authentication Required"
-msgstr "Benodig Domein-magtiging"
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
+msgstr "Foutiewe pakket"
-#: ../../security/level.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "Use libsafe for servers"
-msgstr "Gebruik libsafe vir bedieners"
+msgid "Name: %s\n"
+msgstr "Naam: %s\n"
-#: ../../keyboard.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid "Icelandic"
-msgstr "Yslandies"
+msgid "Version: %s\n"
+msgstr "Weergawe: %s\n"
-#: ../../standalone.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
-msgstr ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+msgid "Size: %d KB\n"
+msgstr "Groote: %d KB\n"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
+msgid "Importance: %s\n"
+msgstr "Belangrikheid: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:360
msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
+"You can't select this package as there is not enough space left to install it"
msgstr ""
-"Maksimum grootte\n"
-"toegelaat vir Drakbackup (MB)"
-
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Sirkulêre heg %s\n"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo/grub mode"
-msgstr "LILO/GRUB metode"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "Martinique"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Hardeskyf / NFS"
+"U kan nie hierdie pakket selekteer nie, omdat daar nie meer spasie "
+"beskikbaar is nie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Old user list:\n"
-msgstr "Ou gebruiker-lys:\n"
+#
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
+msgstr "Die volgende pakkette gaan installeer word"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
-msgstr "Deursoek Rugsteun"
+#
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
+msgstr "Dei volgende pakkette gaan verwyder word"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "a number"
-msgstr "'n syfer"
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
+msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "Sweeds"
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Hierdie is 'n verpligte pakket. Dit kan nie uitgehaal word nie."
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Watter %s drywer moet ek probeer?"
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
+msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geïnstalleer"
-#: ../../standalone/logdrake:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:395
msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
-"U sal 'n waarskuwing ontvang indien een van die dienste nie meer beskikbaar "
-"is nie"
+"Hierdie pakket moet opgradeer word\n"
+"Is u seker u wil dit deselekteer?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Weekday"
-msgstr "Weeksdag"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "U kan nie hierdie pakket deselekteer nie. Dit moet opgradeer word."
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Filesystem types:"
-msgstr "Lêerstelsel-tipes:"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
+msgstr "Wys outogeselekteerde pakkette."
-#: ../../lang.pm:1
-#, c-format
-msgid "Northern Mariana Islands"
-msgstr "Noordelike Mariana Eilande"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr "Installasie"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", multi-funksionele toestel op 'HP JetDirect'"
+#: ../../install_steps_gtk.pm_.c:407
+msgid "Load/Save on floppy"
+msgstr "Laai/Stoor op floppie"
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "niks"
+#: ../../install_steps_gtk.pm_.c:408
+msgid "Updating package selection"
+msgstr "Pakketseleksie word opgedateer"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Naam van die profiel om te skep ( die nuwe profiel is dieselfde as die "
-"huidige een) :"
+#: ../../install_steps_gtk.pm_.c:413
+msgid "Minimal install"
+msgstr "Minimale installasie"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Floppy"
-msgstr "Disket"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
+msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "Gostscript verwysing"
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr "Besig met installasie"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Bootloader"
-msgstr "Herlaaistelsel"
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr "Skatting"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
-msgstr "Magtig al die dienste wat tcp_wrappers beheer"
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr "Tyd oor "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "Skuif"
+#: ../../install_steps_gtk.pm_.c:469
+msgid "Please wait, preparing installation..."
+msgstr "Wag asb. installasie word voorberei"
-#: ../../any.pm:1 ../../help.pm:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid "Bootloader to use"
-msgstr "Herlaaistelsel om te gebruik"
+msgid "%d packages"
+msgstr "%d pakkette"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "SMB server host"
-msgstr "SMB-bedienernaam"
+msgid "Installing package %s"
+msgstr "Installeer pakket %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Name Servers:"
-msgstr "DNS-bedieners:"
+#
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "Aanvaar "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Minute"
-msgstr "Minuut"
+#
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
+msgstr "Weier"
-#: ../../install_messages.pm:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
msgid ""
+"Change your Cd-Rom!\n"
"\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"
+"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 ""
+"Verander u CDROM!\n"
+"\n"
+"Sit asb. die CDROM getiteld \"%s\" in die aandrywer en druk OK. Indien u "
+"nie\n"
+"hieroor beskik nie, druk Kanselleer om installasies vanaf dié CDROM te vermy."
+
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
+msgstr "Gaan steeds voort?"
+
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
+msgstr "Daar was 'n fout met pakkette:"
+
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
+msgstr "Daar was 'n fout met die installasie van die pakkette:"
+
+#: ../../install_steps_interactive.pm_.c:10
+msgid ""
"\n"
"Warning\n"
"\n"
@@ -7364,5953 +4225,4405 @@ msgstr ""
"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"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Expert mode"
-msgstr "/_Kundige modus"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr ""
-"Verwyder hierdie drukker uit die Star Office/OpenOffice.org/GIMP programme"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
msgstr ""
-"'Linux Virtual Server', word gebruik om 'n hoë werkverrigting\n"
-"en beskikbare bediener te verkry."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr "Micronesia"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 biljoen kleure (32 bis)"
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
+msgstr "'n Fout het voorgekom"
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
-msgstr "Lisensie"
+#: ../../install_steps_interactive.pm_.c:85
+#, fuzzy
+msgid "Do you really want to leave the installation?"
+msgstr "Wil u die werklik die drukker verwyder?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "Dit sal 'n rukkie neem om die sleutels te genereer."
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
+msgstr "Lisensieooreenkoms"
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:113
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"
+"Introduction\n"
"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
"\n"
+"1. License Agreement\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"
+"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"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-"Hier kan u die vlak administrasie van sekuriteit op u rekenaar opstel.\n"
+"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"
-"Die Sekuriteits-administrateur sal die sekuriteits-waarskuwings ontvang\n"
-"indien\n"
-"die 'Sekuriteits-waarskuwings' opsie gekies is. Dit kan 'n gebruikernaam of\n"
-"'n e-pos adres wees.\n"
+"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"
-"Die Sekuriteitsvlak-kieslys stel u in staat om een van ses vooraf-"
-"opgestelde\n"
-"vlakke te kies.\n"
-"Hierdie vlakke wissel van ligte sekuriteit en maklike gebruik tot "
-"paranoïes,\n"
-"wat geskik is vir uiters sensitiewe toepassings.\n"
"\n"
+"3. The GPL License and Related Licenses\n"
"\n"
-"<span foreground=\"royalblue3\">Lig</span>: Hierdie is glad nie veilig nie,\n"
-"alhoewel dit rekenaargebruik vergemaklik.\n"
-"Gebruik dit op masjiene wat nie aan 'n netwerk gekoppel is nie,\n"
-"en nie toeganklik tot almal is nie.\n"
+"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"
-"<span foreground=\"royalblue3\">Standaard</span>: Hierdie is die standaard\n"
-"sekuriteit\n"
-"wat ons aanbeveel vir rekenaars wat aan die Internet gebruik as 'n kliënt\n"
+"4. Intellectual Property Rights\n"
"\n"
-"<span foreground=\"royalblue3\">Hoog</span>:Daar is reeds versperrings, en\n"
-"meer outomatise toetse word saans gedoen\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"
-"<span foreground=\"royalblue3\">Hoër</span>: Met hierdie sekuriteitsvlak "
-"kan\n"
-"u stelsel as 'n bediener gebruik.\n"
-"Die sekuriteit is goed genoeg sodat die rekenaar konneksies van kliënte\n"
-"af kan aanvaar.\n"
-"Aandag: Indien u masjien bloot 'n kliënt op die Internet is, kan u 'n laer\n"
-"vlak kies.\n"
"\n"
+"5. Governing Laws \n"
"\n"
-"<span foreground=\"royalblue3\">Paranoïes</span>: Soortgelyk aan die vorige\n"
-"vlak, maar die rekenaar is totaal toe en sekuriteit is op sy\n"
-"maksimum"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr "Drukker-outospeur ( Plaaslik, TCP/Sok, en SMB-drukkers)"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr "Sagem (gebruik pppoa) usb"
-
-#: ../../install_any.pm:1
-#, 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"
+"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 ""
-"'n Fout het voorgekom - geen geldige toestelle om die nuwe lêerstelsels op "
-"te skep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Begin die drukkerstelsel tydens selflaai"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Wil u die konneksie met herlaaityd aanskakel?"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr "Verwerker ID"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr "Klank foutopsporing"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "Pools (QWERTY uitleg)"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Voeg Drukker by"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
msgstr ""
-"\n"
-"Drakbackup aktiviteite via CD:\n"
-"\n"
-#: ../../printer/printerdrake.pm:1
-#, 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?"
-msgstr ""
-"U gaan nou die %s drukkerstelsel installeer op 'n rekenaar wat in die %s "
-"sekuriteitsvlak is.\n"
-"\n"
-"Die drukkerstelsel loop 'n daemoon (agtergrond proses) wat wag vir drukwerk "
-"en dit dan doen. Hierdie daemoon kan bereik word deur ander rekenaars op die "
-"netwerk, so dit kan 'n swakpunt in die sekuriteit van u rekenaar wees. Die "
-"reel is dat hoe minder van hierdie daemone loop, hoe meer veilig is u "
-"rekenaar , maar u moet dit ook kan gebruik!\n"
-"\n"
-"Wil u drukkers opstel op hierdie rekenaar?"
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "Sleutelbord"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Rekenaar \"%s\", poort %s"
+#: ../../install_steps_interactive.pm_.c:218
+#, fuzzy
+msgid "Please choose your keyboard layout."
+msgstr "Wat is u sleutelborduitleg?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "Hierdie partisie kan nie vir teruglus gebruik word nie."
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
+msgstr "Hierdie is die volledige lys van beskikbare sleutelborde"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr "Lêer bestaan alreeds. Moet dit gebruik word?"
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
+msgstr "Watter installasieklas verlang u?"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
-msgstr "ontvang: "
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
+msgstr "Installeer/Opgradeer"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr "Regter Alt-sleutel"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
+msgstr "Is hierdie 'n installasie of opgradering?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "lys van alternatiewe drywers vir hierdie klankkaart"
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr "Aanbevole"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Portaal"
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Kundige"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr "Tonga"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#, fuzzy
+msgid "Upgrade"
+msgstr "Opgradeer"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "Tunisië"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#, fuzzy
+msgid "Upgrade packages only"
+msgstr "Pakketseleksie word opgedateer"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing"
-msgstr "Deel skandeerders"
+#: ../../install_steps_interactive.pm_.c:282
+#, fuzzy
+msgid "Please choose the type of your mouse."
+msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile: "
-msgstr "Profiel:"
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr "Muispoort"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr "Klik op 'n toestel links, om sy inligting hier te vertoon."
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
+msgstr "Aan watter seriaalpoort is u muis gekoppel?"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr "Laat toe/Verbied outo-inteken."
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
+msgstr "Knoppie-emulasie"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
-msgstr "XawTV in nie geïnstalleer nie"
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
+msgstr "Knop-2 Emulasie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Moet nie kritiese lêers insluit nie (passwd, group, fstab)"
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
+msgstr "Knop-3 emulasie"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "ou statise toestelnaam wat in die dev pakket gebruik word"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr "Stel PCMCIA op..."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
-msgstr "Ontsper aanteken van vreemde IPv4-pakkies in staaflêer."
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
-msgstr "Hierdie etiket is alreeds in gebruik"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr "IDE word opgestel"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"Welkom by die \"Printer Setup Wizard\"\n"
-"\n"
-"Hierdie wysgeer sal u help op u drukker(s) op te stel, hetsy hulle direk aan "
-"die rekenaar ,direk aan die netwerk, of aan 'n eksterne Windows rekenaar\n"
-"gekoppel is.\n"
-"\n"
-"Maak tog seker die drukker(s) is reg gekoppel en aangeskakel, sodat "
-"outospeur sy werk reg kan doen. Maak ook seker u netwerkdrukker(s) en "
-"Windows drukker bedieners aangeskakel en gekonnekteer is.\n"
-"\n"
-"Let ook tog dat autospeur van drukkers oor die netwerk langer neem as die "
-"outospeur van plaaslike drukkers. U kan gerus die outospeur van netwerk en/"
-"of Windows drukker bedieners versper indien u dit nie gaan gebruik nie.\n"
-"\n"
-"Klik op \"Volgende\" sodra u gereed is, of op \"Kanselleer\" indien u nou "
-"enige drukkers wil opstel nie."
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
-msgstr "Grieks (polytonies)"
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr "geen beskikbare partisies"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Alle data om partisie %s sal uitgewis word met formatering."
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
+msgstr "Hegpunte vir partisies word nou gesoek"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection Time: "
-msgstr "Konneksietyd: "
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr "Kies die hegpunte"
-#: ../../standalone/livedrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:386
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."
+"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 ""
-"Plaas asb. die instasllasie CDROM in die aandrywer en druk OK. Indien u nie\n"
-"hieroor beskik nie, druk Kanselleer om die intydse opgradering te vermy."
+"Geen beskikbare 1MB herlaaipartisie nie! Installasie sal voortgaan, maar u "
+"sal herlaaipartisie met DiskDrake moet skep indien u die stelsel wil "
+"herlaai."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use group id for execution"
-msgstr "Gebruik groep-id vir uitvoering"
+#: ../../install_steps_interactive.pm_.c:395
+msgid "No root partition found to perform an upgrade"
+msgstr "Geen wortellêerstelsel gevind nie"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "Kies die verstek gebruiker:"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr "Basispartisie"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "Gaboen"
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr "Wat is die basispartisie (/) van u stelsel?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Met 'n eksterne CUPS-bediener, hoef u glad nie 'n drukker hier op te stel "
-"nie; drukkers word outomaties bespeur."
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr "U moet herlaai om die partisietabelveranderinge te aktiveer"
-#: ../../any.pm:1
-#, 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."
-msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr "Kies die partisies om te formatteer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
-"Lêergids (of module) waarop rugsteun vir hierdie rekenaar geplaas moet word."
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
+msgstr "Toets vir foutiewe areas?"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain"
-msgstr "Domein"
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr "Partisies word formateer"
-#: ../../any.pm:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Presiese RAM grootte indien nodig (%d MB bespeur)"
+msgid "Creating and formatting file %s"
+msgstr "Lêer %s word geskep en formatteer"
-#: ../../help.pm:1
+#: ../../install_steps_interactive.pm_.c:470
#, 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."
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-"LILO en grup is herlaaistelsels vir GNU/Linux. Hierdie stap is normaalweg\n"
-"geheel en al outomaties. DrakX sal u hardeskyf se selflaai-sektor nagaan\n"
-"en dienooreenkomstig handel met wat dit vind:\n"
-"\n"
-" * indien 'n Windows selflaai-sektor teenwoordig is, sal dit met 'n grub/\n"
-"LILO\n"
-"een vervang word. Dit sal u toelaat om te kan kies watter bedryfstelsel\n"
-"om te laai sodra u die masjien aanskakel.\n"
-"\n"
-" * indien 'n grub of LILO selflaai-sektor teenwoordig is, sal dit vervang\n"
-"word.\n"
-"\n"
-"Indien DrakX nie self kan besluit nie, sal u gevra word om 'n ligging vir\n"
-"die herlaaistelsel te voorsien."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "Voorsiener DNS 2 (opsioneel)"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "Herlaaitoestel"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Watter partisie se grootte wil u verander?"
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Nie genoeg ruilarea om die installasie te voltooi. Voeg asb. by."
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr "Verenigde State se Kliener Omliggende Eilande"
+#: ../../install_steps_interactive.pm_.c:479
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Soek vir beskikbare pakkette"
-#: ../../lang.pm:1
-#, c-format
-msgid "Djibouti"
-msgstr "Djibouti"
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr "Soek vir beskikbare pakkette"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "'n Nutsprogram wat u help met die staaflêers"
+#: ../../install_steps_interactive.pm_.c:483
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geïnstalleer"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected on port %s"
-msgstr "Op poort %s bespeur"
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr "Soek vir pakkette om op te gradeer."
-#: ../../printer/data.pm:1
+#: ../../install_steps_interactive.pm_.c:505
#, c-format
-msgid "LPD"
-msgstr "LPD"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
+msgstr ""
+"U stelsel het nie genoeg plek vir 'n installasie of opgradering nie (%d > %d)"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Videokaart: %s\n"
+#: ../../install_steps_interactive.pm_.c:541
+msgid ""
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
+msgstr ""
+"Kies asb. die laai of stoor pakketkeuse op die floppie.\n"
+"Die formaat is dieselfde as outoinstallasie-genereerde floppies."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Maak _Verstel"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Load from floppy"
+msgstr "Laai vanaf floppie"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
-msgstr "Aanvaar icmp-ego's"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr "Stoor op floppie"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Loading from floppy"
+msgstr "Oplaai vanaf floppie"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Reeks (seriaal) met Wielletjie-emulasie"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Package selection"
+msgstr "Pakketkeuse"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "Ekstensiepartisie word nie op hierdie platform ondersteun nie"
+#: ../../install_steps_interactive.pm_.c:552
+msgid "Insert a floppy containing package selection"
+msgstr "Sit 'n floppie met die pakketkeuse in aandrywer "
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Splash selection"
-msgstr "Splatskerm-keuse"
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
+msgstr "Geselekteerde grootte is groter as beskikbare spasie."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "ISDN Konfigurasie"
+#: ../../install_steps_interactive.pm_.c:649
+#, fuzzy
+msgid "Type of install"
+msgstr "Kies pakket om te installeer"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "high"
-msgstr "hoog"
+#: ../../install_steps_interactive.pm_.c:650
+msgid ""
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Internetkonneksiedeling"
+#: ../../install_steps_interactive.pm_.c:653
+#, fuzzy
+msgid "With X"
+msgstr "Wag"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Choose file"
-msgstr "Kies lêer"
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Summary: "
-msgstr "Opsomming: "
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
-#: ../../network/shorewall.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:741
msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
+"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 ""
-"Waarskuwing! 'n Bestaande vuurmuurkonfigurasie is bespeur. U sal dalk na die "
-"tyd self regstellings moet aanbring."
+"Indien u oor al die gelyste CD's beskik, kliek OK.\n"
+"Indien u oor geen van die gelyste CD's beskik nie, kliek Kanselleer.\n"
+"Indien u net oor sekere CDs beskik, deselekteer die ander en kliek OK."
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:746
#, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Drukwerk/Fotokaart Toegang op \"%s\""
+msgid "Cd-Rom labeled \"%s\""
+msgstr "CDROM getiteld \"%s\""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
-msgstr "Daaglikse sekuriteits-toets"
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr "Berei installasie voor"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:776
#, c-format
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"Installing package %s\n"
+"%d%%"
msgstr ""
-"Wil u drukwerk toelaat op bogenoemde drukkers, of op drukkers in u plaaslike "
-"netwerk?\n"
+"Installeer nou pakket %s\n"
+"%d%%"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer default settings"
-msgstr "Verstek verstellings van drukker"
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
+msgstr "Postinstallasiekonfigurasie"
-#: ../../mouse.pm:1
+#: ../../install_steps_interactive.pm_.c:828
#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Generiese PS2 wielmuis"
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm_.c:834
#, c-format
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "Sit asb. die module-opdateringsfloppie in aandrywer %s"
+
+#: ../../install_steps_interactive.pm_.c:861
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)"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates ?"
msgstr ""
-"die WP-flaggie in die CD0 -register van die verwerker, forseer beskerming "
-"teen die skryf na geheue-bladsye. Dit vehoed dat die kernel ongehoorde "
-"toegang na die gebruiker-geheue kry (maw. dit beskerm teen goggas (bugs))"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Verwyder ou drukker \"%s\" ...."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Select a device !"
-msgstr "Kies 'n toestel !"
+#: ../../install_steps_interactive.pm_.c:876
+#, fuzzy
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgstr "Spieël word gekontak vir die lys van pakkette"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected server"
-msgstr "Verwyder gekose bediener"
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
+msgstr "Kies 'n spieël waar die pakkette verkry kan word"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using dhcp) usb"
-msgstr "Sagem (gebruik dhcp) usb"
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Spieël word gekontak vir die lys van pakkette"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Southern Territories"
-msgstr "French Southern Territories"
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr "Wat is u tydsone?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "die verwerker se vervaardiger"
+#: ../../install_steps_interactive.pm_.c:923
+msgid "Hardware clock set to GMT"
+msgstr "Hardewareklok gestel vir GMT"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
-" \thelps in this respect by adding or removing system users from this "
-"file."
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Outotydsinkronisasie met NTP"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr "Alle data om hierdie partisie moet gerugsteun word."
+#: ../../install_steps_interactive.pm_.c:931
+msgid "NTP Server"
+msgstr "NTP-bediener"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "Installeer pakket %s"
+#
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
+msgstr "Verwyder CUPS-bediener"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr "Bekyk die toestel en konfigureer HPOJ ..."
+#: ../../install_steps_interactive.pm_.c:966
+msgid "No printer"
+msgstr "Geen drukker"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Om meer partisies te verkry, verwyder asb. een om 'n ektensiepartisiete kan "
-"skep"
+#: ../../install_steps_interactive.pm_.c:982
+#, fuzzy
+msgid "Do you have an ISA sound card?"
+msgstr "Beskik u oor nog?"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-"U drukker is so opgestel dat dit toegang aan die fotokaart-toestelle op u "
-"rekenaar verleen. U kan u fotokaarte gebruik deur die grafiese \"MtoolsFM\" "
-"program. (Menu: \"Applications\" -> \"File tools\" -> \"MTools File Manager"
-"\"). U kan ook vanaf die instruksielyn \"mtools\" intik. (sien \"man mtools"
-"\"). U sal die kaart se lêerstelsel onder die letter \"p:\" vind. Indien u "
-"meer as een HP-drukker, met fotokaarte het sal hulle daarop volg. In "
-"\"MtoolsFM\" kan u tussen letters skakel in die regter-boonste hoek."
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "Kies pakkette om te installeer"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "Alle bestaande partisies en data sal uitgewis word op skyf %s"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-"U stelsel het nie genoeg plek vir 'n installasie of opgradering nie (%d > %d)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Elke drukker benodig naam (bv. lp). Die Beskrywing- en Liggingvelde is "
-"opsioneel. Hulle dien as inligting vir gebruikers."
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
+msgstr "Opsomming"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"\"%s\": deur op die \"%s\" knoppie te klik, sal u toegang tot die 'printer\n"
-"configuration wizard' kry. Gaan gerus die ooreenstemde hoofstuk in die\n"
-"\"Starter Guide\" na vir meer inligting. Dit stem baie ooreen met die een."
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
+msgstr "Muis"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr "Bhutan"
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
+msgstr "Tydsone"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "Netwerkkoppelvlak"
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "Drukker"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Probleme met die opbreek van die Internerkonneksie."
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
+msgstr "ISDN-kaart"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
-msgstr "Drukkerdata word gelees..."
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
+msgstr "Klankkaart"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "Koreaanse sleutelbord"
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
+msgstr "TV-kaaer"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Not connected"
-msgstr "Nie gekonnekteer"
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
+msgstr "KDAP"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "Internetkonneksie-konfigurasie"
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+msgid "NIS"
+msgstr "NIS"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
-msgstr "Grieks"
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS-domein"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts and Nevis"
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+msgid "Local files"
+msgstr "Plaaslike lêers"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Generiese 3-knop Muis met Wielletjie-emulasie"
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr "Kies 'root' se wagwoord"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
-msgstr "Laat OF-herlaai toe?"
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr "Geen wagwoord"
-#: ../../fsedit.pm:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "U kan nie JFS vir partisies kleiner as 16MB gebruik nie"
+msgid "This password is too short (it must be at least %d characters long)"
+msgstr ""
+"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Vee u RW-media uit (1e Sessie)"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "Magtiging"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Monitor VertVerfris: %s\n"
+#: ../../install_steps_interactive.pm_.c:1088
+msgid "Authentication LDAP"
+msgstr "LDAP-magtiging"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "Hegpunt"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
+msgstr "LDAP Basis-dn"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"'n Fout het voorgekom:\n"
-"%s\n"
-"Probeer om van u parameters te verander"
+#: ../../install_steps_interactive.pm_.c:1090
+msgid "LDAP Server"
+msgstr "LDAP-bediener"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "TCP/IP rekenaarnaam \"%s\", poort %s"
+#: ../../install_steps_interactive.pm_.c:1096
+msgid "Authentication NIS"
+msgstr "NIS-magtiging"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "User :"
-msgstr "Gebruik:"
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "NIS-domein"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore system"
-msgstr "Herstel stelsel"
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr "NIS-bediener"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1104
msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
+"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 ""
-"Hierdie masjiene behoort die plaaslik-gekoppelde skandeerder(s) beskikbaar "
-"te stel:"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
-msgstr "Die DHCP ip om mee te eindig"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Another one"
-msgstr "Nog een"
+#: ../../install_steps_interactive.pm_.c:1106
+#, fuzzy
+msgid "Authentication Windows Domain"
+msgstr "LDAP-magtiging"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
+#: ../../install_steps_interactive.pm_.c:1108
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Domeinnaam"
-#: ../../lang.pm:1
-#, c-format
-msgid "Colombia"
-msgstr "Colombië"
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1144
msgid ""
-"Current configuration of `%s':\n"
+"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"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
msgstr ""
-"Huidige konfigurasie van '%s':\n"
+"'n Spesiale herlaaiskyf voorsien ;n metode waarby u Linux kan laai sonder\n"
+"die gebruik van 'n normale herlaaistelsel. Dit is veral bruikbaar wanneer\n"
+"u nie SILO op u stelsel wil installeer nie, 'n ander bedryfstelsel SILO\n"
+"verwyder of SILO nie met u stelsel werk nie. Hierdie herlaaiskyf kan ook\n"
+"met die Mandrake reddingsbeeld gebruik word, wat dit makliker maak om van\n"
+"ernstige stelselfalings te herstel.\n"
"\n"
-"Netwerk: %s\n"
-"IP-adres: %s\n"
-"IP attribution: %s\n"
-"Drywer: %s"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n Play"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr "Hereniging"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "Detail"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Vir sekuriteitsredes, word u nou gediskonnekteer."
+"Indien u 'n herlaaiskyf wil maak,\n"
+"plaas 'n skyf in die aandrywer en druk \"OK\"."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Synchronization tool"
-msgstr "Sinkronisasie-nutsprogram"
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr "Eerste sagteskyfaandrywer"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking your system..."
-msgstr "Deursoek u rekenaar..."
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "Tweede sagteskyfaandrywer"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print"
-msgstr "Druk"
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "Mis hierdie stap"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:1167
#, c-format
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+"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"
msgstr ""
-"Plaas band met volume-naam %s\n"
-"in die aandrywer %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "Mongolië"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
-msgstr "Geheg\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS"
-msgstr "Konfigureer CUPS"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Interface"
-msgstr "Grafiese koppelvlak"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Users"
-msgstr "Herstel Gebruikers"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Enkripsie-sleutel vir %s"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to recover your system?"
-msgstr "Wil u die stelsel herstel?"
+"'n Spesiale herlaaiskyf voorsien ;n metode waarby u Linux kan laai sonder\n"
+"die gebruik van 'n normale herlaaistelsel. Dit is veral bruikbaar wanneer\n"
+"u nie LILO (of Grub) op u stelsel wil installeer nie, 'n ander bedryfstelsel "
+"LILO\n"
+"verwyder of LILO nie met u stelsel werk nie. Hierdie herlaaiskyf kan ook\n"
+"met die Mandrake reddingsbeeld gebruik word, wat dit makliker maak om van\n"
+"ernstige stelselfalings te herstel. Wil u 'n herlaaiskyf maak?\n"
+"%s"
-#: ../../services.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1173
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."
+"\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)."
msgstr ""
-"Portmapper bestuur RPC-konneksies wat deur protokolle soos NFS en NIS\n"
-"gebruik word. Portmap moet loop op rekenaars wat as bedieners vir hierdie\n"
-"protokolle, en ander protokolle wat die RPC meganisme gebruik, dien."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detected hardware"
-msgstr "Bespeurde hardeware"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr "Mauritius"
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "Jammer, geen sagteskyfaandrywer beskikbaar nie"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
-msgstr "Myanmar (Burmese)"
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr "Kies die sagteskyfaandrywer wat u wil gebruik"
-#: ../../fs.pm:1
-#, c-format
-msgid "Enabling swap partition %s"
-msgstr "Aktiveer 'swap'-partisie %s"
+#: ../../install_steps_interactive.pm_.c:1189
+#, fuzzy, c-format
+msgid "Insert a floppy in %s"
+msgstr "Sit 'n skyf in aandrywer %s"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"Daar is geen FAT partisies om as teruglus (nie genoeg spasie nie) te gebruik "
-"nie"
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr "Herlaaiskyf word geskryf"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr "Armenies (oud)"
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr "Herlaaistelsel word voorberei"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1210
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."
+"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 to boot your machine"
msgstr ""
-"A drukker met die naam \"%s\" bestaan reeds onder %s.\n"
-"Klik op \"Oordra\" om dit te oorskryf.\n"
-"U kan ook 'n nuwe naam intik of hierdie drukker oorslaan."
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
+msgstr "Wil u aboot gebruik?"
+
+#: ../../install_steps_interactive.pm_.c:1219
msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
-"Kry oplossings vir u probleme deur van MandrakeSoft se ondersteuning gebruik "
-"te maak."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", rekenaarnaam \"%s\", poort %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Monaco"
-msgstr "Monaco"
+"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
+"word die eerste partisie vernietig?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Partisionering het misluk: %s"
+#: ../../install_steps_interactive.pm_.c:1226
+msgid "Installing bootloader"
+msgstr "Herlaaistelselinstallasie"
-#: ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formatering ban %s het gefaal"
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Installasie van herlaaiprogram het gefaal a.g.v. hierdie fout: "
-#: ../../standalone/drakxtv:1
+#: ../../install_steps_interactive.pm_.c:1240
#, c-format
-msgid "Canada (cable)"
-msgstr "Kanada (kabel)"
+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 ""
-#: ../../standalone/drakfloppy:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "Floppy creation completed"
-msgstr "Skep van disket is voltooi"
+msgid "Insert a blank floppy in drive %s"
+msgstr "Sit 'n leë floppie in aandrywer %s"
-#: ../../help.pm:1
-#, c-format
-msgid "Upgrade"
-msgstr "Opgradeer"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
+msgstr "Outoinstallasieskyf word geskep."
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
-msgstr "Werkstasie"
+#: ../../install_steps_interactive.pm_.c:1289
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Bepaalde stappe is nie afgehandel nie.\n"
+"\n"
+"Wil u werklik nou aborteer?"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:1300
#, c-format
msgid ""
-"Installing package %s\n"
-"%d%%"
+"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 ""
-"Installeer nou pakket %s\n"
-"%d%%"
+"Geluk, installasie is afgehandel.\n"
+"Verwyder die herlaaimedium en druk 'enter' om te herlaai.\n"
+"\n"
+"\n"
+"Vir lapinligting oor hierdie vrystelling vanMandrake Linux,\n"
+"bekyk die errata beskikbaar op\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
+"hoofstuk in die Offisiële Liux-Mandrake Gebruikersgids."
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
-msgstr "Kyrgyzstan"
+#: ../../install_steps_interactive.pm_.c:1313
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "Multi-funksionele toestel op USB"
+#: ../../install_steps_interactive.pm_.c:1318
+msgid "Generate auto install floppy"
+msgstr "Skep outoinstallasieskyf"
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1320
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"
+"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 also proceed without an USB key - you'll still be\n"
-"able to use Mandrake Move as a normal live Mandrake\n"
-"Operating System."
+"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "With basic documentation"
-msgstr "Met basiese dokumentasie"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
+msgstr "Outomaties"
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr "Anacron is skeduleerder vir periodiese instruksies."
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Replay"
+msgstr "Herspeel"
+
+#: ../../install_steps_interactive.pm_.c:1328
+msgid "Save packages selection"
+msgstr "Stoor pakketseleksie"
-#: ../../install_interactive.pm:1
+#: ../../install_steps_newt.pm_.c:20
#, c-format
+msgid "Mandrake Linux Installation %s"
+msgstr "Mandrake Linux Installasie %s"
+
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
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 `/'"
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-"U moet 'n wortelpartisie definieer.\n"
-"Skep 'n partisie of kliek op 'n bestaande een.\n"
-"Kies dan Hegpunt en stel dit dan '/'."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "Westelike Sahara"
+" <Tab>/<Alt-Tab> tussen elemente | <Space> selekteer | <F12> volgende skerm "
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Instaanbediener moet begin met http://..."
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
+msgstr "kdesu is weg"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr "Suid-Afrika"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Skop band uit na die rugsteun"
+#: ../../interactive.pm_.c:152
+msgid "Choose a file"
+msgstr "Kies 'n lêer"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot Floppy/ISO"
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
+msgstr "Gevorderd"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Verander drukkerkonfigurasie"
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
-msgstr "Kies 'n partisie"
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
+msgstr "<- Vorige"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Edit current rule"
-msgstr "Redigeer die huidige reël"
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+#, fuzzy
+msgid "Next"
+msgstr "Teks"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
-msgstr "%s"
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr "Swak keuse, probeer weer\n"
-#
-#: ../../mouse.pm:1
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "Please test the mouse"
-msgstr "Toets asb. die muis"
+msgid "Your choice? (default %s) "
+msgstr "U keuse? (verstek %s) "
-#: ../../fs.pm:1
+#: ../../interactive/stdio.pm_.c:54
#, 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)."
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-"Moet nie 'inode'-toegangstye op hierdie lêerstelsel opdateer nie\n"
-"(bv. maak die toegang na die nuus-spoel vinniger, wat weer die\n"
-"nuus-bediener vinniger maak)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3-knoppies met wielletjie-emulasie"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Sticky-bit"
-msgstr "Sticky-bit"
+#: ../../interactive/stdio.pm_.c:70
+#, fuzzy, c-format
+msgid "Your choice? (0/1, default `%s') "
+msgstr "U keuse? (verstek %s) "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other Media"
-msgstr "Ander Media"
+#: ../../interactive/stdio.pm_.c:95
+#, fuzzy, c-format
+msgid "Button `%s': %s"
+msgstr "Opsies: %s"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
+#: ../../interactive/stdio.pm_.c:96
+#, fuzzy
+msgid "Do you want to click on this button?"
+msgstr "Wil u aboot gebruik?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files"
-msgstr "Rugsteun die stelsel-lêers"
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Sector"
-msgstr "Sektor"
+#: ../../interactive/stdio.pm_.c:105
+#, fuzzy, c-format
+msgid "Your choice? (default `%s'%s) "
+msgstr "U keuse? (verstek %s) "
-#: ../../lang.pm:1
+#: ../../interactive/stdio.pm_.c:123
#, c-format
-msgid "Qatar"
-msgstr "Qatar"
+msgid "=> There are many things to choose from (%s).\n"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Base dn"
-msgstr "LDAP Basis-dn"
+#: ../../interactive/stdio.pm_.c:126
+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 ""
-#: ../../install_steps_gtk.pm:1
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
-"You can't select this package as there is not enough space left to install it"
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
-"U kan nie hierdie pakket selekteer nie, omdat daar nie meer spasie "
-"beskikbaar is nie"
-#: ../../help.pm:1
-#, c-format
-msgid "generate auto-install floppy"
-msgstr "skep outo-installasieskyf"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
+msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr "Belmetode"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "Tseggies (QWERTZ)"
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr "Lêerdeling"
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "Duits"
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "Maak /tmp skoon met elke herlaai"
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Dvorak"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malawi"
-msgstr "Malawië"
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "Spaans"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: false"
-msgstr "plaaslike konfigurasie: onwaar"
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "Finnies"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "System settings"
-msgstr "Stelsel verstellings"
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "Frans"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Kies is u tipe muistoestel."
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "Norweegs"
-#: ../../services.pm:1
-#, c-format
-msgid "running"
-msgstr "aktief"
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "Pools"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "class of hardware device"
-msgstr "hardeware-toestel se klas"
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "Russies"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-"Hierdie is die rekenaars en netwerke waarop die plaaslik-gekoppelde drukker"
-"(s) beskikbaar behoort te wees."
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
+msgstr "Sweeds"
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "Verenigde Koninkryk"
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "VK sleutelbord"
-#: ../../lang.pm:1
-#, c-format
-msgid "Indonesia"
-msgstr "Indonesië"
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "VSA sleutelbord"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "verstek"
+#: ../../keyboard.pm_.c:167
+msgid "Albanian"
+msgstr "Albanies"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "France [SECAM]"
-msgstr "Frankryk [SECAM]"
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
+msgstr "Armenies (oud)"
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "beperk"
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
+msgstr "Armenies (tikmasjien)"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "must have"
-msgstr "benodig"
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
+msgstr "Armenies (Foneties)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS ondersteun nie Novell-bedieners se drukkers nie, ook nie die stuur van "
-"data in 'n 'free-formed command' styl nie.\n"
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
+msgstr "Azerbaidjani (latyns)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Senegal"
-msgstr "Senekal"
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "Belgies"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Command line"
-msgstr "Instruksielyn"
+#: ../../keyboard.pm_.c:178
+#, fuzzy
+msgid "Bengali"
+msgstr "Aktiveer"
-#: ../advertising/08-store.pl:1
-#, 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:"
-msgstr ""
-"Ons volledige reeks Linux produkte, asook spesiale aanbiedinge en ander "
-"benodigdhede is by ons e-winkel beskikbaar:"
+#: ../../keyboard.pm_.c:179
+#, fuzzy
+msgid "Bulgarian (phonetic)"
+msgstr "Armenies (Foneties)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "March"
-msgstr "Maart"
+#: ../../keyboard.pm_.c:180
+#, fuzzy
+msgid "Bulgarian (BDS)"
+msgstr "Bulgaars"
-#: ../../any.pm:1
-#, c-format
-msgid "access to administrative files"
-msgstr "toegang tot administratiewe-lêers"
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
+msgstr "Brasiliaans (ABNT-2)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
-msgstr ""
-"Fout met stuur van e-pos.\n"
-" U verslag is nie gepos nie.\n"
-" Konfigureer asseblief u e-pos"
+#: ../../keyboard.pm_.c:184
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estoniaans"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Do not allow set-user-identifier or set-group-identifier\n"
-"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
-"have suidperl(1) installed.)"
-msgstr ""
-"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.)"
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
+msgstr "Belarussies"
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
-msgstr "Montserrat"
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "Switsers (Duitse uitleg)"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Outomatiese-afhanklikhede"
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "Switsers (Franse uitleg)"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "Ruilarea"
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "Tseggies (QWERTY)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom settings"
-msgstr "Aangepaste verstellings"
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr "Duits (geen dooie sleutels)"
-#: ../../../move/move.pm:1
-#, 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."
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Other"
-msgstr "Herstel Ander"
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "Deens"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "TV-kaart"
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Dvorak (VSA)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Norweegs)"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_Konfigureer CUPS"
+#: ../../keyboard.pm_.c:196
+#, fuzzy
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (VSA)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
-msgstr ", "
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "Estoniaans"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
-msgstr "Dien 'lspci' in"
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Georgies (Russiese uitleg)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Verwyder gekose rekenaar/netwerk"
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Georgies (Latynse uitleg)"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix is 'n e-posoordragagent (MTA). Dit is die program wat e-pos\n"
-"van een bediener na 'n ander oordra."
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "Grieks"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "Uzbek (Kirillies)"
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
+msgstr ""
-#: ../../keyboard.pm:1
-#, 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)"
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
msgstr ""
-"Hier kan u die sleutel of sleutelkombinasie kies wat\n"
-"die sal help om tussen verskillende sleutelbord-uitlegte te wissel.\n"
-"(bv: latyns en iets anders)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Warm-inprop Netwerk"
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "Hongaars"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr "indien ja gekies is, skryf toetsresultate na tty."
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "Kroaties"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From CD"
-msgstr "Herstel vanaf CD"
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
+msgstr "Israelies"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"U gaan nou u rekenaar so opstel dat die die Internetkonneksie deel.\n"
-"As dit opgestel is, kan ander rekenaars op die LAN gebruik maak van hierdie\n"
-"rekenaar se konneksie na die Internet.\n"
-"\n"
-"Maak tog seker dat u alreeds die Netwerk/Internet toegang opgestel het deur\n"
-"'drakconnect' te gebruik, alvorens u verder gaan.\n"
-"\n"
-"Let Wel: U benodig 'n Netwerkkaart om die LAN gedeelte te maak werk."
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr "Israelies (Foneties)"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr "Kies asb. die netwerkkoppelvlak wat u wil gebruik vir die Internet."
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr "Iranies"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Foto-geheuekaart toegang op u HP multi-funksionele toestel"
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr "Yslandies"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
-msgstr ""
-"Verbeter u rekenaar se werkverrigting deur gebruik te maak van die "
-"oplossings wat Mandrake Linux se vennote u bied."
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "Italiaans"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
-msgstr "Programeeerders: "
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Internetkonneksiedeling is gedeaktiveer"
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
+msgstr "Japanees 106 sleutels"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr ""
-"indien ja gekies is, ondersoek die toetssom (checksum) van suid/sgid lêers"
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
+msgstr "Koreaanse sleutelbord"
-#: ../../keyboard.pm:1
-#, c-format
+#: ../../keyboard.pm_.c:218
msgid "Latin American"
msgstr "Latyns-Amerikaans"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Japanese teks-drukmodus"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Old device file"
-msgstr "Ou 'device file'"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "Info:"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Knoppie: %s: %s"
-
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Wag asb."
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
+#: ../../keyboard.pm_.c:219
+#, fuzzy
+msgid "Laotian"
+msgstr "Latvies"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "None"
-msgstr "Geen"
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
+msgstr "Lituanies AZERTY (oud)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Die voorsiende IP is nie reg nie.\n"
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
+msgstr "Lituanies AZERTY (nuut)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Maak tog seker dat 'cron' deel is van u dienste."
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Lituanies \"nommerry\" QWERTY"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
-msgstr "Ethernetkaart"
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Lituanies \"foneties\" QWERTY"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete selected printer"
-msgstr "Verwyder gekose drukker"
+#: ../../keyboard.pm_.c:225
+msgid "Latvian"
+msgstr "Latvies"
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "Info"
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "Installasie"
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
+msgstr "Masedonies"
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
msgstr ""
-"Klik op \"%s\" sou u al die data an al die partisies wat tans op hierdie\n"
-"hardeskyf is wil uitwis. Wees versigtig! Na u \"%s\" geklik het, sal u nie\n"
-"weer enige van die data of partisies kan red nie, dit sluit data op\n"
-"Windows-partisies in.\n"
-"\n"
-"Klik op \"%s\" indien u hierdie aksie wil staak, sonder om data te verloor."
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "Verlaat installasie"
+#: ../../keyboard.pm_.c:229
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Serwies (Kirillies)"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
msgstr ""
-#: ../../standalone/drakgw:1
-#, 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)."
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
msgstr ""
-"Alles is nou opgestel.\n"
-"U kan nou die Internet-konneksie met ander rekenaars op u LAN deel, deur "
-"outomatiese netwerk konfigurasie te gebruik (DHCP)."
-#
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Eksterne CUPS-bediener"
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
+msgstr "Nederlands"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - Muis"
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
+msgstr "Pools (QWERTY uitleg)"
-#
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Daar is net een konfigureerde netwerkkaart op u stelsel.\n"
-"\n"
-"%s\n"
-"\n"
-"Ek gaan nou u LAN met daardie kaart opstel."
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
+msgstr "Pools (QWERTZ uitleg)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
-msgstr "Dien 'cpuinfo' in"
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
+msgstr "Portugees"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Minimal install"
-msgstr "Minimale installasie"
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr "Kanadees (Quebec)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "Ethiopië"
+#: ../../keyboard.pm_.c:239
+msgid "Romanian (qwertz)"
+msgstr "Romanies (QWERTZ)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
-msgstr "JA"
+#: ../../keyboard.pm_.c:240
+msgid "Romanian (qwerty)"
+msgstr "Romanies (QWERTY)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
-msgstr "Aktiveer \"crontab en \"at\" vir gebruikers"
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "Russue (Yawerty)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr "Devanagari"
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
+msgstr "Sloveens"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "Slovaaks (QWERTZ)"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Totale grootte: %d / %d MB"
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "Slovaaks (QWERTY)"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "disabled"
-msgstr "ge-deaktiveer"
+#: ../../keyboard.pm_.c:248
+msgid "Serbian (cyrillic)"
+msgstr "Serwies (Kirillies)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Search for new scanners"
-msgstr "Soek na nuwe skandeerders"
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Disabling servers..."
-msgstr "Bedieners word gedeaktiveer..."
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "%s installasie het gefaal a.g.v. hierdie fout: "
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr "Thai sleutelbord"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr "Kan nie 'mkinitrd -f /boot/initrd -%s.img %s' loods nie."
+#: ../../keyboard.pm_.c:254
+msgid "Tajik keyboard"
+msgstr "Tajik sleutelbord"
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"U het die volgende bediener(s) gekies: %s\n"
-"\n"
-"\n"
-"Hierdie bedieners is aktief by verstek. Sover bekend, het hulle nie enige\n"
-"sekuriteits-gevare nie. Daar mag wel mettertyd nuwe gevare gevind word.\n"
-"In so geval, moet u tot verseker dat u hulle so gou moontlik updateer.\n"
-"\n"
-"\n"
-"Verlang u nog steeds hierdie dienste?\n"
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Turks (tradisionele \"F\" model)"
-#
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Netwerkdrukker (TCP/sok)"
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Turks (moderne \"Q\" modem)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup User files..."
-msgstr "Rugsteun Gebruiker-lêers..."
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr "Ukranies"
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "Installeer stelsel"
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "VSA internasionale sleutelbord"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Eerste DNS-bediener (opsioneel)"
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Viëtnamees \"nommerry\" QWERTY"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-"Alternatiewelik, kan u 'n toestelnaam/lêernaam voorsien op die toevoerlyn"
+#: ../../keyboard.pm_.c:263
+msgid "Yugoslavian (latin)"
+msgstr "Jugoslaavs (latynse uitleg)"
-#: ../../security/help.pm:1
-#, 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."
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
msgstr ""
-"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."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "Russies (Foneties)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Config..."
-msgstr "dhcpd Konfigurasie ..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "LILO/grub installasie"
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "Israelies"
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Drukker \"%s\" op bediener \"%s\""
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Disket kan nou verwyder word"
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Truly minimal install"
-msgstr "Werklike minimale installasie"
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "Denemarke"
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "Partisie word verskuif..."
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "(This) DHCP Server IP"
-msgstr "(Hierdie) DHCP-bediener se IP"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
+msgstr ""
-#: ../../Xconfig/test.pm:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid "Test of the configuration"
-msgstr "Toets konfigurasie"
+msgid "Circular mounts %s\n"
+msgstr "Sirkulêre heg %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing %s ..."
-msgstr "Installeer %s ..."
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
+msgstr "Verwyder eers die logiese volumes\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../modules.pm_.c:290
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 ""
-"Inidein u gespesifiseer het dat u individuele pakkette wil kies,\n"
-"sal daar 'n boom-struktuur aan u vertoon word met al die pakkette\n"
-"wat opgedeel is in groepe en sub-groepe. Soos u die deur hulle rits\n"
-"kan u hele groepe of sub-groepe kies, of self individuele pakkette.\n"
-"\n"
-"Sodra u 'n pakket kies, sal daar 'n beskrywing aan die regterkant verskyn\n"
-"wat aandui waarvoor die pakket gebruik word.\n"
-"\n"
-"Indien u 'n diensprogram kies, of dit nou deel is van 'n groepe pakkette of\n"
-"'n enkel een, sal u gevra word om die installasie daarvan te bevestig.\n"
-"Mandrake Linux sal by verstek alle bediener-programme afskop nadat u die\n"
-"rekenaar aangeskakel het. Hierdie bediener-programme is verpak sonder\n"
-"enige probleme bekend. Dit kon intussen verander het, nadat sekuriteits-"
-"gate\n"
-"gevind is. Indien u nie weet wat 'n diens veronderstel is om te doen nie, "
-"of\n"
-"waarom dit geïnstalleer word nie, klik op \"%s\". Deur op \"%s\" te klik "
-"sal\n"
-"die bediener-program geïnstalleer word en afskop sodra die Linux laai!!\n"
-"\n"
-"Die \"%s\"-opsie VERSPER die waarskuwings-dialoog wat verskyn\n"
-"sodra die installeerder ander pakkette moet kies a.g.v. afhanklikhede\n"
-"Afhanklikhede werk as volg: Sommige pakkette moet ander programme\n"
-"installeer om korrek te funksioneer, maar hierdie programme maak soms deel\n"
-"uit van 'n ander pakket, dus sal die installeer-program daardie pakkette\n"
-"ook installeer.\n"
-"\n"
-"Die klein disket-ikoon aan die lys se onderkant laat u toe om 'n lys van\n"
-"pakkette van 'n vorige installeasie te laai. Dit is handig indien u 'n\n"
-"aantal masjiene identies wil konfigureer. As u hierop klik, sal u gevra\n"
-"word om die disket te voorsien wat aan die einde van 'n vorige\n"
-"installasie geskep is. Raadpleeg die tweede wenk van die laaste stap\n"
-"oor hoe mens so disket skep."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr "Kies 'n enkripsie-sleutel vir u lêerstelsel"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
-msgstr "Botswana"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Andorra"
-msgstr "Andorra"
+#: ../../modules/parameters.pm_.c:18
+#, fuzzy
+msgid "modinfo is not available"
+msgstr "Geen sagteskyaandrywer beskikbaar nie"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "(default value: %s)"
-msgstr "(verstek waarde: %s)"
+#: ../../modules/parameters.pm_.c:50
+#, fuzzy
+msgid "a number"
+msgstr "Telefoonnommer"
-#: ../../security/help.pm:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
+msgid "%d comma separated numbers"
msgstr ""
-"Verstel wagwoord-veroudering no \"max\" dae en versuim om\n"
-"te verander na \"inactive\"."
-#: ../../printer/printerdrake.pm:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Alternatiewe toetsbladsy (Lettergrootte)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-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"
+msgid "%d comma separated strings"
msgstr ""
-"Konfigureer die DHCP-bediener.\n"
-"\n"
-"Hier kan u die verskillende opsies kies vir die DHCP-bediener.\n"
-"Sou 'n opsie onbekend wees aan u, laat staan dit bloot net.\n"
-"\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Choose an X server"
-msgstr "Kies 'n X-bediener"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Ruilpartisiegrootte in MB: "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No changes to backup!"
-msgstr "Geen veranderinge, geen rugsteun!"
+#: ../../modules/parameters.pm_.c:54
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formateer partisies"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "Geformateer\n"
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - Muis"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Type of install"
-msgstr "Tipe installasie"
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Drukker \"%s\" op SMB/Windows-bediener \"%s\""
+#: ../../mouse.pm_.c:33
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Generiese PS2 wielmuis"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d komma-afgeskeie getalle"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Die 'rusers' protokol laat netwerkgebruikers toe om te bepaal wie\n"
-"aangeteken is op ander samewerkende rekenaars."
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Outomatiese Stappe Konfigurasie"
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "Barbados"
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
-msgstr ""
-"Wil u meer te wete kom oor die Oopbron-gemeenskap? Raak gerus betrokke by "
-"die Oopbron/Vrye-sagteware beweging!"
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Kies asseblief data wat gerugsteun moet word...."
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
+msgstr "1 knop"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
-msgstr ""
-"Probleme met die Konneksie\n"
-"Maak tog seker van u konfigurasie in die 'Mandrake Control Center'."
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "Generiese 2-knop muis"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
-msgstr "reeds ontvang"
+#
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "Wiel"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr ""
-"Aktiveer 'su' slegs vir die 'wheel'-groep se lede OF vir enige gebruiker"
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "seriaal"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
-msgstr "/Lêer/_Nuut"
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "Generiese 3-knop muis"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DNS Server IP"
-msgstr "Die DNS-bediener se IP"
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range End:"
-msgstr "IP-Reeks se Einde:"
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
-msgstr "Hoog"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Voeg 'n nuwe drukker by"
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Logitech CC Reeks (seriaal)"
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr "Geen video"
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
-msgstr "Hierdie veld beskryf die toestel"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "MM Series"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Voeg drukker by Star Office/OpenOffice.org/GIMP"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printers"
-msgstr "Plaaslike Drukkers"
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Muis (seriaal, ou C7 tipe)"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation image directory"
-msgstr "Lêergids vir installasie-beelde"
+#: ../../mouse.pm_.c:68
+msgid "busmouse"
+msgstr "busmuis"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "NIS-bediener"
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "2 knoppies"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Port: %s"
-msgstr "Poort: %s"
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "3 knoppies"
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "Spanje"
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "niks"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
-msgstr "plaaslike konfigurasie: %s"
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "Geen muis"
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "Hierdie genruikerskode bestaan alreeds"
+#
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
+msgstr "Toets asb. die muis"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
-msgstr "Kies 'n lêer"
+#
+#: ../../mouse.pm_.c:491
+msgid "To activate the mouse,"
+msgstr "Om die muis te aktiveer"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr "Pas toe"
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr "BEWEEG DIE WIEL!"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Outospeur beskikbare poorte"
+#: ../../my_gtk.pm_.c:65
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr "San Marino"
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
+msgstr "Finnies"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Internetkonneksiedeling is gesper"
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
+msgstr "Volgende ->"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Belgium"
-msgstr "België"
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "Is dit korrek?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
-msgstr "Koeweit"
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "Info"
-#
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "Kies die vensterbestuurder om te loop:"
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
+msgstr "Maak boom oop"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
-msgstr "Desember"
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
+msgstr "Maak boom toe"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "sub-generasie van cpu"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr "Skakel tussen plat- en groepsortering"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
-msgstr "First Time Wizard"
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "gebruik pppoe"
-#: ../../lang.pm:1
-#, c-format
-msgid "Taiwan"
-msgstr "Taiwan"
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
+msgstr "gebruik pptp"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "Pakistan"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
+msgstr "gebruik dhcp"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "net 'n oomblik, ontleed lêer: %s"
+#: ../../network/adsl.pm_.c:26
+#, fuzzy
+msgid "Alcatel speedtouch usb"
+msgstr "speedtouch USB"
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
msgstr ""
-"'n Fout het plaasgevind en ek weet nie hoe om dit veilig te hanteer\n"
-"nie. Gaan op u eie risiko voort."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Importance: "
-msgstr "Belangrikheid: "
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
+msgstr "Konnekteer aan die internet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:30
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."
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-"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."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Permissions"
-msgstr "Vergunnigs"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Voorsienernaam (bv voorsiener.co.za)"
+"Die mees algemene metode vir ADSL is om pppoe te gebruik.\n"
+"Daar is wel sekere konneksie wat pptp of DHCP gebruik.\n"
+"Indien u nie weet nie, kies 'gebruik pppoe'."
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:166
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'."
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-"U stelsel het min hulpbronne beskikbaar. U mag dalk probleme\n"
-"ondervind met die installering\n"
-"van Mandrake Linux. In so 'n geval probeer eerder die teksinstallasie.\n"
-"Daarvoor moet u\n"
-"'F1' druk wanneer u vanaf die CDROM herlaai en dan 'text' op die\n"
-"instruksielyn intik."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "Gebruik vir die Windows-partisie vir teruglus"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
-msgstr "Armenies (tikmasjien)"
-
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection type: "
-msgstr "Konneksietipe:"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Graphical interface"
-msgstr "Grafiese-koppelvlak"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "Tsjad"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "Indië"
-
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s met 3D-hardwareversnelling"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr "Slovakye"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "Singapoer"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Bediener"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "Kambodja"
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Domeinnaam"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Monitor HoriSink: %s\n"
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Datbasis"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr "Roete"
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "LDAP-bediener"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
-msgstr "NIE GEVIND NIE"
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "geen netwerkkaart gevind nie"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:129
msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"Hier kan u enige instruksie spesifiseer waarna die drukwerk gepyp moet word "
-"instede van dit direk na die drukker te stuur."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:135
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"
+"drakfirewall configurator\n"
"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-"Die drukkerstelsel (%s) sal nie automaties, tydens selflaai, saam met die "
-"ander dienste begin nie.\n"
-"\n"
-"Dit is moontlik versper deur die verandering na 'n hoër sekuriteitsvlak."
-"(sien \"man msec\" vanaf die instruksielyn)\n"
-"\n"
-"Wil u graag dat die drukkerstelsel WEER saam met die ander dienste tydens "
-"selflaai begin?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
msgstr ""
-"Drukker %s\n"
-"Wat wil u aan hierdie drukker verander?"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add host"
-msgstr "Voeg rekenaar by"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:153
msgid ""
-"If you really think that you know which driver is the right one for your "
-"card\n"
-"you can pick one in the above list.\n"
-"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-"Indien u seker is dat u die regte drywer vir u kaart ken\n"
-"kies dan dit uit die lys.\n"
-"\n"
-"Die \"%s\" klankkaart gebruik tans die \"%s\" drywer "
-#: ../../any.pm:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-"Wil u graag dat gebruikers van hulle lêergidse kan deel?\n"
-"Deur dit toe te laat, kan gebruikers bloot op \"Share\" in konqueror en "
-"nautilus klik.\n"
-"\n"
-"\"Aangepaste\" laat toe vir per-gebruiker verstellings.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
msgstr ""
-"Kies asb. die laai of stoor pakketkeuse op die floppie.\n"
-"Die formaat is dieselfde as outoinstallasie-genereerde floppies."
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "No CDROM support"
-msgstr "Ondersteunig vir Radio:"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "China (broadcast)"
-msgstr "China (uitsaai)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use quota for backup files."
-msgstr "Gebruik kwotas vir rugsteun-lêers."
+#: ../../network/drakfirewall.pm_.c:169
+#, fuzzy
+msgid "Other ports"
+msgstr "Toets poorte"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Konfigureer drukker \"%s\" ..."
+#: ../../network/ethernet.pm_.c:37
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
+msgstr ""
+"Watter DCHP-kliënt wil u gebruik?\n"
+"Verstek is dhcp-client"
-#: ../../fs.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:88
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."
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-"Moet nie die uitvoer van programme vanaf die gehegde\n"
-"lêerstelsel toelaat nie. Hierdie opsie kan handig wees indien 'n bediener\n"
-"lêerstelsels het, wie se programme nie op linux uitgevoer kan word nie."
+"Geen ethernetkaart is op die stelsel gevind nie.\n"
+"Ek kan nie hierdie konneksietipe opstel nie."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection"
-msgstr "Internetkonneksie"
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
+msgstr "Kies die netwerkkoppelvlak"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:93
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Laai van module %s het gefaal.\n"
-"Wil u ander parameters probeer?"
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "Kies asb. die netwerkkoppelvlak wat u wil gebruik vir die internet."
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr "Welkom by die Oopbron-wêreld."
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "geen netwerkkaart gevind nie"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnië en Herzegovina"
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "Stel netwerk op"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:201
msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
-msgstr "U benodig 'n ware lêerstelsel (ext2, reiserfs) vir hierdie hegpunt\n"
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"Tik asb die rekenaarnaam in.\n"
+"Sekere DHCP-bedieners benodig die rekenaarnaam.\n"
+"Dit moet 'n volle gekwalifiseerde naam wees,\n"
+"bv. ``myne.mywerk.co.za''."
#
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "U moet 'n rekenaarnaam of 'n IP-adres voorsien\n"
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "Rekenaarnaam"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "Nederlands"
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+msgid "Network Configuration Wizard"
+msgstr "Netwerkkonfigurasie-assistent"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Stuur lêers via FTP"
+#: ../../network/isdn.pm_.c:22
+msgid "External ISDN modem"
+msgstr "Eksterne ISDN-kaart"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
msgstr "Interne ISDN-kaart"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
+msgstr "Watter tipe is u ISDN-konneksie?"
+
+#: ../../network/isdn.pm_.c:45
msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
msgstr ""
-"Daar is geen OSS/ALSA alternatief vir u klankkaart (%s) wat huidiglik \"%s\" "
-"gebruik"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Title"
-msgstr "Titel"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Installeer & omskep die Lettertipes"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
-msgstr "WAARSKUWING"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
-msgstr "Herlaaistelsel-installasie"
+#: ../../network/isdn.pm_.c:54
+msgid "New configuration (isdn-light)"
+msgstr "Nuwe konfigurasie (Ligte ISDN/isdn-light)"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "replay"
-msgstr "herspeel"
+#: ../../network/isdn.pm_.c:54
+msgid "Old configuration (isdn4net)"
+msgstr "Ou konfigurasie (isdn4net)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
-msgstr "%s bespeur"
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "ISDN Konfigurasie"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/isdn.pm_.c:166
msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
-"'Expect' is 'n uitbreiding op die Tcl-skriptaal. Dit kan interaktiewe "
-"sessies, SONDER dat die gebruiker inmeng, meebring."
+"Kies u internetdiensvoorsiener.\n"
+"Indien nie in die lys nie kies Ongelys"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr "Virgin Eilande (VSA)"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol"
+msgstr "Europese protokol"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "Korrupte rugsteunlêer"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol (EDSS1)"
+msgstr "Europese protokol (EDSS1)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Die opstelling van die Internetkonnkesiedeling is alreeds gedoen.\n"
-"Dis tans gedeaktiveer.\n"
-"\n"
-"Wat wil u doen?"
+#
+#: ../../network/isdn.pm_.c:181
+msgid "Protocol for the rest of the world"
+msgstr "Protokol vir die res van die wêreld"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
+#: ../../network/isdn.pm_.c:181
+msgid ""
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
-"Voorsien die IP-adres en poort, van die rekenaar, wie se\n"
-"drukkers u wil gebruik."
+"Protokol vir die res vd wêreld \n"
+" geen D-Kanaal nie (bruikhuurlyne)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Pipe into command"
-msgstr "Pyp drukstuk na program"
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
+msgstr "Watter protokol verlang u?"
-#: ../../install_interactive.pm:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
+msgid "Found \"%s\" interface do you want to use it ?"
msgstr ""
-"Sekere hardeware op u rekenaar benodig geslote drywers.\n"
-"U kan inligting hieroorvind by %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "Haïti"
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
+msgstr "Oor watter tipe kaart beskik u?"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "Toestel word afgetas..."
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
+msgstr "Ek weet nie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"Aangepaste, laat u toe om u eie dag en tyd te spesifiseer. Die ander opsies "
-"gebruik crontab inskrywings in '/etc/crontab'."
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../network/isdn.pm_.c:210
msgid ""
-"Description of the fields:\n"
"\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
-"Beskrywing van die velde:\n"
"\n"
+"Indien u 'n ISA-kaart het, behoort die waardes op die volgende skerm reg te "
+"wees.\n"
+"\n"
+"Indien u 'n PCMCIA kaart het, moet u die IRQ en I/O van u kaart weet.\n"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Basic options"
-msgstr "Basiese opsies"
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "Aborteer"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
-msgstr "die verwerker se naam"
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
+msgstr "Gaan voort"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr "Aanvaar snert IPv4 foutboodskappe"
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
+msgstr "Wat is u ISDN-kaart?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Drukkerdata word verfris..."
+#: ../../network/isdn.pm_.c:239
+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 ""
+"Ek het 'n ISDB PCI-kaart gevind, maar ek ken nie die tipe nie. Kies asb.'n "
+"PCI-kaart op die volgende skerm."
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr "U moet ook %s formatteer"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "Geen ISDN PCI-kaart gevind nie. Kies asb. een op die volgende skerm."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "Wees versigtig: hierdie is 'n gevaarlike operasie"
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "Sit 'n floppie met die pakketkeuse in aandrywer "
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "Opbelopsies"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server: "
-msgstr "Bediener: "
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr "Konneksienaam"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Alerts:"
-msgstr "Sekuriteits-waarskuwings:"
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
+msgstr "Telefoonnommer"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
-msgstr "Swede"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "Aantekenkode"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Gebruik, behalwe vir SSH"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr "CHAP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "Pole"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Other ports"
-msgstr "Ander poorte"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "Skriptipe"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "aantal ontvang-buffers vir nmap se vangs"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "Terminaaltipe"
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid " - detected"
-msgstr "reeds bespeur"
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "Domeinnaam"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr "SMBus-beheerders"
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+msgid "First DNS Server (optional)"
+msgstr "Eerste DNS-bediener (opsioneel)"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Konneksie tydlimiet (in sekondes)"
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+msgid "Second DNS Server (optional)"
+msgstr "Tweede DNS-bediener (opsioneel)"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/modem.pm_.c:95
msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-"Van die vroeër i486DX-100 verwerkers kan nie weer betroubaar terugkeur om te "
-"funksioneer na die \"halt\" instruksie gebruik is nie."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Croatian"
-msgstr "Kroaties"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Use existing partition"
-msgstr "Gebruik bestaande partisies"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Kon nie die spieëlwebplek %s kontak nie"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Help/_Aangaande..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Verwyder gebruiker se lêergidse alvorens begin met die herstel."
-
-#: ../../printer/printerdrake.pm:1
+#: ../../network/modem.pm_.c:97
#, 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?"
+"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
-"U gaan 'n eksterne drukker opstel. Dit benodig netwerktoegang, maar u "
-"netwerk is nog nie opgestel nie. Indien u so voortgaan, sal u nie hierdie "
-"drukker kan gebruik nie. Hoe moet ons te werk gaan?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "CUPS-drukkerkonfigurasie"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr "kon nie enige lettertipes in u gehegte partisies vind nie"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
-msgstr "F00f-gogga"
-
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Domain Name:"
-msgstr "Domeinnaam:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Root umask"
-msgstr "'root' se umask"
-#: ../../any.pm:1
-#, c-format
-msgid "On Floppy"
-msgstr "Op Disket"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reboot by the console user"
-msgstr "Herbegin deur die konsole se gebruiker"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Do nothing"
+msgstr "CUPS word gelaai"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore"
-msgstr "Herstel"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Install rpm"
+msgstr "Installasie"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Server:"
-msgstr "Bediener: "
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Title"
+msgstr "Tabel"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
+#: ../../network/netconnect.pm_.c:29
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-"indien ja gekies is, kyk of netwerk-toestelle in 'promiscuous'-modus is."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Soek vir beskikbare pakkette"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Net 'n oomblik, sekuriteitsvlak word gestel..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
-msgstr "Beginboodskap"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "Reddingspartisielys"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "Ciprus"
+"\n"
+"U kan diskonnekteer or herkonfigureer."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection complete."
-msgstr "Voltooide konneksie."
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr ""
+"\n"
+"U kan u konneksie herkonfigureer."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "Verwyder uit RAID"
+#: ../../network/netconnect.pm_.c:29
+msgid "You are currently connected to internet."
+msgstr "U is tans aan die internet gekonnekteer."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
+#: ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
msgstr ""
-"Hierdie enkripsie-sleutel is te eenvoudig. (moet ten minste %d karakters "
-"bevat.)"
+"\n"
+"U kan aan die internet konnekter of u konneksie herkonfigureer."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Konfigurasie-assistente"
+#: ../../network/netconnect.pm_.c:32
+msgid "You are not currently connected to Internet."
+msgstr "U is nie tans aan die internet gekonnekteer nie."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN konneksie"
+#: ../../network/netconnect.pm_.c:36
+msgid "Connect"
+msgstr "Konnekteer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CD-R / DVD-R"
+#: ../../network/netconnect.pm_.c:37
+msgid "Disconnect"
+msgstr "Diskonnekteer"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
-msgstr "primêre"
+#: ../../network/netconnect.pm_.c:38
+#, fuzzy
+msgid "Configure the connection"
+msgstr "Stel netwerk op"
+
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
+msgstr "Internetkonneksie en konfigurasie"
-#: ../../printer/main.pm:1
+#: ../../network/netconnect.pm_.c:94
#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr "op SMB/Windows-bediener \"%s\", deelarea \"%s\""
+msgid "We are now going to configure the %s connection."
+msgstr "Ons gaan nou die %s konneksie herkonfigureer."
-#: ../../help.pm:1
+#: ../../network/netconnect.pm_.c:103
#, 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"
-"!!"
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press OK to continue."
msgstr ""
-"U kan nou dienste kies wat by herlaaityd moet afskop.\n"
"\n"
-"Wanneer u die muis oor 'n item beweeg, sal 'n klein ballon opspring\n"
-"wat die rol van die diens verduidelik.\n"
"\n"
-"Wees versigtig met hierdie stap. Indien u beplan om dié rekenaar as 'n\n"
-"bediener te gebruik wil u nie dienste afskop wat u nie gaan gebruik nie."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niue"
-msgstr "Niue"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "Mis hierdie stap"
+"\n"
+"Ons gan nou die %s konneksie konfigureer.\n"
+"\n"
+"\n"
+"Drk OK om voort te gaan."
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Aktiveer/Deaktiveer all netwerkkoppelvlakke wat opgestel is om by\n"
-"herlaaityf te begin."
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr "Netwerkkonfigurasie"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/netconnect.pm_.c:133
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)"
+"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 ""
-"die verwerker se frekwensie in MHz ( dit is rofweg hoeveel instruksies "
-"dieverwerker per sekondes kan uitvoer)"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "important"
-msgstr "belangrik"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "Mandrake Linux Printer Management Tool"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
-msgstr "Totale Vordering"
+"Omdat u netwerk installasie doen, is u netwerk aslreeds opgestel.\n"
+"Kliek op OK om hierdee konfigurasie te behou, of op Kanselleer om u Internet "
+"& Netwerkkonneksie te herkonfigureer.\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:157
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"
+"Welcome to The Network Configuration Wizard.\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."
+"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 ""
-"DrakX sal eerstens vir IDE toestelle op die rekenaar soek.\n"
-"Daarna sal dit probeer om vir PCI SCSI-kaarte te kry.\n"
-"Indien DrakX 'n SCSI-kaart bespeur en weet watter drywer\n"
-"om te gebruik sal dit outomaties installeer word.\n"
-"\n"
-"Omrede hierdie proses nie altyd alles opspoor nie, sal u dalk self u\n"
-"hardeware moet spesifiseer.\n"
-"\n"
-"Indien u self 'n drywer moes spesifiseer, sal DrakX u ook vra vir enige\n"
-"spesifieke opsies.\n"
-"U kan egter DrakX toelaat om self die hardeware te ondervra. Dit werk\n"
-"gewoonlik die beste.\n"
+"Welkom by die Netwerkkonfigurasie-assistent\n"
"\n"
-"Lees die installasie inligting hoe om hierdie tipe inligting m.b.v. die\n"
-"Windows-bedryfstelsel te bekom.\n"
-"U kan dit ook vanaf die internet onttrek indien u sulke toegang het."
+"Ons gaan nou u internet/netwerkkonneksie konfigureer.\n"
+"Iniden u nie outobespeuring verlang nie, deselekteer die opsie.\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr "Aruba"
+#: ../../network/netconnect.pm_.c:163
+msgid "Choose the profile to configure"
+msgstr "Kies die profiel om te konfigureer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "Gebruikers"
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
+msgstr "Gebruik outobespeuring"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Herlaaistelsel word voorberei..."
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
+msgstr "Kundige bedryfsvlak"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
+msgstr "Toestel word afgetas..."
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Deurgangspoort (bv. %s)"
+#: ../../network/netconnect.pm_.c:214
+msgid "Normal modem connection"
+msgstr "Normale modemkonneksie"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../network/netconnect.pm_.c:214
#, c-format
-msgid "The passwords do not match"
-msgstr "Die wagwoorde stem nie ooreen nie."
+msgid "detected on port %s"
+msgstr "Op poort %s bespeur"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Voorbeelde van korrekte IPs:\n"
+#: ../../network/netconnect.pm_.c:215
+#, fuzzy
+msgid "Winmodem connection"
+msgstr "Normale modemkonneksie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "Kies asseblief die media vir die rugsteun."
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "detected"
+msgstr "%s bespeur"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Frekwensie (MHz)"
+#: ../../network/netconnect.pm_.c:216
+msgid "ISDN connection"
+msgstr "ISDN konneksie"
-#: ../../install_any.pm:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Om hierdie gestoorde pakketkeuse te gebruik, herlaai die installasie met "
-"\"linux defcfg=floppy\""
+msgid "detected %s"
+msgstr "%s bespeur"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of the processor"
-msgstr "die verwerker se nommer"
+#: ../../network/netconnect.pm_.c:217
+msgid "ADSL connection"
+msgstr "ADSL konneksie"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Hardewareklok gestel vir GMT"
+#: ../../network/netconnect.pm_.c:218
+msgid "Cable connection"
+msgstr "Kabelkonneksie"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "Wil u 'n nuwe konfigurasie begin ?"
+#: ../../network/netconnect.pm_.c:218
+msgid "cable connection detected"
+msgstr "Kabelkonneksie bespeur"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Give a file name"
-msgstr "Voorsien 'n lêernaam"
+#: ../../network/netconnect.pm_.c:219
+msgid "LAN connection"
+msgstr "LAN konneksie"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Kies asseblief die poort waaraan u drukker gekoppel is."
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
+msgstr "ethernet kaart(e) bespeur"
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "Verander CDROM"
+#: ../../network/netconnect.pm_.c:222
+msgid "Choose the connection you want to configure"
+msgstr "Kies die konneksie wat u wil konfigureer"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "Paraguay"
+#: ../../network/netconnect.pm_.c:246
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
+msgstr ""
+"U het meer as een internetkonneksiemetode opgste.\n"
+"Kies die een wat u verlang.\n"
+"\n"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "Konfigurasie is voltooi, wil u hierdie verstellings toepas?"
+#: ../../network/netconnect.pm_.c:247
+msgid "Internet connection"
+msgstr "Internetkonneksie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
+#: ../../network/netconnect.pm_.c:253
+msgid "Do you want to start the connection at boot?"
+msgstr "Wil u die konneksie met herlaaityd aanskakel?"
+
+#: ../../network/netconnect.pm_.c:267
+msgid "Network configuration"
+msgstr "Netwerkkonfigurasie"
+
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
msgstr ""
-"Gebruik Aanwas-/Differensiële-rugsteune (moet nie ou regsteune vervang nie)"
-#: ../../standalone/drakTermServ:1
+#: ../../network/netconnect.pm_.c:272
#, 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:"
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
msgstr ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. drakTermServ helps "
-"create/remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
+"Daar was 'n probleem met die herlaai van die netwerk.\n"
+"\n"
+"%s"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
+#: ../../network/netconnect.pm_.c:282
+msgid ""
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
-"Daar is geen drywer, sover ons weet, beskikbaar vir klankkaart (%s) nie"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "force"
-msgstr "forseer"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Exit"
-msgstr "Verlaat"
+"Geluk, die netwerk en internetkonfigurasie is voltooi.\n"
+"\n"
+"Die kongiurasie gaan op u stelsel toegepas word.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:286
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
-"NEEM KENNIS: Afhangende van die model drukker en die drukkerstelsel wat u "
-"gaan gebruik, kan tot %d MB ekstra sagteware geïnstalleer word."
+"Nadat dit klaar is, sal dit beter wes om u X-omgewing te herlaai\n"
+"om die rekenaarnaamveranderingprobleem te voorkom."
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../network/netconnect.pm_.c:287
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"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 ""
-"U het geen koppelvlak wat opgestel is nie.\n"
-"Stel hulle eers op deur op deur op 'Konfigureer' te klik"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "Estoniaans"
-
-#: ../../services.pm:1
-#, c-format
+#: ../../network/network.pm_.c:278
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+"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 ""
-"Apache is 'n WWW-bediener.\n"
-"Dit kan HTML-lêers uitstuur en CGI's hanteer"
+"WAARSKUWING: Die toestel is alreeds opgestel om aan die internette "
+"konnekteer.\n"
+"U kan die toestel net so aanvaar.\n"
+"Veranderinge aan onderstaande velde sal hierdie konfigurasie oorskryf."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/network.pm_.c:283
msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
+"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 ""
-"Voorsien u CD-skrywer se toestelnaam\n"
-" bv: 0,1,0"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ALL"
-msgstr "ALMAL"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Voeg by/Verwyder Kliënte"
+"Gee asb die IP-konfigurasie vir hierdie rekenaar.\n"
+"Elke item moet as 'n IP-adres in dotdesimalenotasie\n"
+"(1.2.3.4) gegee word."
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "Choose the network interface"
-msgstr "Kies die netwerkkoppelvlak"
+msgid "Configuring network device %s"
+msgstr "Konfigureer netwerktoestel %s"
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../network/network.pm_.c:294
#, c-format
-msgid "Unknown Model"
-msgstr "Onbekende Model"
+msgid " (driver %s)"
+msgstr "(drywer %s)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
-msgstr "CD/DVD-skrywers"
+#
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "IP adres"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Verstekpartisie vir herlaai\n"
-" (vir MS_DOS doeleindes, nie LILO s'n nie)\n"
+#
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr "Netmasker"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Stel \"%s\" in staat om die lêer te lees"
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image"
-msgstr "Kies 'n beeld"
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "Outomatiese IP"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Vuurmuurkonfigurasie gevind!"
+#: ../../network/network.pm_.c:299
+#, fuzzy
+msgid "Start at boot"
+msgstr "Gelaai tydens herlaaityd"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "Konneksienaam"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP-adres moet in 1.2.3.4. formaat wees"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../network/network.pm_.c:326
msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-"x-koördinaat van teksboks\n"
-"in aantal karakters"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/network.pm_.c:330
msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
msgstr ""
-"U mag moontlik nie instaat wees om lilo te installeer nie ( sedert lilo nie "
-"'n LV op menigte PV's kan hanteer nie)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Updating package selection"
-msgstr "Pakketseleksie word opgedateer"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "Waar wil u terugluslêer %s heg?"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../network/network.pm_.c:350
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"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 ""
-"Die floppie is sukselvol geskep.\n"
-"U kan nou weer 'n installasie uitspeel."
+"Tik asb die rekenaarnaam in.\n"
+"Dit moet 'n volle gekwalifiseerde naam wees,\n"
+"bv. ``myne.mywerk.co.za''.\n"
+"U mag ook die netwerkhek byvoeg indien daar een is"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Gebruik CD-R/DVD-R vir maak van rugsteun"
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "DNS bediener"
-#: ../../standalone/harddrake2:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "die muis se aantal knoppies"
+msgid "Gateway (e.g. %s)"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
-msgstr "Herspeel"
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "Netwerkportaaltoestel"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup other files"
-msgstr "Rugsteun ander lêers"
+#: ../../network/network.pm_.c:363
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP-adres moet in 1.2.3.4. formaat wees"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "Geen disketaandrywer beskikbaar nie"
+#: ../../network/network.pm_.c:367
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP-adres moet in 1.2.3.4. formaat wees"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Rugsteun-lêers is korrup"
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
+msgstr "Instaanbedienerkonfigurasie"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
-msgstr "TV-norm:"
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "HTTP instaanbediener"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr "Cpuid-familie"
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "FTP instaanbediener"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
+msgstr "Volg netwerkkart ID. (nuttig vir skootrekenaars)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: thin"
-msgstr "tipe: dun"
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
+msgstr "Instaanbediener moet begin met http://"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lituanies AZERTY (nuut)"
+#: ../../network/network.pm_.c:388
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Instaanbediener moet begin met http://"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
-"ja, beteken dat die rekenkundige-koverwerker 'n eksepsie-vektor aangeheg het"
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
+msgstr "Vuurmuurkonfigurasie gevind!"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/shorewall.pm_.c:27
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"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
-"U het 'n sagteware RAID-partisie as wortel (/).\n"
-"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
-"Onthou om 'n /boot by te voeg."
+"Waarskuwing! 'n Bestaande vuurmuurkonfigurasie is bespeur. U sal dalk na "
+"dietyd self regstellings moet aanbring."
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "Ander bedryfstelsel (MacOS...)"
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
+msgstr "Internetkonfigurasie"
-#
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Om die muis te aktiveer,"
+#: ../../network/tools.pm_.c:58
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Wil u nou aan die internet konnekteer?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "Netwerk op pad op"
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+msgid "Testing your connection..."
+msgstr "Konneksie word getoets..."
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Skermfoto's sal na die installasie beskikbaar wees in %s"
+#: ../../network/tools.pm_.c:70
+msgid "The system is now connected to Internet."
+msgstr "Die stelsel is nou aan die internet gekonnekteer."
-#: ../../help.pm:1
-#, c-format
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
+msgstr "Vir sekuriteitsredes, word u nou gediskonnekteer."
+
+#: ../../network/tools.pm_.c:72
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:\")."
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-"Ons het meer as een Microsoft-partisie op u hardeskyf gevind.\n"
-"Kies dan nou die een wie se grootte u wil verander, om plek te maak\n"
-"vir u nuwe Mandrake Linux bedryfstelsel.\n"
-"\n"
-"Elke partisie is as volg gelys: \"Linux-naam\", \"Windows-naam\"\n"
-"\"Kapasiteit\".\n"
-"\n"
-"\"Linux-naam werk as volg\" \"tipe hardeskyf\", \"nommer van hardeskyf\",\n"
-"\"nommer van partisie\" (byvoorbeeld: \"hda1\").\n"
-"\n"
-"Indien u 'n IDE tipe hardeskyf het sal die tipe \"hd\" wees, en SCSI, sal \n"
-"\"sd\" wees\n"
-"\n"
-"Die nommer van die hardeskyf is altyd 'n letter, wat volg na \"hd\" of\n"
-"\"sd\".\n"
-"Met IDE hardeskywe:\n"
-"\n"
-" * \"a\" beteken \"meester-hardeskyf op die primêre IDE-beheerder\";\n"
-"\n"
-" * \"b\" beteken \"slaaf-hardeskyf op die primêre IDE-beheerder\";\n"
-"\n"
-" * \"c\" beteken \"meester-hardeskyf op die sekondêre IDE-beheerder\";\n"
-"\n"
-" * \"e\" beteken \"slaaf-hardeskyf op die sekondêre IDE-beheerder\";\n"
-"\n"
-"Met SCSI-hardeskywe, beteken 'n \"a\" die kleinste SCSI-ID,\"b\" sal\n"
-"dan die volgende ID verteenwoordig ens.\n"
-"\n"
-"\"Windows-naam\" is die letter van u hardeskyf onder Windoes ( die eerste\n"
-"skyf of partisie word \"C:\" genoem.)"
+"Die tselsel blyk nie aan die internet gekonnekteer te wees nie.\n"
+"Probeer om u stelsel te herkonfigureer."
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
-msgstr "Tanzanië"
+#
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
+msgstr "Konneksiekonfigurasie"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "FAT lêerstelselgrense word bereken"
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
+msgstr "Vul asb. die velde hieronder in"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Rugsteun-bronne: \n"
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr "Kaart IRQ"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "custom"
-msgstr "aangepaste"
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "Kaartgeheue (DMA)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Content of the file"
-msgstr "Inhoud van die lêer"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "Kaart I/O"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
-msgstr "LDAP-magtiging"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "Kaart IO_0"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
-msgstr ""
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "Kaart IO_1"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
-msgstr "Laat ek enige drywer kies"
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
+msgstr "U persoonlike telefoonnommer"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
-msgstr "reeds versend"
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
+msgstr "Voorsienernaam (bv voorsiener.co.za)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palestine"
-msgstr "Palestina"
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
+msgstr "Voorsiener se telefoonnommer"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+msgid "Provider dns 1 (optional)"
+msgstr "Voorsiener DNS 1 (opsioneel)"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d komma-afgeskeie teks"
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+msgid "Provider dns 2 (optional)"
+msgstr "Voorsiener DNS 2 (opsioneel)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " isdn"
-msgstr " isdn"
+#: ../../network/tools.pm_.c:109
+msgid "Choose your country"
+msgstr "Kies u land"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "Hierdie is die volledige lys van beskikbare sleutelborde"
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
+msgstr "Belmetode"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Theme name"
-msgstr "Naam van tema"
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+msgid "Connection speed"
+msgstr "Konneksiespoed"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/_Help"
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+msgid "Connection timeout (in sec)"
+msgstr "Konneksie tydlimiet (in sekondes)"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitrary driver"
-msgstr "Kies 'n eiemagtige drywer"
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
+msgstr "Gebruikerskode"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "Cook Eilande"
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
+msgstr "Wagwoord"
-#: ../../standalone/scannerdrake:1
-#, 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."
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
msgstr ""
-"Hier kan u kies of skandeerders wat aan hierdie rekenaar gekoppel is "
-"toeganklik sal wees vir eksterne masjiene, asook watter masjiene."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the width of the progress bar"
-msgstr "die wydte van die vorderingbalk"
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
+msgstr "heg het gefaal"
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Partisie %s word formateer"
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
+msgstr "Ekstensiepartisie word nie op hierdie platform ondersteun nie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hostname required"
-msgstr "Rekenaarnaam word benodig"
+#: ../../partition_table.pm_.c:685
+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 ""
+"U het 'n gat die partisietabel maar ek kan dit nie gebruik nie.\n"
+"Die enigste oplossing is om die primêre partisie te skuif sodat die gat\n"
+"langs die ekstensie partisies is"
-#: ../../standalone/drakfont:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "Unselect fonts installed"
-msgstr "Nie-gekose lettertipes geïnstalleer"
+msgid "Restoring from file %s failed: %s"
+msgstr "Herstel van léer %s het gefaal: %s"
-#
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Wiel"
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
+msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbug:1
+#: ../../partition_table.pm_.c:796
#, c-format
-msgid "Submit kernel version"
-msgstr "Dien kernel se weergawe in"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Cancel"
-msgstr "Kanselleer"
+msgid "Error writing to file %s"
+msgstr "Fout in die skryf van %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for configured scanners ..."
-msgstr "Opsoek na skandeerders wat reeds opgestel is ..."
+#: ../../partition_table/raw.pm_.c:192
+msgid ""
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
+msgstr ""
+"Iets vrots gebeur op u hardeskyf.\n"
+"'n Dataintegriteitstoets het misluk.\n"
+"Dit beteken dat enigiets wat na u hardeskyf geskryf word as gemors sal "
+"eindig."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Videocard"
-msgstr "Videokaart"
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr "benodig"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tRugsteun gebruik 'tar' en 'bzip2'\n"
+#: ../../pkgs.pm_.c:27
+msgid "important"
+msgstr "belangrik"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Remove Selected"
-msgstr "Verwyder Gekose"
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr "baie oulik"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Outospeur _modems"
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr "oulik"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove printer"
-msgstr "Verwyder drukker"
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr "moontlik"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Last Log"
-msgstr "Bekyk Laaste Log"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
+msgstr "PDQ - Druk sonder drukkertou"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "Watter dienste wil u toelaat vanaf die Internet?"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
+msgstr "PDQ"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Connection Type"
-msgstr "Konneksietipe"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
+msgstr "LPD - Lyndrukkerdiensprogram"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Welkom by die e-pos konfigurasie-program.\n"
-"\n"
-"Hier kan u die waarskuwing-stelsel opstel\n"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
+msgstr "LPD"
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Other"
-msgstr "Ander"
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
+msgstr "LPRng - Nuwe generasie LPR"
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
-msgstr "Verstek"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
+msgstr "LPRng"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Knop-2 Emulasie"
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
+msgstr "CUPS - Generiese Unixdrukstelsel (Common Unix Printing System) "
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter a package name."
-msgstr "Voorsien asseblief 'n pakketnaam."
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
+msgstr "CUPS"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run chkrootkit checks"
-msgstr "Loop 'chkrootkit' toetste"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Onbekende model"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "type1inst building"
-msgstr "type1inst building"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "Plaaslike drukker"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
+#
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
+msgstr "Eksterne drukker"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image file"
-msgstr "kies grafika-lêer"
+#
+#: ../../printer/main.pm_.c:28
+msgid "Printer on remote CUPS server"
+msgstr "Eksterne CUPS-drukker"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "X server"
-msgstr "X-bediener"
+#
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+msgid "Printer on remote lpd server"
+msgstr "Eksterne LPD-drukker"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin User Name"
-msgstr "Domein-administrarteur se naam"
+#
+#: ../../printer/main.pm_.c:30
+#, fuzzy
+msgid "Network printer (TCP/Socket)"
+msgstr "Netwerkdrukker (sok)"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Daar was 'n fout met die skandering vir TV-kanale"
+#: ../../printer/main.pm_.c:31
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
-msgstr "VSA internasionale sleutelbord"
+#: ../../printer/main.pm_.c:32
+msgid "Printer on NetWare server"
+msgstr "Eksterne Netware-drukker"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Not installed"
-msgstr "Nie geïnstalleeer"
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+msgid "Enter a printer device URI"
+msgstr "Tik drukkertoestel URI in"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Beide Alt-sleutels gelyktydig"
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
+msgstr "Pyk drukstuk na program"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "LAN connection"
-msgstr "LAN-konneksie"
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
+msgstr "Onbekende model"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/-"
-msgstr "/Lêer/-"
+#: ../../printer/main.pm_.c:317
+#, fuzzy
+msgid "Local Printers"
+msgstr "Plaaslike drukker"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Italian"
-msgstr "Italiaans"
+#
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+#, fuzzy
+msgid "Remote Printers"
+msgstr "Eksterne drukker"
-#: ../../interactive.pm:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid "Basic"
-msgstr "Basies"
+msgid " on parallel port \\/*%s"
+msgstr ""
-#: ../../install_messages.pm:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+msgid ", USB printer \\/*%s"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid "Honduras"
-msgstr "Honduras"
+msgid ", multi-function device on parallel port \\/*%s"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "pdq"
-msgstr "pdq"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
+msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO"
-msgstr "Kaart I/O"
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
+msgstr ""
+
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
+msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: ../../printer/main.pm_.c:344
#, fuzzy, c-format
-msgid "Samba server"
-msgstr "Samba-bediener"
+msgid ", printing to %s"
+msgstr "Fout in die skryf van %s"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm_.c:346
#, c-format
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-"\n"
-"Hierdie spesiale herlaaipartisie\n"
-"is om u stelsel te duolaai.\n"
-#: ../../standalone/drakautoinst:1
+#: ../../printer/main.pm_.c:348
#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
+msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-"Gaan asseblief deur elke stap, en kies of dit moet herspeel soos tydens die "
-"installasie, of dit vir u moet wag"
-#: ../../standalone/scannerdrake:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-"U kan ook hier kies of skandeerders van eksterne rekenaars beskikbaar moet "
-"wees op hierdie masjien."
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Netwerk deur FTP.\n"
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr ""
-#: ../../security/l10n.pm:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid "Reports check result to tty"
-msgstr "Stuur toets-resultate na tty"
+msgid ", using command %s"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "U moet 'n toestel- of lêernaam voorsien!"
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
+msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
+#: ../../printer/main.pm_.c:647
#, c-format
-msgid "/_Quit"
-msgstr "/_Verlaat"
+msgid "(on %s)"
+msgstr "(op %s)"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Video geheue: %s kB\n"
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
+msgstr "(op hierdie rekenaar)"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../printer/main.pm_.c:674
+#, fuzzy, c-format
+msgid "On CUPS server \"%s\""
+msgstr "CUPS-bediener IP:"
+
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
+msgstr " (Verstek)"
+
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
+msgstr "Kies drukkerkonneksie"
+
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
+msgstr "Hoe is die drukker gekonekteer?"
+
+#: ../../printer/printerdrake.pm_.c:30
+#, fuzzy
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"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
msgstr ""
-"This program is free software; you can redistribute it and/or modify\n"
-"it under the terms of the GNU General Public License as published by\n"
-"the Free Software Foundation; either version 2, or (at your option)\n"
-"any later version.\n"
"\n"
-"This program is distributed in the hope that it will be useful,\n"
-"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-"GNU General Public License for more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Met 'n eksterne CUPS-bediener, hoef u glad nie 'n drukker hier\n"
+"op te stel nie; drukkers wod outomaties bespeur.\n"
+"Indien u twyfel, kies \"Eksterne CUPS-drukker\"."
-#: ../../any.pm:1
-#, c-format
-msgid "access to compilation tools"
-msgstr "toegang na kompilasie-gereedskap"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Global statistics"
-msgstr "Statistieke"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+#, fuzzy
+msgid "CUPS configuration"
+msgstr "Konfigurasie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Kies asseblief data om te herstel..."
+#
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+#, fuzzy
+msgid "Specify CUPS server"
+msgstr "Verwyder CUPS-bediener"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:83
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"
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-"Indien u beplan om 'aboot' te gebruik, los spasie aan die begin\n"
-"van die skyf. (2048 sektors is genoeg)."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Standard test page"
-msgstr "Standaard toetsbladsy"
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Time Zone"
-msgstr "Tydsone"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create"
-msgstr "Skep"
+#: ../../printer/printerdrake.pm_.c:84
+msgid ""
+"\n"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "What"
-msgstr "Wat"
+#: ../../printer/printerdrake.pm_.c:88
+msgid "The IP address should look like 192.168.1.20"
+msgstr "IP-adres moet iets soos 192.168.1.20. lyk"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Daar was 'n fout met pakkette:"
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
+msgstr "Die poortnommer moet heeltal wees."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "Bulgaars (BDS)"
+#: ../../printer/printerdrake.pm_.c:99
+msgid "CUPS server IP"
+msgstr "CUPS-bediener IP:"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Server"
-msgstr "Versper Bediener"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
+msgstr "Poort"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem encryption key"
-msgstr "Enkripsie-sleutel van lêerstelsel"
+#: ../../printer/printerdrake.pm_.c:102
+msgid "Automatic CUPS configuration"
+msgstr "Outomatiese CUPS konfigurasie"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
-msgstr "Gujarati"
+#
+#: ../../printer/printerdrake.pm_.c:159
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Watter drukkerstelsel verlang u?"
+
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+#, fuzzy
+msgid "Printerdrake"
+msgstr "Drukker"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:167
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."
+"There are no printers found which are directly connected to your machine"
msgstr ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by drakTermServ. Clients can "
-"either be 'thin'\n"
-" or 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, %s is\n"
-" written for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-" modified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-" using xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-" subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by drakTermServ. "
-"Clients can either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-#: ../../interactive/stdio.pm:1
-#, c-format
+#
+#: ../../printer/printerdrake.pm_.c:179
+#, fuzzy
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 ""
-"Kies asseblief die eerste getal van die 10-reeks wat u wil redigeer,\n"
-"of gebruik bloot [Enter] om voort te gaan.\n"
-"U keuse?"
+"The following printers\n"
+"\n"
+msgstr "Dei volgende pakkette gaan verwyder word"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#
+#: ../../printer/printerdrake.pm_.c:180
+#, fuzzy
msgid ""
+"The following printer\n"
"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
+msgstr "Dei volgende pakkette gaan verwyder word"
+
+#: ../../printer/printerdrake.pm_.c:182
+msgid ""
"\n"
+"and one unknown printer are "
msgstr ""
-"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Save theme"
-msgstr "Stoor tema"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "Brasilië"
-#: ../../standalone/drakautoinst:1
+#: ../../printer/printerdrake.pm_.c:184
#, c-format
-msgid "Auto Install"
-msgstr "Outomatiese-installasie"
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration Wizard"
-msgstr "Netwerkkonfigurasie-assistent"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"are "
+msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
-msgstr "Outoheg van verwyderbare media"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"is "
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Printing"
-msgstr "Drukwerk"
+#: ../../printer/printerdrake.pm_.c:189
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save:"
-msgstr "Voorsien die lêergids om te stoor:"
+#: ../../printer/printerdrake.pm_.c:192
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:194
#, c-format
msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "Geen drukkers te vinde wat direk aan u rekenaar gekoppel is nie"
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "Skep 'n nuwe partisie"
+#: ../../printer/printerdrake.pm_.c:200
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Driver:"
-msgstr "Drywer:"
+#: ../../printer/printerdrake.pm_.c:214
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
-msgstr "Onbekend"
+#: ../../printer/printerdrake.pm_.c:215
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Wil u hierdie drukker (\"%s\")\n"
+"die verstek drukker maak?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "Gebruik fdisk"
+#: ../../printer/printerdrake.pm_.c:217
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Wil u die konneksie met herlaaityd aanskakel?"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "BEWEEG DIE WIEL!"
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
-#: ../../standalone/net_monitor:1
+#: ../../printer/printerdrake.pm_.c:219
#, c-format
-msgid "sent: "
-msgstr "stuur: "
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "Outomatiese IP"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+#, fuzzy
+msgid "Add a new printer"
+msgstr "Voeg drukker by"
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:259
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"
+"Welcome to the Printer Setup Wizard\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"
+"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"
-" Note that two different options are available after clicking the button:\n"
+"It asks you for all necessary information to set up the printer and gives "
+"you access to all available printer drivers, driver options, and printer "
+"connection types."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:272
+msgid ""
"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\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"
-" 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"
+"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) and you Windows machines must be connected and "
+"turned on.\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"
+"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"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Fluit-fluit my storie is uit! Die installasie het tot 'n einde gekom en u\n"
-"GNU/Linux reknaar is gereed vir gebruik. Klik bloot op \"%s\" om\n"
-"te herlaai. Die eerste skerm wat u sal sien, na die rekenaar sy\n"
-"hardeware-toetse uitgevoer het, is die herlaaistelsel se kieslys.\n"
-"Daar kan u die bedryfstelsel kies wat moet laai.\n"
+
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
+msgid ""
"\n"
-"Die \"%s\" knoppie sal nog twee knoppies laat verskyn:\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" * \"%s\": om 'n installasie-disket te skep wat die hele installasie\n"
-"aotomaties sal doen, sonner die hulp van 'n persoon.\n"
-"Dit sal soortgelyk aan hierdie een wees.\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
"\n"
-" Let daarop dat twee verskillende opsies daarna beskikbaar sal wees:\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"
-" * \"%s\" Gedeeltelik outomaties. Die skep van partisies benodig 'n\n"
-"persoon om te spesifiseer.\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:289
+msgid ""
"\n"
-" * \"%s\" Volkome outomaties. Die hardeskyf word totaal gewis, alle\n"
-"data word verloor.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" Hierdie is handig wanneer u 'n paar van dieselfde masjiene moet\n"
-"installeer.\n"
-"Besoek gerus ons webwerf vir meer inligting hieroor.\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer or connected directly to the network.\n"
"\n"
-" * \"%s\"(*): stoor 'n lys van die gekose pakette in hierdie installasie.\n"
-"Om hierdie keuses met 'n volgende installasie te gebruik, plaas disket\n"
-"in aandrywer en begin die installasie. Kies [F1] en tik '>> linux\n"
-"defcfg=\"floppy\" <<' in.\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"
-"(*) U sal 'n FAT-geformatteerde disket benodig (onder GNU/Linux, tik\n"
-"\"mformat a:\" op die instruksielyn)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Moldova"
-msgstr "Moldova"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuration of a remote printer"
-msgstr "Konfigurasie van eksterne drukker"
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
-msgstr "'n Aanlyn-platvorm wat reageer op u onderneming se behoefdes."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URL moet begin met 'ftp' of 'http':"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Oriya"
-msgstr "Oriya"
+"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\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Voeg 'n nuwe reël aan die einde by"
+#
+#: ../../printer/printerdrake.pm_.c:307
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
+msgstr "Eksterne drukker"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr "LiLo en selflaai-splatskerm se ttema installasie was suksesvol"
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-"U kan ook hier besluit indien eksterne drukkers outomaties op hierdie "
-"rekenaar beskikbaar gestel behoort te word."
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:329
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''"
+"\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 ""
-"U kan nou die opsies voorsien vir module %s.\n"
-"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
-"Bv. ``io=0x300 irq-7''"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+#, fuzzy
+msgid "Printer auto-detection"
+msgstr "Gebruik outobespeuring"
-#: ../../mouse.pm:1
+#: ../../printer/printerdrake.pm_.c:385
#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
+msgid ", network printer \"%s\", port %s"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Hard Drive"
-msgstr "Op hardeskyf"
+#: ../../printer/printerdrake.pm_.c:387
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
-#: ../../standalone.pm:1
-#, c-format
-msgid "Installing packages..."
-msgstr "Installeer pakkette..."
+#: ../../printer/printerdrake.pm_.c:391
+#, fuzzy, c-format
+msgid "Detected %s"
+msgstr "%s bespeur"
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "Dutch"
-msgstr "Nederlands"
+msgid "Printer on parallel port \\/*%s"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "Angola"
-msgstr "Angola"
+msgid "USB printer \\/*%s"
+msgstr ""
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "Die volgende pakkette geïnstalleer word:\n"
+#: ../../printer/printerdrake.pm_.c:399
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Netwerkdrukker (sok)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "service setting"
-msgstr "diens verstelling"
+#: ../../printer/printerdrake.pm_.c:401
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
-#
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "Aangepaste"
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+#, fuzzy
+msgid "Local Printer"
+msgstr "Plaaslike drukker"
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
-msgstr "Letland"
+#: ../../printer/printerdrake.pm_.c:526
+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 ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr "Lêer word alreeds deur 'n ander teruglus gebruik,kies 'n ander een"
+#: ../../printer/printerdrake.pm_.c:530
+#, fuzzy
+msgid "You must enter a device or file name!"
+msgstr "Tik drukkertoestel URI in"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr "Lees-alleen"
+#: ../../printer/printerdrake.pm_.c:539
+#, fuzzy
+msgid "No printer found!"
+msgstr "Plaaslike drukker"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:548
+#, fuzzy
+msgid "Available printers"
+msgstr "Plaaslike drukker"
+
+#: ../../printer/printerdrake.pm_.c:552
msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
msgstr ""
-"Versper/Ontsper flous-naamresolusie-beskerming. Indien\n"
-" \"waarsku\" gekies is, sal dit aangeteken word\n"
-" in die staaflêers."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
-msgstr "Geen drywer bekend"
+#: ../../printer/printerdrake.pm_.c:553
+msgid ""
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
+#: ../../printer/printerdrake.pm_.c:555
+msgid ""
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:556
msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-"Indien u nie hierde een wil konfigureer nie, voorsien dan 'n toestel-/"
-"lêernaam aan die toevoerlyn."
-#: ../../standalone/draksound:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:558
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 choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-"Geen klankkaart is op u rekenaar bespeur nie. Maak tog seker dat dit 'n\n"
-"Linux-ondersteunde klankkaart is. Kyk of dit reg ingeprop is.\n"
-"\n"
-"\n"
-"U kan ons hardeware-databasis besoek te:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Stel plaaslike netwerk op..."
+#: ../../printer/printerdrake.pm_.c:559
+#, fuzzy
+msgid "Please choose the port where your printer is connected to."
+msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:561
msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr "Laai die klankstelsel op u rekenaar"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
-msgstr "Ondersoek die toetssom (checksum) van suid/sgid lêers"
+#: ../../printer/printerdrake.pm_.c:565
+#, fuzzy
+msgid "You must choose/enter a printer/device!"
+msgstr "Tik drukkertoestel URI in"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run some checks against the rpm database"
-msgstr "Doen 'n paar toetse teen die rpm-databasis"
+#: ../../printer/printerdrake.pm_.c:584
+#, fuzzy
+msgid "Manual configuration"
+msgstr "Kleurkonfigurasie"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Execute"
-msgstr "Voer uit"
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
+msgstr "Eksterne lpd drukkeropsies"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Drukkerdatabasis word voorberei..."
+#: ../../printer/printerdrake.pm_.c:634
+#, fuzzy
+msgid ""
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
+msgstr ""
+"Om 'n eksterne lpd drukkertou te gebruik,moett die naam\n"
+"van die drukkkerbediener en die naam van die drukkertou\n"
+"voorsien word."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Information"
-msgstr "Inligting"
+#: ../../printer/printerdrake.pm_.c:635
+msgid "Remote host name"
+msgstr "Eksterne bedienernaam"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "No network card"
-msgstr "Geen netwerkkaart nie"
+#
+#: ../../printer/printerdrake.pm_.c:636
+msgid "Remote printer name"
+msgstr "Eksterne drukkernaam"
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "3 knoppies"
+#: ../../printer/printerdrake.pm_.c:639
+msgid "Remote host name missing!"
+msgstr "Eksterne bedienernaam ontbreek!"
-#
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Which filesystem do you want?"
-msgstr "Watter lêerstelsel verlang u?"
+#: ../../printer/printerdrake.pm_.c:643
+msgid "Remote printer name missing!"
+msgstr "Eksterne drukkernam ontbreek!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malta"
-msgstr "Malta"
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "%s bespeur"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Detailed information"
-msgstr "Gedetaileerde inligting"
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Konneksie word begin..."
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, 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."
+msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-"Verstek verstellings van drukker\n"
-"\n"
-"Maak seker die volgende is korrek opgestel: 1.) bladsy grootte; 2.) ink tipe/"
-"drukmodus; 3.)hardeware verstellings van laserdrukkers (geheue, dupleks of "
-"nie, ekstra laaie). Let tog dat baie hoë kwaliteit/resolusie die spoed "
-"waarteen gedruk word aansienlik verminder."
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
-msgstr "Hierdie floppie is nie in FAT-formaat nie"
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Netwerk op pad af"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "Stel netwerk op"
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "SMB (Windows 9x/NT) drukkeropsies"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:796
+#, fuzzy
msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
+"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 ""
-"Hierdie opsie sal lêers wat verander het stoor. Presiese gedrag hang af "
-"indien Aanwas of Differensiële modus gebruik word."
+"Om na 'n SMB drukker te druk moet u die volgende voorsien:\n"
+"SMB rekenaarnaam (dis nie noodwendig dieselfde as die TCP/IP rekenaarnaam\n"
+"nie); moontlik die IP adres van die drukkerbediener; die drukkernaam; \n"
+"toepaslike gebruikerskode en wagwoord; werkgroepnaam."
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Graphic Card"
-msgstr "Grafiesekaart"
+#: ../../printer/printerdrake.pm_.c:797
+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 ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing Windows partition"
-msgstr "Windowslêerstelselgrense word bereken"
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
+msgstr "SMB-bedienernaam"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "Kameroen"
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr "SMB-bediener IP:"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "Voorsiener DNS 1 (opsioneel)"
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr "Drukkernaam:"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"U het nou partisie %s partisioneer.\n"
-"Wanneer u klaar is, stoor u veranderinge met 'w'."
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "Werkgroep:"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finnish)"
-msgstr "Saami (sweeds/fins)"
+#: ../../printer/printerdrake.pm_.c:806
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Gebruik outobespeuring"
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Close"
-msgstr "Sluit af"
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
+msgstr "Óf die bedienernaam óf die bediener-IP moet verskaf word!"
+
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
+msgstr "SAMBA-deelnaam ontbreek!"
+
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
+msgstr ""
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:827
#, 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."
+"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 ""
-"\"%s\": ondersoek die huidige landskeuse. Indien u nie in daardie land\n"
-"is nie, klik op die \"%s\"-knoppie en kies die regte een. Indien u land\n"
-"nie in daardie lys teenwoordig is nie, kies die \"%s\"-knoppie vir 'n\n"
-"volledige lys."
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
-msgid "Calendar"
-msgstr "Kalender"
+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 ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:840
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+"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 ""
-"Herstel Gekose\n"
-"Katalogus-inskrywing"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
+msgstr "NetWare drukkeropsies"
+
+#: ../../printer/printerdrake.pm_.c:912
+#, fuzzy
msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
+"To print on a NetWare printer, you need to provide the NetWare print server "
+"name (Note! it may be different from its TCP/IP hostname!) as well as the "
+"print queue name for the printer you wish to access and any applicable user "
+"name and password."
msgstr ""
-"Om 'n eksterne lpd drukker te gebruik, moet die naam van die "
-"drukkkerbediener en die naam van die drukkertou voorsien word."
+"Om na 'n Netware drukker te druk moet u die volgende voorsien:\n"
+"Netware rekenaarnaam (dis nie noodwendig dieselfde as die TCP/IP\n"
+"rekenaarnaam nie); moontlik die IP adres van die drukkerbediener;\n"
+"die drukkernaam; toepaslike gebruikerskode en wagwoord."
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
-msgstr "Ysland"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr "Drukkerbediener"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Netwerk- & Internet-konfigurasie"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
+msgstr "Drukkertounaam"
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
-msgstr "konsole-helper is soek"
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
+msgstr "NCP-bedienernaam ontbreek!"
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr "onaktief"
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
+msgstr "NCP-tounaam ontbreek!"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "Indien die FPU 'n 'irq-vektor' het"
+msgid ", host \"%s\", port %s"
+msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
-msgid "Ext2"
-msgstr "Ext2"
+msgid "Host \"%s\", port %s"
+msgstr ""
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr "Maak boom oop"
+#: ../../printer/printerdrake.pm_.c:1030
+#, fuzzy
+msgid "TCP/Socket Printer Options"
+msgstr "Sokdrukkeropsies"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1032
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
-"\n"
-"It has been reported to oops the kernel on unloading.\n"
-"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-"Die ou \"%s\" drywer is op 'n swartlys.\n"
-"\n"
-"Dit is geraporteer dat die die kernel 'oops' as dit aflaai.\n"
-"\n"
-"Die nuwe \"%s\" drywer sal met die volgende selflaai gebruik word."
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Expert Mode"
-msgstr "Kundige bedryfsvlak"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "Drukkeropsies"
+#: ../../printer/printerdrake.pm_.c:1033
+#, fuzzy
+msgid ""
+"To print to a TCP or socket printer, you need to provide the host name or IP "
+"of the printer and optionally the port number (default is 9100). On HP "
+"JetDirect servers the port number is usually 9100, on other servers it can "
+"vary. See the manual of your hardware."
+msgstr ""
+"Om aan 'n sokdrukker te konnekteer, moet u die rekenaarnaam van die\n"
+"drukker voorsien en dalk ook 'n poortnommer voorsien.\n"
+"Met HP JetDirect-bedieners is die poortnommer gewoonlik 9100,\n"
+"maar dit mag anders wees met ander bedieners. Raadpleeg die handleiding\n"
+"wat saam met die hardeware gekom het."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Local Network adress"
-msgstr "Plaaslike Netwerkadres"
+#: ../../printer/printerdrake.pm_.c:1037
+#, fuzzy
+msgid "Printer host name or IP missing!"
+msgstr "Drukkerbedienernaam ontbreek!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Rugsteun u stelsel-lêers: (/etc lêergids)"
+#: ../../printer/printerdrake.pm_.c:1059
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Drukkerbedienernaam"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the user umask."
-msgstr "Stel die 'umask'"
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
+msgstr "Drukkertoestel URI"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1108
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 ?"
+"You can specify directly the URI to access the printer. The URI must fulfill "
+"either the CUPS or the Foomatic specifications. Note that not all URI types "
+"are supported by all the spoolers."
msgstr ""
-"U het nou 'n geleentheid om opgedateerde pakkette af te laai.Hierdie "
-"pakkette is opgedateer na die distribusie vrygestel is.\n"
-"Hulle mag moontlike sekuriteits-probleme en goggas regstel.\n"
-"\n"
-"Sou u hulle wil aflaai, benodig u 'n werkende Internetkonneksie.\n"
-"\n"
-"Wil u dit nou installeer?"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Samba Server"
-msgstr "Samba-bediener"
+"U kan die URI om die drukker te bereik direk spesifiseer. Die URI moet in "
+"CUPS- of Foomatic-formaat wees. Nie alle UTI-tipes moet deur al die "
+"spoelprogramme ondersteun nie."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Australise, Optus kabel-TV"
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
+msgstr "'n Geldige URI moet verskaf word!"
-#: ../../install_steps_newt.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1463
+#, fuzzy
msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+"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 ""
-" <Tab>/<Alt-Tab> tussen elemente | <Space> selekteer | <F12> volgende skerm "
+"Elke drukker benodig naam (bv. lp).\n"
+"Die Beskrywing- en Liggingvelde is opsioneel.\n"
+"Hulle dien as inligting vir gebruikers."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet:"
-msgstr "Subnet:"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr "Drukkernaam"
-#: ../../lang.pm:1
-#, c-format
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
+msgstr "Beskrywing"
+
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
+msgstr "Ligging"
+
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+#, fuzzy
+msgid "Reading printer database..."
+msgstr "Drukkerdata word gelees..."
+
+#: ../../printer/printerdrake.pm_.c:1482
+#, fuzzy
+msgid "Preparing printer database..."
+msgstr "Drukkerdata word gelees..."
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "When"
-msgstr "Wanneer"
+#: ../../printer/printerdrake.pm_.c:1578
+#, fuzzy
+msgid "Your printer model"
+msgstr "Eksterne drukkernaam"
-#: ../../network/adsl.pm:1
+#: ../../printer/printerdrake.pm_.c:1579
#, c-format
msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
+"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 ""
-"U benodig die Alcatel mikrokode.\n"
-"Laai dit af by:\n"
-"%s en kopieer die mgmt.o na '/usr/share/speedtouch'"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hour"
-msgstr "Uur"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Tweede DNS-bediener (opsioneel)"
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+#, fuzzy
+msgid "The model is correct"
+msgstr "Is dit korrek?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Finland"
-msgstr "Finland"
+#
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+#, fuzzy
+msgid "Select model manually"
+msgstr "Eksterne drukkernaam"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Kleurdiepte: %s\n"
+#: ../../printer/printerdrake.pm_.c:1606
+msgid "Printer model selection"
+msgstr "Drukkermodelkeuse"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "U kan nie hierdie pakket deselekteer nie. Dit moet opgradeer word."
+#: ../../printer/printerdrake.pm_.c:1607
+msgid "Which printer model do you have?"
+msgstr "Oor watter tipe drukker beskik u?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "Oplaai vanaf floppie"
+#: ../../printer/printerdrake.pm_.c:1608
+msgid ""
+"\n"
+"\n"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
+msgstr ""
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Timezone - DrakClock"
+#: ../../printer/printerdrake.pm_.c:1611
+msgid ""
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
-msgstr "Versper/Ontsper aanteken van vreemde IPv4-pakkies in staaflêer."
+#: ../../printer/printerdrake.pm_.c:1697
+#, fuzzy
+msgid "OKI winprinter configuration"
+msgstr "Verander drukkerkonfigurasie"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr "Slovenië"
+#: ../../printer/printerdrake.pm_.c:1698
+msgid ""
+"You are configuring an OKI laser winprinter. These printers\n"
+"use a very special communication protocol and therefore they work only when "
+"connected to the first parallel port. When your printer is connected to "
+"another port or to a print server box please connect the printer to the "
+"first parallel port before you print a test page. Otherwise the printer will "
+"not work. Your connection type setting will be ignored by the driver."
+msgstr ""
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse test"
-msgstr "Toets van muis"
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+#, fuzzy
+msgid "Lexmark inkjet configuration"
+msgstr "Internetkonfigurasie"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1719
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."
+"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 ""
-"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."
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1746
msgid ""
-"Enter a user\n"
-"%s"
+"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 ""
-"Tik 'n gebruiker in\n"
-"%s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
msgstr ""
-"- PCI en USB toestelle: lys die vervaardiger, toestel, sub-vervaardiger en "
-"sub-toestel PCI/USB id's"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "ProgressBar color selection"
-msgstr "Vorderingstafie se kleurkeuse"
+#: ../../printer/printerdrake.pm_.c:1750
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1972
msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
+"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 ""
-"Hier is die huidige inskrywings\n"
-"U kan byvoeg or verwyder soos nodig."
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
+msgid "Option %s must be an integer number!"
+msgstr "Opsie %s moet 'n heeltal wees!"
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
+msgid "Option %s must be a number!"
+msgstr "Opsie %s moet 'n nommer wees"
+
+#: ../../printer/printerdrake.pm_.c:1989
+#, c-format
+msgid "Option %s out of range!"
+msgstr "Opsie %s is buite bereik!"
-#: ../../standalone/drakbug:1
+#: ../../printer/printerdrake.pm_.c:2028
#, c-format
msgid ""
-"Application Name\n"
-"or Full Path:"
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
-"Programnaam\n"
-"of volle roete:"
+"Wil u hierdie drukker (\"%s\")\n"
+"die verstek drukker maak?"
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2051
+msgid "Test pages"
+msgstr "Toetsbladsye"
+
+#: ../../printer/printerdrake.pm_.c:2052
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."
+"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 ""
-"Loop instruksies deur 'at' geskeduleer op die tyd deur 'at'\n"
-"gespesifiseer.\n"
-"Loop ook instruksiebondels wanneer die stelsellas laag genoeg is."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
-msgstr "Ondersteunig vir Radio:"
+#: ../../printer/printerdrake.pm_.c:2056
+msgid "No test pages"
+msgstr "Geen toetsbladsye"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "Installeer SANE pakkette..."
+#: ../../printer/printerdrake.pm_.c:2057
+msgid "Print"
+msgstr "Druk"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
-msgstr "LDAP"
+#: ../../printer/printerdrake.pm_.c:2114
+msgid "Standard test page"
+msgstr "Standaard toetsbladsy"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
-msgstr "SILO"
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
+msgstr "Alternatiewe toetsbladsy (Lettergrootte)"
-#: ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Change type"
-msgstr "Verander tipe"
+#: ../../printer/printerdrake.pm_.c:2120
+msgid "Alternative test page (A4)"
+msgstr "Alternatiewe toetsbladsy (A4)"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", USB-drukker #%s"
+#: ../../printer/printerdrake.pm_.c:2122
+msgid "Photo test page"
+msgstr "Fototoetsbladsy"
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "SILO installasie"
+#: ../../printer/printerdrake.pm_.c:2126
+#, fuzzy
+msgid "Do not print any test page"
+msgstr "Druk toetsbladsy(e)"
-#: ../../install_messages.pm:1
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
+msgstr "Toetsbladsy(e) word gedruk..."
+
+#: ../../printer/printerdrake.pm_.c:2159
#, 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"
+"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"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-"Geluk, installasie is afgehandel.\n"
-"Verwyder die herlaaimedium en druk 'enter' om te herlaai.\n"
-"\n"
-"\n"
-"Vir inligting oor hierdie vrystelling van Mandrake Linux,\n"
-"bekyk die errata beskikbaar op\n"
-"\n"
-"\n"
+"Toetsbladsy(e) is na die drukkerstelsel gestuur.\n"
+"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
+"Drukstatus:\n"
"%s\n"
"\n"
-"\n"
-"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
-"hoofstuk in die Offisiële Linux-Mandrake Gebruikersgids."
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Herstel Via Netwerkprotokol: %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "paranoid"
-msgstr "paranoïes"
+#: ../../printer/printerdrake.pm_.c:2163
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+msgstr ""
+"Toetsbladsy(e) is na die drukker gestuur.\n"
+"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "Moet nie onnodige e-pos stuur nie"
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
+msgstr "Het dit reg gewerk?"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "U skandeerder(s) sal NIE op die netwerk beskikbaar wees NIE. "
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+#, fuzzy
+msgid "Raw printer"
+msgstr "Geen drukker"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Stuur 'n e-posverslag na elke rugsteun na:"
+msgid ""
+"To print a file from the command line (terminal window) you can either use "
+"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
+"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
+"to modify the option settings easily.\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2218
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 "
+"These commands you can also use in the \"Printing command\" field of the "
+"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-"Hierdie opdragte kan u ook in die \"Printing command\" veld in die drukker-"
-"dialoogvensters van baie programme gebruik, maar nou hoef u nie die lêernaam "
-"te voorsien nie , die program doen dit vir jou.\n"
-
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolution"
-msgstr "Resolusie"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, 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."
+"\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 ""
-"Indien u drukwerk na 'n SMB drukker wil stuur, voorsien asseblief die "
-"volgende: SMB-rekenaarnaam ( Let dat dit mag verskil van die TCP/IP-"
-"rekenaarnaam) en moontlik die IP-adres van die bediener, die deelnaam van "
-"die drukker, toepaslike gebruikernaam, wagwoord, en werkgroep."
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
#, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"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\n"
+"\n"
msgstr ""
-"'su'-funksie slegs vir lede van die \"wheel\"-groep of vir enige gebruiker."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
-msgstr "herkonfigureer"
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2228
msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+"Here is a list of the available printing options for the current printer:\n"
+"\n"
msgstr ""
-"Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling\n"
-"onder XFree86 %s bied,\n"
-"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
-#: ../../security/l10n.pm:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, c-format
-msgid "Shell timeout"
-msgstr "Tydsbeperking vir dop"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Xinetd Service"
-msgstr "Xinetd Service"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to network tools"
-msgstr "toegang na netwerk-nutsprogramme"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "Laai Fermware (Firmware) Op vir HP LaserJet 1000"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
+msgstr ""
-#: ../advertising/03-software.pl:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
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."
+"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 ""
-"En natuurlik, maak die meeste van multimedia deur die nuutste programme om "
-"video's mee te speel, klank-lêers te geniet en u grafika en fotos te hanteer."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Hier is 'n lys van aouto-opgespoorde drukkers. "
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
+msgid ""
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2253
#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
msgstr ""
-"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
-"word die eerste partisie vernietig?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2257
msgid ""
-"Restore Selected\n"
-"Files"
+"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 ""
-"Herstel Gekose\n"
-"Lêers"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2261
#, 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."
+"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 ""
-"%s bestaan, verwyder dit?\n"
-"\n"
-"Waarskuwing: Indien u reeds hierdie stap deurgegaan het, sal u\n"
-"moontlik die inskrywing moet verwyder uit die 'authorized_keys' \n"
-"op die bediener."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Vul asb. die velde hieronder in"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Wil u die /etc/fstab veranderinge stoor?"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
-msgstr "Herlaaiprotokol"
+#: ../../printer/printerdrake.pm_.c:2271
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Netwerk op pad af"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-skywe %s\n"
+#: ../../printer/printerdrake.pm_.c:2272
+#, fuzzy, c-format
+msgid "Printing/Scanning on \"%s\""
+msgstr "Netwerk op pad af"
-#: ../../services.pm:1
-#, c-format
-msgid "On boot"
-msgstr "met herlaai"
+#: ../../printer/printerdrake.pm_.c:2274
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Netwerk op pad af"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "Pakket %s word benodig. Moet ons installeer?"
+#: ../../printer/printerdrake.pm_.c:2275
+#, fuzzy, c-format
+msgid "Printing on the printer \"%s\""
+msgstr "Netwerk op pad af"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus identification"
-msgstr "Bus identifikasie"
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+msgid "Close"
+msgstr "Sluit af"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vatican"
-msgstr "Vatican"
+#: ../../printer/printerdrake.pm_.c:2281
+#, fuzzy
+msgid "Print option list"
+msgstr "Drukkeropsies"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:2301
#, c-format
-msgid "Please make a backup of your data first"
-msgstr "Rugsteun u data eers asb."
+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!"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ADSL adapters"
+#: ../../printer/printerdrake.pm_.c:2322
+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 ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "U het meer as een hardeskyf, waar wil u Linux installeer?"
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+msgid "Reading printer data..."
+msgstr "Drukkerdata word gelees..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Eritrea"
-msgstr "Eritrea"
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+msgid "Transfer printer configuration"
+msgstr "Dra drukkerkonfigurasie oor"
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm_.c:2365
#, c-format
-msgid "Boot ISO"
-msgstr "Selflaai-ISO"
+msgid ""
+"You can copy the printer configuration which you have done for the spooler %"
+"s to %s, your current spooler. All the configuration data (printer name, "
+"description, location, connection type, and default option settings) is "
+"overtaken, but jobs will not be transferred.\n"
+"Not all queues can be transferred due to the following reasons:\n"
+msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Firmware needed"
-msgstr "Fermware (Firmware) word benodig"
+#: ../../printer/printerdrake.pm_.c:2368
+msgid ""
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
+msgstr ""
-#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove List"
-msgstr "Verwyder Lys"
+#: ../../printer/printerdrake.pm_.c:2370
+msgid ""
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
+msgstr ""
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
-msgstr "'n Aanpasbare omgewing"
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr "LPD en LPRng ondersteun nie IPP-drukkers nie.\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
-msgstr "Inuktitut"
+#: ../../printer/printerdrake.pm_.c:2374
+msgid ""
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2375
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."
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
msgstr ""
-"Party protokolle, soos 'rsync', kan aan die bediener se kan gekonfigureer "
-"word. In pleks van 'n roete na die lêergids te gebruik, sal u die 'module' "
-"naam vir die diens se roete gebruik."
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "Marokko"
+#: ../../printer/printerdrake.pm_.c:2376
+msgid ""
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Oor watter tipe drukker beskik u?"
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
+msgstr "Moet nie drukkers oordra nie"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add a new printer"
-msgstr "Voeg drukker by"
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
+msgstr "Oordrag"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2392
#, c-format
-msgid " All of your selected data have been "
-msgstr " All u gekose data is "
+msgid ""
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "Nepal"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
-msgid "<-- Delete"
-msgstr "<--Verwyder"
+msgid ""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
-msgstr "cpu # "
+#: ../../printer/printerdrake.pm_.c:2413
+msgid "New printer name"
+msgstr "Nuwe drukkernaam"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "chunk size"
-msgstr "blokgrootte"
+msgid "Transferring %s..."
+msgstr "%s word oorgedra..."
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2427
#, 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."
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
msgstr ""
-"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."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr "Versper/Ontsper sulogin(8) in enkel-gebruiker modus"
-#. -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
-#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "instruksies voor herlaai, of 'c' vir 'n instruksielyn."
+#: ../../printer/printerdrake.pm_.c:2437
+#, fuzzy
+msgid "Refreshing printer data..."
+msgstr "Drukkerdata word gelees..."
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Probleme met Installasue van pakket %s"
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+#, fuzzy
+msgid "Configuration of a remote printer"
+msgstr "Konfigureer drukker"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "U sal 'n waarskuwing ontvang sodra die las hoër as die waarde styg"
+#: ../../printer/printerdrake.pm_.c:2446
+#, fuzzy
+msgid "Starting network..."
+msgstr "Konneksie word begin..."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Voeg self 'n skandeerder by"
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+#, fuzzy
+msgid "Configure the network now"
+msgstr "Stel netwerk op"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh"
-msgstr "Herlaai"
+#: ../../printer/printerdrake.pm_.c:2480
+#, fuzzy
+msgid "Network functionality not configured"
+msgstr "Monitor is nie opgestel nie"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Reload partition table"
-msgstr "Herlaai partisietabel"
+#: ../../printer/printerdrake.pm_.c:2481
+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 ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Ja, ek verlang outo-inteken met hierdie (gebruiker,werkskerm)"
+#: ../../printer/printerdrake.pm_.c:2484
+#, fuzzy
+msgid "Go on without configuring the network"
+msgstr "Stel netwerk op"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Selected"
-msgstr "Verwyder Gekose"
+#: ../../printer/printerdrake.pm_.c:2518
+msgid ""
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Soek vir lettertipes in geïnstalleerde lys"
+#: ../../printer/printerdrake.pm_.c:2519
+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 ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Die plaaslike netwer het nie met 'n '0' voltooi nie, ontsnap hier."
+#
+#: ../../printer/printerdrake.pm_.c:2529
+#, fuzzy
+msgid "Restarting printing system..."
+msgstr "Watter drukkerstelsel verlang u?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Boot"
-msgstr "Selflaai"
+#: ../../printer/printerdrake.pm_.c:2568
+#, fuzzy
+msgid "high"
+msgstr "Hoog"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " en die CD in die aandrywer is"
+#: ../../printer/printerdrake.pm_.c:2568
+#, fuzzy
+msgid "paranoid"
+msgstr "Paranoïes"
-#: ../../harddrake/v4l.pm:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid "Tuner type:"
-msgstr "Tipe instemmer"
+msgid "Installing a printing system in the %s security level"
+msgstr ""
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:2570
#, 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"
-"\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 ""
-"Dit is nou tyd om u drukkerstelsel te kies. Ander bedryfstelsels sal\n"
-"seker net een aan u bied, maar Mandrake Linux gee twee. Elk van hulle\n"
-"is beter as die ander in sekere gevalle.\n"
-"\n"
-" * \"%s\" -- wat vir \"print, don't queue\" staan. Kies dit indien u\n"
-"'n direkte konneksie na die drukker het, en u blitsig wil inmeng sodra\n"
-"daar probleme is, ook indien u nie netwerk-drukkers het nie. (\"%s\"\n"
-"hanteer net eenvoudige netwerk-toegang en is effe stadig deur die netwerk)\n"
-"Ons beveel aan dat u \"pdq\" gebruik indien u nog groen is met GNU/Linux.\n"
-"\n"
-" * \"%s\" - 'Common Unix Printing System', is 'n uitstekende keuse om na\n"
-"u plaaslike drukker, of na een in myle vanaf u, te druk. Eenvoudig om\n"
-"op te stel, kan kliënt of bediener rolle vertolk vir die lpd-fossiel. Dit\n"
-" beteken dat ons omsien na ons veterane! Dit is baie kragtig, maar 'n\n"
-"elementêre opstel is byna so maklik soos \"pdq\". Indien u 'n lpd-\n"
-"bediener wil nastreef, maak seker dat u die \"cups-lpd\"-daemoon\n"
-"loop. \"%s\" sluit grafiese programme in om vanaf te druk of om\n"
-"opsies te keis en drukkers te bestuur.\n"
-"\n"
-"Sou u die keuse nou, later wil verander, gaan gerus na 'PrinterDrake'\n"
-"in die 'Mandrake Control Center' en klik op die \"Kenner\" knoppie."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
-msgstr "\"Menu\"-sleutel"
+"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_.c:2604
+#, fuzzy
+msgid "Starting the printing system at boot time"
+msgstr "Watter drukkerstelsel verlang u?"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2605
#, 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"
-"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."
+"Do you want to have the automatic starting of the printing system turned on "
+"again?"
msgstr ""
-"\n"
-"\n"
-"Maak tog seker dat 'Printerdrake' u drukker korrek bespeur het. Sou dit "
-"verkeerdelik bespeur was, of \"Onverwerkte (direkte) drukker\" verlig is, "
-"kies dan die korrekte een vanuit die lys."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Administrator:"
-msgstr "Sekuriteits-admin:"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
-msgstr "Voorsien die tydsbeperking van die dop. Indien geen, maak dit Zero"
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
+msgstr "Installeerde sagteware word deursoek..."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "Kopieer van Fermware was suksesvol"
+#: ../../printer/printerdrake.pm_.c:2630
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "LPD word verwyder..."
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid ""
-"You can't use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2636
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "Installeer pakket %s"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
-msgstr ""
-"indien ja gekies is, ondersoek lêer-vergunningsvlakke in gebuiker se tuisgids"
+#: ../../printer/printerdrake.pm_.c:2685
+msgid "Select Printer Spooler"
+msgstr "Kies drukkerspoelprogram"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"U het nie 'n Internetkonneksie nie.\n"
-"Skep eerstens een deur op 'Konfigureer' te klik"
+#
+#: ../../printer/printerdrake.pm_.c:2686
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Watter drukkerstelsel (spoelprogram) verlang u?"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Fonts copy"
-msgstr "Kopieer Lettertipes"
+#: ../../printer/printerdrake.pm_.c:2720
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
+msgstr "Konfigureer drukker"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
-msgstr "Outomaties"
+#: ../../printer/printerdrake.pm_.c:2731
+#, fuzzy
+msgid "Installing Foomatic..."
+msgstr "Installeer pakket %s"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Wil u die konfigurasie toets?"
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr "Drukkeropsies"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
-msgstr ""
-"Die drukker \"%s\" is suksesvol uit Star Office/OpenOffice.org/GIMP verwyder"
+#: ../../printer/printerdrake.pm_.c:2810
+#, fuzzy
+msgid "Preparing Printerdrake..."
+msgstr "Drukkerdata word gelees..."
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save packages selection"
-msgstr "Stoor pakketseleksie"
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+#, fuzzy
+msgid "Configuring applications..."
+msgstr "Konfigureer drukker"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Actions"
-msgstr "/_Aksies"
+#: ../../printer/printerdrake.pm_.c:2845
+msgid "Would you like to configure printing?"
+msgstr "Wil u 'n drukwerk nou konfigureer?"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Remove the last item"
-msgstr "Verwyder die laaste item"
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
+msgstr "Drukkerstelsel:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
+#: ../../printer/printerdrake.pm_.c:2915
+#, fuzzy
+msgid ""
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
-"Gebruikers om te herstel ( slegs die mees onlangse datum / gebruiker is "
-"belangrik)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
-msgstr "Geen netwerk-selflaai beelde is geskep"
+"Hier is die bestaande drukkertoue.\n"
+"U kan byvoeg or verwyder soos nodig."
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "gebruik pptp"
+#: ../../printer/printerdrake.pm_.c:2916
+#, fuzzy
+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 ""
+"Hier is die bestaande drukkertoue.\n"
+"U kan byvoeg or verwyder soos nodig."
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Kies watter dienste moet outomaties begin met herlaaityd."
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check files/directories writable by everybody"
-msgstr "Soek vir lêers/lêergidse waarna enige iemand kan skryf."
+#: ../../printer/printerdrake.pm_.c:2960
+#, fuzzy
+msgid "Change the printing system"
+msgstr "Stel netwerk op"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Leer hoe om hierdie drukker te gebruik"
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+msgid "Normal Mode"
+msgstr "Normale modus"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configure the network now"
-msgstr "Stel nou die netwerk op"
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+#, fuzzy
+msgid "Do you want to configure another printer?"
+msgstr "Wil u die konfigurasie toets?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Kies 'n spieël waar die pakkette verkry kan word"
+#: ../../printer/printerdrake.pm_.c:3211
+msgid "Modify printer configuration"
+msgstr "Verander drukkerkonfigurasie"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:3213
+#, fuzzy, c-format
msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
-"Die FAT-verstellingsprogram kan nie u partisie hanteer nie.\n"
-"Fout: %s"
+"Drukker %s: %s %s\n"
+"Wil u hierdie drukker verander?"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Size: "
-msgstr "Grootte: "
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
+msgstr "Gaan voort!"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "Na watter sektor wil u skuif?"
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+msgid "Printer connection type"
+msgstr "Drukkerkonneksietipe"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahamas"
-msgstr "Bahamas"
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+msgid "Printer name, description, location"
+msgstr "Drukkernaam,. beskrywing, ligging"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Do you want to click on this button?"
-msgstr "Wil u op hierdie knoppie klik?"
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
+msgstr "Drukkervervaardiger, model, drywer"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Manual configuration"
-msgstr "Selfdoen konfigurasie"
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
+msgstr "Drukkervervaardiger, model"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "search"
-msgstr "soek"
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
+msgstr "Maak hierdie die verstekdrukker"
-#: ../../services.pm:1
-#, 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."
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-"Hierdie pakket laai die sleutelbordkaart soos dit in\n"
-"/etc/sysconfig/keyboard\n"
-"opgestel is. Dit kan vernader word met die kbdconfig nutsprogram.\n"
-"U moet dit op meeste rekenaars ongesper laat."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (installasievertoondrywer)"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "'Zeroconf'-naam mag nie 'n '.' bevat nie"
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr "Aanvaar/Weier icmp-ego's."
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+msgid "Print test pages"
+msgstr "Druk toetsbladsy(e)"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Syslog is the facility by which many daemons use to log messages\n"
-"to various system log files. It is a good idea to always run syslog."
-msgstr ""
-"Syslog is die fasiliteit wat baie diensprogramme gebruik om boodskappe\n"
-"te log na 'n verskeidenheid loglêers. Dit is altyd goed om syslog te loop."
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+#, fuzzy
+msgid "Know how to use this printer"
+msgstr "Wil u die konfigurasie toets?"
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown/Others"
-msgstr "Onbekend/Ander"
+#
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+msgid "Remove printer"
+msgstr "Verwyder drukker"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
-msgstr "Geen TV-kaart opgespoor!"
+#: ../../printer/printerdrake.pm_.c:3282
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
+msgstr "Drukkerdata word gelees..."
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Options"
-msgstr "Opsies"
+#: ../../printer/printerdrake.pm_.c:3307
+msgid "Default printer"
+msgstr "Verstek drukker"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3308
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Drukker \"%s\" is nou die verstekdrukker"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-"U stel nou 'n OKI laser-windrukker op. Hierdie drukkers\n"
-"gebruik 'n baie spesiale protokol vir kommunikasie en kan slegs korrek werk "
-"indien hulle aan die eerste parallelle poort gekoppel word. Sou u drukker "
-"tans elders gekoppel wees, skuif dit na die eerste parallele poort voordat u "
-"'n toetsbladsy druk. Dit is baie belangrik, anders sal die drukker nie reg "
-"werk nie, en die drywer sal u tipe konneksie ignoreer."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr "verwerker se generasie (bv. 8 vir PentiumIII,...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detected"
-msgstr "Outomaties Opgespoor"
-
-#: ../../standalone/drakpxe:1
+#: ../../printer/printerdrake.pm_.c:3312
#, 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)."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"You are about to configure your computer to install a PXE server as a DHCP "
-"server\n"
-"and a TFTP server to build an installation server.\n"
-"With that feature, other computers on your local network will be installable "
-"using this computer as source.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm_.c:3313
#, 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 "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"OSS (Open Sound System) was die eerste klank-API. Dit is onafhanklikvan die "
-"bedryfstelsel (dus is dit beskikbaar op meeste UNIX(tm) stelselsdit is 'n "
-"vreeslik basiese API.\n"
-"Drywers vir OSS is ook vreeslik omslagtig\n"
-"\n"
-"ALSA (Advanced Linux Sound Architecture) het 'n modulêre argitektuur wat\n"
-"'n wye verskeidenheid ISA, USB en PCI kaarte ondersteun.\n"
-"\n"
-"Die API is ook heelwat hoër as die van OSS.\n"
-"\n"
-"On alsa te gebruik, kan u:\n"
-"- die ou versoenbare OSS-api gebruik\n"
-"- die nuwe ALSA-api gebruik. Dit het heelwat gevorderde\n"
-"glanspunte het, maar moet die ALSA programmateek gebruik\n"
-#: ../../install_steps_interactive.pm:1
-#, 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"
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-"Geen beskikbare 1MB herlaaipartisie nie! Installasie sal voortgaan, maar u "
-"sal herlaaipartisie met DiskDrake moet skep indien u die stelsel wil "
-"herlaai."
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3317
#, c-format
msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-"Kies asseblief die drukker wat u wil opstel of voorsien 'n toestel-/lêer-"
-"naam "
-
-#
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
-msgstr "Weier"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
-msgstr "PLAASLIK"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-"HardDrake tas die hardeware af, en konfigureer\n"
-"nuwe/veranderde hardeware."
-#: ../../fs.pm:1
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Lêer %s word geskep en formatteer"
+#: ../../printer/printerdrake.pm_.c:3325
+#, fuzzy, c-format
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Wil u die werklik die drukker verwyder?"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
-msgstr "indien ja gekies is, ondersoek byvoeg/verwydering van sgid-lêers."
+#: ../../printer/printerdrake.pm_.c:3329
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
+msgstr "Drukkerdata word gelees..."
-#: ../../printer/printerdrake.pm:1
-#, 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"
-msgstr ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"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"
-
-#: ../../diskdrake/interactive.pm:1
+#: ../../raid.pm_.c:35
#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "Kies 'n bestaande LVM om by toe te voeg"
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "Kan nie 'n partisie by geformatteerde RAID md%d byvoeg nie"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "xfs restart"
-msgstr "herbegin xfs"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
+msgstr "mkraid het gefaal"
-#: ../../printer/printerdrake.pm:1
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid het gefaal. Dalk is 'raidtools' nie beskikbaar nie."
+
+#: ../../raid.pm_.c:153
#, c-format
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "Nie genoeg partisies vir RAID vlak %d nie\n"
+
+#: ../../security/main.pm_.c:36
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
+"\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
+"\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\n"
+"\n"
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
+"\n"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
-"Drukker \"%s\" bestaan alreeds,\n"
-"Wil u werklik die konfigurasie oorskryf?"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Gebruik skandeerders op rekenaars: "
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Sekuriteitsvlak word gestel."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
-msgstr "Herstel Keuses"
+#: ../../security/main.pm_.c:77
+#, fuzzy, c-format
+msgid " (default value: %s)"
+msgstr " (Verstek)"
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "geen beskikbare partisies"
+#: ../../security/main.pm_.c:113
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Sekuriteitsvlak word gestel."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Management \n"
-msgstr "Bestuur Drukkers \n"
+#: ../../security/main.pm_.c:115
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Eksterne lpd drukkeropsies"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Oplosser van Domeinnaam"
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "Network Options"
+msgstr "Module opsies:"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
-msgstr "Enkripsie-sleutel (nogmaals)"
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "System Options"
+msgstr "Module opsies:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
-msgstr "SAMBA-deelnaam ontbreek!"
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
-msgstr "'True Type' (lettertipes) installasie"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detection in progress"
-msgstr "Bespeuring aan die gebeur"
+#: ../../security/main.pm_.c:191
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Sekuriteitsvlak word gestel."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Bou die Hele 'Kernel' -->"
+#: ../../security/main.pm_.c:197
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Wag asb. installasie word voorberei"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "modem"
-msgstr "modem"
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr "Loop die ALSA (Gevorderde Linux Klankargitektuur) klankstelsel"
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "Welkom by %s"
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
+msgstr "Anacron is skeduleerder vir periodiese instruksies."
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../services.pm_.c:21
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"
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-" 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"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Sit asb. die module-opdateringsfloppie in aandrywer %s"
+"apmd word gebruik om battery status te monitor en dit dan te log via "
+"syslog.\n"
+"Dit kan ook gebruik word om die rekenaar af te bring wanneer die battery "
+"swak is."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
-msgstr "Selflaai-splatskerm"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:23
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
+"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 ""
-"Die volgende drukker\n"
-"\n"
-"%s%s\n"
-"is direk aan u rekenaar gekoppel"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Deel drukkers op rekenaars/netwerke:"
+"Loop instruksies deur 'at' geskeduleer op die tyd deur 'at' gespesifiseer. "
+"Loop ook instruksiebondels wanneer die stelsellas laag genoeg is."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:25
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>\". "
+"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 ""
-"\n"
-"Die \"%s\"-opdrag laat u toe om opsies vir 'n sekere drukstuk te verander. "
-"Sit net doodeenvoudig die ekstra opsies by die opdragbyvoorbeeld \"%s <lêer>"
-"\". "
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "DrakClock"
-msgstr "Drakbackup"
+"cron is die standaard UNIX program om gebruikergespesifiseerde programme\n"
+"op periodies geskeduleerde tye te loop. vixie cron voeg addisionele "
+"funksionaliteit\n"
+"by die standaard UNIX cron, insluitende beter sekuriteit en 'n kragtiger "
+"konfigurasie."
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:28
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."
+"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 ""
-"In sekere gevalle sal die %s drywer ekstra inligting benodig, alhoewel in\n"
-"meeste gevalle dit nie nodig is nie. Wil u ekstra opsies voorsien of moet\n"
-"rekenaar self daarvoor aftas. In uitsonderlike gevalle mag die rekenaar\n"
-"vries, maar sal nie skade veroorsaak nie."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "Nie die korrekte CD nie. CD is %s genoem."
+"GPM verleen muisvermoëns aan teksgebaseerde Linuxapplikasies soos\n"
+"Midnight Commander. Dit laat muisgebaseerde knip-en-plak aksies op die\n"
+"konsole toe asook opspringkieskaarte."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:31
msgid ""
-"\n"
-"- Daemon, %s via:\n"
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
msgstr ""
-"\n"
-"- Daemoon %s via:\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "Kuba"
+#: ../../services.pm_.c:33
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+msgstr ""
+"Apache is 'n WWW-bediener.\n"
+"Dit kan HTML-lêers uitstuur en CGI's hanteer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr "Oktober"
+#: ../../services.pm_.c:34
+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 ""
+"Die internetsuperbedienerdiensprogram (gewoonlik inetd genoem) laai 'n\n"
+"verskeidenheid internetdienste soos nodig. Dit is gewoonlik verantwoordelik "
+"vir\n"
+"telnet, ftp, rsh en rlogin. As inetd gesper word, sper dit ook die dienste "
+"waarvoor\n"
+"inetd verantwoordelik is."
-#: ../../lang.pm:1
-#, c-format
-msgid "Belize"
-msgstr "Belize"
+#: ../../services.pm_.c:38
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Opsoek na nuwe drukkers..."
+#: ../../services.pm_.c:40
+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 ""
+"Hierdie pakket laai die sleutelbordkaart soos dit in /etc/sysconfig/"
+"keyboard\n"
+"opgestel is. Dit kan vernader word met die kbdconfig nutsprogram. U moet "
+"dit\n"
+"op meeste rekenaars ongesper laat."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
-msgstr " (multi-sessie)"
+#: ../../services.pm_.c:43
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
-msgstr "Tydsbeperking vir stelselkernlaai"
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr "Outobespeuring en hardewarekonfigurasie met herlaaityd."
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../services.pm_.c:46
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."
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
msgstr ""
-"U videokaart kan slegs 3D-versnelling onder XFree %s ondersteun.\n"
-"DIt word wel onder XFree %s ondersteun wat dalk beter\n"
-"2D-ondersteuning het."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Activate/Disable daily security check."
-msgstr "Aktiveer/Versper daaglikese sekuriteits-toets."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-R.\n"
+#: ../../services.pm_.c:48
+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 ""
+"lpd is die drukkerdiensprogram en is nodig vir lpr om te funksioneer.\n"
+"Dit is 'n diens wat drukstukke na drukkers toe reguleer."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
-msgstr "Ontsper 'libsafe' indien 'libsafe' teenwoordig is."
+#: ../../services.pm_.c:50
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Die DrakX partisioneringsassistent het die volgende oplossings:"
+#: ../../services.pm_.c:52
+#, fuzzy
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
+msgstr ""
+"named (BIND) is die domeinnaamdiens (DNS) wat gebruik word om\n"
+"rekenaarname na IP-adresse toe om te skakel."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "Hongaars"
+#: ../../services.pm_.c:53
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
+msgstr ""
+"Heg en ontheg all netwerklêerstels (NFS), SMB (Lan Manger/Windows)\n"
+"en NCP (Netware) hegpunte."
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../services.pm_.c:55
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
-"Kies u internetdiensvoorsiener.\n"
-"Indien nie in die lys nie kies Ongelys"
+"Aktiveer/Deaktiveer all netwerkkoppelvlakke wat opgestel is om by\n"
+"herlaaityf te begin."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Outo-tydsinkronisasie met NTP"
+#: ../../services.pm_.c:57
+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 ""
+"NFS is 'n populêre protokol vir lêerdeling oor TCP/IP netwerke.\n"
+"Hierdie diens voorsien NFS-bedienerfunksionaliteit. Dit word via\n"
+"die /etc/exports lêer opgestel."
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Gebruik my Windows-partisie"
+#: ../../services.pm_.c:60
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
+msgstr ""
+"NFS is 'n populêre protokol vir lêerdeling oor TCP/IP netwerke.\n"
+"Hierdie diens vorosien die NFS-lêersluitfunksionaliteit."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
+#: ../../services.pm_.c:62
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Server"
-msgstr "LDAP-bediener"
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr "Ondersteun die OKI-4W en aanpasbare WIN-drukkers"
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:65
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 "
@@ -13322,443 +8635,435 @@ msgstr ""
"gelaai word, behalwe as dit konfigureer is nie en dit is derhalwe\n"
"veilig om op rekenaars te hê wat dit nie nodig het nie."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Choose your country"
-msgstr "Kies u land"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:68
msgid ""
-"\n"
-"- System Files:\n"
+"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 ""
-"\n"
-" - Stelsel-lêers:\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
-msgstr "Alleenstaande nutsprogramme"
+"Portmapper bestuur RPC-konneksies wat deur protokolle soos NFS en NIS\n"
+"gebruik word. Portmap moet loop op rekenaars wat as bedieners vir hierdie\n"
+"protokolle, en ander protokolle wat die RPC meganisme gebruik, dien."
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Where"
-msgstr "Waar"
+#: ../../services.pm_.c:71
+#, fuzzy
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
+msgstr ""
+"POstfix is 'n E-posoordragagent (MTA). Dit is die program wat E-pos\n"
+"van een bediener na 'n ander oordra."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "but not matching"
-msgstr "maar nie passend"
+#: ../../services.pm_.c:72
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
+"Stoor en herstel die stelselentropiepoel vir hoë kwaliteit,\n"
+"lukraaknommergenerasie."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../services.pm_.c:74
msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
msgstr ""
-"Hier kan u 'n alternatiewe drywer vir u klankkaart kies ( OSS of ALSA)"
-"klankkaart (%s)."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Stel PCMCIA op..."
+#: ../../services.pm_.c:76
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
+msgstr ""
+"Die 'routed' diensprogram hanteer outomatiese IP-roeteertabelopdatering\n"
+"via die RIP protokol. Alhoewel RIP baie gebruik word in klein netwerke, is\n"
+"meer komplekse protokolle nodig vir komplekse netwerke."
-#: ../../common.pm:1
-#, c-format
-msgid "kdesu missing"
-msgstr "kdesu is weg"
+#: ../../services.pm_.c:79
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
+msgstr ""
+"Die 'rstat' protokol laat gebruikers op 'n netwerk toe om\n"
+"werksverrigtinginligting oor enige rekenaar op die netwerk te onttrek."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s benodig 'n gebruikernaam...\n"
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"Die 'rusers' protokol laat netwerkgebruikers toe om te bepaal wie\n"
+"aangeteken is op ander samewerkende rekenaars."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
-msgstr "Enkripsie-sleutel"
+#: ../../services.pm_.c:83
+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 ""
+"Die 'rwho' protokol laat eksterne gebruikers toe om te sien wie\n"
+"ingeteken is op 'n rkeneaar wat die 'rwho' diensprogram loop. (Amper soos "
+"'finger')."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
+msgstr "Laai die klankstelsel op u rekenaar"
-#: ../../keyboard.pm:1
-#, c-format
+#: ../../services.pm_.c:86
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."
+"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 ""
-"Hierdie verstelling sal aktief wees na die installasie.\n"
-"Gedurende installasie, moet u die regter 'Control'-sleutel\n"
-"gebruik om tussen die uitlegte te spring."
+"Syslog is die fasiliteit wat baie diensprogramme gebruik om boodskappe\n"
+"te log na 'n verskeidenheid loglêers. Dit is altyd goed om syslog te loop."
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "Christmas Island"
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr "Laai die drywers vir u USB-toestelle"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Automatic"
-msgstr "Outomatiese IP"
+#: ../../services.pm_.c:89
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+msgstr "Laai die X-fontbediener (dis nodig vir XFree)."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Installasie van herlaaiprogram het gefaal a.g.v. hierdie fout: "
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Kies watter dienste moet outomaties begin met herlaaityd."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "EIDE/SCSI channel"
+#: ../../services.pm_.c:127
+#, fuzzy
+msgid "Printing"
+msgstr "Druk"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Maak hierdie die verstekdrukker"
+#: ../../services.pm_.c:128
+msgid "Internet"
+msgstr "Internet"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Is %s die korrekte roete?"
+#: ../../services.pm_.c:131
+msgid "File sharing"
+msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "partisie %s"
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+#, fuzzy
+msgid "System"
+msgstr "Stelselmode"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Paranoid"
-msgstr "Paranoïes"
+#: ../../services.pm_.c:138
+#, fuzzy
+msgid "Remote Administration"
+msgstr "Eksterne lpd drukkeropsies"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS"
-msgstr "NIS"
+#: ../../services.pm_.c:146
+#, fuzzy
+msgid "Database Server"
+msgstr "Datbasis"
-#: ../../standalone/drakTermServ:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "<-- Del User"
-msgstr "<-- Verwyder gebruiker"
+msgid "Services: %d activated for %d registered"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Location on the bus"
-msgstr "Ligging op die bus"
+#: ../../services.pm_.c:191
+msgid "Services"
+msgstr "Dienste"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No printer found!"
-msgstr "Geen drukker gevind nie"
+#: ../../services.pm_.c:203
+msgid "running"
+msgstr "aktief"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
-msgstr "toestel se vervaardiger"
+#: ../../services.pm_.c:203
+msgid "stopped"
+msgstr "onaktief"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Erase entire disk"
-msgstr "Wis hele skyf"
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
+msgstr ""
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Default)"
-msgstr " (Verstek)"
+#: ../../services.pm_.c:222
+msgid ""
+"No additional information\n"
+"about this service, sorry."
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Automatic reconfiguration"
-msgstr "Outomatiese herkonfigurasie"
+#: ../../services.pm_.c:229
+msgid "On boot"
+msgstr "met herlaai"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Receiving Speed:"
-msgstr "Ontvangspoed"
+#: ../../services.pm_.c:241
+#, fuzzy
+msgid "Start"
+msgstr "Toestand"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
-msgstr "Turks en Caicos Eilande"
+#: ../../services.pm_.c:241
+#, fuzzy
+msgid "Stop"
+msgstr "Sektor"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Ip"
-msgstr "Geen IP"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr ""
-#: ../../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
-#, c-format
-msgid "<- Previous"
-msgstr "<- Vorige"
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Transfer Now"
-msgstr "Dra Nou Oor"
+#: ../../share/advertising/01-thanks.pl_.c:11
+msgid ""
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password and network authentication methods"
-msgstr "Stel 'root' se wagwoord en magtigings-metodes op"
+#
+#: ../../share/advertising/02-community.pl_.c:9
+#, fuzzy
+msgid "Get involved in the Free Software world"
+msgstr "Protokol vir die res van die wêreld"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "Skakel tussen plat- en groepsortering"
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Themes"
-msgstr "Temas"
+#: ../../share/advertising/02-community.pl_.c:11
+msgid ""
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
+msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "Opsies: %s"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Konnekteer aan die internet"
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-"U gebruik huidig %s as herlaaibestuurder.\n"
-"Kliek op Konfigureer om opstelassistent te laai."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "OKI windrukker-konfigurasie"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
-msgstr "Saint Helena"
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Parallelle poort #%s"
+#: ../../share/advertising/04-multimedia.pl_.c:11
+msgid ""
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Security Level"
-msgstr "Sekuriteitsvlak"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Speletjies"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
msgstr ""
-"Bepaalde stappe is nie afgehandel nie.\n"
-"\n"
-"Wil u werklik nou eindig?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "Sudan"
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+#, fuzzy
+msgid "Mandrake Control Center"
+msgstr "Beheersentrum"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "Pools (QWERTZ uitleg)"
+#: ../../share/advertising/06-mcc.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
-msgstr "Sirië"
+#: ../../share/advertising/07-desktop.pl_.c:9
+#, fuzzy
+msgid "User interfaces"
+msgstr "Netwerkkoppelvlak"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/07-desktop.pl_.c:10
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?"
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
-"Is u drukker 'n multi-funksionele toestel van HP or Sony (OfficeJet, PSC, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner, DeskJet 450, Sony IJP-V100), "
-"'n HP PhotoSmart of 'n HP LaserJet 2200?"
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
-#, c-format
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Ontwikkeling"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:11
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"
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-"Welkom by %s die bedryfstelselkeuseprogram!\n"
-"\n"
-"Kies u bedryfstelsel uit die bogelyste opsies of wag\n"
-"%d sekonde vir die verstekopsie.\n"
-"\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "Portugees"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
-msgstr "Teruglus lêernaam:"
+#: ../../share/advertising/09-server.pl_.c:10
+msgid ""
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "DNS-adres moet in 1.2.3.4. formaat wees"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Control key"
-msgstr "Linker 'Control'-sleutel"
+#: ../../share/advertising/10-mnf.pl_.c:10
+msgid ""
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
-msgstr "Serwië"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
+msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Newzealand"
-msgstr "Neu-Seeland"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
-msgstr "Hierdie lêergids moet altyd in die wortellêerstelsel bly"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
-msgstr "Oor Die Netwerk"
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
-msgstr "'Capslock'-sleutel"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "Installeer herlaaistelsel"
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Kies die geheue grootte van u videokaart"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
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))."
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
msgstr ""
-"Versper/Ontsper 'crantab' en 'at' vir gebruikers.\n"
-"\n"
-"Plaas toegelete gebruikers in /etc/cron.allow en /etc/at.allow\n"
-"(verwys na man at(1) en crontab(1))."
-#: ../../standalone.pm:1
-#, c-format
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
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."
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-"[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."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
-msgstr "Dinamiese IP-adres poel:"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "Kundige"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "LVM naam?"
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
+msgstr ""
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "Sommige toestelle in die \"%s\"-hardewareklas is verwyder:\n"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+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 ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Het %s %s koppelvlakke gevind"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Kundige"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Install"
-msgstr "Post-installasie"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The internal domain name"
-msgstr "Die interne domeinnaam"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "Kaart IRQ"
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "logdrake"
+#: ../../share/advertising/17-mdkclub.pl_.c:10
+msgid ""
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
+msgstr ""
-#: ../../standalone.pm:1
-#, c-format
+#: ../../standalone.pm_.c:21
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."
+"This program is free software; you can redistribute it and/or modify\n"
+"it under the terms of the GNU General Public License as published by\n"
+"the Free Software Foundation; either version 2, or (at your option)\n"
+"any later version.\n"
+"\n"
+"This program is distributed in the hope that it will be useful,\n"
+"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
+"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
+"GNU General Public License for more details.\n"
+"\n"
+"You should have received a copy of the GNU General Public License\n"
+"along with this program; if not, write to the Free Software\n"
+"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
msgstr ""
+
+#: ../../standalone.pm_.c:40
+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 name.\n"
+msgstr ""
+
+#: ../../standalone.pm_.c:51
+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.pm_.c:57
+msgid ""
"Font Importation and monitoring "
"application \n"
"--windows_import : import from all available windows partitions.\n"
@@ -13771,7174 +9076,4319 @@ msgstr ""
" : 1 all application available supported.\n"
" : name_of_application like so for staroffice \n"
" : and gs for ghostscript for only this one."
-
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Kies die sagteskyfaandrywer wat u wil gebruik"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr "LILO met tekskieskaart"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Alles (geen vuurmuur)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
-msgstr "U moet 'n kernel-beeld spesifiseer"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", multi-funksionele toestel op USB"
+#: ../../standalone.pm_.c:68
+msgid ""
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
+msgstr ""
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Do"
-msgstr "Doen"
+#: ../../standalone.pm_.c:70
+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)"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Spieël word gekontak vir die lys van pakkette..."
+#: ../../standalone.pm_.c:82
+#, fuzzy
+msgid "[keyboard]"
+msgstr "Sleutelbord"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lituanies AZERTY (oud)"
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasiliaans (ABNT-2)"
+#: ../../standalone.pm_.c:84
+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 ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
-msgstr "IP-adres van rekenaar/netwerk"
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone.pm_.c:94
msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
+"[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 ""
-"die vorderingsbalk se y koördinaat\n"
-"van sy linker-boonste hoek"
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System installation"
-msgstr "Stelsel-installasie"
+#: ../../standalone.pm_.c:99
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint Vincent en die Grenadines"
+#: ../../standalone.pm_.c:100
+msgid ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
+msgstr ""
-#: ../../security/help.pm:1
+#: ../../standalone.pm_.c:114
#, c-format
-msgid "Allow/Forbid reboot by the console user."
-msgstr "Laat toe/Verbied herbegin deur 'n konsole-gebruiker."
+msgid ""
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Open"
-msgstr "/Lêer/_Oopmaak"
+#: ../../standalone.pm_.c:168
+#, fuzzy
+msgid "Installing packages..."
+msgstr "Installeer pakket %s"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "Ligging van 'auto_install.cfg'-lêer"
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
-#: ../../any.pm:1
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "Open Firmware Delay"
-msgstr "Open Firmware Delay"
+msgid "Please relog into %s to activate the changes"
+msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
-msgstr "Hongarye"
+#: ../../standalone/drakTermServ_.c:239
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Dra drukkerkonfigurasie oor"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Zealand"
-msgstr "Neu-Seeland"
+#: ../../standalone/drakTermServ_.c:253
+#, fuzzy
+msgid "Enable Server"
+msgstr "Datbasis"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Color configuration"
-msgstr "Kleurkonfigurasie"
+#: ../../standalone/drakTermServ_.c:260
+#, fuzzy
+msgid "Disable Server"
+msgstr "Datbasis"
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr "Daar is reeds beperkings, en outomatise toetse word snags gedoen."
+#: ../../standalone/drakTermServ_.c:268
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS-bediener"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "please choose the date to restore"
-msgstr "kies asseblief die datum om te herstel"
+#: ../../standalone/drakTermServ_.c:275
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS-bediener"
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
-msgstr "Netherlands Antilles"
+#: ../../standalone/drakTermServ_.c:283
+msgid "Etherboot Floppy/ISO"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr "Oorskakeling van ext2 na ext3"
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
+msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
+#: ../../standalone/drakTermServ_.c:294
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Voeg gebruiker by"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Blaai tot by nuwe herstel-pakplek."
+#: ../../standalone/drakTermServ_.c:299
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP-Kliënt"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:328
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\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/drakTermServ_.c:332
+msgid ""
"\n"
-"Welkom by die 'Printer Setup Wizard'\n"
"\n"
-"Hierdie assistent help met die installasie van plaaslike en eksterne "
-"drukkers wat vanaf hierdie en ander masjiene gebruik gaan word\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
-"Dit sal vir die nodige inligting vra om die drukker op te stel, dit gee u "
-"toegang tot alle beskikbare drywers, drywer opsies en konneksie tipes."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and %d unknown printers"
-msgstr "en %d onbekende drukkers"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
msgstr ""
-"Vroeë Intel Pentium ververkers het probleme gehad wanneer 'Floating point "
-"DIVision (FDIV)' gedoen moes word. (die presisie was soms nie reg nie)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr "Rugsteunkwota oorskry! %d MB gebruik vs %d MB eenkant gesit."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Geen ISDN PCI-kaart gevind nie. Kies asb. een op die volgende skerm."
-
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
-msgstr "GB"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
-msgstr "Gee asb. 'n gebruikerskode"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
-msgstr "Laat CD-herlaai toe?"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Simply reboot"
-msgstr ""
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid " enter `void' for void entry"
-msgstr " noem 'n leë inskrywing 'void'"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr "Rugsteune op nie-hegbare media - Gebruik Katologus vir herstel"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
-msgstr "Januarie"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password history length"
-msgstr "Lengte van wagwoord-geskiedenis"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Winmodem connection"
-msgstr "Winmodemkonneksie"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:365
msgid ""
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\n"
"\n"
-"Congratulations, your printer is now installed and configured!\n"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\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 ""
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
"\n"
-"Geluk, u drukker is nou geïnstalleer en gekonfigureer!\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
+"\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
"\n"
-"U kan druk deur die \"Print\"-opdrag van u program (gewoonlik in die \"File"
-"\"-kieslys)te gebruik.\n"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \n"
"\n"
-"Indien u 'n drukker wil byvoeg, sy naam , of die opsies wil verander, kies "
-"\"Drukker\" in die \"Hardeware\" gedeelte van die 'Mandrake Control Center'."
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "U kan nou xawtv gebruik ( onder X-Window! )!\n"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Nie genoeg ruilarea om die installasie te voltooi. Voeg asb. by."
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
+msgstr ""
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "%s on %s"
-msgstr "%s op %s"
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid remote root login."
-msgstr "Laat toe/Verbied 'root' deur die netwerk in te teken."
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
+msgstr ""
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"GNU/Linux gebruik die GMT (Greenwich Mean Time) as verwysing en verstel\n"
-"dan die tyd volgens u tydsone. Dit beteken dat, in Suid-Afrika,\n"
-"die tyd op die moederbord sowat twee ure \"uit\" sal wees,\n"
-"indien u Johannesburg as tydsone kies. U kan GNU/Linux forseer om\n"
-"die moederbord en plaaslike tyd dieselfde te hou deur NIE die \"%s\" te\n"
-"merk NIE. Gebruik dit so wanneer die rekenaar\n"
-"ander bedryfstelsels ook kan laai, byvoorbeeld Windows.\n"
-"\n"
-"Die \"%s\"-opsie sal outomaties die klok reguleer deur gebruik te maak van\n"
-"'n eksterne tyd-bediener op die Internet. U sal natuurlik 'n werkende\n"
-"Internetkonneksie daarvoor benodig. Kies 'n bediener naby u. Hierdie opsie\n"
-"laat u toe om hierdie rekenaar self as 'n tyd-bediener te gebruik."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
-msgstr "Kan nie staaflêer skep nie!"
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
+msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Wat is u tydsone?"
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Gebruik '.backupignore'-lêers"
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
-msgstr "Guinee"
+#: ../../standalone/drakTermServ_.c:587
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nie gekonnekteer nieKabelkonneksie"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Die stelsel is nou aan die internet gekonnekteer."
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "South Georgia and the South Sandwich Islands"
+#: ../../standalone/drakTermServ_.c:604
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Uitwis"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Japan (uitsaai)"
+#: ../../standalone/drakTermServ_.c:611
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Selekteer lOer"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:668
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."
+"!!! 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 ""
-"Monitor\n"
-"\n"
-" Die program sal gewoonlik u monitor korrek kies.\n"
-"Indien nie, kan u self die regte een vanaf hierdie lys kies."
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "Mosambiek"
+#: ../../standalone/drakTermServ_.c:673
+#, fuzzy
+msgid "Add User -->"
+msgstr "Voeg gebruiker by"
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "Ikoon"
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
+msgstr ""
-#: ../../../move/tree/mdk_totem:1
+#: ../../standalone/drakTermServ_.c:720
#, fuzzy, c-format
-msgid "Kill those programs"
-msgstr "toegang na X-programme"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Kies asseblief wat u wil rugsteun"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 kleure (8 bis)"
+msgid "type: %s"
+msgstr "Tipe:"
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "Lees-skryf"
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "Grootte: %s\n"
+#: ../../standalone/drakTermServ_.c:773
+#, fuzzy
+msgid "Thin Client"
+msgstr "DHCP-Kliënt"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Hostname: "
-msgstr "Rekenaarnaam: "
+#: ../../standalone/drakTermServ_.c:775
+#, fuzzy
+msgid "Allow Thin Clients"
+msgstr "DHCP-Kliënt"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a rule"
-msgstr "Voeg 'n reel by"
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Blokgrootte %s\n"
+#: ../../standalone/drakTermServ_.c:821
+#, fuzzy
+msgid "<-- Edit Client"
+msgstr "DHCP-Kliënt"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
-msgstr "Bou aan die toekoms van Linux!"
+#: ../../standalone/drakTermServ_.c:837
+#, fuzzy
+msgid "Delete Client"
+msgstr "DHCP-Kliënt"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printer"
-msgstr "Plaaslike Drukker"
+#: ../../standalone/drakTermServ_.c:843
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Konfigurasie in aabou..."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Disket-toegangsfout, kan nie toestel %s heg nie"
+#: ../../standalone/drakTermServ_.c:876
+msgid ""
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
+msgstr ""
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL-konneksie"
+#
+#: ../../standalone/drakTermServ_.c:901
+#, fuzzy
+msgid "Netmask:"
+msgstr "Netmasker"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Geen konfigurasie nie, gebruik Wysgeer of Gevorderd.\n"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
+msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Error!"
-msgstr "Fout!"
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "cable connection detected"
-msgstr "Kabelkonneksie bespeur"
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "Toegang geweier met die oordrag van %s na %s"
+#: ../../standalone/drakTermServ_.c:929
+#, fuzzy
+msgid "Domain Name:"
+msgstr "Domeinnaam"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Raporteer 'n Fout"
+#: ../../standalone/drakTermServ_.c:937
+#, fuzzy
+msgid "Name Servers:"
+msgstr "NIS-bediener"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
-msgstr "Dominica"
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "Verstel Grootte"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Resolusie: %s\n"
+#: ../../standalone/drakTermServ_.c:1001
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Sluit konfigurasie af"
-#: ../../install2.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:1002
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)"
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-"Kan nie die toegang tot die 'kernel'-modules vir hierdie 'kernel' kry nie. "
-"( lêer %s is soek). Dit beteken normaalweg dat u selflaaiskyf verskil van "
-"die Installasie-media sin ( skep assebleif 'n nuwer disket)"
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
msgstr ""
-"Kies asb. die korrekte poort. Onthou dat COM1 onder MS Windows \n"
-"ttyS0 onder GNU/Linux is."
-
-#
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Die volgende pakkette gaan verwyder word"
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr "Konnekteer aan die internet"
+#: ../../standalone/drakTermServ_.c:1018
+#, fuzzy
+msgid "Write Config"
+msgstr "herkonfigureer"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
-msgstr "Gebruik bestaande partisies"
+#: ../../standalone/drakTermServ_.c:1120
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "Kanadees (Quebec)"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Muistoestel: %s\n"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Herkies die korrekte lettertipes"
+#: ../../standalone/drakTermServ_.c:1129
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Geen sagteskyaandrywer beskikbaar nie"
-#: ../../help.pm:1
+#: ../../standalone/drakTermServ_.c:1138
#, 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 "Etherboot ISO image is %s"
msgstr ""
-"Opsies\n"
-"\n"
-" hier kan u kies of u die rekenaar wil laat eindig in 'n grafiese "
-"koppelvlak\n"
-"na dit aangeskakel is. U sal natuurlik \"%s\" kies indien die rekenaar as\n"
-"'n bediener gebruik gaan word, of u nie die skerm reg kon opstel nie."
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert Corporate"
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Write protection"
-msgstr "Skryf-beskerming"
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "You've not selected any font"
-msgstr "U het geen lettertipe gekies nie"
+#: ../../standalone/drakautoinst_.c:40
+msgid "Error!"
+msgstr "Fout!"
-#: ../../steps.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, c-format
-msgid "Language"
-msgstr "Taal"
+msgid "I can't find needed image file `%s'."
+msgstr "Ek kan nie die nodige herlaaibeeld '%s' kry nie."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer model selection"
-msgstr "Drukkermodelkeuse"
+#: ../../standalone/drakautoinst_.c:43
+msgid "Auto Install Configurator"
+msgstr "Outoinstallasiekonfigurasieprogram"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:44
msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
+"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 ""
-"Alle data om hierdie partisie %s sal uitgewis word na verandering van die \n"
-"partisietipe"
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "ISDN adapters"
-msgstr "ISDN-kaart"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekondes"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Sit 'n leë floppie in aandrywer %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "'n Geldige URI moet verskaf word!"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr "Het \"%s\"-koppelvlak gevind, wil u dit gebruik?"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
-msgstr "Herkonfigureer die koppelvlak en DHCP-bediener"
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
+msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound configuration"
-msgstr "Klankkonfigurasie"
+#: ../../standalone/drakautoinst_.c:62
+#, fuzzy
+msgid "replay"
+msgstr "Herspeel"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
-msgstr "Fototoetsbladsy"
+#: ../../standalone/drakautoinst_.c:66
+msgid "Automatic Steps Configuration"
+msgstr "Outomatiese Stappe Konfigurasie"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Gespesialiseerde skyfpartisionering"
+#: ../../standalone/drakautoinst_.c:67
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Voorsien Drukkernaam en Opmerkings"
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Outoinstallasieskyf word geskep."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:139
msgid ""
-"The following printers\n"
"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Die volgende drukkers\n"
+"Welcome.\n"
"\n"
-"%s%s\n"
-"is direk aan u rekenaar gekoppel"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "You don't have any winmodem"
-msgstr "U het nie enige winmodems nie"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: %s"
-msgstr "tipe: %s"
+"The parameters of the auto-install are available in the sections on the left"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "Slovaaks (QWERTY)"
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
+msgstr "Geluk!"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:235
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."
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
msgstr ""
-"Hierdie moet 'n komma-afgeskeie lys van plaaslike gebruikers of e-posadresse "
-"wees van wie resultate van die rugsteune moet ontvang. U het 'n funksionele "
-"e-pos-oordrag agent (MTA) op die rekenaar nodig."
+"Die floppie is sukselvol geskep.\n"
+"U kan nou weer 'n installasie uitspeel."
-#: ../../standalone/draksound:1
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Geen Klankkaart opgespoor!"
+#: ../../standalone/drakautoinst_.c:273
+#, fuzzy
+msgid "Auto Install"
+msgstr "Installasie"
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "Muispoort"
+#: ../../standalone/drakautoinst_.c:343
+#, fuzzy
+msgid "Add an item"
+msgstr "Voeg 'n gebruiker by"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
-msgstr "Toets vir nie-veilige rekeninge"
+#: ../../standalone/drakautoinst_.c:350
+#, fuzzy
+msgid "Remove the last item"
+msgstr "Terugluslêer %s word geformateer"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
msgstr ""
-"Umoet die Vertoonbestuurder herbegin om die veranderinge te bekragtig.\n"
-"('service dm restart' - vanaf die konsole )"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Ftp Server"
-msgstr "FTP-bediener"
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr "Uganda"
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
-msgstr "%s lettertipe-omsetting"
+#: ../../standalone/drakbackup_.c:691
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "die tipe bus waaraan die muis gekoppel is"
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:704
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"
+" DrakBackup Report \n"
"\n"
-" * \"%s\": here you'll be able to fine control which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
msgstr ""
-"DrakX sal u 'n oorsig bied van u rekenaar se inligting. Afhangende van die\n"
-"sagteware wat u geïnstalleer het, sal u sommige of al die volgende "
-"afdelings\n"
-"hê. Elke inskrywing bestaan uit die item wat gekonfigureer moet word, asook\n"
-"'n kernopsomming oor die huidige stand.\n"
-"Klik op die ooreenkomstige \"%s\"-knoppie om dit te verander.\n"
-"\n"
-" * \"%s\": bekyk die huidige sleutelbord-uitleg en verander indien nodig.\n"
-"\n"
-" * \"%s\": bekyk die huidige keuse van u land. Indien u nie in hierdie land\n"
-"woon nie, klik op die \"%s\"-knoppie om 'n ander te kies. Sou dit nie in\n"
-"die lys wees nie, klik op die \"%s\"-knoppie vir 'n volledige lys.\n"
-"\n"
-" *\"%s\": By verstek word u tydsone aangepas, afhangende van die land\n"
-"wat u kies. Klik op die \"%s\"-knoppie indien dit verkeerd is.\n"
-"\n"
-" * \"%s\": ondersoek die huidige muiskonfigurasie en klik op die knoppie\n"
-"on dit te verander.\n"
-"\n"
-" * \"%s\": deur op die \"%s\"-knoppie te klik, sal u die drukker-assistent\n"
-"loods. Raadpleeg die ooreenkomstige hoofstuk in die \"Starter Guide\"\n"
-"vir meer inligting daaroor.\n"
-"\n"
-" * \"%s\": sou ons 'n klankkaart opspoor op die rekenaar, sal dit hier\n"
-"vertoon word. Indien u verskil van ons keuse, klik op die knoppie om\n"
-"'n ander drywer te kies.\n"
-"\n"
-" * \"%s\": DrakX stel u skerm op met 'n resolusie van \"800x600\"\n"
-" of \"1024x768\" by verstek. Indien u wil verander, kan u \"%s\"\n"
-"kies om dit te herkonfigureer.\n"
-"\n"
-" * \"%s\": indien 'n TV-kaart opgespoor is, sal dit hier vertoon. Inidien\n"
-"nie, en u het wel een, klik op \"%s\" om dit self op te stel.\n"
+
+#: ../../standalone/drakbackup_.c:705
+msgid ""
"\n"
-" * \"%s\": indien 'n ISDN-kaart opgespoor is, sal dit hier vertoon. Klik\n"
-"op \"%s\" om verstellings daarop aan te bring\n"
+" DrakBackup Daemon Report\n"
"\n"
-" * \"%s\": Indien u die netwerk en Internettoegang nou wil opstel\n"
"\n"
-" * \"%s\": hier kan u die sekuriteitsvlak verander wat in 'n vorige stap \n"
-"opgestel is.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:709
+msgid ""
"\n"
-" * \"%s\": Indien die masjien toegang tot die Internet sal hê, kan u gerus\n"
-"u rekenaar beskem teen die hansworse daar buite, deur 'n vuurmuur op te\n"
-"stel. Lees gerus meer daaroor op in die \"Starter Guide\"\n"
+" DrakBackup Report Details\n"
"\n"
-" * \"%s\": indien u die herlaaistelsel se konfigurasie wil verander. Word\n"
-"meer vir slimkoppe aanbeveel.\n"
"\n"
-" * \"%s\": hier kan u fyner verstellings maak op die dienste wat sal afskop\n"
-"Ondersoek dit gerus indien u die rekenaar as bediener gaan gebruik."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr "Comoros"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "May"
-msgstr "Mei"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yaboot mode"
-msgstr "Yaboot metode"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Generiese 3-knop muis"
+msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
-msgstr "VSK (kabel)"
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+#, fuzzy
+msgid "Total progess"
+msgstr "Toetsbladsye"
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakbackup_.c:785
#, c-format
msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+"%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 ""
-"Kan nie LiLo weer loods nie!\n"
-"Loods \"lilo\" onder die supergebruiker om die LiLo tema-installasie te "
-"voltooi."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Kies 'n ander media om vanaf te herstel"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Software Manager"
-msgstr "Software Manager"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
-msgstr "Dien weer in"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD in place - continue."
-msgstr "CD in sy plek - gaan voort."
-
-#: ../../common.pm:1
-#, c-format
-msgid "KB"
-msgstr "KB"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Network & Internet"
-msgstr "Netwerk & Internet"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituanies \"foneties\" QWERTY"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Net Boot Images"
-msgstr "Net-selflaai-beelde"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Deel van plaaslike skandeerders"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "'Plug 'n Play'-aftas het gefaal. Kies asseblief self die monitor"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Detect again USB key"
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Services and deamons"
-msgstr "Dienste en deamone"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Eksterne bedienernaam ontbreek!"
-
-#: ../../fsedit.pm:1
+#: ../../standalone/drakbackup_.c:801
#, c-format
-msgid "with /usr"
-msgstr "met '/usr'"
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid "Network"
-msgstr "Netwerk"
+msgid "No password prompt on %s at port %s"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr "Outospeur drukkers wat aan Microsoft Windows rekenaars gekoppel is"
+#: ../../standalone/drakbackup_.c:819
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Geen wagwoord"
-#: ../../any.pm:1
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "This password is too simple"
-msgstr "Die wagwoord is te eenvoudig"
+msgid "Permission denied transferring %s to %s"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "'Chkconfig' volg 'msec' se reëls"
+#: ../../standalone/drakbackup_.c:821
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Kan nie %s oopmaak nie: %s\n"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovaaks (QWERTZ)"
+msgid "%s not responding"
+msgstr ""
-#: ../advertising/06-development.pl:1
+#: ../../standalone/drakbackup_.c:828
#, 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."
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
msgstr ""
-"Om in verskillende programmeertale te werk is nou 'n plesier, danksy GNU gcc "
-"3 en die beste Oopbron ontwikkelikngs-omgewings. Tale sluit Perl, Phyton, "
-"PHP, C en C++ in."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No devices found"
-msgstr "Geen toestelle gevind nie"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Absolute minimale installasie (geen urpmi!)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use daemon"
-msgstr "Gebruik daemoon"
-
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "Magtiging"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Voeg hierdie drukker by Star Office/OpenOffice.org/GIMP"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Bykomende CUPS-bedieners: "
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
msgstr ""
-"Kien een van die drukkers uit die lys, wat ge-outospeur is, of voorsien die "
-"rekenaarnaam of IP en die opsionele poort (verstek is 9100) in die toevoer-"
-"velde."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr "Waar wil u toestel %s heg?"
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "Algerië"
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network"
-msgstr "Herstel Deur Netwerk"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd-grootte"
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
+msgstr ""
-#: ../../help.pm:1
+#: ../../standalone/drakbackup_.c:1060
#, 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."
+msgid "No tape in %s!"
msgstr ""
-"Indien daar verskillende tipe bedieners vir u kaart beskikbaar is, met of\n"
-"sonder 3D-versnelling, sal u gevra word om die een te kies wat u die beste\n"
-"sal pas."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tRugsteun gebruik 'tar' en 'gzip'\n"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
+msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set as default"
-msgstr "Maak verstek"
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+#, fuzzy
+msgid "Hard Disk Backup files..."
+msgstr "Korrupte rugsteunlêer"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
+#: ../../standalone/drakbackup_.c:1236
+#, fuzzy
+msgid "Backup User files..."
+msgstr "Korrupte rugsteunlêer"
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on this machine"
-msgstr "Gekonfigureer op hierdie rekenaar"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Beide Control-sleutels gelyktydig"
+#: ../../standalone/drakbackup_.c:1290
+#, fuzzy
+msgid "Backup Other files..."
+msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - vertoon hierdie help \n"
+#: ../../standalone/drakbackup_.c:1296
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Korrupte rugsteunlêer"
-#: ../../standalone.pm:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, 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"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-"[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"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Stel Verstekdrukker op ...."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Koppelvlak %s (met module %s)"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Generating preview ..."
-msgstr "Berei voorskou voor ..."
-#: ../../network/network.pm:1
+#: ../../standalone/drakbackup_.c:1319
#, 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)."
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-"Freq moet 'n k, M of G agtervoegsel kry. (byvoorbeeld, \"2.6G\" vir 2.46Ghz "
-"frekwensie), of u moet genoeg 0'e (zero's) byvoeg."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ignore"
-msgstr "ignoreer"
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1322
msgid ""
-"Allow/Forbid X connections:\n"
"\n"
-"- ALL (all connections are allowed),\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1340
+msgid ""
"\n"
-"- LOCAL (only connection from local machine),\n"
+"Drakbackup activities via CD:\n"
"\n"
-"- NONE (no connection)."
msgstr ""
-"Laat toe/Verbied X-konneksies:\n"
-"\n"
-"- ALMAL ( alle konneksies word toegelaat),\n"
+
+#: ../../standalone/drakbackup_.c:1345
+msgid ""
"\n"
-"- PLAASLIK (slegs vanaf die plaaslike rekenaar),\n"
+"Drakbackup activities via tape:\n"
"\n"
-"- GEEN (geen konneksie)."
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", multi-funksionele toestel op parallele poort #%s"
+#: ../../standalone/drakbackup_.c:1354
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Fout met die les van lêer %s"
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "seriaal"
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
-msgstr "DVD-ROM"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+#, fuzzy
+msgid "File Selection"
+msgstr "Pakketkeuse"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgies (Latynse uitleg)"
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
+msgstr ""
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
-msgstr "Verkry die betste items deur 'Mandrake Linux Strategic'-vennote"
+#: ../../standalone/drakbackup_.c:1573
+msgid ""
+"\n"
+"Please check all options that you need.\n"
+msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1574
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-"U kan nou opsies vir module %s voorsien.\n"
-"Let daarop dat enige adresse voorafgegaan moet word deur 0x (bv '0x123')"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "Kenia"
+#: ../../standalone/drakbackup_.c:1575
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Korrupte rugsteunlêer"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Gebruik ``Ontheg'' eerste"
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing mtools packages..."
-msgstr "Installeer 'mtools'-pakette ..."
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a root partition"
-msgstr "U moet 'n 'root-partisie spesifiseer"
+#: ../../standalone/drakbackup_.c:1578
+msgid ""
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "first step creation"
-msgstr "eertste stap skepping"
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Please check all users that you want to include in your backup."
+msgstr "Kies die pakkette wat u wil installeer"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Beide Shift-sleutels gelyktydig"
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
+msgstr ""
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select a scanner model"
-msgstr "Kies 'n skandeerder model"
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+#, fuzzy
+msgid "Remove Selected"
+msgstr "Verwyder tou"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
-msgstr "Aanvaar/Weier snert IPv4-foutboodskappe."
+#: ../../standalone/drakbackup_.c:1679
+#, fuzzy
+msgid "Windows (FAT32)"
+msgstr "Verwyder Windows(TM)"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - Nuwe generasie LPR"
+#: ../../standalone/drakbackup_.c:1714
+#, fuzzy
+msgid "Users"
+msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Drakbackup Konfigurasie"
+#: ../../standalone/drakbackup_.c:1740
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr "Stoor as.."
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr "Korea (Noord)"
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1747
msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-"Hierdie koppelvlak is nog nie opgestel nie.\n"
-"Loods die konfigurasie-assistent vanuit die hoof-venster"
-
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System configuration"
-msgstr "Stelsel-konfigurasie"
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "Outo-inteken"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin Password"
-msgstr "Domein-administrarteur se Wagwoord"
+#: ../../standalone/drakbackup_.c:1748
+#, fuzzy
+msgid ""
+" Transfer \n"
+"Now"
+msgstr "Oordrag"
-#: ../advertising/05-desktop.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1749
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, ..."
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-"U kan GUI-gewys in al u behoefdes voorsien danksy die 11 beskikbare "
-"koppelvlakke wat Mandrake Linux u bied. Hulle is ook volkome verstelbaar: "
-"KDE 3.1, GNOME 2.4, Window Maker,..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer ..."
-msgstr "Konfigureer drukker ..."
+#
+#: ../../standalone/drakbackup_.c:1753
+#, fuzzy
+msgid "Please enter the host name or IP."
+msgstr "Toets asb. die muis"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1758
msgid ""
-"To ensure data integrity after resizing the partition(s), \n"
-"filesystem checks will be run on your next boot into Windows(TM)"
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-"Om Data-integriteit te verseker nadat u die partisie(s)\n"
-"verklien het,sal daar toetste op u lêerstelsel(s) gedoen word,\n"
-"volgende keer as Windows(TM) selflaai"
-
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "MB"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
-msgstr "indien ja gekies is, doen 'n paar toetse teen die rpm-databasis."
+#: ../../standalone/drakbackup_.c:1763
+#, fuzzy
+msgid "Please enter your login"
+msgstr "Probeer asb. weer"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr "Virgin Eilande (Brits)"
+#: ../../standalone/drakbackup_.c:1768
+#, fuzzy
+msgid "Please enter your password"
+msgstr "Probeer asb. weer"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bermuda"
-msgstr "Bermuda"
+#: ../../standalone/drakbackup_.c:1774
+#, fuzzy
+msgid "Remember this password"
+msgstr "Geen wagwoord"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
-msgstr "indien u seker is, klik hier."
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
msgstr ""
-"Geen konfigurasielêer te vinde \n"
-"klik op Wysgeer of Gevorderd."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1882
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."
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-"Hier is 'n lys van die bestaande Linux partisies wat opgespoor is.\n"
-"U kan die assistent se keuses behou, hulle is gewoonlik geskik vir die\n"
-"meeste installasies. Sou u wil verander, moet u ten minste 'n wortel-\n"
-"partisie (\"/\") voorsien. Dit moet nie te klein wees nie, anders kan ons \n"
-"nie genog sagteware installeer nie. Indien u die data op 'n aparte \n"
-"partisie wil stoor, moet u ook 'n \"/home\"-partisie skep.\n"
-"(waarvoor u meer as een Linux partisie nodig het).\n"
-"\n"
-"Elke partisie word as volg gelys: \"Naam\", \"Kapasiteit\".\n"
-"\n"
-"\"Naam werk as volg\" \"tipe hardeskyf\", \"nommer van hardeskyf\",\n"
-"\"nommer van partisie\" (byvoorbeeld: \"hda1\").\n"
-"\n"
-"Indien u 'n IDE tipe hardeskyf het sal die tipe \"hd\" wees, en SCSI, sal \n"
-"\"sd\" wees\n"
-"\n"
-"Die nommer van die hardeskyf is altyd 'n letter, wat volg na \"hd\" \n"
-"of \"sd\".\n"
-"Met IDE hardeskywe:\n"
-"\n"
-" * \"a\" beteken \"meester-hardeskyf op die primêre IDE-beheerder\";\n"
-"\n"
-" * \"b\" beteken \"slaaf-hardeskyf op die primêre IDE-beheerder\";\n"
-"\n"
-" * \"c\" beteken \"meester-hardeskyf op die sekondêre IDE-beheerder\";\n"
-"\n"
-" * \"e\" beteken \"slaaf-hardeskyf op die sekondêre IDE-beheerder\";\n"
-"\n"
-"Met SCSI-hardeskywe, beteken 'n \"a\" die kleinste SCSI-ID,\"b\" sal\n"
-"dan die volgende ID verteenwoordig ens."
-#
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Remove"
-msgstr "Verwyder"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr "utopia 25"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Pyp drukstuk na program"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "Verwyder die terugluslêer?"
+#: ../../standalone/drakbackup_.c:1887
+#, fuzzy
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Wat is u sleutelborduitleg?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "Cote d'Ivoire"
+#: ../../standalone/drakbackup_.c:1893
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "nuwe toestelnaam is dinamies geskep deur die kernel se 'devfs'"
+#: ../../standalone/drakbackup_.c:1899
+#, fuzzy
+msgid "Please check if you are using CDRW media"
+msgstr "Kliek asb. op 'n partisie"
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "Ja"
+#: ../../standalone/drakbackup_.c:1905
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Kliek asb. op 'n partisie"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Watter protokol verlang u?"
+#: ../../standalone/drakbackup_.c:1906
+#, fuzzy
+msgid " Erase Now "
+msgstr "Oordrag"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Progress"
-msgstr "Vordering van Herstel"
+#: ../../standalone/drakbackup_.c:1912
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Kliek asb. op 'n partisie"
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
-msgstr "Estonië"
+#: ../../standalone/drakbackup_.c:1918
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Kliek asb. op 'n partisie"
-#: ../../partition_table.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1931
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."
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-"U het 'n gat die partisietabel maar ek kan dit nie gebruik nie.\n"
-"Die enigste oplossing is om die primêre partisie te skuif sodat die gat\n"
-"langs die ekstensie partisies is"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr ""
-"Kies rekenaar waarop plaaslike skandeerders beskikbaar gestel moet word:"
+#: ../../standalone/drakbackup_.c:1964
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Selekteer lOer"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Channel"
-msgstr "Kanaal"
+#: ../../standalone/drakbackup_.c:2012
+#, fuzzy
+msgid "Use tape to backup"
+msgstr "Korrupte rugsteunlêer"
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Add"
-msgstr "Voeg by"
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr "Fout met die stuur van e-pos. \n"
+#: ../../standalone/drakbackup_.c:2021
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Kies die pakkette wat u wil installeer"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "Sleutelbord"
+#: ../../standalone/drakbackup_.c:2027
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-"Plaas CD met die volume-naam %s\n"
-"in die CD-aandrywer onder hegpunt /mnt/cdrom"
+#: ../../standalone/drakbackup_.c:2033
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Kies die pakkette wat u wil installeer"
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
msgstr ""
-"Tempo moet agtervoegsels van k,M, of G kry (byvoorbeeld \"11M\" vir 11M) of "
-"voeg genoeg 0'e (zero'z) by."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Kies die konneksie wat u wil konfigureer"
+#
+#: ../../standalone/drakbackup_.c:2103
+#, fuzzy
+msgid "Please enter the directory to save to:"
+msgstr "Toets asb. die muis"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Net 'n oomblik, sekuriteitsvlak word gestel..."
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+#, fuzzy
+msgid "Use quota for backup files."
+msgstr "Korrupte rugsteunlêer"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfigureer netwerktoestel %s"
+#: ../../standalone/drakbackup_.c:2180
+#, fuzzy
+msgid "Network"
+msgstr "Netwerkkoppelvlak"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
-msgstr "ge-aktiveer"
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
msgstr ""
-"Kies asseblief die netwerkkoppelvlak wat u wil gebruik vir die dhcp-bediener."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Soek vir pakkette om op te gradeer..."
+#: ../../standalone/drakbackup_.c:2195
+#, fuzzy
+msgid "Tape"
+msgstr "Tipe"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
-msgstr "Hegpunt: "
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
-msgstr "ontleed alle lettetipes"
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid direct root login."
-msgstr "Laat toe/Weier vir 'root' om direk in te teken."
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr "Aanvaar/Weier uitgesaaide icmp-ego's"
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
-msgstr "Met X"
+#: ../../standalone/drakbackup_.c:2229
+#, fuzzy
+msgid "Use daemon"
+msgstr "Gebruikerskode"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Multikop-konfigurasie"
+#: ../../standalone/drakbackup_.c:2234
+#, fuzzy
+msgid ""
+"Please choose the time \n"
+"interval between each backup"
+msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "No browser available! Please install one"
-msgstr "Geen blaaier beskikbaar! Installeer asseblief een"
+#: ../../standalone/drakbackup_.c:2240
+#, fuzzy
+msgid ""
+"Please choose the\n"
+"media for backup."
+msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../Xconfig/main.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2247
msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
+"Please be sure that the cron daemon is included in your services. \n"
"\n"
-"%s"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-"Behou die veranderinge?\n"
-"Huidige konfigurasie is:\n"
-"\n"
-"%s"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "U kan nie ReiserFS vir partisies kleiner as 32MB gebruik nie"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
+msgstr ""
-#: ../../services.pm:1
-#, 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)."
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-"Die 'rwho' protokol laat eksterne gebruikers toe om te sien wie\n"
-"ingeteken is op 'n rkeneaar wat die 'rwho' diensprogram loop. (Amper soos "
-"'finger')."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "Domeinnaam"
+#: ../../standalone/drakbackup_.c:2324
+#, fuzzy
+msgid "What"
+msgstr "Wag"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Deel van plaaslike drukkers"
+#
+#: ../../standalone/drakbackup_.c:2329
+#, fuzzy
+msgid "Where"
+msgstr "Wiel"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
-msgstr "Versper/Ontsper 'libsafe' indien 'libsafe' teenwoordig is."
+#
+#: ../../standalone/drakbackup_.c:2334
+#, fuzzy
+msgid "When"
+msgstr "Wiel"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Available printers"
-msgstr "Beskikbare drukkers"
+#: ../../standalone/drakbackup_.c:2339
+#, fuzzy
+msgid "More Options"
+msgstr "Module opsies:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "NO"
-msgstr "NEE"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+#, fuzzy
+msgid "Drakbackup Configuration"
+msgstr "Netwerkkonfigurasie"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "Leeg"
+#: ../../standalone/drakbackup_.c:2376
+#, fuzzy
+msgid "Please choose where you want to backup"
+msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
-msgstr "teks-wydte"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Waar wil u toestel %s heg?"
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Die verstek huur tydperk (in sekondes)"
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
+#: ../../standalone/drakbackup_.c:2406
+msgid "on Tape Device"
msgstr ""
-"Ons gaan nou die %s konneksie konfigureer.\n"
-"\n"
-"\n"
-"Druk \"%s\" om voort te gaan."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Koppelvlak \"%s\""
+#: ../../standalone/drakbackup_.c:2449
+#, fuzzy
+msgid "Please choose what you want to backup"
+msgstr "Kies die pakkette wat u wil installeer"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Met basiese dokumentasie (word aanbeveel!)"
+#: ../../standalone/drakbackup_.c:2450
+#, fuzzy
+msgid "Backup system"
+msgstr "Stel lêerstelsels op"
-#: ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr "1 knop"
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2537
msgid ""
"\n"
-"There are %d unknown printers directly connected to your system"
+"Backup Sources: \n"
msgstr ""
-"\n"
-"Daar is %d onbekende drukkers direk aan u rekenaar gekoppel"
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Test"
-msgstr "Toets"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea"
-msgstr "Korea"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "U keuse? (verstek '%s'%s) "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer"
-msgstr "Onverwerkte (direkte) drukker"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "verwerker se amptelike handelsnaam"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
-msgstr "Waardeloos sonder Terninaal-bediener"
-
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Vendor"
-msgstr "Vervaardiger"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s"
-msgstr "Koppelvlak %s"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "Stel muistoestel op"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
-msgstr "Kies die hegpunte"
-
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr "OK"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslaavs (latynse uitleg)"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "Besig met installasie"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan met wielletjie-emulasie"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
-msgstr "Loods userdrake"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Is hierdie 'n installasie of opgradering?"
-
-#: ../../help.pm:1
-#, c-format
-msgid "ISDN card"
-msgstr "ISDN-kaart"
-#: ../advertising/02-community.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2538
msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
+"\n"
+"- System Files:\n"
msgstr ""
-"Om u kennis met die gemeenskap te deel en Linux-sagteware te bevorder, "
-"besoek ons \"Community\" webblaaie."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-Hardeskyf.\n"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2540
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."
+"- User Files:\n"
msgstr ""
-"Hierdie stap word slegs gedoen indien ou GNU/Linux partisies op die\n"
-"rekenaar gevind is.\n"
-"\n"
-"DrakX moet nou weet of u 'n nuwe installasie of 'n opgradering van 'n\n"
-"bestaande Mandrake Linux wil doen:\n"
-"\n"
-" * \"%s\": Hierdie deel word grootliks gebruik vir 'n hele nuwe "
-"installasie.\n"
-"Indien u aan die hardeskywe se partisies of die lêerstelsel wil verander,\n"
-"moet u hierdie opsie kies. Maar u kan ook hierdie een kies indien u sekere\n"
-"van u partisies se data wil behou.\n"
-"\n"
-" * \"%s\": hierdie tipe installasie laat u toe om pakkette op te dateer\n"
-"wat deel uitmaak van u huidige Mandrake Linux installasie. Die partisies\n"
-"en gebruiker se data bly onveranderd. Ander stappe is baie dieselfde as\n"
-"'n normale installasie.\n"
-"\n"
-"Die gebruik van die 'Opdateer' opsie behoort reg te werk vir al die\n"
-"weergawes vanaf \"8.1\" en opwaarts. Ons raai u af on dit op weergawes\n"
-"ouer as \"8.1\" te probeer."
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2542
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"
+"- Other Files:\n"
msgstr ""
-"\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"
-#
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Eksterne CUPS-drukker"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2544
#, c-format
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+"\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-"Probleme om drukker \"%s\" uit Star Office/OpenOffice.org/GIMP te verwyder"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
-msgstr "hier indien nee."
-
-#
-#: ../../network/network.pm:1
-#, c-format
-msgid "DHCP host name"
-msgstr "DHCP-rekenaarnaam"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Die maksimun huur tydperk (in sekondes)"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Aan watter seriaalpoort is u muis gekoppel?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
-msgstr "Het dit reg gewerk?"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
-msgstr "Heg die lêerstelsel as lees-alleen."
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "Lig"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result by mail"
-msgstr "Stuur toets-reslutate via e-pos"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
-msgstr "Grenada"
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
-msgstr "Die DHCP-reeks se begin"
+#: ../../standalone/drakbackup_.c:2553
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "Onveilig"
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
+msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: ../../standalone/drakbackup_.c:2555
#, fuzzy, c-format
-msgid "SSH server"
-msgstr "SSH-bediener"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektore"
-
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "Nee"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Kannada"
-msgstr "Kanada"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
-msgstr "kon nie enige lettertipes vind nie.\n"
+msgid " on device: %s"
+msgstr "Muistoestel: %s\n"
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
msgstr ""
-"Wil u hê dat die 'BackSpace' sleutel moet uitvee in die konsole ('n 'Delete' "
-"terugstuur)?"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Vertikale verfristempo"
-
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Gaan stap '%s' binne\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niger"
-msgstr "Niger"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing %s ..."
-msgstr "Verwyder %s ..."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No printer"
-msgstr "Geen drukker"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "alert configuration"
-msgstr "Waarsku-konfigurasie"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2557
#, c-format
-msgid "NetWare Printer Options"
-msgstr "NetWare drukkeropsies"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "%s BootSplash (%s) preview"
-msgstr "%s Selflaai-splatskerm (%s) voorskou"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "February"
-msgstr "Februarie"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
-msgstr "Algemeen"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
-msgstr "/etc/issue* bestaan reeds"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "Voeg 'n gebruiker by"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netwerkkonfigurasie (%d toestelle)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "April"
-msgstr "April"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Deactivate now"
-msgstr "Deaktiveer nou dadelik"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Verpligte pakket %s ontbreek"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Filippyne"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "OK"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "drakTermServ Overview"
-msgstr "drakTermServ Oorsig"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
-msgstr "Drukkertou-naam"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Wil u aboot gebruik?"
+msgid ""
+"\n"
+"- Save to Tape on device: %s"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "Belarusian"
-msgstr "Belarussies"
+msgid "\t\tErase=%s"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2561
#, c-format
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"\n"
+"- Save via %s on host: %s\n"
msgstr ""
-"PDQ ondersteun slegs plaaslike drukkers, eksterne drukkers, en Sok/TCP "
-"drukkers.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move files to the new partition"
-msgstr "Verskuif lêers na nuwe partisie toe"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2562
#, 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."
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
msgstr ""
-"Voeg die CUPS-bedieners, wie se drukkers u wil gebruik, hier by. U hoef dit "
-"slegs te doen indien die bedieners nie hulle drukkers se inligting uitsaai "
-"oor die plaaslike netwerk nie."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2563
+#, fuzzy
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."
+"- Options:\n"
+msgstr "Opsies"
+
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
msgstr ""
-"\n"
-"Welkom by die 'Printer Setup Wizard'\n"
-"\n"
-"\n"
-"Hierdie wysgeer sal u help op u drukker(s), wat aan u rekenaar gekoppel is, "
-"op te stel, \n"
-"Maak tog seker die drukker(s) is reg gekoppel en aangeskakel, sodat "
-"outospeur sy werk reg kan doen. \n"
-"Klik op \"Volgende\" sodra u gereed is, of op \"Kanselleer\" indien u nou "
-"enige drukkers wil opstel nie."
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
-msgstr "Pitcairn"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Herstel Vanaf Katalogus"
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:2572
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid ""
+"\n"
+"- Daemon (%s) include:\n"
+msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "heg van partisie %s in lêergids %s het gefaal"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
-msgstr "Lilo skerm"
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
+msgstr ""
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO met grafiese kieskaart"
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "Skatting"
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
-msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geïnstalleer"
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", drukker \"%s\" op SMB/Windows bediener \"%s\""
+#: ../../standalone/drakbackup_.c:2578
+msgid "\t-Network by rsync.\n"
+msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "Gaan steeds voort?"
+#: ../../standalone/drakbackup_.c:2579
+msgid "\t-Network by webdav.\n"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Soek vir beskikbare pakkette en herbou die rpm-databasis"
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2587
msgid ""
+"List of data to restore:\n"
"\n"
-" DrakBackup Report \n"
msgstr ""
+
+#: ../../standalone/drakbackup_.c:2754
+msgid ""
+"List of data corrupted:\n"
"\n"
-" DrakBackup Verslag \n"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Wil voorkom of dit nie skryfbare media is nie!"
+#: ../../standalone/drakbackup_.c:2756
+#, fuzzy
+msgid "Please uncheck or remove it on next time."
+msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "Spesifieer opsies"
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#: ../../standalone/drakbackup_.c:2787
+msgid " All of your selected data have been "
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "New user list:\n"
-msgstr "Lys van nuwe gebruikers:\n"
+msgid " Successfuly Restored on %s "
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Óf die bedienernaam óf die bediener-IP moet verskaf word!"
+#: ../../standalone/drakbackup_.c:2906
+#, fuzzy
+msgid " Restore Configuration "
+msgstr "Netwerkkonfigurasie"
-#: ../../any.pm:1
-#, 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\"."
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
msgstr ""
-"'n Spesiale herlaaiskyf voorsien ;n metode waarby u Linux kan laai sonder\n"
-"die gebruik van 'n normale herlaaistelsel. Dit is veral bruikbaar wanneer\n"
-"u nie SILO op u stelsel wil installeer nie, 'n ander bedryfstelsel SILO\n"
-"verwyder of SILO nie met u stelsel werk nie. Hierdie herlaaiskyf kan ook\n"
-"met die Mandrake reddingsbeeld gebruik word, wat dit makliker maak om van\n"
-"ernstige stelselfalings te herstel.\n"
-"\n"
-"Indien u 'n herlaaiskyf wil maak,\n"
-"plaas 'n skyf in die aandrywer en druk \"OK\"."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "U kan nie 'n lêerstelsel met enkripsie vir hegpunt %s gebruik nie."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password history length to prevent password reuse."
-msgstr "Stel die wagwoord-geskiedenis se lente om hergebruik te voorkom"
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
-msgstr "Norfolk Eiland"
+#: ../../standalone/drakbackup_.c:3019
+#, fuzzy
+msgid "Backup the system files before:"
+msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Theme installation failed!"
-msgstr "Installasie van tema het gefaal!"
+#: ../../standalone/drakbackup_.c:3021
+#, fuzzy
+msgid "please choose the date to restore"
+msgstr "Wat is u muistoestel?"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
-msgstr "Niks om te doen nie"
+#: ../../standalone/drakbackup_.c:3057
+#, fuzzy
+msgid "Use Hard Disk to backup"
+msgstr "Korrupte rugsteunlêer"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "Gebruik vir teruglus"
+#
+#: ../../standalone/drakbackup_.c:3060
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Toets asb. die muis"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr "Mandrake Bug Report Tool"
+#: ../../standalone/drakbackup_.c:3103
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN konneksie"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
-msgstr "Pas filter toe"
+#: ../../standalone/drakbackup_.c:3110
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Kies drukkerkonneksie"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pppoe"
-msgstr "gebruik pppoe"
+#: ../../standalone/drakbackup_.c:3134
+#, fuzzy
+msgid "Restore from Hard Disk."
+msgstr "Herstel vanaf floppie"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving files to the new partition"
-msgstr "Verskuif lêers na nuwe partisie toe"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s met EKSPERIMENTELE 3D-hardewareversnelling"
+#: ../../standalone/drakbackup_.c:3204
+#, fuzzy
+msgid "Select another media to restore from"
+msgstr "Wat is u muistoestel?"
-#: ../../help.pm:1 ../../interactive.pm:1
-#, c-format
-msgid "Advanced"
-msgstr "Gevorderd"
+#: ../../standalone/drakbackup_.c:3206
+#, fuzzy
+msgid "Other Media"
+msgstr "Ander"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer"
-msgstr "Oordra"
+#: ../../standalone/drakbackup_.c:3211
+#, fuzzy
+msgid "Restore system"
+msgstr "Installeer stelsel"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Sweeds)"
+#: ../../standalone/drakbackup_.c:3212
+#, fuzzy
+msgid "Restore Users"
+msgstr "Herstel vanaf lêer"
-#: ../../lang.pm:1
-#, c-format
-msgid "Afghanistan"
-msgstr "Afghanistan"
+#: ../../standalone/drakbackup_.c:3213
+#, fuzzy
+msgid "Restore Other"
+msgstr "Herstel vanaf lêer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "More Options"
-msgstr "Meer Opsies"
+#: ../../standalone/drakbackup_.c:3215
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-"Verwyder .tar-lêers vanaf hardeskyf, sodra 'n rugsteun na\n"
-"ander media voltooi."
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "Burundi"
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
+msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3334
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."
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-"cron is die standaard UNIX program om gebruikergespesifiseerde programme\n"
-"op periodies geskeduleerde tye te loop. vixie cron voeg addisionele\n"
-" funksionaliteit\n"
-"by die standaard UNIX cron, insluitende beter sekuriteit en 'n kragtiger\n"
-"konfigurasie."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr "Voeg Kliënt By -->"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "Lees noukeurig!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
-msgstr "RW"
-
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3344
+#, fuzzy
msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr "Voorsien asseblief u TV-norm en land"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "Poort"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
-msgstr "Nee (slegs kenners)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-msgstr "Geen kernel is gekies!"
-
-#. -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
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Druk ENTER om die gekose bedryfstelsel te laai, 'e' om te redigeer."
+"Restore Selected\n"
+"Files"
+msgstr "Verwyder tou"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
+#: ../../standalone/drakbackup_.c:3361
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Herstel vanaf lêer"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup_.c:3427
#, c-format
-msgid "The encryption keys do not match"
-msgstr "Die enkripsie-sleutels stem nie ooreen nie."
+msgid "Backup files not found at %s."
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:3440
#, c-format
msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-"Slegs die eerste sessie sal die cdrw uitvee, INDIEN u 'n multi-sessie CD "
-"gebruik. Andersins sal die cdrw uitgevee word met elke rugsteun."
-#: ../../printer/main.pm:1
-#, c-format
-msgid "USB printer"
-msgstr "USB-drukker"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Regter \"Windows\"-sleutel"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr "indien ja gekies is, kyk vir leë wagwoorde in '/etc/shadow'"
+#: ../../standalone/drakbackup_.c:3440
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Herstel vanaf floppie"
-#: ../../help.pm:1
+#: ../../standalone/drakbackup_.c:3442
#, 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 "Not the correct CD label. Disk is labelled %s."
msgstr ""
-"Voordat u voortgaan, lees asb die lisensieterme noukeurig deur. Dit dek\n"
-"die hele Mandrake Linux distribusie. Indien u saamstem met al die\n"
-"voorwaardes daarin, merk die \"%s\" boksie. Indien nie, skakel maar\n"
-"net u rekenaar af!"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:3452
#, c-format
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
-"Hier is 'n lys beskikbare drukkeropsies vir die huidige drukker:\n"
-"\n"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "Resolusies"
-
-#: ../../network/drakfirewall.pm:1
-#, 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."
-msgstr ""
-"drakfirewall konfigurasie\n"
-"\n"
-"Hiermee stel u 'n persoonlike vuurmuur op vir die Mandrake Linux\n"
-"rekenaar. Indien u 'n kragtige en toegewyde vuurmuur verlang, kyk\n"
-"dan gerus na die 'MandrakeSecurity Firewall'."
+#: ../../standalone/drakbackup_.c:3452
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Reddingspartisietabel"
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../standalone/drakbackup_.c:3454
#, c-format
-msgid ""
-"Please enter your username, password and domain name to access this host."
+msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-"Voorsien asseblief u gebruikernaam, wagwoord en domeinnaam vir toegang tot\n"
-" hierdie rekenaar."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Remove selected host"
-msgstr "Verwyder gekose rekenaar"
+#: ../../standalone/drakbackup_.c:3474
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Herstel vanaf lêer"
-#: ../../network/netconnect.pm:1
+#: ../../standalone/drakbackup_.c:3474
#, c-format
-msgid "Network configuration"
-msgstr "Netwerkkonfigurasie"
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Outospeur _jaz-aandrywers"
+#
+#: ../../standalone/drakbackup_.c:3475
+#, fuzzy
+msgid "Host Name"
+msgstr "Rekenaarnaam"
-#: ../../any.pm:1
-#, c-format
-msgid "No sharing"
-msgstr "Geen deling"
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
+msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Skuif gekose reël een vlak af"
+#: ../../standalone/drakbackup_.c:3483
+#, fuzzy
+msgid "Password required"
+msgstr "Wagwoord"
-#: ../../common.pm:1
-#, c-format
-msgid "TB"
-msgstr "TB"
+#: ../../standalone/drakbackup_.c:3489
+#, fuzzy
+msgid "Username required"
+msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "FATAL"
-msgstr "DODELIK"
+#: ../../standalone/drakbackup_.c:3492
+#, fuzzy
+msgid "Hostname required"
+msgstr "Bedienernaam:"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh the list"
-msgstr "Herlaai die lys"
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Per client %s:\n"
-" \tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tdrakTermServ will help create these files."
-
-#: ../../standalone/drakpxe:1
-#, 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"
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
msgstr ""
-"Die DHCP-bediener sal ander rekenaars wat PXE gebruik toelaat om uit 'n "
-"sekere reeks adresse neem.\n"
-"\n"
-"Die netwerkadres is %s en masker is %s.\n"
-"\n"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete"
-msgstr "Uitwis"
+#: ../../standalone/drakbackup_.c:3513
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Herstel vanaf lêer"
-#: ../../Xconfig/various.pm:1
-#, 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?"
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
msgstr ""
-"Ek kan u rekenaar so opstel om X outomaties te laai.\n"
-"Wil u X begin met 'n herlaai?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
-msgstr "Bou die skyf"
+#
+#: ../../standalone/drakbackup_.c:3760
+#, fuzzy
+msgid "Custom Restore"
+msgstr "Aangepaste"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnect %s"
-msgstr "Diskonnekteer %s"
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
-msgstr "Status:"
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP instaanbediener"
+#: ../../standalone/drakbackup_.c:3813
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Reddingspartisietabel"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "SSH Server"
-msgstr "SSH-bediener"
+#: ../../standalone/drakbackup_.c:3841
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Herstel vanaf lêer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-Netwerk deur 'rsync'.\n"
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+#, fuzzy
+msgid "Previous"
+msgstr "<- Vorige"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
-msgstr "Europese protokol"
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+#, fuzzy
+msgid "Save"
+msgstr "Toestand"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", drukker \"%s\" op bediener \"%s\""
+#: ../../standalone/drakbackup_.c:3946
+#, fuzzy
+msgid "Build Backup"
+msgstr "Korrupte rugsteunlêer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
-msgstr ""
-"Neen kennis dat alle 'net' media tans ook van die hardeskyf gebruik maak."
-
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
-#, c-format
-msgid "Error"
-msgstr "Fout"
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+#, fuzzy
+msgid "Restore"
+msgstr "Herstel vanaf lêer"
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
-msgstr "laat \"su\" toe"
+#: ../../standalone/drakbackup_.c:4189
+msgid ""
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
+msgstr ""
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Australia"
-msgstr "Australië"
+#: ../../standalone/drakbackup_.c:4195
+msgid ""
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "wag asseblief gedurende 'ttmkfdir'..."
+#
+#: ../../standalone/drakbackup_.c:4209
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Die volgende pakkette gaan installeer word"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Konfigureer net die \"%s\"%s kaart"
+#: ../../standalone/drakbackup_.c:4232
+#, fuzzy
+msgid "Please select data to restore..."
+msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Level"
-msgstr "Vlak"
+#: ../../standalone/drakbackup_.c:4267
+#, fuzzy
+msgid "Please select media for backup..."
+msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Change the printing system"
-msgstr "Verander die drukkerstelsel"
+#: ../../standalone/drakbackup_.c:4275
+#, fuzzy
+msgid "Please select data to backup..."
+msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-"U stelsel onderstuen multikop-konfigurasie.\n"
-"Wat wil u doen?"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr "heg het gefaal: "
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "Konfigureer dienste"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Uitsaai-adres:"
-
-#: ../../standalone/harddrake2:1
-#, 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."
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
msgstr ""
-"die 'GNU/Linux kernel' moet 'n berekening-lus gedurende die selflaai loop om "
-"'n tyds-teller af te skop. Die resultaat word gestoor as 'n 'bogomips', 'n "
-"manier om te toets hou kragtig die CPU is."
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "Beeld"
+#: ../../standalone/drakbackup_.c:4382
+#, fuzzy
+msgid "Backup system files"
+msgstr "Korrupte rugsteunlêer"
-#: ../../services.pm:1
-#, c-format
-msgid "Remote Administration"
-msgstr "Eksterne-administrasie"
+#: ../../standalone/drakbackup_.c:4384
+#, fuzzy
+msgid "Backup user files"
+msgstr "Korrupte rugsteunlêer"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-msgstr "Kon nie drukker \"%s\" by Star Office/OpenOffice.org/GIMP voeg nie."
+#: ../../standalone/drakbackup_.c:4386
+#, fuzzy
+msgid "Backup other files"
+msgstr "Korrupte rugsteunlêer"
-#: ../../modules.pm:1
-#, c-format
-msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
msgstr ""
-"PCMCIA-ondersteuning bestaan nie meer vir 2.2 kernels nie. Gebruik "
-"asseblief\n"
-" 'n 2.4 kernel."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Selected All"
-msgstr "Kies almal"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Generiese Unixdrukstelsel (Common Unix Printing System) "
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Webmin Service"
-msgstr "Webmin-diens"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
-msgstr "toestel"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
+msgstr ""
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Voorsien die lêergids om na te stoor:"
+#: ../../standalone/drakbackup_.c:4416
+#, fuzzy
+msgid "Sending files..."
+msgstr "Stoor in lêer"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
-msgstr "Griekeland"
+#: ../../standalone/drakbackup_.c:4500
+#, fuzzy
+msgid "Backup Now from configuration file"
+msgstr "Netwerkkonfigurasie"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "Alles"
+#: ../../standalone/drakbackup_.c:4505
+#, fuzzy
+msgid "View Backup Configuration."
+msgstr "Netwerkkonfigurasie"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Watter drukkerstelsel (spoelprogram) verlang u?"
+#: ../../standalone/drakbackup_.c:4526
+#, fuzzy
+msgid "Wizard Configuration"
+msgstr "Konfigurasie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
-msgstr "Julie"
+#: ../../standalone/drakbackup_.c:4531
+#, fuzzy
+msgid "Advanced Configuration"
+msgstr "Sluit konfigurasie af"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Prints into %s"
-msgstr "Druk na %s"
+#: ../../standalone/drakbackup_.c:4536
+#, fuzzy
+msgid "Backup Now"
+msgstr "Stel lêerstelsels op"
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "'n Fout het voorgekom"
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4624
msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
+"options description:\n"
+"\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
msgstr ""
-"Hierdie pakket moet opgradeer word\n"
-"Is u seker u wil dit deselekteer?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "Tamil (Tikmasjien-uitleg)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
-msgstr "Geldigverklaring deur wagwoorde"
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4654
msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-"Laat toe/Verbied die vertoon van gebruikername op vertoonbestuurders\n"
-" (display managers, bv. kdm en gdm)."
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
-msgstr "selfdoen"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
-msgstr "Lêernaam se teks om voor te soek:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Drukkervervaardiger, model, drywer"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4662
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
msgstr ""
-"Daar is geen medium in toestel %s nie.\n"
-"Sit asb. een in."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4701
msgid ""
-"Directory %s already contains data\n"
-"(%s)"
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
+"\n"
msgstr ""
-"Lêergids %s bevat alreeds data\n"
-"(%s)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Eksterne Netware-drukker"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Gee die geheuegrootte in MB"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr "Vrydag"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Ontkoppeling van Internet voltooi."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "Regte naam"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "done"
-msgstr "klaar"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Moet nie kies nie, of verwyder dit die volgende keer."
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Higher"
-msgstr "Hoër"
+#: ../../standalone/drakbackup_.c:4727
+msgid ""
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Kies die partisies om te formatteer"
+#: ../../standalone/drakbackup_.c:4729
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4732
msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
+"Description:\n"
"\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
"\n"
-"You can visit our hardware database at:\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-"Geen TV-kaart is op u rekenaar bespeur nie. Maak tog seker dat dit 'n Linux-"
-"ondersteunde Video/TV-kaart is. Kyk of dit reg ingeprop is.\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
"\n"
-"U kan ons hardeware-databasis besoek te:\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't find %s on %s"
-msgstr "Kan nie %s op %s vind nie"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "Japanees 106 sleutels"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
-msgstr "Kon nie die pakkete installeer om u skandeerder(s) te deel nie."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Hierdie sal 'n paar minute duur."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
+#: ../../standalone/drakbackup_.c:4769
+msgid ""
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "June"
-msgstr "Junie"
+#: ../../standalone/drakbackup_.c:4778
+msgid ""
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
+msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Gebruik skandeerders op eksterne rekenaars"
+msgid "Installation of %s failed. The following error occured:"
+msgstr "%s installasie het gefaal a.g.v. hierdie fout: "
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Delete selected rule"
-msgstr "Verwyder gekose reël."
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
+msgstr ""
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Verkry toegang na eksterne CUPS-bedieners"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Plaas 'n disket in %s"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
-msgstr "Maldives"
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konsole hulpprogramme"
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "kompak"
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
-msgstr "1 minuut"
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Beheersentrum"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: fat"
-msgstr "tipe: fat"
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "verpligtend"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "on channel %d id %d\n"
-msgstr "op bus %d id %d\n"
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Muis"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
-msgstr ", multi-funksionele-toestel"
+#
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Eksterne drukker"
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr "Laos"
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Drukkernaam:"
-#: ../advertising/04-configuration.pl:1
-#, 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!"
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
msgstr ""
-"Mandrake Linux 9.2 bied met trots aan u: die 'Mandrake Control Center'.'n "
-"kragtige nutsprogram wat help met die opstel van u rekenaar. Konfigureer en "
-"verstel dinge soos die sekuriteitsvlak, hardeware ( skerm, muis en "
-"sleutelbord ens.), die Internetkonneksie en vele meer!"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
-msgstr "Aktiveer/Versper ethernetkaarte 'promoscuity' toets."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr "Daar is geen FAT partisies om te verander nie(nie genoeg spasie nie)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr "Op"
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
-msgstr "Vuurmuur"
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Drukker"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr "Area:"
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Netwerkkonfigurasie-assistent"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr "(E)IDE/ATA beheerders"
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Application:"
+msgstr "Magtiging"
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
-msgstr "Alle I/O na die lêerstelsel moet sinkronies wees."
+#: ../../standalone/drakbug_.c:76
+#, fuzzy
+msgid "Package: "
+msgstr "Pakketkeuse"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "Drukkerbediener"
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Custom configuration"
-msgstr "Aanpas-konfigurasie"
+#: ../../standalone/drakbug_.c:78
+#, fuzzy
+msgid "Release: "
+msgstr "Wag asb."
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbug_.c:93
msgid ""
-"Please indicate where the installation image will be available.\n"
"\n"
-"If you do not have an existing directory, please copy the CD or DVD "
-"contents.\n"
-"\n"
-msgstr ""
-"Dui asseblief aan waar die installasie-beeld beksikbaar sal wees.\n"
"\n"
-"Indien u nie 'n bestaande lêergids het nie, kopieer die CD of DVD se "
-"inhoud.\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
"\n"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint Pierre en Miquelon"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
-msgstr "September"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "stoor selflaai-splatskerm-tema..."
+#: ../../standalone/drakbug_.c:112
+#, fuzzy
+msgid "Report"
+msgstr "Poort"
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
-msgstr "Portugal"
+#: ../../standalone/drakbug_.c:148
+#, fuzzy
+msgid "Not installed"
+msgstr "Verlaay installasie"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "Beskik u oor nog?"
+#: ../../standalone/drakbug_.c:160
+#, fuzzy
+msgid "Package not installed"
+msgstr "Verlaay installasie"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", printing to %s"
-msgstr ", drukwerk gestuur na %s"
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
-#
-#: ../../network/network.pm:1
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Ken rekenaarnaam vanaf DHCP-adres toe."
+#: ../../standalone/drakbug_.c:180
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakconnect_.c:75
#, c-format
-msgid "Toggle to normal mode"
-msgstr "Skakel oor na normale gebruiksvlak"
+msgid "Network configuration (%d adapters)"
+msgstr "Netwerkkonfigurasie (%d toestelle)"
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
-msgstr "Generies"
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+msgid "Profile: "
+msgstr "Profiel:"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Silinder %d na silinder %d\n"
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
+msgstr "Vee profiel uit..."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
-msgstr "U TEKS HIER"
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
+msgstr "Profiel om uit te vee..."
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakconnect_.c:125
msgid "New profile..."
msgstr "Nuwe profiel..."
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
-#, c-format
-msgid "NONE"
-msgstr "GEEN"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "Na watter skyf wil u skuif?"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Display logo on Console"
-msgstr "Vertoon logo op Konsole"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Windows Domain"
-msgstr "Windows-domein"
+#: ../../standalone/drakconnect_.c:131
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (norwegian)"
-msgstr "Saami (noorweegs)"
+#: ../../standalone/drakconnect_.c:157
+msgid "Hostname: "
+msgstr "Bedienernaam:"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Interface %s (on network %s)"
-msgstr "Koppelvlak %s (op netwerk %s)"
+#: ../../standalone/drakconnect_.c:164
+msgid "Internet access"
+msgstr "Internettoegang"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
-msgstr "INLIGTING"
+#: ../../standalone/drakconnect_.c:177
+msgid "Type:"
+msgstr "Tipe:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
-msgstr "Wallis en Futuna"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "Portaal:"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Moet eers '/etc/dhcpd.conf skep!"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Interface:"
+msgstr "Koppelvlak:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
-msgstr "Is FPU teenwoordig"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
+msgstr "Status:"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"No additional information\n"
-"about this service, sorry."
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
msgstr ""
-"Jammer, geen ekstra inligting\n"
-"rakende hierdie diens nie."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "Daar is geen bekikbare skandeerders te vinde nie.\n"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Bou Enkel NIC -->"
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "Marshall Eilande"
+#: ../../standalone/drakconnect_.c:216
+msgid "Configure Internet Access..."
+msgstr "Konfigureer internettoegang..."
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "Is dit korrek?"
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+msgid "LAN configuration"
+msgstr "LAN-konfigurasie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
+#: ../../standalone/drakconnect_.c:228
+msgid "Driver"
+msgstr "Drywer"
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr "Kies 'root' se wagwoord"
+#: ../../standalone/drakconnect_.c:228
+msgid "Interface"
+msgstr "Koppelvlak"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Bou Alle Kernels -->"
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
+msgstr "Protokol"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVDRAM device"
-msgstr "DVDRAM-toestel"
+#: ../../standalone/drakconnect_.c:228
+msgid "State"
+msgstr "Toestand"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
-msgstr "indie ja gekies is, verklik lêers sonder eienaars."
+#: ../../standalone/drakconnect_.c:240
+msgid "Configure Local Area Network..."
+msgstr "Stel plaaslike netwerk op..."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
msgstr ""
-"U het nie 'n ruilpartisie nie\n"
-"\n"
-"Wil u steeds voortgaan?"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Version: "
-msgstr "Weergawe: "
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "Assistent..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Server IP missing!"
-msgstr "Bediener se IPontbreek!"
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
+msgstr "Pas toe"
-#: ../../lang.pm:1
-#, c-format
-msgid "Suriname"
-msgstr "Suriname"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Connected"
+msgstr "Gekonnekteer"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use a floppy"
-msgstr "Gebruik 'n disket"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Not connected"
+msgstr "Nie gekonnekteer nieKabelkonneksie"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
-msgstr "Bekragtig ACPI"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
+msgstr "Konnekteer..."
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
-msgstr "Verleen skryf-toegang aan gewone gebruikers"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
+msgstr "Diskonnekteer..."
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
-msgstr "Grafiese Omgewing"
+#: ../../standalone/drakconnect_.c:400
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
-msgstr "Gibraltar"
+#: ../../standalone/drakconnect_.c:427
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Do nothing"
-msgstr "Moet niks doen"
+#: ../../standalone/drakconnect_.c:449
+msgid "LAN Configuration"
+msgstr "LAN konfigurasie"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Delete Client"
-msgstr "Verwyder Kliënt"
+msgid "Adapter %s: %s"
+msgstr "Toestel %s: %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "Lêerstelsel-tipe: "
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
+msgstr "Herlaaiprotokol"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting network..."
-msgstr "Konneksie word begin..."
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
+msgstr "Gelaai tydens herlaaityd"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
-msgstr "Viëtnam"
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
+msgstr "DHCP-kliënt"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Velde se beskrywing"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "activate now"
+msgstr "Aktiveer nou dadelik"
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr "Geniet optimale sekuriteit deur Mandrake Linux te gebruik."
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "deactivate now"
+msgstr "deaktiveer nou dadelik"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/drakconnect_.c:499
msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
msgstr ""
-"\n"
-"\n"
-" Dankie:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
-
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Help"
-msgstr "Hulp"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
-msgstr "kyk of netwerk-toestelle in 'promiscuous'-modus is"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Your personal phone number"
-msgstr "U persoonlike telefoonnommer"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which size do you want to keep for Windows on"
-msgstr "Watter grootte wil u vir Windows behou?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:556
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 internet connection.\n"
+"Create one first by clicking on 'Configure'"
msgstr ""
-"Toetsbladsy(e) is na die drukker gestuur.\n"
-"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Username required"
-msgstr "Benodig gebruikerskode"
+#: ../../standalone/drakconnect_.c:580
+msgid "Internet connection configuration"
+msgstr "Internetkonneksiekonfigurasie"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Device"
-msgstr "Toestel"
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet Connection Configuration"
+msgstr "Internetkonneksiekonfigurasie"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Afhangende van die verstek taal wat u kies, sal DrakX outomaties 'n\n"
-"betrokke steutelbord-konfigurasie kies. U mag moontlik 'n sleutelbord\n"
-"besit wat nie 100-persent ooreenstem met u taal nie: byvoorbeeld as u 'n\n"
-"Ingelse Sweed is, sal u dalk 'n sweedse sleutelbord besit. Hier is nog\n"
-"een: gestel jy is 'n Afrikaner wat werk in Quebec, u sal dalk met 'n ander\n"
-"tipe sleutelbord moet klaarkom as wat u gewoond is. Wel, hier kan u die\n"
-"gepaste sleutelbord uit 'n lys kies.\n"
-"\n"
-"Klik op die \"%s\"-knoppie vir 'n lys van al die ondersteunde sleutelborde\n"
-"\n"
-"Indien u 'n nie-Latynse sleutelbord kies, sal die volgende dialoog u "
-"toelaat\n"
-"om sleutel-bindings tussen Latynse en nie-Latynse uitlegte te kies."
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+msgid "Connection type: "
+msgstr "Konneksietipe:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) drukkeropsies"
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
+msgstr "Parameters"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Portaal"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr "Geldige lys van gebruikers het verander, herskryf konfigurasie-lêer."
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
+msgstr "Ethernetkaart"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "mkinitrd optional arguments"
-msgstr "mkinitrd opsionele parameters"
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
+msgstr "DHCP-Kliënt"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
-msgstr ""
-"Rits op die Internet met Mozilla of Konqueror, vir e-pos is daar Evolution "
-"of Kmail, skep u dokumente met OpenOffice.org."
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protokol vir die res van die wêreld"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Module name"
+msgstr "Modulenaam"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print test pages"
-msgstr "Druk toetsbladsy(e)"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Size"
+msgstr "Grootte"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Activate now"
-msgstr "Aktiveer nou dadelik"
+#: ../../standalone/drakfloppy_.c:45
+msgid "drakfloppy"
+msgstr "drakfloppy"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
-msgstr "64MB of meer"
+#: ../../standalone/drakfloppy_.c:63
+msgid "boot disk creation"
+msgstr "herlaaiskyfskepping"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Kies asseblief watter toetsbladsye u wil druk.\n"
-"Aandag: die foto-toetsbladsy kan 'n tydjie duur om uit te druk, op "
-"laserdrukkers met te min geheue, mag dit moontlik nie eens werk nie. Dit is "
-"gewoonlik net nodig vir 'n normale toetsbladsy."
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr "verstek"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakfloppy_.c:87
#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Kies assblief die toestel waaraan u %s gekoppel is"
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy Fout: %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Not formatted\n"
-msgstr "Nie geformatter\n"
+#: ../../standalone/drakfloppy_.c:98
+msgid "kernel version"
+msgstr "bedryfstelselkernweergawe"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Periodic Checks"
-msgstr "Periodiese Toetse"
+#: ../../standalone/drakfloppy_.c:104
+msgid "General"
+msgstr "Algemeen"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "PXE Server Configuration"
-msgstr "Konfigureer PXE-bediener"
+#: ../../standalone/drakfloppy_.c:109
+msgid "Expert Area"
+msgstr "Kundige area"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup the system files before:"
-msgstr "Maak 'n rugsteun van die stelsel-lêers alvorens:"
+#: ../../standalone/drakfloppy_.c:112
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd opsionele parameters"
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Hierdie is die standaard sekuriteitsvlak wat aanbeveel word vir rekenaars\n"
-"wat aan die internet as 'n kliënt konnekteer."
+#: ../../standalone/drakfloppy_.c:113
+msgid "Add a module"
+msgstr "Voeg module by"
-#: ../../any.pm:1
-#, c-format
-msgid "First floppy drive"
-msgstr "Eerste disketaandrywer"
+#: ../../standalone/drakfloppy_.c:133
+msgid "force"
+msgstr "forseer"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Lêer/_Verlaat"
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
+msgstr "indien nodig"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak"
-msgstr "Dvorak"
+#: ../../standalone/drakfloppy_.c:135
+msgid "omit scsi modules"
+msgstr "laat SCSI-modules weg"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose the new size"
-msgstr "Kies die nuwe grootte"
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
+msgstr "laat RAID-modules weg"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Media class"
-msgstr "Media-klas"
+#: ../../standalone/drakfloppy_.c:172
+msgid "Remove a module"
+msgstr "Verwyder module"
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr "U moet afteken en weer inteken alvorens veranderinge bekragtig word"
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
+msgstr "Uitset"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
-msgstr "Die %s is onbekend aan hierdie weergawe van Scannerdrake."
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
+msgstr "Bou die skyf"
-#: ../../lang.pm:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "Faroe Islands"
-msgstr "Faroe Eilande"
+msgid "Be sure a media is present for the device %s"
+msgstr "versker asb dat die regte mediatipe vir toestel %s beskikbaar is"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Restart XFS"
-msgstr "Herbegin XFS"
+#: ../../standalone/drakfloppy_.c:341
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Daar is geen medium for toestel %s nie.\n"
+"Sit asb. een in."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "Add host/network"
-msgstr "Voeg rekenaar/netwerk by"
+msgid "Unable to fork: %s"
+msgstr "Kon nie vurk nie: %s"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakfloppy_.c:349
#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Scannerdrake sal nie nou afgeskop word nie."
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Kon nie mkbootdisk ordentelik afsluit nie:\n"
+" %s \n"
+" %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model name"
-msgstr "Naam van model"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
-msgstr "Albanië"
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr "British Indian Ocean Territory"
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Normal Mode"
-msgstr "Normale modus"
+#: ../../standalone/drakfont_.c:242
+#, fuzzy
+msgid "no fonts found"
+msgstr "%s is nie gevind nie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "Geen CD-R/DVD-R in aandrywer!"
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+#, fuzzy
+msgid "done"
+msgstr "Klaar"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer connection type"
-msgstr "Drukkerkonneksie-tipe"
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
+msgstr ""
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
-msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network %s"
-msgstr "Netwerk %s"
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
-msgstr "Malabaars"
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Opsie %s is buite bereik!"
+#: ../../standalone/drakfont_.c:359
+#, fuzzy
+msgid "Fonts copy"
+msgstr "Formatteer floppie"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connect %s"
-msgstr "Konnekteer %s"
+#: ../../standalone/drakfont_.c:363
+#, fuzzy
+msgid "True Type fonts installation"
+msgstr "Berei installasie voor"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "Herbegin CUPS..."
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Drukwerk/Skandering/Foto-kaarte op \"%s\""
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
+msgstr ""
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
msgstr ""
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Duplikaat hegpunt %s"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
-msgstr "indien ja gekies is, doen 'chkrootkit'-toetse."
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
+msgstr ""
-#
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "Konneksiekonfigurasie"
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
+msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|Generic"
-msgstr "Onbekend|Generies"
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
+msgstr ""
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Teen die tyd wat u Mandrake Linux installeer, is dit hoogs waarskynlik\n"
-"dat van die pakkette intussen opgedateer is. Foute kom reggestel wees,\n"
-"of sekuriteits probleme is dalk opgelos. Om voordeel hieruit te put, kan\n"
-"u hulle nou van die Internet aflaai. Merk \"%s\" indien u 'n werkende\n"
-"Internetkonneksie het, of \"%s\" sou u dit eers later wil doen\n"
-"\n"
-"Deur \"%s\" te kies, kan u 'n lys plekke sien waarvanaf hierdie\n"
-" pakkette gelaai kan word. Kies 'n geskikte een. 'n Boom-struktuur\n"
-" met die nuwwe pakkette in sal verskyn. As u gelukkig is met almal,kan u\n"
-" \"%s\" klik om hulle af te laai en te installeer, of \"%s\" om te ontsnap."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-msgstr "Myanmar"
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary 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
-#, c-format
-msgid "Quit"
-msgstr "Verlaat"
+#: ../../standalone/drakfont_.c:459
+#, fuzzy
+msgid "Restart XFS"
+msgstr "Laai dit"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "Outo-allokeer"
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Toets vir foutiewe areas?"
+#: ../../standalone/drakfont_.c:528
+#, fuzzy
+msgid "xfs restart"
+msgstr "beperk"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Other MultiMedia devices"
-msgstr "Ander MultiMedia-toestelle"
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
+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 using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "burner"
-msgstr "skrywer"
+#: ../../standalone/drakfont_.c:621
+#, fuzzy
+msgid "Fonts Importation"
+msgstr "Formateer partisies"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Bug Description/System Information"
-msgstr "Gogga-beskrywing/Stelsel se inligting"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (Default is all users)"
-msgstr " (Verstek is alle gebruikers)"
+#: ../../standalone/drakfont_.c:658
+#, fuzzy
+msgid "Uninstall Fonts"
+msgstr "Deïnstallasie van RPMs"
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "No remote machines"
-msgstr "Geen eksterne masjiene"
+#: ../../standalone/drakfont_.c:669
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Sluit konfigurasie af"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:677
+#, fuzzy
+msgid "Font List"
+msgstr "Hegpunt"
+
+#: ../../standalone/drakfont_.c:737
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@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."
-msgstr ""
+" 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"
-"Welkom by die 'Printer Setup Wizard'\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"
"\n"
"\n"
-"Hierdie wysgeer sal u help op u drukker(s), wat aan u rekenaar gekoppel is, "
-"op te stel, \n"
-"Maak tog seker die drukker(s) is reg gekoppel en aangeskakel, sodat "
-"outospeur sy werk reg kan doen. \n"
-"Klik op \"Volgende\" sodra u gereed is, of op \"Kanselleer\" indien u nou "
-"enige drukkers wil opstel nie."
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "NIS-magtiging"
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:862
+#, fuzzy
+msgid "Choose the applications that will support the fonts:"
+msgstr "Kies die partisies om te formatteer"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
msgstr ""
-"Opsie ``Beperk instruksielynopsies'' kan nie sonder wagwoord gebruikword nie"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Internetkonneksie-deling is ontsper"
+#: ../../standalone/drakfont_.c:877
+#, fuzzy
+msgid "StarOffice"
+msgstr "Kantoor"
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "Verenigde Arabiese Emirate"
+#: ../../standalone/drakfont_.c:884
+#, fuzzy
+msgid "Abiword"
+msgstr "Aborteer"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "Kaart IO_0"
+#: ../../standalone/drakfont_.c:891
+#, fuzzy
+msgid "Generic Printers"
+msgstr "Drukker"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
-msgstr "Versper Plaaslike Konfigurasie"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "Thailand"
+#: ../../standalone/drakfont_.c:1005
+#, fuzzy
+msgid "Install List"
+msgstr "Installeer stelsel"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "Kaart IO_1"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
+msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
-msgstr "Soek:"
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "Kazakhstan"
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
-msgstr "Roteerders:"
+#: ../../standalone/drakfont_.c:1116
+#, fuzzy
+msgid "Selected All"
+msgstr "Selekteer lOer"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Write"
-msgstr "Skryf"
+#
+#: ../../standalone/drakfont_.c:1120
+#, fuzzy
+msgid "Remove List"
+msgstr "Verwyder drukker"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Vertoon alle beskikbare eksterne CUPS-drukkers"
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+#, fuzzy
+msgid "Initials tests"
+msgstr "Beginboodskap"
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux Installasie %s"
+#: ../../standalone/drakfont_.c:1145
+#, fuzzy
+msgid "Copy fonts on your system"
+msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
-msgstr "Onbekende drywer"
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "Thai sleutelbord"
+#: ../../standalone/drakfont_.c:1153
+#, fuzzy
+msgid "Post Install"
+msgstr "Installasie"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr "Bouvet Eiland"
+#: ../../standalone/drakfont_.c:1178
+#, fuzzy
+msgid "Remove fonts on your system"
+msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "Opbelopsies"
+#: ../../standalone/drakfont_.c:1182
+#, fuzzy
+msgid "Post Uninstall"
+msgstr "Verlaay installasie"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "Indien geen poort verskaf word nie, sal 631 gebruik word."
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
+msgstr "Internetkonneksiedeling"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Per client system configuration files:\n"
-" \tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-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."
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-"Verander u CDROM!\n"
-"\n"
-"Sit asb. die CDROM getiteld \"%s\" in die aandrywer en druk OK. Indien u "
-"nie\n"
-"hieroor beskik nie, druk Kanselleer om installasies vanaf dié CDROM te vermy."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "Pools"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Online"
-msgstr "Mandrake Online"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
-msgstr "\t -Netwerk deur webdav.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", multi-funksionele toestel op 'n parallelle poort"
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Internetkonneksiedeling is ontsper"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakgw_.c:126
msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"Geen ethernetkaart is op die stelsel gevind nie. Gebruik asb. die "
-"hardewarekonfigurasieprogram."
-
-#
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "Netmasker"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "No hard drives found"
-msgstr "Geen hardeskywe kon gevind word nie"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "2 knoppies"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Reeks (seriaal)"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "Watter tipe is u ISDN-konneksie?"
+"Die opstelling van die Internetkonnkesiedeling is alreeds gedoen.\n"
+"Dis tans aktief.\n"
+"\n"
+"Wat wil u doen?"
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "Naam"
+#: ../../standalone/drakgw_.c:130
+msgid "disable"
+msgstr "deaktiveer"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "Stoor op floppie"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
+msgstr "ignoreer/sien oor"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check open ports"
-msgstr "Toets oop poorte"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "reconfigure"
+msgstr "herkonfigureer"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Edit selected printer"
-msgstr "Redigeer gekose drukker"
+#: ../../standalone/drakgw_.c:133
+msgid "Disabling servers..."
+msgstr "Bedieners word gedeaktiveer..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Outobespeuring van drukkers"
+#: ../../standalone/drakgw_.c:142
+msgid "Internet connection sharing is now disabled."
+msgstr "Internetkonneksiedeling is gedeaktiveer"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Wat is u ISDN-kaart?"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Internetkonneksiedeling is gesper"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:150
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."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"NFS is 'n populêre protokol vir lêerdeling oor TCP/IP netwerke.\n"
-"Hierdie diens voorsien NFS-bedienerfunksionaliteit. Dit word via\n"
-"die /etc/exports lêer opgestel."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Msec"
-msgstr "Msec"
+"Die opstelling van die Internetkonnkesiedeling is alreeds gedoen.\n"
+"Dis tans gedeaktiveer.\n"
+"\n"
+"Wat wil u doen?"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Aandag, 'n etiket het verander:\n"
-"%s"
+#: ../../standalone/drakgw_.c:154
+msgid "enable"
+msgstr "Aktiveer"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
-msgstr "Aantal ontvang-buffers:"
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
+msgstr "Bedieneers word aktiveer..."
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "U keuse? (0/1, verstek %s) "
+#: ../../standalone/drakgw_.c:166
+msgid "Internet connection sharing is now enabled."
+msgstr "Internetkonneksiedeling is geaktiveer"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:183
+#, fuzzy
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"
+"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"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
"\n"
-"Click on \"%s\" if you wish to select partitions that will be checked for\n"
-"bad blocks on the disk."
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
-"Enige nuwe partisies moet eers geformatteer word voor dit bruikbaar is.\n"
-"(formatteer beteken dan ons 'n lêerstelsel daarop skep).\n"
-"\n"
-"O kan ook nou kies om bestaande partisies te formatteer om so al die\n"
-"data daarop uit te vee. Kies asseblief dan nou daardie partisies ook.\n"
-"\n"
-"Let tog daarop dat die NIE nodig is om al die vooraf-bestaande partisies\n"
-"weer te formatteer NIE. U moet wel partisies wat die bedryfstelsel bevat\n"
-"formatteer. ( byvoorbeeld \"/\",\"/usr\" of \"/var\") maar partisies met\n"
-"data wat u graag wil hou ( bv \"/home\") moet nie geformatteer word\n"
-"nie.\n"
-"\n"
-"Wees daarom versigtig wanneer u die partisies kies. Na dit geformatteer\n"
-"is, sal ALLE data daarop vernietig wees.\n"
+"Nou dat u internetkonfigurasie opgestel is,\n"
+"moet u die rekenaar opstel om dit te deel.\n"
+"LW: U benodig 'n ware netwerkkaart om 'n lokalearea netwerk (LAN) op te "
+"stel.\n"
"\n"
-"Klik op \"%s\" sodra u gereed is om te formatteer.\n"
-"\n"
-"Klik op \"%s\" indien u 'n ander partisie vir die installasie van u nuwe\n"
-"Madrake Linux bedryfstelsel wil kies\n"
-"\n"
-"Klik op \"%s\" indien u partisies wil kies wat dan ondersoek en\n"
-"getoets moet word."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "French"
-msgstr "Fraans"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTY)"
-msgstr "Tseggies (QWERTY)"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow X Window connections"
-msgstr "Laat X Window konneksies toe"
+"Wil u internetdeling opstel?\n"
-#: ../../standalone/service_harddrake:1
+#: ../../standalone/drakgw_.c:211
#, c-format
-msgid "Hardware probing in progress"
-msgstr "Aftas vir hardeware aan die gang"
+msgid "Interface %s (using module %s)"
+msgstr "Koppelvlak %s (met module %s)"
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
+#: ../../standalone/drakgw_.c:212
#, c-format
-msgid "Net Device"
-msgstr "Netwerk Toestel"
+msgid "Interface %s"
+msgstr "Koppelvlak %s"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "Opsomming"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:221
msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
msgstr ""
-" (Parallele Poorte: /dev/lp0, /dev/lp1, ..., gelykstaande aan LPT1:, "
-"LPT2:, ..., 1ste USB-drukker: /dev/usb/lp0, 2de USB-drukker: /dev/usb/"
-"lp1, ...)."
-
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Next"
-msgstr "Volgende"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "U kan nie die herlaaistelsel op 'n %s partisie installeer nie\n"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
+"Geen ethernetkaart is op die stelsel gevind nie. Gebruik asb. die "
+"hardewarekonfigurasieprogram."
-#: ../../network/network.pm:1
-#, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp/zeroconf)"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr "Netwerkkoppelvlak"
-#: ../../standalone/drakautoinst:1
+#
+#: ../../standalone/drakgw_.c:228
#, c-format
msgid ""
+"There is only one configured network adapter on your system:\n"
"\n"
-"Welcome.\n"
+"%s\n"
"\n"
-"The parameters of the auto-install are available in the sections on the left"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
+"Daar is net een konfigureerde netwerkkaart op u stelsel.\n"
"\n"
-"Welkom.\n"
+"%s\n"
"\n"
-"Die parameters van die outo-installasie is beskikbaar in die linker afdelings"
+"Ek gaan nou u LAN met daardie kaart opstel."
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/drakgw_.c:235
msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
msgstr ""
-"die pakket \"ImageMagick\" word benodig om die konfigurasie te voltooi.\n"
-"Klik op \"Ok\" om 'ImageMagick' te installeer of \"Kanselleer\" om te staak"
+"Kies asb. die netwerkkaart wat aan die loakel area netwerk gekoppel is."
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Telnet server"
-msgstr "X-bediener"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lituanies \"nommerry\" QWERTY"
+#: ../../standalone/drakgw_.c:261
+#, fuzzy
+msgid "Network interface already configured"
+msgstr "Monitor is nie opgestel nie"
-#: ../../install_any.pm:1
+#: ../../standalone/drakgw_.c:262
#, c-format
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
+"Warning, the network adapter (%s) is already configured.\n"
"\n"
+"Do you want an automatic re-configuration?\n"
"\n"
-"Do you really want to remove these packages?\n"
+"You can do it manually but you need to know what you're doing."
msgstr ""
-"Die volgende pakkette moet verwyder word om u rekenaar op te gradeer: %s\n"
-"\n"
-"\n"
-"Wil u werklik dat ons hulle verwyder?\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
-msgstr "Anguilla"
-
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "NIS-domein"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "Antartika"
+#: ../../standalone/drakgw_.c:267
+#, fuzzy
+msgid "Automatic reconfiguration"
+msgstr "Outomatiese CUPS konfigurasie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
msgstr ""
-"\n"
-"- Gebruiker se Lêers:\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
-msgstr "Hegopsies:"
+#: ../../standalone/drakgw_.c:268
+#, fuzzy
+msgid "Show current interface configuration"
+msgstr "Verander drukkerkonfigurasie"
-#: ../../lang.pm:1
-#, c-format
-msgid "Jamaica"
-msgstr "Jamaika"
+#: ../../standalone/drakgw_.c:269
+#, fuzzy
+msgid "Current interface configuration"
+msgstr "Verander drukkerkonfigurasie"
-#: ../../services.pm:1
+#: ../../standalone/drakgw_.c:270
#, 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"
+"Current configuration of `%s':\n"
+"\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
msgstr ""
-"Ken rou-toestelle aan blok-toestelle toe ( soos bv. hardeskyf\n"
-"partisies), vir programme soos Oracle en DVD-spelers"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Wag asb. installasie word voorberei"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "Tseggies (QWERTZ)"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Volg netwerkkart ID. (nuttig vir skootrekenaars)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Die poortnommer moet 'n heeltal wees."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "You must choose an image file first!"
-msgstr "U moet eers 'n beeldlêer kies!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Herstel vanaf Hardeskyf"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "Voeg by LVM"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "DNS-bediener"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr "Trinidad en Tobago"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD en LPRng ondersteun nie IPP-drukkers nie.\n"
-
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host name or IP."
-msgstr "Rekenaarnaam of IP"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Edit"
-msgstr "/_Redigeer"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "eenvoudig"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "Verwyder almal"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No test pages"
-msgstr "Geen toetsbladsye"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falkland Islands (Malvinas)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Toestel %s: %s"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Boot disk creation"
-msgstr "herlaaiskyf-skepping"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
-msgstr "Maandag"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown model"
-msgstr "Onbekende model"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
+#: ../../standalone/drakgw_.c:283
+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"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
+"\n"
msgstr ""
-"indien ja gekies is, soek vir lêers/lêergidse waarna enige iemand kan skryf."
-
-#: ../../help.pm:1
-#, c-format
-msgid "authentication"
-msgstr "magtiging"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now"
-msgstr "Rugsteun Nou"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/_Lêer"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Verwyder drukker uit Star Office/OpenOffice.org/GIMP"
+#: ../../standalone/drakgw_.c:290
+#, fuzzy
+msgid "Local Network adress"
+msgstr "geen netwerkkaart gevind nie"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:294
msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
+"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 ""
-"Loods die filter van pakkies vir die 'Linux 2.2 kernel'-reeks, om 'n\n"
-"vuurmuur op te stel, wat u rekenaar beskerm teen aanvalle oor die netwerk."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Editable"
-msgstr "Redigeerbaar"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
-msgstr "Watter DCHP-kliënt wil u gebruik? (Verstek is dhcp-client)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr "Tamil (ISCII-layout)"
+#: ../../standalone/drakgw_.c:300
+#, fuzzy
+msgid "(This) DHCP Server IP"
+msgstr "CUPS-bediener IP:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
-msgstr "Mayotte"
+#: ../../standalone/drakgw_.c:301
+#, fuzzy
+msgid "The DNS Server IP"
+msgstr "CUPS-bediener IP:"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
-msgstr "Stel instruksiedop se geskiedenisgrootte. '-1' beteken oneindig groot."
+#: ../../standalone/drakgw_.c:302
+#, fuzzy
+msgid "The internal domain name"
+msgstr "Nuwe drukkernaam"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d KB\n"
-msgstr "%d KB\n"
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Outoinstallasieskyf word geskep."
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for scanners ..."
-msgstr "Opsoek na skandeerders ..."
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
-msgstr "Rusland"
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Partitioning"
-msgstr "Partisionering"
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
-msgstr "ethernet kaart(e) bespeur"
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
+msgstr ""
-#: ../../standalone/logdrake:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid "Syslog"
-msgstr "Syslog"
+msgid "Potential LAN address conflict found in current config of %s!\n"
+msgstr "Moontlike LAN-adresbotsing gevind in konfigurasie %s!\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create catalog!"
-msgstr "Kan nie katalogus skep nie!"
+#: ../../standalone/drakgw_.c:335
+msgid "Configuring..."
+msgstr "Konfigurasie in aabou..."
-#: ../advertising/11-mnf.pl:1
-#, 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."
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-"Voltooi die opstel van u sekuriteit deur hierdie maklik-om-te-gebruik "
-"sagteware te benut om dinge soos 'n vuurmuur, virtuele privaatnetwerke (VPN)-"
-"bediener en -kliënt, indringer-opsporing en verkeerbeheer op te stel."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
-msgstr "Nie genoeg spasie vir outo-toekenning beskikbaar nie"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "Kies 'root' se wagwoord"
+"Skrips word konfigureer, sagterware installeer en bedieners afgeskop..."
-#: ../../security/l10n.pm:1
+#: ../../standalone/drakgw_.c:372
#, c-format
-msgid "Enable IP spoofing protection"
-msgstr "Ontsper flous-naamresolusie-beskerming"
+msgid "Problems installing package %s"
+msgstr "Probleme met Installasue van pakket %s"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:505
msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
+"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 ""
-"Daar is geen gratis drywer vir u klankkaart (%s) nie, daar is wel 'n "
-"gepatenteerde een by \"%s\"."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group :"
-msgstr "Groep :"
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
+msgstr "Die opstelling van is alreeds gedoen, maar is tans gedeaktiveer."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "Alle data op partisie %s sal uitgewis word met die grootteverandering"
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
+msgstr "Die opstelling is alreeds gedoen en is alreeds ook geaktiveer."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Internetkonneksie-konfigurasie"
+#: ../../standalone/drakgw_.c:525
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Geen internetkonneksiedeling is al gekonfigureer nie."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
-msgstr "Voeg die naam by as 'n uitsondering tot wagwoordveroudering deur msec."
+#: ../../standalone/drakgw_.c:531
+msgid "Internet connection sharing configuration"
+msgstr "Internetkonneksiedelingkonfigurasie"
-#: ../../network/isdn.pm:1
+#: ../../standalone/drakgw_.c:539
#, fuzzy, c-format
-msgid "USB"
-msgstr "LSB"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "Skandeer vir TV-kanale"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
-msgstr "Kernel:"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_About..."
-msgstr "/_Aangaande..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
-msgstr "Bengali"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
-msgstr "Voorkeure: "
-
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Dienste: %d ge-aktiveer vir %d geregistreer"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "Maak 'n herlaaiskyf"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "Solomon Eilande"
-
-#
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Toets asb. die muis:"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(module %s)"
+msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
+msgstr "Internetkonneksiedeling"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "group"
msgstr "Werkgroep:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Drukkernaam of IP"
+#: ../../standalone/drakperm_.c:36
+msgid "path"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "down"
-msgstr "klaar"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "permissions"
+msgstr "partisie %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Path or Module"
-msgstr "Roete na Rekenaar of Module"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "user"
+msgstr "Gebruikerskode"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
msgstr ""
-"Die drukkernaam mag slegs letters, syfers en die onderstreep-karakter bevat."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Show current interface configuration"
-msgstr "Wys die huidige koppelvlak-konfigurasie"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add Printer"
-msgstr "Voeg Drukker By"
+#: ../../standalone/drakperm_.c:44
+#, fuzzy
+msgid "delete"
+msgstr "Uitwis"
-#: ../../security/help.pm:1
-#, 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."
+#: ../../standalone/drakperm_.c:45
+msgid "edit"
msgstr ""
-"Hierdie argument spesifiseer indien kliënte gemagtig is om aan die\n"
-"X-bediener te koppel via die netwerk (tcp poort 6000) of nie."
-#: ../../help.pm:1
-#, c-format
-msgid "Development"
-msgstr "Ontwikkeling"
-
-#: ../../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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Done"
+#: ../../standalone/drakperm_.c:46
+#, fuzzy
+msgid "Down"
msgstr "Klaar"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Web Server"
-msgstr "Web-bediener"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "Chili"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tMoet nie stelsel-lêers insluit nie\n"
+#: ../../standalone/drakperm_.c:47
+#, fuzzy
+msgid "add a rule"
+msgstr "Voeg module by"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
msgstr ""
-"Lexmark se inkspuitdrukkers ondersteun slegs plaaslike drukkers, geen "
-"drukkers op eksterne rekenaars of drukkerbediener-boksies. Konnekteer "
-"asseblief die drukker plaaslik en konfigureer dit op daardie (plaaslike) "
-"masjien."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:51
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!"
+"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 ""
-"U multi-funksionele toestel is outomaties opgestel dat dit kan skandeer. "
-"Gebruik \"scanimage\" indien u wil skandeer (\"scanimage -d hp:%s\" om die "
-"skandeerder te spesifiseer, sou daar meer as een wees). Grafiese programme "
-"\"xscanimage\" en \"xsane\" is ook beskikbaar. Met GIMP kan u onder \"File\"/"
-"\"Acquire\"-kieslys soek. Vir meer inligting tik \"man scanimage\" op die "
-"instruksielyn.\n"
-"\n"
-"Moet NIE \"scannerdrake\" vir hierdie toestel gebruik NIE! "
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "(%s alreeds bygevoeg)"
+#: ../../standalone/drakperm_.c:56
+#, fuzzy
+msgid "Add a new rule at the end"
+msgstr "Voeg drukker by"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation in progress"
-msgstr "Besig met installasie van herlaaistelsel"
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
-msgstr ", gebruik opdrag %s"
+#: ../../standalone/drakperm_.c:58
+msgid "Up selected rule one level"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt- en Shift-sleutels gelyktydig"
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
-msgstr "Flaggies"
+#: ../../standalone/drakperm_.c:60
+#, fuzzy
+msgid "Delete selected rule"
+msgstr "Verwyder tou"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Users"
-msgstr "Gebruikers Byvoeg/Verwyder"
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Rekenaar/netwerk se IP uitstaande."
+#: ../../standalone/drakperm_.c:231
+#, fuzzy
+msgid "Current user"
+msgstr "Aanvaar gebruiker"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
-msgstr "weekliks"
+#: ../../standalone/drakperm_.c:236
+#, fuzzy
+msgid "Permissions"
+msgstr "Weergawe: %s\n"
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "Verstellings"
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "Die voorsiende rekenaar/netwerk-IP is foutief\n"
+#: ../../standalone/drakperm_.c:238
+#, fuzzy
+msgid "Property"
+msgstr "Poort"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "Skep/Dra rugsteun sleutels vir SSH oor"
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr "Hier is die volle lys van beskikbare lande"
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Alternatiewe toetsbladsy (A4)"
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:296
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."
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
msgstr ""
-"Indien u oor al die gelyste CD's beskik, kliek OK.\n"
-"Indien u oor geen van die gelyste CD's beskik nie, kliek Kanselleer.\n"
-"Indien u net oor sekere CDs beskik, deselekteer die ander en kliek OK."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
-msgstr "Net 'n oomblik"
+#: ../../standalone/drakperm_.c:297
+#, fuzzy
+msgid "Use owner id for execution"
+msgstr "Gebruik outobespeuring"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP"
+#: ../../standalone/drakperm_.c:298
+#, fuzzy
+msgid "Use group id for execution"
+msgstr "Gebruik outobespeuring"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup user files"
-msgstr "Rugsteun gebruiker se lêers"
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
+msgstr ""
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "New"
-msgstr "Nuwe"
+#: ../../standalone/drakperm_.c:304
+#, fuzzy
+msgid "Path selection"
+msgstr "Stoor pakketseleksie"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:350
+#, fuzzy
+msgid "user :"
+msgstr "Gebruikerskode"
+
+#: ../../standalone/drakperm_.c:352
+#, fuzzy
+msgid "group :"
+msgstr "Werkgroep:"
+
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Nie gekonnekteer nieKabelkonneksie"
+
+#: ../../standalone/draksound_.c:47
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"
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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 ""
-"Hierdie is die belangrikste oomblik vir u GNU/Linux-rekenaar se sekuriteit:\n"
-"u moet 'n wagwoord voorsien vir \"root\". \"Root\" is die supergebruiker "
-"wat\n"
-"dinge doen soos om die sagteware op te dateer, gebruikers by te voeg,\n"
-"en die konfigurasie te verander. \"Root\" kan alles doen! Hieroor moet\n"
-"u 'n deeglike wagwoord vir \"root\" kies - (DrakX sal jou tune as die wag-\n"
-"woord nie op spec is nie.) U kan wel die wagwoord uitlaat, maar dit word\n"
-"te sterkste afgeraai. GNU/Linux is net so vatbaar vir foute soos enige\n"
-"ander bedryfstelsel. Aangesien \"root\" geen perke het nie, kan hy/sy\n"
-"maklik skade aanrig as die persoon roekeloos handel. Dit moet dus\n"
-"moeilik wees vir 'n persoon om \"root\" te word.\n"
-"\n"
-"Die wagwoord behoort 'n mengsel van letters en syfers te wees en ten minste\n"
-"8 karakters lank te wees. Moet dit nie neerskryf nie, dit veroorsaak 'n "
-"swak\n"
-"skakel\n"
-"\n"
-"Moet dit ook nie te vreemd maak nie, u moet dit tog kan onthou!\n"
-"\n"
-"Indien u gebruik maak van 'n eksterne bediener wat die toegang beheer,\n"
-"klik op die \"%s\"-knoppie.\n"
-"\n"
-"Indien u netwerk gebruik maak van LDAP, NIS of 'n Windows PDC, moet\n"
-"u die gepaste diens vir \"%s\" kies. Vra u administrateur indien u nie weet\n"
-"watter een om te kies nie.\n"
-"\n"
-"Indien u probleme ondervind om wagwoorde te onthou, en die rekenaar is\n"
-"ver van die Internet af, en u vertrou almal wat die masjien gebruik, kan u\n"
-"kies om \"%s\" te gebruik. -once & heavy!-"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
-msgstr "Flous-naamresolusie-beskerming"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/draksound_.c:54
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."
-msgstr ""
-"Op hierdie tydstip laat DrakX u toe om die sekuriteitsvlak vir die\n"
-"rekenaar te kies. 'n Algemene reel is dat die sekuriteit hoër behoort\n"
-"te wees indien die masjien belangrike inligting bevat, of direk aan\n"
-"die Internet gekoppel is. Hierdie hoër sekuriteit kom met die koste dat\n"
-"dit algemene gebruik op die rekenaar moeiliker maak.\n"
"\n"
-"Indien u onseker is oor wat om te kies, bly by die verstek opsie."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "Laai vanaf floppie"
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Die volgende drukker is outomaties opgespoor. "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Uses command %s"
-msgstr "Gebruik opdrag %s"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
-msgstr "Selflaai Disket"
+#: ../../standalone/draksplash_.c:21
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "Norweegs"
+#: ../../standalone/draksplash_.c:67
+#, fuzzy
+msgid "first step creation"
+msgstr "herlaaiskyfskepping"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for new scanners ..."
-msgstr "Opsoek na nuwe skandeerders"
+#: ../../standalone/draksplash_.c:70
+#, fuzzy
+msgid "final resolution"
+msgstr "Resolusie"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "'Apache World Wide Web'-bediener"
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+#, fuzzy
+msgid "choose image file"
+msgstr "Kies 'n lêer"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "'stepping' van die verwerker (sub-model (generasie) nommer)"
+#: ../../standalone/draksplash_.c:72
+#, fuzzy
+msgid "Theme name"
+msgstr "Drukkernaam:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "select path to restore (instead of /)"
-msgstr "kies roete om te herstel (instede van /)"
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
+#, fuzzy
msgid "Configure bootsplash picture"
-msgstr "Konfigureer selflaai-splatskerm beeld"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr "Georgia"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "China"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr " (Maak seker dat alle drukkers gekoppel en aangeskakel is).\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "Lees data van geïnstalleerde drukkers..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
-msgstr " Wis Nou "
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "bediener"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Sit 'n FAT-geformatteerde skyf in aandrywer %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "ja, beteken dat die verwerker 'n rekenkundige-koverwerker het"
-
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Wag asb... Konfigurasie word toegpas"
-
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Welkom by GRUB, die bedryfstelselkieskaart!"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
-msgstr "SCSI-beheerders"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr "op LPD-bediener \"%s\", drukker \"%s\""
-
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Kies 'n vertoonbestuurder"
-
-#
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Zeroconf Rekenaarnaam"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
-msgstr "Aangepaste 'setup/crontab' inskrywing:"
-
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP-adres moet in 1.2.3.4. formaat wees"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Konfigureer die CUPS-drukkerstelsel"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "Ecuador"
+msgstr "Konfigureer dienste"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Add an item"
-msgstr "Voeg 'n item by"
+#: ../../standalone/draksplash_.c:90
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Die drukkers op hierdie rekenaar is beskikbaar aan ander rekenaars"
+#: ../../standalone/draksplash_.c:91
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "China (Hong Kong)"
-msgstr "Hong Kong"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
+msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Ek kan nie die nodige herlaaibeeld '%s' kry nie."
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
-"Geen klankkaart opgespoor nie. Probeer \"harddrake\" na die installasie"
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:95
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
-"Ongeldige poort: %s.\n"
-"Die regte manier is \"poort/tcp\" of \"poort/udp\",\n"
-"waar poort tussen 1 en 65535 is."
-#: ../../any.pm:1
-#, c-format
-msgid "Shell"
-msgstr "Dop"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome and Principe"
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
+msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
+msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
-msgstr "Kan nie met gebruikernaam %s inteken nie (werkeerde wagwoord?)"
+#: ../../standalone/draksplash_.c:113
+#, fuzzy
+msgid "Preview"
+msgstr "toestel"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaidjani (latyns)"
+#: ../../standalone/draksplash_.c:115
+#, fuzzy
+msgid "Save theme"
+msgstr "Installeer stelsel"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package not installed"
-msgstr "Pakket is nie geïnstalleer nie"
+#: ../../standalone/draksplash_.c:116
+#, fuzzy
+msgid "Choose color"
+msgstr "Kies 'n monitor"
-#: ../../lang.pm:1
-#, c-format
-msgid "American Samoa"
-msgstr "American Samoa"
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
+msgstr ""
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Become a MandrakeExpert"
-msgstr "Word 'n MandrakeExpert"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, c-format
-msgid "Protocol"
-msgstr "Protokol"
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Kopieer lettertipes op u stelsel"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
-msgstr "Harddrake help"
+#: ../../standalone/draksplash_.c:428
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Drukkermodelkeuse"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
+#: ../../standalone/draksplash_.c:449
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Tik drukkertoestel URI in"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Mandrake Terminal Server Configuration"
+#: ../../standalone/draksplash_.c:458
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Toestel word afgetas..."
-#: ../../standalone/drakbackup:1
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:46
msgid ""
+"XawTV isn't installed!\n"
"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
"\n"
-" DrakBackup Raporteer Detail\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
"\n"
"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
-msgstr "Herstel alle rugsteune"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
-msgstr " op pallelle poort #%s"
+#: ../../standalone/drakxtv_.c:63
+#, fuzzy
+msgid "Canada (cable)"
+msgstr "Kanadees (Quebec)"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
msgstr ""
-"Stel die wagwoord se minimum lengte, minimum aantal syfers en die minimum "
-"hoofletters."
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr "indien ja gekies is, ondersoek die oop poorte."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Dit mag 'n rukkie duur om die media uit te vee."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
+msgstr ""
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "Waarskuwing"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
msgstr ""
-"\n"
-"- Ander Lêers:\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name"
-msgstr "Eksterne bedienernaam"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "East Europe"
+msgstr "Europa"
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr "toegang na X-programme"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Frankryk"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "Bereken die grootte van die Windowspartisie"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "Ireland"
+msgstr "Yslandies"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Herlaai"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "West Europe"
+msgstr "Europa"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Italy"
-msgstr "Italië"
+#: ../../standalone/drakxtv_.c:66
+#, fuzzy
+msgid "Australia"
+msgstr "seriaal"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
-msgstr "Cayman Eilande"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
+msgstr ""
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "fout met onthegting van %s: %s"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "Drukkernaam"
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
-msgstr "deaktiveer"
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do it!"
-msgstr "Gaan voort!"
+#: ../../standalone/drakxtv_.c:102
+msgid ""
+"Please,\n"
+"type in your tv norm and country"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
-msgstr "%s reageer nie"
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
+msgstr ""
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select model manually"
-msgstr "Kies model self"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Format"
-msgstr "Formatteer"
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
+msgstr ""
-#: ../../network/adsl.pm:1
-#, 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'"
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
msgstr ""
-"Die mees algemene metode vir ADSL is om pppoe te gebruik.\n"
-"Daar is wel sekere konneksie wat pptp of DHCP gebruik.\n"
-"Indien u nie weet nie, kies 'gebruik pppoe'."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
-msgstr "Verskeie"
+#: ../../standalone/drakxtv_.c:120
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Daar was 'n fout met die installasie van die pakkette:"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
-msgstr "Zip"
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
-msgstr "Linker 'Alt'-sleutel"
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Load setting"
-msgstr "Laai verstelling"
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:148
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"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-"\n"
+"You can visit our hardware database at:\n"
"\n"
-"Printerdrake kon nie u drukker (%s) se model bepaal nie. Kies asseblief die "
-"korrekte model vanaf die lys."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Maak hierdie die verstekdrukker"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"\n"
-"Kies die drukkers wat u wil oordra en klik op\n"
-"\"Oordra\""
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
-msgstr "Albanies"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "Litaue"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "Kompak"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Opgespoorde model: %s %s"
-
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
-msgstr "MandrakeSoft het die room van sagteware vir u gekies"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Local files"
-msgstr "Plaaslike lêers"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "moontlik"
+#: ../../standalone/harddrake2_.c:17
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Alternatiewe toetsbladsy (A4)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
-msgstr "Panama"
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Can't open %s!"
-msgstr "Kan nie %s oopmaak nie!"
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:21
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?"
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-"Dit blyk dat u vertoonkaart 'n 'TV-OUT'-verbinding het.\n"
-"Dit kan opgestel word deur 'frame-buffer' (raam-buffer)\n"
-"te gebruik.\n"
-"\n"
-"Om dit te laat werk, moet u die vertoonkaart aan die TV gekoppel wees\n"
-"voordat u die rekenaar aanskakel.\n"
-"Kies dan die \"TV out\" inskrywing op die herlaaistelsel se kieslys\n"
-"\n"
-"Verlang u hierdie funksie?"
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "Monitor"
+#: ../../standalone/harddrake2_.c:22
+#, fuzzy
+msgid "Channel"
+msgstr "Kanselleer"
-#: ../../printer/printerdrake.pm:1
-#, 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"
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
msgstr ""
-"U is besig om drukwerk na 'n Windows-gebruiker met 'n wagwoord op te stel. "
-"Daar is fout in Samba se argitektuur sodat hierdie wagwoord in sigbare teks "
-"op die instruksielyn geplaas word. Dit gebeur wanneer die Samba-kliënt "
-"drukwerk na die Windows-bediener stuur. Enige gebruiker kan dan daardie "
-"wagwoord sien, deur bv \"ps auxwww\" in te tik.\n"
-"\n"
-"Ons beveel een van die volgende alternatiewe aan ( bo en behalve dat u seker "
-"maak dat slegs masjiene op u plaaslike netwerk toegang na u Windows-bediener "
-"het, deur bv 'n vuurmuur op te stel):\n"
-"\n"
-"Gebruik 'n rekening sonder wagwoord op u Windows-bediener vir drukwerk daar "
-"is die \"GUEST\" of stel 'n aparte een op net vir drukwerk. Behou dan steeds "
-"wagwoord beskerming vir die ander.\n"
-"\n"
-"Sel die Windows-bediener so op, dat dit die drukker beskikbaar stel onder "
-"die LPD-protokol. Stel dan drukwerk op hierdie masjien op deur die \"%s\"-"
-"konneksie in Printerdrake te gebruik.\n"
-"\n"
-"Wie is Bernoldus Niemand?\n"
-"\n"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65-duisend kleure (16 bis)"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/harddrake2_.c:23
msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
msgstr ""
-"\n"
-"- Stoor op Hardeskyf op roete: %s\n"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Verwyder lettertipes vanaf u rekenaar"
+#: ../../standalone/harddrake2_.c:26
+#, fuzzy
+msgid "Bus identification"
+msgstr "Magtiging"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../standalone/harddrake2_.c:27
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."
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-"Waarskuwing, die netwerk-aansluiter (%s) is reeds opgestel.\n"
-"\n"
-"Wil u dit outomaties herkonfigureer?\n"
-"\n"
-"U kan dit self doen, maar moet uitmaak, maak uit?"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "X met herlaai"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
-msgstr " adsl"
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Nie genoeg partisies vir RAID vlak %d nie\n"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "aandrywer ondersteun die volgende formate"
+#: ../../standalone/harddrake2_.c:30
+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 ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "Probleme met die kopieer van Fermware (Firmware), lêer %s is soek"
+#: ../../standalone/harddrake2_.c:33
+#, fuzzy
+msgid "Cache size"
+msgstr "blokgrootte"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: true"
-msgstr "plaalike konfigurasie: waar"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
msgstr ""
-"Die volgende drukkers is opgestel. Klik-klik op 'n drukker om sy "
-"verstellings te verander, dit die verstek drukker te maak, of inligting "
-"omtrent dit te sien."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connected"
-msgstr "Gekonnekteer"
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
-msgstr "Masedonies"
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "Mali"
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
-msgstr "Brûe en stelselbeheerders"
+#: ../../standalone/harddrake2_.c:36
+#, fuzzy
+msgid "Cpuid level"
+msgstr "Sekuriteitsvlak word gestel."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "/Lêer/_Stoor"
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "No details"
-msgstr "Geen Detail"
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
+msgstr ""
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "baie oulik"
+#: ../../standalone/harddrake2_.c:37
+msgid ""
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Preview"
-msgstr "Voorskou"
+#: ../../standalone/harddrake2_.c:38
+msgid "This field describes the device"
+msgstr ""
-#
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Remote Control"
-msgstr "Eksterne Beheer"
+#: ../../standalone/harddrake2_.c:39
+#, fuzzy
+msgid "Old device file"
+msgstr "Selekteer lOer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select media for backup..."
-msgstr "Kies asb. 'n media vir die rugsteun..."
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
-msgstr "Verkeerde e-pos"
+#: ../../standalone/harddrake2_.c:41
+#, fuzzy
+msgid "New devfs device"
+msgstr "Netwerkportaaltoestel"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 bediener: %s\n"
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "Laat Maerkliënte toe"
+#: ../../standalone/harddrake2_.c:43
+#, fuzzy
+msgid "Module"
+msgstr "Muis"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgies (Russiese uitleg)"
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_Opsies"
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
+msgstr ""
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Your printer model"
-msgstr "U model drukker"
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
+msgstr ""
-#: ../../any.pm:1
-#, 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)."
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
msgstr ""
-"\n"
-"\n"
-"(WAARSKUWING! U gbruik XFS vir u wortel-partisie,\n"
-"die skep van 'n laaidisket op 'n 1.44Mb disket sal moontlik\n"
-"faal aangesien XFS se drywer baie spasie vat)."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/harddrake2_.c:46
msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-"\n"
-"- Verwyder .tar-lêers vanaf hardeskyf, na rugsteun.\n"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
msgstr ""
-"Geen CD- of DVD-beelde gevind nie, kopieer die installasie program en rpm-"
-"lêer"
-#: ../advertising/04-configuration.pl:1
-#, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "Mandrake se veelsydige konfigurasie program"
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
+msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Save"
-msgstr "Stoor"
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
-msgstr "Die %s word nie ondersteun nie"
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr "Laai die drywers vir u USB-toestelle"
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Disk"
-msgstr "Skyf"
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
+msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Tik drukkertoestel se URI in"
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
+msgstr ""
-#: ../advertising/01-thanks.pl:1
-#, c-format
+#: ../../standalone/harddrake2_.c:53
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."
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-"Die sukses van MandrakeSoft is te danke aan die prinsiep van Vrye Sagteware. "
-"Hierdie bedryfstelsel is te danke aan die spanwerk van 'n wêreldwye "
-"gemeenskap."
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "Israel"
+#: ../../standalone/harddrake2_.c:55
+#, fuzzy
+msgid "Floppy format"
+msgstr "Formatteer"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "Frans-Guiana"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "default:LTR"
+#: ../../standalone/harddrake2_.c:56
+#, fuzzy
+msgid "Level"
+msgstr "vlak"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
-msgstr "'n Opdrag moet voorsien word!"
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
-msgstr "Kies self gebruikers"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Dra drukkerkonfigurasie oor"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Wil u drukwerk aktiveer op bogenoemde drukkers?\n"
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+#, fuzzy
+msgid "Model"
+msgstr "Muis"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of suid root files"
-msgstr "Ondersoek die byvoeg/verwydering van suid 'root'-lêers"
+#: ../../standalone/harddrake2_.c:58
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kaartgeheue (DMA)"
-#: ../../any.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
msgstr ""
-"Om hierdie te laat werk met 'n W2K PDC, moet u die volgende doen: As admin "
-"voer die volgende opdrag uit, 'C:\\>net localgroup \"Pre-Windows 2000 "
-"Compatibla Acces\" everyone' en herlaai die bediener.\n"
-"U moet ook die gebruikernaam/wagwoord van die 'Domain Admin' hê om hierdie "
-"masjien aan te sluit by die Windows(TM)-domein.\n"
-"Indien die netwerk nog nie opgestel is nie, sal Drakx poog om by die domein "
-"aan te sluit, as die netwerk reg is.\n"
-"Sou dit nie werk nie, kan u later 'smbpasswd -j DOMEIN -U GEBRUIKER%%"
-"WAGWOORD' op die instruksielyn as die supergebruiker intik. Die Windows(tm) "
-"Domein, en Admin gebruiker/wagwoord moet gebruik word.\n"
-"Die opdrag 'wbinfo -t' sal u 'authentication secrets' ondersoek."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Poort %s)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Gebruik netwerkkonneksie vir rugsteun"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Kernel version"
-msgstr "Weergawe van kernel"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Model name"
+msgstr "Modulenaam"
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:60
+msgid "Official vendor name of the cpu"
msgstr ""
-"Nou moet u spesifiseer watter programme u op die rekenaar wil\n"
-"installeer. Daar is duisende pakkette beskikbaar vir Mandrake Linux, en\n"
-"om alles meer eenvoudig te maak, is die pakkette gegroepeer onder\n"
-"groepe van selfde tipe programme.\n"
-"\n"
-"Die groepe is so saamgestel dat dit saamval met die tipe gebruik van u\n"
-"rekenaar. Mandrake Linux het vier vooraf gespesifseerde installasies\n"
-"beskikbaar. Dink aan hierdie tipes as houers met verskillende pakkette.\n"
-"U kan wel uit die verskillende houers, verskillende pakkette kies.\n"
-"Dus kan u \"Werkstasie\" ook programme uit die \"Ontwikkeling\"\n"
-"bevat.\n"
-"( Amper soos die \"pick 'n mix\" by 'n Clicks of 'n winkel van u keuse! )\n"
-"\n"
-" * \"%s\": indien u die rekenaar as 'n werkstasie wil gebruik, kies een of\n"
-"meer hieruit.\n"
-"\n"
-" * \"%s\": indien u ontwikkelling op die masjien wil doen, kan u hier\n"
-"kies en keur.\n"
-"\n"
-" * \"%s\": mense wat 'n bediener wil opstel, hier is vir julle keuses.\n"
-"\n"
-" * \"%s\": Grafiese-omgewings. Indien u 'n grafiese omgewing wil\n"
-"gebruik, moet u ten minste een hier kies.\n"
-"\n"
-"Beweeg u muis stadig oor elke groep om meer inligting daaroor te bekom.\n"
-"Indien u NIKS kies nie gedurende 'n normale installasie, sal 'n venster\n"
-"opspring met verskillende keuses vir hierdie minimale installasie:\n"
-"\n"
-" * \"%s\": installeer die minimale programme vir 'n werkende grafiese\n"
-"werksomgewing.\n"
-"\n"
-" * \"%s\": installeer 'n basiese stelsel met basiese nutsporgramme en hul\n"
-"dokumentasie. Dit is geskik om 'n bediener op te stel.\n"
-"\n"
-" * \"%s\": sal 'n absolute minimale installasie doen, sodat u bloot 'n\n"
-"werkende Linux rekenaar het. Die grootte sal so 65 megagrepe wees.\n"
-"\n"
-"U kan die \"%s\" blokkie merk, dit is handig indien u vertroud is met al\n"
-"die beskikbare pakette, en u meer beheer verlang.\n"
-"\n"
-"Indien u die installasie in \"%s\"-modus begin het, kan u NIKS kies nie\n"
-"om te verhoed dat nuwe pakette installeer. Baie handig wanneer u 'n\n"
-"bestaande stelsel opdateeer, of herstel."
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "Aanvaar gebruiker"
+#: ../../standalone/harddrake2_.c:61
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 knoppies"
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
-msgstr "Bediener"
+#: ../../standalone/harddrake2_.c:62
+#, fuzzy
+msgid "Name"
+msgstr "Naam: "
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
-msgstr "Linker 'Shift'-sleutel"
+#
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "network printer port"
+msgstr "Netwerkdrukker (sok)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " local network"
-msgstr " plaaslike netwerk"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
+msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "Swak keuse, probeer weer\n"
+#: ../../standalone/harddrake2_.c:64
+msgid "the number of the processor"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
-msgstr "'syslog' verslae na konsole 12"
+#: ../../standalone/harddrake2_.c:65
+#, fuzzy
+msgid "Model stepping"
+msgstr "Formatering"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search new servers"
-msgstr "Deursoek netnuus-bedieners"
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
-msgstr "Heard en McDonald Eilande"
+#: ../../standalone/harddrake2_.c:66
+#, fuzzy
+msgid "The type of bus on which the mouse is connected"
+msgstr "Aan watter seriaalpoort is u muis gekoppel?"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
-msgstr "Geen alternatiewe drywer"
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "Skakel oor na kundige gebruiksvlak"
+#: ../../standalone/harddrake2_.c:68
+msgid "the vendor name of the processor"
+msgstr ""
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
-msgstr "(op hierdie rekenaar)"
+#: ../../standalone/harddrake2_.c:82
+#, fuzzy
+msgid "/_Quit"
+msgstr "Verlaat"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Deurgang IP-adres moet in 1.2.3.4. formaat wees"
+#: ../../standalone/harddrake2_.c:83
+#, fuzzy
+msgid "/Autodetect _printers"
+msgstr "Gebruik outobespeuring"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
-msgstr ""
-"\"%s\"-tipe winmodem opgespoor, wil u die sagteware daarvoor installeer"
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
+msgstr "/_Opsies"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Ondersoek pakette wat reeds geïnstalleer is..."
+#: ../../standalone/harddrake2_.c:85
+#, fuzzy
+msgid "/Autodetect _modems"
+msgstr "Gebruik outobespeuring"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Gebruik Differensiële Rugsteune"
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
+msgstr "/_Help"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Driver"
-msgstr "Drywer"
+#: ../../standalone/harddrake2_.c:89
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Help"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
msgstr ""
-"Linuxconf sal soms verskillende take verrig tydens die selflaai,\n"
-"om so die stelsel se konfigurasie te onderhou."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVD-R device"
-msgstr "DVD-R-toestel"
-
-#
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Eksterne LPD-drukker"
-
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/harddrake2_.c:93
msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
+"Description of the fields:\n"
"\n"
-"-You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
msgstr ""
-"Maak tog seker dat u die reg tot gebruik van lettertipes het, voordat u dit "
-"installeer.\n"
-"\n"
-"- U kan hierdie lettertipes op die normale manier installeer. In "
-"uitsonderlike gevalle mag dit X laat vries."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:96
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."
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
msgstr ""
-"Yaboot is a bootloader for NewWorld Macintosh hardware and can be used to\n"
-"boot GNU/Linux, MacOS or MacOSX. Normally, MacOS and MacOSX are correctly\n"
-"detected and installed in the bootloader menu. If this is not the case, you\n"
-"can add an entry by hand in this screen. 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."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
-msgstr "Woensdag"
+#: ../../standalone/harddrake2_.c:96
+#, fuzzy
+msgid "Select a device !"
+msgstr "Selekteer 'n videokaart"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "Duitsland"
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
+msgstr ""
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
-msgstr "Oostenryk"
+#: ../../standalone/harddrake2_.c:102
+#, fuzzy
+msgid "/_About..."
+msgstr "/Help/_Aangaande..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "Geen muis"
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "Kies die mediagrootte van u CD/DVD (MB)"
+#: ../../standalone/harddrake2_.c:105
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check permissions of files in the users' home"
-msgstr "Ondersoek lêer-verunningsvlakke in gebruiker se tuisgids"
+#: ../../standalone/harddrake2_.c:106
+#, fuzzy
+msgid "Author:"
+msgstr "Aftas"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr "Loop \"sndconfig\" na die installasie om u klankkaart te konfigureer"
+#: ../../standalone/harddrake2_.c:113
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Op poort %s bespeur"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "Maak boom toe"
+#: ../../standalone/harddrake2_.c:119
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Hardeskyfdeteksie."
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Outoinstallasiekonfigurasieprogram"
+#: ../../standalone/harddrake2_.c:126
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Sien hardeware inligting"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "Stel netwerk op"
+#: ../../standalone/harddrake2_.c:129
+#, fuzzy
+msgid "Information"
+msgstr "Vertoon inligting"
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "Waar wil u die herlaaistelsel installeer"
+#: ../../standalone/harddrake2_.c:131
+#, fuzzy
+msgid "Configure module"
+msgstr "Stel muistoestel op"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Die taal wat u hier kies sal die dokumentasie se taal, die installeer\n"
-"program, en rekenaar oor die algemeen, beïnvloed. Kies eerstens\n"
-"die area waar u woon, en daarna die taal wat u praat.\n"
-"( Jammer, geen inskrywing vir die wat 'nonsens' wou kies nie! )\n"
-"\n"
-"Deur op die \"%s\"-knoppie te klik, kan u ander tale by kies.\n"
-"Dit sal dan dokumentasie en programme toelaat in daardie ekstra tale.\n"
-"Sou daar byvoorbeeld Spaanse gebruikers op die masjien inteken, kies\n"
-"Afrikaans(of Engels) as die verstek taal en \"%s\" in die Gevorderde "
-"seksie.\n"
-"\n"
-"Let tog daarop dat u nie verbind is tot slegs een ekstra taal nie. U kan 'n "
-"paar\n"
-"van hulle kies, as u nou regtig wild wil raak, installeer almal deur die \"%s"
-"\"\n"
-"blokkie te merk! Deur 'n sekere taal te kies, sal vertalings, lettertipes,\n"
-"spelkykers ens vir die betrokke taal geïnstalleer word.\n"
-"Boonop kan die \"%s\" merkblokkie u toelaat om die gebruik van 'unicode\n"
-"(UTF-8)' af te dwing. Let daarop dat dit eksperimenteel is. Indien u "
-"verskillende\n"
-"tale met verskillende koderings kies, sal 'nicode'-ondersteuning "
-"geïnstalleer\n"
-"word.\n"
-"Om tussen verskillende tale te skakel, gebruik \"/usr/bin/localedrake\"\n"
-"Wanneer die supergebruiker (root) dit doen sal dit die taal vir almal\n"
-"verander, en wanneer 'n gewone gebruiker dit doen , sal dit net vir\n"
-"daardie gebruiker verander."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
msgstr ""
-"Die %s word nie deur hierdie weergawe van Mandrake Linux ondersteun nie."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "tape"
-msgstr "band"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr "DHCP-kliënt"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Wys gebruikers op vertoonbestuurders (kdm en gdm)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Muis (seriaal, ou C7 tipe)"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Herstel van léer %s het gefaal: %s"
+#: ../../standalone/harddrake2_.c:143
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Drukkerdata word gelees..."
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:159
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"
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-"Ek kan nie u partisielys van toesels %s lees nie, dit is te korrup.\n"
-"Ek sal die nodige partisies skoonmaak, maar alle data sal vernietig word.\n"
-"Die ander opsie is om DrakX te belet om die partisielys te verander.\n"
-"(fout is %s)\n"
-"\n"
-"Will u al die partisies verwyder?\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Find Package"
-msgstr "Soek Pakket"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Is u seker dat u drukwerk op hierdie rekenaar wil opstel?\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "New devfs device"
-msgstr "Nuwe 'devfs'-toestel"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
-msgstr "FOUT: Kan nie %s voortbring nie."
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Boot Style Configuration"
-msgstr "Herlaaistylkonfigurasie"
+#: ../../standalone/harddrake2_.c:231
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekondes"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Outotydsinkronisasie"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect modems"
+msgstr "Gebruik outobespeuring"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "Kon nie rugsteun-lêers by %s vind nie"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect printers"
+msgstr "Gebruik outobespeuring"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "Armenies (Foneties)"
+#: ../../standalone/harddrake2_.c:261
+#, fuzzy
+msgid "/Options"
+msgstr "/_Opsies"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Card model:"
-msgstr "Model kaart:"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "Wat is u sleutelborduitleg?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
-msgstr "Maerkliënt"
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr ""
+"Wil u hê dat die 'BackSpace' sleutel moet uitvee in die konsole ('n 'Delete' "
+"terugstuur)?"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
-msgstr "Dankie dat u Mandrake Linux 9.2 gekies het"
+#: ../../standalone/livedrake_.c:18
+msgid "Change Cd-Rom"
+msgstr "Verander CDROM"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Start Server"
-msgstr "Skop Bediener Af"
+#: ../../standalone/livedrake_.c:19
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"Dit asb. die instasllasie CDROM in die aandrywer en druk OK. Indien u nie\n"
+"hieroor beskik nie, druk Kanselleer om die intydse opgradering te vermy."
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Kon nie die intydse opgradering begin nie !!!\n"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "All remote machines"
-msgstr "Alle eksterne rekenaars"
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Install themes"
-msgstr "Installeer temas"
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
-msgstr "Espanol"
+#: ../../standalone/logdrake_.c:68
+msgid "Show only for the selected day"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "Berei installasie voor"
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
+msgstr "/Lêer/_Nuut"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Redigeer gekose rekenaar/netwerk"
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
+msgstr "<control>N"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add User -->"
-msgstr "Voeg gebruiker by -->"
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
+msgstr "/Lêer/_Oopmaak"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "Nauru"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
+msgstr "<control>O"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Ware lettertipe (True Type) installasie"
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr "/Lêer/_Stoor"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Outospeur drukkers wat direk aan die LAN verbind is"
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
+msgstr "<control>S"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN configuration"
-msgstr "LAN-konfigurasie"
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
+msgstr "/Lêer/Stoor _as"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "hard disk model"
-msgstr "model hardeskyf"
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr "/Lêer/-"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Maintain /etc/exports:\n"
-" \tClusternfs allows export of the root filesystem to diskless "
-"clients. drakTermServ\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
+msgstr "/Opsies/Toets"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
+msgstr "/Help/_Aangaande..."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "Kry Windows-lettertipes"
+#: ../../standalone/logdrake_.c:145
+#, fuzzy
+msgid "User"
+msgstr "Gebruikerskode"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
+#: ../../standalone/logdrake_.c:146
+#, fuzzy
+msgid "Messages"
+msgstr "Beginboodskap"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
+#: ../../standalone/logdrake_.c:147
+msgid "Syslog"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "Iranies"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
-msgstr "Kroasië"
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "Portaal:"
+#: ../../standalone/logdrake_.c:151
+msgid "search"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add server"
-msgstr "Voeg bediener by"
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
+msgstr ""
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name"
-msgstr "Eksterne drukkernaam"
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
+msgstr ""
-#: ../advertising/10-security.pl:1
-#, 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."
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
msgstr ""
-"MandrakeSoft het uitmuntende nutsprogramme ontwerp wat help om die veiligste "
-"Linux nog op te stel: 'Draksec', help bestuur van die sekuriteit van u "
-"rekenaar, asook 'n behoorlike vuurmuur, wat risiko's van buite verminder."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "Toestel: "
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
+msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "Lisensieooreenkoms"
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
+msgstr ""
-#: ../../standalone/draksec:1
-#, c-format
-msgid "System Options"
-msgstr "Stelsel-opsies"
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
+msgstr ""
-#: ../../security/level.pm:1
-#, c-format
-msgid "Please choose the desired security level"
-msgstr "Kies die verlangde sekuriteitsvlak"
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+msgid "Mail alert"
+msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/logdrake_.c:245
#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "Die rekenaar is alreeds gelys, en kan nie weer bygevoeg word nie.\n"
+msgid "please wait, parsing file: %s"
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", USB printer"
-msgstr ", USB-drukker"
+#: ../../standalone/logdrake_.c:392
+#, fuzzy
+msgid "Mail alert configuration"
+msgstr "Konfigurasie"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/logdrake_.c:393
+#, fuzzy
msgid ""
-"Unable to properly close mkbootdisk:\n"
+"Welcome to the mail configuration utility.\n"
"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Kon nie mkbootdisk ordentelik afsluit nie:\n"
+"Welkom by die proksiekonfigurasienutsprogram.\n"
"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+"Hier kan u die HTTP en FTP-instaanbedieners\n"
+"opstel met of sonder aantekenkodes en wagwoorde\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
msgstr ""
-"'n Aanwas-rugsteun stoor slegs lêers wat nuut bygekom het of die wat "
-"verander het sedert die laaste rugsteun."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Kies die programme wat die lettertipes sal ondersteun"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "Stel X op"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hd"
-msgstr "hd"
+#: ../../standalone/logdrake_.c:401
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domeinnaam"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turks (tradisionele \"F\" model)"
+#: ../../standalone/logdrake_.c:402
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS-bediener"
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "Geluk!"
+#: ../../standalone/logdrake_.c:403
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix e-posbediener, Inn netnuusbediener"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Gebruik eienaar-id vir uitvoering"
+#: ../../standalone/logdrake_.c:404
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS-bediener"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow remote root login"
-msgstr "Laat eksterne 'root'-inteken toe"
+#: ../../standalone/logdrake_.c:405
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS-bediener"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Down"
-msgstr "Af"
+#: ../../standalone/logdrake_.c:406
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Dienste"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Onverwerkte (direkte) drukker"
+#: ../../standalone/logdrake_.c:407
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Drukkerbediener"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Install rpm"
-msgstr "Installeer rpm"
+#: ../../standalone/logdrake_.c:414
+#, fuzzy
+msgid "service setting"
+msgstr "interessant"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/logdrake_.c:415
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"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
-"Sou u 'n lêer van die instruksielyn wil druk kan u of die instruksie \"%s "
-"<lêer>\" gebruik, of die grafiese program:\"xpp <lêer>\" of \"kprinter <lêer>"
-"\". Die grafiese programme vergemaklik die kies en verstel van 'n spesifieke "
-"drukker.\n"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "Tyd oor "
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "VK sleutelbord"
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "Ontheg"
+#: ../../standalone/logdrake_.c:428
+#, fuzzy
+msgid "load setting"
+msgstr "Formatering"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "Deïnstallasie van Lettertipes"
+#: ../../standalone/logdrake_.c:444
+#, fuzzy
+msgid "alert configuration"
+msgstr "Kleurkonfigurasie"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Net 'n oomblik, sekuriteitsvlak word gestel..."
+#: ../../standalone/logdrake_.c:445
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Probeer asb. weer"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "Duits (geen dooie sleutels)"
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tStuur e-pos na %s\n"
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "Wat is u muistoestel?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
-msgstr "%s word oorgedra..."
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
+msgstr "Emuleer derde knop?"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32-duisend kleure (15 bis)"
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Netwerkkonfigurasie"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
-msgstr "U kan uitvoer deur NFS of Samba te gebruik. Kies watter u wil gebruik."
+#: ../../standalone/net_monitor_.c:96
+#, fuzzy
+msgid "Profile "
+msgstr "Profiel:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "Gambia"
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Mandrake Control Center"
+#: ../../standalone/net_monitor_.c:103
+#, fuzzy
+msgid "Sending Speed:"
+msgstr "Stoor in lêer"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Reboot"
-msgstr "Herlaai"
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device"
-msgstr "Multi-funksionele-toestel"
+#: ../../standalone/net_monitor_.c:106
+#, fuzzy
+msgid "Connection Time: "
+msgstr "Konneksietipe:"
-#: ../../network/drakfirewall.pm:1
-#, 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."
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
msgstr ""
-"U kan uiteenlopende poorte voorsien. \n"
-"Voorbeelde hiervan is: 139/tcp 139/udp.\n"
-"Kyk gerus na '/etc/services' vir meer inligting."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t - Band \n"
+#: ../../standalone/net_monitor_.c:147
+#, fuzzy
+msgid "Wait please, testing your connection..."
+msgstr "Konneksie word getoets..."
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
-msgstr ""
-"Geen blaaier is op u rekenaar geïnstalleer. Installeer asseblief een indien "
-"u die hulp-stelsel wil deurblaai"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Konnekteer aan die internet"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remember this password"
-msgstr "Onthou hierdie wagwoord"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Konnekteer aan die internet"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Internet-konneksie-deling is geaktiveer"
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t- Netwerk deur SSH.\n"
+#: ../../standalone/net_monitor_.c:225
+#, fuzzy
+msgid "Connection complete."
+msgstr "Konneksiespoed"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:226
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."
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-" Indien die verlangde drukker gespeur is, kies dit eenvoudig uit die lys en "
-"voorsien die gebruikernaam, wagwoord, en/of werkgroep indien benodig."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " cable"
-msgstr " kabel"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
-msgstr "Gebruik die beskikbare spasie op die Windows-partisie"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s gevind op %s, stel dit outomaties op?"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86-drywer: %s\n"
+#: ../../standalone/net_monitor_.c:330
+#, fuzzy
+msgid "Color configuration"
+msgstr "Kleurkonfigurasie"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
msgstr ""
-"Die rekenaarnaam/netwerk is alreeds gelys, en kan nie weer bygevoeg\n"
-"word nie.\n"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Kies die pakkette wat u wil installeer"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
-msgstr "Papua New Guinea"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "multi-funksionele toestel op parallelle poort"
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
+msgstr ""
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Busy files"
-msgstr "Rugsteun die stelsel-lêers"
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "Serwies (Kirillies)"
+#: ../../standalone/net_monitor_.c:400
+#, fuzzy
+msgid "Local measure"
+msgstr "Plaaslike lêers"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Voorsien die lêergids waar rugsteun na geskryf gaan word"
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
-msgstr "Hou kernel-boodskappe stil by verstek"
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:453
msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
+"Warning, another internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Wil u hierdie drukker (\"%s\")\n"
-"die verstek drukker maak?"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
-msgstr "Die DHCP-reeks se einde"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "Konnekteer"
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "Herlaaiskyf word geskryf..."
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Disconnect %s"
+msgstr "Diskonnekteer"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Net 'n oomblik, konneksie word getoets..."
+#: ../../standalone/printerdrake_.c:47
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Drukkerdata word gelees..."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "Netwerk op pad af"
+#: ../../standalone/scannerdrake_.c:39
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Toestel word afgetas..."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "Aantekenkode"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
+msgstr "Toets poorte"
-#: ../../services.pm:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, 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 %s is not supported by this version of Mandrake Linux."
msgstr ""
-"NFS is 'n populêre protokol vir lêerdeling oor TCP/IP netwerke.\n"
-"Hierdie diens voorsien die NFS-lêersluitfunksionaliteit."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
-msgstr "DHCP-Kliënt"
+#: ../../standalone/scannerdrake_.c:54
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "Wil u 'n drukwerk nou konfigureer?"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/scannerdrake_.c:57
#, 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 "%s is not in the scanner database, configure it manually?"
msgstr ""
-"Hierdie is HardDrake,'n Mandrake program vir hardewarekonfigurasie.\n"
-"<span foreground=\"royalblue3\">Weergawe:</span> %s\n"
-"<span foreground=\"royalblue3\">Skrywer</span> Thierry Vignaud &lt;"
-"tvignaud@mandrakesoft.com&gt;\n"
-"\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
-msgstr "ignoreer/sien oor"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Drukwerk/Skandeering op \"%s\""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit raid modules"
-msgstr "laat RAID-modules weg"
+#: ../../standalone/scannerdrake_.c:63
+#, fuzzy
+msgid "Select a scanner"
+msgstr "Selekteer 'n videokaart"
-#: ../../services.pm:1
+#: ../../standalone/scannerdrake_.c:91
#, 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)."
+msgid "This %s scanner is unsupported"
msgstr ""
-"lpd is die drukkerdiensprogram en is nodig vir lpr om te funksioneer.\n"
-"Dit is 'n diens wat drukstukke na drukkers toe reguleer."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
-msgstr "Iers"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sunday"
-msgstr "Sondag"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Internetkonneksiekonfigurasie"
-
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
-msgstr "komma-afgeskeie getalle"
-
-#: ../../standalone/harddrake2:1
+#: ../../standalone/scannerdrake_.c:105
#, 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\")"
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
msgstr ""
-"Sodra u 'n toestel gekies het, sal u meer inligting omtrent dit sien in die "
-"velde aan die regterkant (\"Inligting\")"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Skuif gekose reël een vlak op"
+#: ../../standalone/scannerdrake_.c:107
+#, fuzzy
+msgid "choose device"
+msgstr "Herlaaitoestel"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:113
#, c-format
msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
msgstr ""
-"Die volgende skandeerder\n"
-"\n"
-"%s\n"
-"is beskikbaar op u rekenaar.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Wil u werklik drukker \"%s\" verwyder?"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "I can't find any room for installing"
-msgstr "Ek kon geen plek vir installasie vind nie."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Default printer"
-msgstr "Verstek drukker"
-#: ../../network/netconnect.pm:1
+#: ../../standalone/scannerdrake_.c:118
#, c-format
msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
msgstr ""
-"U het meer as een internetkonneksiemetode opgstel.\n"
-"Kies die een wat u verlang.\n"
-"\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "Modify RAID"
-msgstr "Verander RAID"
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
-#: ../../network/isdn.pm:1
-#, 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."
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
-"Ek het 'n ISDB PCI-kaart gevind, maar ek ken nie die tipe nie. Kies asb.'n "
-"PCI-kaart op die volgende skerm."
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr "Voeg gebruiker by"
+#: ../../standalone/service_harddrake_.c:64
+#, fuzzy
+msgid "Hardware probing in progress"
+msgstr "Op poort %s bespeur"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-skywe %s\n"
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "Kies u taal"
-#: ../../lang.pm:1
-#, c-format
-msgid "Liberia"
-msgstr "Liberië"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "Kies installasieklas"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr "Kon nie die pakkette wat Scannerdrake benodig installeer nie."
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
+msgstr "Hardeskyfdeteksie."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-"Voorsien asseblief die koppelvlak-naam wat verbind is aan die Internet.\n"
-"\n"
-"Voorbeelde:\n"
-"\t\tppp+ vir modem of DSL konneksies, \n"
-"\t\teth0, or eth1 vir kabel konneksies, \n"
-"\t\tippp+ vir 'n isdn konneksie.\n"
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "Stel muistoestel op"
-#: ../../steps.pm:1
-#, c-format
+#: ../../steps.pm_.c:18
msgid "Choose your keyboard"
msgstr "Kies u sleutelbord"
-#: ../../steps.pm:1
-#, c-format
-msgid "Format partitions"
-msgstr "Formateer partisies"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Outomatiese korreksie van CUPS konfigurasie"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Running \"%s\" ..."
-msgstr "Loop \"%s\" ..."
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "enable radio support"
-msgstr "laat radio ondersteuning toe"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Skandeerder deel na rekenaars: "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Teruglus lêernaam: %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Kies asseblief die drukker na wie die drukwerk gestuur moet word."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not transfer printers"
-msgstr "Moet nie drukkers oordra nie"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Delay before booting the default image"
-msgstr "Wagperiode voor verstekstelsel gelaai word"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Hard Disk to backup"
-msgstr "Gebruik hardeskyf vir rugsteun"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Configure"
-msgstr "Konfigureer"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake"
-msgstr "Scannerdrake"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Pasop, daar is 'n ander internet konneksie, wat moontlik u netwerk gebruik, "
-"bespeur"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
-msgstr "Rugsteun-gebruikers"
+#: ../../steps.pm_.c:19
+msgid "Security"
+msgstr "Sekuriteit"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Tik asb die rekenaarnaam in.\n"
-"Dit moet 'n volle gekwalifiseerde naam wees,\n"
-"bv. ``myne.mywerk.co.za''.\n"
-"U mag ook die netwerkhek byvoeg indien daar een is"
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "Stel lêerstelsels op"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Kies drukkerspoelprogram"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Create new theme"
-msgstr "Skep 'n nuwe tema"
+#: ../../steps.pm_.c:21
+msgid "Format partitions"
+msgstr "Formateer partisies"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
-msgstr "Mandrake Tools Verduideliking"
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "Kies pakkette om te installeer"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "No image found"
-msgstr "Geen beeld gevind nie"
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "Installeer stelsel"
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
-"Sekere belangrike pakkette het nie korrek geïnstalleer nie.\n"
-"Óf die CDROM-aandrywer óf die CD is foutief.\n"
-"Toets die CD op 'n werkende Linux installasie met \"rpm -qpl Mandrake/RPMS/*."
-"rpm\"\n"
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "Voeg 'n gebruiker by"
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
-msgstr "Mandrake Linux 9.2: 'n uitmuntende ontwikkelingsplatform"
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "Stel netwerk op"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Detected model: %s"
-msgstr "Bespeurde model: %s"
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "Konfigureer dienste"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
-msgstr "e-pos \"%s\" is nie geldig nie!"
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "Installeer herlaaistelsel"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"'X11 Display Manager' laat u toe om, deur 'n grafiese- \n"
-"koppelvlak, aan te teken op u rekenaar. Die 'X Window'-stelsel kan tergelyk\n"
-"'n aantal X-sessies op dieselfde rekenaar afskop."
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "Maar 'n herlaaiskyf"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr "indien ja gekies is, loop daaglikse sekuriteitstoetse."
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "Stel X op"
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
-msgstr "Azerbaijan"
+#: ../../steps.pm_.c:34
+#, fuzzy
+msgid "Install system updates"
+msgstr "Installeer stelsel"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Toestel om vir rugsteun te gebruik"
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "Verlaay installasie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
-msgstr "Geen band in %s!"
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
msgstr ""
-" --doc <skakel> - skakel na 'n ander webblabsy ( vir WM se "
-"verwelkomings gedeelte)\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Dvorak (VSA)"
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "Web/FTP"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-"hierdie is die fisiese bus waarop die toestel ingeprop is (bv. PCI, USB, ...)"
+#
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
+msgstr "Netwerkrekenaar (kliënt)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Hoe is die drukker gekoppel?"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS, SMB, Instaan- , SSH (Bedieners)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security level"
-msgstr "Sekuriteitsvlak"
+#: ../../share/compssUsers:999
+msgid "Office"
+msgstr "Kantoor"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "final resolution"
-msgstr "finale resolusie"
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Gnome werkstasie"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
-msgstr "Dienste"
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Nutsprogramme vir PalmPilot en/of Visor"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Auto configuration"
-msgstr "Aanpas-konfigurasie"
+#: ../../share/compssUsers:999
+msgid "Workstation"
+msgstr "Werkstasie"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Vuurmuur/Netwerkroteerder"
#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Kantoorwerkstasie"
+msgid "Domain Name and Network Information Server"
+msgstr "Domeinnaam en Netwerk Informasie Bediener (DNS/NIS)"
#: ../../share/compssUsers:999
msgid ""
@@ -20949,72 +13399,76 @@ msgstr ""
"gnumeric), PDF-sigprogramme, ens."
#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Speletjiesrekenaar"
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "Klankprogramme: MP3- of MIDI-spelers, mengers, ens."
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Vermaak: Arkade, Bordspel, Strategie ens."
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimediastasie"
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Boeke en HOWTO's oor Linux en Vrye Sagteware"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Klank- en videospelers/redigeerders"
+msgid "KDE Workstation"
+msgstr "KDE werkstasie"
#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internetstasie"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ens."
#: ../../share/compssUsers:999
-#, fuzzy
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Stel hulpprogramme om e-pos en netnuus te lees en te stuur (pine, mutt, tin) "
-"en om ook die web deur te blaai."
+msgid "Multimedia - Video"
+msgstr "Multimedia - Video"
-#
#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Netwerkrekenaar (kliënt)"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr "Hulpprogramme vir e-pos, netnuus, web, FTP en netpraat"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Kliëntprogramme vir 'n verkeidenheid protokolle insluitend SSH"
+msgid "Database"
+msgstr "Datbasis"
#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Konfigurasie"
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL of MySQL databasisbediener"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
-msgstr "Nutsprogramme wat u rekenaarkonfigurasie vergemaklik"
+msgstr "Hulpprogramme vir u rekenaarkonfigurasie te vergemaklik"
#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Wetenskaplike Werkstasie"
+msgid "Multimedia - Sound"
+msgstr "Multimedia - Klank"
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
-msgstr "Wetenskaplike programme soos gnuplot"
+msgid "Documentation"
+msgstr "dokumentasie"
#: ../../share/compssUsers:999
msgid "Console Tools"
-msgstr "Konsole Hulpprogramme"
+msgstr "Konsole hulpprogramme"
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr ""
-"Redigeerders. teksverwerkers, instruksiedoppe, lêer-nutsprogramme, terminaal-"
-"programme"
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix e-posbediener, Inn netnuusbediener"
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE Werkstasie"
+msgid "Internet station"
+msgstr "Internetstasie"
+
+#: ../../share/compssUsers:999
+msgid "Multimedia station"
+msgstr "Multimediastasie"
+
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Konfigurasie"
+
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "Addisionele grafiese werkskerms (Gnome, IceWM)"
#: ../../share/compssUsers:999
msgid ""
@@ -21025,463 +13479,280 @@ msgstr ""
"versameling bygaande hulpprogramme"
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome Werkstasie"
+msgid "Graphical Environment"
+msgstr "Grafiese omgewing"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"'n Grafiese omgewing met gebruikersvriendelike stel applikasies en "
-"werkskerm-hulpprogramme"
+msgid "Development"
+msgstr "Ontwikkeling"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Ander Grafiese Werkskerms"
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ens."
+msgid "Tools to create and burn CD's"
+msgstr "Hulpprogramme vir die skep en brand van CDs"
+
+#: ../../share/compssUsers:999
+msgid "Office Workstation"
+msgstr "Kantoorwerkstasie"
+
+#: ../../share/compssUsers:999
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, ens."
+
+#: ../../share/compssUsers:999
+msgid "Graphics programs such as The Gimp"
+msgstr "Grafiese programme soos Die GIMP"
+
+#: ../../share/compssUsers:999
+msgid "DNS/NIS "
+msgstr "DNS/NIS "
#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr "C en C++ ontwikkelingsprogrammateke, programme en insluitlêers"
+#
#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentasie"
+msgid "Network Computer server"
+msgstr "Netwerkrekenaarbediener"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Boeke en HOWTO's oor Linux en Vrye Sagteware"
+msgid "Mail/Groupware/News"
+msgstr "E-pos/Groepware/Netnuus"
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr "LSB"
+msgid "Game station"
+msgstr "Speletjiesrekenaar"
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Linux Standard Base. Derdeparty ondersteuning van programme"
+msgid "Video players and editors"
+msgstr "Videospelers en -redigeerders"
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
+msgid "Multimedia - Graphics"
+msgstr "Multimedia - Grafika"
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Vermaak: Arkade, Bordspel, Strategie ens."
#: ../../share/compssUsers:999
-msgid "Mail"
-msgstr "e-Pos"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"Stel hulpprogramme om e-pos en netnuus te lees en te stuur (pine, mutt, tin) "
+"en om ook die web deur te blaai."
#: ../../share/compssUsers:999
-msgid "Postfix mail server"
-msgstr "Postfix e-pos-bediener"
+msgid "Personal Finance"
+msgstr "Persoonlike finansies"
#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Databasis"
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"'n Grafiese omgewing met gebruikersvriendelike stel applikasies en "
+"werkskermhulpprogramme"
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL of MySQL databasisbediener"
+msgid "Clients for different protocols including ssh"
+msgstr "Kliëntprogramme vir 'n verkeidenheid protokolle insluitende SSH"
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Vuurmuur/Netwerkroteerder"
+msgid "LSB"
+msgstr ""
#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Internetpoort"
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
+msgid "Sound and video playing/editing programs"
+msgstr "Klank- en videospelers/redigeerders"
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Domeinnaam en Netwerk-informasie-bediener (DNS/NIS)"
+msgid "Other Graphical Desktops"
+msgstr "Ander grafiese werkskerms"
#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Netwerkrekenaar-bediener"
+msgid "Editors, shells, file tools, terminals"
+msgstr ""
+"Redigeerders. teksverwerkers, instruksiedoppe, lêernutsprogramme, "
+"terminaalprogramme"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS, SMB, Instaan- , SSH (Bedieners)"
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "Programme om u finansies te bestuur, soos GNUcash"
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
-msgstr ""
-"Programme vir die lees en stuur van e-pos, netnuus en op die Web te rits."
+msgid "Personal Information Management"
+msgstr "Persoonlike Inligtingbestuur."
-#~ msgid "The setup has already been done, and it's currently enabled."
-#~ msgstr "Die opstelling is alreeds gedoen en is tans aktief."
+#: ../../share/compssUsers:999
+msgid "Multimedia - CD Burning"
+msgstr "Multimedia - CD Sny"
-#~ msgid "Logs"
-#~ msgstr "Staaflêers"
+#: ../../share/compssUsers:999
+msgid "Scientific Workstation"
+msgstr "Wetenskaplike werkstasie"
-#~ msgid "The setup has already been done, but it's currently disabled."
-#~ msgstr "Die opstelling is alreeds gedoen, maar is tans gedeaktiveer."
+#~ msgid "can not open /etc/inittab for reading: %s"
+#~ msgstr "kan nie /etc/inittab oopmaak vir lees nie: %s"
-#~ msgid "Profile "
-#~ msgstr "Profiel "
+#, fuzzy
+#~ msgid "cpu number "
+#~ msgstr "Telefoonnommer"
#~ msgid ""
-#~ "Welcome to the Internet Connection Sharing utility!\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ "Click on Configure to launch the setup wizard."
-#~ msgstr ""
-#~ "Welkom by die Internetkonneksiedeling program!\n"
+#~ "You now have the opportunity to download encryption software.\n"
#~ "\n"
-#~ "%s\n"
+#~ "WARNING:\n"
#~ "\n"
-#~ "Klik op Konfigureer om die assistent te loods."
-
-#~ msgid "Internet Connection Sharing configuration"
-#~ msgstr "Internetkonneksiedeling-konfigurasie"
-
-#~ msgid "No Internet Connection Sharing has ever been configured."
-#~ msgstr "Geen internetkonneksiedeling is al opgestel nie."
-
-#~ msgid "when checked, owner and group won't be changed"
-#~ msgstr "as gekies is, sal eienaar en groep nie verander word nie"
-
-#~ msgid ""
-#~ "XawTV isn't installed!\n"
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
#~ "\n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
#~ "\n"
-#~ "If you do have a TV card but DrakX has neither detected it (no bttv nor "
-#~ "saa7134\n"
-#~ "module in \"/etc/modules\") nor installed xawtv, please send the\n"
-#~ "results of \"lspcidrake -v -f\" to \"install@mandrakesoft.com\"\n"
-#~ "with subject \"undetected TV card\".\n"
+#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
#~ "\n"
#~ "\n"
-#~ "You can install it by typing \"urpmi xawtv\" as root, in a console."
+#~ "For any queries relating to these agreement, please contact \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
#~ msgstr ""
-#~ "XawTV in nie geïnstalleer nie!\n"
+#~ "U het nou die kans om enkripsieprogrammatuur af te laai.\n"
#~ "\n"
+#~ "WAARSKUWING:\n"
#~ "\n"
-#~ "Indien u wel 'n TV-kaart het, maar DrakX het dit nie opgetel nie( geen "
-#~ "bttv of saa713\n"
-#~ "module in \"/etc/modules\") en ook nie xawtv geinstalleer nie, stuur\n"
-#~ "asseblief die resultate van \"lspcidrake -v -f\" na "
-#~ "\"install@mandrakesoft.com\"\n"
-#~ "met die onderwerp \"undetected TV card\".\n"
+#~ "A.g.v. die verskillende algemene vereistes wat van toepassing gemaak word "
+#~ "deur\n"
+#~ "wetgewing, moet die eindgebruiker van hierdie sagteware seker wees dat "
+#~ "die\n"
+#~ "wette in sy/haar land dit wel toelaat dat om hierdie agteware af te laai, "
+#~ "aan te hou\n"
+#~ "en te gebruik.\n"
+#~ "Daarbenewens moet die gebruiker seker maak dat plaaslike wetgewing nie "
+#~ "oortree\n"
+#~ "word nie. Misbruik kan lei tot ernstige sanksies.\n"
#~ "\n"
+#~ "In geen geval kan MandrakeSoft nog sy vervaardigers en verskaffers "
+#~ "verantwoordelik\n"
+#~ "gehou word vir spesiale, indirekte or toevallige skade berokken "
+#~ "(insluitend, maar nie\n"
+#~ "beperk tot, winsverlies, besigheidsonderbreking, dataverlies en enige "
+#~ "voorspruitende laste\n"
+#~ "soos moontlik bepaal deur die wetgewende hof) wat vooruitspruit uit die "
+#~ "gebruik, besit\n"
+#~ "of aflaai van hierdie programmatuur nie, na tekening wat hierdie "
+#~ "ooreenkoms nie.\n"
#~ "\n"
-#~ "U kan dit installeer deur \"urpmi xawtv\" as 'root' op die instruksielyn "
-#~ "te tik."
-
-#~ msgid "on CDROM"
-#~ msgstr "op CDROM"
-
-#~ msgid "DVDR device"
-#~ msgstr "DVDR-toestel"
-
-#~ msgid "\t-CDROM.\n"
-#~ msgstr "\t-CDROM.\n"
-
-#~ msgid "across Network"
-#~ msgstr "oor die Netwerk"
-
-#~ msgid "Backup system"
-#~ msgstr "Rugsteun stelsel"
-
-#~ msgid "Hostname configuration"
-#~ msgstr "Rekenaarnaam konfigurasie"
+#~ "\n"
+#~ "Vir navrae vewant aan hierdie ooreenkoms, kontak asb.\n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
-#~ msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgid "Proxy configuration"
+#~ msgstr "Instaanbedienerkonfigurasie"
#~ msgid ""
-#~ "WARNING!\n"
+#~ "Welcome to the proxy configuration utility.\n"
#~ "\n"
-#~ "DrakX will now resize your Windows partition. Be careful:\n"
-#~ "this operation is dangerous. If you have not already done\n"
-#~ "so, you should first exit the installation, run scandisk\n"
-#~ "under Windows (and optionally run defrag), then restart the\n"
-#~ "installation. You should also backup your data.\n"
-#~ "When sure, press Ok."
+#~ "Here, you'll be able to set up your http and ftp proxies\n"
+#~ "with or without login and password\n"
#~ msgstr ""
-#~ "WAARSKUWING\n"
+#~ "Welkom by die proksiekonfigurasienutsprogram.\n"
#~ "\n"
-#~ "DrakX moet nou u WIndowspartisie se grootte verander. Hierdie operasie\n"
-#~ "IS GEVAARLIK. Indien u nie alreeds so gemaak het nie, moet u hierdie "
-#~ "installasie\n"
-#~ "verlaat, scandisk onder Windows loop en dalk ook defrag. Dan kan u "
-#~ "terugkeer na\n"
-#~ "hierdie installasie. Rugsteun ook u data. Insien u seker is van u saak, "
-#~ "kies OK."
+#~ "Hier kan u die HTTP en FTP-instaanbedieners\n"
+#~ "opstel met of sonder aantekenkodes en wagwoorde\n"
-#~ msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+#~ msgid "URL"
+#~ msgstr "URL"
-#
-#, fuzzy
-#~ msgid "Hostname"
-#~ msgstr "Rekenaarnaam"
+#~ msgid "port"
+#~ msgstr "Poort"
-#
-#~ msgid "Remote Printers"
-#~ msgstr "Eksterne Drukkers"
+#~ msgid "Url should begin with 'http:'"
+#~ msgstr "Instaanbediener moet begin met http://"
+
+#~ msgid "The port part should be numeric"
+#~ msgstr "Die poortgedeelte moet numeries wees"
#~ msgid ""
-#~ "Mandrake Linux 9.1 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!"
+#~ "Please fill in the ftp proxy informations\n"
+#~ "Leave it blank if you don't want an ftp proxy"
#~ msgstr ""
-#~ "Mandrake Linux bied met trots aan u die 'Mandrake Control Center'. Dit is "
-#~ "'n baie kragtige nutsprogram wat u instaat stel om u rekenaar vinnig en "
-#~ "effektief op te stel. Die opstel en verstel van dinge soos "
-#~ "sekuriteitsvlakke, skerm, muis, TV-kaarte, drukkers, netwerke, en nog "
-#~ "vele meer!"
-
-#~ msgid "Mandrake Linux 9.1: the ultimate development platform"
-#~ msgstr "Mandrake Linux: die uitsonderlike ontwikkelings-platform"
-
-#~ msgid "http://www.mandrakelinux.com/en/91errata.php3"
-#~ msgstr "http://www.mandrakelinux.com/en/91errata.php3"
+#~ "Vul asb. die FTP-instaanbediener inligting in\n"
+#~ "Los dit oop indien u nie FTP-instaanbediener verlang nie"
-#~ msgid "Printing system: "
-#~ msgstr "Drukkerstelsel:"
+#~ msgid "login"
+#~ msgstr "Gebruikerskode"
-#~ msgid "CDROM / DVDROM"
-#~ msgstr "CDROM / DVDROM"
+#~ msgid "password"
+#~ msgstr "Herhaal wagwoord"
-#~ msgid "on Tape Device"
-#~ msgstr "op Band-toestel"
+#~ msgid "re-type password"
+#~ msgstr "Geen wagwoord"
-#~ msgid "No CDR/DVDR in drive!"
-#~ msgstr "Geen CDR/DVDR in aandrywer!"
+#~ msgid "The passwords don't match. Try again!"
+#~ msgstr "Die wagwoorde stem nie ooreen nie. Probeer weer!"
-#, fuzzy
-#~ msgid "Level 1"
-#~ msgstr "vlak"
-
-#, fuzzy
-#~ msgid "Level 2"
-#~ msgstr "vlak"
+#~ msgid "Can't write file %s"
+#~ msgstr "Kan nie lêer %s skryf nie"
-#, fuzzy
-#~ msgid "Level 3"
-#~ msgstr "vlak"
+#~ msgid "no help implemented yet.\n"
+#~ msgstr "Gee hulp beskikbaar nie (nog nie).\n"
#, fuzzy
-#~ msgid "Level 4"
-#~ msgstr "vlak"
+#~ msgid "Please click on a medium"
+#~ msgstr "Kliek asb. op 'n partisie"
-#, fuzzy
-#~ msgid "Level 5"
-#~ msgstr "vlak"
+#~ msgid "Removing LPRng..."
+#~ msgstr "LPRng word verwyder..."
-#, fuzzy
-#~ msgid "Insert floppy and press %s"
-#~ msgstr "Sit 'n skyf in aandrywer %s"
+#~ msgid "Removing LPD..."
+#~ msgstr "LPD word verwyder..."
-#, fuzzy
-#~ msgid "Load"
-#~ msgstr "Yslandies"
+#~ msgid "usage: drakfloppy\n"
+#~ msgstr "gebruik: drakfloppy\n"
#, fuzzy
-#~ msgid "Bad Ip"
-#~ msgstr "Kaart I/O"
-
-#~ msgid "Output"
-#~ msgstr "Uitset"
-
-#~ msgid "Please relog into %s to activate the changes"
-#~ msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
-
-#~ msgid "Expert Area"
-#~ msgstr "Kundige area"
-
-#~ msgid "Wizard..."
-#~ msgstr "Assistent..."
-
-#~ msgid "We are now going to configure the %s connection."
-#~ msgstr "Ons gaan nou die %s konneksie herkonfigureer."
-
-#~ msgid "Name: %s\n"
-#~ msgstr "Naam: %s\n"
-
-#~ msgid "New configuration (isdn-light)"
-#~ msgstr "Nuwe konfigurasie (Ligte ISDN/isdn-light)"
-
-#~ msgid "Old configuration (isdn4net)"
-#~ msgstr "Ou konfigurasie (isdn4net)"
-
-#~ msgid "Internet connection & configuration"
-#~ msgstr "Internetkonneksie en konfigurasie"
-
-#~ msgid "Disconnect"
-#~ msgstr "Diskonnekteer"
-
-#~ msgid "Connect"
-#~ msgstr "Konnekteer"
-
-#~ msgid ""
-#~ "\n"
-#~ "You can reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "U kan u konneksie herkonfigureer."
-
#~ msgid ""
#~ "\n"
-#~ "You can connect to the Internet or reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "U kan aan die internet konnekter of u konneksie herkonfigureer."
-
-#~ msgid "You are not currently connected to the Internet."
-#~ msgstr "U is nie tans aan die internet gekonnekteer nie."
-
-#~ msgid ""
-#~ "\n"
-#~ "You can disconnect or reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "U kan diskonnekteer or herkonfigureer."
-
-#~ msgid "You are currently connected to the Internet."
-#~ msgstr "U is tans aan die internet gekonnekteer."
-
-#~ msgid "Office"
-#~ msgstr "Kantoor"
-
-#~ msgid "Set of tools for mail, news, web, file transfer, and chat"
-#~ msgstr "Hulpprogramme vir e-pos, netnuus, web, FTP en netpraat"
-
-#~ msgid "Games"
-#~ msgstr "Speletjies"
-
-#~ msgid "Multimedia - Graphics"
-#~ msgstr "Multimedia - Grafika"
-
-#~ msgid "Multimedia - Sound"
-#~ msgstr "Multimedia - Klank"
-
-#~ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-#~ msgstr "Klankprogramme: MP3- of MIDI-spelers, mengers, ens."
-
-#~ msgid "Multimedia - Video"
-#~ msgstr "Multimedia - Video"
-
-#~ msgid "Video players and editors"
-#~ msgstr "Videospelers en -redigeerders"
-
-#~ msgid "Multimedia - CD Burning"
-#~ msgstr "Multimedia - CD Sny"
-
-#~ msgid "Tools to create and burn CD's"
-#~ msgstr "Hulpprogramme vir die skep en brand van CDs"
-
-#~ msgid "More Graphical Desktops (Gnome, IceWM)"
-#~ msgstr "Addisionele grafiese werkskerms (Gnome, IceWM)"
-
-#~ msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-#~ msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, ens."
+#~ "Usage: harddrake [-h|--help] [--test]\n"
+#~ msgstr "gebruik: keyboarddrake [--expert] [SleutelbordNaam]\n"
-#~ msgid "Personal Information Management"
-#~ msgstr "Persoonlike Inligtingbestuur."
-
-#~ msgid "Tools for your Palm Pilot or your Visor"
-#~ msgstr "Nutsprogramme vir PalmPilot en/of Visor"
-
-#~ msgid "Personal Finance"
-#~ msgstr "Persoonlike finansies"
-
-#~ msgid "Programs to manage your finances, such as gnucash"
-#~ msgstr "Programme om u finansies te bestuur, soos GNUcash"
-
-#~ msgid "no network card found"
-#~ msgstr "geen netwerkkaart gevind nie"
-
-#~ msgid ""
-#~ "Please enter your host name if you know it.\n"
-#~ "Some DHCP servers require the hostname to work.\n"
-#~ "Your host name should be a fully-qualified host name,\n"
-#~ "such as ``mybox.mylab.myco.com''."
-#~ msgstr ""
-#~ "Tik asb die rekenaarnaam in.\n"
-#~ "Sekere DHCP-bedieners benodig die rekenaarnaam.\n"
-#~ "Dit moet 'n volle gekwalifiseerde naam wees,\n"
-#~ "bv. ``myne.mywerk.co.za''."
-
-#~ msgid "DrakFloppy Error: %s"
-#~ msgstr "DrakFloppy Fout: %s"
-
-#~ msgid "Launch Aurora at boot time"
-#~ msgstr "Laai Aurora met herlaaityd"
-
-#~ msgid "Traditional Gtk+ Monitor"
-#~ msgstr "Tradisionele Gtk+ Monitor"
-
-#~ msgid "Traditional Monitor"
-#~ msgstr "Tradisionele monitor"
-
-#~ msgid "NewStyle Monitor"
-#~ msgstr "Nuwe styl monitor"
-
-#~ msgid "NewStyle Categorizing Monitor"
-#~ msgstr "Nuwe monitorkategoriasiestyl"
-
-#~ msgid "Mail/Groupware/News"
-#~ msgstr "E-pos/Groepware/Netnuus"
-
-#~ msgid "Postfix mail server, Inn news server"
-#~ msgstr "Postfix e-posbediener, Inn netnuusbediener"
-
-#~ msgid "/Options"
-#~ msgstr "/Opsies"
-
-#~ msgid ""
-#~ "The partition you've selected to add as root (/) is physically located "
-#~ "beyond\n"
-#~ "the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
-#~ "If you plan to use the LILO boot manager, be careful to add a /boot "
-#~ "partition"
-#~ msgstr ""
-#~ "_ keuse vir die \"root\" partisie (/) is fisies buite die 1024de "
-#~ "silindervan die\n"
-#~ "hardeskyf en u het nie 'n /boot partisie nie. Indien u beplan om LILO te "
-#~ "gebruik,moet u\n"
-#~ "asb. 'n /boot partisie skep,"
-
-#~ msgid ""
-#~ "Sorry I won't accept to create /boot so far onto the drive (on a cylinder "
-#~ "> 1024).\n"
-#~ "Either you use LILO and it won't work, or you don't use LILO and you "
-#~ "don't need /boot"
-#~ msgstr ""
-#~ "Jammer, ek kan nie die versoek om /boot om hierdie skyf (op 'n silinder > "
-#~ "1024) te skep,\n"
-#~ "aanvaar nie. As u LILO gebruik sal dit nie werk nie en as u nie LILO "
-#~ "gebruik\n"
-#~ "nie, dan het u nie /boot nodig nie."
-
-#~ msgid ""
-#~ "You must indicate where you wish to place the information required to "
-#~ "boot\n"
-#~ "GNU/Linux.\n"
-#~ "\n"
-#~ "Unless you know exactly what you are doing, choose \"First sector of "
-#~ "drive\n"
-#~ "(MBR)\"."
-#~ msgstr ""
-#~ "U moet aandui waar u die informasie om Linux te herlaai, wil plaas.\n"
-#~ "\n"
-#~ "\n"
-#~ "Behalwe as u werklik weet wat u doen moet u \"Eerste sektor van skyf (MBR)"
-#~ "\" kies."
+#~ msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+#~ msgstr "gebruik: keyboarddrake [--expert] [SleutelbordNaam]\n"
-#~ msgid "Test ports"
-#~ msgstr "Toets poorte"
+#~ msgid "detected on interface %s"
+#~ msgstr "op koppelvlak %s bespeur"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index 8803bb497..ad1639033 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -6,5024 +6,3059 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
-"PO-Revision-Date: 2003-08-19 14:36-0300\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"PO-Revision-Date: 2001-5-12 HO:MI+ZONE\n"
"Last-Translator: Mohammed Gamal <f2c2001@yahoo.com>\n"
-"Language-Team: Arabic\n"
+"Language-Team: Arabic \n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.6\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "جاري عمل مسح للتجزئات لإيجاد نقاط التحميل"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr "if set to yes, check additions/removals of suid root files."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tErase=%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 كيلوبايت"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "network printer port"
-msgstr "Ù…Ù†ÙØ° طابعة الشبكة"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 كيلوبايت"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "ÙØ¶Ù„اً أدخل قرص مرن:"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 ميغابايت"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 ميغابايت"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 ميغابايت"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"جدول التقسيم المحÙوظ ليس Ø¨Ù†ÙØ³ الحجم\n"
-"لا زلت تريد الإكمال؟"
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 ميغابايت"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Which username"
-msgstr "أي اسم مستخدم"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 ميغابايت"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "ما نوع المدخل الذي تريد Ø§Ø¶Ø§ÙØªÙ‡ØŸ"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 ميغابايت"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Restore partition table"
-msgstr "استعادة جدول التقسيم"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 ميغابايت أو أكثر"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure hostname..."
-msgstr "إعداد اسم المستضيÙ..."
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "إختر خادم X"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "على خادم CUPS \"%s\""
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "خادم X"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Post-install configuration"
-msgstr "تهيئة ما بعد التثبيت"
+#: ../../Xconfig/card.pm_.c:230
+msgid "Multi-head configuration"
+msgstr "إعداد متعدد الرؤوس"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
+"نظامك يدعم الإعداد متعدد الرؤوس.\n"
+"ماذا تريد أن ØªÙØ¹Ù„ØŸ"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "استخدم ``%s'' بدلا من ذلك"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Type"
-msgstr "النوع"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"أيضاً الطابعات المهيئة Ø¨Ù…Ù„ÙØ§Øª PPD من مصنّعيها أو بمشغلات CUPS الخاصة بها لا "
-"يمكن نقلها."
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
+msgstr "إختر حجم ذاكرة بطاقة الشاشة"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "سريلانكا"
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "إعداد XFree"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"الطابعات التالية\n"
-"\n"
-"%s%s\n"
-"متصلة مباشرةً بنظامك"
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
+msgstr "أي اعداد لـXFree تريد؟"
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
-msgstr "جمهورية وسط Ø£ÙØ±ÙŠÙ‚ية"
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
+msgstr "اعداد كل الرؤوس بشكل مستقل"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "جهاز البوابة"
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
+msgstr "استخدام امتداد Xinerama"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Advanced preferences"
-msgstr "ØªÙØ¶ÙŠÙ„ات متقدمة"
+#: ../../Xconfig/card.pm_.c:389
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "قم بإعداد البطاقة \"%s\" Ùقط (%s)"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Net Method:"
-msgstr "Net Method:"
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Ethernetcard"
-msgstr "بطاقة ايثرنت"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s مع تسريع ثلاثي الأبعاد"
-#: ../../security/l10n.pm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-"عند التعيين, أرسل التقرير بالبريد الى هذا العنوان أو قم بإرساله الى المستخدم "
-"الجذر"
-
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr "Parameters"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "no"
-msgstr "لا"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Auto-detect"
-msgstr "تحقق آلي"
+"يمكن لبطاقتك الحصول على دعم للتسريع ثلاثي الأبعاد لكن Ùقط مع XFree %s.\n"
+"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشل Ø£ÙØ¶Ù„ ÙÙŠ الوضع "
+"ثنائي الأبعاد."
-#: ../../standalone/drakconnect:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid "Interface:"
-msgstr "الواجهة:"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "يمكن لبطاقتك الحصول على دعم للتسريع ثلاثي الأبعاد مع XFree %s"
-#: ../../steps.pm:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid "Select installation class"
-msgstr "اختر نوع التثبيت"
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s مع دعم تجريبي للرسوم ثلاثية الأبعاد"
-#: ../../network/tools.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
+"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."
msgstr ""
-"لا يبدو أن النظام متصل بالإنترنت.\n"
-"حاول اعادة تهيئة الوصلة."
+"يمكن لبطاقتك التمتع بدعم للتسريع ثلاثي الأبعاد لكن Ùقط مع XFree %s, \n"
+"لاحظ أن هذا الدعم تجريبي Ùˆ قد يتسبب ÙÙŠ ايقا٠جهازك.\n"
+"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشكل Ø£ÙØ¶Ù„ ÙÙŠ وضعية "
+"الرسوم ثنائية الأبعاد."
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"وصّل الطابعة الى خادم Linux و اجعل ماكينات Windows تتصل به كعملاء.\n"
-"\n"
-"هل تريد ÙØ¹Ù„اً متابعة اعداد هذه الطابعة كما ØªÙØ¹Ù„ الآن؟"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belarus"
-msgstr "روسيا البيضاء"
+"يمكن لبطاقتك التمتع بدعم للرسوم ثلاثية الأبعاد مع XFree %s, \n"
+"لاحظ أن هذا الدعم تجريبي Ùˆ قد يتسبب ÙÙŠ ايقا٠جهازك."
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Error writing to file %s"
-msgstr "خطأ أثناء الكتابة الى المل٠%s"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (مشغل عرض التثبيت)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result to syslog"
-msgstr "أرسل تقرير بنتيجة الاختبار الى syslog"
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "مخصص"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
-msgstr ""
-"ØªÙØ³ØªØ®Ø¯Ù… apmd لمراقبة حالة البطارية Ùˆ تسجيلها عن طريق syslog.\n"
-"يمكن كذلك استخدامها لإغلاق الجهاز عند ضع٠البطارية."
+#: ../../Xconfig/main.pm_.c:102
+#, fuzzy
+msgid "Graphic Card"
+msgstr "بطاقة الشاشة"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tape to backup"
-msgstr "استخم الشريط للنسخ الإحتياطي"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "الشاشة"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "سيتم تثبيت الحزم التالية"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "دقة العرض"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS configuration"
-msgstr "CUPS تهيئة"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total progress"
-msgstr "اجمالي التقدم"
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "خيارات"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "لا توجد مساحة ÙØ§Ø±ØºØ© لعمل التجزئات الجديدة"
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "مواÙÙ‚"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "جاري النقل"
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "خروج"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
"\n"
-"Drakbackup activities via %s:\n"
-"\n"
+"%s"
msgstr ""
+"هل تريد Ø­ÙØ¸ التغييرات؟\n"
+"الإعداد الحالي هو:\n"
"\n"
-"نشاطات Drakbackup عن طريق %s:\n"
-"\n"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "yes"
-msgstr "نعم"
+"%s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr "("
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "إختر شاشة"
-#: ../../network/netconnect.pm:1
-#, c-format
-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"
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
msgstr ""
-"أهلاً بك ÙÙŠ معالج تهيئة الشبكة.\n"
-"\n"
-"نحن على وشك تهيئة وصلة الشبكة/الإنترنت الخاصة بك.\n"
-"اذا لم تريد استخدام التحقق الآلي, احذ٠التأشير من على الصندوق.\n"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "لبنان"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-#: ../../services.pm:1
-#, c-format
-msgid "Stop"
-msgstr "توقÙ"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Edit selected host"
-msgstr "حرر المستضي٠المختار"
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "Generic"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD device defined!"
-msgstr "لم يتم تعري٠جهاز قرص مدمج!"
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+#, fuzzy
+msgid "Vendor"
+msgstr "تراجع"
-#: ../../network/shorewall.pm:1
-#, fuzzy, c-format
-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"
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-"ÙØ¶Ù„اً أدخل اسم الواجهة المتصلة بالإنترنت.\n"
-"\n"
-"أمثلة:\n"
-"\t\tppp+ لوصلات المودم و DSL, \n"
-"\t\teth0, أو eth1 لوصلات الكيبل, \n"
-"\t\tippp+ لوصلات ISDN.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tاستخدم Ù…Ù„ÙØ§Øª .backupignore\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "البلغارية (صوتية)"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP start ip"
-msgstr "DHCP start ip"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "256 kB"
-msgstr "256 كيلوبايت"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Don't rewind tape after backup"
-msgstr "لا تقم بإرجاع الشريط بعد النسخ"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "خيارات محمّل الإقلاع الرئيسية"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
+"\n"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+"المعاملان المهمان جدا هما نسبة الإنعاش الأÙقي, Ùˆ هي النسبة التي\n"
+"يتم Ùيها انعاش الشاشة كاملة, Ùˆ الأهم هو نسبة التزامن الأÙقي\n"
+"Ùˆ التي ÙÙŠ خلالها يتم عرض خطوط المسح.\n"
+"\n"
+"من *المهم جدا* أن لا تحدد نوع شاشة مع متوسط تزامن\n"
+"أكبر من مقدرة شاشتك لأنك بهذا قد تدمر شاشتك.\n"
+" اذا لم تكن متأكدا يمكنك اختيار اعدادات عادية."
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Tape"
-msgstr "شريط البيانات"
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "نسبة الإنعاش الأÙقي"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malaysia"
-msgstr "ماليزيا"
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "نسبة الإنعاش الرأسي"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning network..."
-msgstr "جاري مسح الشبكة..."
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 لون (8 بت)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"بهذا الخيار يمكنك استرجاع أي نسخة من\n"
-" دليل /etc الخاص بك."
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 أل٠لون (15 بت)"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr "تم عمل التغيير, هل تريد اعادة تشغيل خدمة dm ؟"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 أل٠لون (16 بت)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (French layout)"
-msgstr "السويسرية (تصميم ÙØ±Ù†Ø³ÙŠ)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 مليون لون (24 بت)"
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "ÙØ´Ù„ mkraid (ربما تكون حزمة raidtools Ù…Ùقودة؟)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 بليون لون (32 بت)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "August"
-msgstr "أغسطس"
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "دقة العرض"
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "FTP server"
-msgstr "خادم NTP"
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "اختر دقة العرض و عمق الألوام"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "Webcam"
-msgstr "كاميرات الويب"
+msgid "Graphics card: %s"
+msgstr "بطاقة الشاشة: %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "حجم ذاكرة المعالج المخبئية (المستوى الثاني)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr "الغاء"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Soundcard"
-msgstr "بطاقة الصوت"
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "اختبار الإعداد"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Month"
-msgstr "الشهر"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "هل تريد تجربة الإعداد؟"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search for files to restore"
-msgstr "ابحث عن Ø§Ù„Ù…Ù„ÙØ§Øª المطلوب استعادتها"
+#: ../../Xconfig/test.pm_.c:30
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "تحذير: اختبار بطاقة العرض هذه قد يتسب ÙÙŠ ايقا٠جهازك"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid "Luxembourg"
-msgstr "لوكسمبورغ"
+msgid "Keyboard layout: %s\n"
+msgstr "لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­: %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr "لطباعة مل٠من سطر الأوامر استخدام الأمر \"%s <file>\".\n"
+msgid "Mouse type: %s\n"
+msgstr "نوع Ø§Ù„ÙØ£Ø±Ø©: %s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid "Level %s\n"
-msgstr "المستوى %s\n"
+msgid "Mouse device: %s\n"
+msgstr "جهاز Ø§Ù„ÙØ£Ø±Ø©: %s\n"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid "Syriac (phonetic)"
-msgstr "السريانية (صوتي)"
+msgid "Monitor: %s\n"
+msgstr "الشاشة: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Iran"
-msgstr "ايران"
+msgid "Monitor HorizSync: %s\n"
+msgstr "تزامن الشاشة الأÙقي: %s\n"
-# U+200F (RTL mark) has been inserted after "Bus" so the display
-# on screen is correctly "datadatadata :Bus", and not "Bus: datadatadata"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Bus"
-msgstr "Busâ€"
+msgid "Monitor VertRefresh: %s\n"
+msgstr "انعاش الشاشة الرأسي: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid "Iraq"
-msgstr "العراق"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "connecting to %s ..."
-msgstr "جاري الإتصال بمعالج Bugzilla ..."
+msgid "Graphics card: %s\n"
+msgstr "بطاقة الشاشة: %s\n"
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"تم ايجاد تعارض ÙÙŠ عنوان الشبكة المحلية المبدئي ÙÙŠ الإعداد الحالي لـ%s!\n"
+msgid "Graphics memory: %s kB\n"
+msgstr "ذاكرة بطاقة الشاشة: %s كيلوبايت\n"
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid "Configuring..."
-msgstr "جاري الإعداد..."
+msgid "Color depth: %s\n"
+msgstr "عمق الألوان: %s\n"
-#: ../../harddrake/v4l.pm:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
-msgstr ""
-"لأغلب بطاقات Ø§Ù„ØªÙ„ÙØ§Ø² الحديثة, وحدة bttv لنواة Linux يمكنها التحقق آلياً من "
-"المعاملات الصحيحة.\n"
-"اذا تم التعر٠على البطاقة بشكل خاطئ, يمكنك ادخال التونر و نوع البطاقة الصحيح "
-"هنا. Ùقط اختر المعاملات المناسبة لبطاقة الشاشة."
+msgid "Resolution: %s\n"
+msgstr "دقة العرض: %s\n"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Password (again)"
-msgstr "كلمة المرور (ثانية)"
+msgid "XFree86 server: %s\n"
+msgstr "خادم XFree86: %s\n"
-#: ../../standalone/drakfont:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Search installed fonts"
-msgstr "ابحث ÙÙŠ الخطوط المثبتة"
+msgid "XFree86 driver: %s\n"
+msgstr "مشغل XFree86: %s\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default desktop"
-msgstr "سطح المكتب Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠ"
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "واجهة رسومية عند بدء التشغيل"
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:62
msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
-"لتسليم تقرير العيوب, اضغط على زر تقرير.\n"
-"سيقوم هذا بقتح Ù…ØªØµÙØ­ ويب على Ø§Ù„ØµÙØ­Ø© %s\n"
-" حيث ستجد استمارة عليك ملؤها. المعلومات المذكرة أعلاه سيتم نقلها\n"
-"الى ذلك الخادم"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr "Ùينزويلا"
-
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "IP address"
-msgstr "عنوان IP"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "اختر الأحجام"
+"يمكنني جعل جهازك يبدأ X بشكل آلي بعد الإقلاع.\n"
+"هل تريد X أن بيدأ بعد إعادة تشغيل جهازك؟"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:73
msgid ""
-"List of data corrupted:\n"
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
"\n"
-msgstr ""
-"قائمة بالبيانات Ø§Ù„ÙØ§Ø³Ø¯Ø©:\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"
-
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"Do you have this feature?"
msgstr ""
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
+#: ../../Xconfig/various.pm_.c:85
+msgid "What norm is your TV using?"
msgstr ""
-"المودم لديك غير مدعوم من النظام.\n"
-"الق نظرة على http://www.linmodems.org"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose another partition"
-msgstr "إختر شاشة"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Current user"
-msgstr "المستخدم الحالي"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
+msgstr "القطاع اول من تجزئة الإقلاع"
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
-msgstr "اسم المستخدم"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
+msgstr "القطاع الأول من القرص (MBR)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Ù…ÙØªØ§Ø­ \"Windows\" الأيسر"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "تثبيت SILO"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "غويانا"
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
+msgstr "أين تريد تثبيت محمّل الإقلاع؟"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "تهيئة خادم dhcpd"
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "تثبيت LILO/grub"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"ÙŠÙØ³ØªØ®Ø¯Ù… للدليل:\n"
-" يمكن Ùقط لمالك هذا الدليل أو المل٠الغاؤه"
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
+msgstr "SILO"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " على خادم Novell \"%s\", الطابعة \"%s\""
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
+msgstr "LILO مع قائمة نصية"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Printer Name"
-msgstr "اسم ص٠الطابعة"
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
+msgstr "LILO مع قائمة رسومية"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
-msgstr ""
+#: ../../any.pm_.c:142
+msgid "Grub"
+msgstr "Grub"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
-msgstr "ازالة وحدة"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "الإقلاع من DOS/Windows (loadlin)"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Password"
-msgstr "كلمة المرور"
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Advanced Configuration"
-msgstr "إعداد متقدم"
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "خيارات محمّل الإقلاع الرئيسية"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr "جاري المسح على جهاز HP متعدد الوظائÙ"
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
+msgstr "محمّل الإقلاع Ø§Ù„Ù…ÙØ³ØªØ®Ø¯Ù…"
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "الجذر"
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "تثبيت محمل الإقلاع"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "اختر RAID موجود Ù„Ù„Ø§Ø¶Ø§ÙØ©"
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "جهاز الإقلاع"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "التركية (طراز \"Q\" الحديث)"
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "مدمج"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo message not found"
-msgstr "لم يتم ايجاد رسالة Lilo"
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "مدمج"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"اعادة توليد آلية لترويسة النواة ÙÙŠ دليل /boot لـ\n"
-"/usr/include/linux/{autoconf,version}.h"
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "وضعية الÙيدية"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
-msgstr "اذا احتجته"
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
+msgstr "توقيت ما قبل اقلاع الصورة Ø§Ù„Ø§ÙØªØ±Ø§Ø¶ÙŠØ©"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
-msgstr ""
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
+msgid "Password"
+msgstr "كلمة المرور"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Failed..."
-msgstr "ÙØ´Ù„ت الإستعادة..."
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "كلمة المرور (ثانية)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr ""
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "تشديد خيارات سطر الأوامر"
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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 ""
-"مقدمة\n"
-"\n"
-"نظام التشغيل Ùˆ المكونات Ø§Ù„Ù…Ø®ØªÙ„ÙØ© الموجودة ÙÙŠ توزيعة Mandrake Linux.\n"
-"ستسمى \"المنتجات البرمجية\" ÙÙŠ ما بعد. المنتجات البرمجية تتضمن, Ùˆ لكن غير "
-"محدودة ÙÙŠ\n"
-"مجموعة البرامج و الطرق و القواعد و وثائق المساعدة المتعلقة بنظام\n"
-"التشغيل Ùˆ المكونات Ø§Ù„Ù…Ø®ØªÙ„ÙØ© ÙÙŠ توزيعة Mandrake Linux.\n"
-"\n"
-"\n"
-"1. Ø§ØªÙØ§Ù‚ية الترخيص\n"
-"\n"
-"ÙØ¶Ù„اً اقرأ هذه الوثيقة باهتمام. هذه الوثيقة هي Ø§ØªÙØ§Ù‚ية الترخيص بينك Ùˆ \n"
-"بين MandrakeSoft S.A. و تنطبق على المنتجات البرمجية.\n"
-"بتثبيتك, Ù…Ø¶Ø§Ø¹ÙØªÙƒ, أو استخدامك لهذه المنتجات البرمجيات بأي شكل ÙØ¥Ù†Ùƒ\n"
-"تقبل بشكل نهائي Ùˆ تواÙÙ‚ بشكل كامل على البنود Ùˆ الشروط الخاصة بهذا الترخيص. \n"
-"اذا كنت لا تواÙÙ‚ على أي جزء من هذا الترخيص, Ùلن يسمح لك بتثبيت أو Ù…Ø¶Ø§Ø¹ÙØ© أو "
-"استخدام \n"
-"المنتجات البرمجية. \n"
-"أي محاولة لتثبيت أو Ù…Ø¶Ø§Ø¹ÙØ© أو استخدام المنتجات البرمجية بشكل لا يتواÙÙ‚ مع \n"
-"بنود و شروط هذا الترخيص هو غير صالح و سينهي حقوقك تحت هذا \n"
-"الترخيص. عند انهاء هذا الترخيص, يجب عليك تدمير جميع نسخ هذه \n"
-"المنتجات البرمجية.\n"
-"\n"
-"\n"
-"2. الضمان المحدود\n"
-"\n"
-"المنتجات البرمجية Ùˆ وثائق المساعدة المرÙقة هي مرÙقة \"كما هي\",. بدون ضمان. "
-"حسب\n"
-"الحد الذي يسمح به القانون.\n"
-"لن تكون MandrakeSoft S.Aa تحت أي ظرو٠و الى الحد الذي يسمح به القانون مسؤولة "
-"عن أي خسارة خاصة,\n"
-"بسبب حادث, مباشرة, أو غير مباشرة (على سبيل المثال لا الحصر\n"
-"خسارة الأعمال, انقطاع الأعمال, الخسارة المالية, الرسوم القانونية, العقوبات "
-"الصادرة من حكم\n"
-"محكمة, أو أي خسارة ناتجة أخرى) بسبب استخدام أو عدم القدرة على استخدام هذه "
-"المنتجات \n"
-"البرمجية, حتى و إن تم نصح MandrakeSoft S.A. حول امكانية أو حدوث مثل هذه \n"
-"الخسائر.\n"
-"\n"
-"المسؤولية المحدودة المرتبطة بامتلاك أو استخدام البرمجيات الممنوعة ÙÙŠ بعض "
-"البلدان\n"
-"\n"
-"الى الحد الذي يسمح به القانون, MandrakeSoft S.A. و موزعوها لن يكونوا, تحت أي "
-"ظروÙ, مسؤولين \n"
-"عن أي عن أي خسارة خاصة,\n"
-"بسبب حادث, مباشرة, أو غير مباشرة (على سبيل المثال لا الحصر\n"
-"خسارة الأعمال, انقطاع الأعمال, الخسارة المالية, الرسوم القانونية, العقوبات "
-"الصادرة من حكم\n"
-"محكمة, أو أي خسارة ناتجة أخرى) بسبب\n"
-"امتلاك و استخدام المكونات البرمجية أو بسبب تنزيل بعض المكونات البرمجية \n"
-"من أحد مواقع Mandrake Linux اذا كانت مثل هذه المكونات ممنوعة أو محدودة "
-"الاستخدام ÙÙŠ بعض البلدان بسبب القوانين المحلية.\n"
-"هذه المسؤولية المحدودة تنطبق على, لكن غير محدودة ÙÙŠ, مكونات التشÙير القوية \n"
-"المضمنة ÙÙŠ المنتجات البرمجية.\n"
-"\n"
-"\n"
-"3. الترخيص العمومي (GPL) و التراخيص ذات الصلة\n"
-"\n"
-"المنتجات البرمجية تتكون من مكونات تم انشاؤها عن طريق أشخاص أو كيانات "
-"Ù…Ø®ØªÙ„ÙØ©. معظم \n"
-"هذه المكونات هي تحت ترخيص GNU العمومي (GNU General Public Licence) \n"
-"Ùˆ التي ستسمى ÙÙŠ ما بعد بـ \"GPL\", أو التراخيص المماثلة. معظم هذه التراخيص "
-"تسمح لك باستخدام أو \n"
-"Ù…Ø¶Ø§Ø¹ÙØ© أو تعديل أو اعدة توزيع المكونات التي تغطيها. ÙØ¶Ù„اً اقرأ بنود Ùˆ شروط \n"
-"Ø§ØªÙØ§Ù‚ية الترخيص لكل مكون باهتمام قبل استخدام أي مكون. أي سؤال \n"
-"حول أي مكون يجب أن يتم توجيهه الى مؤل٠المكون و ليس الى MandrakeSoft.\n"
-"البرامج المطورة من قبل MandrakeSoft S.A. محكومة بموجب ترخيص GPL. وثائق "
-"المساعدة المكتوبة \n"
-"من قبل MandrakeSoft S.A. محكومة بترخيص خاص. ÙØ¶Ù„اً راجع وثائق المساعدة \n"
-"للمزيد من Ø§Ù„ØªÙØ§ØµÙŠÙ„.\n"
-"\n"
-"\n"
-"4. حقوق الملكية الÙكرية\n"
-"\n"
-"كل الحقوق الخاصة بمكونات هذه المنتجات البرمجية تخص مؤلÙيها Ùˆ هي \n"
-"بموجب قوانين الملكية الÙكرية Ùˆ الحقوق المنطبقة على البرمجيات.\n"
-"ØªØ­ÙØ¸ MandrakeSoft S.A. حقوقها لتعديل أو تغيير المنتجات البرمجية, ككل أو \n"
-"كأجزاء, بكل الوسائل Ùˆ Ù„ÙƒØ§ÙØ© الأغراض.\n"
-"\"Mandrake\", \"Mandrake Linux\" , الشعارات المرتبطة هي علامات تجارية لـ "
-"MandrakeSoft S.A. \n"
-"\n"
-"\n"
-"5. القوانين الحاكمة \n"
-"\n"
-"اذا كان أي جزء من Ø§Ù„Ø§ØªÙØ§Ù‚ية قد أصبح غير صالح, غير شرعي, أو غير قابل للتطبيق "
-"بحكم محكمة, سيتم \n"
-"استثناء هذا الجزء من العقد. و ستظل ملتزماً بالأجزاء الأخـرى القابلة للتطبيق "
-"من هذه \n"
-"Ø§Ù„Ø§ØªÙØ§Ù‚ية.\n"
-"بنود Ùˆ شروط هذا الترخيص هي محكومة بموجب قوانين ÙØ±Ù†Ø³Ø§.\n"
-"ÙƒØ§ÙØ© النزاعات حول بنود هذا الترخيص سيتم حلها بشكل Ø£ÙØ¶Ù„ ÙÙŠ المحكمة.\n"
-"كحل أخير, سيتم تحويل النزاع الى المحاكم القانونية المختصة ÙÙŠ باريس - ÙØ±Ù†Ø³Ø§.\n"
-"لأي سؤال حول هذه الوثيقة, ÙØ¶Ù„اً اتصل بـ MandrakeSoft S.A. \n"
+#: ../../any.pm_.c:171
+msgid "restrict"
+msgstr "تشديد"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default user"
-msgstr "المستخدم Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠ"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "قم بتنظي٠/tmp عند كل إقلاع"
-#: ../../standalone/draksplash:1
+#: ../../any.pm_.c:174
#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"الإحداثي السيني للركن الأيسر الأعلى\n"
-"لشريط التقدم"
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "حجم الذاكرة الدقيق عند الحاجة )تم ايجاد %d ميغابايت("
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Current interface configuration"
-msgstr "تهيئة الواجهة الحالية"
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
+msgstr "تمكين التشكيلات المتعددة"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "اكتب حجم الذاكرة بالميغابايت"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../any.pm_.c:182
msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"اذا كانت لديك بطاقة ISA, ÙØ¥Ù† القيم التي ستعرض على الشاشة التالية يجب أن تكون "
-"صحيحة.\n"
-"\n"
-"اذا كانت لديك بطاقة PCMCIA, يجب عليك أن تعر٠قيم \"irq\" و \"io\" الخاصة "
-"ببطاقتك.\n"
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr "خيار ``تشديد خيارات سطر الأوامر`` بدون قائدة من دون كلمة مرور"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not print any test page"
-msgstr "لا تطبع أي ØµÙØ­Ø§Øª اختبارية"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "رجاء جاول مرة أخرى"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr "غورموكهي"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "كلمات المرور غير متطابقة"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
-msgstr ""
+#: ../../any.pm_.c:191
+msgid "Init Message"
+msgstr "رسالة Init"
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
-msgstr "اجبار على عدم استخدام APIC"
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
+msgstr "Open Firmware Delay"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr "كلمة المرو هذه قصيرة جداً (يجب أن تكون %d رموز على الأقل)"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
+msgstr "الوقت الأقصى لإقلاع النواة"
-#: ../../standalone.pm:1
-#, c-format
-msgid "[keyboard]"
-msgstr "[keyboard]"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
+msgstr "تمكين الإقلاع من القرص المدمج؟"
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "بروكسي FTP"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
+msgstr "تمكين اقلاع OF؟"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install List"
-msgstr "ثبّت القائمة"
+#: ../../any.pm_.c:197
+msgid "Default OS?"
+msgstr "نظام التشغيل Ø§Ù„Ø§ÙØªØ±Ø§Ø¶ÙŠØŸ"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:231
msgid ""
-"Change\n"
-"Restore Path"
-msgstr ""
-"غيّر\n"
-"مسار الإستعادة"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
-msgstr "إعرض سجلات اليوم المختار Ùقط"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
+"\n"
+"On which drive are you booting?"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 كيلوبايت"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(ملحوظة: Ø§Ù„Ù…Ù†Ø§ÙØ° المتوازية لا يمكن التحقق منها آلياً)"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "ما هو نوع البطاقة لديك؟"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Security"
-msgstr "الأمن"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:247
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"
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
-"يمكنك كذلك استخدام البرنامج الرسومي \"xpdq\" لتعيين الخيارات و التعامل مع "
-"وظائ٠الطباعة.\n"
-"اذا كنت تستعمب كيدي كبيئة سطح مكتب Ùلديك أيقونة \"للطوارئ\", اسمها \"STOP "
-"Printer!\", تقوم بإيقا٠كل وظائ٠الطباعة Ùوراً عند النقر عليها. هذا المثال "
-"Ù…Ùيد للحالات التي يحصل Ùيها تعثر ÙÙŠ استخدام الورق.\n"
+"ها هنا المدخلات Ø§Ù„Ù…Ø®ØªÙ„ÙØ©.\n"
+"يمكنك Ø§Ø¶Ø§ÙØ© مدخلات أخرى أو تغيير الموجودين."
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "Ø§Ø¶Ø§ÙØ©"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "رجاء اختر تاريخ الإستعادة..."
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "انتهى"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown"
-msgstr "غير معروÙ"
+#: ../../any.pm_.c:257
+msgid "Modify"
+msgstr "تعديل"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "هذا الخادم موجود ÙÙŠ القائمة مسبقاً, لا يمكن Ø§Ø¶Ø§ÙØªÙ‡ مرة أخرى.\n"
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "ما نوع المدخل الذي تريد Ø§Ø¶Ø§ÙØªÙ‡ØŸ"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Network Configuration"
-msgstr "اعدادات الشبكة"
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "لينكس"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "نظام آخر (SunOS...)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"بروتوكول لبقية العالم\n"
-"لا D-Channel (خطوط مؤجرة)"
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "نظام آخر (MacOS...)"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "نظام آخر (Windows...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "الخيار %s يجب أن يكون رقماً!"
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "صورة"
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, c-format
-msgid "Notice"
-msgstr "ملاحظة"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "الجذر"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "لم تقم بتهيئة خادم X. هل أنت متأكد أنك تريد ذلك؟"
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
+msgstr "الحاق"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"اعداد الطابعة سيعمل بشكل آلي. اذا لم يتم اكتشا٠طابعتك بالشكل الصحيح أو اذا "
-"كنت ØªÙØ¶Ù„ اعداد مخصص شغّل \"تهيئة يدوية\"."
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "What type of partitioning?"
-msgstr "أي نوع من التجزئة؟"
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "للقراءة و الكتابة"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-" "
-msgstr ""
-"قائمة Ø§Ù„Ù…Ù„ÙØ§Øª المرسلة من FTP: %s\n"
-" "
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "الجدول"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface"
-msgstr "الواجهة"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "غير آمن"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Multisession CD"
-msgstr "قرص مدمج متعدد الجلسات"
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "عنوان"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated strings"
-msgstr "حرÙيات Ù…ÙØµÙˆÙ„Ø© Ø¨Ø§Ù„ÙØ§ØµÙ„Ø©"
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠ"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "توجد ماكينات يمكن استخدام الماسحات الضوئية منها:"
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
+msgstr "حجم Initrd"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Messages"
-msgstr "الرسائل"
+#: ../../any.pm_.c:318
+msgid "NoVideo"
+msgstr "لا Ùيديو"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "غير معروÙ|CPH06X (bt878) [مصنعون كثيرون]"
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "ازل المدخل"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "خادم POP و IMAP"
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "غير مسموح بالعلامات Ø§Ù„ÙØ§Ø±ØºØ©"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mexico"
-msgstr "المكسيك"
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
+msgstr "يجب أن تحدد صورة النواة"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model stepping"
-msgstr "Model stepping"
+#: ../../any.pm_.c:330
+msgid "You must specify a root partition"
+msgstr "يجب عليك تحديد تقسيم جذر"
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
-msgstr "رواندا"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "هذه العلامة مستخدمة مسبقا"
-#: ../../lang.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Switzerland"
-msgstr "السويسرية"
+msgid "Found %s %s interfaces"
+msgstr "تم ايجاد %s %s واجهات"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr "سلطنة بروناي"
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "هل عندك واحدة أخرى؟"
-#: ../../modules/interactive.pm:1
+#: ../../any.pm_.c:642
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "هل لديك أي واجهات %s؟"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "يجب أن تكون المستخدم الجذر لقراءة مل٠التهيئة. \n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "خيارات طابعة lpd البعيد"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"نظام Linux نظام متعدد المستخدمين, مما يعني أن كل مستخدم\n"
-"له ØªÙØ¶Ø¨Ù„اته الخاصة Ùˆ Ù…Ù„ÙØ§ØªÙ‡ الخاصة Ùˆ ما الى ذلك. يمكنك قراءة ``دليل "
-"المبتدئ''\n"
-"لتتعلم المزيد حول الأنظمة متعددة المستخدمين. بعكس المستخدم \"الجذر\", وهو\n"
-"مدير النظام, ÙØ¥Ù† المستخدمين الذين ستضيÙهم ÙÙŠ هذه النقطة لن يتم\n"
-"تخويلهم لتعديل أي شئ باستثناء Ù…Ù„ÙØ§Øª Ùˆ اعداداتهم \n"
-"الخاصة, مما يحمي النظام من أي تغييرات خطرة أو غير مقصودة\n"
-"قد تؤثر على النظام ككل. يجب عليك انشاء مستخدم عادي\n"
-"واحد Ùقط على الأقل -- هذا هو الحساب الذي يجب أن تستخدمه\n"
-"للاستخدام اليومي العادي. بالرغم من سهولة الدخول كمستخدم\n"
-"\"جذر\" Ù„ÙØ¹Ù„ أي شئ Ùˆ كل شئ, لكن هذا قد يكون خطراً! خطأ\n"
-"بسيط قد يعني أن نظامك لن يعود قادراً على العمل ÙÙŠ ما بعد. اذا\n"
-"قمت بخطأ جدي كمستخدم عادي ÙØ¥Ù† أسوأ ما قد يحصل هو خسارتك\n"
-"لبعض المعلومات, لكن هذا لن يؤثر على النظام كاملاً.\n"
-"\n"
-"الحقل الأول سيسألك عن اسمك الحقيقي. بالطبع هذا الحقل\n"
-"ليس اجبارياً -- يمكنك ادخال أي شئ تريد. DrakX سيستخدم الكلمة\n"
-"الأولى التي قمت بإدخالها ٠هذا الحقل و سينقلها ال حقل \"%s\", الذي\n"
-"هو الاسم الذي سيدخله المستخدم للدخول على النظام. الخطوة التالية هي ادخال "
-"كلمة المرور.\n"
-"من وجهة نظر أمنية, ÙØ¥Ù† مستخدم عادي بدون صالحيات لا يحتاج الى كلمة\n"
-"مرور مثل كل المستخدم \"الجذر\", لكن ليس هناك سبب للتغاضي\n"
-"عنها أو جعلها ÙØ§Ø±ØºØ© أو جعلها سهلة جداً: بعد كل شئ, Ù…Ù„ÙØ§ØªÙƒ قد تكون هي\n"
-"التي ÙÙŠ خطر.\n"
-"\n"
-"بمجرد نقرك على زر \"%s\", يمكنك Ø§Ø¶Ø§ÙØ© مستخدمين آخرين. أض٠اسم مستخدم\n"
-"لكل صديق من أصدقائك أو لأبيك لأختك,مثلاً. انقر \"%s\" عندما\n"
-"تنتهي من Ø§Ø¶Ø§ÙØ© المستخدمين.\n"
-"\n"
-"نقر زر \"%s\" يسمح لك بتغيير \"الغلاÙ\" أو \"سطر الأوامر\" لكل\n"
-"مستخدم (bash هو Ø§Ù„Ø§ÙØªØ±Ø§Ø¶ÙŠ).\n"
-"\n"
-"عندما تنتهي من Ø§Ø¶Ø§ÙØ© المستخدمين, سيتم سؤالك عما اذا كنت\n"
-"تريد اختيار مستخدم يتم الدخول به الى النظام تلقائياً عند بدء التشغيل.\n"
-"اذا كنت مهتما٠بهذه الميزة (و لم تكن مهتماً كثيراً بالمسائل\n"
-"الأمنية),. اختر المستخدم المطلوب Ùˆ مدير Ø§Ù„Ù†ÙˆØ§ÙØ° ثم انقر \"%s\".\n"
-"اذا لم تكن مهتماً بهذه الميزة, قم بإزالة التأشير من صندوق \"%s\"."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Internet Access..."
-msgstr "إعداد الدخول الى الإنترنت..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "ÙØ¶Ù„ا اختر Ø§Ù„ÙØªØ±Ø© ما بين كل عملية نسخ احتياطي"
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "لا"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Norway"
-msgstr "النرويج"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "نعم"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Delete profile"
-msgstr "احذ٠التشكيل"
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "عرض معلومات العتاد"
-#: ../../keyboard.pm:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Danish"
-msgstr "الدنماركية"
+msgid "Installing driver for %s card %s"
+msgstr "جاري تثبيت مشغل %s للبطاقة %s"
-#: ../../services.pm:1
+#: ../../any.pm_.c:663
#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"تقوم بتشغيل Ù…ÙØªØ§Ø­ numlock آلياً ÙÙŠ سطر الأوامر\n"
-"و XFree عند الإقلاع."
+msgid "(module %s)"
+msgstr "(الوحدة %s)"
-#: ../../network/network.pm:1
+#: ../../any.pm_.c:674
#, 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)."
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-"ÙØ¶Ù„اً أدخل تهيئة IP الخاصة بهذه الماكينة.\n"
-"كل مادة يجب ادخالها كعنوان IP بشكل منقوط\n"
-"(مثلاً, 1.2.3.4)."
-#: ../../help.pm:1
+#: ../../any.pm_.c:680
#, 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."
+"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 ""
-"تثبيت Mandrake Linux موزع على العديد من الأقراص. DrakX\n"
-"يعلم إذا كانت حزمة ما ÙÙŠ قرص آخر Ùˆ سيخرج القرص\n"
-"الحالي Ùˆ سيطلب منك أن تدخل قرصاً Ù…Ø®ØªÙ„ÙØ§ كما هو مطلوب."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
-msgstr "عند التأشير لن يتم تغيير المالك و المجموعة"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "بلغاريا"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
-msgstr "الثلاثاء"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "المعالجات"
+"يمكنك الآن اعطاء الخيارات للوحدة %s.\n"
+"الخيارات ÙÙŠ هيئة ``name=value name2=value2 ...'' \n"
+"مثلا, ``io=0x300 irq=7''"
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "جزر Ø³ÙØ§Ù„بارد Ùˆ جان ماين"
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "خيارات الوحدة:"
-#: ../../standalone/drakTermServ:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "No NIC selected!"
-msgstr "لم يتم اختيار NIC!"
+msgid "Which %s driver should I try?"
+msgstr "أي مشغل %s يجب أن استخدمه؟"
-#: ../../network/netconnect.pm:1
+#: ../../any.pm_.c:703
#, 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."
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
-"ظهرت مشاكل أثناء التثبيت.\n"
-"اختبر الوصلة باستخدام net_monitor أو mcc. اذا لم تعمل الوصلة, Ùقد تريد اعادة "
-"التهيئة."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "التجزئة %s Ù…Ø¹Ø±ÙˆÙØ© الآن بالإسم %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Other files..."
-msgstr "انسخ Ù…Ù„ÙØ§Øª أخرى..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
-msgstr "الكونغو كينشاسا"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "IP خادم SMB"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "جدول اتتقسيم للقرص %s سيتم كتابته الى القرص!"
+"ÙÙŠ بعض الأحيان يحتاج مشغل %s معلومات اضاÙية لكي يعمل\n"
+"بشكل صحيح, الا أنه يمكنه العمل جيدا بدونها. هل تريد تحديد\n"
+"خيارات اضاÙية له أو تسمح للمشغل بالتحقق ÙÙŠ جهازك\n"
+"عن المعلومات التي سيحتاجها؟ ÙÙŠ بعض الأحيان, قد يتسبب التحقق ÙÙŠ تعليق الجهاز, "
+"لكن\n"
+"لا يجب أن يتسبب ذلك ÙÙŠ أي مشاكل."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing HPOJ package..."
-msgstr "جاري تهيئة حزمة HPOJ..."
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
+msgstr "تحقق آلي"
-#: ../../any.pm:1
-#, 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"
-msgstr ""
-"قرص اقلاع مخصص ÙŠÙˆÙØ± طريقة للوصول الى نظام Linux الخاص بك دون\n"
-"الإعتماد على محمّل الإقلاع الإعتيادي. هذا Ù…Ùيد اذا لم تكن تريد تثبيت\n"
-"LILO (أو grub) على نظامك, أو اذا أزال نظام تشغيل آخر LILO, أو اذا لم يتواÙÙ‚ "
-"LILO\n"
-"مع تهيئة نظامك. يمكن كذلك استخدام قرص اقلاع مخصص مع\n"
-"Mandrake rescue image, مما يجعل المعالجة من انهيارات النظام الخطيرة أكثر "
-"سهولة.\n"
-"هل تريد عمل قرص اقلاع لنظامك؟\n"
-"%s"
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "حدد الخيارات"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:719
#, c-format
msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
-"\n"
-" تقرير مراقب DrakBackup\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latvian"
-msgstr "اللاتÙية"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr "شهريا"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Retry"
-msgstr "استعادة"
+"ÙØ´Ù„ تحميل الوحدة %s.\n"
+"هل تريد المحاولة ثانية بمعاملات أخرى؟"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr "اسم الوحدة"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
+msgstr "الوصول الى برامج X"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Start at boot"
-msgstr "ابدأ عند الإقلاع"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
+msgstr "الوصول الى أدوات rpm"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "استخدم النسخ التراكمي"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
+msgstr "اسمح بـ\"su\""
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "القطاع الأول من القرص (MBR)"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
+msgstr "الوصول الى Ù…Ù„ÙØ§Øª الإدارة"
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "Ø§Ù„Ø³Ù„ÙØ§Ø¯ÙˆØ±"
+#: ../../any.pm_.c:738
+#, fuzzy
+msgid "access to network tools"
+msgstr "الوصول الى أدوات rpm"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
-msgstr "عصا الألعاب"
+#: ../../any.pm_.c:739
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "الوصول الى أدوات rpm"
-#: ../../standalone/harddrake2:1
+#: ../../any.pm_.c:744
#, c-format
-msgid "DVD"
-msgstr "DVD"
+msgid "(already added %s)"
+msgstr "(تم Ø§Ø¶Ø§ÙØ© %s مسبقا)"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
-msgstr "استخدم يونيكود Ø§ÙØªØ±Ø§Ø¶ÙŠØ§Ù‹"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "كلمة المرور هذه بسيطة جدا"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "وحدة نواة Linux التي تتعامل مع هذا الجهاز"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
+msgstr "رجاءً قم بإعطاء اسم مستخدم"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "ساعة الجهاز مضبوطة على توقيت غرينتش"
+#: ../../any.pm_.c:751
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr "اسم المستخدم يجب أن يحتوي Ùقط على الحرو٠الصغيرة, الأرقام, `-' Ùˆ `_'"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "جاري محاولة انقاذ جدول التقسيم"
+#: ../../any.pm_.c:752
+#, fuzzy
+msgid "The user name is too long"
+msgstr "اسم المستخدم Ù…ÙØ¶Ø§Ù مسبقا"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "الخيار %s يجب أن يكون رقما صحيحاً!"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "اسم المستخدم Ù…ÙØ¶Ø§Ù مسبقا"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
-msgstr "استخدم كلمة المرور للمصادقة على المستخدمين"
+#: ../../any.pm_.c:757
+msgid "Add user"
+msgstr "اض٠مستخدم"
-#: ../../interactive/stdio.pm:1
+#: ../../any.pm_.c:758
#, c-format
msgid ""
-"Entries you'll have to fill:\n"
+"Enter a user\n"
"%s"
msgstr ""
-"Entries you'll have to fill:\n"
+"أدخل مستخدم\n"
"%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
-msgstr "لم أتمكن من بدء الترقية الحية !!!\n"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "الاسم: "
+#: ../../any.pm_.c:759
+msgid "Accept user"
+msgstr "واÙÙ‚ على المستخدم"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
-msgstr ""
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "الاسم الحقيقي"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 مليون لون (24 بت)"
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "اسم المستخدم"
-#: ../../any.pm:1
-#, c-format
-msgid "Allow all users"
-msgstr "اسمح لكل المستخدمين"
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "الغلاÙ"
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr "متجر MandrakeSoft الرسمي"
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "أيقونة"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "جاري تغيير الحجم"
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "دخول آلي"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:804
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
-"ÙØ¶Ù„اً أدخل الحجم الأقصى\n"
-" المسموح به لـDrakbackup (ميغابايت)"
+"يمكنني اعداد جهازك لتسجيل الدخول آليل لمستخدم ما.\n"
+"هل تريد استخدام هذه الميزة؟"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Cable connection"
-msgstr "وصلة كيبل"
-
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, c-format
-msgid "User"
-msgstr "المستخدم"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "قم بنسخ احتياطي جديد ÙØ¨Ù„ الإستعادة (Ùقط للنسخ الإحتياطية المتدرجة)"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "ÙØ´Ù„ mkraid"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Name"
-msgstr "الاسم"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "محاكاة الزر 3"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
-msgstr "تحقق من Ø§Ø¶Ø§ÙØ§Øª/Ø­Ø°Ù Ù…Ù„ÙØ§Øª sgid"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files..."
-msgstr "جاري ارسال Ø§Ù„Ù…Ù„ÙØ§Øª..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "العبرية (صوتية)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
-msgstr "الوصول الى أدوات rpm"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "يجب عليك ادخال/اختيار طابعة/جهاز"
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "اختر المستخدم Ø§Ù„Ø§ÙØªØ±Ø§Ø¶ÙŠ:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "توجد مشكلة ÙÙŠ التصريح للوصول الى القرص المدمج."
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
+msgstr "اختر مدير Ø§Ù„Ù†ÙˆØ§ÙØ° الذي سيتم تشغيله:"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "رقم التّليÙون "
+#: ../../any.pm_.c:824
+msgid "Please choose a language to use."
+msgstr "رجاء اختر لغة الاستخدام."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr "خطأ: مشغل \"%s\" لبطاقة الصوت الخاصة بك غير موجود ÙÙŠ القائمة"
+#: ../../any.pm_.c:826
+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 "يمكنكن اختيار لغات أخرى Ùˆ التي ستكون Ù…ØªÙˆÙØ±Ø© بعد التثبيت"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer name, description, location"
-msgstr "اسم الطابعة, وصÙ, المكان"
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "الكل"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
-msgstr "الولايات المتّحدة الأمريكيّة (broadcast)"
+#: ../../any.pm_.c:961
+msgid "Allow all users"
+msgstr "اسمح لكل المستخدمين"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "استخدام امتداد Xinerama"
+#: ../../any.pm_.c:961
+msgid "No sharing"
+msgstr "لا مشاركة"
-#: ../../diskdrake/interactive.pm:1
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
#, c-format
-msgid "Loopback"
-msgstr "Loopback"
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr "الحزمة %s يجب أن ØªÙØ«Ø¨Ù‘ت. هل تريد تثبيتها؟"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "West Europe"
-msgstr "أوروبّا الغربيّة"
+#: ../../any.pm_.c:973
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
+msgstr "يمكنك التصدير باستخدام NFS أو Samba. أي منهما تريد"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
-msgid "On CD-R"
-msgstr "على القرص المدمج"
+msgid "Mandatory package %s is missing"
+msgstr "الحزمة الضرورية %s Ù…Ùقودة"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../any.pm_.c:987
msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
+"Would you like to allow users to share some of their directories?\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror "
+"and nautilus.\n"
"\n"
-"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"
+"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-"[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"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake2 version %s"
-msgstr "Harddrake2 الإصدار %s"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
+msgstr "شغّل userdrake"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Preferences"
-msgstr "ØªÙØ¶ÙŠÙ„ات"
+#: ../../any.pm_.c:1003
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
+msgstr ""
+"المشاركة لكل مستخدم تستخدم المجموعة \"fileshare\".\n"
+"يمكنك أن تستخدم userdrake Ù„Ø¥Ø¶Ø§ÙØ© مستخدم ÙÙŠ هذه المجموعة."
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr "سوازيلاند"
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
+msgstr "مرحبا بالمخترقين"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "جمهورية الدومينيكان"
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Ùقير"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr "جاري نسخ %s"
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
+msgstr "القياسي"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Choose color"
-msgstr "إختر اللون"
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Ù…Ø±ØªÙØ¹"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac"
-msgstr "السريانية"
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+msgid "Higher"
+msgstr "Ù…Ø±ØªÙØ¹ أكثر"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "Ù…Ø±ØªÙØ¹ جدا"
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1061
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 ""
-"اختر القرص الصلب الذي تريد محوه لتثبيت\n"
-"تجزئة Mandrake Linux الجديدة. خذ حذرك, كل البيانات الموجود عليه ستضيع\n"
-"و لن يمكن استعادتها!"
-
-#. -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
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Use the %c and %c keys for selecting which entry is highlighted."
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Generic 2 Button Mouse"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
+"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 ""
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr "احذ٠logical volumes أولاً\n"
-
-#. -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
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "The highlighted entry will be booted automatically in %d seconds."
-
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../any.pm_.c:1064
msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
-"تعذرت كتابة /etc/sysconfig/bootsplash\n"
-"لم يتم ايجاد الملÙ."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet access"
-msgstr "الدخول الى الإنترنت"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../any.pm_.c:1065
msgid ""
-"y coordinate of text box\n"
-"in number of characters"
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
-"الإحداثي الصادي للصندوق النصي\n"
-"بعدد الحروÙ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1066
msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
-"للحصول على قائمة بالخيارات Ø§Ù„Ù…ØªÙˆÙØ±Ø© للطابعة المختارة اضغط على زر \"قائمة "
-"خيارات الطابعة\"."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr "جاري تمكين الخوادم..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "جاري طباعة Ø§Ù„ØµÙØ­Ø§Øª الإختبارية..."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1067
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."
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
+"connections from many clients. Note: if your machine is only a client on the "
+"Internet, you should choose a lower level."
msgstr ""
-"تم النقل بنجاح\n"
-"ربما تريد التحقق اذا كان يمكنك الدخول الى خادم بالأمر:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"دون تنبيهك الى ادخال كلمة مرور."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "هناك تجزئة مع نقطة التحميل %s مسبقاً\n"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
-msgstr "تمكين/تعطيل اختبارات msec الأمنية كل ساعة"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1070
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 ""
-"ÙÙŠ هذه النقطة, عليك أن تقرر أين تريد تثبيت نظام\n"
-"التشغيل Mandrake Linux على القرص الصلب الخاص بك. اذا كان القرص الصلب\n"
-"قارغاً أو أن نظام تشغيل آخر يستخدم كل المساحة Ø§Ù„Ù…ØªÙˆÙØ±Ø© ÙØ³ÙˆÙ\n"
-"تحتاج الى تجزئة القرص الصلب. بشكل عام,. ÙØ¥Ù† تجزئةالقرص الصلب\n"
-"تعني تقسيم القرص الصلب منطقياً لإنشاء المساحة المطلوبة لتثبيت\n"
-"نظام Mandrake Linux الجديد الخاص بك.\n"
-"\n"
-"لأن عملية تقسيم القرص الصلب غير قابلة للتراجع عادةًَ\n"
-"كما أنها قد تتسبب ÙÙŠ خسارة للبيانات اذا كان هناك نظام تشغيل\n"
-"آخر مثبت على هذا القرص الصلب, تجزئة القرص قد يكون مزعجاً و مثيراً للضغط\n"
-"اذا كنت مستخدماً محترقاً. من حسن الحظ, ÙŠÙˆÙØ± DrakX معالجاً يسهل العملية.\n"
-"قبل متابعة هذه الخطوة, اقرأ بقية هذا القسم و قبل كل شئ, خذ وقتك.\n"
-"\n"
-"اعتماداً على اعدادات القرص الصلب, ØªØªÙˆÙØ± العديد من الخيارات:\n"
-"\n"
-" * \"%s\": هذا الخيار سيقوم بعملية تجزئة آلية\n"
-"للأقراص الصلبة Ø§Ù„ÙØ§Ø±ØºØ©. اذا استخدمت هذا الخيار, لن تكون هناك اشعارات\n"
-"أخرى.\n"
-" * \"%s\": يكون المعالج قد اكتش٠تجزئة أو أكثر من\n"
-"تجزئات Linux على القرص الصلب. اذا كنت تريد استخدامها, اختر هذا\n"
-"الخيار. سيتم بعد ذلك سؤالك عن نقاط التحميل المرتبطة بكل\n"
-"تجزئة. يتم اختيار نقاط التجزئة المعتادة Ø§ÙØªØ±Ø§Ø¶ÙŠØ§Ù‹,\n"
-"Ùˆ لأغلب المستخدمين ÙØ¥Ù†Ù‡Ø§ Ùكرة جيدة تركها كما هي.\n"
-"\n"
-" * \"%s\": اذا كان Microsoft Windows مثبت على القرص الصلب و يحتل كل المساحة "
-"التي عليه,\n"
-"ستحتاج الى انشاء مساحة ÙØ§Ø±ØºØ© لبيانات Linux. لعمل ذلك يمكنك حذÙ\n"
-"تجزئة و بيانات Microsoft Windows (انظر حل ``ازالة كل القرص'')\n"
-"أو قم بإعادة تحجيم تجزئة Microsoft Windows FAT. يمكن عمل اعادة التحجيم\n"
-"دون أي خسارة للبيانات, لكن يجب عليك قبل ذلك بإزالة تجزئة القرص "
-"(defragmenting)\n"
-"الذي يستخدم تنسيق FAT. نسخ بياناتك احتياطياً ÙŠÙØ¶Ù‘Ù„\n"
-"بشدة.. استخدام هذا الخيار منصوح به اذا كنت تريد استخدام \n"
-"كل من Mandrake Linux Ùˆ Microsoft Windows على Ù†ÙØ³ الكمبيوتر.\n"
-"\n"
-" قبل اختيارك لهذا الخيار, عليك أن تعلم أنه بعد هذا\n"
-"الإجراء, ستتقلص مساحة تجزئة Microsoft Windows عن ما قبل\n"
-"ستكون لديك مساحة ÙØ§Ø±ØºØ© أقل على Microsoft Windows\n"
-"لتخزين بياناتك و تثبيت برامج جديدة.\n"
-"\n"
-" * \"%s\": اذا كنت تريد حذ٠كل البيانات و كل التجزئات\n"
-"الموجودة على القرص الصلب و ابدالها بنظام Mandrake Linux الجديد\n"
-"الخاص بك, اختر هذا الخيار. كن حذراً, لأنك لن تتمكن من التراجع\n"
-"بعد أن تقوم بالتأكيد.\n"
-"\n"
-" !!! اذا اخترت هذا الخيار سيتم حذ٠كل البيانات الموجودة على القرص. !!\n"
-"\n"
-" * \"%s\": سيقوم هذا الخيار ببساطة بمحو كل شء على القرص و\n"
-"يبدأ التثبيت من Ø§Ù„ØµÙØ±. ستضيع كل البيانات على\n"
-"القرص.\n"
-"\n"
-" * \"%s\": اختر هذا الخيار اذا كنت تريد\n"
-"تقسيم القرص الصلب بشكل يدوي. كن حذراً -- هذا الخيار قوي\n"
-"لكنه خطير Ùˆ من الممكن أن تÙقد بياناتك بسهولة. لهذا ÙØ¥Ù†\n"
-"هذا الخيار Ù…ÙØ¶Ù‘Ù„ Ùقط اذا كنت قد قمت بشئ مماثل من ÙØ¨Ù„ \n"
-"و لديك بعض الخبرة. لمزيد من التعليمات حول استخدام أداة DiskDrake\n"
-"راجع قسم ``ادارة التجزئات'' ÙÙŠ\n"
-"``دليل المبتدئ''."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
-msgstr "أوكرانيا"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Application:"
-msgstr "التطبيق:"
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
+msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "External ISDN modem"
-msgstr "مودم ISDN خارجي"
+#: ../../any.pm_.c:1076
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "خيارات"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr "if set to yes, report check result by mail."
+#: ../../any.pm_.c:1077
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "رجاء اختر تاريخ الإستعادة"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "اختيارك؟ (Ø§Ù„Ø§ÙØªØ±Ø§Ø¶ÙŠ %s) "
+#: ../../any.pm_.c:1080
+msgid "Security level"
+msgstr "مستوى الأمن"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr "حل المشاكل"
+#: ../../any.pm_.c:1082
+msgid "Use libsafe for servers"
+msgstr "إستخدم libsafe للملقمات"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1083
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"
+"A library which defends against buffer overflow and format string attacks."
msgstr ""
-"تم ارسال Ø§Ù„ØµÙØ­Ø§Øª الإختبارية الى الطابعة.\n"
-"قد يستغرق هذا بعض الوقت حتى تبدأ الطابعة.\n"
-"حالة الطباعة:\n"
-"%s\n"
-"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
-msgstr "يوميّاً"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and one unknown printer"
-msgstr "Ùˆ طابعة غير Ù…Ø¹Ø±ÙˆÙØ©"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Ireland"
-msgstr "أيرلندا"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Restore Configuration "
-msgstr " تهيئة الإستعادة "
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "هل هذا هو الإعداد الصحيح؟"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1166
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."
+"Here you can choose the key or key combination that will \n"
+"allow switching between the different keyboard layouts\n"
+"(eg: latin and non latin)"
msgstr ""
-"ستقوم الآن بإعداد وصلة الإنترنت/الشبكة الخاصة بك. اذا كنت تريد\n"
-"توصيل جهازك بالإنترنت أو للشبكة المحلية, انقر \"%s\"\n"
-"سيحاول Mandrake Linux أن يتحقق آلياً من وجود الأجهزة و المودمات.\n"
-"اذا ÙØ´Ù„ التحقق, أزل التأشبر من \"%s\". ربما تختار\n"
-"عدم تهيئة الشبكة, أو تريد أن ØªÙØ¹Ù„ ذلك, ÙÙŠ هذه الحال\n"
-"ÙØ¥Ù† ضغط زر \"%s\" سيأخذك الى الخطوة التالية.\n"
-"\n"
-"أثناء تهيئة الشبكة, ÙØ¥Ù† خيارات التوصيل Ø§Ù„Ù…ØªÙˆÙØ±Ø© هي:\n"
-"مودم تقليدي, مودم ISDN, وصلة ADSL, مودم كيبل, و أخيراً\n"
-"وصلة LAN بسيطة (ايثرنت).\n"
-"\n"
-"لن نذكر كل خيارات التهيئة Ø¨Ø§Ù„ØªÙØµÙŠÙ„ - Ùقط تأكد أنه لديك\n"
-"كل المعاملات, مثل عنوان IP, البوابة Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠØ©, خادمات DNS, الخ.\n"
-"من Ù…ÙˆÙØ± خدمة الإنترنت أو مدير النظام.\n"
-"\n"
-"يمكنك الرجوع الى Ø§Ù„ÙØµÙ„ الخاص بإعداد وصلة الإنترنت ÙÙŠ\n"
-"``دليل المبتدئ'' Ù„Ù„ØªÙØ§ØµÙŠÙ„ حول التهيئة, أو ببساطة انتظر حتى يتم\n"
-"تثبيت النظام و استخدم البرنامج المذكور هناك لإعداد الوصلة."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wizard Configuration"
-msgstr "إعدادات المعالج"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Autoprobe"
-msgstr "تحقق آلي"
-
-#: ../../security/help.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, c-format
msgid ""
-"if set to yes, check for :\n"
-"\n"
-"- empty passwords,\n"
+"Welcome to %s the operating system chooser!\n"
"\n"
-"- no password in /etc/shadow\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
"\n"
-"- for users with the 0 id other than root."
msgstr ""
-"اذا كانت القيمة نعم, تحقق من :\n"
-"\n"
-"- كلمات المرور Ø§Ù„ÙØ§Ø±ØºØ©,\n"
+"Welcome to %s the operating system chooser!\n"
"\n"
-"- عدم وجود كلمة مرور ÙÙŠ /etc/shadow\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
"\n"
-"- وجود مستخدمين برقم معر٠0 غير المستخدم الجذر."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files..."
-msgstr "انسخ Ù…Ù„ÙØ§Øª النظام..."
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Welcome to GRUB the operating system chooser!"
-#: ../../any.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:986
#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Can't use broadcast with no NIS domain"
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Use the %c and %c keys for selecting which entry is highlighted."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "جاري ازالة الطابعة \"%s\" ..."
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Press enter to boot the selected OS, 'e' to edit the"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell history size"
-msgstr ""
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "commands before booting, or 'c' for a command-line."
-#: ../../standalone/drakfloppy:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:995
#, c-format
-msgid "drakfloppy"
-msgstr "دريك للاقراص المرنة"
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../standalone/drakpxe:1
-#, 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"
-msgstr ""
-"ÙØ¶Ù„اً حدد مكان مل٠auto_install.cfg.\n"
-"\n"
-"اترك الحقل ÙØ§Ø±ØºØ§Ù‹ اذا لم تكن تريد اعاد وضع التثبيت الالي.\n"
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
+msgstr "لا توجد مساحو كاÙية ÙÙŠ /boot"
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configured on other machines"
-msgstr "قم بإعداد الإتصال"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "سطح المكتب"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "مستوى المعلومات التي يمكن الحصول عليها من تعليمات cpuid"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "Start Menu"
-#: ../../lang.pm:1
+#: ../../bootloader.pm_.c:1120
#, c-format
-msgid "Peru"
-msgstr "بيرو"
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "يمكنك تثبيت محمّل الإقلاع على التجزئة %s\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " on device: %s"
-msgstr " على الجهاز: %s"
+#: ../../bootlook.pm_.c:53
+msgid "Boot Style Configuration"
+msgstr "اعداد أسلوب الإقلاع"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "احذ٠Windows(TM)"
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
+msgstr "/_ملÙ"
-#: ../../services.pm:1
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "تبدأ خادم خطوط X (هذا الزامي لكي يعمل XFree)"
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
+msgstr "/ملÙ/_خروج"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"تم استخراج أغلب هذه القيم\n"
-"من النظام.\n"
-"يمكنك التعديل اذا احتجت لذلك."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
+msgstr "<تحكم>Q"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "اختر مل٠أو دليل الخطوط Ùˆ اضغط 'Ø§Ø¶Ø§ÙØ©'"
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
+msgstr "شاشة NewStyle التصنيÙية"
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "مدغشقر"
+#: ../../bootlook.pm_.c:83
+msgid "NewStyle Monitor"
+msgstr "شاشة NewStyle"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
+#: ../../bootlook.pm_.c:84
+msgid "Traditional Monitor"
+msgstr "شاشة تقليدية"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
-msgstr "Cron غير Ù…ØªÙˆÙØ± حتى الآن للمستخدمين غير الجذر"
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
+msgstr "شاشة Gtk+ التقليدية"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "System"
-msgstr "النظام"
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
+msgstr "شغّل Aurora عند الإقلاع"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "هل تريد استخدام هذه الميزة؟"
+#: ../../bootlook.pm_.c:89
+msgid "Lilo/grub mode"
+msgstr "وضع Lilo/grub"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr "العربية"
+#: ../../bootlook.pm_.c:89
+msgid "Yaboot mode"
+msgstr "وضع Yaboot"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:138
+#, fuzzy
+msgid "Install themes"
+msgstr "تثبيت النظام"
+
+#: ../../bootlook.pm_.c:139
msgid ""
-"\n"
-"- Options:\n"
+"Display theme\n"
+"under console"
msgstr ""
-"\n"
-"- خيارات:\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Password required"
-msgstr "ÙŠÙØ­ØªØ§Ø¬ الى كلمة المرور"
-#: ../../common.pm:1
-#, c-format
-msgid "%d minutes"
-msgstr "%d دقائق"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Graphics card: %s"
-msgstr "بطاقة الشاشة: %s"
+#: ../../bootlook.pm_.c:140
+#, fuzzy
+msgid "Create new theme"
+msgstr "اعمل تجزئة جديدة"
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:184
#, c-format
-msgid "WebDAV transfer failed!"
-msgstr "ÙØ´Ù„ت عملية نقل WebDAV!"
+msgid "Backup %s to %s.old"
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "إعداد XFree"
+#: ../../bootlook.pm_.c:187
+#, fuzzy, c-format
+msgid "Copy %s to %s"
+msgstr "جاري نسخ %s"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Choose action"
-msgstr "اختر حدث"
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+msgstr "خطأ"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Polynesia"
-msgstr "بولينيسيا Ø§Ù„ÙØ±Ù†Ø³ÙŠØ©"
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
+msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "دعم طابعات OKI 4w Ùˆ الطابعات المتواÙقة."
+#: ../../bootlook.pm_.c:222
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:224
msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-#: ../../services.pm:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "تشغّل نظام الصوت ALSA (Advanced Linux Sound Arachitecture)"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
+#: ../../bootlook.pm_.c:238
#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "جاري تثبيت مشغل %s للبطاقة %s"
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:244
msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-"لقد قمت بنقل الطابعة Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠØ© السابقة (\"%s\"), هل يجب أيضاً أن تكون "
-"الطابعة Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠØ© تحت نظام الطباعة الجديد %sØŸ"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Enable Server"
-msgstr "مكّن الخادم"
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ukrainian"
-msgstr "الأوكرانية"
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+#, fuzzy
+msgid "Notice"
+msgstr "لا Ùيديو"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-"الوصول الى الشبكة لا يعمل Ùˆ لم يمكن بدؤه. ÙØ¶Ù„اً تأكد من التهيئة لديك Ùˆ العتاد "
-"الخاص بك. ثم حاول تهيئة الطابعة البعيدة مرة أخرى."
-#: ../../standalone/drakperm:1
+#: ../../bootlook.pm_.c:251
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "اختر نوع التثبيت"
+
+#: ../../bootlook.pm_.c:259
#, c-format
-msgid "Enable \"%s\" to write the file"
+msgid ""
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
+"أنت تستخدم %s كمدير اقلاع حاليا.\n"
+"اضغط على تهيئة لتشغيل معالج الإعداد"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "ÙØ¶Ù„اً أدخل قرص الإقلاع الذي تستخدمه ÙÙŠ السواقة %s"
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
+msgstr "إعداد"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local network(s)"
-msgstr "الشبكة/الشبكات المحلية"
+#: ../../bootlook.pm_.c:268
+msgid "Splash selection"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Remove Windows"
-msgstr "احذ٠Windows"
+#: ../../bootlook.pm_.c:271
+msgid "Themes"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../bootlook.pm_.c:273
msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
+"\n"
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
msgstr ""
-"تمت تهيئة الماسح الضوئي %s.\n"
-"يمكنك الآن مسح المستندات باستخدام \"XSane\" من ÙØ±Ø¹ وسائط متعددة/برامج رسومية "
-"ÙÙŠ قائمة التطبيقات."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Firewire controllers"
-msgstr "متحكمات Firewire"
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
+msgstr ""
-#: ../../help.pm:1
-#, 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!"
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
msgstr ""
-"بعدما قمت بتهيئة المعاملات العامة لمحمّل الإقلاع, ÙØ³ÙŠØªÙ…\n"
-"عرض قائمة خيارات الإقلاع Ø§Ù„Ù…ØªÙˆÙØ±Ø© عند بدء التشغيل.\n"
-"\n"
-"اذا كانت هناك أنظمة تشغيل أخرى مثبتة على ماكينتك ÙØ³ÙŠØªÙ… Ø§Ø¶Ø§ÙØªÙ‡Ø§\n"
-"آلياً الى قائمة الإقلاع. يمكنك التحكم بالخيارات\n"
-"الموجودة بنقر \"%s\" لإنشاء مدخل جديد, و اختيار مدخل و\n"
-"نقر \"%s\" أو \"%s\" لتعديل أو حذ٠المدخل. \"%s\" يتأكد\n"
-"من تغييراتك.\n"
-"\n"
-"ربما لا تريد لأي شخص يتمكن من اعادة تشغيل الماكينة أن يستطيع\n"
-"الوصل الى أنظمة التشغيل الأخرى. يمكنك حذ٠المداخل المقابلة\n"
-"لأنظمة التشغيل لحذÙها من قائمة محمّل الإقلاع, لكن ÙÙŠ هذه الحالة ستحتاج الى "
-"قرص\n"
-"مرن للإقلاع كي تتمكن من الوصول الى أنظمة\n"
-"التشغيل الأخرى!"
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../bootlook.pm_.c:316
msgid "System mode"
msgstr "وضع النظام"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"للطباعة على طابعة NetWare, تحتاج الى اعطاء اسم خادم طباعة NetWare (لاحط أنه "
-"قد يختل٠عن اسم مستضي٠TCP/IP!) Ø¨Ø§Ù„Ø¥Ø¶Ø§ÙØ© الى اسم الص٠للطابعة التي رغب ÙÙŠ "
-"الوصول اليها Ø¨Ø§Ù„Ø¥Ø¶Ø§ÙØ© الى اسم مستخدم Ùˆ كلمة مرور مناسبتين."
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
+msgstr "شغّل X-Window عند بدء التشغيل"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Netmask:"
-msgstr "Netmask:"
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
+msgstr "لا, لا أريد دخولا أليا"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
-msgstr ""
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "نعم, أريد دخولا آليا مع هذا )المستخدم, سطح المكتب("
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "الحاق"
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
+msgstr "مواÙÙ‚"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr "أعد تحميل قائمة الطابعات (لعرض كل طابعات CUPS البعيدة Ø§Ù„Ù…ØªÙˆÙØ±Ø©)"
+#: ../../common.pm_.c:107
+msgid "GB"
+msgstr "غيغابايت"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"عند تشغيل هذا الخيار, ÙØ¹Ù†Ø¯ كل بداية تشغيل لـCUPS سيتم التأكد آلياً من ما\n"
-"\n"
-"- اذا كان LPD/LPRng مثبتاً, لن تتم الكتابة Ùوق /etc/printcap عن طريق CUPS\n"
-"\n"
-"- اذا كان /etc/cups/cupsd.conf Ù…Ùقود, سيتم انشاؤه ÙÙŠ هذه الحال\n"
-"\n"
-"- اذا كانت معلومات الطباعة منشورة, أي أنها لا تحتوي \"localhost\" كإسم "
-"للخادم.\n"
-"\n"
-"اذا كانت بعض هذه الإجراءات قد تسببت بمشاكل لك, عطّل هذا الخيار, لكن ÙÙŠ هذه "
-"الحال عليك الإنتباه لهذه النقاط."
+#: ../../common.pm_.c:107
+msgid "KB"
+msgstr "كيلوبايت"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"التثبيت الآلي قد يتم بشكل تلقائي اذا أردت ذلك,\n"
-"ÙÙŠ هذه الحالة سيستولي على كل القرص الصلب لديك!!\n"
-"(هذا بالنسبة للتثبيت على جهاز آخر).\n"
-"\n"
-"ربما ØªÙØ¶Ù„ اعادة عملية التثبيت.\n"
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "ميغابايت"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "طابعة شبكة \"%s\", Ø§Ù„Ù…Ù†ÙØ° %s"
+#: ../../common.pm_.c:115
+msgid "TB"
+msgstr "تيرابايت"
-#: ../../standalone/drakgw:1
+#: ../../common.pm_.c:123
#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "ÙØ¶Ù„اً اختر موائم الشبكة الذي سيتم به الإتصال بالشبكة المحلية."
+msgid "%d minutes"
+msgstr "%d دقائق"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
-msgstr "اضغط مواÙÙ‚ لاستعادة Ù…Ù„ÙØ§Øª اخرى"
+#: ../../common.pm_.c:125
+msgid "1 minute"
+msgstr "دقيقة واحدة"
-#: ../../install_steps_interactive.pm:1
+#: ../../common.pm_.c:127
#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "رجاء, اختر لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­."
+msgid "%d seconds"
+msgstr "%d ثوان"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "URI جهاز الطابعة"
+#: ../../common.pm_.c:172
+msgid "Can't make screenshots before partitioning"
+msgstr "لا يمكنني غمل لقطات للشاشة قبل التجزئة"
-#: ../../standalone/drakbackup:1
+#: ../../common.pm_.c:179
#, c-format
-msgid "Not erasable media!"
-msgstr "وسيط غير قابل للمسح!"
+msgid "Screenshots will be available after install in %s"
+msgstr "ستكون لقطات الشاشة موجودة بعد التثبيت ÙÙŠ %s"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "Terminal-based"
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+msgid "France"
+msgstr "ÙØ±Ù†Ø³Ø§"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr "تمكين/تعطيل حماية IP spoofing"
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
+msgstr "كوستاريكا"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "جاري تثبيت نظام طباعة ÙÙŠ مستوى الأمن %s"
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+msgid "Belgium"
+msgstr "بلجيكا"
-#: ../../any.pm:1
-#, c-format
-msgid "The user name is too long"
-msgstr "اسم المستخدم طويل جداً"
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
+msgstr "جمهورية التشيك"
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "نظام آخر (Windows...)"
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+msgid "Germany"
+msgstr "ألمانيا"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr "موقع WebDAV البعيد متزامن مسبقاً!"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+msgid "Greece"
+msgstr "اليونان"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
-msgstr "جاري قراءة قاعدة بيانات الطابعات..."
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+msgid "Norway"
+msgstr "النرويج"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "انشئ قرص تثبيت آلي"
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+msgid "Sweden"
+msgstr "السويد"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t اسم المستخدم: %s\n"
-"\t\t على المسار: %s\n"
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
+msgstr "هولندا"
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr "الصومال"
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+msgid "Italy"
+msgstr "إيطاليا"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr "لا يوجد مشغل Ù…ÙØªÙˆØ­ المصدر"
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+msgid "Austria"
+msgstr "النمسا"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
-msgstr ""
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
+msgstr "الولايات المتحدة"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../diskdrake/dav.pm_.c:19
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"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 ""
-"هذا مماثل للمستوى السابق, و لكن النظام مغلق كلياً و المزايا الأمني على حدها "
-"الأقصى."
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "نيكاراغوا"
+#: ../../diskdrake/dav.pm_.c:27
+#, fuzzy
+msgid "New"
+msgstr "جديد"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "نيوكاليدونيا"
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "ازل التجهيز"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "البروتوكول الأوروبي (EDSS1)"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "جهز"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Delete"
-msgstr "/_حذÙ"
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
+msgstr "خادم"
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "وضعية الÙيديو"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "نقطة التجهيز"
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
-msgstr "عمان"
+#: ../../diskdrake/dav.pm_.c:85
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "رجاء أدخل سرعة سواقة كتابة الأقراص"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Please enter your email address below "
-msgstr "ÙØ¶Ù„اً أدخل عنوان بريدك الألكتروني أدناه "
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Network Monitoring"
-msgstr "مراقبة الشبكة"
+#: ../../diskdrake/dav.pm_.c:109
+#, fuzzy
+msgid "Server: "
+msgstr "خادم"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "SunOS"
-msgstr "SunOS"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
+msgstr "نقطة التجهيز: "
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "New size in MB: "
-msgstr "الحجم الجديد بالميغابايت: "
+msgid "Options: %s"
+msgstr "الخيارات: %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "نوع جدول التقسيم: %s\n"
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
+msgstr "رجاء قم بعمل نسخة احتياطية من بياناتك أولا"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication Windows Domain"
-msgstr "تحقق نطاق Windows"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "اقرأ جيدا!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ الأمريكية"
+#: ../../diskdrake/hd_gtk.pm_.c:100
+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 ""
+"اذا كنت تريد استخدام aboot, Ùلا تنسى أن تترك مساحة ÙØ§Ø±ØºØ© ÙÙŠ\n"
+"بداية القرص (2048 قطاعات كاÙية)"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr "محاكاة الأزرار"
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "المعالج"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", طابعة شبكة \"%s\", Ø§Ù„Ù…Ù†ÙØ° %s"
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
+msgstr "اختر حدثا"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
-"\n"
-"نشاطات Drakbackup عن طريق شريط التخزين:\n"
-"\n"
+"لديك تجزئة FAT واحدة كبيرة\n"
+"(يستخدم عامة عن طريق Microsoft DOS/Windows).\n"
+"اقترح أن تغير حجم هذه التجزئة\n"
+"(اضغط عليها ثم اختر \"تغيير الحجم\")"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-" مشكلة ÙÙŠ وصلة FTP: لم يكن بالإمكان ارسال Ù…Ù„ÙØ§Øª النسخ الإحتياطي الخاصة بك "
-"باستخدام FTP.\n"
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "ÙØ¶Ù„ا اضغط على تجزئة"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Sending Speed:"
-msgstr "سرعة الإرسال:"
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "ØªÙØ§ØµÙŠÙ„"
-#: ../../harddrake/sound.pm:1
-#, 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"
+#
+#: ../../diskdrake/hd_gtk.pm_.c:254
+#, fuzzy
+msgid "No hard drives found"
msgstr ""
-"The classic bug sound tester is to run the following commands:\n"
-"\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"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
-msgstr "Halt bug"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert configuration"
-msgstr "تهيئة تنبيه البريد"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "FAT"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr "توكلاو"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Matching"
-msgstr "الموائمة"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Journalised FS"
+msgstr "Journalised FS"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bosnian"
-msgstr "البوسنية"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Release: "
-msgstr "الإصدار:"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "التبديل"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection speed"
-msgstr "سرعة الإتصال"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "ÙØ§Ø±Øº"
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr "ناميبيا"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "أخرى"
-#: ../../services.pm:1
-#, c-format
-msgid "Database Server"
-msgstr "خادم قواعد بيانات"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "أنواع أنظمة Ø§Ù„Ù…Ù„ÙØ§Øª:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr "امكانيات مميزة لهذا المشغل (امكانية النسخ أو دعم DVD)"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "عمل تجزئة"
+
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "النوع"
-#: ../../raid.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "لا يمكن Ø§Ø¶Ø§ÙØ© تجزئة الى RAID _المجهز_ md%d"
+msgid "Use ``%s'' instead"
+msgstr "استخدم ``%s'' بدلا من ذلك"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Network Time Protocol"
-msgstr "واجهة الشبكة "
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "إلغاء"
+
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
+msgstr "استخدم ``ازالة التجهيز'' أولا"
-#: ../../Xconfig/card.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, 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."
-msgstr ""
-"يمكن لبطاقتك التمتع بدعم للتسريع ثلاثي الأبعاد لكن Ùقط مع XFree %s, \n"
-"لاحظ أن هذا الدعم تجريبي Ùˆ قد يتسبب ÙÙŠ ايقا٠جهازك.\n"
-"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشكل Ø£ÙØ¶Ù„ ÙÙŠ وضعية "
-"الرسوم ثنائية الأبعاد."
+"After changing type of partition %s, all data on this partition will be lost"
+msgstr "بعد تغيير نوع التجزئة %s, ÙØ¥Ù†Ùƒ ستسخر كل البيانات على التجزئة"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "انتظر من ÙØ¶Ù„Ùƒ, جاري تعيين خيارات الأمن..."
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose a partition"
+msgstr "إختر تجزئة"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "غير معروÙ|CPH05X (bt878) [مصنعون كثيرون]"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose another partition"
+msgstr "إختر شاشة"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "شغّل X-Window عند بدء التشغيل"
+#: ../../diskdrake/interactive.pm_.c:202
+msgid "Exit"
+msgstr "خروج"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr "كلّ ساعة "
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
+msgstr "النتقال الى وضعية الخبير"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
-msgstr "Ù…ÙØªØ§Ø­ Shift الأيمن"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
+msgstr "الانتقال الى الوضع العادي"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " تمت الإستعادة بنجاح على %s "
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "تراجع"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "جاري جعل Ù…Ù†ÙØ° الطابعة Ù…ØªÙˆÙØ±Ø§Ù‹ لـCUPS..."
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "هل تريد الاكمال على أي حال؟"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr "أنتيغوا و باربودا"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "الخروج بدون Ø§Ù„Ø­ÙØ¸"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! تظهر اذا كانت كلمة المرور ÙÙŠ قاعدة بيانات النظام Ù…Ø®ØªÙ„ÙØ©\n"
-"عن تلك التي لقاعدة بيانات خادم الطرÙيات.\n"
-"احذÙ/أعد Ø§Ø¶Ø§ÙØ© المستخدم الى خادم الطرÙيات لتمكين تسجيل الدخول."
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "هل تريد الخروج بدون كتابة جدول التقسيم؟"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "الإسبانية"
+#: ../../diskdrake/interactive.pm_.c:257
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "هل تريد Ø­ÙØ¸ تعديلات /etc/fstab"
-#: ../../services.pm:1
-#, c-format
-msgid "Start"
-msgstr "ابدأ"
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "أمسح الكل"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
+msgstr "تحديد آلي"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring applications..."
-msgstr "جاري إعداد التطبيقات..."
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+msgid "More"
+msgstr "أكثر"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"أهلاً بكم ÙÙŠ معالج اعداد الطابعات\n"
-"هذا المعالج سيساعدك على تثبيت الطابعة/الطابعات الموصولة بهذا الكمبيوتر أو "
-"الموصولة مباشرةً بالشبكة أو بماكينة Windows بعيدة.\n"
-"\n"
-"اذا كانت لديك طابعة/طابعات موصولة بهذه الماكينة, ÙØ¶Ù„اً قم بتوصيلها الى هذا "
-"الكمبيوتر و قم بتشغيلها كي يتم التحقق منها/منهم آلياً. أيضاً يجب أن تكون طابعة/"
-"طابعات الشبكة و أجهزة Windows موصولة و مشغّلة.\n"
-"\n"
-"لاحظ أن التحقق الآلي من الطابعات على الشبكة قد يستغرق وقتاً أطول من التحقق "
-"الآلي من الطابعات الموصولة بهذه الماكينة Ùقط. لذا قم بتعطيل التحقق الآلي من "
-"طابعات الشبكة Ùˆ/أو الطابعات Ø§Ù„Ù…Ø³ØªØ¶Ø§ÙØ© من Windows اذا لم تكن تحتاج الى هذه "
-"الميزة.\n"
-"\n"
-" انقر \"التالي\" عندما تكون مستعداً, و على \"الغاء\" اذا لم تكن تريد اعداد "
-"الطابعة/الطابعات الآن."
+#: ../../diskdrake/interactive.pm_.c:278
+msgid "Hard drive information"
+msgstr "معلومات القرص الصلب"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
-msgstr "وصلة مودم عادية"
+#: ../../diskdrake/interactive.pm_.c:310
+msgid "All primary partitions are used"
+msgstr "كل التجزئات الرئيسية مستخدمة"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "File Selection"
-msgstr "اختيار Ø§Ù„Ù…Ù„ÙØ§Øª"
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "لا يمكنني Ø§Ø¶Ø§ÙØ© أي تجزئة أخرى"
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
+#: ../../diskdrake/interactive.pm_.c:312
+msgid ""
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
+msgstr "لكي تمتلك تجزئات أكثر, يرجى الغاء تجزئة كي تتمكن من عمل تجزئة ممتدة"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase tape before backup"
-msgstr "امسح الشريط قبل النسخ الاحتياطي"
+#: ../../diskdrake/interactive.pm_.c:322
+msgid "Save partition table"
+msgstr "Ø­ÙØ¸ جدول التقسيم"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
-msgstr "شغّل أداة التهيئة"
+#: ../../diskdrake/interactive.pm_.c:323
+msgid "Restore partition table"
+msgstr "استعادة جدول التقسيم"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "تثبيت محمل الإقلاع"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
+msgstr "إنقاذ جدول التقسيم"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "حجم التجزئة الجذرية بالميغابايت"
+#: ../../diskdrake/interactive.pm_.c:326
+msgid "Reload partition table"
+msgstr "إعادة تحميل جدول التقسيم"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "هذه الحزمة الزامية, لا يمكن عدم اختيارها"
+#: ../../diskdrake/interactive.pm_.c:331
+msgid "Removable media automounting"
+msgstr "التجهيز الآلي للوسائط القابلة للإزالة"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "اختر ملÙ"
+
+#: ../../diskdrake/interactive.pm_.c:347
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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"The backup partition table has not the same size\n"
+"Still continue?"
msgstr ""
+"جدول التقسيم المحÙوظ ليس Ø¨Ù†ÙØ³ الحجم\n"
+"لا زلت تريد الإكمال؟"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "Etherboot ISO image هي %s"
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "تحذير"
-#: ../../services.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:362
msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
-"named (BIND) هو خادم أسماء نطاق (DNS) Ùˆ الذي يستخدم Ù„Ù…Ø¹Ø±ÙØ© أسماء Ø§Ù„Ù…Ø³ØªØ¶ÙŠÙØ§Øª "
-"أو عناوين IP."
+"أدخل قرصا مرنا ÙÙŠ السواقة\n"
+"كل البيانات على القرص ستمحى"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr "سانت لوسيا"
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
+msgstr "جاري محاولة انقاذ جدول التقسيم"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "نوÙمبر"
+#: ../../diskdrake/interactive.pm_.c:379
+msgid "Detailed information"
+msgstr "معلومات Ù…ÙØµÙ‘لة"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
-msgstr "اقطع الإتصال..."
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "تغيير الحجم"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Report"
-msgstr "تقرير"
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "نقل"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr "بالاو"
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "تنسيق"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "المستوى"
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "Ø§Ø¶Ø§ÙØ© الى RAID"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr "كل مشكلة سيتم تتبعها من خبير واحد معتمد من MandrakeSoft."
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "Ø§Ø¶Ø§ÙØ© الى LVM"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "اختيار مجموعات الحزم"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "ازالة من RAID"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"اسمح بالتهيئة المحلية\n"
-"للعتاد"
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "ازالة من LVM"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "استعد عن طريق بروتوكول الشبكة: %s"
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "تعديل RAID"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr "يمكنك تهيئة كل معامل للوحدة هنا."
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
+msgstr "استخدام لـloopback"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "اختر دقة العرض و عمق الألوام"
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "اعمل تجزئة جديدة"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
-msgstr "محاكاة الزر الثالث؟"
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "قطاع البداية: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "الحجم باليغابايت: "
+
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "نوع نظام Ø§Ù„Ù…ÙØ§Øª: "
+
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Ø§Ù„ØªÙØ¶ÙŠÙ„: "
+
+#: ../../diskdrake/interactive.pm_.c:481
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 ""
-"لا يمكنك انشاء تجزئة جديدة\n"
-"(لأنك وصلت الى العدد الأقصى من التجزئات الأساسية).\n"
-"أولاً اخذ٠تجزئة أساسية و قم بإنشاء تجزئة ممتدة."
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr "حمل"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "جاري انشاء قرص التثبيت الآلي"
-#: ../../steps.pm:1
-#, c-format
-msgid "Install updates"
-msgstr "تثبيت تحديثات النظام"
+#: ../../diskdrake/interactive.pm_.c:511
+msgid "Remove the loopback file?"
+msgstr "هل تريد ازالة مل٠loopback؟"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
-msgstr "Ø§Ø±ØªÙØ§Ø¹ الصندوق النصي"
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "غير نوع التجزئة"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "State"
-msgstr "الحالة"
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+msgid "Which filesystem do you want?"
+msgstr "أي نظام Ù…Ù„ÙØ§Øª تريد؟"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "تأكد من وجود الوسيط للوحدة %s"
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
+msgstr "جاري التغيير من ext2 الى ext3"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Enable multiple profiles"
-msgstr "تمكين التشكيلات المتعددة"
+msgid "Where do you want to mount loopback file %s?"
+msgstr "أين تريد تجهيز مل٠loopback %s؟"
-#: ../../fs.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr ""
+msgid "Where do you want to mount device %s?"
+msgstr "أين تريد بجهيز الجهاز%s؟"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr "هذه الخيارات يمكنها نسخ Ùˆ استرجاع كل Ø§Ù„Ù…Ù„ÙØ§Øª ÙÙŠ دليل /etc.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Local printer"
-msgstr "طابعة محلية"
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
+msgstr ""
+"لم يمكن ازالة تعيين نقطة التجهيز نظرا لأن هذه التجزئة مستخدمة لـloop back.\n"
+"قم بإزالة الـloopback أولا"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Files Restored..."
-msgstr "Ø§Ù„Ù…Ù„ÙØ§Øª المستعادة..."
+#: ../../diskdrake/interactive.pm_.c:606
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "أين تريد بجهيز الجهاز%s؟"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
-msgstr "اختيار الحزم"
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "جاري حساب روابط نظام Ù…Ù„ÙØ§Øª FAT"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritania"
-msgstr "موريتانيا"
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "جاري تغيير الحجم"
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
-"يمكنني Ø­ÙØ¸ التهيئة Ùˆ Ø§ÙØªØ±Ø§Ø¶ أنك قمت بإعداد خادم DHCP مسبقاً; ÙÙŠ هذه الحال "
-"تأكد من أنني أستطيع قراءة الشبكة التي تستخدمها للشبكة المحلية بشكل صحيح; "
-"سأقوم بإعادة تهيئتها و لن أقوم بأي شئ تجاه تهيئة خادم DHCP.\n"
-"\n"
-"مدخل DNS Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠ Ù‡Ùˆ اسم الخادم المخبئي على الجدار الناري. يمكنك ابدال ذلك "
-"بعنوان IP للـDNS الخاص Ø¨Ù…ÙˆÙØ± خدمة الإنترنت, مثل.\n"
-"\t\t \n"
-"ان لم يكن ذلك, يمكنني اعداة تهيئة الواجهة و اعداة تهيئة خادم DHCP لك.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:662
+msgid "This partition is not resizeable"
+msgstr "هذا التقسيم غير قابل لتغيير الحجم"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"لم يتم ايجاد طابعة محلية! لتثبيت طابعة يدوياً ادخل اسم جهاز/اسم مل٠ÙÙŠ حقل "
-"الإدخال (الطابعات المتوازية: /dev/lp0, /dev/lp1, ..., مماثلة لـLPT1:, "
-"LPT2:, ..., طابعة USB الأولى: /dev/usb/lp0, طابعة USB الثانية: /dev/usb/"
-"lp1, ...)."
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
+msgstr "كل البيانات على هذه التجزئة يجب Ø­ÙØ¸Ù‡Ø§ احتياطيا"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:669
#, c-format
-msgid "All primary partitions are used"
-msgstr "كل التجزئات الرئيسية مستخدمة"
+msgid "After resizing partition %s, all data on this partition will be lost"
+msgstr "بعد تغيير حجم التجزئة %s, ÙØ¥Ù† كل البيانات على هذه التجزئة ستÙقد"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "على خادم LPD \"%s\", الطابعة \"%s\""
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "اختر الحجم الجديد"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"بعد عمل ذلك, ننصح بإعادة تشغيل بيئة X لديك Ù„ØªÙØ§Ø¯ÙŠ Ø£ÙŠ مشاكل تتعلق بإسم "
-"المستضيÙ."
+#: ../../diskdrake/interactive.pm_.c:675
+msgid "New size in MB: "
+msgstr "الحجم الجديد بالميغابايت: "
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "تحقق و تهيئة آلية للعتاد عند الإقلاع."
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "أي قرص تريد نقله؟"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation Server Configuration"
-msgstr "تهيئة خادم الثبيت"
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "القطاع"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "جاري تهيئة IDE"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "أي قطاع تريد نقله؟"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network functionality not configured"
-msgstr "لم يتم تحديد وظيÙية الشبكة"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "جاري النقل"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Configure module"
-msgstr "تهيئة الوحدة"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "جاري نقل التجزئة..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "جزر الكوكوس"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr "اختر RAID موجود Ù„Ù„Ø§Ø¶Ø§ÙØ©"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr "ستحتاج الى اعادة التشغيل قبل أن يتم ØªÙØ¹ÙŠÙ„ التعديلات"
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "جديد"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
-msgstr "رقم Ù‡Ø§ØªÙ Ø§Ù„Ù…ÙˆÙØ±"
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
+msgstr "اختر LVM l,جود Ù„Ù„Ø§Ø¶Ø§ÙØ©"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Host %s"
-msgstr "المستضي٠%s"
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
+msgstr "اسم LVM؟"
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
-msgstr "Ùيجي"
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
+msgstr "هذه التجزئة لا يمكن استخدامها لـloopback"
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
-msgstr "أرمينيا"
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
+msgstr "Loopback"
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "سواقة القرص المرن الثانية"
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
+msgstr "اسم مل٠Loopback: "
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
-msgstr "حول HardDrake"
+#: ../../diskdrake/interactive.pm_.c:831
+msgid "Give a file name"
+msgstr "اعط اسم ملÙ"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
+msgstr "هذا المل٠مستخدم من loopback أخرى, اختر Ù…Ù„ÙØ§ آخر"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr "حجم السواقة"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
+msgstr "المل٠موجود مسبقا, هل تريد استخدامه؟"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"أدخل قرصا مرنا ÙÙŠ السواقة\n"
-"كل البيانات على القرص ستمحى"
+#: ../../diskdrake/interactive.pm_.c:858
+msgid "Mount options"
+msgstr "خيارات التجهيز"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "الحجم: %s"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
+msgstr "متنوعة"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Ù…ÙØ§ØªÙŠØ­ Control Ùˆ Shift ÙÙŠ Ù†ÙØ³ الوقت"
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "وحدة"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "secondary"
-msgstr "ثانوي"
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "المستوى"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Backup Configuration."
-msgstr "اعرض تهيئة النسخ الإحتياطي"
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "حجم chunk"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr "if set to yes, report check result to syslog."
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
+msgstr "كن حذرا: هذه العملية خطيرة"
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "لا كلمة مرور"
+#: ../../diskdrake/interactive.pm_.c:962
+msgid "What type of partitioning?"
+msgstr "أي نوع من التجزئة؟"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nigeria"
-msgstr "نيجيريا"
+#: ../../diskdrake/interactive.pm_.c:978
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "الحزمة %s يجب أن ØªÙØ«Ø¨Ù‘ت. هل تريد تثبيتها؟"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
+#: ../../diskdrake/interactive.pm_.c:992
+msgid ""
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "لا توجد تجزئة لاستخدامها"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:996
msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-"الماسحات الضوئية التالية\n"
-"\n"
-"%s\n"
-"Ù…ØªÙˆÙØ±Ø© لنظامك.\n"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr ", جهاز متعدد الوظائ٠على Ø§Ù„Ù…Ù†ÙØ° المتوازي #%s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1002
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."
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
msgstr ""
-"للطباعة الى طابعة TCP أو socket, يجب عليك اعطاء اسم المستضي٠أو عنوان IP "
-"الخاص بالطابعة Ùˆ اختيارياً يمكنك Ø§Ø¶Ø§ÙØ© رقم Ù…Ù†ÙØ° الطابعة (Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠ Ù‡Ùˆ 9100). "
-"على خادمات HP JetDirect يكون رقم Ø§Ù„Ù…Ù†ÙØ° عادةً هو 9100, على الخادمات الأخرى "
-"يمكن أن يكون الرقم غير ذلك. الق نظرة على دليل المستخدم للعتاد الخاص بك."
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid "Hard drive information"
-msgstr "معلومات القرص الصلب"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian"
-msgstr "الروسية"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "جدول اتتقسيم للقرص %s سيتم كتابته الى القرص!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Jordan"
-msgstr "الأردن"
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
+msgstr "ستحتاج الى اعادة التشغيل قبل أن يتم ØªÙØ¹ÙŠÙ„ التعديلات"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1037
#, c-format
-msgid "Hide files"
-msgstr "خبئ Ø§Ù„Ù…Ù„ÙØ§Øª"
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr "بعد تهيئة التقسيم %s, ÙØ¥Ù† كل البيانات الموجودة على التجزئة ستÙقد"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "تحقق أليا من الطابعات المتصلة بهذا الجهاز"
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "جاري التهيئة"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "آس٠, لا مدخل مرن متاح"
+msgid "Formatting loopback file %s"
+msgstr "جاري تهيئة مل٠loopback: %s"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "Bolivia"
-msgstr "بوليÙيا"
+msgid "Formatting partition %s"
+msgstr "جاري تهيئة التجزئة %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"قم بإعداد خادم Windows لجعل الطابعات Ù…ØªÙˆÙØ±Ø© تحت بروتوكول IPP Ùˆ قم بإعداد "
-"الطباعة من هذه الماكينة باستخدام نوع الوصلة \"%s\" ÙÙŠ Printerdrake.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Hide files"
+msgstr "خبء Ø§Ù„Ù…Ù„ÙØ§Øª"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "حزمة سيئة"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Move files to the new partition"
+msgstr "انقل Ø§Ù„Ù…Ù„ÙØ§Øª الى تجزئة جديدة"
-#: ../advertising/07-server.pl:1
+#: ../../diskdrake/interactive.pm_.c:1053
#, 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!"
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-"حوّل جهازك الى خادم Linux قوي بنقرات قليلة من Ø§Ù„ÙØ£Ø±Ø©: خادم ويب, بريد, جدار "
-"ناري, موجّه, خادم Ù…Ù„ÙØ§Øª Ùˆ طباعة, ..."
+"الدليل %s يحتوي مسبقا على بعض البيانات\n"
+"(%s)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "DrakSec Basic Options"
-msgstr "خيارات DrakSec الأساسية"
+#: ../../diskdrake/interactive.pm_.c:1064
+msgid "Moving files to the new partition"
+msgstr "جاري نقل Ø§Ù„Ù…Ù„ÙØ§Øª الى التجزئة الجديدة"
-#: ../../standalone/draksound:1
+#: ../../diskdrake/interactive.pm_.c:1068
#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"ملحوظة: اذا كانت لديك بطاقة صوت ISA PnP, ستحتاج الى استخدام برنامج "
-"sndconfig. Ùقط عليك كتابة \"sndconfig\" ÙÙŠ سطر الأوامر."
+msgid "Copying %s"
+msgstr "جاري نسخ %s"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1072
#, c-format
-msgid "Romania"
-msgstr "رومانيا"
+msgid "Removing %s"
+msgstr "جاري ازالة %s"
-#: ../../standalone/drakperm:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid "Group"
-msgstr "المجموعة"
+msgid "partition %s is now known as %s"
+msgstr "التجزئة %s Ù…Ø¹Ø±ÙˆÙØ© الآن بالإسم %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Canada"
-msgstr "كندا"
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "الجهاز: "
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "choose device"
-msgstr "اختر الجهاز "
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "حر٠سواقة DOS: %s (مجرد تخمين)\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from LVM"
-msgstr "ازالة من LVM"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "النوع: "
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Timezone"
-msgstr "المنطقة الزمنية"
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "الاسم: "
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "German"
-msgstr "الألمانية"
+msgid "Start: sector %s\n"
+msgstr "البداية: قطاع %s\n"
-#: ../../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
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "Next ->"
-msgstr "التالي ->"
+msgid "Size: %s"
+msgstr "الحجم: %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid ""
-"Turning on this allows to print plain text files in japanese language. Only "
-"use this function if you really want to print text in japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"تشغيل هذا الخيار يسمح بطباعة Ù…Ù„ÙØ§Øª النصوص العادية باللغة اليابانية. استخدم "
-"هذه الميزة Ùقط اذا كنت تريد طباعة النصوص باليابانية, اذا تم تنشيط هذا الخيار "
-"لن يمكنك طباعة الحرو٠اللاتينية ذات العلامات و لن يمكنك تعديل الهوامش و حجم "
-"الخطوط الخ. هذا الخيار يؤثر Ùقط على الطابعات Ø§Ù„Ù…Ø¹Ø±ÙØ© على هذه الماكينة. اذا "
-"كنت تريد طباعة النصوص اليابانية على طابعة بعيدة, يجب عليك تنشيط هذه Ø§Ù„ÙˆØ¸ÙŠÙØ© "
-"على الطابعة البعيدة."
+msgid ", %s sectors"
+msgstr ", %s قطاع"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
+msgid "Cylinder %d to %d\n"
+msgstr "الاسطوانة %d الى %d\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
-msgstr "غينيا-بيساو"
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "مجهز\n"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "نسبة الإنعاش الأÙقي"
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "غير مجهز\n"
+
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
+msgstr "محمل\n"
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Edit"
-msgstr "تحرير"
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, c-format
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+"Loopback file(s):\n"
+" %s\n"
msgstr ""
-"لم يمكن ازالة تعيين نقطة التحميل نظرا لأن هذه التجزئة مستخدمة لـloop back.\n"
-"قم بإزالة الـloopback أولا"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1132
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\""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"لا يمكن بدء تهيئة الشبكة التي تم عملها أثناء التثبيت الآن. ÙØ¶Ù„اً تأكد اذا كان "
-"يمكن الوصول الى الشبكة بعد اقلاع النظام و صحّح التهيئة باستخدام مركز تحكم "
-"Mandrake ÙÙŠ قسم \"الشبكة Ùˆ الإنترنت\"/\"الوصلات\", Ùˆ بعد ذلك قم بتهيئة "
-"الطابعة, كذلك باستخدام مركز تحكم Mandrake ÙÙŠ قسم \"العتاد\"/\"الطابعة\""
-#: ../../harddrake/data.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "USB controllers"
-msgstr "متحكمات USB"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "What norm is your TV using?"
-msgstr "أي نظام يستخدمه جهاز Ø§Ù„ØªÙ„ÙØ§Ø² لديك؟"
+msgid "Level %s\n"
+msgstr "المستوى %s\n"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "Type:"
-msgstr "النوع:"
+msgid "Chunk size %s\n"
+msgstr "حجم Chunk %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Share name"
-msgstr "اسم المشاركة"
+msgid "RAID-disks %s\n"
+msgstr "أقراص RAID %s\n"
-#: ../../standalone/drakgw:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "enable"
-msgstr "تمكين"
+msgid "Loopback file name: %s"
+msgstr "اسم مل٠Loopback: %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-"جاري الإتصال بموقع Mandrake Linux للحصول على قائمة بالمرايا Ø§Ù„Ù…ØªÙˆÙØ±Ø©..."
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"ظهرت مشكلة أثناء اعادة تشغيل الشبكة: \n"
-"\n"
-"%s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove the loopback file?"
-msgstr "هل تريد ازالة مل٠loopback؟"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "الحجم المختار أكبر من المساحة Ø§Ù„Ù…ØªÙˆÙØ±Ø©"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP server name missing!"
-msgstr "اسم خادم NCP Ù…Ùقود!"
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose your country."
-msgstr "ÙØ¶Ù„اً اختر بلدك."
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Ù…Ù„ÙØ§Øª النسخ الإحتياطي للقرص الصلب..."
+msgid "Size: %s\n"
+msgstr "الحجم: %s\n"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "Laotian"
-msgstr "اللاوسية"
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "الهندسة: %s اسطوانة, %s رأس, %s قطاع\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Samoa"
-msgstr "ساموا"
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
+msgstr "معلومات: "
-#: ../../services.pm:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"بروتوكول rstat يسمح للمستخدمين على الشبكة باسترجاع\n"
-"احصائيات آداء أي جهاز على هذه الشبكة."
+msgid "LVM-disks %s\n"
+msgstr "أقراص LVM %s\n"
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid "Re-generating list of configured scanners ..."
-msgstr "جاري اعادة توليد قائمة الماسحات الضوئية المعدّة ..."
+msgid "Partition table type: %s\n"
+msgstr "نوع جدول التقسيم: %s\n"
-#: ../../modules/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1169
#, fuzzy, c-format
-msgid "Module configuration"
-msgstr "تهيئة يدوية"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Scanner"
-msgstr "الماسح الضوئي"
+msgid "on channel %d id %d\n"
+msgstr "على bus %d id %d\n"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "تحذير: اختبار بطاقة العرض هذه قد يتسب ÙÙŠ ايقا٠جهازك"
+#: ../../diskdrake/interactive.pm_.c:1199
+msgid "Filesystem encryption key"
+msgstr "Ù…ÙØªØ§Ø­ تشÙير نظام Ø§Ù„Ù…Ù„ÙØ§Øª"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "اسم المستخدم يجب أن يحتوي Ùقط على الحرو٠الصغيرة, الأرقام, `-' Ùˆ `_'"
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
+msgstr "اختر Ù…ÙØªØ§Ø­ تشÙير نظام Ø§Ù„Ù…Ù„ÙØ§Øª"
-#: ../../standalone/drakbug:1
+#: ../../diskdrake/interactive.pm_.c:1203
#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
+msgid "This encryption key is too simple (must be at least %d characters long)"
+msgstr "Ù…ÙØªØ§Ø­ التشÙير هذا بسيط جدا (يجب أن يكون %d Ø­Ø±ÙØ§ على الأقل)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "مرحبا بالمخترقين"
+#: ../../diskdrake/interactive.pm_.c:1204
+msgid "The encryption keys do not match"
+msgstr "Ù…ÙØ§ØªÙŠØ­ التشÙير غير متطابقة"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "خيارات الوحدة:"
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
+msgstr "Ù…ÙØ§ØªØ­ التشÙير"
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
-msgstr "قم بحماية شبكاتك باستخدام Multi Network Firewall"
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
+msgstr "Ù…ÙØ§ØªØ­ التشÙير (مرة أخرى)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "تابع دون تهيئة الشبكة"
+#: ../../diskdrake/removable.pm_.c:47
+msgid "Change type"
+msgstr "غيّر النوع"
-#: ../../network/isdn.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "Abort"
-msgstr "إنهاء"
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "لا يوجد طلب كلمة سر ÙÙŠ %s على Ø§Ù„Ù…Ù†ÙØ° %s"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "التحقق"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "إنترنت"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "استخدام الماسحات الضوئية البعيدة"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "اسم المستخدم"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
+"Please enter your username, password and domain name to access this host."
msgstr ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (نرويجيةّ)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "التقدم ÙÙŠ نسخ القرص الصلب..."
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "تعذر تنÙيذ: %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "النوع: "
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+#, fuzzy
+msgid "Username"
+msgstr "اسم المستخدم"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- تحرير العميل"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS Domain"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "no fonts found"
-msgstr "لا توجد خطوط"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+msgid "Search servers"
+msgstr "ابحث ÙÙŠ أجهزة الخادم"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "Mouse"
-msgstr "Ø§Ù„ÙØ£Ø±Ø©"
+msgid "%s formatting of %s failed"
+msgstr "%s تجهيز %s قد ÙØ´Ù„"
-#: ../../bootloader.pm:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "not enough room in /boot"
-msgstr "لا توجد مساحو كاÙية ÙÙŠ /boot"
+msgid "I don't know how to format %s in type %s"
+msgstr "لا أعر٠كي٠أجهز %s ÙÙŠ النوع %s"
-#: ../../install_steps_gtk.pm:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "trying to promote %s"
+msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Liechtenstein"
-msgstr "ليشتنشتاين"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid "Host name"
-msgstr "اسم المستضيÙ"
+msgid "error unmounting %s: %s"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the color of the progress bar"
-msgstr "لون شريط التقدم"
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "بسيط"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "أبطل Ù…Ù„ÙØ§Øª الخطوط"
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
+msgstr "مع /usr"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to RAID"
-msgstr "Ø§Ø¶Ø§ÙØ© الى RAID"
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "خادم"
-#: ../../help.pm:1
+#: ../../fsedit.pm_.c:240
#, c-format
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"
+"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"
-" * 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."
+"Do you agree to loose all the partitions?\n"
msgstr ""
-"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."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr "تمت Ø§Ø¶Ø§ÙØ© الطابعة \"%s\" الى Star Office/OpenOffice.org/GIMP بنجاح."
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No floppy drive available!"
-msgstr "لا توجد سواقة قرص مرن!"
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
msgstr ""
-"Ù„Ù„Ù…Ø¹Ø±ÙØ© حول الخيارات Ø§Ù„Ù…ØªÙˆÙØ±Ø© للطابعة الحالية, إما أن تقرأ القائمة أدناه Ùˆ "
-"انقر \"قائمة خيارات الطابعة\".%s%s%s\n"
-"\n"
-#: ../../lang.pm:1
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "Saudi Arabia"
-msgstr "السعودية"
+msgid "There is already a partition with mount point %s\n"
+msgstr ""
-#: ../../services.pm:1
+#: ../../fsedit.pm_.c:526
#, c-format
-msgid "Internet"
-msgstr "الإنترنت"
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "هل تريد الاكمال على أي حال؟"
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:530
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"اذا لم تكن طابعت موجودة ÙÙŠ القائمة, ÙØ¶Ù„اً اختر طابعة متواÙقة (انظر دليل "
-"الطابعة) أو اختر طابعة مماثلة."
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer"
-msgstr "طابعة"
-
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices were added:\n"
-msgstr "تمت Ø§Ø¶Ø§ÙØ© بعض العتاد:\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../fsedit.pm_.c:532
#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "الهندسة: %s اسطوانة, %s رأس, %s قطاع\n"
+msgid "You can't use an encrypted file system for mount point %s"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "جاري الطباعة على الطابعة \"%s\""
+#: ../../fsedit.pm_.c:599
+msgid "Not enough free space for auto-allocating"
+msgstr "لا توجد مساحة كاÙية للتحديد الآلي"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr "/etc/hosts.allow و /etc/hosts.deny معدّان مسبقاً - لم يتم التغيير"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
+msgstr "لا شيئ للعمل"
-#: ../../standalone/drakbackup:1
+#: ../../fsedit.pm_.c:694
#, c-format
-msgid "Restore From Tape"
-msgstr "استعادة من الشريط"
+msgid "Error opening %s for writing: %s"
+msgstr " ÙØªØ­Ø© الخطإ %s للكتابة :%s"
-#: ../../standalone/drakbug:1
-#, fuzzy, 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."
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
msgstr ""
-"لتسليم تقرير العيوب, اضغط على زر تقرير.\n"
-"سيقوم هذا بقتح Ù…ØªØµÙØ­ ويب على Ø§Ù„ØµÙØ­Ø© %s\n"
-" حيث ستجد استمارة عليك ملؤها. المعلومات المذكرة أعلاه سيتم نقلها\n"
-"الى ذلك الخادم"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the profile to configure"
-msgstr "اختر التشكيل الذي تريد تهيئته"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
msgstr ""
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../harddrake/sound.pm_.c:171
#, c-format
msgid ""
-"\n"
-"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-"\n"
-"\n"
-"أدخل اسم مستضي٠Zeroconf بدون أي نقاط اذا لم تكن تريد\n"
-"استخدام اسم Ø§Ù„Ù…Ø³ØªØ¶ÙŠÙ Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠ."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "قم بالنسخ الآن من مل٠التهيئة"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr "نقا التحميل يجب أن تحتوي Ùقط على الحرو٠و/أو الآرقام"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting printing system..."
-msgstr "جاري اعادة تشغيل نظام الطباعة..."
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "Sound configuration"
+msgstr " CUPS اعدادات"
-#: ../../../move/tree/mdk_totem:1
+#: ../../harddrake/sound.pm_.c:174
#, c-format
-msgid "You can only run with no CDROM support"
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "عرض معلومات العتاد"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
-msgstr "اليوم"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr "القطاع اول من تجزئة الإقلاع"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "مصنّع الطابعة, الطراز"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
-
-#: ../../standalone.pm:1
+#: ../../harddrake/sound.pm_.c:176
#, 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)"
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-"[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)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Subnet Mask:"
+#: ../../harddrake/sound.pm_.c:178
+#, fuzzy
+msgid "Driver:"
+msgstr "المحرك"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Set password expiration and account inactivation delays"
-msgstr ""
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+msgid "Help"
+msgstr "مساعدة"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
msgstr ""
-#: ../../Xconfig/monitor.pm:1
-#, c-format
+#: ../../harddrake/sound.pm_.c:186
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"
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"المعاملان المهمان جدا هما نسبة الإنعاش الأÙقي, Ùˆ هي النسبة التي\n"
-"يتم Ùيها انعاش الشاشة كاملة, Ùˆ الأهم هو نسبة التزامن الأÙقي\n"
-"Ùˆ التي ÙÙŠ خلالها يتم عرض خطوط المسح.\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
-"من *المهم جدا* أن لا تحدد نوع شاشة مع متوسط تزامن\n"
-"أكبر من مقدرة شاشتك لأنك بهذا قد تدمر شاشتك.\n"
-" اذا لم تكن متأكدا يمكنك اختيار اعدادات عادية."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
-msgstr "تعديل"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"It also provides a much higher API than OSS.\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"
+"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 ""
-"\n"
-"الأوامر \"%s\" Ùˆ \"%s\" تسمح لك بتعديل اعدادات الخيارات Ù„ÙˆØ¸ÙŠÙØ© طباعة محددة. "
-"ببساطة قم Ø¨Ø¥Ø¶Ø§ÙØ© الإعداد المطلوب الى سطر الآوامر, مثال \"%s <file>\".\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "ÙŠÙØ­ØªØ§Ø¬ الى اسم المستضي٠و اسم المستخدم Ùˆ كلمة المرور!"
-
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Insert floppy"
-msgstr "أدخل قرص مرن ÙÙŠ %s"
-
-#: ../../diskdrake/dav.pm:1
+#: ../../harddrake/sound.pm_.c:202
#, c-format
msgid ""
-"WebDAV is a protocol that allows you to mount a web server's directory\n"
-"locally, and treat it like a local filesystem (provided the web server is\n"
-"configured as a WebDAV server). If you would like to add WebDAV mount\n"
-"points, select \"New\"."
-msgstr ""
-"WebDAV هو برتوكول يسمج لك بتحميل دليل ÙÙŠ خادم الويب بشكل\n"
-"محلي, Ùˆ معاملته كنظام Ù…Ù„ÙØ§Øª محلي (يجب أن يكون خادم الويب معدّ\n"
-"كخادم WebDAV). اذا كنت تريد Ø§Ø¶Ø§ÙØ© نقاط تحميل\n"
-"WebDAV, اختر \"جديد\"."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
-msgstr "جديد"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable syslog reports to console 12"
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Would you like to try again?"
-msgstr "هل تريد المحاولة مرةً أخرى؟"
-
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "المعالج"
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+msgid "Please Wait... Applying the configuration"
+msgstr "يرجى الإنتظار... جاري تطبيق الإعدادات"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected server"
-msgstr "حرر الخادم المختار"
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "من ÙØ¶Ù„Ùƒ انتظر"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "رجاء اختر أين تريد النسخ الاحتياطي."
+#: ../../harddrake/sound.pm_.c:210
+#, fuzzy
+msgid "No known driver"
+msgstr "مشغل X"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "تحتاج الى اعداة التثبيت Ù„ØªÙØ¹ÙŠÙ„ التعديلات على جدول التجزئات"
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "لا تستخدم ذاكرة Ø§Ù„Ù…ØªØµÙØ­ المخبئية"
+#: ../../harddrake/sound.pm_.c:214
+#, fuzzy
+msgid "Unkown driver"
+msgstr "غير معروÙ"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, c-format
msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-"تعذر التأكد من صحة نظام Ø§Ù„Ù…ÙØ§Øª %s. هل تريد تصحيح الأخطاء (كن حذراً, يمكن أن "
-"تخسر بيانات)"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "من ÙØ¶Ù„Ùƒ اختر تصميم لوحة Ù…ÙØ§ØªÙŠØ­Ùƒ"
-
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "القياسي"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "ÙØ¶Ù„اً, اختر نوع Ø§Ù„ÙØ£Ø±Ø© الخاصة بك."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
-msgstr "اتصل..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "تعذرت تهيئة الطابعة \"%s\"!"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "not configured"
-msgstr "غير معدّ"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "About"
-msgstr "حول"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "اعدادات البروكسي"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "البداية: قطاع %s\n"
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+#, fuzzy
+msgid "Auto-detect"
+msgstr "تحقق آلي"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Mask"
-msgstr "لا قناع"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generic"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface already configured"
-msgstr "واجهة الشبكة معدّة مسبقا!"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
-msgstr "تعذر الوصول الى القرص المرن!"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
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."
+"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 ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Mail Server"
-msgstr "خادم بريد"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "ÙØ¶Ù„ا اضغط على تجزئة"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr ", جهاز متعدد الوظائ٠على HP JetDirect"
-
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
-msgstr "نتمنى لك يوماً سعيداً!"
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Upgrade %s"
-msgstr "ترقية %s"
+#: ../../harddrake/v4l.pm_.c:227
+#, fuzzy
+msgid "Card model:"
+msgstr "Card mem (DMA)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "اختر وصلة الطابعة"
+#: ../../harddrake/v4l.pm_.c:228
+#, fuzzy
+msgid "Tuner type:"
+msgstr "غيّر النوع"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
-msgstr "ضيط قنوات Ø§Ù„ØªÙ„ÙØ§Ø² ÙÙŠ تقدم ..."
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
msgstr ""
-"خطأ أثناء ارسال المل٠عير FTP.\n"
-" ÙØ¶Ù„اً قم بتصحيح اعدادات FTP."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr "IP Range Start:"
+#: ../../harddrake/v4l.pm_.c:231
+#, fuzzy
+msgid "PLL setting:"
+msgstr "حمل الإعدادات"
-#: ../../services.pm:1
-#, 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."
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
msgstr ""
-"مراقب الإنترنت الأساسي (يسمى عادةً بـ inetd) يبدأ\n"
-"مجموعة من خدمات الإنترنت الأخرى عند الحاجة. انه مسؤول عن بدء\n"
-"العديد من الخدمات, بما Ùيها telnet, ftp, rsh, Ùˆ rlogin. تعطيل inetd سيعطل\n"
-"كل الخدمات المذكورة."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
-msgstr "Ø§Ø±ØªÙØ§Ø¹ شريط التقدم"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+"لينكس هو نظام متعدد المستخدمين, أي أن كل مستخدم سيكون له اعداداته الخاصة و "
+"Ù…Ù„ÙØ§ØªÙ‡\n"
+"الخاصة, الخ. يمكنك قراءة ``دليل المستخدم'' Ù„ØªÙØ§ØµÙŠÙ„ أكثر.\n"
+"Ùˆ على عكس \"الجذر\", أي مدير النظام, ÙØ¥Ù† المستخدمين الذين ستضيÙهم هنا لن\n"
+"يتم السماح لهم بتغيير أي شئ ما عدا Ù…Ù„ÙØ§ØªÙ‡Ù… Ùˆ إعداداتهم الخاصة. سيجب عليك\n"
+"أن تضيق مستخدماً عادياً لك. و هذا الحساب هو الذي يجب أن تدخل عليه\n"
+"للاستخدام العادي. Ùˆ برغم أنه من العملي الدخول Ø¨ØµÙØ© \"جذر\" يوميا إلا أن\n"
+"هذا قد يكون خطيرا جدا! ÙØ£Ù‚Ù„ غلطة قد تعني أن نظامك لن يعمل بعد ذلك مطلقا.\n"
+"أما إذا ارتكبت خطأ كبيراً كمستخدم عادي, Ùقد تخسر بعض البيانات, ولكن ليس "
+"النظام ككل.\n"
+"\n"
+"أولا سيجب عليك أن تكتب اسمك الحقيقي. هذا ليس الزامياً بالطبع\n"
+"بما أنه من الممكن أن تكتب ما تريد. DrakX سيأخذ أول كلمة تدخلها ÙÙŠ الصندوق\n"
+"Ùˆ سيجلبها ÙÙŠ خانة \"اسم المستخدم\". هذا الإسم هو الذي سيستخدمه المستخدم\n"
+"للدخول الى النظام. يمكنك تغييره أيضا. بعد ذلك ستحتاج لإدخال كلمة المرور "
+"هنا.\n"
+"كلمة المرور الخاصة بالمستخدم العادي ليست مهمة مثل كلمة مرور \"الجذر\"\n"
+"من وجهة نظر أمنية, لكن هذا ليس سببا لتناسي الموضوع لأنه ÙÙŠ هذه الحال\n"
+"ÙØ¥Ù† Ù…Ù„ÙØ§Øª ستكون ÙÙŠ خطر.\n"
+"\n"
+"إذا ضغطت على زر \"واÙÙ‚ على المستخدم\", ÙØ³ÙŠÙ…كنك بعد ذلك أن تضي٠بقدر ما "
+"تريد.\n"
+"مثلا يمكنك أن تضي٠اسم مستخدم لكل من أصدقائك أو والدك أو أختك. عندما تنتهي\n"
+"من Ø¥Ø¶Ø§ÙØ© كل المستخدمين الذين تريدهم, اختر زر \"انتهى\".\n"
+"\n"
+"ضغط زر \"متقدم\" سيسمح لك بتغيير \"الغلاÙ\" أو سطر الأوامر Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠ Ù„Ù‡Ø°Ø§\n"
+"المستخدم (bash هو Ø§Ù„ØºÙ„Ø§Ù Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠ)."
+
+#: ../../help.pm_.c:48
+msgid ""
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
"\n"
-"- Save via %s on host: %s\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
msgstr ""
+"ÙÙŠ الأعلى ستجد تقسيمات لينكس الموجودة Ùˆ التي تم ايجادها على القرص الصلب "
+"الخاص بك.\n"
+"يمكنك أن ØªÙØ¨Ù‚ÙŠ إختيارات المعالج, Ùˆ هي جيدة لأغلب أنواع التثبيت.\n"
+"إذا قمت بعمل أي تغييرات Ùيجب عليك أن تعر٠التقسيم الجذر (\"/\"). لا تختر\n"
+"تقسيمات ضغيرة جدا Ùˆ إلا لن تستطيع تثبيت برامج كاÙية. إذا كنت تريد تخزين "
+"البيانات\n"
+"على تقسيم مستقل ÙØ³ØªØ­ØªØ§Ø¬ الى عمل تقسيم لـ\"/home\"\n"
+"(ممكن Ùقط إذا كان لديك أكثر من تقسيم للينكس).\n"
"\n"
-"- Ø§Ø­ÙØ¸ عبر %s على المستضيÙ: %s\n"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "الأرجنتين "
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Domain Name Server"
-msgstr "خادم اسم النطاق"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Level:"
-msgstr "مستوى الأمن:"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr "يجب أن تبدأ نقاط التحميل بالعلامة /"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "ÙØ¶Ù„اً اختر جهاز CD/DVD"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "CUPS server"
-msgstr "خادم DNS"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "خادم البريد Postfix"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "الخروج بدون Ø§Ù„Ø­ÙØ¸"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "اليمن"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
-msgstr "هذا المنتج Ù…ØªÙˆÙØ± على موقع MandrakeStore"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> There are many things to choose from (%s).\n"
+"كل تقسيم Ù…ÙØ¹Ø·Ù‰ بالسكل التالي: \"الإسم\", \"السعة\".\n"
+"\n"
+"\"الإسم\" مركب بالسكل التالي: \"نوع القرص الصلب\", \"رقم القرص الصلب\",\n"
+"\"رقم التقسيم\" (مثلا, \"hda1\").\n"
+"\n"
+"\"رقم القرص الصلب\" دائما هو حر٠بعد \"hd\" أو \"sd\". بالنسبة للأقراص "
+"الصلبة\n"
+"من نوع IDE ÙØ¥Ù†:\n"
+" * \"a\" تعني \"القرص الصلب الأساسي على متحكم IDE الأساسي\",\n"
+"\n"
+" * \"b\" تعني \"القرص الصلب الثانوي على متحكم IDE الأساسي\",\n"
+"\n"
+" * \"c\" تعني \"القرص الصلب الأساسي على متحكم IDE الثانوي\",\n"
+"\n"
+" * \"d\" تعني \"القرص الصلب الثانوي على متحكم IDE الثانوي\",\n"
+"\n"
+"أما بالنسبة لأقراص سكزي SCSI ÙØ§Ù„حر٠\"a\" يعني \"أقل معر٠SCSI\", Ùˆ الحر٠\"b"
+"\"\n"
+"يعني \"ثاني أقل معر٠SCSI\", الخ."
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
+#: ../../help.pm_.c:79
+msgid ""
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
+"تثبيت Mandrake Linux موزع على العديد من الأقراص. DrakX\n"
+"يعلم إذا كانت حزمة ما ÙÙŠ قرص آخر Ùˆ سيخرج القرص\n"
+"الحالي Ùˆ سيطلب منك أن تدخل قرصاً Ù…Ø®ØªÙ„ÙØ§ كما هو مطلوب."
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../help.pm_.c:84
msgid ""
-"An error occurred:\n"
+"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"
+"you are not supposed to know them all by heart.\n"
"\n"
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
"\n"
-"%s\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
+"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
+"\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
+"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
+"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
+"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
"\n"
-"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"
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
"\n"
-"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."
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "التحقق من الأقراص الصلبة"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../help.pm_.c:135
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
msgstr ""
-"لم تختر أي مجموعة من الحزم.\n"
-"ÙØ¶Ù„اً اختر التثبيت المصغر الذي تريده:"
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../help.pm_.c:171
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."
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "رجاء أدخل عنوان خادم WebDav"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "طاجكستان"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "اقبل"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "الوصÙ"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Please enter summary text."
-msgstr "رجاء أدخل اسم الدخول"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr " ÙØªØ­Ø© الخطإ %s للكتابة :%s"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "نوع Ø§Ù„ÙØ£Ø±Ø©: %s\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "يمكن لبطاقتك الحصول على دعم للتسريع ثلاثي الأبعاد مع XFree %s"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "إختر شاشة"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "غير مسموح بالعلامات Ø§Ù„ÙØ§Ø±ØºØ©"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
-msgstr "المالطية (بريطانيا)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "لا يمكنني Ø§Ø¶Ø§ÙØ© أي تجزئة أخرى"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "الحجم باليغابايت: "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "طابعة بعيدة"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
-msgstr "رجاء اختر لغة الاستخدام."
-
-#: ../../network/network.pm:1
-#, c-format
+#: ../../help.pm_.c:193
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."
+"You may now choose which services you wish to start at boot time.\n"
+"\n"
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
+"\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
-"تحذير: تمت تهيئة هذا الجهاز سابقاً للإتصال بالإنترنت.\n"
-"بكل بساطة اقبل أن ØªÙØ¨Ù‚ÙŠ هذا الجهاز معدّ.\n"
-"تعديل الحقول أدناه سيغيّر هذه التهيئة."
-#: ../../any.pm:1
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
-msgstr "يمكن اعداد جهازك لتسجيل الدخول آلياً لمستخدم معين."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Floppy format"
-msgstr "نسق القرص الصلب"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Generic Printers"
-msgstr "طابعات عادية (Generic)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:210
msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
msgstr ""
-"ÙØ¶Ù„اً أدخل الطابعة التي يجب أن تذهب اليها وظائ٠الطباعة أو أدخل اسم جهاز/اسم "
-"مل٠ÙÙŠ حقل الإدخال"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr "الماسحات الضوئية على هذه الماكينة Ù…ØªÙˆÙØ±Ø© للحواسيب الأخرى"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of the root partition"
-msgstr "القطاع الأول من التجزئة الجذرية"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Alternative drivers"
-msgstr "مشغلات بديلة"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:224
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.\n"
+"\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
+msgstr ""
+
+#: ../../help.pm_.c:246
+msgid ""
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
+msgstr ""
+
+#: ../../help.pm_.c:253
+msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
+msgstr ""
+
+#: ../../help.pm_.c:277
+msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-"Please check all options that you need.\n"
-msgstr ""
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
-"ÙØ¶Ù„اً قم بالتأشير على الخيارات التي تحتاجها.\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
-msgstr "كيب Ùيردي"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "اذا كان المعالج لديه Cyrix 6x86 Coma bug"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr "جاري تحميل المستخدمين و المجموعات... رجاء الانتظار"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr "معالجات pentium القديمة كانت تتوق٠عن العمل عند استخدام الكود F00F"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr "غوام"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:347
msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-"ÙØ¶Ù„اً أدخل Ø§Ù„Ù…Ù†ÙØ° المتصلة به الطابعة أو أدخل اسم جهاز/اسم مل٠ÙÙŠ حقل الإدخال"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/خيارات/اختبار"
-
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:378
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."
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-"يجب استخدام هذا المستوى الأمني بحذر. Ùهو يجعل نظامك أسهل ÙÙŠ الإستخدام,\n"
-"لكن يمون حساساً جداً. لذا لا يجب استخدامه لماكينة متصلة بماكينات أخرى\n"
-"أو الى الإنترنت. لا يوجد دخول بكلمة المرور."
-
-# y, c-format
-#: ../../fs.pm:1
-#, c-format
-msgid "Mounting partition %s"
-msgstr "جاري تحميل التجزئة %s"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "اسم المستخدم"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "أي تجزئة تريد استخدامها من أجل Linux4Win"
-
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "due to missing %s"
-msgstr "kdesu missing"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Test pages"
-msgstr "ØµÙØ­Ø§Øª اختبارية"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Logical volume name "
-msgstr "Logical volume name "
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:404
msgid ""
-"List of data to restore:\n"
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
"\n"
+"Please be patient."
msgstr ""
-"قائمة البيانات التي سيتم استرجاعها:\n"
-"\n"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Checking %s"
-msgstr "جاري التأكد من %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "خيارات طابعة TCP/Socket"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Card mem (DMA)"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "اقطع الإتصال بالإنترنت"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "ÙØ±Ù†Ø³Ø§"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
-msgstr "استعرض"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
-msgstr "جاري التأكد من البرامج المثبّتة..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "اسم الطابعة البعيدة Ù…Ùقود!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "هل تريد تمكين الطباعة على الطابعات ÙÙŠ الشبكة المحلية؟\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "تركيا"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Number of buttons"
-msgstr "عدد الأزرار"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "اÙيتنامية \"ص٠رقمي\" QWERTY"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Module"
-msgstr "وحدة"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:412
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
+"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-"Ø¨Ø§Ù„Ø¥Ø¶Ø§ÙØ© الى ذلك, ÙØ¥Ù† الصÙو٠التي لم يتم عملها بهذا البرنامح أو \"foomatic-"
-"configure\" لا يمكن نقلها."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
-msgstr "العتاد"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ù…ÙØ§ØªÙŠØ­ Ctrl Ùˆ Alt ÙÙŠ Ù†ÙØ³ الوقت"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "الولايات المتحدة"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "User umask"
-msgstr "User umask"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "نظام التشغيل Ø§Ù„Ø§ÙØªØ±Ø§Ø¶ÙŠØŸ"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "السويسرية (تصميم ألماني)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr "اعداد كل الرؤوس بشكل مستقل"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:425
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\"."
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
msgstr ""
-"ÙØ¶Ù„اً أدخل الطابعة التي تريد اعدادها. اعداد هذه الطابعة سيعمل آلياً. ان لم يتم "
-"اكتشا٠الطابعة بالشكل الصحيح أو اذا كنت ØªÙØ¶Ù„ تهيئة يدوية شغل \"تهيئة يدوية\"."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "خادم NTP"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Sulogin(8) in single user level"
-msgstr "Sulogin(8) ÙÙŠ مستوى المستخدم الوحيد"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Load/Save on floppy"
-msgstr "حمّل/Ø§Ø­ÙØ¸ على قرص مرن"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
-msgstr "هذه السمة ليس لها bootsplash ÙÙŠ %s !"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "ظريÙ"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "ستتم المغادرة ÙÙŠ %d ثوان"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "ÙØ¶Ù„اً اختر Ø§Ù„Ù…Ù†ÙØ° التسلسلي المرتبط به المودم لديك."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Property"
-msgstr "الخاصية"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr "إعداد LAN"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "غانا"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
-msgstr "ÙŠÙØ­ØªØ§Ø¬ الى مسار أو وحدة"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Advanced Options"
-msgstr "خيارات متقدمة"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Configuration"
-msgstr "اعرض الإعدادات"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
-msgstr "Coma bug"
+#: ../../help.pm_.c:432
+msgid ""
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:442
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"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -5033,1918 +3068,949 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:513
msgid ""
-"Graphic Card\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
"\n"
-" 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"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\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 ""
-"بطاقة الرسوم\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"
-" برنامج التثبيت يقوم باكتشا٠و تهيئة البطاقة الموجودة على نظامك\n"
-"بشكل آلي. ان لم يحصل ذلك, يمكنك اختيار البطاقة التي لديك Ø¨Ø§Ù„ÙØ¹Ù„\n"
-"من القائمة.\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
"\n"
-" ÙÙŠ حال اذا كانت هناك خادمات رسومية Ù…Ø®ØªÙ„ÙØ© لبطاقتك, مع أو بدون\n"
-"تسريع للرسوم ثلاثية الأبعاد, يمكنك ÙÙŠ هذه الحال اختيار الخادم الذي\n"
-"يناسب احتياجاتك أكثر."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "كان هناك خطأ ÙÙŠ تثبيت الحزم:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "إعداد Lexmark Inkjet"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "تراجع"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Save partition table"
-msgstr "Ø­ÙØ¸ جدول التقسيم"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "الÙنلندية"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "مقدونيا"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
+" * \"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 ""
-"المشاركة لكل مستخدم تستخدم المجموعة \"fileshare\".\n"
-"يمكنك أن تستخدم userdrake Ù„Ø¥Ø¶Ø§ÙØ© مستخدم ÙÙŠ هذه المجموعة."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "السلوÙينية"
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../help.pm_.c:547
msgid ""
-"Authorize:\n"
-"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\n"
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
"\n"
-"- only local ones if set to \"LOCAL\"\n"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
-"- none if set to \"NONE\".\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
-msgstr ""
-"تمكين الصلاحية:\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"- لكل الخدمات التي يتم التحكم بها عن طريق tcp_wrappers (انظر صقحة دليل hosts."
-"deny(5) )اذا تم التعيين الى \"ALL\",\n"
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
"\n"
-"- Ø§Ù„Ù…Ù„ÙØ§Øª المحلية Ùقط اذا تم التعيين الى \"LOCAL\"\n"
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
"\n"
-"- لا شئ اذا تم التعيين الى \"NONE\".\n"
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
"\n"
-"لتمكين صالحية الخدمات التي تريدها, استخدم مل٠/etc/hosts.allow (انظر hosts."
-"allow(5))."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr "ليبيا"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "جاري إعداد النصوص البرمجية و تثبيت البرمجيات و بدء الخدمات..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "الطابعة على Ø§Ù„Ù…Ù†ÙØ° المتوازي #%s"
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:582
msgid ""
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
-"- Burn to CD"
-msgstr ""
+"Click on the \"More\" button to be presented with the complete list of\n"
+"supported keyboards.\n"
"\n"
-"- انسخ الى قرص مدمج"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "الجدول"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "لا أعر٠كي٠أجهز %s ÙÙŠ النوع %s"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Model"
-msgstr "الطراز"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "USB printer #%s"
-msgstr "طابعة USB #%s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Stop Server"
-msgstr "أوق٠الخادم"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../help.pm_.c:598
msgid ""
+"The first step is to choose your preferred language.\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
+"Please choose your preferred language for installation and system usage.\n"
"\n"
-"اختر سمة\n"
-"Lilo Ùˆ bootsplash,\n"
-"يمكنك اختيارهم\n"
-"بشكل Ù…Ù†ÙØµÙ„"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Modem"
-msgstr "المودم"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr "ØªÙˆÙØ§Ù„Ùˆ"
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr "استخدم التحقق الآلي"
-
-#: ../../services.pm:1
-#, 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."
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
+"\n"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
-"يقوم GPM Ø¨Ø¥Ø¶Ø§ÙØ© دعم Ø§Ù„ÙØ£Ø±Ø© لتطبيقات Linux ÙÙŠ الوضع النصي مثل\n"
-"Midnight Commander. Ø§Ø¶Ø§ÙØ© الى ذلك ÙØ¥Ù†Ù‡ يسمح بعمليات القص Ùˆ اللصق ÙÙŠ سطر "
-"الأوامر,\n"
-"كما يتضمن دعم القوائم المختصرة ÙÙŠ سطر الأوامر."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr "يتم بدءه عند الإقلاع"
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
+#: ../../help.pm_.c:617
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:"
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
+"\n"
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
+"\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
msgstr ""
-"التحق Ø¨ÙØ±ÙŠÙ‚ الدعم الÙني ÙÙŠ MandrakeSoft Ùˆ مجتمع Linux على الإنترنت لمشاركة "
-"معلوماتك Ùˆ مساعدة الآخرين بأن تصبح خبيراً معتمَداً ÙÙŠ موقعنا للدعم الÙني على "
-"الإنترنت:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "No password aging for"
-msgstr "لا تقاد لكلمة المرور لـ"
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../help.pm_.c:638
msgid ""
-"The following options can be set to customize your\n"
-"system security. If you need an explanation, look at the help tooltip.\n"
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"يمكن تعيين الخيارات التالية لتخصيص\n"
-"أمن النظام. اذا كنت تحتاج الى مزيد من الشرح, الق نظرة على المساعدة.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "اعثر على الطابعات الموجودة على الماكينات البعيدة آلياً"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr "تيمور الشرقية"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
-msgstr "على الشريط"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:642
msgid ""
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
"\n"
-"- Save to Tape on device: %s"
-msgstr ""
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
"\n"
-"- Ø§Ø­ÙØ¸ الى الشريط على الجهاز: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Login name"
-msgstr "اسم الدخول"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
-msgstr "قم بتقرير Ø§Ù„Ù…Ù„ÙØ§Øª الغير مملوكة"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr "احذ٠التشكيل..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "جاري تثبيت Foomatic..."
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "يرجى تسجيل الخروج ثم استخدم Ctrl-Alt-BackSpace"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected"
-msgstr "تم اكتشاÙÙ‡"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "يجب اعادة تشغيل الشبكة. هل تريد اعادة تشغيلها ؟"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package: "
-msgstr "الجزمة: "
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr "تعذرت كتابة /etc/sysconfig/bootsplash."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "تحذير أمني!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
-msgstr "لا, لا أريد دخولا أليا"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
-msgstr "أداة الإنتقال من Windows"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr "كل اللغات"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "جاري ازالة %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s not found...\n"
-msgstr "تعذر ايجاد %s...\n"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Testing your connection..."
-msgstr "جاري اختبار الوصلة..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cache size"
-msgstr "حجم الذاكرة المخبئية"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr "كلمات المرور ممكّنة الآن, لكن الاستخدام كحاسب ÙÙŠ شبكة يزال غير Ù…ÙØ¶Ù‘Ù„."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr "قطاع البداية: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr "الكونغو برازاÙيل"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Read"
-msgstr "قراءة"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "الحزمة %s يجب أن ØªÙØ«Ø¨Ù‘ت. هل تريد تثبيتها؟"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
-msgstr "جزر سيشل"
-
-#: ../../printer/printerdrake.pm:1
-#, 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"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
"\n"
-"For your printer Printerdrake has found:\n"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
"\n"
-"%s"
-msgstr ""
-"قام Printerdrake بمقارنة اسم الطراز الناتج عن التحقق الآلي من الطابعات مع "
-"الطرازات الموجودة ÙÙŠ قاعدة بيانات الطابعات للحصول على Ø£ÙØ¶Ù„ تواÙÙ‚. هذا "
-"الإختيار قد يكون خاطئاً, خصوصاً اذا كانت الطابعة غير موجودة اطلاقاً ÙÙŠ قاعدة "
-"بيانات الطابعات. لذا تأكد اذ كان اختيارك صحيحاً و انقر \"الطراز صحيح\", أما "
-"ان لم يكن الطاز صحيحاً, انقر \"اختر الطراز يدوياً\" كي يتسنى لك اختيار طراز "
-"طابعتك يدوياً على الشاشة التالية.\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
"\n"
-"لطابعتك وجد Printerdrake:\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
"\n"
-"%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Bad password on %s"
-msgstr "كلمة مرور سيئة على %s"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:678
msgid ""
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\n"
"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
+"OS;\n"
"\n"
-"توجد طابعة غير Ù…Ø¹Ø±ÙˆÙØ© متصلة مباشرةً بنظامك"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Control key"
-msgstr "Ù…ÙØªØ§Ø­ Control الأيمن"
-
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr "أدخل قرص مرن مجهز على نظام Ù…Ù„ÙØ§Øª FAT ÙÙŠ السواقة %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "زامبيا"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr "مدير النظام (اسم الدخول أو البردي الألكتروني)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr "آسÙون, نحن ندعم اصدارات النواة 2.4"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr "الرومانية (qwertz)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
-msgstr "تحت التطوير ... انتظر ÙØ¶Ù„ا"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "مصر"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "جمهورية التشيك"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "بطاقة الصوت"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Import Fonts"
-msgstr "استيراد الخطوط"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"لديك تجزئة Microsofr Windows كبيرة.\n"
-"اقترح أن تغير حجم هذه التجزئة\n"
-"(اضغط عليها ثم اختر \"تغيير الحجم\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "أبطل Ø§Ù„Ù…Ù„ÙØ§Øª المؤقتة"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+" * if a grub or LILO boot sector is found, it will replace it with a new\n"
+"one.\n"
"\n"
-msgstr ""
-"تهانينا, انتهت تهيئة الشبكة و الإنترنت.\n"
+"if in doubt, DrakX will display a dialog with various options.\n"
"\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "غير نوع التجزئة"
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Resolution\n"
+" * \"Bootloader to use\": you have three choices:\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 ""
-"دقة العرض\n"
+" * \"GRUB\": if you prefer grub (text menu);\n"
"\n"
-" يمكنك اختيار دقة العرض Ùˆ عمق الألوان ÙÙŠ الحدود\n"
-"Ø§Ù„Ù…ØªÙˆÙØ±Ø© للعتاد. اختر تلك التي تناسب احتياجاتك (لا تزال\n"
-"تستطيع تغيير تلك الخيارات بعد التثبيت). يتم عرض عينة\n"
-"من التهيئة المختارة على الشاشة."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Network Options"
-msgstr "خيارات شبكة"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable msec hourly security check"
-msgstr "تمكين اختبارات msec الأمنية كل ساعة"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\n"
+"\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
+"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
+"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
+"\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\n"
+"\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
msgstr ""
-"اعرض السمات\n"
-"ÙÙŠ سطر الأوامر"
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr "(على %s)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:718
msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr "مكتبة تحمي من هجمات buffer overflow و format string"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr "متوسط"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "New printer name"
-msgstr "اسم الطابعة الجديدة"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
+msgstr ""
-#: ../../fs.pm:1
-#, c-format
+#: ../../help.pm_.c:732
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 )."
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\n"
+"\n"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr "غينيا الإستوائية"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup System"
-msgstr "نظام المساعد"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Build Backup"
-msgstr "ابني النسخة الإحتياطية"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:739
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr "لطباعة مل٠من سطر الأوامر استخدم الأمر \"%s <file> أو \"%s <file>\".\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "حالياً لا يوجد احتمال بديل"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwertz)"
-msgstr "الرومانية (qwertz)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Write Config"
-msgstr "اكتب الإعدادات"
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
+"\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
+"\n"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
+msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:759
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."
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"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 does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
+"\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
msgstr ""
-"مراقب routed يسمح بتحديث جدول موجه IP الآلي (IP router table) عن طريق\n"
-"بروتوكول RIP. بينما يستخدم RIP على الشبكات الصغيرة, تحتاج الشبكات الأكبر\n"
-"الى بروتوكولات توجيه معقدة أكثر."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr "كيريباتي"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech Mouse (serial, old C7 type)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Ù…ÙØ§ØªÙŠØ­ أخرى (غير drakbackup) موجودة مسبقاً"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:781
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"
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
"\n"
-"You will be presented with a list of different parameters to change to get\n"
-"an optimal graphical display: Graphic Card\n"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\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"
+"For Linux, there are a few possible options:\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"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
"\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
"\n"
-"Monitor\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
"\n"
-" 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"
+" 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"
-"Resolution\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
"\n"
-" 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"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
"\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support;\n"
"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
+msgstr ""
+
+#: ../../help.pm_.c:828
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
"\n"
-"Test\n"
+"Yaboot's main options are:\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"
+" * 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"
-"Options\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
-" 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 ""
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr "استعرض"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr "القرص المدمج"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "هل تريد أن تحاول أن تتصل بالإنترنت الآن؟"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "البلجيكية"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "هل لديك بطاقة صوت ISA؟"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
+" * 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 ""
-"لم يتم اكتشا٠أي موائم شبكة ايثرنت على نظامك.\n"
-"لا يمكنني اعداد نوع الإتصال هذا."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Windows"
-msgstr "Windows"
-#: ../../common.pm:1
-#, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "لا يمكنني غمل لقطات للشاشة قبل التجزئة"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Name"
-msgstr "اسم المستضيÙ"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/ملÙ/Ø­ÙØ¸ _باسم"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:860
msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"للوصول الى الطابعات على خادمات CUPS البعيدة ÙÙŠ شبكتك المحلية تحتاج Ùقط الى "
-"تشغيل خيار \"اعثر على الطابعات Ø§Ù„Ù…ØªÙˆÙØ±Ø© على الماكينات البعيدة\"; ستقوم "
-"خادمات CUPS بإعلام ماكينتك عن الطابعات الموجودة لديها. ÙƒØ§ÙØ© الطابعات التي تم "
-"التعر٠عليها من Ù‚ÙØ¨Ù„ ماكينتك موجودة ÙÙŠ قسم \"الطابعات البعيدة\" على Ù†Ø§ÙØ°Ø© "
-"Printerdrake الرئيسية. اذا لم تكن خادمات CUPS ÙÙŠ شبكتك المحلية, ÙØ¹Ù„يك أن "
-"تقوم بإدخال عناوين IP Ùˆ أرقام Ø§Ù„Ù…Ù†Ø§ÙØ° (اختياري) للحصول على معلومات الطابعات "
-"من الخادمات."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr "%s غير موجود ÙÙŠ قاعدة بيانات الماسحات الضوئية, هل تريد تهيئته يدوياً؟"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "توقيت ما قبل اقلاع الصورة Ø§Ù„Ø§ÙØªØ±Ø§Ø¶ÙŠØ©"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Restrict command line options"
-msgstr "تشديد خيارات سطر الأوامر"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "East Europe"
-msgstr "أوروبّا الشّرقيّة"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "استعمل المساحة Ø§Ù„ÙØ§Ø±ØºØ©"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "استخدم dhcp"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr "تنبية بريدي"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Internet configuration"
-msgstr "اعدادات الإنترنت"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr "أوزبكستان"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected %s"
-msgstr "تم التحقق من %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/تحقق آلي من ال_طابعات"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "إنتهاء"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "أظهر الحزم المختارة ألياً"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr "توجو"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "CPU flags reported by the kernel"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "حصل شئ خطأ! - هل تم تثبيت mkisofs؟"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "16 ميغابايت"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "رجاء جاول مرة أخرى"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The model is correct"
-msgstr "الطراز صحيح"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "ÙØ´Ù„ تغيير حجم FAT: %s"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr "اختيار Ù…ÙØ±Ø¯ للحزم"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr "هذا التقسيم غير قابل لتغيير الحجم"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr "المكان"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "الولايات المتّحدة الأمريكيّة (cable-hrc)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "غواتيمالا"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr "Journalised FS"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr ""
-"Arguments: (arg)\n"
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
"\n"
-"Activate/Disable ethernet cards promiscuity check."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
-msgstr "هذه الماكينة"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "حر٠سواقة DOS: %s (مجرد تخمين)\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr "البحرين"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "اختر Ø§Ù„Ù…Ù„ÙØ§Øª أو الأدلة ثم انقر 'أضÙ'"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit scsi modules"
-msgstr "SCSI اهمل وحدات ال"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "عائلة المعالح (مثلا: 6 Ù„ÙØ¦Ø© i686)"
-
-#: ../../network/netconnect.pm:1
-#, 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"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
+"\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
+"\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
+"\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\n"
+"\n"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\n"
+"\n"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\n"
+"\n"
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
msgstr ""
-"لأنك تقوم بالتثبيت عبر الشبكة, Ùقد تمت تهيئة الشبكة مسبقاً.\n"
-"انقر مواÙÙ‚ Ù„Ø­ÙØ¸ التهيئة الخاصة بك, أو انقر الغاء لإعادة تهيئة وصلات الإنترنت "
-"و الشبكة.\n"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
-msgstr "شغّل الاختبارات الأمنية اليومية"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:891
msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessable by remote machines and by which remote machines."
-msgstr ""
-"هنا يمكنك أن تختار اذا كان يجب للطابعات المتصلة بهذه الماكينة أن تكون Ù…ØªÙˆÙØ±Ø© "
-"للماكينات الأخرى على الشبكة."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr "المالطية (أمريكا)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:896
msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"تحمّل Ùˆ تزيل تحميل كل نقاط تحميل أنظمة Ù…Ù„ÙØ§Øª الشبكة (NFS)Ùˆ SMB (مدير\n"
-"الشبكة المحلية/Windows) و NCP (NetWare)."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Launch the wizard"
-msgstr "شغّل المعالج"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Tvcard"
-msgstr "بطاقة Ø§Ù„ØªÙ„ÙØ§Ø²"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "التغيير الى الوضع العادي/وضع الخبير"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr "حجم"
-
-#: ../../help.pm:1
-#, c-format
-msgid "GRUB"
-msgstr "GRUB"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr "غرينلاند"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "الخميس"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "علامة الشريط ليست العلامة الصحيحة. علامة الشريط هي %s."
-
-#: ../../standalone/drakgw:1
+#: ../../install2.pm_.c:111
#, 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?"
+"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 ""
-"تم عمل مشاركة الإتصال بالإنترنت مسبقاً.\n"
-"و هي ممكّنة حالياً.\n"
-"\n"
-"ماذا تريد أن ØªÙØ¹Ù„ØŸ"
-#: ../../standalone/drakTermServ:1
+#: ../../install2.pm_.c:167
#, c-format
-msgid "Delete All NBIs"
-msgstr "احذ٠كل NBI"
+msgid "You must also format %s"
+msgstr ""
-#: ../../help.pm:1
+#: ../../install_any.pm_.c:423
#, 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"
+"You have selected the following server(s): %s\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"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\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."
+"Do you really want to install these servers?\n"
msgstr ""
-#: ../../security/help.pm:1
+#: ../../install_any.pm_.c:441
#, c-format
msgid ""
-"if set, send the mail report to this email address else send it to root."
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-"if set, send the mail report to this email address else send it to root."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "أي اعداد لـXFree تريد؟"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "More"
-msgstr "المزيد"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
+msgstr "NIS لا تسطيع ا ستعمال هذ ا البرنامج مع"
-#: ../../standalone/drakbackup:1
+#: ../../install_any.pm_.c:879
#, c-format
-msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
+msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
-#: ../../security/level.pm:1
-#, 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."
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
msgstr ""
-"بهذا المستوى الأمني, يكون استخدام هذا النظام كخادم يصبح ممكناً.\n"
-"المستوى الأمني عال٠بشكل كاÙÙŠ لاستخدام هذا النظام كخادم يستطيع قبول\n"
-"اتصالات من عملاء كثيرين. ملحوظة: اذا كانت ماكينتك مجرد عميل على الإنترنت "
-"ÙØ§Ù„أجدر بك اختيار مستوى أمني أقل."
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Server Name"
-msgstr "اسم الخادم:"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Password"
-msgstr "كلمة المرور للحساب"
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../install_any.pm_.c:895
msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-#: ../../any.pm:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, 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 "Error reading file %s"
msgstr ""
-"لقد قررت تثبيت محمّل الإقلاع على تجزئة.\n"
-"هذا يعني أنه لديك محمّل إقلاع على القرص الذي تستخدمه للإقلاع (مثال: System "
-"Commander).\n"
-"\n"
-"على أي قرص تقوم بالإقلاع؟"
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
+#: ../../install_any.pm_.c:1040
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."
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
-"تحذير!\n"
-"\n"
-"DrakX سيقوم الآن بتغيير حجم تجزئة Windows. كن حذراً:\n"
-"هذه العملية خطرة. ÙØ¥Ø°Ø§ لم تكن ÙØ¹Ù„ت ذلك,\n"
-"يجب عليك أولاً الخروج من التثبيت, ثم شغّل scandisk\n"
-"ÙÙŠ Windows (Ùˆ اختيارياً defrag), ثم أعد\n"
-"التثبيت. يجب عليك كذلك عمل نسخة احتياطية من بياناتك.\n"
-"عندما تكون متأكداً, انقر مواÙÙ‚."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tajik keyboard"
-msgstr "لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ الطاجيكية"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../install_interactive.pm_.c:21
#, 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"
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"يمكنك نقل تهيئة الطابعة التي تم عملها للـSpooler %s الى %s, الـspooler "
-"الحالي. كل بيانات التهيئة (اسم الطابعة, الوصÙ, المكان, نوع الوصلة, Ùˆ خيارات "
-"الإعداد Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠ) يتم أخذها, لكن لن يتم نقل الوظائÙ.\n"
-"لا يمكن نقل كل الصÙو٠للأسباب التالية:\n"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Font List"
-msgstr "قائمة الخطوط"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:56
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."
+"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 ""
-"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."
-#: ../../install_steps_interactive.pm:1
-#, 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"
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
msgstr ""
-"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"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Select file"
-msgstr "اختر ملÙ"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:62
msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr "اختر الشبكة أو المستضي٠التي يجب أن تكون الطابعات المحلية Ù…ØªÙˆÙØ±Ø© له:"
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr "استمرّ بأيّة حال"
-#: ../../printer/printerdrake.pm:1
-#, 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"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
-"يمكنك استخدام هذه الأوامر أيضاً ÙÙŠ حقل \"أمر الطباعة\" ÙÙŠ مربعات حوار الطباعة "
-"ÙÙŠ العديد من التطبيقات, لكن لا تقم هنا بإعطاء اسم المل٠لأن المل٠المطلوب "
-"طباعته يتم اعطاؤه من قبل التطبيق.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "اليابان"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print option list"
-msgstr "قائمة خيارات الطابعة"
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "تم عمل التغيير, Ùˆ لكن ليتم ØªÙØ¹ÙŠÙ„Ù‡ يجب عليك الخروج"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
+msgstr "استعمل مكانا حرا"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
-msgstr "البلد / المنطقة"
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search servers"
-msgstr "ابحث ÙÙŠ أجهزة الخادم"
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "اسم ص٠NCP Ù…Ùقود!"
+#: ../../install_interactive.pm_.c:102
+msgid "There is no existing partition to use"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr "تحذير, تم ايجاد اتصال إنترنت آخر, ربما يكون يستخدم شبكتك"
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "القرص المدمج المسمى \"%s\""
+#: ../../install_interactive.pm_.c:112
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
msgstr ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr "اجعل جهازك خادماً يعتمد عليه"
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr "تحقق من وجود كلمة مرور ÙØ§Ø±ØºØ© ÙÙŠ /etc/shadow."
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid " (driver %s)"
-msgstr " (driver %s)"
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
-"Loopback file(s):\n"
-" %s\n"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-"ملÙ(ات) Loopback:\n"
-" %s\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr "لا أعر٠"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", مستضي٠TCP/IP \"%s\", Ø§Ù„Ù…Ù†ÙØ° \"%s\""
-
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../install_interactive.pm_.c:137
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?"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-"أنت على وشك تهيئة قرص للتثبيت الآلي. هذه الميزة خطرة بعض الشئ و يجب "
-"استخدامها بحذر.\n"
-"\n"
-"بهذه الميزة يمكنك اعادة عمل التثبيت الذي قمت به على هذا الكمبيوتر, مع تنبيهك "
-"لبعض الخطوات التي يجب عليك Ùيها تغيير القيم, حتى تتمكن من تغييرها.\n"
-"\n"
-"لأقصى حد من الأمان, ستتم تجزئة و تجهيز الأقراص الصلبة بشكل آلي, مثلما اخترت "
-"أثناء التثبيت على هذا الكمبيوتر.\n"
-"\n"
-"هل تريد المتابعة؟"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Telugu"
-msgstr "التيلوغو"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:138
msgid ""
+"WARNING!\n"
"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-"\n"
-"\n"
-"بطاقتك تستخدم المشغل %s\"%s\" حالياً (المشغل الحالي لبطاقتك هو \"%s\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Uninstall"
-msgstr "ما بعد ازالة التثبيت"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connecting to Internet "
-msgstr "جاري الإتصال بالإنترنت"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid level"
-msgstr "مستوى هوية المعالج"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr " على خادم Novell \"%s\", الطابعة \"%s\""
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "المنغولية (سيريلية)"
+msgid "partition %s"
+msgstr ""
-#: ../../standalone/drakfloppy:1
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid "Add a module"
-msgstr "Ø§Ø¶Ø§ÙØ© وحدة"
+msgid "FAT resizing failed: %s"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr "التشكيل المطلوب حذÙÙ‡:"
+#: ../../install_interactive.pm_.c:171
+msgid ""
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Local measure"
-msgstr "اجراء محلي"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
-msgstr "تحذير: عنوان الـ IP %s عادة ما يكون محÙوظاً !"
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "busmouse"
-msgstr "busmouse"
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../install_interactive.pm_.c:183
#, 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 "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
-msgstr "اسم المدخول للحساب"
+#: ../../install_interactive.pm_.c:191
+msgid "Custom disk partitioning"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
-msgstr "Fdiv bug"
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-"أداة تهيئة DrakFirewall\n"
-"\n"
-"تأكد من أنك قمت بتهيئة اتصالك بالشبكة/الإنترنت باستخدام\n"
-"drakconnect قبل المتابعة."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr "اقبل broadcasted icmp echo"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr "أوروغواي"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Benin"
-msgstr "بنين"
+#: ../../install_interactive.pm_.c:227
+msgid "You don't have enough free space on your Windows partition"
+msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "على خادم SMB/Windows \"%s\", المشاركة \"%s\""
+#: ../../install_interactive.pm_.c:243
+msgid "I can't find any room for installing"
+msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path selection"
-msgstr "إختيار المسار"
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid "Name/IP address of host:"
-msgstr "عنوان IP/اسم المستضيÙ:"
+msgid "Partitioning failed: %s"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "الشاشة: %s\n"
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Custom & system settings"
-msgstr "اعدادات مخصصة"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr ""
-#: ../../partition_table/raw.pm:1
-#, c-format
+#: ../../install_steps.pm_.c:76
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."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"هناك شئ سيئ يحصل للقرص. \n"
-"لقد ÙØ´Ù„ اختبار للتأكد من صحة البيانات. \n"
-"هذا يعني أن كتابة أي شئ على هذا القرص سينتهي ببيانات عشوائية Ùˆ ÙØ§Ø³Ø¯Ø©."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "اسم مستضي٠الطابعة أو الـ IP Ù…Ùقود!"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "رجاء اختر كل المستخدمين الذين تريد تضمينهم ÙÙŠ النسخ الإحتياطي."
+msgid "Duplicate mount point %s"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps.pm_.c:380
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+"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 ""
-"الماسح الضوئي %s يجب اعداده عن طريق PrinterDrake.\n"
-"يمكن تشغيل PrinterDrake من مركز تحكم Mandrake ÙÙŠ قسم العتاد."
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Key isn't writable"
-msgstr "XawTV غير مثبت!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bangladesh"
-msgstr "بنغلاديش"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
-msgstr "اليابان (cable)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Initial tests"
-msgstr "الإختبارات الأولية"
-#: ../../network/isdn.pm:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "Continue"
-msgstr "تابع"
+msgid "Welcome to %s"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom Restore"
-msgstr "استعادة مخصصة"
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "Saturday"
-msgstr "السبت"
+msgid "Entering step `%s'\n"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:146
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."
+"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 ""
-"\"%s\": اذا تم اكتشا٠بطاقة صوت على نظامك, سيتم عرضها\n"
-"هنا. اذا لاحظت أن بطاقة الصوت المعروضة هنا ليست تلك الموجودة\n"
-"ÙØ¹Ù„اً على نظامك, يمكنك النقر على الزر Ùˆ اختيار مشغل\n"
-"آخر."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the root umask."
-msgstr "عين umask الخاص بالمستخدم الجذر"
-
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "خطأ ÙÙŠ قراءة المل٠%s"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr "Script-based"
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "PLL setting:"
-msgstr "اعداد PLL:"
+#: ../../install_steps_gtk.pm_.c:160
+msgid "Please choose one of the following classes of installation:"
+msgstr ""
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "لديك تجزئة FAT تم تحميلها على /boot/efi"
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
-msgstr " على "
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
+msgstr ""
-#: ../../diskdrake/dav.pm:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid "The URL must begin with http:// or https://"
-msgstr "العنوان يجب أن يبدأ بـ http:// أو https://"
+msgid "Total size: %d / %d MB"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
msgstr ""
-"يمكنك تحديد الـURI مباشرة للوصول الى الطابعة. الـURI يجب أن يتواÙÙ‚ مع "
-"متطلبات CUPS أو Foomatic. لاحط أنه ليست كل أنواع الـURI مدعومة من "
-"الـspoolers."
-#: ../../any.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "نظام آخر (SunOS...)"
+msgid "Name: %s\n"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid "Install/Upgrade"
-msgstr "تثبيت/ترقية"
+msgid "Version: %s\n"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid "%d packages"
-msgstr "%d حزم"
+msgid "Size: %d KB\n"
+msgstr ""
-#: ../../crypto.pm:1 ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
-msgid "Costa Rica"
-msgstr "كوستاريكا"
+msgid "Importance: %s\n"
+msgstr ""
-#: ../../standalone.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:360
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"
+"You can't select this package as there is not enough space left to install it"
msgstr ""
-"[--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"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain Authentication Required"
-msgstr "Domain Authentication Required"
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
+msgstr ""
-#: ../../security/level.pm:1
-#, c-format
-msgid "Use libsafe for servers"
-msgstr "إستخدم libsafe للملقمات"
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Icelandic"
-msgstr "الآيسلاندية"
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
+msgstr ""
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:395
msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
-"ÙØ¶Ù„اً أدخل الحجم الأقصى\n"
-" المسموح به لـDrakbackup (ميغابايت)"
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Circular mounts %s\n"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo/grub mode"
-msgstr "وضع Lilo/grub"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "مارتينيك"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "HardDrive / NFS"
+#: ../../install_steps_gtk.pm_.c:407
+msgid "Load/Save on floppy"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Old user list:\n"
-msgstr "قائمة بالمستخدمين المتقادمين:\n"
+#: ../../install_steps_gtk.pm_.c:408
+msgid "Updating package selection"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
+#: ../../install_steps_gtk.pm_.c:413
+msgid "Minimal install"
msgstr ""
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "a number"
-msgstr "رقم"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "السويدية"
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr ""
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "أي مشغل %s يجب أن استخدمه؟"
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr "سو٠تستلم تنبيهاً إذا كانت أحد الخدمات المختارة غير عاملة."
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Weekday"
-msgstr "يوم الأسبوع"
+#: ../../install_steps_gtk.pm_.c:469
+msgid "Please wait, preparing installation..."
+msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid "Filesystem types:"
-msgstr "أنواع أنظمة Ø§Ù„Ù…Ù„ÙØ§Øª:"
+msgid "%d packages"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "Northern Mariana Islands"
-msgstr "جزر ماريانا الشمالية"
+msgid "Installing package %s"
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", جهاز متعدد الوظائ٠على HP JetDirect"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "قبول"
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "لا شئ"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
+"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 ""
-"لإسم التشكيل الذي ستعمله (التشكيل الجديد يتم عمله كنسخة من التشكيل الحالي) :"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Floppy"
-msgstr "القرص المرن"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "Ghostscript referencing"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Bootloader"
-msgstr "محمّل الإقلاع"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "نقل"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Bootloader to use"
-msgstr "محمّل الإقلاع Ø§Ù„Ù…ÙØ³ØªØ®Ø¯Ù…"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "مستضي٠خادم SMB"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Name Servers:"
-msgstr "خادمات الإسم:"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Minute"
-msgstr "دقيقة"
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
+msgstr ""
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:10
msgid ""
"\n"
"Warning\n"
@@ -6975,5356 +4041,3180 @@ msgid ""
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
msgstr ""
-"\n"
-"تحذير\n"
-"\n"
-"ÙØ¶Ù„اً اقرأ الشروط أدناه. اذا كنت لا تواÙÙ‚ على أي\n"
-"جزء, لن يسمح لك بتثبيت وسيط القرص المدمج التالي. انقر 'Ø±ÙØ¶' \n"
-"لمتابعة التثبيت بدون هذه الوسائط.\n"
-"\n"
-"\n"
-"بعض المكونات الموجودة ÙÙŠ وسيط القرص المدمج التالي غير محكومة\n"
-"بموجب ترخبص GPL أو Ø§Ù„Ø§ØªÙØ§Ù‚يات المماثلة. كل مكون من تلك محكوم\n"
-"بموجب بنود و شروط الترخيص الخاص به تحديداً. \n"
-"ÙØ¶Ù„اً اقرأ باهتمام Ùˆ أن تستجيب لهذه التراخيص قبل أن \n"
-"تستخدم أو تعيد توزيع هذه المكونات. \n"
-"مثل هذه التراخيص بشكل عام قد تمنع نقل أو نسخ (باستثناء النسخ الاحتياطي)\n"
-"أو اعادة توزيع أو ممارسة الهندسة العكسية أو ÙÙƒ تركيب أو ÙÙƒ تجميع أو تعديل\n"
-"المكون.\n"
-"أي انتهاك Ù„Ù„Ø§ØªÙØ§Ù‚ية سيتسبب ÙÙŠ انهاء حقوقك تحت الترخيص\n"
-"المحدد بشكل Ùوري. الا اذا كان الترخيص يعطيك مثل هذه الحقوق.\n"
-"عادة لا يسمح لك بتثبيت هذه البرامج على أكثر من نظام واحد\n"
-"أو تعديله لكي يتم استخدامه على شبكة. ÙÙŠ حال شكك ÙØ¶Ù„اً \n"
-"اتصل بشكل مباشر مع موزع أو مؤل٠هذا المكون.\n"
-"النقل الى طر٠ثالث أو نسخ هذه المكونات بما Ùيه \n"
-"وثائق المساعدة ممنوع عادةً.\n"
-"\n"
-"\n"
-"جميع الحقوق الخاصة بالمكونات الموجودة ÙÙŠ وسيط القرص \n"
-"المدمج التالي مملوكة لأصحابها و محمية بموجب قوانين الملكية \n"
-"الÙكرية المنطبقة على البرمجيات.\n"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Expert mode"
-msgstr "وضعية الخبير"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr "احذ٠هذه الطابعة من Star Office/OpenOffice.org/GIMP"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
msgstr ""
-"Linux Virtual Server, يستخدم لعمل خادم عالي الأداء\n"
-"و يعتمد عليه."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr "ميكرونيزيا"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 بليون لون (32 بت)"
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
-msgstr "الترخيص"
+#: ../../install_steps_interactive.pm_.c:85
+msgid "Do you really want to leave the installation?"
+msgstr "هل تريد ÙØ¹Ù„ا مغادرة التثبيت؟"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "قد يستغرق هذا بعض الوقت لتوليد Ø§Ù„Ù…ÙØ§ØªÙŠØ­."
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
+msgstr ""
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
+"Introduction\n"
"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
-"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"
+"1. License Agreement\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"
+"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"
-"<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"
+"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"
-"<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"
+"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"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
"\n"
+"3. The GPL License and Related Licenses\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"
+"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"
-"<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"
+"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 ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr "التحقق الآلي من الطابعات (محلية, TCP/Socket, و SMB)"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr "Sagem (using pppoa) usb"
-
-#: ../../install_any.pm:1
-#, 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"
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
msgstr ""
-"لقد ظهر خطأ - لم يتم ايجاد أجهزة صالحة يمكن انشاء أنظمة Ù…Ù„ÙØ§Øª جديدة. تأكد من "
-"العتاد الخاص بك Ù„Ù…Ø¹Ø±ÙØ© شبب هذه المشكلة"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "بدء نظام الطباعة عند الإقلاع"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "هل تريد بدء الوصلة عند الإقلاع؟"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr "هوية المعالج"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr "حل مشاكل الصوت"
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "البولندية (qwerty layout)"
+#: ../../install_steps_interactive.pm_.c:218
+msgid "Please choose your keyboard layout."
+msgstr "رجاء, اختر لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­."
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Add Printer"
-msgstr "طابعة"
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
msgstr ""
-"\n"
-"نشاطات Drakbackup عن طريق القرص المدمج:\n"
-"\n"
-#: ../../printer/printerdrake.pm:1
-#, 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?"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
msgstr ""
-"أنت على وشك تثبيت نظام الطباعة %s على نظام يعمل على المستوى الأمني %s.\n"
-"نظام الطباعة يشغّل مراقب (عملية خلÙية) يقوم بانتظار وظائ٠الطباعة Ùˆ يتعامل "
-"معها. هذا المراقب يمكن الوصول اليه عن من Ù‚ÙØ¨Ù„ الماكينات البعيدة على الشبكة Ùˆ "
-"لذا Ùقد يمكن أن يكون نقطة مبدئية لهجمات المخترقين. لهذا يتم اختيار القليل من "
-"المراقبات لتشغيلها Ø§ÙØªØ±Ø§Ø¶ÙŠØ§Ù‹ على هذا المستوى الأمني.\n"
-"\n"
-"هل تريد ÙØ¹Ù„اً تهيئة الطباعة على هذه الماكينة؟"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "المستضي٠\"%s\", Ø§Ù„Ù…Ù†ÙØ° %s"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "هذه التجزئة لا يمكن استخدامها لـloopback"
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr "المل٠موجود مسبقا, هل تريد استخدامه؟"
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Expert"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
-msgstr "Ù…ÙØ³ØªÙ‚بل: "
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade"
+msgstr "ترقية"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr "Ù…ÙØªØ§Ø­ Alt الأيمن"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade packages only"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "قائمة المشغلات البديلة لبطاقة الصوت"
+#: ../../install_steps_interactive.pm_.c:282
+msgid "Please choose the type of your mouse."
+msgstr "رجاء اختر لغة نوع Ø§Ù„ÙØ£Ø±Ø©."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Gateway"
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr "تونجو"
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "تونس"
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing"
-msgstr "مشاركة الماسحات الضوئية"
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile: "
-msgstr "التشكيل:"
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr "انقر على جهاز ÙÙŠ السلسلة اليسرى لعرض معلوماته هنا."
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr "اسمح/امنع الدخول التلقائي"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
-msgstr "XawTV غير مثبت!"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "لا ØªÙØ¶Ù…ّن Ø§Ù„Ù…Ù„ÙØ§Øª المهمة (passws, group,fstab)"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "اسم الجهاز القديم الساكن المستخدم ÙÙŠ حزمة dev"
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
-msgstr "تمكين تسجيل حزم IPv4 الغريبة"
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
-msgstr "هذه العلامة مستخدمة مسبقا"
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:386
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."
+"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 ""
-"\n"
-"أهلاً بكم ÙÙŠ معالج اعداد الطابعات\n"
-"هذا المعالج سيساعدك على تثبيت الطابعة/الطابعات الموصولة بهذا الكمبيوتر أو "
-"الموصولة مباشرةً بالشبكة.\n"
-"\n"
-"اذا كانت لديك طابعة/طابعات موصولة بهذه الماكينة, ÙØ¶Ù„اً قم بتوصيلها الى هذا "
-"الكمبيوتر و قم بتشغيلها كي يتم التحقق منها/منهم آلياً. أيضاً يجب أن تكون طابعة/"
-"طابعات الشبكة موصولة و مشغّلة.\n"
-"\n"
-"لاحظ أن التحقق الآلي من الطابعات على الشبكة قد يستغرق وقتاً أطول من التحقق "
-"الآلي من الطابعات الموصولة بهذه الماكينة Ùقط. لذا قم بتعطيل التحقق الآلي من "
-"طابعات الشبكة اذا لم تكن تحتاج الى هذه الميزة.\n"
-"\n"
-" انقر \"التالي\" عندما تكون مستعداً, و على \"الغاء\" اذا لم تكن تريد اعداد "
-"الطابعة/الطابعات الآن."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
+#: ../../install_steps_interactive.pm_.c:395
+msgid "No root partition found to perform an upgrade"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "بعد تهيئة التقسيم %s, ÙØ¥Ù† كل البيانات الموجودة على التجزئة ستÙقد"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection Time: "
-msgstr "وقت الإتصال:"
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr ""
-#: ../../standalone/livedrake:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-"ÙØ¶Ù„ا أدخل قرص التثبيت ÙÙŠ سواقتك Ùˆ اضغط مواÙÙ‚ عندما تنتهي.\n"
-"إذا لم يكن قرص التثبيت لديك اضغط الغاء للإمتناع عن التحديث الحي."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use group id for execution"
-msgstr "استخدم group id للتنÙيذ"
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "اختر المستخدم Ø§Ù„Ø§ÙØªØ±Ø§Ø¶ÙŠ:"
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "الغابون"
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
+msgid "Creating and formatting file %s"
msgstr ""
-"\n"
-"لا تحتاج الى تهيئة الطابعات على خادمات CUPS البعيدة; هذه الكابعات يمكن "
-"اكتشلÙها آلياً."
-#: ../../any.pm:1
+#: ../../install_steps_interactive.pm_.c:470
#, 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."
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-"يدعم Mandrake Linux العديد من اللغات. اختر\n"
-"اللغات التي تريد تثبيتها. ستكون هذه Ù…ØªÙˆÙØ±Ø©Ù‹ عند\n"
-"اكتمال التثبيت و اعداة تشغيل النظام."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-"ÙØ¶Ù„اً أدخل الدليل (أو الوحدة) التي سيتم Ùيها وضع النسخة الإحتياطية على هذا "
-"المستضيÙ."
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain"
-msgstr "النطاق"
-#: ../../any.pm:1
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "حجم الذاكرة الدقيق عند الحاجة )تم ايجاد %d ميغابايت("
-
-#: ../../help.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:479
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
-"محمّلات اقلاع Linux هي LILO Ùˆ grub. ÙÙŠ العادة, هذه المرحلة\n"
-"آلية بالكامل. سيقوم DrakX بتحيل قطاع التحميل الخاص بالقرص\n"
-"و سيتصر٠على حسب ما يجد هناك:\n"
-"\n"
-" * اذا تم ايجاد قطاع تحميل Windows ÙØ³ÙŠÙ‚وم برنامج التثبيت\n"
-"بتبديله بقطاع تحميل LILO/grub. بهذه الطريقة ستستطيع تحميل Linux أو\n"
-"أي نظام تشغيل آخر.\n"
-"\n"
-" * اذا تم ايجاد قطع تحميل LILO أو grub, سيتم ابداله بقطاع\n"
-"جديد.\n"
-"\n"
-"اذا لم يمكن التقرير ÙØ³ÙŠØ³Ø£Ù„Ùƒ DrakX عن المكان الذي تريد\n"
-"وضع محمّل الإقلاع Ùيه."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "DNS الثاني Ù„Ù„Ù…ÙˆÙØ± (اختياري)"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "جهاز الإقلاع"
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "أي تجزئة تريد تغيير حجمها؟"
+#: ../../install_steps_interactive.pm_.c:483
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "اختر الحزم التي Ø³ØªÙØ«Ø¨Ù‘َت"
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr "جزر الولايات المتحدة"
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr ""
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:505
#, c-format
-msgid "Djibouti"
-msgstr "جيبوتي"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "أداة لمراقبة سجلات نظامك"
+#: ../../install_steps_interactive.pm_.c:541
+msgid ""
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected on port %s"
-msgstr "تم اكتشاÙÙ‡ على Ø§Ù„Ù…Ù†ÙØ° %s"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Load from floppy"
+msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD"
-msgstr "LPD"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "بطاقة الشاشة: %s\n"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Loading from floppy"
+msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/Set as _Default"
-msgstr " (Ø§ÙØªØ±Ø§Ø¶ÙŠ)"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Package selection"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
+#: ../../install_steps_interactive.pm_.c:552
+msgid "Insert a floppy containing package selection"
msgstr ""
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
+msgstr ""
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Series"
+#: ../../install_steps_interactive.pm_.c:649
+msgid "Type of install"
+msgstr ""
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "التجزئات الممتدة غير مدعومة على هذه البيئة"
+#: ../../install_steps_interactive.pm_.c:650
+msgid ""
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Splash selection"
-msgstr "اختيار الشاشات"
+#: ../../install_steps_interactive.pm_.c:653
+msgid "With X"
+msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "تهيئة ISDN"
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "high"
-msgstr "Ù…Ø±ØªÙØ¹"
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "مشاركة الإتصال بالإنترنت"
+#: ../../install_steps_interactive.pm_.c:741
+msgid ""
+"If you have all the CDs in the list below, click Ok.\n"
+"If you have none of those CDs, click Cancel.\n"
+"If only some CDs are missing, unselect them, then click Ok."
+msgstr ""
-#: ../../standalone/logdrake:1
+#: ../../install_steps_interactive.pm_.c:746
#, c-format
-msgid "Choose file"
-msgstr "احتيار ملÙ"
+msgid "Cd-Rom labeled \"%s\""
+msgstr ""
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Summary: "
-msgstr "ملخص"
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr ""
-#: ../../network/shorewall.pm:1
+#: ../../install_steps_interactive.pm_.c:776
#, c-format
msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
+"Installing package %s\n"
+"%d%%"
msgstr ""
-"تحذير! تم إيجاد إعداد جدار ناري موجود مسبقا. ربما تحتاج الى اصلاح يدوي بعد "
-"التثبيت."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Printing/Photo Card Access on \"%s\""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:828
#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+msgid "Please insert the Boot floppy used in drive %s"
msgstr ""
-"هل تريد تمكين الطباعة على الطابعات المذكورة أعلاه أم على الطابعات ÙÙŠ الشبكة "
-"المحلية؟\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:834
#, c-format
-msgid "Printer default settings"
-msgstr "اعدادات الطابعة Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠØ©"
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Generic PS2 Wheel Mouse"
+#: ../../install_steps_interactive.pm_.c:861
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates ?"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:876
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)"
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-"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)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "جاري ازالة الطابعة القديمة \"%s\" ..."
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Select a device !"
-msgstr "اختر جهازاً!"
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected server"
-msgstr "احذ٠الخادم المختار"
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using dhcp) usb"
-msgstr "Sagem (using dhcp) usb"
+#: ../../install_steps_interactive.pm_.c:923
+msgid "Hardware clock set to GMT"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "French Southern Territories"
-msgstr "مناطق جنوب ÙØ±Ù†Ø³Ø§"
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "اسم مصنّع المعالج"
+#: ../../install_steps_interactive.pm_.c:931
+msgid "NTP Server"
+msgstr "خادم NTP"
-#: ../../standalone/drakTermServ:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr "كل البيانات على هذه التجزئة يجب Ø­ÙØ¸Ù‡Ø§ احتياطيا"
+#: ../../install_steps_interactive.pm_.c:966
+msgid "No printer"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "جاري تثبيت الحزمة %s"
+#: ../../install_steps_interactive.pm_.c:982
+msgid "Do you have an ISA sound card?"
+msgstr "بطاقة الصّوت ISA هل عندك عند"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr "جاري التأكد من الجهاز و تهيئة HPOJ..."
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr "لكي تمتلك تجزئات أكثر, يرجى الغاء تجزئة كي تتمكن من عمل تجزئة ممتدة"
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
msgstr ""
-"تم تهيئة الطابعة آلياً لكي تعطيك القدرة على الوصول الى سواقات بطاقات الصور "
-"على جهازك الشخصي. يمكنك الآن الوصول الى بطاقات الصور باستخدام البرنامج "
-"الرسومي \"MToolsFM\" (القائمة: \"تطبيقات\" -> \"أدوات Ø§Ù„Ù…Ù„ÙØ§Øª\" -> \"مدير "
-"Ù…Ù„ÙØ§Øª MTools\") أو باستخدام أدوات \"mtools\" ÙÙŠ سطر الأوامر (أدخل \"man "
-"mtools\" ÙÙŠ سطر الأوامر لمزيد من المعلومات). يمكنك ايجاد نظام Ù…Ù„ÙØ§Øª البطاقة "
-"تحت حر٠السواقة \"p:\", أو حرو٠السواقات الأخرى اذا كانت لديك أكثر من طابعة "
-"HP مع سواقات بطاقات صور. ÙÙŠ \"MToolsFM\" يمكنك التحويل بين حرو٠السواقات على "
-"الحقل الموجود ÙÙŠ الركن الأيسر الى الأعلى ÙÙŠ قوائم Ø§Ù„Ù…Ù„ÙØ§Øª."
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "اختر الحزم التي Ø³ØªÙØ«Ø¨Ù‘َت"
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
+msgstr "Ø§Ù„ÙØ£Ø±Ø©"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "كل التجزئات و بياناتها ستضيع من على السواقة %s"
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr "لا يوجد ÙÙŠ نظامك مساحة متبقة تكÙÙŠ للتثبيت أو الترقية (%d > %d)"
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "طابعة"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
msgstr ""
-"كل طابعة تحتاج الى اسم (مثال \"printer\"). حقول الوص٠و المكان ليس من "
-"الضروري ملؤها. انها مجرد ملاحظات للمستخدمين."
-#: ../../help.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
msgstr ""
-"\"%s\": النقر على \"%s\" Ø³ÙŠÙØªØ­ معالج تهيئة\n"
-"الطابعة. اقرأ Ø§Ù„ÙØ¶Ù„ المختص ÙÙŠ ``دليل المبتدئ''\n"
-"لكزيد من المعلومات عن كيÙية اعداد طابعة جديدة. الواجهة\n"
-"هناك مماثلة لتلك المستخدمة أثناء التثبيت."
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr "بوتان"
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "واجهة الشبكة "
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "ÙØ´Ù„ قطع الإتصال بالإنترنت"
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+msgid "NIS"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
-msgstr "جاري قراءة بيانات الطابعة..."
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+#, fuzzy
+msgid "Windows Domain"
+msgstr "احصل على خطوط Windows"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ الكورية"
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+msgid "Local files"
+msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Not connected"
-msgstr "غير متصل"
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "إعدادات الإتصال بالإنترنت"
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "Greek"
-msgstr "اليونانية"
+msgid "This password is too short (it must be at least %d characters long)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr "سانت كيتس Ùˆ نيÙيس"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "التحقق"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Generic 3 Button Mouse"
+#: ../../install_steps_interactive.pm_.c:1088
+msgid "Authentication LDAP"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
-msgstr "تمكين اقلاع OF؟"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "لا يمكنك استخدام JFS للتجزئات أصغر من 16 ميغابايت"
+#: ../../install_steps_interactive.pm_.c:1090
+msgid "LDAP Server"
+msgstr "خادم LDAP"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "امسح الوسيط القابل لإعادة الكتابة (الجلسة الأولى)"
+#: ../../install_steps_interactive.pm_.c:1096
+msgid "Authentication NIS"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "انعاش الشاشة الرأسي: %s\n"
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "NIS Domain"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "نقطة التحميل"
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr " الخادم NIS"
-#: ../../Xconfig/test.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1104
msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
+"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 ""
-"ظهر خطأ:\n"
-"%s\n"
-"حاول تغيير بعض المعاملات"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr ", مستضي٠TCP/IP \"%s\", Ø§Ù„Ù…Ù†ÙØ° \"%s\""
+#: ../../install_steps_interactive.pm_.c:1106
+#, fuzzy
+msgid "Authentication Windows Domain"
+msgstr "التحقق"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "User :"
-msgstr "المستخدم :"
+#: ../../install_steps_interactive.pm_.c:1108
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Domain name"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore system"
-msgstr "استعد النّظام"
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1144
msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr "توحد ماكينات يجب أن تكون الماسحات الضوئية الموصولة محلياً Ù…ØªÙˆÙØ±Ø© لها:"
+"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\"."
+msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
-msgstr "DHCP end ip"
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Another one"
-msgstr "آخر"
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "المدخل المرن الثّاني"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "تخطي"
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:1167
#, c-format
-msgid "Colombia"
-msgstr "كولومبيا"
+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"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1173
msgid ""
-"Current configuration of `%s':\n"
"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-"الإعداد الحالي لـ`%s':\n"
"\n"
-"الشبكة: %s\n"
-"عنوان الـIP: %s\n"
-"ØµÙØ© الـIP: %s\n"
-"المشغل: %s"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n Play"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr "ريونيون"
+"(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)."
+msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "ØªÙØ§ØµÙŠÙ„"
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "آس٠, لا مدخل مرن متاح"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "لأسباب أمنية, سيتم قطع الإتصال الآن."
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../install_steps_interactive.pm_.c:1189
#, c-format
-msgid "Synchronization tool"
-msgstr "DrakSync"
+msgid "Insert a floppy in %s"
+msgstr "أدخل قرص مرن بالدّاخل %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking your system..."
-msgstr "جاري التأكد من نظامك..."
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr " إنشاء قرص الا قلا ع "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print"
-msgstr "إطبع"
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr " bootloader إعداد "
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1210
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+"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 to boot your machine"
msgstr ""
-"أدخل الشريط بالعلامة %s\n"
-" ÙÙŠ جهاز الشريط %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "منغوليا"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
-msgstr "محمل\n"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configure CUPS"
-msgstr "تهيئة X"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Interface"
-msgstr "الواجهة الرسومية"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Users"
-msgstr "أعد المستخدمين "
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Ù…ÙØªØ§Ø­ التشÙير لـ %s"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Do you want to recover your system?"
-msgstr "هل تريد استخدام aboot؟"
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
+msgstr " aboot هل تريد أن تستخدم "
-#: ../../services.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1219
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."
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
-"يقوم portmapper بإدارة اتصالات RPC, و التي تستخدم عن طريق\n"
-"بروتوكولات مثل NFS و NIS. خادم portmap من اللازم أن يعمل على الأجهزة\n"
-"التي تعمل كخادمات تستخدم البروتوكولات التي تستÙيد من آلية عمل RPC."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detected hardware"
-msgstr "العتاد المÙكتشÙ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr "موريشيوس"
+#: ../../install_steps_interactive.pm_.c:1226
+msgid "Installing bootloader"
+msgstr "bootloader التّركيب "
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
-msgstr "ميانمار (البورمية)"
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr ""
-#: ../../fs.pm:1
+#: ../../install_steps_interactive.pm_.c:1240
#, c-format
-msgid "Enabling swap partition %s"
-msgstr "جاري تمكين تجزئة التبديل %s"
+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 ""
-#: ../../install_interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgid "Insert a blank floppy in drive %s"
msgstr ""
-"لا توجد تجزئة FAT لاستخدامها كـ loopback (أو لا توجد مساحة كاÙية متبقية)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr "الأرمينية (قديم)"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1289
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."
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
msgstr ""
-"الطابعة المسماة \"%s\" موجودة مسبقا تحت %s. \n"
-"انقر \"انقل\" للكتابة Ùوقه.\n"
-"يمكنك كذلك كتابة اسم جديد أو تحطي هذه الطابعة."
-#: ../advertising/12-mdkexpert.pl:1
+#: ../../install_steps_interactive.pm_.c:1300
#, c-format
msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
+"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 ""
-"اعثر على حلول لمشاكلك باستخدام بيئة الدعم الÙني على الإنترنت ÙÙŠ MandrakeSoft"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", المستضي٠\"%s\", Ø§Ù„Ù…Ù†ÙØ° %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Monaco"
-msgstr "موناكو"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "ÙØ´Ù„ت التجزئة: %s"
-#: ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s تجهيز %s قد ÙØ´Ù„"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Canada (cable)"
-msgstr "كندة (cable)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Floppy creation completed"
-msgstr "اكتمل انشاء القرص المرن"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Upgrade"
-msgstr "ترقية"
+#: ../../install_steps_interactive.pm_.c:1313
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
-msgstr "محطة عمل"
+#: ../../install_steps_interactive.pm_.c:1318
+msgid "Generate auto install floppy"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1320
msgid ""
-"Installing package %s\n"
-"%d%%"
+"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 ""
-"جاري تثبيت الحزمة %s\n"
-"%d%%"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
-msgstr "قيرغيزستان"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Multi-function device on USB"
-msgstr ", جهاز متعدد الوظائ٠على Ù…Ù†ÙØ° USB"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
+msgstr ""
-#: ../../../move/move.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Replay"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "With basic documentation"
-msgstr "مع وثائق المساعدة الأساسية"
+#: ../../install_steps_interactive.pm_.c:1328
+msgid "Save packages selection"
+msgstr ""
-#: ../../services.pm:1
+#: ../../install_steps_newt.pm_.c:20
#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr "Anacron أداة لتشغيل الأوامر ÙÙŠ أوقات محددة."
+msgid "Mandrake Linux Installation %s"
+msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
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 `/'"
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-"يجب أن تكون لديك تجزئة جذرية.\n"
-"لهذا الغرض انشئ تجزئة (أو انقر على تجزئة موجودة).\n"
-"ثم اختر ``نقطة التحميل'' و اجعلها `/'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "الصحراء الغربية"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "البروكسي يجب أن يكون http://..."
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
+msgstr "kdesu missing"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr "جنوب Ø£ÙØ±ÙŠÙ‚يا "
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
+msgstr "consolehelper missing"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "أخرج الشريط بعد النسخ الاحتياطي"
+#: ../../interactive.pm_.c:152
+msgid "Choose a file"
+msgstr "إختر ملÙ"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot Floppy/ISO"
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
+msgstr "متقدم"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Modify printer configuration"
-msgstr "تعديل اعدادات الطابعة"
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
+msgstr "Basic"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
-msgstr "إختر تجزئة"
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
+msgstr "<-سابق "
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Edit current rule"
-msgstr "حرّر القاعدة الحالية"
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+msgid "Next"
+msgstr "التالي"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
-msgstr "%s"
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr ""
-#: ../../mouse.pm:1
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "Please test the mouse"
-msgstr "من ÙØ¶Ù„Ùƒ اختبر Ø§Ù„ÙØ£Ø±Ø©"
+msgid "Your choice? (default %s) "
+msgstr "اختيارك ? (default %s) "
-#: ../../fs.pm:1
+#: ../../interactive/stdio.pm_.c:54
#, 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)."
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "محاكاة الأزرار"
-
-#: ../../standalone/drakperm:1
+#: ../../interactive/stdio.pm_.c:70
#, c-format
-msgid "Sticky-bit"
-msgstr "Sticky-bit"
+msgid "Your choice? (0/1, default `%s') "
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../interactive/stdio.pm_.c:95
#, c-format
-msgid "Other Media"
-msgstr "وسيط آخر"
+msgid "Button `%s': %s"
+msgstr "Button `%s': %s"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
+#: ../../interactive/stdio.pm_.c:96
+msgid "Do you want to click on this button?"
+msgstr "هل تريد الضغط على هذا الزر؟ "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files"
-msgstr "انسخ Ù…Ù„ÙØ§Øª النظام"
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../interactive/stdio.pm_.c:105
#, c-format
-msgid "Sector"
-msgstr "القطاع"
+msgid "Your choice? (default `%s'%s) "
+msgstr "اختيارك ? (default `%s'%s) "
-#: ../../lang.pm:1
+#: ../../interactive/stdio.pm_.c:123
#, c-format
-msgid "Qatar"
-msgstr "قطر"
+msgid "=> There are many things to choose from (%s).\n"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Base dn"
-msgstr "LDAP Base dn"
+#: ../../interactive/stdio.pm_.c:126
+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 ""
-#: ../../install_steps_gtk.pm:1
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "لا يمكنك اختيار هذه الحزمة لأنه لا يوجد مساحة كاÙية متبقية لتثبيتها"
+"=> Notice, a label changed:\n"
+"%s"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "generate auto-install floppy"
-msgstr "انشئ قرص تثبيت آلي"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
+msgstr "إعادة تسليم"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr "وضعية الإتصال"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "التشيكية (QWERTZ)"
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr "مشاركة Ø§Ù„Ù…Ù„ÙØ§Øª"
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "الألمانية"
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "قم بتنظي٠/tmp عند كل إقلاع"
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Dvorak"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malawi"
-msgstr "مالاوي"
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "الإسبانية"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: false"
-msgstr "local config: false"
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "الÙنلندية"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "System settings"
-msgstr "اعدادات مخصصة"
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "Ø§Ù„ÙØ±Ù†Ø³ÙŠØ©"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "ÙØ¶Ù„اً اختر نوع Ø§Ù„ÙØ£Ø±Ø©."
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "النرويجية"
-#: ../../services.pm:1
-#, c-format
-msgid "running"
-msgstr "تعمل"
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "البولندية"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "class of hardware device"
-msgstr "ÙØ¦Ø© جهاز العتاد"
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "الروسية"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-"هذه هي الماكينات Ùˆ الشبكات التي يجب أن تكون الطابعات المحلية Ù…ØªÙˆÙØ±Ø© لها:"
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
+msgstr "السويدية"
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "المملكة المتحدة"
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ البريطانية"
-#: ../../lang.pm:1
-#, c-format
-msgid "Indonesia"
-msgstr "اندونيسيا"
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ الأمريكية"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "المرجع"
+#: ../../keyboard.pm_.c:167
+msgid "Albanian"
+msgstr "الألبانيةّ"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "France [SECAM]"
-msgstr "ÙØ±Ù†Ø³Ø§ [سيكام]"
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
+msgstr "الأرمينية (قديم)"
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "تشديد"
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
+msgstr "الأرمينية (آلة كاتبة)"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "must have"
-msgstr "يجب أن يكون لديك"
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
+msgstr "الأرمينيةّ (صوتي)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS لا يدعم الطابعات على أجهزة Novell الخادمة أو الطابعات التي ترسل "
-"البيانات الى أمر حر.\n"
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
+msgstr "الأذربيجانية (لاتيني)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Senegal"
-msgstr "السنغال"
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "البلجيكية"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Command line"
-msgstr "سطر الأوامر"
+#: ../../keyboard.pm_.c:178
+#, fuzzy
+msgid "Bengali"
+msgstr "تمكين"
-#: ../advertising/08-store.pl:1
-#, 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:"
-msgstr ""
-"خياراتنا الكثير من حلول نظام Linux Ø¨Ø§Ù„Ø¥Ø¶Ø§ÙØ© الى العروض الخاصة Ùˆ المنتجات "
-"الأخرىى Ù…ØªÙˆÙØ±Ø© ÙÙŠ متجرنا الألكتروني:"
+#: ../../keyboard.pm_.c:179
+msgid "Bulgarian (phonetic)"
+msgstr "البلغارية (صوتية)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "March"
-msgstr "مارس"
+#: ../../keyboard.pm_.c:180
+msgid "Bulgarian (BDS)"
+msgstr "البلغارية (BDS)"
-#: ../../any.pm:1
-#, c-format
-msgid "access to administrative files"
-msgstr "الوصول الى Ù…Ù„ÙØ§Øª الإدارة"
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
+msgstr "البرازيليةّ (ABNT-2)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
-msgstr ""
-"خطأ أثناء ارسال البريد.\n"
-" لم يتم ارسال تقرير البريد.\n"
-" ÙØ¶Ù„اً قم بإعداد sendmail"
+#: ../../keyboard.pm_.c:184
+#, fuzzy
+msgid "Bosnian"
+msgstr "الإستونية"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Do not allow set-user-identifier or set-group-identifier\n"
-"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
-"have suidperl(1) installed.)"
-msgstr ""
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
+msgstr "البيلاروسية"
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
-msgstr "مونتسيرات"
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "السويسرية (تصميم ألماني)"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr "اعتمادات آلية"
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "السويسرية (تصميم ÙØ±Ù†Ø³ÙŠ) "
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "التبديل"
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "التشيكية (QWERTY)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom settings"
-msgstr "اعدادات مخصصة"
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr " الألمانيةّ (no dead keys)"
-#: ../../../move/move.pm:1
-#, 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."
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Other"
-msgstr "استعد آخر"
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "الدنماركية"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "بطاقة Ø§Ù„ØªÙ„ÙØ§Ø²"
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Dvorak (US)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "طابعة على خادم SMB/Windows 95/98/NT"
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (نرويجيةّ) "
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Configure CUPS"
-msgstr "تهيئة X"
+#: ../../keyboard.pm_.c:196
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (سويدية)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
-msgstr ", "
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "الإستونية"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
-msgstr ""
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
+msgstr "الجورجية (التصميم الروسي)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected host/network"
-msgstr "احذ٠المستضيÙ/الشبكة المختارة"
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
+msgstr "الجورجيةّ (التصميم اللاتيني)"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix هو عميل لنقل البريد, أي البرنامج الذي ينقل البريد من جهاز الى آخر."
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "اليونانية"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "الأوزبكية (سيريلي)"
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
+msgstr ""
-#: ../../keyboard.pm:1
-#, 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)"
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
msgstr ""
-"هنا يمكنك اختيار اختصارات لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ التي \n"
-"ستسمح لك بالتبديل بين لغات لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ Ø§Ù„Ù…Ø®ØªÙ„ÙØ©\n"
-"(مثلاً: لاتيني و غير لاتيني)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Network Hotplugging"
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "المجرية الهنغارية"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr "if set to yes, reports check result to tty."
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "الكرواتية"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From CD"
-msgstr "استعادة من القرص المدمج"
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
+msgstr "العبرية"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"أنت على وشك تهيئة جهازك لمشاركة الإتصال بالإنترنت.\n"
-"باستخدام هذه الميزة سيمكن للحواسيب الأخرى ÙÙŠ الشبكة المحلية أن تستخدم وصلة "
-"الكمبيوتر لهذا الحاسوب.\n"
-"\n"
-"تأكد من أنك قمت بتهيئة وصلة الشبكة/الإنترنت باستخدام drakconnect قبل "
-"المتابعة.\n"
-"\n"
-"ملحوظة: تحتاج الى موائم للشبكة كي تقوم بإعداد الشبكة المحلية (LAN)."
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr "العبرية (صوتية)"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr "ÙØ¶Ù„اً اختر موائم الإنترنت الذي تريد استخدامه للإتصال بالإنترنت."
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr "الإيرانيّة"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "الوصول الى بطاقة الذاكرة على جهاز HP متعدد الوظائÙ"
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr "الآيسلاندية"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
-msgstr ""
-"حسّن أداء أجهزتك بمساعدة اختياراتنا من الشركاء الذين ÙŠÙˆÙØ±ÙˆÙ† حلولاً احتراÙية "
-"متواÙقة مع Mandrake Linux"
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "الإيطالية"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
-msgstr "المؤلÙون: "
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "مشاركة اتصال الإنترنت غير ممكَّنة الآن."
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
+msgstr "اليابانية 106 Ù…ÙØ§ØªÙŠØ­"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr "if set to yes, verify checksum of the suid/sgid files."
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
+msgstr "لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ الكورية"
-#: ../../keyboard.pm:1
-#, c-format
+#: ../../keyboard.pm_.c:218
msgid "Latin American"
msgstr "الأمريكية اللاتينية"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "وضعية طبع النصوص اليابانية"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Old device file"
-msgstr "مل٠الجهاز القديم"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "معلومات: "
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Button `%s': %s"
-
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "من ÙØ¶Ù„Ùƒ انتظر"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
+#: ../../keyboard.pm_.c:219
+#, fuzzy
+msgid "Laotian"
+msgstr "اللاتÙية"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "None"
-msgstr "ولا شئ"
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
+msgstr "اللّيتوانيةّ AZERTY ( قديم ) "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "عنوان IP Ø§Ù„Ù…Ø¯ÙØ®Ù„ غير صحيح.\n"
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
+msgstr "اللّيتوانيّة AZERTY ( جديد ) "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "تأكد من أن مراقب cron موجود ضمن خدمات النظام."
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "اللّيتوانيةّ \"number row\" QWERTY"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
-msgstr "Ethernet Card"
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr " اللّيتوانيةّ \"phonetic\" QWERTY"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Delete selected printer"
-msgstr "احذ٠القاعدة المختارة"
+#: ../../keyboard.pm_.c:225
+msgid "Latvian"
+msgstr "اللاتÙية"
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "المعلومات"
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "ثبّت"
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
+msgstr "المقدونية"
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
msgstr ""
-"اضغط \"%s\" اذا كنت تريد حذ٠كل التجزئات الموجودة على القرص\n"
-"الصلب. خذ حذرك, بعد نقرك لزر \"%s\" لن تتمكن من استعادة\n"
-"أي بيانات أو تجزئات كانت موجودة على هذا القرص الصلب.\n"
-"بما Ùيها بيانات Windows\n"
-"انقر \"%s\" لإيقا٠هذه العملية دون خسارة أي بيانات أو تجزئات\n"
-"موجودة على القرص الصلب."
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "الخروج من التثبيت"
+#: ../../keyboard.pm_.c:229
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "الصّربيةّ (cyrillic)"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
msgstr ""
-#: ../../standalone/drakgw:1
-#, 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)."
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
msgstr ""
-"تم إعداد كل شئ.\n"
-"يمكنك الآن مشاركة اتصال الإنترنت مع الأجهزة الأخرى ÙÙŠ شبكتك المحلية باستخدام "
-"إعداد الشبكة الأوتوماتيكي (DHCP)."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
-msgstr "خادم CUPS بعيد"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - Mouse"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"يوجد موائم شبكة واحد Ùقط معدّ على نظامك:\n"
-"\n"
-"%s\n"
-"\n"
-"نحن على وشك اعداد الشبكة المحلية باستخدام هذا الموائم."
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
+msgstr "الهولنديّة"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
-msgstr ""
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
+msgstr "البولندية (qwerty layout)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Minimal install"
-msgstr "تثبيت مصغّر"
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
+msgstr "البولندية (qwertz layout)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "اثيوبيا"
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
+msgstr "البرتغالية"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
-msgstr ""
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr "الكنديّة (كيبيك)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
-msgstr ""
+#: ../../keyboard.pm_.c:239
+msgid "Romanian (qwertz)"
+msgstr "الرّومانيّة (qwertz)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr "Ø¯ÙŠÙØ§Ù†ØºØ§Ø±ÙŠ"
+#: ../../keyboard.pm_.c:240
+msgid "Romanian (qwerty)"
+msgstr "الرّومانيةّ (qwertz)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- أجهزة pci: تعطي Ù…Ù†ÙØ° PCI, الجهاز Ùˆ ÙˆØ¸ÙŠÙØ© هذه البطاقة\n"
-"- أجهزة eide: الجهاز إما أن يكون جهاز slave أو master\n"
-"- أجهزة scsi: scsi bus و هوية جهاز scsi"
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "الرّوسيةّ (Yawerty)"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "الحجم الإجمالي: %d / %d ميغابايت"
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
+msgstr "السلوÙينية"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "disabled"
-msgstr "معطل"
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "Ø§Ù„Ø³Ù„ÙˆÙØ§ÙƒÙŠØ© (QWERTZ)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Search for new scanners"
-msgstr "البحث عن ماسحات ضوئية جديدة..."
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "Ø§Ù„Ø³Ù„ÙˆÙØ§ÙƒÙŠØ© (QWERTZ)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Disabling servers..."
-msgstr "جاري تعطيل الخوادم..."
+#: ../../keyboard.pm_.c:248
+msgid "Serbian (cyrillic)"
+msgstr "الصّربيةّ (cyrillic)"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "ÙØ´Ù„ تثبيت %s. ظهر الخطأ التالي:"
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
+msgstr "التاميل (Unicode)"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr "تعذر تشغيل mkinitrd -f /boot/initrd-%s.img %s."
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
+msgstr "التاميل (TSCII)"
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"لقد اخترت الخادمات التالية: %s\n"
-"\n"
-"\n"
-"هذه الخادمات Ù…ÙØ¹Ù‘لة Ø§ÙØªØ±Ø§Ø¶ÙŠØ§Ù‹, Ùˆ لا يوجد لهم مشاكل أمنية\n"
-"Ù…Ø¹Ø±ÙˆÙØ©, Ùˆ لكن قد تكتش٠بعض المشاكل الجديدة. ÙÙŠ هذه الحالة, تأكد من أن\n"
-"تقوم بالترقية ÙÙŠ أقرب وقت ممكن.\n"
-"\n"
-"\n"
-"هل أنت متأكد أنك تريد تثبيت هذه الخادمات الآن؟\n"
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr "لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ التّايلانديّة"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "طابعة شبكة (TCP/Socket)"
+#: ../../keyboard.pm_.c:254
+msgid "Tajik keyboard"
+msgstr "لوحة Ù…ÙØ§ØªÙŠØ­ الطّاجيكيّة"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup User files..."
-msgstr "انسخ Ù…Ù„ÙØ§Øª المستخدمين..."
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr "التّركيّ (traditional \"F\" model)"
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "تثبيت النظام"
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr "التّركيّ (modern \"Q\" model)"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "خادم DNS الأول (اختياري)"
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr "الأوكرانية"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr "بدلاً من ذلك, يمكنك تحديد اسم جهاز/اسم مل٠ÙÙŠ حقا الإدخال"
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "( "
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
-"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
-"symlink /etc/security/msec/server to point to\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
-"add a service if it is present in the file during the installation of\n"
-"packages."
-msgstr ""
-"اذا كان SERVER_LEVEL (أو SECURE_LEVEL ÙÙŠ حال عدم وجود الأول)\n"
-"أكبر من 3 ÙÙŠ /etc/security/msec/security.conf, Ùˆ ينشئ\n"
-"الاختصار /etc/security/msec/server لتشير\n"
-"الى /etc/security/msec/sever.<SERVER_LEVEL>.\n"
-"\n"
-"مل٠/etc/security/msec/server يتم استخدامه عن طريق أمر chkconfig --add "
-"لتقرير Ø§Ø¶Ø§ÙØ© خدمة اذا كانت موجودة ÙÙŠ ÙÙŠ المل٠أثناء تثبيت\n"
-"الحزم."
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "الÙيتناميّ \"numeric row\" QWERTY"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "الرّوسية (صوتية)"
+#: ../../keyboard.pm_.c:263
+msgid "Yugoslavian (latin)"
+msgstr "( يوغسلاÙيّ ( اللّاتينيّة "
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Config..."
-msgstr "تهيئة dhcpd..."
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
+msgstr "Ù…ÙØªØ§Ø­ Alt key"
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "تثبيت LILO/grub"
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "العبرية"
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "الطابعة \"%s\" على الخادم \"%s\""
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
+msgstr "Ù…ÙØªØ§Ø­ CapsLock"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "يمكن ازالة القرص المرن الآن"
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
+msgstr "Ctrl and Alt keys simultaneously"
-#: ../../help.pm:1
-#, c-format
-msgid "Truly minimal install"
-msgstr "تثبيت مصغّر جداً"
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
+msgstr "Alt and Shift keys simultaneously"
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "الدنمارك"
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
+msgstr "\"Menu\" key"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "جاري نقل التجزئة..."
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr "Left \"Windows\" key"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "(This) DHCP Server IP"
-msgstr "عنوان IP لخادم DHCP (هذا)"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
+msgstr "Right \"Windows\" key"
-#: ../../Xconfig/test.pm:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid "Test of the configuration"
-msgstr "اختبار الإعداد"
+msgid "Circular mounts %s\n"
+msgstr "Circular mounts %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing %s ..."
-msgstr "جاري تثبيت %s ..."
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../modules.pm_.c:290
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."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr "اختر Ù…ÙØªØ§Ø­ تشÙير نظام Ø§Ù„Ù…Ù„ÙØ§Øª"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr "سيراليون"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
-msgstr "بوتسوانا"
+#: ../../modules/parameters.pm_.c:18
+#, fuzzy
+msgid "modinfo is not available"
+msgstr "آس٠, لا مدخل مرن متاح"
-#: ../../lang.pm:1
-#, c-format
-msgid "Andorra"
-msgstr "أندورا"
+#: ../../modules/parameters.pm_.c:50
+#, fuzzy
+msgid "a number"
+msgstr "رقم التّليÙون "
-#: ../../standalone/draksec:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "(default value: %s)"
-msgstr "(القيمة Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠØ©: %s)"
-
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
+msgid "%d comma separated numbers"
msgstr ""
-"Arguments: (max, inactive=-1)\n"
-"\n"
-"Set password aging to \\fImax\\fP days and delay to change to \\fIinactive"
-"\\fP."
-#: ../../printer/printerdrake.pm:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "ØµÙØ­Ø© اختبارية بديلة (Letter)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-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"
+msgid "%d comma separated strings"
msgstr ""
-"تهيئة خادم DHCP.\n"
-"\n"
-"هنا يمكنك اختيار خيارات Ù…Ø®ØªÙ„ÙØ© لتهيئة خادم DHCP.\n"
-"اذا لم تكن نهلم ماذا يعني الخيار Ùكل ما عليك هو تركه كما هو.\n"
-"\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Choose an X server"
-msgstr "إختر خادم X"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "حجم تجزئة التبديل بالميغابايت"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No changes to backup!"
-msgstr "لا تغييران للنسخة الإحتياطية!"
+#: ../../modules/parameters.pm_.c:54
+#, fuzzy
+msgid "comma separated strings"
+msgstr "تجهيز التجزئات"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "مجهز\n"
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - Mouse"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Type of install"
-msgstr "نوع التثبيت"
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "الطابعة \"%s\" على خادم SMB/Windows \"%s\""
+#: ../../mouse.pm_.c:33
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Generic PS2 Wheel Mouse"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d أرقام Ù…ÙØµÙˆÙ„Ø© Ø¨Ø§Ù„ÙØ§ØµÙ„Ø©"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"بروتوكول rusers يسمح للمستخدمين على الشبكة أن يتعرÙوا على من\n"
-"سجل الدخول الى الأجهزة المستجيبة الأخرى."
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "تهيئة آلية للخطوات"
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "باربادوس"
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
-msgstr ""
-"هل تريد Ù…Ø¹Ø±ÙØ© المزيد عن مجتمع المصادر Ø§Ù„Ù…ÙØªÙˆØ­Ø©ØŸ كن جزءاً من عالم البرمجيات "
-"الحرة"
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to backup..."
-msgstr "رجاء اختر البيانات المطلوب نسخها احتياطيا..."
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
+msgstr "1 button"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
-msgstr ""
-"ÙØ´Ù„ الإتصال.\n"
-"تأكد من الوصلة ÙÙŠ مركز تحكم Mandrake."
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "Generic 2 Button Mouse"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
-msgstr "Ù…ÙØ³ØªÙ‚بلة"
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "Wheel"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr ""
-"Arguments: (arg)\n"
-"\n"
-" Enabling su only from members of the wheel group or allow su from any user."
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "serial"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
-msgstr "/ملÙ/_جديد"
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "Generic 3 Button Mouse"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DNS Server IP"
-msgstr "عنوان IP لخادم DNS"
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range End:"
-msgstr "IP Range End:"
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
-msgstr "Ù…Ø±ØªÙØ¹"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Add a new printer to the system"
-msgstr "Ø§Ø¶Ø§ÙØ© مستخدم الى النظام"
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr "لا Ùيديو"
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
-msgstr "هذا الحقل يص٠الجهاز"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "MM Series"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr "جاري Ø§Ø¶Ø§ÙØ© الطابعة الى Star Office/OpenOffice.org/GIMP"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printers"
-msgstr "الطابعات المحلية"
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (serial, old C7 type)"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation image directory"
-msgstr "دليل صورة التثبيت"
+#: ../../mouse.pm_.c:68
+msgid "busmouse"
+msgstr "busmouse"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "خادم NIS"
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "2 buttons"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Port: %s"
-msgstr "Ø§Ù„Ù…Ù†ÙØ°: %s"
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "3 buttons"
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "أسبانيا"
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "ولا واحد"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
-msgstr ""
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "No mouse"
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "اسم المستخدم Ù…ÙØ¶Ø§Ù مسبقا"
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
+msgstr "من ÙØ¶Ù„Ùƒ اختبر Ø§Ù„ÙØ£Ø±Ø©"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
-msgstr "إختر ملÙ"
+#: ../../mouse.pm_.c:491
+msgid "To activate the mouse,"
+msgstr "To activate the mouse,"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr "تطبيق"
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr " WHEEL! حرّك "
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "تحقق آلياً من Ø§Ù„Ù…Ù†Ø§ÙØ° Ø§Ù„Ù…ØªÙˆÙØ±Ø©"
+#: ../../my_gtk.pm_.c:65
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr "سان مارينو"
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
+msgstr "إنتهاء"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "مشاركة الإتصال بالإنترنت"
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
+msgstr "التالي ->"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Belgium"
-msgstr "بلجيكا"
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "هل هذا صحيح ? "
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
-msgstr "الكويت"
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "المعلومات"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "اختر مدير Ø§Ù„Ù†ÙˆØ§ÙØ° الذي سيتم تشغيله:"
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
+msgstr "Expand Tree"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
-msgstr "ديسمبر"
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
+msgstr "Collapse Tree"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "الجيل الثانوي للمعالج"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
-msgstr "معالج First Time"
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "use pppoe"
-#: ../../lang.pm:1
-#, c-format
-msgid "Taiwan"
-msgstr "تايوان"
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
+msgstr "use pptp"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "باكستان"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
+msgstr "use dhcp"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "يرجى الإنتظار, جاري تحليل الملÙ: %s"
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
+msgstr "Alcatel speedtouch usb"
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
msgstr ""
-"ظهر خطأ و لا أعر٠كي٠أتعامل معه بأسلوب جيد.\n"
-"تابع على مسؤوليتك."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Importance: "
-msgstr "الأهمية:"
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
+msgstr "وصّل إلى الإنترنت "
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:30
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."
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-"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."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Permissions"
-msgstr "التصاريح"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "اسم Ø§Ù„Ù…ÙˆÙØ± (مثلاً provider.net)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:166
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'."
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-"النظام لديك قليل الموارد. قد تقابل بعض المشاكل قي تثبيت\n"
-"Mandrake Linux. اذا حدث ذلك, يمكنك التثبيت ÙÙŠ وضع نصي, لهذا الغرض,\n"
-"اضغط `F1' عند الإقلاع من القرص المدمج, و اكتب `text'."
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "استخدم تجزئة Windows كـ loopback"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
-msgstr "الأرمينية (آلة كاتبة)"
-
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection type: "
-msgstr "نوع العلاقة"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Graphical interface"
-msgstr "الواجهة الرسومية"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "تشاد"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "الهند"
-
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s مع تسريع ثلاثي الأبعاد"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr "Ø³Ù„ÙˆÙØ§ÙƒÙŠØ§"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "سنغاÙورة"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "كمبوديا"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "خادم"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "تزامن الشاشة الأÙقي: %s\n"
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Domain name"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr "المسار"
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "خادم قواعد بيانات"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
-msgstr ""
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "خادم LDAP"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-"هنا يمكنك تحديد أي أمر هلامي يمكن تحويل ÙˆØ¸ÙŠÙØ© الطباعة اليه بدلاً من ارسالها "
-"مباشرةً الى الطابعة."
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "لا بطاقة شبكة وجدت "
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
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"
+"drakfirewall configurator\n"
"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"نظام الطباعة (%s) لن يتم بدؤه بشكل آلي عند بدء تشغيل الماكينة.\n"
-"\n"
-"من الممكن أن يكون قد تم تعطيل البدء الآلي بسبب التغيير الى مستوى أعلى لأن "
-"نظام الطباعة قد يكون نقطة مبدئية لهجمات المخترقين.\n"
+"أداة تهيئة الجدار الناري البسيط\n"
"\n"
-"هل تريد تمكين البدء الآلي لنظام الطباعة عند بدء التشغيل مرة أخرى؟"
+"هذه الأداة تسمح لك بتهيئة جدار ناري شخصي لنظام Mandrake Linux هذا.\n"
+"إذا كنت تريد جدارا ناريا متخصصا, الق نظرة على\n"
+"توزيعة MandrakeSecurity Firewall."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:135
msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
+"drakfirewall configurator\n"
+"\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-"الطابعة %s\n"
-"هل تريد تعديل تلك الطابعة؟"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add host"
-msgstr "اض٠مستضيÙ"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"If you really think that you know which driver is the right one for your "
-"card\n"
-"you can pick one in the above list.\n"
-"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
msgstr ""
-"اذا كنت تعتقد ÙØ¹Ù„اً أنك تعر٠ما هو المشغل الصحيح لبطاقتك\n"
-"يمكنك اختياره من القائمة أعلاه.\n"
-"\n"
-"المشغل الحالي لبطاقة الصوت \"%s\" الخاصة بك هو \"%s\" "
-#: ../../any.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:153
msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-"هل تريد السماح للمستخدمين بمشاركة بعض الأدلة الخاصة بهم؟\n"
-"السماح بذلك سيسمح للمستخدمين بأن ينقروا زر المشاركة ÙÙŠ كونكيورر Ùˆ نوتيلوس.\n"
-"\n"
-"\"مخصص\" يسمح لك بعمل اعدادات خاص لكل مستخدم.\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-"ÙØ¶Ù„ا٠اختر Ø­ÙØ¸ أو تحميل اختياراتك للحزم من القرص المرن.\n"
-"النسق مشابه لأقراص التثبيت الآلي المرنة."
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "No CDROM support"
-msgstr "دعم الراديو:"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "China (broadcast)"
-msgstr "الصين (broadcast)"
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use quota for backup files."
-msgstr "استخدم quota Ù„Ù…Ù„ÙØ§Øª النسخ الإحتياطي."
+#: ../../network/drakfirewall.pm_.c:169
+#, fuzzy
+msgid "Other ports"
+msgstr "أخرى"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "جاري إعداد الطابعة \"%s\" ..."
+#: ../../network/ethernet.pm_.c:37
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
+msgstr ""
+"تريد أن تستخدم dhcp أيّ عميل ?\n"
+" Default is dhcp-client"
-#: ../../fs.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:88
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."
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection"
-msgstr "وصلة انترنت"
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
+msgstr "اختر السّطح البينيّ للشبكة "
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:93
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
+"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
-"ÙØ´Ù„ تحميل الوحدة %s.\n"
-"هل تريد المحاولة ثانية بمعاملات أخرى؟"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr "أهلاً بك ÙÙŠ عالم المصادر Ø§Ù„Ù…ÙØªÙˆØ­Ø©"
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "لا بطاقة شبكة وجدت "
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr "البوسنة و الهرسك"
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "ا عداد شبكة"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:201
msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
-"تحتاج الى نظام Ù…Ù„ÙØ§Øª حقيقي (ext2/ext3, resierfs, xfs, أو jfs) لنقطة التحميل "
-"هذه\n"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "ÙØ¶Ù„ا أدخل اسم المستضي٠أو عنوان IP.\n"
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "Host اسم "
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "هولندا"
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+msgid "Network Configuration Wizard"
+msgstr "معالج إعداد الشبكة"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files by FTP"
-msgstr "جاري ارسال Ø§Ù„Ù…Ù„ÙØ§Øª عن طريق FTP"
+#: ../../network/isdn.pm_.c:22
+msgid "External ISDN modem"
+msgstr "External ISDN modem"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
-msgstr "بطاقة ISDN داخلية"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
-msgstr "لا يوجد مشغل بديل (ALSA أو OSS) لبطاقة الصوت (%s) التي تستخدم \"%s\""
+msgstr "Internal ISDN card"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Title"
-msgstr "العنوان"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "ثبّت و حوّل الخطوط"
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
-msgstr "WARNING"
+#: ../../network/isdn.pm_.c:45
+msgid ""
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
-msgstr "جاري تثبين محمّل الإقلاع"
+#: ../../network/isdn.pm_.c:54
+msgid "New configuration (isdn-light)"
+msgstr "إعداد جديد (isdn-light)"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "replay"
-msgstr "اعادة"
+#: ../../network/isdn.pm_.c:54
+msgid "Old configuration (isdn4net)"
+msgstr "إعداد قديم (isdn4net)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
-msgstr "تم اكتسا٠%s"
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "ISDN إعداد "
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/isdn.pm_.c:166
msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr "الجزر العذراء (الولايات المتحدة)"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol"
+msgstr ""
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "مل٠نسخ احتياطي سيئ"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol (EDSS1)"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/isdn.pm_.c:181
+msgid "Protocol for the rest of the world"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:181
msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
-"تم تنصيب مشاركة الإتصال بالإنترنت مسبقاً.\n"
-"و هي معطلة حالياً.\n"
-"\n"
-"ماذا تريد أن ØªÙØ¹Ù„ØŸ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr "أدخل عنوان IP Ùˆ Ù…Ù†ÙØ° المستضي٠الذي تريد استخدام طابعاته."
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid "Pipe into command"
-msgstr "حول الى الأمر"
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
msgstr ""
-"بعض العتاد الموجود على جهازك يحتاج الى مشغلات ``تجارية'' كي تعمل.\n"
-"يمكنك ايجاد مزيد من المعلومات عنها ÙÙŠ: %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "هايتي"
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
+msgstr "لا أعر٠"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "جاري التحقق من الأجهزة..."
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/isdn.pm_.c:210
msgid ""
-"Description of the fields:\n"
"\n"
-msgstr ""
-"وص٠الحقول:\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
+msgstr ""
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Basic options"
-msgstr "الخيارات الأساسية"
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "إنهاء"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
-msgstr "اسم المعالج"
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
+msgstr "تابع"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr "اقبل رسائل خطأ IPv4 الوهمية"
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
+msgstr "ISDN ما هية بطاقتك"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "جاري اعادة تحميل بيانات الطابة..."
+#: ../../network/isdn.pm_.c:239
+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 ""
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr "عليك أيضا تجهيز %s"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "كن حذرا: هذه العملية خطيرة"
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "أدخهل القرص المرن المحتوى على اختيارات الحزم"
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "Dialup options"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server: "
-msgstr "الخادم: "
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr ""
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Alerts:"
-msgstr "تنبيهات أمنية:"
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
+msgstr "رقم التّليÙون "
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
-msgstr "السويد"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "Login ID"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "استخدم Expect لـSSH"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr "CHAP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "بولندا"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Other ports"
-msgstr "Ù…Ù†Ø§ÙØ° أخرى"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "Script-based"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "number of capture buffers for mmap'ed capture"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "Terminal-based"
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid " - detected"
-msgstr "تم اكتشاÙÙ‡"
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "Domain name"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr "متحكمات SMBus"
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+msgid "First DNS Server (optional)"
+msgstr "( خادم ا الأوّل ( اختياريّ "
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "الوقت الأقصى للاتصال (بالثواني)"
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+msgid "Second DNS Server (optional)"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/modem.pm_.c:95
msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Croatian"
-msgstr "الكرواتية"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Use existing partition"
-msgstr "استخدم التجزئات الموجودة"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "تعذر الإتصال بالمرآة %s"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr "/مساعدة/_حول البرنامج..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "احذ٠أدلة المستخدمين قبل الإستعادة"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../network/modem.pm_.c:97
#, 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?"
+"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
-"أنت على وشك تهيئة طابعة بعيدة. هذا يحتاج الى أن تكون وصلة الشبكة تعمل و لكن "
-"الشبكة لم يتم اعدادها حتى الآن. اذا كنت تريد المتابعة دون تهيئة الشبكة, "
-"ستكون قادراً على استخدام الطابعة التي تقةم بتهيئتها الآن. كي٠تريد المتابعة؟"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "إعدادات طابعات CUPS"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr "لم أتمكن من ايجاد أي خطوط ÙÙŠ تجزئاتك المحملة"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
-msgstr "F00f bug"
-
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Domain Name:"
-msgstr "اسم النطاق:"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Do nothing"
+msgstr "لكن ليس موائمة"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Root umask"
-msgstr "كلمة مرور المستخدم الجذر"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Install rpm"
+msgstr "تثبيت النظام"
-#: ../../any.pm:1
-#, c-format
-msgid "On Floppy"
-msgstr "على قرص مرن"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Title"
+msgstr "الجدول"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reboot by the console user"
+#: ../../network/netconnect.pm_.c:29
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore"
-msgstr "استعادة"
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Server:"
-msgstr "الخادم: "
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
-msgstr "if set to yes, check if the network devices are in promiscuous mode."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "جاري العثور على الحزم Ø§Ù„Ù…ØªÙˆÙØ±Ø©..."
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "انتظر من ÙØ¶Ù„Ùƒ, جاري تعيين مستوى الأمن.."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
-msgstr "رسالة Init"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "إنقاذ جدول التقسيم"
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "قبرص"
+#: ../../network/netconnect.pm_.c:29
+msgid "You are currently connected to internet."
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection complete."
-msgstr "تم الإتصال."
+#: ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "ازالة من RAID"
+#: ../../network/netconnect.pm_.c:32
+msgid "You are not currently connected to Internet."
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "Ù…ÙØªØ§Ø­ التشÙير هذا بسيط جدا (يجب أن يكون %d Ø­Ø±ÙØ§ على الأقل)"
+#: ../../network/netconnect.pm_.c:36
+msgid "Connect"
+msgstr "اتصل"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Configuration Wizards"
-msgstr "معالجات التهيئة"
+#: ../../network/netconnect.pm_.c:37
+msgid "Disconnect"
+msgstr "اقطع الإتصال"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ISDN connection"
-msgstr "وصلة ISDN"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CDROM / DVDROM"
+#: ../../network/netconnect.pm_.c:38
+msgid "Configure the connection"
+msgstr "قم بإعداد الإتصال"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
-msgstr "أساسي"
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
+msgstr ""
-#: ../../printer/main.pm:1
+#: ../../network/netconnect.pm_.c:94
#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr "على خادم SMB/Windows \"%s\", المشاركة \"%s\""
+msgid "We are now going to configure the %s connection."
+msgstr ""
-#: ../../help.pm:1
+#: ../../network/netconnect.pm_.c:103
#, 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"
-"!!"
-msgstr ""
-"هذه الخطوة هي لاختيار الخدمات التي سيتم تشغيلها عند بدء التشغيل.\n"
"\n"
-"سيقوم DrakX بعرض قائمة بكل الخدمات Ø§Ù„Ù…ØªÙˆÙØ±Ø© ÙÙŠ هذا التثبيت.\n"
-"راجع كل خدمة بتمعن و قم بإزالة التأشير من تلك الخدمات التي لا تحتاجها\n"
-"بشكل دائم عند الإقلاع.\n"
+"We are now going to configure the %s connection.\n"
"\n"
-"سيتم عرض شرح قصير حول الخدمة عند\n"
-"اختيارها. عموماً, اذا لم تكن متأكد ما اذا كانت الخدمة Ù…Ùيدة أم لا,\n"
-"Ùمن Ø§Ù„Ø£ÙØ¶Ù„ ترك الخيار Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠ.\n"
"\n"
-"!! ÙÙŠ هذه المرحلة كن حذرا٠اذا كنت تريد استخدام ماكينتك\n"
-"كخادم: ربما لن تريد بدء أي خدمات لا تحتاجها.\n"
-"ÙØ¶Ù„اً تذكر أن العديد من الخدمات قد تكون خطرة اذا كانت\n"
-"متاحة على الخادم. بشكل عام اختر Ùقط الخدمات التي تحتاجها.\n"
-"!!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niue"
-msgstr "نيوي"
+"Press OK to continue."
+msgstr ""
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "تخطي"
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:133
msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
+"Because you are doing a network installation, your network is already "
+"configured.\n"
+"Click on Ok to keep your configuration, or cancel to reconfigure your "
+"Internet & Network connection.\n"
msgstr ""
-"تنشط/تخمد كل واجهات الشبكة المهيئة كي تبدأ\n"
-"عند بدء الإقلاع."
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/netconnect.pm_.c:157
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)"
+"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 ""
-"تردد المعالج بالميغاهيرتز (الميغاهيرتز تشير الى العدد التقريبي من التعليمات "
-"التي يستطيع المعالج تنÙيذها ÙÙŠ الثانية الواحدة)"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "important"
-msgstr "مهم"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "أداة Mandrake Linux لإدارة المستخدمين"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
-msgstr "اجمالي التقدم"
+#: ../../network/netconnect.pm_.c:163
+msgid "Choose the profile to configure"
+msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
msgstr ""
-"سيقوم DrakX أولاً بالتحقق من أي أجهزة IDE مرتبطة بالكمبيوتر. سيقوم\n"
-"أيضا بالتحقق من وجود بطاقات PCI SCSI على نظامك. اذا تم ايجاد\n"
-"بطاقة SCSI, سيقوم DrakX تلقائياً بتثبيت المشغل المناسب.\n"
-"\n"
-"لأن التحقق الآلي من العتاد غير خالي من الأخطاء, قد يتعذر\n"
-"على DrakX التحقق من أقراصك الصلبة. لذا سيكون عليك تحديد عتادك يدوياً.\n"
-"\n"
-"اذا اضطررت الى تحديد موائم PCI SCSI يدوياً, سيسألك DrakX عمّا اذا\n"
-"كنت تريد تهيئة الخيارات الخاصة به. يجب أن تسمح لـ DrakX بأن\n"
-"يقوم بالتحقق الآلي من العتاد لكي يحدد الخيارات الخاصة بالبطاقة\n"
-"Ùˆ التي يحتاج اليها لتشغيل الموائم. ÙÙŠ أغلب الأحيان, سيتخطى DrakX\n"
-"هذه الخطوة بدون أي مشاكل.\n"
-"\n"
-"اذا تعذر على DrakX التحقق من الخيارات آلياً ستحتاج\n"
-"الى تهيئة المشغل يدوياً."
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr "أروبا"
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
+msgstr "وضعية الخبير"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "المستخدمون"
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "جاري تحضير محمّل الإقلاع..."
+#: ../../network/netconnect.pm_.c:214
+msgid "Normal modem connection"
+msgstr ""
-#: ../../../move/move.pm:1
+#: ../../network/netconnect.pm_.c:214
#, c-format
-msgid "Enter your user information, password will be used for screensaver"
+msgid "detected on port %s"
msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "البوابة (مثلاً %s)"
+#: ../../network/netconnect.pm_.c:215
+#, fuzzy
+msgid "Winmodem connection"
+msgstr "وصلة انترنت"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
-msgstr "كلمات المرور غير متطابقة"
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "detected"
+msgstr "detected %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "أمثلة لعناوين IP صحيحة:\n"
+#: ../../network/netconnect.pm_.c:216
+msgid "ISDN connection"
+msgstr "ISDN connection"
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid "Please choose the media for backup."
-msgstr "ÙØ¶Ù„اً اختر وسيط النسخ الاحتياطي."
+msgid "detected %s"
+msgstr "detected %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "التردد (ميغاهيرتز)"
+#: ../../network/netconnect.pm_.c:217
+msgid "ADSL connection"
+msgstr "وصلة ADSL"
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
+#: ../../network/netconnect.pm_.c:218
+msgid "Cable connection"
msgstr ""
-"لاستخدام اختياراتك المحÙوظة للحزم, قم ببدء التثبيت مع خيار ``linux "
-"defcfg=floppy''"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of the processor"
-msgstr "رقم المعالج"
+#: ../../network/netconnect.pm_.c:218
+msgid "cable connection detected"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "ساعة الجهاز مضبوطة على توقيت غرينتش"
+#: ../../network/netconnect.pm_.c:219
+msgid "LAN connection"
+msgstr "وصلة LAN"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "هل تريد بدء عملية ضبط جديدة؟"
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Give a file name"
-msgstr "اعط اسم ملÙ"
+#: ../../network/netconnect.pm_.c:222
+msgid "Choose the connection you want to configure"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "رجاء اختر Ø§Ù„Ù…Ù†ÙØ° الموصلة إليه طابعتك."
+#: ../../network/netconnect.pm_.c:246
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
+msgstr ""
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "غيّر القرص المدمج"
+#: ../../network/netconnect.pm_.c:247
+msgid "Internet connection"
+msgstr "وصلة انترنت"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "البارجواي"
+#: ../../network/netconnect.pm_.c:253
+msgid "Do you want to start the connection at boot?"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "تم الانتهاء من التهيئة, هل تريد تطبيق الإعدادات ؟"
+#: ../../network/netconnect.pm_.c:267
+msgid "Network configuration"
+msgstr "ا عداد الشّبكة "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr "استخدم النسخ التراكمي/الاختلاÙÙŠ (لا تستبدل النسخ الإحتياطية القديمة)"
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
+msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../network/netconnect.pm_.c:272
#, 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:"
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr "لا يوجد مشغل معرو٠لبطاقة الصوت (%s)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "force"
-msgstr "اجبار"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Exit"
-msgstr "خروج"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:282
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
-"ملحوظة: اعتماداً على طراز الطابعة Ùˆ نظام الطباعة ÙØ³ÙŠØªÙ… تثبيت حوالي %d "
-"ميغابايت من البرمجيات الإضاÙية."
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../network/netconnect.pm_.c:286
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
-"لم تقم بتهيئة أي واجهات.\n"
-"قم بتهيئتهم أولا عن طريق الضغط على 'تهيئة'"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "الإستونية"
-#: ../../services.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:287
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr "Apache هو خادم ويب. Ùˆ ÙŠÙØ³ØªØ®Ø¯Ù… لخدمة Ù…Ù„ÙØ§Øª HTML Ùˆ CGI."
+"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 ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/network.pm_.c:278
msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
+"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 ""
-"ÙØ¶Ù„اً أدخل اسم جهاز نسخ الأقراص\n"
-" مثال: 0,1,0"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ALL"
+#: ../../network/network.pm_.c:283
+msgid ""
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "Add/Del Clients"
-msgstr "أضÙ/احذ٠العملاء"
-
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Choose the network interface"
-msgstr "اختر واجهة الشبكة"
+msgid "Configuring network device %s"
+msgstr ""
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../network/network.pm_.c:294
#, c-format
-msgid "Unknown Model"
-msgstr "طراز غير معروÙ"
+msgid " (driver %s)"
+msgstr "(driver %s)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
-msgstr "أجهزة نسخ CD/DVD"
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "IP address"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"التجزئة التي يتم اقلاعها Ø§ÙØªØ±Ø§Ø¶ÙŠØ§\n"
-" (لـ MS-DOS و ليس لـ lilo)\n"
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr "Netmask"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr ""
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image"
-msgstr "إختر صورة"
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "Automatic IP"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "تم اكتشا٠إعداد للجدار الناري!"
+#: ../../network/network.pm_.c:299
+msgid "Start at boot"
+msgstr "ابدأ عند الإقلاع"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "اسم الإتصال"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../network/network.pm_.c:326
msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-"الإحداثي السيني للصندوق النصي\n"
-"بعدد الحروÙ"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/network.pm_.c:330
msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Updating package selection"
-msgstr "جاري تحديث اختيار الحزم"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "أين تريد تحميل مل٠loopback %s؟"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../network/network.pm_.c:350
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"Please enter your host name.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''.\n"
+"You may also enter the IP address of the gateway if you have one"
msgstr ""
-"تم توليد القرص المرن بنجاح.\n"
-"يمكنك الآن اعادة التثبيت."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "استخدم CD/DVDROM للنسخ الإحتياطي"
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "الخادم DNS"
-#: ../../standalone/harddrake2:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "عدد أزرار Ø§Ù„ÙØ£Ø±Ø©"
+msgid "Gateway (e.g. %s)"
+msgstr "Gateway (e.g. %s)"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
-msgstr "اعادة"
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "Gateway device"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup other files"
-msgstr "انسخ Ù…Ù„ÙØ§Øª أخرى"
+#: ../../network/network.pm_.c:363
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr ""
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "لا توجد سواقة أقراص مرنة"
+#: ../../network/network.pm_.c:367
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Ù…Ù„ÙØ§Øª النسخ الإحتياطي ÙØ§Ø³Ø¯Ø©"
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
+msgstr "Proxies اعداد"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
-msgstr "TV norm :"
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr "عائلة هوية المعالج"
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "FTP proxy"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 ميغابايت"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: thin"
-msgstr "النوع: رÙيع"
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "الليتوانية AZERTY (جديد)"
+#: ../../network/network.pm_.c:388
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr "نعم تعني أن المعالج المساعد للعمليات الحسابية لديه متجه للإستثناءات"
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
+msgstr "تم اكتشا٠إعداد للجدار الناري!"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/shorewall.pm_.c:27
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"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
-"لقد اخترت تجزئة RAID برمجية كتجزئة جذرية (/).\n"
-"لا يستطيع أي محمّل اقلاع التعامل مع ذلك بدون تجزئة /boot.\n"
-"ÙØ¶Ù„اً تأكد من Ø§Ø¶Ø§ÙØ© تجزئة /boot"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "نظام آخر (MacOS...)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
-msgstr "لتنشيط Ø§Ù„ÙØ£Ø±Ø©,"
+"تحذير! تم إيجاد إعداد جدار ناري موجود مسبقا. ربما تحتاج الى اصلاح يدوي بعد "
+"التثبيت."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "جاري تشغيل الشبكة"
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
+msgstr "اعداد Internet "
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "ستكون لقطات الشاشة موجودة بعد التثبيت ÙÙŠ %s"
+#: ../../network/tools.pm_.c:58
+msgid "Do you want to try to connect to the Internet now?"
+msgstr ""
-#: ../../help.pm:1
-#, 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:\")."
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+msgid "Testing your connection..."
msgstr ""
-"ÙÙŠ الأعلى ستجد تقسيمات Linux الموجودة Ùˆ التي تم ايجادها على القرص الصلب "
-"الخاص بك.\n"
-"يمكنك أن ØªÙØ¨Ù‚ÙŠ إختيارات المعالج, Ùˆ هي جيدة لأغلب أنواع التثبيت.\n"
-"إذا قمت بعمل أي تغييرات Ùيجب عليك أن تعر٠التقسيم الجذر (\"/\"). لا تختر\n"
-"تقسيمات ضغيرة جدا Ùˆ إلا لن تستطيع تثبيت برامج كاÙية. إذا كنت تريد تخزين "
-"البيانات\n"
-"على تقسيم مستقل ÙØ³ØªØ­ØªØ§Ø¬ الى عمل تقسيم لـ\"/home\"\n"
-"(ممكن Ùقط إذا كان لديك أكثر من تقسيم Ù„Linux).\n"
-"\n"
-"كل تقسيم Ù…ÙØ¹Ø·Ù‰ بالسكل التالي: \"اسم Linux\", \"اسم ويندوز\",\n"
-" \"السعة\".\n"
-"\n"
-"\"اسم Linux\" مركب بالسكل التالي: \"نوع القرص الصلب\", \"رقم القرص الصلب\",\n"
-"\"رقم التقسيم\" (مثلا, \"hda1\").\n"
-"\n"
-"\"رقم القرص الصلب\" دائما هو حر٠بعد \"hd\" أو \"sd\". بالنسبة للأقراص "
-"الصلبة\n"
-"من نوع IDE ÙØ¥Ù†:\n"
-" * \"a\" تعني \"القرص الصلب الأساسي على متحكم IDE الأساسي\",\n"
-"\n"
-" * \"b\" تعني \"القرص الصلب الثانوي على متحكم IDE الأساسي\",\n"
-"\n"
-" * \"c\" تعني \"القرص الصلب الأساسي على متحكم IDE الثانوي\",\n"
-"\n"
-" * \"d\" تعني \"القرص الصلب الثانوي على متحكم IDE الثانوي\",\n"
-"\n"
-"أما بالنسبة لأقراص سكزي SCSI ÙØ§Ù„حر٠\"a\" يعني \"أقل معر٠SCSI\", Ùˆ الحر٠\"b"
-"\"\n"
-"يعني \"ثاني أقل معر٠SCSI\", الخ."
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
-msgstr "تنزانيا"
+#: ../../network/tools.pm_.c:70
+msgid "The system is now connected to Internet."
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "جاري حساب روابط نظام Ù…Ù„ÙØ§Øª FAT"
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/tools.pm_.c:72
msgid ""
-"\n"
-"Backup Sources: \n"
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-"\n"
-"مصادر المساعد :\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "custom"
-msgstr "مخصص"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Content of the file"
-msgstr "محتويات الملÙ"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
-msgstr "تحقق LDAP"
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
-msgstr "اسمح لي أن أختار مشغل"
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
-msgstr "مبعوثة"
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "Card mem (DMA)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palestine"
-msgstr "Ùلسطين"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "Card IO"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "Card IO_0"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d حرÙيات Ù…ÙØµÙˆÙ„Ø© Ø¨Ø§Ù„ÙØ§ØµÙ„Ø©"
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "Card IO_1"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " isdn"
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "ها هي قائمة كاملة بكل لوحات Ø§Ù„Ù…ÙØ§ØªÙŠØ­ Ø§Ù„Ù…ØªÙˆÙØ±Ø©"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Theme name"
-msgstr "اسم السمة"
-
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/_مساعدة"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitrary driver"
-msgstr "جاري اختيار مشغل عام"
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "جزر الكوك"
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, 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."
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+msgid "Provider dns 1 (optional)"
msgstr ""
-"هنا يمكنك اختيار اذا كانت الماسحات الضوئية المتصلة بهذه الماكينة يمكن الوصول "
-"اليها من الماكينات البعيدة و عن طريق أي ماكينات بعيدة."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the width of the progress bar"
-msgstr "عرض شريط التقدم"
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+msgid "Provider dns 2 (optional)"
+msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "جاري تهيئة التجزئة %s"
+#: ../../network/tools.pm_.c:109
+msgid "Choose your country"
+msgstr "إختر بلدك"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hostname required"
-msgstr "ÙŠÙØ­ØªØ§Ø¬ الى اسم المستضيÙ"
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "احذ٠اختيار الخطوط المثبتة"
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+msgid "Connection speed"
+msgstr "سرعة الإتصال"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Wheel"
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+msgid "Connection timeout (in sec)"
+msgstr "الوقت الأقصى للاتصال (بالثواني)"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Submit kernel version"
-msgstr "اصدارة النواة"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Cancel"
-msgstr "الغاء"
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for configured scanners ..."
-msgstr "جاري البحث عن ماسحات ضوئية معدّة..."
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
+msgstr "Account Password"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Videocard"
-msgstr "بطاقة الÙيديو"
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tالنسخ الإحتياطية تستخدم tar و bzip2\n"
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
+msgstr "ÙØ´Ù„ التحميل: "
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Remove Selected"
-msgstr "احذ٠المادة المختارة"
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/تحقق آلي من أ_جهزة المودم"
+#: ../../partition_table.pm_.c:685
+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 ""
-#: ../../printer/printerdrake.pm:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "Remove printer"
-msgstr "احذ٠الطابعة"
+msgid "Restoring from file %s failed: %s"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Last Log"
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: ../../partition_table.pm_.c:796
#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "أي خدمة تريد السماح للإنترنت أن تتصل بها؟"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Connection Type"
-msgstr "نوع الإتصال"
+msgid "Error writing to file %s"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
+#: ../../partition_table/raw.pm_.c:192
msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
msgstr ""
-"أهلا بكم الى أداة تهيئة البريد.\n"
-"\n"
-"هنا سيمكنك إعداد نظام التنبيه\n"
-
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Other"
-msgstr "أخرى"
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
-msgstr "Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠ"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "محاكاة الزر 2"
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Please enter a package name."
-msgstr "رجاءً قم بإعطاء اسم مستخدم"
+#: ../../pkgs.pm_.c:27
+msgid "important"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run chkrootkit checks"
-msgstr "شغّل اختبارات chkrootkit"
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "type1inst building"
-msgstr "بناء type1inst"
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image file"
-msgstr "إختر مل٠صورة"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
+msgstr "PDQ - Print, Don't Queue"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "X server"
-msgstr "خادم X"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
+msgstr "PDQ"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin User Name"
-msgstr "اسم المستخدم لمدير النطاق"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
+msgstr "LPD - Line Printer Daemon"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "كان هناك خطأ أثناء ضبط قنوات Ø§Ù„ØªÙ„ÙØ§Ø²"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
+msgstr "LPD"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
-msgstr "لوحة Ù…ÙØ§ØªÙŠØ­ أمريكية (دولي)"
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
+msgstr "LPRng - LPR New Generation"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Not installed"
-msgstr "غير مثبّت"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
+msgstr "LPRng"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Ù…ÙØªØ§Ø­ÙŠÙ‘ Alt ÙÙŠ Ù†ÙØ³ الوقت"
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
+msgstr "CUPS - Common Unix Printing System"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "LAN connection"
-msgstr "وصلة LAN"
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
+msgstr "CUPS"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/-"
-msgstr "/ملÙ/-"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+#, fuzzy
+msgid "Unknown Model"
+msgstr "غير معروÙ"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Italian"
-msgstr "الإيطالية"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "طابعة محلية"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Basic"
-msgstr "أساسي"
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
+msgstr "طابعة بعيدة"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+#: ../../printer/main.pm_.c:28
+msgid "Printer on remote CUPS server"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Honduras"
-msgstr "هندوراس"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+msgid "Printer on remote lpd server"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "pdq"
-msgstr "pdq"
+#: ../../printer/main.pm_.c:30
+msgid "Network printer (TCP/Socket)"
+msgstr "طابعة شبكة (TCP/Socket)"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO"
-msgstr "Card IO"
+#: ../../printer/main.pm_.c:31
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Samba server"
-msgstr "خادم Samba"
+#: ../../printer/main.pm_.c:32
+msgid "Printer on NetWare server"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+msgid "Enter a printer device URI"
msgstr ""
-"\n"
-"تجزئة الإقلاع\n"
-"هذه هي\n"
-"للإقلاع المزدوج ÙÙŠ نظامك.\n"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
msgstr ""
-"ÙØ¶Ù„اً اختر لكل خطوة اذا كنت ستقوم بإعادتها آلياً أم أنك تريد أن يكون التثبيت "
-"بشكل يدوي."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
msgstr ""
-"يمكنك أيضاً أن تقرر هنا اذا كانت الماسحات الضوئية على الماكينات البعيدة يجب "
-"أن تكون Ù…ØªÙˆÙØ±Ø© لهذع الماكينة."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-الشبكة عن طريق FTP.\n"
+#: ../../printer/main.pm_.c:317
+msgid "Local Printers"
+msgstr "الطابعات المحلية"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reports check result to tty"
-msgstr "يقوم بتقرير نتيجة الاختبار الى الطرÙية"
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+msgid "Remote Printers"
+msgstr "الطابعات البعيدة"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid "You must enter a device or file name!"
-msgstr "يجب عليك ادخال جهاز أو اسم ملÙ!"
+msgid " on parallel port \\/*%s"
+msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid "/_Quit"
-msgstr "/_خروج"
+msgid ", USB printer \\/*%s"
+msgstr ""
-#: ../../Xconfig/various.pm:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "ذاكرة بطاقة الشاشة: %s كيلوبايت\n"
+msgid ", multi-function device on parallel port \\/*%s"
+msgstr ""
-#: ../../standalone.pm:1
-#, 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"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
msgstr ""
-" هذا البرنامج هو برنامج حر; يمكنك اعادة توزيعة و/أو تعديله\n"
-" تحت بنود رخصة GNU العمومية الشاملة (GPL) كما Ù†ÙØ´Ùرت عن طريق\n"
-" جمعية البرمجيات الحرة; إما اإصدار الثاني من الترخيص أو\n"
-" أي نسخة تالية (حسب اختيارك).\n"
-"\n"
-" هذا البرنامج ÙŠÙوزَّع على أمل أن يكون Ù…Ùيدا,\n"
-" لكن دون أي ضمان’; حتى بدون الضمانة المÙهومة\n"
-" للإتجار أو المناسبة لغرض معين. انظر\n"
-" رخصة GNU العمومية الشاملة Ù„Ù„ØªÙØ§ØµÙŠÙ„.\n"
-"\n"
-" يجب أن تكون قد تسلمت نسخة من ترخيص GNU العمومية الشاملة\n"
-" مع البرنامج; ÙÙŠ حالة عدم تسلم الرخصة راسل جمعية البرمجيات الحرة على العنوان "
-"التالي\n"
-" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA "
-"02111-1307,\n"
-" USA.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "access to compilation tools"
-msgstr "الوصول الى أدوات التجميع"
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Global statistics"
-msgstr "احصائيات"
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:344
#, c-format
-msgid "Please select data to restore..."
-msgstr "رجاء اختر تاريخ الإستعادة..."
+msgid ", printing to %s"
+msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/main.pm_.c:346
#, 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 " on LPD server \"%s\", printer \"%s\""
msgstr ""
-"اذا كنت تريد استخدام aboot, Ùلا تنسى أن تترك مساحة ÙØ§Ø±ØºØ© ÙÙŠ\n"
-"بداية القرص (2048 قطاعات كاÙية)"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:348
#, c-format
-msgid "Standard test page"
-msgstr "ØµÙØ­Ø© اختبارية قياسية"
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Time Zone"
-msgstr "المنطقة الزمنية"
+msgid ", TCP/IP host \"%s\", port %s"
+msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid "Create"
-msgstr "انشاء تجزئة"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid "What"
-msgstr "ماذا "
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid "There was an error ordering packages:"
-msgstr "كان هناك خطأ ÙÙŠ ترتيب الحزم:"
+msgid ", using command %s"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "البلغارية (BDS)"
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
+msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../printer/main.pm_.c:647
#, c-format
-msgid "Disable Server"
-msgstr "عطّل الخادم"
+msgid "(on %s)"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem encryption key"
-msgstr "Ù…ÙØªØ§Ø­ تشÙير نظام Ø§Ù„Ù…Ù„ÙØ§Øª"
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../printer/main.pm_.c:674
#, c-format
-msgid "Gujarati"
-msgstr "غوجاراتي"
+msgid "On CUPS server \"%s\""
+msgstr "على خادم CUPS \"%s\""
-#: ../../standalone/drakTermServ:1
-#, 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."
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, 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? "
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
msgstr ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:30
msgid ""
"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
msgstr ""
-"\n"
-" جميع الحقوق محÙوظة (C) 2002 لـMandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Save theme"
-msgstr "Ø§Ø­ÙØ¸ السمة"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "البرازيل"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install"
-msgstr "تثبيت آلي"
-
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration Wizard"
-msgstr "معالج إعداد الشبكة"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
-msgstr "التحميل الآلي للوسائط القابلة للإزالة"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Printing"
-msgstr "الطباعة"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+msgid "CUPS configuration"
+msgstr " CUPS اعدادات"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save:"
-msgstr "اختر الدليل الذي سيتم Ø­ÙØ¸Ù‡:"
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+msgid "Specify CUPS server"
+msgstr "الخادم CUPS حدّد"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:83
msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "لم يتم العثور على طابعات متصلة مباشرةً بهذه الماكينة"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "انشئ تجزئة جديدة"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Driver:"
-msgstr "المشغل:"
-
-# ../../standalone/harddrake2:1, c-format
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
-msgstr "غير معروÙ"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "استخدم fdisk"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "حرك عجلة Ø§Ù„ÙØ£Ø±Ø©!"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "sent: "
-msgstr "Ù…ÙØ±Ø³Ù„: "
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "Automatic IP"
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:84
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:\")"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Moldova"
-msgstr "Ù…ÙˆÙ„Ø¯ÙˆÙØ§"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
+#: ../../printer/printerdrake.pm_.c:88
+msgid "The IP address should look like 192.168.1.20"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuration of a remote printer"
-msgstr "تهيئة طابعة بعيدة"
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
+msgstr ""
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
-msgstr "بيئة على الإنترنت للإستجابة لاحتياجات الدعم الÙني للشركات"
+#: ../../printer/printerdrake.pm_.c:99
+msgid "CUPS server IP"
+msgstr "عنوان IP لخادم CUPS"
-#: ../../network/network.pm:1
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "يجب أن يبدأ العنوان بـ 'ftp:' أو 'http:'"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
+msgstr "البوابة"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Oriya"
-msgstr "أوريا"
+#: ../../printer/printerdrake.pm_.c:102
+msgid "Automatic CUPS configuration"
+msgstr "تهيئة CUPS آلية"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "أض٠قاعدة جديدة ÙÙŠ النهاية"
+#: ../../printer/printerdrake.pm_.c:159
+msgid "Checking your system..."
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr "تم تثبيت سمات LiLo و Bootsplash بنجاح"
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+msgid "Printerdrake"
+msgstr "Printerdrake"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:167
msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
+"There are no printers found which are directly connected to your machine"
msgstr ""
-"يمكنك كذلك أن تقرر هنا اذا كانت الطابعات الموجودة على الأجهزة البعيدة أن "
-"تكون Ù…ØªÙˆÙØ±Ø© آلياً لهذه الماكينة."
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:179
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''"
+"The following printers\n"
+"\n"
msgstr ""
-"يمكنك الآن اعطاء الخيارات للوحدة %s.\n"
-"الخيارات ÙÙŠ هيئة ``name=value name2=value2 ...'' \n"
-"مثلا, ``io=0x300 irq=7''"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "هل تريد الخروج بدون كتابة جدول التقسيم؟"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Hard Drive"
-msgstr "على القرص الصّلب"
-#: ../../standalone.pm:1
-#, c-format
-msgid "Installing packages..."
-msgstr "جاري تركيب الجزم..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dutch"
-msgstr "الهولندية"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Angola"
-msgstr "أنغولا"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "يجب تثبيت الحزم التالية:\n"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "service setting"
-msgstr "إعدادات الخدمات"
-
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "مخصص"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
-msgstr "لاتÙيا"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr "هذا المل٠مستخدم من loopback أخرى, اختر Ù…Ù„ÙØ§ آخر"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr "للقراءة Ùقط"
-
-#: ../../security/help.pm:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:180
msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
-msgstr ""
-"Arguments: (arg, alert=1)\n"
+"The following printer\n"
"\n"
-"Enable/Disable name resolution spoofing protection. If\n"
-"\\fIalert\\fP is true, also reports to syslog."
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
-msgstr "لا يوجد مشغل معروÙ"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "1 ميغابايت"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:182
msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
+"\n"
+"and one unknown printer are "
msgstr ""
-"اذا لم تكن هذه هي التي تريد تهيئتها, أدخل اسم جهاز/اسم مل٠ÙÙŠ حقل الإدخال"
-#: ../../standalone/draksound:1
+#: ../../printer/printerdrake.pm_.c:184
#, 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"
+"and %d unknown printers are "
msgstr ""
-"تعذر ايجاد بطاقة صوت على جهازك. ÙØ¶Ù„اً تأكد من أن بطاقة الصوت المدعومة من "
-"Linux موصولة بشكل صحيح.\n"
-"\n"
-"\n"
-"يمكنك زيارة قاعدة بيانات العتاد المدعوم الخاصة بنا على:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "إعداد الشبكة المحلية..."
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:187
msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
+"\n"
+"are "
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr "يشغل نظام الصوت على جهازك"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Verify checksum of the suid/sgid files"
-msgstr "if set to yes, verify checksum of the suid/sgid files."
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Run some checks against the rpm database"
-msgstr "if set to yes, run some checks against the rpm database."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Execute"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"is "
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Preparing printer database..."
-msgstr "جاري تحضير قاعدة بيانات الطابعات..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Information"
-msgstr "معلومات"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "No network card"
-msgstr "لا توجد بطاقة شبكة"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "3 أزرار"
-
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Which filesystem do you want?"
-msgstr "أي نظام Ù…Ù„ÙØ§Øª تريد؟"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Malta"
-msgstr "مالطة"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Detailed information"
-msgstr "معلومات Ù…ÙØµÙ‘لة"
+#: ../../printer/printerdrake.pm_.c:189
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "انسخ الخطوط الى نظامك"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:192
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."
+"There is one unknown printer directly connected to your system"
msgstr ""
-"اعدادات الطابعة Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠØ©\n"
-"\n"
-"يجب عليك التأكد اذا كان حجم Ø§Ù„ØµÙØ­Ø© Ùˆ نوع الحبر/وضع الطباعة (ان وجد) Ø¨Ø§Ù„Ø¥Ø¶Ø§ÙØ© "
-"الى اعدادات العتاد لطابعات الليزر (الذاكرة, وحدات الدوبلكس, المنصات "
-"الإضاÙية) معدّة بشكل صحيح. لاحظ أن جودة طباعة عالية جداً قد تجهل الطباعة بطيئة."
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
-msgstr "هذا القرص المرن غير مجهز على نظام Ù…Ù„ÙØ§Øª FAT"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "جاري اعداد الشبكة"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:194
#, c-format
msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
+"\n"
+"There are %d unknown printers directly connected to your system"
msgstr ""
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Graphic Card"
-msgstr "بطاقة الشاشة"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing Windows partition"
-msgstr "جاري تغيير حجم تجزئة Windows"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "الكاميرون"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "DNS الأول Ù„Ù„Ù…ÙˆÙØ± (اختياري)"
+#: ../../printer/printerdrake.pm_.c:200
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "رجاء اختر Ø§Ù„Ù…Ù†ÙØ° الموصلة إليه طابعتك."
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:214
msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
msgstr ""
-"يمكنك الآن تجزئة %s.\n"
-"عندما تنتهي لا تنسى Ø§Ù„Ø­ÙØ¸ باستخدام `w'"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finnish)"
+#: ../../printer/printerdrake.pm_.c:215
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
msgstr ""
+"هل تريد تعيين هذه الطابعة (\"%s\")\n"
+"كطابعة Ø§ÙØªØ±Ø§Ø¶ÙŠØ©ØŸ"
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Close"
-msgstr "إغلاق"
+#: ../../printer/printerdrake.pm_.c:217
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "هل تريد تجربة إعداد طابعة أخرى؟"
+
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:219
#, 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."
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
msgstr ""
-"\"%s\": تأكد من اختيار البلد الحالي. اذا لم تكن ÙÙŠ هذا\n"
-"البلد, اضغط على زر \"%s\" و اختر بلداً آخر. اذا لك تكن\n"
-"بلدك ÙÙŠ القائمة اضغط زر \"%s\" لإظهر قائمة كاملة\n"
-"بالبلدان."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Calendar"
-msgstr "التقويم"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+msgid "Add a new printer"
+msgstr "أض٠طابعة جديدة"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:259
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard allows you to install local or remote printers to be used from "
+"this machine and also from other machines in the network.\n"
+"\n"
+"It asks you for all necessary information to set up the printer and gives "
+"you access to all available printer drivers, driver options, and printer "
+"connection types."
msgstr ""
-"استعد مدخل\n"
-"الكتالوغ المختار"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:272
msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
+"\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"
+"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) and you 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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"لاستخدام طابعة lpd بعيدة, عليك اعطاء اسم مستضي٠خادم الطابعة و اسم الطابعة "
-"على ذلك الخادم."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
-msgstr "آيسلندا"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Network & Internet Configuration"
-msgstr "اعدادات الشبكة"
-
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
-msgstr "consolehelper missing"
-
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr "Ù…ØªÙˆÙ‚ÙØ©"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "اذا كان الـFPU لديه متجه IRQ"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr "Expand Tree"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
"\n"
-"It has been reported to oops the kernel on unloading.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
-msgstr ""
-"مشغل \"%s\" القديم على القائمة السوداء.\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
"\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"
-"مشغل \"%s\" الجديد سيتم استخدامه عند تشغيل الجهاز ÙÙŠ المرة القادمة."
-
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Expert Mode"
-msgstr "وضعية الخبير"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "خيارات الطابعة"
+#: ../../printer/printerdrake.pm_.c:289
+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\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Local Network adress"
-msgstr "عنوان الشبكة المحلية"
+#: ../../printer/printerdrake.pm_.c:307
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
+msgstr "تحقق من الطابعات آليا"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "انسخ Ù…Ù„ÙØ§Øª النظام: (دليل /etc)"
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Set the user umask."
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-"Arguments: (umask)\n"
-"\n"
-"Set the user umask."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:329
msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"تستطيع الآن تنزيل الحزم المحدّثة. هذه الحزم\n"
-"تم تحديثها بعد اصدار التوزيعة. قد\n"
-"تحتوي على اصلاحات أمنية أو اصلاحات لعيوب برمجية.\n"
+"Congratulations, your printer is now installed and configured!\n"
"\n"
-"لتنزيل هذه الحزم, تحتاج الى أن تكون لديك اتصال \n"
-"بالإنترنت.\n"
+"You can print using the \"Print\" command of your application (usually in "
+"the \"File\" menu).\n"
"\n"
-"هل تريد تنزيل هذه التحديثات ؟"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Samba Server"
-msgstr "خادم Samba"
+"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 ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Australian Optus cable TV"
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+#, fuzzy
+msgid "Printer auto-detection"
+msgstr "تحقق آلي"
-#: ../../install_steps_newt.pm:1
+#: ../../printer/printerdrake.pm_.c:385
#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgid ", network printer \"%s\", port %s"
msgstr ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm_.c:387
#, c-format
-msgid "Subnet:"
-msgstr "Subnet:"
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:391
#, c-format
-msgid "Zimbabwe"
-msgstr "زيمبابوي"
+msgid "Detected %s"
+msgstr "تم التحقق من %s"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "When"
-msgstr "متى "
+msgid "Printer on parallel port \\/*%s"
+msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
+msgid "USB printer \\/*%s"
msgstr ""
-"تحتاج الى alcatel microcode.\n"
-"قم بتنزيلها على\n"
-"%s\n"
-"و انسخ المل٠mgmt.o الى /usr/share/speedtouch"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:399
#, fuzzy, c-format
-msgid "Hour"
-msgstr "هندوراس"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "خادم DNS الثاني (اختياري)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Finland"
-msgstr "Ùنلندا"
+msgid "Network printer \"%s\", port %s"
+msgstr "طابعة شبكة (TCP/Socket)"
-#: ../../Xconfig/various.pm:1
+#: ../../printer/printerdrake.pm_.c:401
#, c-format
-msgid "Color depth: %s\n"
-msgstr "عمق الألوان: %s\n"
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "لا يمكنك ازالة اختيار هذه الحزمة. يجب ترقيتها"
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+msgid "Local Printer"
+msgstr "طابعة محلية"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "جاري التحميل من القرص المرن"
+#: ../../printer/printerdrake.pm_.c:526
+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 ""
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Timezone - DrakClock"
+#: ../../printer/printerdrake.pm_.c:530
+msgid "You must enter a device or file name!"
msgstr ""
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
+#
+#: ../../printer/printerdrake.pm_.c:539
+#, fuzzy
+msgid "No printer found!"
msgstr ""
-"Arguments: (arg)\n"
+"لم يتم ايحاد طابعة محلية!\n"
"\n"
-"Enable/Disable the logging of IPv4 strange packets."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr "سلوÙينيا"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse test"
-msgstr "اختبار Ø§Ù„ÙØ£Ø±Ø©"
+#: ../../printer/printerdrake.pm_.c:548
+#, fuzzy
+msgid "Available printers"
+msgstr "طابعة محلية"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:552
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."
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
msgstr ""
-"ÙŠÙØ³ØªØ®Ø¯Ù… Drakperm لاستعراض Ø§Ù„Ù…Ù„ÙØ§Øª التي يتم استخدامها لتعديل الصلاحيات, Ùˆ "
-"الملاك و المستخدمين باستخدام msec.\n"
-"يمكنك كذلك تحرير قواعدك الخاصة التي ستÙكتَب Ùوق القواهد Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠØ©."
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:553
msgid ""
-"Enter a user\n"
-"%s"
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
msgstr ""
-"أدخل مستخدم\n"
-"%s"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:555
msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
msgstr ""
-"- أجهزة PCI و USB: هذا يعرض قائمة المصنعين و الأجهزة و المصنعين الثانويين و "
-"الأجهزة الثانوية لهويات PCI/USB"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "ProgressBar color selection"
-msgstr "إختيار لون شريط التحميل"
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:556
msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-"ها هنا المدخلات Ø§Ù„Ù…Ø®ØªÙ„ÙØ©.\n"
-"يمكنك Ø§Ø¶Ø§ÙØ© مدخلات أخرى أو تغيير الموجودين."
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
-
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:558
msgid ""
-"Application Name\n"
-"or Full Path:"
+"Please choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:559
+msgid "Please choose the port where your printer is connected to."
+msgstr "رجاء اختر Ø§Ù„Ù…Ù†ÙØ° الموصلة إليه طابعتك."
+
+#: ../../printer/printerdrake.pm_.c:561
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."
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-"تشغل الأوامر Ø§Ù„Ù…ÙØ¬Ø¯ÙˆÙ„Ø© عن طريق أمر at عند الوقت المحدد\n"
-"لتشغيل at, و تقوم بتشغيل الأوامر الدقعية عندما يكون متوسط التحميل قليلاَ."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
-msgstr "دعم الراديو:"
+#: ../../printer/printerdrake.pm_.c:565
+msgid "You must choose/enter a printer/device!"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "جاري تثبيت حزم SANE..."
+#: ../../printer/printerdrake.pm_.c:584
+msgid "Manual configuration"
+msgstr "إعداد يدوي"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
-msgstr "LDAP"
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
+msgstr ""
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
-msgstr "SILO"
+#: ../../printer/printerdrake.pm_.c:634
+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 ""
-#: ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Change type"
-msgstr "غيّر النوع"
+#: ../../printer/printerdrake.pm_.c:635
+msgid "Remote host name"
+msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", طابعة USB #%s"
+#: ../../printer/printerdrake.pm_.c:636
+msgid "Remote printer name"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "تثبيت SILO"
+#: ../../printer/printerdrake.pm_.c:639
+msgid "Remote host name missing!"
+msgstr ""
-#: ../../install_messages.pm:1
-#, 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."
+#: ../../printer/printerdrake.pm_.c:643
+msgid "Remote printer name missing!"
msgstr ""
-"تهانينا, التثبيت قد انتهى.\n"
-"احذ٠وسيط الإقلاع و اضغط زر ادخل لإعادة التشغيل.\n"
-"\n"
-"\n"
-"لمعلومات حول الإصلاحات Ø§Ù„Ù…ØªÙˆÙØ±Ø© لهذا الإصدار من Mandrake Linux,\n"
-"زر ØµÙØ­Ø© تصحيح الأخطاء Ø§Ù„Ù…ØªÙˆÙØ±Ø© من:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"المعلومات حول تهيئة النظام Ù…ØªÙˆÙØ±Ø© ÙÙŠ ÙØµÙ„\n"
-"ما بعد التثبيت ÙÙŠ دليل مستخدم Mandrake الرسمي."
-#: ../../standalone/drakclock:1
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
#, fuzzy, c-format
-msgid "Enable Network Time Protocol"
-msgstr "استعد عن طريق بروتوكول الشبكة: %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "paranoid"
-msgstr "Ù…Ø±ØªÙØ¹ بجنون"
+msgid "Detected model: %s %s"
+msgstr "تم التحقق من %s"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Do not send mails when unneeded"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+#, fuzzy
+msgid "Scanning network..."
+msgstr "جاري بدء الشبكة..."
-#: ../../standalone/scannerdrake:1
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, c-format
-msgid "Your scanner(s) will not be available on the network."
+msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "أرسل تقريراً بريدياً بعد كل عملية نسخ الى:"
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "جاري الطباعة على الطابعة \"%s\""
-#: ../../printer/printerdrake.pm:1
-#, 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"
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
msgstr ""
-"يمكنك استخدام هذا الأمر أيضاً ÙÙŠ حقل \"أمر الطباعة\" ÙÙŠ مربعات حوار الطابعة "
-"ÙÙŠ العديد من التطبيقات. لكن هنا لا تقم بإعطاء اسم المل٠لأن مل٠الطباعة يتم "
-"توÙيره عن طريق التطبيق.\n"
-
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolution"
-msgstr "دقة العرض"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:796
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
"the print server, as well as the share name for the printer you wish to "
"access and any applicable user name, password, and workgroup information."
msgstr ""
-"للطباعة الى طابعة SMB, ستحتاج الى اعطاء اسم مستضي٠SMB (ملحوظة! قد يكون "
-"Ù…Ø®ØªÙ„ÙØ§Ù‹ عن اسم مستضي٠TCP/IP!) Ùˆ ربما عنوان IP الخاص بخادم الطابعة, Ø§Ø¶Ø§ÙØ© الى "
-"اسم المشاركة لطابعة التي تود الوصول اليها Ø¨Ø§Ù„Ø¥Ø¶Ø§ÙØ© الى اسم مستخدم, كلمة "
-"مرور, و مجموعة عمل مناسبة."
-#: ../../security/help.pm:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:797
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+" 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 ""
-"Arguments: (arg)\n"
-"\n"
-" Enabling su only from members of the wheel group or allow su from any user."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
-msgstr "إعداة الإعداد"
-#: ../../Xconfig/card.pm:1
-#, 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."
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
msgstr ""
-"يمكن لبطاقتك التمتع بدعم للرسوم ثلاثية الأبعاد مع XFree %s, \n"
-"لاحظ أن هذا الدعم تجريبي Ùˆ قد يتسبب ÙÙŠ ايقا٠جهازك."
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Shell timeout"
-msgstr "الوقت الأقصى لإقلاع النواة"
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Xinetd Service"
-msgstr "خدمات Xinetd"
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "access to network tools"
-msgstr "الوصول الى أدوات الشبكة"
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "مجموعة العمل"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "Firmware-Upload for HP LaserJet 1000"
+#: ../../printer/printerdrake.pm_.c:806
+#, fuzzy
+msgid "Auto-detected"
+msgstr "تحقق آلي"
-#: ../advertising/03-software.pl:1
-#, 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."
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
msgstr ""
-"Mandrake Linux 9.2 يمكّنك من استخدام آخر اصدارات البرامج لتشغيل Ø§Ù„Ù…Ù„ÙØ§Øª "
-"الصوتية, Ùˆ تحرير الصور, Ùˆ تشغيل Ù…Ù„ÙØ§Øª الÙيديو"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "ها هي قائمة بكل الطابعات المتحقَّق منها آلياً. "
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
msgstr ""
-"خطأ أثناء تثبيت aboot, \n"
-"حاول الإجبار على التثبيت حتى و لو أدي ذلك لتدمير التجزئة الأولى؟"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
msgstr ""
-"استعد Ø§Ù„Ù…Ù„ÙØ§Øª\n"
-"المختارة"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:827
#, c-format
msgid ""
-"%s exists, delete?\n"
+"You are about to set up printing to a Windows account with password. Due to "
+"a fault in the architecture of the Samba client software the password is put "
+"in clear text into the command line of the Samba client used to transmit the "
+"print job to the Windows server. So it is possible for every user on this "
+"machine to display the password on the screen by issuing commands as \"ps "
+"auxwww\".\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 ""
-"%s موجود, هل تريد حذÙه؟\n"
+"We recommend to make use of one of the following alternatives (in all cases "
+"you have to make sure that only machines from your local network have access "
+"to your Windows server, for example by means of a firewall):\n"
+"\n"
+"Use a password-less account on your Windows server, as the \"GUEST\" account "
+"or a special account dedicated for printing. Do not remove the password "
+"protection from a personal account or the administrator account.\n"
+"\n"
+"Set up your Windows server to make the printer available under the LPD "
+"protocol. Then set up printing from this machine with the \"%s\" connection "
+"type in Printerdrake.\n"
"\n"
-"تحذير: اذا قمت بهذه العملية مسبقاً غالباً\n"
-" ستحتاج الى حذ٠المدخل من authorized_keys على الخادم."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "ÙØ¶Ù„اً املأ أو أشّر على الحقل أدناه"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "هل تريد Ø­ÙØ¸ تعديلات /etc/fstab"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
-msgstr "بروتوكول الإقلاع"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "أقراص LVM %s\n"
-
-#: ../../services.pm:1
-#, c-format
-msgid "On boot"
-msgstr "عند الإقلاع"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "الحزمة %s يجب أن ØªÙØ«Ø¨Ù‘ت. هل تريد تثبيتها؟"
-
-# U+200F (RTL mark) has been inserted after "Bus" so the display
-# on screen is correctly "datadatadata :Bus xxxxxxxx" (with xxxx arabic),
-# and not "Bus: datadatadata xxxxxxxx"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus identification"
-msgstr "معر٠الـ Busâ€"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vatican"
-msgstr "Ø§Ù„ÙØ§ØªÙŠÙƒØ§Ù†"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please make a backup of your data first"
-msgstr "رجاء قم بعمل نسخة احتياطية من بياناتك أولا"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ADSL adapters"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "لديك أكثر من قرص صلب, ÙÙŠ أيهم تريد تثبيت LinuxØŸ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Eritrea"
-msgstr "اريتريا"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot ISO"
-msgstr "مل٠ISO الإقلاع"
-
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid "Firmware needed"
-msgstr "اذا احتجته"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove List"
-msgstr "احذ٠القائمة"
-
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
-msgstr "بيئة قابلة للتخصيص"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
-msgstr "اينوكتيتوت"
-
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:837
#, 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."
+"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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "المغرب"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "ما هو نوع الطابعة لديك؟"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add a new printer"
-msgstr "أض٠طابعة جديدة"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " All of your selected data have been "
-msgstr " كل البيانات المختارة تم "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "نيبال"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- حذÙ"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
-msgstr "cpu # "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "chunk size"
-msgstr "حجم chunk"
-
-#: ../../security/help.pm:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:840
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"
+"Connect your printer to a Linux server and let your Windows machine(s) "
+"connect to it as a client.\n"
"\n"
-"Else only /etc/issue is allowed."
+"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"If \\fIarg\\fP = ALL allow /etc/issue and /etc/issue.net to exist. If \\fIarg"
-"\\fP = NONE no issues are\n"
-"allowed else only /etc/issue is allowed."
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
msgstr ""
-"Arguments: (arg)\n"
-"\n"
-" Enable/Disable sulogin(8) in single user level."
-#. -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
-#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "commands before booting, or 'c' for a command-line."
-
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr "كانت هناك مشاكل ÙÙŠ تثبيت الحزمة %s"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "سو٠تستلم تنبيها اذا كان التحميل أعلى من هذه القيمة"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
-msgstr "أض٠ماسح ضوئي يدوياً"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh"
-msgstr "تحديث"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Reload partition table"
-msgstr "إعادة تحميل جدول التقسيم"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "نعم, أريد دخولا آليا مع هذا )المستخدم, سطح المكتب("
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Selected"
+#: ../../printer/printerdrake.pm_.c:912
+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 ""
-"استعد Ø§Ù„Ù…Ù„ÙØ§Øª\n"
-"المختارة"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "ابحث عن الخطوط ÙÙŠ القائمة المثبتة"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "الشبكة المحلية لم تنته بـ`0', جاري الخروج."
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Boot"
-msgstr "الإقلاع"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " and the CD is in the drive"
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Tuner type:"
-msgstr "نوع التونر:"
-
-#: ../../help.pm:1
-#, 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"
-"\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 ""
-"الآن, حان وقت اختيار نظام الطباعة لنظامك. ØªÙˆÙØ± أنظمة التشغيل الأخرى\n"
-"نظام طباعة واحد, لكن Mandrake Linux ÙŠÙˆÙØ± لك نظامين. كل نظام مناسب\n"
-"لنوغ معين من التهيئة.\n"
-"\n"
-" * \"%s\"--Ùˆ هو اختصار لـ``print, don't queue'' أي ``اطبع Ùˆ لا تصÙ'', هذا هو "
-"الخيار الأمثل\n"
-"اذا كانت لديك وصلة مباشرة بالطابعة, Ùˆ تريد ØªÙØ§Ø¯ÙŠ Ø£ÙŠ ارتباك ÙÙŠ الطابعة\n"
-"و لديك طابعات على الشبكة.(يقوم \"%s\"بالتعامل مع حالات الشبكة البسيطة\n"
-"Ùˆ يعيبه البطئ عند الاستخدام مع الشبكات). من Ø§Ù„Ø£ÙØ¶Ù„ أن تستخدم \"pdq\" اذا.\n"
-"كانت هذه تجربتك الأولى مع نظام Linux.\n"
-"\n"
-" * \"%s\" - ``Common UNIX Printing System'', هو الخيار الأمثل\n"
-"للطباعة على طابعتك المحلية أو حتى على طابعة ÙÙŠ النص٠الآخر من الكوكب. انه\n"
-"سهل الإعداد و يمكن أن يتصر٠كخادم أو كعميل لأنظمة طباعة \"lpd\"\n"
-"القديمة, لذا ÙØ¥Ù†Ù‡ متواÙÙ‚ مع أنظمة التشغيل القديمة\n"
-"التي لا تزال تحتاج الى خدمات الطباعة.بينما التهيئة سهلة\n"
-"و قوية مثل \"pdq\". اذا كنت تحتاج الى محاكاة خادم \"lpd\", تأكد\n"
-"من تشغيل مراقب \"cups-lpd\". يحتوي %s على واجهات\n"
-"رسومية للطباعة أو اختيار خيارات الطابعة و إدارة\n"
-"الطابعة.\n"
-"\n"
-"اذا قمت يتقرير اختيارك الآن, ثم لم يعجبك نظام الطباعة\n"
-"Ùيما بعد, يمكنك تغييره عن طريق تشغيل PrinterDrake من مركز تحكم Mandrake\n"
-"و النقر على زر الخبير."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
-msgstr "Ù…ÙØªØ§Ø­ \"Menu\""
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
+msgid ", host \"%s\", port %s"
msgstr ""
-"\n"
-"\n"
-"ÙØ¶Ù„اً تأكد من قيام Printerdrake باكتشا٠طراز طابعتك بشكل صحيح. اعثر على "
-"الطراز الصحيح اذا تم اختيار طراز خطأ أو \"طابعة خام\"."
-#: ../../standalone/draksec:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
-msgid "Security Administrator:"
-msgstr "مدير الأمن:"
-
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
+msgid "Host \"%s\", port %s"
msgstr ""
-"Arguments: (val)\n"
-"\n"
-"Set the shell timeout. A value of zero means no timeout."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
+#: ../../printer/printerdrake.pm_.c:1030
+msgid "TCP/Socket Printer Options"
msgstr ""
-#: ../../../move/tree/mdk_totem:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1032
msgid ""
-"You can't use another CDROM when the following programs are running: \n"
-"%s"
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
-msgstr "if set to yes, check permissions of files in the users' home."
-
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1033
msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
+"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 ""
-"ليست لديك أي اتصالات إنترنت.\n"
-"قم بعمل اتصال أولا باستخدام 'تهيئة'"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Fonts copy"
-msgstr "نقل الخطوط"
+#: ../../printer/printerdrake.pm_.c:1037
+#, fuzzy
+msgid "Printer host name or IP missing!"
+msgstr "اسم مستضي٠الطابعة"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
-msgstr "آلي"
+#: ../../printer/printerdrake.pm_.c:1059
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "اسم مستضي٠الطابعة"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "هل تريد تجربة الإعداد؟"
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1108
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
-msgstr "تم حذ٠الطابعة \"%s\" من Star Office/OpenOffice.org/GIMP بنجاح."
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save packages selection"
-msgstr "Ø§Ø­ÙØ¸ اختيار الحزم"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Actions"
-msgstr "/_أحداث"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Remove the last item"
-msgstr "احذ٠المادة الأخيرة"
+"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 ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr "قائمة المستخدمين الذين سيتم استعادتهم"
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
-msgstr "لم يتم انشاء صور اقلاع عبر الشبكة!"
+#: ../../printer/printerdrake.pm_.c:1463
+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 ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "استخدم pptp"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "اختر أي خدمات تريدها أن تبدأ آلياً عند التثبيت"
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
+msgstr "الوصÙ"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Check files/directories writable by everybody"
-msgstr "if set to yes, check files/directories writable by everybody."
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
+msgstr "المكان"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "تعلم كي٠تستخدم هذه الطابعة"
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+msgid "Reading printer database..."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configure the network now"
-msgstr "قم بتهيئة الشبكة"
+#: ../../printer/printerdrake.pm_.c:1482
+msgid "Preparing printer database..."
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "اختر مرآة سيتم من خلالها تنزيل الحزم"
+#: ../../printer/printerdrake.pm_.c:1578
+msgid "Your printer model"
+msgstr ""
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:1579
#, c-format
msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
+"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 ""
-"لم تتمكن أداة تغيير حجم FAT من التعامل مع تجزئتك, \n"
-"ظهر الخطأ التالي: %s"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Size: "
-msgstr "الحجم: "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "أي قطاع تريد نقله؟"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahamas"
-msgstr "جزر الباهاما"
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+msgid "The model is correct"
+msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Do you want to click on this button?"
-msgstr "Do you want to click on this button?"
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+msgid "Select model manually"
+msgstr "تم اختيار النّموذج يدويًّا"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Manual configuration"
-msgstr "تهيئة يدوية"
+#: ../../printer/printerdrake.pm_.c:1606
+msgid "Printer model selection"
+msgstr "إختيار وحدات الطابعة"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "search"
-msgstr "بحث"
+#: ../../printer/printerdrake.pm_.c:1607
+msgid "Which printer model do you have?"
+msgstr "ما هو نوع الطابعة لديك؟"
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1608
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 ""
-"هذه الحزمة تقوم بتحميل خريطة لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ المختارة كما\n"
-"تم تعيينها ÙÙŠ /etc/sysconfig/keyboard. يمكن اختيار لوخة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ باستخدام "
-"أداة kbdconfig.\n"
-"يجب تركها ممكّنة ÙÙŠ أغلب الأجهزة."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (مشغل عرض التثبيت)"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "يجب أن يحتوي اسم مستضي٠Zeroconf على ."
-
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr ""
-"Arguments: (arg)\n"
"\n"
-" Accept/Refuse icmp echo."
+"\n"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
+msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1611
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."
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
-"Syslog هي الوسيلة التي تستخدمها العديد من المراقبات لتسجيل الرسائل\n"
-"الى Ù…Ù„ÙØ§Øª سجلات عديدة. انها Ùكرة جيدة أن تقوم دائماً بتشغيل syslog."
-
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown/Others"
-msgstr "غير معروÙ/أخرى"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
-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
-#, c-format
-msgid "Options"
-msgstr "خيارات"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "تم تعيين الطابعة \"%s\" كطابعة Ø§ÙØªØ±Ø§Ø¶ÙŠØ© الآن."
+#: ../../printer/printerdrake.pm_.c:1697
+msgid "OKI winprinter configuration"
+msgstr "إعداد OKI WinPrinter"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1698
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -12333,270 +7223,178 @@ msgid ""
"first parallel port before you print a test page. Otherwise the printer will "
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-"أنت تقوم بتهيئة طابعة OKI laser winprinter. هذه الطابعات\n"
-"تستخدم بروتوكول اتصالات خاص Ùˆ لذا Ùهي تعمل Ùقط عندما تكون متصلة Ø¨Ø§Ù„Ù…Ù†ÙØ° "
-"المتوازي الأول. عندما تكون الطابعة متصلة Ø¨Ù…Ù†ÙØ° آخر أو بخادم طباعة Ùمن ÙØ¶Ù„Ùƒ "
-"قم بتوصيل الطابعة الى Ø§Ù„Ù…Ù†ÙØ° المتوازي الأول قبل أن تطبع ØµÙØ­Ø© اختبارية. ان لم "
-"ØªÙØ¹Ù„ ذلك Ùلن تعمل الطابعة. اعداد نوع الوصلة سيتم تجاهله من المشغّل."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr "جيل المعالج (مثال: 8 لبنتيوم III, ...)"
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+msgid "Lexmark inkjet configuration"
+msgstr "إعداد Lexmark Inkjet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detected"
-msgstr "تحقق آلي"
+#: ../../printer/printerdrake.pm_.c:1719
+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 ""
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1746
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)."
+"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 ""
-"أنت على وشك تهيئة جهازك لتثبيت خادم PXE كخادم DHCP\n"
-"و خادم TFTP لبناء خادم تثبيت.\n"
-"باستخدام هذه الميزة تكون الحواسيب الأخرى على الشبكة المحلية قابلة للتثبيت من "
-"هذا الجهاز.\n"
-"\n"
-"تأكد من أنك قمت بتهيئة الشبكة/الإنترنت باستخدام drakconnect قبل المتابعة.\n"
-"\n"
-"ملحوظة: تحتاج الى موائم شبكة مخصص لإعداد الشبكة المحلية (LAN)."
-#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:1750
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"
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\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"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
"\n"
-"It also provides a much higher API than OSS.\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\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"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-"OSS (Open Sound System) was the first sound API. It's an OS independant "
-"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"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1972
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"
+"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 ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
+msgid "Option %s must be an integer number!"
msgstr ""
-"ÙØ¶Ù„اً اختر الطابعة التي تريد اعدادها أو أدخل اسم جهاز/اسم مل٠ÙÙŠ حقل الإدخال"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
-msgstr "Ø§Ø±ÙØ¶"
-#: ../../standalone/draksec:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "LOCAL"
+msgid "Option %s must be a number!"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:1989
#, c-format
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
+msgid "Option %s out of range!"
msgstr ""
-"HardDrake يقوم بالتحقق من العتاد, و يقوم بتهيئة العتاد\n"
-"الجديد/المتغير بشكل اختياري."
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "جاري انشاء و تجهيز المل٠%s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
-msgstr "if set to yes, check additions/removals of sgid files."
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2028
#, 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"
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned "
-"on. Download the Windows driver package from the HP web site (the firmware "
-"on the printer's CD does not work) and extract the firmware file from it by "
-"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"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "اختر LVM l,جود Ù„Ù„Ø§Ø¶Ø§ÙØ©"
+"هل تريد تعيين هذه الطابعة (\"%s\")\n"
+"كطابعة Ø§ÙØªØ±Ø§Ø¶ÙŠØ©ØŸ"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "xfs restart"
-msgstr "xfs restart"
+#: ../../printer/printerdrake.pm_.c:2051
+msgid "Test pages"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2052
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"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 ""
-"الطابعة \"%s\" موجودة مسبقاً,\n"
-"هل تريد ÙØ¹Ù„اً الكتابة Ùوق التهيئة الخاصة بها؟"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "استخدم الماسحات الضوئية على Ø§Ù„Ù…Ø³ØªØ¶ÙŠÙØ§Øª: "
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
-msgstr "تم ازالة اختيار الكل"
-
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "لا توجد تجزئة"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Printer Management \n"
-msgstr "ادارة المستخدمين \n"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Domain Name Resolver"
+#: ../../printer/printerdrake.pm_.c:2056
+msgid "No test pages"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
-msgstr "Ù…ÙØ§ØªØ­ التشÙير (مرة أخرى)"
+#: ../../printer/printerdrake.pm_.c:2057
+msgid "Print"
+msgstr "إطبع"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
-msgstr "اسم مشاركة Samba Ù…Ùقود!"
+#: ../../printer/printerdrake.pm_.c:2114
+msgid "Standard test page"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
-msgstr "تم تثبيت خطوط True Type"
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detection in progress"
-msgstr "جاري التحقق"
+#: ../../printer/printerdrake.pm_.c:2120
+msgid "Alternative test page (A4)"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "ابني كل النواة -->"
+#: ../../printer/printerdrake.pm_.c:2122
+msgid "Photo test page"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "modem"
-msgstr "المودم"
+#: ../../printer/printerdrake.pm_.c:2126
+msgid "Do not print any test page"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "أهلا بكم ÙÙŠ %s"
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
+msgstr ""
-#: ../../standalone/drakhelp:1
+#: ../../printer/printerdrake.pm_.c:2159
#, 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"
+"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"
-"Usage: \n"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "ÙØ¶Ù„اً أدخل قرص وحدات التحديث ÙÙŠ السواقة %s"
+#: ../../printer/printerdrake.pm_.c:2163
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
-msgstr "Bootsplash!"
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+msgid "Raw printer"
+msgstr "طابعة خام"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
+"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 ""
-"الطابعة التالية\n"
-"\n"
-"%s%s\n"
-"متصلة مباشرةً بنظامك"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "مشاركة الطابعات على Ø§Ù„Ù…Ø³ØªØ¶ÙŠÙØ§Øª/الشبكات: "
+#: ../../printer/printerdrake.pm_.c:2218
+msgid ""
+"These commands you can also use in the \"Printing command\" field of the "
+"printing dialogs of many applications, but here do not supply the file name "
+"because the file to print is provided by the application.\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, c-format
msgid ""
"\n"
@@ -12604,2434 +7402,1142 @@ msgid ""
"particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\". "
msgstr ""
-"\n"
-"الأمر \"%s\" يسمح لك كذلك يتعديل اعدادات الخيارات Ù„ÙˆØ¸ÙŠÙØ© طباعة محددة. بكل "
-"بساطة أض٠الإعداد المطلوب الى سطر الآوامر, مثال \"%s <file>\". "
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "DrakClock"
-msgstr "Drakbackup"
-#: ../../modules/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
#, 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."
+"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\n"
+"\n"
msgstr ""
-"ÙÙŠ بعض الأحيان يحتاج مشغل %s معلومات اضاÙية لكي يعمل\n"
-"بشكل صحيح, الا أنه يمكنه العمل جيدا بدونها. هل تريد تحديد\n"
-"خيارات اضاÙية له أو تسمح للمشغل بالتحقق ÙÙŠ جهازك\n"
-"عن المعلومات التي سيحتاجها؟ ÙÙŠ بعض الأحيان, قد يتسبب التحقق ÙÙŠ تعليق الجهاز, "
-"لكن\n"
-"لا يجب أن يتسبب ذلك ÙÙŠ أي مشاكل."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "علامة القرص ليست العلامة الصحيحة. علامة القرص هي %s."
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:2228
msgid ""
+"Here is a list of the available printing options for the current printer:\n"
"\n"
-"- Daemon, %s via:\n"
msgstr ""
-"\n"
-"- Daemon (%s) include :\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "كوبا"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr "أكتوبر"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belize"
-msgstr "بيليز"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Searching for new printers..."
-msgstr "جاري البحث عن طابعات جديدة..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
-msgstr " (متعدد الجلسات)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
-msgstr "الوقت الأقصى لإقلاع النواة"
-
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, c-format
msgid ""
-"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
-"Your card is supported by XFree %s which may have a better support in 2D."
-msgstr ""
-"يمكن لبطاقتك الحصول على دعم للتسريع ثلاثي الأبعاد لكن Ùقط مع XFree %s.\n"
-"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشل Ø£ÙØ¶Ù„ ÙÙŠ الوضع "
-"ثنائي الأبعاد."
-
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid " Activate/Disable daily security check."
-msgstr ""
-"Arguments: (arg)\n"
-"\n"
-" Activate/Disable daily security check."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-القرص المدمج.\n"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Enable libsafe if libsafe is found on the system"
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"Enable/Disable libsafe if libsafe is found on the system."
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "عثر معالج التجزئة ÙÙŠ DrakX على الحلول التالية:"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "المجرية"
-
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"This command you can also use in the \"Printing command\" field of the "
+"printing dialogs of many applications. But here do not supply the file name "
+"because the file to print is provided by the application.\n"
msgstr ""
-"اختر Ù…ÙˆÙØ± الخدمة الخاص بك.\n"
-"ان لم يكن موجوداً ÙÙŠ القائمة, اختر غير موجود."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "تزامن وقت آلي (باستخدام NTP)"
-
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid "Use my Windows partition"
-msgstr "جاري تغيير حجم تجزئة Windows"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
-msgstr "8 ميغابايت"
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Server"
-msgstr "خادم LDAP"
-
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
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."
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
msgstr ""
-"دعم PCMCIA مهم لدعم أشياء مثل بطاقات الإيثرنت و\n"
-"المودمات على الأجهزة Ø§Ù„Ø¯ÙØªØ±ÙŠØ©. لن يتم بدء هذه الخدمة الا عند تهيئتها لذا Ùلا "
-"مسكلة عند تشغيله\n"
-"على الأجهزة التي لا تحتاجه."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Choose your country"
-msgstr "إختر بلدك"
-
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2253
#, c-format
msgid ""
-"\n"
-"- System Files:\n"
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
msgstr ""
-"\n"
-"-ملÙّات النّظام :\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
-msgstr "الأدوات Ø§Ù„Ù…Ù†ÙØµÙ„Ø©"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Where"
-msgstr "أين"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "but not matching"
-msgstr "لكن ليس موائمة"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2257
msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
-msgstr "يمكنك هنا اختيار مشغل بديل (ALSA أو OSS) لبطاقة الصوت (%s)."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "جاري تهيئة بطاقات PCMCIA..."
-
-#: ../../common.pm:1
-#, c-format
-msgid "kdesu missing"
-msgstr "kdesu missing"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
+"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 ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
-msgstr "Ù…ÙØ§ØªØ­ التشÙير"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm_.c:2261
#, 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."
+"\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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "جزر الكريسماس"
-
-#: ../../mouse.pm:1
+#: ../../printer/printerdrake.pm_.c:2271
#, fuzzy, c-format
-msgid "Automatic"
-msgstr "Automatic IP"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "ÙØ´Ù„ تثبيت محمّل الإقلاع. ظهر الخطأ التالي:"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "قناة EIDE/SCSI"
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "جاري الطباعة/المسح على \"%s\""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2272
#, c-format
-msgid "Set this printer as the default"
-msgstr "عيّن هذه الطابعة كطابعة Ø§ÙØªØ±Ø§Ø¶ÙŠØ©"
+msgid "Printing/Scanning on \"%s\""
+msgstr "جاري الطباعة/المسح على \"%s\""
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2274
#, fuzzy, c-format
-msgid "Verify that %s is the correct path"
-msgstr "هل هذا هو الإعداد الصحيح؟"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "التجزئة %s"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Paranoid"
-msgstr "Ù…Ø±ØªÙØ¹ جدا"
-
-#: ../../any.pm:1
-#, c-format
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- احذ٠المستخدم"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Location on the bus"
-msgstr "المكان على الـbus"
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No printer found!"
-msgstr "لا توجد طابعة!"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
-msgstr "اسم مصنّع الجهاز"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Erase entire disk"
-msgstr "امسح كل القرص"
-
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Default)"
-msgstr " (Ø§ÙØªØ±Ø§Ø¶ÙŠ)"
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "جاري الطباعة/المسح على \"%s\""
-#: ../../standalone/drakgw:1
+#: ../../printer/printerdrake.pm_.c:2275
#, c-format
-msgid "Automatic reconfiguration"
-msgstr "اعداة تهيئة آلية"
+msgid "Printing on the printer \"%s\""
+msgstr "جاري الطباعة على الطابعة \"%s\""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Receiving Speed:"
-msgstr "سرعة الإستقبال"
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+msgid "Close"
+msgstr "إغلاق"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
-msgstr "جزر الترك و الكايكوس"
+#: ../../printer/printerdrake.pm_.c:2281
+msgid "Print option list"
+msgstr "قائمة خيارات الطابعة"
-#: ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:2301
#, c-format
-msgid "No Ip"
+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!"
msgstr ""
-#: ../../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
-#, c-format
-msgid "<- Previous"
-msgstr "<- السابق "
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Transfer Now"
+#: ../../printer/printerdrake.pm_.c:2322
+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 ""
-" انقل \n"
-"الآن"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Set root password and network authentication methods"
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+msgid "Reading printer data..."
msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"Use password to authenticate users."
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "Toggle between flat and group sorted"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Themes"
-msgstr "السمات"
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "الخيارات: %s"
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+msgid "Transfer printer configuration"
+msgstr "نقل إعدادات الطابعة"
-#: ../../standalone/drakboot:1
+#: ../../printer/printerdrake.pm_.c:2365
#, c-format
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
+"You can copy the printer configuration which you have done for the spooler %"
+"s to %s, your current spooler. All the configuration data (printer name, "
+"description, location, connection type, and default option settings) is "
+"overtaken, but jobs will not be transferred.\n"
+"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-"أنت تستخدم %s كمدير اقلاع حاليا.\n"
-"اضغط على تهيئة لتشغيل معالج الإعداد"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "إعداد OKI WinPrinter"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
-msgstr "سانت هيلانة"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Parallel port #%s"
-msgstr " على Ø§Ù„Ù…Ù†ÙØ° المتوازي #%s"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Security Level"
-msgstr "مستوى الأمن"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2368
msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
msgstr ""
-"بعض الخطوات لم يتم تكملتها.\n"
-"\n"
-"هل تريد الخروج الآن ÙØ¹Ù„اً؟"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "السودان"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "البولندية (qwertz layout)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
-msgstr "سورية"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2370
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?"
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
msgstr ""
-"اذا كانت طابعتك جهازاً متعدد الوظائ٠من HP أو Sony (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 مع ماسح ضوئي, Sony IPJ-V100) أو جهاز HP PhotoSmart "
-"أو HP LaserJet 2200؟"
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
-#, 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"
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-"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"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "البرتغالية"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
-msgstr "اسم مل٠Loopback: "
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "عنوان خادم DNS يجب أن يكون على النسق 1.2.3.4"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Control key"
-msgstr "Ù…ÙØªØ§Ø­ Control الأيسر"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
-msgstr "صربيا"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Newzealand"
-msgstr "نيوزيلندا "
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
-msgstr "هذا الدليل يجب أن يكون ÙÙŠ نظام Ø§Ù„Ù…Ù„ÙØ§Øª الجذري"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
-msgstr "عبر الشّبكة"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
-msgstr "Ù…ÙØªØ§Ø­ CapsLock"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "تثبيت محمّÙÙ„ الإقلاع"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "إختر حجم ذاكرة بطاقة الشاشة"
+#: ../../printer/printerdrake.pm_.c:2374
+msgid ""
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
+msgstr ""
-#: ../../security/help.pm:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:2375
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))."
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"Enable/Disable crontab and at for users. Put allowed users in /etc/cron."
-"allow and /etc/at.allow\n"
-"(see man at(1) and crontab(1))."
-#: ../../standalone.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2376
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."
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
msgstr ""
-"[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."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
-msgstr "Dynamic IP Address Pool:"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "اسم LVM؟"
-
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "تمت ازالة بعض الأجهزة ÙÙŠ ÙØ¦Ø© العتاد \"%s\":\n"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "تم ايجاد %s %s واجهات"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Install"
-msgstr "ما بعد التثبيت"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The internal domain name"
-msgstr "اسم النطاق الداخلي"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "Card IRQ"
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "logdrake"
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
+msgstr ""
-#: ../../standalone.pm:1
+#: ../../printer/printerdrake.pm_.c:2392
#, 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."
+"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 ""
-"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."
-
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "اختر سواقة الأقراص المرنة التي تريد استخدامها لعمل قرص الإقلاع"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr "LILO مع قائمة نصية"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "كل شئ (لا جدار ناري)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
-msgstr "يجب أن تحدد صورة النواة"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", جهاز متعدد الوظائ٠على Ù…Ù†ÙØ° USB"
-
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Do"
-msgstr "Ø§ÙØ¹Ù„"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "جاري الإتصال بالمرآة للحصول على قائمة بالحزم Ø§Ù„Ù…ØªÙˆÙØ±Ø©..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "الليتوانية AZERTY (قديم)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "البرازيلية (ABNT-2)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
-msgstr "عنوان IP للمستضيÙ/الشبكة:"
-
-#: ../../standalone/draksplash:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
msgstr ""
-"الإحداثي الصادي للركن الأيسر الأعلى\n"
-"لشريط التقدم"
-
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System installation"
-msgstr "تثبيت النظام"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
-msgstr "سانت Ùينسنت Ùˆ الغرينادين"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Allow/Forbid reboot by the console user."
+#: ../../printer/printerdrake.pm_.c:2413
+msgid "New printer name"
msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"Allow/Forbid reboot by the console user."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Open"
-msgstr "/ملÙ/_ÙØªØ­"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "المكان على مل٠install.cfg"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Open Firmware Delay"
-msgstr "Open Firmware Delay"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
-msgstr "المجر"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "New Zealand"
-msgstr "نيوزيلندا"
-#: ../../standalone/net_monitor:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "Color configuration"
-msgstr "إعدادات الألوان"
+msgid "Transferring %s..."
+msgstr ""
-#: ../../security/level.pm:1
+#: ../../printer/printerdrake.pm_.c:2427
#, c-format
msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
msgstr ""
-"توجد بعض القيود, كما يتم تشغيل برامج للتأكد من النظام أوتوماتيكياً كل ليلة."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "please choose the date to restore"
-msgstr "رجاء اختر تاريخ الإستعادة"
+#: ../../printer/printerdrake.pm_.c:2437
+msgid "Refreshing printer data..."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
-msgstr "أنتيل هولندا"
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+msgid "Configuration of a remote printer"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr "جاري التغيير من ext2 الى ext3"
+#: ../../printer/printerdrake.pm_.c:2446
+msgid "Starting network..."
+msgstr "جاري بدء الشبكة..."
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+msgid "Configure the network now"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "استعرض الى مستودع استعادة جديد."
+#: ../../printer/printerdrake.pm_.c:2480
+msgid "Network functionality not configured"
+msgstr "لم يتم تحديد وظيÙية الشبكة"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2481
msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
+"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 ""
-"\n"
-"أهلاً بكم ÙÙŠ معالج اعداد الطابعات\n"
-"\n"
-"هذا المعالج يسمح لك بتثبيت الطابعات المحلية أو البعيدة ليتم استخدامها من هذه "
-"الماكينو و من الماكينات الأخرى على الشبكة.\n"
-"\n"
-"يسألك المعالج عن كل المعلومات الأساسية لإعداد الطابعة و تعطيك القدرة على "
-"الوصول لكل مشغلات الطابعات و خيارات المشغلات و أنواع وصلات الطابعة."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and %d unknown printers"
-msgstr "Ùˆ %d طابعات غير Ù…Ø¹Ø±ÙˆÙØ©"
+#: ../../printer/printerdrake.pm_.c:2484
+msgid "Go on without configuring the network"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2518
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)"
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
-"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)"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2519
msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
+"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 ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "لم يتم ايجاد بطاقات ISDN PCI. ÙØ¶Ù„اً اختر واحدة ÙÙŠ الشاشة التالية."
-
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
-msgstr "غيغابايت"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
-msgstr "رجاءً قم بإعطاء اسم مستخدم"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
-msgstr "تمكين الإقلاع من القرص المدمج؟"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Simply reboot"
+#: ../../printer/printerdrake.pm_.c:2529
+msgid "Restarting printing system..."
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid " enter `void' for void entry"
-msgstr " enter `void' for void entry"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "high"
+msgstr "Ù…Ø±ØªÙØ¹"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "paranoid"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
-msgstr "يناير"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Password history length"
-msgstr "كلمة المرور هذه بسيطة جدا"
-
-#: ../../network/netconnect.pm:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid "Winmodem connection"
-msgstr "وصلة Winmodem"
+msgid "Installing a printing system in the %s security level"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2570
#, c-format
msgid ""
+"You are about to install the printing system %s on a system running in the %"
+"s security level.\n"
"\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"
+"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"
-"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."
+"Do you really want to configure printing on this machine?"
msgstr ""
-"\n"
-"تهانينا, تم تثبيت و تهيئة طابعتك!\n"
-"\n"
-"يمكنك الطباعة باستخدام أمر \"اطبع\" ÙÙŠ تطبيقاتك (عادة ÙÙŠ قائمة \"ملÙ\").\n"
-"\n"
-"اذا أردت Ø§Ø¶Ø§ÙØ© أو حذ٠أو اعادة تسمية طابعة, أة اذا أردت تغيير خيارات الطابعة "
-"Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠØ© (جودة الطباعة, تغيير الحبر, ...), اختر \"الطابعة\" ÙÙŠ قسم \"العتاد"
-"\" ÙÙŠ مركز تحكم Mandrake."
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "الآن يمكنك تشغيل XawTV (ÙÙŠ الواجهة الرسومية!) !\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "لا توجد مساحة تبديل كاÙية للقيام بالتثبيت, ÙØ¶Ù„اً زد مساحة التبديل"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "%s on %s"
-msgstr "%s على %s"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Allow/Forbid remote root login."
+#: ../../printer/printerdrake.pm_.c:2604
+msgid "Starting the printing system at boot time"
msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"Allow/Forbid remote root login."
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:2605
#, 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."
-msgstr ""
-"يقوم Linux بإدارة الوقت حسب توقيت غرينتش ثم يترجمه الى\n"
-"التوقيت المحلي حسب المنطقة الزمنية التي اخترتها. اذا كانت الساعة\n"
-"التي ÙÙŠ اللوحة الرئيسية مضبوطة على التوقيت المحلي, يمكنك ازالة تنشيط ذلك\n"
-"عن طريق ازالة التأشير من \"%s\" و التي ستجعل\n"
-"Linux يعلم أن ساعة النظام Ùˆ ساعة الجهاز على Ù†ÙØ³ التوقيت. هذا\n"
-"Ù…Ùيد عندما تستضي٠الماكينة نظام تشغيل آخر مثل Windows.\n"
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\n"
"\n"
-"خيار \"%s\" سيقوم آلياً بضبط الساعة عن طريق\n"
-"الإتصال بخادم وقت بعيد على الإنترنت. كي تعمل هذه الميزة,\n"
-"يجب أن تكون لديك وصلة انترنت عاملة. من Ø§Ù„Ø£ÙØ¶Ù„ اختيار خادم\n"
-"الوقت الأقرب اليك. هذا الخيار يثبت خادم وقت\n"
-"يمكن استخدامه عن طريق الماكينات الأخرى على الشبكة المحلية."
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Can't create log file!"
-msgstr "تعذر انشاء الكتالوغ!"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "ما هي منطقتك الزمنية؟"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use .backupignore files"
-msgstr "استخدم quota Ù„Ù…Ù„ÙØ§Øª النسخ الإحتياطي."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
-msgstr "غينيا"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "النظام الآن متصل بالإنترنت"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "جوجيا الجنوبية و جزر ساندويتش الجنوبية"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "اليابان (broadcast)"
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Monitor\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"
-" 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."
+"Do you want to have the automatic starting of the printing system turned on "
+"again?"
msgstr ""
-"الشاشة\n"
-"\n"
-" يمكن لبرنامج التثبيت اكتشا٠و تهيئة الشاشة المتصلة بماكينتك\n"
-"آلياً. ان لم يصل ذلك, يمكنك اختيار الشاشة التي لديك\n"
-"من القائمة."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "موزمبيق"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "أيقونة"
-
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Kill those programs"
-msgstr "الوصول الى برامج X"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "رجاء اختر ما تريد نسخه احتياطياً"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 لون (8 بت)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "للقراءة و الكتابة"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "الحجم: %s\n"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Hostname: "
-msgstr "اسم المستضي٠:"
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
+msgstr ""
-#: ../../standalone/drakperm:1
+#: ../../printer/printerdrake.pm_.c:2630
#, fuzzy, c-format
-msgid "Add a rule"
-msgstr "Ø§Ø¶Ø§ÙØ© قاعدة"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "حجم Chunk %s\n"
-
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
-msgstr "شارك ÙÙŠ بناء مستقبل Linux!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printer"
-msgstr "طابعة محلية"
+msgid "Removing %s ..."
+msgstr "جاري ازالة %s"
-#: ../../network/tools.pm:1
+#: ../../printer/printerdrake.pm_.c:2636
#, fuzzy, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "أين تريد تحميل الجهاز %s؟"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+msgid "Installing %s ..."
+msgstr "تركيب طرود ..."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ADSL connection"
-msgstr "وصلة ADSL"
+#: ../../printer/printerdrake.pm_.c:2685
+msgid "Select Printer Spooler"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "لا تهيئة, اضغط معالج أو متقدم.\n"
+#: ../../printer/printerdrake.pm_.c:2686
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "أي نظام طباعة تريد أن تستخدم؟"
-#: ../../standalone/drakautoinst:1
+#: ../../printer/printerdrake.pm_.c:2720
#, c-format
-msgid "Error!"
-msgstr "خطأ ! "
+msgid "Configuring printer \"%s\"..."
+msgstr "جاري إعداد الطابعة \"%s\" ..."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "cable connection detected"
-msgstr "تم اكتشا٠وصلة كيبل"
+#: ../../printer/printerdrake.pm_.c:2731
+msgid "Installing Foomatic..."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "تم Ø±ÙØ¶ لاتصريح بنقل %s الى %s"
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_تقرير خطأ"
+#: ../../printer/printerdrake.pm_.c:2810
+#, fuzzy
+msgid "Preparing Printerdrake..."
+msgstr "جاري قراءة بيانات الطابعة ..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
-msgstr "دومينيكا"
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+msgid "Configuring applications..."
+msgstr "جاري إعداد التطبيقات..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "تغيير الحجم"
+#: ../../printer/printerdrake.pm_.c:2845
+msgid "Would you like to configure printing?"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "دقة العرض: %s\n"
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
+msgstr ""
-#: ../../install2.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2915
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)"
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
-"تعذر الوصول الى وحدات النواة الخاصة بنواة النظام (المل٠%s Ù…Ùقود), بشكل عام "
-"يعني هذا أن قرص الإقلاع المرن ليس محدّثاً مع وسيط التثبيت (ÙØ¶Ù„اً قم بإنشاء قرص "
-"اقلاع جديد)"
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2916
msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+"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 ""
-"ÙØ¶Ù„اً اختر Ø§Ù„Ù…Ù†ÙØ° الصحيح. مثلاً Ù„Ù…Ù†ÙØ° \"COM1\" ÙÙŠ\n"
-"Windows اسمه \"ttys0\" ÙÙŠ Linux."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "سيتم حذ٠الحزم التالية"
-
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr "وصّل إلى الإنترنت "
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
+msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
-msgstr "استخدم التجزئات الموجودة"
+#: ../../printer/printerdrake.pm_.c:2960
+msgid "Change the printing system"
+msgstr "تغيير نظام الطباعة"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "الكنديّة (كيبيك)"
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+msgid "Normal Mode"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "جهاز Ø§Ù„ÙØ£Ø±Ø©: %s\n"
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+msgid "Do you want to configure another printer?"
+msgstr "هل تريد تجربة إعداد طابعة أخرى؟"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "أعد اختيار الخطوط الصحيحة"
+#: ../../printer/printerdrake.pm_.c:3211
+msgid "Modify printer configuration"
+msgstr "تعديل اعدادات الطابعة"
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:3213
#, 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."
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
-"ÙÙŠ النهاية, سيتم سؤالك عن اذا كنت تريد بدء الواجهة الرسومية\n"
-"عند بدء النظام. لاحط أنه سيتم سؤالك هذا السؤال حتى لو اخترت عدم اختبار\n"
-"التهيئة, بكل وضوح, ستختار \"%s\" اذا كانت ماكينتك ستستخدم كجهاز\n"
-"خادم, أو اذا لم تنجح ÙÙŠ تهيئة العرض\n"
-"بشكل صحيح."
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert للشركات"
+"الطابعة %s\n"
+"هل تريد تعديل تلك الطابعة؟"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
msgstr ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Write protection"
-msgstr "الحماية من الكتابة"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "You've not selected any font"
-msgstr "لم تقم باختيار أي خط"
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+msgid "Printer connection type"
+msgstr "نوع وصلة الطابعة"
-#: ../../steps.pm:1
-#, c-format
-msgid "Language"
-msgstr "اختر لغتك"
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+msgid "Printer name, description, location"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer model selection"
-msgstr "إختيار وحدات الطابعة"
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr "بعد تغيير نوع التجزئة %s, ÙØ¥Ù†Ùƒ ستسخر كل البيانات على التجزئة"
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "ISDN adapters"
-msgstr "بطاقة ISDN"
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
+msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d ثوان"
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "أدخل قرص مرن ÙØ§Ø±Øº ÙÙŠ السواقة %s"
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "يجب ادخال URI صالح!"
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+msgid "Print test pages"
+msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr "تم ايجاد الواجهة \"%s\" هل تريد استخدامها؟"
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+msgid "Know how to use this printer"
+msgstr "اعر٠كي٠تستخدم هذه الطابعة"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
-msgstr "إعادة إعداد الواجهة و خادم DHCP"
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+msgid "Remove printer"
+msgstr ""
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm_.c:3282
#, c-format
-msgid "Sound configuration"
-msgstr "اعدادات الصوت"
+msgid "Removing old printer \"%s\"..."
+msgstr "جاري ازالة الطابعة القديمة \"%s\" ..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
-msgstr "ØµÙØ­Ø© اختبارية لصورة"
+#: ../../printer/printerdrake.pm_.c:3307
+msgid "Default printer"
+msgstr ""
-#: ../../help.pm:1 ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:3308
#, c-format
-msgid "Custom disk partitioning"
-msgstr "تجزئة مخصصة"
+msgid "The printer \"%s\" is set as the default printer now."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "أدخل اسم الطابعة و التعليقات"
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3312
#, c-format
msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"الطابعات التالية\n"
-"\n"
-"%s%s\n"
-"متصلة مباشرةً بنظامك"
-#: ../../network/modem.pm:1
+#: ../../printer/printerdrake.pm_.c:3313
#, c-format
-msgid "You don't have any winmodem"
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: %s"
-msgstr "النوع: %s"
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm_.c:3317
#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "Ø§Ù„Ø³Ù„ÙˆÙØ§ÙƒÙŠØ© (QWERTY)"
+msgid ""
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:3318
#, 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."
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../standalone/draksound:1
+#: ../../printer/printerdrake.pm_.c:3325
#, c-format
-msgid "No Sound Card detected!"
-msgstr "لم يتم اختيار بطاقة صوت"
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
+#: ../../printer/printerdrake.pm_.c:3329
#, c-format
-msgid "Mouse Port"
-msgstr "Ù…Ù†ÙØ° Ø§Ù„ÙØ£Ø±Ø©"
+msgid "Removing printer \"%s\"..."
+msgstr "جاري ازالة الطابعة \"%s\" ..."
-#: ../../security/l10n.pm:1
+#: ../../raid.pm_.c:35
#, c-format
-msgid "Check for unsecured accounts"
+msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
msgstr ""
-"يجب اعادة تشغيل مدير العرض لكي يتم ØªÙØ¹ÙŠÙ„ التغييرات. \n"
-"(service dm restart - ÙÙŠ سطر الأوامر)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Ftp Server"
-msgstr "الخادم FTP"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr "أوغندا"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
-msgstr "تحويل خطوط %s"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../raid.pm_.c:153
#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "نوع الـbus المرتبطة به Ø§Ù„ÙØ£Ø±Ø©"
+msgid "Not enough partitions for RAID level %d\n"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../security/main.pm_.c:36
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"
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
"\n"
-" * \"%s\": check the current mouse configuration and click on the button to\n"
-"change it if necessary.\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\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"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\n"
"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\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."
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr "جزر القمر"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "May"
-msgstr "مايو"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yaboot mode"
-msgstr "وضع Yaboot"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "مستوى الأمن"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Generic 3 Button Mouse"
+#: ../../security/main.pm_.c:77
+#, fuzzy, c-format
+msgid " (default value: %s)"
+msgstr "المرجع"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
-msgstr "الولايات المتّحدة الأمريكيّة (cable)"
+#: ../../security/main.pm_.c:113
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "مستوى الأمن"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+#: ../../security/main.pm_.c:115
+msgid "Security Administrator:"
msgstr ""
-"تعذرت اعادة تشغيل LiLo!\n"
-"شغّل \"lilo\" كمستخدم جذر ÙÙŠ سطر الأوامر Ùˆ أكمل تثبيت سمات LiLo."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select another media to restore from"
-msgstr "اختر وسيط آخر للاستعادة منه"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Software Manager"
-msgstr "مدير البرامج"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
-msgstr "إعادة تسليم"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD in place - continue."
-msgstr "القرص ÙÙŠ المكان الصحيح - تابع"
-
-#: ../../common.pm:1
-#, c-format
-msgid "KB"
-msgstr "كيلوبايت"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Network & Internet"
-msgstr "الشبكة و الإنترنت"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "الليتوانية \"صوتي\" QWERTY"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Net Boot Images"
-msgstr "صور اقلاع الشبكة"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "مشاركة الماسحات الضوئية المحلية"
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "Network Options"
+msgstr "خيارات أكثر"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "تعذر التأكد من وجود Plug 'n Play. ÙØ¶Ù„اً اختر الشاشة الصحيحة"
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "System Options"
+msgstr "خيارات أكثر"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Detect again USB key"
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Services and deamons"
-msgstr "الخدمات و المراقبات"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name missing!"
-msgstr "اسم المستضي٠البعيد Ù…Ùقود!"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "with /usr"
-msgstr "مع /usr"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Network"
-msgstr "الشبكة"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr "تحقّق آلياً من الطابعات الموصولة بماكينات تعمل على Microsoft Windows"
+#: ../../security/main.pm_.c:191
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "جاري ضبط مستوى الأمن"
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "كلمة المرور هذه بسيطة جدا"
+#: ../../security/main.pm_.c:197
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "رجاء انتظر أثناء عملية ttmkfdir..."
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "تهيئة الخدمات"
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "Ø§Ù„Ø³Ù„ÙˆÙØ§ÙƒÙŠØ© (QWERTZ)"
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
+msgstr ""
-#: ../advertising/06-development.pl:1
-#, c-format
+#: ../../services.pm_.c:21
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."
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-"تعديل Ùˆ انشاء البرامج بلغات Ù…Ø®ØªÙ„ÙØ© مثل Perl, Python, C Ùˆ ++ÙÙC أسهل من ذي قبل "
-"Ø¨ÙØ¶Ù„ GNU gcc 3 Ùˆ Ø£ÙØ¶Ù„ بيئات التطوير Ù…ÙØªÙˆØ­Ø© المصدر."
-
-#
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "No devices found"
-msgstr "تعذر ايجاد صورة"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "تثبيت مصغّر ÙØ¹Ù„اً (خصوصاً بدون urpmi)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use daemon"
-msgstr "استخدم المراقب"
-
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "التحقق"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr "أض٠هذه الطابعة الى Star Office/OpenOffice.org/GIMP"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "خادمات CUPS الإضاÙية: "
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:23
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."
+"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 ""
-"اختر واحدة من الطابعات التي تم التحقق منها آلياً من القائمة أو أدخل اسم "
-"المستضي٠أو رقم IP Ùˆ رقم Ø§Ù„Ù…Ù†ÙØ° الإختياري (Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠ Ù‡Ùˆ 9100) ÙÙŠ حقول "
-"الإدخال."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr "أين تريد تحميل الجهاز %s؟"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "الجزائر"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network"
-msgstr "استعادة عن طريق الشبكة"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
+#: ../../services.pm_.c:25
+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 ""
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "حجم Initrd"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../services.pm_.c:28
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."
+"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 ""
-"اذا كانت هناك خادمات Ù…Ø®ØªÙ„ÙØ© للبطاقة الخاصة بك, مع أو\n"
-"دون تسريع للرسوم ثلاثية الأبعاد, يمكنك اختيار الخادم الذي\n"
-"يناسب احتياجاتك."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tالنسخ الإحتياطية تستخدم tar و gzip\n"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Set as default"
-msgstr "المرجع"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 ميغابايت"
-
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configured on this machine"
-msgstr "(على هذا الجهاز)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Ù…ÙØªØ§Ø­ÙŠÙ‘ Control ÙÙŠ Ù†ÙØ³ الوقت"
-
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid " --help - display this help \n"
+#: ../../services.pm_.c:31
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
+#: ../../services.pm_.c:33
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"
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
-"[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"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "جاري تعيين الطابعة Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠØ©..."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "الواجهة %s (باستخدام الوحدة %s)"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Generating preview ..."
-msgstr "جاري توليد المعاينة ..."
-
-#: ../../network/network.pm:1
-#, c-format
+#: ../../services.pm_.c:34
msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
+"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 ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "ignore"
-msgstr "سنغاÙورة"
-
-#: ../../security/help.pm:1
-#, fuzzy, c-format
+#: ../../services.pm_.c:38
msgid ""
-"Allow/Forbid X connections:\n"
-"\n"
-"- ALL (all connections are allowed),\n"
-"\n"
-"- LOCAL (only connection from local machine),\n"
-"\n"
-"- NONE (no connection)."
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
msgstr ""
-"Arguments: (arg, listen_tcp=None)\n"
-"\n"
-"Allow/Forbid X connections. First arg specifies what is done\n"
-"on the client side: ALL (all connections are allowed), LOCAL (only\n"
-"local connection) and NONE (no connection)."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", جهاز متعدد الوظائ٠على Ø§Ù„Ù…Ù†ÙØ° المتوازي #%s"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "serial"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
-msgstr "DVD-ROM"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "الجورجيةّ (التصميم اللاتيني)"
-
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
-msgstr "احصل على Ø§Ù„Ø£ÙØ¶Ù„ من شركاء Mandrake Linux"
-
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:40
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+"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 ""
-"يمكنك الآن اعطاء الخيارات للوحدة %s.\n"
-"لاحظ أن أي عنوان يجب ادخاله مسبوقاً بـ 0x مثل '0x123'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "كينيا"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "استخدم ``ازالة التحميل'' أولا"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing mtools packages..."
-msgstr "جاري تثبيت حزم mtools"
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a root partition"
-msgstr "يجب عليك تحديد تقسيم جذر"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "first step creation"
-msgstr "انشاء الخطوة الأولى"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Ù…ÙØªØ§Ø­ÙŠÙ‘ Shift ÙÙŠ Ù†ÙØ³ الوقت"
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../services.pm_.c:43
msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select a scanner model"
-msgstr "اختر طراز الماسح الضوئي"
-
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"Accept/Refuse bogus IPv4 error messages."
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
+#: ../../services.pm_.c:46
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "إعدادات Drakbackup"
+#: ../../services.pm_.c:48
+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/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr "Ø­ÙØ¸ بإسم.."
+#: ../../services.pm_.c:50
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr "كوريا الشمالية"
+#: ../../services.pm_.c:52
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../services.pm_.c:53
msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
-"لم يتم تهيئة الواجهة بعد.\n"
-"قم بتشغيل معالج التهيئة ÙÙŠ Ø§Ù„Ù†Ø§ÙØ°Ø© الرئيسية"
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System configuration"
-msgstr "تهيئة النظام"
+#: ../../services.pm_.c:55
+msgid ""
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
+msgstr ""
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "دخول آلي"
+#: ../../services.pm_.c:57
+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 ""
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin Password"
-msgstr "كلمة المرور لمدير النطاق"
+#: ../../services.pm_.c:60
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
+msgstr ""
-#: ../advertising/05-desktop.pl:1
-#, c-format
+#: ../../services.pm_.c:62
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, ..."
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
msgstr ""
-"اجعل حاسبك يخدم حاجاتك بامتيار Ø¨ÙØ¶Ù„ 11 واجهة مستخدم Ù…ØªÙˆÙØ±Ø© Ù„Linux قابلة "
-"للتخصيص:KDE 3.1, GNOME 2.2, Window Maker, ..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer ..."
-msgstr "جاري إعداد الطابعة ..."
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr ""
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:65
msgid ""
-"To ensure data integrity after resizing the partition(s), \n"
-"filesystem checks will be run on your next boot into Windows(TM)"
+"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 ""
-"للتأكد من صحة البيانات بعد اعادة تحجيم التجزئات, \n"
-"سيتم الدقيق على نظام Ø§Ù„Ù…Ù„ÙØ§Øª عند التشغيل القادم لـ Windows(TM)"
-
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "ميغابايت"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
-msgstr "if set to yes, run some checks against the rpm database."
+#: ../../services.pm_.c:68
+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
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr "الجزر العذراء (بريطانيا)"
+#: ../../services.pm_.c:71
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Bermuda"
-msgstr "برمودا"
+#: ../../services.pm_.c:72
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
-msgstr "اضغط هنا إذا كنت متأكدا."
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:76
msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+"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 ""
-"لم يتم ايجاد مل٠تهيئة \n"
-"ÙØ¶Ù„ا اضغط معالج لأو متقدم."
-#: ../../help.pm:1
-#, c-format
+#: ../../services.pm_.c:79
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."
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
msgstr ""
-"ÙÙŠ الأعلى ستجد تقسيمات Linux الموجودة Ùˆ التي تم ايجادها على القرص الصلب "
-"الخاص بك.\n"
-"يمكنك أن ØªÙØ¨Ù‚ÙŠ إختيارات المعالج, Ùˆ هي جيدة لأغلب أنواع التثبيت.\n"
-"إذا قمت بعمل أي تغييرات Ùيجب عليك أن تعر٠التقسيم الجذر (\"/\"). لا تختر\n"
-"تقسيمات ضغيرة جدا Ùˆ إلا لن تستطيع تثبيت برامج كاÙية. إذا كنت تريد تخزين "
-"البيانات\n"
-"على تقسيم مستقل ÙØ³ØªØ­ØªØ§Ø¬ الى عمل تقسيم لـ\"/home\"\n"
-"(ممكن Ùقط إذا كان لديك أكثر من تقسيم Ù„Linux).\n"
-"\n"
-"كل تقسيم Ù…ÙØ¹Ø·Ù‰ بالسكل التالي: \"الإسم\", \"السعة\".\n"
-"\n"
-"\"الإسم\" مركب بالسكل التالي: \"نوع القرص الصلب\", \"رقم القرص الصلب\",\n"
-"\"رقم التقسيم\" (مثلا, \"hda1\").\n"
-"\n"
-"\"رقم القرص الصلب\" دائما هو حر٠بعد \"hd\" أو \"sd\". بالنسبة للأقراص "
-"الصلبة\n"
-"من نوع IDE ÙØ¥Ù†:\n"
-" * \"a\" تعني \"القرص الصلب الأساسي على متحكم IDE الأساسي\",\n"
-"\n"
-" * \"b\" تعني \"القرص الصلب الثانوي على متحكم IDE الأساسي\",\n"
-"\n"
-" * \"c\" تعني \"القرص الصلب الأساسي على متحكم IDE الثانوي\",\n"
-"\n"
-" * \"d\" تعني \"القرص الصلب الثانوي على متحكم IDE الثانوي\",\n"
-"\n"
-"أما بالنسبة لأقراص سكزي SCSI ÙØ§Ù„حر٠\"a\" يعني \"أقل معر٠SCSI\", Ùˆ الحر٠\"b"
-"\"\n"
-"يعني \"ثاني أقل معر٠SCSI\", الخ."
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Remove"
-msgstr "احذÙ"
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr "ليسوتو"
+#: ../../services.pm_.c:83
+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 ""
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr "utopia 25"
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
-msgstr "حوّل Ø§Ù„ÙˆØ¸ÙŠÙØ© الى الأمر"
+#: ../../services.pm_.c:86
+msgid ""
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
+msgstr ""
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "هل تريد ازالة مل٠loopback؟"
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "كوت ديÙوار"
+#: ../../services.pm_.c:89
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "اس مالجهاز الديناميكي الجديد الذي يتم توليده من devfs"
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
+msgstr ""
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "نعم"
+#: ../../services.pm_.c:127
+msgid "Printing"
+msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "ما هو البروتوكول الذي تريد استخدامه؟"
+#: ../../services.pm_.c:128
+msgid "Internet"
+msgstr "إنترنت"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Progress"
-msgstr "تقدم الإستعادة"
+#: ../../services.pm_.c:131
+msgid "File sharing"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
-msgstr "استونيا"
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+msgid "System"
+msgstr "نظام"
-#: ../../partition_table.pm:1
-#, 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."
+#: ../../services.pm_.c:138
+msgid "Remote Administration"
msgstr ""
-"توجد مساحة ÙØ§Ø±ØºØ© ÙÙŠ جدول التجزئات لديك لكني لا أستطيع استخدامها.\n"
-"الحل الوحيد هو أن تنقل التجزئات الأساسية لتحصل على المساحة بين التجزئات "
-"الممتدة."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr "اختر المستضي٠التي يجب أن ØªØªÙˆÙØ± له الماسحات الضوئية المحلية:"
+#: ../../services.pm_.c:146
+msgid "Database Server"
+msgstr "خادم قواعد بيانات"
-#: ../../standalone/harddrake2:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "Channel"
-msgstr "القناة"
+msgid "Services: %d activated for %d registered"
+msgstr ""
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Add"
-msgstr "Ø§Ø¶Ø§ÙØ©"
+#: ../../services.pm_.c:191
+msgid "Services"
+msgstr "الخدمات"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr " خطأ أثناء ارسال البريد. \n"
+#: ../../services.pm_.c:203
+msgid "running"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­"
+#: ../../services.pm_.c:203
+msgid "stopped"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
msgstr ""
-"أدخل القرص المدمج بالعلامة %s\n"
-" ÙÙŠ سواقة القرص المدمج تحت نقطة التحميل /mnt/cdrom"
-#: ../../network/network.pm:1
-#, c-format
+#: ../../services.pm_.c:222
msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
+"No additional information\n"
+"about this service, sorry."
msgstr ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "اختر الوصلة التي تريد تهيئتها"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "انتظر من ÙØ¶Ù„Ùƒ, جاري تعيين مستوى الأمن.."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "جاري تهيئة جهاز الشبكة %s"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
-msgstr "منشّط"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
-msgstr "اختر واجهة الشبكة التي سيتم استخدامها لخادم DHCP."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "جاري البحث عن الحزم التي ستتم ترقيتها..."
+#: ../../services.pm_.c:229
+msgid "On boot"
+msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
-msgstr "نقطة التحميل: "
+#: ../../services.pm_.c:241
+msgid "Start"
+msgstr "ابدأ"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
-msgstr "تحليل كل الخطوط"
+#: ../../services.pm_.c:241
+msgid "Stop"
+msgstr "توقÙ"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Allow/Forbid direct root login."
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"Allow/Forbid direct root login."
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
msgstr ""
-"Arguments: (arg)\n"
-"\n"
-" Accept/Refuse broadcasted icmp echo."
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
-msgstr "مع X"
+#: ../../share/advertising/01-thanks.pl_.c:11
+msgid ""
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
-msgstr "إعداد متعدد الرؤوس"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "No browser available! Please install one"
-msgstr "لا يوجد Ù…ØªØµÙØ­ Ù…ØªÙˆÙØ±! ÙØ¶Ù„اً قم بتثبيت Ù…ØªØµÙØ­"
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
-#: ../../Xconfig/main.pm:1
-#, c-format
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
msgstr ""
-"هل تريد Ø­ÙØ¸ التغييرات؟\n"
-"الإعداد الحالي هو:\n"
-"\n"
-"%s"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "لا يمكنك استخدام ReiserFS للتجزئات أصغر من 32 ميغابايت"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "وصّل إلى الإنترنت "
-#: ../../services.pm:1
-#, c-format
+#: ../../share/advertising/03-internet.pl_.c:10
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)."
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-"بروتوكول rwho يسمح للمستخدمين البعيدين بالحصول على قائمة بكل المستخدمين\n"
-"الذين سجلوا الدخول الى جهاز يشغّل مراقب rwho (مماثل لـ finger)."
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "اسم النطاق"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Sharing of local printers"
-msgstr "مشاركة الطابعات المحلية"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr ""
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"Enable/Disable libsafe if libsafe is found on the system."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Available printers"
-msgstr "الطابعات Ø§Ù„Ù…ØªÙˆÙØ±Ø©"
+#: ../../share/advertising/04-multimedia.pl_.c:11
+msgid ""
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "NO"
-msgstr "INFO"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "الالعاب"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "ÙØ§Ø±Øº"
+#: ../../share/advertising/05-games.pl_.c:10
+#, fuzzy
+msgid ""
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
+msgstr ""
+" يمدّون Ø£ÙØ¶Ù„ لعب بمصادر Ù…ÙØªÙˆØ­Ø© Mandrake Linux 9.0 - arcade, action, "
+"cards, sports, strategy,...."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
-msgstr "عرض النص"
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+msgid "Mandrake Control Center"
+msgstr "مركز تحكم Mandrake"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "أين تريد تحميل الجهاز %s؟"
+#: ../../share/advertising/06-mcc.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "الإيجار Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠ (بالثواني)"
+#: ../../share/advertising/07-desktop.pl_.c:9
+msgid "User interfaces"
+msgstr "واجهات الإستخدام"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
-"\n"
-"\n"
-"\n"
-"نحن الآن سنقوم بتهيئة الوصلة %s.\n"
-"\n"
-"اضغط مواÙÙ‚ للمتابعة."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Interface \"%s\""
-msgstr "الواجهة \"%s\""
+#: ../../share/advertising/08-development.pl_.c:9
+msgid "Development simplified"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "مع وثائق المساعدة الأساسية (Ù…ÙØ¶Ù‘Ù„)"
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr "زر واحد"
+#: ../../share/advertising/08-development.pl_.c:11
+msgid ""
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
+
+#: ../../share/advertising/09-server.pl_.c:10
+#, fuzzy
msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
-"\n"
-"توجد %d طابعات غير Ù…Ø¹Ø±ÙˆÙØ© متصلة مباشرةً بنظامك"
+"حوّل ماكينتك إلى خادم قويّ مع/ب Ùقط نقرات قليلة من ال Ø§Ù„ÙØ£Ø±Ø© : خادم الويب , "
+"البريد الإلكترونيّ , Ùيروول , الحÙّار , الملÙÙ‘ Ùˆ خادم الطّبع ,"
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Test"
-msgstr "اختبار"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea"
-msgstr "كوريا"
+#: ../../share/advertising/10-mnf.pl_.c:10
+msgid ""
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Your choice? (default `%s'%s) "
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer"
-msgstr "طابعة خام"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "الإسم الرسمي لمصنّع المعالج"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Vendor"
-msgstr "المصنع"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s"
-msgstr "الواجهة %s"
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "إعداد Ø§Ù„ÙØ£Ø±Ø©"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
-msgstr "اختر نقاط التحميل"
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
+msgid ""
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
+msgstr ""
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr "مواÙÙ‚"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "اليوغوسلاÙية (لاتيني)"
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "جاري التثبيت"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan"
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
-msgstr "شغّل userdrake"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+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 ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "هل هذا تثبيت أم ترقية؟"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
-#: ../../help.pm:1
-#, c-format
-msgid "ISDN card"
-msgstr "بطاقة ISDN"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
-#: ../advertising/02-community.pl:1
-#, c-format
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-"لمشاركتنا Ø¨Ù…Ø¹Ø±ÙØªÙƒ Ùˆ للمساعدة ÙÙŠ بناء أدوات Linux, انضم الى منتديات النقاش "
-"التي ستجدها ÙÙŠ ØµÙØ­Ø© \"Community\" على موقعنا"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-القرص الصلب.\n"
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../share/advertising/17-mdkclub.pl_.c:10
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."
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
msgstr ""
-"يتم تنشيط هذه الخطوة Ùقط اذا تم ايجاد تجزئة Linux قديمة\n"
-"على جهازك.\n"
-"\n"
-"يحتاج DrakX الآن الى أن يعلم اذا كنت تريد التثبيت من Ø§Ù„ØµÙØ± أو\n"
-"تريد ترقية نظام Mandrake Linux الموجود لديك مسبقاً:\n"
-"\n"
-" * \"%s\": ÙÙŠ الأغلب تقوم بازالة النظام القديم\n"
-"كلياً. اذا كنت تريد تغيير تجزئات القرص الصلب, أو تريد\n"
-"تغيير نظام Ø§Ù„Ù…Ù„ÙØ§Øª, عليك اختيار هذا الخيار. عموماً اعتمادا\n"
-"على كيÙية تجزئة القرص الصلب لديك. يمكنك منع ازالة بعض\n"
-"بياناتك الموجودة مسبقاً.\n"
-" * \"%s\": ÙØ¦Ø© التثبيت هذه تسمح لك بتحديث الحزم\n"
-"على نظام Mandrake Linux الخاص بك. لن يتم تغيير\n"
-"بياناتك أو تقسيمات القرص الصلب. أغلب خطوات التهيئة الأخرى\n"
-"لا تزال موجودة, مثل التثبيت الاعتيادي.\n"
-"\n"
-"استخدام خيار ``الترقية'' يجب أن يعمل بشكل جيد على\n"
-"اصدارات Mandrake Linux \"8.1\" أو ما Ùوق. لا ينصح بالترقية\n"
-"من اصادرات Mandrake Linux قبل \"8.1\"."
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone.pm_.c:21
+#, fuzzy
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"
-" 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"
+"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"
-" 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"
+"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 ""
-"\n"
-"جميع الحقوق محÙوظة (C) 2001-2002 لـMandrakeSoft \n"
-" DUPONT Sebastien (الإصدار الأصلي)\n"
-" CHAUMETTE Damien <dchaumette@mandrakesoft.com>\n"
-"\n"
" هذا البرنامج هو برنامج حر; يمكنك اعادة توزيعة و/أو تعديله\n"
" تحت بنود رخصة GNU العمومية الشاملة (GPL) كما Ù†ÙØ´Ùرت عن طريق\n"
" جمعية البرمجيات الحرة; إما اإصدار الثاني من الترخيص أو\n"
@@ -15043,3544 +8549,2719 @@ msgstr ""
" رخصة GNU العمومية الشاملة Ù„Ù„ØªÙØ§ØµÙŠÙ„.\n"
"\n"
" يجب أن تكون قد تسلمت نسخة من ترخيص GNU العمومية الشاملة\n"
-" مع البرنامج; ÙÙŠ حالة عدم تسلم الرخصة راسل جمعية البرمجيات الحرة على "
-"العنوان التالي\n"
+" مع البرنامج; ÙÙŠ حالة عدم تسلم الرخصة راسل جمعية البرمجيات الحرة على العنوان "
+"التالي\n"
" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA "
-"02111-1307, USA.\n"
-"\n"
-" شكر خاص الى:\n"
-" - pfm2afm: \n"
-"\t من Ken Borgendale:\n"
-"\t يحوّل خطوط .pfm ÙÙŠ Windows الى خطوط .afm (Adobe Font Matrix)\n"
-" - type1inst:\n"
-"\t من James Macnicol: \n"
-"\t يولد type1inst Ù…Ù„ÙØ§Øª fonts.dir Ùˆ fonts.scale Ùˆ Fontmap.\n"
-" - ttf2pt1: \n"
-"\t من Andrew Weeks, Frank Siegert, Thomas Henlich و Sergey Babkin \n"
-" يحول خطوط ttf الى خطوط afm و pfb\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "طابعة على خادم CUPS بعيد"
+"02111-1307,\n"
+" USA."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone.pm_.c:40
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
-msgstr "تعذر حذ٠الطابعة \"%s\" من Star Office/OpenOffice.org/GIMP."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
-msgstr "إضغط هنا إذا لم تكن متأكدا."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DHCP host name"
-msgstr "اسم مستضي٠DHCP"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "الإيجار الأقصى (بالثواني)"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "ÙØ¶Ù„اً اختر Ø§Ù„Ù…Ù†ÙØ° التسلسلي الموصلة به Ø§Ù„ÙØ£Ø±Ø©"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
-msgstr "هل عملت بالشكل الصحيح؟"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
+"[--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 name.\n"
msgstr ""
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "Ùقير"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Report check result by mail"
-msgstr "if set to yes, report check result by mail."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
-msgstr "عرينادا"
+#: ../../standalone.pm_.c:51
+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/drakgw:1
-#, c-format
-msgid "The DHCP start range"
-msgstr "حدود DHCP start"
+#: ../../standalone.pm_.c:57
+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 ""
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "غير آمن"
+#: ../../standalone.pm_.c:68
+msgid ""
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
+msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "SSH server"
-msgstr "خادم SSH"
+#: ../../standalone.pm_.c:70
+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)"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s قطاع"
+#: ../../standalone.pm_.c:82
+#, fuzzy
+msgid "[keyboard]"
+msgstr "لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­"
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "لا"
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "غواديلوب"
+#: ../../standalone.pm_.c:84
+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 ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Kannada"
-msgstr "كندا"
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
-msgstr "لم أتمكن من إيجاد أي خط.\n"
+#: ../../standalone.pm_.c:94
+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/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "هل تريد أن يقوم زر BackSpace بعمل ÙˆØ¸ÙŠÙØ© زر Delete ÙÙŠ سطر الأوامر؟"
+#: ../../standalone.pm_.c:99
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
+msgstr ""
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "نسبة الإنعاش الرأسي"
+#: ../../standalone.pm_.c:100
+msgid ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
+msgstr ""
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
+#: ../../standalone.pm_.c:114
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Entering step `%s'\n"
+msgid ""
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Niger"
-msgstr "النيجر"
+#: ../../standalone.pm_.c:168
+msgid "Installing packages..."
+msgstr "تركيب طرود ..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "يرجى تسجيل الخروج ثم استخدم Ctrl-Alt-BackSpace"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "Removing %s ..."
-msgstr "جاري حذ٠%s ..."
+msgid "Please relog into %s to activate the changes"
+msgstr "يرجى اعادة تسجيل الدخول الى %s لتنشيط التغييرات"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No printer"
-msgstr "لا طابعة"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "alert configuration"
-msgstr "إعدادات التنبيه"
+#: ../../standalone/drakTermServ_.c:239
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "نقل إعدادات الطابعة"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "خيارات طابعة NetWare"
+#: ../../standalone/drakTermServ_.c:253
+#, fuzzy
+msgid "Enable Server"
+msgstr "خادم قواعد بيانات"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "%s BootSplash (%s) preview"
-msgstr "%s BootSplash (%s) معاينة"
+#: ../../standalone/drakTermServ_.c:260
+#, fuzzy
+msgid "Disable Server"
+msgstr "خادم قواعد بيانات"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "February"
-msgstr "ÙØ¨Ø±Ø§ÙŠØ±"
+#: ../../standalone/drakTermServ_.c:268
+#, fuzzy
+msgid "Start Server"
+msgstr " الخادم NIS"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
-msgstr "عام"
+#: ../../standalone/drakTermServ_.c:275
+#, fuzzy
+msgid "Stop Server"
+msgstr " الخادم NIS"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
+#: ../../standalone/drakTermServ_.c:283
+msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "أض٠مستخدم"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "اعدادات الشبكة (%d موائمات)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "April"
-msgstr "أبريل"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Deactivate now"
-msgstr "قم بإزالة التنشيط الآن"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "الحزمة الضرورية %s Ù…Ùقودة"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "الÙيليبين"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "مواÙÙ‚"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "drakTermServ Overview"
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
-msgstr "اسم ص٠الطابعة"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "هل تريد استخدام aboot؟"
+#: ../../standalone/drakTermServ_.c:294
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "اض٠مستخدم"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belarusian"
-msgstr "البيلاروسية"
+#: ../../standalone/drakTermServ_.c:299
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP العميل"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:328
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
+"\n"
msgstr ""
-"PDQ يدعم Ùقط الطابعات المحلية Ùˆ طابعات LPD البعيدة Ùˆ طابعات Socket/TCP.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move files to the new partition"
-msgstr "انقل Ø§Ù„Ù…Ù„ÙØ§Øª الى تجزئة جديدة"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:332
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."
+"\n"
+"\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
+"\n"
msgstr ""
-"أدخل هنا خادمات CUPS التي تريد استخدام طابعاتها. تحتاج الى عمل ذلك Ùقط ان لم "
-"تقم الخادمات بنشر معلومات الطابعات على الشبك المحلية."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:365
msgid ""
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\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 ""
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
"\n"
-"أهلاً بكم ÙÙŠ معالج اعداد الطابعات\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
"\n"
-"هذا المعالج سيساعدك على تثبيت الطابعة/الطابعات الموصولة بهذا الكمبيوتر.\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
"\n"
-"اذا كانت لديك طابعة/طابعات موصولة بهذه الماكينة, ÙØ¶Ù„اً قم بتوصيلها الى هذا "
-"الكمبيوتر و قم بتشغيلها كي يتم التحقق منها/منهم آلياً.\n"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \n"
"\n"
-" انقر \"التالي\" عندما تكون مستعداً, و على \"الغاء\" اذا لم تكن تريد اعداد "
-"الطابعة/الطابعات الآن."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
-msgstr "بيتكايرن"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Catalog"
-msgstr "استعادة من الكتالوغ"
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "IDE"
-msgstr "IDE"
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
+msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "ÙØ´Ù„ تحميل التجزئة %s ÙÙŠ الدليل %s"
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
-msgstr "شاشة Lilo"
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
+msgstr ""
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO مع قائمة رسومية"
+#: ../../standalone/drakTermServ_.c:573
+#, fuzzy
+msgid "No kernel selected!"
+msgstr "لم يتم ايجاد بطاقة ØªÙ„ÙØ§Ø²!"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "جاري الحساب التقريبي"
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
-msgstr "لا يمكن ازالة اختيار هذه الحزم. انها مثبتة مسبقاً"
+#: ../../standalone/drakTermServ_.c:587
+#, fuzzy
+msgid "No nic selected!"
+msgstr "غير متصل"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", الطابعة \"%s\" على خادم SMB/Windows \"%s\""
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
+msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "هل تريد المتابعة على أي حال؟"
+#: ../../standalone/drakTermServ_.c:604
+#, fuzzy
+msgid "<-- Delete"
+msgstr "إلغاء"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "جاري البحث عن الحزم Ø§Ù„Ù…ØªÙˆÙØ±Ø© Ùˆ اعداة بناء قاعدة بيانات rpm..."
+#: ../../standalone/drakTermServ_.c:611
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "تم اختيار الكل"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#: ../../standalone/drakTermServ_.c:668
msgid ""
-"\n"
-" DrakBackup Report \n"
+"!!! Indicates the password in the system database is different than\n"
+" the one in the Terminal Server database.\n"
+"Delete/re-add the user to the Terminal Server to enable login."
msgstr ""
-"\n"
-" تقرير DrakBackup \n"
-"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "لا يبدو وسيط قابل للكتابة!"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "حدد الخيارات"
+#: ../../standalone/drakTermServ_.c:673
+#, fuzzy
+msgid "Add User -->"
+msgstr "اض٠مستخدم"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr "ÙØ§Ù†Ø§ØªÙˆ"
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakTermServ_.c:720
#, fuzzy, c-format
-msgid "New user list:\n"
+msgid "type: %s"
+msgstr "النوع: "
+
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
msgstr ""
-"\n"
-"-ملÙّات المستخدم:\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "يجب اعطاء اسم الخادم أو رقم IP الخاص بالخادم!"
+#: ../../standalone/drakTermServ_.c:773
+#, fuzzy
+msgid "Thin Client"
+msgstr "DHCP العميل"
-#: ../../any.pm:1
-#, 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\"."
+#: ../../standalone/drakTermServ_.c:775
+#, fuzzy
+msgid "Allow Thin Clients"
+msgstr "DHCP العميل"
+
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
msgstr ""
-"قرص اقلاع مخصص ÙŠÙˆÙØ± طريقة للوصول الى نظام Linux الخاص بك دون\n"
-"الإعتماد على محمّل الإقلاع الإعتيادي. هذا Ù…Ùيد اذا لم تكن تريد تثبيت\n"
-"SILO على نظامك, أو اذا أزال نظام تشغيل آخر LILO, أو اذا لم يتواÙÙ‚ SILO\n"
-"مع تهيئة نظامك. يمكن كذلك استخدام قرص اقلاع مخصص مع\n"
-"Mandrake rescue image, مما يجعل المعالجة من انهيارات النظام الخطيرة أكثر "
-"سهولة.\n"
-"اذا كنت تريد انشاء قرص اقلاع لنظامك, أدخل قرص مرن ÙÙŠ السواقة\n"
-"الأولى Ùˆ اضغط \"مواÙÙ‚\"."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "لا يمكنك استخدام نظام Ù…Ù„ÙØ§Øª مرمّز لنقطة التحميل %s"
+#: ../../standalone/drakTermServ_.c:821
+#, fuzzy
+msgid "<-- Edit Client"
+msgstr "DHCP العميل"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Set the password history length to prevent password reuse."
-msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"Set the password history length to prevent password reuse."
+#: ../../standalone/drakTermServ_.c:837
+#, fuzzy
+msgid "Delete Client"
+msgstr "DHCP العميل"
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
-msgstr "جزيرة نورÙولك"
+#: ../../standalone/drakTermServ_.c:843
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "جاري الإعداد..."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Theme installation failed!"
-msgstr "ÙØ´Ù„ تثبيت السمات"
+#: ../../standalone/drakTermServ_.c:876
+msgid ""
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
-msgstr "لا شيئ للعمل"
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "استخدم لـloopback"
+#: ../../standalone/drakTermServ_.c:901
+#, fuzzy
+msgid "Netmask:"
+msgstr "Netmask"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr "أداة تقرير العيوب ÙÙŠ Mandrake"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
+msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
-msgstr "طبّق المرشّح"
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
+msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pppoe"
-msgstr "استخدم pppoe"
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving files to the new partition"
-msgstr "جاري نقل Ø§Ù„Ù…Ù„ÙØ§Øª الى التجزئة الجديدة"
+#: ../../standalone/drakTermServ_.c:929
+#, fuzzy
+msgid "Domain Name:"
+msgstr "Domain name"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s مع دعم تجريبي للرسوم ثلاثية الأبعاد"
+#: ../../standalone/drakTermServ_.c:937
+#, fuzzy
+msgid "Name Servers:"
+msgstr " الخادم NIS"
-#: ../../help.pm:1 ../../interactive.pm:1
-#, c-format
-msgid "Advanced"
-msgstr "متقدم"
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer"
-msgstr "انقل"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (سويدية)"
+#: ../../standalone/drakTermServ_.c:1001
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "إعداد متقدم"
-#: ../../lang.pm:1
-#, c-format
-msgid "Afghanistan"
-msgstr "Ø£ÙØºØ§Ù†Ø³ØªØ§Ù†"
+#: ../../standalone/drakTermServ_.c:1002
+msgid ""
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "More Options"
-msgstr "خيارات أكثر"
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr "الغ Ù…Ù„ÙØ§Øª tar الخلصة بالقرص تاصلب بعد النسخ الى وسيط آخر."
+#: ../../standalone/drakTermServ_.c:1018
+#, fuzzy
+msgid "Write Config"
+msgstr "إعداة الإعداد"
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "بوروندي"
+#: ../../standalone/drakTermServ_.c:1120
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "أدخل قرص مرن بالدّاخل %s"
-#: ../../services.pm:1
-#, 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."
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
msgstr ""
-"cron هو برنامج UNIX القياسي لتشغيل البرامج المحددة من قبل المستخدم\n"
-"عند أدوقات محددة دورياً. vixie cron يضي٠عدداً من المزايا الى UNIX\n"
-"cron الأساسي, بما Ùيها حماية أمنية Ø£ÙØ¶Ù„, Ùˆ خيارات تهيئة أقوى."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr "Ø§Ø¶Ø§ÙØ© عميل -->"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "اقرأ جيدا!"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
-msgstr "RW"
+#: ../../standalone/drakTermServ_.c:1129
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "آس٠, لا مدخل مرن متاح"
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakTermServ_.c:1138
#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
+msgid "Etherboot ISO image is %s"
msgstr ""
-"ÙØ¶Ù„اً,\n"
-"اطبع tv norm الخاص بك و بلدك"
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "البوابة"
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
-msgstr "لا (للخبراء Ùقط)"
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-msgstr "لم يتم ايجاد نواة!"
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+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
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Press enter to boot the selected OS, 'e' to edit the"
+#: ../../standalone/drakautoinst_.c:40
+msgid "Error!"
+msgstr "خطأ ! "
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakautoinst_.c:41
#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
+msgid "I can't find needed image file `%s'."
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The encryption keys do not match"
-msgstr "Ù…ÙØ§ØªÙŠØ­ التشÙير غير متطابقة"
+#: ../../standalone/drakautoinst_.c:43
+msgid "Auto Install Configurator"
+msgstr "أداة اعداد المثبّت الآلي"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:44
msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
+"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 ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "USB printer"
-msgstr ", طابعة USB"
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Ù…ÙØªØ§Ø­ \"Windows\" الأيمن"
+#: ../../standalone/drakautoinst_.c:62
+#, fuzzy
+msgid "replay"
+msgstr "أيرلندا"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr "if set to yes, check empty password in /etc/shadow."
+#: ../../standalone/drakautoinst_.c:66
+msgid "Automatic Steps Configuration"
+msgstr "إعداد الخطوات الآلية"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:67
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."
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
msgstr ""
-"قبل المتابعة, عليك قراءة بنود الترخيص جيداً. انها\n"
-"تغطي كل توزيعة Mandrake Linux. اذا كنت تواÙÙ‚ على كل البنود\n"
-"الموجودة Ùيها, قم بالتأشبر على صندوق \"%s\". ان لم تقبل, قم بإغلاق\n"
-"الكمبيوتر."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+msgid "Creating auto install floppy"
msgstr ""
-"هذه قائمة بالخيارات Ø§Ù„Ù…ØªÙˆÙØ±Ø© للطباعة على الطابعة الحالية:\n"
-"\n"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "دقة العرض"
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:139
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."
-msgstr ""
-"أداة تهيئة drakfirewall\n"
+"Welcome.\n"
"\n"
-"هذه الأداة تسمح لك بتهيئة جدار ناري شخصي لنظام Mandrake Linux هذا.\n"
-"إذا كنت تريد جدارا ناريا متخصصا, الق نظرة على\n"
-"توزيعة MandrakeSecurity Firewall."
+"The parameters of the auto-install are available in the sections on the left"
+msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid ""
-"Please enter your username, password and domain name to access this host."
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
msgstr ""
-"ÙØ¶Ù„اً أدخل اسم المستخدم, كلمة المرور Ùˆ النطاق الخاص بك للدخول الى هذا "
-"المستضيÙ."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Remove selected host"
-msgstr "احذ٠المستضي٠المختار"
+#: ../../standalone/drakautoinst_.c:235
+msgid ""
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network configuration"
-msgstr "اعدادات الشبكة"
+#: ../../standalone/drakautoinst_.c:273
+msgid "Auto Install"
+msgstr "تثبيت آلي"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/تحقق آلي من _سواقات Jaz"
+#: ../../standalone/drakautoinst_.c:343
+msgid "Add an item"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "No sharing"
-msgstr "لا مشاركة"
+#: ../../standalone/drakautoinst_.c:350
+msgid "Remove the last item"
+msgstr "أزل المادة الأخيرة"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "انقل القاعدة المختارة الى تحت بمستوى واحد"
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
+msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "TB"
-msgstr "تيرابايت"
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:691
+#, fuzzy
msgid "FATAL"
-msgstr "FATAL"
+msgstr "FAT"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh the list"
-msgstr "تحديث القائمة"
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/drakbackup_.c:704
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."
+"\n"
+" DrakBackup Report \n"
+"\n"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbackup_.c:705
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"
+" DrakBackup Daemon Report\n"
+"\n"
"\n"
msgstr ""
-"سيسمح خادم DHCP للكمبيوترات الأخرى بالإقلاع باستخدام PXE ÙÙŠ حدود العناوين "
-"المعطاة.\n"
+
+#: ../../standalone/drakbackup_.c:709
+msgid ""
+"\n"
+" DrakBackup Report Details\n"
"\n"
-"عنوان الشبكة %s يستخدم netmask %s.\n"
"\n"
+msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete"
-msgstr "إلغاء"
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+#, fuzzy
+msgid "Total progess"
+msgstr "اجمالي التقدم"
-#: ../../Xconfig/various.pm:1
+#: ../../standalone/drakbackup_.c:785
#, 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?"
+"%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 ""
-"يمكنني جعل جهازك يبدأ X بشكل آلي بعد الإقلاع.\n"
-"هل تريد X أن بيدأ بعد إعادة تشغيل جهازك؟"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
-msgstr "جهز القرص"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnect %s"
-msgstr "اقطع الإتصال بـ %s"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
-msgstr "الحالة:"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "بروكسي HTTP"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "SSH Server"
-msgstr "خادم SSH"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-الشبكة عن طريق rsync.\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
-msgstr "البروتوكول الأوروبي"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", الطابعة \"%s\" على الخادم \"%s\""
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
msgstr ""
-"تأكد من أن مراقب cron موجود ضمن خدمات النظام. \n"
-"\n"
-"لاحظ أن كل وسائط الشبكة تستخدم القرص الصلب."
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
+#: ../../standalone/drakbackup_.c:801
#, c-format
-msgid "Error"
-msgstr "خطأ"
-
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
-msgstr "اسمح بـ\"su\""
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Australia"
-msgstr "أوستراليا"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "رجاء انتظر أثناء عملية ttmkfdir..."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "قم بإعداد البطاقة \"%s\"%s Ùقط"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Level"
-msgstr "المستوى"
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid "Change the printing system"
-msgstr "تغيير نظام الطباعة"
+msgid "No password prompt on %s at port %s"
+msgstr ""
-#: ../../Xconfig/card.pm:1
+#: ../../standalone/drakbackup_.c:819
#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
+msgid "Bad password on %s"
msgstr ""
-"نظامك يدعم الإعداد متعدد الرؤوس.\n"
-"ماذا تريد أن ØªÙØ¹Ù„ØŸ"
-#: ../../partition_table.pm:1
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "mount failed: "
-msgstr "ÙØ´Ù„ التحميل: "
+msgid "Permission denied transferring %s to %s"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "تهيئة الخدمات"
+#: ../../standalone/drakbackup_.c:821
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "لا يمكن أن ÙŠÙ†ÙØªØ­ %s: %s\n"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid "Broadcast Address:"
-msgstr "عنوان Broadcast:"
+msgid "%s not responding"
+msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakbackup_.c:828
#, 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."
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
msgstr ""
-"نواة Linux تحتاج الى تشغيل حلقة حسابية (Calculation Loop) عند الإقلاع لتنشيط "
-"أداة عد الوقت. يتم Ø­ÙØ¸ النتيجة كـbogomips كطريقة \"للتأكد من صحة\" المعالج."
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "صورة"
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Remote Administration"
-msgstr "ادارة عن بعد"
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-msgstr "تعذرت Ø§Ø¶Ø§ÙØ© الطابعة \"%s\" الى Star Office/OpenOffice.org/GIMP."
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
+msgstr ""
-#: ../../modules.pm:1
-#, c-format
-msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
msgstr ""
-"دعم PCMCIA غير موجود بعد الآن لإصدار النواة 2.2. ÙØ¶Ù„ا استخدم الإصدار 2.4"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Selected All"
-msgstr "تم اختيار الكل"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
+msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Webmin Service"
-msgstr "خدمات Webmin"
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup_.c:1060
#, c-format
-msgid "device"
-msgstr "وحدة"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Enter the directory to save to:"
-msgstr "ÙØ¶Ù„اً اختر الدليل الذي سيتم Ø§Ù„Ø­ÙØ¸ Ùيه:"
+msgid "No tape in %s!"
+msgstr ""
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
-msgstr "اليونان"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
+msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "الكل"
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+msgid "Hard Disk Backup files..."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "أي نظام طباعة تريد أن تستخدم؟"
+#: ../../standalone/drakbackup_.c:1236
+msgid "Backup User files..."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
-msgstr "يوليو"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
+msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Prints into %s"
-msgstr ", جاري الطباعة الى %s"
+#: ../../standalone/drakbackup_.c:1290
+msgid "Backup Other files..."
+msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "ظهر خطأ"
+#: ../../standalone/drakbackup_.c:1296
+msgid "No changes to backup!"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, c-format
msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-"يجب ترقية هذه الحزمة.\n"
-"هل أنت متأكد أنك لا تريد اختيارها؟"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "التاميل (آلة كاتبة)"
-
-#: ../../security/help.pm:1
+#: ../../standalone/drakbackup_.c:1319
#, fuzzy, c-format
-msgid "Use password to authenticate users."
-msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"Use password to authenticate users."
+msgid ""
+"file list sent by FTP: %s\n"
+" "
+msgstr "ارسال Ø§Ù„Ù…Ù„ÙØ§Øª عن طريق FTP"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:1322
msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
-msgstr ""
-"Arguments: (arg)\n"
"\n"
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
-msgstr "يدوي"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "مصنّع الطابعة, الطراز, المشغّل"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1340
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-"لا يوجد وسط أو ربما يكون الوسط محمي من القراءة للجهاز %s.\n"
-"ÙØ¶Ù„اً ادخل وسط ÙÙ‰ الوحدة."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1345
msgid ""
-"Directory %s already contains data\n"
-"(%s)"
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-"الدليل %s يحتوي مسبقا على بعض البيانات\n"
-"(%s)"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "طابعة على خادم NetWare"
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "اكتب حجم الذاكرة بالميغابايت"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr "الجمعة"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Disconnection from Internet complete."
-msgstr "اكتمل قطع الإتصال بالإنترنت"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "الاسم الحقيقي"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "done"
-msgstr "انتهى"
+#: ../../standalone/drakbackup_.c:1354
+msgid " Error during mail sending. \n"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "ÙØ¶Ù„اً قم بإزالة التأشير أو احذÙها ÙÙŠ المرة القادمة."
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
+msgstr ""
-#: ../../security/level.pm:1
-#, c-format
-msgid "Higher"
-msgstr "Ù…Ø±ØªÙØ¹ أكثر"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+msgid "File Selection"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "اختر التجزئات التي تريد تجهيزها"
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
+msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1573
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"
+"Please check all options that you need.\n"
msgstr ""
-"لم يتم ايجاد بطاقة ØªÙ„ÙØ§Ø² على جهازك. ÙØ¶Ù„اً تأكد من أن بطاقة الÙيديو/Ø§Ù„ØªÙ„ÙØ§Ø² "
-"المدعومة ÙÙŠ Linux موصولة بشكل صحيح.\n"
-"\n"
-"\n"
-"يمكنك زيارة قاعدة بيانات العتاد المدعوم الخاصة بنا على:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't find %s on %s"
-msgstr "تعذر ايجاد %s على %s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "اليابانية 106 Ù…ÙØ§ØªÙŠØ­"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
+#: ../../standalone/drakbackup_.c:1574
+msgid ""
+"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
-msgstr "سيستغرق هذا بضع دقائق."
+#: ../../standalone/drakbackup_.c:1575
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "انسخ Ù…Ù„ÙØ§Øª النظام قبل:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
-msgstr "Ø¨ÙˆØ±ÙƒÙŠÙ†Ø§ÙØ§Ø³Ùˆ"
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "June"
-msgstr "يونيو"
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "استخدم الماسحات الضوئية على الحوايسب البعيدة"
+#: ../../standalone/drakbackup_.c:1578
+msgid ""
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
+msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Delete selected rule"
-msgstr "احذ٠القاعدة المختارة"
+#: ../../standalone/drakbackup_.c:1595
+msgid "Please check all users that you want to include in your backup."
+msgstr "رجاء اختر كل المستخدمين الذين تريد تضمينهم ÙÙŠ النسخ الإحتياطي."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "الوصول الى الطابعات على خادمات CUPS البعيدة"
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "أدخل قرص مرن ÙÙŠ %s"
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
-msgstr "جزر المالديÙ"
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+msgid "Remove Selected"
+msgstr "ازل المادة المختارة"
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "مدمج"
+#: ../../standalone/drakbackup_.c:1679
+msgid "Windows (FAT32)"
+msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
-msgstr "دقيقة واحدة"
+#: ../../standalone/drakbackup_.c:1714
+msgid "Users"
+msgstr "المستخدمون"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: fat"
-msgstr "النوع: سميك"
+#: ../../standalone/drakbackup_.c:1740
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "on channel %d id %d\n"
-msgstr "على القناة %d id %d\n"
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
-msgstr ", جهاز متعدد الوظائÙ"
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr "لاوس"
+#: ../../standalone/drakbackup_.c:1747
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
-#: ../advertising/04-configuration.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1748
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!"
+" Transfer \n"
+"Now"
msgstr ""
-"ÙŠÙˆÙØ± Mandrake Linux 9.2 لك مركز تحكم Mandrake, Ùˆ وهو أداة قوية لتعديل حاسوبك "
-"ليناسب احتياجاتك و لتهيئة و تخصيص عناصر مثل مستوى الأمن و الأجهزة الملحقة "
-"(الشاشة, Ø§Ù„ÙØ£Ø±Ø© لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­...), وصلة الإنترنت Ùˆ غير ذلك الكثير!"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
+#: ../../standalone/drakbackup_.c:1749
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"Activate/Disable ethernet cards promiscuity check."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr "لا توجد تجزئة FAT قابل لتغيير حجمها (أو لا توجد مساحة كاÙية متبقية)"
+#: ../../standalone/drakbackup_.c:1753
+msgid "Please enter the host name or IP."
+msgstr "ÙØ¶Ù„ا أدخل اسم المستضي٠أو عنوان IP."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr "Ùوق"
+#: ../../standalone/drakbackup_.c:1758
+#, fuzzy
+msgid ""
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
+msgstr "ÙØ¶Ù„اً أدخل الدليل الموجودة Ùيه النسخ الإحتياطية"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
-msgstr "جدار ناري"
+#: ../../standalone/drakbackup_.c:1763
+msgid "Please enter your login"
+msgstr "رجاء أدخل اسم الدخول"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr "المنطقة :"
+#: ../../standalone/drakbackup_.c:1768
+msgid "Please enter your password"
+msgstr "رجاء كلمة المرور"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr "متحكمات (E)IDE/ATA"
+#: ../../standalone/drakbackup_.c:1774
+msgid "Remember this password"
+msgstr "تذكّر كلمة السّرّ هذه "
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "خادم الطابعة"
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
+msgstr "إلى المساعد CD/DVDROM الاستعمال "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Custom configuration"
-msgstr "تهيئة مخصصة"
-
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1882
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"
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-"ÙØ¶Ù„اً أخبر عن مكان صورة التثبيت.\n"
-"\n"
-"اذا لم يكن هناك دليل موجود, ÙØ¶Ù„اً انسخ محتويات القرص المدمج أو قرص DVD.\n"
-"\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr "سانت بيير و ميكيلون"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
-msgstr "سبتمبر"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "جاري Ø­ÙØ¸ سمة Bootsplash..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
-msgstr "البرتغال"
+#: ../../standalone/drakbackup_.c:1887
+#, fuzzy
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "رجاء اختر مساحة القرص المدمج"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "هل عندك واحدة أخرى؟"
+#: ../../standalone/drakbackup_.c:1893
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "ÙØ¶Ù„ا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", printing to %s"
-msgstr ", جاري الطباعة الى %s"
+#: ../../standalone/drakbackup_.c:1899
+msgid "Please check if you are using CDRW media"
+msgstr "ÙØ¶Ù„ا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "عيّن اسم المستضي٠من عنوان DHCP"
+#: ../../standalone/drakbackup_.c:1905
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Ùيما مضى CDRW من ÙØ¶Ù„Ùƒ ÙØ­Øµ ,إذا أردت أن تمحو "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to normal mode"
-msgstr "الانتقال الى الوضع العادي"
+#: ../../standalone/drakbackup_.c:1906
+msgid " Erase Now "
+msgstr ""
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
-msgstr "Generic"
+#: ../../standalone/drakbackup_.c:1912
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "ÙØ¶Ù„ا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "الاسطوانة %d الى %d\n"
+#: ../../standalone/drakbackup_.c:1918
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "ÙØ¶Ù„ا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
+#: ../../standalone/drakbackup_.c:1931
+msgid ""
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "New profile..."
-msgstr "تشكيل جديد..."
+#: ../../standalone/drakbackup_.c:1964
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "اختر ملÙ"
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
-#, c-format
-msgid "NONE"
+#: ../../standalone/drakbackup_.c:2012
+msgid "Use tape to backup"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "أي قرص تريد نقله؟"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Display logo on Console"
-msgstr "اعرض الشعار ÙÙŠ سطر الأوامر"
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Windows Domain"
-msgstr "نطاق Windows"
+#: ../../standalone/drakbackup_.c:2021
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Ùيما مضى CDRW من ÙØ¶Ù„Ùƒ ÙØ­Øµ ,إذا أردت أن تمحو "
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Saami (norwegian)"
-msgstr "Dvorak (نرويجيةّ)"
+#: ../../standalone/drakbackup_.c:2027
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Ùيما مضى CDRW من ÙØ¶Ù„Ùƒ ÙØ­Øµ ,إذا أردت أن تمحو "
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Interface %s (on network %s)"
-msgstr "الواجهة %s (على الشبكة %s)"
+#: ../../standalone/drakbackup_.c:2033
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Ùيما مضى CDRW من ÙØ¶Ù„Ùƒ ÙØ­Øµ ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
-msgstr "INFO"
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
+msgid ""
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
-msgstr "واليس Ùˆ Ùوتونا"
+#: ../../standalone/drakbackup_.c:2103
+#, fuzzy
+msgid "Please enter the directory to save to:"
+msgstr "ÙØ¶Ù„اً أدخل الدليل الموجودة Ùيه النسخ الإحتياطية"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "لا حاجة الى انشاء /etc/dhcpd.conf أولاً!"
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+msgid "Use quota for backup files."
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
-msgstr "هل FPU موجود"
+#: ../../standalone/drakbackup_.c:2180
+msgid "Network"
+msgstr "الشبكة"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"No additional information\n"
-"about this service, sorry."
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
msgstr ""
-"عÙواً, لا توجد معلومات\n"
-"اضاÙية حزل هذه الحزمة."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "لا توجد ماسحات ضوئية Ù…ØªÙˆÙØ±Ø© على نظامك.\n"
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
+msgstr "HardDrive / NFS"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "ابني NIC واحدة -->"
+#: ../../standalone/drakbackup_.c:2195
+#, fuzzy
+msgid "Tape"
+msgstr "النوع"
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "جزر مارشال"
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
+msgstr "كلّ ساعة "
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "هل هذا صحيح ؟ "
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
+msgstr "يوميًّا "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
+msgstr "أسبوعيّا"
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr "كلمة مرور المستخدم الجذر"
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
+msgstr "شهريا"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "ابني كل اصدارات النواة -->"
+#: ../../standalone/drakbackup_.c:2229
+msgid "Use daemon"
+msgstr "استخدم المراقب"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "DVDRAM device"
-msgstr "وحدة"
+#: ../../standalone/drakbackup_.c:2234
+msgid ""
+"Please choose the time \n"
+"interval between each backup"
+msgstr ""
+"ÙØ¶Ù„ا اختر Ø§Ù„ÙØªØ±Ø© \n"
+"ما بين كل عملية نسخ احتياطي"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
-msgstr "if set to yes, report unowned files."
+#: ../../standalone/drakbackup_.c:2240
+msgid ""
+"Please choose the\n"
+"media for backup."
+msgstr ""
+"رجاء اختر\n"
+"وسيط النسخ الاحتياطي"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2247
msgid ""
-"You don't have a swap partition.\n"
+"Please be sure that the cron daemon is included in your services. \n"
"\n"
-"Continue anyway?"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-"ليست لديك تجزئة تبديل.\n"
-"\n"
-"هل تريد المتابعة على أي حال؟"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Version: "
-msgstr "الإصدار:"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Server IP missing!"
-msgstr "IP الخادم Ù…Ùقود!"
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Suriname"
-msgstr "سورينام"
+#: ../../standalone/drakbackup_.c:2324
+msgid "What"
+msgstr "ماذا "
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid "Use a floppy"
-msgstr "Ø§Ø­ÙØ¸ على قرص مرن"
+#: ../../standalone/drakbackup_.c:2329
+msgid "Where"
+msgstr "أين"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
-msgstr "تمكين ACPI"
+#: ../../standalone/drakbackup_.c:2334
+msgid "When"
+msgstr "متى "
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
-msgstr ""
+#: ../../standalone/drakbackup_.c:2339
+msgid "More Options"
+msgstr "خيارات أكثر"
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
-msgstr "بيئات رسومية"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+msgid "Drakbackup Configuration"
+msgstr "إعدادات Drakbackup"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
-msgstr "جبل طارق"
+#: ../../standalone/drakbackup_.c:2376
+msgid "Please choose where you want to backup"
+msgstr "رجاء اختر أين تريد النسخ الاحتياطي."
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Do nothing"
-msgstr "لا ØªÙØ¹Ù„ شيئاً"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
+msgstr "على القرص الصّلب"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete Client"
-msgstr "احذ٠العميل"
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
+msgstr "عبر الشّبكة"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "نوع نظام Ø§Ù„Ù…ÙØ§Øª: "
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting network..."
-msgstr "جاري بدء الشبكة..."
+#: ../../standalone/drakbackup_.c:2406
+msgid "on Tape Device"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
-msgstr "Ùييتنام"
+#: ../../standalone/drakbackup_.c:2449
+msgid "Please choose what you want to backup"
+msgstr "رجاء اختر ما تريد نسخه احتياطياً"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_Fields description"
-msgstr "/_وص٠الحقول"
+#: ../../standalone/drakbackup_.c:2450
+msgid "Backup system"
+msgstr "نظام المساعد"
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr "حسّن مستوى الأمن"
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
+msgstr "مستخدمو المساعد"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
+msgstr "اخترالمستخدم يدويًّا"
+
+#: ../../standalone/drakbackup_.c:2537
msgid ""
"\n"
+"Backup Sources: \n"
+msgstr ""
"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
+"مصادر المساعد :\n"
+
+#: ../../standalone/drakbackup_.c:2538
+msgid ""
"\n"
+"- System Files:\n"
msgstr ""
"\n"
+"-ملÙّات النّظام :\n"
+
+#: ../../standalone/drakbackup_.c:2540
+msgid ""
"\n"
-" شكر خاص:\n"
-"\t- مشروع LTSP http://www.ltsp.org\n"
-"\t- مايكل براون <mbrown@fensystems.co.uk>\n"
+"- User Files:\n"
+msgstr ""
"\n"
+"-ملÙّات المستخدم:\n"
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Help"
-msgstr "مساعدة"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Check if the network devices are in promiscuous mode"
-msgstr "if set to yes, check if the network devices are in promiscuous mode."
+#: ../../standalone/drakbackup_.c:2542
+msgid ""
+"\n"
+"- Other Files:\n"
+msgstr ""
+"\n"
+"-الملÙّات الأخرى:\n"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakbackup_.c:2544
#, c-format
-msgid "Your personal phone number"
-msgstr "رقم الهات٠الشخصي الخاص بك"
+msgid ""
+"\n"
+"- Save on Hard drive on path: %s\n"
+msgstr ""
+"\n"
+"- Ø§Ø­ÙØ¯ القرص الصّلب على الطّريق :%s\n"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which size do you want to keep for Windows on"
-msgstr "على أي مساحة تريد Ø­ÙØ¸ Windows"
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2553
msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
+"\n"
+"- Burn to CD"
msgstr ""
-"تم ارسال Ø§Ù„ØµÙØ­Ø§Øª الإختبارية الى الطابعة.\n"
-"قد يستغرق هذا بعض الوقت حتى تبدأ الطابعة.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Username required"
-msgstr "ÙŠÙØ­ØªØ§Ø¬ الى اسم المستخدم"
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
+msgstr ""
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/drakbackup_.c:2555
#, fuzzy, c-format
-msgid "Device"
-msgstr "الجهاز: "
+msgid " on device: %s"
+msgstr "جهاز Ø§Ù„ÙØ£Ø±Ø©: %s\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2557
+#, fuzzy, 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."
+"- Save to Tape on device: %s"
msgstr ""
-"اعتماداً على اللغة Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠØ© التي اخترتها ÙÙŠ هذا القسم, سيقوم DrakX\n"
-"باختيار تهيئة لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ آلياً. عموماً,\n"
-"ربما ليست لديك لوحة Ù…ÙØ§ØªÙŠØ­ مقابلة بشكل مباشر للغتك:\n"
-"مثلاً ربما تكون عربياً متكلماً باللغة الإنجليزية, ربما تكون لديك\n"
-"لوحة Ù…ÙØ§ØªÙŠØ­ سويسرية. اذا كنت تتكلم الإنجليزية لكن موجود ÙÙŠ كيبك, ربما\n"
-"تجد Ù†ÙØ³Ùƒ ÙÙŠ Ù†ÙØ³ الموق٠حيث لا تتطابق لغتك مع لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­.\n"
-"ÙÙŠ الحالتين, ستسمح لك خطوة التثبيت ستسمح لك باختيار\n"
-"لوحة Ù…ÙØ§ØªÙŠØ­ مناسبة من القائمة.\n"
"\n"
-"انقر زر \"%s\" لعرض قائمة بكل لوحات Ø§Ù„Ù…ÙØ§ØªÙŠØ­\n"
-"المدعومة.\n"
-"\n"
-"اذا اخترت لوحة Ù…ÙØ§ØªÙŠØ­ لحرو٠غير لاتينية, ÙØ³ÙŠØ³Ù…Ø­ لك\n"
-"مربع الحوار التالي باختيار اختصارات لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ التي\n"
-"ستغير وضع لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ بين الحرو٠اللاتينية Ùˆ الغير لاتينية."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "خيارات طابعة SMB (Windows 9x/NT)"
+"-FTP Ùˆ على host Ø§Ø­ÙØ¯ على: %s\n"
-#: ../../printer/main.pm:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "URI: %s"
+msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
+#: ../../standalone/drakbackup_.c:2561
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save via %s on host: %s\n"
msgstr ""
+"\n"
+"-FTP Ùˆ على host Ø§Ø­ÙØ¯ على: %s\n"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "mkinitrd optional arguments"
-msgstr "mkinitrd الخصائص الاختيارية"
-
-#: ../advertising/03-software.pl:1
+#: ../../standalone/drakbackup_.c:2562
#, c-format
msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
msgstr ""
-"ØªØµÙØ­ الإنترنت مع Mozilla أو Konqueror, اقرأ البريد باستخدام Evolution أو "
-"KMail, انشئ مستنداتك مع OpenOffice.org"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "بروتوكول لبقية العالم"
+#: ../../standalone/drakbackup_.c:2563
+msgid ""
+"\n"
+"- Options:\n"
+msgstr ""
+"\n"
+"- خيارات:\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print test pages"
-msgstr "اطبع ØµÙØ­Ø§Øª اختبارية"
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Activate now"
-msgstr "قم بالتنشيط الآن"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
+msgstr "\tBackups use tar and bzip2\n"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
-msgstr "64 ميغابايت أو أكثر"
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
+msgstr "\tBackups use tar and gzip\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2572
#, 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."
+"\n"
+"- Daemon (%s) include:\n"
msgstr ""
-"ÙØ¶Ù„اً اختر Ø§Ù„ØµÙØ­Ø§Øª الإختبارية التي تود طباعتها.\n"
-"ملحوظة: Ø§Ù„ØµÙØ­Ø© الإختبارية لصورة ستستغرق وقتاً طويلاً لطباعتها Ùˆ على طابعات "
-"الليزر بكمية ذاكرة قليلة قد لا يتم طباعتها مطلقاً. ÙÙŠ أغلب الأحيان يكÙÙŠ أن "
-"تطبع Ø§Ù„ØµÙØ­Ø© الإختبارية القياسية."
+"\n"
+"-Daemon (%s) include :\n"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "ÙØ¶Ù„اً اختر الجهاز المتصل به %s"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Not formatted\n"
-msgstr "غير مجهز\n"
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
+msgstr "\t-CDROM.\n"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Periodic Checks"
-msgstr "تأكد دوري"
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
+msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "PXE Server Configuration"
-msgstr "تهيئة خادم PXE"
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
+msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup the system files before:"
-msgstr "انسخ Ù…Ù„ÙØ§Øª النظام قبل:"
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
+msgstr "\t-Network by SSH.\n"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2578
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Network by FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2579
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Network by FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2587
msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
+"List of data to restore:\n"
+"\n"
msgstr ""
-"هذا هو المستوى الأمني القياسي للحاسوب الذي سيستخدم للإتصال بالإنترنت كعميل."
-#: ../../any.pm:1
-#, c-format
-msgid "First floppy drive"
-msgstr "سواقة القرص المرن الأولى"
+#: ../../standalone/drakbackup_.c:2754
+msgid ""
+"List of data corrupted:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr "/ملÙ/_خروج"
+#: ../../standalone/drakbackup_.c:2756
+msgid "Please uncheck or remove it on next time."
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak"
-msgstr "Dvorak"
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose the new size"
-msgstr "اختر الحجم الجديد"
+#: ../../standalone/drakbackup_.c:2787
+msgid " All of your selected data have been "
+msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "Media class"
-msgstr "ÙØ¦Ø© الوسيط"
+msgid " Successfuly Restored on %s "
+msgstr ""
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
+#: ../../standalone/drakbackup_.c:2906
+msgid " Restore Configuration "
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
-msgstr "الـ %s غير معرو٠من قبل هذا الإصدار من Scannerdrake."
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
+msgstr "اضغط مواÙÙ‚ لاستعادة Ù…Ù„ÙØ§Øª اخرى"
-#: ../../lang.pm:1
-#, c-format
-msgid "Faroe Islands"
-msgstr "جزر الÙيرو"
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
+msgstr "قائمة المستخدمين الذين سيتم استعادتهم"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Restart XFS"
-msgstr "أعد تشغيل XFS"
+#: ../../standalone/drakbackup_.c:3019
+msgid "Backup the system files before:"
+msgstr "انسخ Ù…Ù„ÙØ§Øª النظام قبل:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
-msgstr "أض٠مستضيÙ/شبكة"
+#: ../../standalone/drakbackup_.c:3021
+msgid "please choose the date to restore"
+msgstr "رجاء اختر تاريخ الإستعادة"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr ""
+#: ../../standalone/drakbackup_.c:3057
+msgid "Use Hard Disk to backup"
+msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model name"
-msgstr "اسم الطراز"
+#: ../../standalone/drakbackup_.c:3060
+msgid "Please enter the directory to save:"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
-msgstr "ألبانيا"
+#: ../../standalone/drakbackup_.c:3103
+msgid "FTP Connection"
+msgstr "وصلة FTP"
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr "منطقة جزر المحيط الهادي البريطانية"
+#: ../../standalone/drakbackup_.c:3110
+msgid "Secure Connection"
+msgstr "وصلة آمنة"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Normal Mode"
-msgstr "وضع عادي"
+#: ../../standalone/drakbackup_.c:3134
+msgid "Restore from Hard Disk."
+msgstr "استعد من القرص الصلب"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "لا يوجد قرص CD-R/DVD-R ÙÙŠ السواقة"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
+msgstr "ÙØ¶Ù„اً أدخل الدليل الموجودة Ùيه النسخ الإحتياطية"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer connection type"
-msgstr "نوع وصلة الطابعة"
+#: ../../standalone/drakbackup_.c:3204
+msgid "Select another media to restore from"
+msgstr "اختر وسيط آخر للاستعادة منه"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
-msgstr "لا موائم شبكة على نظامك"
+#: ../../standalone/drakbackup_.c:3206
+msgid "Other Media"
+msgstr "وسيط آخر"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network %s"
-msgstr "الشبكة %s"
+#: ../../standalone/drakbackup_.c:3211
+msgid "Restore system"
+msgstr "استعد النّظام"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
-msgstr "المالايالام"
+#: ../../standalone/drakbackup_.c:3212
+msgid "Restore Users"
+msgstr "أعد المستخدمين "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
-msgstr "الخيار %s خارج المتوسط!"
+#: ../../standalone/drakbackup_.c:3213
+msgid "Restore Other"
+msgstr "استعد آخر"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connect %s"
-msgstr "اتصل بـ %s"
+#: ../../standalone/drakbackup_.c:3215
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "اختر مسار الإستعادة (بدلاً من / )"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "جاري اعادة تشغيل CUPS..."
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
+msgstr "قم بنسخ احتياطي جديد ÙØ¨Ù„ الإستعادة (Ùقط للنسخ الإحتياطية المتدرجة)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Printing/Scanning/Photo Cards on \"%s\""
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
+msgstr "أزل أدلة المستخدمين قبل الإستعادة"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
+#: ../../standalone/drakbackup_.c:3334
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "نقطة تحميل مكررّة %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
-msgstr "if set to yes, run chkrootkit checks."
+#: ../../standalone/drakbackup_.c:3344
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "ازل المادة المختارة"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "اعدادات الوصلة"
+#: ../../standalone/drakbackup_.c:3361
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "استعد آخر"
-#: ../../harddrake/v4l.pm:1
+#: ../../standalone/drakbackup_.c:3427
#, c-format
-msgid "Unknown|Generic"
-msgstr "غير معروÙ|عام"
+msgid "Backup files not found at %s."
+msgstr ""
-#: ../../help.pm:1
+#: ../../standalone/drakbackup_.c:3440
#, 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."
-msgstr ""
-"ÙÙŠ الوقت الذي تقوم Ùيه بتثبيت Mandrake Linux, قد يكون تم تحديث\n"
-"بعض الحزم منذ الإصدار الأول, ربما يكون تم اصلاح بعض العيوب\n"
-"أو تم حل المشاكل الأمنية. لكي تستÙيد من هذه التحديثات,يمكنك\n"
-"الآن تنزيل هذه التحديثات عبر الإنترنت. اختر\n"
-"\"%s\" اذا كانت لديك وصلة انترنت عاملة, أو \"%s\" اذا كنت ØªÙØ¶Ù„\n"
-"تثبيت هذه التحديثات لاحقاً.\n"
-"\n"
-"اختيار \"%s\" يعرض قائمة بالأماكن التي يمكن منها الحصول\n"
-"على التحديثات. اختر المكان الأقرب اليك. سيتم عرض قائمة بالحزم\n"
-"راجع اختياراتك, ثم اضغط \"%s\" لتنزيل و تثبيت\n"
-"الحزم المختارة, أو \"%s\" لإحباط التحديث."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-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
-#, c-format
-msgid "Quit"
-msgstr "خروج"
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "تحديد آلي"
+#: ../../standalone/drakbackup_.c:3440
+#, fuzzy
+msgid "Restore From CD"
+msgstr "استعد من القرص الصلب"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:3442
#, c-format
-msgid "Check bad blocks?"
-msgstr "تحقق من البلوكات السيئة؟"
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
-#: ../../harddrake/data.pm:1
+#: ../../standalone/drakbackup_.c:3452
#, c-format
-msgid "Other MultiMedia devices"
-msgstr "أجهز وسائط متعددة أخرى"
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "burner"
-msgstr "ناسخ أقراص"
+#: ../../standalone/drakbackup_.c:3452
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "استعادة جدول التقسيم"
-#: ../../standalone/drakbug:1
+#: ../../standalone/drakbackup_.c:3454
#, c-format
-msgid "Bug Description/System Information"
+msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid " (Default is all users)"
-msgstr "المستخدم Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠ"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "No remote machines"
-msgstr "لا أجهزة بعيدة"
+#: ../../standalone/drakbackup_.c:3474
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "أعد المستخدمين "
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:3474
#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
+msgid "Restore Via Network Protocol: %s"
msgstr ""
-"\n"
-"أهلاً بكم ÙÙŠ معالج اعداد الطابعات\n"
-"\n"
-"هذا المعالج سيساعدك على تثبيت الطابعة/الطابعات الموصولة بهذا الكمبيوتر.\n"
-"\n"
-"اذا كانت لديك طابعة/طابعات موصولة بهذه الماكينة, ÙØ¶Ù„اً قم بتوصيلها الى هذا "
-"الكمبيوتر و قم بتشغيلها كي يتم التحقق منها/منهم آلياً.\n"
-"\n"
-" انقر \"التالي\" عندما تكون مستعداً, و على \"الغاء\" اذا لم تكن تريد اعداد "
-"الطابعة/الطابعات الآن."
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "تحقق NIS"
+#: ../../standalone/drakbackup_.c:3475
+#, fuzzy
+msgid "Host Name"
+msgstr "Host اسم "
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "خيار ``تشديد خيارات سطر الأوامر`` بدون قائدة من دون كلمة مرور"
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "مشاركة الإتصال بالإنترنت ممكنة حاليا"
+#: ../../standalone/drakbackup_.c:3483
+#, fuzzy
+msgid "Password required"
+msgstr "كلمة المرور"
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "الإمارات العربية المتحدة"
+#: ../../standalone/drakbackup_.c:3489
+#, fuzzy
+msgid "Username required"
+msgstr "اسم المستخدم"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "Card IO_0"
+#: ../../standalone/drakbackup_.c:3492
+#, fuzzy
+msgid "Hostname required"
+msgstr "اسم المستضي٠:"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "تايلاند"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "Card IO_1"
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
+msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
-msgstr "ابحث:"
+#: ../../standalone/drakbackup_.c:3513
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "استعد آخر"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "كازاخستان"
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
+msgstr "استعد كل النسخ الإحتياطية"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
-msgstr "الموجهات:"
+#: ../../standalone/drakbackup_.c:3760
+msgid "Custom Restore"
+msgstr "استعادة مخصصة"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Write"
-msgstr "اكتب %s"
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "اعرض كل طابعات CUPS البعيدة Ø§Ù„Ù…ØªÙˆÙØ±Ø©"
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
+msgstr ""
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "تثبيت Mandrake Linux %s"
+#: ../../standalone/drakbackup_.c:3813
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "استعادة جدول التقسيم"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
-msgstr "مشغل غير معروÙ"
+#: ../../standalone/drakbackup_.c:3841
+#, fuzzy
+msgid "Restore Progress"
+msgstr "أعد المستخدمين "
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ التايلاندية"
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+msgid "Previous"
+msgstr "السابق"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr "جزيرة بوÙيه"
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+msgid "Save"
+msgstr "Ø­ÙØ¸"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "خيارات الإتصال"
+#: ../../standalone/drakbackup_.c:3946
+msgid "Build Backup"
+msgstr "ابني النسخة الإحتياطية"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "اذا لم يتم اعطاء Ù…Ù†ÙØ°, سيتم اتخاذ 631 ÙƒÙ…Ù†ÙØ° Ø§ÙØªØ±Ø§Ø¶ÙŠ."
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+msgid "Restore"
+msgstr "استعادة"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4189
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."
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4195
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."
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
msgstr ""
-"غير القرص المدمج!\n"
-"\n"
-"ÙØ¶Ù„اً أدخل القرص المدمج المسمى \"%s\" ÙÙŠ السواقة Ùˆ انقر مواÙÙ‚ عندما تنتهي.\n"
-"اذا لم يكن القرص لديك, اضغط الغاء لتجنب التثبيت من هذا القرص المدمج."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "البولندية"
+#: ../../standalone/drakbackup_.c:4209
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "الحزمة %s يجب أن ØªÙØ«Ø¨Ù‘ت. هل تريد تثبيتها؟"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Online"
-msgstr "Mandrake Online"
+#: ../../standalone/drakbackup_.c:4232
+msgid "Please select data to restore..."
+msgstr "رجاء اختر تاريخ الإستعادة..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
-msgstr "\t-الشبكة عن طريق webdav.\n"
+#: ../../standalone/drakbackup_.c:4267
+msgid "Please select media for backup..."
+msgstr "رجاء اختر وسيط النسخ الإحتياطي..."
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", جهاز متعدد الوظائ٠على Ø§Ù„Ù…Ù†ÙØ° المتوازي #%s"
+#: ../../standalone/drakbackup_.c:4275
+msgid "Please select data to backup..."
+msgstr "رجاء اختر البيانات المطلوب نسخها احتياطيا..."
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-"لم يتم اكتشا٠موائم ايثرنت على نظامك. ÙØ¶Ù„اً قم بتشغيل أداة تهيئة العتاد."
+"لم يتم ايجاد مل٠تهيئة \n"
+"ÙØ¶Ù„ا اضغط معالج لأو متقدم."
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "Netmask"
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
+msgstr "تحت التطوير ... انتظر ÙØ¶Ù„ا"
-#
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "No hard drives found"
-msgstr "نعذر ايجاد أقراص صلبة"
+#: ../../standalone/drakbackup_.c:4382
+msgid "Backup system files"
+msgstr "انسخ Ù…Ù„ÙØ§Øª النظام"
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "زرّين"
+#: ../../standalone/drakbackup_.c:4384
+msgid "Backup user files"
+msgstr "انسخ Ù…Ù„ÙØ§Øª المستخدم"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
+#: ../../standalone/drakbackup_.c:4386
+msgid "Backup other files"
+msgstr "انسخ Ù…Ù„ÙØ§Øª أخرى"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "ما هو نوع وصلة ISDN لديك؟"
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
+msgstr "اجمالي التقدم"
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "عنوان"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
+msgstr "ارسال Ø§Ù„Ù…Ù„ÙØ§Øª عن طريق FTP"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "Ø§Ø­ÙØ¸ على قرص مرن"
+#: ../../standalone/drakbackup_.c:4416
+msgid "Sending files..."
+msgstr "جاري ارسال Ø§Ù„Ù…Ù„ÙØ§Øª..."
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Check open ports"
-msgstr "تم اكتشاÙÙ‡ على Ø§Ù„Ù…Ù†ÙØ° %s"
+#: ../../standalone/drakbackup_.c:4500
+msgid "Backup Now from configuration file"
+msgstr "قم بالنسخ الآن من مل٠التهيئة"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Edit selected printer"
-msgstr "حرر الخادم المختار"
+#: ../../standalone/drakbackup_.c:4505
+msgid "View Backup Configuration."
+msgstr "اعرض تهيئة النسخ الإحتياطي"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection"
-msgstr "تحقق آلي من الطابعات"
+#: ../../standalone/drakbackup_.c:4526
+msgid "Wizard Configuration"
+msgstr "إعدادات المعالج"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "أي من الآتي هي بطاقة ISDN الخاصة بك؟"
+#: ../../standalone/drakbackup_.c:4531
+msgid "Advanced Configuration"
+msgstr "إعداد متقدم"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
-"This service provides NFS server functionality, which is configured via the\n"
-"/etc/exports file."
-msgstr ""
-"NFS بروتوكول شائع لمشاركة Ø§Ù„Ù…Ù„ÙØ§Øª على شبكات TCP/IP.\n"
-"هذه الخدمة ØªÙˆÙØ± وظائ٠NFS للأجهزة الخادمة, Ùˆ التي يتم تهيئتها عن طريق\n"
-"مل٠/etc/exports."
+#: ../../standalone/drakbackup_.c:4536
+msgid "Backup Now"
+msgstr "قم بالنسخ الإحتياطي الآن"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Msec"
-msgstr "Msec"
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
+msgstr "Drakbackup"
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4624
msgid ""
-"=> Notice, a label changed:\n"
-"%s"
+"options description:\n"
+"\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
msgstr ""
-"=> Notice, a label changed:\n"
-"%s"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
-msgstr "Number of capture buffers:"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Your choice? (0/1, default `%s') "
+#: ../../standalone/drakbackup_.c:4654
+msgid ""
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4662
msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a file system).\n"
+"options description:\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"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\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"
+" - Backup User files: \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"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
"\n"
-"Click on \"%s\" when you are ready to format partitions.\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \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 ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "French"
-msgstr "Ø§Ù„ÙØ±Ù†Ø³ÙŠØ©"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTY)"
-msgstr "التشيكية (QWERTY)"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Allow X Window connections"
-msgstr "وصلة Winmodem"
-
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "جاري التحقق من العتاد"
-
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
-#, c-format
-msgid "Net Device"
-msgstr "جهاز الشبكة"
-
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "ملخص"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-" (Ø§Ù„Ù…Ù†Ø§ÙØ° المتوازية: /dev/lp0, /dev/lp1, ..., مماشل لـ LPT1:, LPT2:, ..., "
-"طابعة USB الأولي: /dev/usb/lp0, طابعة USB الثانية: /dev/usb/lp1, ...)"
-
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Next"
-msgstr "التالي"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "يمكنك تثبيت محمّل الإقلاع على التجزئة %s\n"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
-msgstr "بورتوريكو"
-#: ../../network/network.pm:1
-#, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp/zeroconf)"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4701
msgid ""
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"Welcome.\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
"\n"
-"أهلاً بكم.\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
"\n"
-"معاوملات التثبيت الآلي موجودة على القسم الأيسر"
+"\n"
+"\n"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4727
+#, fuzzy
msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
-"حزمة 'ImageMagick' ضرورية لكي يتم اكمال التهيئة.\n"
-"اضغط \"مواÙÙ‚\" لتثبيت 'ImageMagick' أو \"الغاء\" للخروج"
+" جميع الحقوق محÙوظة (C) 2001 MandrakeSoft من دوبون سيباستيان <dupont_s"
+"\\@epita.fr>"
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Telnet server"
-msgstr "خادم X"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "الليتوانية \"ص٠رقمي\" QWERTY"
+#: ../../standalone/drakbackup_.c:4729
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
-#: ../../install_any.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4732
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
+"Description:\n"
"\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-"سيتم حذ٠هذه الحزم لكي تتم ترقية النظام: %s\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
"\n"
-"هل تريد حذ٠هذه الحزم ÙØ¹Ù„اً؟\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
-msgstr "أنغويلا"
-
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "نطاق NIS"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "القطب الجنوبي"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
+"\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4769
msgid ""
+"options description:\n"
"\n"
-"- User Files:\n"
-msgstr ""
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
"\n"
-"-ملÙّات المستخدم:\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
-msgstr "خيارات التحميل"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Jamaica"
-msgstr "جامايكا"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4778
msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
msgstr ""
-"عين الأجهزة الخام الى أجهزة ÙÙŠ وضع الكليشيه (مثل تجزئات\n"
-"الأقراص الصلبة), للاستخام ÙÙŠ تطبيقات مثل Oracle أو مشغلات DVD"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "انتر من ÙØ¶Ù„Ùƒ, جاري التحضير للتثبيت..."
-#: ../../keyboard.pm:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "التشيكية (QWERTZ)"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "تتبع هوية بطاقة الشبكة (Ù…Ùيد للجاسبات Ø§Ù„Ø¯ÙØªØ±ÙŠØ©)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "يجب أن يكون رقم Ø§Ù„Ù…Ù†ÙØ° رقماً صحيحاً!"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "You must choose an image file first!"
-msgstr "يجب اختيار مل٠صورة أولاً!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "استعد من القرص الصلب"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "Ø§Ø¶Ø§ÙØ© الى LVM"
+msgid "Installation of %s failed. The following error occured:"
+msgstr "ÙØ´Ù„ تثبيت %s. ظهر الخطأ التالي:"
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "خادم DNS"
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr "ترينياد و توباجو"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD و LPRng لا تدعم طابعات IPP.\n"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Host name or IP."
-msgstr "اسم المستضيÙ"
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "أدوات سطر الأوامر"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Edit"
-msgstr "/_تحرير"
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "على القرص الصّلب"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "بسيط"
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "استشارات Mandrake"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "أمسح الكل"
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No test pages"
-msgstr "لا ØµÙØ­Ø§Øª اختبارية"
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Ø§Ù„ÙØ£Ø±Ø©"
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr "جزر Ùوكلاند"
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "طابعة بعيدة"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "المحوّل %s: %s"
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr ""
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Boot disk creation"
-msgstr "صنع قرص مرن لبدء النظام"
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
-msgstr "الاثنين"
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown model"
-msgstr "طراز غير معروÙ"
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
-msgstr "if set to yes, check files/directories writable by everybody."
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "معالج إعداد الشبكة"
-#: ../../help.pm:1
-#, c-format
-msgid "authentication"
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Application:"
msgstr "التحقق"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now"
-msgstr "قم بالنسخ الإحتياطي الآن"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/_ملÙ"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr "جاري حذ٠الطابعة من Star Office/OpenOffice.org/GIMP"
-
-#: ../../services.pm:1
-#, 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."
+#: ../../standalone/drakbug_.c:76
+msgid "Package: "
msgstr ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Editable"
-msgstr "تعطيل"
-#: ../../network/ethernet.pm:1
-#, fuzzy, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
msgstr ""
-"أي عميل DHCP تريد أن تستخدم؟\n"
-"Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠ Ù‡Ùˆ dhcp-client."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr "التاميل (ISCII)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
-msgstr "مايوت"
+#: ../../standalone/drakbug_.c:78
+#, fuzzy
+msgid "Release: "
+msgstr "من ÙØ¶Ù„Ùƒ انتظر"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
-msgstr ""
-"Arguments: (size)\n"
+#: ../../standalone/drakbug_.c:93
+msgid ""
"\n"
-"Set shell commands history size. A value of -1 means unlimited."
-
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "%d KB\n"
-msgstr "الحجم: %d كيلوبايت\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "جاري انشاء قرص التثبيت الآلي..."
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for scanners ..."
-msgstr "جاري البحث عن الماسحات الضوئية..."
+#: ../../standalone/drakbug_.c:112
+#, fuzzy
+msgid "Report"
+msgstr "استعادة"
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
-msgstr "روسيا"
+#: ../../standalone/drakbug_.c:148
+#, fuzzy
+msgid "Not installed"
+msgstr "ما بعد ازالة التثبيت"
-#: ../../steps.pm:1
-#, c-format
-msgid "Partitioning"
-msgstr "تجزئة الأقراص"
+#: ../../standalone/drakbug_.c:160
+#, fuzzy
+msgid "Package not installed"
+msgstr "ما بعد ازالة التثبيت"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
-msgstr "تم اكتشا٠بطاقة/بطاقات ايثرنت"
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
-msgstr "syslog"
+#: ../../standalone/drakbug_.c:180
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "ستكون لقطات الشاشة موجودة بعد التثبيت ÙÙŠ %s"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakconnect_.c:75
#, c-format
-msgid "Can't create catalog!"
-msgstr "تعذر انشاء الكتالوغ!"
+msgid "Network configuration (%d adapters)"
+msgstr "اعدادات الشبكة (%d موائمات)"
-#: ../advertising/11-mnf.pl:1
-#, 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."
-msgstr ""
-"أكمل حماية أجهزتك مع هذا البرنامج السهل الاستخدام الذي يجمع بين المكونات "
-"عالية الأداء كالجدار الناري, وعميل Ùˆ خادم الشبكات Ø§Ù„Ø§ÙØªØ±Ø§Ø¶ÙŠØ© (VPN), Ø§Ø¶Ø§ÙØ© "
-"الى نظام للتحقق من الاختراقات و مدير لتنظيم مسارات الشبكة."
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+msgid "Profile: "
+msgstr "التشكيل:"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
-msgstr "لا توجد مساحة كاÙية للتحديد الآلي"
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
+msgstr "احذ٠التشكيل..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "عيّن كلمة مرور المستخدم الجذر"
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
+msgstr "التشكيل المطلوب حذÙÙ‡:"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Enable IP spoofing protection"
-msgstr ""
-"Arguments: (arg, alert=1)\n"
-"\n"
-"Enable/Disable IP spoofing protection."
+#: ../../standalone/drakconnect_.c:125
+msgid "New profile..."
+msgstr "تشكيل جديد..."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:131
msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
msgstr ""
-"لا يوجد مشغل Ù…ÙØªÙˆØ­ المصدر لبطاقة الصوت (%s), لكن هناك مشغل تجاري ÙÙŠ \"%s\"."
+"لإسم التشكيل الذي ستعمله (التشكيل الجديد يتم عمله كنسخة من التشكيل الحالي) :"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group :"
-msgstr "المجموعة :"
+#: ../../standalone/drakconnect_.c:157
+msgid "Hostname: "
+msgstr "اسم المستضي٠:"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "بعد تغيير حجم التجزئة %s, ÙØ¥Ù† كل البيانات على هذه التجزئة ستÙقد"
+#: ../../standalone/drakconnect_.c:164
+msgid "Internet access"
+msgstr "الدخول الى الإنترنت"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet connection configuration"
-msgstr "إعدادات الإتصال بالإنترنت"
+#: ../../standalone/drakconnect_.c:177
+msgid "Type:"
+msgstr "النوع:"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
-msgstr ""
-"Arguments: (name)\n"
-"\n"
-"Add the name as an exception to the handling of password aging by msec."
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "البوابة:"
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "USB"
-msgstr "LSB"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Interface:"
+msgstr "الواجهة:"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "جاري ضبط قنوات Ø§Ù„ØªÙ„ÙØ§Ø²"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
+msgstr "الحالة:"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
-msgstr "النواة:"
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
+msgstr "الانتظار من ÙØ¶Ù„Ùƒ"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_About..."
-msgstr "/_حول..."
+#: ../../standalone/drakconnect_.c:216
+msgid "Configure Internet Access..."
+msgstr "إعداد الدخول الى الإنترنت..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
-msgstr "البنغالية"
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+msgid "LAN configuration"
+msgstr "إعداد LAN"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
-msgstr "Ø§Ù„ØªÙØ¶ÙŠÙ„: "
+#: ../../standalone/drakconnect_.c:228
+msgid "Driver"
+msgstr "المحرك"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "الخدمات: %d منشّطة لـ %d مسجلة"
+#: ../../standalone/drakconnect_.c:228
+msgid "Interface"
+msgstr "الواجهة"
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "أنشئ قرص إقلاع"
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
+msgstr "البروتوكول"
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "جزر سليمان"
+#: ../../standalone/drakconnect_.c:228
+msgid "State"
+msgstr "الحالة"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please test your mouse:"
-msgstr "من ÙØ¶Ù„Ùƒ اختبر Ø§Ù„ÙØ£Ø±Ø©:"
+#: ../../standalone/drakconnect_.c:240
+msgid "Configure Local Area Network..."
+msgstr "إعداد الشبكة المحلية..."
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(الوحدة %s)"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
+msgstr "انقر هنا لتشغيل المعالج ->"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
-msgstr "مجموعة العمل"
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "المعالج..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP"
-msgstr "اسم مستضي٠الطابعة أو الـ IP"
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
+msgstr "تطبيق"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "down"
-msgstr "انتهى"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Connected"
+msgstr "متّصل "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Path or Module"
-msgstr "وحدة أو مسار المستضيÙ"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Not connected"
+msgstr "غير متصل"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "اسم الطابعة يجب أن يحتوي Ùقط على حرو٠و أرقام Ùˆ شارطات تحتية"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
+msgstr "اتصل..."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Show current interface configuration"
-msgstr "أظهر تهيئة الواجهة الحالية"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
+msgstr "اقطع الإتصال..."
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Add Printer"
-msgstr "طابعة"
+#: ../../standalone/drakconnect_.c:400
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr "تحذير, تم ايجاد اتصال إنترنت آخر, ربما يكون يستخدم شبكتك"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakconnect_.c:427
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."
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"The argument specifies if clients are authorized to connect\n"
-"to the X server on the tcp port 6000 or not."
+"لم تقم بتهيئة أي واجهات.\n"
+"قم بتهيئتهم أولا عن طريق الضغط على 'تهيئة'"
-#: ../../help.pm:1
-#, c-format
-msgid "Development"
-msgstr "تطوير"
+#: ../../standalone/drakconnect_.c:449
+msgid "LAN Configuration"
+msgstr "إعداد LAN"
-#: ../../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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Done"
-msgstr "انتهى"
+msgid "Adapter %s: %s"
+msgstr "المحوّل %s: %s"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Web Server"
-msgstr "خادم الويب"
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
+msgstr "بروتوكول الإقلاع"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "تشيلي"
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
+msgstr "يتم بدءه عند الإقلاع"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tلا ØªÙØ¶Ù…Ù† Ù…Ù„ÙØ§Øª النظام\n"
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
+msgstr "DHCP العميل "
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "activate now"
+msgstr "قم بالتنشيط الآن"
+
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "deactivate now"
+msgstr "قم بإزالة التنشيط الآن"
+
+#: ../../standalone/drakconnect_.c:499
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."
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
msgstr ""
-"مشغلات طابعتك inkjet التي تم توÙيرها من Lexmark تدعم الطابعات المحلية Ùقط, "
-"لا يدعم المشغل الطابعات على الماكينات البعيدة أو خادمات الطباعة. ÙØ¶Ù„اً وصل "
-"طابعتك الى Ù…Ù†ÙØ° محلي أو قم بتهيئتها على الماكينة المرتبطة بها."
+"لم يتم تهيئة الواجهة بعد.\n"
+"قم بتشغيل معالج التهيئة ÙÙŠ Ø§Ù„Ù†Ø§ÙØ°Ø© الرئيسية"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:556
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!"
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
msgstr ""
-"الجهاز المتعدد الوظائ٠الخاص بك تم تهيئته آلياً ليتمكن من المسح الضوئي. يمكنك "
-"الآن استخدام المسخ الضوئي باستخدام \"scanimage\" (\"scanimage -d hp:%s\" "
-"لتحديد الماسح الضوئي اذا كان لديك أكثر من واحد) من سطر الأوامر أو بالبرامج "
-"الرسومية \"xscanimage\" أو \"xsane\". اذا كنت تستخدم GIMP, يمكنك أيضاً المسح "
-"الضوئي باستخدام القوائم \"File\"/\"Acquire\". شغل الأمر \"man scanimage\" ÙÙŠ "
-"سطر الأوامر للحصول على مزيد من المعلومات.\n"
-"\n"
-"لا تستخدم \"scannerdrake\" لهذا الجهاز!"
-
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "(تم Ø§Ø¶Ø§ÙØ© %s مسبقا)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation in progress"
-msgstr "محمل الإقلاع قيد التثبيت"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
-msgstr ", باستخدام الأمر %s"
+"ليست لديك أي اتصالات إنترنت.\n"
+"قم بعمل اتصال أولا باستخدام 'تهيئة'"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Ù…ÙØ§ØªÙŠØ­ Alt Ùˆ Shift ÙÙŠ Ù†ÙØ³ الوقت"
+#: ../../standalone/drakconnect_.c:580
+msgid "Internet connection configuration"
+msgstr "إعدادات الإتصال بالإنترنت"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
-msgstr "Flags"
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet Connection Configuration"
+msgstr "إعدادات الإتصال بالإنترنت"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Users"
-msgstr "أضÙ/احذ٠المستخدمين"
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+msgid "Connection type: "
+msgstr "نوع العلاقة"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "عنوان IP للمستضيÙ/الشبكة Ù…Ùقود."
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
+msgstr "Parameters"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
-msgstr "أسبوعيّا"
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Gateway"
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "الضبط"
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
+msgstr "Ethernet Card"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "عنوان IP Ø§Ù„Ù…Ø¯ÙØ®Ù„ للمستضيÙ/الشبكة غير صحيح.\n"
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
+msgstr "DHCP العميل"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr ""
-"انشئ/لنقل\n"
-"Ù…ÙØ§ØªÙŠØ­ النسخ الإحتياطي لـSSH"
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-متنوع-ثابت-وسط-ر-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr "ها هي قائمة كاملة بكل لوحات البلاد Ø§Ù„Ù…ØªÙˆÙØ±Ø©"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Module name"
+msgstr "اسم الوحدة"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "ØµÙØ­Ø© اختبارية بديلة (A4)"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Size"
+msgstr "حجم"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"اذا كانت لديك قل الأقراص ÙÙŠ القائمة أدناه, اضغط مواÙÙ‚.\n"
-"اذا لم تمكن لديك أي من هذه الأقراص, اضغط الغاء.\n"
-"اذا كانت بعض هذه الأقراص Ù…Ùقودة, قم بازالة اختيارهاثم اضغط مواÙÙ‚."
+#: ../../standalone/drakfloppy_.c:45
+msgid "drakfloppy"
+msgstr "دريك للاقراص المرنة"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
-msgstr "الانتظار من ÙØ¶Ù„Ùƒ"
+#: ../../standalone/drakfloppy_.c:63
+msgid "boot disk creation"
+msgstr "صنع قرص مرن لبدء النظام"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP"
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr "المرجع"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakfloppy_.c:87
#, c-format
-msgid "Backup user files"
-msgstr "انسخ Ù…Ù„ÙØ§Øª المستخدم"
+msgid "DrakFloppy Error: %s"
+msgstr "خطأ ÙÙ‰ دريك لعمل قرص بدء النظام: %s"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "New"
-msgstr "جديد"
+#: ../../standalone/drakfloppy_.c:98
+msgid "kernel version"
+msgstr "اصدارة اللب"
-#: ../../help.pm:1
-#, 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\"."
-msgstr ""
-"هذه هي أهم خطوة تتخذها لأمن نظام Linux الخاص\n"
-"بك: عليك ادخال كلمة مرور المستخدم \"الجذر\" (root) و هو\n"
-"مدير النظام Ùˆ المستخدم الوحيد المخول بتحديث النظام, Ø§Ø¶Ø§ÙØ© المستخدمين,\n"
-"تغيير تهيئة النظام, الخ. باختصار يمكن للمستخدم \"الجذر\" أن ÙŠÙØ¹Ù„\n"
-"كل شئ! لذا عليك اختيار كلمة المرور صعبة\n"
-"التخمين - سيخبرك DrakX اذا كانت كلمة المرور التي تستخدمها سهلة. كما\n"
-"ترى, لست مجبراً على ادخال كلمة مرور, لكننا ننصح بشدة لأن احتمال حدوث\n"
-"أخطاء مع Linux عادي مثل باقي أنظمة التشغيل الأخرى. و بما أن \"الجذر\" يمكنه\n"
-"تعدي كل الحدود Ùˆ قد يحذ٠كل البيانات من دون قصد, لذا Ùيجب أن يكون من\n"
-"الصعب أن تصبح المستخدم \"الجذر\".\n"
-"\n"
-"يجب أن تكون كلمة المرور خليطاً من الحرو٠و الأرقام كما يجب أن تحتوي\n"
-"على 8 حرو٠على الأقل. لا تكتب كلمة مرور \"الجذر\" على ورق -- هذا يسهّل\n"
-"اختراق النظام اذا رأى أحد كلمة المرور.\n"
-"\n"
-"نصيحة أخرى -- لا تجعل كلمة المرور طويلة جداً أو معقّدة لأنك يجب أن تكون\n"
-"قادراً على تذكرها!\n"
-"\n"
-"لن يتم عرض كلمة المرور على الشاشة. لتقليل ÙØ±ØµØ© حدوث\n"
-"خطأ أثناء الكتابة, ستحتاج الى ادخال كلمة المرور مرتين.\n"
-"اذا أخطأت ÙÙŠ الكتابة ÙÙŠ المرتين, ÙØ³ÙŠØ¬Ø¨ استخدام كلمة\n"
-"المرور \"الخاطئة\" ÙÙŠ المرة الأولى التي تدخل Ùيها الى النظام.\n"
-"\n"
-"اذا كنت تريد الوصول الى هذا الكمبيوتر لكي يتم التحكم بك عن طريق\n"
-"خادم مصادقة, اضغط زر \"%s\".\n"
-"\n"
-"اذا كانت شبكتك تستخدم LDAP, NIS, أو PDC Windows Domain Authentication "
-"Services\n"
-"عليك اختيار الخيار المناسب كـ\"%s\". اذا لم تعلم أي منها تريد\n"
-"استخدامه, اسأل مدير الشبكة لديك.\n"
-"\n"
-"اذا كانت لديك مشكلة ÙÙŠ تذكر كلمات المرور, يمكنك اختيار\n"
-"\"%s\" اذا لم يكن الكمبيوتر الخاص بك متصلاً بالإنترنت,\n"
-"أو أنك تثق ÙÙŠ اللذين يدخلون الى النظام."
+#: ../../standalone/drakfloppy_.c:104
+msgid "General"
+msgstr "عام"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
-msgstr ""
+#: ../../standalone/drakfloppy_.c:109
+msgid "Expert Area"
+msgstr "منطقة الخبراء"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"عند هذه النقطة, سيسمح لك DrakX باختيار المستوى الأمني الذي ترغب به\n"
-"لهذه الماكينة. بديهياً, يجب تعيين مستوى أمني\n"
-"عال٠اذا كانت الماكينة تحتوي على معلومات هامة, أو اذا كانت الماكينة\n"
-"Ø³ØªÙØ³ØªØ®Ø¯Ù… للإتصال بالإنترنت. ان استخدام مستوى أمني عال٠يأتي\n"
-"عادة على حساب سهولة الإستخدام.\n"
-"\n"
-"اذا لم تكن تريد الإختيار, Ø§Ø­ÙØ¸ الاختيار Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠ."
+#: ../../standalone/drakfloppy_.c:112
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd الخصائص الاختيارية"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "حمّل من قرص مرن"
+#: ../../standalone/drakfloppy_.c:113
+msgid "Add a module"
+msgstr "Ø§Ø¶Ø§ÙØ© وحدة"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "تم اكتشا٠الطابعة الآتية آلياً. "
+#: ../../standalone/drakfloppy_.c:133
+msgid "force"
+msgstr "اجبار"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Uses command %s"
-msgstr ", باستخدام الأمر %s"
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
+msgstr "اذا احتجته"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
-msgstr "قرص الإقلاع"
+#: ../../standalone/drakfloppy_.c:135
+msgid "omit scsi modules"
+msgstr "SCSI اهمل وحدات ال"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "النرويجية"
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
+msgstr "RAID اهمل وحدات ال"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for new scanners ..."
-msgstr "جاري البحث عن ماسحات ضوئية جديدة..."
+#: ../../standalone/drakfloppy_.c:172
+msgid "Remove a module"
+msgstr "ازالة وحدة"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "خادم الويب Apache"
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
+msgstr "الناتج"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "stepping of the cpu (sub model (generation) number)"
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
+msgstr "جهز القرص"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "select path to restore (instead of /)"
-msgstr "اختر مسار الإستعادة (بدلاً من / )"
+msgid "Be sure a media is present for the device %s"
+msgstr "تأكد من وجود الوسيط للوحدة %s"
-#: ../../standalone/draksplash:1
+#: ../../standalone/drakfloppy_.c:341
#, c-format
-msgid "Configure bootsplash picture"
-msgstr "تهيئة صورة الإقلاع"
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"لا يوجد وسط أو ربما يكون الوسط محمي من القراءة للجهاز %s.\n"
+"ÙØ¶Ù„اً ادخل وسط ÙÙ‰ الوحدة."
-#: ../../lang.pm:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "Georgia"
-msgstr "جورجيا"
+msgid "Unable to fork: %s"
+msgstr "تعذر تنÙيذ: %s"
-#: ../../lang.pm:1
+#: ../../standalone/drakfloppy_.c:349
#, c-format
-msgid "China"
-msgstr "الصين"
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"غير قادر على غلق mkbootdisk: \n"
+" %s \n"
+" %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr " (تأكد من أن كل الطابعات موصولة و تعمل).\n"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
+msgstr "ابحث ÙÙŠ الخطوط المثبتة"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "جاري قراءة بيانات الطابعات المثبتة..."
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
+msgstr "أزل اختيار الخطوط المثبتة"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
-msgstr " امح٠الآن "
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
+msgstr "تحليل كل الخطوط"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "خادم"
+#: ../../standalone/drakfont_.c:242
+msgid "no fonts found"
+msgstr "لا توجد خطوط"
-#: ../../install_any.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "أدخل قرص مرن مجهز على نظام Ù…Ù„ÙØ§Øª FAT ÙÙŠ السواقة %s"
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+msgid "done"
+msgstr "انتهى"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "نعم تعني أن المعالج لديه معالج مساعد للعمليات الحسابية"
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
+msgstr "لم أتمكن من ايجاد أي خطوط ÙÙŠ تجزئاتك المحملة"
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "يرجى الإنتظار... جاري تطبيق الإعدادات"
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
+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
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Welcome to GRUB the operating system chooser!"
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
+msgstr "لم أتمكن من إيجاد أي خط.\n"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "Grub"
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
+msgstr "ابحث عن الخطوط ÙÙŠ القائمة المثبتة"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
-msgstr "متحكمات SCSI"
+#: ../../standalone/drakfont_.c:359
+msgid "Fonts copy"
+msgstr "نقل الخطوط"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr "على خادم LPD \"%s\", الطابعة \"%s\""
+#: ../../standalone/drakfont_.c:363
+msgid "True Type fonts installation"
+msgstr "تثبيت خطوط True Type"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
-msgstr "جاري اختيار مدير العرض"
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
+msgstr "رجاء انتظر أثناء عملية ttmkfdir..."
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "اسم مستضي٠Zeroconf"
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
+msgstr "تم تثبيت خطوط True Type"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
-msgstr ""
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
+msgstr "تحويل الخطوط"
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "عنوان IP يجب أن يكون على النسق 1.2.3.4"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
+msgstr "بناء type1inst"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configure CUPS printing system"
-msgstr "تغيير نظام الطباعة"
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
+msgstr "Ghostscript referencing"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "الإكوادور"
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
+msgstr "تحويل خطوط ttf"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Add an item"
-msgstr "أض٠مادة"
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
+msgstr "تحويل خطوط pfm"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "الطابعات على هذه الماكينة Ù…ØªÙˆÙØ±Ø© للأجهزة الأخرى"
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
+msgstr "أبطل Ø§Ù„Ù…Ù„ÙØ§Øª المؤقتة"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "China (Hong Kong)"
-msgstr "هونج كونج"
+#: ../../standalone/drakfont_.c:459
+msgid "Restart XFS"
+msgstr "أعد تشغيل XFS"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "لا يمكنني ايجاد مل٠الصورة `%s'."
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
+msgstr "أبطل Ù…Ù„ÙØ§Øª الخطوط"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr "لم يتم ايجاد بطاقة الصوت. حاول تشغيل \"harddrake\" بعد التثبيت"
+#: ../../standalone/drakfont_.c:528
+msgid "xfs restart"
+msgstr "xfs restart"
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"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 using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
msgstr ""
-"تم اعطاء Ù…Ù†ÙØ° غير صالح: %s.\n"
-"النسق الصحيح هو \"port/tcp\" أو \"port/udp\", \n"
-"ÙÙŠ حين يكون Ø§Ù„Ù…Ù†ÙØ° (port) بين 1 Ùˆ 65535."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Shell"
-msgstr "الغلاÙ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sao Tome and Principe"
-msgstr "ساو تومي و البرينسيب"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
-msgstr "تعذر الدخول باستخدام اسم المستخدم %s (كلمة مرور سيئة؟)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "الأذربيجانية (لاتيني)"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package not installed"
-msgstr "لم يتم تثبيت الحزمة"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "American Samoa"
-msgstr "ساموا الأمريكية"
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Become a MandrakeExpert"
-msgstr "كن خبيراً ÙÙŠ MandrakeExpert"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Protocol"
-msgstr "البروتوكول"
+#: ../../standalone/drakfont_.c:621
+msgid "Fonts Importation"
+msgstr "استيراد الخطوط"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "انسخ الخطوط الى نظامك"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
+msgstr "احصل على خطوط Windows"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
-msgstr "مساعدة Harddrake"
+#: ../../standalone/drakfont_.c:658
+msgid "Uninstall Fonts"
+msgstr "اخذ٠الخطوط"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
+#: ../../standalone/drakfont_.c:669
+msgid "Advanced Options"
+msgstr "خيارات متقدمة"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "تهيئة خادم طرÙيات Mandrake"
+#: ../../standalone/drakfont_.c:677
+msgid "Font List"
+msgstr "قائمة الخطوط"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakfont_.c:737
+#, fuzzy
msgid ""
"\n"
-" DrakBackup Report Details\n"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@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"
-msgstr ""
+" 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"
-" ØªÙØ§ØµÙŠÙ„ تقرير DrakBackup\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"
"\n"
"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
-msgstr "استعد كل النسخ الإحتياطية"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
-msgstr " على Ø§Ù„Ù…Ù†ÙØ° المتوازي #%s"
-
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
msgstr ""
-"Arguments: (length, ndigits=0, nupper=0)\n"
+" هذا البرنامج هو برنامج حر; يمكنك اعادة توزيعة و/أو تعديله\n"
+" تحت بنود رخصة GNU العمومية الشاملة (GPL) كما Ù†ÙØ´Ùرت عن طريق\n"
+" جمعية البرمجيات الحرة; إما اإصدار الثاني من الترخيص أو\n"
+" أي نسخة تالية (حسب اختيارك).\n"
+"\n"
+" هذا البرنامج ÙŠÙوزَّع على أمل أن يكون Ù…Ùيدا,\n"
+" لكن دون أي ضمان’; حتى بدون الضمانة المÙهومة\n"
+" للإتجار أو المناسبة لغرض معين. انظر\n"
+" رخصة GNU العمومية الشاملة Ù„Ù„ØªÙØ§ØµÙŠÙ„.\n"
"\n"
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
+" يجب أن تكون قد تسلمت نسخة من ترخيص GNU العمومية الشاملة\n"
+" مع البرنامج; ÙÙŠ حالة عدم تسلم الرخصة راسل جمعية البرمجيات الحرة على العنوان "
+"التالي\n"
+" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA "
+"02111-1307,\n"
+" USA."
+
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:862
+msgid "Choose the applications that will support the fonts:"
+msgstr "اختر التطبيقات التي ستدعم الخطوط :"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr "if set to yes, check open ports."
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
+msgstr "Ghostscript"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "قد يستغرق مسح الوسيط بعض الوقت."
+#: ../../standalone/drakfont_.c:877
+msgid "StarOffice"
+msgstr "StarOffice"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "لا يمكنك اختيار/ازالة اختيار هذه الحزمة"
+#: ../../standalone/drakfont_.c:884
+msgid "Abiword"
+msgstr "Abiword"
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "تحذير"
+#: ../../standalone/drakfont_.c:891
+msgid "Generic Printers"
+msgstr "طابعات عادية (Generic)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"-الملÙّات الأخرى:\n"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
+msgstr "اختر مل٠أو دليل الخطوط Ùˆ اضغط 'Ø§Ø¶Ø§ÙØ©'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name"
-msgstr "اسم المستضي٠البعيد"
+#: ../../standalone/drakfont_.c:1005
+msgid "Install List"
+msgstr "ثبّت القائمة"
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr "الوصول الى برامج X"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
+msgstr "اضغط هنا إذا كنت متأكدا."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "جاري حساب مساحة تجزئة Windows"
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
+msgstr "إضغط هنا إذا لم تكن متأكدا."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr "/تح_ديث"
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
+msgstr "تم ازالة اختيار الكل"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Italy"
-msgstr "إيطاليا"
+#: ../../standalone/drakfont_.c:1116
+msgid "Selected All"
+msgstr "تم اختيار الكل"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
-msgstr "جزر كايمان"
+#: ../../standalone/drakfont_.c:1120
+msgid "Remove List"
+msgstr "ازل القائمة"
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "خطأ ÙÙŠ ازالة تحميل %s: %s"
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+msgid "Initials tests"
+msgstr "الإختبارات الأولية"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "اسم الطابعة"
+#: ../../standalone/drakfont_.c:1145
+msgid "Copy fonts on your system"
+msgstr "انسخ الخطوط الى نظامك"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
-msgstr "تعطيل"
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
+msgstr "ثبّت و حوّل الخطوط"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do it!"
-msgstr "Ø§ÙØ¹Ù„ها!"
+#: ../../standalone/drakfont_.c:1153
+msgid "Post Install"
+msgstr "ما بعد التثبيت"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
-msgstr "%s لا يستجيب"
+#: ../../standalone/drakfont_.c:1178
+msgid "Remove fonts on your system"
+msgstr "أزل الخطوط من النظام"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select model manually"
-msgstr "تم اختيار النّموذج يدويًّا"
+#: ../../standalone/drakfont_.c:1182
+msgid "Post Uninstall"
+msgstr "ما بعد ازالة التثبيت"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Format"
-msgstr "تنسيق"
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
+msgstr "مشاركة الإتصال بالإنترنت"
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "آسÙون, نحن ندعم اصدارات النواة 2.4"
+
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr "مشاركة الإتصال بالإنترنت ممكنة حاليا"
+
+#: ../../standalone/drakgw_.c:126
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'"
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"الطريقة الأكثر شيوعاً للإتصال بـ adsl هي pppoe.\n"
-"بعض الإتصالات تستخدم pptp, و القليل تستخدم dhcp.\n"
-"اذا لم تكن تعلم, اختر 'استخدم pppoe'"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
-msgstr "متنوعة"
+#: ../../standalone/drakgw_.c:130
+msgid "disable"
+msgstr "تعطيل"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
-msgstr "Zip"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
+msgstr "اهمال"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
-msgstr "Ù…ÙØªØ§Ø­ Alt الأيسر"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "reconfigure"
+msgstr "إعداة الإعداد"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Load setting"
-msgstr "حمل الإعدادات"
+#: ../../standalone/drakgw_.c:133
+msgid "Disabling servers..."
+msgstr "جاري تعطيل الخوادم..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-"\n"
-"\n"
-"لم يتمكن Printerdrake من التعر٠على طراز طابعتك %s. ÙØ¶Ù„اً اختر الطراز الصحيح "
-"من القائمة."
+#: ../../standalone/drakgw_.c:142
+msgid "Internet connection sharing is now disabled."
+msgstr "مشاركة اتصال الإنترنت غير ممكَّنة الآن."
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Set selected printer as the default printer"
-msgstr "عيّن هذه الطابعة كطابعة Ø§ÙØªØ±Ø§Ø¶ÙŠØ©"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
+msgstr "مشاركة الإتصال بالإنترنت"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:150
msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+"What would you like to do?"
msgstr ""
-"\n"
-"علّم على الطابعات التي تريد نقلها ثم انقر \n"
-"\"انقل\"."
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
-msgstr "الألبانيةّ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "ليتوانيا"
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "مدمج"
+#: ../../standalone/drakgw_.c:154
+msgid "enable"
+msgstr "تمكين"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "تم اكتشا٠الطراز: %s %s"
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
+msgstr "جاري تمكين الخوادم..."
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
-msgstr "اختارت MandrakeSoft Ø£ÙØ¶Ù„ البرامج خصيصاً لك"
+#: ../../standalone/drakgw_.c:166
+msgid "Internet connection sharing is now enabled."
+msgstr "مشاركة إتصال الإنترنت ممكَّنة الآن."
-#: ../../any.pm:1
-#, c-format
-msgid "Local files"
-msgstr "Ù…Ù„ÙØ§Øª محلية"
+#: ../../standalone/drakgw_.c:183
+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 ""
-#: ../../pkgs.pm:1
+#: ../../standalone/drakgw_.c:211
#, c-format
-msgid "maybe"
-msgstr "ربما"
+msgid "Interface %s (using module %s)"
+msgstr "الواجهة %s (باستخدام الوحدة %s)"
-#: ../../lang.pm:1
+#: ../../standalone/drakgw_.c:212
#, c-format
-msgid "Panama"
-msgstr "بنما"
+msgid "Interface %s"
+msgstr "الواجهة %s"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Can't open %s!"
-msgstr "تعذر ايجاد %s على %s"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr "لا محوّل الشّبكة على نظامك"
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:221
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?"
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
msgstr ""
-"بطاقة الرسوم الخاصة بك يبدو أنها تحتوي على موصل Ù„Ù„ØªÙ„ÙØ§Ø².\n"
-"يمكن تهيئة البطاقة للعمل باستخدام الـ frame-buffer.\n"
-"\n"
-"لهذا الغرض يجب عليك توصيل بطاقة الرسوم Ø¨Ø§Ù„ØªÙ„ÙØ§Ø² قبل بدء تشغيل الكمبيوتر.\n"
-"ثم اختر \"TVout\" من محمّل الإقلاع\n"
-"\n"
-"هل لديك هذه الميزة؟"
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "الشاشة"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr "سطح بينيّ للشبكة "
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:228
#, 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"
+"There is only one configured network adapter on your system:\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"
+"%s\n"
"\n"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
-"أنت على وشك تهيئة الطباعة على حساب ÙÙŠ Windows مع كلمة مرور. بسبب خطأ ÙÙŠ "
-"هيكلية عميل Samba, يتم وضع كلمة المرور بنص واضح ÙÙŠ سطر أوامر عميل Samba "
-"المستخدم لنقل ÙˆØ¸ÙŠÙØ© الطباعة الى خادم Windows. لذا ÙØ¥Ù†Ù‡ يمكن لكل مستخدم على "
-"هذه الماكينة أن يعرض كلمة المرور على الشاشة باستخدام كلمات مرور مثل \"ps "
-"auxwww\".\n"
-"\n"
-"نحن ننصح باستعمال واحد من البدائل التالية (ÙÙŠ كل الحالات عليك التأكد أن "
-"الماكينات الموجودة Ùقط على الشبكة المحلية تستطيع الوصول الى خادم Windows, عن "
-"طريق استخدام جدار ناري مثلاً):\n"
-"\n"
-"استخدم حساب دون كلمة مرور على خادم Windows, مثل حساب \"GUEST\" أو حساب خاص "
-"لاستخدامه للطباعة. لا تقم بإزالة الحماية عن طريق كلمات المرور من حسابك "
-"الشخصي أو من حساب مدير النظام.\n"
-"\n"
-"قم بإعداد خادم Windows لجعل الطابعة Ù…ØªÙˆÙØ±Ø© تحت بروتوكول LPD. ثم قم بإعداد "
-"الطباعة من هذه الماكينة مع نوع الوصلة \"%s\" ÙÙŠ PrinterDrake.\n"
-"\n"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 أل٠لون (16 بت)"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakgw_.c:235
msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
msgstr ""
-"\n"
-"- Ø§Ø­ÙØ¸ على القرص الصلب على المسار:%s\n"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "احذ٠الخطوط من النظام"
+#: ../../standalone/drakgw_.c:261
+msgid "Network interface already configured"
+msgstr "واجهة الشبكة معدّة مسبقا!"
-#: ../../standalone/drakgw:1
+#: ../../standalone/drakgw_.c:262
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -18589,3827 +11270,1823 @@ msgid ""
"\n"
"You can do it manually but you need to know what you're doing."
msgstr ""
-"تحذير, موائم الشبكة (%s) معدّ مسبقاً.\n"
-"\n"
-"هل تريد اعادة التهيئة آلياً؟\n"
-"\n"
-"يمكنك القيام بذلك يدوياً لكن يجب أن تكون على علم بما ØªÙØ¹Ù„."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "واجهة رسومية عند بدء التشغيل"
+#: ../../standalone/drakgw_.c:267
+msgid "Automatic reconfiguration"
+msgstr "اعداة تهيئة آلية"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
msgstr ""
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "التجزئات ليست كاÙية لمستوى RAID %d\n"
+#: ../../standalone/drakgw_.c:268
+msgid "Show current interface configuration"
+msgstr "أظهر تهيئة الواجهة الحالية"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "نسق الأقراص التي تدعمها السواقة"
+#: ../../standalone/drakgw_.c:269
+#, fuzzy
+msgid "Current interface configuration"
+msgstr "أظهر تهيئة الواجهة الحالية"
-#: ../../network/tools.pm:1
+#: ../../standalone/drakgw_.c:270
#, c-format
-msgid "Firmware copy failed, file %s not found"
+msgid ""
+"Current configuration of `%s':\n"
+"\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
msgstr ""
+"الإعداد الحالي لـ`%s':\n"
+"\n"
+"الشبكة: %s\n"
+"عنوان الـIP: %s\n"
+"ØµÙØ© الـIP: %s\n"
+"المشغل: %s"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "local config: true"
-msgstr "غير معدّ"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:283
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."
+"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"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
+"\n"
msgstr ""
-"تمت تهيئة الطابعات الآتية. انقر نقرة مزدوجة على الطابعة لتغيير اعداداتها "
-"لجعلها طابعة Ø§ÙØªØ±Ø§Ø¶ÙŠØ© أو لرؤية معلومات حولها."
-
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connected"
-msgstr "متّصل"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
-msgstr "المقدونية"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "مالي"
+#: ../../standalone/drakgw_.c:290
+#, fuzzy
+msgid "Local Network adress"
+msgstr "شبكة محلية من Ø§Ù„ÙØ¦Ø© C"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
-msgstr "متحكمات النظام"
+#: ../../standalone/drakgw_.c:294
+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/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "/ملÙ/_Ø­ÙØ¸"
+#: ../../standalone/drakgw_.c:300
+msgid "(This) DHCP Server IP"
+msgstr "عنوان IP لخادم DHCP (هذا)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "No details"
-msgstr "لا ØªÙØ§ØµÙŠÙ„"
+#: ../../standalone/drakgw_.c:301
+#, fuzzy
+msgid "The DNS Server IP"
+msgstr "عنوان IP لخادم DHCP (هذا)"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "ظري٠جداً"
+#: ../../standalone/drakgw_.c:302
+#, fuzzy
+msgid "The internal domain name"
+msgstr "اختر نوع التثبيت"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Preview"
-msgstr "معاينة"
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Remote Control"
-msgstr "التحكم عن بعد"
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select media for backup..."
-msgstr "رجاء اختر وسيط النسخ الإحتياطي..."
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "خادم XFree86: %s\n"
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
+msgstr "إعادة إعداد الواجهة و خادم DHCP"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "اسمح للعملاء النحا٠(Thin Clients)"
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
+msgstr "الشبكة المحلية لم تنته بـ`0', جاري الخروج."
-#: ../../keyboard.pm:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "الجورجية (التصميم الروسي)"
+msgid "Potential LAN address conflict found in current config of %s!\n"
+msgstr ""
+"تم ايجاد تعارض ÙÙŠ عنوان الشبكة المحلية المبدئي ÙÙŠ الإعداد الحالي لـ%s!\n"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_خيارات"
+#: ../../standalone/drakgw_.c:335
+msgid "Configuring..."
+msgstr "جاري الإعداد..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Your printer model"
-msgstr "طراز الطابعة الخاصة بك"
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "جاري إعداد النصوص البرمجية و تثبيت البرمجيات و بدء الخدمات..."
-#: ../../any.pm:1
+#: ../../standalone/drakgw_.c:372
#, 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)."
-msgstr ""
-"\n"
-"\n"
-"(تحذير! أنت تستخدم XFS للتجزئة الجذرية,\n"
-"عمل قرص مرن للإقلاع قد ÙŠÙØ´Ù„ على الأرجح,\n"
-"لأن XFS يحتاج الى مشغل كبير الحجم)."
+msgid "Problems installing package %s"
+msgstr "كانت هناك مشاكل ÙÙŠ تثبيت الحزمة %s"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakgw_.c:505
msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-"\n"
-"- احذ٠كل Ù…Ù„ÙØ§Øª tar الخاصة بالقرص الصلب بعد كل عملية نسخ.\n"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
-msgstr "تعذر ايجاد صورة CD أو DVD, ÙØ¶Ù„اً انسخ برنامج التثبين ÙˆÙ…Ù„ÙØ§Øª rpm"
-
-#: ../advertising/04-configuration.pl:1
-#, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "أداة Mandrake المتعددة الاستخدامات للتهيئة"
+"تم إعداد كل شئ.\n"
+"يمكنك الآن مشاركة اتصال الإنترنت مع الأجهزة الأخرى ÙÙŠ شبكتك المحلية باستخدام "
+"إعداد الشبكة الأوتوماتيكي (DHCP)."
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Save"
-msgstr "Ø­ÙØ¸"
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
+msgstr "تم عمل التنصيب, و لكنه غير ممكَّن الآن"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
-msgstr "هذا الـ %s غير مدعوم"
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
+msgstr "تم عمل التنصيب, و هو ممكَّن الآن."
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr "حمّل مشغلات أجهزة USB."
+#: ../../standalone/drakgw_.c:525
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "لم يتم اعداد أي مشاركة اتصال بالإنترنت"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Disk"
-msgstr "القرص"
+#: ../../standalone/drakgw_.c:531
+msgid "Internet connection sharing configuration"
+msgstr "إعدادات مشاركة إتصال الإنترنت"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "أدخل URI الخاص بالطابعة"
-
-#: ../advertising/01-thanks.pl:1
+#: ../../standalone/drakgw_.c:539
#, 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."
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"نجاح MandrakeSoft مبني على مبدأ حرية البرامح. نظام التشغيل الجديد الخاص بك "
-"هو نتيجة للتعاون و العمل الجاد من جزء من مجتمع Linux حول العالم"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "اسرائيل"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "غويانا Ø§Ù„ÙØ±Ù†Ø³ÙŠØ©"
+"أهلا بك ÙÙŠ أداة مشاركة الإتصال بالإنترنت!\n"
+"\n"
+"%s\n"
+"\n"
+"اضغط على تهيئة لتشغيل معالج الإعداد."
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "default:RTL"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "group"
+msgstr "مجموعة العمل"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
-msgstr "يجب ادخال سطر أوامر"
+#: ../../standalone/drakperm_.c:36
+msgid "path"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
-msgstr "اخترالمستخدم يدويًّا"
+#: ../../standalone/drakperm_.c:36
+msgid "permissions"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "نقل إعدادات الطابعة"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "user"
+msgstr "المستخدم"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "هل تريد تمكين الطباعة على الطابعات المذكورة أعلاه؟\n"
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Check additions/removals of suid root files"
-msgstr "if set to yes, check additions/removals of suid root files."
+#: ../../standalone/drakperm_.c:44
+#, fuzzy
+msgid "delete"
+msgstr "إلغاء"
-#: ../../any.pm:1
-#, 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."
+#: ../../standalone/drakperm_.c:45
+msgid "edit"
msgstr ""
-"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."
-#: ../../printer/main.pm:1
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Ø§Ù„Ù…Ù†ÙØ° %s)"
+#: ../../standalone/drakperm_.c:46
+#, fuzzy
+msgid "Down"
+msgstr "انتهى"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use network connection to backup"
-msgstr "استخدم الإتصال بالشبكة للنسخ الإحتياطي"
+#: ../../standalone/drakperm_.c:47
+#, fuzzy
+msgid "add a rule"
+msgstr "Ø§Ø¶Ø§ÙØ© وحدة"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Kernel version"
-msgstr "اصدارة النواة"
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:51
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."
+"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 ""
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "واÙÙ‚ على المستخدم"
+#: ../../standalone/drakperm_.c:56
+#, fuzzy
+msgid "Add a new rule at the end"
+msgstr "أض٠طابعة جديدة"
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
-msgstr "خادم"
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
-msgstr "Ù…ÙØªØ§Ø­ Shift الأيسر"
+#: ../../standalone/drakperm_.c:58
+#, fuzzy
+msgid "Up selected rule one level"
+msgstr "تم ازالة اختيار الكل"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " local network"
-msgstr " الشبكة المحلية"
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
+msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "اختيار سيئ, حاول مرة أخرى\n"
+#: ../../standalone/drakperm_.c:60
+#, fuzzy
+msgid "Delete selected rule"
+msgstr "ازل المادة المختارة"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search new servers"
-msgstr "ابحث عن خادمات جديدة"
+#: ../../standalone/drakperm_.c:231
+#, fuzzy
+msgid "Current user"
+msgstr "واÙÙ‚ على المستخدم"
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
-msgstr "جزر هيرد و ماكدونالد"
+#: ../../standalone/drakperm_.c:236
+msgid "Permissions"
+msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
-msgstr "لا مشغل بديل"
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "النتقال الى وضعية الخبير"
+#: ../../standalone/drakperm_.c:238
+#, fuzzy
+msgid "Property"
+msgstr "البوابة"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
-msgstr "(على هذا الجهاز)"
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "عنوان البوابات يجب أن تكون على النسق 1.2.3.4"
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
+msgstr ""
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
-msgstr "تم ايجاد الوينمودم \"%s\", هل تريد تثبيت البرامج المطلوبة ؟"
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "جاري التعر٠على الحزم المثبتة مسبقاً..."
+#: ../../standalone/drakperm_.c:296
+msgid ""
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
-msgstr "استخدم النسخ الاختلاÙÙŠ"
+#: ../../standalone/drakperm_.c:297
+msgid "Use owner id for execution"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Driver"
-msgstr "المحرك"
+#: ../../standalone/drakperm_.c:298
+msgid "Use group id for execution"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
msgstr ""
-"Linuxconf يقوم ÙÙŠ بعض الأحيان بالترتيب لعمل بعض الأعمال\n"
-"عند الإقلاع Ù„Ù„Ù…Ø­Ø§ÙØ¸Ø© على اعدادات النظام."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVD-R device"
-msgstr "جهاز DVDR"
+#: ../../standalone/drakperm_.c:304
+#, fuzzy
+msgid "Path selection"
+msgstr "إختيار وحدات الطابعة"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "طابعة على خادم lpd بعيد"
+#: ../../standalone/drakperm_.c:350
+#, fuzzy
+msgid "user :"
+msgstr "المستخدم"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
-"قبل تثبيت أي خطوط تأكد أنه لديك الحق باستخدامهم و تثبيتهم على النظام.\n"
-"\n"
-"-يمكنك تثبيت الخطوط بالطريقة العادية. ÙÙŠ حالات نادرة, قد تتسبب الخطوط "
-"Ø§Ù„Ù…Ø²ÙŠÙØ© ÙÙŠ تعليق خادم X."
+#: ../../standalone/drakperm_.c:352
+#, fuzzy
+msgid "group :"
+msgstr "مجموعة العمل"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "لم يتم ايجاد بطاقة ØªÙ„ÙØ§Ø²!"
+
+#: ../../standalone/draksound_.c:47
+#, fuzzy
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"
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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."
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Yaboot is a bootloader for NewWorld Macintosh hardware and can be used to\n"
-"boot GNU/Linux, MacOS or MacOSX. Normally, MacOS and MacOSX are correctly\n"
-"detected and installed in the bootloader menu. If this is not the case, you\n"
-"can add an entry by hand in this screen. Be careful to choose the correct\n"
-"parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
+"لم يتم ايجاد بطاقة ØªÙ„ÙØ§Ø² على جهازك. ÙØ¶Ù„اً تأكد من أن بطاقة الÙيديو/Ø§Ù„ØªÙ„ÙØ§Ø² "
+"المدعومة ÙÙŠ لينكس موصولة بشكل صحيح.\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"
"\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"
+"http://www.linux-mandrake.com/en/hardware.php3"
+
+#: ../../standalone/draksound_.c:54
+msgid ""
"\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."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
-msgstr "الأربعاء"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "ألمانيا"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
-msgstr "النمسا"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "لا ÙØ£Ø±Ø©"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "ÙØ¶Ù„اً اختر مساحة وسيط CD/DVD (بالميغابايت)"
+#: ../../standalone/draksplash_.c:21
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Check permissions of files in the users' home"
-msgstr "if set to yes, check permissions of files in the users' home."
+#: ../../standalone/draksplash_.c:67
+#, fuzzy
+msgid "first step creation"
+msgstr "صنع قرص مرن لبدء النظام"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr "شغّل \"sndconfig\" بعد التثبيت لتهيئة بطاقة الصوت الخاصة بك"
+#: ../../standalone/draksplash_.c:70
+#, fuzzy
+msgid "final resolution"
+msgstr "دقة العرض"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "Collapse Tree"
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+#, fuzzy
+msgid "choose image file"
+msgstr "إختر ملÙ"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "أداة اعداد المثبّت الآلي"
+#: ../../standalone/draksplash_.c:72
+#, fuzzy
+msgid "Theme name"
+msgstr "اسم المستخدم"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "تهيئة الشبكة"
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "أين تريد تثبيت محمّل الإقلاع؟"
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "تهيئة الخدمات"
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/draksplash_.c:90
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."
-msgstr ""
-"اختيارك للغة Ø§Ù„Ù…ÙØ¶Ù„Ø© سيؤثر على لغة وثائق المساعدة\n"
-"و برنامج التثبيت و النظام بشكل عام. أو?ً اختر المنطقة التي\n"
-"تتواجد Ùيها, ثم اللغة التي تتحدث بها.\n"
-"\n"
-"ضغط زر \"متقدم\" سيسمح لك باختيار لغات\n"
-"أخرى ليتم تثبيتها على محطة العمل الخاصة بك,و من ثم\n"
-"تثبيت Ø§Ù„Ù…Ù„ÙØ§Øª الخاصة باللغات لوثائق المساعدة Ùˆ التطبيقات, مثلاً\n"
-"اذا كنت ستستضي٠مستخدمين من أسبانيا على ماكينتك, اختر ا?نجليزية\n"
-"كلغة Ø§ÙØªØ±Ø§Ø¶ÙŠØ© ÙÙŠ النمط الشجري Ùˆ \"ا?سبانية\" ÙÙŠ القسم\n"
-"المتقدم.\n"
-"?حظ أنك لست مقيداً باختيار لغة واحدة اضاÙية. حال\n"
-"اختيارك للإعدادات المحلية, اضغط زر \"التالي ->\"\n"
-"للمتابعة.\n"
-"\n"
-"للتغيير بين اللغات المتعددة المثبتة على النظام, يمكنك\n"
-"تشغيل ا?مر \"/usr/sbin/localedrake\"كمستخدم جذر لتغيير\n"
-"اللغة المستخدمة عن طريق النظام ككل. تشغيل ا?مر كمستخدم عادي\n"
-"سيغير Ùقط اعدادات اللغة لهذا المستخدم Ùقط."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr "الـ %s غير مدعوم من هذا الإصدار من Mandrake Linux."
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "tape"
-msgstr "شريط البيانات"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr "DHCP العميل "
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "List users on display managers (kdm and gdm)"
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (serial, old C7 type)"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "ÙØ´Ù„ت الإستعادة من المل٠%s: %s"
-
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:91
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"
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
-"لا يمكنني قراءة جدول التجزئات للجهاز %s, يبدو أنه مخرّب :(\n"
-"يمكنني أن أحاول المتابعة مع ازالة التجزئات السيئة (ستضيع كل البيانات!).\n"
-"الحل الآخر هو أن تمنع DrakX من تعديل جدول التقسيمات.\n"
-"(الخطأ هو %s)\n"
-"\n"
-"هل أنت مواÙÙ‚ على خسارة كل التجزئات؟\n"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Find Package"
-msgstr "%d حزم"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "هل أنت متأكد أنك تريد تنصيب الطباعة على هذه الماكينة؟\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "New devfs device"
-msgstr "جهاز devfs جديد"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
-msgstr "ERROR: Cannot spawn %s."
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Boot Style Configuration"
-msgstr "اعداد أسلوب الإقلاع"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "تزامن وقت آلي"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "Ù…Ù„ÙØ§Øª النسخ الإحتياطي غير موجودة على %s"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "الأرمينية (صوتي)"
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
+msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Card model:"
-msgstr "نوع البطاقة"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
-msgstr "عميل نحي٠(Thin Client)"
+#: ../../standalone/draksplash_.c:95
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
-msgstr "شكراً لاختيارك Mandrake Linux 9.2"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Start Server"
-msgstr "ابدأ الخادم"
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr "تركمانستان"
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "All remote machines"
-msgstr "كل الماكينات البعيدة"
+#: ../../standalone/draksplash_.c:113
+#, fuzzy
+msgid "Preview"
+msgstr "وحدة"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Install themes"
-msgstr "ثبت السمات"
+#: ../../standalone/draksplash_.c:115
+#, fuzzy
+msgid "Save theme"
+msgstr "تثبيت النظام"
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
-msgstr "الأسبانية"
+#: ../../standalone/draksplash_.c:116
+#, fuzzy
+msgid "Choose color"
+msgstr "إختر شاشة"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "جاري التحضير للتثبيت"
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
-msgstr "حرّر المستضيÙ/الشبكة المختارة"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
+msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, c-format
-msgid "Add User -->"
-msgstr "اض٠مستخدم -->"
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "ناورو"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type fonts installation"
-msgstr "تثبيت خطوط True Type"
+#: ../../standalone/draksplash_.c:428
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "إختيار وحدات الطابعة"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "تحقّق آلياً من الطابعات الموصولة مباشرةً بالشبكة المحلية"
+#: ../../standalone/draksplash_.c:449
+msgid "You must choose an image file first!"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN configuration"
-msgstr "إعداد LAN"
+#: ../../standalone/draksplash_.c:458
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "جاري التحقق من الأجهزة ..."
-#: ../../standalone/harddrake2:1
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
#, c-format
-msgid "hard disk model"
-msgstr "طراز القرص الصلب"
+msgid "%s BootSplash (%s) preview"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/drakxtv_.c:46
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"
+"XawTV isn't installed!\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."
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "لا يمكنك استخدام LVM Logical Volume لنقطة التحميل %s"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "احصل على خطوط Windows"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
+#: ../../standalone/drakxtv_.c:63
+msgid "Canada (cable)"
+msgstr "كندة (cable)"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
+msgstr "الولايات المتّحدة الأمريكيّة (broadcast)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "الإيرانيّة"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
+msgstr "الولايات المتّحدة الأمريكيّة (cable)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
-msgstr "كرواتيا"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
+msgstr "الولايات المتّحدة الأمريكيّة (cable-hrc)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "البوابة:"
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
+msgstr "الصين (broadcast)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add server"
-msgstr "اض٠خادم"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
+msgstr "اليابان (broadcast)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name"
-msgstr "اسم الطابعة البعيدة"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
+msgstr "اليابان (cable)"
-#: ../advertising/10-security.pl:1
-#, 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."
-msgstr ""
-"صممّت MandrakeSoft أدوات خاصة لإنشاء أكثر اصدارات Linux أماناً: DrakSec, أداة "
-"ادارة أمن النظام, Ø§Ø¶Ø§ÙØ© الى جدار ناري قوي ÙÙŠ وقت واحد Ùˆ هذا لتخÙيض أخطار "
-"الاختراقات."
+#: ../../standalone/drakxtv_.c:65
+msgid "East Europe"
+msgstr "أوروبّا الشّرقيّة"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "الجهاز: "
+#: ../../standalone/drakxtv_.c:65
+msgid "France [SECAM]"
+msgstr "ÙØ±Ù†Ø³Ø§ [سيكام]"
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
+#: ../../standalone/drakxtv_.c:65
+msgid "Ireland"
+msgstr "أيرلندا"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "Ø§ØªÙØ§Ù‚ية الترخيص"
+#: ../../standalone/drakxtv_.c:65
+msgid "West Europe"
+msgstr "أوروبّا الغربيّة"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "System Options"
-msgstr "خيارات النظام"
+#: ../../standalone/drakxtv_.c:66
+msgid "Australia"
+msgstr "أوستراليا"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Please choose the desired security level"
-msgstr "ÙØ¶Ù„اً اختر مستوى الأمن الذي تريده"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
+msgstr "نيوزيلندا "
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "هذا المستضي٠موجود ÙÙŠ القائمة مسبقاً, لا يمكن Ø§Ø¶Ø§ÙØªÙ‡ مرة أخرى.\n"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
+msgstr "جنوب Ø£ÙØ±ÙŠÙ‚يا "
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", USB printer"
-msgstr ", طابعة USB"
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
+msgstr "الأرجنتين "
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
msgstr ""
-"تعذر غلق mkbootdisk: \n"
-" %s \n"
-" %s"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakxtv_.c:102
msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
+"Please,\n"
+"type in your tv norm and country"
msgstr ""
+"ÙØ¶Ù„اً,\n"
+"اطبع tv norm الخاص بك و بلدك"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "اختر التطبيقات التي ستدعم الخطوط :"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "تهيئة X"
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
+msgstr "TV norm :"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "hd"
-msgstr "تشاد"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
+msgstr "المنطقة :"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "التّركية (طراز \"F\" التقليدي)"
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
+msgstr "ضيط قنوات Ø§Ù„ØªÙ„ÙØ§Ø² ÙÙŠ تقدم ..."
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "تهانينا!"
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
+msgstr "جاري ضبط قنوات Ø§Ù„ØªÙ„ÙØ§Ø²"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
-msgstr "استخدم owner id للتنÙيذ"
+#: ../../standalone/drakxtv_.c:120
+msgid "There was an error while scanning for TV channels"
+msgstr "كان هناك خطأ أثناء ضبط قنوات Ø§Ù„ØªÙ„ÙØ§Ø²"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Allow remote root login"
-msgstr ""
-"Arguments: (arg)\n"
-"\n"
-"Allow/Forbid remote root login."
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
+msgstr "XawTV غير مثبت!"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Down"
-msgstr "تحت"
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
+msgstr "نتمنى لك يوماً سعيداً!"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "طابعة خام (لا مشغل)"
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "الآن يمكنك تشغيل XawTV (ÙÙŠ الواجهة الرسومية!) !\n"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Install rpm"
-msgstr "ثبت rpm"
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
+msgstr "لم يتم ايجاد بطاقة ØªÙ„ÙØ§Ø²!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:148
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"
+"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 ""
-"لطباعة مل٠من سطر الأوامر يمكنك أن تستخدم الأمر \"%s <file>\" أو أن تستخدم "
-"أداة طباعة رسومية: \"xpp <file>\" أو \"kprinter <file>\". الأدوات الرسومية "
-"تسمح لك باختيار الطابعات و تعديل خياراتها بسهولة.\n"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "الوقت المتبقي"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ البريطانية"
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "احذ٠التحميل"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "اخذ٠الخطوط"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "انتظر من ÙØ¶Ù„Ùƒ, جاري تعيين مستوى الأمن.."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "الألمانية (لا Ù…ÙØ§ØªÙŠØ­ ميتة)"
+"لم يتم ايجاد بطاقة ØªÙ„ÙØ§Ø² على جهازك. ÙØ¶Ù„اً تأكد من أن بطاقة الÙيديو/Ø§Ù„ØªÙ„ÙØ§Ø² "
+"المدعومة ÙÙŠ لينكس موصولة بشكل صحيح.\n"
+"\n"
+"\n"
+"يمكنك زيارة قاعدة بيانات العتاد المدعوم الخاصة بنا على:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
+#: ../../standalone/harddrake2_.c:17
+msgid "Alternative drivers"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
-msgstr "جاري نقل %s..."
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 أل٠لون (15 بت)"
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:21
msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
-msgstr "يمكنك التصدير باستخدام NFS أو Samba. أي منهما تريد"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "غامبيا"
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "مركز تحكم Mandrake"
+#: ../../standalone/harddrake2_.c:22
+#, fuzzy
+msgid "Channel"
+msgstr "الغاء"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Reboot"
-msgstr "اعادة التشغيل"
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
+msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Multi-function device"
-msgstr ", جهاز متعدد الوظائÙ"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
+msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:23
msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp.\n"
-"Have a look at /etc/services for information."
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
msgstr ""
-"يمكنك ادخال Ù…Ù†Ø§ÙØ° متنوعة. \n"
-"أمثلة صالحة هي: 139/tcp 139/udp.\n"
-"الق نظرة على /etc/services لمزيد من المعلومات."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-الشريط \n"
+#: ../../standalone/harddrake2_.c:26
+#, fuzzy
+msgid "Bus identification"
+msgstr "التحقق"
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../standalone/harddrake2_.c:27
msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-"لا يوجد Ù…ØªØµÙØ­ مثبت على نظامك, ÙØ¶Ù„اً قم بتثبيت Ù…ØªØµÙØ­ اذا كنت ترغب ÙÙŠ ØªØµÙØ­ نظام "
-"المساعدة"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remember this password"
-msgstr "تذكّر كلمة السر هذه"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "مشاركة إتصال الإنترنت ممكَّنة الآن."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-الشبكة عن طريق SSH.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:30
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."
+"- 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 ""
-" اذا تم اكتشا٠الطابعة المطلوبة آلياً, كل ما عليك هو اختيارها من القائمة ثم "
-"أض٠اسم المستخدم, كلمة المرور, و/أو مجموعة العمل ان احتجت لذلك."
-
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid " cable"
-msgstr "الجدول"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
-msgstr "استخدم المساحة Ø§Ù„ÙØ§Ø±ØºØ© على تجزئة Windows"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s تم ايجاده على %s, هل تريد تهيئته آلياً؟"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "مشغل XFree86: %s\n"
+#: ../../standalone/harddrake2_.c:33
+#, fuzzy
+msgid "Cache size"
+msgstr "حجم chunk"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr "هذا المستضيÙ/الشبكة موجود ÙÙŠ القائمة مسبقاً, لا يمكن Ø§Ø¶Ø§ÙØªÙ‡ مرة أخرى.\n"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
+msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "اختر الحزم التي تريد تثبيتها"
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
-msgstr "بابوا غينيا الجديدة"
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
+msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Multi-function device on a parallel port"
-msgstr ", جهاز متعدد الوظائ٠على Ø§Ù„Ù…Ù†ÙØ° المتوازي #%s"
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
+msgstr ""
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Busy files"
-msgstr "انسخ Ù…Ù„ÙØ§Øª النظام"
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "الصربية (سيريلي)"
+#: ../../standalone/harddrake2_.c:36
+#, fuzzy
+msgid "Cpuid level"
+msgstr "مستوى الأمن"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "ÙØ¶Ù„اً أدخل الدليل الموجودة Ùيه النسخ الإحتياطية"
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
-msgstr "اجعل رسائل النواة صامتة Ø§ÙØªØ±Ø§Ø¶ÙŠØ§Ù‹"
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:37
msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
msgstr ""
-"هل تريد تعيين هذه الطابعة (\"%s\")\n"
-"كطابعة Ø§ÙØªØ±Ø§Ø¶ÙŠØ©ØŸ"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
-msgstr "حدود DHCP end"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "انشاء قرص الإقلاع..."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "انتظر من ÙØ¶Ù„Ùƒ, جاري اختبار الإتصال..."
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "جاري اغلاق الشبكة"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "اسم الدخول"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+#: ../../standalone/harddrake2_.c:38
+msgid "This field describes the device"
msgstr ""
-"NFS بروتوكول شائع لمشاركة Ø§Ù„Ù…Ù„ÙØ§Øª على شبكات\n"
-"TCP/IP. هذه الخدمة تسمح لك بالتحكم Ø¨Ø§Ù„Ù…Ù„ÙØ§Øª عن طريق NFS."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
-msgstr "DHCP العميل"
+#: ../../standalone/harddrake2_.c:39
+#, fuzzy
+msgid "Old device file"
+msgstr "اختر ملÙ"
-#: ../../standalone/harddrake2:1
-#, fuzzy, 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"
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
msgstr ""
-"هذا هو HardDrake, أداة Mandrake لتهيئة العتاد.\n"
-"الإصدار: %s\n"
-"المؤلÙ: تييري Ùينيو <tvignaud@mandrakesoft.com>\n"
-"\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
-msgstr "اهمال"
+#: ../../standalone/harddrake2_.c:41
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway device"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "جاري الطباعة/المسح على \"%s\""
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit raid modules"
-msgstr "RAID اهمل وحدات ال"
+#: ../../standalone/harddrake2_.c:43
+msgid "Module"
+msgstr "وحدة"
-#: ../../services.pm:1
-#, 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)."
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-"lpd هو مراقب الطباعة الذي يحتاجه أمر lpr للعمل بشل صحيح. أساساً\n"
-"هو خادم يوصل وظائ٠الطباعة الى الطابعات."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sunday"
-msgstr "الأحد"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "إعدادات الإتصال بالإنترنت"
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
+msgstr ""
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
-msgstr "أرقام Ù…ÙØµÙˆÙ„Ø© Ø¨Ø§Ù„ÙØ§ØµÙ„Ø©"
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/harddrake2_.c:46
msgid ""
-"Once you've selected a device, you'll be able to see the device information "
-"in fields displayed on the right frame (\"Information\")"
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-"عند اختيارك لجهاز, ستستطيع رؤية معلومات تاجهاز ÙÙŠ الحقول المعروضة ÙÙŠ الإطار "
-"الأيمن (\"معلومات\")"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "انقل القاعدة المختارة الى Ùوق بمستوى واحد"
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
msgstr ""
-"الماسحة الضوئية التالية\n"
-"\n"
-"%s\n"
-"Ù…ØªÙˆÙØ±Ø© لنظامك.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "هل تريد ÙØ¹Ù„اً حذ٠الطابعة \"%s\"ØŸ"
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
+msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "I can't find any room for installing"
-msgstr "لا يمكنني ايجاد مساحة ÙØ§Ø±ØºØ© للتثبيت"
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Default printer"
-msgstr "الطابعة Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠØ©"
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
msgstr ""
-"لقد قمت بتهيئة طرق متعددة للإتصال بالإنترنت.\n"
-"اختر الطريقة التي تريد استخدامها.\n"
-"\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Modify RAID"
-msgstr "تعديل RAID"
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
+msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:53
msgid ""
-"I have detected an ISDN PCI card, but I don't know its type. Please select a "
-"PCI card on the next screen."
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-"تم اكتشا٠بطاقة ISDN PCI, لكن لم يتم التعر٠على نوعها. ÙØ¶Ù„اً اختر بطاقة PCI "
-"ÙÙŠ الشاشة التالية."
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr "اض٠مستخدم"
+#: ../../standalone/harddrake2_.c:55
+#, fuzzy
+msgid "Floppy format"
+msgstr "تنسيق"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "أقراص RAID %s\n"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Liberia"
-msgstr "ليبريا"
+#: ../../standalone/harddrake2_.c:56
+#, fuzzy
+msgid "Level"
+msgstr "المستوى"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
msgstr ""
-#: ../../standalone/drakgw:1
-#, 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"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
msgstr ""
-"ÙØ¶Ù„اً أدخل اسم الواجهة المتصلة بالإنترنت.\n"
-"\n"
-"أمثلة:\n"
-"\t\tppp+ لوصلات المودم و DSL, \n"
-"\t\teth0, أو eth1 لوصلات الكيبل, \n"
-"\t\tippp+ لوصلات ISDN.\n"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose your keyboard"
-msgstr "اختر لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ الخاصة بك"
-#: ../../steps.pm:1
-#, c-format
-msgid "Format partitions"
-msgstr "تجهيز التجزئات"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "تصحيح آلي لتهيئة CUPS"
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+#, fuzzy
+msgid "Model"
+msgstr "وحدة"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Running \"%s\" ..."
-msgstr "جاري تشغيل \"%s\" ..."
+#: ../../standalone/harddrake2_.c:58
+#, fuzzy
+msgid "hard disk model"
+msgstr "Card mem (DMA)"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "enable radio support"
-msgstr "تمكين دعم الراديو"
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "مشاركة الطابعات على Ø§Ù„Ù…Ø³ØªØ¶ÙŠÙØ§Øª: "
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Model name"
+msgstr "اسم الوحدة"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "اسم مل٠Loopback: %s"
+#: ../../standalone/harddrake2_.c:60
+msgid "Official vendor name of the cpu"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "رجاء اختر الطابعة التي ستذهب اليها وظائ٠الطباعة."
+#: ../../standalone/harddrake2_.c:61
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 buttons"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not transfer printers"
-msgstr "لا تنقل الطابعات"
+#: ../../standalone/harddrake2_.c:62
+#, fuzzy
+msgid "Name"
+msgstr "الاسم: "
-#: ../../help.pm:1
-#, c-format
-msgid "Delay before booting the default image"
-msgstr "توقيت ما قبل اقلاع الصورة Ø§Ù„Ø§ÙØªØ±Ø§Ø¶ÙŠØ©"
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "network printer port"
+msgstr "طابعة شبكة (TCP/Socket)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Hard Disk to backup"
-msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Configure"
-msgstr "إعداد"
+#: ../../standalone/harddrake2_.c:64
+msgid "the number of the processor"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake"
-msgstr "Scannerdrake"
+#: ../../standalone/harddrake2_.c:65
+#, fuzzy
+msgid "Model stepping"
+msgstr "حمل الإعدادات"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr "تحذير, تم ايجاد اتصال إنترنت آخر, ربما يكون يستخدم شبكتك"
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
-msgstr "مستخدمو المساعد"
+#: ../../standalone/harddrake2_.c:66
+msgid "The type of bus on which the mouse is connected"
+msgstr ""
-#: ../../network/network.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
msgstr ""
-"ÙØ¶Ù„اً أدخل اسم المستضيÙ.\n"
-"يجب أن يكون اسم المستضي٠صالحاً و كاملاً,\n"
-"مثل ``mybox.mylab.myco.com''.\n"
-"يمكنك أيضاً ادخال عنوان IP الخاص بالبوابة ان ÙˆÙØ¬Ø¯Øª."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "اختر Printer Spooler"
+#: ../../standalone/harddrake2_.c:68
+msgid "the vendor name of the processor"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Create new theme"
-msgstr "انشئ سمة جديدة"
+#: ../../standalone/harddrake2_.c:82
+#, fuzzy
+msgid "/_Quit"
+msgstr "خروج"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
-msgstr "شروح أدوات Mandrake"
+#: ../../standalone/harddrake2_.c:83
+#, fuzzy
+msgid "/Autodetect _printers"
+msgstr "تحقق آلي"
-#
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "No image found"
-msgstr "تعذر ايجاد صورة"
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
+msgstr "/_خيارات"
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
-"لم يتم تثبيت بعض الحزم المهمة بشل صحيح.\n"
-"إما أن سواقة القرص المدمج أو أن القرص المدمج Ù†ÙØ³Ù‡ به عيب ما.\n"
-"تأكد من صحة القرص المدمج على كمبيوتر مثبّت باستخدام الأمر \"rpm -qpl Mandrake/"
-"RPMS/*.rpm\"\n"
+#: ../../standalone/harddrake2_.c:85
+#, fuzzy
+msgid "/Autodetect _modems"
+msgstr "تحقق آلي"
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
-msgstr "Mandrake Linux 9.2 هي البيئة الأمثل لتطوير البرامج"
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
+msgstr "/_مساعدة"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Detected model: %s"
-msgstr "تم اكتشا٠الطراز: %s"
+#: ../../standalone/harddrake2_.c:89
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_مساعدة"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
msgstr ""
-#: ../../standalone/drakedm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:93
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."
+"Description of the fields:\n"
+"\n"
msgstr ""
-"مدير عرض X11 يسمح لك بتسجيل الدخول الى\n"
-"نظامك مع تشغيل خادم Ø§Ù„Ù†ÙˆØ§ÙØ° X Ùˆ يدعم تشغيل\n"
-"عدة جلسات X Ù…Ø®ØªÙ„ÙØ© على ماكينتك المحلية ÙÙŠ Ù†ÙØ³ الوقت."
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr "if set to yes, run the daily security checks"
+#: ../../standalone/harddrake2_.c:96
+msgid ""
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
-msgstr "أذربيجان"
+#: ../../standalone/harddrake2_.c:96
+#, fuzzy
+msgid "Select a device !"
+msgstr "اختر جهاز المسح الضوئي"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Device name to use for backup"
-msgstr "ÙØ¶Ù„اً أدخل اسم جهاز النسخ الإحتياطي"
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
+msgstr "/_تقرير خطأ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
-msgstr "لا يوجد شريط ÙÙŠ %s!"
+#: ../../standalone/harddrake2_.c:102
+#, fuzzy
+msgid "/_About..."
+msgstr "/مساعدة/_حول البرنامج..."
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
msgstr ""
-# U+200F (RTL mark) has been inserted between "Dvorak" and "(US)", so
-# it displays on screen as "(US) Dvorak", following the same schema
-# as others "Dvorak (xxxx)" with xxx in Arabic that display as "(xxxx) Dvorak"
-# that way the entry is also listed together with the other "Dvorak" entries.
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Dvorak†(US)"
-
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/harddrake2_.c:105
msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
msgstr ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "ما هي طريقة توصيل الطابعة؟"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security level"
-msgstr "مستوى الأمن"
+#: ../../standalone/harddrake2_.c:106
+#, fuzzy
+msgid "Author:"
+msgstr "تحقق آلي"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "final resolution"
-msgstr "دقة العرض النهائية"
+#: ../../standalone/harddrake2_.c:113
+msgid "Detection in progress"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
-msgstr "الخدمات"
+#: ../../standalone/harddrake2_.c:119
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "التحقق من الأقراص الصلبة"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Auto configuration"
-msgstr "تهيئة مخصصة"
+#: ../../standalone/harddrake2_.c:126
+#, fuzzy
+msgid "Detected hardware"
+msgstr "عرض معلومات العتاد"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 ميغابايت"
+#: ../../standalone/harddrake2_.c:129
+#, fuzzy
+msgid "Information"
+msgstr "اعرض المعلومات"
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "محطة عمل مكتبية"
+#: ../../standalone/harddrake2_.c:131
+#, fuzzy
+msgid "Configure module"
+msgstr "إعداد Ø§Ù„ÙØ£Ø±Ø©"
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
msgstr ""
-"برامج مكتبية: معالجة الكلمات (kword, abiword), الجداول الحسابية (kspread, "
-"gnumeric) , برامج عرض pdf, الخ"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "محطة ألعاب"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "برامج التسلية: ألعاب Ùيديو, ألعاب لوحات, ألعاب ستراتيجية, الخ"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "محطة وسائط متعددة"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "برامج تحرير/تشغيل الÙيديو Ùˆ الصوت"
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "محطة انترنت"
+#: ../../standalone/harddrake2_.c:143
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "جاري ازالة الطابعة \"%s\" ..."
-#: ../../share/compssUsers:999
-#, fuzzy
+#: ../../standalone/harddrake2_.c:159
msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-"مجموعة من الأدوات لقراءة و ارسال البريد و الأخبار (pine, mutt, tin..) و "
-"Ù„ØªØµÙØ­ الإنترنت"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "جهاز شبكة (عميل)"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "عملاء لبروتوكولات Ù…Ø®ØªÙ„ÙØ© مثل ssh"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "أدوات الإعدادات"
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "أدوات لتسهيل إعداد جهازك"
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
+msgstr ""
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "محطة عمل علمية"
+#: ../../standalone/harddrake2_.c:231
+#, fuzzy
+msgid "secondary"
+msgstr "%d ثوان"
-#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
-msgstr "تطبيقات علمية مثل gnuplot"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect modems"
+msgstr "تحقق آلي"
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "أدوات سطر الأوامر"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect printers"
+msgstr "تحقق آلي"
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "محررات نصوص, Ø£ØºÙ„ÙØ©, أدوات Ù…Ù„ÙØ§Øª, طرÙيات"
+#: ../../standalone/harddrake2_.c:261
+#, fuzzy
+msgid "/Options"
+msgstr "/_خيارات"
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "محطو عمل كيدي"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "من ÙØ¶Ù„Ùƒ اختر تصميم لوحة Ù…ÙØ§ØªÙŠØ­Ùƒ"
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"بيئة سطح مكتب كيدي, البيئة الرسومية الأساسية مع مجموعة من الأدوات المصاحبة"
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr "هل تريد أن يقوم زر BackSpace بعمل ÙˆØ¸ÙŠÙØ© زر Delete ÙÙŠ سطر الأوامر؟"
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "محطة عمل جنوم"
+#: ../../standalone/livedrake_.c:18
+msgid "Change Cd-Rom"
+msgstr "غيّر القرص المدمج"
-#: ../../share/compssUsers:999
+#: ../../standalone/livedrake_.c:19
msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
-"بيئة رسومية مع مجموعة من التطبيقات و أدوات سطح المكتب المناسبة للمستخدمين "
-"العاديين"
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "أسطخ مكتب رسومية أخرى"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, الخ"
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "برامج و مكتبات تطوير C و C++"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "وثائق المساعدة"
+"ÙØ¶Ù„ا أدخل قرص التثبيت ÙÙŠ سواقتك Ùˆ اضغط مواÙÙ‚ عندما تنتهي.\n"
+"إذا لم يكن قرص التثبيت لديك اضغط الغاء للإمتناع عن التحديث الحي."
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "كتب و مذكرات 'كي٠أعمل' حول Linux و البرامج الحرة"
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
+msgstr "لم أتمكن من بدء الترقية الحية !!!\n"
-#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr "LSB"
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
+msgstr "تم عمل التغيير, Ùˆ لكن ليتم ØªÙØ¹ÙŠÙ„Ù‡ يجب عليك الخروج"
-#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Linux Standard Base. Third party applications support"
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
+msgstr "logdrake"
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "ويب/FTP"
+#: ../../standalone/logdrake_.c:68
+msgid "Show only for the selected day"
+msgstr "إعرض سجلات اليوم المختار Ùقط"
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
+msgstr "/ملÙ/_جديد"
-#: ../../share/compssUsers:999
-msgid "Mail"
-msgstr "بريد"
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
+msgstr "<تحكم>N"
-#: ../../share/compssUsers:999
-msgid "Postfix mail server"
-msgstr "خادم البريد Postfix"
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
+msgstr "/ملÙ/_ÙØªØ­"
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "قواعد البيانات"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
+msgstr "<تحكم>O"
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "خادم قواعد البيانات PostgreSQL أو MySQL"
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr "/ملÙ/_Ø­ÙØ¸"
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "جدار ناري/موجّÙÙ‡"
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
+msgstr "<تحكم>S"
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "بوابة انترنت"
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
+msgstr "/ملÙ/Ø­ÙØ¸ _باسم"
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS"
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr "/ملÙ/-"
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "خادم أسماء النطاثات و معلومات الشيكة"
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
+msgstr "/خيارات/اختبار"
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "خادم شبكات"
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
+msgstr "/مساعدة/_حول البرنامج..."
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "خادم NFS, خادم SMB, خادم بروكسي, خادم ssh"
+#: ../../standalone/logdrake_.c:145
+msgid "User"
+msgstr "المستخدم"
-#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
-msgstr "مجموعة من الأدوات لقراءة Ùˆ ارسال البريد Ùˆ الأخبار Ùˆ ØªØµÙØ­ الإنترنت"
+#: ../../standalone/logdrake_.c:146
+msgid "Messages"
+msgstr "الرسائل"
-#~ msgid "The setup has already been done, and it's currently enabled."
-#~ msgstr "تم عمل التنصيب, و هو ممكَّن الآن."
+#: ../../standalone/logdrake_.c:147
+msgid "Syslog"
+msgstr "syslog"
-#~ msgid "Logs"
-#~ msgstr "السجلات"
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
+msgstr "شروح أدوات Mandrake"
-#~ msgid "The setup has already been done, but it's currently disabled."
-#~ msgstr "تم عمل التنصيب, و لكنه غير ممكَّن الآن"
+#: ../../standalone/logdrake_.c:151
+msgid "search"
+msgstr "بحث"
-#~ msgid "Profile "
-#~ msgstr "التشكيل:"
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
+msgstr "أداة لمراقبة سجلات نظامك"
-#~ msgid ""
-#~ "Welcome to the Internet Connection Sharing utility!\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ "Click on Configure to launch the setup wizard."
-#~ msgstr ""
-#~ "أهلا بك ÙÙŠ أداة مشاركة الإتصال بالإنترنت!\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ "اضغط على تهيئة لتشغيل معالج الإعداد."
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
+msgstr "الضبط"
-#~ msgid "Internet Connection Sharing configuration"
-#~ msgstr "إعدادات مشاركة إتصال الإنترنت"
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
+msgstr "الموائمة"
-#~ msgid "No Internet Connection Sharing has ever been configured."
-#~ msgstr "لم يتم اعداد أي مشاركة اتصال بالإنترنت"
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
+msgstr "لكن ليس موائمة"
-#~ msgid "when checked, owner and group won't be changed"
-#~ msgstr "عند التأشير لن يتم تغيير المالك و المجموعة"
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
+msgstr "احتيار ملÙ"
-#~ msgid ""
-#~ "XawTV isn't installed!\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do have a TV card but DrakX has neither detected it (no bttv nor "
-#~ "saa7134\n"
-#~ "module in \"/etc/modules\") nor installed xawtv, please send the\n"
-#~ "results of \"lspcidrake -v -f\" to \"install@mandrakesoft.com\"\n"
-#~ "with subject \"undetected TV card\".\n"
-#~ "\n"
-#~ "\n"
-#~ "You can install it by typing \"urpmi xawtv\" as root, in a console."
-#~ msgstr ""
-#~ "XawTV غير مثبّت!\n"
-#~ "\n"
-#~ "\n"
-#~ "اذا كانت لديك بطاقة ØªÙ„ÙØ§Ø² لكن لم يستطع DrakX اكتشاÙها (لا توجد وحدات bttv "
-#~ "ولا saa7134\n"
-#~ "ÙÙŠ \"/etc/modules\") أو لم تثبّت xawtv, ÙØ¶Ù„اً قم بإرسال نتائج\n"
-#~ "الأمر \"lspcidrake -v -f\" الى \"install@mandrakesoft.com\"\n"
-#~ "مع العنوان \"undetected TV card\".\n"
-#~ "\n"
-#~ "\n"
-#~ "يمكنك تثبيت XawTV بكتابة الأمر \"urpmi xawtv\" كمستخدم جذر ÙÙŠ سطر الأوامر."
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
+msgstr "التقويم"
-#~ msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
+msgstr "محتويات الملÙ"
-#~ msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+#, fuzzy
+msgid "Mail alert"
+msgstr "تنبية البريد/SMS"
-#~ msgid "Hostname configuration"
-#~ msgstr "تهيئة اسم المستضيÙ"
+#: ../../standalone/logdrake_.c:245
+#, c-format
+msgid "please wait, parsing file: %s"
+msgstr "يرجى الإنتظار, جاري تحليل الملÙ: %s"
-#~ msgid "Hostname"
-#~ msgstr "اسم المستضيÙ"
+#: ../../standalone/logdrake_.c:392
+#, fuzzy
+msgid "Mail alert configuration"
+msgstr "تهيئة تنبيه البريد/SMS"
-#~ msgid "Remote Printers"
-#~ msgstr "الطابعات البعيدة"
+#: ../../standalone/logdrake_.c:393
+#, fuzzy
+msgid ""
+"Welcome to the mail configuration utility.\n"
+"\n"
+"Here, you'll be able to set up the alert system.\n"
+msgstr ""
+"أهلا بكم الى أداة تهيئة البريد/SMS.\n"
+"\n"
+"هنا سيمكنك الإعداد \n"
-#~ msgid "Printing system: "
-#~ msgstr "نظام الطباعة: "
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
+msgstr ""
+#: ../../standalone/logdrake_.c:401
#, fuzzy
-#~ msgid "Level 1"
-#~ msgstr "المستوى"
+msgid "Domain Name Resolver"
+msgstr "Domain name"
+#: ../../standalone/logdrake_.c:402
#, fuzzy
-#~ msgid "Level 2"
-#~ msgstr "المستوى"
+msgid "Ftp Server"
+msgstr " الخادم NIS"
+#: ../../standalone/logdrake_.c:403
#, fuzzy
-#~ msgid "Level 3"
-#~ msgstr "المستوى"
+msgid "Postfix Mail Server"
+msgstr "خادم البريد Postfix, خادم الأخبار Inn"
+#: ../../standalone/logdrake_.c:404
#, fuzzy
-#~ msgid "Level 4"
-#~ msgstr "المستوى"
+msgid "Samba Server"
+msgstr " الخادم NIS"
+#: ../../standalone/logdrake_.c:405
#, fuzzy
-#~ msgid "Level 5"
-#~ msgstr "المستوى"
+msgid "SSH Server"
+msgstr " الخادم NIS"
+#: ../../standalone/logdrake_.c:406
#, fuzzy
-#~ msgid "Insert floppy and press %s"
-#~ msgstr "أدخل قرص مرن ÙÙŠ %s"
-
-#~ msgid "Load"
-#~ msgstr "حمل"
-
-#~ msgid ""
-#~ "Monitor\n"
-#~ "\n"
-#~ " The installer will normally automatically detect and configure the\n"
-#~ "monitor connected to your machine. If it is correct, you can choose from\n"
-#~ "this list the monitor you actually have connected to your computer."
-#~ msgstr ""
-#~ "الشاشة\n"
-#~ "\n"
-#~ " يمكن لبرنامج التثبيت اكتشا٠و تهيئة الشاشة المتصلة بماكينتك\n"
-#~ "آلياً. ان لم يصل ذلك, يمكنك اختيار الشاشة التي لديك\n"
-#~ "من القائمة."
+msgid "Webmin Service"
+msgstr "الخدمات"
-#~ msgid "Bad Ip"
-#~ msgstr "IP سيئ"
+#: ../../standalone/logdrake_.c:407
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "الخدمات"
-#~ msgid "Output"
-#~ msgstr "الناتج"
+#: ../../standalone/logdrake_.c:414
+msgid "service setting"
+msgstr "إعدادات الخدمات"
-#~ msgid "Please relog into %s to activate the changes"
-#~ msgstr "يرجى اعادة تسجيل الدخول الى %s لتنشيط التغييرات"
+#: ../../standalone/logdrake_.c:415
+#, fuzzy
+msgid ""
+"You will receive an alert if one of the selected services is no more running"
+msgstr "سو٠تستلم تنبيهاً إذا كانت أحد الخدمات المختارة غير عاملة."
-#~ msgid ""
-#~ "Description:\n"
-#~ "\n"
-#~ " Drakbackup is used to backup your system.\n"
-#~ " During the configuration you can select: \n"
-#~ "\t- System files, \n"
-#~ "\t- Users files, \n"
-#~ "\t- Other files.\n"
-#~ "\tor All your system ... and Other (like Windows Partitions)\n"
-#~ "\n"
-#~ " Drakbackup allows you to backup your system on:\n"
-#~ "\t- Harddrive.\n"
-#~ "\t- NFS.\n"
-#~ "\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-#~ "\t- FTP.\n"
-#~ "\t- Rsync.\n"
-#~ "\t- Webdav.\n"
-#~ "\t- Tape.\n"
-#~ "\n"
-#~ " Drakbackup allows you to restore your system to\n"
-#~ " a user selected directory.\n"
-#~ "\n"
-#~ " Per default all backups will be stored on your\n"
-#~ " /var/lib/drakbackup directory\n"
-#~ "\n"
-#~ " Configuration file:\n"
-#~ "\t/etc/drakconf/drakbackup/drakbackup.conf\n"
-#~ "\n"
-#~ "Restore Step:\n"
-#~ " \n"
-#~ " During the restore step, DrakBackup will remove \n"
-#~ " your original directory and verify that all \n"
-#~ " backup files are not corrupted. It is recommended \n"
-#~ " you do a last backup before restoring.\n"
-#~ "\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Description:\n"
-#~ "\n"
-#~ " Drakbackup is used to backup your system.\n"
-#~ " During the configuration you can select: \n"
-#~ "\t- System files, \n"
-#~ "\t- Users files, \n"
-#~ "\t- Other files.\n"
-#~ "\tor All your system ... and Other (like Windows Partitions)\n"
-#~ "\n"
-#~ " Drakbackup allows you to backup your system on:\n"
-#~ "\t- Harddrive.\n"
-#~ "\t- NFS.\n"
-#~ "\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-#~ "\t- FTP.\n"
-#~ "\t- Rsync.\n"
-#~ "\t- Webdav.\n"
-#~ "\t- Tape.\n"
-#~ "\n"
-#~ " Drakbackup allows you to restore your system to\n"
-#~ " a user selected directory.\n"
-#~ "\n"
-#~ " Per default all backups will be stored on your\n"
-#~ " /var/lib/drakbackup directory\n"
-#~ "\n"
-#~ " Configuration file:\n"
-#~ "\t/etc/drakconf/drakbackup/drakbackup.conf\n"
-#~ "\n"
-#~ "Restore Step:\n"
-#~ " \n"
-#~ " During the restore step, DrakBackup will remove \n"
-#~ " your original directory and verify that all \n"
-#~ " backup files are not corrupted. It is recommended \n"
-#~ " you do a last backup before restoring.\n"
-#~ "\n"
-#~ "\n"
+#: ../../standalone/logdrake_.c:428
+msgid "load setting"
+msgstr "حمل الإعدادات"
-#~ msgid ""
-#~ "Options Description:\n"
-#~ "\n"
-#~ " - Backup System Files:\n"
-#~ " \n"
-#~ "\tThis option allows you to backup your /etc directory,\n"
-#~ "\twhich contains all configuration files. Please be\n"
-#~ "\tcareful during the restore step to not overwrite:\n"
-#~ "\t\t/etc/passwd \n"
-#~ "\t\t/etc/group \n"
-#~ "\t\t/etc/fstab\n"
-#~ "\n"
-#~ " - Backup User Files: \n"
-#~ "\n"
-#~ "\tThis option allows you select all users that you want to \n"
-#~ "\tbackup. To preserve disk space, it is recommended that\n"
-#~ "\tyou do not include the web browser's cache.\n"
-#~ "\n"
-#~ " - Backup Other Files: \n"
-#~ "\n"
-#~ "\tThis option allows you to include additional data to save.\n"
-#~ "\tIf you want to add individual files, select them from the\n"
-#~ "\trighthand 'Files' list pane. To add directories, enter the \n"
-#~ "\tdirectory by clicking on it in the lefthand 'Folders' pane, \n"
-#~ "\tand at that point click 'OK' without selecting any files.\n"
-#~ " \n"
-#~ " - Incremental Backups:\n"
-#~ "\n"
-#~ "\tThe incremental backup is the most powerful option for \n"
-#~ "\tbackup. This option allows you to backup all your data \n"
-#~ "\tthe first time, and only the changed data afterward.\n"
-#~ "\tThen you will be able, during the restore step, to restore \n"
-#~ "\tyour data from a specified date. If you have not selected \n"
-#~ "\tthis option all old backups are deleted before each backup. \n"
-#~ "\n"
-#~ " - Differential Backups:\n"
-#~ " \n"
-#~ "\tThe differential backup, rather than comparing changes in the\n"
-#~ "\tdata to the previous incremental backup, always compares the\n"
-#~ "\tdata to the initial base backup. This method allows one to\n"
-#~ "\trestore the base and then the differential from a certain date.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Options Description:\n"
-#~ "\n"
-#~ " - Backup System Files:\n"
-#~ " \n"
-#~ "\tThis option allows you to backup your /etc directory,\n"
-#~ "\twhich contains all configuration files. Please be\n"
-#~ "\tcareful during the restore step to not overwrite:\n"
-#~ "\t\t/etc/passwd \n"
-#~ "\t\t/etc/group \n"
-#~ "\t\t/etc/fstab\n"
-#~ "\n"
-#~ " - Backup User Files: \n"
-#~ "\n"
-#~ "\tThis option allows you select all users that you want to \n"
-#~ "\tbackup. To preserve disk space, it is recommended that\n"
-#~ "\tyou do not include the web browser's cache.\n"
-#~ "\n"
-#~ " - Backup Other Files: \n"
-#~ "\n"
-#~ "\tThis option allows you to include additional data to save.\n"
-#~ "\tIf you want to add individual files, select them from the\n"
-#~ "\trighthand 'Files' list pane. To add directories, enter the \n"
-#~ "\tdirectory by clicking on it in the lefthand 'Folders' pane, \n"
-#~ "\tand at that point click 'OK' without selecting any files.\n"
-#~ " \n"
-#~ " - Incremental Backups:\n"
-#~ "\n"
-#~ "\tThe incremental backup is the most powerful option for \n"
-#~ "\tbackup. This option allows you to backup all your data \n"
-#~ "\tthe first time, and only the changed data afterward.\n"
-#~ "\tThen you will be able, during the restore step, to restore \n"
-#~ "\tyour data from a specified date. If you have not selected \n"
-#~ "\tthis option all old backups are deleted before each backup. \n"
-#~ "\n"
-#~ " - Differential Backups:\n"
-#~ " \n"
-#~ "\tThe differential backup, rather than comparing changes in the\n"
-#~ "\tdata to the previous incremental backup, always compares the\n"
-#~ "\tdata to the initial base backup. This method allows one to\n"
-#~ "\trestore the base and then the differential from a certain date.\n"
-#~ "\n"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
+msgstr "سو٠تستلم تنبيها اذا كان التحميل أعلى من هذه القيمة"
-#~ msgid "Please check if you want to use the non-rewinding device."
-#~ msgstr ""
-#~ "ÙØ¶Ù„ا قم بالتأشير هنا اذا كنت تريد استخدام جهاز غير قابل للرجوع الى الخلÙ."
+#: ../../standalone/logdrake_.c:444
+msgid "alert configuration"
+msgstr "إعدادات التنبيه"
-#~ msgid "Please enter your password"
-#~ msgstr "رجاء كلمة المرور"
+#: ../../standalone/logdrake_.c:445
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "رجاء كلمة المرور"
-#~ msgid ""
-#~ "\n"
-#~ " Some errors during sendmail are caused by \n"
-#~ " a bad configuration of postfix. To solve it you have to\n"
-#~ " set myhostname or mydomain in /etc/postfix/main.cf\n"
-#~ "\n"
-#~ msgstr ""
-#~ "\n"
-#~ " بعض أخطاء sendmail يكون سببها \n"
-#~ " تهيئة سيئة من postfix. لحل هذا المشكلة عليك\n"
-#~ " تعيين myhostname أو mydomain ÙÙŠ مل٠/etc/postfix/main.cf\n"
-#~ "\n"
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
+msgstr "Ø­ÙØ¸ بإسم.."
-#~ msgid ""
-#~ "Please choose your CD/DVD device\n"
-#~ "(Press Enter to propogate settings to other fields.\n"
-#~ "This field isn't necessary, only a tool to fill in the form.)"
-#~ msgstr ""
-#~ "ÙØ¶Ù„اً اختر جهاز CD/DVD الخاص بك\n"
-#~ "(اضغط ادخال لنشر الإعدادات لحقول أخرى.\n"
-#~ "هذا الحقل ليس ضرورياً, انه مجرد أداة لملء الإستمارة.)"
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "ÙØ¶Ù„اً, اختر نوع Ø§Ù„ÙØ£Ø±Ø© الخاصة بك."
-# c-format
-#~ msgid "Please check if you want to eject your tape after the backup."
-#~ msgstr "ÙØ¶Ù„ا قم بالتأشير هنا اذا كنت تريد اخراج الشريط بعد النسخ الإحتياطي."
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
+msgstr "محاكاة الزر الثالث؟"
-#~ msgid "Please check if you want to erase your tape before the backup."
-#~ msgstr "ÙØ¶Ù„ا قم بالتأشير هنا اذا كنت تريد مسح الشريط قبل النسخ الإحتياطي."
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "ا عداد الشّبكة "
-#~ msgid "Please enter the host name or IP."
-#~ msgstr "ÙØ¶Ù„ا أدخل اسم المستضي٠أو عنوان IP."
+#: ../../standalone/net_monitor_.c:96
+#, fuzzy
+msgid "Profile "
+msgstr "التشكيل:"
-#~ msgid ""
-#~ " Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s@epita."
-#~ "fr>"
-#~ msgstr ""
-#~ " جميع الحقوق محÙوظة (C) 2001 MandrakeSoft من دوبون سيباستيان "
-#~ "<dupont_s@epita.fr>"
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
+msgstr ""
-#~ msgid ""
-#~ "Options Description:\n"
-#~ "\n"
-#~ "Please be careful when you are using ftp backup, because only \n"
-#~ "backups that are already built are sent to the server.\n"
-#~ "So at the moment, you need to build the backup on your hard \n"
-#~ "drive before sending it to the server.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "وص٠الخيارات:\n"
-#~ "\n"
-#~ "من ÙØ¶Ù„Ùƒ كن حذراً عند استخدام النسخ الإحتياطي عبر FTP, لأن \n"
-#~ "النسخ المبنية مسبقاً Ùقط هي التي يتم ارسالها الى الخادم.\n"
-#~ "لذا ÙØ§Ù„آن عليك أن تبني النسخة الإحتياطية على القرص \n"
-#~ "الصلب قبل ارسالها الى الخادم.\n"
-#~ "\n"
+#: ../../standalone/net_monitor_.c:103
+#, fuzzy
+msgid "Sending Speed:"
+msgstr "جاري ارسال Ø§Ù„Ù…Ù„ÙØ§Øª..."
-#~ msgid ""
-#~ "\n"
-#~ "Restore Backup Problems:\n"
-#~ "\n"
-#~ "During the restore step, Drakbackup will verify all your\n"
-#~ "backup files before restoring them.\n"
-#~ "Before the restore, Drakbackup will remove \n"
-#~ "your original directory, and you will loose all your \n"
-#~ "data. It is important to be careful and not modify the \n"
-#~ "backup data files by hand.\n"
-#~ msgstr ""
-#~ "\n"
-#~ "مشاكل استعادة النسخ الإحتياطية:\n"
-#~ "\n"
-#~ "أثناء خطوة التثبيت, سيقوم Drakbackup بالتأكد من كل Ù…Ù„ÙØ§Øª\n"
-#~ "النسخ الإحتياطي قبل استعادتها.\n"
-#~ "قبل الإستعادة سيقوم drakbackup بحذ٠\n"
-#~ "الدليل الأصلي و ستخسر كل البيانات التي \n"
-#~ "عليه. من المهم أن تكون حذراً و لا تقوم بتعديل \n"
-#~ "بيانات النسخ الإحتياطي يدوياً.\n"
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
+msgstr ""
-#~ msgid ""
-#~ " updates 2002 MandrakeSoft by Stew Benedict <sbenedict@mandrakesoft.com>"
-#~ msgstr ""
-#~ " تحديثات 2002 MandrakeSoft من Stew Benedict <sbenedict@mandrakesoft.com>"
+#: ../../standalone/net_monitor_.c:106
+#, fuzzy
+msgid "Connection Time: "
+msgstr "نوع العلاقة"
-#~ msgid ""
-#~ "Arguments: (arg, expr='*.*', dev='tty12')\n"
-#~ "\n"
-#~ "Enable/Disable syslog reports to console 12. \\fIexpr\\fP is the\n"
-#~ "expression describing what to log (see syslog.conf(5) for more details) "
-#~ "and\n"
-#~ "dev the device to report the log."
-#~ msgstr ""
-#~ "Arguments: (arg, expr='*.*', dev='tty12')\n"
-#~ "\n"
-#~ "Enable/Disable syslog reports to console 12. \\fIexpr\\fP is the\n"
-#~ "expression describing what to log (see syslog.conf(5) for more details) "
-#~ "and\n"
-#~ "dev the device to report the log."
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
+msgstr ""
-#~ msgid "edit"
-#~ msgstr "حرّر"
+#: ../../standalone/net_monitor_.c:147
+#, fuzzy
+msgid "Wait please, testing your connection..."
+msgstr "رجاء انتظر أثناء عملية ttmkfdir..."
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ " Accept/Refuse broadcasted icmp echo."
-#~ msgstr ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ " Accept/Refuse broadcasted icmp echo."
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "وصّل إلى الإنترنت "
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable libsafe if libsafe is found on the system."
-#~ msgstr ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable libsafe if libsafe is found on the system."
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "وصّل إلى الإنترنت "
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Allow/Forbid remote root login."
-#~ msgstr ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Allow/Forbid remote root login."
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
+msgstr ""
-#~ msgid "select perm file to see/edit"
-#~ msgstr "اختر مل٠تصاريح لرؤيته/تحريره"
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
+msgstr ""
-#~ msgid "path"
-#~ msgstr "المسار"
+#: ../../standalone/net_monitor_.c:225
+#, fuzzy
+msgid "Connection complete."
+msgstr "سرعة الإتصال"
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable the logging of IPv4 strange packets."
-#~ msgstr ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable the logging of IPv4 strange packets."
+#: ../../standalone/net_monitor_.c:226
+msgid ""
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
+msgstr ""
-#~ msgid ""
-#~ "Arguments: (arg, alert=1)\n"
-#~ "\n"
-#~ "Enable/Disable IP spoofing protection."
-#~ msgstr ""
-#~ "Arguments: (arg, alert=1)\n"
-#~ "\n"
-#~ "Enable/Disable IP spoofing protection."
+#: ../../standalone/net_monitor_.c:330
+#, fuzzy
+msgid "Color configuration"
+msgstr "إعدادات التنبيه"
-#~ msgid "permissions"
-#~ msgstr "التصاريح"
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
+msgstr ""
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable msec hourly security check."
-#~ msgstr ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable msec hourly security check."
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
+msgstr ""
-#~ msgid "delete"
-#~ msgstr "حذÙ"
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
+msgstr ""
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Accept/Refuse bogus IPv4 error messages."
-#~ msgstr ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Accept/Refuse bogus IPv4 error messages."
+#: ../../standalone/net_monitor_.c:400
+#, fuzzy
+msgid "Local measure"
+msgstr "طابعة محلية"
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Use password to authenticate users."
-#~ msgstr ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Use password to authenticate users."
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
+msgstr ""
-#~ msgid "user"
-#~ msgstr "المستخدم"
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
+msgstr ""
-#~ msgid ""
-#~ "Standard: This is the standard security recommended for a computer that "
-#~ "will be used to connect\n"
-#~ " to the Internet as a client.\n"
-#~ "\n"
-#~ "High: There are already some restrictions, and more automatic "
-#~ "checks are run every night.\n"
-#~ "\n"
-#~ "Higher: The security is now high enough to use the system as a server "
-#~ "which can accept\n"
-#~ " connections from many clients. If your machine is only a "
-#~ "client on the Internet, you\n"
-#~ " should choose a lower level.\n"
-#~ "\n"
-#~ "Paranoid: This is similar to the previous level, but the system is "
-#~ "entirely closed and security\n"
-#~ " features are at their maximum\n"
-#~ "\n"
-#~ "Security Administrator:\n"
-#~ " If the 'Security Alerts' option is set, security alerts "
-#~ "will be sent to this user (username or\n"
-#~ " email)"
-#~ msgstr ""
-#~ "قياسي: هذا هو المستوى القياسي المنصوح به لكمبيوتر يقوم بالإتصال\n"
-#~ " بالإنترنت كعميل.\n"
-#~ "\n"
-#~ "Ù…Ø±ØªÙØ¹: توجد بعض القيود مسبقاً, Ùˆ بعض الإختبارات يتم تشغيلها آلياً عند "
-#~ "كل ليلة.\n"
-#~ "\n"
-#~ "مرتقع أكثر: المستوى الأمني عال٠بشكل كاÙ٠لاستخدام النظام كخادم يستطيع "
-#~ "أن يقبل\n"
-#~ " الإتصالات من عملاء كثيرين. اذا كان حاسبك مجرد عميل على "
-#~ "الإنترنت\n"
-#~ "\t Ùيجب عليك اختيار مستوى أقل.\n"
-#~ "\n"
-#~ "مرتقع جداً: هذا يماثل المستوى السابق, لكن النظام ÙÙŠ هذه الحال يكون مغلقاً Ùˆ "
-#~ "المزايا\n"
-#~ " الأمنية تكون على أقصى حد\n"
-#~ "\n"
-#~ "مدير الأمن:\n"
-#~ " اذا كان خيار 'التنبيهات الأمنية' مختاراً, ÙØ³ÙŠØªÙ… ارسال "
-#~ "تنبيهات أمنية الى المستخدم (بإسم المستخدم\n"
-#~ "\t أو البريد الألكتروني)"
+#: ../../standalone/net_monitor_.c:453
+#, fuzzy
+msgid ""
+"Warning, another internet connection has been detected, maybe using your "
+"network"
+msgstr "تحذير, تم ايجاد اتصال إنترنت آخر, ربما يكون يستخدم شبكتك"
-#~ msgid "Expert Area"
-#~ msgstr "منطقة الخبراء"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "اتصل"
-#~ msgid "Wizard..."
-#~ msgstr "المعالج..."
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Disconnect %s"
+msgstr "اقطع الإتصال"
-#~ msgid " / Region"
-#~ msgstr " / المنطقة"
+#: ../../standalone/printerdrake_.c:47
+msgid "Reading printer data ..."
+msgstr "جاري قراءة بيانات الطابعة ..."
-#~ msgid "Country"
-#~ msgstr "البلد"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Detecting devices ..."
+msgstr "جاري التحقق من الأجهزة ..."
-#~ msgid "Previous"
-#~ msgstr "السابق"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
+msgstr ""
-#~ msgid ""
-#~ "Options Description:\n"
-#~ "\n"
-#~ " In this step Drakbackup allow you to change:\n"
-#~ "\n"
-#~ " - The compression mode:\n"
-#~ " \n"
-#~ " If you check bzip2 compression, you will compress\n"
-#~ " your data better than gzip (about 2-10 %%).\n"
-#~ " This option is not checked by default because\n"
-#~ " this compression mode needs more time (about 1000%% more).\n"
-#~ " \n"
-#~ " - The update mode:\n"
-#~ "\n"
-#~ " This option will update your backup, but this\n"
-#~ " option is not really useful because you need to\n"
-#~ " decompress your backup before you can update it.\n"
-#~ " \n"
-#~ " - the .backupignore mode:\n"
-#~ "\n"
-#~ " Like with cvs, Drakbackup will ignore all references\n"
-#~ " included in .backupignore files in each directories.\n"
-#~ " ex: \n"
-#~ " #> cat .backupignore\n"
-#~ " *.o\n"
-#~ " *~\n"
-#~ " ...\n"
-#~ " \n"
-#~ "\n"
-#~ msgstr ""
-#~ "Options Description:\n"
-#~ "\n"
-#~ " In this step Drakbackup allow you to change:\n"
-#~ "\n"
-#~ " - The compression mode:\n"
-#~ " \n"
-#~ " If you check bzip2 compression, you will compress\n"
-#~ " your data better than gzip (about 2-10 %%).\n"
-#~ " This option is not checked by default because\n"
-#~ " this compression mode needs more time (about 1000%% more).\n"
-#~ " \n"
-#~ " - The update mode:\n"
-#~ "\n"
-#~ " This option will update your backup, but this\n"
-#~ " option is not really useful because you need to\n"
-#~ " decompress your backup before you can update it.\n"
-#~ " \n"
-#~ " - the .backupignore mode:\n"
-#~ "\n"
-#~ " Like with cvs, Drakbackup will ignore all references\n"
-#~ " included in .backupignore files in each directories.\n"
-#~ " ex: \n"
-#~ " #> cat .backupignore\n"
-#~ " *.o\n"
-#~ " *~\n"
-#~ " ...\n"
-#~ " \n"
-#~ "\n"
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
+#, c-format
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
-#~ msgid "help"
-#~ msgstr "مساعدة"
+#: ../../standalone/scannerdrake_.c:54
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "%s found on %s ÙˆÙّق بينه "
-#~ msgid "Please check if you are using CDRW media"
-#~ msgstr "ÙØ¶Ù„ا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
+#: ../../standalone/scannerdrake_.c:57
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
-#~ msgid "Please check if you are using a DVDRAM device"
-#~ msgstr "ÙØ¶Ù„ا قم بالتأشير هنا اذا كنت تستخدم جهاز DVDRAM"
+#: ../../standalone/scannerdrake_.c:63
+msgid "Select a scanner"
+msgstr "اختر جهاز المسح الضوئي"
-#~ msgid "Please check if you are using a DVDR device"
-#~ msgstr "ÙØ¶Ù„ا قم بالتأشير هنا اذا كنت تستخدم جهاز DVDR"
+#: ../../standalone/scannerdrake_.c:91
+#, c-format
+msgid "This %s scanner is unsupported"
+msgstr "هذا %s الماسح الضّوئيّ غير مدعّم"
-#~ msgid "Please check for multisession CD"
-#~ msgstr "ÙØ¶Ù„ا قم بالتأشير هنا اذا كنت تستخدم قرص مدمج متعدد الجلسات"
+#: ../../standalone/scannerdrake_.c:105
+#, c-format
+msgid ""
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
+msgstr ""
-#~ msgid "Version: %s\n"
-#~ msgstr "الإصدار: %s\n"
+#: ../../standalone/scannerdrake_.c:107
+msgid "choose device"
+msgstr "اختر الجهاز "
-#~ msgid "Importance: %s\n"
-#~ msgstr "الأهمية: %s\n"
+#: ../../standalone/scannerdrake_.c:113
+#, c-format
+msgid ""
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
+msgstr ""
+"الماسح الضوئي %s يجب اعداده عن طريق PrinterDrake.\n"
+"يمكن تشغيل PrinterDrake من مركز التحكم ÙÙŠ قسم العتاد."
-#~ msgid ""
-#~ "Which dhcp client do you want to use?\n"
-#~ "Default is dhcp-client."
-#~ msgstr ""
-#~ "أي عميل DHCP تريد أن تستخدم؟\n"
-#~ "Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠ Ù‡Ùˆ dhcp-client."
+#: ../../standalone/scannerdrake_.c:118
+#, c-format
+msgid ""
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
+msgstr ""
+"تمت تهيئة الماسح الضوئي %s.\n"
+"يمكنك الآن مسح المستندات باستخدام ``XSane'' من ÙØ±Ø¹ وسائط متعددة/برامج رسومية "
+"ÙÙŠ قائمة التطبيقات."
-#~ msgid "We are now going to configure the %s connection."
-#~ msgstr "نحن الآن سنقوم بتهيئة الوصلة %s."
+#: ../../standalone/service_harddrake_.c:44
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
-#~ msgid "Name: %s\n"
-#~ msgstr "الإسم: %s\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
+msgstr ""
-#~ msgid "Size: %d KB\n"
-#~ msgstr "الحجم: %d كيلوبايت\n"
+#: ../../standalone/service_harddrake_.c:64
+msgid "Hardware probing in progress"
+msgstr ""
-#~ msgid ""
-#~ "Which ISDN configuration do you prefer?\n"
-#~ "\n"
-#~ "* The Old configuration uses isdn4net. It contains powerful\n"
-#~ " tools, but is tricky to configure, and not standard.\n"
-#~ "\n"
-#~ "* The New configuration is easier to understand, more\n"
-#~ " standard, but with less tools.\n"
-#~ "\n"
-#~ "We recommand the light configuration.\n"
-#~ msgstr ""
-#~ "ما هي تهيئة ISDN التي ØªÙØ¶Ù„ها؟\n"
-#~ "\n"
-#~ "* التهيئة القديمة تستخدم isdn4net. و هي تحتوي على أدوات\n"
-#~ " قوية و لكنها صعبة التهيئة, و غير قياسية.\n"
-#~ "\n"
-#~ "* التهيئة الجديدة أسهل ÙÙŠ الÙهم, Ùˆ أكثر\n"
-#~ " قياسية, و لكن مع أدوات أقل.\n"
-#~ "\n"
-#~ "نحن Ù†ÙØ¶Ù‘Ù„ لك التهيئة الخÙÙŠÙØ©.\n"
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "اختر لغتك"
-#~ msgid "New configuration (isdn-light)"
-#~ msgstr "إعداد جديد (isdn-light)"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "اختر نوع التثبيت"
-#~ msgid "Old configuration (isdn4net)"
-#~ msgstr "إعداد قديم (isdn4net)"
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
+msgstr "التحقق من الأقراص الصلبة"
-#~ msgid "Internet connection & configuration"
-#~ msgstr "وصلة الإنترنت و الإعدادات"
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "إعداد Ø§Ù„ÙØ£Ø±Ø©"
-#~ msgid "Disconnect"
-#~ msgstr "اقطع الإتصال"
+#: ../../steps.pm_.c:18
+msgid "Choose your keyboard"
+msgstr "اختر لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ الخاصة بك"
-#~ msgid "Connect"
-#~ msgstr "اتصل"
+#: ../../steps.pm_.c:19
+msgid "Security"
+msgstr "الأمن"
-#~ msgid ""
-#~ "\n"
-#~ "You can reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "يمكنك اعادة تهيئة الوصلة."
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "إعداد نظم Ø§Ù„Ù…Ù„ÙØ§Øª"
-#~ msgid ""
-#~ "\n"
-#~ "You can connect to the Internet or reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "يمكنك الآن الإتصال بالإنترنت أو اعادة تهيئة الوصلة."
+#: ../../steps.pm_.c:21
+msgid "Format partitions"
+msgstr "تجهيز التجزئات"
-#~ msgid "You are not currently connected to the Internet."
-#~ msgstr "أنت لست متصل بالإنترنت حالياً"
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "اختر الحزم التي Ø³ØªÙØ«Ø¨Ù‘َت"
-#~ msgid ""
-#~ "\n"
-#~ "You can disconnect or reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "يمكنك قطع الإتصال أو اعادة تهيئة الوصلة."
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "تثبيت النظام"
-#~ msgid "You are currently connected to the Internet."
-#~ msgstr "أنت متصل بالإنترنت حالياً"
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "أض٠مستخدم"
-#~ msgid "files sending by FTP"
-#~ msgstr "ارسال Ø§Ù„Ù…Ù„ÙØ§Øª عن طريق FTP"
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "تهيئة الشبكة"
-#~ msgid "Use incremental backup (do not replace old backups)"
-#~ msgstr "استخدم النسخ التراكمي (لا تستبدل النسخ الإحتياطية القديمة)"
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "تهيئة الخدمات"
-#~ msgid "Relaunch 'lilo'"
-#~ msgstr "أعد تشغيل 'lilo'"
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "تثبيت محمّÙÙ„ الإقلاع"
-#~ msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#~ msgstr "اجعل initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "إعمل قرص إقلاع"
-#~ msgid "Copy %s to %s"
-#~ msgstr "انسخ %s الى %s"
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "تهيئة X"
-#~ msgid "Backup %s to %s.old"
-#~ msgstr "انسخ %s احتياطياً الى %s.old"
+#: ../../steps.pm_.c:34
+msgid "Install system updates"
+msgstr "تثبيت تحديثات النظام"
-#~ msgid "ttf fonts conversion"
-#~ msgstr "تحويل خطوط ttf"
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "الخروج من التثبيت"
-#~ msgid "Fonts conversion"
-#~ msgstr "تحويل الخطوط"
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#~ msgid ""
-#~ "Choose the hard drive you want to erase in order to install your new\n"
-#~ "Mandrake Linux partition. Be careful, all data present on it will be "
-#~ "lost\n"
-#~ "and will not be recoverable!"
-#~ msgstr ""
-#~ "اختر القرص الصلب الذي تريد محوه لتثبيت تجزئة\n"
-#~ "Mandrake Linux الجديدة. خذ حذرك, كل البيانات الموجود عليه ستضيع\n"
-#~ "و لن يمكن استعادتها!"
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
+msgstr ""
-#~ msgid ""
-#~ "\"Sound card\": 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."
-#~ msgstr ""
-#~ "\"بطاقة الصوت\": اذا تم اكتشا٠بطاقة صوت على نظامك, سيتم عرضها\n"
-#~ "هنا. اذا لاحظت أن بطاقة الصوت المعروضة هنا ليست تلك الموجودة\n"
-#~ "ÙØ¹Ù„اً على نظامك, يمكنك النقر على الزر Ùˆ اختيار مشغل\n"
-#~ "آخر."
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "ويب/FTP"
-#~ 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 would be the name of the kernel to boot. Typically, "
-#~ "vmlinux\n"
-#~ "or a variation of vmlinux with an extension.\n"
-#~ "\n"
-#~ " * Root: the \"root\" device or ``/'' for your Linux installation.\n"
-#~ "\n"
-#~ " * Append: on Apple hardware, the kernel append option is 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 ""
-#~ "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 would be the name of the kernel to boot. Typically, "
-#~ "vmlinux\n"
-#~ "or a variation of vmlinux with an extension.\n"
-#~ "\n"
-#~ " * Root: the \"root\" device or ``/'' for your Linux installation.\n"
-#~ "\n"
-#~ " * Append: on Apple hardware, the kernel append option is 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."
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
+msgstr "جهاز شبكة (عميل)"
-#~ msgid ""
-#~ "DrakX will first detect any IDE devices present in your computer. It "
-#~ "will\n"
-#~ "also scan for one or more PCI SCSI cards on your system. If a SCSI card "
-#~ "is\n"
-#~ "found, DrakX will automatically install the appropriate driver.\n"
-#~ "\n"
-#~ "Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-#~ "your hard drives. If so, You'll have to specify your hardware by hand.\n"
-#~ "\n"
-#~ "If you had to manually specify your PCI SCSI adapter, DrakX will ask if "
-#~ "you\n"
-#~ "want to configure options for it. You should allow DrakX to probe the\n"
-#~ "hardware for the card-specific options which are needed to initialize "
-#~ "the\n"
-#~ "adapter. Most of the time, DrakX will get through this step without any\n"
-#~ "issues.\n"
-#~ "\n"
-#~ "If DrakX is not able to probe for the options to automatically determine\n"
-#~ "which parameters need to be passed to the hardware, you'll need to "
-#~ "manually\n"
-#~ "configure the driver."
-#~ msgstr ""
-#~ "سيقوم DrakX أو?ً بالتحقق من وجود أجهزة IDE على هذا الكمبيوتر. سيقوم\n"
-#~ "أيضاً بالبحث عن بطاقات PCI SCSI على نظامك. اذا تم ايجاد بطاقة\n"
-#~ "SCSI,سيقوم DrakX بتثبيت المشغل المناسب أوتوماتيكياً.\n"
-#~ "\n"
-#~ "و ?ن عملية التحقق من العتاد ليست خالية من ا?خطاء, سيقوم DrakX بسؤالك عمّا "
-#~ "اذا\n"
-#~ "كانت لديك بطاقة PCI SCSI. النقر على \"نعم\" سيعرض قائمة ببطاقات SCSI\n"
-#~ "لتختار منها. انقر \"?\" اذا كنت تعلم أنه ? توجد بطاقات SCSI على\n"
-#~ "ماكينتك. اذا لم تكن متأكداً, يمكنك التأكد من قائمة العتاد التي تم ايجادها\n"
-#~ "على ماكينتك عن طريق اختيار \"عرض معلومات العتاد\" و نقر\n"
-#~ "\"التالي->\". تأكد من قائمة العتاد ثم اضغط على زر \"التالي\n"
-#~ "->\" للعودة الى شؤال واجهة SCSI.\n"
-#~ "\n"
-#~ "اذا اضطررت الى تحديد موائم PCI SCSI يدوياً, ÙØ³ÙŠØ³Ø£Ù„Ùƒ DrakX عمّا اذا كنت\n"
-#~ "تريد تهيئة الخيارات الخاصة بها. يجب أن تسمح لـ DrakX بأن يتحقق من\n"
-#~ "العتاد للخيارات الخاصة بالبطاقة Ùˆ التي ÙŠÙŒÙØ­ØªØ§Ø¬ اليها ليتم بدء\n"
-#~ "عمل البطاقة. ÙÙŠ أغلب ا?وقات, سيقوم DrakX بالخطوة دون أي\n"
-#~ "مشاكل.\n"
-#~ "\n"
-#~ "اذا لم يتمكن DrakX من التعر٠على الخيارات الضروريةلتمريرها\n"
-#~ "الى العتاد, ÙÙÙŠ هذه الحال ستحتاج الى تهيئة\n"
-#~ "المشغّل يدوياً."
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "خادم NFS, خادم SMB, خادم بروكسي, خادم ssh"
-#~ 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 \"Add\" to create a new entry; selecting an entry "
-#~ "and\n"
-#~ "clicking \"Modify\" or \"Remove\" to modify or remove it. \"OK\" "
-#~ "validates\n"
-#~ "your 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 ""
-#~ "بعدما قمت بتهيئة المعام?ت العامة لمحمّل ا?قلاع, ÙØ³ÙŠØªÙ…\n"
-#~ "عرض قائمة خيارات ا?قلاع Ø§Ù„Ù…ØªÙˆÙØ±Ø© عند بدء التشغيل.\n"
-#~ "\n"
-#~ "اذا كانت هناك أنظمة تشغيل أخرى مثبتة على ماكينتك ÙØ³ÙŠØªÙ… Ø§Ø¶Ø§ÙØªÙ‡Ø§\n"
-#~ "آلياً الى قائمة ا?قلاع. يمكنك التحكم بالخيارات\n"
-#~ "الموجودة بنقر \"اضÙ\" ?نشاء مدخل جديد, Ùˆ اختيار مدخل Ùˆ\n"
-#~ "نقر \"تعديل\" أو \"حذÙ\" لتعديل أو حذ٠المدخل. \"مواÙÙ‚\" يتأكد\n"
-#~ "من تغييراتك.\n"
-#~ "\n"
-#~ "ربما ? تريد ?ي شخص يتمكن من اعادة تشغيل الماكينة أن يستطيع\n"
-#~ "الوصل الى أنظمة التشغيل ا?خرى. يمكنك حذ٠المداخل المقابلة\n"
-#~ "?نظمة التشغيل لحذÙها من قائمة محمّل ا?قلاع, لكن ÙÙŠ هذه الحالة ستحتاج الى "
-#~ "قرص\n"
-#~ "مرن للإق?ع كي تتمكن من الوصول الى أنظمة\n"
-#~ "التشغيل ا?خرى!"
+#: ../../share/compssUsers:999
+msgid "Office"
+msgstr "أدوات المكتب"
-#~ msgid ""
-#~ "Depending on the default language you chose in Section , DrakX will\n"
-#~ "automatically select a particular type of keyboard configuration. "
-#~ "However,\n"
-#~ "you might not have a keyboard that corresponds exactly to your language:\n"
-#~ "for example, if you are an English speaking Swiss person, you may have a\n"
-#~ "Swiss keyboard. Or if you speak English but are located in Quebec, you "
-#~ "may\n"
-#~ "find yourself in the same situation where your native language and "
-#~ "keyboard\n"
-#~ "do not match. In either case, this installation step will allow you to\n"
-#~ "select an appropriate keyboard from a list.\n"
-#~ "\n"
-#~ "Click on the \"More \" button to be presented with the complete list of\n"
-#~ "supported keyboards.\n"
-#~ "\n"
-#~ "If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-#~ "dialog will allow you to choose the key binding that will switch the\n"
-#~ "keyboard between the Latin and non-Latin layouts."
-#~ msgstr ""
-#~ "اعتماداً على اللغة ا?ÙØªØ±Ø§Ø¶ÙŠØ© التي اخترتها ÙÙŠ هذا القسم, سيقوم DrakX\n"
-#~ "باختيار تهيئة لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ آلياً. عموماً,\n"
-#~ "ربما ليست لديك لوحة Ù…ÙØ§ØªÙŠØ­ مقابلة بشكل مباشر للغتك:\n"
-#~ "مثلاً ربما تكون عربياً متكلماً باللغة ا?نجليزية, ربما تكون لديك\n"
-#~ "لوحة Ù…ÙØ§ØªÙŠØ­ سويسرية. اذا كنت تتكلم ا?نجليزية لكن موجود ÙÙŠ كيبك, ربما\n"
-#~ "تجد Ù†ÙØ³Ùƒ ÙÙŠ Ù†ÙØ³ الموق٠حيث ? تتطابق لغتك مع لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­.\n"
-#~ "ÙÙŠ الحالتين, ستسمح لك خطوة التثبيت ستسمح لك باختيار\n"
-#~ "لوحة Ù…ÙØ§ØªÙŠØ­ مناسبة من القائمة.\n"
-#~ "\n"
-#~ "انقر زر \"المزيد\" لعرض قائمة بكل لوحات Ø§Ù„Ù…ÙØ§ØªÙŠØ­\n"
-#~ "المدعومة.\n"
-#~ "\n"
-#~ "اذا اخترت لوحة Ù…ÙØ§ØªÙŠØ­ لحرو٠غير ?تينية, ÙØ³ÙŠØ³Ù…Ø­ لك\n"
-#~ "مربع الحوار التالي باختيار اختصارات لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ التي\n"
-#~ "ستغير وضع لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ بين الحرو٠اللاتينية Ùˆ الغير ?تينية."
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "محطة عمل غنوم"
-#~ 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"
-#~ " * \"Install\": For the most part, this completely wipes out the old\n"
-#~ "system. If you wish to change how your hard drives are partitioned, or\n"
-#~ "change the file system, you should use this option. However, depending "
-#~ "on\n"
-#~ "your partitioning scheme, you can prevent some of your existing data "
-#~ "from\n"
-#~ "being over- written.\n"
-#~ "\n"
-#~ " * \"Upgrade\": 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 ""
-#~ "يتم تنشيط هذه الخطوة Ùقط اذا تم ايجاد تجزئة لينكس قديمة\n"
-#~ "على جهازك.\n"
-#~ "\n"
-#~ "يحتاج DrakX ا?Ù† الى أن يعلم اذا كنت تريد التثبيت من Ø§Ù„ØµÙØ± أو\n"
-#~ "تريد ترقية نظام Mandrake Linux الموجود لديك مسبقاً:\n"
-#~ "\n"
-#~ " * \"تثبيت\": ÙÙŠ ا?غلب تقوم بازالة النظام القديم\n"
-#~ "كلياً. اذا كنت تريد تغيير تجزئات القرص الصلب, أو تريد\n"
-#~ "تغيير نظام Ø§Ù„Ù…Ù„ÙØ§Øª, عليك اختيار هذا الخيار. عموماً اعتمادا\n"
-#~ "على كيÙية تجزئة القرص الصلب لديك. يمكنك منع ازالة بعض\n"
-#~ "بياناتك الموجودة مسبقاً.\n"
-#~ " * \"ترقية\": ÙØ¦Ø© التثبيت هذه تسمح لك بتحديث الحزم\n"
-#~ "على نظام Mandrake Linux الخاص بك. لن يتم تغيير\n"
-#~ "بياناتك أو تقسيمات القرص الصلب. أغلب خطوات التهيئة ا?خرى\n"
-#~ "لا تزال موجودة, مثل التثبيت الاعتيادي.\n"
-#~ "\n"
-#~ "استخدام خيار ``الترقية'' يجب أن يعمل بشكل جيد على\n"
-#~ "اصدارات Mandrake Linux \"8.1\" أو ما Ùوق. ? ينصح بالترقية\n"
-#~ "من اصادرات Mandrake Linux قبل \"8.1\"."
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "أدوات لجهاز بالم بايلوت أو ÙØ§ÙŠØ²ÙˆØ± ألخاص بك"
-#~ 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, keep the default option."
-#~ msgstr ""
-#~ "عند هذه النقطة, سيسمح لك DrakX باختيار المستوى الأمني الذي ترغب به\n"
-#~ "لهذه الماكينة. بديهياً, يجب تعيين مستوى أمني\n"
-#~ "عال٠اذا كانت الماكينة تحتوي على معلومات هامة, أو اذا كانت الماكينة\n"
-#~ "Ø³ØªÙØ³ØªØ®Ø¯Ù… للإتصال بالإنترنت. ان استخدام مستوى أمني عال٠يأتي\n"
-#~ "عادة على حساب سهولة الإستخدام.\n"
-#~ "\n"
-#~ "اذا لم تكن تريد الإختيار, Ø§Ø­ÙØ¸ الاختيار Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠ."
+#: ../../share/compssUsers:999
+msgid "Workstation"
+msgstr "محطة عمل"
-#~ msgid ""
-#~ "Monitor\n"
-#~ "\n"
-#~ " The installer can normally automatically detect and configure the\n"
-#~ "monitor connected to your machine. If it is not the case, you can choose "
-#~ "in\n"
-#~ "this list the monitor you actually own."
-#~ msgstr ""
-#~ "الشاشة\n"
-#~ "\n"
-#~ " يمكن لبرنامج التثبيت اكتشا٠و تهيئة الشاشة المتصلة بماكينتك\n"
-#~ "آلياً. ان لم يصل ذلك, يمكنك اختيار الشاشة التي لديك\n"
-#~ "من القائمة."
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "جدتر ناري/موجّÙÙ‡"
-#~ 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"
-#~ "\"Hardware clock set to GMT \", which will let GNU/Linux know that the\n"
-#~ "system clock and the hardware clock are in the same timezone. This is\n"
-#~ "useful when the machine also hosts another operating system like "
-#~ "Windows.\n"
-#~ "\n"
-#~ "The \"Automatic time synchronization \" option will automatically "
-#~ "regulate\n"
-#~ "the clock by connecting to a remote time server on the Internet. For "
-#~ "this\n"
-#~ "feature to work, you must have a working Internet connection. It is best "
-#~ "to\n"
-#~ "choose a time server located near you. This option actually installs a "
-#~ "time\n"
-#~ "server that can used by other machines on your local network."
-#~ msgstr ""
-#~ "يقوم لينكس بإدارة الوقت حسب توقيت غرينتش ثم يترجمه الى\n"
-#~ "التوقيت المحلي حسب المنطقة الزمنية التي اخترتها. اذا كانت الساعة\n"
-#~ "التي ÙÙŠ اللوحة الرئيسية مضبوطة على التوقيت المحلي, يمكنك ازالة تنشيط ذلك\n"
-#~ "عن طريق ازالة التأشير من \"ساعة الجهاز مضبوظة على توقيت غرينتش\" و التي "
-#~ "ستجعل\n"
-#~ "لينكس يعلم أن ساعة النظام Ùˆ ساعة الجهاز على Ù†ÙØ³ التوقيت. هذا\n"
-#~ "Ù…Ùيد عندما تستضي٠الماكينة نظام تشغيل آخر مثل Windows.\n"
-#~ "\n"
-#~ "خيار \"تزامن آلي للوقت\" سيقوم آلياً بضبط الساعة عن طريق\n"
-#~ "ا?تصال بخادم وقت بعيد على ا?نترنت. كي تعمل هذه الميزة,\n"
-#~ "يجب أن تكون لديك وصلة انترنت عاملة. من ا?ÙØ¶Ù„ اختيار خادم\n"
-#~ "الوقت ا?قرب اليك. هذا الخيار يثبت خادم وقت\n"
-#~ "يمكن استخدامه عن طريق الماكينات ا?خرى على الشبكة المحلية."
+#: ../../share/compssUsers:999
+msgid "Domain Name and Network Information Server"
+msgstr "خادم أسماء النطاثات و معلومات الشيكة"
-#~ 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 "
-#~ "\"Next\n"
-#~ "->\". Mandrake Linux will attempt to autodetect network devices and "
-#~ "modems.\n"
-#~ "If this detection fails, uncheck the \"Use auto detection\" box. You may\n"
-#~ "also choose not to configure the network, or to do it later, in which "
-#~ "case\n"
-#~ "clicking the \"Cancel\" 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 ""
-#~ "ستقوم ا?ن بإعداد وصلة ا?نترنت/الشبكة الخاصة بك. اذا كنت تريد\n"
-#~ "توصيل جهازك با?نترنت أو للشبكة المحلية, انقر \"التالي ->\"\n"
-#~ "سيحاول Mandrake Linux أن يتحقق آلياً من وجود ا?جهزة و المودمات.\n"
-#~ "اذا ÙØ´Ù„ التحقق, أزل التأشبر من \"استخدم التحقق ا?لي\". ربما تختار\n"
-#~ "عدم تهيئة الشبكة, أو تريد أن ØªÙØ¹Ù„ ذلك, ÙÙŠ هذه الحال\n"
-#~ "ÙØ¥Ù† ضغط زر \"الغاء\" سيأخذك الى الخطوة التالية.\n"
-#~ "\n"
-#~ "أثناء تهيئة الشبكة, ÙØ¥Ù† خيارات التوصيل Ø§Ù„Ù…ØªÙˆÙØ±Ø© هي:\n"
-#~ "مودم تقليدي, مودم ISDN, وصلة ADSL, مودم كيبل, و أخيراً\n"
-#~ "وصلة LAN بسيطة (ايثرنت).\n"
-#~ "\n"
-#~ "لن نذكر كل خيارات التهيئة Ø¨Ø§Ù„ØªÙØµÙŠÙ„ - Ùقط تأكد أنه لديك\n"
-#~ "كل المعاملات, مثل عنوان IP, البوابة ا?ÙØªØ±Ø§Ø¶ÙŠØ©, خادمات DNS, الخ.\n"
-#~ "من Ù…ÙˆÙØ± خدمة ا?نترنت أو مدير النظام.\n"
-#~ "\n"
-#~ "يمكنك الرجوع الى Ø§Ù„ÙØµÙ„ الخاص بإعداد وصلة ا?نترنت ÙÙŠ\n"
-#~ "``دليل المبتدئ'' Ù„Ù„ØªÙØ§ØµÙŠÙ„ حول التهيئة, أو ببساطة انتظر حتى يتم\n"
-#~ "تثبيت النظام و استخدم البرنامج المذكور هناك ?عداد الوصلة."
+#: ../../share/compssUsers:999
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"برامج مكتبية: معالجة الكلمات (kword, abiword), الجداول الحسابية (kspread, "
+"gnumeric) , برامج عرض pdf, الخ"
-#~ msgid "Harddrake2 version "
-#~ msgstr "Harddrake2 الإصدار "
+#: ../../share/compssUsers:999
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "أدوات صوتية: مشغلات mp3 أو midi, مازجات صوت, الخ"
-#~ msgid "Author:"
-#~ msgstr "المؤلÙ:"
+#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
-#~ msgid ""
-#~ "This is HardDrake, a Mandrake hardware configuration tool.\n"
-#~ "Version:"
-#~ msgstr ""
-#~ "هذا هو HardDrake, أداة Mandrake لتهيئة العتاد.\n"
-#~ "الإصدار:"
+#: ../../share/compssUsers:999
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "كتب و مذكرات 'كي٠أعمل' حول لينكس و البرامج الحرة"
-#~ msgid "Printer sharing"
-#~ msgstr "مشاركة الطابعات"
+#: ../../share/compssUsers:999
+msgid "KDE Workstation"
+msgstr "محطو عمل كيدي"
-#~ msgid ""
-#~ "Your printer belongs to the group of GDI laser printers (winprinters) "
-#~ "sold by different manufacturers which uses the Zenographics ZJ-stream "
-#~ "raster format for the data sent to the printer. The driver for these "
-#~ "printers is still in a very early development stage and so it will "
-#~ "perhaps not always work properly. Especially it is possible that the "
-#~ "printer only works when you choose the A4 paper size.\n"
-#~ "\n"
-#~ "Some of these printers, as the HP LaserJet 1000, for which this driver "
-#~ "was originally created, need their firmware to be uploaded to them after "
-#~ "they are turned on. In the case of the HP LaserJet 1000 you have to "
-#~ "search the printer's Windows driver CD or your Windows partition for the "
-#~ "file \"sihp1000.img\" and upload the file to the printer with one of the "
-#~ "following commands:\n"
-#~ "\n"
-#~ " lpr -o raw sihp1000.img\n"
-#~ " cat sihp1000.img > /dev/usb/lp0\n"
-#~ "\n"
-#~ "The first command can be given by any normal user, the second must be "
-#~ "given as root. After having done so you can print normally.\n"
-#~ msgstr ""
-#~ "Your printer belongs to the group of GDI laser printers (winprinters) "
-#~ "sold by different manufacturers which uses the Zenographics ZJ-stream "
-#~ "raster format for the data sent to the printer. The driver for these "
-#~ "printers is still in a very early development stage and so it will "
-#~ "perhaps not always work properly. Especially it is possible that the "
-#~ "printer only works when you choose the A4 paper size.\n"
-#~ "\n"
-#~ "Some of these printers, as the HP LaserJet 1000, for which this driver "
-#~ "was originally created, need their firmware to be uploaded to them after "
-#~ "they are turned on. In the case of the HP LaserJet 1000 you have to "
-#~ "search the printer's Windows driver CD or your Windows partition for the "
-#~ "file \"sihp1000.img\" and upload the file to the printer with one of the "
-#~ "following commands:\n"
-#~ "\n"
-#~ " lpr -o raw sihp1000.img\n"
-#~ " cat sihp1000.img > /dev/usb/lp0\n"
-#~ "\n"
-#~ "The first command can be given by any normal user, the second must be "
-#~ "given as root. After having done so you can print normally.\n"
+#: ../../share/compssUsers:999
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, الخ"
-#~ msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
-#~ msgstr "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+#: ../../share/compssUsers:999
+msgid "Multimedia - Video"
+msgstr "وسائط متعدددة - Ùيديو"
-#~ msgid "Office"
-#~ msgstr "أدوات المكتب"
+#: ../../share/compssUsers:999
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr "مجموعة من الأدوات للبريد , الأخبار, الإنترنت, نقل Ø§Ù„Ù…Ù„ÙØ§Øª, Ùˆ المحادثة"
-#~ msgid "Set of tools for mail, news, web, file transfer, and chat"
-#~ msgstr ""
-#~ "مجموعة من الأدوات للبريد , الأخبار, الإنترنت, نقل Ø§Ù„Ù…Ù„ÙØ§Øª, Ùˆ المحادثة"
+#: ../../share/compssUsers:999
+msgid "Database"
+msgstr "قواعد البيانات"
-#~ msgid "Games"
-#~ msgstr "الالعاب"
+#: ../../share/compssUsers:999
+msgid "PostgreSQL or MySQL database server"
+msgstr "خادم قواعد البيانات PostgreSQL أو MySQL"
-#~ msgid "Multimedia - Graphics"
-#~ msgstr "وسائط متعددة - رسوميات"
+#: ../../share/compssUsers:999
+msgid "Tools to ease the configuration of your computer"
+msgstr "أدوات لتسهيل إعداد جهازك"
-#~ msgid "Multimedia - Sound"
-#~ msgstr "وسائط متعددة - صوت"
+#: ../../share/compssUsers:999
+msgid "Multimedia - Sound"
+msgstr "وسائط متعددة - صوت"
-#~ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-#~ msgstr "أدوات صوتية: مشغلات mp3 أو midi, مازجات صوت, الخ"
+#: ../../share/compssUsers:999
+msgid "Documentation"
+msgstr "وثائق المساعدة"
-#~ msgid "Multimedia - Video"
-#~ msgstr "وسائط متعدددة - Ùيديو"
+#: ../../share/compssUsers:999
+msgid "Console Tools"
+msgstr "أدوات سطر الأوامر"
-#~ msgid "Video players and editors"
-#~ msgstr "برامج تشغيل Ùˆ تحرير الÙيديو"
+#: ../../share/compssUsers:999
+msgid "Postfix mail server, Inn news server"
+msgstr "خادم البريد Postfix, خادم الأخبار Inn"
-#~ msgid "Multimedia - CD Burning"
-#~ msgstr "وسائط متعددة - نسخ أقراص"
+#: ../../share/compssUsers:999
+msgid "Internet station"
+msgstr "محطة انترنت"
-#~ msgid "Tools to create and burn CD's"
-#~ msgstr "أدوات لعمل و نسخ الأقراص"
+#: ../../share/compssUsers:999
+msgid "Multimedia station"
+msgstr "محطة وسائط متعددة"
-#~ msgid "More Graphical Desktops (Gnome, IceWM)"
-#~ msgstr "أسطح مكتب رسومية أكثر (Gnome, IceWM)"
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "أدوات الإعدادات"
-#~ msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-#~ msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, الخ"
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "أسطح مكتب رسومية أكثر (Gnome, IceWM)"
-#~ msgid "Personal Information Management"
-#~ msgstr "ادارة المعلومات الشخصية"
+#: ../../share/compssUsers:999
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"بيئة سطح مكتب كيدي, البيئة الرسومية الأساسية مع مجموعة من الأدوات المصاحبة"
-#~ msgid "Tools for your Palm Pilot or your Visor"
-#~ msgstr "أدوات لجهاز بالم بايلوت أو ÙØ§ÙŠØ²ÙˆØ± ألخاص بك"
+#: ../../share/compssUsers:999
+msgid "Graphical Environment"
+msgstr "بيئات رسومية"
-#~ msgid "Personal Finance"
-#~ msgstr "الميزانية الشخصية"
+#: ../../share/compssUsers:999
+msgid "Development"
+msgstr ""
-#~ msgid "Programs to manage your finances, such as gnucash"
-#~ msgstr "برامج لإدارة ميزانيتك مثل gnucash"
+#: ../../share/compssUsers:999
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
-#~ msgid "no network card found"
-#~ msgstr "لا بطاقة شبكة وجدت "
+#: ../../share/compssUsers:999
+msgid "Tools to create and burn CD's"
+msgstr "أدوات لعمل و نسخ الأقراص"
-#~ msgid ""
-#~ "Mandrake Linux 9.2 has selected the best software for you. Surf the Web "
-#~ "and view animations with Mozilla and Konqueror, or read your mail and "
-#~ "handle your personal information with Evolution and Kmail"
-#~ msgstr ""
-#~ "اختار Mandrake Linux 9.2 Ø£ÙØ¶Ù„ البرامج لك. ØªØµÙØ­ الإنترنت Ùˆ استعرض الصر "
-#~ "المتحركة باستخدام موزيللا و كونكيورر, أو اقرأ بريدك الألكتروني و تعامل مع "
-#~ "معلوماتك الشخصية باستخدام KMail و Evolution"
+#: ../../share/compssUsers:999
+msgid "Office Workstation"
+msgstr "محطة عمل مكتبية"
-#~ msgid "Get the most from the Internet"
-#~ msgstr "احصل على ما تريد من الإنترنت"
+#: ../../share/compssUsers:999
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, الخ"
-#~ msgid "Push multimedia to its limits!"
-#~ msgstr "استمتع بالوسائط المتعددة الى أقصى حد!"
+#: ../../share/compssUsers:999
+msgid "Graphics programs such as The Gimp"
+msgstr "برامج رسوميات مثل The Gimp"
-#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
-#~ msgstr "اكتش٠أحدث أدوات الوسائط المتعددة و برامج الرسم!"
+#: ../../share/compssUsers:999
+msgid "DNS/NIS "
+msgstr "DNS/NIS"
-#~ msgid ""
-#~ "Mandrake Linux 9.2 provides the best Open Source games - arcade, action, "
-#~ "strategy, ..."
-#~ msgstr ""
-#~ "Mandrake Linux 9.2 ÙŠÙˆÙØ± Ø£ÙØ¶Ù„ الألعاب Ù…ÙØªÙˆØ­Ø© المصدر - أركيد, حركة, "
-#~ "استراتيجية, ..."
+#: ../../share/compssUsers:999
+msgid "C and C++ development libraries, programs and include files"
+msgstr "برامج و مكتبات تطوير C و C++"
-#~ msgid ""
-#~ "Mandrake Linux 9.2 provides a powerful tool to fully customize and "
-#~ "configure your machine"
-#~ msgstr "ÙŠÙˆÙØ± Mandrake Linux 9.2 أداة قوية لتخصيص Ùˆ تهيئة جهازك"
+#: ../../share/compssUsers:999
+msgid "Network Computer server"
+msgstr "خادم شبكات"
-#~ msgid "User interfaces"
-#~ msgstr "واجهات الإستخدام"
+#: ../../share/compssUsers:999
+msgid "Mail/Groupware/News"
+msgstr "بريد/أدوات مجموعات/أخبار"
-#~ msgid ""
-#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
-#~ "Source development environments"
-#~ msgstr ""
-#~ "استÙيد من كل قوة المترجم GNU gcc 3 Ø¨Ø§Ù„Ø¥Ø¶Ø§ÙØ© الى Ø£ÙØ¶Ù„ بيئات التطوير Ù…ÙØªÙˆØ­Ø© "
-#~ "المصادر"
+#: ../../share/compssUsers:999
+msgid "Game station"
+msgstr "محطة ألعاب"
-#~ msgid "Development simplified"
-#~ msgstr "البرمجة ولا أسهل"
+#: ../../share/compssUsers:999
+msgid "Video players and editors"
+msgstr "برامج تشغيل Ùˆ تحرير الÙيديو"
-#~ msgid ""
-#~ "This firewall product includes network features that allow you to fulfill "
-#~ "all your security needs"
-#~ msgstr ""
-#~ "منتج الجدار الناري هذا يحتوي على مزايا للشبكة ØªÙˆÙØ± كل احتياجاتك الأمنية"
+#: ../../share/compssUsers:999
+msgid "Multimedia - Graphics"
+msgstr "وسائط متعددة - رسوميات"
-#~ msgid ""
-#~ "The MandrakeSecurity range includes the Multi Network Firewall product (M."
-#~ "N.F.)"
-#~ msgstr "منتجات MandrakeSecurity تتضمن Multi Network Firewall (M.N.F.)"
+#: ../../share/compssUsers:999
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "برامج التسلية: ألعاب Ùيديو, ألعاب لوحات, ألعاب ستراتيجية, الخ"
-#~ msgid "Strategic partners"
-#~ msgstr "شركاؤنا الاستراتيجيون"
+#: ../../share/compssUsers:999
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"مجموعة من الأدوات لقراءة و ارسال البريد و الأخبار (pine, mutt, tin..) و "
+"Ù„ØªØµÙØ­ الإنترنت"
-#~ msgid ""
-#~ "Whether you choose to teach yourself online or via our network of "
-#~ "training partners, the Linux-Campus catalogue prepares you for the "
-#~ "acknowledged LPI certification program (worldwide professional technical "
-#~ "certification)"
-#~ msgstr ""
-#~ "سواء اخترت أن تعلم Ù†ÙØ³Ùƒ Ø¨Ù†ÙØ³Ùƒ عبر الإنترنت أو عبر شبكتنا من شركاءنا ÙÙŠ "
-#~ "مجال التبريد, يحضرك دليل Linux-Campus لبرنامج شهادة LPI المعتر٠يها ÙÙŠ "
-#~ "جميع أنحاء العالم."
-
-#~ msgid "Certify yourself on Linux"
-#~ msgstr "احصل على شهادة معتمدة ÙÙŠ لينكس"
+#: ../../share/compssUsers:999
+msgid "Personal Finance"
+msgstr "الميزانية الشخصية"
-#~ msgid ""
-#~ "The training program has been created to respond to the needs of both end "
-#~ "users and experts (Network and System administrators)"
-#~ msgstr ""
-#~ "تم عمل برنامج التدريب كي يستجيب الى احتياجات كل٠من المستخدمين و الخبراء "
-#~ "(مدراء الشبكة و الأنظمة)"
+#: ../../share/compssUsers:999
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"بيئة رسومية مع مجموعة من التطبيقات و أدوات سطح المكتب المناسبة للمستخدمين "
+"العاديين"
-#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-#~ msgstr "اكتش٠دليل تدريب MandrakeSoft Linux-Campus"
+#: ../../share/compssUsers:999
+msgid "Clients for different protocols including ssh"
+msgstr "عملاء لبروتوكولات Ù…Ø®ØªÙ„ÙØ© مثل ssh"
-#~ msgid ""
-#~ "MandrakeClub and Mandrake Corporate Club were created for business and "
-#~ "private users of Mandrake Linux who would like to directly support their "
-#~ "favorite Linux distribution while also receiving special privileges. If "
-#~ "you enjoy our products, if your company benefits from our products to "
-#~ "gain a competititve edge, if you want to support Mandrake Linux "
-#~ "development, join MandrakeClub!"
-#~ msgstr ""
-#~ "تم انشاء MandrakeClub و Mandrake Corporate Club للشركات و المستخدمين "
-#~ "Ø§Ù„Ø£ÙØ±Ø§Ø¯ الذين يريدون دعم توزيعة لينكس Ø§Ù„Ù…ÙØ¶Ù„Ø© لديهم بشكل مباشر مع تمتعهم "
-#~ "بمزايا خاصة. اذا كانت منتجاتنا قد حازت على اعجابك, اذا كانت شركتك تستÙيد "
-#~ "من منتجاتنا Ùˆ تساعدها على زيادة قدرتها Ø§Ù„ØªÙ†Ø§ÙØ³ÙŠØ©, اذا كنت تريد دعم تطوير "
-#~ "Mandrake Linux, التحق بنادي MandrakeClub!"
-
-#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
-#~ msgstr "اكتش٠MandrakeClub Ù„Ù„Ø£ÙØ±Ø§Ø¯ Ùˆ Mandrake Corporate Club للشركات"
+#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
-#~ msgid ""
-#~ "As a review, DrakX will present a summary of various information it has\n"
-#~ "about your system. Depending on your installed hardware, you may have "
-#~ "some\n"
-#~ "or all of the following entries:\n"
-#~ "\n"
-#~ " * \"Mouse\": check the current mouse configuration and click on the "
-#~ "button\n"
-#~ "to change it if necessary.\n"
-#~ "\n"
-#~ " * \"%s\": check the current keyboard map configuration and click on\n"
-#~ "the button to change that if necessary.\n"
-#~ "\n"
-#~ " * \"%s\": check the current country selection. If you are not in this\n"
-#~ "country, click on the button and choose another one.\n"
-#~ "\n"
-#~ " * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-#~ "primary language you have chosen. But here, just as in your choice of a\n"
-#~ "keyboard, you may not be in a country to which the chosen language\n"
-#~ "corresponds. You may need to click on the \"Timezone\" button to\n"
-#~ "configure the clock for the correct timezone.\n"
-#~ "\n"
-#~ " * \"Printer\": clicking on the \"No Printer\" 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"
-#~ " * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-#~ "click that button. This should be reserved to advanced users.\n"
-#~ "\n"
-#~ " * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-#~ "interface in \"800x600\" resolution. If that does not suits you, click "
-#~ "on\n"
-#~ "the button to reconfigure your graphical interface.\n"
-#~ "\n"
-#~ " * \"Network\": If you want to configure your Internet or local network\n"
-#~ "access now, you can by clicking on this button.\n"
-#~ "\n"
-#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
-#~ "displayed here. If you notice the sound card displayed is not the one "
-#~ "that\n"
-#~ "is actually present on your system, you can click on the button and "
-#~ "choose\n"
-#~ "another driver.\n"
-#~ "\n"
-#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-#~ "here. If you have a TV card and it is not detected, click on the button "
-#~ "to\n"
-#~ "try to configure it manually.\n"
-#~ "\n"
-#~ " * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-#~ "displayed here. You can click on the button to change the parameters\n"
-#~ "associated with the card."
-#~ msgstr ""
-#~ "للمراجعة, سيقوم DrakX بعرض ملخص للمعلومات التي لديه\n"
-#~ "عن نظامك. اعتماداً على العتاد الموجود لديك, قد تكون لديك بعض\n"
-#~ "أو كل المدخلات التالية:\n"
-#~ " * \"Ø§Ù„ÙØ£Ø±Ø©\": تأكد من اعدادات Ø§Ù„ÙØ£Ø±Ø© الحالية Ùˆ انقر الزر عند الحاجة الى\n"
-#~ "تغيير ا?عدادات.\n"
-#~ "\n"
-#~ " * \"لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­\": تأكد من اعدادات خريطة لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ Ùˆ انقر\n"
-#~ "الزر عند الحاجة الى تغيير ا?عدادات.\n"
-#~ "\n"
-#~ " * \"البلد\":تأكد من صحة اختيار البلد. ان لم تكن ÙÙŠ البلد\n"
-#~ "المذكورة, انقر الزر و اختر بلداً آخر.\n"
-#~ "\n"
-#~ " * \"المنطقة الزمنية\":يقوم DrakX باستنتاج منطقتك الزمنية بناء على\n"
-#~ "اللغة التي اخترتها. لكن هنا, تماماً مثل اختيارك للوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­,\n"
-#~ "قد ? تكون ÙÙŠ البلد التي تختص بها اللغة المختارة.\n"
-#~ "ربما تحتاج الى النقر على زر \"المنطقة الزمنية\"لتهيئة\n"
-#~ "الساعة للمنطقة الزمنية الصحيحة.\n"
-#~ "\n"
-#~ " * \"الطابعة\": الضغط على زر \"? Ø·Ø§Ø¨Ø¹Ø©Ø³ÙŠÙØªØ­ معالج\n"
-#~ "تهيئة الطابعات. الق نظرة على Ø§Ù„ÙØ¶Ù„ المخصص للطابعات من ``دليل\n"
-#~ "المبتدئ'' لمزيد من المعلومات حول كيÙية تهيئة طابعة جديدة. الواجهة\n"
-#~ "المقدمة هنا مماثلة لتلك المستخدمة أثناء التثبيت.\n"
-#~ "\n"
-#~ " * \"محمّل ا?قلاع\": اذا كنت تود تغيير اعدادات محمّل ا?قلاع,\n"
-#~ "انقر هذا الزر. يجب عمل هذا Ùقط عن طريق المستخدمين المتقدمين.\n"
-#~ "\n"
-#~ " * \"الواجهة الرسومية\": يقوم DrakX Ø§ÙØªØ±Ø§Ø¶ÙŠØ§Ù‹ بتعيين دقة عرض\n"
-#~ "\"800x600\". اذا لم يناسب هذا احتياجاتك, انقر \n"
-#~ "الزر ?عادة تهيئة الواجهة الرسومية.\n"
-#~ "\n"
-#~ " * \"الشبكة\": اذا كنت تريد تهيئة ا?تصال با?نترنت أو الشبكة المحلية\n"
-#~ "ا?Ù†, يمكنك ÙØ¹Ù„ هذا عن طريق النقر على هذا الزر.\n"
-#~ "\n"
-#~ " * \"بطاقة الصوت\": اذا تم التحقق من وجود بطاقة صوت ÙÙŠ نظامك, سيتم\n"
-#~ "عرضها هنا. اذا وجدت أن بطاقة الصوت المعروضة ليست هي التي توجد\n"
-#~ "ÙØ¹Ù„ياً على نظامك, يمكنك نقر الزر Ùˆ اختيار\n"
-#~ "مشغل آخر.\n"
-#~ " * \"بطاقة Ø§Ù„ØªÙ„ÙØ§Ø²\": اذا تم التحقق من وجود بطاقة ØªÙ„ÙØ§Ø² ÙÙŠ نظامك, سيتم\n"
-#~ "عرضها هنا. اذا لم يتم اكتشا٠بطاقة Ø§Ù„ØªÙ„ÙØ§Ø² الخاصة بك, انقر الزر\n"
-#~ "لتهيئتها يدوياً.\n"
-#~ "\n"
-#~ " * \"بطاقة ISDN\": اذا تم التحقق من وجود بطاقة ISDN على نظامك, سيتم\n"
-#~ "عرضها هنا. يمكنك النقر على الزر لتغيير المعاملات\n"
-#~ "المرتبطة بالبطاقة."
+#: ../../share/compssUsers:999
+msgid "Internet gateway"
+msgstr "بوابة انترنت"
-#~ 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 will ask you if you "
-#~ "have\n"
-#~ "a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI "
-#~ "cards\n"
-#~ "to choose from. Click \"No\" if you know that you have no SCSI hardware "
-#~ "in\n"
-#~ "your machine. If you're not sure, you can check the list of hardware\n"
-#~ "detected in your machine by selecting \"See hardware info \" and "
-#~ "clicking\n"
-#~ "the \"%s\". Examine the list of hardware and then click on the \"Next\n"
-#~ "->\" button to return to the SCSI interface question.\n"
-#~ "\n"
-#~ "If you had to manually specify your PCI SCSI adapter, DrakX will ask if "
-#~ "you\n"
-#~ "want to configure options for it. You should allow DrakX to probe the\n"
-#~ "hardware for the card-specific options which are needed to initialize "
-#~ "the\n"
-#~ "adapter. Most of the time, DrakX will get through this step without any\n"
-#~ "issues.\n"
-#~ "\n"
-#~ "If DrakX is not able to probe for the options to automatically determine\n"
-#~ "which parameters need to be passed to the hardware, you'll need to "
-#~ "manually\n"
-#~ "configure the driver."
-#~ msgstr ""
-#~ "سيقوم DrakX أو?ً بالتحقق من وجود أجهزة IDE على هذا الكمبيوتر. سيقوم\n"
-#~ "أيضاً بالبحث عن بطاقات PCI SCSI على نظامك. اذا تم ايجاد بطاقة\n"
-#~ "SCSI,سيقوم DrakX بتثبيت المشغل المناسب أوتوماتيكياً.\n"
-#~ "\n"
-#~ "و ?ن عملية التحقق من العتاد ليست خالية من ا?خطاء, سيقوم DrakX بسؤالك عمّا "
-#~ "اذا\n"
-#~ "كانت لديك بطاقة PCI SCSI. النقر على \"نعم\" سيعرض قائمة ببطاقات SCSI\n"
-#~ "لتختار منها. انقر \"?\" اذا كنت تعلم أنه ? توجد بطاقات SCSI على\n"
-#~ "ماكينتك. اذا لم تكن متأكداً, يمكنك التأكد من قائمة العتاد التي تم ايجادها\n"
-#~ "على ماكينتك عن طريق اختيار \"عرض معلومات العتاد\" و نقر\n"
-#~ "\"التالي->\". تأكد من قائمة العتاد ثم اضغط على زر \"التالي\n"
-#~ "->\" للعودة الى شؤال واجهة SCSI.\n"
-#~ "\n"
-#~ "اذا اضطررت الى تحديد موائم PCI SCSI يدوياً, ÙØ³ÙŠØ³Ø£Ù„Ùƒ DrakX عمّا اذا كنت\n"
-#~ "تريد تهيئة الخيارات الخاصة بها. يجب أن تسمح لـ DrakX بأن يتحقق من\n"
-#~ "العتاد للخيارات الخاصة بالبطاقة Ùˆ التي ÙŠÙŒÙØ­ØªØ§Ø¬ اليها ليتم بدء\n"
-#~ "عمل البطاقة. ÙÙŠ أغلب ا?وقات, سيقوم DrakX بالخطوة دون أي\n"
-#~ "مشاكل.\n"
-#~ "\n"
-#~ "اذا لم يتمكن DrakX من التعر٠على الخيارات الضروريةلتمريرها\n"
-#~ "الى العتاد, ÙÙÙŠ هذه الحال ستحتاج الى تهيئة\n"
-#~ "المشغّل يدوياً."
+#: ../../share/compssUsers:999
+msgid "Sound and video playing/editing programs"
+msgstr "برامج تحرير/تشغيل الÙيدية Ùˆ الصوت"
-#~ 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 "
-#~ "systems\n"
-#~ "is best for a particular type of configuration.\n"
-#~ "\n"
-#~ " * \"pdq\" -- 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. "
-#~ "(\"pdq\n"
-#~ "\" will handle only very simple network cases and is somewhat slow when\n"
-#~ "used with networks.) It's recommended that you use \"pdq \" if this is "
-#~ "your\n"
-#~ "first 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"
-#~ "that 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 to 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 ""
-#~ "ا?Ù†, حان وقت اختيار نظام الطباعة لنظامك. ØªÙˆÙØ± أنظمة التشغيل ا?خرى\n"
-#~ "نظام طباعة واحد, لكن Mandrake Linux ÙŠÙˆÙØ± لك نظامين. كل نظام مناسب\n"
-#~ "لنوغ معين من التهيئة.\n"
-#~ "\n"
-#~ " * \"pdq\"--Ùˆ هو اختصار لـ``print, don't queue'' أي ``اطبع Ùˆ ? تصÙ'', هذا "
-#~ "هو الخيار ا?مثل\n"
-#~ "اذا كانت لديك وصلة مباشرة بالطابعة, Ùˆ تريد ØªÙØ§Ø¯ÙŠ Ø£ÙŠ ارتباك ÙÙŠ الطابعة\n"
-#~ "و لديك طابعات على الشبكة.(يقوم \"pdq\" بالتعامل مع حا?ت الشبكة البسيطة\n"
-#~ "Ùˆ يعيبه البطئ عند ا?ستخدام مع الشبكات). من ا?ÙØ¶Ù„ أن تستخدم \"pdq\" اذا.\n"
-#~ "كانت هذه تجربتك ا?ولى مع نظام لينكس.\n"
-#~ "\n"
-#~ " * \"%s\" - ``Common UNIX Printing System'', هو الخيار ا?مثل\n"
-#~ "للطباعة على طابعتك المحلية أو حتى على طابعة ÙÙŠ النص٠ا?خر من الكوكب. انه\n"
-#~ "سهل ا?عداد و يمكن أن يتصر٠كخادم أو كعميل ?نظمة طباعة \"lpd\"\n"
-#~ "القديمة, لذا ÙØ¥Ù†Ù‡ متواÙÙ‚ مع أنظمة التشغيل القديمة\n"
-#~ "التي ? تزال تحتاج الى خدمات الطباعة.بينما التهيئة سهلة\n"
-#~ "و قوية مثل \"pdq\". اذا كنت تحتاج الى محاكاة خادم \"lpd\", تأكد\n"
-#~ "من تشغيل مراقب \"cups-lpd\". يحتوي CUPS على واجهات\n"
-#~ "رسومية للطباعة أو اختيار خيارات الطابعة و إدارة\n"
-#~ "الطابعة.\n"
-#~ "\n"
-#~ "اذا قمت يتقرير اختيارك ا?ن, ثم لم يعجبك نظام الطباعة\n"
-#~ "Ùيما بعد, يمكنك تغييره عن طريق تشغيل PrinterDrake من مركز تحكم Mandrake\n"
-#~ "و النقر على زر الخبير."
+#: ../../share/compssUsers:999
+msgid "Other Graphical Desktops"
+msgstr "أسطخ مكتب رسومية أخرى"
-#~ 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\n"
-#~ "languages to be installed on your workstation, thereby installing the\n"
-#~ "language-specific files for system documentation and applications. For\n"
-#~ "example, if you will host users from Spain on your machine, select "
-#~ "English\n"
-#~ "as the default language in the tree view and \"Espanol\" in the Advanced\n"
-#~ "section.\n"
-#~ "\n"
-#~ "Note that you're not limited to choosing a single additional language. "
-#~ "Once\n"
-#~ "you have selected additional locales, click the \"%s\" button to\n"
-#~ "continue.\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 ""
-#~ "اختيارك للغة Ø§Ù„Ù…ÙØ¶Ù„Ø© سيؤثر على لغة وثائق المساعدة\n"
-#~ "و برنامج التثبيت و النظام بشكل عام. أو?ً اختر المنطقة التي\n"
-#~ "تتواجد Ùيها, ثم اللغة التي تتحدث بها.\n"
-#~ "\n"
-#~ "ضغط زر \"متقدم\" سيسمح لك باختيار لغات\n"
-#~ "أخرى ليتم تثبيتها على محطة العمل الخاصة بك,و من ثم\n"
-#~ "تثبيت Ø§Ù„Ù…Ù„ÙØ§Øª الخاصة باللغات لوثائق المساعدة Ùˆ التطبيقات, مثلاً\n"
-#~ "اذا كنت ستستضي٠مستخدمين من أسبانيا على ماكينتك, اختر ا?نجليزية\n"
-#~ "كلغة Ø§ÙØªØ±Ø§Ø¶ÙŠØ© ÙÙŠ النمط الشجري Ùˆ \"ا?سبانية\" ÙÙŠ القسم\n"
-#~ "المتقدم.\n"
-#~ "?حظ أنك لست مقيداً باختيار لغة واحدة اضاÙية. حال\n"
-#~ "اختيارك للإعدادات المحلية, اضغط زر \"التالي ->\"\n"
-#~ "للمتابعة.\n"
-#~ "\n"
-#~ "للتغيير بين اللغات المتعددة المثبتة على النظام, يمكنك\n"
-#~ "تشغيل ا?مر \"/usr/sbin/localedrake\"كمستخدم جذر لتغيير\n"
-#~ "اللغة المستخدمة عن طريق النظام ككل. تشغيل ا?مر كمستخدم عادي\n"
-#~ "سيغير Ùقط اعدادات اللغة لهذا المستخدم Ùقط."
+#: ../../share/compssUsers:999
+msgid "Editors, shells, file tools, terminals"
+msgstr "محررات نصوص, Ø£ØºÙ„ÙØ©, أدوات Ù…Ù„ÙØ§Øª, طرÙيات"
-#~ msgid ""
-#~ "\"%s\": check the current country selection. If you are not in this\n"
-#~ "country, click on the button and choose another one."
-#~ msgstr ""
-#~ "\"البلد\": تأكد من اختيار البلد الحالي. اذا لم تكن ÙÙŠ هذا\n"
-#~ "البلد, اضغط على الزر و اختر بلداً آخر."
+#: ../../share/compssUsers:999
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "برامج لإدارة ميزانيتك مثل gnucash"
-#~ 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. Refer to the \"msec"
-#~ "\"\n"
-#~ "chapter of the ``Command Line Manual'' to get more information about the\n"
-#~ "meaning of these levels.\n"
-#~ "\n"
-#~ "If you do not know what to choose, keep the default option."
-#~ msgstr ""
-#~ "عند هذه النقطة, سيسمح لك DrakX باختيار المستوى الأمني الذي ترغب به\n"
-#~ "لهذه الماكينة. بديهياً, يجب تعيين مستوى أمني\n"
-#~ "عال٠اذا كانت الماكينة تحتوي على معلومات هامة, أو اذا كانت الماكينة\n"
-#~ "Ø³ØªÙØ³ØªØ®Ø¯Ù… للإتصال بالإنترنت. ان استخدام مستوى أمني عال٠يأتي\n"
-#~ "عادة على حساب سهولة الإستخدام. راجع ÙØ¶Ù„ \"msec\"\n"
-#~ "ÙÙŠ ``دليل سطر الأوامر'' للحصول على مزيد من المعلومات حول\n"
-#~ "معنى هذه المستويات.\n"
-#~ "\n"
-#~ "اذا لم تكن تريد الإختيار, Ø§Ø­ÙØ¸ الاختيار Ø§Ù„Ø¥ÙØªØ±Ø§Ø¶ÙŠ."
+#: ../../share/compssUsers:999
+msgid "Personal Information Management"
+msgstr "ادارة المعلومات الشخصية"
-#~ 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. Choose\n"
-#~ "\"Yes\" if you have a working Internet connection, or \"No\" if you "
-#~ "prefer\n"
-#~ "to install updated packages later.\n"
-#~ "\n"
-#~ "Choosing \"Yes\" displays a list of places from which updates can be\n"
-#~ "retrieved. Choose the one nearest you. A package-selection tree will\n"
-#~ "appear: review the selection, and press \"Install\" to retrieve and "
-#~ "install\n"
-#~ "the selected package( s), or \"Cancel\" to abort."
-#~ msgstr ""
-#~ "ÙÙŠ الوقت الذي تقوم Ùيه بتثبيت Mandrake Linux, قد يكون تم تحديث\n"
-#~ "بعض الحزم منذ ا?صدار المبدئي, ربما يكون تم اصلاح بعض العيوب\n"
-#~ "أو تم حل المشاكل ا?منية. لكي تستÙيد من هذه التحديثات,يمكنك\n"
-#~ "ا?ن تنزيل هذه التحديثات عبر ا?نترنت. اختر\n"
-#~ "\"نعم\" اذا كانت لديك وصلة انترنت عاملة, أو \"?\" اذا كنت ØªÙØ¶Ù„\n"
-#~ "تثبيت هذه التحديثات ?حقاً.\n"
-#~ "\n"
-#~ "اختيار \"نعم\" يعرض قائمة با?ماكن التي يمكن منها الحصول\n"
-#~ "على التحديثات. اختر المكان الأقرب اليك. سيتم عرض قائمة بالحزم\n"
-#~ "راجع اختياراتك, ثم اضغط \"ثبّت\" لتنزيل و تثبيت\n"
-#~ "الحزم المختارة, أو \"الغاء\" ?حباط التحديث."
+#: ../../share/compssUsers:999
+msgid "Multimedia - CD Burning"
+msgstr "وسائط متعددة - نسخ أقراص"
-#~ 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"
-#~ " * \"Use free space\": this option will perform an automatic "
-#~ "partitioning\n"
-#~ "of your blank drive(s). If you use this option there will be no further\n"
-#~ "prompts.\n"
-#~ "\n"
-#~ " * \"Use existing partition\": the wizard has detected one or more "
-#~ "existing\n"
-#~ "Linux partitions on your hard drive. If you want to use them, choose "
-#~ "this\n"
-#~ "option. You will then be asked to choose the mount points associated "
-#~ "with\n"
-#~ "each of the partitions. The legacy mount points are selected by default,\n"
-#~ "and for the most part it's a good idea to keep them.\n"
-#~ "\n"
-#~ " * \"Use the free space on the Windows partition\": if Microsoft Windows "
-#~ "is\n"
-#~ "installed on your hard drive and takes all the space available on it, "
-#~ "you\n"
-#~ "have to create free space for Linux data. To do so, you can delete your\n"
-#~ "Microsoft Windows partition and data (see `` Erase entire disk'' "
-#~ "solution)\n"
-#~ "or resize your Microsoft Windows FAT partition. Resizing can be "
-#~ "performed\n"
-#~ "without the loss of any data, provided you previously defragment the\n"
-#~ "Windows partition and that it uses the FAT format. Backing up your data "
-#~ "is\n"
-#~ "strongly recommended.. Using this option is recommended if you want to "
-#~ "use\n"
-#~ "both Mandrake Linux and Microsoft 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"
-#~ " * \"Erase entire disk\": if you want to delete all data and all "
-#~ "partitions\n"
-#~ "present on your hard drive and replace them with your new Mandrake Linux\n"
-#~ "system, choose this option. Be careful, because you will not be able to\n"
-#~ "undo your choice after you confirm.\n"
-#~ "\n"
-#~ " !! If you choose this option, all data on your disk will be "
-#~ "deleted. !!\n"
-#~ "\n"
-#~ " * \"Remove Windows\": this will simply erase everything on the drive "
-#~ "and\n"
-#~ "begin fresh, partitioning everything from scratch. All data on your disk\n"
-#~ "will be lost.\n"
-#~ "\n"
-#~ " !! If you choose this option, all data on your disk will be lost. !!\n"
-#~ "\n"
-#~ " * \"Custom disk partitionning\": choose this option if you want to\n"
-#~ "manually partition your hard drive. Be careful -- it is a powerful but\n"
-#~ "dangerous choice and you can very easily lose all your data. That's why\n"
-#~ "this option is really only recommended if you have done something like "
-#~ "this\n"
-#~ "before and have some experience. For more instructions on how to use the\n"
-#~ "DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-#~ "the ``Starter Guide''."
-#~ msgstr ""
-#~ "ÙÙŠ هذه النقطة, عليك أن تقرر أين تريد تثبيت نظام\n"
-#~ "التشغيل Mandrake Linux على القرص الصلب الخاص بك. اذا كان القرص الصلب\n"
-#~ "قارغاً أو أن نظام تشغيل آخر يستخدم كل المساحة Ø§Ù„Ù…ØªÙˆÙØ±Ø© ÙØ³ÙˆÙ\n"
-#~ "تحتاج الى تجزئة القرص الصلب. بشكل عام,. ÙØ¥Ù† تجزئةالقرص الصلب\n"
-#~ "تعني تقسيم القرص الصلب منطقياً ?نشاء المساحة المطلوبة لتثبيت\n"
-#~ "نظام Mandrake Linux الجديد الخاص بك.\n"
-#~ "\n"
-#~ "?ن عملية تقسيم القرص الصلب غير قابلة للتراجع عادةًَ\n"
-#~ "كما أنها قد تتسبب ÙÙŠ خسارة للبيانات اذا كان هناك نظام تشغيل\n"
-#~ "آخر مثبت على هذا القرص الصلب, تجزئة القرص قد يكون مزعجاً و مثيراً للضغط\n"
-#~ "اذا كنت مستخدماً محترقاً. من حسن الحظ, ÙŠÙˆÙØ± DrakX معالجاً يسهل العملية.\n"
-#~ "قبل متابعة هذه الخطوة, اقرأ بقية هذا القسم و قبل كل شئ, خذ وقتك.\n"
-#~ "\n"
-#~ "اعتماداً على اعدادات القرص الصلب, ØªØªÙˆÙØ± العديد من الخيارات:\n"
-#~ "\n"
-#~ " * \"استخدام المساحة Ø§Ù„ÙØ§Ø±ØºØ©\": هذا الخيار سيقوم بعملية تجزئة آلية\n"
-#~ "للأقراص الصلبة Ø§Ù„ÙØ§Ø±ØºØ©. اذا استخدمت هذا الخيار, لن تكون هناك اشعارات\n"
-#~ "أخرى.\n"
-#~ " * \"استخدام التجزئة الموجودة\": يكون المعالج قد اكتش٠تجزئة أو أكثر من\n"
-#~ "تجزئات لينكس على القرص الصلب. اذا كنت تريد استخدامها, اختر هذا\n"
-#~ "الخيار. سيتم بعد ذلك سؤالك عن نقاط التحميل المرتبطة بكل\n"
-#~ "تجزئة. يتم اختيار نقاط التجزئة المعتادة Ø§ÙØªØ±Ø§Ø¶ÙŠØ§Ù‹,\n"
-#~ "Ùˆ ?غلب المستخدمين ÙØ¥Ù†Ù‡Ø§ Ùكرة جيدة تركها كما هي.\n"
-#~ "\n"
-#~ " * \"استخدام المساحة Ø§Ù„ÙØ§Ø±ØºØ© على تجزئة Windows\": اذا\n"
-#~ "كان Microsoft Windows مثبت على القرص الصلب و يحتل كل المساحة التي عليه,\n"
-#~ "ستحتاج الى انشاء مساحة ÙØ§Ø±ØºØ© لبيانات لينكس. لعمل ذلك يمكنك حذÙ\n"
-#~ "تجزئة و بيانات Microsoft Windows (انظر حل ``ازالة كل القرص'')\n"
-#~ "أو قم بإعادة تحجيم تجزئة Microsoft Windows FAT. يمكن عمل اعادة التحجيم\n"
-#~ "دون أي خسارة للبيانات, لكن يجب عليك قبل ذلك بإزالة تجزئة القرص "
-#~ "(defragmenting)\n"
-#~ "الذي يستخدم تنسيق FAT. نسخ بياناتك احتياطياً ÙŠÙØ¶Ù‘Ù„\n"
-#~ "بشدة.. استخدام هذا الخيار منصوح به اذا كنت تريد استخدام \n"
-#~ "كل من Mandrake Linux Ùˆ Microsoft Windows على Ù†ÙØ³ الكمبيوتر.\n"
-#~ "\n"
-#~ " قبل اختيارك لهذا الخيار, عليك أن تعلم أنه بعد هذا\n"
-#~ "ا?جراء, ستتقلص مساحة تجزئة Microsoft Windows عن ما قبل\n"
-#~ "ستكون لديك مساحة ÙØ§Ø±ØºØ© أقل على Microsoft Windows\n"
-#~ "لتخزين بياناتك و تثبيت برامج جديدة.\n"
-#~ "\n"
-#~ " * \"مسح كل القرص\": اذا كنت تريد حذ٠كل البيانات و كل التجزئات\n"
-#~ "الموجودة على القرص الصلب و ابدالها بنظام Mandrake Linux الجديد\n"
-#~ "الخاص بك, اختر هذا الخيار. كن حذراً, ?نك لن تتمكن من التراجع\n"
-#~ "بعد أن تقوم بالتأكيد.\n"
-#~ "\n"
-#~ " !!! اذا اخترت هذا الخيار سيتم حذ٠كل البيانات الموجودة على القرص. !!\n"
-#~ "\n"
-#~ " * \"حذ٠Windows\": سيقوم هذا الخيار ببساطة بمحو كل شء على القرص و\n"
-#~ "يبدأ التثبيت من Ø§Ù„ØµÙØ±. ستضيع كل البيانات على\n"
-#~ "القرص.\n"
-#~ "\n"
-#~ " * \"تجزئة مخصصة للقرص\": اختر هذا الخيار اذا كنت تريد\n"
-#~ "تقسيم القرص الصلب بشكل يدوي. كن حذراً -- هذا الخيار قوي\n"
-#~ "لكنه خطير Ùˆ من الممكن أن تÙقد بياناتك بسهولة. لهذا ÙØ¥Ù†\n"
-#~ "هذا الخيار Ù…ÙØ¶Ù‘Ù„ Ùقط اذا كنت قد قمت بشئ مماثل من ÙØ¨Ù„ \n"
-#~ "و لديك بعض الخبرة. لمزيد من التعليمات حول استخدام أداة DiskDrake\n"
-#~ "راجع قسم ``ادارة التجزئات'' ÙÙŠ\n"
-#~ "``دليل المبتدئ''."
+#: ../../share/compssUsers:999
+msgid "Scientific Workstation"
+msgstr "محطة عمل علمية"
-#~ msgid ""
-#~ "This step is used to choose which services you wish to start at boot "
-#~ "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 always needed "
-#~ "at\n"
-#~ "boot time.\n"
-#~ "\n"
-#~ "A short explanatory text will be displayed about a service when it is\n"
-#~ "selected. However, if you are not sure whether a service is useful or "
-#~ "not,\n"
-#~ "it is safer to leave the default behavior.\n"
-#~ "\n"
-#~ "!! At this stage, be very careful if you intend to use your machine as a\n"
-#~ "server: you will probably not want to start any services that you do not\n"
-#~ "need. Please remember that several services can be dangerous if they are\n"
-#~ "enabled on a server. In general, select only the services you really "
-#~ "need.\n"
-#~ "!!"
-#~ msgstr ""
-#~ "هذه الخطوة هي ?ختيار الخدمات التي سيتم تشغيلها عند بدء التشغيل.\n"
-#~ "\n"
-#~ "سيقوم DrakX بعرض قائمة بكل الخدمات Ø§Ù„Ù…ØªÙˆÙØ±Ø© ÙÙŠ هذا التثبيت.\n"
-#~ "راجع كل خدمة بتمعن و قم بإزالة التأشير من تلك الخدمات التي ? تحتاجها\n"
-#~ "بشكل دائم عند ا?قلاع.\n"
-#~ "\n"
-#~ "سيتم عرض شرح قصير حول الخدمة عند\n"
-#~ "اختيارها. عموماً, اذا لم تكن متأكد ما اذا كانت الخدمة Ù…Ùيدة أم ?,\n"
-#~ "Ùمن ا?ÙØ¶Ù„ ترك الخيار ا?ÙØªØ±Ø§Ø¶ÙŠ.\n"
-#~ "\n"
-#~ "!! ÙÙŠ هذه المرحلة كن حذرا٠اذا كنت تريد استخدام ماكينتك\n"
-#~ "كخادم: ربما لن تريد بدء أي خدمات ? تحتاجها.\n"
-#~ "ÙØ¶Ù„اً تذكر أن العديد من الخدمات قد تكون خطرة اذا كانت\n"
-#~ "متاحة على الخادم. بشكل عام اختر Ùقط الخدمات التي تحتاجها.\n"
-#~ "!!"
+#~ msgid "can not open /etc/inittab for reading: %s"
+#~ msgstr "لم يمكن ÙØªØ­ /etc/inittab للقراءة: %s"
-#~ msgid ""
-#~ "\"Printer\": clicking on the \"No Printer\" 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."
-#~ msgstr ""
-#~ "\"الطابعة\": النقر على \"لا طابعة\" Ø³ÙŠÙØªØ­ معالج تهيئة\n"
-#~ "الطابعة. اقرأ Ø§Ù„ÙØ¶Ù„ المختص ÙÙŠ ``دليل المبتدئ''\n"
-#~ "لكزيد من المعلومات عن كيÙية اعداد طابعة جديدة. الواجهة\n"
-#~ "هناك مماثلة لتلك المستخدمة أثناء التثبين."
+#, fuzzy
+#~ msgid "cpu number "
+#~ msgstr "رقم التّليÙون "
-#~ msgid ""
-#~ "The following printers are configured. Double-click on a printer to "
-#~ "change its settings; to make it the default printer; to view information "
-#~ "about it; or to make a printer on a remote CUPS server available for Star "
-#~ "Office/OpenOffice.org/GIMP."
-#~ msgstr ""
-#~ "تمت تهيئة الطابعات الآتية. انقر نقرة مزدوجة على الطابعة لتغيير اعداداتها "
-#~ "لجعلها طابعة Ø§ÙØªØ±Ø§Ø¶ÙŠØ© أو لرؤية معلومات حولها أو لجعل اطابعة على خادم CUPS "
-#~ "البعيد Ù…ØªÙˆÙØ±Ø© لـStar Office/OpenOffice.org/GIMP."
+#~ msgid "Proxy configuration"
+#~ msgstr "إعداد البروكسي"
-#~ msgid ""
-#~ "You are about to configure your computer to install a PXE server as a "
-#~ "DHCP server\n"
-#~ "and a TFTP server to build an installation server.\n"
-#~ "With that feature, other computers on your local network will be "
-#~ "installable using from this computer.\n"
-#~ "\n"
-#~ "Make sure you have configured your Network/Internet access using "
-#~ "drakconnect before going any further.\n"
-#~ "\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN)."
-#~ msgstr ""
-#~ "أنت على وشك تهيئة جهازك لتثبيت خادم PXE كخادم DHCP\n"
-#~ "و خادم TFTP لبناء خادم تثبيت.\n"
-#~ "باستخدام هذه الميزة تكون الحواسيب الأخرى على الشبكة المحلية قابلة للتثبيت "
-#~ "من هذا الجهاز.\n"
-#~ "\n"
-#~ "تأكد من أنك قمت بتهيئة الشبكة/الإنترنت باستخدام drakconnect قبل "
-#~ "المتابعة.\n"
-#~ "\n"
-#~ "ملحوظة: تحتاج الى موائم شبكة مخصص لإعداد الشبكة المحلية (LAN)."
+#~ msgid "URL"
+#~ msgstr "عنوان"
-#~ msgid ""
-#~ "The cpu frequency in Mhz (Mega herz which in first approximation may be "
-#~ "coarsely assimilated to number of instructions the cpu is able to execute "
-#~ "per second)"
-#~ msgstr ""
-#~ "تردد المعالج بالميغاهيرتز (الميغاهيرتز تشير الى العدد التقريبي من "
-#~ "التعليمات التي يستطيع المعالج تنÙيذها ÙÙŠ الثانية الواحدة)"
+#~ msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-#~ msgid ""
-#~ "Please enter your host name if you know it.\n"
-#~ "Some DHCP servers require the hostname to work.\n"
-#~ "Your host name should be a fully-qualified host name,\n"
-#~ "such as ``mybox.mylab.myco.com''."
-#~ msgstr ""
-#~ "ÙØ¶Ù„اً أدخل اسم المستضي٠اذا كنت تعرÙÙ‡.\n"
-#~ "بعض خادمات DHCP تحتاج الى اسم المستضيق كي تعمل.\n"
-#~ "يجب أن يكون اسم المستضي٠صالحاً و كاملاً,\n"
-#~ "مثل ``mybox.mylab.myco.com''."
+#~ msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#, fuzzy
#~ 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 "
-#~ "use\n"
-#~ "by default\n"
-#~ "\n"
-#~ "- \"grep snd-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 ""
-#~ "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 "
-#~ "use\n"
-#~ "by default\n"
-#~ "\n"
-#~ "- \"grep snd-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"
-
-#~ msgid "DrakFloppy Error: %s"
-#~ msgstr "خطأ ÙÙ‰ دريك لعمل قرص بدء النظام: %s"
-
-#~ msgid "Launch Aurora at boot time"
-#~ msgstr "شغّل Aurora عند الإقلاع"
-
-#~ msgid "Traditional Gtk+ Monitor"
-#~ msgstr "شاشة Gtk+ التقليدية"
-
-#~ msgid "Traditional Monitor"
-#~ msgstr "شاشة تقليدية"
-
-#~ msgid "NewStyle Monitor"
-#~ msgstr "شاشة NewStyle"
-
-#~ msgid "NewStyle Categorizing Monitor"
-#~ msgstr "شاشة NewStyle التصنيÙية"
-
-#~ msgid "Secure Connection"
-#~ msgstr "وصلة آمنة"
-
-#~ msgid "FTP Connection"
-#~ msgstr "وصلة FTP"
-
-#~ msgid "Mail/Groupware/News"
-#~ msgstr "بريد/أدوات مجموعات/أخبار"
-
-#~ msgid "Postfix mail server, Inn news server"
-#~ msgstr "خادم البريد Postfix, خادم الأخبار Inn"
-
-#~ msgid "/Options"
-#~ msgstr "/خيارات"
+#~ "Warning, another internet connexion has been detected, maybe using your "
+#~ "network"
+#~ msgstr "تحذير, تم ايجاد اتصال إنترنت آخر, ربما يكون يستخدم شبكتك"
-#~ msgid "/Autodetect jazz drives"
-#~ msgstr "/تحقق آلي من سواقات Jazz"
+#~ msgid "no help implemented yet.\n"
+#~ msgstr "لا توجد مساعدة لهذا حتى الآن.\n"
-#~ msgid "/Autodetect modems"
-#~ msgstr "/تحقق آلي من أجهزة المودم"
+#~ msgid "Please click on a medium"
+#~ msgstr "ÙØ¶Ù„ا اضعط على وسيط"
-#~ msgid "/Autodetect printers"
-#~ msgstr "/تحقق آلي من الطابعات"
-
-#~ msgid ""
-#~ "The partition you've selected to add as root (/) is physically located "
-#~ "beyond\n"
-#~ "the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
-#~ "If you plan to use the LILO boot manager, be careful to add a /boot "
-#~ "partition"
-#~ msgstr ""
-#~ "التجزئة التي اخترتها كتجزئة جذرية (/) موجودة مادياً بعد\n"
-#~ "الإسطوانة 1024 من القرص الصلب, و ليست لديك تجزئة /boot.\n"
-#~ "اذا كنت تنوي استخدام LILO كمدير اقلاع Ùلا تنسى Ø§Ø¶Ø§ÙØ© تجزئة /boot"
+#~ msgid "usage: drakfloppy\n"
+#~ msgstr "الاستخدام: دريك للاقراص المرنة\n"
+#, fuzzy
#~ msgid ""
-#~ "Sorry I won't accept to create /boot so far onto the drive (on a cylinder "
-#~ "> 1024).\n"
-#~ "Either you use LILO and it won't work, or you don't use LILO and you "
-#~ "don't need /boot"
-#~ msgstr ""
-#~ "عÙواً, لن أقبل انشاء دليل /boot بهذا البعد على القرص (على أسطوانة أكبر من "
-#~ "1024).\n"
-#~ "إما أن تستخدم LILO و لن يعمل هذا, أو لا تستخدم LILO و لن تحتاج الى /boot"
-
-#~ msgid "Install system updates"
-#~ msgstr "تثبيت تحديثات النظام"
-
-#~ msgid "Do you want to configure another printer?"
-#~ msgstr "هل تريد تجربة إعداد طابعة أخرى؟"
-
-#~ msgid "Know how to use this printer"
-#~ msgstr "اعر٠كي٠تستخدم هذه الطابعة"
-
-#~ msgid "Preparing Printerdrake..."
-#~ msgstr "جاري تجهيز Printerdrake..."
-
-#~ msgid "192.168.100.0/255.255.255.0\n"
-#~ msgstr "192.168.100.0/255.255.255.0\n"
-
-#~ msgid "192.168.100.0/24\n"
-#~ msgstr "192.168.100.0/24\n"
-
-#~ msgid "10.1.*\n"
-#~ msgstr "10.1.*\n"
-
-#~ msgid "10.0.0.*\n"
-#~ msgstr "10.0.0.*\n"
-
-#~ msgid "192.168.100.194\n"
-#~ msgstr "192.168.100.194\n"
+#~ "\n"
+#~ "Usage: harddrake [-h|--help] [--test]\n"
+#~ msgstr "الاستعمال: keyboarddrake [--expert][لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­]\n"
-#~ msgid "Reading printer data ..."
-#~ msgstr "جاري قراءة بيانات الطابعة ..."
+#~ msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+#~ msgstr "الاستعمال: keyboarddrake [--expert][لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­]\n"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index c5f940a7c..5cf5f31c3 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -1,1912 +1,1135 @@
-# DrakX-az.po faylının Azərbaycan dilinə tərcüməsi
-# Copyright (C) 2000,2003 Free Software Foundation, Inc.
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2000 Free Software Foundation, Inc.
# Copyright (c) 2000 MandrakeSoft
# Vasif Ismailoglu MD<azerb_linux@hotmail.com> , 2000-2001
-# MÉ™tin Æmirov <metin@karegen.com>, 2001-2003
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX-az\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
-"PO-Revision-Date: 2003-09-24 10:36+0200\n"
-"Last-Translator: MÉ™tin Æmirov <metin@karegen.com>\n"
-"Language-Team: Azərbaycan <gnome@azitt.com>\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"PO-Revision-Date: 2001-09-01 22:26GMT +0200\n"
+"Last-Translator: Vasif İsmayıloğlu MD <azerb_linux@hotmail.com>\n"
+"Language-Team: Azerbaijani Turkish <linuxaz@azerimal.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.8\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Bölmələr bağlama nöqtələri üçün yoxlanır"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr ""
-"əgər bəli seçilidirsə, suid ali istifadəçi fayllarının əlavələrini/"
-"silinənlərini yoxla."
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s bunları məcbur qılır: qovşaq adı, MAC ünvanı, IP, nbi-görünüşü, "
-"THIN_CLIENT üçün 0/1, Yerli Qurğu üçün 0/1...\n"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr "Qurğu dəyişdirildi - clusternfs/dhcpd yenidən başladılsın?"
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tSil=%s"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Diferensial ehtiyatlamar yalnız oricinal 'əsas' ehtiyatlamadan sonra "
-"dəyişdirilən və yaranan faylları qeyd edər."
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "network printer port"
-msgstr "şəbəkə çapçısı qapısı"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Xahiş edirik, disketi taxın:"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr "DrakTermServ"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB və ya daha çox"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "Bir X vericisi seçin"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "X verici"
+
+#: ../../Xconfig/card.pm_.c:230
+msgid "Multi-head configuration"
+msgstr "Çoxlu Başlıq quraşdırılması"
+
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-"Ehtiyat bölmə cədvəli eyni böyüklüyə sahib deyil\n"
-"Davam etmək istəyirsiniz?"
+"Sizin sisteminiz çoxlu başlıq quraşdırmasını dəstəkləyir.\n"
+"Nə etmək istəyirsiniz?"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Which username"
-msgstr "Hansı istifadəçi adı"
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
+msgstr "Ekran kartınızın yaddaş böyüklüyünü seçin"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "Nə cür bir giriş əlavə etmək istəyirsiniz?"
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "XFree quraşdırılması"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Restore partition table"
-msgstr "Bölmə cədvəlini geri al"
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Necə bir XFree qurğusunu istəyirsiniz?"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure hostname..."
-msgstr "Qovşaq adını quraşdır..."
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
+msgstr "Bütün başlıqları ayrı ayrı quraşdır"
-#: ../../printer/cups.pm:1
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
+msgstr "Xinerama ifadələrini işlət"
+
+#: ../../Xconfig/card.pm_.c:389
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Təkcə \"%s\" kartını qur (%s)"
+
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "\"%s\" CUPS vericisi üstündə"
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../install_steps_interactive.pm:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Post-install configuration"
-msgstr "Qurulum sonrası qurğular"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "3D avadanlıq sür'ətləndirməsi ilə XFree %s"
-#: ../../standalone/drakperm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-"Hazırkı təhlükəsizlik səviyyəsi: %s\n"
-"Görmək/dəyişdirmək istədiyiniz səlahiyyətləri seçin"
+"Sizin kartınızın 3D sür'ətləndirmə dəstəyi ola bilər, amma sadecə olaraq "
+"XFree %s\n"
+"ilə düzgün işləyər.\n"
+"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D üçün daha yaxşı "
+"bir fikir olar."
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Yerinə ``%s'' işlət"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər."
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid "Type"
-msgstr "Növ"
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "SINAQ MÆRHÆLÆSİNDÆKİ 3D sür'É™tlÉ™ndirmÉ™ dÉ™stÉ™kli XFree %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
+"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."
msgstr ""
-"\n"
-"Eyni zamanda, firmaları tərəfindən verilən PPD faylları ilə ya da doğma CUPS "
-"sürücüləri ilə qurğulanan çapçılar transfer edilə bilməz."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "Åžri Lanka"
+"Sizin kartınızın 3D sür'ətləndirmə dəstəyi ola bilər, amma sadecə olaraq "
+"XFree %s\n"
+"ilə düzgün işləyər.\n"
+"DİQQÆT! BU SINAQ MÆRHÆLÆSINDÆDIR VÆ KOMPÜTERİNİZ DONDURA BILÆR.\n"
+"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D üçün daha yaxşı "
+"bir seçki olar."
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"Aşağıdakı çapçı\n"
-"\n"
-"%s%s\n"
-"sisteminizə birbaşa bağlıdır"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
-msgstr "Mərkəzi Afrika Respublikası"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "Şəbəkə keçidi avadanlığı"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Advanced preferences"
-msgstr "Ætraflı qurÄŸularr"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Net Method:"
-msgstr "Şəbəkə Yöntəmi:"
+"Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər.\n"
+"DİQQÆT! BU SINAQ MÆRHÆLÆSINDÆDIR VÆ KOMPÜTERİNİZ DONDURA BILÆR."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Ethernetcard"
-msgstr "Eternet Kartı"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
-msgstr "Seçilibsə, poçtu bu ünvana göndər, edilməyibsə ali istifadəçiyə göndər"
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "Xüsusi"
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr "Parametrlər"
+#: ../../Xconfig/main.pm_.c:102
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Ekran kartı"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "no"
-msgstr "xeyir"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "Monitor"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Auto-detect"
-msgstr "Avtomatik təsbit et"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "Rezolyusiya"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface:"
-msgstr "Ara üz:"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Select installation class"
-msgstr "Qurulum sinifinin seçimi"
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Seçənəklər"
+
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "Oldu"
-#: ../../network/tools.pm:1
-#, c-format
-msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Sisteminiz İnternetə bağlı görünmür.\n"
-"Bağlantınızı yenidən quraşdırın."
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "Çıx"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
+"Keep the changes?\n"
+"The current configuration is:\n"
"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+"%s"
msgstr ""
-"Çapçınızı bir Linuks vericisinə bağlayıb Windows sistem(lər)ə ona alıcı "
-"olaraq baÄŸlanmaya icazÉ™ ver.\n"
+"Mövcud qurğuları saxlayım?\n"
+"Hal-hazırkı qurğular:\n"
"\n"
-"Həqiqətən də davam etmək istəyirsiniz?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belarus"
-msgstr "Belarusiya"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Error writing to file %s"
-msgstr "%s faylına yazma xətası"
+"%s"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result to syslog"
-msgstr "Yoxlama nəticəsini syslog'a raport et"
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "Monitorunuzu seçin"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
msgstr ""
-"apmd batareya vəziyyətini izləmək və syslog vasitəsiylə bunun qeydini tutmaq "
-"üçün istifadə edilir.\n"
-"Ayrıca batareya azalanda sistemi söndürmək üçün də istifadə edilir."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tape to backup"
-msgstr "Ehtiyat nüsxəsi üçün kaset işlət"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Aşağıdakı paketlər qurulacaq"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS configuration"
-msgstr "CUPS quraşdırılması"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total progress"
-msgstr "Ümumi irəliləmə"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Yeni bölmələr ayırmaq üçün kifayət qədər boş yer yoxdur"
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "Ümumi"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "Daşınır"
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+#, fuzzy
+msgid "Vendor"
+msgstr "Geri al"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-"\n"
-"%s vasitəsi ilə Drakbackup fəaliyyətləri:\n"
-"\n"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "yes"
-msgstr "bəli"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr "("
-
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
-"Welcome to The Network Configuration Wizard.\n"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"We are about to configure your internet/network connection.\n"
-"If you don't want to use the auto detection, deselect the checkbox.\n"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
-"Şəbəkə Quraşdırma Sehirbazına Xoç Gəldiniz\n"
-"\n"
-"Birazdan İnternet/Şəbəkə qurğularınızı sazlayacaqsınız.\n"
-"Avtomatik təsbit istəmirsinizsə işarəni silin.\n"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ")"
+"Buradaki iki vacib parametr üfüqi ve şaquli yeniləmə sür'ətləridir.\n"
+"Seçərkən monitorunuzun qabiliyyətinin üstündə bir parametr\n"
+"seçməməyiniz çox vacibdir, əks halda monitor zərər görər.\n"
+"Seçərkən bir qərarsızlığa düşərsəniz, alçaq rezolyusiya seçin."
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "Livan"
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "Üfüqi yeniləmə sür'əti"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "Şaquli yeniləmə sür'əti"
-#: ../../services.pm:1
-#, c-format
-msgid "Stop"
-msgstr "Dayan"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 rəng (8 bits)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Edit selected host"
-msgstr "Seçili qovşağı düzəlt"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 min rəng (15 bits)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD device defined!"
-msgstr "CD avadanlığı tə'yin edilməyib!"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 min rəng (16 bits)"
-#: ../../network/shorewall.pm:1
-#, fuzzy, c-format
-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 ""
-"Xahiş edirik, internetə bağlı olan ara üzün adını dirin.\n"
-"\n"
-"Nömunələr:\n"
-"\t\tppp+ modem ya da DSL bağlantıları üçün, \n"
-"\t\teth0, ya da eth1 kabel bağlantıları üçün, \n"
-"\t\tippp+ isdn bağlantısı üçün.\n"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milyon rəng (24 bits)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\t.backupignore fayllarını işlət\n"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milyard rəng (32 bits)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "Bolqar (fonetik)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "Rezolyusiyalar"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP start ip"
-msgstr "DHCP baÅŸlama ip'si"
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "Rezolyusiya və rəng dərinliyini seçin"
-#: ../../Xconfig/card.pm:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "256 kB"
-msgstr "256 kB"
+msgid "Graphics card: %s"
+msgstr "Ekran kartı: %s"
+
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr "Ləğv et"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Don't rewind tape after backup"
-msgstr "Ehtiyat nüsxəsini aldıqdan sonra kasedi geri sarma"
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "Qurğuların sınağı"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "Sistem yükləyicisinin ana seçimləri"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
-msgstr ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+#: ../../Xconfig/test.pm_.c:30
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Diqqət: Bu qrafika kartı ilə ediləcək sınaq təhlükəlidir"
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid "Tape"
-msgstr "Kaset"
+msgid "Keyboard layout: %s\n"
+msgstr "Klavatura düzülüşü: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid "Malaysia"
-msgstr "Malayziya"
+msgid "Mouse type: %s\n"
+msgstr "Siçan növü: %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid "Scanning network..."
-msgstr "Şəbəkə yoxlanır..."
+msgid "Mouse device: %s\n"
+msgstr "Siçan avadanlığı: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Bu seçim ilə siz /etc cərgənizin hər hansı bir buraxılışını\n"
-" geri ala bilərsiniz."
+msgid "Monitor: %s\n"
+msgstr "Monitor: %s\n"
-#: ../../standalone/drakedm:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr "Dəyişikliklər həyata keçirildi, dm xidməti yenidən başladılsın ?"
+msgid "Monitor HorizSync: %s\n"
+msgstr "Monitorun Şaquli Daraması: %s\n"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Swiss (French layout)"
-msgstr "İsveçrə dili (Fransız düzülüşü)"
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Monitorun Üfüqi Yeniləməsi: %s\n"
-#: ../../raid.pm:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid bacarılmadı (bəlkə raidtools əksikdir?)"
+msgid "Graphics card: %s\n"
+msgstr "Ekran kartı: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid "August"
-msgstr "Avqust"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "FTP server"
-msgstr "NTP Verici"
+msgid "Graphics memory: %s kB\n"
+msgstr "Ekran kartı yaddaşı: %s KB\n"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid "Webcam"
-msgstr "Veb kamerası"
+msgid "Color depth: %s\n"
+msgstr "Rəng dərinliyi: %s\n"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "(ikinci səviyyə) cpu ön yaddaşının (cache) böyüklüyü"
+msgid "Resolution: %s\n"
+msgstr "Rezolyusiya: %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Soundcard"
-msgstr "Səs kartı"
+msgid "XFree86 server: %s\n"
+msgstr "XFree86 verici: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Month"
-msgstr "Ay"
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 sürücü: %s\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search for files to restore"
-msgstr "Geri qaytarılacaq faylları axtar"
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "X ilə Açılış"
-#: ../../lang.pm:1
-#, c-format
-msgid "Luxembourg"
-msgstr "Lyuksemburq"
+#: ../../Xconfig/various.pm_.c:62
+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?"
+msgstr ""
+"Kompüterinizi avtomatik olaraq X ilə açılması üçün qura bilərəm.\n"
+"Açılışda X Window ilə başlamaq istəyirsiniz?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:73
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
msgstr ""
-"Æmr sÉ™tirindÉ™n (terminal pÉ™ncÉ™rÉ™si) bir faylı çap etmÉ™k üçün bu É™mri iÅŸlÉ™din "
-"\"%s <fayl>\".\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Level %s\n"
-msgstr "Səviyyə %s\n"
+#: ../../Xconfig/various.pm_.c:85
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "ISDN bağlantınızın növü nədir?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac (phonetic)"
-msgstr "Siriak (fonetik)"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
+msgstr "Açılış qisminin ilk sektoru"
-#: ../../lang.pm:1
-#, c-format
-msgid "Iran"
-msgstr "İran"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
+msgstr "Diskin ilk sektoru (MBR)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus"
-msgstr "Yol"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "SILO Qurulumu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Iraq"
-msgstr "İrak"
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
+msgstr "Sistem yükləyicisini haraya qurmaq istəyirsiniz?"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "connecting to %s ..."
-msgstr "%s ünvanına bağlanır ..."
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "LILO/grup Qurulumu"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Hazırkı %s quğusunda bir LAN ünvan toqquşması tapıldı!\n"
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
+msgstr "SILO"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring..."
-msgstr "Quraşdırılır..."
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
+msgstr "Mətn menyulu LILO"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
-msgstr ""
-"Müasir televiziya kartlarının bir çoxu üçün, GNU/Linuks çəyirdəyinin bttv "
-"modulu düzgün parametrləri avtomatik tapır.\n"
-"ÆgÉ™r kartınız tapıla bilmÉ™sÉ™, buradan düzgün kart növünü seçə bilÉ™rsiniz. "
-"Lazım olanda televiziya kartınızın parametrlərini seçin."
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
+msgstr "Qrafiki menyulu LILO"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Password (again)"
-msgstr "Şifrə (təkrar)"
+#: ../../any.pm_.c:142
+msgid "Grub"
+msgstr "Grub"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search installed fonts"
-msgstr "Qurulu yazı növlərini axtar"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "DOS/Wİndowsdan açıl (loadlin)"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default desktop"
-msgstr "Æsas masa üstü"
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
-msgstr ""
-"Xəta raportu göndərmək üçün, raport düyməsinə basın.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "Sistem yükləyicisi ana seçənəkləri"
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr "Venesuela"
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
+msgstr "İstifadə ediləcək Açılış idarəcisi"
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "IP address"
-msgstr "IP ünvanı"
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "Açılış yükləyici quruluşu"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "Böyüklükləri seçin"
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "Açılış avadanlığı"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Pozulmuş data siyahısı:\n"
-"\n"
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "Bəsit"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
-msgstr ""
-"Yalnız dəqiq olaraq bağlana bilər (mis.,\n"
-" -a seçimi fayl sisteminin bağlanmasına səbəb olmayacaq)."
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "bəsit"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"Modeminiz sistem tərəfindən dəstəklənmir.\n"
-"http://www.linmodems.org ünvanına baxın"
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "Ekran modu"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose another partition"
-msgstr "Başqa bölmə seçin"
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
+msgstr "Açılışda gecikmə müddəti"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Current user"
-msgstr "Hazırkı istifadəçi"
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
+msgid "Password"
+msgstr "Parol"
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
-msgstr "İstifadəçi adı"
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "Parol (təkrar)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Sol \"Windows\" düyməsi"
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "Æmr sÉ™tiri seçənÉ™klÉ™rini mÉ™hdudlaÅŸdır"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "Quyana"
+#: ../../any.pm_.c:171
+msgid "restrict"
+msgstr "məhdudlaşdır"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "dhcpd Vericisi Qurğuları"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "/tmp-i hər açılışda təmizlə"
-#: ../../standalone/drakperm:1
+#: ../../any.pm_.c:174
#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Cərgə üçün istifadə edilən:\n"
-" yalnız cərgə yiyəsi ya da cərgə içindəki fayl onu silə bilər"
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Ümumi yaddaş miqdarı (%d MB tapıldı)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " Novell vericisi üstündə \"%s\", çapçı \"%s\""
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
+msgstr "Birdən artıq profilə icazə ver"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Name"
-msgstr "Çapçı Adı"
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "Yaddaş miqdarını Mb cinsindən verin"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
+#: ../../any.pm_.c:182
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
+"``Æmr sÉ™tiri seçənÉ™klÉ™rini mÉ™hdudlaÅŸdır`` seçənÉ™yi parolsuz bir iÅŸÉ™ yaramaz"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
-msgstr "Modulu sil"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "Xahiş edirik təkrar sınayın"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Password"
-msgstr "ÅžifrÉ™"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "Parollar uyğun gəlmir"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Ætraflı QuraÅŸdırma"
+#: ../../any.pm_.c:191
+msgid "Init Message"
+msgstr "İnit İsmarıcı"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr "HP çox-funksiyalı avadanlığınız üstündə axtarılır"
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
+msgstr "Firmware Gecikməsini Aç"
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "Kök"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
+msgstr "Çəkirdək Açılışı Vaxt Dolması"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "ÆlavÉ™ etmÉ™k üçün mövcud bir RAID seçin"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
+msgstr "CDdən Açılışı Fəallaşdırım?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Türk dili (müasir \"Q\" klaviatura)"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
+msgstr "OF Açılışı Fəallaşdırım?"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo message not found"
-msgstr "Lilo ismarışı tapıla bilmədi"
+#: ../../any.pm_.c:197
+msgid "Default OS?"
+msgstr "Æsas OS"
-#: ../../services.pm:1
-#, c-format
+#: ../../any.pm_.c:231
msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
+"\n"
+"On which drive are you booting?"
msgstr ""
-"/usr/include/linux/{autoconf,version}.h üçün \n"
-"/boot cərgəsində avtomatik çəyirdək başlığının yaradılması"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
-msgstr "lazım olarsa"
-
-#: ../../standalone/drakclock:1
-#, c-format
+#: ../../any.pm_.c:247
msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
+"Buradakı bir birindən fərqli seçənəklərə yenilərini əlavə edə bilər,\n"
+"ya da mövcud olanları dəyişdirə bilərsiniz."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Failed..."
-msgstr "Geri Yükləmə Bacarılmadı..."
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "ÆlavÉ™ et"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "Bu sistem üçün şifrəni drakbackup qurğularında qeyd et."
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "Qurtardı"
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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 ""
-"GiriÅŸ\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. Lisenziya Müqaviləsi\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. Hüdudlu Zəmanət\n"
-"\n"
-"The Software Products and attached documentation are provided \"as is\", "
-"with no warranty, to the \n"
-"extent permitted by law.\n"
-"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. GPL vÉ™ ÆlaqÉ™dar Lisenziyalar\n"
-"\n"
-"The Software Products consist of components created by different persons or "
-"entities. Most \n"
-"of these components are governed under the terms and conditions of the GNU "
-"General Public \n"
-"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-"licenses allow you to use, \n"
-"duplicate, adapt or redistribute the components which they cover. Please "
-"read carefully the terms \n"
-"and conditions of the license agreement for each component before using any "
-"component. Any question \n"
-"on a component license should be addressed to the component author and not "
-"to 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. İntelektual Sahiblik Hüquqları\n"
-"\n"
-"All rights to the components of the Software Products belong to their "
-"respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software "
-"programs.\n"
-"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. Hökümət Qanunları \n"
-"\n"
-"If any portion of this agreement is held void, illegal or inapplicable by a "
-"court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other "
-"applicable sections of the \n"
-"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of "
-"France.\n"
-"All disputes on the terms of this license will preferably be settled out of "
-"court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of "
-"Paris - France.\n"
-"For any question on this document, please contact MandrakeSoft S.A. \n"
+#: ../../any.pm_.c:257
+msgid "Modify"
+msgstr "Təkmilləşdir"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default user"
-msgstr "Æsas istifadəçi"
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "Ne cür bir giriş istəyirsiniz?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"irəliləmə çubuğunun onun sol üst\n"
-"küncünə görə x mövqeyi"
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "Linuks"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Current interface configuration"
-msgstr "Hazırkı ara üz qurğusu"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "Digər sistemlər (SunOS...)"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Sətir Çapçı Demonu"
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "Digər sistemlər (MacOS...)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"ISA kartınız var isə sonrakı ekrandakı qiymətlər doğru olmalıdır.\n"
-"\n"
-"PCMCIA kartınız var isə kartınızın \"irq\" və ya \"io\"sunu bilməlisiniz.\n"
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "Digər sistemlər (windows...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not print any test page"
-msgstr "Sınaq səhifəsini çap etmə"
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "Æks"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr "Qurmuxi"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "Kök"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s onsuzda istifadədədir\n"
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
+msgstr "Sonuna əlavə et"
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
-msgstr "APIC olmamasına məcbur et"
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr "Bu şifrə çox qısadır (ən az %d hərf böyüklüyündə olmalıdır)"
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "Oxu-yaz"
-#: ../../standalone.pm:1
-#, c-format
-msgid "[keyboard]"
-msgstr "[klaviatura]"
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "Cədvəl"
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP vəkili"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "E'tibarsız"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install List"
-msgstr "Siyahını Qur"
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "Etiket"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Change\n"
-"Restore Path"
-msgstr ""
-"Geri Yükləmə Cığırını\n"
-"Dəyişdir"
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "Æsas"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Yalnız seçili gününkünü göstər"
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
+msgstr "Initrd böyüklüyü"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tDisk istifadəsinə %s Mb'lıq hədd qoy\n"
+#: ../../any.pm_.c:318
+msgid "NoVideo"
+msgstr "NoVİdeo"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 kB"
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "GiriÅŸi sil"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Qeyd: Parallel qapılar avtomatik aşkar edilə bilməz)"
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "Boş etiket qəbul edilə bilməz"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
+msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Hansı növ kartınız var?"
+#: ../../any.pm_.c:330
+#, fuzzy
+msgid "You must specify a root partition"
+msgstr "Bir swap sahəsinə ehtiyacınız var"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "Bu etiket istifadə edilməz"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Security"
-msgstr "Təhlükəsizlik"
+msgid "Found %s %s interfaces"
+msgstr "%s %s ara üzü tapıldı"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Qurğuları sazlamaq və çap vəzifələrini yerinə gətirmək üçün eyni zamanda "
-"\"xpdq\"dən də istifadə edə bilərsiniz.\n"
-"ÆgÉ™r masa üstü mühidi olaraq KDE iÅŸlÉ™dirinizsÉ™, masa üstünüzdÉ™ adı \"Çapçını "
-"DAYANDIR!\" olan \"panika düyməsi\", mövuddur, bu düyməyəbasılanda bütün çap "
-"vəzifələri birbaşa dayandırılır. Bu xususilə çapçı tıxanmalarında "
-"faydalıdır.\n"
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "BaÅŸqa var?"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
+#: ../../any.pm_.c:642
#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
+msgid "Do you have any %s interfaces?"
+msgstr "Heç %s ara üzü var?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Geri yüklənəcək ehtiyat nüsxələri tapıla bilmədi...\n"
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "Xeyr"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown"
-msgstr "NamÉ™'lum"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "Bəli"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "Bu verici onsuzda siyahıdadır, yenidən əlavə edilə bilməz.\n"
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "Avadanlıq mə'lumatına bax"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Network Configuration"
-msgstr "Şəbəkə Quraşdırılması"
+msgid "Installing driver for %s card %s"
+msgstr "%s kartı (%s) üçün sürücü yüklənir"
-#: ../../standalone/logdrake:1
+#: ../../any.pm_.c:663
#, c-format
-msgid "<control>S"
-msgstr "<control>S"
+msgid "(module %s)"
+msgstr "(modul %s)"
-#: ../../network/isdn.pm:1
+#: ../../any.pm_.c:674
#, c-format
msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-"Dünyanın geri qalanı üçün protokol \n"
-" D-Channel yoxdur (kiralıq xətlər)"
-#: ../../standalone/drakTermServ:1
+#: ../../any.pm_.c:680
#, 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."
+"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 ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ bu faylı mkinitrd-net'in yaratdığı əkslərləvə /etc/"
-"dhcpd.conf\n"
-" \t\t ilə bərabər işləməsi üçün hər disksiz alıcı üçün quraşdıracaq \n"
-" \t\tTipik quraşdırma faylı buna bənzəyir:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t\t}"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "%s seçimi rəqəm olmalıdır!"
+"İstəsəniz indi %s modulunun parametrlərini göstərə bilərsiniz.\n"
+"Parametrlər``ad=qiymət ad2=qiymət2...'' şəklində olmalıdır.\n"
+"Məsələn ``io=0x300 irq=7''"
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, c-format
-msgid "Notice"
-msgstr "Qeyd"
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "Modul seçənəkləri:"
-#: ../../install_steps_interactive.pm:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "Siz X'i qurğulamadınız. Bundan əminsiniz?"
+msgid "Which %s driver should I try?"
+msgstr "Hansı %s sürücüsü sınansın?"
-#: ../../printer/printerdrake.pm:1
+#: ../../any.pm_.c:703
#, 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\"."
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
-"Xahiş edirik, quraşdırmaq istədiyiniz çapçını seçin. Çapçının quraşdırılması "
-"tamamilÉ™ avtomatik olacaq. ÆgÉ™r çapçınız düzgün açkar edilmÉ™yibsÉ™ ya "
-"daxüsusiləşdirilmiÅŸ çap quraÅŸdırması istÉ™yirsinizsÉ™, \"ÆllÉ™ quraÅŸdırma\"nı "
-"seçin."
+"Bəzi hallarda, %s sürücü düzgün işləməsi üçün əlavə mə'lumat istəyə bilər.\n"
+"Sürücüler üçün əlavə bir xüsusiyyət göstərmək mi istəyərsiniz, yoxsa\n"
+"sürücülərin lazımi mə'lumatlar üçün avadalığı tanımasını mı istəyərsiniz? \n"
+"Bə'zən tanımlama kompüterinizi dondura bilər amma donduğu üçün\n"
+"kompüterinizə heç bir şey olmaz."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "What type of partitioning?"
-msgstr "Hansı növ bölmələndirmə?"
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
+msgstr "Avtomatik yoxla"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "Seçənəkləri göstər"
+
+#: ../../any.pm_.c:719
#, c-format
msgid ""
-"file list sent by FTP: %s\n"
-" "
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
-"FTP tərəfindən göndərilən fayl siyahısı: %s\n"
-" "
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface"
-msgstr "Ara üz"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Multisession CD"
-msgstr "Çox iclaslı CD"
+"%s modulunun yüklənməsi iflas etdi.\n"
+"Yenidən başqa bir parametr ilə sınamaq istəyirsiniz?"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated strings"
-msgstr "verqüllə ayrılmış qatarlar"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "Bunlar, darayıcılarının istifadə ediləcəyi sistemlərdir:"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Messages"
-msgstr "İsmarışlar"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
+msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Namə'lum|CPH06X (bt878) [çox satıcılı]"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
+msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP vÉ™ IMAP Vericisi"
+#: ../../any.pm_.c:738
+msgid "access to network tools"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Mexico"
-msgstr "Mexiko"
+#: ../../any.pm_.c:739
+msgid "access to compilation tools"
+msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../any.pm_.c:744
#, c-format
-msgid "Model stepping"
-msgstr "Model addımlaması"
+msgid "(already added %s)"
+msgstr "(%s artıq əlavə edilmişdir)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
-msgstr "Ruanda"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "Zəif parol seçdiniz!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Switzerland"
-msgstr "İsveçrə"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
+msgstr "Xahiş edirik bir istifadəçi adı alın"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr "Bruney Darüssəlam"
+#: ../../any.pm_.c:751
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr ""
+"İstifadəçi adında sadacə kiçik hərflər, rəqəmlər, `-' və `_' xarakterləri "
+"ola bilər"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "%s ara üzünüz var?"
+#: ../../any.pm_.c:752
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Bu istifadəçi adı artıq vardır"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "Quraşdırma faylını oxumaq üçün ali istifadəçi olmalısınız. \n"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "Bu istifadəçi adı artıq vardır"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Uzaq lpd Çapçı Seçimləri"
+#: ../../any.pm_.c:757
+msgid "Add user"
+msgstr "İstifadəçini əlavə et"
-#: ../../help.pm:1
+#: ../../any.pm_.c:758
#, 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."
-msgstr ""
-"GNU/Linuks çox istifadəçili əməliyyat sistemidir, bu da o deməkdir ki\n"
-"hər istifadəçinin öz xüsusi seçimləri, faylları və s. ola bilər. Ancaq \n"
-"sistem idarəçisi olan \"ali istifadəçi\" xaricindəki indi əlavə edəcəyiniz\n"
-"istifadəçilər öz faylları və qurğuları xaricində sistemin heç bir təhlükəli\n"
-"yeri ilə iş görə bilməz və beləcə də sistem istənməyən pozulmalara qarşı\n"
-"qorunmuÅŸ olacaq. Æn az bir dÉ™nÉ™ sıravi istifadəçi yaradmalısınız vÉ™ bu "
-"hesabı\n"
-"gündəlik işləriniz üçün istifadə etməlisiniz. Ali İstifadəçi olaraq giriş "
-"etmək də\n"
-"olduqca asanddır ancaq bu eyni zamanda çox təhlükəlidir. Çox kiçik bir xəta "
-"ilÉ™\n"
-"sistemi qeyri-fəal vəziyyətə gətirə bilərsiniz. Ancaq sıravi istifadəçi "
-"olaraq xəta\n"
-"ediləndə ancaq bəzi mə'lumatları itirəcək, sisteminiz yenə də sağlam \n"
-"qalacaqdır.\n"
-"\n"
-"Birinci sahÉ™ sizdÉ™n adı soruÅŸacaq. ÆlbÉ™ttÉ™ ki bunu yazmaq mÉ™cburi deyil. \n"
-"Oraya istədiyiniz kəlmələri yaza bilərsiniz. DrakX buraya yazdığınız "
-"kəlmələrin\n"
-"ilk kəlməsini alıb \"%s\" sahəsinə köçürəcək, bu istifadəçinin sistemə "
-"girmək\n"
-"üçün işlədəcəyi istifadəçi adı olacaq. İstəsəniz bunu da dəyişdirə "
-"bilərsiniz.\n"
-"Sonrakı addım şifrə girməkdir. Təhlükəsizlik nəzər nöqtəsindən şifrəsi "
-"olmayan\n"
-"sıravi istifadəçi ali istifadəçi qədər səlahiyyətli ola bilməz ancaq yenə də "
-"sizÉ™\n"
-"hər bir istifadəçiyə tapılması asand olmayan bir şifrə tə'yin etmənizi \n"
-"məsləhət görürük\n"
-"\n"
-"\"%s\" basdıqdan sonra başqa istifadəçiləri də əlavə edə bilərsiniz. Hər "
-"dostunuz\n"
-"üçün bir istifadəçi əlavə edin, misal üçün atanız, qardaşınız kimi. "
-"İstifadəçiləri əlavə \n"
-"etməyi bitirəndə \"%s\" düyməsinə basın.\n"
-"\n"
-"\"%s\" düyməsi istifadəçinin işlədəcəyi qabığı dəyişdirmək üçündür. \n"
-"(əsas olan bash qabığıdır).\n"
-"\n"
-"İstifadəçiləri əlavə edib bitirəndə sizə kompüteriniz açılanda hansı "
-"istifadəçinin\n"
-"avtomatik olaraq sistemÉ™ daxil etmÉ™k istÉ™diyiniz sualı verilÉ™cÉ™kdir. ÆgÉ™r "
-"bu\n"
-"xüsusiyyət xoşunuza gəlirsə və təhlükəsizlik haqqında elə də "
-"maraqlanmırsınızsal\n"
-"istədiyiniz istifadəçini və pəncərə idarəçisini seçib \"%s\" düyməsinə "
-"basın.\n"
-"ÆgÉ™r bu xassÉ™ sizi maraqlandırmırsa \"%s\" qutusunun seçimini silin."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Internet Access..."
-msgstr "İnternet Yetişməsini Quraşdır..."
+"Enter a user\n"
+"%s"
+msgstr ""
+"Bir istifadəçi girin\n"
+"%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Xahiş edirik, hər ehtiyatlama gedişatı arasındakı vaxt aralığını seçin"
+#: ../../any.pm_.c:759
+msgid "Accept user"
+msgstr "İstifadəçini qəbul et"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Norway"
-msgstr "Norvegiya"
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "Həqiqi adı"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Delete profile"
-msgstr "Profili sil"
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "İstifadəçi adı"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Danish"
-msgstr "Danimarka dili"
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "Qabıq"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Açılışda XFree və konsolda numlock düyməsini\n"
-"avtomatik olaraq aç."
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "Timsal"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Xahiş edirik, bu kompüter üçün IP qurğularını girin.\n"
-"Hər üzv nöqtəli onluq IP şəklində girilməlidir,\n"
-"(misal üçün 1.2.3.4)."
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "Avtomatik GiriÅŸ"
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:804
+#, fuzzy
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."
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
-"Mandrake Linuks qurulumu müxtəlif CD'lər üstündə gəlir. DrakX\n"
-"seçili paketlərin hansı CD'də olduğunu bilir ona görə də lazım olanda\n"
-"hazırkı CD'ni çıxardıb sizdən lazım olan CD'ni daxil etməyi istəyəcək."
+"Kompüterinizi avtomatik olaraq bir istifadəçi ilə başlada bilərəm.\n"
+"İstəmirsiniz isə rədd edin."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
-msgstr "Seçilidirsə, yiyə və qrup dayişdirilməyəcək"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "Bolqarıstan"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
-msgstr "Çərşənbə axşamı"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "İşlədicilər"
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "Æsas istifadəçini seçin:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "Svalbard və Jan Mayen Adaları"
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
+msgstr "İstifadə etmək istədiyiniz pəncərə idarəçisini seçin:"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No NIC selected!"
-msgstr "NIC seçili deyil!"
+#: ../../any.pm_.c:824
+#, fuzzy
+msgid "Please choose a language to use."
+msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../any.pm_.c:826
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 ""
-"Quraşdırma sırasında xətalar yarandı.\n"
-"net_monitor ya da mcc vasitÉ™siylÉ™ baÄŸlantınızı sınayın. ÆgÉ™r "
-"bağlantınızyoxdursa, quraşdırmanı yenidən başladın."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "%s bölməsi indi %s olaraq bilinir"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Other files..."
-msgstr "Diqər Faylların Ehtiyat Nüsxəsini Al..."
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
+msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
-msgstr "Konqo (KinÅŸasa)"
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "Hamısı"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "SMB verici IP'si"
+#: ../../any.pm_.c:961
+#, fuzzy
+msgid "Allow all users"
+msgstr "İstifadəçi əlavə et"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "%s sürücüsünün bölmə cədvəli diskə yazılacaq!"
+#: ../../any.pm_.c:961
+#, fuzzy
+msgid "No sharing"
+msgstr "CUPS başlayır"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing HPOJ package..."
-msgstr "HPOJ paketi qurulur..."
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
+#, fuzzy, c-format
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr ""
+"Bu paket yenilənməlidir\n"
+"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../any.pm:1
-#, c-format
+#: ../../any.pm_.c:973
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"
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-"Xüsusi bir açılış disketi, Linuks sisteminizin normal bir sistem yükləyiciyə "
-"ehtiyac olmadan açılmasına imkan verir. ÆgÉ™ sisteminizÉ™ lilo (ya da grub) "
-"qurmayacaqsanız,\n"
-"ya da başqa bir əməliyyat sistemi lilo'nu silərsa ya da lilo avadanlığınızla "
-"işləməzsə\n"
-"bu disket sizə yardımçı olacaqdır. Sonradan Mandrake qurtarma disketi "
-"rəsmini\n"
-"istifadə edərək də bu sistemi qurtaran disket yaradıla bilər.\n"
-"Açılış disketi yaratmaq istəyirsiniz?\n"
-"%s"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
+msgid "Mandatory package %s is missing"
+msgstr ""
+
+#: ../../any.pm_.c:987
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 ""
-"\n"
-" DrakBackup Demon Raportu\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latvian"
-msgstr "Latış dili"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr "hər ay"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Retry"
-msgstr "Geri yüklə"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr "Modul adı"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Start at boot"
-msgstr "Açılışda başlat"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Artan Ehtiyatları İşlət"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "Diskin ilk sektoru (MBR)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "El Salvador"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
-msgstr "Oyun Çubuğu"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "DVD"
-msgstr "DVD"
+#: ../../any.pm_.c:1003
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
+msgstr ""
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
-msgstr "Æsas olaraq Yunikod iÅŸlÉ™t"
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
+msgstr "Krakerlərə xoşgəlmişsiniz"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "bu avadanlığı işlədən GNU/Linuks çəyirdək modulu"
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Zəif"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Avadanlıq saatı GMT'yə görə quruludur"
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
+msgstr "Standart"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "Bölmə cədvəli qurtarılmaya cəhd edilir"
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Yüksək"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "%s seçimi integer rəqəmi olmalıdır!"
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+#, fuzzy
+msgid "Higher"
+msgstr "Yüksək"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
-msgstr "İstifadəçiləri səlahiyyətləndirmək üçün şifrə işlət"
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "Şübhəci"
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../any.pm_.c:1061
msgid ""
-"Entries you'll have to fill:\n"
-"%s"
+"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 ""
-"Doldurmaq məcburiyyətində olacağınız girişlər:\n"
-"%s"
+"Bu səviyyə RAID'i diqqətli istifadənizi tövsiyə edirik. Sisteminiz daha "
+"asand\n"
+"işlədiləcək, ancaq xətalara qarşı da həssaiyyəti də artacaqdır. İnternetə \n"
+"bağlı isəniz bunu tövsiyə etmirik. Parol ilə girilir."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1064
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."
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
-"Başqa mediyalara ehtiyatlamada, fayllar sabit diskdə yaradılıb, daha sonra "
-"başqa mediyalara daşınır. Bu seçimi fəallaşdıraraq, ehtiyatlama sonrası "
-"sabit diskdəki faylların silinməsinə imkan verir."
-
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Canlı yeniləmə başladıla bilmir !!!\n"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "Ad: "
+"Parollar fəallaşdırıldı, yenə də bir şəbəkə üstündə istifadə edilməməsi "
+"tövsiyə edilir."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
+#: ../../any.pm_.c:1065
+#, fuzzy
+msgid ""
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
+"İnternetə bağlı bir kompüter üçün standart və tövsiyə edilən bir "
+"təhlükəsizlik səviyyəsidir."
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 million rəng (24 bit)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Allow all users"
-msgstr "Bütün istifadəçilərə icazə ver"
-
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr "Rəsmi MandrakeSoft Dükanı"
-
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "Ölçüləndirilir"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1066
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
-"Drakbackup üçün\n"
-"icazə verilən maksimal böyüklüyü (MB) daxil edin"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Cable connection"
-msgstr "Kabel bağlantısı"
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, c-format
-msgid "User"
-msgstr "İstifadəçi"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
+#: ../../any.pm_.c:1067
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
+"connections from many clients. Note: if your machine is only a client on the "
+"Internet, you should choose a lower level."
msgstr ""
-"Geri yükləmədən əvvəl yeni ehtiyatları al (ancaq artan ehtiyatlar üçün.)"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "mkraid bacarılmadı"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Name"
-msgstr "Ad"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "3 Düymə Emulyasiyası"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
-msgstr "sgid fayllarının əlavələrini/silinəcəklərini yoxla"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files..."
-msgstr "Fayllar göndərilir..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "Yəhudi dili (Fonetik)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
-msgstr "rpm vasitələrinə yetişmə"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Çapçı avadanlığını seçməli/girməlisiniz!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "CD'yə yetişmədə səlahiyyət problemi."
+"Bu təhlükəsizlik səviyyəsiylə sistemin bir verici olaraq istifadəsi "
+"mümkündür. \n"
+"Təhlükəsizlik, birdən çox alıcının bağlanmasına icazə verəcək şəkildə "
+"artırılmışdır. "
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "Telefon nömrəsi"
+#: ../../any.pm_.c:1070
+#, fuzzy
+msgid ""
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
+msgstr ""
+"Biz dördüncü səviyyə haqlarını verdik və sistem xarici bağlantılara qarşı "
+"tamamilə qapalıdır.\n"
+"Təhlükəsizlik səviyyəsi indi ən üstdədir."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr "Xəta: Səs kartınız üçün \"%s\" sürücüsü siyahıda yoxdur"
+#: ../../any.pm_.c:1076
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Seçənəklər"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Çapçı adı, izahatı, yeri"
+#: ../../any.pm_.c:1077
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Təhlükəsizlik səviyyəsini seçin"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
-msgstr "ABÅž (translasiya)"
+#: ../../any.pm_.c:1080
+#, fuzzy
+msgid "Security level"
+msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Xinerama uzantısını işlət"
+#: ../../any.pm_.c:1082
+#, fuzzy
+msgid "Use libsafe for servers"
+msgstr "X verici üçün seçənəkləri göstərin"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback"
-msgstr "Loopback"
+#: ../../any.pm_.c:1083
+msgid ""
+"A library which defends against buffer overflow and format string attacks."
+msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "West Europe"
-msgstr "Qərvi Avropa"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On CD-R"
-msgstr "CD-R'da"
+#: ../../any.pm_.c:1166
+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 ""
-#: ../../standalone.pm:1
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, c-format
msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\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 ""
-"[SEÇİMLÆR] [PROQRAM_ADI]\n"
+"%s emeliyyat sistemi secki proqramina xos gəlmissiniz!\n"
+"\n"
+"Içlerinden birini acmaq ucun adini yazin ve <ENTER>\n"
+"duymesine basin ve ya esas acilis ucun %d saniye gozleyin.\n"
"\n"
-"SEÇİMLÆR:\n"
-" --help - bu yardım ismarışını göstər.\n"
-" --report - proqram mandrake vasitələrindən biri olmalıdır\n"
-" --incident - proqram mandrake vasitələrindən biri olmalıdır"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake2 version %s"
-msgstr "Harddrake2 buraxılış %s"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Preferences"
-msgstr "QurÄŸular"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr "Svaziland"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "Dominikan Respublikası"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr "%s köçürülür"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Choose color"
-msgstr "Rəngi seç"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac"
-msgstr "Siriak"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
-#: ../../help.pm:1
-#, 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!"
-msgstr ""
-"Yeni Linuks Mandrake'nizi qurmaq üçün silmək istədiyiniz sürücünü seçin.\n"
-"Diqqətli olun, sürücüdəki bütün mə'lumatlar silinəcək\n"
-"və geri gəlməyəcək!"
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Emeliyyat sistemi secici GRUB'a xos gəlmissiniz!"
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -1918,25 +1141,39 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
+#: ../../bootloader.pm_.c:986
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Girisleri secmek ucun %c ve %c duymelerini istifade edin."
+msgstr "%c ve %c duymeleri ile isıqlandırılmıs girisleri sece bilersiniz"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Sıravi 2 Düyməli Siçan"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Faylı icra etmək üçün \"%s\"ı fəallaşdır"
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr "ÆvvÉ™lcÉ™ mÉ™ntiqi hÉ™cmlÉ™ri sil\n"
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
+msgstr ""
+"acilisdan evvel emrleri duzeltmək ucun 'e', emr setiri ucun ise 'c' basin"
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -1948,3258 +1185,2098 @@ msgstr "ÆvvÉ™lcÉ™ mÉ™ntiqi hÉ™cmlÉ™ri sil\n"
#
#. -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
+#: ../../bootloader.pm_.c:995
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Isiqlandirilmis secim %d saniye icinde sistemi acacaq."
+msgstr "Isaretli secenek %d saniye icinde sistemi acacaq."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
-msgstr ""
-"/etc/sysconfig/bootsplash yazıla bilmir\n"
-"Fayl tapıla bilmədi."
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
+msgstr "/boot içində lazımi yer yoxdur"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet access"
-msgstr "İnternet yetişməsi"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "Masa Üstü"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"y coordinate of text box\n"
-"in number of characters"
-msgstr ""
-"hərf ədədi olaraq mətn\n"
-"qutusunun y istiqaməti"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "BaÅŸlama Menyusu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Hazırkı çapçı üçün mövcud olan seçimlər siyahısını almaq üçün \"Seçimlər "
-"siyahısını göstər\" düyməsinə basın."
+#: ../../bootloader.pm_.c:1120
+#, fuzzy, c-format
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "Sistem yükləyicisini haraya qurmaq istəyirsiniz?"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr "Vericilər fəallaşdırılır..."
+#: ../../bootlook.pm_.c:53
+msgid "Boot Style Configuration"
+msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Sınaq səhifə(ləri)si çap edilir..."
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
+msgstr "/_Fayl"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-"Daşıma müvəffəqiyyətlə başa çatdı\n"
-"İndi aşağıdakı əmrlə vericiyə daxil olmayı yoxlaya bilərsiniz:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"Sizdən şifrə istənilməyəcək."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
+msgstr "/Fayl/_Çıx"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Onsuz da bağlama nöqtəsi %s olan bölmə mövcuddur\n"
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
+msgstr "<control>Q"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
-msgstr "Saat başı msec təhlükəsizlik yoxlamasını Fəallaşdır/Qeyri-fəallaşdır"
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
+msgstr "NewStyle Kateqoriyasından Monitor"
-#: ../../help.pm:1
-#, 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''."
-msgstr ""
-"Bu nöqtədə Linuks Mandrakeni sabit diskinizdə haraya quracağınıza\n"
-"qÉ™rar verÉ™cÉ™ksiniz. ÆgÉ™r diskiniz boÅŸ isÉ™ vÉ™ ya bir baÅŸqa sistem\n"
-"bütün yeri doldurmuş isə, o zaman diskinizdə Linuks Mandrake üçün\n"
-"yer açmalısınız. Bölmələndirmə əsasən diskinizdə Mandrake Linuksu\n"
-"qurmaqməntiqi sürücülər yaratmaqdan ibarətdir.\n"
-"\n"
-"Ümumiyyətlə bölmələndirmənin təsiri geri dönülməzdir və mə'lumat\n"
-"itirilməsinə səbəb ola bilər. Ona görə də əgər sisteminizdə başqa bir\n"
-"əməliyyat sistemi quruludursa və siz Linuksla yeni tanışırsınızsa bu iş\n"
-"çox gərgin və yorucudur. Ancaq DrakX sabit diski çox rahat bölmələndirməniz\n"
-"üçün çox sadə bir sehirbaz daxil edir. Başlamadan əvvəl xahiş edirik, "
-"buradakı\n"
-"mə'lumatları oxuyun, və bu iş üçün bir az vaxt ayırın.\n"
-"\n"
-"Sabit diskinizin qurğularına nəzarən birdən çox seçim mövcud ola bilər:\n"
-"\n"
-" * \"%s\": bu seçim boş sürücülərinizi avtomatik olaraq bölmələndirəcək\n"
-"Bu seçənəyi seçsəniz sizə heç bir sual verilməyəcək.\n"
-"\n"
-" * \"%s\": sehirbaz sabit diskinizdə bir ya da daha çox mövcud Linuks \n"
-"bölməsi aşkar edib. Onları istifadə etmək istəyirsinizsə bu seçənəyi "
-"işlədin.\n"
-"Daha sonra hər bölmə ilə əlaqələndirilmiş bağlama nöqtəsi seçəcəksiniz.\n"
-"ÆvvÉ™ldÉ™n qalan baÄŸlama nöqtÉ™lÉ™ri É™sas olaraq seçilidir vÉ™ onları elÉ™cÉ™ dÉ™\n"
-"saxlamaq gözəl fikirdir.\n"
-"\n"
-" * \"%s\": sabit diskinizdə Microsoft Windows quruludur və üstündəki bütün\n"
-" sahəni əhatə edir, bu vəziyyətdə siz Linuks üçün boş yer ayırmalısınız.\n"
-"Bunu etmək üçün Microsoft Windows bölməsini və mə'lumatlarını silə "
-"bilərsiniz.\n"
-"(baxın ``Bütün diski sil'' həlli) ya da Microsoft Windows FAT ya da NTFS "
-"bölmənizin\n"
-" böyüklüyünü dəyişdirə bilərsiniz. Ölçüləndirmə qaydalara riayət edilərsə "
-"heç bir mə'lumat\n"
-"itirilməsinə yol açmaz. Qaydalar isə əvvəlcədən Windows bölməniz üstündə "
-"'Scandisk' vÉ™\n"
-"'Defraq' əmrlərinin icra edilməsinir. Eyni zamanda mə'lumatlarınızın ehtiyat "
-"nüsxəsini almayı\n"
-"da qətiyyən unutmayın. Kompüteriniz üstündə həm Mandrake Linux həm də "
-"Microsoft\n"
-"Windows ÆS'lÉ™rini iÅŸlÉ™tmÉ™k istÉ™yirsinizsÉ™ bu seçənÉ™yi seçin. Unutmayın ki "
-"Microsoft\n"
-"Windows bölmənizin böyüklüyünü Windows altında da bəzi (PartitionMagic) "
-"proqramlar\n"
-"vasitəsi ilə dəyişdirə bilərsiniz.\n"
-"\n"
-" Bu seçənəyi seçmədən əvvəl nəzərə alın ki bu əməliyyatdan sonra Microsoft "
-"Windows\n"
-"bölməniz əvvəlkindən daha kiçik olacaq.\n"
-"\n"
-" * \"%s\": əgər sisteminizdəki bütün mövcud bölmələri silmək və yerinə\n"
-"Mandrake Linuks sistemini qurmaq istəyirsinizsə bu seçənəyi seçin.\n"
-"Diqqətli olun, ona görə ki seçiminizi təsdiqlədikdən sonra geri ala "
-"bilməyəcəksiniz.\n"
-"\n"
-" !! ÆgÉ™r bu seçənÉ™yi seçsÉ™niz, diskinizdÉ™ki bütün mÉ™'lumat "
-"silinəcəkdir. !!\n"
-"\n"
-" * \"%s\": bu sabit disk üstündəki hər şeyi siləcək və sıfırdan təzə bir "
-"bölmələmə,\n"
-"həyata keçirəcəkdir. Diskinizdəki bütün mə'lumat silinəcəkdir.\n"
-"\n"
-" !! ÆgÉ™r bu seçənÉ™yi seçsÉ™niz, diskinizdÉ™ki bütün mÉ™'lumat "
-"silinəcəkdir. !!\n"
-"\n"
-" * \"%s\": diskinizi əllə bölmələmək istəyirsinizsə bu seçənəyi seçin. \n"
-"Diqqətli olun -- bu çox qüvvətli ancaq təhlükəli seçimdir. Ona görə də bu \n"
-"seçimi ancaq daha əvvəl buna oxşar bir şey etmişsinizsə və bu sahədə\n"
-"bilikləriniz mövcuddursa seçin. Yaxşısı budur ki bu əməliyyat sırasında\n"
-"yanınızda daha əvvəl bunu etmiş dostunuz da olsun. DiskDrake vasitəsinin\n"
-"istifadəsi haqqında mə'lumatı ``Starter Guide'' kitabçasının ``Managing \n"
-"Your Partitions '' qismində tapa bilərsiniz."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
-msgstr "Ukrayna"
+#: ../../bootlook.pm_.c:83
+msgid "NewStyle Monitor"
+msgstr "NewStyle Monitor"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Application:"
-msgstr "TÉ™'minat:"
+#: ../../bootlook.pm_.c:84
+msgid "Traditional Monitor"
+msgstr "ÆnÉ™nÉ™vi Monitor"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "External ISDN modem"
-msgstr "Xarici ISDN modem"
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
+msgstr "ÆnÉ™nÉ™vi Gtk+ Monitor"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr "əgər bəli seçilidirsə, yoxlama nəticələrini poçtla göndər."
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
+msgstr "Açılışda Auroranı başlat"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Seçiminiz? (əsası %s) "
+#: ../../bootlook.pm_.c:89
+msgid "Lilo/grub mode"
+msgstr "Lilo/grub modu"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr "Problem həlli"
+#: ../../bootlook.pm_.c:89
+msgid "Yaboot mode"
+msgstr "Yaboot modu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:138
+#, fuzzy
+msgid "Install themes"
+msgstr "Sistemi qur"
+
+#: ../../bootlook.pm_.c:139
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"
+"Display theme\n"
+"under console"
msgstr ""
-"Sınaq səhifə(ləri)si çapçıya göndərildi.\n"
-"Çapçının işə başlaması üçün bir az vaxt keçə bilər.\n"
-"Çap vəziyyəti:\n"
-"%s\n"
-"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
-msgstr "günlük"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and one unknown printer"
-msgstr "və bir namə'lum çapçı"
+#: ../../bootlook.pm_.c:140
+#, fuzzy
+msgid "Create new theme"
+msgstr "Yeni bölmə yarat"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#: ../../bootlook.pm_.c:184
#, c-format
-msgid "Ireland"
-msgstr "İrlandiya"
+msgid "Backup %s to %s.old"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:187
#, c-format
-msgid " Restore Configuration "
-msgstr " Qurğuları Geri AL "
+msgid "Copy %s to %s"
+msgstr ""
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Bu qurÄŸu doÄŸrudur?"
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+msgstr "Xəta"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"İndi, İnternet/ÅŸÉ™bÉ™kÉ™ baÄŸlantınız quraÅŸdırılacaq. ÆgÉ™r kompüterinizi\n"
-"yerli şəbəkə ya da internetə bağlamaq istəyirsinizsə, \"%s\" düyməsinə\n"
-"basın. Mandrake Linuks şəbəkə avadanlıqları və modemlərinizi aşkar etməyə\n"
-"cÉ™hd edÉ™cÉ™k. ÆgÉ™r avtomatik aÅŸkar bacarılmazsa, \"%s\" qutusunun iÅŸarÉ™sini\n"
-"silin. Eyni zamanda, şəbəkəni indi quraşdırmaq istəməyə də bilərsiniz, bu "
-"halda\n"
-"bunu daha sonra etmək üçün \"%s\" düyməsinə basaraq növbəti addıma keçə\n"
-"bilərsiniz.\n"
-"\n"
-"Şəbəkəniz quraşdırılırkən mövcud bağlantı seçimləri bunlar olacaq:\n"
-"ənənəvi modem, ISDN modem, ADSL bağlantı, kabel modem, və son olaraq\n"
-"da bəsit LAN bağlantısı (Eternet).\n"
-"\n"
-"Hər qurğunun təfərruatına girməyəcəyik - sadəcə olaraq IP ünvanı, əsas\n"
-"şəbəkə keçidi (Default Gateway), DNS vericiləri vs. kimi parametrləri "
-"internet \n"
-"xidmət provayderinizdən ya da sistem idarəçinizdən almaq yadınızdan çıxmasın."
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Sehirbaz Qurğuları"
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Autoprobe"
-msgstr "Avtomatik yoxla"
+#: ../../bootlook.pm_.c:222
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:224
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."
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-"əgər bəli seçilidirsə, bunları yoxla :\n"
-"\n"
-"- boş şifrələri,\n"
-"\n"
-"- /etc/shadow içində şifrə olmamasını\n"
-"\n"
-"- ali istifadəçi xaricindəki id'si 0 olan başqa istifadəçiləri."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files..."
-msgstr "Sistem fayllarının ehtiyat nüsxəsini çıxart..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr "NIS domeni olmayan translasiya işlədilə bilməz"
-#: ../../printer/printerdrake.pm:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "\"%s\" çapçısı çıxardılır..."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell history size"
-msgstr "Qabıq keçmişi böyüklüyü"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
-#: ../../standalone/drakfloppy:1
+#: ../../bootlook.pm_.c:238
#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../bootlook.pm_.c:244
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"
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-"Xahiş edirik, auto_install.cfg faylının yerini bildirin.\n"
-"\n"
-"Avtomatik qurma modunu quğulamaq istəmirsinizsə buranı boş buraxın.\n"
-"\n"
-
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on other machines"
-msgstr "Digər kompüterlər üstündə quraşdırılmış olan"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "cpuid tə'limatları ilə alına bilən mə'lumat səviyyəsi"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Peru"
-msgstr "Peru"
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " on device: %s"
-msgstr " bu avadanlıq üstündə: %s"
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+#, fuzzy
+msgid "Notice"
+msgstr "NoVİdeo"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "Windows(TM)'u Sil"
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "X Font Vericisini başlat (Bu, XFree icrası üçün məcburidir)."
+#: ../../bootlook.pm_.c:251
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Quruluş sinifini seçin"
-#: ../../standalone/drakTermServ:1
+#: ../../bootlook.pm_.c:259
#, c-format
msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"Bu qiymətlərin çoxu hazırkı sisteminizdə\n"
-"alınmışdır. Lazım gələrsə\n"
-"dəyişdirə biləcəksiniz."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Yazı növü faylını ya da cÉ™rgÉ™sini seçin vÉ™ 'ÆlavÉ™ Et' düymÉ™sinÉ™ basın"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "Madaqaskar"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
-msgstr "Cron hələlik normal istifadəçi modu üçün mövcud deyil"
+"Açılış İdarəçisi olaraq hazırda %s işlədirsiniz.\n"
+"Quraşdırma sehirbazını başlatmaq üçün tıqlayın."
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "System"
-msgstr "Sistem"
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
+msgstr "Qur"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Bu xüsusiyyəti istifadə etmək istəyirsiniz?"
+#: ../../bootlook.pm_.c:268
+#, fuzzy
+msgid "Splash selection"
+msgstr "Paket seçkilərini saxla"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr "ÆrÉ™b dili"
+#: ../../bootlook.pm_.c:271
+msgid "Themes"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:273
msgid ""
"\n"
-"- Options:\n"
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
msgstr ""
-"\n"
-"- Seçimlər:\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Password required"
-msgstr "Şifrə lazımdır"
-#: ../../common.pm:1
-#, c-format
-msgid "%d minutes"
-msgstr "%d dəqiqə"
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
+msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Qrafika kartı: %s"
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV transfer failed!"
-msgstr "WebDAV transferi bacarılmadı!"
+#: ../../bootlook.pm_.c:316
+msgid "System mode"
+msgstr "Sistem modu"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "XFree quraşdırılması"
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
+msgstr "Açılışda X-Window sistemini başlat"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Choose action"
-msgstr "Gedişatı seçin"
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
+msgstr "Xeyr, Avtomatik giriş istəmirəm"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Polynesia"
-msgstr "Fransız Poloneziyası"
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr ""
+"Bəli, bu istifadəçi üçün avtomatik giriş istəyirəm (istifadəçi, masa üstü)"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"AdÉ™tÉ™n DrakX siçanınızdakı düymÉ™ É™dÉ™dini tapmaqda É™ziyyÉ™t çəkmÉ™yÉ™cÉ™k. ÆgÉ™r\n"
-"müvəffəqiyyətsiz olsa, siçanınızı iki düyməli qəbul edəcək və üçüncü düymə \n"
-"emulyasiyasını fəallaşdıracaq. İki düyməli siçanda üçüncü düyməyə "
-"``basmaq''\n"
-"üçün sağ və sol düyməyə bərabər basmalısınız. DrakX, siçanınızın PS/2 ya da "
-"USB bağlantısından hansını işlətdiyini özü tapacaq.\n"
-"\n"
-"ÆgÉ™r fÉ™rqli bir siçan növü seçmÉ™k istÉ™sÉ™niz verilÉ™n siyahıdan seçmÉ™niz\n"
-"kifayətdir.\n"
-"\n"
-"ÆgÉ™r É™sas siçan xaricindÉ™ baÅŸqa bir siçan seçmÉ™k istÉ™sÉ™niz bir sınaq ekranı\n"
-"göstəriləcək. Sİçanın qurğularının düz olduğundn əmin olmaq üçün\n"
-"düymÉ™lÉ™ri vÉ™ çarxı sınayın. ÆgÉ™r siçan düzgün iÅŸlÉ™mirsÉ™ boÅŸluq ya da\n"
-"[Return] düyməsinə basıb seçim siyahısına geri dönə bilərsiniz.\n"
-"\n"
-"Çərxli siçanlar adətən avtomatik aşkar edilə bilmir, bu səbəblə\n"
-"siçanınızı siyahıdan seçməniz lazım ola bilər. Siçanızın taxılı olduğu "
-"qapını\n"
-"və siçanınızı seçəndən sonra \"%s\" düyməsinə basın, ekranda bir siçan\n"
-"rəsmi göstəriləcək. Çərxin düzgün işlədiyini yoxlamaq üçün onu döndərin.\n"
-"Ekrandakı siçan çərxinin döndüyünü görəndən sonra siçanın düymələrini \n"
-"oxun ekrandakı hərəkətini yoxlayın."
-
-#: ../../services.pm:1
-#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "OKI 4w və uyğun winprinter'ləri dəstəklə."
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
+msgstr "Oldu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
+#: ../../common.pm_.c:107
+msgid "GB"
msgstr ""
-"Cərgə ağacının ən üstündəki .backupignore faylında yer alan fayllar "
-"wildcard'ların ya da faylların ehtiyat nüsxəsi alınmayacaq."
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "ALSA səs sistemini (Advanced Linux Sound Architecture) başlat"
+#: ../../common.pm_.c:107
+msgid "KB"
+msgstr ""
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "%s kartı üçün sürücü %s qurulur"
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
+#: ../../common.pm_.c:115
+msgid "TB"
msgstr ""
-"Siz köhnə əsas çapçınızı (\"%s\") transer etdiniz, onun eyni zamanda hazırkı "
-"%s çap etmə sistemində də əsas olmasını istəyirsiniz?"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Enable Server"
-msgstr "Vericini Fəallaşdır"
-#: ../../keyboard.pm:1
+#: ../../common.pm_.c:123
#, c-format
-msgid "Ukrainian"
-msgstr "Ukrayna"
+msgid "%d minutes"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../common.pm_.c:125
+msgid "1 minute"
msgstr ""
-"Şəbəkəyə yetişmə işləmirdi fə başladıla bilmədi. Xahiş edirik, "
-"avadanlığınızıvə qurğularınızı yoxlayın. Sonra uzaqdakı çapçınızı yenidən "
-"qurğulamaya çalışın."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Faylı yazmaq üçün \"%s\"ı fəallaşdır"
+#: ../../common.pm_.c:127
+#, fuzzy, c-format
+msgid "%d seconds"
+msgstr "%d saniyə sonra çıxılacaq"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Xahiş edirik, işlədilən açılış disketini %s sürücüsünə yerləşdirin"
+#: ../../common.pm_.c:172
+#, fuzzy
+msgid "Can't make screenshots before partitioning"
+msgstr "Artıq bölmə əlavə edilə bilməz"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local network(s)"
-msgstr "Yerli şəbəkə(lər)"
+#: ../../common.pm_.c:179
+#, fuzzy, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
-#: ../../help.pm:1
-#, c-format
-msgid "Remove Windows"
-msgstr "Windows'u Sil"
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+#, fuzzy
+msgid "France"
+msgstr "Fransızca"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
msgstr ""
-"Sizin %s darayıcınız quraşdırıldı.\n"
-"İndi siz Multimediya/Qrafika menyusundakı \"XSane\"i istifadə edərək "
-"sənədləri daraya bilərsiniz."
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Firewire controllers"
-msgstr "Firewire idarəçiləri"
-#: ../../help.pm:1
-#, 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!"
-msgstr ""
-"Ümumi açılış yükləyicisi parametrlərini quraşdırdıqdan sonra, açılış\n"
-"zamanında mövcud olacaq açılış seçimlərinin siyahısı göstəriləcək.\n"
-"\n"
-"ÆgÉ™r sisteminizdÉ™ qurulu olan baÅŸqa É™mÉ™liyyat sistemlÉ™ri varsa, onlar\n"
-"avtomatik olaraq açılış menyusuna əlavə ediləcək. Yeni giriş yaratmaq\n"
-"üçün \"%s\" düyməsinə, girişi dəyişdirmək ya da silmək üçün onu seçib \n"
-"\"%s\" ya da \"%s\" düyməsinə basın. \"%s\" düyməsi dəyişikliklərinizi\n"
-"qeyd edəcək.\n"
-"\n"
-"Ola bilər ki, konsola girib sistemi yenidən başladan heç kimin bu digər\n"
-"əməliyyat sistemlərinə yetişməsini istəmirsiniz. Bu zaman açılış "
-"menyusundan\n"
-"uyğun gələn girişləri silərək bunu həyata keçirə bilərsiniz, yalnız sizin "
-"bu\n"
-"əməliyyat sistemlərinə yetişə bilməniz üçün açılış disketinə ehtiyacınız "
-"olacaq!"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "System mode"
-msgstr "Sistem modu"
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+#, fuzzy
+msgid "Belgium"
+msgstr "Belçika dili"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
msgstr ""
-"NetWare çapçısında çap etmək üçün, NetWare çap vericisinin adı (Qeyd! Bu TCP/"
-"IP qovşaq adından fərqli ola bilər) və yetişmək istədiyiniz çapçının çap "
-"növbəsi adı ilə bərabər istifadəçi adı va şifrəsi verilməlidir."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Netmask:"
-msgstr "Şəbəkə Maskası:"
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#, fuzzy
+msgid "Germany"
+msgstr "Almanca"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
-msgstr "Bunu sonra et"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#, fuzzy
+msgid "Greece"
+msgstr "Yunanca"
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "Sonuna əlavə et"
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+#, fuzzy
+msgid "Norway"
+msgstr "Norveçcə"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Çapçı siyahısını yenilə (Mövcud bütün uzaq CUPS çapçılarını göstərmək üçün)"
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+#, fuzzy
+msgid "Sweden"
+msgstr "İsveçcə"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
msgstr ""
-"Bu seçim fəal olanda CUPS'un hər başlanğıcında bunlar yoxlanır:\n"
-"\n"
-"- əgər LPD/LPRng quruludursa, /etc/printcap CUPS tərəfindən üstündən qeyd "
-"edilməyəcək\n"
-"\n"
-"- əgər /etc/cups/cupsd.conf əksikdirsə, yaradılacaq\n"
-"\n"
-"- çapçı mə'lumatı yayımlananda, verici adı olaraq \"localhost\" daxil "
-"etməməsini.\n"
-"\n"
-"ÆgÉ™r bu ölçülÉ™rdÉ™n biri sizi problemÉ™ soxursa bu seçimi fÉ™allaÅŸdırmayın."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Avtomatik qurulum tamamilə avtomatikləşdirilə bilər,\n"
-"ancaq bu zaman o bütün sabit diskə əl qoyacaq!!!\n"
-"(bu başqa kompüterdə də sistemi qura bilmək üçündür).\n"
-"\n"
-"Gələcəkdə bu qurulumu təkrarlamaq istəyə bilərsiniz.\n"
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "Italy"
+msgstr "İtalyanca"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Şəbəkə çapçısı \"%s\", qapı %s"
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+#, fuzzy
+msgid "Austria"
+msgstr "serial"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:19
msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
+"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 ""
-"Xahiş edirik, Yerli Sahə Şəbəkənizə (LAN) bağlanacaq şəbəkə avadanlığını "
-"seçin."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
-msgstr "Diqər fayllar da qeri qaytarılması üçün Oldu."
+#: ../../diskdrake/dav.pm_.c:27
+#, fuzzy
+msgid "New"
+msgstr "yeni"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Xahiş edirik, klaviatura düzülüşünüzü seçin."
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Ayır"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "Çapçı Avadanlığı URI'si"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "BaÄŸla"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not erasable media!"
-msgstr "Silinə bilən mediya yoxdur!"
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
+msgstr "Verici"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "Terminal-əsaslı"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Bağlama nöqtəsi"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr "IP qizləmə qorumasını Fəallaşdır/Qeyri-fəallaşdır."
+#: ../../diskdrake/dav.pm_.c:85
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "%s təhlükəsizlik səviyyəsində çap etmə sistemini qur"
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "The user name is too long"
-msgstr "İstifadəçi adı çox uzundur"
+#: ../../diskdrake/dav.pm_.c:109
+#, fuzzy
+msgid "Server: "
+msgstr "Verici"
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "DigÉ™r ÆS (windows...)"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
+msgstr "Bağlama nöqtəsi: "
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr "Uzaq WebDAV saytı onsuzda sync'dədir!"
+msgid "Options: %s"
+msgstr "Seçənəklər: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
-msgstr "Çapçı mə'lumat bazası oxunur..."
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
+msgstr "ÆvvÉ™lcÉ™ datanızın yedÉ™yini alın"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Avtomatik qurulum disketi hazırla"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "Diqqətlə Oxuyun!"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:100
msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
+"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 ""
-"\t\t istifadəçi adı: %s\n"
-"\t\t bu cığırda: %s \n"
+"Aboot istifadə etməyi istəyirsinizsə, boş disk sahəsi (2048 sektor bəsdir.)\n"
+"buraxmayı unutmayın."
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr "Somali"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr "Açıq mənbəli sürücü yoxdur"
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "Sehirbaz"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
-msgstr "Tan."
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
+msgstr "Monitorunuzu seçin"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
-"Bu, daha əvvəlki səviyyəyə bənzərdir, ancaq sistem tamamilə bağlıdır və "
-"təhlükəsizlik xüsusiyyətləri ən üst səviyyədədir."
+"Tək bir böyük disk bölməniz var\n"
+"(əsasən MS DOS/Windows istifadə edər).\n"
+"ÆvvÉ™lcÉ™ bu disk bölmÉ™sinin böyüklüyünü dÉ™yiÅŸdirmÉ™yinizi\n"
+"tövsiyÉ™ edirik. ÆvvÉ™lcÉ™ bölmÉ™nin üstünÉ™, sonra \"Böyüklüyü\n"
+"Dəyişdir\" düyməsinə tıqlayın"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "Nikaraqua"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "Yeni Kaledoniya"
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Avropa protokolu (EDSS1)"
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "Ætraflı"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Delete"
-msgstr "/_Sil"
+#: ../../diskdrake/hd_gtk.pm_.c:254
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Yerli Çap Edici"
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "Video modu"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
-msgstr "Oman"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "FAT"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Xahiş edirik, aşağıya epoçt ünvanınızı daxil edin"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Network Monitoring"
-msgstr "Şəbəkə İzlənməsi"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+#, fuzzy
+msgid "Journalised FS"
+msgstr "baÄŸlama iflas etdi"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:325
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "New size in MB: "
-msgstr "MB cinsindən yeni böyüklük: "
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "Swap"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Bölmə cədvəli növü: %s\n"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "BoÅŸ"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication Windows Domain"
-msgstr "Windows Domen Səlahiyyətləndirilməsi"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "Digər"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "US klaviaturası"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "Fayl sistemi növü:"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr "Düymə emulyasiyası"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "Yarat"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", şəbəkə çapçısı \"%s\", qapı %s"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "Növ"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-"\n"
-"Kaset vasitəsi ilə Drakbackup fəaliyyətləri:\n"
-"\n"
+msgid "Use ``%s'' instead"
+msgstr "Yerinə ``%s'' işlət"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"FTP bağlantı problemi. Ehtiyat nüsxəsi fayllarınız FTP ilə göndərilə "
-"bilmədi.\n"
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "Sil"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Sending Speed:"
-msgstr "Göndərmə Sür'əti:"
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
+msgstr "ÆvvÉ™lcÉ™ ``Ayır'-ı iÅŸlÉ™t"
-#: ../../harddrake/sound.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, 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"
+"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-"Klasik xəta səs sınaqı aşağıdakı əmrləri icra edir:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" səs kartınızın əsas olaraq hansı\n"
-"sürücünü işlətdiyini bildirir\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" hazırda işlədilən sürücünü\n"
-"bildirir\n"
-"\n"
-"- \"/sbin/lsmod\" modulun (sürücünün) yüklü olub olmadığını yoxlamaq\n"
-"üçün sizə imkan verir\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" və \"/sbin/chkconfig --list alsa\" səs "
-"vÉ™\n"
-"alsa xidmətlərinin initsəviyyəsi3'də işə salınıb salınmayacağını bildirir\n"
-"\n"
-"- \"aumix -q\" səs həcminin bağlı (mute) olub olmadığını bildirir\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" hansı proqramın səs kartını işlətdiyini "
-"bildirir.\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
-msgstr "Xətanı dayandır"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Poçtla xəbər vermə qurğuları"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr "Tokelo"
+"%s bölməsinin növünü dəyişdirdikdən sonra, bu bölmədəki bütün mə'lumatlar "
+"silinəcəkdir"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Matching"
-msgstr "Uyğun gələn"
+#: ../../diskdrake/interactive.pm_.c:177
+#, fuzzy
+msgid "Choose a partition"
+msgstr "Monitorunuzu seçin"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bosnian"
-msgstr "Bosniya"
+#: ../../diskdrake/interactive.pm_.c:177
+#, fuzzy
+msgid "Choose another partition"
+msgstr "Yeni bölmə yarat"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Release: "
-msgstr "Buraxılış:"
+#: ../../diskdrake/interactive.pm_.c:202
+#, fuzzy
+msgid "Exit"
+msgstr "Ext2"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection speed"
-msgstr "Bağlantı sürəti"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
+msgstr "Usta moduna keç"
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr "Namibiya"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
+msgstr "Normal moda keç"
-#: ../../services.pm:1
-#, c-format
-msgid "Database Server"
-msgstr "Mə'lumat Bazası Vericisi"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "Geri al"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr "sürücünün xüsusi bacarıqları (yazma bacarığı və/ya da DVD dəstəyi)"
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "Davam edilsin?"
-#: ../../raid.pm:1
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Disk bölməsi, _formatted_ RAID md%d'ə əlavə edilə bilmədi"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "Qeyd etmədən Çıx"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Network Time Protocol"
-msgstr "Şəbəkə ara üzü"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "Bölmə cədvəlini qeyd etmədən çıxırsınız?"
-#: ../../Xconfig/card.pm:1
-#, 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."
-msgstr ""
-"Sizin kartınızın 3D sür'ətləndirmə dəstəyi ola bilər, amma ancaq XFree %s "
-"ilÉ™,\n"
-"QEYD! BU DÆSTÆK SINAQ MÆRHÆLÆSINDÆDIR VÆ KOMPÜTERİNİZİ DONDURA BILÆR.\n"
-"Kartınıza XFree %s tam dəstək verir və bəlkə də daha yaxşı 2D dəstəyinə "
-"sahib ola bilər."
+#: ../../diskdrake/interactive.pm_.c:257
+#, fuzzy
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Xahiş edirik, gözləyin təhlükəsizlik seçimləri tə'yin edilir..."
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "Hamısını təmizlə"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "Namə'lum|CPH05X (bt878) [çox satıcı]"
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
+msgstr "Avtomatik ayır"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Sistem açılanda qrafiki ara üzü başlat"
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+msgid "More"
+msgstr "Daha Çox"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr "hər saat"
+#: ../../diskdrake/interactive.pm_.c:278
+#, fuzzy
+msgid "Hard drive information"
+msgstr "Sabit disk seçkisi"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
-msgstr "Sağ Shift düyməsi"
+#: ../../diskdrake/interactive.pm_.c:310
+msgid "All primary partitions are used"
+msgstr "Bütün birinci bölmələr istifadədədir"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " %s üstündə müvəffəqiyyətlə qeri qaytarıldı "
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "Artıq bölmə əlavə edilə bilməz"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Çapçı qapısı CUPS üçün açılır..."
+#: ../../diskdrake/interactive.pm_.c:312
+msgid ""
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
+msgstr "Artıq bölmə yaratmaq üçün, bir bölməni silib məntiqi bölmə yaradın"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr "Antiq vÉ™ Barbuda"
+#: ../../diskdrake/interactive.pm_.c:322
+#, fuzzy
+msgid "Save partition table"
+msgstr "Bölmə cədvəlini yaz"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! Sistemdəki mə'lumat bazasındakı şifrənin Terminal Verici\n"
-" mə'lumat bazasındakından fərqli olduğunu göstərir.\n"
-"Girişi fəallaşdırmaq üçün istifadəçini Terminal Vericiyə\n"
-"Silin/Yenidən əlavə edin."
+#: ../../diskdrake/interactive.pm_.c:323
+#, fuzzy
+msgid "Restore partition table"
+msgstr "Bölmə cədvəlini qurtar"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "İspanca"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
+msgstr "Bölmə cədvəlini qurtar"
-#: ../../services.pm:1
-#, c-format
-msgid "Start"
-msgstr "BaÅŸlat"
+#: ../../diskdrake/interactive.pm_.c:326
+#, fuzzy
+msgid "Reload partition table"
+msgstr "Bölmə cədvəlini qurtar"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
-msgstr "Birbaşa ali istifadəçi girişi"
+#: ../../diskdrake/interactive.pm_.c:331
+#, fuzzy
+msgid "Removable media automounting"
+msgstr "Taxılıb sökülə bilən avadanlıqların avtomatik bağlanması"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring applications..."
-msgstr "Təminatlar qurğulanır..."
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "Fayl seç"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:347
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."
+"The backup partition table has not the same size\n"
+"Still continue?"
msgstr ""
-"\n"
-"Çapçı Quraşdırma Sehirbazına Xoş Gəldiniz\n"
-"\n"
-"Bu sehirbaz kompüterinizə, birbaşa şəbəkəyə ya da uzaq Windows sistemə\n"
-"bağlı olan çapçı ya da çapçıları quraşdırmaqda sizə yardım edəcək.\n"
-"\n"
-"Xahiş edirik, bu kompüterə bağlı olan bütün çapçıları açın ki avtomatik "
-"aşkar edilə bilsinlər. Eyni zamanda şəbəkə kompüterləriniz və Windows\n"
-"sistemləri də açıq olmalıdır.\n"
-"\n"
-"Qeyd edin ki, şəbəkə və Windows sistemləri üstündəki çapçıların avtomatik\n"
-"aşkar edilməsi sisteminizə bağlı olan çapçıların açkar edilməsindən daha "
-"uzun\n"
-"müddət alır, ona görə də əgər onlara ehtiyacınız yoxdursa bunların "
-"avtomatik\n"
-"aşkar edilməsini bağlayın.\n"
-"\n"
-" Hazır olanda \"Sonrakı\" düyməsinə, çapçılarınızı indi quraşdırmaq "
-"istəmirsinizsə\"Ləğv Et\" düyməsinə basın."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
-msgstr "Normal modem bağlantısı"
-
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "File Selection"
-msgstr "Fayl Seçkisi"
-
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Ehtiyat nüsxəsini almadan əvvəl kasedi sil"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
-msgstr "Quraşdırma vasitəsini işə sal"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "Açılış yükləyicisi qurulumu"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Kök bölməsi böyüklüyü (Mb): "
+"Yedək bölmə cədvəli eyni böyüklüyə sahib deyil\n"
+"Davam etmək istəyirsiniz?"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Bu lazımlı bir paketdir, sistemdən çıxardıla bilməz"
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "Xəbərdarlıq"
-# needs editing (Metin)
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:362
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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to 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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"Disket sürücüyə bir disket yerləşdirin\n"
+"Bu disketdəki bütün mə'lumatlar yox olacaqdır"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "Etherboot ISO görüntüsü budur: %s"
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
+msgstr "Bölmə cədvəli qurtarılmağa cəhd edilir"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) verici adlarını IP ünvanlarına çevirənDomen Adı Vericisidir "
-"(DNS)."
+#: ../../diskdrake/interactive.pm_.c:379
+#, fuzzy
+msgid "Detailed information"
+msgstr "Mə'lumatı göstər"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr "Saint Lucia"
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "Böyüklüyünü Dəyişdir"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "Noyabr"
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "Daşı"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
-msgstr "Bağlantını Kəs..."
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "Şəkilləndir"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Report"
-msgstr "Raport Göndər"
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "RAIDə əlavə et"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr "Palau"
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "LVMə əlavə et"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "səviyyə"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "RAIDdən ayır"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr ""
-"Bütün işlər tək bir MandrakeSoft texnik mütəxəssis tərəfindən yerinə "
-"gətiriləcək."
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "LVMdən ayır"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "Paket Qruplarının Seçimi"
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "RAIDi dəyişdir"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Yerli avadanlıq quraşdırılmasına\n"
-"icazÉ™ ver."
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
+msgstr "Loopback üçün istifadə et"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Şəbəkə Protokolu Üstündən Geri Yüklə: %s"
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "Yeni bölmə yarat"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr "Burada, modulun hər bir parametrini quraşdıra bilərsiniz."
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "Başlanğıç sektoru: "
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Həlledilirlik və rəng dərinliyini seçin"
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "MB cinsindən böyüklük: "
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
-msgstr "3 düymə emulasiyası"
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "Fayl sistemi növü: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Xüsusiyyətlər: "
+
+#: ../../diskdrake/interactive.pm_.c:481
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 ""
-"Yeni bölmə yarada bilməzsiniz\n"
-"(ona görə ki siz maksimal birinci bölmə ədədinə yetişdiniz).\n"
-"ÆvvÉ™lcÉ™ birinci bölmÉ™ni silib, ondan sonra geniÅŸlÉ™ndirilmiÅŸ bölmÉ™ yaradın."
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr "BaÄŸla"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Avtomatik qurulum disketi yaradılır"
-#: ../../steps.pm:1
-#, c-format
-msgid "Install updates"
-msgstr "Yeniləmələrin qurulması"
+#: ../../diskdrake/interactive.pm_.c:511
+#, fuzzy
+msgid "Remove the loopback file?"
+msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
-msgstr "mətn qutusunun hündürlüyü"
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "Bölmə növünü Dəyişdir"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "State"
-msgstr "Vəziyyət"
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+msgid "Which filesystem do you want?"
+msgstr "Hansı dili istəyirsiniz?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "%s avadanlığında medya olduğundan əmin olun"
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
+msgstr ""
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Enable multiple profiles"
-msgstr "Birdən artıq profilə icazə ver"
+msgid "Where do you want to mount loopback file %s?"
+msgstr "%s loopback avadanlığını haraya bağlamaq istəyirsiniz?"
-#: ../../fs.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr ""
-"Fayl sistemi üstündə hərfləri çevirmə və xüsusi avadanlıqları bloklama."
+msgid "Where do you want to mount device %s?"
+msgstr "%s avadanlığını haraya bağlamaq istəyirsiniz?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
-"Bu seçim, /etc cərgənizdəki bütün faylların ehtiyat nüsxəsini alıb, geri "
-"yükləyə bilər.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Local printer"
-msgstr "Yerli Çapçı"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Files Restored..."
-msgstr "Fayllar Geri Yükləndi..."
+"Bu disk bölməsi loopback üçün istifadə edildiyindən ötrü bağlanma "
+"nöqtəsindən ayrıla bilinmir.\n"
+"ÆvvÉ™lcÉ™ loopback-ı ləğv edin."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
-msgstr "Paket seçkisi"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritania"
-msgstr "Mavritaniya"
+#: ../../diskdrake/interactive.pm_.c:606
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "%s avadanlığını haraya bağlamaq istəyirsiniz?"
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
-"Hazırkı qurğularınızı saxlayıb DHCP vericisini qurduğunuzu qəbul edə "
-"bilərəm; bu halda yerli şəbəkəniz üçün işlətdiyiniz Şəbəkəni düz oxumağıma "
-"yardım edin; Onu yenidən quraşdırmayacam və DHCP vericinizə əl dəyməyəcəm.\n"
-"\n"
-"Æsas DNS giriÅŸi atəş divarı üstündÉ™ quraÅŸdırılmış Ön YaddaÅŸlayıcı Ad "
-"Vericisidir. Onu, misal üçün ISP DNS IP'nizlə əvəz edə bilərsiniz.\n"
-"\t\t \n"
-"Æks halda, ara üzünüzü vÉ™ DHCP vericinizi sizin üçün (yenidÉ™n) quraÅŸdıra "
-"bilərəm. \n"
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "Fat fayl sistemi ucları hesaplanır"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Heç bir yerli çapçı tapılmadı! Çapçını əllə qurmaq üçün giriş sahəsinə "
-"avadanlıq/fayl adını daxil edin (Paralel Qapılar: /dev/lp0, /dev/lp1, ..., "
-"bunlara bərabərdir: LPT1:, LPT2:, ..., 1ci USB çapçı: /dev/usb/lp0, 2ci USB "
-"çapçı: /dev/usb/lp1, ...vs)."
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "Böyüklüyü dəyişdirilir"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All primary partitions are used"
-msgstr "Bütün birinci bölmələr istifadədədir"
+#: ../../diskdrake/interactive.pm_.c:662
+msgid "This partition is not resizeable"
+msgstr "Hansı bölmə növünü istəyirsiniz?"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr " \"%s\" LPD vericisi, \"%s\" çapçısı"
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
+msgstr "Bu bölmədəki bütün mə'lumatlar yedəklənməlidir"
-#: ../../network/netconnect.pm:1
+#: ../../diskdrake/interactive.pm_.c:669
#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
+msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-"Bu edildikdən sonra Xdən çıxmağınızı tövsiyyə edirik, yoxsa\n"
-"verici adı xəsarətləri meydana gələ bilər."
+"%s bölməsi böyüklüyü dəyişdirildirkdən sonra bu bölmədəki bütün mə'lumatlar "
+"silinəcəkdir"
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Texniki avadanlığın açılışda avtomatik təsbiti və qurulması."
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "Yeni böyüklük seçin"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation Server Configuration"
-msgstr "Qurulum Şəbəkəsi Quraşdırılması"
+#: ../../diskdrake/interactive.pm_.c:675
+#, fuzzy
+msgid "New size in MB: "
+msgstr "MB cinsindən böyüklük: "
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "IDE qapıları qurulur"
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "Hansı diskə daşımaq istəyirsiniz?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Şəbəkə fəalliyyəti quraşdırılmayıb"
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "Sektor"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Configure module"
-msgstr "Modulu quraşdır"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "Hansı sektora daşımaq istəyirsiniz?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "Kokos Adası"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "Daşınır"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Yeni qurğuların fəallaşmağı üçün sistemi yenidən başlatmalısınız"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "Bölmə daşınır..."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
-msgstr "İXM telefon nömrəsi"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr "ÆlavÉ™ etmÉ™k üçün mövcud bir RAID seçin"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Host %s"
-msgstr "QovÅŸaq %s"
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "yeni"
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
-msgstr "Fici"
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
+msgstr "ÆlavÉ™ etmÉ™k üçün mövcud bir LVM seçin"
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
-msgstr "Ermənistan"
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
+msgstr "LVM adı?"
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "İkinci disket sürücü"
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
+msgstr "Bu disk bölməsi loopback üçün işlədilməz"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
-msgstr "Harddrake Haqqında"
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
+msgstr "Loopback"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
-msgstr "TCP bağlantılarını X Window'a səlahiyyətləndir"
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
+msgstr "Loopback fayl adı: "
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr "Sürücü həcmi"
+#: ../../diskdrake/interactive.pm_.c:831
+#, fuzzy
+msgid "Give a file name"
+msgstr "Həqiqi adı"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
msgstr ""
-"Disket sürücüyə bir disket yerləşdirin\n"
-"Bu disketdəki bütün mə'lumatlar yox olacaqdır"
+"Fayl başqa bir loopback tərəfindən istifadədədir, başqa\n"
+"birini seçin"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "Böyüklüyü: %s"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
+msgstr "Fayl onsuz da vardır. İşlədilsin?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Eyni zamanda Control və Shift düymələri"
+#: ../../diskdrake/interactive.pm_.c:858
+#, fuzzy
+msgid "Mount options"
+msgstr "Modul seçənəkləri:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "secondary"
-msgstr "ikinci"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Ehtiyat Quraşdırılmasını Göstər."
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "avadanlıq"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr "əgər bəli seçilidirsə, yoxlama nəticələrini syslog'a raport et."
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "səviyyə"
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "Şifrə olmasın"
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "parça böyüklüyü"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nigeria"
-msgstr "Nigeriya"
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
+msgstr "Diqqətlı olun: bu əməliyyat təhlükəlidir."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s'ın qovşaq adına ehtiyacı var...\n"
+#: ../../diskdrake/interactive.pm_.c:962
+msgid "What type of partitioning?"
+msgstr "Nəcə bölməlandirmə istəyirsən?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "İstifadə ediləcək mövcud bölmə yoxdur"
+#: ../../diskdrake/interactive.pm_.c:978
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Bu paket yenilənməlidir\n"
+"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:992
msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
-"Sisteminizdə aşağıdakı darayıcılar\n"
-"\n"
-"%s\n"
-"mövcuddur.\n"
+"Bağışlayın, /boot bölməsini bu sürücüdə yarada bilməyəcəm.\n"
+"Onda ya LILO istifadə edə bilməyəcəksiniz ve /boot bölümünə \n"
+"ehtiyacınız yoxdur və ya LILO istifadəsini sınayarsınız, ancaq LILO işləməyə "
+"bilər."
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "%s nömrəli paralel qapıdakı çox funksiyalı avadanlıq"
+#: ../../diskdrake/interactive.pm_.c:996
+msgid ""
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
+msgstr ""
+"Seçdiyiniz bölüm fiziki sahənin üstündə (1024. silindrin xaricində)\n"
+"/boot bölümünüz yoxdur. Lilo açılış idarəcisindən istifadə etmək "
+"istəyirsinizsə, \n"
+"/boot bölməsini əlavə edərkən çox diqqətli olmalısınız."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1002
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."
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
msgstr ""
-"TCP ya da soket çapçısına çap etmək üçün, çapçının IP ünvanı ya da qovşaq "
-"adınıvə istəyə bağlı olaraq qapı nömrəsini bildirməlisiniz (əsası 9100). HP "
-"JetDirect vericiləri üstündə qapı nömrəsi adətən 9100'dür, başqa vericilərdə "
-"bu fərqli ola bilər. Avadanlığınızın kitabına baxın."
+"Bir proqram tə'minatlı RAID bölməsini kök qovluğu (/) olaraq tə'yin "
+"etdiniz.\n"
+"ÆgÉ™r lilo ya da grub istifadÉ™ etmÉ™k istÉ™yirsinizsÉ™, bir /boot bölmÉ™si\n"
+"əlavə etməyi unutmayın"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid "Hard drive information"
-msgstr "Sabit disk mə'lumatı"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "%s sürücüsünün bölmə cədvəli diskə yazılacaq!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian"
-msgstr "Rusca"
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
+msgstr "Yeni qurğuların fəallaşmağı üçün sistemi yenidən başlatmalısınız"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1037
#, c-format
-msgid "Jordan"
-msgstr "İordaniya"
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr ""
+"%s bölməsi şəkilləndirildikdən sonra bu bölmədəki bütün mə'lumatlar "
+"silinəcəkdir"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Hide files"
-msgstr "Faylları gizlət"
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "Şəkilləndirilir"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Bu kompüterə bağlı olan çapçıları avtomatik aşkar et"
+msgid "Formatting loopback file %s"
+msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "Bağışlayın, disket sürücü yoxdur"
+msgid "Formatting partition %s"
+msgstr "Şəkilləndirilən bölmə: %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bolivia"
-msgstr "Boliviya"
+#: ../../diskdrake/interactive.pm_.c:1052
+#, fuzzy
+msgid "Hide files"
+msgstr "mkraid iflas etdi"
+
+#: ../../diskdrake/interactive.pm_.c:1052
+#, fuzzy
+msgid "Move files to the new partition"
+msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1053
#, c-format
msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-"Windows vericinizi çapçını IPP protokolu altında mövcud qılması üçün "
-"quraşdırın və bu sistemdən Printerdrake vasitəsi ilə \"%s\" bağlantınövlü "
-"çap sistemini quraşdırın.\n"
-"\n"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "Xətalı paket"
+#: ../../diskdrake/interactive.pm_.c:1064
+#, fuzzy
+msgid "Moving files to the new partition"
+msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-#: ../advertising/07-server.pl:1
+#: ../../diskdrake/interactive.pm_.c:1068
#, 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 "Copying %s"
msgstr ""
-"Kompüterinizi güclü bir Linuks vericisinə dönüşdürün: Veb vericisi, poçt, "
-"atəş divarı, ötürücü, fayl və çap vericisi (v.s.) yalnız bir neçı tıqlama "
-"uzaqlığındadır!"
-#: ../../security/level.pm:1
-#, c-format
-msgid "DrakSec Basic Options"
-msgstr "DrakSec Æsas SeçimlÉ™ri"
+#: ../../diskdrake/interactive.pm_.c:1072
+#, fuzzy, c-format
+msgid "Removing %s"
+msgstr "Rezolyusiya: %s\n"
-#: ../../standalone/draksound:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
+msgid "partition %s is now known as %s"
msgstr ""
-"\n"
-"\n"
-"\n"
-"Qeyd: əgər ISA PnP səs kartınız varsa, sndconfig proqramınıişlətməlisiniz. "
-"Sadəcə olaraq konsolda \"sndconfig\" əmrini icra edin."
-#: ../../lang.pm:1
-#, c-format
-msgid "Romania"
-msgstr "Ruminıya"
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "Avadanlıq: "
-#: ../../standalone/drakperm:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "Group"
-msgstr "Qrup"
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "DOS sürücü hərfi: %s (sadəcə təxmini)\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Canada"
-msgstr "Kanada"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "Növ: "
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "choose device"
-msgstr "avadanlığı seçin"
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "Ad: "
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "Remove from LVM"
-msgstr "LVMdən ayır"
+msgid "Start: sector %s\n"
+msgstr "Başlanğıc: sektor %s\n"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "Timezone"
-msgstr "Vaxt Zolağı"
+msgid "Size: %s"
+msgstr "Böyüklüyü: %s"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid "German"
-msgstr "Almanca"
+msgid ", %s sectors"
+msgstr ", %s sektor"
-#: ../../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
-#, c-format
-msgid "Next ->"
-msgstr "Sonrakı ->"
+#: ../../diskdrake/interactive.pm_.c:1125
+#, fuzzy, c-format
+msgid "Cylinder %d to %d\n"
+msgstr "Silindr %d -dən silindr %d-yə\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in japanese language. Only "
-"use this function if you really want to print text in japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Bunu fəallaşdırma yapon dilindəki xam mətnlərin çap edilə bilməsinə imkan "
-"verəcək. Bunu yalnız yapon dilində mətn çap etmək istəyirsinizsə seçin, ona "
-"görə ki bu seçili ikən bə'zi latın hərfləri, səhifə kənarları və hərf "
-"böyüklükləri düzgün çap ediləyəcək. Bu qurğu yalnız bu sistem üstündəki "
-"çapçılar tÉ™'sir edir. ÆgÉ™r uzaq bir kompüterdÉ™ yaponca mÉ™tn çap etmÉ™k "
-"arzunuz varsa bu qurğunu o uzaq kompüterdə fəal etməlisiniz."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Bu bölmə Sürücü bölməsidir.\n"
-"Bunu elə beləcə buraxın.\n"
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "Şəkilləndirilmiş\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
-msgstr "Qvineya Bissau"
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "Şəkilləndirilməmiş\n"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Üfüqi yeniləmə sür'əti"
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
+msgstr "Bağlı\n"
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Edit"
-msgstr "Düzəlt"
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, c-format
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+"Loopback file(s):\n"
+" %s\n"
msgstr ""
-"Bu disk bölməsi loopback üçün istifadə edildiyinə görə bağlanma nöqtəsindən "
-"ayrıla bilinmir.\n"
-"ÆvvÉ™lcÉ™ loopback'i silin."
+"Loopback faylı:\n"
+" %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1132
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\""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"Qurulum sırasında edilən şəbəkə quraşdırılması indi başladıla bilməz. Xahiş "
-"dirik, sistem açılandan sonra şəbəkənin işlədiyini yoxlayın və Mandrake "
-"İdarə Mərkəzindəki Şəbəkə və İnternet bölməsindən qurğuları düzəldin, və "
-"ondan sonra yenə də Mandrake İdarə Mərkəzindəki \"Avadanlıq\"/\"Çapçı\" "
-"bölməsindən çapçınızı qurun."
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "USB controllers"
-msgstr "USB idarəçiləri"
+"Ana açılma bölməsi\n"
+" (MS-DOS açılışı üçün)\n"
-#: ../../Xconfig/various.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "What norm is your TV using?"
-msgstr "Televiziyanız hansı normu işlədir?"
+msgid "Level %s\n"
+msgstr "Səviyyə %s\n"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "Type:"
-msgstr "Növ: "
+msgid "Chunk size %s\n"
+msgstr "Parça böyüklüyü %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Share name"
-msgstr "Paylaşdırma adı"
+msgid "RAID-disks %s\n"
+msgstr "RAID-diskləri %s\n"
-#: ../../standalone/drakgw:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "enable"
-msgstr "fəallaşdır"
+msgid "Loopback file name: %s"
+msgstr "Loopback faylı adı: %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-"Mövcud əkslərin siyahısını almaq üçün Mandrake Linuks səhifəsi ilə təmas "
-"qurulur..."
+"\n"
+"Bəlkə də bu bir Sürücü bölməsidir.\n"
+"Onda bunu ele beləcə buraxın.\n"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"Şəbəkənin yenidən başladılması sırasında xəta oldu: \n"
"\n"
-"%s"
+"Bu, ikili açılış üçün xüsusi\n"
+"Bootstrap-dır.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove the loopback file?"
-msgstr "Loopback faylı silinsin?"
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Seçili böyüklük var olandan daha böyükdür"
+msgid "Size: %s\n"
+msgstr "Böyüklük: %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "NCP server name missing!"
-msgstr "NCP verici adı əksikdir!"
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Geometriyası: %s silindr, %s baş, %s sektor\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose your country."
-msgstr "Xahiş edirik, ölkənizi seçin."
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
+msgstr "MÉ™'lumat: "
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Sabit Disk Ehtiyat Nüsxəsi faylları..."
+msgid "LVM-disks %s\n"
+msgstr "LVM-diskləri %s\n"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid "Laotian"
-msgstr "Laotian"
+msgid "Partition table type: %s\n"
+msgstr "Bölmə cədvəli növü: %s\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Samoa"
-msgstr "Samoa"
+#: ../../diskdrake/interactive.pm_.c:1169
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
+msgstr "%d data yolunda, %d nö'li\n"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"rstat protokolu bir şəbəkədəkı istifadəçilərin o şəbəkədəkı hər hansı bir\n"
-"kompüter haqqındakı qabiliyyət ölçüləri ala bilmələrinə imkan verər."
+#: ../../diskdrake/interactive.pm_.c:1199
+#, fuzzy
+msgid "Filesystem encryption key"
+msgstr "Fayl sistemi növü: "
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Re-generating list of configured scanners ..."
-msgstr "Quraşdırılmış darayıcıların siyahısı yenidən yaradılır ..."
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
+msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module configuration"
-msgstr "Modul quraşdırması"
+#: ../../diskdrake/interactive.pm_.c:1203
+#, fuzzy, c-format
+msgid "This encryption key is too simple (must be at least %d characters long)"
+msgstr "Bu parol çox sadədir (en az %d xarakter boyunda olmalıdır)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Scanner"
-msgstr "Darayıcı"
+#: ../../diskdrake/interactive.pm_.c:1204
+#, fuzzy
+msgid "The encryption keys do not match"
+msgstr "Parollar uyğun gəlmir"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
msgstr ""
-"Diqqət: Bu qrafika kartı ilə ediləcək sınaq kompüterinizi dondura bilər"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
msgstr ""
-"İstifadəçi adında sadacə kiçik hərflər, rəqəmlər, `-' və `_' xarakterləri "
-"ola bilər"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "Krakerlərə xoşgəlmişsiniz"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "Modul seçimləri:"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
-msgstr "Multi Network Firewall ilə şəbəkələrinizi təklükəsizləşdirin"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Şəbəkəni quraşdırmadan davam et"
+#: ../../diskdrake/removable.pm_.c:47
+#, fuzzy
+msgid "Change type"
+msgstr "Bölmə növünü Dəyişdir"
-#: ../../network/isdn.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "Abort"
-msgstr "Dayandır"
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "%s üstündəki %s qapısında şifrə soruşulmasın"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Tanıtma"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Çərx emulyasiyalı Kensington Thinking siçanı"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "İnternet"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Uzaq darayıcıların istifadəsi"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "İstifadəçi adı"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
+"Please enter your username, password and domain name to access this host."
msgstr ""
-"Windows bölümünüz çox dağınıqdır. Daxiş edirik, əvvəlcə kompüterinizi "
-"Windows ilə açın, ''defrag'' vasitəsini işlədin, sonra Mandrake Linuks "
-"qurulumunu yenidən başladın."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norveç dili)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Sabit Disk Ehtiyatlaması Fəaliyyətdədir..."
-
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Fork edilÉ™ bilmir: %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "Növ: "
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+#, fuzzy
+msgid "Username"
+msgstr "İstifadəçi adı"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Alıcını Düzəlt"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS sahəsi"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "no fonts found"
-msgstr "no fonts found"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+#, fuzzy
+msgid "Search servers"
+msgstr "DNS verici"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "Mouse"
-msgstr "Siçan"
+msgid "%s formatting of %s failed"
+msgstr "%s şəkilləndirilməsində %s bölmə xətası"
-#: ../../bootloader.pm:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "not enough room in /boot"
-msgstr "/boot içində lazımi yer yoxdur"
+msgid "I don't know how to format %s in type %s"
+msgstr "%s'i necə şəkilləndirəcəyimi bilmirəm (Növ: %s)"
-#: ../../install_steps_gtk.pm:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "trying to promote %s"
+msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Liechtenstein"
-msgstr "LixtenÅŸteyn"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid "Host name"
-msgstr "Ev sahibi adı"
+msgid "error unmounting %s: %s"
+msgstr "%s ayrılırkən xəta oldu: %s"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the color of the progress bar"
-msgstr "irəliləmə çubuğunun rəngi"
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "bəsit"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Yazı Növlərinin Fayllarını Gizlət"
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to RAID"
-msgstr "RAIDə əlavə et"
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "verici"
-#: ../../help.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
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"
+"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"
-" * 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."
+"Do you agree to loose all the partitions?\n"
msgstr ""
-"Burada yaboot üçün başqa əməliyyat sistemləri, alternativ çəyirdəklər, ya da "
-"tə'cili açılış əksləri əlavə edə bilərsiniz.\n"
-"\n"
-"\n"
-"Başqa OS'lər üçün giriş yalnız ad və \"kök\" çığırından ibarətdir.\n"
-"\n"
-"\n"
-"Linuks üçün mümkün girişlər bunlar ola bilər:\n"
-"\n"
-" * Ad: Bu sadəcə olaraq yaboot üçün açılacaq sistemi timsal edən bir addır.\n"
-"\n"
-" * Æks: Bu isÉ™ açılacaq çəyirdÉ™yin, yÉ™'ni kernelin adıdır. Çox vaxt bu "
-"vmlinux və ya bunun uzantılı variasiyalarıdır.\n"
-"\n"
-" * Kök: Linuks qurulumunuzun \"kök\" avadanlığı və ya '/'.\n"
-"\n"
-" * ÆlavÉ™: Apple avadanlıqlarında É™lavÉ™ çəyirdÉ™k seçimlÉ™ri ilÉ™ sıxlıqla \n"
-"başlanğıc video avadanlığı və ya tez tez xəta verən 2ci və 3cü siçan ən "
-"düymələri üçün emulyasiya imkanları tanına bilir.\n"
-"Məsələn bunlar bir neçə nümunədir:\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: Açılış avadanlığından əvvəl bə'zi açılış modullarını seçmək\n"
-"üçün işlədilir, ya da tə'cili yardım açılışlarında ramdisk əksini yükləmə\n"
-"imkanı verir.\n"
-"\n"
-" * Initrd-size: Ana ramdisk böyüklüyü ümumiyyÉ™tlÉ™ 4096 Kbaytdır. ÆgÉ™r daha\n"
-"geniş ramdisk bildirmək istəyirsiniz isə bu seçimi işlədin.\n"
-"\n"
-" * Oxuma-yazma: Normalda sistemin 'dirilməsindən' əvvəl bə'zi sınaqların \n"
-"aparıla bilməsi üçün \"root\" fayl sistemi bu moda soxulur. Bunu \n"
-"bu seçimlə dəyişdirə bilərsiniz.\n"
-"\n"
-"\n"
-" * NoVideo: Apple video avadanlığı problem çıxarda bilər. Onda bu \n"
-"seçimlə sistemi ``novideo'' modda əsas framebuffer dəstəyi ilə aça "
-"bilərsiniz.\n"
+"Bölmə cədvəlinizi oxuya bilmirəm, dəyəsən biraz xarab olub:-(\n"
+"Xarab olmuş bolmələri düzəltməyə çalışacam.\n"
+"Amma bütün mə'lumatlar itəcəkdir.\n"
+"Başqa bir yol isə DrakXin bölmə cədvəllərini yoxlamasını "
+"passivləşdirməkdir.\n"
+"(xəta %s)\n"
"\n"
-" * Æsas: Bu seçimlÉ™ Linuks sistemi É™sas É™mÉ™liyyat sistemi halına gÉ™tirÉ™ \n"
-"bilərsiniz. Yaboot sorğu ekranında ENTER düyməsinə basmaqla Linuks sistemi\n"
-"açılacaqdır. Bu giriş ayrıca TAB ilə açılış seçkilərinə baxdığınız vaxt \n"
-"``*'' işarəti ilə işıqlandırılacaqdır."
+"Bütün bölmələri itirmək istəyirsiniz?\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr ""
-"\"%s\" çapçısı Star Office/OpenOffice.org/GIMP proqramlarına əlavə edildi."
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr "16MB dən kiçik disk bölmələrində JFS istifadə etməlisiniz"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Disket sürücüsü mövcud deyil!"
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "32MB dən kiçik disk bölmələrində ReiserFS istifadə etməlisiniz"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"Hazırkı çapçı üçün mövcud olan seçimlər siyahısını almaq üçün \"Seçimlər "
-"siyahısını göstər\" düyməsinə basın ya da aşağıdakı siyahını oxuyun.%s%s%s\n"
-"\n"
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
+msgstr "Bağlama nöqtələri / ilə başlamalıdır"
-#: ../../lang.pm:1
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "Saudi Arabia"
-msgstr "SÉ™udiyyÉ™ ÆrÉ™bistan"
+msgid "There is already a partition with mount point %s\n"
+msgstr "Onsuz da bağlama nöqtəsi %s olan bir bölmə var\n"
-#: ../../services.pm:1
+#: ../../fsedit.pm_.c:526
#, c-format
-msgid "Internet"
-msgstr "İnternet"
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr "%s üçün LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "Davam edilsin?"
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
+msgstr "Bu qovluq kök fayl sistemi içərisində olmalıdır"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:530
+#, fuzzy
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"ÆgÉ™r çapçınız siyahıda yer almırsa, uyÄŸun olanı (baxın çapçı istifadÉ™ "
-"kitabı) seçin."
+"Bu bağlama nöqtəsi üçün həqiqi bir fayl sisteminə (ext2, reisrfs)\n"
+"ehtiyac vardır.\n"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer"
-msgstr "Çapçı"
+#: ../../fsedit.pm_.c:532
+#, fuzzy, c-format
+msgid "You can't use an encrypted file system for mount point %s"
+msgstr "%s üçün LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices were added:\n"
-msgstr "Bə'zi avadanlıqlar əlavə edildi:\n"
+#: ../../fsedit.pm_.c:599
+#, fuzzy
+msgid "Not enough free space for auto-allocating"
+msgstr "Avtomatik yerləşdirmə üçün boş sahə yoxdur"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometriyası: %s silindr, %s baş, %s sektor\n"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:694
#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "%s çapçısında çap edilir"
+msgid "Error opening %s for writing: %s"
+msgstr "Yazmaq üçün açılan %s'də xəta: %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
msgstr ""
-"/etc/hosts.allow və /etc/hosts.deny onsuzda quraşdırılıb - dəyişdirilmədi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Tape"
-msgstr "Kasetdən Geri Yüklə"
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
+msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../harddrake/sound.pm_.c:171
#, 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's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-"Xəta raportu göndərmək üçün, raport düyməsinə basın. Səyyarınız açılacaq və\n"
-"xəta raportu olaraq üstdəki mə'lumatı göndərə bıləcəyiniz səhifə açılacaq."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the profile to configure"
-msgstr "Qurulacaq profili seçin"
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../security/l10n.pm:1
+#: ../../harddrake/sound.pm_.c:174
#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
-msgstr "Şifrənin minimal uzunluğu, rəqəm və böyük hərf miqdarı"
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
+msgstr ""
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../harddrake/sound.pm_.c:176
#, c-format
msgid ""
"\n"
"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
-msgstr ""
-"\n"
-"\n"
-"ÆgÉ™r É™sas qovÅŸaq adını istifadÉ™ etmÉ™k istÉ™mirsinizsÉ™\n"
-"nöqtələri istifadə etmədən Zeroconf qovşaq adını girin."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Quraşdırma faylından indi ehtiyat nüsxəsini çıxart"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr "Bağlama nöqtələri ancaq alfanumerik hərf daxil edə bilər"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Çap etmə sistemi yenidən başladılır..."
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "You can only run with no CDROM support"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "Avadanlıq mə'lumatına bax"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
-msgstr "Gün"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr "Açılış bölməsinin ilk sektoru"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Çapçı e'malatçısı, model"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Çap et, Növbəyə alma"
+#: ../../harddrake/sound.pm_.c:178
+#, fuzzy
+msgid "Driver:"
+msgstr "Sürücü"
-#: ../../standalone.pm:1
-#, 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)"
-msgstr ""
-"[SEÇİMLÆR]...\n"
-"Mandrake Terminal Vericisi Quraşdırıcısı\n"
-"--enable : MTS'ni fəallaşdır\n"
-"--disable : MTS'ni qeyri-fəallaşdır\n"
-"--start : MTS'ni baÅŸlat\n"
-"--stop : MTS'ni dayandır\n"
-"--adduser : MTS'yə mövcud olan istifadəçi əlavə et (istifadəçi adı "
-"istənəcək)\n"
-"--deluser : MTS'dən mövcud olan istifadəçini sil (istifadəçi adı "
-"istənəcək)\n"
-"--addclient : MTS'yə alıcı sistem əlavə et (MAC ünvanı, IP, nbi əks adı "
-"istənəcək)\n"
-"--delclient : MTS'dən alıcı sistemi sil (MAC ünvanı, IP, nbi əks adı "
-"istənəcək)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Subnet Maskası:"
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+#, fuzzy
+msgid "Help"
+msgstr "/_Yardım"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Set password expiration and account inactivation delays"
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
msgstr ""
-"Şifrə vaxtının keçişini və hesab qeyri-fəallaşdırma gecikmələrini müəyyən et"
-#: ../../standalone/logdrake:1
-#, c-format
+#: ../../harddrake/sound.pm_.c:186
msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Yüklə"
-
-#: ../../Xconfig/monitor.pm:1
-#, 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"
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"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."
+"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 ""
-"Buradaki iki vacib parametr üfüqi ve şaquli yeniləmə sür'ətləridir.\n"
-"Seçərkən monitorunuzun qabiliyyətinin üstündə bir parametr\n"
-"seçməməyiniz çox vacibdir, əks halda monitor zərər görər.\n"
-"Seçərkən bir qərarsızlığa düşərsəniz, alçaq rezolyusiya seçin."
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
-msgstr "Təkmilləşdir"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../harddrake/sound.pm_.c:202
#, c-format
msgid ""
+"The old \"%s\" driver is blacklisted.\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 ""
+"It has been reported to oopses the kernel on unloading.\n"
"\n"
-"\"%s\" və \"%s\" əmrləri eyni zamanda səciyyəvi çap vəzifəsinin seçim "
-"qurğularını dəyişdirməyə icazə verir. Sadəcə olaraq uyğun gələn qatarı əmr "
-"sətirinə əlavə edin, mis. \"%s <fayl>\".\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Qovşaq adı, istifadəçi adı və şifrəyə ehtiyac var!"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Insert floppy"
-msgstr "Disket daxil edin"
-
-#: ../../diskdrake/dav.pm:1
-#, 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\"."
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-"WebDAV, bir vericinin cərgəsini yerli bir qovluğa bağlamanıza və ona yerli\n"
-"fayl sistemi kimi rəftar etməyə imkan tanıyan protokoldur (verici WebDAV\n"
-"olaraq quraşdırılmalıdır). İndi WebDAV bağlama nöqtələri əlavə etmək\n"
-"üçün, \"Yeni\" düyməsinə basın."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+msgid "Please Wait... Applying the configuration"
+msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
-msgstr "yeni"
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "Xahiş edirik gözləyin"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable syslog reports to console 12"
+#: ../../harddrake/sound.pm_.c:210
+msgid "No known driver"
msgstr ""
-"12 konsola sysloq raportlarının göndərilməsini Fəallaşdır/Qeyri-fəallaşdır"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Yenidən sınamaq istəyirsiniz?"
-
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "Sehirbaz"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected server"
-msgstr "Seçili vericini düzəlt"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Xahiş edirik, ehtiyatları saxlamaq istədiyiniz yeri seçin"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
+msgid "There's no known driver for your sound card (%s)"
msgstr ""
-"Bölmə cəvəlindəki dəyişikliklərin tətbiq edilməsi üçün kompüterinizi yenidən "
-"başlatmalısınız."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Səyyahın ara yaddaşını daxil etmə"
+#: ../../harddrake/sound.pm_.c:214
+msgid "Unkown driver"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, c-format
msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-"%s fayl sisteminin yoxlanması bacarılmadı. Xətaları düzəltmək istəyirsiniz? "
-"(diqqətli olun, mə'lumatları itirə bilərsiniz)"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Klaviatura quruluşunu seçiniz."
-
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "Standart"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Xahiş edirik, siçanınızın növünü seçin."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
-msgstr "BaÄŸlan..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "\"%s\" çapçısı quraşdırıla bilmədi!"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "not configured"
-msgstr "quraşdırılmayıb"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "About"
-msgstr "Haqqında"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "Vəkil vericilər quraşdırılması"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Başlanğıc: sektor %s\n"
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Avtomatik təsbit işlət"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Mask"
-msgstr "Maskasız"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Ümumi"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface already configured"
-msgstr "Şəbəkə ara üzü onsuzda quraşdırılıb"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
-msgstr "Disketə yetişə bilmədim!"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-"Diqqət: Sərbəst Tə'minat daima patentsiz ola bilməz və daxil edilən bə'zi\n"
-"sərbəst tə'minat ölkənizdə patentlər tərəfindən qoruna bilər. Misal üçün,\n"
-"daxil edilən MP3 dekoderinin irəli istifadəsi üçün lisenziya lazım ola "
-"bilər.\n"
-"ÆgÉ™r patentlÉ™rin sizÉ™ ait olub olmadığını bilmirsinizsÉ™ yerli qanunlarınızı\n"
-"gözdən keçirin."
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Mail Server"
-msgstr "Poçt Vericisi"
+"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/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "Xahiş edirik, bir bölmə üstünə tıqlayın"
+#: ../../harddrake/v4l.pm_.c:227
+#, fuzzy
+msgid "Card model:"
+msgstr "Kart mem (DMA)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "HP JetDirect üstündə çox funksiyalı avadanlıq"
+#: ../../harddrake/v4l.pm_.c:228
+#, fuzzy
+msgid "Tuner type:"
+msgstr "Bölmə növünü Dəyişdir"
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linuks"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
+msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
-msgstr "Sağolun, sağlıqla qalın!"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
+#: ../../harddrake/v4l.pm_.c:231
+#, fuzzy
+msgid "PLL setting:"
+msgstr "Şəkilləndirilir"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Upgrade %s"
-msgstr "%s'i yenilÉ™"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Çapçı Bağlantısı Seçin"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
+msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
-msgstr "TV kanallarının axtarışı fəaliyyətdədir..."
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+
+#: ../../help.pm_.c:48
+msgid ""
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/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 ""
+"Yuxarıda sürücünüzdə tapılan Linuks bölmələri sıralanıb\n"
+"Sehirbazın tövsiyələrinə uyun, onlar çox vaxt işə yarayır.\n"
+"ÆgÉ™r bunu istÉ™mÉ™sÉ™niz en azından kök bölmÉ™si (\"/\") seçmÉ™lisiniz\n"
+"Çox kiçik bölmə seçməyin. yoxsa çox proqram tə'minatı yükləyə bilməzsəniz.\n"
+"ÆgÉ™r verilÉ™rinizi baÅŸqa bölmÉ™dÉ™ tutmaq istÉ™yirsinizsÉ™, ondabir de \"/home\" "
+"bölməsi də yaratmalısınız (birdən çox Linuks\n"
+"bölməniz var isə).\n"
+"\n"
+"\n"
+"Xəbəriniz olsun, hər bölmə aşağıdakı kimi sıralanıb: \"Ad\", \"Həcm\".\n"
+"\n"
+"\n"
+"\"Ad\" belə kodlanıb: \"sürücü növü\", \"sürücü mömrəsi\",\n"
+"\"bölmə nömrəsi\" (məsələn \"hda1\").\n"
+"\n"
+"\n"
+"\"Sürücü növü\" əgər sürücünüz IDE sürücüdürsə \"hd\"dirvə SCSI sürücü isə "
+"\"sd\"dir.\n"
+"\n"
+"\n"
+"\"Sürücü nömrəsi\" həmişə \"hd\" və ya \"sd\"dən sonrakı rəqəmdir.IDE "
+"sürücülər üçün:\n"
+"\n"
+"*\"a\" yəni \"birinci IDE idarəcisində ali sürücü\",\n"
+"\n"
+"*\"b\" yəni \"birinci IDE idarəcisində kölə sürücü\",\n"
+"\n"
+"*\"c\" yəni \"ikinci IDE idarəcisində ali sürücü\",\n"
+"\n"
+"*\"d\" yəni \"ikinci IDE idarəcisində kölə sürücü\".\n"
+"\n"
+"\n"
+"SCSI sürücülərində \"a\" nın mənası \"birinci sürücü\",\n"
+"\"b\"nin mənası \"ikinci sürücü\"dür vs..."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:79
msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
-"Fayl FTP ilə göndərilərkən xəta yarandı.\n"
-" Xahiş edirik, FTP qurğularınızı düzəldin."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr "IP Silsiləsi Başlanğıcı:"
-
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:84
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."
+"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"
+"you are not supposed to know them all by heart.\n"
+"\n"
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
+"\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
+"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
+"\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
+"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
+"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
+"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
+"\n"
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
-"Internet superserver daemon (qısaca inetd ) bir çox \n"
-"başqa internet xidmətcisini lazım gəldiyi zaman işa salır. İçində telnet, "
-"ftp, rsh və rlogin kimi proqramın olduğu xidmətləri işə salmaqla məs'uldur.\n"
-"inetd-ni sistemden çıxarmaq, onun məs'ul olduğu bütün xidmətləri\n"
-"rədd etmək mə'nasını daşıyır."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
-msgstr "İrəliləmə çubuğunun hündürlüyü"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:135
msgid ""
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
"\n"
-"- %s üstündən %s qovşağına qeyd et\n"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "Argentina"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Domain Name Server"
-msgstr "Domen Adı Vericisi"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Level:"
-msgstr "Təhlükəsizlik Səviyyəsi:"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr "Bağlama nöqtələri / ilə başlamalıdır"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "CD/DVD avadanlığınızı seçin"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "CUPS server"
-msgstr "DNS verici"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Postfix Poçt Vericisi"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "Qeyd etmədən Çıx"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "Yəmən"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
-msgstr "Bu mə'mul MandrakeStore veb saytında mövcuddur."
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Arasından seçiləcək həddindən artıq çox şey var (%s).\n"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
msgstr ""
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../help.pm_.c:171
msgid ""
-"An error occurred:\n"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\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"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\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."
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "Sabit disklərin aşkar edilməsi"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../help.pm_.c:193
+#, fuzzy
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"You may now choose which services you wish to start at boot time.\n"
+"\n"
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
+"\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
-"Heç bir paket qrupunu seçmədiniz.\n"
-"Xahiş edirik, istədiyiniz ən kiçik qurulumu seçin:"
+"İndi, açılışda avtomatik olaraq başlamasını istədiyiniz xidmətləri \n"
+"seçə bilərsiniz. Siçan bir maddənin üzərina gəldiyində o xidmətin rolunu "
+"açıqlayan\n"
+"kiçik bir baloncuq ortaya çıxacaqdır.\n"
+"\n"
+"ÆgÉ™r kompüterinizi bir verici olaraq istifadÉ™ edÉ™cÉ™ksÉ™niz bu addımda tam bir "
+"diqqət ayırmalısınız:\n"
+"mühtəməldir ki lazımi heç bir xidməti başlatmaq istəməzsiniz."
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../help.pm_.c:210
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."
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
msgstr ""
-"Alcatel mikrokoduna ehtiyacınız var.\n"
-"Onu indi bir disket ya da windows bölməsi vasitəsiylə verə\n"
-"bilərsiniz, ya da keçib daha sonra edə bilərsiniz."
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "XahiÅŸ edirik, WebDAV vericisi URL'ini daxil edin"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "Tacikistan"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "Qəbul Et"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "İzahat"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter summary text."
-msgstr "Xahiş edirik, icmal mətnini daxil edin."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Yazmaq üçün açılan %s'də xəta: %s"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Siçan növü: %s\n"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər."
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "Monitorunuzu seçin"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "Boş etiket qəbul edilə bilməz"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
-msgstr "Malta (UK)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "Artıq bölmə əlavə edilə bilməz"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "MB cinsindən böyüklük: "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "Uzaq Çapçı"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
-msgstr "Xahiş edirik, istifadə ediləcək dili seçin."
-
-#: ../../network/network.pm:1
-#, c-format
+#: ../../help.pm_.c:224
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."
+"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.\n"
+"\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-"DİQQÆT: Bu avadanlıq daha É™vvÉ™l İntenetÉ™ baÄŸlanmaq üçün qurulmuÅŸdur.\n"
-"Avadanlığın qurğularını dəyişdirmaək istəmirsiniz isə,\n"
-"OLDU ya basın.\n"
-"Aşağıdakı girişləri düzəltməniz özünü əvvəlki qurğuların üstünə yazacaqdır."
-#: ../../any.pm:1
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
+#: ../../help.pm_.c:246
+msgid ""
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
msgstr ""
-"Kompüteriniz istifadəçinin avtomatik giriş etməsi üçün qurğulana bilər."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Floppy format"
-msgstr "Disket şəkilləndirməsi"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Generic Printers"
-msgstr "Ümumi Çapçılar"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:253
msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-"Çap vəzifələrinin hansı çapçıya gedəcəyini seçin ya da giriş sətirində "
-"avadanlıq/fayl adı daxil edin"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr "Bu sistemdəki darayıcılar diqər sistemlər üçün də açıqdır"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of the root partition"
-msgstr "Kök bolməsinin ilk sektoru"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Alternative drivers"
-msgstr "Alternativ sürücülər"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:277
+#, fuzzy
msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-"Please check all options that you need.\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
+"\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
msgstr ""
+"Bu nöqtədə Linuks Mandrakeni sabit diskinizdə haraya quracağınıza\n"
+"qÉ™rar verÉ™cÉ™ksiniz. ÆgÉ™r diskiniz boÅŸ isÉ™ vÉ™ ya bir baÅŸqa sistem\n"
+"bütün yeri doldurmuş isə, o zaman diskinizdə Linuks Mandrake üçün\n"
+"yer açmalısınız. Ona görə də diski bölmələndirməlisiniz.\n"
+"Bölmələndirmə əsasən diskinizdə məntiqi sürücülər yaratmaqdan ibarətdir.\n"
"\n"
-"Xahiş edirik, istədiyiniz bütün seçimləri seçin.\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
-msgstr "Keyp Verde"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "bu cpu'da Cyrix 6x86 Coma xətasının olması"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr "Çapçı qurğuları yüklənir... Xahiş edirik, gözləyin"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr "əvvəlki pentiumlar xətalı idi və F00F bayt kodu açılarkən donurdu"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr "Quam"
+"Ümumiyyətlə bölmələndirmənin təsiri geri dönülməzdir.Ona görə də\n"
+"bu iÅŸ çox gÉ™rgin vÉ™ yorucudur. ÆgÉ™r özünüzÉ™ inanmırsınız isÉ™ bu\n"
+"sehirbaz sizə yardım edər. Başlamadan əvvəl xahiş edirik əl kitabçanıza\n"
+"baxın. Və bu iş üçün bir az vaxt ayırın.\n"
+"\n"
+"\n"
+"Sizə ən az 2 bölmə lazımdır. Biri sistemin özünü köçürməsi üçün\n"
+"Digəri isə uydurma yaddaş (ya da digər adı ilə Swap) üçün.\n"
+"\n"
+"\n"
+"ÆgÉ™r diskiniz onsuz da bölünmüş isÉ™ (É™vvÉ™lki sistemden ya da\n"
+"başqa bölmələndirmə vasitələri ilə hazırlanmış) quruluşda\n"
+"sadəcə olaraq o yerləri yükləmək üçün seçin.\n"
+"\n"
+"\n"
+"ÆgÉ™r disk bölünmÉ™miÅŸ ise, yuxarıdakı sehirbazdan istifadÉ™ edÉ™ bilÉ™rsiniz.\n"
+"Sisteminizin quruluşundan asılı olaraq müxtəlif imkanlarınız var:\n"
+"\n"
+"* Bütün diski sil: Linuks Mandrake qurmaq üçün bütün diskinizin\n"
+" üzərindəki bölmələri silər. Burada diqqətli olun.\n"
+" Sildikləriniz əsla geri gəlməz.\n"
+"\n"
+"\n"
+"* Windows bölməsindəki sahəni istifadə et: Sisteminizdə\n"
+" Microsoft Windows qurulu isə ve bütün diski əhatə edir isə\n"
+" Linuks Mandrake üçün bir yer ayırmalısınız. Bunun üçün\n"
+" ya bütün diski silməlisiniz (\"Bütün diski sil\" bax ya da\n"
+" \" Usta modu\" tövsiyələri) ya da yenidən bölmələndirməlisiniz.Bu iş heç "
+"bir mə'lumat itkisi olmadan da edilə bilər.Bunun başqa adı\n"
+" eyni kompüterdə həm Linuks Mandrake həm də Windows qurulu olmasıdır.\n"
+"\n"
+"\n"
+"t Bu seçkiyə getmədən əvvəl bir şeyi başa düşməlisiniz ki, yenidən "
+"bölmələndirmə ilə sizin Windows bölməsi kiçiləcəkdir.\n"
+" Yə'ni Windows altında daha az disk sahəsinə malik olacaqsınız.\n"
+"\n"
+"\n"
+"* Usta modu: ÆgÉ™r É™llÉ™ diski bölmÉ™k istÉ™sÉ™niz, bu modu seçin. DiqqÉ™tli "
+"olun.\n"
+" Bu mod güçlüdür amma bir o qədər də təhlükəlidir. Diskinizdəki bütün "
+"bilgiyi asandlıqla itirə bilərsiniz.\n"
+" Təcrübəsiz isəniz bunu seçməyin."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:347
msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-"Çapçınızın bağlı olduğu qapını seçin ya da giriş sətirində avadanlıq/fayl "
-"adı daxil edin"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/Seçimlər/Sınaq"
-
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:378
+#, fuzzy
msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive. It must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-"Bu səviyyə RAID'i diqqətli istifadənizi tövsiyə edirik. Sisteminiz daha "
-"asand\n"
-"işlədiləcək, ancaq xətalara qarşı da həssaiyyəti də artacaqdır. İnternetə \n"
-"bağlı isəniz bunu tövsiyə etmirik. Şifrə ilə girilir."
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mounting partition %s"
-msgstr "%s bölməsi bağlanır"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "İstifadəçi adı"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Linux4Win'i qurmaq üçün hansı disk bölməsini istifadə edəcəksiniz?"
-
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "due to missing %s"
-msgstr "kdesu əksikdir"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Test pages"
-msgstr "Sınaq səhifələri"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Logical volume name "
-msgstr "Məntiqi həcm adı"
+"Yeni yaradılan bütün bölmələr şəkilləndirilməlidir\n"
+"(şəkilləndirmək yəni fayl sistemi yaratmaq - format).\n"
+"\n"
+"\n"
+"Bu arada var olan hazır bölmələri də üstündəkiləri silmək üçünyenidən "
+"şəkilləndirmək istəya\n"
+"bilərsiniz.\n"
+"Bunu istəyirsinizsə bu bölmələri də seçməlisiniz.\n"
+"\n"
+"\n"
+"Bunu ağlınızda tutun ki var olan bütün bölmələri şəkilləndirmək\n"
+"məcburi deyil.\n"
+"İşlətim sistəmini əmələ gətirən bölmələri (yəni\n"
+"\"/\", \"usr\" və ya \"var\"ı yenidən şəkilləndirmək üçün\n"
+"seçə bilərsiniz. Verilər olan \"home\"u məsələ toxunulmadan\n"
+"buraxa bilərsiniz.\n"
+"\n"
+"\n"
+"Diqqətli olun. şəkilləndirdiyiniz bölmələrdəki verilər\n"
+"geri gəlməz.\n"
+"\n"
+"\n"
+"Şəkilləndirməyə hazır isəniz \"Oldu\" düyməsini tıqlayın.\n"
+"\n"
+"\n"
+"Yeni Linuks Mandrake sisteminizi qurmaq üçün başqa bölmə seçmək\n"
+"istəyirsiniz isə \"Ləğv et\" düyməsinə basın."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:404
+#, fuzzy
msgid ""
-"List of data to restore:\n"
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
"\n"
+"Please be patient."
msgstr ""
-"Geri yüklənəcək mə'lumatların siyahısı:\n"
+"Təptəzə Linuks Mandrake sisteminizə qurulacaq. Bu da seçdiyiniz\n"
+"yükləmə böyüklüyünə və sistəminizin qabiliyyətinə görə\n"
+"bir neçə deqiqə alar.\n"
"\n"
+"\n"
+"Xahiş edirik, səbrli olun."
-#: ../../fs.pm:1
-#, c-format
-msgid "Checking %s"
-msgstr "%s yoxlanır"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/Socket Çapçı Qurğuları"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Kart mem (DMA)"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "İnternet bağlantısı kəsilir"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "Fransa"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
-msgstr "gəz"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
-msgstr "Qurulu proqramlar yoxlanır..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Uzaq çapçı adı əksikdir!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Yerli şəbəkədəki çapçılarda çap etmə icazəsi vermək istəyirsiniz?\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "Türkiyə"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Number of buttons"
-msgstr "Düymə ədədi"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vyetnam dili \"numeric row\" QWERTY"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Module"
-msgstr "Modul"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:412
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
+"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-"ÆlavÉ™ olaraq, bur proqram ya da \"foomatic-configure\" vasitÉ™silÉ™ "
-"yaradılmayan növbələr transfer edilə bilməz."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
-msgstr "Avadanlıq"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Eyni zamanda Ctrl və Alt düymələri"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "Birləşmiş Ştatlar"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "User umask"
-msgstr "İstifadəçi umask'ı"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "Æsas ÆS?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "İsveçcə (Alman sırası)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Bütün başlıqları ayrı ayrı quraşdır"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:425
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\"."
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
msgstr ""
-"Xahiş edirik, quraşdırmaq istədiyiniz çapçını seçin. Çapçının quraşdırılması "
-"tamamilÉ™ avtomatik olacaq. ÆgÉ™r çapçınız düzgün açkar edilmÉ™yibsÉ™ ya "
-"daxüsusiləşdirilmiÅŸ çap quraÅŸdırması istÉ™yirsinizsÉ™, \"ÆllÉ™ quraÅŸdırma\"nı "
-"seçin."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "NTP Verici"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Sulogin(8) in single user level"
-msgstr "Tək istifadəçi səviyyəsində Sulogin(8)"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Load/Save on floppy"
-msgstr "Disketə qeyd et/disketdən yüklə"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
-msgstr "Bu örtük hələlik %s içində sıçrayan ekrana malik deyil !"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "É™'la"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "%d saniyə sonra çıxılacaq"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Property"
-msgstr "XassÉ™"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr "Yerli Şəbəkə Quraşdırılması"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "Qana"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
-msgstr "Cığır ya da Modul məcburidir"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Advanced Options"
-msgstr "Ætraflı SeçimlÉ™r"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Configuration"
-msgstr "Qurğuları Göstər"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
-msgstr "Coma xətası"
+#: ../../help.pm_.c:432
+msgid ""
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:442
+#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -5209,2114 +3286,1302 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"Bu nöqtÉ™dÉ™ siz Linuks Mandrake yüklÉ™nÉ™cÉ™k bölmÉ™(lÉ™r)i seçmÉ™lisiniz. ÆgÉ™r\n"
-"bölmələr əvvəldən mövcuddursa (sistemdə əvvəllər qurulu olan GNU/Linuks \n"
-"bölmələri və ya başqa bölmələndirmə vasitələri ilə hazırladığınız "
-"bölmələr),\n"
-"onları istifadə edə bilərsiniz, əks halda onları müəyyən etməlisiniz.\n"
+"Bu nöqtÉ™dÉ™ siz Linuks Mandrake yüklÉ™mÉ™k üçün bölmÉ™lÉ™ri seçmÉ™lisiniz. ÆgÉ™r "
+"əvvəldən bölmələr var isə (sistemdə əvvəllər qurulu olan GNU/Linuks "
+"bölmələri və ya başqa bölmələndirmə vasitələri ilə hazırladığınız bölmələr), "
+"onları seçin və istifadə edin.\n"
+"Yoxsa onları bildirməlisiniz.\n"
"\n"
-"Bölmələri yaratmaq üçün əvvəlcə diski seçməlisiniz. Diski seçmək üçün \n"
-"birinci IDE sürücüsü üçün ``hda''nı, ikincisi üçün ``hdb''ni, birinci SCSI \n"
-"sürücüsü üçün isə ``sda'' v.s. üstünə tıqlamalısınız.\n"
"\n"
-"Seçdiyiniz sürücünü bölmələndirmək üçün aşağıdakı seçimləri etməyə "
-"qadirsiniz:\n"
+"Bölmələri yaratmaq üçün əvvəlci diski seçməlisiniz.\n"
+"Diski seçmək üçün birinci IDE sürücüsü üçün \"hda\" nı, ikinciyi seçmək üçün "
+"\"hdb\"ni, birinci SCSİ sürücüsü üçün ise \"sda\" vs tıqlamalısınız.\n"
"\n"
-" * \"%s\": Bu seçim seçili sabit disk üstündəki bütün bölmələri silər\n"
"\n"
-" * \"%s\": Bu seçim sizə avtomatik olaraq sabit diskinizin boş sahəsində\n"
-"ext3 və dəyiş-toqquş sahəsi yaratma imkanı verəcək\n"
+"Seçdiyiniz sürücüyə aşağıdakıları etməyə qadirsiniz:\n"
"\n"
-"\"%s\": ÆlavÉ™ xüsusiyyÉ™tlÉ™rÉ™ yetiÅŸmÉ™ imkanı verir\n"
+" *Hamısını təmizlə: seçili sürücüdə bütün bölmələri silər.\n"
"\n"
-" * \"%s\": Bölmə cədvəlini disketə qeyd edər. Bu disket daha sonra əmələ "
-"gələ\n"
-"biləcək disk bölmə cədvəli xətalarını bərpa etmək üçün işlədilir. Bu addımı "
-"həyata keçirməyi\n"
-"sizə şiddətlə məsləhət edirik.\n"
"\n"
-" * \"%s\": Daha əvvəl disketə qeyd edilən bölmə cədvəlini bərpa etmək "
-"(yenidən\n"
-"yükləmək) üçün bu seçimi işlədin.\n"
+" *Avtomatik: Sürücünüzdəki boş sahədə Ext2 və Swapbölmələrini avtomatik\n"
+"yaradar.\n"
"\n"
-" * \"%s\": ÆgÉ™r bölmÉ™ cÉ™dvÉ™liniz pozulubsa, onu bu seçimlÉ™ düzÉ™ldÉ™\n"
-"bilərsiniz. Diqqətli olun və unutmayın ki bu həmişə işləməyə bilər.\n"
"\n"
-" * \"%s\": Bütün dəyişiklikləri silərək sabit diskin əvvəlki bölmə "
-"cədvəlini\n"
-"geri yükləyəcək.\n"
+" *Bölmə cədvəlini qurtar: Zədələnmiş bölmə cədvəlinibərpa edər. Xahiş "
+"edirik\n"
+" diqqətli olun, çünkü bu da iflas edə bilər.\n"
"\n"
-" * \"%s\": Bu seçimin işarəsini silərsəniz, istifadəçilər CD-ROM'lar və "
-"disketlər\n"
-"kimi çıxardıla bilən mediyaları əl ilə bağlamaq (mount) məcburiyyətində "
-"qalacaq.\n"
"\n"
-" * \"%s\": ÆgÉ™r diskinizi bölmÉ™lÉ™mÉ™k üçün bir sehirbaza ehtiyac hiss "
-"edirsinizsÉ™,\n"
-"bu seçimi seçin. Bu yol, bölmələmədən yaxşı başı çıxmayanlar üçündür.\n"
+" *Gəri dön: İstəmədiyiniz seçkilərinizdən geri döndərər.\n"
"\n"
-" * \"%s\": Dəyişikliklərinizi rədd etmək üçün bu seçimi işlədin.\n"
"\n"
-" * \"%s\": Sabit disk haqqında ətraflı mə'lumat verir və onun üstündə əlavə\n"
-"əməliyyatlar (növ, seçimlər, şəkilləndirmə) icra etmə icazəsi verir.\n"
+" *Yenidən yüklə: Bütün dəyişikliklərinizdən geri dönərbaşdakı bölmə "
+"cədvəlinə gələr.\n"
"\n"
-" * \"%s\": Sabit diskinizi bölmələyib bitirdiyiniz vaxt bu seçim "
-"dəyişiklikləri\n"
-"sabit diskinizə qeyd edəcək.\n"
"\n"
-"Bölmənin böyüklüyünü müəyyən edərkən klaviaturadakı istiqamət düymələri\n"
-"ilə seçiminizi sazlaya bilərsiniz.\n"
+" *Sehirbaz: Bölmələndirməyi bir sehirbaz edər. Təcrübəsizisəniz bunu "
+"seçin.\n"
"\n"
-"Qeyd: bütün seçimlərə klaviatura ilə yetişə bilərsiniz. Bölmələr arasında "
-"[Tab]\n"
-"və [Yuxarı/Aşağı] düymələri ilə hərəkət edə bilərsiniz.\n"
"\n"
-"Bir bölmə seçili ikən bu qısa yolları istifadə edə bilərsiniz:\n"
+" *Floppy-dən bərpa et: Bölmə cədvəlini əvvəllər flopy-yə qeydetdiniz isə, "
+"bölmə cədvəlini bərpa edin.\n"
"\n"
-" * Ctrl-c -> yeni bölmə yaratmaq üçün (əgər boş bölmə seçilidirsə)\n"
"\n"
-" * Ctrl-d -> bölməni silmək üçün\n"
+" *Floppy-yə qeyd et: Daha sonradan bərpa etmek üçünbilgiləri floppy-yə qeyd "
+"edin.\n"
+" Bu seçki şiddətlə tövsiyə edilir.\n"
"\n"
-" * Ctrl-m -> bağlama nöqtəsi seçmək üçün\n"
"\n"
-"Fərqli fayl sistem növləri haqqında daha ətraflı mə'lumat üçün, xahiş "
-"edirik,\n"
-"``Reference Manual'' kitabının ext2FS bölümünü oxuyun.\n"
+" *Oldu: Bölmələndirmə bitdiyində, bunu seçərəkdəyişikliklərinizi qeyd "
+"edin.\n"
"\n"
-"ÆgÉ™r PPC kompüterdÉ™ qurulum aparırsınızsa, É™n az 1 MBlıq balaca bir HFS \n"
-"``bootstrap'' bölməsini yaboot açılış yükləyicisi üçün seçmək "
-"istəyəcəksiniz.\n"
-"ÆgÉ™r daha çox yeriniz varsa, mÉ™sÉ™lÉ™n 50 MB, onda bütün kernel vÉ™ ramdisk \n"
-"açılış əkslərinizi təcili hallar üçün burada saxlaya bilərsiniz."
-
-#: ../../help.pm:1
-#, 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"
+"Xəbəriniz olsun, istənilən seçkiyə Tab ve Aşağı/Yuxarı oxlarını da işlədərək "
+"klaviaturadan idarə edə bilərsiniz.\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 ""
-"Səs Kartı\n"
"\n"
-" Qurulum proqramı sisteminizə bağlı olan səs kartını əsasən avtomatik "
-"olaraq\n"
-"aÅŸkar edÉ™cÉ™kvÉ™ quraÅŸdıracaq. ÆgÉ™r sÉ™hv tapılsa hÉ™qiqÉ™tÉ™n sisteminizÉ™ baÄŸlı "
-"olan\n"
-"səs kartını siyahıdan seçə bilərsiniz. \n"
-" ÆgÉ™r kartınız üçün hÉ™m 3D dÉ™stÉ™yi olan hÉ™m dÉ™ olmayan vericilÉ™r "
-"mövcudsa,\n"
-"sizdən ehtiyaclarınıza ən gözəl cavab verən vericini seçməniz xahiş ediləcək."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Paketlər qurulurkən bir xəta oldu:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Lexmark inkjet qurğuları"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "Geri al"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Save partition table"
-msgstr "Bölmə cədvəlini qeyd et"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "Fin dili"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "Makedoniya"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
-msgstr ""
-"İstifadəçi başına bölüşmə \"fileshare\" qrupunu istifadə edir. \n"
-"Bu qrupa istifadəçiləri əlavə etmək üçün userdrake'dən istifadə edə "
-"bilərsiniz. "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "SlovencÉ™"
+"Bölmə seçildiyi zaman bunları işlədə bilərsiniz:\n"
+"\n"
+" *Ctrl-c yeni bölmə yaratmaq üçün (boş bölmə seçili olduğu zaman)\n"
+"\n"
+" *Ctrl-d bölməni ləğv etmək üçün\n"
+"\n"
+" *Ctrl-m bağlama nöqtəsini göstərmək üçün\n"
+"\n"
+"\n"
+"\n"
+"ÆgÉ™r PPC kompüterdÉ™ qurulum aparırsınızsa, É™n az 1 MBlıq balaca bir HFC "
+"'bootstrap' bölməsini yaboot açılış yükləyicisi üçün seçmək istəyəcəksiniz.\n"
+"ÆgÉ™r daha çox yeriniz varsa ; mÉ™sÉ™lÉ™n 50 MB, onda bütün kernel vÉ™ ramdisk "
+"əksini təcili açılış halları üçün saxlaya bilərsiniz."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../help.pm_.c:513
+#, fuzzy
msgid ""
-"Authorize:\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-"- only local ones if set to \"LOCAL\"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- none if set to \"NONE\".\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
msgstr ""
-"Səlahiyyətləndirmə:\n"
+"Sürücünüzdə bir və ya daha çox Windows bölməsi tapıldı.\n"
+"Xahiş edirik Linuks Mandrakeni qurmaq üçün onlardan birini "
+"yenidənölçüləndirmək üzərə seçin.\n"
"\n"
-"- əgər \"ALL\" seçilidirsə, tcp_wrapper'lər tərəfindən idarə edilən bütün "
-"xidmətlər (baxın hosts.deny(5) man səhifəsi)\n"
"\n"
-"- əgər \"LOCAL\" seçilidirsə,yalnız yerlilər\n"
+"Xəbəriniz olsun, her bölmə bu cür sıralanıb; \"Linuks adı\",\"Windows\n"
+"adı\"\"Həcm\".\n"
"\n"
-"- əgər \"NONE\" seçilidirsə, heç biri.\n"
+"\"Linuks adı\" bu cür kodlanıb: \"sürücü növü\", \"sürücü nömrəsi\",\"bölmə "
+"nömrəsi\" (məsələn, \"hda\").\n"
"\n"
-"Xidmətləri səlahiyyətləndirmək üçün, /etc/hosts.allow faylını işlədin (baxın "
-"hosts.allow(5))."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr "Liviya"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Skriptlə qurulur, proqram tə'minatı qurulur, xidmətlər başladılır..."
+"\n"
+"\"Sürücü növü\" sürücünüz IDE sürücü isə \"hd\"dirSCSI sürücü isə\n"
+"\"sd\"dir.\n"
+"\n"
+"\n"
+"\"Sürücü nömrəsi\" həmişə \"hd\" və ya \"sd\"dən sonrakı rəqəmdir.IDE "
+"sürücülər üçün:\n"
+"\n"
+"*\"a\" yəni \"birinci IDE idarəcisində ali sürücü\",\n"
+"\n"
+"*\"b\" yəni \"birinci IDE idarəcisində kölə sürücü\",\n"
+"\n"
+"*\"c\" yəni \"ikinci IDE idarəcisində ali sürücü\",\n"
+"\n"
+"*\"d\" yəni \"ikinci IDE idarəcisində kölə sürücü\".\n"
+"\n"
+"\n"
+"SCSI sürücülərində \"a\" nın mənası \"birinci sürücü\",\n"
+"\"b\"nin mənası \"ikinci sürücü\"dür vs..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "%s nömrəli paralel qapıdakı çapçı"
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
+msgstr "Səbrli olun. Bu əməliyyat bir neçə deqiqə sürə bilər."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:547
+#, fuzzy
msgid ""
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
"\n"
-"- Burn to CD"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
+"\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
+"\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
+"\n"
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
+"\n"
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
+"\n"
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
+"\n"
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
msgstr ""
+"Xahiş edirik Linuks Mandrakenin daha əvvəlki buraxılışları qurulu deyilsə və "
+"ya müxtəlif əməliyyat sistemlərindən istifadə etmək istəyirsinizsə \"Yüklə\" "
+"seçin.\n"
"\n"
-"- CD'yÉ™ yaz"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "Cədvəl"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "%s'i necə şəkilləndirəcəyimi bilmirəm (Növ: %s)"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Model"
-msgstr "Model"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "USB printer #%s"
-msgstr "USB çapçı #%s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Stop Server"
-msgstr "Vericini Dayandır"
+"\n"
+"Xahiş edirik qurulu olan Linuks Mandrakenin əvvəlki buraxılışını güncəlləmək "
+"istəyirsinizsə \"Güncəllə\" seçin.\n"
+"\n"
+"\n"
+"Sizin GNU/Linuks biliyinizdən asılı olaraq yükləmək və ya güncəlləmək üçün "
+"Linuks Mandrakenin aşağıdakı səviyyələrini seçə bilərsiniz:\n"
+"\n"
+"* TövsiyÉ™ edilÉ™n: ÆgÉ™r É™vvÉ™lcÉ™ heç GNU/Linuks ilÉ™ tanış olmadınız isÉ™ seçin. "
+"Yükləmə çox asand olacaq və çox az sual soruşulacaq.\n"
+"\n"
+"\n"
+"* Xüsusi: ÆgÉ™ É™vvÉ™lcÉ™ GNU/Linuksa bir az aÅŸina isÉ™niz, seçin. Onda siz "
+"istədiyiniz sistem növünü (Masa üstü, Verici, Təcrübi) seçə biləcəksiniz.\n"
+" ÆlbÉ™tdÉ™ sizÉ™ \"TövsiyÉ™ edilÉ™n\" seçkidÉ™n daha çox sual soruÅŸulacaq.\n"
+" Ona görə də GNU/Linuksa bir az aşina olmalısınız.\n"
+"\n"
+"\n"
+"* Usta: ÆgÉ™r yaxşı bir GNU/Linuks biliyinÉ™ sahibsÉ™niz, bu sinifi seçin.\n"
+" \"Xüsusi\" sinifindəki kimi işlədəcəyiniz sistemi (Masa üstü, Verici, "
+"Təcrübi)\n"
+" seçə biləcəksiniz. Amma sizi çox çətin suallar gözləyir. Bəzən bu sualların "
+"içindən\n"
+" çıxa bilmək çox zəhmətli olur. Ona görə də nə etdiyinizi bilirsəniz, bu "
+"sinifi seçin."
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../help.pm_.c:582
msgid ""
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
+"Click on the \"More\" button to be presented with the complete list of\n"
+"supported keyboards.\n"
"\n"
-"lilo və bootsplash üçün\n"
-"bir örtük seçin, onları\n"
-"ayrı ayrı da seçə\n"
-"bilərsiniz"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Modem"
-msgstr "Modem"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr "Tuvalu"
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr "Avtomatik təsbit işlət"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
+msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:598
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."
+"The first step is to choose your preferred language.\n"
+"\n"
+"Please choose your preferred language for installation and system usage.\n"
+"\n"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
+"\n"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
-"GPM, Midnight Commander kimi mətn əsaslı tə'minatlara siçan dəstəyi əlavə "
-"edər.\n"
-"Ayrıca konsolda siçanla kəsmə və yapışdırma əməliyyatlarına da imkan verər.\n"
-"Konsolda pop-up menyu dəstəyi verər."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr "Açılışda başladılır"
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
+#: ../../help.pm_.c:617
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:"
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
+"\n"
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
+"\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
msgstr ""
-"Online texnik dəstək veb saytında tanınan Mütəxəssis olaraq MandrakeSoft "
-"dəstək komandalarına və Linuks Online Cəmiyyətinə biliklərinizi bölüşmək və "
-"başqalarına yardım etmək üçün qoşulun:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "No password aging for"
-msgstr "Bunlar üçün şifrə vaxtının keçməsi olmasın"
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../help.pm_.c:638
+#, fuzzy
msgid ""
-"The following options can be set to customize your\n"
-"system security. If you need an explanation, look at the help tooltip.\n"
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"Sisteminizin təhükəsizliyini müəyyən etmək üçün aşağıdakı seçimlər\n"
-"mövcuddur. İzahata ehtiyacınız varsa, yardım bölməsinə baxın.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Uzaq kompüterlərdəki mövcud çapçıları avtomatik tap"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr "Şərqi Timor"
+"Xahiş edirik doğru qapını seçin. Məsələn, MS Windowsdakı COM1'in qarşılığı\n"
+"Linuksda ttyS0'dır."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
-msgstr "Kaset avadanlığı üstündə"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:642
msgid ""
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
"\n"
-"- Save to Tape on device: %s"
-msgstr ""
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
"\n"
-"- %s avadanlığı üstündə kasetə qeyd et"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Login name"
-msgstr "Giriş adı"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
-msgstr "Yiyələnməmiş faylları raport et"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr "Profili sil..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Foomatic Qurulur..."
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Lütfen çıxın və Ctrl-Alt-BackSpace düymələrinə basın"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected"
-msgstr "tapıldı"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "Şəbəkə yenidən başladılmalıdır. Yenidən başlatmaq istəyirsiniz?"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package: "
-msgstr "Paket:"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr "/etc/sysconfig/bootsplash yazıla bilmir."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "TÆHLÜKÆSİZLİK XÆBÆRDARLIÄžI!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
-msgstr "Xeyir, Avtomatik giriş istəmirəm"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Windows'dan Keçiş vasitəsi"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr "Bütün dillər"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "%s silinir"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s tapılaa bilmədi...\n"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Testing your connection..."
-msgstr "Bağlantınız sınanır..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cache size"
-msgstr "Ön yaddaş böyüklüyü"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
+"\n"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
+"\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
+"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
msgstr ""
-"Şifrələr fəallaşdırıldı, yenə də bir şəbəkə üstündə istifadə edilməməsi "
-"tövsiyə edilir."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr "Başlanğıç sektoru: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr "Congo (Brazzaville)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Read"
-msgstr "Oxu"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "%s paketi qurulmalıdır. Qurmaq istəyirsiniz?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
-msgstr "SeyÅŸel"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:678
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"
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\n"
"\n"
-"For your printer Printerdrake has found:\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
+"OS;\n"
"\n"
-"%s"
-msgstr ""
-"Printerdrake, çapçı avtomatik aşkarından əldə edilən çapçı adını onun "
-"mə'lumat bazasında yer alan çapçıların siyahısı ilə ən uyğununu tapmaq üçün "
-"müqayisə etdi. Bu seçim bə'zən səhv ola bilər, misal üçün, çapçınızın adı "
-"mə'lumat bazasında heç yer almırsa. Ona görədə seçimin düz olub olmadığına "
-"baxın və əgər düzgündürsə \"Model düzgündür\" düyməsini, deyilsə \"Modeli "
-"əllə seç\" düyməsinə basaraq növbəti ekranda çapçınızı seçin.\n"
+" * if a grub or LILO boot sector is found, it will replace it with a new\n"
+"one.\n"
"\n"
-"Çapçınız üçün Printerdrake bunu tapdı:\n"
+"if in doubt, DrakX will display a dialog with various options.\n"
"\n"
-"%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Bad password on %s"
-msgstr "%s üstündə xətalı şifrə"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+" * \"Bootloader to use\": you have three choices:\n"
"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
+" * \"GRUB\": if you prefer grub (text menu);\n"
"\n"
-"Sisteminizə birbaşa bağlı olan bir namə'lum çapçı var"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Control key"
-msgstr "Sağ Control düyməsi"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\n"
+"\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
+"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
+"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
+"\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\n"
+"\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
msgstr ""
-"Kök cərgəsində %2$s olan FAT ilə şəkilləndirilmiş %1$s disketini taxın və %3"
-"$s düyməsinə basın"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "Zambiya"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr "Təhlükəsizlik İdarəçisi (giriş ya da ePoçt)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr "Bağışlayın, biz ancaq 2.4 çəyirdəklərini dəstəkləyirik."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr "Rumın (qwerty)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
-msgstr "İnkişafdadır ... xahiş edirik, gözləyin."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "Misir"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "Çex Respublikası"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "Səs kartı"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Import Fonts"
-msgstr "Yazı növlərini idxal et"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../help.pm_.c:718
+#, fuzzy
msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"Tək bir böyük MicroSoft Windows disk bölməniz var.\n"
-"ÆvvÉ™lcÉ™ bu disk bölmÉ™sinin böyüklüyünü dÉ™yiÅŸdirmÉ™yi\n"
-"məsləhət edirik. (Bölməni seçib, \"Böyüklüyü\n"
-"Dəyişdir\" düyməsinə tıqlayın)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Müvəqqəti Faylları Gizlət"
+"LILO (Linuks Yükləyici) və Grub açılış sistem yükləyiciləridir: sistemi "
+"Linuks\n"
+"ya da kompüterinizdə olan başqa bir əməliyyatiyle aça bilərlər.\n"
+"ÆsasÉ™n bu digÉ™r É™mÉ™liyyat sistemlÉ™ri doÄŸru bir ÅŸÉ™kilde tÉ™sbit edilib "
+"açılışa\n"
+"qurula bilÉ™rlÉ™r. ÆgÉ™r bir problem olarsa, buradan É™llÉ™ É™lavÉ™ edilÉ™ "
+"bilərlər.\n"
+"Parametrlər mövzusunda diqqətli olun."
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../help.pm_.c:732
msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\n"
"\n"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
msgstr ""
-"Təbrik edirik, internet və şəbəkə quraşdırılması bitdi.\n"
+"Linuksu açmaq üçün lazımi bilgilərin harada saxlanılacağına qərar verin.\n"
"\n"
+"Nə etdiyinizi bilmirsinizsə, \"Diskin ilk sektoru (MBR)\" seçin."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "Bölmə növünü Dəyişdir"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:739
msgid ""
-"Resolution\n"
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\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 ""
-"Həlledilirlik\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
"\n"
-" Burada, avadanlığınız üçün mövcud olan həlledilirlik və rəng "
-"dərinliklərini\n"
-"seçə bilərsiniz. Ehtiyacınıza ən yaxşı cavab verəni seçin (qurulumdan sonra\n"
-"bunu dəyişdirə biləcəksiniz). Seçilən qurğunun bir nümunəsi\n"
-"monitorda göstərilir."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Network Options"
-msgstr "Şəbəkə Seçimləri"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable msec hourly security check"
-msgstr "msec saat başı təhlükəsizlik yoxlamasını fəallaşdır"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
msgstr ""
-"Konsol altında\n"
-"örtüyü göstər"
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr "(%s üstündə)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr "Buffer overflow və format string hücumlarına qarşı qoruyan kitabxana."
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr "orta hesabla"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "New printer name"
-msgstr "Yeni çapçı adı"
-#: ../../fs.pm:1
-#, 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 )."
-msgstr ""
-"Sıravi istifadəçiyə fayl sistemini bağlama (mount) etmə icazəsi ver.\n"
-"Bağlama hüququ olan istifadəçinin adı daha sonra fayl sistemi ayıra bilməsi "
-"üşün mtab faylına qeyd edilir.\n"
-"Bu seçim noexec, nosuid, və nodev seçimlərini nəzərə alır."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr "Ekvatorial Qvineya"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup System"
-msgstr "Sistemin ehtiyat nüsxəsini çıxart"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Build Backup"
-msgstr "Ehtiyatı İnşa Et"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Æmr sÉ™tirindÉ™n (terminal pÉ™ncÉ™rÉ™si) bir faylı çap etmÉ™k üçün bu É™mrlÉ™ri "
-"işlədin: \"%s <fayl>\" ya da \"%s <fayl>\".\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Hazırda, başqa heç bir alternativ mövcud deyil"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwertz)"
-msgstr "Rumın (qwertz)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Write Config"
-msgstr "QurÄŸunu Yaz"
-
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:759
+#, fuzzy
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."
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"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 does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
+"\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
msgstr ""
-"routed vasitəsi avtomatik IP router cədvəlinin RIP protokolu tərəfindən\n"
-"yenilənməsinə imkan verər. RIP əsasən kiçik şəbəkələrdə istifadə edilir, "
-"daha böyük\n"
-"şəbəkələrdə daha qarışıq routing protokollarına ehtiyacı vardır."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr "Kiribati"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Çərx emulyasiyalı Logitech siçan (serial, köhnə C7 növü)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Diqər (drackbackup xarici) açarlar onsuzda yerindədir"
+"DrakX PCI SCSI adapterleri axtarmaÄŸa cÉ™hd edÉ™cÉ™k. ÆgÉ™ DrakX SCSI\n"
+"taparsa və hansı sürücü işlədiləcəyini bilərsə, her şey öz özünə\n"
+"qurulacaq.\n"
+"\n"
+"\n"
+"ÆgÉ™r sisteminizdÉ™ SCSI adapteri yoxsa, DrakXin tanımayacağı bir\n"
+"ISA SCSI vÉ™ ya PCI SCSI adapteri var isÉ™, sizÉ™ sisteminizdÉ™ SCSI\n"
+"adapteri olub olmadığı soruşulacaq.\n"
+"ÆgÉ™r SCSI adapteriniz yox isÉ™, \"Yox\" tıqlayın. ÆgÉ™r \"Var\"ı "
+"tıqlayarsanız.\n"
+"qarşınıza sürücüləin siyahısı çıxacaq, oradan sizə uyanını seçərsiniz.\n"
+"\n"
+"\n"
+"ÆgÉ™r É™llÉ™ qurmağı səçərsÉ™niz, o zaman DrakX sizÉ™ adapterin xüsusiyyÉ™tlÉ™rini\n"
+"soruşacaq. İmkan verin ki, DrakX sərbəstcə özü xüsusiyyətləri tapsın.\n"
+"Çoxunda bu işə yarayır.\n"
+"\n"
+"\n"
+"ÆgÉ™r istÉ™mirsÉ™niz isÉ™, o zaman adapter üçün xüsusiyyÉ™tlÉ™ri özünüz\n"
+"göstÉ™rmÉ™lisiniz. Bunun üçün İstifadəçinin Æl Kitabçasına\n"
+"(başlıq 3, \"Avadanlığınız üçün kollektiv mə'lumat) bölməsinə\n"
+"baxın. Ya da avadanlığınızın əl kitabçasından və ya\n"
+"veb sÉ™hifÉ™sindÉ™n (ÆgÉ™r internetÉ™ çıxışınız var isÉ™)\n"
+"ya da Microsoft Windowsdan (ÆgÉ™r sisteminizdÉ™ qurulu isÉ™)\n"
+"mə'lumat alın."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:781
+#, fuzzy
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"
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
"\n"
-"You will be presented with a list of different parameters to change to get\n"
-"an optimal graphical display: Graphic Card\n"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\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"
+"For Linux, there are a few possible options:\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"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
"\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
"\n"
-"Monitor\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
"\n"
-" 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"
+" 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"
-"Resolution\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
"\n"
-" 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"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
"\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support;\n"
"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
+msgstr ""
+"Burada yaboot üçün həm başqa əməliyyat sistemləri, həm alternativ "
+"kernellər,\n"
+" ya da təcili yardım açılış əksləri əlavə edə bilərsiniz.\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"
+"Başqa OSlər üçün girişin mənası ad və kök çığırından ibarətdir.\n"
"\n"
"\n"
+"Linuks üçün mühtəməl girişlər bunlar ola bilər: \n"
"\n"
-"Options\n"
"\n"
-" Here you can choose whether you want to have your machine automatically\n"
-"switch to a graphical interface at boot. Obviously, you want to check\n"
-"\"%s\" if your machine is to act as a server, or if you were not successful\n"
-"in getting the display configured."
-msgstr ""
-"X (X Pəncərə Sistemi) GNU/Linuks qrafiki ara üzünün qəlbidir.\n"
-"Mandrake Linuksla bərabər gələn qrafiki mühitlərin hamısı (KDE, \n"
-"GNOME, AfterStep, WindowMaker, vs.) buna bağlıdır.\n"
+" - Ad: Bu sadəcə olaraq yaboot üçün açılacaq sistemi timsal edən bir "
+"addır.\n"
"\n"
-"Optimal görünüşü almaq üçün sizə dəyişdiriləcək fərqli parametrlər\n"
-"təqdim ediləcək.\n"
"\n"
-" Qurulum proqramı sisteminizə bağlı olan qrafika kartını əsasən avtomatik "
-"olaraq\n"
-"aÅŸkar edÉ™cÉ™k vÉ™ quraÅŸdıracaq. ÆgÉ™r sÉ™hv tapılsa hÉ™qiqÉ™tÉ™n sisteminizÉ™ baÄŸlı "
-"olan\n"
-"səs kartını siyahıdan seçə bilərsiniz.\n"
-" ÆgÉ™r kartınız üçün hÉ™m 3D dÉ™stÉ™yi olan hÉ™m dÉ™ olmayan vericilÉ™r "
-"mövcudsa,\n"
-"sizdən ehtiyaclarınıza ən gözəl cavab verən vericini seçməniz xahiş "
-"ediləcək.\n"
+" - Æks: Bu isÉ™ açılacaq çəkirdÉ™yin, yÉ™'ni kernelin adıdır. Çox vaxt bu "
+"vmlinux vÉ™ ya\n"
+"bunun variasiyalarıdır.\n"
"\n"
"\n"
+" - Kök: Linuks qurulumunun kök avadanlığı və ya '/'.\n"
"\n"
-"Monitor\n"
"\n"
-" Qurulum proqramı sisteminizə bağlı olan monitoru əsasən avtomatik olaraq\n"
-"aÅŸkar edÉ™cÉ™k vÉ™ quraÅŸdıracaq. ÆgÉ™r sÉ™hv tapılsa hÉ™qiqÉ™tÉ™n sisteminizÉ™ baÄŸlı "
-"olan\n"
-"monitoru siyahıdan seçə bilərsiniz.\n"
+" \n"
+" - ÆlavÉ™: Apple avadanlıqlarında kernel É™lavÉ™ seçənÉ™klÉ™ri ilÉ™ sıxlıqla "
+"başlanğıc\n"
+"video avadanlığı və ya sıx sıx xəta verən 2ci və 3cü siçan düymələri üçün "
+"emulyasiya\n"
+"imkanları tanına bilir. Məsələn bunlar \n"
+"bir neçə nümunədir:\n"
"\n"
"\n"
-"Həlledilirlik\n"
+"\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+"hda=autotune\n"
"\n"
-" Burada avadanlığınız üçün mümkün olan həlledilirlik və rəng "
-"dərinliklərini\n"
-"seçə bilərsiniz. Ehtiyaclarınıza ən gözəl cavab verəni seçin. (Bunları "
-"qurulum\n"
-"tamamlandıqdan sonra da dəyişdirə biləcəksiniz). Seçilən qurğuların bir\n"
-"nümunəsi monitorda göstərilir.\n"
+"\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
"\n"
"\n"
+" \n"
+" - Initrd: Açılış avadanlığından əvvəl bə'zi açılış modullarını seçmək\n"
+"üçün işlədilir, ya da təcili yardım açılışlarında ramdisk əksini yükləmək "
+"imkanı verir.\n"
"\n"
-"Sınaq\n"
"\n"
-" Sistem, seçilən həlledilirlikdə qrafiki ekranı açmağa cəhd edəcək.\n"
-"ÆgÉ™r sınaq sırasında ismarışı görüb \"%s\" düymÉ™sinÉ™ bassanız, DrakX\n"
-"növbÉ™ti mÉ™rhÉ™lÉ™yÉ™ keçəcÉ™k. ÆgÉ™r ismarışı görÉ™ bilmirsinizsÉ™, bu avtomatik\n"
-"aşkar edilən quraşdırmanın bir hissəsi səhvdir və sınaq 12 saniyə sonra\n"
-"sonlanaraq sizi menyuya geri götürəcək.\n"
-"Düzgün qrafiki görünüş alana qədər qurğuları dəyişdirin.\n"
+" - Initrd-size: Ana ramdisk böyüklüyü ümumiyyÉ™tlÉ™ 4096 baytdır. ÆgÉ™r daha "
+"geniÅŸ ramdisk bildirÉ™\n"
+"bilərsiniz isə bu seçənəyi işlədin.\n"
"\n"
"\n"
+" - Oxuma-yazma: Normalda sistemin 'dirilməsindən' əvvəl bə'zi sınaqların "
+"aparıla bilməsi üçün\n"
+"'root' fayl sistemi bu moda soxulur. Bu seçənəyi nəzərə almayabilərsiniz.\n"
"\n"
-"Seçimlər\n"
"\n"
-" Burada, sisteminiz başlarkən avtomatik olaraq qrafiki ekrana keçməsini\n"
-"seçə bilərsiniz. Yalnız, əgər sisteminiz bir verici olacaqsa ya da ekran "
-"qurğularını\n"
-"müvəffəqiyyətlə sazlaya bilmədinizsə hər halda \"%s\" seçimini seçmək "
-"istəyəcəksiniz."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr "Gəz"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr "CDROM"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "İndi internetə bağlanmağı sınamaq istəyirsiniz?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "Belçika dili"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Heç ISA səs kartınız var?"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Sisteminizdə heç bir eternet şəbəkə adapteri tapıla bilmədi.\n"
-"Bu bağlantı şəklini qura bilmərəm."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Windows"
-msgstr "Windows"
-
-#: ../../common.pm:1
-#, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "Bölmələmədən əvvəl görüntü alına bilməz"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Name"
-msgstr "Qovşaq Adı"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Fayl/_Fərqli Qeyd Et"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"Yerli şəbəkənizdəki uzaq CUPS vericilərindəki çapçıya yetişmə səlahiyyəti "
-"almaq üçün sadəcə olaraq \"Uzaq sistemlərdəki mövcud çapçıları avtomatik tap"
-"\" seçimini işarələməlisiniz; CUPS vericiləri, sisteminizi öz çapçıları "
-"haqqında avtomatik mə'lumatlandırırlar. Hazıda sisteminizdəki bütün bilinən "
-"çapçılar Printerdrake'nin əsas pəncərəsindəki \"Uzaq çapçılar\" "
-"bölmÉ™sindÉ™yer alır. ÆgÉ™r CUPS vericilÉ™riniz yerli ÅŸÉ™bÉ™kÉ™nizdÉ™ deyilsÉ™, çapçı "
-"mə'lumatını vericidən almaq üçün buraya IP adres(lər)i və istəyə bağlı "
-"olaraq qapı nömrə(lər)sini daxil etmək məcburiyyətindəsiniz."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
-"%s darayıcı mə'lumat bazasında deyil, onu əllə quraşdırmaq istəyirsiniz?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "Açılışda gecikmə müddəti"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Restrict command line options"
-msgstr "Æmr sÉ™tiri seçimlÉ™rini mÉ™hdudlaÅŸdır"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "East Europe"
-msgstr "Şərqi Avropa"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "Boş sahəni istifadə et"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "dhcp istifadÉ™ et"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr "Poçtla xəbər vermə"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Internet configuration"
-msgstr "İnternet qurğuları"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr "Özbəkistan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected %s"
-msgstr "%s tapıldı"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Ça_pçıları avtomatik təsbit et"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "Qurtar"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Avtomatik seçili paketləri göstər"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr "Toqo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "Çəyirdək tərəfindən raport edilən CPU bayraqları"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Nəsə səhv işlədi! - mkisofs quruludur?"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "Xahiş edirik, təkrar sınayın"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The model is correct"
-msgstr "Model düzgündür"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT ölçüləndirilməsi bacarılmadı: %s"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr "Fərdi paket seçimi"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr "Bu bölmə ölçüləndirilə bilməz"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr "Mövqe"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "USA (kabel-hrc)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "Qvatemala"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr "Journalised FS"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr "Eternet kartlarının promiscuity yoxlaması"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
-msgstr "Bu sistem"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS sürücü hərfi: %s (bir təxmindir)\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr "Bahreyn"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Fayl ya da cərgələri seçib, 'Oldu' düyməsinə basın"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit scsi modules"
-msgstr "scsi modulları keç"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "cpu ailəsi (nüm: i686 sinifi üçün 6)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Şəbəkədən quraşdırması apardığınız üçün şəbəkəniz onsuzda quruludur.\n"
-"Qurğuları saxlamaq üçün Oldu'ya, İnternet və Şəbəkə qurğularınızı yenidən "
-"quraşdırmaq üçün isə Ləğv et'ə basın.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
-msgstr "Günlük təhlükəsizlik yoxlamalarını icra et"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Klavatura düzülüşü: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"Burada, sisteminizə bağlı çapçıların uzaqdakı sistemlər və hansıları "
-"tərəfindən istifadə edilə biləcəyini tə'yin edə bilərsiniz."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr "Malta (US)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "Açılış disketi yaradılması müvəffəqiyyətlə başa çatdı \n"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Bütün Şəbəkə Fayl Sistemlərini (NFS), SMB (Lan Manager/Windows), və \n"
-"NCP (NetWare) bağlama nöqtələrini bağlar və ayırır."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Launch the wizard"
-msgstr "Sehirbazı işə sal"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Tvcard"
-msgstr "Televiziya kartı"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Normal modla mütəxəssis modu arasında keç"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr "Böyüklük"
-
-#: ../../help.pm:1
-#, c-format
-msgid "GRUB"
-msgstr "GRUB"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr "Qrinland"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "Cümə Axşamı"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Düzgün kaset adı deyil. Kasedin adı %s qoyulub."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
+" - NoVideo: Bəlkə Apple video avadanlığı problem çıxarda bilər.Onda bu "
+"seçənəklə\n"
+"sistemi 'novideo' modda təbii framebuffer dəstəyi ilə aça bilərsiniz.\n"
"\n"
-"What would you like to do?"
-msgstr ""
-"İnternet Bağlantısı Bölüşdürülməsi qurulması artıq bitdi.\n"
-"Və artıq fəallaşdırılmışdır.\n"
"\n"
-"Nə etmək istəyirsiniz?"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Bütün NBI'ləri Sil"
+" - Æsas: Bu seçənÉ™klÉ™ Linuks sistemi É™sas É™mÉ™liyyat sistemi halına gÉ™tirÉ™ "
+"bilərsiniz.\n"
+"Onda ENTER düyməsinə basmaqla Linuks sistemi açılacaqdır. Bu giriş ayrıca "
+"TAB ilə açılış seçkilərinə baxdığınız vaxt \n"
+"'*' işarətilə işıqlandırılacaqdır."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:828
+#, fuzzy
msgid ""
-"This dialog allows you to fine tune your bootloader:\n"
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
"\n"
-" * \"%s\": there are three choices for your bootloader:\n"
+"Yaboot's main options are:\n"
"\n"
-" * \"%s\": if you prefer grub (text menu).\n"
+" * Init Message: a simple text message displayed before the boot prompt;\n"
"\n"
-" * \"%s\": if you prefer LILO with its text menu interface.\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"
-" * \"%s\": if you prefer LILO with its graphical interface.\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"
-" * \"%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"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
-" * \"%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"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\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"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
-"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
-"are normally reserved for the expert user."
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
msgstr ""
-"Bu dialoq açılış yükləyicinizi sazlama imkanı verəcək:\n"
+"Yaboot NewWorld MacIntosh avadalığı üçün açılış idarəcisidir. Ayrıca\n"
+"GNU/Linuks, MacOS, və ya MacOSX sistemlərini kompüterinizdə varsa, "
+"açacaqdır.\n"
+"Normalda, bu əməliyyat sistemləri düzgün tapılıb qurula bilirlər\n"
+"ÆgÉ™r belÉ™ olmazsa, bu ekrandan É™llÉ™ lazımi qurÄŸuları girÉ™ bilÉ™rsiniz.\n"
+"Düzgün parametrləri girib girmədiyinizi yaxşıca bir yoxlayın.\n"
+"\n"
+"\n"
+"Yaboot ana seçənəkləri:\n"
"\n"
-" * \"%s\": açılış yükləyiciniz üçün üç seçim mövcuddur:\n"
"\n"
-" * \"%s\": əgər grub arzulayırsanız (mətn menyusu).\n"
+" - Başlanğıc İsmarıcı: Açılışdan əvvəl çıxan sadə bir ismarıc.\n"
"\n"
-" * \"%s\": əgər mətn menyulu LILO arzulayırsanız.\n"
"\n"
-" * \"%s\": əgər qrafiki menyulu LILO arzulayırsanız.\n"
+" - Açılış Avadanlığı: GNU/Linuksu hardan başlatmaq istədiyinizi bildirir."
+"Ümumiyyətlə bu mə'lumatı daha əvvəl \"bootstrap\" quraşdırılması "
+"sırasındabildirmiş olacaqsınız.\n"
+"\n"
+"\n"
+" - Açıq Firmware Gecikməsi: LILOdan fərqli olaraq, yabootda iki dənə "
+"gecikmə vardır\n"
+"Birinci gecikmə saniyələrlə ölçülür və bu arada siz\n"
+"CD, OF açılışı, MacOS və ya Linuks arasında seçki aparmalısınız.\n"
"\n"
-" * \"%s\": Adətən əsas olan (\"%s\") qurğusunu dəyişməyəcəksiniz,\n"
-"ancaq arzu edirsinizsə, açılış yükləyicisini ikinci sürücü (\"%s\"),hətda\n"
-"disket sürücüsü (\"%s\")'ya belə qura bilərsiniz;\n"
"\n"
-" * \"%s\": kompüter yeni açılanda ya da yenidən başladılanda bu vaxt\n"
-"istifadəçiyÉ™ seçimini etmÉ™si üçün tanınacaq. ÆgÉ™r bu vaxt içindÉ™ heç bir\n"
-"seçim edilməzsə əsas seçim açılacaq.\n"
+" - Kernel Açılış Vaxt Dolması: Bu vaxt dolması LILO açılış gecikməsinə "
+"uyğun gəlir. Linuksu\n"
+"seçdikdən sonra ana kernel parametri olaraq bu gecikmə 0.1 saniyə olaraq "
+"qurulu olacaqdır.\n"
"\n"
-"!! Diqqət: əgər \"%s\" düyməsi ilə açılış yükləyicisini qurmamağı "
-"istədinizsə,\n"
-"Mandrake Linuksu açacaq bir üsulunuzun olduğundan əmin olmalısınız!\n"
-"ÆgÉ™r bu mövzuda dÉ™rin biliklÉ™rÉ™ malik deyilsÉ™niz, seçimlÉ™rdÉ™n hÉ™r hansı\n"
-"birisini dəyişdirməyi sizə məsləhət görmürük!!\n"
"\n"
-"\"%s\" düyməsinə basaraq isə normalda yalnız mütəxəssis istifadəçilər üçün\n"
-"mövcud olan seçimlər dialoqunu görə bilərsiniz."
+" - CD Açılışı Fəallaşsınmı?: Bu seçənəklə CDdən açılışı timsal edən 'C' "
+"xarakteri ilk açılışda çıxacaqdır.\n"
+"\n"
+"\n"
+" - OF Açılışı Fəallaşsın?: Bu seçənəklə OFdən (Open Firmware) açılışını "
+"timsal edən 'N' xarakteri\n"
+"ilk açılışda çıxacaqdır.\n"
+"\n"
+"\n"
+" - Ana OS: OF gecikməsi müddəti dolduğu vaxt hansı OSnin açılacağını "
+"göstərir."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../help.pm_.c:860
msgid ""
-"if set, send the mail report to this email address else send it to root."
-msgstr "seçilidirsə, raportu bu ünvana yolla, əks halda raportu root'a yolla."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Necə bir XFree qurğusunu istəyirsiniz?"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "More"
-msgstr "Daha Çox Seçim"
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
+"\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
+"\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
+"\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\n"
+"\n"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\n"
+"\n"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\n"
+"\n"
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:891
+#, fuzzy
msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
-"Bu, 'cdrecord' əmr sətiri proqramı ilə eyni sintaksisi işlədir. 'cdrecord -"
-"scanbus' sizə eyni zamanda avadanlıq nömrəsini də göstərəcək."
+"Linuks Mandrakeni yükləmak üçün sürücüyü seçin.\n"
+"Diqqətli olun, sürücüdəki bütün mə'lumatlar silinəcək\n"
+"və geri gəlməyəcək."
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:896
+#, fuzzy
msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which can "
-"accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should choose a lower level."
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"Bu təhlükəsizlik səviyyəsiylə sistemin bir verici olaraq istifadəsi "
-"mümkündür.\n"
-"Təhlükəsizlik, birdən çox alıcının bağlanmasına icazə verəcək şəkildə "
-"artırılmışdır. \n"
-"Qeyd: əgər sisteminiz İnternet üstündə sadə bir alıcıdırsa, daha aşağı olan "
-"səviyyəni seçin."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Server Name"
-msgstr "Verici Adı"
+"Sürücüdəki bütün bilgiləri və bölmələri silmək üçün\n"
+"\"Oldu\" düyməsinə basın. Diqqətli olun,\"Oldu\" düyməsinə basdıqdan sonra\n"
+"Windows bilgiləri də daxil olmaq üzərəbütün bölmə mə'lumatı geri dönməyəcək "
+"şəkildə silinəcək.\n"
+"\n"
+"\n"
+"Bölmədəki mə'lumatları qoruyaraq \"Ləğv et\" düyməsinə\n"
+"əməliyyatı ləğv edə bilərsiniz."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../install2.pm_.c:111
#, c-format
-msgid "Account Password"
-msgstr "Hesap Şifrəsi"
+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 ""
-#: ../../standalone/drakhelp:1
+#: ../../install2.pm_.c:167
#, c-format
-msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
+msgid "You must also format %s"
msgstr ""
-"%s göstərilə bilmir \n"
-". Bu növ üçün Yardım girişi yoxdur\n"
-#: ../../any.pm:1
+#: ../../install_any.pm_.c:423
#, 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"
+"You have selected the following server(s): %s\n"
"\n"
-"On which drive are you booting?"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
msgstr ""
-"Açılış yükləyicisini bir bölmə üstünə qurma qərarı verdiniz.\n"
-"Bu o deməkdir ki sizin onsuzda bir açılış yükləyiciniz var. (mis: System "
-"Commander).\n"
+"bu vericiləri seçdiniz: %s\n"
+"\n"
+"\n"
+"bu vericilər əsasən fəallaşdırılır. Onların heç bir təhlükəsizlik\n"
+"problemləri yoxdur, amma bə'zi xətalar tapıla bilər. Belə olsa, mümükün olan "
+"ən yaxın zamanda güncəlləməlisiniz.\n"
+"\n"
"\n"
-"Hansı sürücü üstündən açılış edirsiniz?"
+"Bu vericiləri qurmaq istəyirsiniz?\n"
-#: ../../install_interactive.pm:1
+#: ../../install_any.pm_.c:441
#, c-format
msgid ""
-"WARNING!\n"
+"The following packages will be removed to allow upgrading your system: %s\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 ""
-"XÆBÆRDARLIQ!\n"
"\n"
-"DrakX indi Windows disk bölmənizin böyüklüyünü dəyişdirəcək.\n"
-"Diqqətli olun, bu təhlükəli ola bilər. Hələ də etmədinizsə qurulumdan\n"
-"çıxın və Windows altında scandisk (lazım gələrsə defrag da) proqramını\n"
-"icra edin. Eyni zamanda mə'lumatlarınızın da ehtiyat nüsxəsini alın.\n"
-"Ardından quruluma davam edin.\n"
-"Hazır olanda, Oldu düyməsinə basın."
+"Do you really want to remove these packages?\n"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tajik keyboard"
-msgstr "Tacik klaviaturası"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
+msgstr "NİS domeyni olmadan translasiya işlədilə bilməz"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:879
#, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "%s sürücüsünə FAT şəkilləndirilmiş bir disket taxın"
+
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
+msgstr "Bu floppi FAT şəklində deyildir"
+
+#: ../../install_any.pm_.c:895
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"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-"Çap hovuzunu %s yerinə %s etmək üçün çapçı qurğularınızı köçürəbilərsiniz. "
-"Bütün qurğu mə'lumatı (çapçı adı, izahatı, yeri, bağlantı növüvə əsas "
-"seçimlər) köçürüldüyü vaxt, sırada olan vəzifələr transfer edilməyəcək.\n"
-"Qeyd: Aşağıdakı səbəplərdən ötrü bütün sıralar transfer edilə bilməz:\n"
+"Bu saxlanmış paketlər seçkisini işlətmək üçün qurulumu ``linux "
+"defcfg=floppy''ilə başladın."
-#: ../../standalone/drakfont:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, c-format
-msgid "Font List"
-msgstr "Yazı Növü Siyahısı"
+msgid "Error reading file %s"
+msgstr "%s faylı oxunurkan xəta oldu"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_any.pm_.c:1040
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."
+"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 ""
-"Siz Open Firmware açılış avadanlığınızı açılış yükləyicisini\n"
-"fəallaşdırmaq üçün dəyişdirməli ola bilərsiniz. Command-Option-O-F "
-"düymələrini\n"
-" yenidən başlarkən basın və bunları girin:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Sonra da bunları yazın: shut-down\n"
-"Bir sonrakı başlanğıcda açılış yükləyicisi sətirini görməlisiniz."
+"Bir xəta oldu. Yeni fayl sisteminin yaradılacağı hökmlü bir sürücü "
+"tapılmadı. Bu problemin qaynağı üçün avadanlığınızı yoxlayın"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_interactive.pm_.c:21
#, 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"
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"Dünyadan kənar yerdən gələn ya da namə'lum\n"
-" sisteminiz var, yaboot açılış yükləyicisi sizin üçün işləməyəcək.\n"
-"Qurulum davam edəcək ancaq kompüterinizi aça bilmək üçün\n"
-" BootX ya da başqa vasitədən istifadə etməlisiniz"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Select file"
-msgstr "Fayl seç"
+"Sisteminizdaki bə'zi avadanlıqlar işləməsi üçün düzgün sürücülərə ehtiyac "
+"duyar.\n"
+"Bunun haqqında %s də/a lazımi malumatları tapa bilərsiniz"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:56
msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr "Yerli çapçıların mövcud ediləcəyi şəbəkə ya da qovşağı seçin:"
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"Bir root disk bölümüna ehtiyacınız var.\n"
+"Bunun üçün istər mövcud bir disk bölümü üzərina tıqlayın, \n"
+"ya da yeni birini başdan yaradın. Sonra \"Bağlama \n"
+"Nöqtəsi\"nə gəlin va burayı '/' olaraq dəyişdirin."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
+msgstr "Bir swap sahəsinə ehtiyacınız var"
+
+#: ../../install_interactive.pm_.c:62
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"
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"Eləcə də bir çox proqramın \"Çap əmri\" sahəsində bu əmrlərdənbirini işlədə "
-"bilərsiniz. Yalnız bu cür istifadədə çap ediləcək faylın adını proqram "
-"verəcəyi üçün fayl adı verilməz.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "Yaponiya"
+"Bir swap sahəniz yoxdur\n"
+"Davam edim?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print option list"
-msgstr "Seçimlər siyahısını göstər"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+#, fuzzy
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Bir swap sahəsinə ehtiyacınız var"
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "Dəyişikliklər edildi, ancaq effektiv olmaq üçün yenidən giriş edin"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
+msgstr "Boş sahəni istifadə et"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
-msgstr "Ölkə / Bölgə"
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
+msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search servers"
-msgstr "Vericiləri axtar"
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
+msgstr "Var olan bölmələri işlədimmi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "NCP növbə adı əksikdir!"
+#: ../../install_interactive.pm_.c:102
+msgid "There is no existing partition to use"
+msgstr "Bölmə cədvəli qurtarılmağa çalışılır"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Diqqət, başqa internet bağlantısı aşkar edildi, güman ki şəbəkənizi istifadə "
-"edir"
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
+msgstr "Loopback üçün Windows bölməsini işlət"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "\"%s\" adlı Cd-Rom"
+#: ../../install_interactive.pm_.c:112
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Linuks4Win'i qurmaq üçün hansı disk bölməsini istifadə edəcəksiniz?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr "CDRW mediyası"
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
+msgstr "Böyüklüklərini seçin"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Yüksək keyfiyyət təsadüfi rəqəm istehsal edən sistem entropi hovuzunun \n"
-"saxlanması və yenidən köhnə halına gətirilməsinə imkan verər."
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
+msgstr "Kök (root) bölməsi böyüklüyü (Mb): "
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr "Kompüterinizi e'tibarlı vericiyə dönüşdürün"
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr "Swap sahəsi böyüklüyü (Mb): "
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr "/etc/shadow'dakı boş şifrəni yoxla"
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
+msgstr "Windows bölməsindəki boş sahəni işlət"
-#: ../../network/network.pm:1
-#, c-format
-msgid " (driver %s)"
-msgstr " (sürücü %s)"
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
+msgstr "Hansı bölmənin böyüklüyünü dəyişdirəcəksiniz?"
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
-msgstr "İstənəndə başlat"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "Fat fayl sistemi ucları hesaplanır"
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
-"Loopback file(s):\n"
-" %s\n"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-"Loopback fayl(lar)ı:\n"
-" %s\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr "Bilmirəm"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP qovşaq \"%s\", qapı %s"
+"FAT tədqiqatçımız sizin bölümləri işlədə bilmir,\n"
+"bu xəta oldu: %s"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../install_interactive.pm_.c:137
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?"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-"Avtomatik qurulum disketi yaradmaq üzrəsiniz. Bu xüsusiyyət biraz "
-"təhlükəlidir və diqqətlə istifadə edilməlidir.\n"
-"\n"
-"Bu xüsusiyyətlə, siz, daha əvvəl həyata keçirmiş olduğunuz qurulumun "
-"eynisini təkrarlaya bilərsiniz.\n"
-"\n"
-"Maksimal təhlükəsizlik səbəbi ilə, bolmələmə və şəkilləndirmə sistemi "
-"qurarkən necə qurğuladığınıza baxmayaraq qətiyyən təkrarlanmayacaq.\n"
-"\n"
-"Davam etmək istəyirsiniz?"
+"Sizin Windows bölümü çox dağınıqdır. Daxiş edirik, əvvəlcə birləşdirin "
+"(defraq)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Telugu"
-msgstr "Telugu"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:138
+#, fuzzy
msgid ""
+"WARNING!\n"
"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
+"DİQQÆT!\n"
"\n"
-"\n"
-"Səs kartınız hazırda %s\"%s\" sürücüsünü işlədir (kartınızın əsas sürücüsü "
-"\"%s\"dir)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Uninstall"
-msgstr "Silmə Sonrası"
+"DrakX \"Windows\" disk bölmənizin böyüklüyünü dəyişdirəcək. Bu iş \n"
+"tehlükəli ola bilər. Aşina deyil isəniz qurulumdan çıxın və \"Windows\" \n"
+"altında \"Scandisk\" (lazım gələrsə \"defrag\" da) proqramını çalışdırın. "
+"Ardından quruluma \n"
+"davam edin. Verilərinizin yedəyini almağı da unutmayın!"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connecting to Internet "
-msgstr "İnternetə Bağlanır"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid level"
-msgstr "Cpuid səviyyəsi"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Hansı sektora daşımaq istəyirsiniz?"
-#: ../../printer/main.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Novell vericisi \"%s\", çapçı \"%s\""
+msgid "partition %s"
+msgstr "bölmə %s"
-#: ../../keyboard.pm:1
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "Mongolca (kiril)"
+msgid "FAT resizing failed: %s"
+msgstr "FAT böyüklüyü dəyişdirilməsi bacarılmadı: %s"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Add a module"
-msgstr "Modul əlavə et"
+#: ../../install_interactive.pm_.c:171
+msgid ""
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
+msgstr "FAT bölməsi yoxdur ya da loopback üçün lazımi yer buraxılmayıb"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr "Silinəcək profil:"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr "Bütün diski sil"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Local measure"
-msgstr "Yerli ölçü vahidi"
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr "\"Windows\"u sil"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
-msgstr "Xəbərdarlıq : %s IP ünvanı çox vaxt tutulmuş olur !"
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+"Sizin birdən çox diskiniz var, linux qurmaq üçün hansını istifadə "
+"edəcəksiniz?"
-#: ../../mouse.pm:1
+#: ../../install_interactive.pm_.c:183
#, c-format
-msgid "busmouse"
-msgstr "busmouse"
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+"%s bölüməsinin böyüklüyü dəyişdirildikdən sonra bu bölmədəki bütün "
+"mə'lumatlar silinəcəkdir"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Etherboot DÉ™stÉ™kli Açılış ÆkslÉ™ri Yaradın:\n"
-" \tÇəyirdəyi etherboot vasitəsi ilə açmaq üçün, xüsusi kernel/initrd "
-"əksi yaradılmalıdır.\n"
-" \tmkinitrd-net bu işin əsas hissəsini həll edir və drakTermServ "
-"yalnız bu əksləri idarə\n"
-" \tetmək/xüsusiləşdirmək üçün bir qrafiki ara üzdür. \n"
-" \tdhcpd.conf faylı içində inlcude olaraq çağırılan \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include faylını yaratmaq üçün,\n"
-" \tən az bir tam çəyirdək üçün etherboot əksləri yaratmalısınız."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Hesab Girişi (istifadəçi adı)"
+#: ../../install_interactive.pm_.c:191
+msgid "Custom disk partitioning"
+msgstr "Hazırkı disk bölmələndirməsi"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
-msgstr "Fdiv xətası"
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr "Fdisk istifadÉ™ et"
-#: ../../network/drakfirewall.pm:1
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-"drakfirewall quraşdırıcısı\n"
-"\n"
-"Daha irəli getmədən Şəbəkə/İnternet bağlantınızı drakconnect\n"
-"vasitəsi ilə quraşdırdığınızdan əmin olun."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr "Translasiya edilən icmp echo'nu qəbul et"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr "Uruqvay"
+"İndi %s sabit diskinizi bölmələndirə bilərsiniz\n"
+"İşinizi bitirdiyinizdə `w' ilə qeyd etməyi unutmayın"
-#: ../../lang.pm:1
-#, c-format
-msgid "Benin"
-msgstr "Benin"
+#: ../../install_interactive.pm_.c:227
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Heç Windows disk bölməniz yoxdur!"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "SMB/Windows vericisi \"%s\", bölüşülmüş sahə \"%s\""
+#: ../../install_interactive.pm_.c:243
+msgid "I can't find any room for installing"
+msgstr "Artıq bölmə əlavə edilə bilməz"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path selection"
-msgstr "Cığır seçkisi"
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "DrakX bölmə sehirbazı bu yolu tapdı:"
-#: ../../standalone/scannerdrake:1
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid "Name/IP address of host:"
-msgstr "Qovşağın Adı/IP ünvanı:"
+msgid "Partitioning failed: %s"
+msgstr "Bölmə cədvəli növü: %s"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr "Şəbəkə fəallaşdırılır"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom & system settings"
-msgstr "Xüsusi və sistem qurğuları"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr "Şəbəkə dayandırılır"
-#: ../../partition_table/raw.pm:1
-#, c-format
+#: ../../install_steps.pm_.c:76
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."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"Sürücünüzdə bə'zi pis şeylər baş verir.\n"
-"Mə'lumatın bütövlüyünün yoxlanması bacarılmadı. \n"
-"Bu o demekdir ki diskə yazılan hər şey təsadüfi və pozulmuş olacaq."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Çapçı qovşaq adı ya da IP'si əksikdir!"
+"Bir xəta oldu, fəqət necə düzəldiləcəyini bilmirəm.\n"
+"Davam edin, riski sizÉ™ aitdir!"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr ""
-"Xahiş edirik, ehtiyat nüsxəsinə daxil etmək istədiyiniz bütün istifadəçiləri "
-"seçin."
+msgid "Duplicate mount point %s"
+msgstr "%s bağlama nöqtəsini çoxalt"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps.pm_.c:380
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+"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 ""
-"%s printerdrake tərəfindən quraşdırılmalıdır.\n"
-"Printerdrake'ni Mandrake İdarə Mərkəzindəki Avadanlıq bölməsindən işə sala "
-"bilərsiniz."
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Key isn't writable"
-msgstr "XawTV qurulu deyil!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bangladesh"
-msgstr "BanqladeÅŸ"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
-msgstr "Yaponiya (kabel)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Initial tests"
-msgstr "Başlanğıc sınamaları"
+"Bəzi paketlər doğru olaraq qurulumu bitirmədi.\n"
+"cdrom sürücünüz ya da cdromunuz düzgün işləmir.\n"
+"ÆvvÉ™ldÉ™n Linuks qurulu bir sistemdÉ™ \"rpm -qpl Mandrake/RPMS/*.rpm\"'yi\n"
+"istifadə edərək Cd-Rom'u yoxlayın.\n"
-#: ../../network/isdn.pm:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "Continue"
-msgstr "Davam et"
+msgid "Welcome to %s"
+msgstr "%s Sisteminə Xoşgəlmişsiniz"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom Restore"
-msgstr "Xüsusi Geri Qaytarma"
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr "Disket sürücü yoxdur"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "Saturday"
-msgstr "Şənbə"
+msgid "Entering step `%s'\n"
+msgstr "Başlanğıc addımı `%s'\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:146
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."
+"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 ""
-"\"%s\": əgər sisteminizdə səs kartı tapılıbsa burada göstəriləcək.\n"
-"ÆgÉ™r burada göstÉ™rilÉ™n sÉ™s kartının sisteminizdÉ™kindÉ™n fÉ™rqli olduÄŸu\n"
-"nəzərinizə çatsa, düyməyə basıb başqa bir sürücü seçə bilərsiniz."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the root umask."
-msgstr "Ali istifadəçi umask'ını seç."
-
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "%s faylı oxunurkan xəta oldu"
+"Sizin sisteminizin qaynaqları çatışmır. Qurulum ərzində problem yaşaya "
+"bilərsiniz\n"
+"Bu baş verərsə mətn aracılığı ilə qurulumu sınamalısınız. Bunun üçün "
+"dəCDROMdan başlatdığınız zaman,\n"
+" 'F1'ə basın və 'text' yazaraq enter'ə basın."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr "Skript əsaslı"
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr "Qurulum Sinifi"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "PLL setting:"
-msgstr "PLL qurÄŸusu:"
+#: ../../install_steps_gtk.pm_.c:160
+#, fuzzy
+msgid "Please choose one of the following classes of installation:"
+msgstr "Xahiş edirik aşağıdakı qurulum siniflərindən birisini seçiniz:"
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "/boot/efi ünvanına bağlanmış FAT bölməniz olmalıdır"
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
+msgstr "Paket Qrup Seçkisi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
-msgstr "üstündə"
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
+msgstr "Fərdi paket seçkisi"
-#: ../../diskdrake/dav.pm:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid "The URL must begin with http:// or https://"
-msgstr "URL http:// ya da https:// ilə başlamalıdır"
+msgid "Total size: %d / %d MB"
+msgstr "Ümumi böyüklük: %d / %d Mb"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Çapçıya yetişə bilmək üçün birbaşa URI verə bilərsiniz. URI, ya CUPS ya "
-"daFoomatic xassələrini daxil etməlidir.Qeyd: Her URI növünü her çap hovuzu "
-"dəstəkləməz."
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
+msgstr "Xətalı paket"
-#: ../../any.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "Digər sistemlər (SunOS...)"
+msgid "Name: %s\n"
+msgstr "Ad: %s\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid "Install/Upgrade"
-msgstr "Qurulum/Yeniləmə"
+msgid "Version: %s\n"
+msgstr "Buraxılış: %s\n"
-#: ../../install_steps_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid "%d packages"
-msgstr "%d paket"
+msgid "Size: %d KB\n"
+msgstr "Böyüklüyü: %d KB\n"
-#: ../../crypto.pm:1 ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
-msgid "Costa Rica"
-msgstr "Kosta Rika"
+msgid "Importance: %s\n"
+msgstr "ÆhÉ™miyyÉ™t: %s\n"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:360
msgid ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Backup and Restore application\n"
-"\n"
-"--default : save default directories.\n"
-"--debug : show all debug messages.\n"
-"--show-conf : list of files or directories to backup.\n"
-"--config-info : explain configuration file options (for non-X "
-"users).\n"
-"--daemon : use daemon configuration. \n"
-"--help : show this message.\n"
-"--version : show version number.\n"
-msgstr ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Backup and Restore application\n"
-"\n"
-"--default : əsas cərgələri qeyd et.\n"
-"--debug : bütün xəta ayırma ismarışlarını göstər.\n"
-"--show-conf : eht. nüsxəsi alınacaq fayl və cərgələrin siyahısı.\n"
-"--config-info : quraşdırma faylı seçimlərini başa sal (X istifadəçisi "
-"olmayanlar üçün).\n"
-"--daemon : demon quraşdırmasını işlət. \n"
-"--help : bu ismarışı göstər.\n"
-"--version : buraxılış nömrəsini göstər.\n"
+"You can't select this package as there is not enough space left to install it"
+msgstr "Bu paketi seçə bilməzsiniz, çünki qurmaq üçün yer çatmır."
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain Authentication Required"
-msgstr "Domen Səlahiyyətləndirməsi Məcburidir"
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
+msgstr "Aşağıdakı paketlər qurulacaqdır"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Use libsafe for servers"
-msgstr "Vericilər üçün libsafe işlət"
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
+msgstr "Aşağıdakı paketlər sistemdən silinəcəklər"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Icelandic"
-msgstr "İslandiya dili"
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
+msgstr "Bu paketi seçə bilməzsiniz/sistemdən çıxarda bilməzsınız"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
-msgstr ""
-"\n"
-"İstifadə qaydası: %s [--auto] [--beginner] [--expert] [-h|--help] [--"
-"noauto] [--testing] [-v|--version] "
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Bu lazımlı bir paketdir, sistemdən çıxardıla bilməz"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
+msgstr "Bu paketi sistemdən çıxarda bilməzsınız. Artıq qurulmuşdur."
+
+#: ../../install_steps_gtk.pm_.c:395
msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
-"Drakbackup üçün\n"
-"icazə verilən maksimal böyüklük (MB)"
+"Bu paket yenilənməlidir\n"
+"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Dairəvi bağlama %s\n"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "Bu paketi sistemdən çıxarda bilməzsiniz. Yenilənməlidir"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo/grub mode"
-msgstr "Lilo/grub modu"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
+msgstr "Avtomatik seçili paketləri göstər"
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "Martiniq"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr "Qurulum"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Sabit Disk / NFS"
+#: ../../install_steps_gtk.pm_.c:407
+#, fuzzy
+msgid "Load/Save on floppy"
+msgstr "DisketÉ™ qeyd et"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Old user list:\n"
-msgstr "Köhnə istifadəçi siyahısı:\n"
+#: ../../install_steps_gtk.pm_.c:408
+#, fuzzy
+msgid "Updating package selection"
+msgstr "Paket seçkilərini saxla"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
-msgstr "Ehtiyatları Axtar"
+#: ../../install_steps_gtk.pm_.c:413
+#, fuzzy
+msgid "Minimal install"
+msgstr "Qurulumdan çıx"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "a number"
-msgstr "ədəd"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
+msgstr "Qurmaq istədiyiniz paketləri seçin"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "İsveçcə"
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr "Qurulur"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Hansı %s sürücüsü sınansın?"
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr "Təxmini olaraq hesaplanır"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr "Seçili xidmətlərdən biri işləməsə sizə xəbər göndəriləcək"
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr "Qalan müddət"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Weekday"
-msgstr "Həftənin Günü"
+#: ../../install_steps_gtk.pm_.c:469
+msgid "Please wait, preparing installation..."
+msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid "Filesystem types:"
-msgstr "Fayl sistemi növü:"
+msgid "%d packages"
+msgstr "%d paket"
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "Northern Mariana Islands"
-msgstr "Şimali Marian Adaları"
+msgid "Installing package %s"
+msgstr "%s paketi qurulur"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", HP JetDirect üstündə çox funksiyalı avadanlıq"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "Qəbul Et"
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "heç biri"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
+msgstr "Rədd Et"
-#: ../../standalone/drakconnect:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
+"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 ""
-"Yaradılacaq yeni profilin adı (yeni profil hazırkının cütü olaraq "
-"yaradılır) :"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Floppy"
-msgstr "Disket"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "Ghostscript əsaslanması"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Bootloader"
-msgstr "Açılış yükləyicisi"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
-msgstr "tcp_wrapper'lər tərəfindən idarə edilən bütün xidmətlərə icazə ver"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "Daşı"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Bootloader to use"
-msgstr "İstifadə ediləcək Açılış idarəcisi"
+"Cd-Romu dəyişdirin!\n"
+"\n"
+"\"%s\" adlı Cd-Romu sürücünüzə taxın və OLDU'ya basın.\n"
+"ÆgÉ™r Cd-Rom É™linizdÉ™ deyilsÉ™ bu Cd-Rom'dan qurmamaq üçün İMTİNA ET'É™ basın."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "SMB verici adı"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
+msgstr "Yenə də davam edək?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Name Servers:"
-msgstr "Ad Vericiləri:"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
+msgstr "Paketləri istərkən bir xəta oldu:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Minute"
-msgstr "Dəqiqə"
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
+msgstr "Paketlər qurulurkən bir xəta oldu:"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:10
msgid ""
"\n"
"Warning\n"
@@ -7376,5958 +4641,4557 @@ msgstr ""
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Expert mode"
-msgstr "/_Mütəxəssis modu"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Bu çapçını Star Office/OpenOffice.org/GIMP proqramlarından çıxart"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtual Server, yüksək qabiliyyətli vericilər qurmaq üçün işlədilir."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr "Mikroneziya"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 milyard rəng (32 bits)"
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
+msgstr "Bir xəta oldu"
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
-msgstr "Lisenziya"
+#: ../../install_steps_interactive.pm_.c:85
+#, fuzzy
+msgid "Do you really want to leave the installation?"
+msgstr "Şəbəkəni yenidən başlatmaq istəyirsiniz?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "Açarların yaradılması biraz vaxt ala bilər."
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
+msgstr "Lisenziya sözləşməsi"
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
+"Introduction\n"
"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
-"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"
+"1. License Agreement\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"
+"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"
-"<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"
+"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"
-"<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"
+"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"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
"\n"
+"3. The GPL License and Related Licenses\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"
+"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"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-"Burada siz, sisteminizin təhlükəsizlik səviyyəsini və idarəsini quraşdıra "
-"bilərsiniz.\n"
+"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"
-"'Təhlükəsizlik Xəbərdarlıqları' seçimi seçilidirsə Təhlükəsizlik İdarəçisi "
-"təhlükəsizlik\n"
-"xəbərdarlıqlarını alacaq. Təhlükəsizlik İdarəçisi bir istifadəçi adı ya da "
-"ePoçt ola bilər.\n"
"\n"
+"5. Governing Laws \n"
"\n"
-"Təhlükəsizlik Səviyyəsi menyusu əvvəlcədən quraşdırılmış 6 təhlükəsizlik "
-"səviyyəsi \n"
-"arasından birisini seçmə imkanı verir. \n"
+"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 ""
+"Introduction\n"
"\n"
+"The operating system and the different components available in the Linuks-"
+"Mandrake 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 Linuks-Mandrake distribution.\n"
"\n"
-"<span foreground=\"royalblue3\">Zəif</span>: Tamamilə e'tibarsız yalnız\n"
-"işlədilməsi çox asan təhlükəsizlik səviyyəsidir. Bu səviyyə yalnız heç bir\n"
-"şəbəkəyə ya da internetə bağlı olmayan və hərkəs tərəfində yetişilə "
-"bilməyən\n"
-"kompüterlər üçün seçilə bilər.\n"
"\n"
-"<span foreground=\"royalblue3\">Standart</span>: Bu internetə alıcı \n"
-"olaraq bağlanacaq bir kompüter üçün standart təhlükəsizlik səviyyəsidir.\n"
+"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"
-"<span foreground=\"royalblue3\">Yüksək</span>: Bə'zi məhdudiyyətlər\n"
-"olacaq və hər gecə daha çox avtomatik yoxlama işə salınacaq.\n"
"\n"
+"2. Limited Warranty\n"
"\n"
-"<span foreground=\"royalblue3\">Daha Yüksək</span>: Birdən çox\n"
-"alıcıdan bağlantıları qəbul edən bir verici üçün bu təhlükəsizlik səviyyəsi\n"
-"qÉ™bul edilÉ™ bilÉ™r. ÆgÉ™r sisteminiz internet üstündÉ™ yalnız bir alıcıdırsa\n"
-" daha alçaq səviyyə seçin.\n"
+"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"
-"<span foreground=\"royalblue3\">Paranoid</span>: Bu, bir əvvəlki \n"
-"səviyyəyə oxşayır yalnız sistem tamamilə bağlıdır və təhlükəsizlik\n"
-"xassələri maksimal vəziyyətdədir."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr "Çapçının avtomatik aşkar edilməsi (Yerli, TCP/Soket, və SMB çapçıları)"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr "Sagem (pppoa işlədən) usb"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"Bir xəta oldu. Yeni fayl sisteminin yaradılacağı hökmlü bir sürücü "
-"tapılmadı. Bu problemin qaynağı üçün avadanlığınızı yoxlayın"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Başlarkən çap etmə sistemi işə salınır"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr "İşlədici ID'si"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr "Səs problemini həll et"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "Polyakca (QWERTY sırası)"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Add Printer"
-msgstr "/Çapçı Æ_lavÉ™ Et"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"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 Linuks-Mandrake 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"
-"Drakbackup activities via CD:\n"
"\n"
-msgstr ""
+"3. The GPL License and Related Licenses\n"
"\n"
-"CD üstündə Drakbackup fəaliyyətləri :\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"
-
-#: ../../printer/printerdrake.pm:1
-#, 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"
+"4. Intellectual Property Rights\n"
"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"%s çap sistemini %s təhlükəsizlik səviyyəsində icra edəcək bir quruluma "
-"başlamaq üzrəsiniz.\n"
+"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\", \"Linuks-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft S.A. \n"
"\n"
-"Bu çap sistemi, çap vəzifələrini gözlərkən və yazdırarkən bir arxa plan "
-"gedişatı olaraq işləyir. Bu gedişata şəbəkə üstündəki digər sistemlər yetişə "
-"bilər və buna görə də hücumlar da arta bilər. Digər yandan, yalnız bir neçə "
-"proqram bu təhlükəsizlik səviyyəsində əsasolaraq başladıla bilər.\n"
"\n"
-"Bu sistemdə həqiqətən də çap sisteminin quraşdırılmasını istəyirsiniz?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Qovşaq \"%s\", qapı %s"
+"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"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "Bu disk bölməsi loopback üçün işlədilə bilməz"
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr "Fayl onsuz da mövcuddur. İşlədilsin?"
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "Klaviatura"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
-msgstr "alındı: "
+#: ../../install_steps_interactive.pm_.c:218
+#, fuzzy
+msgid "Please choose your keyboard layout."
+msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr "Sağ Alt düyməsi"
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
+msgstr "Bütün mövcud klaviaturaların siyahısı"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "bu səs kartı üçün alternativ sürücülərin siyahısı"
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
+msgstr "Hansı qurulum sinifini istəyirsiniz?"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Şəbəkə Keçidi"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
+msgstr "Qurulum/Güncəlləmə"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr "Tonqa"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
+msgstr "Bu bir qurulum mu, yoxsa güncəlləməmidir?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "Tunis"
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr "Tövsiyə edilən"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing"
-msgstr "Darayıcı bölüşməsi"
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Usta"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr "Burada mə'lumatlarını görmək istədiyiniz avadanlığı sol tərəfdə seçin."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr "Avtomatik giriÅŸÉ™ icazÉ™ ver/vermÉ™."
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#, fuzzy
+msgid "Upgrade"
+msgstr "Güncəlləmə"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
-msgstr "XawTV qurulu deyil!"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#, fuzzy
+msgid "Upgrade packages only"
+msgstr "Paket seçkilərini saxla"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Kritik faylları daxil etmə (passwd, group, fstab)"
+#: ../../install_steps_interactive.pm_.c:282
+#, fuzzy
+msgid "Please choose the type of your mouse."
+msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "dev paketində işlədilən köhnə sabit avadanlıq adı"
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr "Siçan Qapısı"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
-msgstr "Qəribə IPv4 paketlərininm qeyd edilməsini fəallaşdır"
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
+msgstr "Siçanınızın bağlı olduğu serial Qapıyı seçin."
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
-msgstr "Bu etiket onsuzda istifadÉ™ edilib"
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
+msgstr "Düymə emulyasiyası"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"Çapçı Quraşdırma Sehirbazına Xoş Gəldiniz\n"
-"\n"
-"Bu sehirbaz kompüterinizə ya da birbaşa şəbəkəyə bağlı olan çapçı ya\n"
-"da çapçıları quraşdırmaqda sizə yardım edəcək.\n"
-"\n"
-"Xahiş edirik, bu kompüterə bağlı olan bütün çapçıları açın ki avtomatik "
-"aşkar edilə bilsinlər. Eyni zamanda şəbəkə kompüterləriniz də açıq "
-"olmalıdır.\n"
-"\n"
-"Qeyd edin ki, şəbəkə üstündəki çapçıların avtomatik aşkar edilməsi "
-"sisteminizÉ™\n"
-"bağlı olan çapçıların açkar edilməsindən daha uzun müddət alır, ona görə "
-"dÉ™ \n"
-"əgər onlara ehtiyacınız yoxdursa bunların avtomatik aşkar edilməsini "
-"bağlayın.\n"
-"\n"
-" Hazır olanda \"Sonrakı\" düyməsinə, çapçılarınızı indi quraşdırmaq "
-"istəmirsinizsə\"Ləğv Et\" düyməsinə basın."
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
+msgstr "Düymə 2 emulyasiyası"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
-msgstr "Yunanca (politonik)"
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
+msgstr "Düymə 3 emulyasiyası"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"%s bölməsi şəkilləndirildikdən sonra bu bölmədəki bütün mə'lumatlar itəcək."
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr "PCMCIA kartlar qurulur..."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection Time: "
-msgstr "Bağlantı Vaxtı:"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../standalone/livedrake:1
-#, 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."
-msgstr ""
-"Qurulum CD-Rom'unu sürücünüzə taxın və Oldu düyməsinə basın.\n"
-"ÆgÉ™r CD-Rom É™linizdÉ™ yoxdursa, Ləğv Et düymÉ™sinÉ™ basın."
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr "IDE qapıları qurulur"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use group id for execution"
-msgstr "İcra üçün qrup id'sini işlət"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "Æsas istifadəçini seçin:"
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr "uyğun bölmə tapılmadı"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "Qabon"
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
+msgstr "Bağlama nöqtələri üçün bölmələr daranır"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Uzaq CUPS vericiləri üçün burada heç bir qurğuyaa lüzüm yoxdur;Bu çapçılar "
-"avtomatik təsbit ediləcəkdir."
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr "Bağlama nöqtələrini seçin"
-#: ../../any.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:386
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."
+"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 ""
-"Mandrake Linuks müxtəlif dilləri dəstəkləyir. Qurmaq istədiyiniz\n"
-"dilləri seçin. Onlar qurulum tamamlanandan və sistem yenidən\n"
-"başlayandan sonra istifadəyə hazır olacaqlar."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr "Ehtiyatları bu qovşağa qoylmaq üçün cərgə (ya da modul)"
+#: ../../install_steps_interactive.pm_.c:395
+#, fuzzy
+msgid "No root partition found to perform an upgrade"
+msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain"
-msgstr "Domen"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr "Kök (root) Bölməsi"
-#: ../../any.pm:1
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Ümumi yaddaş miqdarı (%d MB tapıldı)"
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr "Sisteminizin kök (/) bölməsi hansıdır?"
-#: ../../help.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-"LILO və grub ikisi də GNU/Linuks açılış yükləyiciləridir. Normalda bu "
-"mərhələ\n"
-"tamamilə avtomatikdir. DrakX diskin kök sektorunu yoxlayacaq və orada "
-"tapacağı\n"
-"mə'lumatlara görə açağıdakı addımları tətbiq edəcək:\n"
-"\n"
-" * əgər Windows açılış sektoru aşkar edilərsə, DrakX onu grub/LILO açılış "
-"sektoru\n"
-"ilə dəyişdirəcək. Beləliklə, siz həm GNU/Linuksu həm də digər əməliyyat "
-"sisteminizi\n"
-"(Windows ya da MacOS) aça biləcəksiniz.\n"
-"\n"
-" * əgər grub ya da LILO açılış sektoru aşkar edilərsə, o, yenisiylə əvəz "
-"ediləcək.\n"
-"\n"
-"ÆgÉ™r müəyyÉ™n edib qÉ™rara gÉ™lÉ™ bilmÉ™zsÉ™, DrakX açılış yüklÉ™yicisini hara "
-"yazmaq\n"
-"istədiyinizi sizə soruşacaq."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "Dns xidmətcisi 2 (arzuya görə)"
+"Bölmə cəvəlindəki dəyişikliklərin daxil olması üçün kompüterinizi yenidən "
+"başlatmalısınız."
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "Açılış avadanlığı"
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Hansı bölmə ölçüləndirilsin?"
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
+msgstr "Xətalı bloklar sınansınmı?"
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr "Birləşmiş Ştatlar yanı Kiçik Adalar"
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr "Bölmələr şəkilləndirilir"
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid "Djibouti"
-msgstr "Cibuti"
+msgid "Creating and formatting file %s"
+msgstr "%s faylı yaradılır və şəkilləndirilir"
-#: ../../standalone/logdrake:1
+#: ../../install_steps_interactive.pm_.c:470
#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Qeydlərinizə baxan vasitə"
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected on port %s"
-msgstr "%s qapısında tapıldı"
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Qurulumu bitirmək üçün lazımi sahə yoxdur, xahiş edirik əlavə edin"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD"
-msgstr "LPD"
+#: ../../install_steps_interactive.pm_.c:479
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Mövcud olan paketlər axtarılır."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Ekran kartı: %s\n"
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr "Mövcud olan paketlər axtarılır."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Æsas olaraq _müəyyÉ™n et"
+#: ../../install_steps_interactive.pm_.c:483
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Bu paketi sistemdən çıxarda bilməzsınız. Artıq qurulmuşdur."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
-msgstr "icmp əks sədasını qəbul et"
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr "Güncəllənəcək paketlar tapılır"
-#: ../../bootloader.pm:1
+#: ../../install_steps_interactive.pm_.c:505
#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
+msgstr ""
+"Sisteminizdə qurulum ya da güncəlləmə üçün lazımi boş yer yoxdur(%d > %d)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Çərx emulyasiyalı Logitech CC Seriyaları"
+#: ../../install_steps_interactive.pm_.c:541
+msgid ""
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
+msgstr ""
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "Bu platformda genişlədilmiş bölmələr dəstəklənmir"
+#: ../../install_steps_interactive.pm_.c:543
+#, fuzzy
+msgid "Load from floppy"
+msgstr "Disketdən geri çağır"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Splash selection"
-msgstr "Sıçrayan ekran seçkisi"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr "DisketÉ™ qeyd et"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "ISDN quraşdırılması"
+#: ../../install_steps_interactive.pm_.c:547
+#, fuzzy
+msgid "Loading from floppy"
+msgstr "Disketdən geri çağır"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "high"
-msgstr "yüksək"
+#: ../../install_steps_interactive.pm_.c:547
+#, fuzzy
+msgid "Package selection"
+msgstr "Paket Qrup Seçkisi"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "İnternet Bağlantısı Bölüşdürülməsi"
+#: ../../install_steps_interactive.pm_.c:552
+#, fuzzy
+msgid "Insert a floppy containing package selection"
+msgstr "%s sürücüsünə bir disket taxın"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Choose file"
-msgstr "Fayl seç"
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
+msgstr "Seçili böyüklük var olandan daha böyükdür"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Summary: "
-msgstr "İcmal:"
+#: ../../install_steps_interactive.pm_.c:649
+msgid "Type of install"
+msgstr ""
-#: ../../network/shorewall.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:650
msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
msgstr ""
-"Diqqət! Var olan Firewall qurğusu tapıldı. Yükləmədən sonra bir az əl "
-"gəzdirə bilərsiniz."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "\"%s\" üstündə Printing/Photo Card Access"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
-msgstr "Günlük təhlükəsizlik yoxlaması"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+#: ../../install_steps_interactive.pm_.c:653
+msgid "With X"
msgstr ""
-"Çap etməni yuxarıdakı çapçılarda yoxsa yerli şəbəkə üstündəki çapçılarda "
-"fəal etmək istəyirsiniz?\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer default settings"
-msgstr "Æsas çapçı qurÄŸuları"
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Sıravi PS2 Çərxli Siçan"
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:741
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)"
+"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 ""
-"Cpu'nun CR0 qeydindəki WP bayrağı yaddaş səhifəsi səviyyəsində yazma "
-"qorumasını məcbur edir, buna görə də işlədiciyə istifadəçi yaddaşına nəzərdə "
-"olmayan yetişməni ləğv etmə imkanı verir. (bu bir xəta qoruyucusudur)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Köhnə \"%s\" çapçısı çıxardılır..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Select a device !"
-msgstr "Avadanlıq seçin !"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected server"
-msgstr "Seçili vericini çıxart"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using dhcp) usb"
-msgstr "Sagem (dhcp işlədən) usb"
+"Aşağıdakı siyahıdakı bütün CD'lərə sahib isəniz, OLDU'ya basın.\n"
+"CD'lərin heç birinə sahib deyilsəniz, İMTİNA ET'ə basın.\n"
+"CD'lərdən bə'ziləi əksik isə, onları seçili vəziyyətdən çıxardıb OLDU'ya "
+"basın."
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:746
#, c-format
-msgid "French Southern Territories"
-msgstr "Cənubi Fransız Sahələri"
+msgid "Cd-Rom labeled \"%s\""
+msgstr "\"%s\" adlı Cd-Rom"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "işlədicinin e'malatçısı"
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr "Qurulum hazırlanır"
-# needs editing (Metin)
-#: ../../standalone/drakTermServ:1
+#: ../../install_steps_interactive.pm_.c:776
#, 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."
+"Installing package %s\n"
+"%d%%"
msgstr ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
-" \thelps in this respect by adding or removing system users from this "
-"file."
+"%s paketi qurulur\n"
+"%d%%"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr "Bu bölmədəki bütün mə'lumatların ehtiyat nüsxələri alınmalıdır"
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
+msgstr "Qurulum sonrası qurğular"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "%s paketi qurulur"
+#: ../../install_steps_interactive.pm_.c:828
+#, fuzzy, c-format
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "%s sürücüsünə bir disket taxın"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr "Avadanlıq yoxlanır və HPOJ quraşdırılır..."
+#: ../../install_steps_interactive.pm_.c:834
+#, fuzzy, c-format
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "%s sürücüsünə boş bir disket yerləşdirin"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:861
msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr "Artıq bölmə yaratmaq üçün, bir bölməni silib uzadılmış bölmə yaradın"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"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
-#, c-format
+#: ../../install_steps_interactive.pm_.c:876
+#, fuzzy
msgid ""
-"Your printer was configured automatically to give you access to the photo "
-"card drives from your PC. Now you can access your photo cards using the "
-"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
-"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
-"\"man mtools\" on the command line for more info). You find the card's file "
-"system under the drive letter \"p:\", or subsequent drive letters when you "
-"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
-"can switch between drive letters with the field at the upper-right corners "
-"of the file lists."
-msgstr ""
-"Çapçınız avtomatik olaraq sisteminizdəki foto kart sürücülərinə yetişmək "
-"üzrə quraşdırılıb. Artıq foto kartlarınıza \"MtoolsFM\" adlı qrafiki "
-"tə'minat ilə (Menyuda \"Tə'minatlar\" -> \"Fayl vasitələri\" -> \"MTools "
-"Fayl İdarəçisi\") ya da \"mtools\" əmr sətiri ilə (əmr sətirində \"man mtools"
-"\" yazıb mə'lumat ala bilərsiniz) yetişə bilərsiniz. Kartın fayl sisteminə "
-"\"p:\" sürücü hərfindən, dahaçox foto kartlı HP çapçınız varsa, ondan sonra "
-"gələn hərflərdən yetişə bilərsiniz. \"MtoolsFM\"da sürücü hərfləri arasında "
-"keçişi fayl siyahılarının sağ üst güncündəki sahədən həyata keçirə "
-"bilərsiniz."
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgstr "Æks ünvanına baÄŸlantı qurulur"
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "Qurulacaq paketlərin seçimi"
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
+msgstr "Paketleri almaq üçün bir əks ünvanı seçin"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "%s sürüsündəki mövcud bütün bölmələr və onlardakı mə'lumatitiriləcək"
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Æks ünvanına baÄŸlantı qurulur"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Sisteminizdə qurulum ya da yeniləmə üçün lazımi boş yer yoxdur(%d > %d)"
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr "Sisteminiz hansı məqsədlə istifadə ediləcək?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Hər çapçının bir adı olmalıdır (misal üçün: \"çapçı\"). İzahat və "
-"Mövqesahələrini doldurmaq məcbur deyil. Onlar istifadəçilərə mə'lumat vermək "
-"üçündür."
+#: ../../install_steps_interactive.pm_.c:923
+#, fuzzy
+msgid "Hardware clock set to GMT"
+msgstr "Avadanlıq saatınız GMT-yə göra quruludur mu?"
-#: ../../help.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
msgstr ""
-"\"%s\": \"%s\" düyməsinə basmaq çapçı quraşdırma sehirbazını başladacaq."
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr "Butan"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "Şəbəkə ara üzü"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "İnternet bağlantısının kəsilməsi bacarılmadı."
+#: ../../install_steps_interactive.pm_.c:931
+#, fuzzy
+msgid "NTP Server"
+msgstr "NIS Verici"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
-msgstr "Çapçı datası oxunur..."
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
+msgstr "Uzaq CUPS vericisi"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "Koreya klaviaturası"
+#: ../../install_steps_interactive.pm_.c:966
+msgid "No printer"
+msgstr "Çap Edicisiz"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Not connected"
-msgstr "Bağlı deyil"
+#: ../../install_steps_interactive.pm_.c:982
+#, fuzzy
+msgid "Do you have an ISA sound card?"
+msgstr "BaÅŸqa var?"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "İnternet bağlantısının quraşdırılması"
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
-msgstr "Yunanca"
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr "Müqəddəs Kit və Nevis"
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
+msgstr "Mündəricat"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Çərx emulyasiyalı sıravi 3 düyməli siçan"
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
+msgstr "Siçan"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
-msgstr "OF Açılışı Fəallaşdırılsın?"
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
+msgstr "Vaxt Dilimi"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "16MB'dan kiçik disk bölmələrində JFS istifadə edə bilməzsiniz"
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "Çap Edici"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "RW mediyanızı silin (1ci İclas)"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
+msgstr "ISDN kartı"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Monitorun Üfüqi Yeniləməsi: %s\n"
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
+msgstr "Səs kartı"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "Bağlama nöqtəsi"
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
+msgstr "TV kartı"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
msgstr ""
-"Xəta meydana gəldi:\n"
-"%s\n"
-"Bə'zi parametrləri dəyişdirməyi sınayın"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "TCP/IP qovşağı \"%s\", qapı %s"
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+#, fuzzy
+msgid "NIS"
+msgstr "NIS istifadÉ™ et"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "User :"
-msgstr "İstifadəçi :"
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS sahəsi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore system"
-msgstr "Sistemi qeri yüklə"
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+#, fuzzy
+msgid "Local files"
+msgstr "Yerli Çap Edici"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr "Yerli dayarıcılara yetişilə biləcək sistemlər bunlardır:"
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr "Root parolunu qur"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
-msgstr "DHCP sonlanma ip'si"
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr "Parolsuz"
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "Another one"
-msgstr "BaÅŸqa birisi"
+msgid "This password is too short (it must be at least %d characters long)"
+msgstr "Bu parol çox sadədir (en az %d xarakter boyunda olmalıdır)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "Tanıtma"
-#: ../../lang.pm:1
-#, c-format
-msgid "Colombia"
-msgstr "Kolumbiya"
+#: ../../install_steps_interactive.pm_.c:1088
+#, fuzzy
+msgid "Authentication LDAP"
+msgstr "Tanıtma"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
msgstr ""
-"`%s' hazırkı qurğuları:\n"
-"\n"
-"Şəbəkə: %s\n"
-"IP ünvanı: %s\n"
-"IP atrubutlaması: %s\n"
-"Sürücü: %s"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr "Tax və İşlət"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr "Reyunion"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "Ætraflı"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Təhlükəsizlik səbəbi ilə, indi bağlantı qopacaqdır."
+#: ../../install_steps_interactive.pm_.c:1090
+#, fuzzy
+msgid "LDAP Server"
+msgstr "Verici"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Synchronization tool"
-msgstr "Sinxronlaşdırma vasitəsi"
+#: ../../install_steps_interactive.pm_.c:1096
+#, fuzzy
+msgid "Authentication NIS"
+msgstr "NIS"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking your system..."
-msgstr "Sisteminiz yoxlanır..."
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "NIS sahəsi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print"
-msgstr "Çap Et"
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr "NIS Verici"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1104
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+"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 ""
-"%2$s kaset avadanlığının içinə etiketi \n"
-"%1$s olan kasedi daxil edin"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "Monqolustan"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
-msgstr "Bağlı\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS"
-msgstr "CUPS'u quraşdır"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Interface"
-msgstr "Qrafiki Ara Üz"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Users"
-msgstr "İstifadəçiləri Geri Yüklə"
+#: ../../install_steps_interactive.pm_.c:1106
+#, fuzzy
+msgid "Authentication Windows Domain"
+msgstr "Tanıtma"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Encryption key for %s"
-msgstr "%s üçün şifrələmə açarı"
+#: ../../install_steps_interactive.pm_.c:1108
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Sahə(domain) adı"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to recover your system?"
-msgstr "Sisteminizi düzəltmək istəyirsiniz?"
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1144
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."
+"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\"."
msgstr ""
-"portmapper, NFS ve NIS kimi protokollar tərəfindən istifadə edilən RPC \n"
-"bağlantılarını təşkilatlandırır. Portmap vericisi RPC mexanizmini işlədən\n"
-"protokollarla xidmət edən kompüterlərdə qurulmalıdır və işlədilməlidir."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detected hardware"
-msgstr "Təsbit edilən avadanlıq"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr "Maurit"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
-msgstr "Myanmar dili (Burmese)"
+"Xüsusi bir açılış disketi, Linuks sisteminizin normal bir sistem yükləyiciyə "
+"lüzüm\n"
+"olmadan açılmasına imkan verÉ™r. ÆgÉ™ sisteminizÉ™ lilo (ya da grub) "
+"qurmayacaqsanız,\n"
+"ya da başqa bir əməliyyat sistemi liloyu silərsa ya da lilo "
+"avadanlığınızlaişləməzsə\n"
+"bu disket sizə yardımçi olacaqdır. Sonradan Mandrake qurtarma disketi "
+"rəsmini\n"
+"istifadə edərək də bu disket yaradıla bilər.\n"
+"Açılış disketi yaratmaq istəyirsiniz?\n"
+"Açılış disketi yaratmaq istəyirsinizsə, birinci disket sürücüyə disket "
+"yerləşdirin\n"
+"və \"OLDU\" basın."
-#: ../../fs.pm:1
-#, c-format
-msgid "Enabling swap partition %s"
-msgstr "%s dəyiş-toqquş sahəsi fəallaşdırılır"
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr "İlk disket sürücü"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr "Loopback üçün FAT bölməsi yoxdur (ya da lazımi yer yoxdur)"
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "İkinci disket sürücü"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr "Ermeni dili (köhnə) "
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "Nəzərə Alma"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:1167
#, 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."
+"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"
msgstr ""
-"\"%s\" adında bir çapçı onsuzda %s altında mövcuddur . \n"
-"Üstündən yazmaq üçün \"Transfer\"ə basın.\n"
-"Həmçinin, yeni bir ad daxil edə bilər ya da çapçını keçə bilərsiniz."
+"Xüsusi bir açılış disketi, Linuks sisteminizin normal bir sistem yükləyiciyə "
+"lüzüm\n"
+"olmadan açılmasına imkan verÉ™r. ÆgÉ™ sisteminizÉ™ lilo (ya da grub) "
+"qurmayacaqsanız,\n"
+"ya da başqa bir əməliyyat sistemi liloyu silərsa ya da lilo "
+"avadanlığınızlaişləməzsə\n"
+"bu disket sizə yardımçi olacaqdır. Sonradan Mandrake qurtarma disketi "
+"rəsmini\n"
+"istifadə edərək də bu disket yaradıla bilər.\n"
+"Açılış disketi yaratmaq istəyirsiniz?\n"
+"Açılış disketi yaratmaq istəyirsinizsə, birinci disket sürücüyədisklet "
+"yerləşdirin\n"
+"və \"OLDU\" basın.\n"
+"%s"
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1173
msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
+"\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)."
msgstr ""
-"Problemlərinizə çarələri MandrakeSoft'un onlayn dəstək platformunda tapın."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", qovşaq \"%s\", qapı %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Monaco"
-msgstr "Monako"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Bölmələndirmə bacarılmadı: %s"
-
-#: ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s şəkilləndirilməsində %s bölmə xətası"
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "Bağışlayın, disket sürücü yoxdur"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Canada (cable)"
-msgstr "Kanada (kabel)"
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr "Açılış disketi yaratmaq üçün istifadə ediləcək disket sürücüyü seçin"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Floppy creation completed"
-msgstr "Disket yaradılması tamamlandı"
+#: ../../install_steps_interactive.pm_.c:1189
+#, fuzzy, c-format
+msgid "Insert a floppy in %s"
+msgstr "%s sürücüsünə bir disket taxın"
-#: ../../help.pm:1
-#, c-format
-msgid "Upgrade"
-msgstr "Yeniləmə"
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr "Açılış disketi yaradılır"
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
-msgstr "İş Stansiyası"
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr "Açılış yükləyici hazırlanır"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1210
msgid ""
-"Installing package %s\n"
-"%d%%"
+"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 to boot your machine"
msgstr ""
-"%s paketi qurulur\n"
-"%d%%"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
-msgstr "Qırğızıstan"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "USB üstündə çox funksiyalı avadanlıq"
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
+msgstr "aboot istifadə etmək istəyirsiniz?"
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1219
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."
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
+"aboot qurulumunda xata, \n"
+"ilk disk bölməsini yox etsə belə yenə də qurulmasını istəyirsiniz?"
-#: ../../help.pm:1
-#, c-format
-msgid "With basic documentation"
-msgstr "Æsas sÉ™nÉ™dlÉ™rlÉ™ birlikdÉ™"
+#: ../../install_steps_interactive.pm_.c:1226
+#, fuzzy
+msgid "Installing bootloader"
+msgstr "Sistem yükləyicini qur"
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr "Anakron, periodik əmr zamanlayıcısı"
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Açılış yükləyicisi qurulumu iflas etdi. Xəta:"
-#: ../../install_interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:1240
#, 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 `/'"
+"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 ""
-"Bir kök bölməsi yaratmalısınız.\n"
-"Bunun üçün istər mövcud bir disk bölümü üzərinə tıqlayın, \n"
-"ya da yeni birini başdan yaradın. Sonra \"Bağlama \n"
-"Nöqtəsi\"gedişatını seçin va buranı '/' olaraq dəyişdirin."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "Qərbi Saxara"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Vəkil http://... şəklində olmalıdır."
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr "Cənubi Afrika"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Ehtiyatlama sonrasında kasedi çıxart"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot Disketi/ISO"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Çapçı qurğularını dəyişdir"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
-msgstr "Bölmə seçin"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Edit current rule"
-msgstr "Hazırkı qaydanı düzəlt"
+"Siz Open Fİrmware açılış avadanlığınızı açılış yükləyicisini\n"
+"fÉ™allaÅŸdırmaq üçün dÉ™yiÅŸdirmÉ™li ola bilÉ™rsiniz. Æmr-SeçənÉ™k-O-F düymÉ™lÉ™rini\n"
+" yenidən başlarkən basın və bunları girin:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+" Sonra da bunları yazın: shut-down\n"
+"Bir sonrakı başlanğıcda açılış yükləyicisi sətirini görməlisiniz."
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "%s"
-msgstr "%s"
+msgid "Insert a blank floppy in drive %s"
+msgstr "%s sürücüsünə boş bir disket yerləşdirin"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Please test the mouse"
-msgstr "Xahiş edirik, siçanınızı seçin"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
+msgstr "Avtomatik qurulum disketi hazırlanır"
-#: ../../fs.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1289
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)."
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
msgstr ""
-"Bu fayl sistemi üstündəki inode yetişmə vaxtlarını yeniləmə\n"
-"(mis,xəbərlər vericisini tezləşdirmək üçün)."
+"Bə'zi bölmələr bitdi.\n"
+"\n"
+"Həqiqətən də çıxmaq istəyirsiniz?"
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "Çərx emulyasiyalı 3 düymə"
+#: ../../install_steps_interactive.pm_.c:1300
+#, fuzzy, 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."
+msgstr ""
+"Təbriklər, quruluş bitdi.\n"
+"Cdrom və disketi çıxartdıqtan sonra Enter'ə basaraq kompüterinizi \n"
+"yenidən başladın. Linuks Mandrake'nin bu buraxılışındakı yamaqlar haqqında \n"
+"mə'lumat almaq üçün http://www.mandrakelinux.com ünvanından Errata'ya "
+"baxın.\n"
+"Sisteminizin qurğuları haqqında daha geniş bilgiyi Linuks Mandrake \n"
+"İstifadəçi Kitabcığında tapa bilərsiniz."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Sticky-bit"
-msgstr "Sticky-bit"
+#: ../../install_steps_interactive.pm_.c:1313
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other Media"
-msgstr "BaÅŸqa Mediya"
+#: ../../install_steps_interactive.pm_.c:1318
+msgid "Generate auto install floppy"
+msgstr "Avtomatik qurulum disketi hazırlanır"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
+#: ../../install_steps_interactive.pm_.c:1320
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Avtomatik qurulum disketi hazırlanması seçilərsə,\n"
+"bütün sabit disk mə'lumatı daxil ediləcəkdir!!\n"
+"(yə'ni başqa sistemi də qura bilmək üçün).\n"
+"\n"
+"Bu qurulumu takrar etmək istəyə bilərsiniz axı.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files"
-msgstr "Sistem fayllarının ehtiyat nüsxəsini çıxart"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
+msgstr "Avtomatlaşdırılmış"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Sector"
-msgstr "Sektor"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Replay"
+msgstr "Təkrarla"
-#: ../../lang.pm:1
-#, c-format
-msgid "Qatar"
-msgstr "Katar"
+#: ../../install_steps_interactive.pm_.c:1328
+msgid "Save packages selection"
+msgstr "Paket seçkilərini saxla"
-#: ../../any.pm:1
+#: ../../install_steps_newt.pm_.c:20
#, c-format
-msgid "LDAP Base dn"
-msgstr "LDAP Æsas dn"
+msgid "Mandrake Linux Installation %s"
+msgstr "Linuks-Mandrake Qurulumu %s"
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "Bu paketi seçə bilməzsiniz, çünki qurmaq üçün yer çatmır."
-
-#: ../../help.pm:1
-#, c-format
-msgid "generate auto-install floppy"
-msgstr "avtomatik qurulum disketi hazırla"
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr ""
+" <Tab>/<Alt-Tab> irəli/geri | <Boşluq> işarətlə | <F12> sonrakı ekran"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr "Yığma modu"
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
+msgstr "kdesu əksikdir"
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr "Fayl bölüşməsi"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "/tmp-i hər açılışda təmizlə"
+#: ../../interactive.pm_.c:152
+#, fuzzy
+msgid "Choose a file"
+msgstr "Monitorunuzu seçin"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malawi"
-msgstr "Malavi"
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
+msgstr "Ætraflı"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: false"
-msgstr "yerli qurğu: səhv"
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
+msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "System settings"
-msgstr "Sistem qurğuları"
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
+msgstr "<- ÆvvÉ™lki"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Xahiş edirik, siçanınızın növünü seçin."
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+#, fuzzy
+msgid "Next"
+msgstr "Sonrakı ->"
-#: ../../services.pm:1
-#, c-format
-msgid "running"
-msgstr "işləmir"
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr "Xətalı tərcih, təkrar sınayın\n"
-#: ../../standalone/harddrake2:1
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "class of hardware device"
-msgstr "avadanlığın sinifi"
+msgid "Your choice? (default %s) "
+msgstr "Seçkiniz? (əsas %s) "
-#: ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-"Yerli olaraq bağlı olan çapçı bu sistem və şəbəkələr üçün də mövcud "
-"olmalıdır:"
-
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "Birləşmiş Krallıq"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Indonesia"
-msgstr "İndoneziya"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "əsas"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "France [SECAM]"
-msgstr "Fransızca [SECAM]"
+#: ../../interactive/stdio.pm_.c:70
+#, fuzzy, c-format
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Seçkiniz? (əsas %s) "
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "məhdudlaşdır"
+#: ../../interactive/stdio.pm_.c:95
+#, fuzzy, c-format
+msgid "Button `%s': %s"
+msgstr "Seçənəklər: %s"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "must have"
-msgstr "sınamağa dəyər"
+#: ../../interactive/stdio.pm_.c:96
+#, fuzzy
+msgid "Do you want to click on this button?"
+msgstr "aboot istifadə etmək istəyirsiniz?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
msgstr ""
-"CUPS Novell vericilərindəki ya da mə'lumatı sərbəst-şəkilli formda "
-"göndərənçapçıları dəstəkləmir.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Senegal"
-msgstr "Seneqal"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Command line"
-msgstr "Æmr sÉ™tiri"
+#: ../../interactive/stdio.pm_.c:105
+#, fuzzy, c-format
+msgid "Your choice? (default `%s'%s) "
+msgstr "Seçkiniz? (əsas %s) "
-#: ../advertising/08-store.pl:1
+#: ../../interactive/stdio.pm_.c:123
#, 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 "=> There are many things to choose from (%s).\n"
msgstr ""
-"E-dükkanımızda bir sıra Linuks həlli və xüsusi təklif və məhsullarımızın "
-"yanında daha bir çox şey sizi gözləyir:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "March"
-msgstr "Mart"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to administrative files"
-msgstr "idarəvi fayllara yetişmə"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../interactive/stdio.pm_.c:126
msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
msgstr ""
-"sendmail bacarılmadı.\n"
-" Raport məktubunuz göndərilmədi.\n"
-" Xahiş edirik, sendmail'i quraşdırın"
-#: ../../fs.pm:1
+#: ../../interactive/stdio.pm_.c:139
#, 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.)"
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
-"set-user-identifierya da set-group-identifier fəaliyyətlərinə\n"
-"icazə vermə. (Bu e'tibarlı görsənir, yalnız sisteminizdə suidperl(1)\n"
-"quruludursa təhlükəli ola bilər.)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
-msgstr "Montserrat"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Avtomatik asıllılıqlar"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "Çex dili (QWERTZ)"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "Dəyiş-toqquş"
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "Almanca"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom settings"
-msgstr "Xüsusi qurğular"
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Dvorak"
-#: ../../../move/move.pm:1
-#, 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."
-msgstr ""
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "İspanca"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Other"
-msgstr "Diqərlərini Geri Yüklə"
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "FincÉ™"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "TV kartı"
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "Fransızca"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT üstündə çapçı"
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "Norveçcə"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_CUPS'u quraşdır"
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "Polyakca"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
-msgstr ", "
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "Rusca"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
-msgstr "lspci'ni göndər"
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
+msgstr "İsveçcə"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Seçili qovşaq/şəbəkəni sil"
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "İngiliz (UK) klaviaturası"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Posfix, elektronik məktubların bir kompüterdən digərinə yollayan \n"
-"Məktub Yollama Vasitəsidir (Mail Transport Agent)."
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "Amerikan (US) klaviaturası"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "Özbək dili (kiril)"
+#: ../../keyboard.pm_.c:167
+#, fuzzy
+msgid "Albanian"
+msgstr "Farsca"
-#: ../../keyboard.pm:1
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Fərqli klaviatura düzülüşləri arasında keçişə icazə verən\n"
-"düymə ya da düymələr kombinasiyasını seçə bilərsiniz.\n"
-"(mis: latın və latın olmayan)"
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
+msgstr "Ermenicə (köhnə) "
-#: ../../network/network.pm:1
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Ani Şəbəkə Fəallaşdırılması (Network Hotplugging)"
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
+msgstr "Ermenicə (yazı maşını)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr "əgər bəli seçilidirsə, yoxlama nəticəsini tty'yə raportlayır."
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
+msgstr "ErmenicÉ™ (fonetik)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From CD"
-msgstr "CD'dən Geri Yüklə"
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
+msgstr "Azərbaycanca (latın)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Kompüterınızi İnternet bağlantısını bölüşdürmək üçün quraşdırırsınız.\n"
-"Bu seçimlələ yerli şəbəkənizdəki başqa kompüterlər sizin İnternet "
-"bağlantınızdan faydalana biləcək.\n"
-"\n"
-"İrəli getmədən əvvəl drakconnect işlədərək Şəbəkə/İnternet bağlantınızı "
-"quraşdırdığınızdan əmin olun.\n"
-"\n"
-"Qeyd: Yerli Şəbəkə (LAN) qurmaq üçün uyğun Şəbəkə Adapterinə ehtiyacınız var."
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "Belçika dili"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr "İnternetə bağlanmaq üçün şəbəkə adapteri seçin."
+#: ../../keyboard.pm_.c:178
+#, fuzzy
+msgid "Bengali"
+msgstr "fəallaşdır"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "HP çox-funksiyalı avadanlığınız üstündə foto yaddaş kartına səlahiyyət"
+#: ../../keyboard.pm_.c:179
+#, fuzzy
+msgid "Bulgarian (phonetic)"
+msgstr "ErmenicÉ™ (fonetik)"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
-msgstr ""
-"Madrake Lunuks dəstəyi olan ortaq seçmələrimizin yardımı ilə "
-"kompüterinizinişləmə keyfiyyətini artırın"
+#: ../../keyboard.pm_.c:180
+#, fuzzy
+msgid "Bulgarian (BDS)"
+msgstr "Bulqarca"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
-msgstr "Müəlliflər:"
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
+msgstr "Brazilya dili (ABNT-2)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "İnternet Bağlantısı Bölüşdürülməsi indi bağlandı"
+#: ../../keyboard.pm_.c:184
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estoniya dili"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr "əgər bəli seçilidirsə, suid/sgid fayllarının checksum'ını yoxla."
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
+msgstr "Belarusca"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latin American"
-msgstr "Latın Amerika dili"
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "İsveçcə (Alman sırası)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Yaponca mətn çap etmə modu"
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "İsveçcə (Fransız sırası)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Old device file"
-msgstr "Köhnə avadanlıq faylı"
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "Çex dili (QWERTY)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "MÉ™'lumat: "
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr "Almanca (ölü düymələr olmasın)"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Düymə `%s': %s"
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
+msgstr ""
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Xahiş edirik, gözləyin"
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "Danimarka dili"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Dvorak (US)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "None"
-msgstr "Yoxdur"
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Norveçcə)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Daxil edilən IP səhvdir.\n"
+#: ../../keyboard.pm_.c:196
+#, fuzzy
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (US)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Xahiş edirik, cron demonunun xidmətlərinizdə yer aldığından əmin olun."
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "Estoniya dili"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
-msgstr "Eternet Kartı"
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Gürcü dili (\"Rus\" sırası)"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete selected printer"
-msgstr "Seçili çapçını sil"
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Gürcü dili (\"Latın\" sırası)"
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "MÉ™'lumat"
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "Yunanca"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "Qur"
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
msgstr ""
-"Sürücüdəki bütün mə'lumatları və bölmələri silmək üçün\n"
-"\"%s\" düyməsinə basın. Diqqətli olun,\"%s\" düyməsinə basdıqdan sonra\n"
-"Windows mə'lumatları də daxil olmaq üzərə bütün bölmə mə'lumatı geri\n"
-"dönməyəcək şəkildə silinəcək.\n"
-"\n"
-"Bölmədəki mə'lumatları qorumaq üçün və əməliyyatı ləğv etmək üçün \"%s\" "
-"düyməsinə basın."
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "Qurulumun sonu"
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "Macarca"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
-msgstr ""
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "Xırvatca"
-#: ../../standalone/drakgw:1
-#, 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)."
-msgstr ""
-"Hər şey quruldu.\n"
-"İndi isə İnternet bağlantınızı yerli şəbəkədəkı başqa kompüterlər ilə "
-"bölüşdürə bilərsiniz, bunun üçün isə avtomatik şəbəkə quraşdırılması (DHCP) "
-"işlədilir."
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
+msgstr "İsrail"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Uzaq CUPS vericisi"
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr "İsrail (Fonetik)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - Siçan"
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr "Farsca"
-#: ../../standalone/drakgw:1
-#, 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."
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr "İzlandiya dili"
+
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "İtalyanca"
+
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
msgstr ""
-"Sistemnizdə bir dənə qurulmuş şəbəkə adapteri var:\n"
-"\n"
-"%s\n"
-"\n"
-"Yerli Şəbəkə adapterinizi qurmaq üzərəyəm?"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
-msgstr "cpuinfo'nu göndər"
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
+msgstr "Yaponca 106 düyməli"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Minimal install"
-msgstr "Minimal qurulum"
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
+msgstr "Koreya klaviaturası"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "Efiopiya"
+#: ../../keyboard.pm_.c:218
+msgid "Latin American"
+msgstr "Latın Amerika dili"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
-msgstr "BÆLİ"
+#: ../../keyboard.pm_.c:219
+#, fuzzy
+msgid "Laotian"
+msgstr "Yeri"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
-msgstr "İstifadəçilər üçün \"crontab\" və \"at\"i fəallaşdır"
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
+msgstr "Litvaniya dili AZERTY (köhnə)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr "Devanaqari"
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
+msgstr "Litvanya dili AZERTY (yeni)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- pci avadanlıqları: bu kartın PCI yuvasını, avadanlığını və funksiyasını "
-"verir\n"
-"- eide avadanlıqları: avadanlıq ya master ya da slave vəziyyətindədir\n"
-"- scsi avadanlıqları: scsi bus və scsi avadanlıq id'ləri"
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Litvanya dili \"number row\" QWERTY"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Ümumi böyüklük: %d / %d Mb"
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Litvanya dili \"Fonetik\" QWERTY"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "disabled"
-msgstr "qeyri-fəal"
+#: ../../keyboard.pm_.c:225
+#, fuzzy
+msgid "Latvian"
+msgstr "Yeri"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Search for new scanners"
-msgstr "Yeni darayıcıları axtar"
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Disabling servers..."
-msgstr "Vericilər bağlanır..."
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
+msgstr "Makedoniya dili"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "%s qurulumu iflas etdi. Olan xəta:"
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr "Bu əmr verilə bilmir: mkinitrd -f /boot/initrd-%s.img %s."
+#: ../../keyboard.pm_.c:229
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Azərbaycanca (kiril)"
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
msgstr ""
-"Siz aşağıdakı vericiləri seçdiniz: %s\n"
-"\n"
-"\n"
-"Bu vericilər əsas olaraq fəal olur. Onların bilinən heç bir təhlükəsizlik\n"
-"problemləri yoxdur, ancaq bə'zi yeni xətalar tapıla bilər. Belə olsa, "
-"mümükün olan ən yaxın zamanda onları yeniləməlisiniz.\n"
-"\n"
-"\n"
-"Bu vericiləri həqiqətən də qurmaq istəyirsiniz?\n"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Şəbəkə çapçısı (TCP/Soket) "
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup User files..."
-msgstr "İstifadəçi fayllarının ehtiyat nüsxəsini çıxart..."
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
+msgstr "Hollandiya dili"
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "Sistemin qurulumu"
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
+msgstr "Polyakca (QWERTY sırası)"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Birinci DNS Vericisi (arzuya görə)"
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
+msgstr "Polyakca (QWERTZ sırası)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr "Alternativ olaraq, avadanlıq/fayl adını giriş sətirinə yaza bilərsiniz"
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
+msgstr "Portuqalca"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
-"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
-"symlink /etc/security/msec/server to point to\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
-"add a service if it is present in the file during the installation of\n"
-"packages."
-msgstr ""
-"ÆgÉ™r SERVER_LEVEL (yada SECURE_LEVEL É™ksikdirsÉ™)\n"
-"/etc/security/msec/security.conf içində 3'dən böyükdürsə,\n"
-"/etc/security/msec/server.<SERVER_LEVEL> ünvanına gedən.\n"
-"/etc/security/msec/server simvolik körpüsünü yaradar.\n"
-"\n"
-"/etc/security/msec/server, chkconfig --add tərəfindən\n"
-"paketlərin qurulması sırasında əgər mövcuddursa faylın içinə\n"
-"xidmət əlavə etmək üçün istifadə edilir."
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr "Fransızca (Kanada/Quebec)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "Rus dili (Fonetik)"
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Romanian (qwertz)"
+msgstr "Rusca (Yawerty)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Config..."
-msgstr "dhcpd Qurğuları..."
+#: ../../keyboard.pm_.c:240
+#, fuzzy
+msgid "Romanian (qwerty)"
+msgstr "Rusca (Yawerty)"
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "LILO/grub Qurulumu"
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "Yəhudi dili"
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
+msgstr "SlovencÉ™"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "\"%2$s\" vericisi üstündəki \"%1$s\" çapçı"
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "Slovakca (QWERTZ)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "İndi disket çıxardıla bilər"
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "Slovakca (QWERTY)"
-#: ../../help.pm:1
-#, c-format
-msgid "Truly minimal install"
-msgstr "Həqiqətən minimal qurulum"
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Serbian (cyrillic)"
+msgstr "Azərbaycanca (kiril)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "Danimarka"
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "Bölmə daşınır..."
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "(This) DHCP Server IP"
-msgstr "(Bu) DHCP Verici IP'si"
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr "Thai klaviatura"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Test of the configuration"
-msgstr "Qurğuların sınağı"
+#: ../../keyboard.pm_.c:254
+#, fuzzy
+msgid "Tajik keyboard"
+msgstr "Thai klaviatura"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing %s ..."
-msgstr "%s qurulur ..."
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Türkcə (ənənəvi \"F\" klaviatura)"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"ÆgÉ™r qurulum proqramına paketlÉ™ri ayrı ayrı seçmÉ™k istÉ™diyinizi dedinizsÉ™,\n"
-"o, qrup və alt qruplara ayrılmış paketləri ağac şəklində sizə göstərəcək.\n"
-"Bu ağacda gəzərkən, bütün qrupu, alt qrupu ya da paketləri ayrı ayrı seçə "
-"biləcəksiniz\n"
-"\n"
-"Hər paket seçişinizdə sağ tərəfdə bu paket ilə əlaqəli və onun nə işə\n"
-"yaradığını göstərən mə'lumat yer alacaq.\n"
-"\n"
-"!! ÆgÉ™r paketin ya da paketin daxil oduÄŸu alt qrupun seçilmÉ™si ilÉ™ bir "
-"verici\n"
-"seçilsə, sizə bu vericini həqiqətən də qurmaq istədiyinizi soruşan və "
-"sizdən\n"
-"tÉ™sdiq istÉ™yÉ™n pÉ™ncÉ™rÉ™ göstÉ™rilÉ™cÉ™k. Æsas olaraq Mandrake Linuks bütün "
-"qurulu\n"
-"olan xidmətləri açılışda fəal edir. Distribusiyanın çıxdığı vaxt onların "
-"bilinən heç bir\n"
-"xətası ya da təhlükəli yanı olmasa da, mümkündür ki, müəyyən vaxt sonra\n"
-"tÉ™hlükÉ™sizlik nöqtÉ™lÉ™ri aÅŸkar edilÉ™ bilÉ™r. ÆgÉ™r seçilÉ™n xidmÉ™tin nÉ™ etdiyini "
-"və nəyə\n"
-"yaradığını bilmirsinizsə, \"%s\" düyməsinə basın. \"%s\" düyməsini seçsəniz "
-"isÉ™\n"
-"xidmət sisteminizə qurulacaq və sisteminizin açılışında fəal hala "
-"gətiriləcək.\n"
-"Qeyd: Xidmətlərin açılışda fəal olub olmamasını qurulum bitdikdən sonra da\n"
-"Mandrake İdarə Mərkəzindən quraşdıra bilərsiniz!!\n"
-"\n"
-"\"%s\" seçimi, bir proqramı seçdiyiniz zaman qurulum proqramının o proqram "
-"ilÉ™\n"
-"əlaqəli diqər paket ya da asıllılıqların avtomatik seçməsi üçündür.\n"
-"Bə'zi paketlər bir birindən aslıdır və birinin qurulması digərinin də "
-"qurulmasını\n"
-"məcbur qılır. Bu paketləri qurulum proqramı müvəffəqiyyətlə taparaq "
-"sisteminizÉ™\n"
-"quracaq.\n"
-"\n"
-"Siyahının altındakı kiçik disket rəsmi isə daha əvvəlki qurulumda (əgər "
-"yaratmışsınızsa)\n"
-"yaradılan paket siyahısı faylını yükləmək üçündür. Bu, birdən çox kompüterə "
-"eyni\n"
-"paket ya da proqramları qurmaq istədiyiniz zaman çox əlverişlidir. Düyməyə\n"
-"basdıqdan sonra sizdən disketi daxil etməniz xahiş ediləcək.\n"
-"Belə bir disketi necə yaradılacağını bilmək istəyirsinizsə son qurulum "
-"addımının \n"
-"ikinci yardım abzasına baxa bilərsiniz."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr "Fayl sistemi şifrələmə açarınızı seçin"
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Türkcə (müasir \"Q\" klaviatura)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr "Siera Lione"
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr "Ukrayna dili"
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
-msgstr "Botsvana"
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "Amerikan (US) klaviaturası (beynəlmiləl)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Andorra"
-msgstr "Andorra"
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vyetnam dili \"numeric row\" QWERTY"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "(default value: %s)"
-msgstr "(əsas qiymət: %s)"
+#: ../../keyboard.pm_.c:263
+#, fuzzy
+msgid "Yugoslavian (latin)"
+msgstr "Yugoslavca (latın/kiril)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
msgstr ""
-"Şifrə vaxtının keçməsini \"maks\" gün et və \"qeyri-fəal\" vəziyyətə "
-"dəyişməyi gecikdir."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Alternativ çap səhifəsi (Məktub)"
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-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"
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
msgstr ""
-"DHCP Verici Quraşdırılması.\n"
-"\n"
-"Burada, DHCP verici quraşdırılması üçün fərqli seçimləri seçə bilərsiniz.\n"
-"ÆgÉ™r bir seçimin mÉ™'nasını bilmirsinizsÉ™, onu olduÄŸu kimi saxlayın.\n"
-"\n"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Choose an X server"
-msgstr "X vericisini seçin"
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
+msgstr ""
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Dəyiş-toqquş sahəsi böyüklüyü (Mb): "
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No changes to backup!"
-msgstr "Ehtiyat nüsxəsini dəyişdirmə!"
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "Şəkilləndirilmiş\n"
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Type of install"
-msgstr "Qurulum növü"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "\"%2$s\" SMB/Windows vericisi üstündəki \"%1$s\" çapçısı"
+msgid "Circular mounts %s\n"
+msgstr "Dairəvi bağlama %s\n"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d vergüllə ayrılmış ədəd"
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
+msgstr "Məntiqi ciltləri birinci olaraq sil\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../modules.pm_.c:290
msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-"rusers protokolu bir şəbəkədəkı istifadəçilərin o şəbəkədəkı kompüterlərdə\n"
-"işləyən istifadəçiləri görməsinə imkan verər."
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Avtomatik Addımların Quraşdırılması"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "Barbados"
+#: ../../modules/parameters.pm_.c:18
+#, fuzzy
+msgid "modinfo is not available"
+msgstr "Disket sürücü yoxdur"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
-msgstr ""
-"Açıq Mənbə cəmiyyəti haqqında daha çox bilmək və yardım etmək istəyirsiniz? "
-"Sərbəst Tə'minat Dünyası ilə tanışın!"
+#: ../../modules/parameters.pm_.c:50
+#, fuzzy
+msgid "a number"
+msgstr "Telefon nömrəsi"
-#: ../../standalone/drakbackup:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "Please select data to backup..."
-msgstr "Xahiş edirik, ehtiyat nüsxəsi çıxardılacaq mə'lumatı seçin..."
+msgid "%d comma separated numbers"
+msgstr ""
-#: ../../standalone/net_monitor:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
+msgid "%d comma separated strings"
msgstr ""
-"Bağlantı iflas etdi.\n"
-"Mandrake İdarə Mərkəzindən qurğularınızı yoxlayın."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
-msgstr "alınan"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr "su xassəsini yalnız wheel qrupu üzvlərinə ya da hərkəsə açıq et"
+#: ../../modules/parameters.pm_.c:54
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Bölmə şəkilləndirilməsi"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
-msgstr "/Fayl/_Təze"
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - Siçan"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DNS Server IP"
-msgstr "DNS Verici IP'si"
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range End:"
-msgstr "IP Silsiləsi Sonu:"
+#: ../../mouse.pm_.c:33
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Sıravi PS2 Çərxli Siçan"
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
-msgstr "Yüksək"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Sistemə yeni çapçı əlavə et"
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr "NoVideo"
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
-msgstr "burada avadanlığın izahatı yer alır"
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Çapçı Office/OpenOffice.org/GIMP proqramlarına əlavə edilir"
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printers"
-msgstr "Yerli Çapçılar"
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
+msgstr "1 düymə"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation image directory"
-msgstr "Qurulum əksinin cərgəsi"
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "Sıravi 2 Düyməli Siçan"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "NIS Verici"
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "Çərx"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Port: %s"
-msgstr "Qapı: %s"
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "serial"
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "İspaniya"
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "Sıravi 3 Düyməli Siçan"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
-msgstr "yerli qurÄŸu: %s"
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "Bu istifadəçi adı onsuzda əlavə edilib"
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
-msgstr "Fayl seç"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr "Tədbiq Et"
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Mövcud qapıları avtomatik təsbit et"
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr "San Marino"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "MM Series"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "İnternet Bağlantısı Bölüşdürülməsi hazirda qeyri-fəaldır"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Belgium"
-msgstr "Belçika"
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech mouse (serial ya da köhnə C7 növü)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
-msgstr "Kuveyt"
+#: ../../mouse.pm_.c:68
+msgid "busmouse"
+msgstr "busmouse"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "İşlətmək istədiyiniz pəncərə idarəçisini seçin:"
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "2 düyməli"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
-msgstr "Dekabr"
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "3 düyməli"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "cpu'nun alt nəsli"
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "heç biri"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
-msgstr "İlk Dəfə Sehirbazı"
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "Siçansızs"
-#: ../../lang.pm:1
-#, c-format
-msgid "Taiwan"
-msgstr "Tayvan"
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
+msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "Pakistan"
+#: ../../mouse.pm_.c:491
+msgid "To activate the mouse,"
+msgstr "Siçanınızı işə salmaq üçün,"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "xahiş edirik gözləyin, fayl oxunur: %s"
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr "TÆKÆRİ OYNADIN!"
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+#: ../../my_gtk.pm_.c:65
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
msgstr ""
-"Bir xəta oldu, yalnız necə düzəldiləcəyi bilinmir.\n"
-"Davam edin, riski sizÉ™ aitdir!"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Importance: "
-msgstr "ÆhÉ™miyyÉ™t:"
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
+msgstr "Qurtar"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-"Lexmark mürəkkəb fıskırtmalı çapçını və qurğuları istifadə edərək çap "
-"etməküçün Lexmark (http://www.lexmark.com/) tərəfindən tə'yin edilən "
-"sürücülərəehtiyacınız var. \"Sürücülər\" bağlantısına tıqlayın. Modelinizi "
-"və sonra əməliyyat sistemi olaraq \"Linuks\"u seçin. Sürücülər RPM paketi "
-"vəya interaktiv qrafiki qurulumu olan qabıq skriptləridir. Bu quraşdırmanı "
-"qrafiki ara üzlə etməniz məcburi deyil. Lisenziya razılaşmasından sonra. "
-"birbaşa çıxın. Daha sonra \"lexmarkmain\" ilə çapçı başı hizalama "
-"səhifəsiniçap edin və baş hizalamasını bu proqram vasitəsiylə quraşdırın."
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
+msgstr "Sonrakı ->"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Permissions"
-msgstr "Səlahiyyətlər"
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "DoÄŸrudur?"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "İnternet xidmət vericinizin adı (məsələn azeronline.com)"
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "MÉ™'lumat"
-#: ../../install_steps_gtk.pm:1
-#, 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'."
-msgstr ""
-"Sizin sisteminizin qaynaqları çatışmır. Qurulum ərzində problem yaşaya "
-"bilərsiniz\n"
-"Bu baş verərsə mətn aracılığı ilə qurulumu sınamalısınız. Bunun üçün "
-"dəCDROMdan başlatdığınız zaman,\n"
-" 'F1'ə basın və 'text' yazaraq enter'ə basın."
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
+msgstr "Ağacı Aç"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "Loopback üçün Windows bölməsini işlət"
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
+msgstr "Ağacı Qapat"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
-msgstr "Ermenicə (yazı makinası)"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr "Otaq və grup sıralaması arasında gəz"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection type: "
-msgstr "Bağlantı növü:"
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "pppoe istifadÉ™ et"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Graphical interface"
-msgstr "Qrafiki ara üz"
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
+msgstr "pptpe istifadÉ™ et"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "Çad"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
+msgstr "dhcp istifadÉ™ et"
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "Hindistan"
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
+msgstr ""
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "3D avadanlıq sür'ətləndirməsi ilə XFree %s"
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr "Slovakiya"
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
+msgstr "İnternetə bağlan"
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "Sinqapur"
+#: ../../network/adsl.pm_.c:30
+msgid ""
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"ADSL ilə internetə bağlanmanın ən yaxşı yolu pppoe'dur.\n"
+"Bəzi bağlantılar pptp istifadə edir, çox azı isə dhcp işlədir.\n"
+"Bilmirsiniz isə 'pppop istifadə et'i seçin"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "Kambodiya"
+#: ../../network/adsl.pm_.c:166
+msgid ""
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Monitorun Şaquli Daraması: %s\n"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Verici"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr "Cığır"
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Sahə(domain) adı"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
-msgstr "TAPILMADI"
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Databeyz"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-"Burada siz, birbaşa çapçıya göndərmək yerinə vəzifənin borulanacağı hər "
-"hansı bir əmr sətirini müəyyən edə bilərsiniz."
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "Verici"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "şəbəkə kartı tapılmadı"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
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"
+"drakfirewall configurator\n"
"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"Çap sistemi (%s) sistemin açılışında avtomatik olaraq başladılmayacaq.\n"
+"tinyfirewall configurator\n"
"\n"
-"Çap sistemi mümkünatı olan bir hücüm nöqtəsi olduğuna görə daha yüksək\n"
-"təhlükəsizlik səviyyəsinə ehtiyacı var və buna görə də avtomatik "
-"başladmanın.\n"
-"qeyri-fəallaşdırılılması daha uyğun yol olacaq.\n"
-"Çap sisteminin avtomatik başladılmasını yenə də istiyirsiniz?"
+"Bu, Linuks Mandrake sisteminiz üçün şəxsi bir firewall quraşdıracaqdır.\n"
+"Daha güclü və e'tibarlı sistem üçün xahiş edirik xüsusi MandrakeSecurity "
+"Firewall\n"
+"buraxılışını tədqiq edin."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:135
msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
+"drakfirewall configurator\n"
+"\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-"%s çap edicisi\n"
-"Bu çapçı üstündə nəyi dəyişdirmək istəyirsiniz?"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add host"
-msgstr "Qovşaq əlavə et"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"If you really think that you know which driver is the right one for your "
-"card\n"
-"you can pick one in the above list.\n"
-"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
msgstr ""
-"Kartınız üçün hansı sürücünün uyğun gəldiyini dəqiq bilirsinizsə yuxarıdakı\n"
-"siyahıdan birisini seçə bilərsiniz.\n"
-"\n"
-"\"%s\" səs kartınız üçün hazırkı sürücü \"%s\"dir"
-#: ../../any.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:153
msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-"İstifadəçilərə onların bə'zi qovluqlarını bölüşmə icazəsi vermək "
-"istəyirsiniz?\n"
-"Buna icazə versəniz, istifadəçilər konqueror və nautilus'dakı \"Bölüş\"\n"
-"menyusundan qovluqlarını bölüşdürə bilərlər.\n"
-"\n"
-"\"Xüsusi\" seçənəyi, hər istifadəçiyə fərqli icazə vermək üçün istifadə "
-"edilir.\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-"Xahiş edirik, paket seçkilərini disketə qeyd et/disketdən yüklə\n"
-"seçənəyini seçin."
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "No CDROM support"
-msgstr "Radio dəstəyi:"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "China (broadcast)"
-msgstr "Çin (translasiya)"
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use quota for backup files."
-msgstr "Ehtiyat nüsxəsi faylları üçün sərhəd qoy."
+#: ../../network/drakfirewall.pm_.c:169
+#, fuzzy
+msgid "Other ports"
+msgstr "Qapıları sına"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "\"%s\" çapçısı quraşdırılır..."
+#: ../../network/ethernet.pm_.c:37
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
+msgstr ""
+"Hansı dhcp alıcısını istifadə edəcəksiniz?\n"
+"Æsası dhcp-client dir"
-#: ../../fs.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:88
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."
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-"Bağlı fayl sistemi üstündəki ikili faylların icra edilməsinə icazə vermə\n"
-"Bu, öz me'marisi xaricindəki fayl sistemləri üçün icra edilə bilən faylları "
-"daxil\n"
-"edən bir verici üçün faydalı ola bilər."
+"Sisteminizdə heç bir eternet şəbəkə adapteri tapıla bilmədi.\n"
+"Bu bağlantı şəklini qura bilmərəm."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection"
-msgstr "İnternet bağlantısı"
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
+msgstr "Şəbəkə ara üzünü seçin"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:93
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"%s modulunun yüklənməsi iflas etdi.\n"
-"Yenidən başqa bir parametr ilə sınamaq istəyirsiniz?"
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "İnternetə bağlanmaq üçün şəbəkə adapteri seçin."
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr "Açıq Mənbə Dünyasına Xoş Gəldiniz."
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "şəbəkə kartı tapılmadı"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr "Bosniya vÉ™ Herzoqovina"
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "Şəbəkə Qurğuları"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:201
msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
-"Bu bağlama nöqtəsi üçün həqiqi bir fayl sisteminə (ext2/ext3, reiserfs, xfs, "
-"ya da jfs)ehtiyacınız var\n"
+"Xahiş edirik kompüterinizın adını girin.\n"
+"Məsələn``kompüteradı.sahəadı.com''.\n"
+"ÆgÉ™ ÅŸÉ™bÉ™kÉ™ keçidi istifadÉ™ edirsinizsÉ™ bunun da IP nömrÉ™sini girmÉ™lisiniz."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Bir qovşaq adı ya da IP ünvanı daxil etməlisiniz.\n"
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "Ev sahibi adı"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "Hollandiya"
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+msgid "Network Configuration Wizard"
+msgstr "Şəbəkə Quraşdırılması Sehirbazı"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Fayllar FTP ilə göndərilir"
+#: ../../network/isdn.pm_.c:22
+msgid "External ISDN modem"
+msgstr "Xarici ISDN kart"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
msgstr "Daxili ISDN kart"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
+msgstr "ISDN bağlantınızın növü nədir?"
+
+#: ../../network/isdn.pm_.c:45
msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
msgstr ""
-"Hazırda \"%2$s\" işlədən %1$s səs kartınız üçün bilinən başqa OSS/ALSA "
-"sürücü mövcud deyil"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Title"
-msgstr "Başlıq"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Yazı növlərini qur və çevir"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
-msgstr "DİQQÆT"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
-msgstr "Açılış yükləyicisi qurulur"
+#: ../../network/isdn.pm_.c:54
+#, fuzzy
+msgid "New configuration (isdn-light)"
+msgstr "Oddan divar (Firewall) quruluşu tapıldı!"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "replay"
-msgstr "təkrarla"
+#: ../../network/isdn.pm_.c:54
+#, fuzzy
+msgid "Old configuration (isdn4net)"
+msgstr "Oddan divar (Firewall) quruluşu tapıldı!"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
-msgstr "%s tapıldı"
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "ISDN quraşdırılması"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/isdn.pm_.c:166
msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
-"Expect, Tcl skript dili üçün bir uzantıdır və istifadəçi müdaxiləsi olmadan "
-"interaktiv iclasları mümkün qılır."
+"İnternet xidmət vericinizi seçin.\n"
+"Siyahıda deyilsə Siyahıda deyil'i seçin."
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr "Virgin Adaları (ABŞ)"
+#: ../../network/isdn.pm_.c:179
+#, fuzzy
+msgid "Europe protocol"
+msgstr "Açılış Protokolu"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "Xətalı ehtiyat faylı"
+#: ../../network/isdn.pm_.c:179
+#, fuzzy
+msgid "Europe protocol (EDSS1)"
+msgstr "Avropa (EDSS1)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"İnternet Bağlantısı Bölüşdürülməsi quraşdırılması onsuzda edilib.\n"
-"Hazırda qeyri-fəaldır.\n"
-"\n"
-"Nə etmək istəyirsiniz?"
+#: ../../network/isdn.pm_.c:181
+#, fuzzy
+msgid "Protocol for the rest of the world"
+msgstr "Bütün dünya"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
+#: ../../network/isdn.pm_.c:181
+#, fuzzy
+msgid ""
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
-"Çapçılarını işlətmək istədiyiniz qovşağın IP ünvanı və qapısını daxil edin."
+"Bütün dünya \n"
+" D-Channel'lə xaric (kiralıq xətlər)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Pipe into command"
-msgstr "Æmri borula"
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
+msgstr "Hansı protokolu istifadə etmək istəyirsiniz?"
-#: ../../install_interactive.pm:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
+msgid "Found \"%s\" interface do you want to use it ?"
msgstr ""
-"Sisteminizdaki bə'zi avadanlıqlar işləməsi üçün düzgün sürücülərə ehtiyac "
-"duyar.\n"
-"Bunun haqqında %s də/a lazımi malumatları tapa bilərsiniz"
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "Haiti"
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
+msgstr "Hansı növ kartınız var?"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "Avadanlıqlar tapılır..."
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
+msgstr "Bilmirəm"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"Xüsusi, sizə öz gün və vaxtınızı seçmə imkanı verir. Diqər seçimlər /etc/"
-"crontab faylındakı icra hissələrini işlədir."
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../network/isdn.pm_.c:210
msgid ""
-"Description of the fields:\n"
"\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
-"Sahələrin izahatı:\n"
"\n"
+"ISA kartınız var isə sonrakı ekrandakı qiymətlər doğru olmalıdır.\n"
+"\n"
+"PCMCIA kartınız var isə kartınızın irq və ya io'sunu bilməlisiniz.\n"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Basic options"
-msgstr "Bəsit seçimlər:"
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "Dayandır"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
-msgstr "CPU adı"
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
+msgstr "Davam et"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr "Xətalı IPv4 xəta ismarışlarını qəbul et"
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
+msgstr "Hansısı sizin ISDN kartınızdır?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Çapçı mə'lumatları yenilənir..."
+#: ../../network/isdn.pm_.c:239
+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 ""
+"ISDN PCI kart tapdım, amma növünü bilmirəm. Xahiş edirik sonrakı ekrandakı "
+"kartlardan birini seçin."
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr "Eyni zamanda %s da şəkilləndirilməlidir"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "Heç bir ISDN PCI kart tapılmaı. Sonrakı ekrandakılardan seçin."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "Diqqətlı olun: bu əməliyyat təhlükəlidir."
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "Paket seçkilərini daxil edən disketi taxın"
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "Çevirməli şəbəkə seçənəkləri"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server: "
-msgstr "Verici:"
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr "Bağlantı adı"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Alerts:"
-msgstr "Təhlükəsizlik Xəbərdarlıqları:"
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
+msgstr "Telefon nömrəsi"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
-msgstr "İsveç"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "Giriş adı"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "SSH üçün Expect işlət"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "PolÅŸa"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Other ports"
-msgstr "Diqər qapılar"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "Skript əsaslı"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "mmap'lanmış yaxalama üçün yaxalama buferlərinin miqdarı"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "Terminal əsaslı"
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid " - detected"
-msgstr "tapıldı"
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "Sahə(domain) adı"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr "SMBus idarəçiləri"
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+msgid "First DNS Server (optional)"
+msgstr "Birinci DNS Vericisi (arzuya görə)"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Bağlantı vaxt dolması (saniyə sonra)"
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+msgid "Second DNS Server (optional)"
+msgstr "İkinci DNS Vericisi (arzuya görə)"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/modem.pm_.c:95
msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-"Bə'zi köhnə i486DX-100 mikrosxemlər \"halt\" əmrindən sonra idarə etmə "
-"moduna düzgün geri dönə bilmirdi"
-#: ../../keyboard.pm:1
+#: ../../network/modem.pm_.c:97
#, c-format
-msgid "Croatian"
-msgstr "Xorvat dili"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Use existing partition"
-msgstr "Mövcud bölməni işlət"
+msgid ""
+"\"%s\" based winmodem detected, do you want to install needed software ?"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "%s əksi ilə rabitə qurula bilmir"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Do nothing"
+msgstr "amma oxşamır"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Yardım/_Haqqında..."
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Install rpm"
+msgstr "Qurulum"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "İstifadəçi cərgələrini ehtiyat nüsxələrini qeri yükləmədən əvvəl sil"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Title"
+msgstr "Cədvəl"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:29
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?"
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-"Bir çəbəkə çapçısını quraşdırma üçün şəbəkəyə yetişmə səlahiyyətiniz var, "
-"yalnız hələ quraşdırılmayıb. Şəbəkə quraşdırması olmadan indi quraşdırmaq "
-"istədiyiniz çapçını işədə bilməyəcəksiniz. Necə davam etmək istəyirsiniz?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "CUPS çapçı qurğuları"
+"\n"
+"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
+"bilərsiniz."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr "bağlanmış bölmələrinizdə heç bir yazı növü tapıla bilmədi"
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr ""
+"\n"
+"Bağlantınızı yenidən quraşdıra bilərsiniz."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
-msgstr "F00f xətası"
+#: ../../network/netconnect.pm_.c:29
+msgid "You are currently connected to internet."
+msgstr "Artıq İnternetə bağlısınız."
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
+#: ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr ""
+"\n"
+"İstəsəniz İnternetə bağlana bilərsiniz ya da yeniden quraşdıra bilərsiniz."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Domain Name:"
-msgstr "Domen Adı:"
+#: ../../network/netconnect.pm_.c:32
+msgid "You are not currently connected to Internet."
+msgstr "Hələ İnternetə bağlı deyilsiniz."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Root umask"
-msgstr "Ali istifadəçi umask'ı"
+#: ../../network/netconnect.pm_.c:36
+msgid "Connect"
+msgstr "BaÄŸlan"
-#: ../../any.pm:1
-#, c-format
-msgid "On Floppy"
-msgstr "DisketÉ™"
+#: ../../network/netconnect.pm_.c:37
+msgid "Disconnect"
+msgstr "Bağlantını kəs"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reboot by the console user"
-msgstr "Konsol sitifadəçisi tərəfindən yenidən başlatma"
+#: ../../network/netconnect.pm_.c:38
+#, fuzzy
+msgid "Configure the connection"
+msgstr "Şəbəkəni qur"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore"
-msgstr "Geri yüklə"
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
+msgstr "İnternet bağlantısı & quraşdırılması"
-#: ../../standalone/drakclock:1
+#: ../../network/netconnect.pm_.c:94
#, fuzzy, c-format
-msgid "Server:"
-msgstr "Verici:"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
+msgid "We are now going to configure the %s connection."
msgstr ""
-"əgər bəli seçilidirsə, şəbəkə avadanlıqlarının nizamsız modda olduğunu yoxla."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Mövcud olan paketlər axtarılır."
+"\n"
+"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
+"bilərsiniz."
-#: ../../../move/move.pm:1
+#: ../../network/netconnect.pm_.c:103
#, fuzzy, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Xahiş edirik, gözləyin, təhlükəsizlik səviyyəsi seçilir..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
-msgstr "Init İsmarışı"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "Bölmə cədvəlini qurtar"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "Kipr"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection complete."
-msgstr "Bağlantı tamamlandı."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "RAID'dən ayır"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "Bu şifrələmə açarı çox sadədir (ən az %d hərf böyüklüyündə olmalıdır)"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Quraşdırma Sehirbazları"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN Bağlantısı"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CD-R / DVD-R"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
-msgstr "əsas"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr " SMB/Windows vericisi üstündə \"%s\", bölüşülmüş sahə \"%s\""
-
-#: ../../help.pm:1
-#, 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"
-"!!"
-msgstr ""
-"Bu dialoq, açılışda avtomatik olaraq başlamasını istədiyiniz xidmətləri \n"
-"seçmək üçündür.\n"
+"We are now going to configure the %s connection.\n"
"\n"
-"DrakX hazırkı qurulumda mövcud olan bütün xidmətləri siyahıda göstərəcək.\n"
-"Hər birini diqqətlə nəzərdən keçirin və açılış vaxtı ehtiyac hiss "
-"etmədiyiniz\n"
-"xidmətlərin qabağındakı seçimi silin.\n"
"\n"
-" Siçan xidmətin üzərinə gələndə o xidmətin vəzifəsini başa salan mətn\n"
-"göstəriləcək. Yalnız, əgər xidmətin faydalı olub olmamasından əmin "
-"deyilsəniz\n"
-"ən yaxşısı onu olduğu kimi saxlamaq olacaq.\n"
+"Press OK to continue."
+msgstr ""
"\n"
-"!! ÆgÉ™r kompüteriniz verici olaraq istifadÉ™ edilÉ™cÉ™ksÉ™, bu addıma diqqÉ™t\n"
-"ayırmalısınız: istəmədiyiniz xidmətləri başlanğıcda başlatmaq "
-"istəməyəcəksiniz.\n"
-"Diqqətinizdə saxlayın ki, bə'zi xidmətlər fəal isə, bu verici üstündə "
-"təhlükəli ola bilər.\n"
-"!!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niue"
-msgstr "Niu"
+"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
+"bilərsiniz."
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "Keç"
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr "Şəbəkə quraşdırılması"
-#: ../../services.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:133
msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
+"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 ""
-"Açılış sırasında başlamaq üçün qurulmuş bütün şəbəkə axtar üzlərini "
-"fəallaşdırır ya da bağlayır."
+"Şəbəkədən quraşdırması apardığınız üçün şəbəkəniz artıq qurulmuş olmalıdır.\n"
+"Şəbəkə/İnternet bağlantınızı yenidən quraşdırmaq üçün Oldu'ya yoxsa Ləğv "
+"et'ə basın.\n"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/netconnect.pm_.c:157
msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr "MHz olaraq CPU tezliyi"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "important"
-msgstr "vacib"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "Mandrake Linuks Çapçı İdarəsi Vasitəsi"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
-msgstr "Ümumi İrəliləmə"
-
-#: ../../help.pm:1
-#, 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"
+"Welcome to The Network Configuration Wizard.\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."
+"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 ""
-"DrakX əvvəlcə kompüterinizdə mövcud olan bütün IDE adapterleri \n"
-"axtarmağa cəhd edəcək. Eyni zamanda sisteminizdəki PCI SCSI kartları\n"
-"da axtarılacaq. ÆgÉ™r SCSI kart tapılsa sürücüsü avtomatik qurulacaq\n"
-"\n"
-"Bəzən DrakX sabit disklərinizi müvəffəqiyyətlə aşkar etməyə bilər.\n"
-"Bu vəziyyətdə avadanlığınızı əllə müəyyən etməli olacaqsınız.\n"
+"Şəbəkə Quraşdırma Sehirbazına Xoç Gəldiniz\n"
"\n"
-"ÆgÉ™r PCI SCSI adapterini É™llÉ™ müəyyÉ™n etsÉ™niz DrakX sizdÉ™n onun qurÄŸularını\n"
-"sazlamak istədiyinizi soruşacaq, sizə sisteminizdə SCSI\n"
-"adapteri olub olmadığı soruşulacaq. İmkan verin ki, DrakX sərbəstcə özü\n"
-"xüsusiyyətləri tapsın. Çox vaxt DrakX bu addımdan müvəffəqiyyətlə\n"
-"və xətasız çıxacaq.\n"
-"ÆgÉ™r DrakX avadanlığa avtomatik olaraq hansı parametrlÉ™rin yollanacağını\n"
-"tapmaq üçün seçimləri qurğulaya bilməzsə sürücünü əllə siz quraşdırmaq\n"
-"məcburiyyətində qalacaqsınız."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr "Aruba"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "İstifadəçilər"
+"İnternet/Şəbəkə qurğularınızı edəcəyik.\n"
+"Avtomatik təsbit istəmirsiniz isə işarəti qaldırın.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Açılış yükləyici hazırlanır"
+#: ../../network/netconnect.pm_.c:163
+msgid "Choose the profile to configure"
+msgstr "Qurulacaq profili seçin"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
+msgstr "Avtomatik təsbit işlət"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Şəbəkə Keçidi (mis. %s)"
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
+msgstr "Usta Modu"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
-msgstr "Şifrələr uyğun gəlmir"
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
+msgstr "Avadanlıqlar tanınır..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Düzgün IP nümunələri:\n"
+#: ../../network/netconnect.pm_.c:214
+msgid "Normal modem connection"
+msgstr "Normal modem təsbiti"
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm_.c:214
#, c-format
-msgid "Please choose the media for backup."
-msgstr "Xahiş edirik, ehtiyat nüsxəsi çıxardılacaq mediyanı seçin."
+msgid "detected on port %s"
+msgstr "%s qapısında tapıldı"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Sıxlıq (MHz)"
+#: ../../network/netconnect.pm_.c:215
+#, fuzzy
+msgid "Winmodem connection"
+msgstr "Normal modem təsbiti"
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Bu saxlanmış paketlər seçkisini işlətmək üçün qurulumu ``linux "
-"defcfg=floppy''ilə başladın."
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "detected"
+msgstr "%s tapıldı"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of the processor"
-msgstr "işlədicinin nömrəsi"
+#: ../../network/netconnect.pm_.c:216
+msgid "ISDN connection"
+msgstr "ISDN Bağlantısı"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Avadanlıq saatı GMT'yə görə quruludur"
+msgid "detected %s"
+msgstr "%s tapıldı"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "Yeni quraşdırma başladmaq istəyirsiniz?"
+#: ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "ADSL connection"
+msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Give a file name"
-msgstr "Fayl adı verin"
+#: ../../network/netconnect.pm_.c:218
+msgid "Cable connection"
+msgstr "Kabel bağlantısı"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Çapçınızın hansı qapıya bağlı olduğunu seçin."
+#: ../../network/netconnect.pm_.c:218
+#, fuzzy
+msgid "cable connection detected"
+msgstr "Kabel bağlantısı"
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "CD-Rom'u dəyişdirin"
+#: ../../network/netconnect.pm_.c:219
+msgid "LAN connection"
+msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "Paraqvay"
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
+msgstr "eternet kart tapıldı"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "Quraşdırma qurtardı, dəyişiklikləri tətbiq etmək istəyirsiniz ?"
+#: ../../network/netconnect.pm_.c:222
+#, fuzzy
+msgid "Choose the connection you want to configure"
+msgstr "İstifadə edəcəyiniz vasitəni seçin"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
+#: ../../network/netconnect.pm_.c:246
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
-"Artan/Diferensial Ehtiyatları İşlət (köhnə ehtiyatları qətiyyən əvəz etmə)"
-#: ../../standalone/drakTermServ:1
-#, 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:"
-msgstr ""
-" - /etc/dhcpd.conf'u Saxla:\n"
-" \t\tŞəbəkə açılış alıcılarına,hər alıcının IP ünvanı tə'yin edən "
-"dhcpd.conf giriçi mövcud olmalıdır\n"
-" \t\tvə sistemə şəbəkə açılış əksləri üçün. drakTermServ bu girişləri "
-"yaratmaq/silmək üçün sizə yardım edir.\n"
-"\t\t\t\n"
-" \t\t(PCI kartları əksi işlətməyə bilər - etherboot düzgün əksi "
-"istəyəcəkdir. Siz, eyni zamanda\n"
-" \t\tetherboot'un əksləri axtarırkən, bu cür ad gözləyir:\n"
-" \t\tboot-3c59x.nbi yalnız boot-3c59x.2.4.19-16mdk.nbi kimi YOX).\n"
-"\t\t\t \n"
-" \t\tTipik dhcpd.conf stanza disksiz alıcıları dəstəkləyir və buna "
-"bənzəyir: "
+#: ../../network/netconnect.pm_.c:247
+#, fuzzy
+msgid "Internet connection"
+msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr "Sizin (%s) səs kartınız üçün sürücü mövcud deyil"
+#: ../../network/netconnect.pm_.c:253
+msgid "Do you want to start the connection at boot?"
+msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "force"
-msgstr "zorla"
+#: ../../network/netconnect.pm_.c:267
+msgid "Network configuration"
+msgstr "Şəbəkə quraşdırılması"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Exit"
-msgstr "Çıxış"
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../network/netconnect.pm_.c:272
#, c-format
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
msgstr ""
-"QEYD: Çapçı modeli və çap sisteminə bağlı olaraq %d MB'a qədər əlavə "
-"tÉ™'minatqurulacaq."
+"Şəbəkənin yenidən başladılması sırasında xəta oldu: \n"
+"\n"
+"%s"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../network/netconnect.pm_.c:282
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
-"Qurulu ara üzünüz yoxdur.\n"
-"ÆvvÉ™lcÉ™ onları 'QuraÅŸdır'a basaraq qurun"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "Estoniya dili"
+"Təbrik edirik, internet və şəbəkə quraşdırılması qurtardı.\n"
+"\n"
+"Qurğular indi sisteminizə əlavə ediləcək.\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:286
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
-"Apache bir World Wide Web vericisidir. HTML faylları və CGI verilməsi üçün "
-"istifadÉ™ edilir."
+"Bu edildikdən sonra Xdən çıxmağınızı tövsiyyə edirik, yoxsa\n"
+"verici adı xəsarətləri meydana gələ bilər."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/netconnect.pm_.c:287
msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
+"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 ""
-"CD Yazıcı avadanlığınızın adını daxil edin\n"
-" mis: 0,1,0"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ALL"
-msgstr "HAMISI"
+#: ../../network/network.pm_.c:278
+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 ""
+"DİQQÆT: Bu avadanlıq daha É™vvÉ™l İntenetÉ™ baÄŸlanmaq üçün qurulmuÅŸdur.\n"
+"Avadanlığın qurğularını dəyişdirmaək istəmirsiniz isə,\n"
+"OLDU ya basın.\n"
+"Aşağıdakı girişləri düzəltməniz özünü əvvəlki qurğuların üstünə yazacaqdır."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Alıcı ÆlavÉ™ Et/Sil"
+#: ../../network/network.pm_.c:283
+msgid ""
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
+msgstr "Xahiş edirik bu kompüter üçün IP qurğularını girin"
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "Choose the network interface"
-msgstr "Şəbəkə ara üzünü seçin"
+msgid "Configuring network device %s"
+msgstr "%s şəbəkə avadanlığı qurulur"
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../network/network.pm_.c:294
#, c-format
-msgid "Unknown Model"
-msgstr "NamÉ™'lum Model"
+msgid " (driver %s)"
+msgstr " (sürücü %s)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
-msgstr "CD/DVD yazıcılar"
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "IP ünvanı"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Æsas olaraq açılan bölmÉ™\n"
-" (MS-DOS açılışı üçün, lilo üçün deyil)\n"
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr "Netmask"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Faylı oxumaq üçün \"%s\"i fəallaşdır"
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image"
-msgstr "rəsmi seçin"
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "Avtomatlaşdırılmış IP"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Atəş divarı quruluşu tapıldı!"
+#: ../../network/network.pm_.c:299
+#, fuzzy
+msgid "Start at boot"
+msgstr "Açılışda başladılır"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "Bağlantı adı"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../network/network.pm_.c:326
msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-"mətn qutusunun hərf\n"
-"ədədində x mövqeyi"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/network.pm_.c:330
msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
msgstr ""
-"Lilo'nu qura bilməyəcəksiniz (ona görə ki, lilo, birdən çox PV üstündə LV'yə "
-"malik deyil)"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Updating package selection"
-msgstr "Paket seçkiləri yenilənir"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "%s loopback faylını haraya bağlamaq istəyirsiniz?"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../network/network.pm_.c:350
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"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 ""
-"Disket müvəffəqiyyətlə yaradıldı.\n"
-"İndi qurulumunuzu təkrarlaya bilərsiniz."
+"Xahiş edirik kompüterinizn adını girin.\n"
+"Məsələn``kompüteradı.sahəadı.com''.\n"
+"ÆgÉ™r ÅŸÉ™bÉ™kÉ™ keçidi istifadÉ™ edirsinizsÉ™ bunun da IP nömrÉ™sini girmÉ™lisiniz."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Ehtiyatlama üçün CD/DVDROM işlət"
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "DNS verici"
-#: ../../standalone/harddrake2:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "siçanın sahib olduğu düymə ədədi"
+msgid "Gateway (e.g. %s)"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
-msgstr "Təkrarla"
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "Keçit avadanlığı"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup other files"
-msgstr "Diqər faylların ehtiyat nüsxəsini çıxart"
+#: ../../network/network.pm_.c:363
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "Disket sürücüsü mövcud deyil"
+#: ../../network/network.pm_.c:367
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Ehtiyat faylları pozulub"
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
+msgstr "Vəkil vericilər quraşdırılması"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
-msgstr "TV normu:"
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "HTTP vəkil verici"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr "Cpuid ailəsi"
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "FTP vəkil verici"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: thin"
-msgstr "növ: incə"
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
+msgstr "Vəkil verici http://... şəklində olmalıdır."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "Litva dili AZERTY (yeni)"
+#: ../../network/network.pm_.c:388
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Vəkil verici http://... şəklində olmalıdır."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr "bəli, arifmetik ko-işlədici estisna vektoruna bağlıdır deməkdir"
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
+msgstr "Oddan divar (Firewall) quruluşu tapıldı!"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/shorewall.pm_.c:27
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"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
-"Bir proqram tə'minatlı RAID bölməsini kök cərgəsi (/) olaraq tə'yin\n"
-"etdiniz. /boot bölməsi olmadan heç bir açılış yükləyicisi bunu aça bilməz.\n"
-"Xahiş edirik, /boot bölməsini əlavə etməyi unutmayın"
+"Diqqət! Var olan Firewall qurğusu tapıldı. Yükləmədən sonra bir az əl "
+"gəzdirə bilərsiniz."
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "DigÉ™r ÆS (MacOS...)"
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
+msgstr "İnternet qurğuları"
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Siçanınızı işə salmaq üçün,"
+#: ../../network/tools.pm_.c:58
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "İnternete girişi indi sınamaq istəyirsiniz?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "Şəbəkə fəallaşdırılır"
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+msgid "Testing your connection..."
+msgstr "Bağlantınız sınanır..."
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Ekran görüntüləri qurulumdan sonra %s mövqeyində olacaqdır"
+#: ../../network/tools.pm_.c:70
+msgid "The system is now connected to Internet."
+msgstr "İnternetə artıq bağlısınız"
-#: ../../help.pm:1
-#, c-format
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
+msgstr "Təhlükəsizlik səbəbi ilə indi bağlantı qopacaqdır."
+
+#: ../../network/tools.pm_.c:72
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:\")."
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-"Sürücünüzdə bir və ya daha çox Microsoft bölməsi tapıldı.\n"
-"Xahiş edirik, Linuks Mandrakeni qurmaq üçün onlardan hansını\n"
-"yenidən ölçüləndirmək istədiyinizi seçin.\n"
-"\n"
-"Hər bölmə bu cür sıralanıb; \"Linuks adı\",\"Windows adı\"\n"
-"\"Həcm\".\n"
-"\n"
-"\"Linuks adı\" bu cür qurulub: \"sabit disk növü\", \"sabit disk nömrəsi\",\n"
-"\"bölmə nömrəsi\" (məsələn, \"hda1\").\n"
-"\n"
-"\"Sabit disk növü\" diskiniz IDE sürücüsü isə \"hd\"dir, SCSI sürücüsü isə\n"
-"\"sd\"dir.\n"
-"\n"
-"\"Sabit disk nömrəsi\" həmişə \"hd\" və ya \"sd\"dən sonrakı rəqəmdir. IDE \n"
-"sürücülər üçün:\n"
-"\n"
-"* \"a\" mə'nası \"birinci IDE idarəçisində ali (master) sürücü\",\n"
-"\n"
-"* \"b\" mə'nası \"birinci IDE idarəçisində qul (slave) sürücü\",\n"
-"\n"
-"* \"c\" mə'nası \"ikinci IDE idarəçisində ali (master) sürücü\",\n"
-"\n"
-"* \"d\" mə'nası \"ikinci IDE idarəçisində qul (slave) sürücü\".\n"
-"\n"
-"\n"
-"SCSI sürücülərində, \"a\"nın mə'nası \"ən düşük SCSI ID\",\n"
-"\"b\"nin mə'nası \"ikinci ən düşük SCSI ID\"dir, vs...\n"
-"\n"
-"\"Windows adı\" sabit diskinizin Windows altındakı adıdır (birinci\n"
-"disk ya da bölmənin adı \"C:\"dir, vs...)."
+"Sisteminiz İnternetə bağlı deyil.\n"
+"Bağlantını yenidən quraşdırın"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
-msgstr "Tanzaniya"
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
+msgstr "Bağlantı quraşdırılması"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "Fat fayl sistemi ucları hesaplanır"
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
+msgstr "Xahiş edirik aşağıdakıları doldurun ya da seçin"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Ehtiyat Mənbələri: \n"
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr "Kart IRQ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "custom"
-msgstr "xüsusi"
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "Kart mem (DMA)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Content of the file"
-msgstr "Fayl məzmunu"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "Kart IO"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
-msgstr "Tanıtma LDAP"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "Kart IO_0"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
-msgstr ""
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "Kart IO_1"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
-msgstr "İstədiyim sürücünü seçməyə icazə ver"
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
+msgstr "Sizin şəxsi telefon nömrəniz"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
-msgstr "ötürülüb"
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
+msgstr "İnternet xidmət vericinizin adı (məsələn azeronline.com)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palestine"
-msgstr "Filistin"
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
+msgstr "İXM telefon nömrəsi"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+msgid "Provider dns 1 (optional)"
+msgstr "Dns xidmətcisi 1 (arzuya görə)"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d vergüllə ayrılmış qatar"
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+msgid "Provider dns 2 (optional)"
+msgstr "Dns xidmətcisi 2 (arzuya görə)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " isdn"
-msgstr " isdn"
+#: ../../network/tools.pm_.c:109
+#, fuzzy
+msgid "Choose your country"
+msgstr "Klaviaturanızı seçin"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "Bütün mövcud klaviaturaların siyahısı"
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
+msgstr "Yığma modu"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Theme name"
-msgstr "Örtük adı"
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+#, fuzzy
+msgid "Connection speed"
+msgstr "Bağlantı növü:"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/_Yardım"
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+#, fuzzy
+msgid "Connection timeout (in sec)"
+msgstr "Bağlantı növü:"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitrary driver"
-msgstr "Səbəbsiz bir sürücü seçilir"
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
+msgstr "Hesab Girişi (istifadəçi adı)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "Kuku Adaları"
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
+msgstr "Hesap Parolu"
-#: ../../standalone/scannerdrake:1
-#, 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."
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
msgstr ""
-"Burada siz, sisteminizə bağlı darayıcıların uzaqdakı sistemlər və hansıları "
-"tərəfindən istifadə edilə biləcəyini tə'yin edə bilərsiniz."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the width of the progress bar"
-msgstr "İrəliləmə çubuğunun eni"
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
+msgstr "baÄŸlama iflas etdi: "
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "%s bölməsi şəkilləndirilir"
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
+msgstr "Bu platformda genişlədilmiş bölmələr dəstəklənmir"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hostname required"
-msgstr "Qovşaq adı məcburidir"
+#: ../../partition_table.pm_.c:685
+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 ""
+"Bölmə cədvəlinizdə bir boşluq var, amma o da işlədilə bilməz.\n"
+"Bu boşluğu, birinci bölmənizi en yaxınındakı genişlədilmiş bölməyə "
+"daşıyaraq\n"
+"məsələni həll edə bilərsiniz."
-#: ../../standalone/drakfont:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "Unselect fonts installed"
-msgstr "Qurulu olan yazı növlərini seçmə"
+msgid "Restoring from file %s failed: %s"
+msgstr "%s faylından qurtarılışda xəta: %s"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Çərx"
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit kernel version"
-msgstr "Çəyirdək buraxılışını göndər"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
+#: ../../partition_table.pm_.c:796
#, c-format
-msgid "Cancel"
-msgstr "Ləğv Et"
+msgid "Error writing to file %s"
+msgstr "%s faylına yazarkən xəta oldu"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for configured scanners ..."
-msgstr "Quraşdırılmış darayıvılar axtarılır ..."
+#: ../../partition_table/raw.pm_.c:192
+msgid ""
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
+msgstr ""
+"Bə'zən sürücünüzdə pis şeylər ola bilər.\n"
+"Datanın bütövlüyü yoxlaması bacarılmadı. \n"
+"Bu o demekdir ki diskə yazılan hər şey təsadüfi olacaqdır"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Videocard"
-msgstr "Video kartı"
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr "alınmalı"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tEhtiyatlar tar və bzip2 işlədir\n"
+#: ../../pkgs.pm_.c:27
+msgid "important"
+msgstr "vacib"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Remove Selected"
-msgstr "Seçiləni Sil"
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr "əla"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/_Modemləri avtomatik təsbit et"
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr "gözəl"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove printer"
-msgstr "Çapçını çıxart"
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr "bəlkə"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Last Log"
-msgstr "Son Qeydi Göstər"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
+msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "İnternetin hansı xidmətlərə bağlana bilməsini istəyirsiniz?"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
+msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Connection Type"
-msgstr "Bağlantı Növü:"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
msgstr ""
-"Poçt quraşdırma vasitəsinə xoş gəldiniz.\n"
-"\n"
-"Burada, siz xəbər vermə sistemini quraşdıra bilərsiniz.\n"
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Other"
-msgstr "Digər"
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
+msgstr ""
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
-msgstr "Æsas"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Düymə 2 emulyasiyası"
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter a package name."
-msgstr "Xahiş edirik, paket adını daxil edin."
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run chkrootkit checks"
-msgstr "chkrootkit yoxlamalarını icra et"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+msgid "Unknown Model"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "type1inst building"
-msgstr "type1inst inÅŸa edilir"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "Yerli Çap Edici"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
+msgstr "Uzaq Çap Edici"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image file"
-msgstr "rəsm faylını seçin"
+#: ../../printer/main.pm_.c:28
+#, fuzzy
+msgid "Printer on remote CUPS server"
+msgstr "Uzaq CUPS vericisi"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "X server"
-msgstr "X verici"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+#, fuzzy
+msgid "Printer on remote lpd server"
+msgstr "Uzaq çap edici vericisi(lpd)"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin User Name"
-msgstr "Domen İdarəçisinin İstifadəçi Adı"
+#: ../../printer/main.pm_.c:30
+#, fuzzy
+msgid "Network printer (TCP/Socket)"
+msgstr "Şəbəkə Çap Edicisi (soket) "
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Televiziya kanalları axtarılarkən xəta yarandı"
+#: ../../printer/main.pm_.c:31
+#, fuzzy
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "SMB/Windows 95/98/NT"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
-msgstr "Amerikan (US) klaviaturası (beynəlmiləl)"
+#: ../../printer/main.pm_.c:32
+#, fuzzy
+msgid "Printer on NetWare server"
+msgstr "Çap Edici Vericisi"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Not installed"
-msgstr "Qurulmayıb"
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+#, fuzzy
+msgid "Enter a printer device URI"
+msgstr "Çap Edici avadanlığı URI"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Eyni zamanda iki Alt düyməsi"
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "LAN connection"
-msgstr "LAN bağlantısı"
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/-"
-msgstr "/Fayl/-"
+#: ../../printer/main.pm_.c:317
+#, fuzzy
+msgid "Local Printers"
+msgstr "Yerli Çap Edici"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Italian"
-msgstr "İtalyan dili"
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+#, fuzzy
+msgid "Remote Printers"
+msgstr "Uzaq Çap Edici"
-#: ../../interactive.pm:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid "Basic"
-msgstr "Æsas"
+msgid " on parallel port \\/*%s"
+msgstr ""
-#: ../../install_messages.pm:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+msgid ", USB printer \\/*%s"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid "Honduras"
-msgstr "Honduras"
+msgid ", multi-function device on parallel port \\/*%s"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "pdq"
-msgstr "pdq"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
+msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO"
-msgstr "Kart GÇ"
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
+msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
+msgstr ""
+
+#: ../../printer/main.pm_.c:344
#, fuzzy, c-format
-msgid "Samba server"
-msgstr "Samba Vericisi"
+msgid ", printing to %s"
+msgstr "%s faylına yazarkən xəta oldu"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm_.c:346
#, c-format
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-"\n"
-"Bu, sisteminizin ikili açılışı üçün\n"
-"xüsusi Bootstrap bölməsidir.\n"
-#: ../../standalone/drakautoinst:1
+#: ../../printer/main.pm_.c:348
#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
+msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-"Xahiş edirik, addımın təkrarlanmasını ya da əllə yenidən seçilməsini hər "
-"addım üçün ayrı ayrı seçin"
-#: ../../standalone/scannerdrake:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-"Eyni zamanda, uzaqdakı darayıcıların bu sistemdə istifadəyə açıq olmasını da "
-"burada seçə bilərsiniz."
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-FTP Şəbəkəsi.\n"
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr ""
-#: ../../security/l10n.pm:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid "Reports check result to tty"
-msgstr "Yoxlama nəticəsini tty'yə raportla"
+msgid ", using command %s"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Avadanlıq ya da fayl adı daxil etməlisiniz!"
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
+msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Quit"
-msgstr "/Çı_x"
+#: ../../printer/main.pm_.c:647
+#, fuzzy, c-format
+msgid "(on %s)"
+msgstr "(modul %s)"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Ekran kartı yaddaşı: %s KB\n"
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
+msgstr ""
-#: ../../standalone.pm:1
-#, c-format
+#: ../../printer/main.pm_.c:674
+#, fuzzy, c-format
+msgid "On CUPS server \"%s\""
+msgstr "CUPS verici IP"
+
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
+msgstr " (Æsas)"
+
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
+msgstr "Çap Edici Bağlantısı Seçin"
+
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
+msgstr "Çap ediciniz nə şəkildə bağlıdır?"
+
+#: ../../printer/printerdrake.pm_.c:30
+#, fuzzy
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"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
msgstr ""
-"This program is free software; you can redistribute it and/or modify\n"
-"it under the terms of the GNU General Public License as published by\n"
-"the Free Software Foundation; either version 2, or (at your option)\n"
-"any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful,\n"
-"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-"GNU General Public License for more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Uzaq CUPS vericiləri üçün heç bir quraşdırmağa lüzüm yoxdur\n"
+"Buradakı hər çap edici avtomatik tapılacaqdır.\n"
+"Olmazsa \"Uzaq CUPS vericisi\" ni seçin."
-#: ../../any.pm:1
-#, c-format
-msgid "access to compilation tools"
-msgstr "dərləmə vasitələrinə yetişmə"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Global statistics"
-msgstr "Statistikalar"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+#, fuzzy
+msgid "CUPS configuration"
+msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Xahiş edirik, geri yüklənəcək mə'lumatı seçin..."
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+#, fuzzy
+msgid "Specify CUPS server"
+msgstr "Uzaq CUPS vericisi"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:83
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"
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-"Aboot istifadə etmək istəyirsinizsə, boş disk sahəsi (2048 sektor "
-"kifayətdir.)\n"
-"buraxmağı unutmayın."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Standard test page"
-msgstr "Sıravi sınaq səhifəsi"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Time Zone"
-msgstr "Vaxt Zolağı"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create"
-msgstr "Yarat"
+#: ../../printer/printerdrake.pm_.c:84
+msgid ""
+"\n"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "What"
-msgstr "Nəyi"
+#: ../../printer/printerdrake.pm_.c:88
+#, fuzzy
+msgid "The IP address should look like 192.168.1.20"
+msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Paketləri istərkən xəta yarandı:"
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+#, fuzzy
+msgid "The port number should be an integer!"
+msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "Bulqar dili (BDS)"
+#: ../../printer/printerdrake.pm_.c:99
+msgid "CUPS server IP"
+msgstr "CUPS verici IP"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Server"
-msgstr "Vericini Qeyri-fəallaşdır"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
+msgstr "Qapı"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem encryption key"
-msgstr "Fayl sistemi şifrələmə açarı"
+#: ../../printer/printerdrake.pm_.c:102
+#, fuzzy
+msgid "Automatic CUPS configuration"
+msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
-msgstr "Gujarati dili"
+#: ../../printer/printerdrake.pm_.c:159
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
+
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+#, fuzzy
+msgid "Printerdrake"
+msgstr "Çap Edici"
-# needs editing (Metin)
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:167
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."
+"There are no printers found which are directly connected to your machine"
msgstr ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by drakTermServ. Clients can "
-"either be 'thin'\n"
-" or 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, %s is\n"
-" written for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-" modified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-" using xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-" subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by drakTermServ. "
-"Clients can either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:179
+#, fuzzy
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 ""
-"Xahiş edirik, 10-aralığının düzəltmək istədiyiniz ilk rəqəmini seçin,\n"
-"ya da davam etmək üçün Enter düyməsinə basın.\n"
-"Seçiminiz? "
+"The following printers\n"
+"\n"
+msgstr "Aşağıdakı paketlər sistemdən silinəcəklər"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:180
+#, fuzzy
msgid ""
+"The following printer\n"
"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
+msgstr "Aşağıdakı paketlər sistemdən silinəcəklər"
+
+#: ../../printer/printerdrake.pm_.c:182
+msgid ""
"\n"
+"and one unknown printer are "
msgstr ""
-"\n"
-" Tə'lif Hüququ (C) 2002 MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Save theme"
-msgstr "Örtüyü qeyd et"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "Braziliya"
-#: ../../standalone/drakautoinst:1
+#: ../../printer/printerdrake.pm_.c:184
#, c-format
-msgid "Auto Install"
-msgstr "Avtomatik Qurulum"
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration Wizard"
-msgstr "Şəbəkə Quraşdırılması Sehirbazı"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"are "
+msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
-msgstr "Sökülə bilən avadanlıqların avtomatik bağlanması"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"is "
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Printing"
-msgstr "Çap"
+#: ../../printer/printerdrake.pm_.c:189
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save:"
-msgstr "Qeyd ediləcək cərgəni daxil edin:"
+#: ../../printer/printerdrake.pm_.c:192
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:194
#, c-format
msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "Sisteminizə birbaşa bağlı olan heç bir çapçı aşkar ediləmyib"
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "Yeni bölmə yarat"
+#: ../../printer/printerdrake.pm_.c:200
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Driver:"
-msgstr "Sürücü:"
+#: ../../printer/printerdrake.pm_.c:214
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
-msgstr "na'məlum"
+#: ../../printer/printerdrake.pm_.c:215
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Çap edicini sınamaq istəyirsiniz?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "Fdisk istifadÉ™ et"
+#: ../../printer/printerdrake.pm_.c:217
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "SİÇANIN ÇÆRXİNİ OYNADIN!"
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
-#: ../../standalone/net_monitor:1
+#: ../../printer/printerdrake.pm_.c:219
#, c-format
-msgid "sent: "
-msgstr "göndərilən:"
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "Avtomatik IP"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+#, fuzzy
+msgid "Add a new printer"
+msgstr "Çap Edicisiz"
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:259
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"
+"Welcome to the Printer Setup Wizard\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"
+"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"
-" Note that two different options are available after clicking the button:\n"
+"It asks you for all necessary information to set up the printer and gives "
+"you access to all available printer drivers, driver options, and printer "
+"connection types."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:272
+msgid ""
"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\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"
-" 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"
+"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) and you Windows machines must be connected and "
+"turned on.\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"
+"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"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Təbrik edirik! Qurulum başa çattı və GNU/Linuks sisteminiz indi\n"
-"istifadəyə hazırdır. Sadəcə olaraq sisteminizi yenidən başlatmaq üçün\n"
-"\"%s\" düyməsinə basın. Kompüteriniz başlarkən avadanlıq yoxlamasından\n"
-"sonra görəcəyiniz açılış yükləyici menyusunda sizə başlatmaq\n"
-"istədiyiniz əməliyyat sistemlərinin siyahısı göstəriləcək.\n"
+
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
+msgid ""
"\n"
-"\"%s\" düyməsi seçimə bağlı olaraq aşağıdakı iki seçimi göstərir:\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" * \"%s\": indi etdiyiniz quruluma bənzər və operatora (kompüterin\n"
-"yanında oturana) ehtiyaca qalmadan qurulumu etmək üçün avtomatik\n"
-"qurulum disketi yaratma imkanı verir.\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
"\n"
-" Düyməni basdıqdan sonra iki fərqli seçim görəcəksiniz:\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"
-" * \"%s\". Qismən avtomatikləşdirilmiş qurulum. Yalnız disk bölmələmə\n"
-"addımı interaktiv olacaq və sizin istəklərinizə qulaq asacaq.\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:289
+msgid ""
"\n"
-" * \"%s\". Tamamilə avtomatikləşdirilmiş qurulum: sabit disk tamamilə\n"
-"yenidən yazılacaq, bütün mə'lumat yox olacaq.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" Bu xassə, əsasən birdən çox eyni sistemin qurulmasında çox əlverişlidir.\n"
-"Daha çox mə'lumat üçün saytımızın Auto install qisminə baxın.\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer or connected directly to the network.\n"
"\n"
-" * \"%s\"(*): bu, qurulum sırasında seçilən paketlərin siyahısını disketə\n"
-"qeyd edər. Bu disketi başqa qurulum ilə işlətmək üçün, disketi daxil edin "
-"vÉ™\n"
-"quruluma başlayın. Promptda, [F1] düyməsinə basın və >>linux\n"
-"defcfg=\"floppy\" << yazın.\n"
+"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"
-"(*) Bunun üçün FAT ilə şəkilləndirilmiş disketə ehtiyacınız olacaq. (GNU/"
-"Linuks\n"
-"altında bunu yaratmaq üçün \"mformat a:\" əmrini verin)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Moldova"
-msgstr "Moldova"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Siçanı"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuration of a remote printer"
-msgstr "Uzaq çapçının quraşdırması"
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
-msgstr "Müəssisə dəstək ehtiyaclarına cavab vermək üçün onlayn platform."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URL 'ftp:' ya da 'http:' ilə başlamalıdır"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Oriya"
-msgstr "Oriya"
+"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\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Sonuna yeni qayda əlavə et"
+#: ../../printer/printerdrake.pm_.c:307
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
+msgstr "Uzaq Çap Edici"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr "LiLo və Bootsplash örtük qurulumu müvəffəqiyyətlə başa çatdı"
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-"Eyni zamanda uzaq sistemlərdəki çapçıların bu kompüterdə avtomatik olaraq "
-"mövcud olmasına qərar verə bilərsiniz."
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:329
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''"
+"\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 ""
-"İstəsəniz indi %s modulunun parametrlərini göstərə bilərsiniz.\n"
-"Parametrlər``ad=qiymət ad2=qiymət2...'' şəklində olmalıdır.\n"
-"Məsələn ``io=0x300 irq=7''"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "Bölmə cədvəli qeyd edilmədən çıxılsın?"
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+#, fuzzy
+msgid "Printer auto-detection"
+msgstr "Avtomatik təsbit işlət"
-#: ../../mouse.pm:1
+#: ../../printer/printerdrake.pm_.c:385
#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
+msgid ", network printer \"%s\", port %s"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Hard Drive"
-msgstr "Sabit Disk Üstündə"
+#: ../../printer/printerdrake.pm_.c:387
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
-#: ../../standalone.pm:1
-#, c-format
-msgid "Installing packages..."
-msgstr "Paketlər qurulur..."
+#: ../../printer/printerdrake.pm_.c:391
+#, fuzzy, c-format
+msgid "Detected %s"
+msgstr "%s tapıldı"
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "Dutch"
-msgstr "Hollandiya dili"
+msgid "Printer on parallel port \\/*%s"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "Angola"
-msgstr "Anqola"
+msgid "USB printer \\/*%s"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "Aşağıdakı paketlər qurulmalıdır:\n"
+#: ../../printer/printerdrake.pm_.c:399
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Şəbəkə Çap Edicisi (soket) "
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "service setting"
-msgstr "xidmət qurğusu"
+#: ../../printer/printerdrake.pm_.c:401
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "Xüsusi"
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+#, fuzzy
+msgid "Local Printer"
+msgstr "Yerli Çap Edici"
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
-msgstr "Latviya"
+#: ../../printer/printerdrake.pm_.c:526
+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 ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr "Fayl başqa bir loopback tərəfindən istifadədədir, başqasını seçin"
+#: ../../printer/printerdrake.pm_.c:530
+#, fuzzy
+msgid "You must enter a device or file name!"
+msgstr "Çap Edici avadanlığı URI"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr "Sırf oxuna bilən"
+#: ../../printer/printerdrake.pm_.c:539
+#, fuzzy
+msgid "No printer found!"
+msgstr "Yerli Çap Edici"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:548
+#, fuzzy
+msgid "Available printers"
+msgstr "Yerli Çap Edici"
+
+#: ../../printer/printerdrake.pm_.c:552
msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
msgstr ""
-"Ad həlledilirliyi gizləmə qorumasını fəallaşdırr/qeyri-fəallaşdır.\n"
-"ÆgÉ™r \"alert\" seçilidirsÉ™, eyni zamanda syslog'a da raport edilÉ™cÉ™k."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
-msgstr "Bilinən sürücü yoxdur"
+#: ../../printer/printerdrake.pm_.c:553
+msgid ""
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
+#: ../../printer/printerdrake.pm_.c:555
+msgid ""
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:556
msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-"ÆgÉ™r o quraÅŸdırmaq istÉ™diyiniz deyilsÉ™, giriÅŸ sÉ™tirinÉ™ avadanlıq/fayl adını "
-"daxil edin"
-#: ../../standalone/draksound:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:558
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 choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-"Sisteminizdə səs kartı aşkar edilməyib. Xahiş edirik, Linuks dəstəkli səs "
-"kartının düzgün taxıldığını yoxlayın.\n"
-"\n"
-"\n"
-"Avadanlıq mə'lumat bazamızı bu ünvanda ziyarət edə bilərisiniz:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Yerli Şəbəkəni Quraşdır..."
+#: ../../printer/printerdrake.pm_.c:559
+#, fuzzy
+msgid "Please choose the port where your printer is connected to."
+msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:561
msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr "Kompüterinizdə səs sistemı başladın"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
-msgstr "suid/sgid fayllarının checksum'ını yoxla"
+#: ../../printer/printerdrake.pm_.c:565
+#, fuzzy
+msgid "You must choose/enter a printer/device!"
+msgstr "Çap Edici avadanlığı URI"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run some checks against the rpm database"
-msgstr "rpm mə'lumat bazasına qarşı bir neçə sınaq işə sal"
+#: ../../printer/printerdrake.pm_.c:584
+#, fuzzy
+msgid "Manual configuration"
+msgstr "Quraşdırma"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Execute"
-msgstr "İcra Et"
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
+msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Çapçı mə'lumat bazası hazırlanır..."
+#: ../../printer/printerdrake.pm_.c:634
+#, fuzzy
+msgid ""
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
+msgstr ""
+"Uzaqdakı bir lpd çap edici növbəsini istifadə etmək üçün, \n"
+"çap edicinin bağlı olduğu çap edici vericisinin adını və növbə \n"
+"adınını verməlisiniz."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Information"
-msgstr "MÉ™'lumat"
+#: ../../printer/printerdrake.pm_.c:635
+#, fuzzy
+msgid "Remote host name"
+msgstr "Uzaqdakı ev sahibi adı"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "No network card"
-msgstr "Çəbəkə kartı yoxdur"
+#: ../../printer/printerdrake.pm_.c:636
+#, fuzzy
+msgid "Remote printer name"
+msgstr "Uzaq Çap Edici"
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "3 düyməli"
+#: ../../printer/printerdrake.pm_.c:639
+#, fuzzy
+msgid "Remote host name missing!"
+msgstr "Uzaqdakı ev sahibi adı"
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Which filesystem do you want?"
-msgstr "Hansı dili istəyirsiniz?"
+#: ../../printer/printerdrake.pm_.c:643
+#, fuzzy
+msgid "Remote printer name missing!"
+msgstr "Uzaqdakı ev sahibi adı"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malta"
-msgstr "Malta"
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "%s tapıldı"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Detailed information"
-msgstr "Ætraflı mÉ™'lumatı"
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Bağlantınız başladılır..."
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, 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."
+msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-"Çapçı əsas qurğuları\n"
-"\n"
-"Səhifə böyüklüyü, mürəkkəb növü/pçap modu (mövcuddursa) və eyni zamanda da "
-"lazer çapçılar üçün avadanlıq qurğularının düzgün seçildiyini "
-"yoxlamalısınız. Diqqət edin ki çox yüksək çap keyfiyyəti və həlledilirliyi "
-"ilə çap əməliyyatı yavaşlaya bilər."
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
-msgstr "Bu floppi FAT şəklində deyildir"
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Şəbəkə dayandırılır"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "Şəbəkə Qurğuları"
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "SMB (Windows 9x/NT) Çap Edici Seçənəkləri"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:796
+#, fuzzy
msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
+"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 ""
-"Bu qurğu dəyişdirilən faylları qeyd edəcək. Dəqiq davranış ehtiyatların "
-"artan yoxsa diferensial modda olmasında bağlıdır."
+"Bir SMB çap edicidən yekun almaq üçün, SMB kompüter adı, çap edici "
+"vericisinin\n"
+"IP ünvanı, çap edicinin paylaşdırma adı, işləmə grupu, istifadəçi adı və \n"
+"parol verilməlidir."
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Graphic Card"
-msgstr "Qrafika Kartı"
+#: ../../printer/printerdrake.pm_.c:797
+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 ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing Windows partition"
-msgstr "Windows bölməsi ölçüləndirilir"
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
+msgstr "SMB verici adı"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "Kamerun"
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr "SMB verici IP"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "Provayder dns'i 1 (arzuya görə)"
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr "Paylaşdırma adı"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "İş qrupu"
+
+#: ../../printer/printerdrake.pm_.c:806
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Avtomatik təsbit işlət"
+
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
msgstr ""
-"İndi %s sabit diskinizi bölmələndirə bilərsiniz\n"
-"İşinizi bitirdiyinizdə `w' ilə qeyd etməyi unutmayın"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finnish)"
-msgstr "Saami (isveç/fin)"
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
+msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Close"
-msgstr "BaÄŸla"
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
+msgstr ""
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:827
#, 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."
+"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 ""
-"\"%s\": hazırkı ölkÉ™ seçimini yoxlayın. ÆgÉ™r bu ölkÉ™dÉ™ deyilsÉ™niz \"%s\"\n"
-"düymÉ™sinÉ™ basaraq baÅŸqasını seçin. ÆgÉ™r ölkÉ™niz göstÉ™rilÉ™n ilk siyahıda\n"
-"deyilsə, tam ölkə siyahısını görmək üçün \"%s\" düyməsinə basın."
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
-msgid "Calendar"
-msgstr "Təqvim"
+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 ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:840
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+"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 ""
-"Seçili Kataloq\n"
-"Girişini Geri Yüklə"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
+msgstr "NetWare Çap Edici Qurğuları"
+
+#: ../../printer/printerdrake.pm_.c:912
+#, fuzzy
msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
+"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 ""
-"Uzaqdakı bir lpd çapçısını istifadə etmək üçün, çapçının bağlı olduğu çapçı "
-"vericisinin qovşaq adını və o vericidəki çapçının adınını verməlisiniz."
+"NetWare çap edicidən yekun almaq üçün, NetWare vericisinin adı və çap "
+"edici \n"
+"növbəsi adı ilə istifadəçi adı va parolu verilməlidir."
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
-msgstr "İslandiya"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr "Çap Edici Vericisi"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Şəbəkə və İnternet Qurğuları"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
+msgstr "Çap Edici Növbə Adı"
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
-msgstr "konsol yardımçısı əksikdir"
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr "dayandırılıb"
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
+msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "FPU'nun irq vektoruna sahibliyi"
+msgid ", host \"%s\", port %s"
+msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
-msgid "Ext2"
-msgstr "Ext2"
+msgid "Host \"%s\", port %s"
+msgstr ""
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr "Ağacı Aç"
+#: ../../printer/printerdrake.pm_.c:1030
+#, fuzzy
+msgid "TCP/Socket Printer Options"
+msgstr "Soket Çap Edici Qurğuları"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1032
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
-"\n"
-"It has been reported to oops the kernel on unloading.\n"
-"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-"Köhnə \"%s\" sürücüsü artıq qara siyahıdadır.\n"
-"\n"
-"O çəyirdəyin açılması sırasında xətalar yaradır.\n"
-"\n"
-"Növbəti açılışda ancaq \"%s\" sürücüsü istifadə ediləcək."
-
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Expert Mode"
-msgstr "Mütəxəssis Modu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "Çapçı seçimləri"
+#: ../../printer/printerdrake.pm_.c:1033
+#, fuzzy
+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 ""
+"Soket çap edicidən yekun almaq üçün, çap edicinin ev sahibi adını ve "
+"mümkünsə, qapısının nömrəsini verməlisiniz."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Local Network adress"
-msgstr "Yerli Şəbəkə ünvanı"
+#: ../../printer/printerdrake.pm_.c:1037
+#, fuzzy
+msgid "Printer host name or IP missing!"
+msgstr "Çap Edici Ev sahibi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Sistem fayllarınızın ehtiyat nüsxəsini çıxardın. (/etc cərgəsi)"
+#: ../../printer/printerdrake.pm_.c:1059
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Çap Edici Ev sahibi"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the user umask."
-msgstr "İstifadəçi umask'ını seç."
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
+msgstr "Çap Edici avadanlığı URI"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1108
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 ?"
+"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 ""
-"İndi siz yenilənmiş paketləri endirib qurma imkanına maliksiniz. Bu "
-"paketlər\n"
-"distribusiya buraxıldıqdan sonra yeniləniblər və təhlükəsizlik ya da xəya "
-"həllərini\n"
-"daxil edə bilərlər.\n"
-"\n"
-"Bu paketləri endirmək üçün fəal İnternet bağlantınız olmalıdır \n"
-"\n"
-"Yeniləmələri qurmaq istəyirsiniz ?"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Samba Server"
-msgstr "Samba Vericisi"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Avstraliya Optus kabel Televiziyası"
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
+msgstr ""
-#: ../../install_steps_newt.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1463
msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+"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 ""
-" <Tab>/<Alt-Tab> irəli/geri | <Boşluq> işarətlə | <F12> sonrakı ekran"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet:"
-msgstr "Subnet:"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr "Çap edici adı"
-#: ../../lang.pm:1
-#, c-format
-msgid "Zimbabwe"
-msgstr "Zimbabve"
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
+msgstr "İzah"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "When"
-msgstr "Bu zaman"
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
+msgstr "Yeri"
+
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+#, fuzzy
+msgid "Reading printer database..."
+msgstr "CUPS sürücü datası oxunur..."
+
+#: ../../printer/printerdrake.pm_.c:1482
+#, fuzzy
+msgid "Preparing printer database..."
+msgstr "CUPS sürücü datası oxunur..."
+
+#: ../../printer/printerdrake.pm_.c:1578
+#, fuzzy
+msgid "Your printer model"
+msgstr "Uzaq Çap Edici"
-#: ../../network/adsl.pm:1
+#: ../../printer/printerdrake.pm_.c:1579
#, c-format
msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
+"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 ""
-"Alcatel mikrokoduna ehtiyacınız var.\n"
-"Onu buradan endirib:\n"
-"%s\n"
-"/usr/share/speedtouch içinə mgmt.o adı ilə köçürün"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hour"
-msgstr "Saat"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "İkinci DNS Vericisi (arzuya görə)"
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+#, fuzzy
+msgid "The model is correct"
+msgstr "DoÄŸrudur?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Finland"
-msgstr "Finlandiya"
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+#, fuzzy
+msgid "Select model manually"
+msgstr "Uzaq Çap Edici"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Rəng dərinliyi: %s\n"
+#: ../../printer/printerdrake.pm_.c:1606
+#, fuzzy
+msgid "Printer model selection"
+msgstr "Çap Edici Bağlantısı"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Bu paketi sistemdən çıxarda bilməzsiniz. Yenilənməlidir"
+#: ../../printer/printerdrake.pm_.c:1607
+#, fuzzy
+msgid "Which printer model do you have?"
+msgstr "Nə cür bir çap ediciniz var?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "Disketdən yüklənir"
+#: ../../printer/printerdrake.pm_.c:1608
+msgid ""
+"\n"
+"\n"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
+msgstr ""
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Timezone - DrakClock"
+#: ../../printer/printerdrake.pm_.c:1611
+msgid ""
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
-msgstr "Qəribə IPv4 paketlərininm qeyd edilməsini Fəallaşdır/Qeyri-fəallaşdır"
+#: ../../printer/printerdrake.pm_.c:1697
+#, fuzzy
+msgid "OKI winprinter configuration"
+msgstr "İnternet qurğuları"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr "Sloveniya"
+#: ../../printer/printerdrake.pm_.c:1698
+msgid ""
+"You are configuring an OKI laser winprinter. These printers\n"
+"use a very special communication protocol and therefore they work only when "
+"connected to the first parallel port. When your printer is connected to "
+"another port or to a print server box please connect the printer to the "
+"first parallel port before you print a test page. Otherwise the printer will "
+"not work. Your connection type setting will be ignored by the driver."
+msgstr ""
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse test"
-msgstr "Siçan sınağı"
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+#, fuzzy
+msgid "Lexmark inkjet configuration"
+msgstr "İnternet qurğuları"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1719
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."
+"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 ""
-"Drakperm, msec ilə səlahiyyətləri, qrupları və yiyələri düzəltmək üçün, "
-"lazım olan faylları görmək üçün işlədilir.\n"
-"Æsas qaydaların üstündÉ™n qeyd edÉ™rÉ™k öz qaydalarınızı yarada bilÉ™rsiniz."
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1746
msgid ""
-"Enter a user\n"
-"%s"
+"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 ""
-"Bir istifadəçi daxil edin\n"
-"%s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
msgstr ""
-"- PCI və USB davadanlıqları: bu e'malatçı, avadanlıq, alt e'malatçı və alt "
-"avadanlıq PCI/USB id'lərini göstərir"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "ProgressBar color selection"
-msgstr "İrəliləmə çubuğu rəng seçkisi"
+#: ../../printer/printerdrake.pm_.c:1750
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1972
msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
+"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 ""
-"Buradakı bir birindən fərqli seçimlərə yenilərini əlavə edə bilər,\n"
-"ya da mövcud olanları dəyişdirə bilərsiniz."
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
+msgid "Option %s must be an integer number!"
+msgstr ""
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
+msgid "Option %s must be a number!"
+msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../printer/printerdrake.pm_.c:1989
#, c-format
-msgid ""
-"Application Name\n"
-"or Full Path:"
+msgid "Option %s out of range!"
msgstr ""
-"Tə'minat Adı\n"
-"ya da Tam Cığır:"
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2028
+#, fuzzy, 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."
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
+msgstr "Çap edicini sınamaq istəyirsiniz?"
+
+#: ../../printer/printerdrake.pm_.c:2051
+#, fuzzy
+msgid "Test pages"
+msgstr "Qapıları sına"
+
+#: ../../printer/printerdrake.pm_.c:2052
+msgid ""
+"Please select the test pages you want to print.\n"
+"Note: the photo test page can take a rather long time to get printed and on "
+"laser printers with too low memory it can even not come out. In most cases "
+"it is enough to print the standard test page."
msgstr ""
-"at əmri, zamanlanan əmrləri işləmələri lazım gələn vaxtda işlədir.\n"
-"Sistem yükü lazımi qədər alçaq olduğunda yığma əmrləri işlədilir."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
-msgstr "Radio dəstəyi:"
+#: ../../printer/printerdrake.pm_.c:2056
+#, fuzzy
+msgid "No test pages"
+msgstr "Bəli, hər iki sınaq səhifəsini də çap et"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "SANE paketləri qurulur..."
+#: ../../printer/printerdrake.pm_.c:2057
+#, fuzzy
+msgid "Print"
+msgstr "Çap Edici"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
-msgstr "LDAP"
+#: ../../printer/printerdrake.pm_.c:2114
+#, fuzzy
+msgid "Standard test page"
+msgstr "Standart"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
-msgstr "SILO"
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
+msgstr ""
-#: ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Change type"
-msgstr "Növünü dəyişdir"
+#: ../../printer/printerdrake.pm_.c:2120
+#, fuzzy
+msgid "Alternative test page (A4)"
+msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", USB çapçı #%s"
+#: ../../printer/printerdrake.pm_.c:2122
+#, fuzzy
+msgid "Photo test page"
+msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "SILO Qurulumu"
+#: ../../printer/printerdrake.pm_.c:2126
+#, fuzzy
+msgid "Do not print any test page"
+msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
+msgstr "Sınaq səhifəsi çap edilir..."
+
+#: ../../printer/printerdrake.pm_.c:2159
+#, fuzzy, 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"
+"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"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-"Təbrik edirik, qurulum başa çatdı.\n"
-"Cdrom və disketi çıxartdıqtan sonra Enter'ə basaraq kompüterinizi\n"
-"yenidən başladın.\n"
-"\n"
-"\n"
-"Linuks Mandrake'nin bu buraxılışındakı yamaqlar haqqında \n"
-"mə'lumat almaq üçün bu ünvana baxın: \n"
-"\n"
+"Sınaq səhifəsi çap edici vasitəsinə göndərildi.\n"
+"Çap edicinin işləməsi üçün bir az vaxt keçər.\n"
+"Çap vəziyyəti:\n"
"%s\n"
"\n"
-"\n"
-"Sisteminizin qurğuları haqqında daha geniş mə'lumatı Rəsmi\n"
-"Linuks Mandrake İstifadəçi Kitabcığının qurulum sonrası bölməsində\n"
-"tapa bilərsiniz."
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Şəbəkə Protokolu Üstündən Geri Yüklə: %s"
+"Düz mü işləyir?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "paranoid"
-msgstr "paranoid"
+#: ../../printer/printerdrake.pm_.c:2163
+#, fuzzy
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+msgstr ""
+"Sınaq səhifəsi çap edici vasitəsinə göndərildi.\n"
+"Çap edicinin işləməsi üçün bir az vaxt keçər.\n"
+"Düz mü işləyir?"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "Lazım olmayanda poçt göndərmə"
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "Darayıcı(ları)nız şəbəkə üstündə istifadə edilə bilməyəcək."
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+#, fuzzy
+msgid "Raw printer"
+msgstr "Çap Edicisiz"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Hər ehtiyatlamadan sonra bu ünvana məktub göndər:"
+msgid ""
+"To print a file from the command line (terminal window) you can either use "
+"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
+"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
+"to modify the option settings easily.\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2218
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 "
+"These commands you can also use in the \"Printing command\" field of the "
+"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-"Eləcə də bir çox proqramın \"Çap əmri\" sahəsində bu əmrlərdənbirini işlədə "
-"bilərsiniz. Yalnız bu cür istifadədə çap ediləcək faylın adını proqram "
-"verəcəyi üçün fayl adı verilməz.\n"
-
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolution"
-msgstr "Həlledilirlik"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, 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."
+"\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 ""
-"SMB çapçısına çap etmək üçün, SMB qovşaq adını (Qeyd! Bu onun TCP/IP "
-"qovşaqadından fərqli ola bilər!) və mümkünsə çap vericisiniz IP ünvanını, "
-"yetişmək istədiyiniz çapçının bölüşmə adını, qəbul edilə bilən istifadəçi "
-"adı, şifrə və iş qrupu mə'lumatını bildirməlisiniz."
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
#, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"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\n"
+"\n"
msgstr ""
-" su xassəsini yalnız wheel qrupu üzvlərinə ya da hərkəsə açıq edilməsi."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
-msgstr "yenidən quraşdır"
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2228
msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+"Here is a list of the available printing options for the current printer:\n"
+"\n"
msgstr ""
-"Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər.\n"
-"DİQQÆT! BU SINAQ MÆRHÆLÆSINDÆDIR VÆ KOMPÜTERİNİZ DONDURA BILÆR."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell timeout"
-msgstr "Qabıq vaxt dolması"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Xinetd Service"
-msgstr "Xinetd Xidməti"
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, c-format
-msgid "access to network tools"
-msgstr "şəbəkə vasitələrinə yetişmə"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "HP LaserJet 1000 üçün Firmware-Upload"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
+msgstr ""
-#: ../advertising/03-software.pl:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
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."
+"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 ""
-"Və, əlbəttə ki, video və audio fayllarınızı çalmaq, rəsm və fotolarınızı "
-"nümayiş etmək və dəyişdirmək üçün son proqramlardan istifadə edərək "
-"multimediya hüdüdları keçin."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Avtomatik aşkar edilən çapçıların siyahısı. "
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
+msgid ""
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2253
#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
msgstr ""
-"aboot qurulumunda xata, \n"
-"ilk disk bölməsini yox etsə belə yenə də qurulmasını istəyirsiniz?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2257
msgid ""
-"Restore Selected\n"
-"Files"
+"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 ""
-"Seçili Faylları Qeri\n"
-"Yüklə"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2261
#, 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."
+"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 ""
-"%s mövcuddur, silinsin?\n"
-"\n"
-"Diqqət: Bu gedişatı əvvəlcə də etmişsinizdə güman ki\n"
-" vericidəki authorized_keys'dən girişi təmizləməlisiniz."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Xahiş edirik, aşağıdakıları doldurun ya da seçin"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Dəyişikliklər /etc/fstab faylına qeyd edilsin?"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
-msgstr "Açılış Protokolu"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-diskləri %s\n"
+#: ../../printer/printerdrake.pm_.c:2271
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Şəbəkə dayandırılır"
-#: ../../services.pm:1
-#, c-format
-msgid "On boot"
-msgstr "Açılışda"
+#: ../../printer/printerdrake.pm_.c:2272
+#, fuzzy, c-format
+msgid "Printing/Scanning on \"%s\""
+msgstr "Şəbəkə dayandırılır"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "%s paketinÉ™ ehtiyac var. Qurulsun?"
+#: ../../printer/printerdrake.pm_.c:2274
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Şəbəkə dayandırılır"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus identification"
-msgstr "Yol tanıtması"
+#: ../../printer/printerdrake.pm_.c:2275
+#, fuzzy, c-format
+msgid "Printing on the printer \"%s\""
+msgstr "Şəbəkə dayandırılır"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vatican"
-msgstr "Vatikan"
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+msgid "Close"
+msgstr "Qapat"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please make a backup of your data first"
-msgstr "ÆvvÉ™lcÉ™ datanızın yedÉ™yini alın"
+#: ../../printer/printerdrake.pm_.c:2281
+#, fuzzy
+msgid "Print option list"
+msgstr "Çap edici seçənəkləri"
-#: ../../harddrake/data.pm:1
+#: ../../printer/printerdrake.pm_.c:2301
#, c-format
-msgid "ADSL adapters"
+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!"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
+#: ../../printer/printerdrake.pm_.c:2322
+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 ""
-"Sizin birdən çox diskiniz var, linux qurmaq üçün hansını istifadə "
-"edəcəksiniz?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Eritrea"
-msgstr "Eritre"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot ISO"
-msgstr "Açılış ISO'su"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Firmware needed"
-msgstr "Firmware lazımdır"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove List"
-msgstr "Siyahını Sil"
-
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
-msgstr "Xüsusiləşdirilə bilən mühit"
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+#, fuzzy
+msgid "Reading printer data..."
+msgstr "CUPS sürücü datası oxunur..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
-msgstr "Inuktitut"
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+#, fuzzy
+msgid "Transfer printer configuration"
+msgstr "İnternet qurğuları"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2365
#, 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."
+"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 ""
-"rsync kimi bə'zi protokollar verici tərəfində quraşdırılmalıdır. Cərgə "
-"cığırını işlətmək yerinə, xidmət cığırı üçün 'modul' adını işlətməlisiniz."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "Mərakeş"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Hansı model çapçınız var?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add a new printer"
-msgstr "Yeni çapçı əlavə et"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " All of your selected data have been "
-msgstr " Bütün seçili mə'lumatlarınız "
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "Nepal"
+#: ../../printer/printerdrake.pm_.c:2368
+msgid ""
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Sil"
+#: ../../printer/printerdrake.pm_.c:2370
+msgid ""
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
-msgstr "cpu # "
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "chunk size"
-msgstr "parça böyüklüyü"
+#: ../../printer/printerdrake.pm_.c:2374
+msgid ""
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2375
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."
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
msgstr ""
-"\"ALL\" seçilidirsə, /etc/issue və /etc/issue.net mövcudiyyətinə icazə "
-"veriləcək.\n"
-"\n"
-"NONE seçilidirsə, heç birinə icazə verilməyəcək.\n"
-"\n"
-"Æks halda isÉ™ yalnız /etc/issue üçün icazÉ™ verilÉ™cÉ™k."
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr "Tək istifadəçi səviyyəsində sulogin(8)'i fəallaşdır/qeyri-fəallaşdır."
+#: ../../printer/printerdrake.pm_.c:2376
+msgid ""
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
+msgstr ""
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
-#, c-format
-msgid "commands before booting, or 'c' for a command-line."
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
msgstr ""
-"acilisdan evvel emrleri duzeltmək ucun 'e', emr setiri ucun ise 'c' basin"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr "%s paketi qurulurkən xəta oldu"
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
+msgstr ""
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm_.c:2392
#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Yük bu qiymətdən yüksək olarsa sizə xəbərdarlıq göndəriləcək"
+msgid ""
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Darayıcını əllə əlavə et"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr "Çap edici adı təkcə hərf, rəqəm və alt xətt daxil edə bilər"
-#: ../../standalone/printerdrake:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
-msgid "Refresh"
-msgstr "YenilÉ™"
+msgid ""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
+msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Reload partition table"
-msgstr "Bölmə cədvəlini yenidən yüklə"
+#: ../../printer/printerdrake.pm_.c:2413
+#, fuzzy
+msgid "New printer name"
+msgstr "Çap Edicisiz"
-#: ../../standalone/drakboot:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
+msgid "Transferring %s..."
msgstr ""
-"Bəli, bu istifadəçi üçün avtomatik giriş istəyirəm (istifadəçi, masa üstü)"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2427
#, c-format
-msgid "Restore Selected"
-msgstr "Seçiləni Qeri Yüklə"
+msgid ""
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Qurulanlar siyahısında yazı növlərini axtar"
+#: ../../printer/printerdrake.pm_.c:2437
+#, fuzzy
+msgid "Refreshing printer data..."
+msgstr "CUPS sürücü datası oxunur..."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Yerli Şəbəkə `.0' ilə bitmədi, zəminə buraxılır."
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+msgid "Configuration of a remote printer"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Boot"
-msgstr "Açılış"
+#: ../../printer/printerdrake.pm_.c:2446
+#, fuzzy
+msgid "Starting network..."
+msgstr "Bağlantınız başladılır..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " və CD'nin sürücüdə olduğunu yoxlayın"
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+#, fuzzy
+msgid "Configure the network now"
+msgstr "Şəbəkəni qur"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Tuner type:"
-msgstr "Tuner növü:"
+#: ../../printer/printerdrake.pm_.c:2480
+#, fuzzy
+msgid "Network functionality not configured"
+msgstr "Monitor qurulmayıb"
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2481
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 ""
-"İndi kompüteriniz üçün çap sistemini seçmÉ™ vaxtı gÉ™ldi. DigÉ™r ÆS'lÉ™ri sizÉ™ "
-"bir\n"
-"dənəsini təqdim edə bilərlər, yalnız Mandrake Linuks ikisini təqdim edir.\n"
-"Hər çap sistemi xüsusi quraşdırma növləri üçün uyğundur.\n"
-"\n"
-" * \"%s\" -- bu seçim``çap et, növbəyə alma'' mə'nasına gəlir.\n"
-"ÆgÉ™r kompüterinizÉ™ baÄŸlı olan çapçı varsa, çap yığılmalarından qurtulmaq\n"
-"istəyirsinizsə və şəbəkə çapçılarınız yoxdursa, bunu seçin. (\"%s\"\n"
-"yalnız çox sadə şəbəkə hallarını idarə edə bilər və şəbəkələrlə işlədiləndə\n"
-"biraz yavaÅŸ qalır. ÆgÉ™r bu GNU/Linuks ilÉ™ ilk tanışmanızdırsa, sizÉ™ \"pdq\"\n"
-"işlətməyi məsləhət edirik.\n"
-"\n"
-" * \"%s\" - `` Ümumi Unix Çap Sistemi'', isə həm öz kompüterinizə\n"
-"bağlı olan həm də bu dünyadakı istənən yerə qurulan çapçıdan istifadə\n"
-"etmək üçün ideal vasitədir və quraşdırılması çox asandır.\n"
-"Æsas quraÅŸdırma \"pdq\" qÉ™dÉ™r asandır. ÆgÉ™r bir \"lpd\" vericisini\n"
-"emulyasiya etmək istəyirsinizsə, \"cups-lpd \" demonunu başlatdığınıza\n"
-"əmin oun. .\"%s\" eyni zamanda çapçının quraşdırılması və idarəsi və çap\n"
-"üçün qrafiki ara üzlərə də sahibdir. \n"
-"ÆgÉ™r indi birisini seçib sonra çap sistemini bÉ™yÉ™nmÉ™zsÉ™niz, onu Mandrake\n"
-"İdarə Mərkəzindəki PrinterDrake bölməsindəki mütəxəssis düyməsi vasitəsiylə\n"
-"dəyişdirə bilərsiniz."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
-msgstr "\"Menyu\" düyməsi"
+"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
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2484
+#, fuzzy
+msgid "Go on without configuring the network"
+msgstr "Şəbəkə Qurğuları"
+
+#: ../../printer/printerdrake.pm_.c:2518
msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
-"\n"
-"\n"
-"Xahiş edirik, çapçınızın modelinin avtomatik açkar edilib edilmədiyini seçin "
-"\"Xam çapçı\" ya da səhv model seçilidirsə, siyahıdan düzgün modeli tapın."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Administrator:"
-msgstr "Təhlükəsizlik İdarəçisi:"
+#: ../../printer/printerdrake.pm_.c:2519
+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 ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
-msgstr "Qabıq vaxt dolmasını seç. Sıfır qiyməti vaxt dolması yoxdur deməkdir."
+#: ../../printer/printerdrake.pm_.c:2529
+#, fuzzy
+msgid "Restarting printing system..."
+msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "Firmware köçürülməsində müvəffəqiyyət"
+#: ../../printer/printerdrake.pm_.c:2568
+#, fuzzy
+msgid "high"
+msgstr "Yüksək"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid ""
-"You can't use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2568
+#, fuzzy
+msgid "paranoid"
+msgstr "Şübhəci"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
+msgid "Installing a printing system in the %s security level"
msgstr ""
-"əgər seçilidirsə, istifadəçilərin ev cərgələrindəki faylların "
-"səlahiyyətlərini yoxla."
-#: ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:2570
#, c-format
msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
+"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 ""
-"Heç İnternet bağlantınız yoxdur.\n"
-"ÆvvÉ™lcÉ™ onları 'QuraÅŸdır'a basaraq qurun"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Fonts copy"
-msgstr "Yazı növləri köçürülməsi"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
-msgstr "Avtomatlaşdırılmış"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Qurğuları sınamaq istəyirsiniz?"
+#: ../../printer/printerdrake.pm_.c:2604
+#, fuzzy
+msgid "Starting the printing system at boot time"
+msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2605
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\n"
+"\n"
+"It is possible that the automatic starting was turned off by changing to a "
+"higher security level, because the printing system is a potential point for "
+"attacks.\n"
+"\n"
+"Do you want to have the automatic starting of the printing system turned on "
+"again?"
msgstr ""
-"\"%s\" çapçısı Star Office/OpenOffice.org/GIMP proqramlarından "
-"müvəffəqiyyətlə çıxardıldı."
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save packages selection"
-msgstr "Paket seçkilərini qeyd et"
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
+msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Actions"
-msgstr "/_GediÅŸatlar"
+#: ../../printer/printerdrake.pm_.c:2630
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "Rezolyusiya: %s\n"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Remove the last item"
-msgstr "Son üzvü sil"
+#: ../../printer/printerdrake.pm_.c:2636
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "%s paketi qurulur"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr "Geri yüklənəcək istifadəçi siyahısı (ən yeni tarix vacibdir)"
+#: ../../printer/printerdrake.pm_.c:2685
+#, fuzzy
+msgid "Select Printer Spooler"
+msgstr "Çap Edici Bağlantısı Seçin"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
-msgstr "Heç bir şəbəkə açılış görüntüləri yaradılmadı!"
+#: ../../printer/printerdrake.pm_.c:2686
+#, fuzzy
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "pptpe istifadÉ™ et"
+#: ../../printer/printerdrake.pm_.c:2720
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
+msgstr "Çap Edicini Qur"
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Açılışda avtomatik olaraq başlayacaq xidmətləri seçin"
+#: ../../printer/printerdrake.pm_.c:2731
+#, fuzzy
+msgid "Installing Foomatic..."
+msgstr "%s paketi qurulur"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check files/directories writable by everybody"
-msgstr "Hərkəs tərəfindən yazıla bilən fayl/cərgələri yoxla"
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr "Çap edici seçənəkləri"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Bu çapçını necə istifadə edəcəyinizi öyrənin"
+#: ../../printer/printerdrake.pm_.c:2810
+#, fuzzy
+msgid "Preparing Printerdrake..."
+msgstr "CUPS sürücü datası oxunur..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configure the network now"
-msgstr "Şəbəkəni indi quraşdır"
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+#, fuzzy
+msgid "Configuring applications..."
+msgstr "Çap Edicini Qur"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Paketleri almaq üçün bir əks ünvanı seçin"
+#: ../../printer/printerdrake.pm_.c:2845
+#, fuzzy
+msgid "Would you like to configure printing?"
+msgstr "Bir çap edici qurmaq istəyirsiniz?"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:2915
+#, fuzzy
msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
-"FAT ölçüləndiricimiz sizin bölməniziri işlədə bilmir,\n"
-"bu xəta oldu: %s"
+"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
+"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Size: "
-msgstr "Böyüklük: "
+#: ../../printer/printerdrake.pm_.c:2916
+#, fuzzy
+msgid ""
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; or to view information about "
+"it."
+msgstr ""
+"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
+"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "Onu hansı sektora daşımaq istəyirsiniz?"
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahamas"
-msgstr "Bahamalar"
+#: ../../printer/printerdrake.pm_.c:2960
+#, fuzzy
+msgid "Change the printing system"
+msgstr "Şəbəkəni qur"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Do you want to click on this button?"
-msgstr "Bu düyməyə basmaq istəyirsiniz?"
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+msgid "Normal Mode"
+msgstr "Normal Mod"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Manual configuration"
-msgstr "ÆllÉ™ quraÅŸdırma"
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+#, fuzzy
+msgid "Do you want to configure another printer?"
+msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "search"
-msgstr "axtar"
+#: ../../printer/printerdrake.pm_.c:3211
+#, fuzzy
+msgid "Modify printer configuration"
+msgstr "İnternet qurğuları"
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:3213
+#, fuzzy, 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."
+"Printer %s\n"
+"What do you want to modify on this printer?"
+msgstr "Qurğuları sınamaq istəyirsiniz?"
+
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
msgstr ""
-"Bu paket /etc/sysconfig/keyboard'dakı seçili klaviatura düzülüşünü yüklər.\n"
-"Hansı klaviatura düzülüşü istifadə ediləcəyi kbdconfig ilə seçilir.\n"
-"Bu, çoxu kompüterdə fəal buraxılmalıdır."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (qurulum displey sürücüsü)"
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+#, fuzzy
+msgid "Printer connection type"
+msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "Zeroconf qovşaq adı . (nöqtə) daxil edə bilməz"
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+#, fuzzy
+msgid "Printer name, description, location"
+msgstr "Çap Edici Bağlantısı"
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr "icmp əks sədasını qəbul/rədd et."
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
+msgstr ""
-#: ../../services.pm:1
-#, 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."
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
msgstr ""
-"Syslog, bir çox vasitənin ismarıclarını müxtəlif sistem qeydlərində\n"
-"tutmalarına imkan verər. Syslog'un hər zaman işləməsi\n"
-"yaxşı fikirdir."
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown/Others"
-msgstr "Na'məlum/Digərləri"
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
+msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
-msgstr "Televiziya Kartı Təsbit Edilmədi!"
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+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
-#, c-format
-msgid "Options"
-msgstr "Seçimlər"
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "\"%s\" çapçısı indi əsas çapçı oldu."
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+#, fuzzy
+msgid "Print test pages"
+msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"OKI lazer winprinter quraşdırırsınız. Bu çapçılar çox xüsusi rabitə "
-"protokolu\n"
-"işlədir və yalnız BİRİNCİ paralel qapıya bağlananda işləyir. Xahiş edirik, "
-"bunu bir daha yoxlayın, əgər çapçınız başqa qapıya bağlıdırsa, sürücü onu "
-"rədd edəcəkdir."
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+#, fuzzy
+msgid "Know how to use this printer"
+msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr "cpu nəsli (mis: PentiumIII üçün 8, ...)"
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+#, fuzzy
+msgid "Remove printer"
+msgstr "Uzaq Çap Edici"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detected"
-msgstr "Avtomatik təsbit edilən"
+#: ../../printer/printerdrake.pm_.c:3282
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
+msgstr "CUPS sürücü datası oxunur..."
-#: ../../standalone/drakpxe:1
-#, 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)."
-msgstr ""
-"Kompüterınızə DHCP vericisi olaraq PXE vericisini və onu qurulim vericisi \n"
-"etmək üçün ona TFTP qurmaq üzərə quraşdıracaqsınız. Bu xassə ilə, \n"
-"Bu xassə ilə yerli şəbəkənizdəki digər kompüterlər bu kompüteri mənbə.\n"
-"olaraq istifadə edərək qurula biləcəklər.\n"
-"\n"
-"Daha irəli getmədən əvvəl Şəbəkə/İnternet yetişmənizin drakconnect ilə "
-"quraşdırıldığına əmin olun.\n"
-"\n"
-"Xəbədarlıq: Yerli Şəbəkə (LAN) qurmaq üçün uyğun Şəbəkə Adapterinə "
-"ehtiyacınız var."
+#: ../../printer/printerdrake.pm_.c:3307
+#, fuzzy
+msgid "Default printer"
+msgstr "Yerli Çap Edici"
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm_.c:3308
#, 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 "The printer \"%s\" is set as the default printer now."
msgstr ""
-"OSS (Open Sound System) ilk sÉ™s API'si idi. Bu, ÆS'dÉ™n müstÉ™qil sÉ™s "
-"API'sidirvə bütün UNIX(tm) sistemlərdə mövcuddur. Yalnız, bu çox bəsit "
-"vəməhdudlaşdırılmış API'dir.\n"
-"Dahası, OSS sürücülərinin hamısı təkəri yenidən kəşf edir.\n"
-"\n"
-"ALSA (Advanced Linux Sound Architecture) geniÅŸ silsilÉ™ ISA, USB vÉ™ PCI "
-"kartlarını dəstəkləyən modullaşdırılmış me'maridir.\n"
-"\n"
-"O, eyni zamanda OSS'dən daha qüvvətli API təşkil edir.\n"
-"\n"
-"Alsanı işlətmək üçün bunlardan biri ola bilər:\n"
-"- köhnə OSS API'si\n"
-"- yeni ALSA API'si.\n"
-#: ../../install_steps_interactive.pm:1
-#, 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"
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-"1 MB bootstrap üçün yer yoxdur! Qurulum davam edəcək, ancaq sisteminizi aça "
-"bilmək üçün DiskDrake'də bootstrap bölməsi yaratmalısınız."
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3312
#, c-format
msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Xahiş edirik, quraşdırmaq istədiyiniz çapçını seçin ya da giriş "
-"sətirinəavadanlıq/fayl adı daxil edin"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:3313
#, c-format
-msgid "Refuse"
-msgstr "Rədd Et"
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgstr ""
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
-msgstr "YERLİ"
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:3317
#, c-format
-msgid "HFS"
-msgstr "HFS"
+msgid ""
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
+msgstr ""
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-"HardDrake avadanlıq sınağı aparır və istəyə görə yeni/dəyişdirilmiş "
-"avadanlıqları quraşdırır."
-#: ../../fs.pm:1
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "%s faylı yaradılır və şəkilləndirilir"
+#: ../../printer/printerdrake.pm_.c:3325
+#, fuzzy, c-format
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Şəbəkəni yenidən başlatmaq istəyirsiniz?"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
-msgstr ""
-"ÆgÉ™r bÉ™li seçilidirsÉ™, sgid fayllarının É™lavÉ™lÉ™rini/silinÉ™cÉ™klÉ™rini yoxla."
+#: ../../printer/printerdrake.pm_.c:3329
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
+msgstr "CUPS sürücü datası oxunur..."
-#: ../../printer/printerdrake.pm:1
-#, 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"
-msgstr ""
-"HP LaserJet 1000 çapçısı başladılmadan əvvəl firmware'inin yüklü "
-"olmasılazımdır. HP veb saytından Windows sürü paketini endirin "
-"(çapçınınCD'sindəki firmware işləmir) və bu açıla bilən '.exe' faylını "
-"'unzip' vasitəsi ilə açıb 'sihp1000.img' faylını tapın. Daha sonra onu '/etc/"
-"printer' cərgəsinə köçürün. Bundan sonra o artıq çapçının hər "
-"başladılmasında avtomatik olaraq yüklənəcək.\n"
-
-#: ../../diskdrake/interactive.pm:1
+#: ../../raid.pm_.c:35
#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "ÆlavÉ™ etmÉ™k üçün mövcud bir LVM seçin"
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "Şəkilləndirilmiş RAID md%d-yə disk bölməsi əlavə edilə bilinmədi"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "xfs restart"
-msgstr "xfs restart"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
+msgstr "mkraid iflas etdi"
+
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid iflas etdi (raidtools əksik ola bilər mi?)"
-#: ../../printer/printerdrake.pm:1
+#: ../../raid.pm_.c:153
#, c-format
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "%d səviyyə RAID üçün çatmayan sayda disk bölməsi\n"
+
+#: ../../security/main.pm_.c:36
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
+"\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
+"\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\n"
+"\n"
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
+"\n"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
-"Çapçı \"%s\" onsuzda mövcuddur,\n"
-"həqiqətən də onun quraşdırmasının üstündən yazmaq istəyirsiniz?"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Qovşaqlardakı darayıcıları işlət:"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
-msgstr "Seçili olmayan hamısını"
+#: ../../security/main.pm_.c:77
+#, fuzzy, c-format
+msgid " (default value: %s)"
+msgstr " (Æsas)"
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "Uyğun bölmə mövcud deyil"
+#: ../../security/main.pm_.c:113
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Management \n"
-msgstr "Çapçı İdarəsi \n"
+#: ../../security/main.pm_.c:115
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Domen Adı Həlledicisi"
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "Network Options"
+msgstr "Modul seçənəkləri:"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
-msgstr "Şifrələrmə açarı (təkrar)"
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "System Options"
+msgstr "Modul seçənəkləri:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Samba bölüşülən sahə adı əksikdir!"
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
-msgstr "True Type qurulumu bitdi"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detection in progress"
-msgstr "Təsbit etmə fəaliyyətdədir"
+#: ../../security/main.pm_.c:191
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Bütöv Çəyirdəyi İnşa Et -->"
+#: ../../security/main.pm_.c:197
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "modem"
-msgstr "modem"
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr "ALSA səs sistemini (Advanced Linux Sound Architecture) başlat"
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "%s Sisteminə Xoş Gəldiniz"
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
+msgstr "Anakron, periodik əmr zamanlayıcısı"
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../services.pm_.c:21
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"
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-" drakhelp 0.1\n"
-"Müəllif Hüququ (C) 2003 MandrakeSoft.\n"
-"Bu sərbəst tə'minatdır və yalnız GNU GPL qaydaları altında paylana bilər.\n"
-"\n"
-"İstifadə Qaydası: \n"
+"apmd batareya vəziyyətini izləmək üçün və syslog aracılığıyla bunun qeydini "
+"tutmaq üçün istifadə edilir.\n"
+"Ayrıca batareya azaldığında sistemi qapatmaq üçün də istifadə edilir."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "%s sürücüsünə Yeniləmə Modulları disketini yerləşdirin"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
-msgstr "Açılış Ekranı"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:23
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
+"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 ""
-"Aşağıdakı çapçı\n"
-"\n"
-"%s%s\n"
-"sisteminizə birbaşa bağlıdır"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Qovşaqlar/şəbəkələr üstündə çapçı bölüşülməsi: "
+"at əmri, zamanlanan əmrləri işləmələri lazım gələn vaxtda işlədir.\n"
+"Sistem yükü lazımi qədər alçaq olduğunda yığma əmrləri işlədilir."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:25
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>\". "
+"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 ""
-"\n"
-"\"%s\" əmri eyni zamanda səciyyəvi çap vəzifəsinin seçim qurğularını "
-"dəyişdirməyə icazə verir. Sadəcə olaraq uyğun gələn qatarı əmr sətirinə "
-"əlavə edin, mis. \"%s <fayl>\". "
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "DrakClock"
-msgstr "Drakbackup"
+"cron, istifadəçilərə xüsusi əmrləri periodik olaraq işə sala bilən\n"
+"standart bir UNIX proqramıdır. vixie cron, standart cron'a əlavə edilmiş bir "
+"çox\n"
+"yeni xüsusiyyət daxildir."
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:28
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."
+"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 ""
-"Bəzi hallarda, %s sürücü düzgün işləməsi üçün əlavə mə'lumat istəyə bilər.\n"
-"Sürücüler üçün əlavə bir xüsusiyyət göstərmək mi istəyərsiniz, yoxsa\n"
-"sürücülərin lazımi mə'lumatlar üçün avadalığı tanımasını mı istəyərsiniz? \n"
-"Bə'zən tanımlama kompüterinizi dondura bilər amma donduğu üçün\n"
-"kompüterinizə heç bir şey olmaz."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "Düzgün CD adı deyil. CD'nin adı %s qoyulub."
+"GPM, Midnight Commander kimi mətn əsaslı tə'minatlara siçan dəstəyi əlavə "
+"edər.\n"
+"Ayrıca konsolda siçanla kəsmə və yapışdırma əməliyyatlarına da imkan verər.\n"
+"Konsolda pop-up menyu dəstəyi verər."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:31
msgid ""
-"\n"
-"- Daemon, %s via:\n"
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
msgstr ""
-"\n"
-"- Demon, %s bunun vasitəsi ilə:\n"
+"HardDrake texniki tə'minat sınağı aparar və onları bir ön quraşdırmadan "
+"keçirər."
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "Kuba"
+#: ../../services.pm_.c:33
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+msgstr ""
+"Apache bir World Wide Web vericisidir. HTML faylları və CGI verilməsi üçün "
+"istifadÉ™ edilir."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr "Oktyabr"
+#: ../../services.pm_.c:34
+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 ""
+"Internet superserver daemon (qısaca inetd ) bir çox \n"
+"başqa internet xidmətcisini lazım gəldiyi zaman işa salır. İçində telnet, "
+"ftp, rsh və rlogin kimi proqramın olduğu xidmətləri işə salmaqla məs'uldur.\n"
+"inetd-ni sistemden çıxarmaq, onun məs'ul olduğu bütün xidmətləri\n"
+"rədd etmək mənasını daşıyır."
-#: ../../lang.pm:1
-#, c-format
-msgid "Belize"
-msgstr "Beliz"
+#: ../../services.pm_.c:38
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
+"Linuks 2.2 seriyası çəkirdəklərində firewall\n"
+"qurmaq üçün üçün paket süzülməsini başlat."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Yeni çapçılar axtarılır..."
+#: ../../services.pm_.c:40
+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 ""
+"Bu paket /etc/sysconfig/keyboard'dakı seçili klaviatura düzülüşünü yüklər.\n"
+"Hansı klaviatura düzülüşü istifadə ediləcəyi kbdconfig ilə seçilir.\n"
+"Bu, mandrake qurulan bir çox kompüterdə fəal buraxılmalıdır."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
-msgstr " (çox-iclaslı)"
+#: ../../services.pm_.c:43
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
+msgstr ""
+"/usr/include/linux/{autoconf,version}.h üçün \n"
+"/boot-da avtomatik çəkirdək başlığı yaradılması."
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
-msgstr "Çəyirdək Açılış Vaxt Dolması"
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr "Texniki avadanlığın açılışda avtomatik təsbiti və qurulması."
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../services.pm_.c:46
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."
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
msgstr ""
-"Sizin kartınızın 3D sür'ətləndirmə dəstəyi ola bilər, amma sadecə olaraq "
-"XFree %s\n"
-"ilə düzgün işləyər.\n"
-"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D üçün daha yaxşı "
-"bir fikir olar."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Activate/Disable daily security check."
-msgstr "Günlük təhlükəsizlik yoxlamasını Fəallaşdır/Qeyri-fəallaşdır"
+"Linuxconf sistem qurğularınızı idarə edən proqramları\n"
+"müxtəlif vəzifələri açılışda icra edər."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-R.\n"
+#: ../../services.pm_.c:48
+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 ""
+"lpd, lpr'nin düzgün olaraq işləməsi üçün lazımi çap edici vasitəsidir.\n"
+"lpd əsasən, çap vəzifələrini idarə edən və onları çap ediciyə göndərən "
+"vericidir."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
-msgstr "Sistemdə libsafe tapılsa, libsafe fəal edilsin"
+#: ../../services.pm_.c:50
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
+"Linuks Virtual Verici, yüksək qabiliyyətli vericilər qurmaq üçün işlədilir."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX bölmələndirmə sehirbazı bu çıxış yollarını tapdı:"
+#: ../../services.pm_.c:52
+#, fuzzy
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
+msgstr ""
+"named (BIND) verici adlarını IP ünvanlarına çevirən\n"
+"Sahə Adı Vericisidir(DNS)."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "Macar dili"
+#: ../../services.pm_.c:53
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
+msgstr ""
+"Bütün Şəbəkə Fayl Sistemlərini (NFS), SMB (Lan Manager/Windows), və \n"
+"NCP (NetWare) bağlama nöqtələrini bağlar və ayırır."
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../services.pm_.c:55
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
-"İnternet xidmət vericinizi seçin.\n"
-"Siyahıda deyilsə Siyahıda deyil'i seçin."
+"Açılış sırasında başlamaq üçün qurulmuş bütün şəbəkə axtar üzlərini "
+"fəallaşdırır ya da qapatır."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Avtomatik vaxt sinxronizasiyası (NTP vasitəsiylə)"
+#: ../../services.pm_.c:57
+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 ""
+"NFS TCP/IP şəbəkələrində fayl bölüşülməsi üçün istifadə edilən məşhur bir "
+"protokoldur.\n"
+"Bu xidmət, /etc/exports faylında qurğuları olan NFS vericisinin\n"
+"istifadəsinə imkan verər."
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Windows bölməmi işlət"
+#: ../../services.pm_.c:60
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
+msgstr ""
+"NFS TCP/IP şəbəkələrində fayl bölüşülməsi üçün istifadə edilən məşhur bir \n"
+"protokoldur. Bu xidmət NFS fayl qıfılı istifadəsinə imkan verər."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
+#: ../../services.pm_.c:62
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+"Açılışda XFree və konsolda numlock düyməsini\n"
+"avtomatik olaraq aç."
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Server"
-msgstr "LDAP Vericisi"
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr "OKI 4w və uyğun Windows çap edicilərini dəstəklə."
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:65
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 "
@@ -13339,428 +9203,440 @@ msgstr ""
"Qurulmadığı vaxtda açılışda işləməz, işləməsinə ehtiyac olmayan\n"
"kompüterlərdə qurulu olması problem yaratmaz."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Choose your country"
-msgstr "Ölkənizi seçin"
+#: ../../services.pm_.c:68
+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 ""
+"portmapper, NFS ve NIS kimi protokollar tərəfindən istifadə edilən RPC \n"
+"bağlantılarını təşkilatlandırır. Portmap vericisi RPC mexanizmini işlədən\n"
+"protokollarla xidmət edən kompüterlərdə qurulmalıdır və işlədilməlidir."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:71
+#, fuzzy
msgid ""
-"\n"
-"- System Files:\n"
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
msgstr ""
-"\n"
-"- Sistem Faylları:\n"
+"Posfix, elektronik məktubların bir kompüterdən digərinə yollayan \n"
+"Elektronik Məktub Yollama Vasitəsidir."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
-msgstr "Tək Vasitələr"
+#: ../../services.pm_.c:72
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
+"Yüksək keyfiyyət təsadüfi rəqəm istehsal edən sistem entropi hovuzunun \n"
+"saxlanması və yenidən köhnə halına gətirilməsinə imkan verər."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Where"
-msgstr "Hara"
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
+msgstr ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "but not matching"
-msgstr "amma oxşamır"
+#: ../../services.pm_.c:76
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
+msgstr ""
+"routed vasitəsi avtomatik IP router cədvəlinin RIP protokolu tərəfindən\n"
+"yenilənməsinə imkan verər. RIP əsasən kiçik şəbəkələrdə istifadə edilir, "
+"daha böyük\n"
+"şəbəkələrdə daha qarışıq routing protokollarına ehtiyacı vardır."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../services.pm_.c:79
msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
msgstr ""
-"Burada siz (%s) səs kartınız üçün alternativ sürücü (ya OSS ya da ALSA) seçə "
-"bilərsiniz."
+"rstat protokolu bir şəbəkədəkı istifadəçilərin o şəbəkədəkı hər hansı bir\n"
+"kompüter haqqındakı qabiliyyət ölçüləri ala bilmələrinə imkan verər."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "PCMCIA kartlar qurulur..."
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"rusers protokolu bir şəbəkədəkı istifadəçilərin o şəbəkədəkı kompüterlərdə\n"
+"işləyən istifadəçiləri görməsinə imkan verər."
-#: ../../common.pm:1
-#, c-format
-msgid "kdesu missing"
-msgstr "kdesu əksikdir"
+#: ../../services.pm_.c:83
+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 ""
+"rwho protokolu, uzaq istifadəçilərin, rwho vasitəsi işlədən bir kompüterdə\n"
+"olan bütün istifadəçiləri görmələrina imkan verər."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s'n istifadəçi adına ehtiyacı var...\n"
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
+msgstr "Kompüterinizdə səs sistemı başladın"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
-msgstr "Şifrələmə açarı"
+#: ../../services.pm_.c:86
+msgid ""
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
+msgstr ""
+"Syslog, bir çox vasitənin ismarıclarını müxtəlif sistem qeydlərində\n"
+"tutmalarına imkan verər. Syslog'un hər zaman işləməsi\n"
+"yaxşı fikirdir."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr "USB avadanlığınız üçün sürücüləri yükləyin."
-#: ../../keyboard.pm:1
-#, 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."
+#: ../../services.pm_.c:89
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr ""
-"Bu qurğu qurulumdan sonra fəal olacaq.\n"
-"Qurulum sırasında, fərqli klaviatura düzülüşləri arasında\n"
-"keçmək üçün Sağ Control düyməsini istifadə etməlisiniz."
+"X Font Vericisini açılışda işə salar (Bu, XFree icrası üçün məcburidir)."
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "Kristmas Adası"
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Açılışda avtomatik olaraq başlayacaq xidmətləri seçin"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Automatic"
-msgstr "Avtomatik IP"
+#: ../../services.pm_.c:127
+#, fuzzy
+msgid "Printing"
+msgstr "Çap Edici"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Açılış yükləyicisi qurulumu iflas etdi. Xəta:"
+#: ../../services.pm_.c:128
+msgid "Internet"
+msgstr "İnternet"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "EIDE/SCSI kanalı"
+#: ../../services.pm_.c:131
+msgid "File sharing"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Bu çapçını əsas tə'yin et"
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+#, fuzzy
+msgid "System"
+msgstr "Sistem modu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "%s çığırının düz olduğunu yoxlayın"
+#: ../../services.pm_.c:138
+#, fuzzy
+msgid "Remote Administration"
+msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "%s bölməsi"
+#: ../../services.pm_.c:146
+#, fuzzy
+msgid "Database Server"
+msgstr "Databeyz"
-#: ../../security/level.pm:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "Paranoid"
-msgstr "Paranoid"
+msgid "Services: %d activated for %d registered"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "NIS"
-msgstr "NIS"
+#: ../../services.pm_.c:191
+#, fuzzy
+msgid "Services"
+msgstr "avadanlıq"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- İstifadəçini Sil"
+#: ../../services.pm_.c:203
+msgid "running"
+msgstr "işləmir"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Location on the bus"
-msgstr "Yol üstündə mövqe"
+#: ../../services.pm_.c:203
+msgid "stopped"
+msgstr "dayandırılıb"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No printer found!"
-msgstr "Çapçı aşkar edilmədi!"
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
+msgstr "Xidmətlər və vasitələr"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
-msgstr "avadanlığın e'malatçısı"
+#: ../../services.pm_.c:222
+msgid ""
+"No additional information\n"
+"about this service, sorry."
+msgstr ""
+"Bu xidmət haqqında təəsüf ki,\n"
+"əlavə mə'lumat yoxdur."
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Erase entire disk"
-msgstr "Bütün diski sil"
+#: ../../services.pm_.c:229
+msgid "On boot"
+msgstr "Açılışda"
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Default)"
-msgstr " (Æsas)"
+#: ../../services.pm_.c:241
+#, fuzzy
+msgid "Start"
+msgstr "Hal:"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Automatic reconfiguration"
-msgstr "Avtomatik yenidən quraşdırma"
+#: ../../services.pm_.c:241
+#, fuzzy
+msgid "Stop"
+msgstr "Sektor"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Receiving Speed:"
-msgstr "Alma Sür'əti:"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
-msgstr "Türk və Kaykos Adaları"
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Ip"
-msgstr "Ip yoxdur"
+#: ../../share/advertising/01-thanks.pl_.c:11
+msgid ""
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
+msgstr ""
-#: ../../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
-#, c-format
-msgid "<- Previous"
-msgstr "<- ÆvvÉ™lki"
+#: ../../share/advertising/02-community.pl_.c:9
+#, fuzzy
+msgid "Get involved in the Free Software world"
+msgstr "Bütün dünya"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Transfer Now"
-msgstr "İndi Transfer Et"
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password and network authentication methods"
-msgstr "Ali istifadəçi şifrəsi və şəbəkə icazə yöntəmlərini tə'yin et"
+#: ../../share/advertising/02-community.pl_.c:11
+msgid ""
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
+msgstr ""
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "Otaq və grup sıralaması arasında gəz"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "İnternetə bağlan"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Themes"
-msgstr "Örtüklər"
+#: ../../share/advertising/03-internet.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
+msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "Seçimlər: %s"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-"Açılış İdarəçisi olaraq hazırda %s işlədirsiniz.\n"
-"Quraşdırma sehirbazını başlatmaq üçün tıqlayın."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "OKI winprinter qurğuları"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Oyunlar"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
-msgstr "Müqəddəs Helena"
+#: ../../share/advertising/05-games.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Parallel port #%s"
-msgstr "%s nömrəli paralel qapı"
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+#, fuzzy
+msgid "Mandrake Control Center"
+msgstr "İdarə Mərkəzi"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Security Level"
-msgstr "Təhlükəsizlik Səviyyəsi"
+#: ../../share/advertising/06-mcc.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../share/advertising/07-desktop.pl_.c:9
+#, fuzzy
+msgid "User interfaces"
+msgstr "Şəbəkə ara üzü"
+
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
-"Bə'zi bölmələr bitdi.\n"
-"\n"
-"Həqiqətən də çıxmaq istəyirsiniz?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "Sudan"
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Təcrübi"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "Polyakca (QWERTZ sırası)"
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
-msgstr "Siriya"
+#: ../../share/advertising/08-development.pl_.c:11
+msgid ""
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
+
+#: ../../share/advertising/09-server.pl_.c:10
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?"
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
-"Çapçınız HP ya da Sony'dən çox-funksiyalı avadanlıqdır (OfficeJet, PSC, "
-"LaserJet 1100/1200/1220/3200/3300 darayıcı ilə, DeskJet 450, Sony IJP-V100), "
-"HP PhotoSmart ya da HP LaserJet 2200?"
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
-#, c-format
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:10
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"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-"%s emeliyyat sistemi secki proqramina xos gəlmissiniz!\n"
-"\n"
-"Içlerinden birini acmaq ucun adini yazin ve <ENTER>\n"
-"duymesine basin ve ya esas acilis ucun %d saniye gozleyin.\n"
-"\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "Portuqalca"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
-msgstr "Loopback fayl adı: "
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "DNS vericisi ünvanı 1.2.3.4 şəklində olmalıdır"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Control key"
-msgstr "Sol Control düyməsi"
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
-msgstr "Serbiya"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Newzealand"
-msgstr "Yeni Zellanda"
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
-msgstr "Bu qovluq kök fayl sistemi içərisində olmalıdır"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
-msgstr "Şəbəkə üstündə"
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
+msgid ""
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
-msgstr "CapsLock düyməsi"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "Sistem yükləyicisinin qurulumu"
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Ekran kartınızın yaddaş böyüklüyünü seçin"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "Usta"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
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))."
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"crontab və at'ı istifadəçilər üçün fəal/qeyri fəal et.\n"
-"\n"
-"İcazə verilən istifadəçiləri /etc/cron.allow və /etc/at.allow (baxın man at"
-"(1)\n"
-"və crontab(1)) içinə daxil edin."
-#: ../../standalone.pm:1
-#, c-format
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
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."
+"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 ""
-"[SEÇİMLÆR]\n"
-"Şəbəkə və İnternet bağlantı və izləmə tə'minatı\n"
-"\n"
-"--defaultintf interface : əsas olaraq bu ara üzü göstər\n"
-"--connect : hələ bağlı deyilsə internetə bağlan\n"
-"--disconnect : hazırda internetə bağlıdırsa bağlantını kəs\n"
-"--force : (dis)connect ilə işlədilir : bağlanmağa/kəsməyə zorla.\n"
-"--status : bağlananda 1, əks halda 0 cavabı verir, sonra çıxır.\n"
-"--quiet : interaktiv olma. (dis)connect ilə işlədilmək üçün."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
-msgstr "Dinamik IP Ünvan Hovusu:"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Usta"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "LVM adı?"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "\"%s\" sinifindəki bəzi avadanlıqlar çıxarıldı:\n"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "%s %s ara üz tapıldı"
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Install"
-msgstr "Qurulum Sonrası"
+#: ../../share/advertising/17-mdkclub.pl_.c:10
+msgid ""
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The internal domain name"
-msgstr "Daxili domen adı"
+#: ../../standalone.pm_.c:21
+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 ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "Kart IRQ"
+#: ../../standalone.pm_.c:40
+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 name.\n"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "logdrake"
+#: ../../standalone.pm_.c:51
+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.pm:1
-#, c-format
+#: ../../standalone.pm_.c:57
msgid ""
"Font Importation and monitoring "
"application \n"
@@ -13775,7240 +9651,4309 @@ msgid ""
" : name_of_application like so for staroffice \n"
" : and gs for ghostscript for only this one."
msgstr ""
-"Yazı növü idxalı və izlənməsi tə'minat \n"
-"--windows_import : bütün mövcud windows bölmələrindən idxal et.\n"
-"--xls_fonts : xls'dən osuzda mövcud olan bütün yazı növlərini göstər\n"
-"--strong : yazı növünün güclü yoxlanması.\n"
-"--install : bütün yazı növü fayl və cərqələrini qəbul et.\n"
-"--uninstall : hər hansı bir yazı növü ya da yazı növü cərqəsini sil.\n"
-"--replace : mövcuddursa yazı növünü üstündən əvəz et\n"
-"--application : 0 heç bir tə'minat.\n"
-" : 1 mövcud olan bütün tə'minatlar dəstəklənir.\n"
-" : tə'minatın_adı staroffice üçün so kimi \n"
-" : və ghostscript üçün gs kimi."
-
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Açılış disketi yaratmaq üçün istifadə ediləcək disket sürücüyü seçin"
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr "Mətn menyulu LILO"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
+#: ../../standalone.pm_.c:68
+msgid ""
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Hamısına (atəş divarı olmasın)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
-msgstr "Çəyirdək görüntüsü tə'yin etməlisiniz"
+#: ../../standalone.pm_.c:70
+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)"
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", USB üstündə çox funksiyalı avadanlıq"
+#: ../../standalone.pm_.c:82
+#, fuzzy
+msgid "[keyboard]"
+msgstr "Klaviatura"
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Do"
-msgstr "Et"
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Æks ünvanına baÄŸlantı qurulur"
+#: ../../standalone.pm_.c:84
+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 ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "Litvaniya dili AZERTY (köhnə)"
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "Brazilya dili (ABNT-2)"
+#: ../../standalone.pm_.c:94
+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 ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
-msgstr "Qovşağın/şəbəkənin IP ünvanı:"
+#: ../../standalone.pm_.c:99
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone.pm_.c:100
msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
msgstr ""
-"irəliləmə çubuğunun onun sol üst\n"
-"küncünə görə y mövqeyi"
-#: ../../install_gtk.pm:1
+#: ../../standalone.pm_.c:114
#, c-format
-msgid "System installation"
-msgstr "Sistem qurulumu"
+msgid ""
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
-msgstr "Müqəddəs Vinsent və Qrenadin"
+#: ../../standalone.pm_.c:168
+#, fuzzy
+msgid "Installing packages..."
+msgstr "%s paketi qurulur"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid reboot by the console user."
-msgstr "Konsol istifadəçisinə yenidən başlatma icazəsi ver/vermə"
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Lütfen çıxın və Ctrl-Alt-BackSpace düymələrinə basın"
-#: ../../standalone/logdrake:1
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "/File/_Open"
-msgstr "/Fayl/_Aç"
+msgid "Please relog into %s to activate the changes"
+msgstr "\"%s\"a(ə) təkrar girin və dəyişiklikləri fəallaşdırın"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "auto_install.cfg faylının yeri"
+#: ../../standalone/drakTermServ_.c:239
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "İnternet qurğuları"
-#: ../../any.pm:1
-#, c-format
-msgid "Open Firmware Delay"
-msgstr "Açıq Firmware Gecikməsi"
+#: ../../standalone/drakTermServ_.c:253
+#, fuzzy
+msgid "Enable Server"
+msgstr "Databeyz"
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
-msgstr "Macarıstan"
+#: ../../standalone/drakTermServ_.c:260
+#, fuzzy
+msgid "Disable Server"
+msgstr "Databeyz"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Zealand"
-msgstr "Yeni Zellandiya"
+#: ../../standalone/drakTermServ_.c:268
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS Verici"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Color configuration"
-msgstr "Rəng quraşdırması"
+#: ../../standalone/drakTermServ_.c:275
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS Verici"
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
+#: ../../standalone/drakTermServ_.c:283
+msgid "Etherboot Floppy/ISO"
msgstr ""
-"Onsuzda bə'zi məhdudiyyətləriniz mövcuddur, və hər gecə daha çox avtomatik "
-"yoxlamalar edilir."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "please choose the date to restore"
-msgstr "xahiş edirik, geri yüklənəcək tarixi seçin"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
-msgstr "Holland Antilləri"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr "ext2'dən ext3'ə keçilir"
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
+msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
+#: ../../standalone/drakTermServ_.c:294
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "İstifadəçini əlavə et"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Yeni geri yükləmə yerinə get."
+#: ../../standalone/drakTermServ_.c:299
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP Alıcısı"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:328
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Çapçı Quraşdırma Sehirbazına Xoş Gəldiniz\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
"\n"
-"Bu sehirbaz kompüterinizə, şəbəkədəki sistemlərin və bu sistemin işlədə "
-"biləcəyi yerli ya da uzaq çapçıları quraşdırmaqda sizə yardım edəcək. \n"
-"O, çap sistemini quraşdırmaq üçün lazım olan bütün mə'lumatları sizdən "
-"soruşacaq və mövcud olan bütün çapçılara, sürücü seçimlərinə və çap bağlantı "
-"növlərinə yetişmə imkanı verəcək."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and %d unknown printers"
-msgstr "və %d namə'lum çapçı"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
msgstr ""
-"İlk çıxan Pentium sinifi mikrosxemlərdə Floating point DIVision (FDIV) "
-"xətası vardı"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:332
msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-"Ehtiyat sərhədi keçildi!\n"
-"%d Mb işlədilib ancaq %d Mb verilmişdi."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-"Heç bir ISDN PCI kart tapılmadı. Xahiş edirik, növbəti ekrandakılardan "
-"birini seçin."
-
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
-msgstr "GB"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
-msgstr "Xahiş edirik, bir istifadəçi adı alın"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
-msgstr "CD Açılışı Fəallaşdırılsın?"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Simply reboot"
-msgstr ""
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid " enter `void' for void entry"
-msgstr " enter `void' void giriçi üçün"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
+"\n"
+"\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
+"\n"
msgstr ""
-"Ehtiyatlar bağlana bilməyən mediya üstündədir - geri yükləmək üçün Kataloqu "
-"işlət"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
-msgstr "Yanvars"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password history length"
-msgstr "Şifrə keçmişi uzunluğu"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Winmodem connection"
-msgstr "Winmodem bağlantısı"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:365
msgid ""
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\n"
"\n"
-"Congratulations, your printer is now installed and configured!\n"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\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 ""
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
"\n"
-"Təbrik edirik, çapçınız indi quraşdırıldı və işlədilməyə hazırdır!\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
+"\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
"\n"
-"Proqramların \"Çap Et\" əmrini istifadə edərək çap edə bilərsiniz.(Bu əmr "
-"ümumiyyətlə \"Fayl\" menyusunda yer alır).\n"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \n"
"\n"
-"ÆgÉ™r çapçı ilÉ™ É™laqÉ™li hÉ™r hansı bir qurÄŸu yerinÉ™ gÉ™tirmÉ™k, ya da yeni çapçı "
-"əlavə etmək / çapçı silmək istəyirsinizsə, Mandrakeİdarə Mərkəzindəki "
-"\"Avadanlıq\" bölməsində yer alan in the \"Çapçı\" düyməsini istifadə edin."
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "İndi, siz xawtv'ni işə sala bilərsiniz (X Window altında!) !\n"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Qurulumu bitirmək üçün lazımi sahə yoxdur, xahiş edirik, əlavə edin"
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
+msgstr ""
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "%s on %s"
-msgstr "%2$s üstündə %1$s"
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid remote root login."
-msgstr "Ali istifadəçinin uzaqdan girişinə icazə ver/vermə"
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
+msgstr ""
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"GNU/Linuks vaxtı GMT (Greenwich Mean Time) ilə idarə edir və onu yerli\n"
-"vaxtı seçdiyiniz vaxt zolağına baÄŸlı olaraq seçir. ÆgÉ™r ana kartınızın "
-"saatı\n"
-"yerli saata quraşdırılıbsa, bunu, \"%s\"i seçərək qeyri-fəallaşdıra "
-"bilərsiniz,\n"
-"Bu, Linuksa sistem vaxtı ilə avadanlıq vaxtının eyni vaxt zolağında "
-"olduÄŸunu\n"
-"bildirəcək. Bu, sistemdə Windows kimi digər əməliyyat sistemi mövcuddursa\n"
-"faydalıdır.\n"
-"\n"
-"\"%s\" seçimi isə, saatınızı internetdəki uzaq zaman vericisinə bağlanaraq\n"
-"düzəldəcək. Bu xüsusiyyətin işləməsi üçün, internet bağlantınız olmalıdır.\n"
-"Sizə ən yaxın olan vericini seçmək məsləhət edilir.\n"
-"Bu seçim əslində yerli şəbəkənizdəki başqa kompüterlərin də istifadə edə\n"
-"biləcəyi zaman vericisini qurur."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
-msgstr "Qeyd faylı yaradıla bilmir!"
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
+msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Vaxt zolağınız hansıdır?"
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use .backupignore files"
-msgstr ".backupignore fayllarını işlət"
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
-msgstr "Qvineya"
+#: ../../standalone/drakTermServ_.c:587
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Bağlı deyil"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Sistem indi İnternetə bağlıdır."
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Cənubi Georgiya və Cənubi Sandviç Adası"
+#: ../../standalone/drakTermServ_.c:604
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Sil"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Yaponiya (translyasiya)"
+#: ../../standalone/drakTermServ_.c:611
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Fayl seç"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:668
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."
+"!!! 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 ""
-"Monitor\n"
-"\n"
-" Qurulum proqramı sisteminizə bağlı olan monitoru əsasən avtomatik olaraq\n"
-"aÅŸkar edÉ™cÉ™k. ÆgÉ™r sÉ™hv tapılsa hÉ™qiqÉ™tÉ™n sisteminizÉ™ baÄŸlı olan monitoru\n"
-"siyahıdan seçə bilərsiniz."
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "Mozambiq"
+#: ../../standalone/drakTermServ_.c:673
+#, fuzzy
+msgid "Add User -->"
+msgstr "İstifadəçini əlavə et"
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "Timsal"
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
+msgstr ""
-#: ../../../move/tree/mdk_totem:1
+#: ../../standalone/drakTermServ_.c:720
#, fuzzy, c-format
-msgid "Kill those programs"
-msgstr "X proqramlarına yetişmə icazəsi"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Xahiş edirik, nəyin ehtiyat nüsxəsini çıxartmaq istədiyinizi seçin"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 rəng (8 bits)"
+msgid "type: %s"
+msgstr "Növ: "
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "Oxu-yaz"
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "Böyüklük: %s\n"
+#: ../../standalone/drakTermServ_.c:773
+#, fuzzy
+msgid "Thin Client"
+msgstr "DHCP Alıcısı"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Hostname: "
-msgstr "Ev sahibi adı:"
+#: ../../standalone/drakTermServ_.c:775
+#, fuzzy
+msgid "Allow Thin Clients"
+msgstr "DHCP Alıcısı"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a rule"
-msgstr "Qayda əlavə et"
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Parça böyüklüyü %s\n"
+#: ../../standalone/drakTermServ_.c:821
+#, fuzzy
+msgid "<-- Edit Client"
+msgstr "DHCP Alıcısı"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
-msgstr "Linuksun gələcəyini inşa edin!"
+#: ../../standalone/drakTermServ_.c:837
+#, fuzzy
+msgid "Delete Client"
+msgstr "DHCP Alıcısı"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printer"
-msgstr "Yerli Çapçı"
+#: ../../standalone/drakTermServ_.c:843
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Quraşdırılır..."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Disketə icazə xətası, %s avadanlığı bağlana bilmədi"
+#: ../../standalone/drakTermServ_.c:876
+msgid ""
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
+msgstr ""
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
msgstr ""
-"[--file=faylım] [--word=kəlməm] [--explain=ifadəliqayda] [--xəbərdarlıq]"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL bağlantısı"
+#: ../../standalone/drakTermServ_.c:901
+#, fuzzy
+msgid "Netmask:"
+msgstr "Netmask"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
msgstr ""
-"Quraşdırma yoxdur, xahiş edirik, Sehirbaz ya da Mütəxəssis düymələrinən "
-"birinə basın.\n"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Error!"
-msgstr "Xəta!"
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "cable connection detected"
-msgstr "Kabel bağlantısı aşkar edildi"
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "%s %s'ə daşınırkən icazə verilmədi"
+#: ../../standalone/drakTermServ_.c:929
+#, fuzzy
+msgid "Domain Name:"
+msgstr "Sahə(domain) adı"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Xəta Raportu Göndər"
+#: ../../standalone/drakTermServ_.c:937
+#, fuzzy
+msgid "Name Servers:"
+msgstr "NIS Verici"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
-msgstr "Dominik"
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "Böyüklüyünü Dəyişdir"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Həlledilirlik: %s\n"
+#: ../../standalone/drakTermServ_.c:1001
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../install2.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:1002
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)"
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-"Çəyirdəyinizə uyğun gələn çəyirdək modullarına yetişilə bilmədi (%s faylı "
-"əksikdir), bu çox vaxt açılış disketinizin Qurulum mediyası ilə sinxronluq "
-"içində olmadığı mə'nasına gəlir (xahiş edirik, yeni disket yaradın)."
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
msgstr ""
-"Xahiş edirik, doğru qapını seçin. Məsələn, Windows'dakı COM1\n"
-"GNU/Linuks'da ttyS0'dır."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Aşağıdakı paketlər sistemdən silinəcəklər"
-
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr "İnternetə bağlan"
+#: ../../standalone/drakTermServ_.c:1018
+#, fuzzy
+msgid "Write Config"
+msgstr "yenidən quraşdır"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
-msgstr "Mövcud bölmələri işlət"
+#: ../../standalone/drakTermServ_.c:1120
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "%s sürücüsünə bir disket taxın"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "Fransız dili (Kanada/Quebec)"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Siçan avadanlığı: %s\n"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Düzgün yazı növlərini yenidən seç"
+#: ../../standalone/drakTermServ_.c:1129
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Disket sürücü yoxdur"
-#: ../../help.pm:1
+#: ../../standalone/drakTermServ_.c:1138
#, 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 "Etherboot ISO image is %s"
msgstr ""
-"Seçimlər\n"
-"\n"
-" Burada, sisteminiz başlarkən avtomatik olaraq qrafiki ekrana keçməsini\n"
-"seçə bilərsiniz. Yalnız, əgər sisteminiz bir verici olacaqsa ya da ekran "
-"qurğularını\n"
-"müvəffəqiyyətlə sazlaya bilmədinizsə hər halda \"%s\" seçimini seçmək "
-"istəyəcəksiniz."
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert Corporate"
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-" [hərşey]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake həllerilirlik"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Write protection"
-msgstr "Yazma qoruması"
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "You've not selected any font"
-msgstr "Heç yazı növü seçmədiniz"
+#: ../../standalone/drakautoinst_.c:40
+#, fuzzy
+msgid "Error!"
+msgstr "Xəta"
-#: ../../steps.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, c-format
-msgid "Language"
-msgstr "Dil"
+msgid "I can't find needed image file `%s'."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer model selection"
-msgstr "Çapçı modeli seçkisi"
+#: ../../standalone/drakautoinst_.c:43
+#, fuzzy
+msgid "Auto Install Configurator"
+msgstr "Qurulum sonrası qurğular"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:44
msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
+"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 ""
-"%s bölməsinin növünü dəyişdirdikdən sonra, bu bölmədəki bütün mə'lumatlar "
-"itiriləcək"
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "ISDN adapters"
-msgstr "ISDN kartı"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d saniyÉ™"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "%s sürücüsünə boş bir disket yerləşdirin"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Düzgün URI girilməlidir!"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr "\"%s\" ara üzü tapıldı. Onu işlətmək istəyirsiniz?"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
-msgstr "Ara üz və DHCP vericisini yenidən quğula"
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
+msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound configuration"
-msgstr "Səs quraşdırılması"
+#: ../../standalone/drakautoinst_.c:62
+#, fuzzy
+msgid "replay"
+msgstr "Təkrarla"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
-msgstr "Foto sınaq səhifəsi"
+#: ../../standalone/drakautoinst_.c:66
+#, fuzzy
+msgid "Automatic Steps Configuration"
+msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Xüsusi disk bölmələndirməsi"
+#: ../../standalone/drakautoinst_.c:67
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Çapçı Adı və Şərhləri Daxil Edin"
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Avtomatik qurulum disketi hazırlanır"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:139
msgid ""
-"The following printers\n"
"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Aşağıdakı çapçılar\n"
+"Welcome.\n"
"\n"
-"%s%s\n"
-"sisteminizə birbaşa bağlıdır"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "You don't have any winmodem"
-msgstr "Heç bir winmodeminiz yoxdur"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: %s"
-msgstr "növ: %s"
+"The parameters of the auto-install are available in the sections on the left"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "Slovakca (QWERTY)"
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
+msgstr "Təbriklər!"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:235
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."
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
msgstr ""
-"Bu, yerli istifadəçilərin ya da ehtiyatlama nəticələrinin yollanacağı epoçt "
-"ünvanlarının vergüllə ayrılmış siyahısıdır. Sisteminizdə fəal olan poçt "
-"yollama proqramı qurulu olmalıdır."
-#: ../../standalone/draksound:1
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Səs Kartı Təsbit Edilmədi!"
+#: ../../standalone/drakautoinst_.c:273
+#, fuzzy
+msgid "Auto Install"
+msgstr "Qurulum"
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "Siçan Qapısı"
+#: ../../standalone/drakautoinst_.c:343
+#, fuzzy
+msgid "Add an item"
+msgstr "İstifadəçi əlavə et"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
-msgstr "Təhlükəli hesabları yoxla"
+#: ../../standalone/drakautoinst_.c:350
+#, fuzzy
+msgid "Remove the last item"
+msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
msgstr ""
-"Dəyişikliklərin fəal olması üçün Displey İdarəçisi yenidən "
-"başladılmalıdır. \n"
-"(konsolda - service dm restart)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Ftp Server"
-msgstr "Ftp Vericisi"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr "Uqanda"
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
-msgstr "%s yazı növləri dönüşdürülməsi"
+#: ../../standalone/drakbackup_.c:691
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "siçanınızın bağlı olduğu yol növü"
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:704
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"
+" DrakBackup Report \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 ""
-"İcmal olaraq, DrakX sisteminiz haqqında malik olduğu mə'lumatı göstərəcək.\n"
-"Qurulu avadanlığınıza bağlı olaraq, aşağıdakı girişlərin hamısını ya da bir "
-"neçəsi\n"
-"icmalda yer ala bilər. Hər giriş, quraşdırılan üzvdən və hazırkı qurğusunun "
-"qısa\n"
-"izahatından ibarətdir.\n"
-"Qurğunu dəyişdirmək üçün uyğun olan \"%s\" düyməsinə basın.\n"
-"\n"
-" * \"%s\": hazırkı klaviatura düzülüşünü göstərir. Lazımdırsa, bunu "
-"dəyişdirin.\n"
-"\n"
-" * \"%s\": hazırkı ölkÉ™ seçimini göstÉ™rir. ÆgÉ™r bu ölkÉ™dÉ™ deyilsÉ™niz,\"%s\"\n"
-"düyməsinə basaraq başqasını seçin. Ölkəniz siyahıda yer almırsa ölkələrin\n"
-"tam siyahısını görmək üçün \"%s\" düyməsinə basın.\n"
-"\n"
-" * \"%s\": əsasən, DrakX vaxt zolağınızı yaşadığınız ölkəyə görə müəyyən\n"
-"edir. Yalnız seçim düzgün deyilsə, \"%s\" düyməsinə basaraq onu dəyişdirə\n"
-"bilərsiniz.\n"
-"\n"
-" * \"%s\": hazırkı siçan qurğularını yoxlayın və lazımdırsa düyməyə basın.\n"
-"\n"
-" * \"%s\": \"%s\" düyməsinə basaraq çapçı quraşdırma sehirbazını işə sala\n"
-"bilÉ™rsiniz. Ætraflı mÉ™'lumat üçün ''BaÅŸlanğıc BÉ™lÉ™dçisi'' kitabçasının "
-"uyÄŸun\n"
-"bölümünə baxın.\n"
-"\n"
-" * \"%s\": əgər sisteminizdə səs kartı tapılıbsa, burada göstəriləcək.\n"
-"ÆgÉ™r buradakı sÉ™s kartının sisteminizdÉ™ olandan fÉ™rqli olduÄŸu nÉ™zÉ™rinizÉ™\n"
-"çatarsa, düyməyə basaraq başqa sürücü seçə bilərsiniz.\n"
-"\n"
-" * \"%s\": əsasən, DrakX qrafiki ara üzünüzü \"800x600\" ya da \"1024x768\"\n"
-"həlledirliyində quraşdırır. Bu sizə uyğun deyilsə, \"%s\" düyməsinin köməyi "
-"ilÉ™\n"
-"qrafiki ara üzünüzü yenidən quraşdıra bilərsiniz.\n"
-"\n"
-" * \"%s\": əgər sisteminizdə televiziya kartı tapılıbsa, burada "
-"göstəriləcək.\n"
-"ÆgÉ™r televiziya kartınız var olub aÅŸkar edilmÉ™yibsÉ™, \"%s\" düymÉ™sinÉ™\n"
-"basaraq onu əllə quraşdırmağı sınayın.\n"
+
+#: ../../standalone/drakbackup_.c:705
+msgid ""
"\n"
-" * \"%s\": əgər sisteminizdə ISDN kartı aşkar edilibsə, burada "
-"göstəriləcək.\n"
-"Kart ilə əlaqəli parametrləri dəyişdirmək üçün \"%s\" düyməsinə basa "
-"bilərsiniz.\n"
+" DrakBackup Daemon Report\n"
"\n"
-" * \"%s\": əgər İnternet ya da şəbəkənizi indi quraşdırmaq istəyirsinizsə.\n"
"\n"
-" * \"%s\": bu, əvvəlki addımda seçilən təhlükəsizlik səviyyəsini dəyişdirmə "
-"imkanı\n"
-"verir.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:709
+msgid ""
"\n"
-" * \"%s\": əgər İnternetə bağlanmağı fikirləşirsinizsə, sisteminizi qorumaq "
-"üçün\n"
-"atəş divarı quraÅŸdırmaq yaxşı fikirdir. Ætraflı mÉ™'lumat üçün ''BaÅŸlanğıc "
-"Bələdçisi''\n"
-"kitabçasının uyğun bölümünə baxın.\n"
+" DrakBackup Report Details\n"
"\n"
-" * \"%s\": əgər açılış yükləyicisi qurğularınızı dəyişdirmək istəyirsinizsə, "
-"bu düyməyə\n"
-"basın. Bu, əsasən mütəxəssis istifadəçilər üçündür.\n"
"\n"
-" * \"%s\": burada, sistemdə hansı xidmətlərin işləyəcəyini sazlaya "
-"bilərsiniz.\n"
-"ÆgÉ™r sisteminizi verici olaraq iÅŸlÉ™tÉ™cÉ™ksÉ™niz, bu qurÄŸuları gözdÉ™n keçirin."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr "Komor"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "May"
-msgstr "May"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yaboot mode"
-msgstr "Yaboot modu"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Sıravi 3 Düyməli Siçan"
+msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
-msgstr "ABÅž (kabel)"
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+#, fuzzy
+msgid "Total progess"
+msgstr "Qapıları sına"
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakbackup_.c:785
#, c-format
msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+"%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 ""
-"LiLo yenidən başladıla bilmir!\n"
-"LiLo örtüyü qurulumunu tamamlamaq üçün ali istifadəçi olaraq əmr sətirinə "
-"\"lilo\" yazın."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Geri qaytarmaq üçün başqa mediya seç"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Software Manager"
-msgstr "Proqram Təminatı İdarəçisi"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
-msgstr "Yenidən göndər"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD in place - continue."
-msgstr "CD yerindÉ™ - davam et."
-
-#: ../../common.pm:1
-#, c-format
-msgid "KB"
-msgstr "KB"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Network & Internet"
-msgstr "Şəbəkə və İnternet"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Litvanya dili \"Fonetik\" QWERTY"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Net Boot Images"
-msgstr "Şəbəkədən Açılış Görüntüləri"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Yerli çapçıların bölüşülməsi"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
msgstr ""
-"Tax və İşlət sınaması bacarılmadı. Xahiş edirik, hazırkı monitoru seçin"
-#: ../../../move/move.pm:1
+#: ../../standalone/drakbackup_.c:801
#, c-format
-msgid "Detect again USB key"
+msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Services and deamons"
-msgstr "Xidmətlər və vasitələr"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Uzaqdakı qovşağın adı əksikdir!"
-
-#: ../../fsedit.pm:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid "with /usr"
-msgstr "/usr ilÉ™"
+msgid "No password prompt on %s at port %s"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Network"
-msgstr "Şəbəkə"
+#: ../../standalone/drakbackup_.c:819
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Parolsuz"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgid "Permission denied transferring %s to %s"
msgstr ""
-"Microsoft Windows işlədən kompüterlərə bağlı olan çapçıları avtomati aşkar et"
-
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "Zəif şifrə seçdiniz"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "Chkconfig msec qaydalarına qulaq assın"
+#: ../../standalone/drakbackup_.c:821
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "%s açıla bilmir: %s\n"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovakca (QWERTZ)"
+msgid "%s not responding"
+msgstr ""
-#: ../advertising/06-development.pl:1
+#: ../../standalone/drakbackup_.c:828
#, 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."
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
msgstr ""
-"Perl, Python, C və C++ kimi dillərdə proqram inkişaf etmək GNU gcc 3 və "
-"əngözəl Açıq Mənbəli inkişaf mühitləri vasitəsi ilə heç bu qədər asan "
-"olmamışdır."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No devices found"
-msgstr "Heç bir avadanlıq tapıla bilmədi"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Həqiqətən minimal qurulum (xüsusilə urpmi olmasın)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use daemon"
-msgstr "Demonu işlət"
-
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "Tanıtma"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Bu çapçını Star Office/OpenOffice.org/GIMP proqramlarına əlavə et."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "ÆlavÉ™ CUPS vericilÉ™ri:"
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
msgstr ""
-"Siyahıdan avtomatik aşkar edilən çapçılardan birini seçin ya da giriş "
-"sahələrinə qovşaq adı ya da IP ünvanı və istəyə bağlı qapı nömrəsini (əsası "
-"9100) daxil edin."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr "%s avadanlığını hara bağlamaq istəyirsiniz?"
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "ÆlcÉ™zair"
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network"
-msgstr "Şəbəkə Üstündən Geri Yüklə"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd böyüklüyü"
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
+msgstr ""
-#: ../../help.pm:1
+#: ../../standalone/drakbackup_.c:1060
#, 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."
+msgid "No tape in %s!"
msgstr ""
-"ÆgÉ™r kartınız üçün hÉ™m 3D dÉ™stÉ™yi olan hÉ™m dÉ™ olmayan vericilÉ™r mövcudsa,\n"
-"sizdən ehtiyaclarınıza ən gözəl cavab verən vericini seçməniz xahiş ediləcək."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tEhtiyat nüsxələri tar və gzip işlədir\n"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
+msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set as default"
-msgstr "Æsas olaraq seç"
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+#, fuzzy
+msgid "Hard Disk Backup files..."
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
+#: ../../standalone/drakbackup_.c:1236
+#, fuzzy
+msgid "Backup User files..."
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on this machine"
-msgstr "Bu kompüter üstündə quraşdırılmış olan"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Eyni zamanda iki Control düyməsi "
+#: ../../standalone/drakbackup_.c:1290
+#, fuzzy
+msgid "Backup Other files..."
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - bu yardımı göstər \n"
+#: ../../standalone/drakbackup_.c:1296
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone.pm:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, 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"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-"[SEÇİM]...\n"
-" --no-confirmation MandrakeUpdate modundabirinci təsdiqləmə sualını "
-"soruÅŸma\n"
-" --no-verify-rpm paket imzalarını yoxlama\n"
-" --changelog-first izahat pəncərəsində fayl siyahısından əvvəl "
-"changelog'u göstər\n"
-" --merge-all-rpmnew tapılan bütün .rpmnew/.rpmsave fayllarını "
-"birləşdirməyi təklif et"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Æsas Çapçı Seçilir..."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Ara Üz %s (%s modulu işlədilir)"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Generating preview ..."
-msgstr "Ümumi nümayiş ..."
-#: ../../network/network.pm:1
+#: ../../standalone/drakbackup_.c:1319
#, 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)."
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-"Tezliyin yanına k, M ya da G şəkilçisi qoyulmalıdır (misal üçün, 2.46 GHz "
-"tezlik üçün \"2.46G\" ), ya da lazım olan qədər '0' (sıfır) əlavə edin."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ignore"
-msgstr "nəzərə alma"
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1322
msgid ""
-"Allow/Forbid X connections:\n"
"\n"
-"- ALL (all connections are allowed),\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1340
+msgid ""
"\n"
-"- LOCAL (only connection from local machine),\n"
+"Drakbackup activities via CD:\n"
"\n"
-"- NONE (no connection)."
msgstr ""
-"X bağlantılarına icazə Ver/Vermə:\n"
-"\n"
-"- HAMISI (bütün bağlantılara icazə ver),\n"
+
+#: ../../standalone/drakbackup_.c:1345
+msgid ""
"\n"
-"- YERLİ (yalnız yerli kompüterdən gələn bağlantıya icazə ver),\n"
+"Drakbackup activities via tape:\n"
"\n"
-"- HEÇBİRİ (heç bir bağlantıya icazə vermə)."
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", %s nömrəli paralel qapıdakı çox funksiyalı avadanlıq"
+#: ../../standalone/drakbackup_.c:1354
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "%s faylı oxunurkan xəta oldu"
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "serial"
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
-msgstr "DVD-ROM"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+#, fuzzy
+msgid "File Selection"
+msgstr "Paket Qrup Seçkisi"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Gürcü dili (\"Latın\" sırası)"
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
+msgstr ""
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
-msgstr "Mandrake Linuks Stratejik Ortaqları ilə ən yaxşı dərəcələrə malik olun"
+#: ../../standalone/drakbackup_.c:1573
+msgid ""
+"\n"
+"Please check all options that you need.\n"
+msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1574
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-"Siz indi %s moduluna seçimlə ötürə bilərsiniz.\n"
-"Qeyd edin ki bütün ünvanlar 0x şəkilçisi ilə daxil edilməlidir, mis: '0x123'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "Kenya"
+#: ../../standalone/drakbackup_.c:1575
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "ÆvvÉ™lcÉ™ ``Ayır'-ı iÅŸlÉ™t"
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing mtools packages..."
-msgstr "mtools paketləri qurulur..."
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a root partition"
-msgstr "Kök bölməsini müəyyən etməlisiniz"
+#: ../../standalone/drakbackup_.c:1578
+msgid ""
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "first step creation"
-msgstr "ilk addım yaradılışı"
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Please check all users that you want to include in your backup."
+msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Eyni zamanda iki Shift düyməsi "
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
+msgstr ""
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-" --id <id_etiketi> - id_label'a istiqamətləndirən html yardım "
-"səhifəsini yüklə\n"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select a scanner model"
-msgstr "Darayıcı modelini seçin"
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+#, fuzzy
+msgid "Remove Selected"
+msgstr "Növbəni sil"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
-msgstr "Səhv IPv4 xəta ismarışlarını qəbul et/etmə"
+#: ../../standalone/drakbackup_.c:1679
+#, fuzzy
+msgid "Windows (FAT32)"
+msgstr "\"Windows\"u sil"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR Yeni Nəsil"
+#: ../../standalone/drakbackup_.c:1714
+#, fuzzy
+msgid "Users"
+msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Drakbackup Quraşdırılması"
+#: ../../standalone/drakbackup_.c:1740
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr "Fərqli qeyd et..."
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr "Koreya (Åžimal)"
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1747
msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-"BU ara üz hələlik quraşdırılmayıb.\n"
-"Ana pəncərədə quraşdırma sehirbazını işə salın"
-
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System configuration"
-msgstr "Sistem quraşdırılması"
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "Avtomatik GiriÅŸ"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin Password"
-msgstr "Domen İdarəçi Şifrəsi"
-
-#: ../advertising/05-desktop.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1748
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, ..."
+" Transfer \n"
+"Now"
msgstr ""
-"Mandrake Linuksun GNOME 2.4, KDE 3.1, Window Maker kimi mövcud 11 istifadəçi "
-"ara üzləri ilə kompüterinizi ehtiyaclarınıza tamamiylə uyğunlaşdırın."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer ..."
-msgstr "Çapçı quraşdırılır ..."
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1749
msgid ""
-"To ensure data integrity after resizing the partition(s), \n"
-"filesystem checks will be run on your next boot into Windows(TM)"
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-"Bölmə(lər)in böyüklüyünün dəyişdirilməsindən sonra mə'lumat \n"
-"bütövlüyünü qorumaq üçün fayl sistemi yoxlamaları bir sonrakı\n"
-"Windows(TM) açılışınızda işə salınacaq."
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "MB"
+#: ../../standalone/drakbackup_.c:1753
+#, fuzzy
+msgid "Please enter the host name or IP."
+msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
+#: ../../standalone/drakbackup_.c:1758
+msgid ""
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-"ÆgÉ™r bÉ™li seçilidirsÉ™, rpm mÉ™'lumat bazasına qarşı bir neçə sınaq iÅŸÉ™ sal."
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr "Virgin Adaları (Britaniya)"
+#: ../../standalone/drakbackup_.c:1763
+#, fuzzy
+msgid "Please enter your login"
+msgstr "Xahiş edirik təkrar sınayın"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bermuda"
-msgstr "Bermuda"
+#: ../../standalone/drakbackup_.c:1768
+#, fuzzy
+msgid "Please enter your password"
+msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
-msgstr "əminsəniz buraya basın."
+#: ../../standalone/drakbackup_.c:1774
+#, fuzzy
+msgid "Remember this password"
+msgstr "Parolsuz"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
msgstr ""
-"Quraşdırma faylı tapıla bilmədi \n"
-"Xahiş edirik, Sehirbaz ya da Mütəxəssis düymələrindən birinə basın."
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
msgstr ""
-"Burada sürücünüzdə tapılan Linuks bölmələri sıralanıb.\n"
-"Sehirbazın məsləhətlərinə qulaq asın, onlar çox vaxt işə yarayır.\n"
-"ÆgÉ™r hÉ™r hansı bir dÉ™yiÅŸiklik etsÉ™niz É™n azından kök bölmÉ™sini (\"/\") "
-"müəyyən\n"
-"etməlisiniz. Çox kiçik bölmə seçməyin, yoxsa kifayət qədər proqram "
-"tə'minatı\n"
-"qura bilmÉ™yÉ™cÉ™ksiniz. ÆgÉ™r mÉ™'lumatlarınızı baÅŸqa bölmÉ™dÉ™ tutmaq "
-"istəyirsinizsə,\n"
-"o zaman bir də \"/home\" bölməsi yaratmalısınız (yalnız birdən çox Linuks\n"
-"bölməniz var isə mümkündür).\n"
-"\n"
-"Hər bölmə bu cür sıralanıb; \"Ad\",\"Həcm\".\n"
-"\n"
-"\"Ad\" bu cür qurulub: \"sabit disk növü\", \"sabit disk nömrəsi\",\n"
-"\"bölmə nömrəsi\" (məsələn, \"hda1\").\n"
-"\n"
-"\"Sabit disk növü\" diskiniz IDE sürücüsü isə \"hd\"dir, SCSI sürücüsü isə\n"
-"\"sd\"dir.\n"
-"\n"
-"\"Sabit disk nömrəsi\" həmişə \"hd\" və ya \"sd\"dən sonrakı rəqəmdir. IDE \n"
-"sürücülər üçün:\n"
-"\n"
-"* \"a\" mə'nası \"birinci IDE idarəçisində ali (master) sürücü\",\n"
-"\n"
-"* \"b\" mə'nası \"birinci IDE idarəçisində qul (slave) sürücü\",\n"
-"\n"
-"* \"c\" mə'nası \"ikinci IDE idarəçisində ali (master) sürücü\",\n"
-"\n"
-"* \"d\" mə'nası \"ikinci IDE idarəçisində qul (slave) sürücü\".\n"
-"\n"
-"\n"
-"SCSI sürücülərində, \"a\"nın mə'nası \"ən düşük SCSI ID\",\n"
-"\"b\"nin mə'nası \"ikinci ən düşük SCSI ID\"dir, vs..."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Remove"
-msgstr "Sil"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr "Lesoto"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr "utopia 25"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Vəzifəni əmrin içinə borula"
+#: ../../standalone/drakbackup_.c:1882
+msgid ""
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
+msgstr ""
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "Loopback faylı silinsin?"
+#: ../../standalone/drakbackup_.c:1887
+#, fuzzy
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "Kot Divuar"
+#: ../../standalone/drakbackup_.c:1893
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "əsas çəyirdək devfs tərəfindən yaradılan yeni dinamik avadanlıq adı"
+#: ../../standalone/drakbackup_.c:1899
+#, fuzzy
+msgid "Please check if you are using CDRW media"
+msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "Bəli"
+#: ../../standalone/drakbackup_.c:1905
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Hansı protokolu istifadə etmək istəyirsiniz?"
+#: ../../standalone/drakbackup_.c:1906
+msgid " Erase Now "
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Progress"
-msgstr "İrəliləməni Geri Yüklə"
+#: ../../standalone/drakbackup_.c:1912
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
-msgstr "Estoniya"
+#: ../../standalone/drakbackup_.c:1918
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../partition_table.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1931
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."
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-"Bölmə cədvəlinizdə bir boşluq var, amma o da işlədilə bilmir.\n"
-"Bu boşluğu, genişlədilmiş bölmənin yanına daşımaq üçünbirinci bölmənizi "
-"daşımalısınız."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr "Yerli darayıcıların istifadəyə hansı qovşaqlarda açıq olacağını seçin:"
+#: ../../standalone/drakbackup_.c:1964
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Fayl seç"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Channel"
-msgstr "Kanal"
+#: ../../standalone/drakbackup_.c:2012
+#, fuzzy
+msgid "Use tape to backup"
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Add"
-msgstr "ÆlavÉ™ et"
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr "Poçt göndərilərkən xəta oldu.\n"
+#: ../../standalone/drakbackup_.c:2021
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "Klaviatura"
+#: ../../standalone/drakbackup_.c:2027
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-"Etiketi %s olan CD'ni /mnt/cdrom\n"
-" bağlama nöqtəsi altına sürücüyə yerləşdirin"
+#: ../../standalone/drakbackup_.c:2033
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
msgstr ""
-"Sıxlığın yanına k, M ya da G şəkilçisi qoyulmalıdır (misal üçün, 11M üçün "
-"\"11M\" ), ya da lazım olan qədər '0' (sıfır) əlavə edin."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Qurğulamaq istədiyiniz bağlantını seçin"
+#: ../../standalone/drakbackup_.c:2103
+#, fuzzy
+msgid "Please enter the directory to save to:"
+msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Xahiş edirik, gözləyin, təhlükəsizlik səviyyəsi seçilir..."
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+#, fuzzy
+msgid "Use quota for backup files."
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "%s şəbəkə avadanlığı qurulur"
+#: ../../standalone/drakbackup_.c:2180
+#, fuzzy
+msgid "Network"
+msgstr "Şəbəkə ara üzü"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
-msgstr "fəal"
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
-msgstr "dhcp vericisi üçün hansı şəbəkə ara üzünün istifadə ediləcəyini seçin."
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Güncəllənəcək paketlar tapılır"
+#: ../../standalone/drakbackup_.c:2195
+#, fuzzy
+msgid "Tape"
+msgstr "Növ"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
-msgstr "Bağlama nöqtəsi: "
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
-msgstr "bütün yazı növlərini oxu"
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid direct root login."
-msgstr "Birbaşa ali istifadəçinin girişinə icazə ver/vermə"
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr " Translasiya edilən icmp echo'sunu Qəbul Et/Rədd Et"
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
-msgstr "X ilÉ™"
+#: ../../standalone/drakbackup_.c:2229
+#, fuzzy
+msgid "Use daemon"
+msgstr "İstifadəçi adı"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Çoxlu Başlıq quraşdırılması"
+#: ../../standalone/drakbackup_.c:2234
+#, fuzzy
+msgid ""
+"Please choose the time \n"
+"interval between each backup"
+msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "No browser available! Please install one"
-msgstr "Heç qurulu səyyar yoxdur! Xahiş edirik, birini qurun"
+#: ../../standalone/drakbackup_.c:2240
+#, fuzzy
+msgid ""
+"Please choose the\n"
+"media for backup."
+msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../Xconfig/main.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2247
msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
+"Please be sure that the cron daemon is included in your services. \n"
"\n"
-"%s"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-"Dəyişikliklər saxlansın?\n"
-"Hazırkı qurğular belədir:\n"
-"\n"
-"%s"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "32MB'dən kiçik disk bölmələrində ReiserFS istifadə edə bilməzsiniz"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
+msgstr ""
-#: ../../services.pm:1
-#, 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)."
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-"rwho protokolu, uzaq istifadəçilərin, rwho vasitəsi işlədən bir kompüterdə\n"
-"olan bütün istifadəçiləri görmələrina imkan verər."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "Domen adı"
+#: ../../standalone/drakbackup_.c:2324
+msgid "What"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Yerli çapçıların bölüşülməsi"
+#: ../../standalone/drakbackup_.c:2329
+#, fuzzy
+msgid "Where"
+msgstr "Çərx"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
-msgstr "Sistemdə libsafe tapılsa, libsafe Fəal/Qeyri-Fəal edilsin."
+#: ../../standalone/drakbackup_.c:2334
+#, fuzzy
+msgid "When"
+msgstr "Çərx"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Available printers"
-msgstr "Mövcud çapçılar"
+#: ../../standalone/drakbackup_.c:2339
+#, fuzzy
+msgid "More Options"
+msgstr "Modul seçənəkləri:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "NO"
-msgstr " XEYİR"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+#, fuzzy
+msgid "Drakbackup Configuration"
+msgstr "Şəbəkə quraşdırılması"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "BoÅŸ"
+#: ../../standalone/drakbackup_.c:2376
+#, fuzzy
+msgid "Please choose where you want to backup"
+msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
-msgstr "mətn eni"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "%s avadanlığını haraya bağlamaq istəyirsiniz?"
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Æsas icarÉ™ (saniyÉ™ olaraq)"
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
+#: ../../standalone/drakbackup_.c:2406
+msgid "on Tape Device"
msgstr ""
-"İndi %s bağlantısı qurğulanacaq.\n"
-"\n"
-"\n"
-"Davam etmək üçün \"%s\" düyməsinə basın."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Interface \"%s\""
-msgstr "\"%s\" ara üzü"
+#: ../../standalone/drakbackup_.c:2449
+#, fuzzy
+msgid "Please choose what you want to backup"
+msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Æsas sÉ™nÉ™dlÉ™rlÉ™ birlikdÉ™ (mÉ™slÉ™hÉ™t edilÉ™n!)"
+#: ../../standalone/drakbackup_.c:2450
+#, fuzzy
+msgid "Backup system"
+msgstr "Fayl sistemi qurğuları"
-#: ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr "1 düymə"
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2537
msgid ""
"\n"
-"There are %d unknown printers directly connected to your system"
+"Backup Sources: \n"
msgstr ""
-"\n"
-"Sisteminizə birbaşa bağlı ilan %d namə'lum çapçı mövcuddur"
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Test"
-msgstr "Sına"
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea"
-msgstr "Koreya"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Seçiminiz? (əsas `%s'%s) "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer"
-msgstr "Xam çapçı"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "cpu'nun rəsmi e'maltçısı"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
-msgstr "Terminal Server olmadan faydasızdır"
-
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Vendor"
-msgstr "E'malatçı"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s"
-msgstr "Ara üz %s"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "Siçan qurğuları"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
-msgstr "Bağlama nöqtələrini seçin"
-
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr "Oldu"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "Yugoslav (latın)"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "Qurulur"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Çərx emulyasiyalı Logitech MouseMan"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
-msgstr "Userdrake'ni baÅŸlat"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Bu bir qurulum, yoxsa yeniləmədir?"
-
-#: ../../help.pm:1
-#, c-format
-msgid "ISDN card"
-msgstr "ISDN kartı"
-
-#: ../advertising/02-community.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2538
msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
+"\n"
+"- System Files:\n"
msgstr ""
-"Öz biliklərinizi bölüşmək və Linuks tə'minatları inşa etməkdə yardım etmək "
-"üçün \"Community\" veb səhifələrindəki müzakirə forumlarına qoşulun."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-Sabit disk.\n"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2540
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."
-msgstr ""
-"Bu addım, yalnız sisteminizdə daha əvvəldən qurulu olan GNU/Linuks bölməsi\n"
-"tapılanda fəal olur.\n"
-"\n"
-"DrakX indi mövcud Mandrake Linuks sisteminizi yeniləmək mi, yoxsa yenidən\n"
-"qurmaq mı istədiyinizi bilməlidir.\n"
-"\n"
-" * \"%s\": Bu seçim köhnÉ™ sistemi tamamilÉ™ silÉ™cÉ™k. ÆgÉ™r sabit "
-"disklərinizin\n"
-"bölmələndirilməsini dəyişdirmək ya da fayl sistemini dəyişdirmək "
-"istəyirsinizsə\n"
-"bu seçimi seçin. Yalnız, bölmələndirmə sxeminizdən aslı olaraq bə'zi mövcud\n"
-"mə'lumatlarınızın üstündən yazılmasının qabağını ala bilərsiniz.\n"
-"\n"
-" * \"%s\": Hazırkı Mandrake Linuks sisteminizdə qurulu olan paketləri "
-"yeniləmə\n"
-"imkanı verir. Qurulum hazırkı bölmələmə sxemi və istifadəçi mə'lumat və "
-"sənədlərinə\n"
-"dəyməyəcək və dəyişdirməyəcək. Digər qurulum addımlarının çoxu isə standart\n"
-"qurulumdakının eynisi olacaq. Bu seçimi \"8.1\" versiyasından əvvəlki "
-"Mandrake Linukslarda\n"
-"tədbiq etmək uyğun görülmür."
-
-#: ../../standalone/drakfont:1
-#, 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"
+"- User Files:\n"
msgstr ""
-"\n"
-" Tə'lif Hüququ (C) 2001-2002 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"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Uzaq CUPS vericisi üstündəki çapçı"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2542
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+"\n"
+"- Other Files:\n"
msgstr ""
-"\"%s\" çapçısının Star Office/OpenOffice.org/GIMP proqramlarından "
-"çıxardılması bacarılmadı."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
-msgstr "yoxdursa, burada."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DHCP host name"
-msgstr "DHCP qovşaq adı"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Maksimal icarÉ™ (saniyÉ™ olaraq)"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Siçanınızın bağlı olduğu serial qapını seçin."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
-msgstr "Düzgün işlədi?"
-#: ../../fs.pm:1
+#: ../../standalone/drakbackup_.c:2544
#, c-format
-msgid "Mount the file system read-only."
-msgstr "Fayl sistemini ancaq oxuna bilən şəkildə bağla."
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "Zəif"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result by mail"
-msgstr "Yoxlama nəticəsini poçt ilə raport et"
+msgid ""
+"\n"
+"- Save on Hard drive on path: %s\n"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
-msgstr "Qrenada"
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
-msgstr "The DHCP başlama aralığı"
+#: ../../standalone/drakbackup_.c:2553
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "E'tibarsız"
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
+msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: ../../standalone/drakbackup_.c:2555
#, fuzzy, c-format
-msgid "SSH server"
-msgstr "SSH Vericisi"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektor"
-
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "Xeyir"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "Quadelup"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Kannada"
-msgstr "Kanada"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
-msgstr "heç yazı növü tapıla bilmədi.\n"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Konsolda BackSpace'in Silmə funksyasını görməyini istəyirmisiniz?"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Şaquli yeniləmə sür'əti"
-
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Başlanğıc addımı `%s'\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niger"
-msgstr "Niger"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing %s ..."
-msgstr "%s silinir ..."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No printer"
-msgstr "Çapçı yoxdur"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "alert configuration"
-msgstr "Xəbərdarlıq quraşdırılması"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "NetWare Çapçı Qurğuları"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "%s BootSplash (%s) preview"
-msgstr "%s Açılış Ekranı (%s) nümayişi"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "February"
-msgstr "Fevral"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
-msgstr "Ümumi"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
-msgstr "/etc/issue* mövcuddur"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "İstifadəçi əlavə edilməsi"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Şəbəkə quraşdırılması (%d adapter)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "April"
-msgstr "Aprel"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Deactivate now"
-msgstr "İndi qeyri-fəallaşdır"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Vacib olan %s paketi əksikdir"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Filippin"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "Oldu"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "drakTermServ Overview"
-msgstr "drakTermServ İcmalı"
+msgid " on device: %s"
+msgstr "Siçan avadanlığı: %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
-msgstr "Çapçı Növbə Adı"
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:2557
#, c-format
-msgid "Do you want to use aboot?"
-msgstr "aboot istifadə etmək istəyirsiniz?"
+msgid ""
+"\n"
+"- Save to Tape on device: %s"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "Belarusian"
-msgstr "Belarus dili"
+msgid "\t\tErase=%s"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2561
#, c-format
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"\n"
+"- Save via %s on host: %s\n"
msgstr ""
-"PDQ yalnız yerli çapçıları, uzaq LPD çapçıları, və Socket/TCP çapçılarını "
-"dəstəkləyir.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move files to the new partition"
-msgstr "Faylları yeni bölməyə daşı"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2562
#, 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."
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
msgstr ""
-"Çapçılarını itifadə etmək istədiyiniz CUPS vericilərini buraya əlavə edin. "
-"Bunu sadəcə olaraq vericilərin çapçı mə'lumatlarını yerli şəbəkəyə yaymaması "
-"vəziyyətində etməlisiniz."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2563
+#, fuzzy
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."
+"- Options:\n"
+msgstr "Seçənəklər"
+
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
msgstr ""
-"\n"
-"Çapçı Quraşdırma Sehirbazına Xoş Gəldiniz\n"
-"\n"
-"Bu sehirbaz kompüterinizə bağlı olan çapçı ya da çapçıları quraşdırmaqda "
-"sizə yardım edəcək.\n"
-"\n"
-"Xahiş edirik, bu kompüterə bağlı olan bütün çapçıları açın ki avtomatik "
-"aşkar edilə bilsinlər.\n"
-"\n"
-" Hazır olanda \"Sonrakı\" düyməsinə, çapçılarınızı indi quraşdırmaq "
-"istəmirsinizsə\"Ləğv Et\" düyməsinə basın."
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
-msgstr "Pitkairn"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Kataloqdan Geri Yüklə"
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:2572
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid ""
+"\n"
+"- Daemon (%s) include:\n"
+msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "%s bolməsini %s cərgəsinə bağlama bacarılmadı"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
-msgstr "Lilo ekranı"
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
+msgstr ""
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "Qrafiki menyulu LILO"
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "Təxmini olaraq hesaplanır"
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
-msgstr "Bu paketi sistemdən çıxarda bilməzsınız. Artıq qurulmuşdur."
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", çapçı \"%s\" SMB/Windows vericisi \"%s\" üstündə"
+#: ../../standalone/drakbackup_.c:2578
+msgid "\t-Network by rsync.\n"
+msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "Yenə də davam edək?"
+#: ../../standalone/drakbackup_.c:2579
+msgid "\t-Network by webdav.\n"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-"Mövcud paketlər axtarılır və rpm mə'lumat bazası yenidən inşa edilir..."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2587
msgid ""
+"List of data to restore:\n"
"\n"
-" DrakBackup Report \n"
msgstr ""
-"\n"
-" DrakBackup Raportu \n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Bu yazıla bilən mediyaya oxşamır!"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "Seçimləri müəyyən et"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "New user list:\n"
-msgstr "Yeni istifadəçi siyahısı:\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Ya verici adı ya da IP'si verilməlidir!"
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2754
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"
+"List of data corrupted:\n"
"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
msgstr ""
-"Xüsusi bir açılış disketi, Linuks sisteminizin normal bir sistem yükləyiciyə "
-"lüzüm\n"
-"olmadan açılmasına imkan verÉ™r. ÆgÉ™ sisteminizÉ™ lilo (ya da grub) "
-"qurmayacaqsanız,\n"
-"ya da başqa bir əməliyyat sistemi liloyu silərsa ya da lilo "
-"avadanlığınızlaişləməzsə\n"
-"bu disket sizə yardımçi olacaqdır. Sonradan Mandrake qurtarma disketi "
-"rəsmini\n"
-"istifadə edərək də bu disket yaradıla bilər.\n"
-"Açılış disketi yaratmaq istəyirsiniz?\n"
-"Açılış disketi yaratmaq istəyirsinizsə, birinci disket sürücüyə disket "
-"yerləşdirin\n"
-"və \"OLDU\" basın."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr ""
-"%s bağlama nöqtəsi üçün şifrələnmiş fayl sistemi istifadə edə bilməzsiniz"
+#: ../../standalone/drakbackup_.c:2756
+#, fuzzy
+msgid "Please uncheck or remove it on next time."
+msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password history length to prevent password reuse."
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
msgstr ""
-"Şifrələrin yenidən istifadə edilməsinin qabağını almaq üçün şifrə keçmişi "
-"uzunluğunu müəyyən edin."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
-msgstr "Norfolk Adaları"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Theme installation failed!"
-msgstr "Örtük qurulumu bacarılmadı!"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
-msgstr "Ediləcək heçnə yoxdur"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "Loopback üçün istifadə et"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr "Mandrake Xəta Raportlama Vasitəsi"
+#: ../../standalone/drakbackup_.c:2787
+msgid " All of your selected data have been "
+msgstr ""
-#: ../../standalone/printerdrake:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "Apply filter"
-msgstr "Filtri tətbiq et"
+msgid " Successfuly Restored on %s "
+msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pppoe"
-msgstr "pppoe istifadÉ™ et"
+#: ../../standalone/drakbackup_.c:2906
+#, fuzzy
+msgid " Restore Configuration "
+msgstr "Şəbəkə quraşdırılması"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving files to the new partition"
-msgstr "Fayllar yeni bölməyə daşınır"
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "SINAQ MÆRHÆLÆSİNDÆKİ 3D sür'É™tlÉ™ndirmÉ™ dÉ™stÉ™kli XFree %s"
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
+msgstr ""
-#: ../../help.pm:1 ../../interactive.pm:1
-#, c-format
-msgid "Advanced"
-msgstr "Ætraflı"
+#: ../../standalone/drakbackup_.c:3019
+#, fuzzy
+msgid "Backup the system files before:"
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer"
-msgstr "Transfer Et"
+#: ../../standalone/drakbackup_.c:3021
+#, fuzzy
+msgid "please choose the date to restore"
+msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (İsveç)"
+#: ../../standalone/drakbackup_.c:3057
+#, fuzzy
+msgid "Use Hard Disk to backup"
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../lang.pm:1
-#, c-format
-msgid "Afghanistan"
-msgstr "Æfqanıstan"
+#: ../../standalone/drakbackup_.c:3060
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "More Options"
-msgstr "ÆlavÉ™ SeçimlÉ™r"
+#: ../../standalone/drakbackup_.c:3103
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr "Diqər mediyaya ehtiyatlamadan sonra Sabit Diskdəki tar fayllrını sil."
+#: ../../standalone/drakbackup_.c:3110
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Çap Edici Bağlantısı Seçin"
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "Burundi"
+#: ../../standalone/drakbackup_.c:3134
+#, fuzzy
+msgid "Restore from Hard Disk."
+msgstr "Disketdən geri çağır"
-#: ../../services.pm:1
-#, 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."
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
msgstr ""
-"cron, istifadəçilərə xüsusi əmrləri periodik olaraq işə sala bilən\n"
-"standart bir UNIX proqramıdır. vixie cron, standart cron'a əlavə edilmiş bir "
-"çox\n"
-"yeni xüsusiyyət daxildir."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr "Alıcı ÆlavÉ™ Et -->"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "Diqqətlə oxuyun!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
-msgstr "RW"
+#: ../../standalone/drakbackup_.c:3204
+#, fuzzy
+msgid "Select another media to restore from"
+msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"XahiÅŸ edirik,\n"
-"televiziya normunuzu və ölkənizi girin"
+#: ../../standalone/drakbackup_.c:3206
+#, fuzzy
+msgid "Other Media"
+msgstr "Digər"
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "Qapı"
+#: ../../standalone/drakbackup_.c:3211
+#, fuzzy
+msgid "Restore system"
+msgstr "Sistemi qur"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
-msgstr "Xeyir (ancaq mütəxəssislər)"
+#: ../../standalone/drakbackup_.c:3212
+#, fuzzy
+msgid "Restore Users"
+msgstr "Fayldan geri çağır"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-msgstr "Heç bir çəyirdək seçilməyib!"
+#: ../../standalone/drakbackup_.c:3213
+#, fuzzy
+msgid "Restore Other"
+msgstr "Fayldan geri çağır"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Secili emeliyyat sistemini acmaq ucun entere,"
+#: ../../standalone/drakbackup_.c:3215
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The encryption keys do not match"
-msgstr "Şifrələmə açarları uyğun gəlmir"
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3334
msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-"Çox iclaslı CD üçün yalnız birinci iclas cdrw'ı silÉ™cÉ™k. Æks halda cdrw hÉ™r "
-"ehtiyatlamadan əvvəl silinir."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "USB printer"
-msgstr "USB çapçı"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Sağ \"Windows\" düyməsi"
+#: ../../standalone/drakbackup_.c:3344
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Növbəni sil"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr "əgər bəli seçilidirsə, /etc/shadow'dakı boş şifrəni yoxla."
+#: ../../standalone/drakbackup_.c:3361
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Fayldan geri çağır"
-#: ../../help.pm:1
+#: ../../standalone/drakbackup_.c:3427
#, 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 "Backup files not found at %s."
msgstr ""
-"Davam etmədən əvvəl, diqqətlə lisenziyanın qaydalarını oxumalısınız. O,\n"
-"bütün Mandrake Linuks distribusiyasını É™hatÉ™ edir. ÆgÉ™r lisenziyadakı bütün\n"
-"qaydalarla razısınızsa, qutusunu \"%s\" iÅŸarÉ™lÉ™yin. ÆgÉ™r razı deyilsÉ™niz, "
-"sadəcə olaraq kompüterinizi bağlayın."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:3440
#, c-format
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-"Hazırkı çapçı üçün mövcud olan çap seçimləri siyahısı:\n"
-"\n"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "Həlledilirliklər"
+#: ../../standalone/drakbackup_.c:3440
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Disketdən geri çağır"
-#: ../../network/drakfirewall.pm:1
+#: ../../standalone/drakbackup_.c:3442
#, 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 "Not the correct CD label. Disk is labelled %s."
msgstr ""
-"drakfirewall quraşdırıcısı\n"
-"\n"
-"Bu, Linuks Mandrake sisteminiz üçün şəxsi bir atəş divarını quraşdıracaq.\n"
-"Daha güclü və e'tibarlı sistem üçün xahiş edirik, xüsusi MandrakeSecurity\n"
-"Firewall buraxılışı ilə maraqlanın."
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../standalone/drakbackup_.c:3452
#, c-format
msgid ""
-"Please enter your username, password and domain name to access this host."
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
-"Xahiş edirik, bu qovşağa yetişə bilmək üçün istifadəçi adını, şifrəni və "
-"domen adını girin."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Remove selected host"
-msgstr "Seçili qovşağı sil"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network configuration"
-msgstr "Şəbəkə quraşdırılması"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/_jaz sürücülərini avtomatik təsbit et"
-#: ../../any.pm:1
-#, c-format
-msgid "No sharing"
-msgstr "Bölüşmə yoxdur"
+#: ../../standalone/drakbackup_.c:3452
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Bölmə cədvəlini qurtar"
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakbackup_.c:3454
#, c-format
-msgid "Move selected rule down one level"
-msgstr "Seçili qaydanı bir səviyyə aşağı daşı"
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "TB"
-msgstr "TB"
+#: ../../standalone/drakbackup_.c:3474
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:3474
#, c-format
-msgid "FATAL"
-msgstr "AÄžIR"
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh the list"
-msgstr "Siyahını təzələ"
+#: ../../standalone/drakbackup_.c:3475
+#, fuzzy
+msgid "Host Name"
+msgstr "Ev sahibi adı"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Alıcı başına %s:\n"
-" \t\tclusternfs ilə, hər disksiz alıcının vericinin kök fayl "
-"sistemində özünə məxsus\n"
-" \t\tquraşdırma faylları ola bilər. Yerli alıcı "
-"avadanlığıquraşdırmasına icazə verərək, \n"
-" \t\tdrakTermServ bu faylları yaratmaqda yardımçı olacaq."
-
-#: ../../standalone/drakpxe:1
-#, 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"
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
msgstr ""
-"DHCP vericisi, başqa kompüterə, verilən ünvan aralıqlarında PXE "
-"işlədərəkaçılış etmə imkanı verəcək.\n"
-"\n"
-"Şəbəkə ünvanı %s , işlədilən netmask isə %s.\n"
-"\n"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete"
-msgstr "Sil"
+#: ../../standalone/drakbackup_.c:3483
+#, fuzzy
+msgid "Password required"
+msgstr "Parol"
-#: ../../Xconfig/various.pm:1
-#, 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?"
-msgstr ""
-"Kompüterinizi avtomatik olaraq X ilə açılması üçün qura bilərəm.\n"
-"Açılışda X Window ilə başlamaq istəyirsiniz?"
+#: ../../standalone/drakbackup_.c:3489
+#, fuzzy
+msgid "Username required"
+msgstr "İstifadəçi adı"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
-msgstr "Diski inÅŸa et"
+#: ../../standalone/drakbackup_.c:3492
+#, fuzzy
+msgid "Hostname required"
+msgstr "Ev sahibi adı:"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnect %s"
-msgstr "%s bağlantısını kəs"
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
-msgstr "Vəziyyət:"
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP vəkil verici"
+#: ../../standalone/drakbackup_.c:3513
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Fayldan geri çağır"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "SSH Server"
-msgstr "SSH Vericisi"
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-sync şəbəkəsi.\n"
+#: ../../standalone/drakbackup_.c:3760
+#, fuzzy
+msgid "Custom Restore"
+msgstr "Xüsusi"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
-msgstr "Avrupa protokolu"
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", \"%2$s\" vericisi üstündəki \"%1$s\" çapçı"
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
-msgstr ""
-"Qeyd edin ki hazırda bütün 'net' mediyaları da eyni zamanda sabit disk "
-"işlədir."
-
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
-#, c-format
-msgid "Error"
-msgstr "Xəta"
+#: ../../standalone/drakbackup_.c:3813
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Bölmə cədvəlini qurtar"
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
-msgstr "\"su\" icazəsi ver"
+#: ../../standalone/drakbackup_.c:3841
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Fayldan geri çağır"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Australia"
-msgstr "Avstraliya"
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+#, fuzzy
+msgid "Previous"
+msgstr "<- ÆvvÉ™lki"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "ttmkfdir fəaliyyətdədir, xahiş edirik, gözləyin..."
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+#, fuzzy
+msgid "Save"
+msgstr "Hal:"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Yalniz \"%s\"%s kartını quraşdır"
+#: ../../standalone/drakbackup_.c:3946
+#, fuzzy
+msgid "Build Backup"
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Level"
-msgstr "Səviyyə"
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+#, fuzzy
+msgid "Restore"
+msgstr "Fayldan geri çağır"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Change the printing system"
-msgstr "Çap sistemini dəyişdir"
+#: ../../standalone/drakbackup_.c:4189
+msgid ""
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4195
msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
msgstr ""
-"Sisteminiz çoxlu başlıq quraşdırmasını dəstəkləyir.\n"
-"Nə etmək istəyirsiniz?"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr "bağlama bacarılmadı: "
+#: ../../standalone/drakbackup_.c:4209
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Aşağıdakı paketlər qurulacaqdır"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "Xidmətləri quraşdır"
+#: ../../standalone/drakbackup_.c:4232
+#, fuzzy
+msgid "Please select data to restore..."
+msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Translyasiya Ünvanı:"
+#: ../../standalone/drakbackup_.c:4267
+#, fuzzy
+msgid "Please select media for backup..."
+msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4275
+#, fuzzy
+msgid "Please select data to backup..."
+msgstr "Xahiş edirik istifadə üçün bir dil seçin."
+
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
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."
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-"GNU/Linuks çəyirdəyi açılışda dönmə hesablaması yerinə gətirir və onun "
-"nəticələri cpu \"sür'ət yoxlaması\" edə bilmək üçün boqomips olaraq saxlanır."
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "Æks"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Remote Administration"
-msgstr "Uzaqdan İdarə"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
msgstr ""
-"\"%s\" çapçısı Star Office/OpenOffice.org/GIMP proqramlarına əlavə edilə "
-"bilmədi."
-#: ../../modules.pm:1
-#, c-format
-msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-"PCMCIA dəstəyi artıq 2.2 çəyirdəkləri üçün mövcud deyil. Xahiş edirik, 2.4 "
-"çəyirdəyini işlədin."
+#: ../../standalone/drakbackup_.c:4382
+#, fuzzy
+msgid "Backup system files"
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Selected All"
-msgstr "Hamısı Seçildi"
+#: ../../standalone/drakbackup_.c:4384
+#, fuzzy
+msgid "Backup user files"
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Ümumi Unix Çap Sistemi"
+#: ../../standalone/drakbackup_.c:4386
+#, fuzzy
+msgid "Backup other files"
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Webmin Service"
-msgstr "Webmin Xidməti"
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
-msgstr "avadanlıq"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Qeyd cərgəsini daxil edin:"
+#: ../../standalone/drakbackup_.c:4416
+#, fuzzy
+msgid "Sending files..."
+msgstr "Fayla qeyd et"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
-msgstr "Yunanıstan"
+#: ../../standalone/drakbackup_.c:4500
+#, fuzzy
+msgid "Backup Now from configuration file"
+msgstr "Şəbəkə quraşdırılması"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "Hamısı"
+#: ../../standalone/drakbackup_.c:4505
+#, fuzzy
+msgid "View Backup Configuration."
+msgstr "Şəbəkə quraşdırılması"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Hansı çapçı sistemi (spooler) istifadə etmək istəyirsiniz?"
+#: ../../standalone/drakbackup_.c:4526
+#, fuzzy
+msgid "Wizard Configuration"
+msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
-msgstr "İyul"
+#: ../../standalone/drakbackup_.c:4531
+#, fuzzy
+msgid "Advanced Configuration"
+msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Prints into %s"
-msgstr "%s'a çap edir"
+#: ../../standalone/drakbackup_.c:4536
+#, fuzzy
+msgid "Backup Now"
+msgstr "Fayl sistemi qurğuları"
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "Bir xəta oldu"
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4624
msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
+"options description:\n"
+"\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
msgstr ""
-"Bu paket yenilənməlidir\n"
-"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "Tamil dili (Yazı makinası düzülüşü)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
-msgstr "İstifadəçiləri səlahiyyətləndirmək üçün şifrə işlət."
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4654
msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-"Sistemdəki ekran idarəçilərində (gdm və kdm) istifadəçilərin siyahısının "
-"göstərilməsinə icazə Ver/Vermə."
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
-msgstr "əllə"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
-msgstr "Axtarılacaq fayl adı mətni:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Çapçı e'malatçısı, modeli, sürücüsü"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4662
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
msgstr ""
-"Mediya yoxdur, ya da %s avadanlığına yazmaya qarşı qorumalıdır.\n"
-"Xahiş edirik, birini taxın."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4701
msgid ""
-"Directory %s already contains data\n"
-"(%s)"
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
+"\n"
msgstr ""
-"%s cərgəsi onsuzda mə'lumat daxil edir\n"
-"(%s)"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "NetWare Vericisi üstündəki çapçı"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Yaddaş miqdarını MB cinsindən verin"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr "Cümə"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "İnternet bağlantısını tamamilə kəs."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "Həqiqi ad"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "done"
-msgstr "qurtardı"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Xahiş edirik, bir sonrakı dəfə onun işarəsini silin."
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Higher"
-msgstr "Daha Yüksək"
+#: ../../standalone/drakbackup_.c:4727
+msgid ""
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Şəkilləndirmək istədiyiniz bölmələrini seçin"
+#: ../../standalone/drakbackup_.c:4729
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4732
msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
+"Description:\n"
"\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
"\n"
-"You can visit our hardware database at:\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-"Sisteminizdə heç bit Televiziya Kartı aşkar edilmədi. Xahiş edirik, Linuks "
-"dəstəkli Televiziya Kartının düzgün taxıldığını yoxlayın.\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
"\n"
-"Avadanlıq mə'lumat bazamızı bu ünvandan ziyarət edə bilərsiniz:\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't find %s on %s"
-msgstr "%s, %s üstündə tapıla bilmir"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "Yapon dili 106 düyməli"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""
-"Darayıcı(ları)nızı bölüşdürmək üçün lazım olan paket(lər) qurula bilmədi."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Bu bir neçə dəqiqə sürəcək."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
+#: ../../standalone/drakbackup_.c:4769
+msgid ""
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "June"
-msgstr "İyun"
+#: ../../standalone/drakbackup_.c:4778
+msgid ""
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
+msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Uzaq kompüterlərdəki darayıcıları işlət"
+msgid "Installation of %s failed. The following error occured:"
+msgstr "%s qurulumu iflas etdi. Olan xəta:"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Delete selected rule"
-msgstr "Seçili qaydanı sil"
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Uzaq CUPS vericilərindəki çapçılara yetişin"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "%s sürücüsünə bir disket taxın"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
-msgstr "Maldiv"
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konsol Vasitələri"
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "kompakt"
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
-msgstr "1 dəqiqə"
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "İdarə Mərkəzi"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: fat"
-msgstr "növ: fat"
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "Usta"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "on channel %d id %d\n"
-msgstr "%d kanalında, %d id'li\n"
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Siçan"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
-msgstr ", çox funksiyalı avadanlıq"
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Uzaq Çap Edici"
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr "Laos"
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Paylaşdırma adı"
-#: ../advertising/04-configuration.pl:1
-#, 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!"
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
msgstr ""
-"Mandrake Linuks 9.2 sizə, kompüterinizi tamamilə idarə altına almaq və ondan "
-"ən ə'la keyfiyyət əldə etmək üçün Mandrake İdarə Mərkəzini daxil edir. "
-"Təhlükəsizlik səviyyəsi, avadanlıq (ekran, siçan, klaviatura kimi), İnternet "
-"bağlantısı və daha bir çox səciyyəvi elementi buradan asanlıqla quraşdırın "
-"və xüsusiləşdirin! "
-#: ../../security/help.pm:1
-#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
msgstr ""
-"Eternet kartlarının nizamsızlıq yoxlamasını Fəallaşdır/Qeyri-Fəallaşdır."
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr "Ölçüləndiriləcək FAT bölməsi mövcud deyil (ya da lazımi yer yoxdur)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr "Yuxarı"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
-msgstr "Atəş Divarı"
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Çap Edici"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr "SahÉ™:"
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Şəbəkə Quraşdırılması Sehirbazı"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr "(E)IDE/ATA idarəçiləri"
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Application:"
+msgstr "Tanıtma"
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
-msgstr "Fayl sisteminə bütün G/Ç'lar sinxron olaraq yerinə gətirilməlidir."
+#: ../../standalone/drakbug_.c:76
+#, fuzzy
+msgid "Package: "
+msgstr "Paket Qrup Seçkisi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "Çapçı Vericisi"
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Custom configuration"
-msgstr "Xüsusi quraşdırma"
+#: ../../standalone/drakbug_.c:78
+#, fuzzy
+msgid "Release: "
+msgstr "Xahiş edirik gözləyin"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbug_.c:93
msgid ""
-"Please indicate where the installation image will be available.\n"
-"\n"
-"If you do not have an existing directory, please copy the CD or DVD "
-"contents.\n"
"\n"
-msgstr ""
-"Xahiş edirik, qurulum görüntüsünün harda mövcud olacağını göstərin.\n"
"\n"
-"ÆgÉ™r mövcud cÉ™rgÉ™niz yoxdursa, xahiÅŸ edirik, CD ya da DVD mÉ™zmununuköçürün.\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
"\n"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr "Müqəddəs Pyer və Migelion"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
-msgstr "Sentyabr"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "Açılış örtüyü qeyd edilir..."
+#: ../../standalone/drakbug_.c:112
+#, fuzzy
+msgid "Report"
+msgstr "Qapı"
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
-msgstr "Portuqaliya"
+#: ../../standalone/drakbug_.c:148
+#, fuzzy
+msgid "Not installed"
+msgstr "Qurulumdan çıx"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "Başqası var?"
+#: ../../standalone/drakbug_.c:160
+#, fuzzy
+msgid "Package not installed"
+msgstr "Qurulumdan çıx"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", printing to %s"
-msgstr ", %s'a çap edilir"
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "DHCP ünvanı üçün qovşaq adı tə'yin edin"
+#: ../../standalone/drakbug_.c:180
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakconnect_.c:75
#, c-format
-msgid "Toggle to normal mode"
-msgstr "Normal moda keç"
+msgid "Network configuration (%d adapters)"
+msgstr "Şəbəkə quraşdırılması (%d adapter)"
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
-msgstr "Ümumi"
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+msgid "Profile: "
+msgstr "Profil: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Silindr %d'dən silindr %d'yə\n"
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
+msgstr "Profili sil..."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
-msgstr "BURADA MÆTNİNİZ YER ALACAQ"
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
+msgstr "Silinəcək profil:"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakconnect_.c:125
msgid "New profile..."
msgstr "Yeni profil..."
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
-#, c-format
-msgid "NONE"
-msgstr "YOXDUR"
+#: ../../standalone/drakconnect_.c:131
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "Hansı diskə daşımaq istəyirsiniz?"
+#: ../../standalone/drakconnect_.c:157
+msgid "Hostname: "
+msgstr "Ev sahibi adı:"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Display logo on Console"
-msgstr "Konsolda loqonu göstər"
+#: ../../standalone/drakconnect_.c:164
+msgid "Internet access"
+msgstr "İnternet imkanı"
-#: ../../any.pm:1
-#, c-format
-msgid "Windows Domain"
-msgstr "Windows Domeni"
+#: ../../standalone/drakconnect_.c:177
+msgid "Type:"
+msgstr "Növ: "
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (norwegian)"
-msgstr "Saami (Norveç dili)"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "Keçit:"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Interface %s (on network %s)"
-msgstr "Ara Üz %s (%s şəbəkəsində)"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Interface:"
+msgstr "Ara üz"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
-msgstr "MÆ'LUMAT"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
+msgstr "Hal:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
-msgstr "Vallis vÉ™ Futuna"
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "ÆvvÉ™lcÉ™ /etc/dhcpd.conf yaradılmalıdır!"
+#: ../../standalone/drakconnect_.c:216
+msgid "Configure Internet Access..."
+msgstr "İnternet keçişini Qur..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
-msgstr "FPU mövcud isə"
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+msgid "LAN configuration"
+msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Bu xidmət haqqında təəsüf ki,\n"
-"əlavə mə'lumat yoxdur."
+#: ../../standalone/drakconnect_.c:228
+msgid "Driver"
+msgstr "Sürücü"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "Sisteminizdə darayı tapıla bilmədi.\n"
+#: ../../standalone/drakconnect_.c:228
+msgid "Interface"
+msgstr "Ara üz"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Yeganə NIC İnşa Et -->"
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
+msgstr "Protokol"
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "Marşal Adaları"
+#: ../../standalone/drakconnect_.c:228
+#, fuzzy
+msgid "State"
+msgstr "Hal:"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "Bu düzdür?"
+#: ../../standalone/drakconnect_.c:240
+msgid "Configure Local Area Network..."
+msgstr "Yerli Şəbəkəni Quraşdır..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr "Ali istifadəçi şifrəsi"
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "Sehirbaz..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Bütün Çəyirdəkləri İnşa Et -->"
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
+msgstr "ÆlavÉ™ Et"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVDRAM device"
-msgstr "DVDRAM avadanlığı"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Connected"
+msgstr "Bağlandı"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
-msgstr "əgər bəli seçilidirsə, yiyələnməmiş faylları raport et"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Not connected"
+msgstr "Bağlı deyil"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
+msgstr "BaÄŸlan..."
+
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
+msgstr "Bağlantını Kəs..."
+
+#: ../../standalone/drakconnect_.c:400
msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Dəyiş-toqquş sahəniz yoxdur\n"
-"Davam edilsin?"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Version: "
-msgstr "Buraxılış: "
+#: ../../standalone/drakconnect_.c:427
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Qurulu ara üzünüz yoxdure.\n"
+"ÆvvÉ™lcÉ™ onları 'QuraÅŸdır'a basaraq qurun"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Server IP missing!"
-msgstr "Verici IP'si əksikdir!"
+#: ../../standalone/drakconnect_.c:449
+msgid "LAN Configuration"
+msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../lang.pm:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Suriname"
-msgstr "Surinam"
+msgid "Adapter %s: %s"
+msgstr "%s Adapteri: %s"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use a floppy"
-msgstr "Disket işlət"
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
+msgstr "Açılış Protokolu"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
-msgstr "ACPI'ni Fəallaşdır"
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
+msgstr "Açılışda başladılır"
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
-msgstr "Sıravi istifadəçilərə yazma səlahiyyəti ver"
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
+msgstr "DHCP alıcısı"
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
-msgstr "Qrafiki Mühit"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+#, fuzzy
+msgid "activate now"
+msgstr "Fəal"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
-msgstr "Gibraltar"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+#, fuzzy
+msgid "deactivate now"
+msgstr "Fəal"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Do nothing"
-msgstr "Heç bir şey etmə"
+#: ../../standalone/drakconnect_.c:499
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete Client"
-msgstr "Alıcını Sil"
+#: ../../standalone/drakconnect_.c:556
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Heç İnternet bağlantınız yoxdur.\n"
+"ÆvvÉ™lcÉ™ onları 'QuraÅŸdır'a basaraq qurun"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "Fayl sistemi növü: "
+#: ../../standalone/drakconnect_.c:580
+msgid "Internet connection configuration"
+msgstr "İnternet bağlantısı quraşdırılması"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting network..."
-msgstr "Şəbəkə başladılır..."
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet Connection Configuration"
+msgstr "İnternet Bağlantısı Quraşdırılması"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
-msgstr "Vyetnam"
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+msgid "Connection type: "
+msgstr "Bağlantı növü:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Sahənin izahatı"
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
+msgstr "Parametrlər"
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr "Mandrake Linuks istifadə edərək təhlükəsizliyinizi münasibləşdirin"
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Keçit"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-" Minnəttarlıq:\n"
-"\t- LTSP Layihəsi http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
+msgstr "Eternet Kartı"
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Help"
-msgstr "Yardım"
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
+msgstr "DHCP Alıcısı"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
-msgstr "Şəbəkə avadanlıqlarının nizamsız modda olub olmadığını yoxla"
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Your personal phone number"
-msgstr "Şəxsi telefon nömrəniz"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Module name"
+msgstr "Modul adı"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which size do you want to keep for Windows on"
-msgstr "Windows üçün hansı böyüklüyü saxlamaq istəyirsiniz"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Size"
+msgstr "Böyüklük"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Sınaq səhifə(lər)si çapçıya göndərildi.\n"
-"Çapçının işləməyə başlaması üçün bir az vaxt lazım ola bilər.\n"
+#: ../../standalone/drakfloppy_.c:45
+msgid "drakfloppy"
+msgstr "drakfloppy"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Username required"
-msgstr "İstifadəçi adı məcburidir"
+#: ../../standalone/drakfloppy_.c:63
+msgid "boot disk creation"
+msgstr "açılış disketi yaradılması"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Device"
-msgstr "Avadanlıq"
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr "əsas"
-#: ../../help.pm:1
+#: ../../standalone/drakfloppy_.c:87
#, 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."
-msgstr ""
-"Bölümdə seçdiyiniz dilə bağlı olaraq, DrakX uyğun gələn klaviatura növü\n"
-"quraşdırmasını seçəcək. Yalnız, dilinizə tam uyğun olmayan klaviatura "
-"yiyəsi\n"
-"də ola bilərsiniz: misal üçün Azərbaycanda yaşayan Rus dilli şəxs isəniz\n"
-"klaviaturanızı Rus dilində istifadə etmək istəyəcəksiniz, ya da Rusiyada "
-"yaÅŸayan\n"
-"Azərbaycanlı isəniz klaviaturanızı Rus dilində yox Azərbaycan dilində "
-"istifadÉ™\n"
-"etmək istəyə bilərsiniz. İki vəziyyətdə də istədiyiniz klaviaturlarını "
-"siyahıdan seçə\n"
-"bilərsiniz.\n"
-"\n"
-"Dəstəklənən klaviaturaların tam siyahısını görmək üçün \"%s\" \n"
-"düyməsinə basın\n"
-"\n"
-"ÆgÉ™r Latın É™lifbası É™sasında olmayan klaviatura düzülüşü seçsÉ™niz, növbÉ™ti\n"
-"dialoq sizə Latın və Latın olmayan düzülüşlər arasında keçiş üçün\n"
-"qısa yol seçmə imkanı verəcək."
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy xətası: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) Çapçı Seçimləri"
+#: ../../standalone/drakfloppy_.c:98
+msgid "kernel version"
+msgstr "çəyirdək buraxılışı"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
+#: ../../standalone/drakfloppy_.c:104
+msgid "General"
+msgstr "Ümumi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr "Hökmlü istifadəçi siyahısı dəyişdirilib, qurğu faylı yenidən yazılır."
+#: ../../standalone/drakfloppy_.c:109
+msgid "Expert Area"
+msgstr "Ustaların Sahəsi"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakfloppy_.c:112
msgid "mkinitrd optional arguments"
msgstr "mkinitrdin arzuya bağlı olan arqumentləri"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
-msgstr ""
-"Mozilla, Epiphany ya da Konqueror ilə vebi gəzin, poçtlarınızı Evolution, "
-"Balsa ya da Kmail ilə oxuyun, OpenOffice.org ilə sənədlərinizi yaradın."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Dünyanın geri qalanı üçün protokol"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print test pages"
-msgstr "Sınaq səhifələri çap et"
+#: ../../standalone/drakfloppy_.c:113
+msgid "Add a module"
+msgstr "Modul əlavə et"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Activate now"
-msgstr "İndi fəallaşdır"
+#: ../../standalone/drakfloppy_.c:133
+msgid "force"
+msgstr "zorla"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
-msgstr "64 MB və ya daha çox"
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
+msgstr "lazım olarsa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Xahiş edirik, çap etmək istədiyiniz sınaq səhifələrini seçin.\n"
-"Qeyd: foto sınaq səhifəsinin çapı uzun müddət ala bilər və alçaq yaddaşı "
-"olan lazer çapçılarda heç çıxmaya da bilər. Çox vaxt standart sınaq "
-"səhifəsini çap etmək kifayətdir."
+#: ../../standalone/drakfloppy_.c:135
+msgid "omit scsi modules"
+msgstr "scsi modulları keç"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Xahiş edirik, %s'ın bağlı olduğu avadanlığı seçin"
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
+msgstr "raid modulları keç"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Not formatted\n"
-msgstr "Şəkilləndirilməmiş\n"
+#: ../../standalone/drakfloppy_.c:172
+msgid "Remove a module"
+msgstr "Modulu çıxart"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Periodic Checks"
-msgstr "Peryodik Yoxlamalar"
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
+msgstr "Nəticə"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "PXE Server Configuration"
-msgstr "PXE Vericisi Quraşdırılması"
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
+msgstr "Diski yarat"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "Backup the system files before:"
-msgstr "Sistem fayllarının ehtiyat nüsxəsini bundan əvvəl al:"
+msgid "Be sure a media is present for the device %s"
+msgstr "%s avadanlığında medya olduğundan əmin olun"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../standalone/drakfloppy_.c:341
+#, fuzzy, c-format
msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
-"Bu, İnternetə bağlı olan bir kompüter üçün standart və məsləhət edilən bir "
-"təhlükəsizlik səviyyəsidir."
-
-#: ../../any.pm:1
-#, c-format
-msgid "First floppy drive"
-msgstr "İlk disket sürücü"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Fayl/_Çıx"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak"
-msgstr "Dvorak"
+"%s avadanlığında medya yoxdur.\n"
+"Xahiş edirik. birini taxın."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "Choose the new size"
-msgstr "Yeni böyüklüyü seçin"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Media class"
-msgstr "Mediya sinifi"
+msgid "Unable to fork: %s"
+msgstr "Fork edilÉ™ bilmir: %s"
-#: ../../standalone/XFdrake:1
+#: ../../standalone/drakfloppy_.c:349
#, c-format
-msgid "You need to log out and back in again for changes to take effect"
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
msgstr ""
-"Dəyişikliklərin fəal olması üçün hesabdan çıxış edib, yenidən girməlisiniz."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
-msgstr "%s, Scannerdrake'nın bu buraxılışı tərəfindən tanınmır. "
+"Düzgün mkbootdisk aparıla bilmir: \n"
+" %s \n"
+" %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Faroe Islands"
-msgstr "Faro Adaları"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Restart XFS"
-msgstr "XFS'ni yenidən başlat"
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
-msgstr "Qovşaq/şəbəkə əlavə et"
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Scannerdrake indi başladılmayacaq."
+#: ../../standalone/drakfont_.c:242
+#, fuzzy
+msgid "no fonts found"
+msgstr "şəbəkə kartı tapılmadı"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model name"
-msgstr "Model adı"
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+#, fuzzy
+msgid "done"
+msgstr "Qurtardı"
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
-msgstr "Albaniya"
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr "Britaniya Hind Okeanı Sahəsi"
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Normal Mode"
-msgstr "Normal Mod"
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "Sürücüdə CDR/DVDR yoxdur!"
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer connection type"
-msgstr "Çapçı bağlantı növü"
+#: ../../standalone/drakfont_.c:359
+msgid "Fonts copy"
+msgstr ""
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
-msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
+#: ../../standalone/drakfont_.c:363
+#, fuzzy
+msgid "True Type fonts installation"
+msgstr "Qurulum hazırlanır"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network %s"
-msgstr "Şəbəkə %s"
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
-msgstr "Malayalam dili"
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
-msgstr "%s qurğusu əhatə xaricindədir!"
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connect %s"
-msgstr "BaÄŸlan %s"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "CUPS yenidən başladılır..."
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "\"%s\" üstündə Çap/Darama/Foto Kartları"
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
+msgstr ""
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
msgstr ""
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "%s bağlama nöqtəsini ikiləşdir"
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
-msgstr "ÆgÉ™r bÉ™li seçilidirsÉ™, chkrootkit yoxlamalarını icra et."
+#: ../../standalone/drakfont_.c:459
+#, fuzzy
+msgid "Restart XFS"
+msgstr "məhdudlaşdır"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "Bağlantı quraşdırılması"
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
+msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|Generic"
-msgstr "Namə'lum|Ümumi"
+#: ../../standalone/drakfont_.c:528
+#, fuzzy
+msgid "xfs restart"
+msgstr "məhdudlaşdır"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
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 ""
-"Mandrake Linuksu qurduğunuz vaxtda çox güman ki bə'zi paketlər \n"
-"ilk çıxışlarından sonra yenilənmiş ola bilər. Bunlarla bir çox xəta "
-"düzəldilmiş\n"
-"ya da təhlükəsizlik qüvvətləndirilmiş ola bilər. Bu yeniləmələrdən istifadə\n"
-"etmək üçün indi siz İnternetdən endirmə əməliyyatına başlaya bilərsiniz.\n"
-"ÆgÉ™r fÉ™al internet baÄŸlantınız varsa \"%s\", yoxsa, yenilÉ™nmiÅŸ paketlÉ™ri\n"
-"daha sonra qurmaq üçün \"%s\" düyməsinə basın.\n"
-"\n"
-"\"%s\" seçilərsə, yeniləmələrin endirilə biləcəyi yerlərin siyahı "
-"göstəriləcək.\n"
-"Sizə ən yaxın olanı seçməlisiniz. Paket seçim ağacı göstəriləcək, bu bölümü\n"
-"gözdən keçirin və paketləri endirib qurmaq üçün \"%s\" düyməsinə basın.\n"
-"Ləğv etmək üçün isə \"%s\" düyməsindən istifadə edə bilərsiniz."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-msgstr "Myanmar"
-
-#: ../../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
-#, c-format
-msgid "Quit"
-msgstr "Çıx"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "Avtomatik ayır"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Xətalı bloklar sınansınmı?"
+"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 using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Other MultiMedia devices"
-msgstr "Digər Multimediya avadanlıqları"
+#: ../../standalone/drakfont_.c:621
+#, fuzzy
+msgid "Fonts Importation"
+msgstr "Bölmə şəkilləndirilməsi"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "burner"
-msgstr "yazıcı"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Bug Description/System Information"
-msgstr "Xəta İzahatı/Sistem Mə'lumatı"
+#: ../../standalone/drakfont_.c:658
+msgid "Uninstall Fonts"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (Default is all users)"
-msgstr " (Æsası bütün istifadəçilÉ™rdir)"
+#: ../../standalone/drakfont_.c:669
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "No remote machines"
-msgstr "Uzaq sistem yoxdur"
+#: ../../standalone/drakfont_.c:677
+#, fuzzy
+msgid "Font List"
+msgstr "Bağlama nöqtəsi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:737
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"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@mandrakesoft.com\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 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"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
+" 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"
-"Çapçı Quraşdırma Sehirbazına Xoş Gəldiniz\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"
-"Bu sehirbaz kompüterinizə bağlı olan çapçı ya da çapçıları quraşdırmaqda "
-"sizə yardım edəcək.\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"
"\n"
-"Xahiş edirik, bu kompüterə bağlı olan bütün çapçıları açın ki avtomatik "
-"aşkar edilə bilsinlər.\n"
"\n"
-" Hazır olanda \"Sonrakı\" düyməsinə, çapçılarınızı indi quraşdırmaq "
-"istəmirsinizsə\"Ləğv Et\" düyməsinə basın."
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "Səlahiyyətləndirmə NIS"
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:862
+#, fuzzy
+msgid "Choose the applications that will support the fonts:"
+msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
msgstr ""
-"``Æmr sÉ™tiri seçimlÉ™rini mÉ™hdudlaÅŸdır`` seçimi ÅŸifrÉ™siz bir iÅŸÉ™ yaramaz"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "İnternet Bağlantısı Bölüşdürülməsi fəallaşdırıldı"
+#: ../../standalone/drakfont_.c:877
+#, fuzzy
+msgid "StarOffice"
+msgstr "İş Yeri"
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "BirləşmiÅŸ ÆrÉ™b ÆmirliklÉ™ri"
+#: ../../standalone/drakfont_.c:884
+#, fuzzy
+msgid "Abiword"
+msgstr "Dayandır"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "Kart IO_0"
+#: ../../standalone/drakfont_.c:891
+#, fuzzy
+msgid "Generic Printers"
+msgstr "Çap Edici"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
-msgstr "Yerli Qurğuları Qeyri-fəallaşdır"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "Tayland"
+#: ../../standalone/drakfont_.c:1005
+#, fuzzy
+msgid "Install List"
+msgstr "Sistemi qur"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "Kart IO_1"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
+msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
-msgstr "Axtar:"
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "Qazaxstan"
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
-msgstr "Routerlər:"
+#: ../../standalone/drakfont_.c:1116
+#, fuzzy
+msgid "Selected All"
+msgstr "Fayl seç"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Write"
-msgstr "Yaz"
+#: ../../standalone/drakfont_.c:1120
+#, fuzzy
+msgid "Remove List"
+msgstr "Uzaq Çap Edici"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Mövcud olan bütün uzaq CUPS çapçılarını göstər"
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+#, fuzzy
+msgid "Initials tests"
+msgstr "İnit İsmarıcı"
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linuks Qurulumu %s"
+#: ../../standalone/drakfont_.c:1145
+#, fuzzy
+msgid "Copy fonts on your system"
+msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
-msgstr "Namə'lum sürücü"
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "Tay klaviaturası"
+#: ../../standalone/drakfont_.c:1153
+#, fuzzy
+msgid "Post Install"
+msgstr "Qurulum"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr "Buvet Adası"
+#: ../../standalone/drakfont_.c:1178
+#, fuzzy
+msgid "Remove fonts on your system"
+msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "Çevirmə seçimləri"
+#: ../../standalone/drakfont_.c:1182
+#, fuzzy
+msgid "Post Uninstall"
+msgstr "Qurulumdan çıx"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "ÆgÉ™r qapı nömrÉ™si verilmÉ™szÉ™, É™sas olaraq 631 alınacaq."
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
+msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-# needs editing (Metin)
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Per client system configuration files:\n"
-" \tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-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."
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-"CD-Rom'u dəyişdirin!\n"
-"\n"
-"Xahiş edirik, \"%s\" adlı CD-Rom'u sürücünüzə yerləşdirin və Oldu düyməsinə "
-"basın.\n"
-"ÆgÉ™r CD-Rom É™linizdÉ™ deyilsÉ™, bu CD-Rom'dan qurmamaq üçün Ləğv Et düymÉ™sinÉ™ "
-"basın."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "Polyak dili"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Online"
-msgstr "Mandrake Onlayn"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
-msgstr "\t-webdav şəbəkəsi.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", paralel qapıdakı çox funksiyalı avadanlıq"
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr "İnternet Bağlantısı Bölüşdürülməsi fəallaşdırıldı"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakgw_.c:126
msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"Sisteminizdə şəbəkə kartı tapıla bilməyib.Avadanlığı quran vasitəni işə "
-"salın."
-
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "Netmask"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "No hard drives found"
-msgstr "Sabit disk(lər) tapıla bilmədi"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "2 düyməli"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "ISDN bağlantınızın növü nədir?"
+"İnternet Bağlantısı Bölüşdürülməsi qurulması artıq bitdi.\n"
+"Və artıq fəallaşdırılmışdır.\n"
+"\n"
+"Nə etmək istəyirsiniz?"
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "Etiket"
+#: ../../standalone/drakgw_.c:130
+msgid "disable"
+msgstr "passivləşdir"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "DisketÉ™ qeyd et"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
+msgstr "keç"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check open ports"
-msgstr "Açıq qapıları yoxla"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "reconfigure"
+msgstr "yenidən quraşdır"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Edit selected printer"
-msgstr "Seçili vericini düzəlt"
+#: ../../standalone/drakgw_.c:133
+msgid "Disabling servers..."
+msgstr "Vericilər bağlanır..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Çapçının avtomatik aşkar edilməsi"
+#: ../../standalone/drakgw_.c:142
+msgid "Internet connection sharing is now disabled."
+msgstr "İnternet Bağlantısı Bölüşdürülməsi indi bağlandı"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Hansı sizin ISDN kartınızdır?"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
+msgstr "İnternet Bağlantısı Bölüşdürülməsi passivləşdirildi"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:150
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."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"NFS TCP/IP şəbəkələrində fayl bölüşülməsi üçün istifadə edilən məşhur bir "
-"protokoldur.\n"
-"Bu xidmət, /etc/exports faylında qurğuları olan NFS vericisinin\n"
-"istifadəsinə imkan verər."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Msec"
-msgstr "Msec"
+"İnternet Bağlantısı Bölüşdürülməsi qurulması artıq bitdi.\n"
+"Və artıq passivləşdirilmişdir.\n"
+"\n"
+"Nə etmək istəyirsiniz?"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Diqqət edin, etiket dəyişdi:\n"
-"%s"
+#: ../../standalone/drakgw_.c:154
+msgid "enable"
+msgstr "fəallaşdır"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
-msgstr "Yaxalama bufferlərinin ədədi:"
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
+msgstr "Xidmətlər fəallaşdırılır..."
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Seçkiniz? (0/1, əsas `%s') "
+#: ../../standalone/drakgw_.c:166
+msgid "Internet connection sharing is now enabled."
+msgstr "İnternet Bağlantısı Bölüşdürülməsi indi açıldı"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:183
+#, fuzzy
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"
+"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"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
"\n"
-"Click on \"%s\" if you wish to select partitions that will be checked for\n"
-"bad blocks on the disk."
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
-"Yeni yaradılan bütün bölmələr şəkilləndirilməlidir\n"
-"(şəkilləndirmək, fayl sistemini yaratmaq deməkdir - format).\n"
-"\n"
-"Bu arada var olan hazır bölmələri də üstündəkiləri silmək üçün yenidən\n"
-"şəkilləndirmək istəyə bilərsiniz.\n"
-"Bunu istəyirsinizsə xahiş edirik, bu bölmələri də seçin.\n"
-"\n"
-"Ağlınızda tutun ki var olan bütün bölmələri şəkilləndirmək\n"
-"mÉ™cburi deyil. ÆmÉ™liyyat sistÉ™mini É™mÉ™lÉ™ gÉ™tirÉ™n bölmÉ™lÉ™ri\n"
-"(yəni \"/\", \"usr\" və ya \"var\"ı yenidən şəkilləndirmək üçün\n"
-"seçə bilərsiniz. Mə'lumatlar olan \"home\"u isə toxunmadan\n"
-"saxlaya bilərsiniz).\n"
-"\n"
-"Bölmələri seçərkən diqqətli olun. Şəkilləndirdiyiniz bölmələrdəki\n"
-"mə'lumatlar itiriləcək və geri gəlməyəcək.\n"
-"\n"
-"Bölmələri şəkilləndirməyə hazır olanda \"%s\" düyməsini basın.\n"
-"\n"
-"Yeni Linuks Mandrake sisteminizi qurmaq üçün başqa bölmə seçmək\n"
-"istəyirsinizsə \"%s\" düyməsinə basın.\n"
+"Kompüterınızi İnternet bağlantısını bölüşdürmək üçün quraşdırırsınız.\n"
+"Bu seçənəklə yerli şəbəkənizdəki başqa kompüterlər sizin İnternet "
+"bağlantınızdan faydalana biləcəklər.\n"
"\n"
-"Üstündəki xəsərli blokların yoxlanmasını istədiyiniz bölmələri seçmək\n"
-"üçün \"%s\" düyməsinə basın."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "French"
-msgstr "Fransızca"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTY)"
-msgstr "Çex dili (QWERTY)"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow X Window connections"
-msgstr "X Window bağlantılarına icazə ver"
+"Xəbədarlıq: Yerli Şəbəkə (LAN) qurmaq üçün uyğun Şəbəkə Adapterinə "
+"ehtiyacınız var."
-#: ../../standalone/service_harddrake:1
+#: ../../standalone/drakgw_.c:211
#, c-format
-msgid "Hardware probing in progress"
-msgstr "Avadanlıq sınaması fəaliyyətdədir"
+msgid "Interface %s (using module %s)"
+msgstr "Ara Üz %s (%s modulu işlədilir)"
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
+#: ../../standalone/drakgw_.c:212
#, c-format
-msgid "Net Device"
-msgstr "Şəbəkə Avadanlığı"
+msgid "Interface %s"
+msgstr "Ara üz %s"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "İcmal"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:221
msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
msgstr ""
-" (Paralel Qapılar: /dev/lp0, /dev/lp1, ..., bunlara bərabərdir LPT1:, "
-"LPT2:, ..., 1ci USB çapçı: /dev/usb/lp0, 2ci USB çapçı: /dev/usb/lp1, ...)."
-
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Next"
-msgstr "Sonrakı"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Sistem yükləyicisini %s bölməsinə qura bilməzsiniz\n"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
-msgstr "Porto Riko"
+"Sisteminizdə şəbəkə kartı tapıla bilməyib.Avadanlığı quran vasitəni işə "
+"salın."
-#: ../../network/network.pm:1
-#, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp/zeroconf)"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr "Şəbəkə ara üzü"
-#: ../../standalone/drakautoinst:1
+#: ../../standalone/drakgw_.c:228
#, c-format
msgid ""
+"There is only one configured network adapter on your system:\n"
"\n"
-"Welcome.\n"
+"%s\n"
"\n"
-"The parameters of the auto-install are available in the sections on the left"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
+"Sistemnizdə bir dənə qurulmuş şəbəkə adapteri var:\n"
"\n"
-"Xoş Gəldiniz.\n"
+"%s\n"
"\n"
-"Avtomatik qurulumun parametrləri soldakı qisimlərdə mövcuddur"
+"Yerli Şəbəkə adapterinizi qurmaq üzərəyəm?"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/drakgw_.c:235
msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
-msgstr ""
-"Quraşdırmanı tamamlamaq üçün 'ImageMagick' paketi məcburidir.\n"
-"'ImageMagick' paketini qurmaq üçün \"Oldu\", ləğv etmək üçün \"Ləğv Et\" "
-"düyməsinə basın"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Telnet server"
-msgstr "X verici"
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr "Sizi Yerli Şəbəkəyə bağlayacaq adapteri seçin"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Litvanya dili \"number row\" QWERTY"
+#: ../../standalone/drakgw_.c:261
+#, fuzzy
+msgid "Network interface already configured"
+msgstr "Monitor qurulmayıb"
-#: ../../install_any.pm:1
+#: ../../standalone/drakgw_.c:262
#, c-format
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
+"Warning, the network adapter (%s) is already configured.\n"
"\n"
+"Do you want an automatic re-configuration?\n"
"\n"
-"Do you really want to remove these packages?\n"
+"You can do it manually but you need to know what you're doing."
msgstr ""
-"Sisteminizin yenilənməsi üçün bu paketlər silinəcək: %s\n"
-"\n"
-"\n"
-"Bu paketləri həqiqətən də silmək istəyirsiniz?\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
-msgstr "Anquilla"
+#: ../../standalone/drakgw_.c:267
+#, fuzzy
+msgid "Automatic reconfiguration"
+msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "NIS sahəsi"
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "Antarktika"
+#: ../../standalone/drakgw_.c:268
+#, fuzzy
+msgid "Show current interface configuration"
+msgstr "İnternet qurğuları"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:269
+#, fuzzy
+msgid "Current interface configuration"
+msgstr "İnternet qurğuları"
+
+#: ../../standalone/drakgw_.c:270
#, c-format
msgid ""
+"Current configuration of `%s':\n"
"\n"
-"- User Files:\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
msgstr ""
-"\n"
-"- İstifadəçi Faylları:\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
-msgstr "Bağlama seçimləri"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Jamaica"
-msgstr "Yamayka"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:283
msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
+"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"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
+"\n"
msgstr ""
-"Oracle ya da DVD çalğıcılar kimi tə'minatların istifadəsi üçün xam\n"
-"avadanlıqları blok avadanlıqlara tə'yin et (sabit disk bölmələrikimi)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Xahiş edirik, gözləyin, qurulum hazırlanır"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "Çex dili (QWERTZ)"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Şəbəkə kartının id'sini izlə (laptoplar üçün faydalıdır)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Qapı nömrəsi ədəd olmalıdır!"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "You must choose an image file first!"
-msgstr "ÆvvÉ™lcÉ™ rÉ™sm faylını seçmÉ™lisiniz!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Sabit Diskdən Geri Yüklə"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "LVMə əlavə et"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "DNS verici"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr "Trinidad vÉ™ Tobaqo"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD və LPRng IPP çapçılarını dəstəkləmir.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host name or IP."
-msgstr "Qovşaq adı ya da IP."
+#: ../../standalone/drakgw_.c:290
+#, fuzzy
+msgid "Local Network adress"
+msgstr "şəbəkə kartı tapılmadı"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Edit"
-msgstr "/_Düzəlt"
+#: ../../standalone/drakgw_.c:294
+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 ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "bəsit"
+#: ../../standalone/drakgw_.c:300
+#, fuzzy
+msgid "(This) DHCP Server IP"
+msgstr "CUPS verici IP"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "Hamısını təmizlə"
+#: ../../standalone/drakgw_.c:301
+#, fuzzy
+msgid "The DNS Server IP"
+msgstr "CUPS verici IP"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No test pages"
-msgstr "Sınaq səhifələri yoxdur"
+#: ../../standalone/drakgw_.c:302
+#, fuzzy
+msgid "The internal domain name"
+msgstr "Çap Edicisiz"
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr "Fokland Adaları (Malvin)"
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "%s Adapteri: %s"
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
+msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Boot disk creation"
-msgstr "Açılış disketi yaradılması"
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
-msgstr "Bazar ertəsi"
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
+msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown model"
-msgstr "NamÉ™'lum model"
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-"ÆgÉ™r bÉ™li seçilidirsÉ™, hÉ™rkÉ™s tÉ™rÉ™findÉ™n yazıla bilÉ™n fayl/cÉ™rgÉ™lÉ™ri yoxla."
-#: ../../help.pm:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid "authentication"
-msgstr "səlahiyyətləndirmə"
+msgid "Potential LAN address conflict found in current config of %s!\n"
+msgstr "%s quğusunda dəyəsən bir LAN ünvan çaxışması tapıldı!\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now"
-msgstr "Ehtiyat Nüsxəsini İndi Çıxart"
+#: ../../standalone/drakgw_.c:335
+msgid "Configuring..."
+msgstr "Quraşdırılır..."
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/_Fayl"
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "Skriptlə qurulur, proqram tə'minatı qurulur, xidmətlər başladılır..."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:372
#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Çapçı Office/OpenOffice.org/GIMP proqramlarından çıxardılır"
+msgid "Problems installing package %s"
+msgstr "%s paketi qurulurkən xəta oldu"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:505
msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
+"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 ""
-"Linuks 2.2 seriyası çəyirdəklərində atəş divarı\n"
-"qurmaq üçün paket süzülməsini başlat."
+"Hər şey quruldu.\n"
+"İndi isə İnternet bağlantınızı yerli şəbəkədəkı başqa kompüterlər ilə "
+"bölüşdürə bilərsiniz, bunun üçün isə avtomatik şəbəkə quraşdırılması (DHCP) "
+"işlədilir."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Editable"
-msgstr "Dəyişdirilə bilən"
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
+msgstr "Quraşdırma artıq qurtarıbdır, amma fəaliyyəti dayandırılıb."
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
-msgstr "Hansı dhcp alıcısını istifadÉ™ edÉ™cÉ™ksiniz? Æsası dhcp-client'dir"
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
+msgstr "Quraşdırma artıq qurtarıbdır və fəaliyyətdədir."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr "Tamil (ISCII-ldüzülüşü)"
+#: ../../standalone/drakgw_.c:525
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "İnternet Bağlantısı Bölüşdürmə Quraşdırması aparılmayıb."
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
-msgstr "Mayot"
+#: ../../standalone/drakgw_.c:531
+msgid "Internet connection sharing configuration"
+msgstr "İnternet bağlantısı bölüşdürülməsi quraşdırılması"
-#: ../../security/help.pm:1
+#: ../../standalone/drakgw_.c:539
#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
+msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"Qabıq əmrlərinin keçmiş böyüklüyünü müəyyən et. -1 qiyməti sonsuz mə'nasına "
-"gəlir."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d KB\n"
-msgstr "%d KB\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Avtomatik qurulum disketi hazırlanır"
+"İnternet Bağlantısı Bölüşdürmə vasitəsinə Xoş Gəldiniz!\n"
+"\n"
+"%s\n"
+"\n"
+"Quraşdırma sehirbazını açmaq üçün Quraşdıra tıqlayın."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for scanners ..."
-msgstr "Darayıcılar axtarılır..."
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "group"
+msgstr "İş qrupu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
-msgstr "Rusiya"
+#: ../../standalone/drakperm_.c:36
+msgid "path"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Partitioning"
-msgstr "Bölmələndirmə"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "permissions"
+msgstr "bölmə %s"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
-msgstr "eternet kart tapıldı"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "user"
+msgstr "İstifadəçi adı"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
-msgstr "Syslog"
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create catalog!"
-msgstr "Kataloq yaradıla bilmir!"
+#: ../../standalone/drakperm_.c:44
+#, fuzzy
+msgid "delete"
+msgstr "Sil"
-#: ../advertising/11-mnf.pl:1
-#, 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."
+#: ../../standalone/drakperm_.c:45
+msgid "edit"
msgstr ""
-"Təhlükəsizlik qurğularınızı bu istifadəsi asan olan və atəş divarı, şəxsi "
-"özəl şəbəkə (VPN) verici və alıcısı, müdaxilə aşkar sistemi və traffik "
-"idarəçisikimi yüksək keyfiyyətli tərkib hissələrini daxil edən tə'minat ilə "
-"sağlamlaşdırın."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
-msgstr "Avtomatik yerləşdirmə üçün kifayət qədər boş sahə yoxdur"
+#: ../../standalone/drakperm_.c:46
+#, fuzzy
+msgid "Down"
+msgstr "Qurtardı"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "Ali istifadəçi şifrəsini tə'yin et"
+#: ../../standalone/drakperm_.c:47
+#, fuzzy
+msgid "add a rule"
+msgstr "Modul əlavə et"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable IP spoofing protection"
-msgstr "IP gizləmə qorumasını fəallaşdır"
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
+msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:51
msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
+"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 ""
-"(%s) səs kartınız üçün pulsuz sürücü mövcud deyil, ancaq \"%s\" ünvanında "
-"lazım olan sürücünü tapa bilərsiniz."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group :"
-msgstr "Qrup :"
+#: ../../standalone/drakperm_.c:56
+#, fuzzy
+msgid "Add a new rule at the end"
+msgstr "Çap Edicisiz"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
msgstr ""
-"%s bölməsinin ölçüləndirildikdən sonra bu bölmədəki bütün mə'lumatlar itəcək"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet connection configuration"
-msgstr "İnternet bağlantısının quraşdırılması"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
+#: ../../standalone/drakperm_.c:58
+msgid "Up selected rule one level"
msgstr ""
-"msec tərəfindən şifrə vaxtının keçirilməsinə istisna olaraq ad əlavə et."
-
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "USB"
-msgstr "LSB"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "Televiziya kanalları axtarılır"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
-msgstr "Çəyirdək:"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_About..."
-msgstr "/_Haqqında..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
-msgstr "Benqal dili"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
-msgstr "Seçim: "
-
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Xidmətlər: %d fəal, %d qeydli"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "Açılış disketi yarat"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "Solomon Adaları"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Xahiş edirik, siçanınızı sınayın:"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
-msgstr "İş qrupu"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Çapçı qovşaq adı ya da IP"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "down"
-msgstr "qurtardı"
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Path or Module"
-msgstr "Qovşaq Cığırı ya da Modul"
+#: ../../standalone/drakperm_.c:60
+#, fuzzy
+msgid "Delete selected rule"
+msgstr "Növbəni sil"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Çapçı adı ancaq hərf, rəqəm və alt xətt daxil edə bilər"
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Show current interface configuration"
-msgstr "Hazırkı ara üz qurğusunu göstər"
+#: ../../standalone/drakperm_.c:231
+#, fuzzy
+msgid "Current user"
+msgstr "İstifadəçini qəbul et"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add Printer"
-msgstr "Çapçı ÆlavÉ™ Et"
+#: ../../standalone/drakperm_.c:236
+#, fuzzy
+msgid "Permissions"
+msgstr "Buraxılış: %s\n"
-#: ../../security/help.pm:1
-#, 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."
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
msgstr ""
-"Bu arqument alıcıların X vericisinə 6000cı qapıdan bağlanma\n"
-"icazələrinin olub olmamasını müəyyən edir."
-
-#: ../../help.pm:1
-#, c-format
-msgid "Development"
-msgstr "İnkişaf"
-
-#: ../../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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Done"
-msgstr "Qurtardı"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Web Server"
-msgstr "Veb Vericisi"
+#: ../../standalone/drakperm_.c:238
+#, fuzzy
+msgid "Property"
+msgstr "Qapı"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "Çili"
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tSistem Fayllarını daxil etmə\n"
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
msgstr ""
-"Lexmark tərəfindən verilən inkjet çapçı sürücüləri ilə çapçı yalnız yerli, "
-"sistemdə quraşdırıla bilər, yəni şəbəkədəki başqa bir çapçıya bu sürücülərlə "
-"yetişə bilməzsiniz. Xahiş edirik, çapçınızı sisteminizə bağlayın ya da bu "
-"sürücüləri çapçının bağlı olduğu kompüterdə qurun."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:296
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!"
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
msgstr ""
-"Çox-funksiyalı avadanlığınız avtomatik daraya bilmək üçün quraşdırılıb. İndi "
-"siz əmr sətirindən \"scanimage\" ilə (birdən çox darayıcınız varsa,"
-"\"scanimage -d hp:%s\" ilə darayıcınızı bildirin) ya da qrafiki ara üzdə "
-"işləyən\"xscanimage\" ya da \"xsane\" proqramlarıyla darama edə bilərsiniz. "
-"ÆgÉ™r GIMP iÅŸlÉ™dirsinizsÉ™, eyni zamanda \"Fayl\"/\"Al\" menyusundan bunu "
-"hÉ™yata keçirÉ™ bilÉ™rsiniz. Ætraflı mÉ™'lumat üçün É™mr sÉ™tirindÉ™ya da fayl "
-"idarəçinizdə \"man scanimage\" əmrini verin.\n"
-"Bu avadanlıq üçün \"scannerdrake\"ni işlətməyin!"
-
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "(%s artıq əlavə edilmişdir)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation in progress"
-msgstr "Açılış yükləyicisi qurulumu fəaliyyətdədir"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
-msgstr ", %s əmri ilə"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Eyni zamanda Alt və Shift düymələri"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
-msgstr "Bayraqlar"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Users"
-msgstr "İstifadəçi əlavə et/sil"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Qovşaq/şəbəkə IP ünvanı əksikdir."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
-msgstr "hər həftə"
-
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "QurÄŸular"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "Daxil edilən qovşaq/şəbəkə IP ünvanı düzgün deyil.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "SSH üçün ehtiyat açarları yarat/transfer et"
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr "Bütün mövcud ölkələrinn siyahısı"
+#: ../../standalone/drakperm_.c:297
+#, fuzzy
+msgid "Use owner id for execution"
+msgstr "Avtomatik təsbit işlət"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Alternativ sınaq səhifəsi (A4)"
+#: ../../standalone/drakperm_.c:298
+#, fuzzy
+msgid "Use group id for execution"
+msgstr "Avtomatik təsbit işlət"
-#: ../../install_steps_interactive.pm:1
-#, 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."
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
msgstr ""
-"Aşağıdakı siyahıdakı bütün CD'lərə sahib isəniz, OLDU'ya basın.\n"
-"CD'lərin heç birinə sahib deyilsəniz, İMTİNA ET'ə basın.\n"
-"CD'lərdən bə'ziləi əksik isə, onları seçili vəziyyətdən çıxardıb OLDU'ya "
-"basın."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
-msgstr "Xahiş edirik, gözləyin"
+#: ../../standalone/drakperm_.c:304
+#, fuzzy
+msgid "Path selection"
+msgstr "Paket seçkilərini saxla"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP"
+#: ../../standalone/drakperm_.c:350
+#, fuzzy
+msgid "user :"
+msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup user files"
-msgstr "İstifadəçi fayllarının ehtiyat nüsxəsini çıxart"
+#: ../../standalone/drakperm_.c:352
+#, fuzzy
+msgid "group :"
+msgstr "İş qrupu"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "New"
-msgstr "Yeni"
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Bağlı deyil"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/draksound_.c:47
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"
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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 ""
-"Bu, GNU/Linuks sisteminizin təhlükəsizliyi üçün ən əsas mərhələdir.\n"
-"\"Ali istifadəçi (root)\" şifərsini daxil edəcəksiniz. \"Ali istifadəçi\" "
-"sistemin\n"
-"idarəçisidir və yalnız o yeniləmələri, istifadəçiləri əlavə edib/silməyi\n"
-"sistemin bütün qurğularını dəyişdirə bilər. Qısaca, \"ali istifadəçi\" hər\n"
-"şeyi edə bilər! Buna görə də tapılması çətin olan bir şifrə seçməlisiniz.\n"
-"DrakX seçdiyiniz şifrənin asan olub olmadığını sizə bildirəcək. Görüdüyünüz\n"
-"kimi, şifrə müəyyən etməkdə məcbur deyilsiniz, yalnız bunu sizə şiddətlə\n"
-"məsləhət etmirik. GNU/Linuks da diqər əməliyyat sistemləri kimi "
-"istifadəçinin\n"
-"xətasından çox tə'sir ala bilər. \"Ali istifadəçi\" bütün həddləri keçərək\n"
-"bütün bölmələrdəki bütün mə'lumatları silə bilər. Ona görə də ali "
-"istifadəçi\n"
-"olma imkanını olduqca çətinləşdirməlisiniz.\n"
-"\n"
-"Şifrəniz ədəd və hərflərin qarışığı olmalıdır və 8 hərfdən qısa "
-"olmamalıdır.\n"
-"Şifrəni heçvaxt başqa bir yerə qeyd etməyin.\n"
-"\n"
-"Yalnız şifrəni çox uzun ya da çətin də seçməyin ona görə ki onu əzbərləmək\n"
-"məcburiyyətindəsiniz!\n"
-"\n"
-"Şifrənizi yazarkən ekranda göstərilməyəcək. Xəta riskini azaltmaq üçün\n"
-"şifrəni iki dəfə daxil edəcəksiniz. Burada diqqətli olun və eyni xətanı\n"
-"iki dəfə etməyin.\n"
-"\n"
-"ÆgÉ™r bu kompüterÉ™ yetiÅŸmÉ™nin sÉ™lahiyyÉ™t vericisi tÉ™rÉ™findÉ™n idarÉ™ "
-"edilməsini\n"
-"istəyirsinizsə, \"%s\" düyməsinə basın.\n"
-"\n"
-"ÆgÉ™r ÅŸÉ™bÉ™kÉ™niz LDAP, NIS, ya da PDC Windows Domain authentication\n"
-"xidmÉ™tlÉ™rindÉ™n birisini iÅŸlÉ™dirsÉ™, \"%s\" üçün uyÄŸun gÉ™lÉ™nini seçin. ÆgÉ™r\n"
-"hansını işlədəcəyinizi bilmirsinizsə, şəbəkə idarəçinizdən soruşun.\n"
-"\n"
-"ÆgÉ™r ÅŸifrÉ™lÉ™ri yadda saxlamaqda çətinlik çəkirsinizsÉ™, internetÉ™ heç\n"
-"vaxt bağlanmayacaqsanızsa ya da kompüterini işlədən hamıya e'tibar\n"
-"edirsinizsə \"%s\" seçimini seçə bilərsiniz."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
-msgstr "Ad həlledilirliyini gizlətmə qoruması"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/draksound_.c:54
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."
-msgstr ""
-"Bu nöqtədə, DrakX sizə sisteminiz üçün təhlükəsizlik səvissəyini seçmə\n"
-"imkanını təqdim edəcək. Qayda olaraq, əgər kompüter vacib mə'lumat daxil\n"
-"edir ya da internetə birbaşa açıq sistem olacaqsa təhlükəsizlik səviyyəsi\n"
-"yüksək seçilməlidir. Bunun gətirdiyi əlverişsiz şərait isə sistemin "
-"istifadəsinin\n"
-"daha çətin olmasıdır.\n"
"\n"
-"ÆgÉ™r nÉ™ seçəcÉ™yinizi bilmirsinizsÉ™, seçili qurÄŸuları olduÄŸu kimi saxlayın."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "Disketdən yüklə"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Aşağıdakı çapçı avtomatik olaraq aşkar edildi."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Uses command %s"
-msgstr "%s əmrini işlət"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
-msgstr "Açılış Disketi"
+#: ../../standalone/draksplash_.c:21
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "Norveç dili"
+#: ../../standalone/draksplash_.c:67
+#, fuzzy
+msgid "first step creation"
+msgstr "açılış disketi yaradılması"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for new scanners ..."
-msgstr "Yeni darayıcılar axtarılır..."
+#: ../../standalone/draksplash_.c:70
+#, fuzzy
+msgid "final resolution"
+msgstr "Rezolyusiya"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Apache World Wide Web Vericisi"
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+#, fuzzy
+msgid "choose image file"
+msgstr "Monitorunuzu seçin"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "cpu addımlaması"
+#: ../../standalone/draksplash_.c:72
+#, fuzzy
+msgid "Theme name"
+msgstr "Paylaşdırma adı"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "select path to restore (instead of /)"
-msgstr "geri yüklənəcək cığırı seçin (/ yerinə)"
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
+#, fuzzy
msgid "Configure bootsplash picture"
-msgstr "Açılış rəsmini quraşdır"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr "Gürcüstan"
+msgstr "Xidmətləri qur"
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "Çin"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr " (Bütün çapçılarınızın açıq və fəal olduğundan əmin olun).\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "Qurulu çapçılar haqqında mə'lumat alınır..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
-msgstr " İndi Sil"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "verici"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "%s sürücüsünə FAT şəkilləndirilmiş bir disket taxın"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "bəli, işlədicinin arifmetik ko-işlədicisi olduğu mə'nasına gəlir"
-
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Xahiş edirik, gözləyin... Qurğular tətbiq edilir"
-
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "GRUB emeliyyat sistemi secicisine xos geldiniz!"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
-msgstr "SCSI idarəçiləri"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr " \"%s\" LPD vericisi üstündə, \"%s\" çapçısı"
-
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Displey idarəçisi seçilir"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Zeroconf Qovşaq adı"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
-msgstr "Xüsusi setup/crontab girişi:"
-
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "CUPS çap sistemini quraşdır"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "Ekvador"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Add an item"
-msgstr "Üzv əlavə et"
+#: ../../standalone/draksplash_.c:90
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Bu sistemdəki çapçılar diqər sistemlər üçün də açıqdır"
+#: ../../standalone/draksplash_.c:91
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "China (Hong Kong)"
-msgstr "Honq Konq"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
+msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Lazım olan `%s' görüntüsü tapıla bilmir."
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr "Səs kartı tapılmadı. Qurulumdan sonra \"harddrake\"ni işə salın"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:95
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
-"Hökmsüz qapı daxil edildi: %s.\n"
-"Düzgün şəkil \"port/tcp\" ya da \"port/udp\"dır, \n"
-"burada qapı 1 və 65535 arası ədəddir."
-#: ../../any.pm:1
-#, c-format
-msgid "Shell"
-msgstr "Qabıq"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome vÉ™ Prinsip"
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
+msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
+msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
-msgstr "%s istifadəçi adı ilə giriş edilə bilmir (şifrəniz səhvdir?)"
+#: ../../standalone/draksplash_.c:113
+#, fuzzy
+msgid "Preview"
+msgstr "avadanlıq"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "Azərbaycanca (latın)"
+#: ../../standalone/draksplash_.c:115
+#, fuzzy
+msgid "Save theme"
+msgstr "Sistemi qur"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package not installed"
-msgstr "Paket qurulmayıb"
+#: ../../standalone/draksplash_.c:116
+#, fuzzy
+msgid "Choose color"
+msgstr "Monitorunuzu seçin"
-#: ../../lang.pm:1
-#, c-format
-msgid "American Samoa"
-msgstr "Amerikan Samoa"
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
+msgstr ""
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Become a MandrakeExpert"
-msgstr "MandrakeExpert olun"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, c-format
-msgid "Protocol"
-msgstr "Protokol"
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Siseminizdəki yazı növlərini köçürdün"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
-msgstr "Harddrake yardımı"
+#: ../../standalone/draksplash_.c:428
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Çap Edici Bağlantısı"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
-msgstr "Boqomiplər"
+#: ../../standalone/draksplash_.c:449
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Çap Edici avadanlığı URI"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Mandrake Terminal Server Quraşdırılması"
+#: ../../standalone/draksplash_.c:458
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Avadanlıqlar tanınır..."
-#: ../../standalone/drakbackup:1
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:46
msgid ""
+"XawTV isn't installed!\n"
"\n"
-" DrakBackup Report Details\n"
"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
"\n"
-msgstr ""
"\n"
-" DrakBackup Raportu Təfərruatları\n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
-msgstr "Bütün ehtiyat nüsxələri geri yüklə"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
-msgstr " %s paralel qapısında"
+#: ../../standalone/drakxtv_.c:63
+#, fuzzy
+msgid "Canada (cable)"
+msgstr "Fransızca (Kanada/Quebec)"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
msgstr ""
-"Şifrənin minimal uzunluğunu, minimal rəqəm və minimal böyük hərf miqdarını "
-"seçin."
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr "əgər bəli seçilidirsə, açıq qapıları yoxla."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Mediyanı silmək bir az vaxt ala bilər."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "Bu paketi seçə bilməzsiniz/sistemdən çıxarda bilməzsınız"
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
+msgstr ""
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "Xəbərdarlıq"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
msgstr ""
-"\n"
-"- BaÅŸqa Fayllar:\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name"
-msgstr "Uzaq qovşaq adı"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "East Europe"
+msgstr "Avropa"
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr "X proqramlarına yetişmə icazəsi"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Fransızca"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "Windows bölməsin böyüklüyü hesablanır"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "Ireland"
+msgstr "İzlandiya dili"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr "/_YenilÉ™"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "West Europe"
+msgstr "Avropa"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Italy"
-msgstr "İtaliya"
+#: ../../standalone/drakxtv_.c:66
+#, fuzzy
+msgid "Australia"
+msgstr "serial"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
-msgstr "Kayman Adaları"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
+msgstr ""
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "%s ayrılırkən xəta oldu: %s"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "Çapçı adı"
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
-msgstr "passivləşdir"
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do it!"
-msgstr "Bunu et!"
+#: ../../standalone/drakxtv_.c:102
+msgid ""
+"Please,\n"
+"type in your tv norm and country"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
-msgstr "%s cavab vermir"
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select model manually"
-msgstr "Modeli əllə seç"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Format"
-msgstr "Şəkilləndir"
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
+msgstr ""
-#: ../../network/adsl.pm:1
-#, 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'"
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
msgstr ""
-"ADSL ilə internetə bağlanmanın ən yaxşı yolu pppoe'dur.\n"
-"Bəzi bağlantılar pptp istifadə edir, çox azı isə dhcp işlədir.\n"
-"Bilmirsiniz isə 'pppop istifadə et'i seçin"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
-msgstr "Müxtəlif"
+#: ../../standalone/drakxtv_.c:120
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Paketlər qurulurkən bir xəta oldu:"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
-msgstr "Zip"
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
-msgstr "Sol Alt düyməsi"
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Load setting"
-msgstr "Qurğunu yüklə"
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:148
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"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-"\n"
+"You can visit our hardware database at:\n"
"\n"
-"Printerdrake %s çapçınızın modelini aşkar edə bilmədi. Xahiş edirik, "
-"siyahıdan düzgün modeli seçin."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Seçili olan çapçını əsas olaraq tə'yin et"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"\n"
-"Transfer etmək istədiyiniz çapçıları işarələyin və \n"
-"\"Transfer Et\" düyməsinə basın."
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
-msgstr "Albanca"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "Litva"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "Yığcam"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Aşkar edilən model: %s %s"
-
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
-msgstr "MandrakeSoft sizin üçün ən yaxşı tə'minatları seçib"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Local files"
-msgstr "Yerli fayllar"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "bəlkə"
+#: ../../standalone/harddrake2_.c:17
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
-msgstr "Panama"
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Can't open %s!"
-msgstr "%s açıla bilmir!"
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:21
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?"
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-"Görünən odur ki qrafika kartınızın TV-OUT konnektoru var.\n"
-"O, frame-buffer işlədilərək işləməsi üçün quraşdırıla bilər.\n"
-"\n"
-"Bunun üçün qrafika kartınızı kompüterinizi başlatmadan əvvəl Televizorunuz "
-"ilə bağlamalısınız.\n"
-"Daha sonra açılış yükləyicisində \"TVout\" girişini seçin\n"
-"\n"
-"Bu xüsusiyyətə maliksiniz?"
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "Monitor"
+#: ../../standalone/harddrake2_.c:22
+#, fuzzy
+msgid "Channel"
+msgstr "Ləğv et"
-#: ../../printer/printerdrake.pm:1
-#, 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"
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
msgstr ""
-"Şifrəli Windows hesabı üçün çap sistemini quraşdırmaq üzrəsiniz. Samba "
-"alıcısındakı bir xətaya görə Samba çap vəzifəsini Windows vericisinə "
-"daşırkən şifrəni xam mətn formatında ötürür. Ona görə də bu sistemdəkihər "
-"istifadəçi \"ps auxwww\" kimi əmrlə şifrənin ekranda göstərilməsini zorlaya "
-"bilər.\n"
-"\n"
-"Sizə bu alternativləri işlətməyi məsləhət edirik: (bütün hallarda "
-"Windowsvericinizə yalnız yerli şəbəkənizdəki sistemlərin yetişmə səlahiyyəti "
-"olmasındanəmin olun, misal üçün atəş divarı mə'nasında):\n"
-"\n"
-"Windows vericinizdə şifrəsi olmayan hesabı işlədin, misal üçün \"GUEST\" ya "
-"daçap üçün xüsusuiylə yaradılmış başqa bir hesab. Şəxsi və administrator "
-"hesablarının şifrəsini qətiyyən silməyin.\n"
-"\n"
-"Windows vericinizi, çapçını LPD protokolu altında mövcud etməsi üçün "
-"quraşdırın.Daha sonra bu sistemdə, Printerdrake'də bağlantı növü \"%s\" olan "
-"çap sisteminiquraşdırın.\n"
-"\n"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 min rəng (16 bits)"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/harddrake2_.c:23
msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
msgstr ""
-"\n"
-"- Sabit diskdəki cığıra qeyd et: %s\n"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Siseminizdəki yazı növlərini silin"
+#: ../../standalone/harddrake2_.c:26
+#, fuzzy
+msgid "Bus identification"
+msgstr "Tanıtma"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../standalone/harddrake2_.c:27
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."
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-"Diqqət, (%s) şəbəkə avadanlığı onsuzda quraşdırılıb.\n"
-"\n"
-"Onun avtomatik yenidən quraşdırılmasını istəyirsiniz?\n"
-"\n"
-"Bunu əllə də edə bilərsiniz, yalnız nə etdiyinizi bilməlisiniz."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "X ilə Açılış"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
-msgstr " adsl"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "%d səviyyə RAID üçün çatmayan sayda disk bölməsi\n"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "sürücü tərəfindən dəstəklənən disket şəkli"
+#: ../../standalone/harddrake2_.c:30
+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 ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "Firmware köçürülməsi bacarılmadı, %s faylı tapılmadı"
+#: ../../standalone/harddrake2_.c:33
+#, fuzzy
+msgid "Cache size"
+msgstr "parça böyüklüyü"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: true"
-msgstr "yerli qurğu: düz"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
msgstr ""
-"Aşağıdakı çapçılar quraşdırılıb. Qurğularını dəyişdirmək üçün, mə'lumatı "
-"görmək üçün ya da onu əsas çapçı seçmək üçün çapçıya cüt tıqlayın."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connected"
-msgstr "Bağlandı"
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
-msgstr "Makedoniya dili"
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "Mali"
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
-msgstr "Körpülər və sistem idarəçiləri"
+#: ../../standalone/harddrake2_.c:36
+#, fuzzy
+msgid "Cpuid level"
+msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "/Fayl/_Qeyd Et"
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "No details"
-msgstr "Təfsilatsız"
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
+msgstr ""
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "çox ə'la"
+#: ../../standalone/harddrake2_.c:37
+msgid ""
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Preview"
-msgstr "Nümayiş"
+#: ../../standalone/harddrake2_.c:38
+msgid "This field describes the device"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Remote Control"
-msgstr "Uzaqdan İdarə"
+#: ../../standalone/harddrake2_.c:39
+#, fuzzy
+msgid "Old device file"
+msgstr "Fayl seç"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select media for backup..."
-msgstr "Ehtiyat nüsxəsi alınacaq mediyanı seçin..."
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
-msgstr "Səhv epoçt"
+#: ../../standalone/harddrake2_.c:41
+#, fuzzy
+msgid "New devfs device"
+msgstr "Keçit avadanlığı"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 verici: %s\n"
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "Zəyif Alıcılara İcazə Ver"
+#: ../../standalone/harddrake2_.c:43
+#, fuzzy
+msgid "Module"
+msgstr "Siçan"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Gürcü dili (\"Rus\" sırası)"
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_Seçimlər"
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Your printer model"
-msgstr "Çapçınızın modeli"
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
+msgstr ""
-#: ../../any.pm:1
-#, 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)."
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
msgstr ""
-"\n"
-"\n"
-"(XÆBÆRDARLIQ! Kök bölmÉ™niz üçün XFS iÅŸlÉ™dirsiniz,\n"
-"1.44 Mb'lıq disket üstündə açılış disketi yarada bilməyəcəksiniz,\n"
-"ona görə ki XFS daha böyük disk həcmi stəyir)."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/harddrake2_.c:46
msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-"\n"
-"- Ehtiyatlamadan sonra sabit diskdəki tar fayllarını sil.\n"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
msgstr ""
-"Heç bir CD ya da DVD görünüşü tapıla bilmədi, xahiş edirik, qurulum "
-"proqramını və rpm fayllarını köçürün."
-#: ../advertising/04-configuration.pl:1
-#, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "Mandrakenin çox məqsədli quraşdırma vasitəsi"
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
+msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Save"
-msgstr "Qeyd Et"
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
-msgstr "%s dəstəklənmir"
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr "USB avadanlığınız üçün sürücüləri yükləyin."
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Disk"
-msgstr "Disk"
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
+msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Çapçı avadanlığı URI'sini girin"
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
+msgstr ""
-#: ../advertising/01-thanks.pl:1
-#, c-format
+#: ../../standalone/harddrake2_.c:53
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."
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-"MandrakeSoft'un müvəffəqiyyəti Sərbəst Tə'minat prinsipinə bağlıdır. Yeni "
-"əməliyyat sisteminiz ümumdünya Linuks Cəmiyyətinin birgə işinin nəticəsidir."
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "İsrail"
+#: ../../standalone/harddrake2_.c:55
+#, fuzzy
+msgid "Floppy format"
+msgstr "Şəkilləndir"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "Fransız Gvineyası"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "default:LTR"
+#: ../../standalone/harddrake2_.c:56
+#, fuzzy
+msgid "Level"
+msgstr "səviyyə"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
-msgstr "Æmr sÉ™tiri daxil edilmÉ™lidir!"
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
-msgstr "İstifadəçiləri əllə seç"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Çapçı qurğularını transfer et"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Yuxarıdakı çapçılar ilə çap etməyi fəallaşdırmaq istəyirsiniz?\n"
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+#, fuzzy
+msgid "Model"
+msgstr "Siçan"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of suid root files"
-msgstr "suid ali istifadəçi fayllarının əlavələrini/silinənlərini yoxla"
+#: ../../standalone/harddrake2_.c:58
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kart mem (DMA)"
-#: ../../any.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
msgstr ""
-"W2K PDC üçün bunun işləməsi üçün, idarəçi C:\\>net localgroup \"Pre-Windows "
-"2000 Compatible Access\" everyone /əmrini verib vericini yenidən "
-"başlatmalıdır.\n"
-"Onun, eyni zamanda sistemi Windows(TM) domeninə calamaq üçün Domen "
-"İdarəçisinin istifadəçi adı/şifrəsinə ehtiyacı olacaq.\n"
-"ÆgÉ™r ÅŸÉ™bÉ™kÉ™ hÉ™lÉ™ quraÅŸdırılmayıbsa DrakX ÅŸÉ™bÉ™kÉ™ni quraÅŸdırdıqdan sonra "
-"domenə calama üçün cəhd edəcək.\n"
-"ÆgÉ™r bu qurÄŸu ya da domen sÉ™lahiyyÉ™tlÉ™ndirilmÉ™si iÅŸlÉ™mÉ™zsÉ™, sistemin yenidÉ™n "
-"başladılmasından sonra Windows(tm) Domeninizi və İdarəçi istifadəçi adı/"
-"ÅŸifrÉ™sini iÅŸlÉ™dÉ™rÉ™k'smbpasswd -j DOMEN -U İSTİFADÆÃ‡Ä°%%ŞİFRÆ' É™mrini icra "
-"edin.\n"
-"'wbinfo -t' əmri səlahiyyət sirrlərinin düzgün olub olmamasını yoxlayacaq."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Qapı %s)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Ehtiyat nüsxəsi almaq üçün şəbəkə bağlantısını işlət"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Kernel version"
-msgstr "Çəyirdək buraxılışı"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Model name"
+msgstr "Modul adı"
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:60
+msgid "Official vendor name of the cpu"
msgstr ""
-"İndi sisteminizə qurmaq istədiyiniz proqramları müəyyən etmə vaxtıdır.\n"
-"Mandrake Linuks daxilində minlərcə proqram mövcuddur və idarələrinin\n"
-"asan olması üçün onlar bənzər paketlər qruplarına ayrılıblar.\n"
-"\n"
-"Paketlər sisteminizin xüsusui istifadə sahəsinə görə qruplanıb. Mandrake\n"
-"Linuksda dörd əvvəldən müəyyən edilmiş qurulum növü mövcuddur.\n"
-"Yalnız siz bu qrupları yenə də qarışdıra bilərsiniz və istədiyiniz əlavə.\n"
-"proqramları seçə bilərsiniz. Misal üçün ''İş Stansiyası'' qurulumu\n"
-"``İnkişaf'' qurulumundakı proqramları daxil edə bilər.\n"
-"\n"
-" * \"%s\": əgər sisteminiz iş stansiyası olaraq istifadə ediləcəksə, bu\n"
-"qrupda yer alan bir ya da daha çox proqramı seçin.\n"
-"\n"
-" * \"%s\": əgər sisteminizi proqramlaşdırma və inkişaf üçün işlədəcəksəniz,\n"
-"bu qrupdakı proqramları seçə bilərsiniz.\n"
-"\n"
-" * \"%s\": əgər sisteminiz verici olacaqsa, sisteminizə hansı xidmətləri\n"
-"qurmaq istədiyinizi buradan seçin.\n"
-"\n"
-" * \"%s\": qrafiki istifadəçi mühidini burada seçəcÉ™ksiniz. ÆgÉ™r "
-"sisteminizdÉ™\n"
-"qrafiki mühit işlətmək istəyirsinizsə ən az birisi seçilməlidir.\n"
-"\n"
-"Siçanın oxu qrup adının üstünə gələndə o qrup haqqında qısa izahat\n"
-"göstÉ™rilÉ™cÉ™k. ÆgÉ™r sistemi qurarkÉ™n bu qruplardan heç birini seçmÉ™sÉ™niz\n"
-"minimal qurulum üçün fərqli seçimləri təqdim edən bir pəncərə\n"
-"göstəriləcək:\n"
-"\n"
-" * \"%s\": minimal ədəddə paket qur, işləyən qrafiki ara üzə malik\n"
-"olma mümkündür.\n"
-"\n"
-" * \"%s\": sistem bazası və əsas tə'minatlar və sənədləri qurulacaq.\n"
-"Bu qurulum növü verici quraşdırmaq üçün uyğundur.\n"
-"\n"
-" * \"%s\": işləyən Linuks sistemi üçün lazım olan ən minimal paketlər\n"
-"qurulacaq. Bu qurulum ilə yalnız əmr sətirinə malik olacaqsınız.\n"
-"Qurulumun ümumi böyüklüyü təqribən 65 meqabayt olacaq.\n"
-"\n"
-"Təklif edilən paketləri tanıyırsınızsa ya da qurulan hər paket üstündə\n"
-"tam idarə sahibi olmaq istəyirsinizsə\"%s\" qutusunu işarələyə bilərsiniz\n"
-"\n"
-"ÆgÉ™r qurulumu \"%s\" modunda baÅŸlatmışsınızsa, yeni paketlÉ™rin\n"
-"qurulmasının qabağını almaq üçün bütün qrupların seçimini silə\n"
-"bilərsiniz. Bu əsasən sistem tə'mir edilirkən ya da yenilənirkən\n"
-"sərfəlidir."
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "İstifadəçini qəbul et"
+#: ../../standalone/harddrake2_.c:61
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 düyməli"
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
-msgstr "Verici"
+#: ../../standalone/harddrake2_.c:62
+#, fuzzy
+msgid "Name"
+msgstr "Ad: "
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
-msgstr "Sol Shift düyməsi"
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "network printer port"
+msgstr "Şəbəkə Çap Edicisi (soket) "
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " local network"
-msgstr " yerli şəbəkə"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
+msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "Xətalı seçim, yenidən sınayın\n"
+#: ../../standalone/harddrake2_.c:64
+msgid "the number of the processor"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
-msgstr "Sysloq 12 konsola raport göndərir"
+#: ../../standalone/harddrake2_.c:65
+#, fuzzy
+msgid "Model stepping"
+msgstr "Şəkilləndirilir"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search new servers"
-msgstr "Yeni vericiləri axtar"
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
-msgstr "Hird Adası və Mkdonald Adaları"
+#: ../../standalone/harddrake2_.c:66
+#, fuzzy
+msgid "The type of bus on which the mouse is connected"
+msgstr "Siçanınızın bağlı olduğu serial Qapıyı seçin."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
-msgstr "Alternativ sürücü yoxdur"
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "Mütəxəssis moduna keç"
+#: ../../standalone/harddrake2_.c:68
+msgid "the vendor name of the processor"
+msgstr ""
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
-msgstr "(bu sistem üstündə)"
+#: ../../standalone/harddrake2_.c:82
+#, fuzzy
+msgid "/_Quit"
+msgstr "Çıx"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Şəbəkə keçişi ünvanı 1.2.3.4 şəklində olmalıdır"
+#: ../../standalone/harddrake2_.c:83
+#, fuzzy
+msgid "/Autodetect _printers"
+msgstr "Avtomatik təsbit işlət"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
-msgstr ""
-"\"%s\" əsaslı winmodem aşkar edildi, lazım olan tə'minatı qurmaq "
-"istəyirsiniz?"
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
+msgstr "/_Seçənəklər"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Qurulu olan paketlər yoxlanır..."
+#: ../../standalone/harddrake2_.c:85
+#, fuzzy
+msgid "/Autodetect _modems"
+msgstr "Avtomatik təsbit işlət"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Diferensial Ehtiyatları İşlət"
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
+msgstr "/_Kömək"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Driver"
-msgstr "Sürücü"
+#: ../../standalone/harddrake2_.c:89
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Kömək"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
msgstr ""
-"Linuxconf sistem qurğularınızı idarə edən proqramları,\n"
-"müxtəlif vəzifələri açılışda icra edər."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVD-R device"
-msgstr "DVD-R avadanlığı"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Uzaq lpd vericisi üstündəki çapçı"
-
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/harddrake2_.c:93
msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
+"Description of the fields:\n"
"\n"
-"-You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
msgstr ""
-"Yazı növlərini normal yolla qura bilərsiniz. Çox nadir də olsa, saxta və "
-"qondarma yazı növləri\n"
-"X Vericinizi dondura bilər. Bu vəziyyətdə, Ctrl+Alt+Backspace düymələrinə "
-"eyni anda basın."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:96
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."
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
msgstr ""
-"Yaboot NewWorld Macintosh avadalığı üçün açılış idarəçisidir. Ayrıca\n"
-"GNU/Linuks, MacOS, və ya MacOSX sistemlərini kompüterinizdə varsa, \n"
-"açacaqdır.\n"
-"Normalda, bu əməliyyat sistemləri düzgün tapılıb qurula bilərlər\n"
-"ÆgÉ™r belÉ™ olmazsa, bu ekrandan É™llÉ™ lazımi qurÄŸuları girÉ™ bilÉ™rsiniz.\n"
-"Düzgün parametrləri girib girmədiyinizi yaxşıca yoxlayın.\n"
-"\n"
-"Yaboot ana seçimləri:\n"
-"\n"
-" * Init İsmarışı: açılışdan əvvəl göstərilən sadə bir ismarış.\n"
-"\n"
-"\n"
-" * Açılış Avadanlığı: GNU/Linuksu açmaq üçün lazım olan mə'lumatı hara\n"
-"yerləşdirmək istədiyinizi bildirir. Ümumiyyətlə bu mə'lumatı daha əvvəl \n"
-"\"bootstrap\" quraşdırılması sırasında bildirmiş olacaqsınız.\n"
-"\n"
-" * Açıq Firmware Gecikməsi: LILO'dan fərqli olaraq, yaboot'da iki dənə "
-"gecikmə var. Birinci gecikmə saniyələrlə ölçülür və bu arada siz\n"
-"CD, OF açılışı, MacOS və ya Linuks arasında seçki aparmalısınız.\n"
-"\n"
-" * Çəyirdək Açılış Vaxt Dolması: Bu vaxt dolması LILO açılış gecikməsinə\n"
-"uyğun gəlir. Linuksu seçdikdən sonra ana çəyirdək parametri olaraq bu\n"
-"gecikmə 0.1 saniyə olaraq qurulu olacaqdır.\n"
-"\n"
-" * CD Açılışı Fəallaşdırılsın?: Bu seçimlə CD'dən açılışı timsal edən "
-"``C'' \n"
-"hərfini ilk açılışda seçə biləcəksiniz.\n"
-"\n"
-" * OF Açılışı Fəallaşdırılsın?: Bu seçimlə OF'dən (Open Firmware) açılışı\n"
-"timsal edən 'N' hərfini ilk açılışda seçə biləcəksiniz.\n"
-"\n"
-" * Ana ÆS: OF gecikmÉ™si müddÉ™ti dolduÄŸu vaxt hansı É™mÉ™liyyat sisteminin \n"
-"açılacağını göstərir."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
-msgstr "Çərşənbə"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "Almanya"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
-msgstr "Avstriya"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "Siçansız"
+#: ../../standalone/harddrake2_.c:96
+#, fuzzy
+msgid "Select a device !"
+msgstr "Ekran kartınızı seçin"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "CD/DVD mediyanızın böyüklüyünü (MB) seçin"
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check permissions of files in the users' home"
-msgstr "İstifadəçilərin ev cərgələrindəki faylların səlahiyyətlərini yoxla"
+#: ../../standalone/harddrake2_.c:102
+#, fuzzy
+msgid "/_About..."
+msgstr "/Kömək/_Haqqında..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
msgstr ""
-"Qurulumdan sonra səs kartınızı qurğulamaq üçün \"sndconfig\" əmrini icra edin"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "Ağacı Bağla"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Avtomatik Qurulum Quraşdırıcısı"
+#: ../../standalone/harddrake2_.c:105
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "Şəbəkənin quraşdırılması"
+#: ../../standalone/harddrake2_.c:106
+#, fuzzy
+msgid "Author:"
+msgstr "Avtomatik yoxla"
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "Sistem yükləyicisini hara qurmaq istəyirsiniz?"
+#: ../../standalone/harddrake2_.c:113
+#, fuzzy
+msgid "Detection in progress"
+msgstr "%s qapısında tapıldı"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Seçdiyiniz dil, sənədlər , qurulum və ümumi sistemə tə'sir edəcəkdir.\n"
-"İlk olaraq qaldığınız yerin coğrafi bölgəsini seçin, daha sonra\n"
-"istifadə etdiyiniz dili seçin.\n"
-"\"%s\" düyməsi əlavə dilləri seçmə imkanı verəcəkdir. Bu imkan\n"
-"fərqli bir dili də eyni zamanda istifadə etmə imkanı verəcək. Bu qurğunu\n"
-"\"%s\" ətraflı menyusundan həyata keçirə bilərsiniz.\n"
-"Qeyd: ÆlavÉ™ dil seçmÉ™kdÉ™ bir dil ilÉ™ mÉ™hdud deyilsiniz. \"%s\" "
-"qutusundanistədiyiniz qədər dil seçə bilərsiniz. \n"
-"Bir dil seçimi bərabərində tərcümələr, yazı növləri və\n"
-"imla yoxlayıcıları kimi bə'zi üstünlükləri gətirəcəkdir.\n"
-"Ayrıca \"%s\" qutusundan sistemi UTF-8 (yunikod) kodlamasını işlətmək\n"
-"üçün zorlaya bilərsiniz.\n"
-"Qurduğunuz dillər arasında keçiş etmək üçün ali istifadəçi səlahiyyətləri\n"
-"ilə konsolda \"/usr/sbin/localedrake\" əmrini verə bilər ya da menyunuzdan\n"
-" \"localedrake\"'i seçərək dəyişdirə bilərsiniz. Bu, bütün sisteminya da\n"
-"yalnız bir istifadəçinin bütün dil qurğularını dəyişdirmə imkanı verir.\n"
-"ÆgÉ™r bunları sıravi istifadəçi olaraq hÉ™yata keçirsÉ™niz yalnız öz xüsusi\n"
-"dil qurğularınızı dəyişdirəcəksiniz."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr "%s Mandrake Linuksun bu buraxılışı tərəfindən dəstəklənmir."
+#: ../../standalone/harddrake2_.c:119
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Sabit disk seçkisi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "tape"
-msgstr "kaset"
+#: ../../standalone/harddrake2_.c:126
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Avadanlıq mə'lumatına bax"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr "DHCP alıcısı"
+#: ../../standalone/harddrake2_.c:129
+#, fuzzy
+msgid "Information"
+msgstr "Mə'lumatı göstər"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Ekran idarəçilərində (kdm və gdm) istifadəçiləri göstər"
+#: ../../standalone/harddrake2_.c:131
+#, fuzzy
+msgid "Configure module"
+msgstr "Siçan qurğuları"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech mouse (serial ya da köhnə C7 növü)"
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
+msgstr ""
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "%s faylından geri yükləmə xətası: %s"
+#: ../../standalone/harddrake2_.c:143
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "CUPS sürücü datası oxunur..."
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:159
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"
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-"%s avadanlığının bölmə cədvəli oxuna bilmir, dəyəsən biraz xarab olub.\n"
-"Xarab olmuş bolmələr düzəldilməyə cəhd ediləcək, ancaq bütün mə'lumatlar\n"
-"itəcək. Başqa bir yol isə DrakX'ə bölmə cədvəllərini yoxlama icazəsi "
-"verməməkdir.\n"
-"(xəta %s)\n"
-"\n"
-"Bütün bölmələri itirmək işinizə gəlir?\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Find Package"
-msgstr "Paketi Tap"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Həqiqətən də bu sistemdə çap sistemini quraşdırmaq istəyirsiniz?\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "New devfs device"
-msgstr "Yeni devfs avadanlığı"
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
-msgstr "XÆTA: %s törÉ™dilÉ™ bilmir."
+#: ../../standalone/harddrake2_.c:231
+#, fuzzy
+msgid "secondary"
+msgstr "%d saniyə sonra çıxılacaq"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Boot Style Configuration"
-msgstr "Açılış Tərzi Quraşdırılması"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect modems"
+msgstr "Avtomatik təsbit işlət"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Avtomatik zaman sinxronlaşdırılması"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect printers"
+msgstr "Avtomatik təsbit işlət"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "%s mövqeyində ehtiyat faylları tapıla bilmədi."
+#: ../../standalone/harddrake2_.c:261
+#, fuzzy
+msgid "/Options"
+msgstr "/_Seçənəklər"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "ErmenicÉ™ (fonetik)"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Card model:"
-msgstr "Kart modeli:"
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr "Konsolda BackSpace'in Silmə funksyasını görməyini istəyirmisiniz?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
-msgstr "Zəyif Alıcı"
+#: ../../standalone/livedrake_.c:18
+msgid "Change Cd-Rom"
+msgstr "Cd-Romu dəyişdir"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
-msgstr "Mandrake Linuksu seçdiyiniz üçün sağolun!"
+#: ../../standalone/livedrake_.c:19
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"Qurma Cd-Romunu sürücünüzə taxın və OLDUya basın.\n"
+"ÆgÉ™r Cd-Rom É™linizdÉ™ yox isÉ™, bu Cd-Rom-dan qurmamaq üçün RÆDD ETÉ™ basın."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Start Server"
-msgstr "Vericini BaÅŸlat"
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Təkmilləşdirmə işi başlaya bilmir !!!\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr "Türkmənistan"
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "All remote machines"
-msgstr "Bütün uzaq sistemlər"
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
+msgstr "logdrake"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Install themes"
-msgstr "Örtükləri qur"
+#: ../../standalone/logdrake_.c:68
+#, fuzzy
+msgid "Show only for the selected day"
+msgstr "Təkcə bu gününkünü göstər"
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
-msgstr "İspanca"
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
+msgstr "/Fayl/_Təze"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "Qurulum hazırlanır"
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
+msgstr "<control>N"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Seçili qovşaq/şəbəkəni dəyişdir"
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
+msgstr "/Fayl/_Aç"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add User -->"
-msgstr "İstifadəçi əlavə et -->"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
+msgstr "<control>O"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "Nauru"
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr "/Fayl/_Qeyd Et"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type fonts installation"
-msgstr "True Type yazı növlərinin qurulumu"
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
+msgstr "<control>S"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Yerli şəbəkəyə birbaşa bağlı olan çapçıları avtomatik aşkar et"
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
+msgstr "/Fayl/_Fərqli Qeyd Et"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN configuration"
-msgstr "Yerli Şəbəkə (lAN) quraşdırılması"
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr "/Fayl/-"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "hard disk model"
-msgstr "sabit disk modeli"
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
+msgstr "/Seçənəklər/Sınaq"
-# needs editing (Metin)
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Maintain /etc/exports:\n"
-" \tClusternfs allows export of the root filesystem to diskless "
-"clients. drakTermServ\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
+msgstr "/Kömək/_Haqqında..."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "%s bağlama nöqtəsi üçün LVM Məntiqi Həcmini istifadə edə bilməzsiniz"
+#: ../../standalone/logdrake_.c:145
+#, fuzzy
+msgid "User"
+msgstr "İstifadəçi adı"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "Windows Yazı Növlərini Al"
+#: ../../standalone/logdrake_.c:146
+#, fuzzy
+msgid "Messages"
+msgstr "ismarıclar"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Siçan Sistemləri"
+#: ../../standalone/logdrake_.c:147
+#, fuzzy
+msgid "Syslog"
+msgstr "sistem qeydi"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "Farsca"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
-msgstr "Xırvatıstan"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "Şəbəkə Keçidi:"
+#: ../../standalone/logdrake_.c:151
+msgid "search"
+msgstr "axtar"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add server"
-msgstr "Verici əlavə et"
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
+msgstr "Qeydlərinizə baxan vasitə"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name"
-msgstr "Uzaq çapçı adı"
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
+msgstr "QurÄŸular"
-#: ../advertising/10-security.pl:1
-#, 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."
-msgstr ""
-"MandrakeSoft ən e'tibarlı Linuks yaratmaq üçün ekskluziv vasitələri tərtib "
-"edib: Draksec, sistem təhlükəsizliyi idarə vasitəsi və güclü atəş divarının "
-"birgə işi ilə, xaricdən müdaxilə və xaklanma təhlükəsi olduqca azalır."
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
+msgstr "oxşayır"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "Avadanlıq: "
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
+msgstr "amma oxşamır"
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
+msgstr "Fayl seç"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "Lisenziya razılığı"
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
+msgstr "Təqvim"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "System Options"
-msgstr "Sistem Seçimləri"
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
+msgstr "Fayl məzmunu"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Please choose the desired security level"
-msgstr "Xahiş edirik, uyğun təhlükəsizlik səviyyəsini seçin"
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+msgid "Mail alert"
+msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/logdrake_.c:245
#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "Bu qovşaq onsuzda siyahıdadır, yenidən əlavə edilə bilməz.\n"
+msgid "please wait, parsing file: %s"
+msgstr "xahiş edirik, gözləyin, fayl daranır: %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", USB printer"
-msgstr ", USB çapçı"
+#: ../../standalone/logdrake_.c:392
+#, fuzzy
+msgid "Mail alert configuration"
+msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/logdrake_.c:393
msgid ""
-"Unable to properly close mkbootdisk:\n"
+"Welcome to the mail configuration utility.\n"
"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"mkbootdisk düzgün bağlana bilmədi:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
msgstr ""
-"Artan ehtiyatlar yalnız son ehtiyatlamadan sonra dəyişdirilən və yaranan "
-"faylları qeyd edər."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Yazı növlərini dəstəkləyəcək proqramları seçin:"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "X quraşdırılması"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hd"
-msgstr "hd"
+#: ../../standalone/logdrake_.c:401
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Sahə(domain) adı"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Türkcə (ənənəvi \"F\" klaviatura)"
+#: ../../standalone/logdrake_.c:402
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS Verici"
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "Təbriklər!"
+#: ../../standalone/logdrake_.c:403
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix məktub vericisi, Inn xəbər vericisi"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
-msgstr "İcra üçün yiyə id'sini işlət"
+#: ../../standalone/logdrake_.c:404
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS Verici"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow remote root login"
-msgstr "Uzaq ali istifadəçi girişinə icazə ver"
+#: ../../standalone/logdrake_.c:405
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS Verici"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Down"
-msgstr "Aşağı"
+#: ../../standalone/logdrake_.c:406
+#, fuzzy
+msgid "Webmin Service"
+msgstr "avadanlıq"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Adi çapçı (Sürücüsüz)"
+#: ../../standalone/logdrake_.c:407
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Çap Edici Vericisi"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Install rpm"
-msgstr "rpm'i qur"
+#: ../../standalone/logdrake_.c:414
+#, fuzzy
+msgid "service setting"
+msgstr "avadanlıq"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/logdrake_.c:415
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"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
-"Æmr sÉ™tirindÉ™n faylı çap etmÉ™k üçün (terminal pÉ™ncÉ™rÉ™si) bu É™mri iÅŸlÉ™din: \"%"
-"s <fayl>\" Qrafiki çap vasitəsi ilə isə əmr belə verilməlidir: \"xpp <fayl>"
-"\" ya da \"kprinter <fayl>\". Qrafiki fasitələr sizə çapçını və qurğuları "
-"asanlıqla seçməyə icazə verir.\n"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "Qalan müddət"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "İngiliz (UK) klaviaturası"
+#: ../../standalone/logdrake_.c:428
+#, fuzzy
+msgid "load setting"
+msgstr "Şəkilləndirilir"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "Ayır"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
+#: ../../standalone/logdrake_.c:444
+#, fuzzy
+msgid "alert configuration"
+msgstr "Quraşdırma"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "Yazı Növlərini Sil"
+#: ../../standalone/logdrake_.c:445
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Xahiş edirik təkrar sınayın"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Xahiş edirik, gözləyin, təhlükəsizlik səviyyəsi seçilir..."
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
+msgstr "Fərqli qeyd et..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "Almanca (ölü düymələr olmasın)"
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\t%s ünvanına poçt göndər\n"
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
+msgstr "3 düymə emulasiyası"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
-msgstr "%s daşınır..."
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Şəbəkə quraşdırılması"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 min rəng (15 bits)"
+#: ../../standalone/net_monitor_.c:96
+#, fuzzy
+msgid "Profile "
+msgstr "Profil: "
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
msgstr ""
-"NFS ya da Samba işlədərək ixrac edə bilərsiniz. Xahiş edirik, işlətmək "
-"istədiyinizi seçin."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "Qambiya"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Mandrake İdarə Mərkəzi"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Reboot"
-msgstr "Yenidən başlat"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device"
-msgstr "Çox funksiyalı avadanlıq"
+#: ../../standalone/net_monitor_.c:103
+#, fuzzy
+msgid "Sending Speed:"
+msgstr "Fayla qeyd et"
-#: ../../network/drakfirewall.pm:1
-#, 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."
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
msgstr ""
-"Müxtəlif qapılar daxil edə bilərsiniz. \n"
-"Hökmlü nümunələr: 139/tcp 139/udp.\n"
-"Mə'lumat üçün /etc/services'a baxın."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Kaset \n"
+#: ../../standalone/net_monitor_.c:106
+#, fuzzy
+msgid "Connection Time: "
+msgstr "Bağlantı növü:"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
msgstr ""
-"Sisteminizdə heç bir səyyah qurulu deyil. Yardım sistemini gəzmək "
-"istəyirsinizsə, xahiş edirik, birini qurun. Gnome işlədirsinizsə Epiphany, "
-"KDE işlədirsinizsə Konqueror proqramını qura bilərsiniz."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remember this password"
-msgstr "Bu şifrəni yadında saxla"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr ""
+#: ../../standalone/net_monitor_.c:147
+#, fuzzy
+msgid "Wait please, testing your connection..."
+msgstr "Bağlantınız sınanır..."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "İnternet Bağlantısı Bölüşdürülməsi indi açıldı"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "İnternetə bağlan"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Şəbəkə SSH tərəfindən.\n"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "İnternetə bağlan"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
msgstr ""
-" ÆgÉ™r çapçı avtomatik aÅŸkar edilibsÉ™, onu siyahıdan seçin vÉ™ sonralazımdırsa "
-"istifadəçi adı, şifrə və/ya da iş qrupu adını əlavə edin."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " cable"
-msgstr " kabel"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
-msgstr "Windows bölməsindəki boş sahəni işlət"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%2$s üstündə %1$s tapıldı, avtomatik quraşdırılsın?"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 sürücü: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr "Bu qovşaq/şəbəkə onsuzda siyahıdadır, yenidən əlavə edilə bilməz.\n"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Qurmaq istədiyiniz paketləri seçin"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
-msgstr "Papua Yeni Qvineya"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Paralel qapıdakı çox funksiyalı avadanlıq"
-
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Busy files"
-msgstr "Sistem fayllarının ehtiyat nüsxəsini çıxart"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "SerbcÉ™ (kiril)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Ehtiyatların saxlandığı cərgəni daxil edin"
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
-msgstr "Çəyirdək ismarışlarını əsas olaraq göstərmə"
+#: ../../standalone/net_monitor_.c:225
+#, fuzzy
+msgid "Connection complete."
+msgstr "Bağlantı növü:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:226
msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-"(\"%s\") çapçısını əsas çapçı olaraq\n"
-"tə'yin etmək istəyirsiniz?"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
-msgstr "DHCP son silsiləsi"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "Açılış disketi yaradılır"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Xahiş edirik, gözləyin, bağlantınız sınanır..."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "Şəbəkə dayandırılır"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "Giriş adı"
+#: ../../standalone/net_monitor_.c:330
+#, fuzzy
+msgid "Color configuration"
+msgstr "Quraşdırma"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
msgstr ""
-"NFS TCP/IP şəbəkələrində fayl bölüşülməsi üçün istifadə edilən məşhur bir \n"
-"protokoldur. Bu xidmət NFS fayl qıfılı istifadəsinə imkan verər."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
-msgstr "DHCP Alıcısı"
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, 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"
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
msgstr ""
-"Bu HardDrake'dir, Mandrake avadanlıq quraşdırma vasitəsi.\n"
-"<span foreground=\"royalblue3\">Buraxılış:</span> %s\n"
-"<span foreground=\"royalblue3\">Müəllif:</span> Thierry Vignaud &lt;"
-"tvignaud@mandrakesoft.com&gt;\n"
-"\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
-msgstr "keç"
+#: ../../standalone/net_monitor_.c:400
+#, fuzzy
+msgid "Local measure"
+msgstr "Yerli Çap Edici"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "\"%s\" üstündə çap etmə/darama"
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
+msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit raid modules"
-msgstr "raid modulları keç"
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:453
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)."
+"Warning, another internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"lpd, lpr'nin düzgün olaraq işləməsi üçün lazımi çapçıi vasitəsidir.\n"
-"lpd əsasən, çap vəzifələrini idarə edən və onları çapçıya göndərən vericidir."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
-msgstr "İrlandiya Dili"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sunday"
-msgstr "Bazar"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "BaÄŸlan"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "İnternet Bağlantısı Quraşdırılması"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Disconnect %s"
+msgstr "Bağlantını kəs"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
-msgstr "verqüllə ayrılmış ədədlər"
+#: ../../standalone/printerdrake_.c:47
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "CUPS sürücü datası oxunur..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Once you've selected a device, you'll be able to see the device information "
-"in fields displayed on the right frame (\"Information\")"
-msgstr ""
-"Avadanlığı seçdiyiniz vaxt, onun mə'lumatını sağ çərçivədəki sahədə "
-"görəcəksiniz."
+#: ../../standalone/scannerdrake_.c:39
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Avadanlıqlar tanınır..."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Seçili qaydanı bir səviyyə üstə daşı"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
+msgstr "Qapıları sına"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
-"Açağıdakı darayıcı\n"
-"\n"
-"%s\n"
-"sisteminizdə mövcuddur.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Həqiqətən də \"%s\" çapçısını silmək istəyirsiniz?"
+#: ../../standalone/scannerdrake_.c:54
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "Bir çap edici qurmaq istəyirsiniz?"
-#: ../../install_interactive.pm:1
+#: ../../standalone/scannerdrake_.c:57
#, c-format
-msgid "I can't find any room for installing"
-msgstr "Artıq bölmə əlavə edilə bilməz"
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Default printer"
-msgstr "Æsas çapçıi"
+#: ../../standalone/scannerdrake_.c:63
+#, fuzzy
+msgid "Select a scanner"
+msgstr "Ekran kartınızı seçin"
-#: ../../network/netconnect.pm:1
+#: ../../standalone/scannerdrake_.c:91
#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+msgid "This %s scanner is unsupported"
msgstr ""
-"Siz İnternetə bağlanmanın bir neçə yöntəmini quraşdırmışsınız.\n"
-"İstifadə etmək istədiyinizi seçin.\n"
-"\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Modify RAID"
-msgstr "RAIDi dəyişdir"
-
-#: ../../network/isdn.pm:1
+#: ../../standalone/scannerdrake_.c:105
#, 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."
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
msgstr ""
-"ISDN PCI kart tapdım, amma növünü bilmirəm. Xahiş edirik, sonrakı ekrandakı "
-"kartlardan birini seçin."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr "İstifadəçini əlavə et"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-diskləri %s\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Liberia"
-msgstr "Liberiya"
+#: ../../standalone/scannerdrake_.c:107
+#, fuzzy
+msgid "choose device"
+msgstr "Açılış avadanlığı"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:113
#, c-format
msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
msgstr ""
-"Scannderdrake ilə darayıcını quraşdırmaq üçün lazım olan paketlər qurula "
-"bilmədi."
-#: ../../standalone/drakgw:1
+#: ../../standalone/scannerdrake_.c:118
#, 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"
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
msgstr ""
-"Xahiş edirik, internetə bağlı olan ara üzün adını dirin.\n"
-"\n"
-"Nömunələr:\n"
-"\t\tppp+ modem ya da DSL bağlantıları üçün, \n"
-"\t\teth0, ya da eth1 kabel bağlantıları üçün, \n"
-"\t\tippp+ isdn bağlantısı üçün.\n"
-#: ../../steps.pm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "Choose your keyboard"
-msgstr "Klaviatura seçimi"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Format partitions"
-msgstr "Bölmələrin şəkilləndirilməsi"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "CUPS quraşdırılmasının avtomatik düzəldilməsi"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Running \"%s\" ..."
-msgstr "\"%s\" icra edilir ..."
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "enable radio support"
-msgstr "radio dəstəyini fəallaşdır"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Qovşaqlar üçün darayıcı bölüşməsi:"
+#: ../../standalone/service_harddrake_.c:64
+#, fuzzy
+msgid "Hardware probing in progress"
+msgstr "%s qapısında tapıldı"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Loopback faylı adı: %s"
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "İşlətdiyiniz dili seçin"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Çap vəzifələrinin hansı çapçıya gedəcəyini seçin."
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "Quruluş sinifini seçin"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not transfer printers"
-msgstr "Çapçıları qətiyyən daşıma"
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
+msgstr "Sabit disk seçkisi"
-#: ../../help.pm:1
-#, c-format
-msgid "Delay before booting the default image"
-msgstr "Æsas görünüşü açmadan fasilÉ™ ver"
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "Siçan qurğuları"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Hard Disk to backup"
-msgstr "Ehtiyatlama üçün Sabit Diski işlət"
+#: ../../steps.pm_.c:18
+msgid "Choose your keyboard"
+msgstr "Klaviaturanızı seçin"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Configure"
-msgstr "Qur"
+#: ../../steps.pm_.c:19
+msgid "Security"
+msgstr "Təhlükəsizlik"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake"
-msgstr "Scannerdrake"
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Diqqət, başqa internet bağlantısı aşkar edildi, güman ki şəbəkənizi istifadə "
-"edir"
+#: ../../steps.pm_.c:21
+msgid "Format partitions"
+msgstr "Bölmə şəkilləndirilməsi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
-msgstr "İstifadəçilərin Ehtiyat Nüsxəsi Al"
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "Qurulacaq paketləri seçin"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Xahiş edirik, kompüterinizn adını girin.\n"
-"Məsələn``kompüteradı.sahəadı.com''.\n"
-"ÆgÉ™r ÅŸÉ™bÉ™kÉ™ keçidi istifadÉ™ edirsinizsÉ™ bunun da IP nömrÉ™sini girmÉ™lisiniz."
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "Sistemi qur"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Çap Sistemini Seçin"
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "İstifadəçi əlavə et"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Create new theme"
-msgstr "Yeni örtük yarat"
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "Şəbəkəni qur"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
-msgstr "Mandrake Vasitələrinin İzahatı"
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "Xidmətləri qur"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "No image found"
-msgstr "Rəsm tapıla bilmədi"
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "Sistem yükləyicini qur"
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
-"Bə'zi paketlər doğru olaraq qurulumu bitirmədi.\n"
-"Cdrom sürücünüz ya da cdromunuz düzgün işləmir.\n"
-"ÆvvÉ™ldÉ™n Linuks qurulu bir sistemdÉ™ \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-"əmrini istifadə edərək Cd-Rom'u yoxlayın.\n"
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "Açılış disketi yarat"
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
-msgstr "Mandrake Linuks 9.2: böyük inkişaf platformu"
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "X qur"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Detected model: %s"
-msgstr "Aşkar edilən model: %s"
+#: ../../steps.pm_.c:34
+#, fuzzy
+msgid "Install system updates"
+msgstr "Sistemi qur"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
-msgstr "\"%s\" hökmlü bir epoçt deyil!"
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "Qurulumdan çıx"
-#: ../../standalone/drakedm:1
-#, 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."
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-"X11 Displey İdarəçisi sizə, X Pəncərə sistemi fəal olan bir sistemə\n"
-"qrafiki olaraq giriş etmə və birdən çox X iclasını eyni anda işlətmə\n"
-"imkanı verir."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr "əgər bəli seçilidirsə, günlük təhlükəsizlik yoxlamalarını icra et"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
-msgstr "Azərbaycan"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Ehtiyatlama üçün istifadə ediləcək avadanlıq adı"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
-msgstr "%s içində kaset yoxdur!"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
msgstr ""
-" --doc <körpü> - başqa bir veb səhifəsinə körpü (WM xoş gəldin ara üzü "
-"üçün)\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "Verici, Veb/FTP"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr "bu, avadanlığın taxılı olduğu fiziki yoldur (mis: PCI, USB, ...)"
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
+msgstr "Şəbəkə Kompüteri (alıcı)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Çapçınız hansı şəkildə bağlıdır?"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS vericisi, SMB vericisi, SSH vericisi, Vəkil Verici"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security level"
-msgstr "Təhlükəsizlik səviyyəsi"
+#: ../../share/compssUsers:999
+msgid "Office"
+msgstr "İş Yeri"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "final resolution"
-msgstr "son həlledilirlik"
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Gnome iş stansiyası"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
-msgstr "Xidmətlər"
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Palm Pilot və ya Visorunuz üçün vasitələr"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Auto configuration"
-msgstr "Xüsusi quraşdırma"
+#: ../../share/compssUsers:999
+msgid "Workstation"
+msgstr "Masa üstü"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Verici, Firewall/Ruter"
#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Ofis İş Stansiyası"
+msgid "Domain Name and Network Information Server"
+msgstr "Domeyn Ad bə Şəbəkə Mə'lumat Vericisi"
#: ../../share/compssUsers:999
msgid ""
@@ -21019,68 +13964,78 @@ msgstr ""
"göstəriciləri, vs."
#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Oyun stansiyası"
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+"Səs ilə əlaqədər vasitələr: mp3 və ya midi çalğıçılar, qarışdırıçılar, vs."
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Məzəli proqramlar: arkad, lövhə oyunları, strategiya, vs"
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimedya stansiyası"
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Linuks və pulsuz proqram tə'minatıları Kitablar və Howtoları"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Səs və video çalınması/düzəliş proqramları"
+msgid "KDE Workstation"
+msgstr "KDE iş stansiyası"
#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "İnternet stansiyası"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, vs."
#: ../../share/compssUsers:999
-#, fuzzy
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Elektronik məktub və xəbər oxuyucusu (pine, mutt, tin..) və Web səyyahları"
+msgid "Multimedia - Video"
+msgstr "Multimedya - Video"
#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Şəbəkə Kompüteri (alıcı)"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr "Məktub, xəbərlər, fayl daşınması, chat vasitələri"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "SSH daxil bir çox protokolların alıcıları"
+msgid "Database"
+msgstr "Databeyz"
#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Quraşdırma"
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL vÉ™ ya MySQL databeyz vericisi"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
msgstr "Kompüter qurğularını asandlaşdıran vasitələr"
#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Elmi iş stansiyası"
+msgid "Multimedia - Sound"
+msgstr "Multimedya - Səs"
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
-msgstr "gnuplot kimi elmi tÉ™'minatlar"
+msgid "Documentation"
+msgstr "Sənədlər"
#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr "Konsol Vasitələri"
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editorlar, rəflər, fayl vasitələri, terminallar"
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix məktub vericisi, Inn xəbər vericisi"
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE iş stansiyası"
+msgid "Internet station"
+msgstr "İnternet stansiyası"
+
+#: ../../share/compssUsers:999
+msgid "Multimedia station"
+msgstr "Multimedya stansiyası"
+
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Configuration"
+msgstr "Yerli Şəbəkə Quraşdırılması"
+
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "Başqa qrafiki ara üzlər (Gnome, IceWM)"
#: ../../share/compssUsers:999
msgid ""
@@ -21089,126 +14044,262 @@ msgid ""
msgstr "KDE, əsas qrafiki ara üz və yardımçi proqramlar kolleksiyası"
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome iş stansiyası"
+msgid "Graphical Environment"
+msgstr "Qrafiki Ara Üz"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"İstifadəçi dostu proqram və masa üstü ilə bərabər qrafiki ara üz vasitələri"
+msgid "Development"
+msgstr "Təcrübi"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Başqa qrafiki ara üzlər"
+msgid "Apache, Pro-ftpd"
+msgstr "Apache vÉ™ Pro-ftpd"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, vs."
+msgid "Tools to create and burn CD's"
+msgstr "CD yazmaq və yandırmaq proqramları"
+
+#: ../../share/compssUsers:999
+msgid "Office Workstation"
+msgstr "İş Yeri Stansiyası"
+
+#: ../../share/compssUsers:999
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, IceWM, Windows Maker, Enlightement, Fvwm, vs."
+
+#: ../../share/compssUsers:999
+msgid "Graphics programs such as The Gimp"
+msgstr "Qrafika proqramları, məsələn The Gimp"
+
+#: ../../share/compssUsers:999
+msgid "DNS/NIS "
+msgstr "DNS/NIS "
#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr "C və C++ inkişaf kitabxanaları, proqramları və daxil ediləcək fayllar"
#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Sənədlər"
+msgid "Network Computer server"
+msgstr "Şəbəkə Kompüteri vericisi"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Linuks və sərbəst proqram tə'minatı haqqında Kitablar və Howtolar"
+msgid "Mail/Groupware/News"
+msgstr "Verici, ePoçt/Groupware/Xəbərlər"
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr "LSB"
+msgid "Game station"
+msgstr "Oyun stansiyası"
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Linux Standartları Bazası. Üçüncü partiya tə'minat dəstəyi"
+msgid "Video players and editors"
+msgstr "Video çalğıçıları və editorları"
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Veb/FTP"
+msgid "Multimedia - Graphics"
+msgstr "Multimedya - Qrafika"
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Məzəli proqramlar: arkad, lövhə oyunları, strategiya, vs"
#: ../../share/compssUsers:999
-msgid "Mail"
-msgstr "Poçt"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"Elektronik məktub və xəbər oxuyucusu (pine, mutt, tin..) və Web səyyahları"
#: ../../share/compssUsers:999
-msgid "Postfix mail server"
-msgstr "Postfix poçt vericisi"
+msgid "Personal Finance"
+msgstr "Şəxsi Maliyyə"
#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Mə'lumat Bazası"
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"İstifadəçi dostu proqram və masa üstü ilə bərabər qrafiki ara üz vasitələri"
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL ya da MySQL mə'lumat bazası vericisi"
+msgid "Clients for different protocols including ssh"
+msgstr "SSH daxil bir çox protokolların alıcıları"
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Atəş Divarı/İstiqamətləndirici"
+msgid "LSB"
+msgstr ""
#: ../../share/compssUsers:999
msgid "Internet gateway"
-msgstr "İnternet keçidi"
+msgstr "İnternet keçişı"
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
+msgid "Sound and video playing/editing programs"
+msgstr "Səs və video çalınması/düzəliş proqramları"
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Domen Adı bə Şəbəkə Mə'lumat Vericisi"
+msgid "Other Graphical Desktops"
+msgstr "Başqa qrafiki ara üzlər"
#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Şəbəkə Kompüter vericisi"
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editorlar, rəflər, fayl vasitələri, terminallar"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS vericisi, SMB vericisi, Vəkil vericisi, SSH verici"
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "Şəxsi maliyyə idarəçiləri, məsələn gnucash"
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
-msgstr "Poçt və xəbər alıb göndərmək üçün və vebi gəzmək üçün vasitələr dəsti"
+msgid "Personal Information Management"
+msgstr "Şəxsi Mə'lumat İdarəçisi"
-#~ msgid "The setup has already been done, and it's currently enabled."
-#~ msgstr "Quraşdırma artıq başa çatıb və hazırda fəaldır."
+#: ../../share/compssUsers:999
+msgid "Multimedia - CD Burning"
+msgstr "Multimedya - CD Yandırma"
-#~ msgid "Logs"
-#~ msgstr "Qeydlər"
+#: ../../share/compssUsers:999
+msgid "Scientific Workstation"
+msgstr "Elmi iş stansiyası"
-#~ msgid "The setup has already been done, but it's currently disabled."
-#~ msgstr "Quraşdırma onsuzda edilib, amma hazırda qeyri-fəaldır."
+#~ msgid "can not open /etc/inittab for reading: %s"
+#~ msgstr "/etc/inittab oxunmaq üçün açıla bilmir: %s"
-#~ msgid "Profile "
-#~ msgstr "Profil"
+#, fuzzy
+#~ msgid "cpu number "
+#~ msgstr "Telefon nömrəsi"
#~ msgid ""
-#~ "Welcome to the Internet Connection Sharing utility!\n"
+#~ "You now have the opportunity to download encryption software.\n"
#~ "\n"
-#~ "%s\n"
+#~ "WARNING:\n"
#~ "\n"
-#~ "Click on Configure to launch the setup wizard."
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
+#~ "\n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
+#~ "\n"
+#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
+#~ "\n"
+#~ "\n"
+#~ "For any queries relating to these agreement, please contact \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
#~ msgstr ""
-#~ "İnternet Bağlantısı Bölüşdürmə vasitəsinə Xoş Gəldiniz!\n"
+#~ "İndi şifrləmə üçün istifadə ediləcək tə'minatı endirə bilərsiniz.\n"
+#~ "DİQQÆT:\n"
+#~ "\n"
+#~ "Bu tə'minata bə'zi fərqli ümumi ehtiyaclardan və müxtəlif\n"
+#~ "mühakəmə haqlarından ötrü, bu tə'minatın son istifadəçisi, qanunların ona "
+#~ "bu\n"
+#~ "tə'minatı internetdən endirmə və saxlama haqqını verdiyindən əmin "
+#~ "olmalıdır.\n"
+#~ "\n"
+#~ "ÆlavÉ™ olaraq, müşdÉ™ri va/vÉ™ ya son istifadəçi xüsusilÉ™, yerləşdiyi "
+#~ "mühakəmə yerinin\n"
+#~ "qanunlarını çeynəmədiyindən əmin olmalıdır. Müşdəri və/və ya son "
+#~ "istifadəçi\n"
+#~ "qanunların əmr etdiyi şərtləri pozduğu zaman ciddi cəzalara\n"
+#~ "mə'ruz qalacaqdır.\n"
#~ "\n"
-#~ "%s\n"
+#~ "Xüsusi ya da dolaylı zərərlərə (gəlir azalması, işin pozulması, ticari "
+#~ "mÉ™'lumat\n"
+#~ "itkisi və digər maddi itkilər) yol açan heç bir hadisədə nə Mandrakesoft, "
+#~ "nÉ™ dÉ™ \n"
+#~ "istehsalatçıları və/va ya qaynaq vericiləri məs'ul tutulmazlar. Bu "
+#~ "tə'minatı\n"
+#~ "internetden endirirkən son istifadəçi bu sözləşməyi qəbul etdiyini \n"
+#~ "bəyan etmiş sayılır.\n"
#~ "\n"
-#~ "Quraşdırma sehirbazını açmaq üçün Quraşdır düyməsinə tıqlayın."
+#~ "\n"
+#~ "Bu sözləşməylə əlaqədər hər cür sual üçün xahiş edirik\n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA\n"
+#~ "ünvanına yazınız."
+
+#, fuzzy
+#~ msgid "Proxy configuration"
+#~ msgstr "Vəkil vericilər quraşdırılması"
+
+#, fuzzy
+#~ msgid "port"
+#~ msgstr "Qapı"
+
+#, fuzzy
+#~ msgid "Url should begin with 'http:'"
+#~ msgstr "Vəkil verici http://... şəklində olmalıdır."
-#~ msgid "Internet Connection Sharing configuration"
-#~ msgstr "İnternet bağlantısı bölüşdürülməsi quraşdırılması"
+#, fuzzy
+#~ msgid "The port part should be numeric"
+#~ msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
+
+#, fuzzy
+#~ msgid "login"
+#~ msgstr "Avtomatik GiriÅŸ"
+
+#, fuzzy
+#~ msgid "password"
+#~ msgstr "Parol"
+
+#, fuzzy
+#~ msgid "re-type password"
+#~ msgstr "Parolsuz"
+
+#, fuzzy
+#~ msgid "The passwords don't match. Try again!"
+#~ msgstr "Parollar uyğun gəlmir"
+
+#~ msgid "Can't write file %s"
+#~ msgstr "%s faylına yazıla bilinmədi"
+
+#~ msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+
+#~ msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+
+#~ msgid "no help implemented yet.\n"
+#~ msgstr "hələlik yardım sistemi mövcud deyildir.\n"
+
+#, fuzzy
+#~ msgid "Please click on a medium"
+#~ msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
+
+#~ msgid "usage: drakfloppy\n"
+#~ msgstr "istifadə qaydası: drakfloppy\n"
+
+#, fuzzy
+#~ msgid ""
+#~ "\n"
+#~ "Usage: harddrake [-h|--help] [--test]\n"
+#~ msgstr "istifadə qaydası: keyboarddrake [--expert] [klavatura]\n"
-#~ msgid "No Internet Connection Sharing has ever been configured."
-#~ msgstr "İnternet Bağlantısı Bölüşdürmə Quraşdırması aparılmayıb."
+#~ msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+#~ msgstr "istifadə qaydası: keyboarddrake [--expert] [klavatura]\n"
-#~ msgid "when checked, owner and group won't be changed"
-#~ msgstr "seçilidirsə, yiyə və qrup dəyişdirilməyəcək"
+#~ msgid "detected on interface %s"
+#~ msgstr "%s ara üzündə tapıldı"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 1e196f5de..cf55bebf4 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5,4558 +5,3219 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=windows-1251\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr ""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "network printer port"
-msgstr "Сеткавы прынтÑÑ€ (TCP/Socket)"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Please insert floppy disk:"
-msgstr "УÑтаўце дыÑкету Ñž дыÑкавод %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 Êá"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 Êá"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Таблiца размÑшчÑÐ½Ð½Ñ Ñ€Ñзервовага дыÑку мае iншы памер\n"
-"ПрацÑгваць далей?"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Ìá"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Which username"
-msgstr "IÐ¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальнiку:"
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Ìá"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "Якi тып пункта жадаеце дадаць?"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Ìá"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Restore partition table"
-msgstr "Ð”Ð°Ð´Ð°Ñ‚ÐºÐ¾Ð²Ð°Ñ Ñ‚Ð°Ð±Ð»iца раздзелаў"
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Ìá"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Configure hostname..."
-msgstr "ÐаÑтройка мышы"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Ìá"
-#: ../../printer/cups.pm:1
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "IP Ñервера SMB"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Ìá"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Post-install configuration"
-msgstr "ÐаÑтройка паÑÐ»Ñ ÑžÑталÑваннÑ"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Ìá öi áîëåé"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "Àáÿðûöå X ñåðâåð"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "ВыкарыÑтоўвайце ``%s'' замеÑÑ‚"
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "X ñåðâåð"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Type"
-msgstr "Тып"
+#: ../../Xconfig/card.pm_.c:230
+#, fuzzy
+msgid "Multi-head configuration"
+msgstr "÷ûòàííå íàñòðîéêi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "Шры Ланка"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr "У вашай ÑÑ–ÑÑ‚Ñме нÑма нiводнага Ñеткавага адаптара!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
-msgstr "ЦÑÐ½Ñ‚Ñ€Ð°Ð»ÑŒÐ½Ð°Ñ ÐфрыканÑÐºÐ°Ñ Ð ÑÑпубліка"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "Прылада-шлюз"
-
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Advanced preferences"
-msgstr "ЗаканчÑнне наÑтройкi"
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
+msgstr "Ïàçíà÷öå ïàìåð âiäýàïàìÿöi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Net Method:"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "Íàñòðîéêà XFree"
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Ethernetcard"
-msgstr "цiкава"
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
+msgstr "ßêóþ êàíôiãóðàöûþ XFree âû æàäàåöå àòðûìàöü?"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
msgstr ""
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
msgstr ""
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "no"
-msgstr "IнфармацыÑ"
-
-#: ../../harddrake/v4l.pm:1
+#: ../../Xconfig/card.pm_.c:389
#, fuzzy, c-format
-msgid "Auto-detect"
-msgstr "Ðддалены прынтÑÑ€"
+msgid "Configure only card \"%s\"%s"
+msgstr "Êàíôiãóðàâàöü ìàþ êàðòó"
-#: ../../standalone/drakconnect:1
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Interface:"
-msgstr ""
+msgid "XFree %s"
+msgstr "Ñåðâåð XFree86 %s"
-#: ../../steps.pm:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Select installation class"
-msgstr "ÐšÐ»Ð°Ñ ÑƒÑталÑваннÑ"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s ç ïàäòðûìêàé 3D-ïàñêàðýííÿ"
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
+#: ../../Xconfig/card.pm_.c:416
+#, c-format
msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-"\n"
-"Ð’Ñ‹ можаце адключыцца ці пераканфігураваць вашае злучÑнне."
+"Ïàäòðûìêà 3D-ïàñêàðýííÿ ¢ Âàøàé â³äýàêàðöå âûêàíàíà òîëüê³ ¢ XFree %s.\n"
+"XFree %s ìîæà âûêàðûñòî¢âàöü òîëüê³ 2D-ïàñêàðýííå äëÿ ãýòàé â³äýàêàðòû."
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
+"Âàøà âiäýàêàðòà ìîæà ìåöü 3D-ïàñêàðýííå, ÿêîå ïàäòðûìëiâàåööà òîëüêi XFree %"
+"s."
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Belarus"
-msgstr "БеларуÑкі"
-
-#: ../../partition_table.pm:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid "Error writing to file %s"
-msgstr "Памылка запiÑу Ñž файл %s"
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s ç ýêñïåðûìåíòàëüíàé ïàäòðûìêàé 3D-ïàñêàðýííÿ"
-#: ../../security/l10n.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
-msgid "Report check result to syslog"
+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."
msgstr ""
+"Âàøà âiäýàêàðòà ìîæà ìåöü 3D-ïàñêàðýííå, ÿêîå ïàäòðûìëiâàåööà òîëüêi XFree %"
+"s.\n"
+"ÌÀÉÖÅ ÍÀ ¡ÂÀÇÅ, ØÒÎ ÃÝÒÀ ÝÊÑÏÅÐÛÌÅÍÒÀËÜÍÀß ÏÀÄÒÐÛÌÊÀ I ÌÎÆÀ ÏÐÛÂÅÑÖI ÄÀ\n"
+"ÇÀÂIÑÀÍÍß ÂÀØÀÃÀ ÊÀÌÏ'ÞÒÝÐÓ. Âàøà âiäýàêàðòà ïàäòðûìëiâàåööà XFree %s, ÿêi\n"
+"ëåïåé ïàäòðûìëiâàå êàðòû ç 2D-ïàñêàðýííåì."
-#: ../../services.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"ampd выкарыÑтоўваецца Ð´Ð»Ñ Ð°Ð´ÑÐ»ÐµÐ¶Ð²Ð°Ð½Ð½Ñ ÑтатуÑу батарÑi i вÑÐ´Ð·ÐµÐ½Ð½Ñ "
-"ÑтатыÑтыкi.\n"
-"Яго можна выкарыÑтоўваць Ð´Ð»Ñ Ð²Ñ‹ÐºÐ»ÑŽÑ‡ÑÐ½Ð½Ñ Ð¼Ð°ÑˆÑ‹Ð½Ñ‹ пры нiзкiм зарадзе батарÑi."
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use tape to backup"
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
+"Âàøà âiäýàêàðòà ìîæà ìåöü 3D-ïàñêàðýííå, ÿêîå ïàäòðûìëiâàåööà òîëüêi XFree %"
+"s.\n"
+"ÌÀÉÖÅ ÍÀ ¡ÂÀÇÅ, ØÒÎ ÃÝÒÀ ÝÊÑÏÅÐÛÌÅÍÒÀËÜÍÀß ÏÀÄÒÐÛÌÊÀ I ÌÎÆÀ ÏÐÛÂÅÑÖI ÄÀ\n"
+"ÇÀÂIÑÀÍÍß ÂÀØÀÃÀ ÊÀÌÏ'ÞÒÝÐÓ."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "ÐаÑÑ‚ÑƒÐ¿Ð½Ñ‹Ñ Ð¿Ð°ÐºÐµÑ‚Ñ‹ будуць даданы да ÑiÑÑ‚Ñмы"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "CUPS configuration"
-msgstr "ÐаÑтройка"
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "Ïà âûáàðó"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Total progress"
-msgstr "Праверка партоў"
+#: ../../Xconfig/main.pm_.c:102
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Âiäýàêàðòà"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Ðе хапае праÑторы Ð´Ð»Ñ ÑтварÑÐ½Ð½Ñ Ð½Ð¾Ð²Ñ‹Ñ… раздзелаў"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "Ìàíiòîð"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "ПераноÑім"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "Ïàìåðû ýêðàíó"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
msgstr ""
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "yes"
-msgstr "Так"
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Îïöûi"
+
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "Îê"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr ""
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "Âûõàä"
-#: ../../network/netconnect.pm:1
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
-"Welcome to The Network Configuration Wizard.\n"
+"Keep the changes?\n"
+"The current configuration is:\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 ""
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
+"%s"
msgstr ""
+"Ö³ æàäàåöå Âû çàõàâàöü çìÿíåíí³?\n"
+"Áÿãó÷àÿ êàíô³ãóðàöûÿ:\n"
+"\n"
+"%s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "Лібанон"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "Stop"
-msgstr "Сектар"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Edit selected host"
-msgstr "Выдалiць чаргу друку"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "No CD device defined!"
-msgstr "ÐбÑрыце файл"
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "Àáÿðûöå ìàíiòîð"
-#: ../../network/shorewall.pm:1
-#, c-format
-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"
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "Àãóëüíû"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "ÐрмÑнÑкi (фанетычны)"
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+#, fuzzy
+msgid "Vendor"
+msgstr "Àäêàò"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP start ip"
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "256 kB"
-msgstr "256 Кб"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Don't rewind tape after backup"
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "Ð“Ð°Ð»Ð¾ÑžÐ½Ñ‹Ñ Ð¾Ð¿Ñ†Ñ‹i пачатковага загрузчыку"
-
-#: ../../standalone.pm:1
-#, c-format
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
+"\n"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
+"Äâà êðûòû÷íûõ ïàðàìåòðû - ãýòà ÷àñö³íÿ âåðòûêàëüíàé ðàçãîðòêi, öi\n"
+"÷àñö³íÿ àäíà¢ëåííÿ ¢ñÿãî ýêðàíó, à òàêñàìà áîëåé âàæíû ïàðàìåòð -\n"
+"÷àñö³íÿ ãàðûçàíòàëüíàé ñiíõðàíiçàöûi ðàçãîðòêi, öi ÷àñö³íÿ âûâàäó\n"
+"ðàäêî¢ ýêðàíó.\n"
+"\n"
+"ÂÅËÜÌI ÂÀÆÍÀ, êàá àáðàíû âàìi ìàíiòîð ìå¢ ÷àñö³íþ ñiíõðàíiçàöûi, ÿêàÿ\n"
+"íå ïåðàâûøàå ôàêòû÷íûÿ ìàã÷ûìàñöi âàøàãà ìàíiòîðó: ó ïðîöiëåãëûì âûïàäêó\n"
+"âû ìîæàöå ñàïñàâàöü ìàíiòîð.\n"
+"Êàëi âû ñóìíÿâàåöåñÿ, àáÿðûöå êàíñåðâàòû¢íûÿ íàñòðîéêi."
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Tape"
-msgstr "Тып: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Malaysia"
-msgstr "МалазыÑ"
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "×àñö³íÿ ãàðûçàíòàëüíûé ðàçãîðòêi"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Scanning network..."
-msgstr "Якi тып вашага ISDN злучÑннÑ?"
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "×àñö³íÿ âåðòûêàëüíàé ðàçãîðòêi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 êîëåðࢠ(8 áiòà¢)"
-#: ../../standalone/drakedm:1
-#, fuzzy, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr "Выбар пакетаў Ð´Ð»Ñ ÑžÑталÑваннÑ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 òûñÿ÷û êîëåðࢠ(15 áiòà¢)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (French layout)"
-msgstr "ШвейцарÑкi (ФранцузÑÐºÐ°Ñ Ñ€Ð°Ñкладка)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 òûñÿ÷ êîëåðࢠ(16 áiòà¢)"
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid не працаздольны (можа raid прылады адÑутнiчаюць?)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 ìiëü¸íࢠêîëåðࢠ(24 áiòû)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "August"
-msgstr "Жнівень"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 ìiëiÿðäà êîëåðࢠ(24 áiòû)"
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "FTP server"
-msgstr "NIS Ñервер:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "Ïàìåðû ýêðàíó"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Webcam"
-msgstr ""
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "Âûáàð ïàìåðࢠýêðàíó i ãëûáiíi êîëåðó"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr ""
+msgid "Graphics card: %s"
+msgstr "Âiäýàêàðòà: %s"
+
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr "Àäìåíà"
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Soundcard"
-msgstr "Стандартны"
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "Ïðàâåðêà ïàðàìåòðࢠíàñòðîéêi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Month"
-msgstr "МеÑÑц"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "Öi æàäàåöå ïðàòýñöiðàâàöü íàñòðîéêi?"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Search for files to restore"
-msgstr "калi лаÑка, пазначце тып вашай мышы."
+#: ../../Xconfig/test.pm_.c:30
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Ïàïÿðýäæàííå: òýñöiðàâàííå íà ãýòàé âiäýàêàðöå íåáÿñïå÷íà"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid "Luxembourg"
-msgstr "ЛюкÑембург"
+msgid "Keyboard layout: %s\n"
+msgstr "Òûï êëàâiÿòóðû: %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
+msgid "Mouse type: %s\n"
+msgstr "Òûï ìûøû: %s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid "Level %s\n"
-msgstr "Узровень %s\n"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Syriac (phonetic)"
-msgstr "ÐрмÑнÑкi (фанетычны)"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Iran"
-msgstr "IранÑкi"
+msgid "Mouse device: %s\n"
+msgstr "Ìûø: %s\n"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid "Bus"
-msgstr "Прац."
+msgid "Monitor: %s\n"
+msgstr "Ìàíiòîð: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Iraq"
-msgstr ""
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "connecting to %s ..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+msgid "Monitor HorizSync: %s\n"
+msgstr "×àñö³íÿ ãàð.ðàçã. ìàíiòîðó: %s\n"
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "ПатÑнцыйны Ð°Ð´Ñ€Ð°Ñ Ð›Ð’Ð¡ канфлiктуе з бÑгучай канфiгурацыÑй %s!\n"
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Configuring..."
-msgstr "ÐаÑтройка IDE"
+msgid "Monitor VertRefresh: %s\n"
+msgstr "×àñö³íÿ âåðò.ðàçã. ìàíiòîðó: %s\n"
-#: ../../harddrake/v4l.pm:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
-msgstr ""
+msgid "Graphics card: %s\n"
+msgstr "Âiäýàêàðòà: %s\n"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid "Password (again)"
-msgstr "Паўтарыце пароль"
+msgid "Graphics memory: %s kB\n"
+msgstr "Âiäýàïàìÿöü: %s Êá\n"
-#: ../../standalone/drakfont:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Default desktop"
-msgstr "Па дамаўленню"
+msgid "Color depth: %s\n"
+msgstr "Ïàðàìåòðû ãëûáiíi êîëåðó: %s\n"
-#: ../../standalone/drakbug:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
-msgstr ""
+msgid "Resolution: %s\n"
+msgstr "Ïàìåðû ýêðàíó: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Venezuela"
-msgstr "ВенÑÑуÑла"
+msgid "XFree86 server: %s\n"
+msgstr "Ñåðâåð XFree86: %s\n"
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "IP address"
-msgstr "IP адраÑ"
+msgid "XFree86 driver: %s\n"
+msgstr "Ñåðâåð XFree86: %s\n"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "Выбар памераў"
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "Çàïóñê X ïðû ñòàðöå ñiñòýìû"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:62
msgid ""
-"List of data corrupted:\n"
-"\n"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
+"Ìîæíà íàñòðîiöü ñiñòýìó äëÿ à¢òàìàòû÷íàãà çàïóñêó X ïàñëÿ ñòàðòó ñiñòýìû.\n"
+"Æàäàåöå, êàá X ñòàðòàâࢠïðû ðýñòàðöå?"
-#: ../../fs.pm:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:73
msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
msgstr ""
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
+#: ../../Xconfig/various.pm_.c:85
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "ßêi òûï âàøàãà ISDN çëó÷ýííÿ?"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Choose another partition"
-msgstr "СтварÑнне новага раздзелу"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
+msgstr "Ïåðøû ñåêòàð çàãðóçà÷íàãà ðàçäçåëó"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Current user"
-msgstr "ПрынÑць карыÑтальнiка"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
+msgstr "Ïåðøû ñåêòàð ïðûëàäû (MBR)"
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Username"
-msgstr "IÐ¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальнiку:"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "Óñòàëÿâàííå SILO"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr ""
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
+msgstr "Êóäû âû æàäàåöå ¢ñòàëÿâàöü ïà÷àòêîâû çàãðóç÷ûê?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "ГайÑна"
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "Óñòàëÿâàííå LILO/GRUB"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "dhcpd Server Configuration"
-msgstr "ЗаканчÑнне наÑтройкi"
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
+msgstr "SILO"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Printer Name"
-msgstr "IÐ¼Ñ Ñ‡Ð°Ñ€Ð³i друку"
+#: ../../any.pm_.c:142
+msgid "Grub"
+msgstr "Grub"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Remove a module"
-msgstr "Ðдваротны парадак Ñтаронак"
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Password"
-msgstr "Пароль"
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "Ãàëî¢íûÿ îïöûi ïà÷àòêîâàãà çàãðóç÷ûêó"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Advanced Configuration"
-msgstr "ЗаканчÑнне наÑтройкi"
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+#, fuzzy
+msgid "Bootloader to use"
+msgstr "Ãàëî¢íûÿ îïöûi ïà÷àòêîâàãà çàãðóç÷ûêó"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr ""
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "Óñòàëÿâàííå çàãðóç÷ûêó"
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "Root"
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "Çàãðóçà÷íàÿ ïðûëàäà"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "ÐбÑрыце iÑнуючы RAID Ð´Ð»Ñ Ð´Ð°Ð´Ð°Ð½Ð½Ñ"
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "Êàìïàêòíà"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "ТурÑцкi (ÑучаÑÐ½Ð°Ñ \"Q\" мадÑль)"
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "êàìïàêòíà"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo message not found"
-msgstr ""
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "Âiäýà-ðýæûì"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
+msgstr "Çàòðûìêà ïåðàä çàãðóçêàé âîáðàçó ïà äàìà¢ëåííþ"
+
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
+msgid "Password"
+msgstr "Ïàðîëü"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
-msgstr ""
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "Ïà¢òàðûöå ïàðîëü"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
-msgstr ""
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "Àáìåæàâàííå îïöûÿ¢ êàìàíäíàãà ðàäêà"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Failed..."
-msgstr "Ðднаўленне з файлу"
+#: ../../any.pm_.c:171
+msgid "restrict"
+msgstr "àáìåæàâàííå"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr ""
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "À÷ûø÷àöü /tmp ïðû êîæíàé çàãðóçöû"
-#: ../../install_messages.pm:1
+#: ../../any.pm_.c:174
#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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 ""
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Ïàçíà÷öå äàêëàäíû ïàìåð RAM (çíîéäçåíà %d Má)"
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Default user"
-msgstr "Лакальны прынтÑÑ€"
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
+msgstr "Äàñòóïíà øìàò ïðîôiëÿ¢"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "Ïàçíà÷öå ïàìåð RAM ó Má"
+
+#: ../../any.pm_.c:182
msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
+"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
+"Îïöûÿ ``Àáìåæàâàííå îïöûÿ¢ êàìàíäíàãà ðàäêó'' íå âûêàðûñòî¢âàåööà áåç ïàðîëÿ"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Current interface configuration"
-msgstr "ÐаÑтройка злучÑÐ½Ð½Ñ Ð· IнтÑрнÑтам"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "Ïàñïðàáóéöå ÿø÷ý ðàç"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr ""
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "Ïàðîëi íå ñóïàäàþöü"
-#: ../../network/isdn.pm:1
-#, 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"
+#: ../../any.pm_.c:191
+msgid "Init Message"
msgstr ""
-"\n"
-"Калi вы маеце ISA карту, велiчынi на наÑтупным Ñкране павiнны быць "
-"Ñапраўднымi.\n"
-"\n"
-"Калi вы маеце PCMCIA карту, вы павiнны ведаць irq i io вашай карты.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Do not print any test page"
-msgstr "Друк Ñ‚ÑÑтавых Ñтаронак"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
msgstr ""
-"ГÑты пароль занадта проÑты (Ñго Ð´Ð°ÑžÐ¶Ñ‹Ð½Ñ Ð¿Ð°Ð²iнна быць не меней за %d лiтараў)"
-
-#: ../../standalone.pm:1
-#, fuzzy, c-format
-msgid "[keyboard]"
-msgstr "КлавiÑтура"
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Install List"
-msgstr "УÑталÑванне ÑiÑÑ‚Ñмы"
+#: ../../any.pm_.c:197
+#, fuzzy
+msgid "Default OS?"
+msgstr "Ïà äàìà¢ëåííþ"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#: ../../any.pm_.c:231
msgid ""
-"Change\n"
-"Restore Path"
-msgstr "Ðднаўленне з файлу"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
+"\n"
+"On which drive are you booting?"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 Кб"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
+#: ../../any.pm_.c:247
+msgid ""
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
+"Ó ìåíþ ìàþööà íàñòóïíûÿ ïóíêòû.\n"
+"Âû ìîæàöå äàäàöü ÿø÷ý, àëüáî çìÿíiöü iñíóþ÷ûÿ."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr ""
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "Äàäàöü"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Якi тып карты вы маеце?"
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "Çðîáëåíà"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr ""
+#: ../../any.pm_.c:257
+#, fuzzy
+msgid "Modify"
+msgstr "Çìÿíiöü RAID"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, fuzzy, c-format
-msgid "Security"
-msgstr "кучаравы"
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "ßêi òûï ïóíêòà æàäàåöå äàäàöü?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "Linux"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "Iíøàÿ ÀÑ (SunOS,...)"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Калi лаÑка, абÑрыце мову Ð´Ð»Ñ ÐºÐ°Ñ€Ñ‹ÑтаннÑ."
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "Iíøàÿ ÀÑ (MacOS,...)"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Unknown"
-msgstr "Ðгульны"
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "Iíøàÿ ÀÑ (windows...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr ""
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "Âîáðàç"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Network Configuration"
-msgstr "КанфiÐ³ÑƒÑ€Ð°Ñ†Ñ‹Ñ Ñеткi"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "Root"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>S"
-msgstr ""
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
+msgstr "Äàëó÷ûöü"
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"ПадключÑнне \n"
-" не праз D-канал (Ð²Ñ‹Ð»ÑƒÑ‡Ð°Ð½Ñ‹Ñ ÐºÐ°Ð½Ð°Ð»Ñ‹)"
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "×ûòàííå-çàïiñ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "Òàáëiöà"
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Notice"
-msgstr "гальштук"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "Íåíàäçåéíà"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr ""
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "Ìåòêà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "Ïà äàìà¢ëåííþ"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "What type of partitioning?"
-msgstr "Якi тып друкаркi вы маеце?"
+#: ../../any.pm_.c:316
+#, fuzzy
+msgid "Initrd-size"
+msgstr "Initrd"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-" "
+#: ../../any.pm_.c:318
+msgid "NoVideo"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Interface"
-msgstr "Сеткавы iнтÑрфейÑ"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Multisession CD"
-msgstr "ÐœÑƒÐ»ÑŒÑ‚Ñ‹Ð¼ÐµÐ´Ñ‹Ñ - гук"
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "Âûäàëiöü çàïiñ"
-#: ../../modules/parameters.pm:1
-#, fuzzy, c-format
-msgid "comma separated strings"
-msgstr "Фарматаванне раздзелаў"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr ""
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Messages"
-msgstr "Праверка партоў"
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "Ïóñòàÿ ìåòêà íå äàçâàëÿåööà"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "POP and IMAP Server"
-msgstr "Ñервер"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Mexico"
-msgstr "Порт мышы"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Model stepping"
-msgstr "фарматаванне"
+#: ../../any.pm_.c:330
+#, fuzzy
+msgid "You must specify a root partition"
+msgstr "Âû ïàâiííû ìåöü ðàçäçåë swap"
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
-msgstr "Руанда"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "Ãýòàÿ ìåòêà ¢æî âûêàðûñòî¢âàåööà"
-#: ../../lang.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Switzerland"
-msgstr "ЩвÑйцарыÑ"
+msgid "Found %s %s interfaces"
+msgstr "Çíîéäçåíû %s %s iíòýðôåéñû"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr "БрунÑÑ– ДураÑалÑм"
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "Öi ¸ñöü ó âàñ iíøû?"
-#: ../../modules/interactive.pm:1
+#: ../../any.pm_.c:642
#, c-format
msgid "Do you have any %s interfaces?"
-msgstr "Цi Ñ‘Ñць у Ð²Ð°Ñ %s iнтÑрфейÑ?"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "КанфiÐ³ÑƒÑ€Ð°Ñ†Ñ‹Ñ Ñеткi"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Опцыi аддаленага прынтÑру lpd"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Configure Internet Access..."
-msgstr "ÐаÑтройка Ñлужбаў"
+msgstr "Öi ¸ñöü ó âàñ %s iíòýðôåéñ?"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Выбар пакетаў Ð´Ð»Ñ ÑžÑталÑваннÑ"
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "Íå"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Norway"
-msgstr "ÐарвежÑкi"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "Òàê"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Delete profile"
-msgstr "ÐбÑрыце файл"
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "Ãë. àïiñàííå àáñòàëÿâàííÿ"
-#: ../../keyboard.pm:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Danish"
-msgstr "Дацкi"
+msgid "Installing driver for %s card %s"
+msgstr "Óñòàëÿâàííå äðàéâåðó äëÿ %s êàðòû %s"
-#: ../../services.pm:1
+#: ../../any.pm_.c:663
#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
+msgid "(module %s)"
+msgstr "(ìîäóëü %s)"
-#: ../../network/network.pm:1
+#: ../../any.pm_.c:674
#, 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)."
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-"Калi лаÑка, увÑдзiце IP канфiгурацыю Ð´Ð»Ñ Ð²Ð°ÑˆÐ°Ð¹ машыны.\n"
-"Кожны пункт павiнен быць запоўнены Ñк IP Ð°Ð´Ñ€Ð°Ñ Ñž дзеÑÑткова-кропкавай \n"
-"натацыi (напрыклад, 1.2.3.4)."
-#: ../../help.pm:1
+#: ../../any.pm_.c:680
#, 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."
-msgstr ""
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
msgstr ""
+"Âû íå ìîæàöå çàäàöü îïöûi ìîäóëþ %s.\n"
+"Îïöûi - ó ôàðìàöå ``iìÿ=çíà÷ýííå iìÿ2=çíà÷ýííå2 ...''.\n"
+"Íàïðûêëàä, ``io=0x300 irq=7''"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Bulgaria"
-msgstr "МадьÑÑ€Ñкi"
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "Îïöûi ìîäóëþ:"
-#: ../../standalone/drakbackup:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "Tuesday"
-msgstr "Ðўторак"
+msgid "Which %s driver should I try?"
+msgstr "ßêi äðàéâåð %s ïàñïðàáàâàöü?"
-#: ../../harddrake/data.pm:1
+#: ../../any.pm_.c:703
#, c-format
-msgid "Processors"
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. Would you like to "
+"specify\n"
+"extra options for it or allow the driver to probe your machine for the\n"
+"information it needs? Occasionally, probing will hang a computer, but it "
+"should\n"
+"not cause any damage."
msgstr ""
+"Ó íåêàòîðûõ âûïàäêàõ %s äðàéâåðó ïàòðýáíà íåêàòîðàÿ äàäàòêîâàÿ iíôàðìàöûÿ,\n"
+"àëå çâû÷àéíà ãýòà íå ïàòðàáóåööà. Öi íå æàäàåöå âû çàäàöü äëÿ ÿãî\n"
+"äàäàòêîâûÿ îïöûi, öi äàçâîëiöå äðàéâåðó ïðàòýñöiðàâàöü ìàøûíó\n"
+"¢ ïîøóêàõ íåàáõîäíàé iíôàðìàöûi? Ìàã÷ûìà, òýñöiðàâàííå ïðûâÿäçå\n"
+"äà ñïûíåííÿ êàìï'þòýðó, àëå ÿíî íi÷îãà íå ñàïñóå."
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr ""
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
+msgstr "À¢òàïîøóê"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "No NIC selected!"
-msgstr "Размеркаванне"
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "Ïàçíà÷öå ïàðàìåòðû"
-#: ../../network/netconnect.pm:1
+#: ../../any.pm_.c:719
#, 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."
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
+"Çàãðóçêà ìîäóëþ %s íå ïðàéøëà.\n"
+"Æàäàåöå ïàñïðàáàâàöü ç iíøûìi ïàðàìåòðàìi?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup Other files..."
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "IP Ñервера SMB"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Таблiца размÑшчÑÐ½Ð½Ñ Ð¿Ñ€Ñ‹Ð»Ð°Ð´Ñ‹ %s будзе запiÑана на дыÑк!"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Installing HPOJ package..."
-msgstr "УÑталÑванне пакету %s"
-
-#: ../../any.pm:1
-#, 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"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
msgstr ""
-"З дапамогай загрузачнага дыÑку вы зможаце загружаць Linux такÑама Ñк i \n"
-"Ñтандартным загрузчыкам. ГÑта можа быць ÑкаÑна, калi вы не жадаеце \n"
-"ÑžÑталёўваць LILO (цi Grub), калi iÐ½ÑˆÐ°Ñ Ð°Ð¿ÐµÑ€Ð°Ñ†Ñ‹Ð¹Ð½Ð°Ñ ÑiÑÑ‚Ñма выдалÑе LILO,\n"
-"цi LILO не можа працаваць у вашай канфiгурацыi. Загрузачны дыÑк такÑама "
-"можа\n"
-"быць выкарыÑтаны ÑумеÑна з рамонтнай дыÑкетай Mandrake Linux, ÑÐºÐ°Ñ Ð²ÐµÐ»ÑŒÐ¼i \n"
-"палегчыць выратаванне ÑiÑÑ‚Ñмы паÑÐ»Ñ Ð·Ð±Ð¾ÑŽ.\n"
-"\n"
-"Жадаеце Ñтварыць загрузачны дыÑк зараз?\n"
-"%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
msgstr ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Latvian"
-msgstr "Размеркаванне"
+#: ../../any.pm_.c:738
+msgid "access to network tools"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
+#: ../../any.pm_.c:739
+msgid "access to compilation tools"
msgstr ""
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Retry"
-msgstr "Ðднаўленне з файлу"
+#: ../../any.pm_.c:744
+#, c-format
+msgid "(already added %s)"
+msgstr "(óæî äàäàäçåíà %s)"
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Module name"
-msgstr "Опцыi модулю:"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "Ãýòû ïàðîëü çàíàäòà ïðîñòû"
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Start at boot"
-msgstr "Стварыць загр. дыÑк"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
+msgstr "Êàëi ëàñêà, óâÿäçiöå iìÿ êàðûñòàëüíiêó"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
+#: ../../any.pm_.c:751
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
+"Iìÿ êàðûñòàëüíiêó ïàâiííà çìÿø÷àöü ëiòàðû òîëüêi íà íiæíiì ðýãiñòðû, \n"
+"ëi÷áû, `-' i `_'"
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "Першы Ñектар прылады (MBR)"
+#: ../../any.pm_.c:752
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Ãýòà iìÿ êàðûñòàëüíiêó ¢æî äàäàäçåíà"
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "Эль Сальвадор"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "Ãýòà iìÿ êàðûñòàëüíiêó ¢æî äàäàäçåíà"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
-msgstr ""
+#: ../../any.pm_.c:757
+msgid "Add user"
+msgstr "Äàäàöü êàðûñòàëüíiêà"
-#: ../../standalone/harddrake2:1
+#: ../../any.pm_.c:758
#, c-format
-msgid "DVD"
+msgid ""
+"Enter a user\n"
+"%s"
msgstr ""
+"Óâÿäçiöå iìÿ êàðûñòàëüíiêó\n"
+"%s"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
-msgstr ""
+#: ../../any.pm_.c:759
+msgid "Accept user"
+msgstr "Ïðûíÿöü êàðûñòàëüíiêà"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr ""
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "Óëàñíàå iìÿ"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Ваш ÑiÑÑ‚Ñмны гадзiннiк уÑталÑваны на GMT?"
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "Iìÿ êàðûñòàëüíiêó:"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "ПаÑпрабуем выратаваць таблiцу раздзелаў"
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "Àáàëîíêà:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "Ïiêòàãðàìà"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
-msgstr ""
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "À¢òàìàòû÷íû ¢âàõîä ó ñiñòýìó"
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../any.pm_.c:804
+#, fuzzy
msgid ""
-"Entries you'll have to fill:\n"
-"%s"
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
+"Ìîæíà íàñòðîiöü ñiñòýìó äëÿ à¢òàìàòû÷íàãà ¢âàõîäó ¢ ñiñòýìó äëÿ\n"
+"àäíàãî êàðûñòàëüíiêà. Êàëi Âû íå æàäàåöå ãýòàãà, íàöiñíiöå \"Àäìåíà\"."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "Àáÿðûöå àñíî¢íàãà êàðûñòàëüíiêà:"
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Ðемагчыма запуÑціць live upgrade !!!\n"
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
+msgstr "Àáÿðûöå ìýíýäæàð âîêíà¢:"
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "IмÑ: "
+#: ../../any.pm_.c:824
+#, fuzzy
+msgid "Please choose a language to use."
+msgstr "Êàëi ëàñêà, àáÿðûöå ìîâó äëÿ êàðûñòàííÿ."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
-msgstr ""
+#: ../../any.pm_.c:826
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
+msgstr "Âû ìîæàöå àáðàöü ³íøûÿ ìîâû, ÿêiÿ áóäóöü äàñòóïíû ïàñëÿ ¢ñòàëÿâàííÿ"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 мiльёнаў колераў (24 бiты)"
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "Óñ¸"
-#: ../../any.pm:1
-#, fuzzy, c-format
+#: ../../any.pm_.c:961
+#, fuzzy
msgid "Allow all users"
-msgstr "Дадаць карыÑтальнiка"
+msgstr "Äàäàöü êàðûñòàëüíiêà"
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr ""
+#: ../../any.pm_.c:961
+#, fuzzy
+msgid "No sharing"
+msgstr "×àêàåööà"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "ЗмÑненне памераў"
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
+#, fuzzy, c-format
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:973
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Cable connection"
-msgstr "ЗлучÑнне прынтÑру"
-
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "User"
-msgstr "IÐ¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальнiку:"
-
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
+msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "mkraid не працаздольны"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Name"
-msgstr "IмÑ: "
+#: ../../any.pm_.c:987
+msgid ""
+"Would you like to allow users to share some of their directories?\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror "
+"and nautilus.\n"
+"\n"
+"\"Custom\" permit a per-user granularity.\n"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
+#: ../../any.pm_.c:1003
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Sending files..."
-msgstr "Захаванне ў файл"
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
+msgstr "Ñàðäý÷íà çàïðàøàåì ó Crackers"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "Iўрыт (фанетычны)"
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Çóñ³ì ñëàáû"
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
-msgstr ""
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
+msgstr "Ñòàíäàðòíû"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "URI прынтÑру"
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Âûñîêi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr ""
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+#, fuzzy
+msgid "Higher"
+msgstr "Âûñîêi"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "Ðумар Ñ‚Ñлефону"
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "Ïàðàíàiäàëüíû"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
+#: ../../any.pm_.c:1061
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+"but very sensitive: it must not be used for a machine connected to others\n"
+"or to the Internet. There is no password access."
msgstr ""
+"Ãýòû óçðîâåíü íåàáõîäíà âûêàðûñòî¢âàöü ç àñöÿðîãàé. Ñiñòýìà áóäçå ïðàñöåé\n"
+"ó êàðûñòàííi, àëå i áîëüø ÷óòíàé: ãýòû óçðîâåíü áÿñïåêi íåëüãà "
+"âûêàðûñòî¢âàöü\n"
+"íà ìàøûíàõ, ÿêiÿ äàëó÷àíû äà ñåòêi öi äà Internet. Óâàõîä íå àáàðîíåíû "
+"ïàðîëåì."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer name, description, location"
-msgstr "ЗлучÑнне прынтÑру"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
+#: ../../any.pm_.c:1064
+msgid ""
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
+"Ïàðîëü çàðàç óêëþ÷àíû, àëå âûêàðûñòàííå êàìï'þòýðó ¢ ÿêàñöi ñåòêàâàãà\n"
+"òàêñàìà íå ðýêàìåíäàâàíà."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
+#: ../../any.pm_.c:1065
+#, fuzzy
+msgid ""
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
+"Ãýòà ñòàíäàðòíû óçðîâåíü áÿñïåêi, ÿêi ðýêàìåíäàâàíû äëÿ êàìï'þòýðó,\n"
+"ÿêi äàëó÷àíû äà Internet ó ÿêàñöi êëiåíòó. Äàäàíûÿ íîâûÿ ïðàâåðêi\n"
+"áÿñïåêi."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback"
-msgstr "Ð’iÑ€Ñ‚ÑƒÐ°Ð»ÑŒÐ½Ð°Ñ Ñ„Ð°Ð¹Ð»Ð°Ð²Ð°Ñ ÑiÑÑ‚Ñма (loopback)"
-
-#: ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "West Europe"
-msgstr "Еўропа"
+#: ../../any.pm_.c:1066
+msgid ""
+"There are already some restrictions, and more automatic checks are run every "
+"night."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On CD-R"
+#: ../../any.pm_.c:1067
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
+"connections from many clients. Note: if your machine is only a client on the "
+"Internet, you should choose a lower level."
msgstr ""
+"Íà ãýòàì óçðî¢íå áÿñïåêi ìàã÷ûìà âûêàðûñòàííå ñiñòýìû ¢ ÿêàñöi\n"
+"ñåðâåðó. Óçðîâåíü áÿñïåêi äàñòàòêîâà âûñîêi äëÿ ðàáîòû\n"
+"ñåðâåðó, ÿêi äàïóñêàå çëó÷ýííi ñà øìàòëiêiìi êëiåíòàìi."
-#: ../../standalone.pm:1
-#, c-format
+#: ../../any.pm_.c:1070
+#, fuzzy
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"
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
+"Ïðûìàþööà ¢ëàñöiâàñöi 4 óçðî¢íÿ, àëå çàðàç ñiñòýìà ïî¢íàñöþ çà÷ûíåíà.\n"
+"Ïàðàìåòðû áÿñïåêi ¢ñòàíî¢ëåíû íà ìàêñiìóì."
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Harddrake2 version %s"
-msgstr "ВызначÑнне жорÑткага дыÑку"
+#: ../../any.pm_.c:1076
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Îïöûi"
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Preferences"
-msgstr "Параметры: "
+#: ../../any.pm_.c:1077
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Óçðîâåíü áÿñïåêi"
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr "Швазіланд"
+#: ../../any.pm_.c:1080
+#, fuzzy
+msgid "Security level"
+msgstr "Íàñòðîéêi ¢çðî¢íÿ áÿñïåêi"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "ДамініканÑÐºÐ°Ñ Ð ÑÑпубліка"
+#: ../../any.pm_.c:1082
+#, fuzzy
+msgid "Use libsafe for servers"
+msgstr "Àáÿðûöå äàäàòêîâûÿ íàñòðîéêi äëÿ ñåðâåðà"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
+#: ../../any.pm_.c:1083
+msgid ""
+"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Choose color"
-msgstr "ÐбÑрыце манiтор"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Syriac"
-msgstr "паÑлÑдоўнаÑ"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
+msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
+#: ../../any.pm_.c:1166
+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 ""
-#: ../../help.pm:1
-#, fuzzy, c-format
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
+#, 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!"
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
msgstr ""
-"ÐбÑрыце жорÑкі дыÑк Ñкі жадаеце ачыÑціць Ð´Ð»Ñ ÑžÑталÑваннÑ\n"
-"новага раздзелу Mandrake Linux. Будзце ўважлівыÑ, уÑе Ð´Ð°Ð´Ð·ÐµÐ½Ñ‹Ñ Ð½Ð° дыÑку "
-"будуць\n"
-" знішчаны і іх немагчыма будзе аднавіць."
#. -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
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Welcome to GRUB the operating system chooser!"
+
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:986
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Ð—Ð²Ñ‹Ñ‡Ð°Ð¹Ð½Ð°Ñ Ð¼Ñ‹Ñˆ з 2 кнопкамі"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr ""
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Press enter to boot the selected OS, 'e' to edit the"
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr ""
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
+#: ../../bootloader.pm_.c:995
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
-msgstr ""
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
+msgstr "Íå õàïàå äûñêàâàé ïðàñòîðû ¢ /boot"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet access"
-msgstr ""
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "Ïðàöî¢íû ñòîë"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"y coordinate of text box\n"
-"in number of characters"
-msgstr ""
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "Ñòàðòàâàå ìåíþ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
+#: ../../bootloader.pm_.c:1120
+#, fuzzy, c-format
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "Êóäû âû æàäàåöå ¢ñòàëÿâàöü ïà÷àòêîâû çàãðóç÷ûê?"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr ""
+#: ../../bootlook.pm_.c:53
+#, fuzzy
+msgid "Boot Style Configuration"
+msgstr "Íàñòðîéêà ìàäýìó"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Друк Ñ‚ÑÑтавых Ñтаронак"
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+#, fuzzy
+msgid "/_File"
+msgstr "Ôàéëû:\n"
-#: ../../standalone/drakbackup:1
-#, 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."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Ужо Ñ‘Ñць раздзел з пунктам манцiÑ€Ð°Ð²Ð°Ð½Ð½Ñ %s\n"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
msgstr ""
-#: ../../help.pm:1
-#, fuzzy, 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''."
-msgstr ""
-"У гÑтым пункце, вы павінны абраць дзе на вашым жорÑкім \n"
-"дыÑку уÑталÑваць аперацыйную ÑÑ–ÑÑ‚Ñму Mandrake Linux. Калі дыÑк пуÑты\n"
-"альбо ÑžÑÑ‚Ð°Ð»Ñ‹Ð²Ð°Ð½Ð°Ñ Ð°Ð¿ÐµÑ€Ð°Ñ†Ñ‹Ð¹Ð½Ð°Ñ Ð°Ð¿ÐµÑ€Ð°Ñ†Ñ‹Ð¹Ð½Ð°Ñ ÑÑ–ÑÑ‚Ñма выкарыÑтоўвае ÑžÑÑŽ\n"
-"дыÑкавую праÑтору, вы павінны разьбіць Ñго на раздзелы. У аÑноўным,\n"
-"разбіццё раздзелаў жорÑкага дыÑку Ñкладаецца з лагічнага дзÑÐ»ÐµÐ½Ð½Ñ Ñго\n"
-"дыÑкавай праÑторы Ð´Ð·ÐµÐ»Ñ ÑžÑталÑÐ²Ð°Ð½Ð½Ñ Ð²Ð°ÑˆÐ°Ð¹ новай ÑÑ–ÑÑ‚Ñмы Mandrake Linux.\n"
-"\n"
-"Таму Ñк вынікі Ñ€Ð°Ð·Ð±Ñ–Ñ†Ñ†Ñ Ñ€Ð°Ð·Ð´Ð·ÐµÐ»Ð°Ñž звычайна незваротныÑ, гÑты працÑÑ \n"
-"можа быць пужаючым Ñ– напружаным, калі вы невопытны карыÑтальнік. ГÑты\n"
-"майÑтар Ñпрашчае гÑты працÑÑ. Перад тым Ñк пачаць звÑрніцеÑÑ, калі\n"
-"лаÑка, да даведкі.\n"
-"\n"
-"Вам патрÑбна, Ñама мала, два раздзелы. Першы непаÑÑ€Ñдна Ð´Ð»Ñ Ð°Ð¿ÐµÑ€Ð°Ñ†Ñ‹Ð¹Ð½Ð°Ð¹\n"
-"ÑÑ–ÑÑ‚Ñмы, Ñ– другі Ð´Ð»Ñ Ð²Ñ–Ñ€Ñ‚ÑƒÐ°Ð»ÑŒÐ½Ð°Ð¹ памÑці (Swap - раздзел).\n"
-"\n"
-"Калі раздзелы ўжо вызначаны (у папÑÑ€ÑднÑе ÑžÑталÑванне ці іншым \n"
-"інÑтрумантам вызначÑÐ½Ð½Ñ Ñ€Ð°Ð·Ð´Ð·ÐµÐ»Ð°Ñž), вы павінны абраць тыÑ, ÑÐºÑ–Ñ Ð¶Ð°Ð´Ð°ÐµÑ†Ðµ\n"
-"выкарыÑтоўваць Ð´Ð»Ñ ÑžÑталÑÐ²Ð°Ð½Ð½Ñ ÑÑ–ÑÑ‚Ñмы.\n"
-"\n"
-"\n"
-"Калі раздзелы не былі вызначаны, вы павінны Ñ–Ñ… Ñтварыць. Каб зрабіць \n"
-"гÑта, ÑкарыÑтайце майÑтра, даÑтупнага вышÑй. У залежнаÑці ад \n"
-"канфігурацыі жорÑткага дыÑку, могжа быць зроблена наÑтупнае:\n"
-"\n"
-"* ВыкарыÑтанне Ñ–Ñнуючага раздзелу: майÑтар знайшоў адзін ці некалькі.\n"
-"Ñ–Ñнуючых раздзелаў на вашым жорÑкім дыÑку. Калі вы жадаеце Ñ–Ñ… захаваць,\n"
-"абÑрыце гетую опцыю.\n"
-"\n"
-"\n"
-"* ÐŸÐ¾ÑžÐ½Ð°Ñ Ð°Ñ‡Ñ‹Ñтка дыÑку: абÑрыце гÑта, калі вы жадаеце выдаліць уÑÐµÐ´Ð°Ð´Ð·ÐµÐ½Ñ‹Ñ Ñ– "
-"раздзелы ÑÐºÑ–Ñ Ñ–Ñнуюць\n"
-" на вашым дыÑку Ñ– замÑніць на Mandrake Linux. Будзце уважлівы з гÑтайопцыÑй, "
-"бо гÑты працÑÑ Ð½ÐµÐ·Ð²Ð°Ñ€Ð¾Ñ‚Ð½Ñ‹.\n"
-"\n"
-"\n"
-"* ВыкарыÑтанне вольнай праÑторы на раздзеле Windows: калі MicrosoftWindows "
-"уÑталÑвана на вашым жорÑкім\n"
-" дыÑку Ñ– выкарыÑтоўвае ÑžÑÑŽ даÑтупную праÑтору, вы павінны Ñтварыцьвольную "
-"праÑтору Ð´Ð»Ñ Ð´Ð°Ð´Ð·ÐµÐ½Ñ‹Ñ… Linux\n"
-"Каб зрабіць гÑта, вы можаце выдалÑць ваш раздзел Windows Ñ– дадзеныÑ(гл."
-"\"ÐчыÑтка уÑÑго дыÑку\" альбо\n"
-" \"РÑжым ÑкÑперту\") альбо змÑніць памеры вашага раздзелу WindowsЗмÑненне "
-"памераў можа быць выканана\n"
-" без Ñтраты дадзеных. ГÑÑ‚Ð°Ñ Ð¾Ð¿Ñ†Ñ‹Ñ Ñ€Ñкамендуецца, калі вы "
-"жадаецевыкарыÑтоўваць Mandrake Linux Ñ–\n"
-" Microsoft Windows на адным Ñ– тым жа камп'ÑŽÑ‚Ñры.\n"
-"\n"
-" Перад выбарам гÑтага, калі лаÑка, зьвÑрніце ўвагу, на тое, штоколькаÑьць "
-"даÑтупнай вольнай\n"
-" праÑторы пад Microsoft Windows зменшыцца.\n"
-"\n"
-"\n"
-"* РÑжым ÑкÑперту: вы можаце абраць гÑтую опцыю, калі вы жадаецеразбіць "
-"раздзелы улаÑна рукамі.\n"
-" Будзце ÑžÐ²Ð°Ð¶Ð»Ñ–Ð²Ñ‹Ñ Ð°Ð±Ñ–Ñ€Ð°ÑŽÑ‡Ñ‹ гÑта. ГÑÑ‚Ð°Ñ Ð¾Ð¿Ñ†Ñ‹Ñ Ð¼Ð°Ð³ÑƒÑ‚Ð½Ð°Ñ Ð°Ð»Ðµ даволінебÑÑпечнаÑ, "
-"вы можаце\n"
-" лёгка згубіць Ñвае дадзеныÑ. Таму не абірайце гÑтую опцыю калі выне ведаеце "
-"што робіце."
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Ukraine"
-msgstr "УкраiнÑкi"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Application:"
-msgstr "Размеркаванне"
-
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "External ISDN modem"
-msgstr "Ð£Ð½ÑƒÑ‚Ñ€Ð°Ð½Ð°Ñ ISDN карта"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Ваш выбар? (змоўчанне %s) "
+#: ../../bootlook.pm_.c:83
+#, fuzzy
+msgid "NewStyle Monitor"
+msgstr "Ìàíiòîð"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr ""
+#: ../../bootlook.pm_.c:84
+#, fuzzy
+msgid "Traditional Monitor"
+msgstr "Çìÿíiöü ìàíiòîð"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
msgstr ""
-"ТÑÑÑ‚Ð°Ð²Ñ‹Ñ Ñтаронкi адпраўлены дÑману друку.\n"
-"Перад тым, Ñк прынтÑÑ€ запрацуе, можа прайÑцi пÑўны чаÑ.\n"
-"Ð¡Ñ‚Ð°Ñ‚ÑƒÑ Ð´Ñ€ÑƒÐºÑƒ:\n"
-"%s\n"
-"\n"
-"Ðн працуе нармальна?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "and one unknown printer"
-msgstr "IÐ¼Ñ Ð´Ñ€ÑƒÐºÐ°Ñ€Ðºi"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "Ireland"
-msgstr "IÑландÑкi"
+#: ../../bootlook.pm_.c:89
+#, fuzzy
+msgid "Lilo/grub mode"
+msgstr "Ðýæûì çëó÷ýííÿ"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid " Restore Configuration "
-msgstr "КанфiÐ³ÑƒÑ€Ð°Ñ†Ñ‹Ñ Ñеткi"
+#: ../../bootlook.pm_.c:89
+#, fuzzy
+msgid "Yaboot mode"
+msgstr "Çàãðóçà÷íàÿ ïðûëàäà"
-#: ../../Xconfig/test.pm:1
-#, fuzzy, c-format
-msgid "Is this the correct setting?"
-msgstr "ГÑта дакладна?"
+#: ../../bootlook.pm_.c:138
+#, fuzzy
+msgid "Install themes"
+msgstr "Óñòàëÿâàííå ñiñòýìû"
-#: ../../help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:139
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."
+"Display theme\n"
+"under console"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Wizard Configuration"
-msgstr "ÐаÑтройка"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Autoprobe"
-msgstr "Ðўтапошук"
+#: ../../bootlook.pm_.c:140
+#, fuzzy
+msgid "Create new theme"
+msgstr "Ñòâàðýííå íîâàãà ðàçäçåëó"
-#: ../../security/help.pm:1
+#: ../../bootlook.pm_.c:184
#, 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 "Backup %s to %s.old"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:187
#, c-format
-msgid "Backup system files..."
+msgid "Copy %s to %s"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Ðемагчыма выкарыÑтоўваць broadcast без дамена NIS"
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+msgstr "Ïàìûëêà"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell history size"
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: ../../bootlook.pm_.c:222
#, fuzzy, c-format
-msgid "drakfloppy"
-msgstr "Ðднаўленне з дыÑкеты"
+msgid "Write %s"
+msgstr "Ñåðâåð XFree86 %s"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../bootlook.pm_.c:224
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"
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configured on other machines"
-msgstr "ÐаÑтройка Ñлужбаў"
-
-#: ../../standalone/harddrake2:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../lang.pm:1
+#: ../../bootlook.pm_.c:238
#, c-format
-msgid "Peru"
-msgstr "Перу"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid " on device: %s"
-msgstr "Мыш: %s\n"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "Выдалiць Windows(TM)"
-
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "ЗапуÑкае i прыпынÑе X Font Server пры загрузцы i выключÑннi."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../bootlook.pm_.c:244
msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "МадагаÑкар"
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+#, fuzzy
+msgid "Notice"
+msgstr "ãàëüøòóê"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
-msgstr ""
+#: ../../bootlook.pm_.c:251
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Êëàñ óñòàëÿâàííÿ"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:259
#, fuzzy, c-format
-msgid "System"
-msgstr "Mouse Systems"
+msgid ""
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
+msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå"
-#: ../../any.pm:1 ../../help.pm:1
-#, fuzzy, c-format
-msgid "Do you want to use this feature?"
-msgstr "Ð’Ñ‹ жадаеце выкарыÑтоўваць aboot?"
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+#, fuzzy
+msgid "Configure"
+msgstr "Íàñòðîéêà X Window"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr ""
+#: ../../bootlook.pm_.c:268
+#, fuzzy
+msgid "Splash selection"
+msgstr "Àñàáiñòû âûáàð ïàêåòà¢"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:271
+#, fuzzy
+msgid "Themes"
+msgstr "Äðýâà"
+
+#: ../../bootlook.pm_.c:273
msgid ""
"\n"
-"- Options:\n"
-msgstr "Опцыi"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Password required"
-msgstr "Пароль"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d minutes"
-msgstr "%d хвiлiн"
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Ð’iдÑакарта: %s"
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV transfer failed!"
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "ÐаÑтройка XFree"
+#: ../../bootlook.pm_.c:316
+msgid "System mode"
+msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Choose action"
-msgstr "ÐбÑрыце дзеÑнне"
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "French Polynesia"
-msgstr "ФранцуÑÐºÐ°Ñ ÐŸÐ°Ð»Ñ–Ð½ÑзыÑ"
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
+msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
+#: ../../common.pm_.c:107
+msgid "GB"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+#: ../../common.pm_.c:107
+msgid "KB"
msgstr ""
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "УÑталÑванне драйверу Ð´Ð»Ñ %s карты %s"
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "Ìá"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
+#: ../../common.pm_.c:115
+msgid "TB"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Enable Server"
-msgstr "Сервер друку"
-
-#: ../../keyboard.pm:1
+#: ../../common.pm_.c:123
#, c-format
-msgid "Ukrainian"
-msgstr "УкраiнÑкi"
+msgid "%d minutes"
+msgstr "%d õâiëií"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
+#: ../../common.pm_.c:125
+msgid "1 minute"
+msgstr "1 õâiëiíà"
-#: ../../standalone/drakperm:1
+#: ../../common.pm_.c:127
#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "УÑтаўце дыÑкету Ñž дыÑкавод %s"
+msgid "%d seconds"
+msgstr "%d ñåêóíäà¢"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Local network(s)"
-msgstr "ÑÐµÑ‚ÐºÐ°Ð²Ð°Ñ ÐºÐ°Ñ€Ñ‚Ð° не знойдзена"
+#: ../../common.pm_.c:172
+#, fuzzy
+msgid "Can't make screenshots before partitioning"
+msgstr "Äàäàöü ðàçäçåë íåìàã÷ûìà"
-#: ../../help.pm:1
+#: ../../common.pm_.c:179
#, fuzzy, c-format
-msgid "Remove Windows"
-msgstr "Выдалiць Windows(TM)"
+msgid "Screenshots will be available after install in %s"
+msgstr "Âû ìîæàöå àáðàöü ³íøûÿ ìîâû, ÿêiÿ áóäóöü äàñòóïíû ïàñëÿ ¢ñòàëÿâàííÿ"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+msgid "France"
+msgstr "Ôðàíöûÿ"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Firewire controllers"
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
msgstr ""
-#: ../../help.pm:1
-#, fuzzy, 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!"
-msgstr ""
-"LILO (ад LInux LOader) i Grub - гÑта загрузчыкi. Яны могуць загрузiць "
-"другую\n"
-"GNU/Linux цi любую iншую аперацыйную ÑiÑÑ‚Ñму, уÑталÑваную на кампутары.\n"
-"Звычайна, гÑÑ‚Ñ‹Ñ iÐ½ÑˆÑ‹Ñ Ð°Ð¿ÐµÑ€Ð°Ñ†Ñ‹Ð¹Ð½Ñ‹Ñ ÑiÑÑ‚Ñмы карÑктна вызначаюцца i\n"
-"ÑžÑталёўваюцца. Калi гÑта не атрымалаÑÑ, то вы можаце дадаць любы запiÑ\n"
-"ÑамаÑтойна. Будзьце ўпÑўнены, што вы задалi карÑÐºÑ‚Ð½Ñ‹Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ñ‹.\n"
-"\n"
-"\n"
-"ТакÑама вы можаце пажадаць i не дабаўлÑць iÐ½ÑˆÑ‹Ñ Ð°Ð¿ÐµÑ€Ð°Ñ†Ñ‹Ð¹Ð½Ñ‹Ñ ÑiÑÑ‚Ñмы.\n"
-"У такiм выпадку патрÑбна выдалiць Ð°Ð´Ð¿Ð°Ð²ÐµÐ´Ð½Ñ‹Ñ Ð·Ð°Ð¿iÑÑ‹. Ðле ж тады вам \n"
-"патрÑбна будзе Ð·Ð°Ð³Ñ€ÑƒÐ·Ð°Ñ‡Ð½Ð°Ñ Ð´Ñ‹Ñкета, каб загрузiцца!"
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+#, fuzzy
+msgid "Belgium"
+msgstr "Áåëüãiéñêi"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "System mode"
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Ð”Ð»Ñ Ð´Ñ€ÑƒÐºÑƒ на прынтÑры NetWare неабходна пазначыць iÐ¼Ñ Ñерверу друку NetWare "
-"(не заўÑёды Ñупадае з iменем у Ñетцы TCP/IP) i iÐ¼Ñ Ñ‡Ð°Ñ€Ð³i друку, ÑÐºÐ°Ñ "
-"адпавÑдае абранаму прынтÑру, а такÑама iÐ¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальнiку i пароль."
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+msgid "Germany"
+msgstr "Íÿìåöêi"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Netmask:"
-msgstr "МаÑка Ñеткi"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#, fuzzy
+msgid "Greece"
+msgstr "Ãðý÷àñêi"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
-msgstr ""
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+#, fuzzy
+msgid "Norway"
+msgstr "Íàðâåæñêi"
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "Далучыць"
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+#, fuzzy
+msgid "Sweden"
+msgstr "Ãë."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "Italy"
+msgstr "Iòàëüÿíñêi"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+#, fuzzy
+msgid "Austria"
+msgstr "ïàñëÿäî¢íàÿ"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Сеткавы прынтÑÑ€ (TCP/Socket)"
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../diskdrake/dav.pm_.c:19
msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
+"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 ""
-"Калi лаÑка, абÑрыце Ñеткавы адаптар, Ñкі будзе выкарыÑтаны Ð´Ð»Ñ Ð´Ð°Ð»ÑƒÑ‡ÑÐ½Ð½Ñ Ð´Ð° "
-"вашай лакальнай Ñеткi."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
-msgstr ""
+#: ../../diskdrake/dav.pm_.c:27
+msgid "New"
+msgstr "Íîâû"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Калi лаÑка, абÑрыце тып клавiÑтуры."
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Ðàçìàíöiðàâàöü"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "URI прынтÑру"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Ìàíöiðàâàííå"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not erasable media!"
-msgstr ""
+#: ../../diskdrake/dav.pm_.c:65
+#, fuzzy
+msgid "Server"
+msgstr "ñåðâåð"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "на аÑнове Ñ‚Ñрмiналу"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Êðîïêà ìàíöiðàâàííÿ"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr ""
+#: ../../diskdrake/dav.pm_.c:85
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Êàë³ ëàñêà, çðàá³öå íåêàëüê³ ðóõࢠìûøøó."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "The user name is too long"
-msgstr "ГÑта iÐ¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальнiку ўжо дададзена"
+#: ../../diskdrake/dav.pm_.c:109
+#, fuzzy
+msgid "Server: "
+msgstr "ñåðâåð"
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "IÐ½ÑˆÐ°Ñ ÐС (windows...)"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
+msgstr "Ïóíêò ìàíöiðàâàííÿ:"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr ""
+msgid "Options: %s"
+msgstr "Îïöûi: %s"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Reading printer database..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
+msgstr "Ïà-ïåðøàå, çðàáiöå ðýçåðâîâóþ êîïiþ âàøûõ äàäçåíûõ"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Generate auto install floppy"
-msgstr "СтварÑнне дыÑкеты Ð´Ð»Ñ ÑžÑталÑваннÑ"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "×ûòàéöå ¢âàæëiâà!"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:100
msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
+"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 ""
+"Êàëi âû ïëàíóåöå âûêàðûñòî¢âàöü boot âîáëàñöü, òàäû ðàçìÿñöiöå ÿå\n"
+" íå äàëåé çà 2048 ñåêòàðî¢ àä ïà÷àòêó äûñêà"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Somalia"
-msgstr "NIS Domain"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "Ìàéñòàð ñòâàðýííÿ"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
+msgstr "Àáÿðûöå äçåÿííå"
-#: ../../security/level.pm:1
-#, fuzzy, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
-"Прымаюцца ўлаÑцiваÑцi 4 узроўнÑ, але зараз ÑiÑÑ‚Ñма поўнаÑцю зачынена.\n"
-"Параметры бÑÑпекi ÑžÑтаноўлены на макÑiмум."
+"Çàðàç âû ìàåöå òîëüêi àäçií âÿëiêi ðàçäçåë FAT\n"
+"(ÿê³ çâû÷àéíà âûêàðûñòî¢âàå MS Dos/Windows).\n"
+"Ïðàïàíóþ, ïà-ïåðøàå, çìÿíiöü ïàìåðû ðàçäçåëà\n"
+"(êëiêíiöå íà ÿãî, à ïîòûì íà \"çìÿíåííå ïàìåðà¢\")"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "Ðікарагуа"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "ÐÐ¾Ð²Ð°Ñ ÐšÐ°Ð»ÑдоніÑ"
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "Íàö³ñí³öå íà ðàçäçåë"
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Еўропа (EDSS1)"
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "Ïàäðàáÿçíàñöi"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Delete"
-msgstr "/_Выдаліць"
+#: ../../diskdrake/hd_gtk.pm_.c:254
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Ëàêàëüíû ïðûíòýð"
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "Ð’iдÑа-Ñ€Ñжым"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Oman"
-msgstr "NIS Domain"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "FAT"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Please enter your email address below "
-msgstr "ПаÑпрабуйце ÑÑˆÑ‡Ñ Ñ€Ð°Ð·"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Network Monitoring"
-msgstr "КанфiÐ³ÑƒÑ€Ð°Ñ†Ñ‹Ñ Ñеткi"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+#, fuzzy
+msgid "Journalised FS"
+msgstr "ïàìûëêà ìàíöiðàâàííÿ"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:325
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "New size in MB: "
-msgstr "Памер у Мб:"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "Swap"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Тып таблiцы раздзелаў: %s\n"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "Ïóñòà"
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Authentication Windows Domain"
-msgstr "ÐўтÑнтыфiкацыÑ"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "²íøûÿ"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "US клавiÑтура"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "Òûïû ôàéëàâûõ ñiñòýìà¢:"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "Ñòâàðûöü"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "Òûï"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
+msgid "Use ``%s'' instead"
+msgstr "Âûêàðûñòî¢âàéöå ``%s'' çàìåñò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "Çíiø÷ûöü"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Sending Speed:"
-msgstr "Захаванне ў файл"
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
+msgstr "Ñïà÷àòêó çðàáiöå ``Unmount''"
-#: ../../harddrake/sound.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
-"currently uses\n"
-"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services're configured to be run on\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
-msgstr ""
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Mail alert configuration"
-msgstr "ÐаÑтройка ADSL"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr "Такелаў"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Matching"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Bosnian"
-msgstr "ЭÑтонÑкi"
+"After changing type of partition %s, all data on this partition will be lost"
+msgstr "Óñå äàäçåíûÿ ¢ ðàçäçåëå %s áóäóöü ñòðà÷àíû ïàñëÿ çìåíû ÿãî òûïó"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Release: "
-msgstr "Калi лаÑка, пачакайце"
+#: ../../diskdrake/interactive.pm_.c:177
+#, fuzzy
+msgid "Choose a partition"
+msgstr "Àáÿðûöå äçåÿííå"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Connection speed"
-msgstr "IÐ¼Ñ Ð·Ð»ÑƒÑ‡ÑннÑ"
+#: ../../diskdrake/interactive.pm_.c:177
+#, fuzzy
+msgid "Choose another partition"
+msgstr "Ñòâàðýííå íîâàãà ðàçäçåëó"
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr "ÐамібіÑ"
+#: ../../diskdrake/interactive.pm_.c:202
+#, fuzzy
+msgid "Exit"
+msgstr "Ext2"
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "Database Server"
-msgstr "Сервер друку"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
+msgstr "Ðýæûì ýêñïåðòó"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
+msgstr "Çâû÷àéíû ðýæûì"
-#: ../../raid.pm:1
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Ðе атрымлiваецца дадаць раздзел на _адфармацiраваны_ RAID md%d"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "Àäêàò"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Network Time Protocol"
-msgstr "Сеткавы iнтÑрфейÑ"
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "Ñàïðà¢äû ïðàöÿãâàöü?"
-#: ../../Xconfig/card.pm:1
-#, 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."
-msgstr ""
-"Ваша вiдÑакарта можа мець 3D-паÑкарÑнне, Ñкое падтрымлiваецца толькi XFree %"
-"s.\n"
-"МÐЙЦЕ ÐÐ ÐŽÐ’ÐЗЕ, ШТО ГЭТРЭКСПЕРЫМЕÐТÐЛЬÐÐЯ ПÐДТРЫМКРI МОЖРПРЫВЕСЦI ДÐ\n"
-"ЗÐÐ’IСÐÐÐЯ Ð’ÐШÐГРКÐМП'ЮТЭРУ. Ваша вiдÑакарта падтрымлiваецца XFree %s, Ñкi\n"
-"лепей падтрымлiвае карты з 2D-паÑкарÑннем."
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "Âûéñöi áåç çàõàâàííÿ"
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Please wait, setting security options..."
-msgstr "Падрыхтоўка ÑžÑталÑваньнÑ"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "Âûéñöi áåç çàïiñó òàáëiöû ðàçäçåëà¢"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:257
+#, fuzzy
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "Öi æàäàåöå ïðàòýñöiðàâàöü íàñòðîéêi?"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "À÷ûñöiöü óñ¸"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
+msgstr "Ðàçìåðêàâàöü à¢òàìàòû÷íà"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+#, fuzzy
+msgid "More"
+msgstr "Ïåðàíîñ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:278
+#, fuzzy
+msgid "Hard drive information"
+msgstr "Iíôàðìàöûÿ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:310
+msgid "All primary partitions are used"
+msgstr "Óñå ïåðøàñíûÿ ðàçäçåëû âûêàðûñòàíû"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr "Ðнцігуа Ñ– Барбуда"
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "Äàäàöü ðàçäçåë íåìàã÷ûìà"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:312
msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "IÑпанÑкi"
-
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "Start"
-msgstr "Стартавае меню"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
msgstr ""
+"Êàá çðàáiöü áîëüø ðàçäåëà¢, âûäàëiöå àäçií i ñòâàðûöå ïàøûðàíû ðàçäçåë "
+"(extended)"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Configuring applications..."
-msgstr "ÐаÑтройка прынтÑру"
+#: ../../diskdrake/interactive.pm_.c:322
+#, fuzzy
+msgid "Save partition table"
+msgstr "Çàïiñ òàáëiöû ðàçäçåëà¢"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:323
+#, fuzzy
+msgid "Restore partition table"
+msgstr "Äàäàòêîâàÿ òàáëiöà ðàçäçåëà¢"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
+msgstr "Äàäàòêîâàÿ òàáëiöà ðàçäçåëà¢"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "File Selection"
-msgstr "Выбар групы пакетаў"
+#: ../../diskdrake/interactive.pm_.c:326
+#, fuzzy
+msgid "Reload partition table"
+msgstr "Äàäàòêîâàÿ òàáëiöà ðàçäçåëà¢"
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:331
+#, fuzzy
+msgid "Removable media automounting"
+msgstr "À¢òàìàíöiðàâàííå çìåííûõ íàçàïàøâàëüí³êà¢"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Erase tape before backup"
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "Àáÿðûöå ôàéë"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
+#: ../../diskdrake/interactive.pm_.c:347
+msgid ""
+"The backup partition table has not the same size\n"
+"Still continue?"
msgstr ""
+"Òàáëiöà ðàçìÿø÷ýííÿ ðýçåðâîâàãà äûñêó ìàå iíøû ïàìåð\n"
+"Ïðàöÿãâàöü äàëåé?"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "УÑталÑванне загрузчыку"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Каранёвы раздзел ў Mб: "
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "ГÑта абавÑзковы пакет, Ñго вылучÑнне нельга адмÑнiць"
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "Óâàãà!"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:362
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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
+"Óñòà¢öå äûñêåòó ¢ äûñêàâîä\n"
+"Óñå äàäçåíûÿ íà ãýòàé äûñêåöå áóäóöü ñòðà÷àíû"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
+msgstr "Ïàñïðàáóåì âûðàòàâàöü òàáëiöó ðàçäçåëà¢"
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) - гÑта Ñервер даменных iмёнаў, Ñкi выкарыÑтоўваецца длÑ\n"
-"Ð¿ÐµÑ€Ð°ÐºÐ»Ð°Ð´Ð°Ð½Ð½Ñ iмён вузлоў у IP адраÑÑ‹."
+#: ../../diskdrake/interactive.pm_.c:379
+#, fuzzy
+msgid "Detailed information"
+msgstr "Iíôàðìàöûÿ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr "Санта ЛючыÑ"
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "Çìÿíåííå ïàìåðà¢"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "ЛіÑтапад"
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "Ïåðàíîñ"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "Ôàðìàòàâàííå"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Report"
-msgstr "Порт"
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "Äàäàöü äà RAID"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr "Палаў"
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "Äàäàöü äà LVM"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "узровень"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "Âûäàëiöü ç RAID"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "Âûäàëiöü ç LVM"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "Выбар групы пакетаў"
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "Çìÿíiöü RAID"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr "ÐаÑтройка мадÑму"
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
+msgstr "Âûêàðûñòî¢âàöü äëÿ âiðòóàëüíàé ôàéëàâàé ñiñòýìû"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "Ñòâàðýííå íîâàãà ðàçäçåëó"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "Ïà÷àòêîâû ñåêòàð:"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Выбар памераў Ñкрану i глыбiнi колеру"
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "Ïàìåð ó Ìá:"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
-msgstr "ЭмулÑваць трÑцюю кнопку?"
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "Òûï ôàéëàâàé ñiñòýìû:"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Ïàðàìåòðû: "
+
+#: ../../diskdrake/interactive.pm_.c:481
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr "Манцiраванне"
-
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Creating auto install floppy"
-msgstr "СтварÑнне дыÑкеты Ð´Ð»Ñ ÑžÑталÑваннÑ"
-
-#: ../../steps.pm:1
-#, fuzzy, c-format
-msgid "Install updates"
-msgstr "УÑталÑванне ÑiÑÑ‚Ñмы"
+#: ../../diskdrake/interactive.pm_.c:511
+#, fuzzy
+msgid "Remove the loopback file?"
+msgstr "Ôàðìàòàâàííå âiðòóàëüíàãà ðàçäçåëó %s"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "Çìÿíiöü òûï ðàçäçåëó"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "State"
-msgstr "Стартавае меню"
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+#, fuzzy
+msgid "Which filesystem do you want?"
+msgstr "ßêóþ ñiñòýìó äðóêó Âû æàäàåöå âûêàðûñòî¢âàöü?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Enable multiple profiles"
-msgstr "ДаÑтупна шмат профiлÑÑž"
+msgid "Where do you want to mount loopback file %s?"
+msgstr "Êóäû âû æàäàåöå ìàíöiðàâàöü âiðòóàëüíóþ ïðûëàäó %s?"
-#: ../../fs.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr ""
+msgid "Where do you want to mount device %s?"
+msgstr "Êóäû âû æàäàåöå ìàíöiðàâàöü ïðûëàäó %s?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Local printer"
-msgstr "Лакальны прынтÑÑ€"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Files Restored..."
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
+"Íåëüãà ¢ñòàëÿâàöü ïóíêò ìàíöiðàâàííÿ, òàìó øòî ðàçäåë âûêàðûñòî¢âàåööà äëÿ\n"
+"âiðòóàëüíàé ôàéëàâàé ñiñòýìû.\n"
+"Ñïà÷àòêó âûäàëiöå âiðòóàëüíóþ ñiñòýìó"
-#: ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:606
#, fuzzy, c-format
-msgid "Package selection"
-msgstr "Выбар групы пакетаў"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritania"
-msgstr "МаўрытаніÑ"
-
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
+msgid "Where do you want to mount %s?"
+msgstr "Êóäû âû æàäàåöå ìàíöiðàâàöü ïðûëàäó %s?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "Ïàäë³ê ìåæà¢ ôàéëàâàé ñiñòýìû FAT"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All primary partitions are used"
-msgstr "УÑе першаÑÐ½Ñ‹Ñ Ñ€Ð°Ð·Ð´Ð·ÐµÐ»Ñ‹ выкарыÑтаны"
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "Çìÿíåííå ïàìåðà¢"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "ÐдлучÑнне ад Ñеткi"
+#: ../../diskdrake/interactive.pm_.c:662
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "Ïàìåðû ÿêîãà ðàçäçåëà âû æàäàåöå çìÿíiöü?"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
+msgstr "Óñå äàäçåíûÿ ¢ ãýòûì ðàçäçåëå ïàâiííû áûöü çàðõiâàâàíûÿ"
-#: ../../services.pm:1
+#: ../../diskdrake/interactive.pm_.c:669
#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Installation Server Configuration"
-msgstr "ЗаканчÑнне наÑтройкi"
+msgid "After resizing partition %s, all data on this partition will be lost"
+msgstr "Óñå äàäçåíûÿ ¢ ðàçäçåëå %s áóäóöü ñòðà÷àíû"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "ÐаÑтройка IDE"
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "Âûáàð íîâûõ ïàìåðà¢"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Network functionality not configured"
-msgstr "Манiтор пакуль не наÑтроены"
+#: ../../diskdrake/interactive.pm_.c:675
+#, fuzzy
+msgid "New size in MB: "
+msgstr "Ïàìåð ó Ìá:"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Configure module"
-msgstr "ÐаÑтройка мышы"
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "Íà ÿêi äûñê ïåðàíåñö³?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "КакоÑÐ°Ð²Ñ‹Ñ Ð²Ñ‹Ñпы"
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "Ñåêòàð"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Каб змÑненнi ÑžÑтупiлi Ñž дзеÑнне, необходна перазагрузiцца"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "Íà ÿêi ñåêòàð ïåðàíåñö³?"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
-msgstr "Ðумар Ñ‚Ñлефону правайдара"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "Ïåðàíîñ³ì"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Host %s"
-msgstr "IÐ¼Ñ Ð¼Ð°ÑˆÑ‹Ð½Ñ‹"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "Ïåðàíîñ³ööà ðàçäçåë..."
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Fiji"
-msgstr "ФiнÑкi"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr "Àáÿðûöå iñíóþ÷û RAID äëÿ äàäàííÿ"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Armenia"
-msgstr "ÐрмÑнÑкi (Ñтары)"
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "íîâû"
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "Другi дыÑкавод"
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
+msgstr "Âûáÿðûöå iñíóþ÷û LVM äëÿ äàáà¢ëåííÿ"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
+msgstr "Ãýòû ðàçäçåë íå ìîæà áûöü âûêàðûñòàíû ïàä âiðòóàëüíóþ ôàéëàâóþ ñiñòýìó"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
+msgstr "Âiðòóàëüíàÿ ôàéëàâàÿ ñiñòýìà (loopback)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"УÑтаўце дыÑкету Ñž дыÑкавод\n"
-"УÑе Ð´Ð°Ð´Ð·ÐµÐ½Ñ‹Ñ Ð½Ð° гÑтай дыÑкеце будуць Ñтрачаны"
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
+msgstr "Iìÿ âiðòóàëüíàãà ðàçäçåëó"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "Памер: %s"
+#: ../../diskdrake/interactive.pm_.c:831
+#, fuzzy
+msgid "Give a file name"
+msgstr "Óëàñíàå iìÿ"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
msgstr ""
+"Ôàéë óæî âûêàðûñòî¢âàåööà iíøàé âiðòóàëüíàé ñiñòýìàé. Êàëi ëàñêà, \n"
+"àáÿðûöå iíøóþ íàçâó"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "secondary"
-msgstr "%d Ñекундаў"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
+msgstr "Ôàéë óæî iñíóå. Âûêàðûñòàöü ÿãî?"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "View Backup Configuration."
-msgstr "КанфiÐ³ÑƒÑ€Ð°Ñ†Ñ‹Ñ Ñеткi"
+#: ../../diskdrake/interactive.pm_.c:858
+#, fuzzy
+msgid "Mount options"
+msgstr "Îïöûi ìîäóëþ:"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
msgstr ""
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "ÐÑма паролю"
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "ïðûëàäà"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Nigeria"
-msgstr "паÑлÑдоўнаÑ"
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "óçðîâåíü"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "ïàìåð áëîêó"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "ÐÑма iÑнуючых раздзелаў, ÑкiÑ Ð¼Ð¾Ð¶Ð½Ð° выкарыÑтаць"
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
+msgstr "Áóäçüöå óâàæëiâû. Ãýòóþ àïåðàöûþ íåëüãà àäìÿíiöü"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr "У вашай ÑÑ–ÑÑ‚Ñме нÑма нiводнага Ñеткавага адаптара!"
+#: ../../diskdrake/interactive.pm_.c:962
+#, fuzzy
+msgid "What type of partitioning?"
+msgstr "ßêi òûï äðóêàðêi âû ìàåöå?"
-#: ../../printer/main.pm:1
+#: ../../diskdrake/interactive.pm_.c:978
#, fuzzy, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "IÐ¼Ñ Ð¿Ñ€Ñ‹Ð½Ñ‚Ñру"
+msgid "The package %s is needed. Install it?"
+msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:992
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."
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
-"Каб друкаваць праз Ñокет друкаркi, вам неабходна забÑÑпечыць\n"
-"iÐ¼Ñ Ð¿Ñ€Ñ‹Ð½Ñ‚Ñру i магчыма Ñго нумар порту."
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Hard drive information"
-msgstr "IнфармацыÑ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian"
-msgstr "РуÑкi"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Jordan"
-msgstr "IранÑкi"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Hide files"
-msgstr "mkraid не працаздольны"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Ðддалены прынтÑÑ€"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "Выбачайце, але дыÑкавод недаÑтупны"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bolivia"
-msgstr "БалівіÑ"
+"Ïðàáà÷öå, àëå íåëüãà ñòâàðûöü /boot íà ãýòûì äûñêó (íà öûëiíäðû > 1024).\n"
+"Êàë³ âû äóìàåöå âûêàðûñòî¢âàöü LILO - òàäû ãýòà íå áóäçå ïðàöàâàöü, LILO íå "
+"âûêàðûñòî¢âàåöà, òàäû /boot íå ïàòðýáíû."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:996
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"
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
+"Àáðàíû äëÿ äàäàòêó ¢ ÿêàñöi êàðàí¸âàãà (/) ðàçäçåë ôiçi÷íà çíàõîäçiöà äàëåé\n"
+"1024-ãà öûëiíäðó æîðñòêàãà äûñêó, à ¢ âàñ íÿìà ðàçäçåëó /boot .\n"
+"Êàëi áóäçå âûêàðûñòî¢âàööà äûñïå÷àð çàãðóçêi LILO, íå çàïàìÿòàéöå äàäàöü\n"
+"ðàçäçåë /boot"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "ДрÑнны пакет"
-
-#: ../advertising/07-server.pl:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1002
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!"
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
msgstr ""
+"Âû àáðàëi RAID ðàçäçåë ÿê êàðàí¸âû.\n"
+"Íÿìà çàãðóç÷ûêó, ÿêi á çàãðóçi¢ñÿ áåç /boot ðàçäçåëà.\n"
+"Äàäàéöå ðàçäåë /boot, êàëi ëàñêà."
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid "DrakSec Basic Options"
-msgstr "Опцыi"
-
-#: ../../standalone/draksound:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
-msgstr ""
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Romania"
-msgstr "NIS Domain"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "Òàáëiöà ðàçìÿø÷ýííÿ ïðûëàäû %s áóäçå çàïiñàíà íà äûñê!"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Group"
-msgstr "ÐŸÑ€Ð°Ñ†Ð¾ÑžÐ½Ð°Ñ Ð³Ñ€ÑƒÐ¿Ð°"
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
+msgstr "Êàá çìÿíåííi ¢ñòóïiëi ¢ äçåÿííå, íåîáõîäíà ïåðàçàãðóçiööà"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Canada"
-msgstr "КанадÑкi (КвебÑк)"
+#: ../../diskdrake/interactive.pm_.c:1037
+#, c-format
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr "Óñå äàäçåíûå ¢ ðàçäçåëå %s áóäóöü ñòðà÷àíû ïàñëÿ ôàðìàòàâàííÿ"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "choose device"
-msgstr "Ð—Ð°Ð³Ñ€ÑƒÐ·Ð°Ñ‡Ð½Ð°Ñ Ð¿Ñ€Ñ‹Ð»Ð°Ð´Ð°"
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "Ôàðìàòàâàííå"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Remove from LVM"
-msgstr "Выдалiць з LVM"
+msgid "Formatting loopback file %s"
+msgstr "Ôàðìàòàâàííå âiðòóàëüíàãà ðàçäçåëó %s"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "Timezone"
-msgstr ""
+msgid "Formatting partition %s"
+msgstr "Ôàðìàòàâàííå ðàçäçåëó %s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German"
-msgstr "ÐÑмецкi"
+#: ../../diskdrake/interactive.pm_.c:1052
+#, fuzzy
+msgid "Hide files"
+msgstr "mkraid íå ïðàöàçäîëüíû"
-#: ../../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
-#, c-format
-msgid "Next ->"
-msgstr "Далей ->"
+#: ../../diskdrake/interactive.pm_.c:1052
+#, fuzzy
+msgid "Move files to the new partition"
+msgstr "Íå õàïàå ïðàñòîðû äëÿ ñòâàðýííÿ íîâûõ ðàçäçåëà¢"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1053
#, 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."
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:1064
+#, fuzzy
+msgid "Moving files to the new partition"
+msgstr "Íå õàïàå ïðàñòîðû äëÿ ñòâàðýííÿ íîâûõ ðàçäçåëà¢"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1068
#, c-format
-msgid "Guinea-Bissau"
+msgid "Copying %s"
msgstr ""
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "ЧаÑÑ†Ñ–Ð½Ñ Ð³Ð°Ñ€Ñ‹Ð·Ð°Ð½Ñ‚Ð°Ð»ÑŒÐ½Ñ‹Ð¹ разгорткi"
-
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1072
#, fuzzy, c-format
-msgid "Edit"
-msgstr "Ext2"
+msgid "Removing %s"
+msgstr "Ïàìåðû ýêðàíó: %s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+msgid "partition %s is now known as %s"
msgstr ""
-"Ðельга ÑžÑталÑваць пункт манцiраваннÑ, таму што раздел выкарыÑтоўваецца длÑ\n"
-"вiртуальнай файлавай ÑiÑÑ‚Ñмы.\n"
-"Спачатку выдалiце вiртуальную ÑiÑÑ‚Ñму"
-#: ../../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 ""
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "Ïðûëàäà:"
-#: ../../harddrake/data.pm:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "USB controllers"
-msgstr ""
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "Ëiòàðà äëÿ DOS-äûñêó: %s (íà¢ãàä)\n"
-#: ../../Xconfig/various.pm:1
-#, fuzzy, c-format
-msgid "What norm is your TV using?"
-msgstr "Якi тып вашага ISDN злучÑннÑ?"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "Òûï: "
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Type:"
-msgstr "Тып: "
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "Iìÿ: "
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "Share name"
-msgstr "IÐ¼Ñ Ð´Ð»Ñ Ñ€Ð°Ð·Ð¼ÐµÑ€ÐºÐ°Ð²Ð°Ð½Ð°Ð³Ð° Ñ€ÑÑурÑу"
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "enable"
-msgstr "Таблiца"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
-msgstr "СувÑзь з люрам Ð´Ð»Ñ Ð°Ñ‚Ñ€Ñ‹Ð¼Ð°Ð½Ð½Ñ ÑпiÑу даÑтупных пакетаў"
-
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr "Цi жадаеце пратÑÑцiраваць наÑтройкi?"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Remove the loopback file?"
-msgstr "Фарматаванне вiртуальнага раздзелу %s"
+msgid "Start: sector %s\n"
+msgstr "Ïà÷àòàê: ñåêòàð %s\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "Selected size is larger than available space"
-msgstr ""
+msgid "Size: %s"
+msgstr "Ïàìåð: %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid "NCP server name missing!"
-msgstr ""
-
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Please choose your country."
-msgstr "калi лаÑка, пазначце тып вашай мышы."
+msgid ", %s sectors"
+msgstr ", %s ñåêòàðà¢"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm_.c:1125
#, fuzzy, c-format
-msgid "Hard Disk Backup files..."
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
+msgid "Cylinder %d to %d\n"
+msgstr "Öûëiíäðû ç %d ïà %d\n"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Laotian"
-msgstr "Размеркаванне"
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "Ôàðìàòàâàííå\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Samoa"
-msgstr "Самоа"
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "Íå àäôàðìàòàâàíà\n"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Пратакол rstat дазвалÑе карыÑтальнiкам Ñеткi атрымлiваць\n"
-"памеры нагрузкi Ð´Ð»Ñ ÐºÐ¾Ð¶Ð½Ð°Ð¹ машыны Ñеткi."
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
+msgstr "Çàìàíöiðàâàíà\n"
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Re-generating list of configured scanners ..."
-msgstr ""
-
-#: ../../modules/interactive.pm:1
-#, fuzzy, c-format
-msgid "Module configuration"
-msgstr "ÐаÑтройка"
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Scanner"
-msgstr "ÐбÑрыце вiдÑакарту"
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../Xconfig/test.pm:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, fuzzy, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "ПапÑÑ€Ñджанне: Ñ‚ÑÑцiраванне на гÑтай вiдÑакарце небÑÑпечна"
-
-#: ../../any.pm:1
-#, c-format
msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"IÐ¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальнiку павiнна змÑшчаць лiтары толькi на нiжнiм Ñ€ÑгiÑтры, \n"
-"лiчбы, `-' i `_'"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Menudrake"
-msgstr "абавÑзкова"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "СардÑчна запрашаем у Crackers"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "Опцыi модулю:"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Go on without configuring the network"
-msgstr "ÐаÑтройка Ñеткi"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Abort"
-msgstr "ÐдмÑнiць"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr ""
-
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Usage of remote scanners"
-msgstr "ВыкарыÑтоўваць незанÑтую праÑтору"
+"Loopback file(s):\n"
+" %s\n"
+msgstr "Ôàéë(û) âiðòóàëüíàé ôàéëàâàé ñiñòýìû: %s\n"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1132
msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
-msgstr ""
-"Ваш раздзел з Windows занадта фрагментаваны. \n"
-"РÑкамендуем Ñпачатку запуÑцiць праграму ``defrag''"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (ÐарвежÑкi)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Unable to fork: %s"
-msgstr "Зрабiць неактыўным Ñеткавае злучÑнне"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "Тып: "
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "no fonts found"
-msgstr "Ðе знайшлi %s"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Mouse"
-msgstr "Порт мышы"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "not enough room in /boot"
-msgstr "Ðе хапае дыÑкавай праÑторы Ñž /boot"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "trying to promote %s"
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
+"Çàãðóçà÷íû ðàçäçåë ïà äàìà¢ëåííþ\n"
+" (äëÿ çàãðóçêi MS-DOS, à íå äëÿ lilo)\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Liechtenstein"
-msgstr "ЛіхтÑнштайн"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "Host name"
-msgstr "IÐ¼Ñ Ð¼Ð°ÑˆÑ‹Ð½Ñ‹"
+msgid "Level %s\n"
+msgstr "Óçðîâåíü %s\n"
-#: ../../standalone/draksplash:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "the color of the progress bar"
-msgstr ""
+msgid "Chunk size %s\n"
+msgstr "Ïàìåð ôðàãìåíòó %s\n"
-#: ../../standalone/drakfont:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Suppress Fonts Files"
-msgstr ""
+msgid "RAID-disks %s\n"
+msgstr "RAID-äûñêi %s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "Add to RAID"
-msgstr "Дадаць да RAID"
+msgid "Loopback file name: %s"
+msgstr "Iìÿ ôàéëó âiðòóàëüíàé ôàéëàâàé ñiñòýìû: %s"
-#: ../../help.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
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 ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "No floppy drive available!"
-msgstr "ДыÑкавод недаÑтупны"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
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"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saudi Arabia"
-msgstr "СавудаўÑÐºÐ°Ñ ÐрабіÑ"
-
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "Internet"
-msgstr "цiкава"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "Сапраўды працÑгваць?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid "Printer"
-msgstr "ПрынтÑÑ€"
-
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices were added:\n"
-msgstr ""
+msgid "Size: %s\n"
+msgstr "Ïàìåð: %s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "ГеаметрыÑ: %s цылiндраў, %s галовак, %s Ñектараў\n"
+msgstr "Ãåàìåòðûÿ: %s öûëiíäðà¢, %s ãàëîâàê, %s ñåêòàðà¢\n"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "ÐдлучÑнне ад Ñеткi"
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
+msgstr "Iíôàðìàöûÿ: "
-#: ../../standalone/drakTermServ:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore From Tape"
-msgstr "Ð”Ð°Ð´Ð°Ñ‚ÐºÐ¾Ð²Ð°Ñ Ñ‚Ð°Ð±Ð»iца раздзелаў"
+msgid "LVM-disks %s\n"
+msgstr "LVM-äûñêi %s\n"
-#: ../../standalone/drakbug:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, 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."
-msgstr ""
+msgid "Partition table type: %s\n"
+msgstr "Òûï òàáëiöû ðàçäçåëà¢: %s\n"
-#: ../../network/netconnect.pm:1
+#: ../../diskdrake/interactive.pm_.c:1169
#, fuzzy, c-format
-msgid "Choose the profile to configure"
-msgstr "ÐбÑрыце аÑноўнага карыÑтальнiка:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
-msgstr ""
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
-msgstr ""
+msgid "on channel %d id %d\n"
+msgstr "íà øûíå %d id %d\n"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup Now from configuration file"
-msgstr "КанфiÐ³ÑƒÑ€Ð°Ñ†Ñ‹Ñ Ñеткi"
+#: ../../diskdrake/interactive.pm_.c:1199
+#, fuzzy
+msgid "Filesystem encryption key"
+msgstr "Òûï ôàéëàâàé ñiñòýìû:"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1203
#, fuzzy, c-format
-msgid "Restarting printing system..."
-msgstr "Якую ÑiÑÑ‚Ñму друку Ð’Ñ‹ жадаеце выкарыÑтоўваць?"
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "You can only run with no CDROM support"
+msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
+"Ãýòû ïàðîëü çàíàäòà ïðîñòû (ÿãî äà¢æûíÿ ïàâiííà áûöü íå ìåíåé çà %d ëiòàðà¢)"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "Гл. апiÑанне абÑталÑваннÑ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
-msgstr "Дзень"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr "Першы Ñектар загрузачнага раздзелу"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:1204
+#, fuzzy
+msgid "The encryption keys do not match"
+msgstr "Ïàðîëi íå ñóïàäàþöü"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
msgstr ""
-#: ../../standalone.pm:1
-#, 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)"
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
-msgstr ""
+#: ../../diskdrake/removable.pm_.c:47
+#, fuzzy
+msgid "Change type"
+msgstr "Çìÿíiöü òûï ðàçäçåëó"
-#: ../../security/l10n.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "Set password expiration and account inactivation delays"
+msgid "Can't login using username %s (bad password?)"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr ""
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "À¢òýíòûôiêàöûÿ"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Два крытычных параметры - гÑта чаÑÑ†Ñ–Ð½Ñ Ð²ÐµÑ€Ñ‚Ñ‹ÐºÐ°Ð»ÑŒÐ½Ð°Ð¹ разгорткi, цi\n"
-"чаÑÑ†Ñ–Ð½Ñ Ð°Ð´Ð½Ð°ÑžÐ»ÐµÐ½Ð½Ñ ÑžÑÑго Ñкрану, а такÑама болей важны параметр -\n"
-"чаÑÑ†Ñ–Ð½Ñ Ð³Ð°Ñ€Ñ‹Ð·Ð°Ð½Ñ‚Ð°Ð»ÑŒÐ½Ð°Ð¹ Ñiнхранiзацыi разгорткi, цi чаÑÑ†Ñ–Ð½Ñ Ð²Ñ‹Ð²Ð°Ð´Ñƒ\n"
-"радкоў Ñкрану.\n"
-"\n"
-"ВЕЛЬМI Ð’ÐЖÐÐ, каб абраны вамi манiтор меў чаÑціню Ñiнхранiзацыi, ÑкаÑ\n"
-"не перавышае Ñ„Ð°ÐºÑ‚Ñ‹Ñ‡Ð½Ñ‹Ñ Ð¼Ð°Ð³Ñ‡Ñ‹Ð¼Ð°Ñцi вашага манiтору: у процiлеглым выпадку\n"
-"вы можаце ÑапÑаваць манiтор.\n"
-"Калi вы ÑумнÑваецеÑÑ, абÑрыце канÑÐµÑ€Ð²Ð°Ñ‚Ñ‹ÑžÐ½Ñ‹Ñ Ð½Ð°Ñтройкi."
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "öiêàâà"
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, fuzzy, c-format
-msgid "Modify"
-msgstr "ЗмÑнiць RAID"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Iìÿ êàðûñòàëüíiêó:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
+"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr ""
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+#, fuzzy
+msgid "Username"
+msgstr "Iìÿ êàðûñòàëüíiêó:"
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Insert floppy"
-msgstr "УÑтаўце дыÑкету Ñž дыÑкавод %s"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS Domain"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid ""
-"WebDAV is a protocol that allows you to mount a web server's directory\n"
-"locally, and treat it like a local filesystem (provided the web server is\n"
-"configured as a WebDAV server). If you would like to add WebDAV mount\n"
-"points, select \"New\"."
-msgstr ""
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+#, fuzzy
+msgid "Search servers"
+msgstr "DNS ñåðâåð"
-#: ../../standalone/drakbug:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "HardDrake"
-msgstr ""
+msgid "%s formatting of %s failed"
+msgstr "%s ïàìûëêà ôàðìàòàâàííÿ %s"
-#: ../../diskdrake/interactive.pm:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "new"
-msgstr "новы"
+msgid "I don't know how to format %s in type %s"
+msgstr "Íå âåäàþ ÿê àäôàðìàòàâàöü %s ç òûïàì %s"
-#: ../../security/help.pm:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "Enable/Disable syslog reports to console 12"
+msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Would you like to try again?"
-msgstr "Жадаеце наÑтроiць прынтÑÑ€?"
-
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "МайÑтар ÑтварÑннÑ"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Edit selected server"
-msgstr "Выдалiць чаргу друку"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please choose where you want to backup"
-msgstr "Выбар пакетаў Ð´Ð»Ñ ÑžÑталÑваннÑ"
-
-#: ../../install_steps_interactive.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Каб мадыфiÐºÐ°Ñ†Ñ‹Ñ Ñ‚Ð°Ð±Ð»iцы раздзелаў здейÑнiлаÑÑ, патрÑбна перазагрузка."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
-msgstr ""
+msgid "error unmounting %s: %s"
+msgstr "ïàìûëêà ðàçìàíöiðàâàííÿ %s: %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
+#: ../../fsedit.pm_.c:21
+msgid "simple"
msgstr ""
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Калi лаÑка, абÑрыце тып клавiÑтуры."
-
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "Стандартны"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "калi лаÑка, пазначце тып вашай мышы."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "ÐаÑтройка прынтÑру"
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "ñåðâåð"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: ../../fsedit.pm_.c:240
#, fuzzy, c-format
-msgid "not configured"
-msgstr "ÐаÑтройка X Window"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
+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 loose all the partitions?\n"
+msgstr ""
+"Òàáëiöà ðàçäçåëࢠíå ÷ûòàåööà, ÿíà çàíàäòà ñàïñàâàíàÿ äëÿ ìåíÿ :(\n"
+"Ïàñïðàáóþ iñöi äàëåé i áóäó ïðàïóñêàöü äðýííûÿ ðàçäçåëû (Óñå ÄÀÄÅÇÅÍÛß\n"
+"áóäóöü ñòðà÷àíû!). Iíøàå ðàøýííå íå äàçâîëiöü DrakX çìÿíiöü òàáëiöó "
+"ðàçäçåëà¢.\n"
+"(ïàìûëêà ¢ %s)\n"
+"\n"
+"Öi æàäàåöå ñòðàöiöü óñå ðàçäçåëû?\n"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "About"
-msgstr "ÐдмÑнiць"
+#: ../../fsedit.pm_.c:501
+#, fuzzy
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr "Âû íå ìîæàöå ðàçáiâàöü íà ðàçäåëû, ïàìåð ÿêiõ ìåíåé çà 16 Ìá"
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "Âû íå ìîæàöå ðàçáiâàöü íà ðàçäåëû, ïàìåð ÿêiõ ìåíåé çà 32 Ìá"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "ÐаÑтройка proxy кÑшуючых Ñервераў"
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
+msgstr "Ïóíêò ìàíöiðàâàííÿ ïàâiíåí ïà÷ûíàööà ç /"
-#: ../../diskdrake/interactive.pm:1
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "Start: sector %s\n"
-msgstr "Пачатак: Ñектар %s\n"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "No Mask"
-msgstr "ДрÑнны пакет"
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Network interface already configured"
-msgstr "Манiтор пакуль не наÑтроены"
+msgid "There is already a partition with mount point %s\n"
+msgstr "Óæî ¸ñöü ðàçäçåë ç ïóíêòàì ìàíöiðàâàííÿ %s\n"
-#: ../../standalone/drakTermServ:1
+#: ../../fsedit.pm_.c:526
#, c-format
-msgid "Couldn't access the floppy!"
+msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
+msgstr "Ãýòû êàòàëîã ïàâ³íåí çíàõîäç³ööà ¢íóòðû êàðàí¸âàé ôàéëàâàé ñ³ñòýìû"
+
+#: ../../fsedit.pm_.c:530
+#, fuzzy
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."
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
+"Âàì íåàáõîäíà çàäàöü ïðàâiëüíû òûï ôàéëàâàé ñiñòýìû (ext2, reiserfs)\n"
+"äëÿ ãýòàé êðîïêi ìàíöiðàâàííÿ\n"
-#: ../../network/drakfirewall.pm:1
+#: ../../fsedit.pm_.c:532
#, fuzzy, c-format
-msgid "Mail Server"
-msgstr "Сервер друку"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "ÐаціÑніце на раздзел"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on HP JetDirect"
+msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
+"Âàì íåàáõîäíà çàäàöü ïðàâiëüíû òûï ôàéëàâàé ñiñòýìû (ext2, reiserfs)\n"
+"äëÿ ãýòàé êðîïêi ìàíöiðàâàííÿ\n"
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linux"
+#: ../../fsedit.pm_.c:599
+#, fuzzy
+msgid "Not enough free space for auto-allocating"
+msgstr "Íå õàïàå ïðàñòîðû äëÿ ñòâàðýííÿ íîâûõ ðàçäçåëà¢"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
msgstr ""
-#: ../../help.pm:1
+#: ../../fsedit.pm_.c:694
#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Upgrade %s"
-msgstr "Раздзел %s"
+msgid "Error opening %s for writing: %s"
+msgstr "Ïàìûëêà àäêðûööÿ %s äëÿ çàïiñó: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Выбар тыпу злучÑÐ½Ð½Ñ Ð¿Ñ€Ñ‹Ð½Ñ‚Ñру"
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
+msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../harddrake/sound.pm_.c:171
#, c-format
msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr ""
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Íàñòðîéêà"
-#: ../../services.pm:1
+#: ../../harddrake/sound.pm_.c:174
#, c-format
msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"IнтÑрнÑÑ‚ ÑуперÑервер-дÑман (завецца inetd) запуÑкае пры Ñтарце \n"
-"колькаÑць розных iнтÑрнÑÑ‚ Ñлужбаў, ÑкiÑ Ð½ÐµÐ°Ð±Ñ…Ð¾Ð´Ð½Ñ‹. Яго можна выкарыÑтоўваць "
-"Ð´Ð»Ñ Ð¿ÑƒÑку\n"
-"шматлікіх Ñлужбаў, уключаючы telnet, ftp, rsh i rlogin. Блакуючы inetd, "
-"блакуем\n"
-"уÑе Ñлужбы, за ÑкiÑ Ñ‘Ð½ адказвае."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../harddrake/sound.pm_.c:176
#, c-format
msgid ""
"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "Ðргенціна"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Domain Name Server"
-msgstr "IÐ¼Ñ Ð´Ð°Ð¼ÐµÐ½Ñƒ"
-
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Security Level:"
-msgstr "ÐаÑтройкi ÑžÐ·Ñ€Ð¾ÑžÐ½Ñ Ð±ÑÑпекi"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr "Пункт манцiÑ€Ð°Ð²Ð°Ð½Ð½Ñ Ð¿Ð°Ð²iнен пачынацца з /"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Калi лаÑка, абÑрыце тып клавiÑтуры."
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "CUPS server"
-msgstr "DNS Ñервер"
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Postfix Mail Server"
-msgstr "Сервер друку"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "ВыйÑцi без захаваннÑ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "Йемен"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
+#: ../../harddrake/sound.pm_.c:178
+#, fuzzy
+msgid "Driver:"
+msgstr "ñåðâåð"
+
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+msgid "Help"
msgstr ""
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
msgstr ""
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../harddrake/sound.pm_.c:186
msgid ""
-"An error occurred:\n"
-"\n"
-"\n"
-"%s\n"
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"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"
+"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"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "ВызначÑнне жорÑткага дыÑку"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"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 ""
-#: ../../network/adsl.pm:1
+#: ../../harddrake/sound.pm_.c:202
#, 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."
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-#: ../../diskdrake/dav.pm:1
-#, fuzzy, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "Калі лаÑка, зрабіце некалькі рухаў мышшу."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "ТакжыкіÑтан"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "ПрынÑць"
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Ïðàâåðêà ïàðàìåòðࢠíàñòðîéêi"
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "ÐпiÑанне"
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "Êàëi ëàñêà, ïà÷àêàéöå"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter summary text."
+#: ../../harddrake/sound.pm_.c:210
+msgid "No known driver"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Памылка Ð°Ð´ÐºÑ€Ñ‹Ñ†Ñ†Ñ %s Ð´Ð»Ñ Ð·Ð°Ð¿iÑу: %s"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Тып мышы: %s\n"
-
-#: ../../Xconfig/card.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgid "There's no known driver for your sound card (%s)"
msgstr ""
-"Ваша вiдÑакарта можа мець 3D-паÑкарÑнне, Ñкое падтрымлiваецца толькi XFree %"
-"s."
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "ÐбÑрыце манiтор"
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "ПуÑÑ‚Ð°Ñ Ð¼ÐµÑ‚ÐºÐ° не дазвалÑецца"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
+#: ../../harddrake/sound.pm_.c:214
+msgid "Unkown driver"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "Дадаць раздзел немагчыма"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "Памер у Мб:"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "Ðддалены прынтÑÑ€"
-
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Please choose a language to use."
-msgstr "Калi лаÑка, абÑрыце мову Ð´Ð»Ñ ÐºÐ°Ñ€Ñ‹ÑтаннÑ."
-
-#: ../../network/network.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, 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."
-msgstr ""
-
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "I can set up your computer to automatically log on one user."
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-"Можна наÑтроiць ÑiÑÑ‚Ñму Ð´Ð»Ñ Ð°ÑžÑ‚Ð°Ð¼Ð°Ñ‚Ñ‹Ñ‡Ð½Ð°Ð³Ð° ўваходу Ñž ÑiÑÑ‚Ñму длÑ\n"
-"аднаго карыÑтальнiка. Калi Ð’Ñ‹ не жадаеце гÑтага, нацiÑнiце \"Ðдмена\"."
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Floppy format"
-msgstr "Фарматаванне"
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Àääàëåíû ïðûíòýð"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Generic Printers"
-msgstr "ПрынтÑÑ€"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Àãóëüíû"
-#: ../../printer/printerdrake.pm:1
-#, 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"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr ""
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "First sector of the root partition"
-msgstr "Першы Ñектар загрузачнага раздзелу"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Alternative drivers"
-msgstr "Друк Ñ‚ÑÑтавых Ñтаронак"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
msgid ""
-"\n"
-"Please check all options that you need.\n"
+"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 ""
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Initrd"
+#: ../../harddrake/v4l.pm_.c:227
+#, fuzzy
+msgid "Card model:"
+msgstr "Àäðàñû ïàìÿö³ êàðòû (DMA)"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Cape Verde"
-msgstr "Згарнуць дрÑва"
+#: ../../harddrake/v4l.pm_.c:228
+#, fuzzy
+msgid "Tuner type:"
+msgstr "Çìÿíiöü òûï ðàçäçåëó"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr "ÐаÑтройка злучÑÐ½Ð½Ñ Ð· IнтÑрнÑтам"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Guam"
-msgstr "Забавы"
+#: ../../harddrake/v4l.pm_.c:231
+#, fuzzy
+msgid "PLL setting:"
+msgstr "ôàðìàòàâàííå"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
msgstr ""
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+
+#: ../../help.pm_.c:48
+#, fuzzy
msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive. It must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/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 ""
-"ГÑты узровень неабходна выкарыÑтоўваць з аÑцÑрогай. СiÑÑ‚Ñма будзе праÑцей\n"
-"у карыÑтаннi, але i больш чутнай: гÑты узровень бÑÑпекi нельга "
-"выкарыÑтоўваць\n"
-"на машынах, ÑкiÑ Ð´Ð°Ð»ÑƒÑ‡Ð°Ð½Ñ‹ да Ñеткi цi да Internet. Уваход не абаронены "
-"паролем."
-
-#: ../../fs.pm:1
-#, fuzzy, c-format
-msgid "Mounting partition %s"
-msgstr "Фарматаванне раздзелу %s"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "IÐ¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальнiку:"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Userdrake"
-msgstr "ВыкарыÑтоўваць DiskDrake"
-
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Памеры Ñкога раздзела вы жадаеце змÑнiць?"
+"Äàëåé àäçíà÷àíû óñå ³ñíóþ÷ûÿ ðàçäçåëû Linux, çíîéäçåíûÿ íà âàøûì äûñêó,\n"
+" ÿê³ÿ çðîáëåíû ìàéñòðàì âûëó÷ýííÿ äûñêà¢. Âû ìîæàöå ïàê³íóöü ³õ òàê ³ "
+"âûêàðûñò¢âàöü\n"
+" äàëåé, áî ÿíû äîáðà ïàäûõîäçÿöü äëÿ çâû÷àéíàãà âûêàðûñòàííÿ. Êàë³ âû\n"
+" ¢íîñ³öå çìåíû, âû ïàâ³ííû, âûëó÷ûöü õàöÿ ðàçäçåë (\"/\"). Ðàá³öå\n"
+" ðàçäçåë íå âåëüì³ ìàëûì, áî ¢ àäâàðîòíûì âûïàäêó âû íÿ çäîëååöå óñòàëÿâàöü\n"
+" äàñòàòêîâà ïðàãðàìíàãà çàáåñïÿ÷ýííÿ.Êàë³ âû æàäàåöå çàõàâàöü âàøûÿ "
+"äàäçåíûÿ\n"
+" íà àñîáíûì ðàçäçåëå, âû ïàâ³ííû àáðàöü ïóíêò ìàíö³ðàâàííÿ \"/home\".\n"
+"\n"
+"Êîæíû ðàçäçåë ïàçíà÷àíû íàñòóïíûì ÷ûíàì \"²ìÿ\", \"Ñâîéñòâû\".\n"
+"\n"
+"\n"
+"\"²ìÿ\" êàäàâàíà òàê - \"òûï äûñêó\", \"íóìàð äûñêó\", \"íóìàð ðàçäçåëó\" \n"
+"(íàïðûêëàä, \"hda1\").\n"
+"\n"
+"\n"
+"\"Òûï äûñêó\" êàäàâàíû ÿê \"hd\", êàë³ ãýòà IDE, ³ \"sd\" êàë³ SCSI.\n"
+" * \"à\" \"master\" íà ïåðøàñíûì êàíàëå IDE \n"
+" * \"b\" \"slave\" íà ïåðøàñíûì êàíàëå IDE\n"
+" * \"c\" \"master\" íà äðóãàñíûì êàíàëå IDE\n"
+" * \"d\" \"slave\" íà äðóãàñíûì êàíàëå IDE\n"
+"\n"
+"\n"
+"Äëÿ SCSI äûñêࢠ- \"a\" ãýòà \"ïåðøàñíû æîðñê³ äûñê\", \"b\" - \"äðóãàñíû "
+"æîðñê³ äûñê\", ³ ã.ä."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to missing %s"
+#: ../../help.pm_.c:79
+msgid ""
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Test pages"
-msgstr "Праверка партоў"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Logical volume name "
-msgstr "Лакальны прынтÑÑ€"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:84
msgid ""
-"List of data to restore:\n"
+"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"
+"you are not supposed to know them all by heart.\n"
+"\n"
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
+"\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
+"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
+"\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
+"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
+"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
+"\n"
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
-#: ../../fs.pm:1
-#, fuzzy, c-format
-msgid "Checking %s"
-msgstr "Памеры Ñкрану: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "Опцыi Ñокету прынтÑру"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "ÐдраÑÑ‹ памÑці карты (DMA)"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Disconnecting from Internet "
-msgstr "ДалучÑнне да IнтÑрнÑту"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "ФранцыÑ"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
+#: ../../help.pm_.c:135
+msgid ""
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
+#: ../../help.pm_.c:171
+msgid ""
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remote printer name missing!"
-msgstr "Ðддалены вузел"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Жадаеце пратÑÑцiраваць друк?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "ТурцыÑ"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
+#: ../../help.pm_.c:193
+msgid ""
+"You may now choose which services you wish to start at boot time.\n"
+"\n"
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
+"\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Number of buttons"
-msgstr "2 кнопкi"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "ВьетнамÑкi \"нумар радка\" QWERTY"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Module"
-msgstr "Порт мышы"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:210
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
+#: ../../help.pm_.c:224
+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.\n"
+"\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
+#: ../../help.pm_.c:246
+msgid ""
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
msgstr ""
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "Ð—Ð»ÑƒÑ‡Ð°Ð½Ñ‹Ñ Ð¨Ñ‚Ð°Ñ‚Ñ‹"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "User umask"
-msgstr "IÐ¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальнiку:"
-
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Default OS?"
-msgstr "Па дамаўленню"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "ШвейцарÑкi (ÐÑÐ¼ÐµÑ†ÐºÐ°Ñ Ñ€Ð°Ñкладка)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
+#: ../../help.pm_.c:253
+msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:277
+#, fuzzy
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\"."
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft 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"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
+"\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
msgstr ""
+"Ó ãýòûì ïóíêöå, âû ïàâ³ííû àáðàöü äçå íà âàøûì æîðñê³ì \n"
+"äûñêó óñòàëÿâàöü àïåðàöûéíóþ ñ³ñòýìó Mandrake Linux. Êàë³ äûñê ïóñòû\n"
+"àëüáî ¢ñòàëûâàíàÿ àïåðàöûéíàÿ àïåðàöûéíàÿ ñ³ñòýìà âûêàðûñòî¢âàå ¢ñþ\n"
+"äûñêàâóþ ïðàñòîðó, âû ïàâ³ííû ðàçüá³öü ÿãî íà ðàçäçåëû. Ó àñíî¢íûì,\n"
+"ðàçá³öö¸ ðàçäçåëࢠæîðñêàãà äûñêó ñêëàäàåööà ç ëàã³÷íàãà äçÿëåííÿ ÿãî\n"
+"äûñêàâàé ïðàñòîðû äçåëÿ ¢ñòàëÿâàííÿ âàøàé íîâàé ñ³ñòýìû Mandrake Linux.\n"
+"\n"
+"Òàìó ÿê âûí³ê³ ðàçá³ööÿ ðàçäçåëࢠçâû÷àéíà íåçâàðîòíûÿ, ãýòû ïðàöýñ \n"
+"ìîæà áûöü ïóæàþ÷ûì ³ íàïðóæàíûì, êàë³ âû íåâîïûòíû êàðûñòàëüí³ê. Ãýòû\n"
+"ìàéñòàð ñïðàø÷àå ãýòû ïðàöýñ. Ïåðàä òûì ÿê ïà÷àöü çâÿðí³öåñÿ, êàë³\n"
+"ëàñêà, äà äàâåäê³.\n"
+"\n"
+"Âàì ïàòðýáíà, ñàìà ìàëà, äâà ðàçäçåëû. Ïåðøû íåïàñðýäíà äëÿ àïåðàöûéíàé\n"
+"ñ³ñòýìû, ³ äðóã³ äëÿ â³ðòóàëüíàé ïàìÿö³ (Swap - ðàçäçåë).\n"
+"\n"
+"Êàë³ ðàçäçåëû ¢æî âûçíà÷àíû (ó ïàïÿðýäíÿå ¢ñòàëÿâàííå ö³ ³íøûì \n"
+"³íñòðóìàíòàì âûçíà÷ýííÿ ðàçäçåëà¢), âû ïàâ³ííû àáðàöü òûÿ, ÿê³ÿ æàäàåöå\n"
+"âûêàðûñòî¢âàöü äëÿ ¢ñòàëÿâàííÿ ñ³ñòýìû.\n"
+"\n"
+"\n"
+"Êàë³ ðàçäçåëû íå áûë³ âûçíà÷àíû, âû ïàâ³ííû ³õ ñòâàðûöü. Êàá çðàá³öü \n"
+"ãýòà, ñêàðûñòàéöå ìàéñòðà, äàñòóïíàãà âûøýé. Ó çàëåæíàñö³ àä \n"
+"êàíô³ãóðàöû³ æîðñòêàãà äûñêó, ìîãæà áûöü çðîáëåíà íàñòóïíàå:\n"
+"\n"
+"* Âûêàðûñòàííå ³ñíóþ÷àãà ðàçäçåëó: ìàéñòàð çíàéøî¢ àäç³í ö³ íåêàëüê³.\n"
+"³ñíóþ÷ûõ ðàçäçåëࢠíà âàøûì æîðñê³ì äûñêó. Êàë³ âû æàäàåöå ³õ çàõàâàöü,\n"
+"àáÿðûöå ãåòóþ îïöûþ.\n"
+"\n"
+"\n"
+"* Ïî¢íàÿ à÷ûñòêà äûñêó: àáÿðûöå ãýòà, êàë³ âû æàäàåöå âûäàë³öü óñåäàäçåíûÿ ³ "
+"ðàçäçåëû ÿê³ÿ ³ñíóþöü\n"
+" íà âàøûì äûñêó ³ çàìÿí³öü íà Mandrake Linux. Áóäçöå óâàæë³âû ç ãýòàéîïöûÿé, "
+"áî ãýòû ïðàöýñ íåçâàðîòíû.\n"
+"\n"
+"\n"
+"* Âûêàðûñòàííå âîëüíàé ïðàñòîðû íà ðàçäçåëå Windows: êàë³ MicrosoftWindows "
+"óñòàëÿâàíà íà âàøûì æîðñê³ì\n"
+" äûñêó ³ âûêàðûñòî¢âàå ¢ñþ äàñòóïíóþ ïðàñòîðó, âû ïàâ³ííû ñòâàðûöüâîëüíóþ "
+"ïðàñòîðó äëÿ äàäçåíûõ Linux\n"
+"Êàá çðàá³öü ãýòà, âû ìîæàöå âûäàëÿöü âàø ðàçäçåë Windows ³ äàäçåíûÿ(ãë."
+"\"À÷ûñòêà óñÿãî äûñêó\" àëüáî\n"
+" \"Ðýæûì ýêñïåðòó\") àëüáî çìÿí³öü ïàìåðû âàøàãà ðàçäçåëó WindowsÇìÿíåííå "
+"ïàìåðࢠìîæà áûöü âûêàíàíà\n"
+" áåç ñòðàòû äàäçåíûõ. Ãýòàÿ îïöûÿ ðýêàìåíäóåööà, êàë³ âû "
+"æàäàåöåâûêàðûñòî¢âàöü Mandrake Linux ³\n"
+" Microsoft Windows íà àäíûì ³ òûì æà êàìï'þòýðû.\n"
+"\n"
+" Ïåðàä âûáàðàì ãýòàãà, êàë³ ëàñêà, çüâÿðí³öå ¢âàãó, íà òîå, øòîêîëüêàñüöü "
+"äàñòóïíàé âîëüíàé\n"
+" ïðàñòîðû ïàä Microsoft Windows çìåíøûööà.\n"
+"\n"
+"\n"
+"* Ðýæûì ýêñïåðòó: âû ìîæàöå àáðàöü ãýòóþ îïöûþ, êàë³ âû æàäàåöåðàçá³öü "
+"ðàçäçåëû óëàñíà ðóêàì³.\n"
+" Áóäçöå ¢âàæë³âûÿ àá³ðàþ÷û ãýòà. Ãýòàÿ îïöûÿ ìàãóòíàÿ àëå äàâîë³íåáÿñïå÷íàÿ, "
+"âû ìîæàöå\n"
+" ë¸ãêà çãóá³öü ñâàå äàäçåíûÿ. Òàìó íå àá³ðàéöå ãýòóþ îïöûþ êàë³ âûíå âåäàåöå "
+"øòî ðîá³öå."
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "NTP Server"
-msgstr "NIS Ñервер:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Sulogin(8) in single user level"
+#: ../../help.pm_.c:347
+msgid ""
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Load/Save on floppy"
-msgstr "Захаванне на дыÑкету"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
+#: ../../help.pm_.c:378
+#, fuzzy
+msgid ""
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
+"Óñå ðàçäçåëû, ÿê³ÿ áûë³ òîëüê³ âûçíà÷àíû ïàâ³ííû áûöü\n"
+"àäôàðìàòàâàíû (ôàðìàòàâàöü - çíà÷ûöü ñòâàðûöü ôàéëàâàþ ñ³ñòýìó).\n"
+"\n"
+"\n"
+"Ó òîé æà ÷àñ, âû ìîæàöå ïåðàôàðìàòàâàöü óæî ³ñíóþ÷ûÿ ðàçäçåëû, êàá ñö¸ðö³\n"
+"äàäçåíûÿ ÿê³ÿ ÿíû ¢òðûìë³âàþöü. Êàë³ âû æàäàåöå çðàá³öü ãýòà, àáÿðûöå "
+"ðàçäçåëû\n"
+"ÿê³ÿ æàäàåöå àäôàðìàòàâàöü.\n"
+"\n"
+"\n"
+"Çà¢âàæöå, âû ïàâ³ííû ïåðàôàðìàòàâàöü óñå ñòâîðàíûÿ ðàçäçåëû. Âû ïàâ³ííû\n"
+"ïåðàôàðìàòàâàöü ðàçäçåëû, ÿê³ÿ ¢òðûìë³âàþöü àïåðàöûéíóþ ñ³ñòýìó (òûïó \"/"
+"\",\n"
+"\"/usr\" ö³ \"/var\"), àëå íå ïàâ³ííû ïåðàôàðìàòàâàöü ðàçäçåëû, ÿê³ÿ "
+"óòðûìë³âàþöü\n"
+"äàäçåíûÿ, ÿê³ÿ âû æàäàåöå çàõàâàöü (çâû÷àéíà /home).\n"
+"\n"
+"\n"
+"Êàë³ ëàñêà, áóäçöå ¢âàæë³âûÿ, àá³ðàþ÷û ðàçäçåëû, áî ïàñëÿ ôàðìàòàâàííÿ\n"
+"óñå äàäçåíûÿ áóäóöü íåçâàðîòíà âûäàëåíûÿ.\n"
+"\n"
+"\n"
+"Íàö³ñí³öå \"Òàê\" êàë³ âû ãàòîâûÿ ôàðìàòàâàöü ðàçäçåëÿ.\n"
+"\n"
+"\n"
+"Íàö³ñí³öå \"Àäìåíà\" êàë³ æàäàåöå àáðàöü ³íøûÿ ðàçäçåëû äëÿ "
+"óñòàëÿâàííÿâàøàé\n"
+"íîâàé àïåðàöûéíàé ñ³ñòýìû Mandrake Linux."
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "добра"
-
-#: ../../Xconfig/test.pm:1
-#, fuzzy, c-format
-msgid "Leaving in %d seconds"
-msgstr "%d Ñекундаў"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Да Ñкога паÑлÑдоўнага порту далучаны мадÑм?"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Property"
-msgstr "Порт"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
+#: ../../help.pm_.c:404
+#, fuzzy
+msgid ""
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
+"\n"
+"Please be patient."
msgstr ""
+"Âàøà íîâàÿ àïåðàöûéíàÿ ñ³ñòýìà Mandrake Linux çàðàç óñòà븢âàåööà.\n"
+"Ãýòà àïåðàöûÿ àäûìå ïý¢íû ÷àñ(øòî çàëåæûöü àä ïàìåðó àáðàíàãà ¢ñòàëÿâàííÿ ³ "
+"õóòêàñö³\n"
+" êàìï'þòýðó) .\n"
+"\n"
+"\n"
+"Êàë³ ëàñêà, ïà÷àêàéöå."
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "LAN Configuration"
-msgstr "ÐаÑтройка"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "Гана"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
+#: ../../help.pm_.c:412
+msgid ""
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
+"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Advanced Options"
-msgstr "ЗаканчÑнне наÑтройкi"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "View Configuration"
-msgstr "ÐаÑтройка"
+#: ../../help.pm_.c:425
+msgid ""
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
+#: ../../help.pm_.c:432
+msgid ""
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:442
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"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -4566,7537 +3227,5995 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:513
+#, fuzzy
msgid ""
-"Graphic Card\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-" 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"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\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 ""
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "ÐтрымалаÑÑ Ð¿Ð°Ð¼Ñ‹Ð»ÐºÐ° ÑžÐ¿Ð°Ñ€Ð°Ð´ÐºÐ°Ð²Ð°Ð½Ð½Ñ Ð¿Ð°ÐºÐµÑ‚Ð°Ñž:"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "ÐаÑтройка злучÑÐ½Ð½Ñ Ð· IнтÑрнÑтам"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "Ðдкат"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Save partition table"
-msgstr "ЗапiÑ Ñ‚Ð°Ð±Ð»iцы раздзелаў"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "ФiнÑкi"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "МакедоніÑ"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
msgstr ""
+"Íà âàøûì äûñêó áûëî çíîéäçåíà áîëåé çà àäç³í ðàçäçåë\n"
+"Windows. Êàë³ ëàñêà, àáÿðûöå òîé, ïàìåð ÿêîãà æàäàåöå çìÿí³öü, "
+"êàáóñòàëÿâàöü\n"
+"ñ³ñòýìó Mandrake Linux.\n"
+"\n"
+"\n"
+"Äëÿ iôàðìàöû³, êîæíû ðàçäçåë àäçíà÷àíû ÿê: \"Linux ³ìÿ\", \"Windows\n"
+"³ìÿ\" \"Câîéñòâû\".\n"
+"\"Linux ²ìÿ\" êàäàâàíà òàê - \"òûï äûñêó\", \"íóìàð äûñêó\",\"íóìàð "
+"ðàçäçåëó\n"
+"(íàïðûêëàä, \"hda1\").\n"
+"\n"
+"\n"
+"\"Òûï äûñêó\" êàäàâàíû ÿê \"hd\", êàë³ ãýòà IDE, ³ \"sd\" êàë³ SCSI.\n"
+"\n"
+"\"Íóìàð äûñêó\" - ñ³ìâàë ïàñëÿ \"hd\" ö³ \"sd\". Äëÿ IDE äûñêà¢:\n"
+" * \"à\" \"master\" íà ïåðøàñíûì êàíàëå IDE \n"
+" * \"b\" \"slave\" íà ïåðøàñíûì êàíàëå IDE\n"
+" * \"c\" \"master\" íà äðóãàñíûì êàíàëå IDE\n"
+" * \"d\" \"slave\" íà äðóãàñíûì êàíàëå IDE\n"
+"\n"
+"\n"
+"Äëÿ SCSI äûñêࢠ- \"a\" ãýòà \"ïåðøàñíû æîðñê³ äûñê\", \"b\" - \"äðóãàñíû "
+"æîðñê³ äûñê\", ³ ã.ä.\n"
+"\n"
+"\"Windows ²ìÿ\" ñ³ìâàë âàøàãà äûñêó ¢ Windows (ïåðøû äûñê ö³\n"
+"ðàçäçåë ïàçíà÷àåööà ÿê \"C:\")."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "СлавенÑкi"
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
+msgstr "Êàë³ ëàñêà, ïà÷àêàéöå. Ãýòàÿ àïåðàöûÿ àäûìå ïý¢íû ÷àñ."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../help.pm_.c:547
+#, fuzzy
msgid ""
-"Authorize:\n"
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
+"\n"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
+"\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"- only local ones if set to \"LOCAL\"\n"
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
"\n"
-"- none if set to \"NONE\".\n"
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
+"\n"
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
msgstr ""
+"Êàë³ ëàñêà, íàö³ñí³öå \"Óñòà븢êà\" êàë³ íå ìàåööà àí³ÿêàé ïàïÿðýäíÿéâåðñ³³ "
+"Mandrake Linux\n"
+"àëüáî âû æàäàåöå âûêàðûñòî¢âàöü íåêàëüê³ àïåðàöûéíûõ ñ³ñòýìà¢.\n"
+"\n"
+"\n"
+"Ó çàëåæíàñö³ àä âàøûõ âåäࢠGNU/Linux, âû ìîæûöå àáðàöü àäç³í ç íàñòóïíûõ "
+"êëàñà¢, êàá óñòà븢âàöü ³ ìàäûô³êàâàöü \n"
+"âàøóþ àïåðàöûéíóþ ñ³ñòýìó Mandrake Linux:\n"
+"\n"
+"* Ðýêàìåíäàâàíà: àáÿðûöå ãýòû êëàñ, êàë³ âû í³êîë³ íå ¢ñòà븢âàë³GNU/Linux. "
+"Óñòàëÿâàííå áóäçå âåëüì³ ïðîñòûì,\n"
+" âàì áóäçå çàäàíà òîëüê³ íåêàëüê³ ïûòàííÿ¢.\n"
+"\n"
+"\n"
+"* Ïà âûáàðó: êàë³ âû äàñòàòêîâà çíà¸ìûÿ ç GNU/Linux, âû ìîæàöå çðàá³öü âûáàð "
+"ì³æ âûêàðûñòàííåì ñ³ñòýìû ÿê Ïðàöî¢íàÿ\n"
+" ñòàíöûÿ, Ñåðâåð, Ðàñïðàöî¢êà. Âû ïàâ³ííû áóäçåöå àäêàçàöü íà áîëüøóþ "
+"êîëüêàñöü ïûòàííÿ¢ ÷ûì ïàä ÷àñ óñòàëÿâàííÿ\n"
+" êëàñó \"Ðýêàìýíäàâàíà\", òàìó âû ïàâ³ííû âåäàöü, ÿê ïðàöóå GNU/Linux, êàá "
+"àáðàöü ãýòû êëàñ óñòàëÿâàííÿ.\n"
+"\n"
+"\n"
+"* Ýêñïåðò: âû ìîæàöå àáðàöü ãýòû êëàñ, êàë³ âû ìàåöå äîáðûÿ âåäû ¢ GNU/"
+"Linux. ßê ³ ïðû ¢ñòàëÿâàíí³ êëàñó\n"
+" \"Íàñòðîåíà\", âû ìîæàöå çðàá³öü âûáàð ì³æ âûêàðûñòàííåì ñ³ñòýìû ÿê "
+"Ïðàöî¢íàÿ ñòàíöûÿ, Ñåðâåð,\n"
+" Ðàñïðàöî¢êà. Áóäçüöå âåëüì³ àñöÿðîæíûÿ ïåðàä òûì, ÿê àáðàöü ãýòû êëàñ "
+"óñòàëÿâàííÿ. Âû áóäçåöå çäîëüíûÿ âûêàíàöü óñòàëÿâàííå ¢\n"
+" àäïàâåäíàñö³ ç âàøûì³ æàäàííÿì³. Àäêàçû íà íåêàòîðûÿ ïûòàíí³ ìîãóöü áûöü "
+"âåëüì³ ñêëàäàíûì³, êàë³ âû íå ìàåöå äîáðûõ âåäࢠó GNU/Linux.\n"
+" Òàìó íå àá³ðàéöå ãýòû êëàñ ³íñòàëÿöû³, êàë³ âû íå âåäàåöå òîå, øòî ðîá³öå."
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Libya"
-msgstr "ЛібÑрыÑ"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "ÐšÐ°Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ‹Ñ ÑцÑнараў, уÑталÑванне ПЗ, запуÑк Ñлужбаў..."
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer on parallel port #%s"
-msgstr "IÐ¼Ñ Ð¿Ñ€Ñ‹Ð½Ñ‚Ñру"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:582
msgid ""
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
-"- Burn to CD"
+"Click on the \"More\" 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, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "Таблiца"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Ðе ведаю Ñк адфарматаваць %s з тыпам %s"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Model"
-msgstr "Порт мышы"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "USB printer #%s"
-msgstr "IÐ¼Ñ Ð´Ñ€ÑƒÐºÐ°Ñ€Ðºi"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Stop Server"
-msgstr "NIS Ñервер:"
-
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../help.pm_.c:598
msgid ""
+"The first step is to choose your preferred language.\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
+"Please choose your preferred language for installation and system usage.\n"
+"\n"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
+"\n"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Modem"
-msgstr "Порт мышы"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr "Тувалю"
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
+#: ../../help.pm_.c:617
+msgid ""
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
+"\n"
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
+"\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:638
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."
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"GPM дадае падтрымку мышы да праграмаў, ÑкiÑ Ð¿Ñ€Ð°Ñ†ÑƒÑŽÑ†ÑŒ у Ñ‚ÑкÑтавым Ñ€Ñжыме,\n"
-"такiÑ… Ñк Midnight Commander. ГÑта дазвалÑе выкарыÑтоўваць мыш пры "
-"капiраваннi i ÑžÑтаўцы,\n"
-"i ўключае падтрымку ÑžÑплываючых (pop-up) меню Ñž Ñ‚ÑкÑтавым Ñ€Ñжыме."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
+#: ../../help.pm_.c:642
+msgid ""
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
+"\n"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
+"\n"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
+"\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
+"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
+#: ../../help.pm_.c:678
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:"
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, 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 in doubt, DrakX will display a dialog with various options.\n"
+"\n"
+" * \"Bootloader to use\": you have three choices:\n"
+"\n"
+" * \"GRUB\": if you prefer grub (text menu);\n"
+"\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\n"
+"\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
+"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
+"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
+"\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\n"
+"\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
msgstr ""
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "No password aging for"
-msgstr "ÐÑма паролю"
-
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../help.pm_.c:718
+#, fuzzy
msgid ""
-"The following options can be set to customize your\n"
-"system security. If you need an explanation, look at the help tooltip.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
+"LILO (àä LInux LOader) i Grub - ãýòà çàãðóç÷ûêi. ßíû ìîãóöü çàãðóçiöü "
+"äðóãóþ\n"
+"GNU/Linux öi ëþáóþ iíøóþ àïåðàöûéíóþ ñiñòýìó, óñòàëÿâàíóþ íà êàìïóòàðû.\n"
+"Çâû÷àéíà, ãýòûÿ iíøûÿ àïåðàöûéíûÿ ñiñòýìû êàðýêòíà âûçíà÷àþööà i\n"
+"¢ñòà븢âàþööà. Êàëi ãýòà íå àòðûìàëàñÿ, òî âû ìîæàöå äàäàöü ëþáû çàïiñ\n"
+"ñàìàñòîéíà. Áóäçüöå ¢ïý¢íåíû, øòî âû çàäàëi êàðýêòíûÿ ïàðàìåòðû.\n"
+"\n"
+"\n"
+"Òàêñàìà âû ìîæàöå ïàæàäàöü i íå äàáà¢ëÿöü iíøûÿ àïåðàöûéíûÿ ñiñòýìû.\n"
+"Ó òàêiì âûïàäêó ïàòðýáíà âûäàëiöü àäïàâåäíûÿ çàïiñû. Àëå æ òàäû âàì \n"
+"ïàòðýáíà áóäçå çàãðóçà÷íàÿ äûñêåòà, êàá çàãðóçiööà!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
+#: ../../help.pm_.c:732
+#, fuzzy
+msgid ""
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\n"
+"\n"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
msgstr ""
+"Íåàáõîäíà ïàçíà÷ûöü, äçå âû æàäàåöå ðàçìÿñöiöü iíôàðìàöûþ, ÿêàÿ íåàáõîäíà\n"
+"äëÿ çàãðóçêi Linux.\n"
+"\n"
+"\n"
+"Êàëi âû íå àä÷óâàåöå àáñàëþòíà äàêëàäíà, øòî âû ðîáiöå, \n"
+"àáÿðûöå \"Ïåðøû ñåêòàð íà äûñêó (MBR)\"."
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr "УÑходні Тымор"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "On Tape Device"
-msgstr "Порт прынтÑру"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:739
msgid ""
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
"\n"
-"- Save to Tape on device: %s"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
+"\n"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Login name"
-msgstr "IÐ¼Ñ Ð´Ð°Ð¼ÐµÐ½Ñƒ"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
+#: ../../help.pm_.c:759
+msgid ""
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
+"\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
+#: ../../help.pm_.c:781
+msgid ""
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
+"\n"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\n"
+"\n"
+"For Linux, there are a few possible options:\n"
+"\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
+"\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
+"\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
+"\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
+"\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"hda=autotune\n"
+"\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
+"\n"
+" * Initrd: this option can be used either to load initial modules, before\n"
+"the boot device is available, or to load a ramdisk image for an emergency\n"
+"boot situation;\n"
+"\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
+"\n"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
+"\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support;\n"
+"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Installing Foomatic..."
-msgstr "УÑталÑванне пакету %s"
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Калi лаÑка, выйдзiце, а потым ÑкарыÑтайце Ctrl-Alt-BackSpace"
-
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "detected"
-msgstr "Ðддалены прынтÑÑ€"
-
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "Выбар пакетаў Ð´Ð»Ñ ÑžÑталÑваннÑ"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Package: "
-msgstr "Пакет"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
+#: ../../help.pm_.c:828
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
+"\n"
+"Yaboot's main options are:\n"
+"\n"
+" * Init Message: a simple text message displayed before the boot prompt;\n"
+"\n"
+" * Boot Device: indicates where you want to place the information required\n"
+"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
+"to hold this information;\n"
+"\n"
+" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+"yaboot. The first delay is measured in seconds and at this point, you can\n"
+"choose between CD, OF boot, MacOS or Linux;\n"
+"\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
+"\n"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\n"
+"\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
+"\n"
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
+#: ../../help.pm_.c:860
+msgid ""
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
+"\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
+"\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
+"\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\n"
+"\n"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\n"
+"\n"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\n"
+"\n"
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "StarOffice"
-msgstr "добра"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
+#: ../../help.pm_.c:891
+#, fuzzy
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
+"Àáÿðûöå æîðñê³ äûñê ÿê³ æàäàåöå à÷ûñö³öü äëÿ ¢ñòàëÿâàííÿ\n"
+"íîâàãà ðàçäçåëó Mandrake Linux. Áóäçöå ¢âàæë³âûÿ, óñå äàäçåíûÿ íà äûñêó "
+"áóäóöü\n"
+" çí³ø÷àíû ³ ³õ íåìàã÷ûìà áóäçå àäíàâ³öü."
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Windows Migration tool"
-msgstr "ÐÐ°Ð²ÑƒÐºÐ¾Ð²Ñ‹Ñ Ð¿Ñ€Ñ‹ÐºÐ»Ð°Ð´Ð°Ð½Ð½Ñ–"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, fuzzy, c-format
-msgid "All languages"
-msgstr "Выбар мовы"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Памеры Ñкрану: %s\n"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "%s not found...\n"
-msgstr "Ðе знайшлi %s"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Testing your connection..."
-msgstr "Якi тып вашага ISDN злучÑннÑ?"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Cache size"
-msgstr "памер блоку"
-
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:896
+#, fuzzy
msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"Пароль зараз уключаны, але выкарыÑтанне камп'ÑŽÑ‚Ñру Ñž ÑкаÑцi Ñеткавага\n"
-"такÑама не Ñ€Ñкамендавана."
+"Íàö³ñí³öå \"Òàê\", êàë³ æàäàåöå âûäàë³öü óñå äàäçåíûÿ\n"
+"³ ðàçäçåëû íà ãýòûì äûñêó. Áóäçöå óâàæë³âûÿ, ïàñëÿ ãýòàé àïåðàöû³ âû íå\n"
+"\n"
+"çäîëååöå àäíàâ³öü ëþáûÿ äàäçåíûÿ ³ ðàçäçåëû, óë³÷âàþ÷û ³ äàäçåíûÿ Windows\n"
+"\n"
+"\n"
+"Íàö³ñí³öå \"Àäìåíà\" êàá àäìÿí³öü àïåðàöûþ áåç ñòðàòû äàäçåíûõ ³ ðàçäçåëà¢"
-#: ../../diskdrake/interactive.pm:1
+#: ../../install2.pm_.c:111
#, c-format
-msgid "Start sector: "
-msgstr "Пачатковы Ñектар:"
+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 ""
-#: ../../lang.pm:1
+#: ../../install2.pm_.c:167
#, c-format
-msgid "Congo (Brazzaville)"
+msgid "You must also format %s"
msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Read"
-msgstr "Перазагрузiць"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Выбар пакетаў Ð´Ð»Ñ ÑžÑталÑваннÑ"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Seychelles"
-msgstr "Ðбалонка:"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:423
#, 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"
+"You have selected the following server(s): %s\n"
"\n"
-"For your printer Printerdrake has found:\n"
"\n"
-"%s"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Bad password on %s"
-msgstr "ÐÑма паролю"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:441
#, c-format
msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
"\n"
-"There is one unknown printer directly connected to your system"
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Right Control key"
-msgstr "Ðддалены прынтÑÑ€"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
+msgstr "Íåìàã÷ûìà âûêàðûñòî¢âàöü broadcast áåç äàìåíà NIS"
-#: ../../network/tools.pm:1
+#: ../../install_any.pm_.c:879
#, fuzzy, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr "УÑтаўце дыÑкету Ñž дыÑкавод %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "ЗамбіÑ"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr ""
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Romanian (qwerty)"
-msgstr "РуÑкi (Я-Ð’-Е-Р-Т-И)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
+#: ../../install_any.pm_.c:895
+msgid ""
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Egypt"
-msgstr "ПуÑта"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, c-format
-msgid "Czech Republic"
-msgstr "ЧÑÑÐºÐ°Ñ Ð ÑÑпубліка"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Sound card"
-msgstr "Стандартны"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Import Fonts"
-msgstr "Фарматаванне раздзелаў"
+msgid "Error reading file %s"
+msgstr "Ïàìûëêà ÷ûòàííÿ ôàéëó %s"
-#: ../../diskdrake/hd_gtk.pm:1
-#, fuzzy, c-format
+#: ../../install_any.pm_.c:1040
msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Зараз вы маеце толькi адзiн вÑлiкi раздзел FAT\n"
-"(Ñкі звычайна выкарыÑтоўвае MS Dos/Windows).\n"
-"Прапаную, па-першае, змÑнiць памеры раздзела\n"
-"(клiкнiце на Ñго, а потым на \"змÑненне памераў\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
+"Ïàìûëêà: äëÿ ñòâàðýííÿ íîâûõ ôàéëàâûõ ñiñòýìࢠíå çíàéäçåíû àäïàâåäíûÿ \n"
+"ïðûëàäû. Ïðàâåðöå àáñòàëÿâàííå äëÿ ïîøóêó iìàâåðíàé ïðû÷ûíû."
-#: ../../network/netconnect.pm:1
+#: ../../install_interactive.pm_.c:21
#, c-format
msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
+"Ïý¢íàå àáñòàëÿâàííå ïàòðàáóå êàìåðöûéíûõ äðàéâåðࢠäëÿ ïðàöû.\n"
+"×àñòêîâà ³íôàðìàöûþ ïðà ³õ ìîæíà àòðûìàöü òóò: %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "ЗмÑнiць тып раздзелу"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:56
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."
+"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 ""
+"Âû ïàâiííû ìåöü êàðàí¸âû ðàçäçåë.\n"
+"Äëÿ ãýòàãà ñòâàðûöå ðàçäçåë (àëüáî àäçíà÷öå ¢æî iñíóþ÷û).\n"
+"Ïîòûì àáÿðûöå ``Êðîïêà ìàíöiðàâàííÿ'' i ¢ñòàíàâiöå ÿå ¢ `/'"
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Network Options"
-msgstr "Опцыi модулю:"
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
+msgstr "Âû ïàâiííû ìåöü ðàçäçåë swap"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable msec hourly security check"
-msgstr ""
-
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../install_interactive.pm_.c:62
msgid ""
-"Display theme\n"
-"under console"
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
+"Íÿìà ðàçäçåëà swap.\n"
+"\n"
+"Óñ¸ àäíî ïðàöÿãâàöü?"
-#: ../../printer/cups.pm:1
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(модуль %s)"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+#, fuzzy
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Âû ïàâiííû ìåöü ðàçäçåë swap"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
+msgstr "Âûêàðûñòî¢âàöü íåçàíÿòóþ ïðàñòîðó"
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
+msgstr "Íå õàïàå ïðàñòîðû äëÿ ñòâàðýííÿ íîâûõ ðàçäçåëà¢"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr ""
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
+msgstr "Âûêàðûñòî¢âàöü iñíóþ÷û ðàçäçåë"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "New printer name"
-msgstr "IÐ¼Ñ Ð´Ñ€ÑƒÐºÐ°Ñ€Ðºi"
+#: ../../install_interactive.pm_.c:102
+msgid "There is no existing partition to use"
+msgstr "Íÿìà iñíóþ÷ûõ ðàçäçåëà¢, ÿêiÿ ìîæíà âûêàðûñòàöü"
-#: ../../fs.pm:1
-#, 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 )."
-msgstr ""
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
+msgstr "Âûêàðûñòî¢âàöü ðàçäçåë Windows äëÿ âiðòóàëüíàé ôàéëàâàé ñiñòýìû"
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr "ЭкватарыÑÐ»ÑŒÐ½Ð°Ñ Ð“Ð²Ñ–Ð½ÑÑ"
+#: ../../install_interactive.pm_.c:112
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Ïàìåðû ÿêîãà ðàçäçåëà âû æàäàåöå çìÿíiöü?"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup System"
-msgstr "ÐаÑтр. файлавых ÑiÑÑ‚Ñмаў"
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
+msgstr "Âûáàð ïàìåðà¢"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Build Backup"
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
+msgstr "Êàðàí¸âû ðàçäçåë ¢ Má: "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr "Ïàìåð swap ðàçäçåëó ¢ Má:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr ""
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
+msgstr "Âûêàðûñòî¢âàöü íåçàíÿòóþ ïðàñòîðó íà ðàçäçåëå Windows"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Romanian (qwertz)"
-msgstr "РуÑкi (Я-Ð’-Е-Р-Т-И)"
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
+msgstr "Ïàìåðû ÿêîãà ðàçäçåëà âû æàäàåöå çìÿíiöü?"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Write Config"
-msgstr "ÐаÑтройка X Window"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "Âûëi÷ýííå ìåæà¢ ôàéëàâàé ñiñòýìû Windows"
-#: ../../services.pm:1
+#: ../../install_interactive.pm_.c:134
#, 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."
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-"ДÑман маршрутызацыi дазвалÑе дынамiчным таблiцам IP маршрутызацыi\n"
-"аднаўлÑцца праз RIP пратакол. RIP выкарыÑтоўваецца Ñž малых Ñетках, больш\n"
-"ÑÐºÐ»Ð°Ð´Ð°Ð½Ñ‹Ñ Ð¿Ñ€Ð°Ñ‚Ð°ÐºÐ¾Ð»Ñ‹ маршрутызацыi - у вÑлiкiÑ… Ñетках."
+"Ó ïðàãðàìû çìåíû ïàìåðࢠðàçäçåëà FAT íå àòðûìàëàñÿ\n"
+"àïðàöàâàöü Âàø ðàçäçåë, ïàìûëêà: %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr "Кірыбаці"
-
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech Mouse (паÑлÑдоўнаÑ, Ñтары тып C7)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
+"Âàø ðàçäçåë ç Windows çàíàäòà ôðàãìåíòàâàíû. \n"
+"Ðýêàìåíäóåì ñïà÷àòêó çàïóñöiöü ïðàãðàìó ``defrag''"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:138
+#, fuzzy
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"
+"WARNING!\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."
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
+"ÓÂÀÃÀ!\n"
+"\n"
+"DrakX çàðàç ïàâiíåí çìÿíiöü ïàìåð âàøàãà ðàçäçåëà Windows.\n"
+"Áóäçüöå ¢âàæëiâû: ãýòàÿ àïåðàöûÿ íåáÿñïå÷íà. Êàëi âû ÿø÷ý íå çðàáiëi \n"
+"ðýçåðâîâóþ êîïiþ äàäçåíûõ, òî ñïà÷àòêó ïàêiíüöå ïðàãðàìó ¢ñòàëÿâàííÿ,"
+"âûêàíàéöå scandisk i defrag íà ãýòûì ðàçäåëå, çðàáiöå ðýçåðâîâóþ êîïiþ\n"
+"äàäçåíûõ i òîëüêi ïîòûì çíî¢ âÿðíiöåñÿ äà ïðàãðàìû ¢ñòàëÿâàííÿ.\n"
+"Êàëi ïàäðûõòàâàëiñÿ, íàöiñíiöå Ok."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr "ПраглÑд"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr ""
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "ßêóþ ïðàñòîðó çàõàâàöü äëÿ Windows?"
-#: ../../network/tools.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Цi жадаеце зараз паÑпрабаваць далучыцца да IнтÑрнÑту?"
+msgid "partition %s"
+msgstr "Ðàçäçåë %s"
-#: ../../keyboard.pm:1
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid "Belgian"
-msgstr "БельгiйÑкi"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Цi Ñ‘Ñць у Ð²Ð°Ñ iншы?"
+msgid "FAT resizing failed: %s"
+msgstr "À¢òàçìÿíåííå ïàìåðࢠíå àòðûìàëàñÿ äëÿ ðàçäçåëó FAT %s"
-#: ../../network/ethernet.pm:1
-#, fuzzy, c-format
+#: ../../install_interactive.pm_.c:171
msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
msgstr ""
-"Ði водны ethernet Ñеткавы адаптар у вашай ÑiÑÑ‚Ñме не вызначаны. Калi лаÑка, "
-"ÑкарыÑтайце канфiгурацыйны iнÑтрумÑнт."
+"Íå çíîéäçåíà ðàçäçåëࢠFAT äëÿ çìÿíåííÿ ïàìåðࢠàëüáî âûêàðûñòàííÿ\n"
+"¢ ÿêàñöi âiðòóàëüíàé ôàéëàâàé ñiñòýìû (öi íåäàñòàòêîâà ïðàñòîðû íà äûñêó)"
-#: ../../diskdrake/hd_gtk.pm:1
-#, fuzzy, c-format
-msgid "Windows"
-msgstr "ÐÐ°Ð²ÑƒÐºÐ¾Ð²Ñ‹Ñ Ð¿Ñ€Ñ‹ÐºÐ»Ð°Ð´Ð°Ð½Ð½Ñ–"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr "Ñö¸ðöi äàäçåíûÿ íà ¢ñiì äûñêó"
-#: ../../common.pm:1
-#, fuzzy, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "Дадаць раздзел немагчыма"
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr "Âûäàëiöü Windows(TM)"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Host Name"
-msgstr "IÐ¼Ñ Ð¼Ð°ÑˆÑ‹Ð½Ñ‹"
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Íà ÿêi ç ìàþ÷ûõñÿ æîðñòêiõ äûñêࢠÂû æàäàåöå ¢ñòàëÿâàöü Linux?"
-#: ../../standalone/logdrake:1
+#: ../../install_interactive.pm_.c:183
#, c-format
-msgid "/File/Save _As"
-msgstr ""
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Óñå iñíóþ÷ûÿ ðàçäçåëû íà äûñêó %s i äàäçåíûÿ íà iõ áóäóöü ñòðà÷àíû"
+
+#: ../../install_interactive.pm_.c:191
+#, fuzzy
+msgid "Custom disk partitioning"
+msgstr "Âûêàðûñòî¢âàöü iñíóþ÷û ðàçäçåë"
+
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr "Âûêàðûñòî¢âàöü fdisk"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_interactive.pm_.c:198
#, 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)."
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
+"Âû ìîæàöå öÿïåð ðàçáiöü âàø äûñê %s\n"
+"Ïà çàêàí÷ýííi íå çàáóäçüöåñÿ çàõàâàöü çìÿíåííi, ñêàðûñòà¢øû `w'"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
+#: ../../install_interactive.pm_.c:227
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Âûêàðûñòî¢âàöü íåçàíÿòóþ ïðàñòîðó íà ðàçäçåëå Windows"
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "Затрымка перад загрузкай вобразу па дамаўленню"
+#: ../../install_interactive.pm_.c:243
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "Äàäàöü ðàçäçåë íåìàã÷ûìà"
-#: ../../any.pm:1
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Ìàéñòàð ïàäðûõòî¢êi ðàçäçåëࢠDrakX çíàéøî¢ íàñòóïíûÿ âàðûÿíòû:"
+
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid "Restrict command line options"
-msgstr "Ðбмежаванне опцыÑÑž каманднага радка"
+msgid "Partitioning failed: %s"
+msgstr "Ïàäðûõòî¢êà ðàçäåëࢠíå ¢äàëàñÿ: %s"
-#: ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "East Europe"
-msgstr "Еўропа"
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr "Äàëó÷ýííå äà ñåòêi"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "ВыкарыÑтоўваць незанÑтую праÑтору"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr "Àäëó÷ýííå àä ñåòêi"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
+#: ../../install_steps.pm_.c:76
+msgid ""
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
+"Óçíiêëà ïàìûëêà, ÿêóþ íå àòðûìë³âàåööà êàðýêòíà àïðàöàâàöü,\n"
+"òàìó ïðàöÿãâàéöå íà ñâàþ ðûçûêó."
-#: ../../standalone/logdrake:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "Mail alert"
+msgid "Duplicate mount point %s"
+msgstr "Äóáëÿâàííå ïóíêòó ìàíöiðàâàííÿ %s"
+
+#: ../../install_steps.pm_.c:380
+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 ""
+"Íåêàòîðûÿ âàæíûÿ ïàêåòû íå áûëi ¢ñòàëÿâàíû êàðýêòíà.\n"
+"Äðóãi âàø cdrom äûñê öi âàø cdrom ìàþöü äýôåêòû.\n"
+"Ïðàâåðöå cdrom íà âàøûì êàìïóòàðû, âûêàðûñòî¢âàþ÷û\"rpm -qpl Mandrake/RPMS/*."
+"rpm\"\n"
-#: ../../network/tools.pm:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "Internet configuration"
-msgstr "ÐаÑтройка злучÑÐ½Ð½Ñ Ð· IнтÑрнÑтам"
+msgid "Welcome to %s"
+msgstr "СардÑчна запрашаем у %s"
-#: ../../lang.pm:1
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr "Äûñêàâîä íåäàñòóïíû"
+
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "Uzbekistan"
-msgstr "УзбÑкіÑтан"
+msgid "Entering step `%s'\n"
+msgstr "Ïåðàõîä íà êðîê `%s'\n"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "ДублÑванне пункту манцiÑ€Ð°Ð²Ð°Ð½Ð½Ñ %s"
+#: ../../install_steps_gtk.pm_.c:146
+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 ""
+"Ó Âàøàé ñiñòýìå ìàåööà íåäàõîï ðýñóðñà¢, òàìó ìàã÷ûìû ïðàáëåìû\n"
+"ïðû ¢ñòàëÿâàííi Mandrake Linux. Ó ãýòûì âûïàäêó ïàñïðàáóéöå òýêñòàâóþ\n"
+"ïðàãðàìó ¢ñòàëÿâàííÿ. Äëÿ ãýòàãà íàöiñíiöå `F1' ó ÷àñ çàãðóçêi, à ïîòûì\n"
+"íàáÿðûöå `text' i íàöiñíiöå <ENTER>."
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/Autodetect _printers"
-msgstr "Ðддалены прынтÑÑ€"
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr "Êëàñ Óñòàëÿâàííÿ"
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, fuzzy, c-format
-msgid "Finish"
-msgstr "ФiнÑкi"
+#: ../../install_steps_gtk.pm_.c:160
+#, fuzzy
+msgid "Please choose one of the following classes of installation:"
+msgstr "Êàëi ëàñêà, àáÿðûöå àäçií ç êëàñࢠóñòàëÿâàííÿ:"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
+msgstr "Âûáàð ãðóïû ïàêåòà¢"
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr "Тога"
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
+msgstr "Àñàáiñòû âûáàð ïàêåòà¢"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr ""
+msgid "Total size: %d / %d MB"
+msgstr "Àãóëüíû ïàìåð: %d / %d Má"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
+msgstr "Äðýííû ïàêåò"
-#: ../../Xconfig/card.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "16 MB"
-msgstr "16 Мб"
+msgid "Name: %s\n"
+msgstr "Iìÿ: %s\n"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid "Please try again"
-msgstr "ПаÑпрабуйце ÑÑˆÑ‡Ñ Ñ€Ð°Ð·"
+msgid "Version: %s\n"
+msgstr "Âåðñiÿ: %s\n"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "The model is correct"
-msgstr "ГÑта дакладна?"
-
-#: ../../install_interactive.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "ÐўтазмÑненне памераў не атрымалаÑÑ Ð´Ð»Ñ Ñ€Ð°Ð·Ð´Ð·ÐµÐ»Ñƒ FAT %s"
+msgid "Size: %d KB\n"
+msgstr "Ïàìåð: %d Ká\n"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
-msgid "Individual package selection"
-msgstr "ÐÑабiÑты выбар пакетаў"
+msgid "Importance: %s\n"
+msgstr "Çíà÷íàñöü: %s\n"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "This partition is not resizeable"
-msgstr "Памеры Ñкога раздзела вы жадаеце змÑнiць?"
+#: ../../install_steps_gtk.pm_.c:360
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr ""
+"Âû íå ìîæàöå âûáðàöü ãýòû ïàêåò, òàìó ÿê íå õàïàå ìåñöà äëÿ ÿãî ¢ñòàëÿâàííÿ"
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr "Размеркаванне"
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
+msgstr "Íàñòóïíûÿ ïàêåòû áóäóöü äàäàíû äà ñiñòýìû"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
+msgstr "Íàñòóïíûÿ ïàêåòû áóäóöü âûäàëåíû"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Guatemala"
-msgstr "Шлюз"
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
+msgstr "Âû íå ìîæàöå âûëó÷àöü ³ àäìÿíÿöü âûëó÷ýííå ãýòàãà ïàêåòó"
-#: ../../diskdrake/hd_gtk.pm:1
-#, fuzzy, c-format
-msgid "Journalised FS"
-msgstr "памылка манцiраваннÑ"
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Ãýòà àáàâÿçêîâû ïàêåò, ÿãî âûëó÷ýííå íåëüãà àäìÿíiöü"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
+msgstr "Âû íå ìîæàöå àäìÿíiöü âûëó÷ýííå ãýòàãà ïàêåòó. ¨í óæî ¢ñòàëÿâàíû"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
+#: ../../install_steps_gtk.pm_.c:395
+msgid ""
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
+"Ãýòû ïàêåò ïàâiíåí áûöü àáíî¢ëåíû\n"
+"Âû ¢ïý¢íåíû, øòî õî÷àöå àäìÿíiöü âûëó÷ýííå?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Лiтара Ð´Ð»Ñ DOS-дыÑку: %s (наўгад)\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr "БахрÑйн"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "Âû íå ìîæàöå àäìÿíiöü âûëó÷ýííå ãýòàãà ïàêåòó. ßãî ïàòðýáíà àáíàâiöü"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "omit scsi modules"
-msgstr "РÑжым злучÑннÑ"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr "Óñòà븢êà"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:407
+#, fuzzy
+msgid "Load/Save on floppy"
+msgstr "Çàõàâàííå íà äûñêåòó"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:408
+#, fuzzy
+msgid "Updating package selection"
+msgstr "Àñàáiñòû âûáàð ïàêåòà¢"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:413
+#, fuzzy
+msgid "Minimal install"
+msgstr "Âûäàëiöü ç ñiñòýìû"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Тып клавiÑтуры: %s\n"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
+msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr "Óñòà븢âàåì"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr "×àêàåööà"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr "Çàñòàëîñÿ ÷àñó "
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Манцiраваць i разманцiраваць уÑе ÑÐµÑ‚ÐºÐ°Ð²Ñ‹Ñ Ñ„Ð°Ð¹Ð»Ð°Ð²Ñ‹Ñ ÑiÑÑ‚Ñмы (NFS),\n"
-" SMB (Lan Manager/Windows) i NCP (Netware) пункты манцiраваннÑ."
+#: ../../install_steps_gtk.pm_.c:469
+#, fuzzy
+msgid "Please wait, preparing installation..."
+msgstr "Ïàäðûõòî¢êà ¢ñòàëÿâàíüíÿ"
-#: ../../standalone/drakconnect:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid "Launch the wizard"
-msgstr ""
+msgid "%d packages"
+msgstr "%d ïàêåòà¢"
-#: ../../harddrake/data.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "Tvcard"
-msgstr ""
+msgid "Installing package %s"
+msgstr "Óñòàëÿâàííå ïàêåòó %s"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Звычайны Ñ€Ñжым"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "Ïðûíÿöü"
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Size"
-msgstr "Памер: %s"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
+msgstr "Àäêàçàöü"
-#: ../../help.pm:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
-msgid "GRUB"
+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 ""
+"Çìÿíiöå âàø Cd-Rom!\n"
+"\n"
+"Êàëi ëàñêà, óñòà¢öå Cd-Rom, ïàçíà÷àíû \"%s\", ó âàø äûñêàâîä i íàöiñíiöå Oê "
+"ïàñëÿ.\n"
+"Êàëi âû íå ìàåöå ÿãî, íàöiñíiöå Àäìÿíiöü, êàá àäìÿíiöü óñòàëÿâàííå ç ãýòàãà "
+"Cd."
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Greenland"
-msgstr "IÑландÑкi"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
+msgstr "Óñ¸ ðî¢íà ïðàöÿãâàöü?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "Чацьвер"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
+msgstr "Àòðûìàëàñÿ ïàìûëêà ¢ïàðàäêàâàííÿ ïàêåòà¢:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
+msgstr "Àòðûìàëàñÿ ïàìûëêà ¢ïàðàäêàâàííÿ ïàêåòà¢:"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:10
msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
"\n"
-"What would you like to do?"
+"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/drakTermServ:1
-#, fuzzy, c-format
-msgid "Delete All NBIs"
-msgstr "ÐбÑрыце файл"
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
+msgstr "Àäáûëàñÿ ïàìûëêà"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:85
+#, fuzzy
+msgid "Do you really want to leave the installation?"
+msgstr "Öi æàäàåöå ïðàòýñöiðàâàöü íàñòðîéêi?"
+
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
+msgstr "˳öýíç³éíàÿ äàìîâà"
+
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
-"This dialog allows you to fine tune your bootloader:\n"
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
-" * \"%s\": there are three choices for your bootloader:\n"
"\n"
-" * \"%s\": if you prefer grub (text menu).\n"
+"1. License Agreement\n"
"\n"
-" * \"%s\": if you prefer LILO with its text menu interface.\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"
-" * \"%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"
+"2. Limited Warranty\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"
+"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"
-"!! 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"
+"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"
-"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
-"are normally reserved for the expert user."
+"\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 ""
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"if set, send the mail report to this email address else send it to root."
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Якую канфiгурацыю XFree вы жадаеце атрымаць?"
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "Êëàâiÿòóðà"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "More"
-msgstr "ПераноÑ"
+#: ../../install_steps_interactive.pm_.c:218
+#, fuzzy
+msgid "Please choose your keyboard layout."
+msgstr "Êàëi ëàñêà, àáÿðûöå òûï êëàâiÿòóðû."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which can "
-"accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should choose a lower level."
-msgstr ""
-"Ðа гÑтам узроўне бÑÑпекi магчыма выкарыÑтанне ÑiÑÑ‚Ñмы Ñž ÑкаÑцi\n"
-"Ñерверу. Узровень бÑÑпекi даÑтаткова выÑокi Ð´Ð»Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹\n"
-"Ñерверу, Ñкi дапуÑкае злучÑннi Ñа шматлiкiмi клiентамi."
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
+msgstr "ßêi êëàñ óñòàëÿâàííÿ âû æàäàåöå?"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Server Name"
-msgstr "Ñервер"
+#: ../../install_steps_interactive.pm_.c:241
+#, fuzzy
+msgid "Install/Update"
+msgstr "Óñòà븢êà"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Password"
-msgstr "Пароль Ð´Ð»Ñ ÑžÐ²Ð°Ñ…Ð¾Ð´Ñƒ"
+#: ../../install_steps_interactive.pm_.c:241
+#, fuzzy
+msgid "Is this an install or an update?"
+msgstr "Àáÿðûöå ¢ñòàëÿâàííå öi àáíà¢ëåííå"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr "Ðýêàìåíäàâàíà"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Ýêñïåðò"
-#: ../../install_interactive.pm:1
-#, fuzzy, 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."
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade"
msgstr ""
-"УВÐГÐ!\n"
-"\n"
-"DrakX зараз павiнен змÑнiць памер вашага раздзела Windows.\n"
-"Будзьце ўважлiвы: гÑÑ‚Ð°Ñ Ð°Ð¿ÐµÑ€Ð°Ñ†Ñ‹Ñ Ð½ÐµÐ±ÑÑпечна. Калi вы ÑÑˆÑ‡Ñ Ð½Ðµ зрабiлi \n"
-"Ñ€Ñзервовую копiÑŽ дадзеных, то Ñпачатку пакiньце праграму ÑžÑталÑваннÑ,"
-"выканайце scandisk i defrag на гÑтым разделе, зрабiце Ñ€Ñзервовую копiÑŽ\n"
-"дадзеных i толькi потым зноў вÑрнiцеÑÑ Ð´Ð° праграмы ÑžÑталÑваннÑ.\n"
-"Калi падрыхтавалiÑÑ, нацiÑнiце Ok."
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Tajik keyboard"
-msgstr "ТайÑÐºÐ°Ñ ÐºÐ»Ð°Ð²iÑтура"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#, fuzzy
+msgid "Upgrade packages only"
+msgstr "Àñàáiñòû âûáàð ïàêåòà¢"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:282
+#, fuzzy
+msgid "Please choose the type of your mouse."
+msgstr "êàëi ëàñêà, ïàçíà÷öå òûï âàøàé ìûøû."
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Font List"
-msgstr "Кропка манцiраваннÑ"
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr "Ïîðò ìûøû"
-#: ../../install_steps_interactive.pm:1
-#, 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."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
+msgstr "Êàëi ëàñêà, ïàçíà÷öå ïîñëÿäî¢íû ïîðò, äà ÿêîãà ïàäêëþ÷àíà âàøàÿ ìûø."
-#: ../../install_steps_interactive.pm:1
-#, 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"
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Select file"
-msgstr "ÐбÑрыце файл"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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"
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "ЯпоніÑ"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr "Íàñòðîéêà êàðò PCMCIA ..."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Print option list"
-msgstr "Опцыi прынтÑру"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr "Íàñòðîéêà IDE"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Country / Region"
-msgstr "Памеры Ñкрану"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Search servers"
-msgstr "DNS Ñервер"
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr "íÿìà äàñòóïíûõ ðàçäçåëà¢"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr "Àáÿðûöå ïóíêòû ìàíöiðàâàííÿ"
+
+#: ../../install_steps_interactive.pm_.c:386
msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom пазначаны \"%s\""
+#: ../../install_steps_interactive.pm_.c:395
+#, fuzzy
+msgid "No root partition found to perform an upgrade"
+msgstr "Êàðàí¸âû ðàçäçåë íå çíîéäçåíû"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr "Êàðàí¸âû ðàçäçåë"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Захаваць i аднавiць ÑiÑÑ‚Ñмны Ñнтрапiйны пул Ð´Ð»Ñ Ð²Ñ‹Ñокай ÑкаÑцi\n"
-"генерацыі выпадковых лікаў."
-
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr "ßêi ðàäçåë êàðàí¸âû (/) äëÿ âàøàé ñiñòýìû?"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr "Êàá ìàäûôiêàöûÿ òàáëiöû ðàçäçåëࢠçäåéñíiëàñÿ, ïàòðýáíà ïåðàçàãðóçêà."
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid " (driver %s)"
-msgstr "Сервер XFree86: %s\n"
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr "Âûáàð ðàçäçåëࢠäëÿ ôàðìàòàâàííÿ"
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
+msgstr "Ïðàâåðûöü íà íàÿ¢íàñöü äðýííûõ áëîêà¢?"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr "Файл(Ñ‹) вiртуальнай файлавай ÑiÑÑ‚Ñмы: %s\n"
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr "Ôàðìàòàâàííÿ ðàçäçåëà¢"
-#: ../../network/isdn.pm:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid "I don't know"
-msgstr "Ðе вÑдома"
+msgid "Creating and formatting file %s"
+msgstr "Ñòâàðýííå i ôàðìàòàâàííå ôàéëà %s"
-#: ../../printer/main.pm:1
+#: ../../install_steps_interactive.pm_.c:470
#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, 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?"
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
+"Íå õàïàå ìåñöà ¢ áóôåðû ïàäêà÷êi (swap) äëÿ ¢ñòàëÿâàííÿ, ïàâÿëi÷öå ÿãî."
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Telugu"
-msgstr "БельгiйÑкi"
+#: ../../install_steps_interactive.pm_.c:479
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Ïðàãëÿä äàñòóïíûõ ïàêåòà¢"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr "Ïðàãëÿä äàñòóïíûõ ïàêåòà¢"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Post Uninstall"
-msgstr "ЗаканчÑнне ÑžÑталÑваннÑ"
+#: ../../install_steps_interactive.pm_.c:483
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Âû íå ìîæàöå àäìÿíiöü âûëó÷ýííå ãýòàãà ïàêåòó. ¨í óæî ¢ñòàëÿâàíû"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connecting to Internet "
-msgstr "ДалучÑнне да IнтÑрнÑту"
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr "Ïîøóê ïàêåòࢠäëÿ àáíà¢ëåííÿ"
-#: ../../standalone/scannerdrake:1
+#: ../../install_steps_interactive.pm_.c:505
#, c-format
-msgid " ("
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
+"Âàøà ñiñòýìà íå ìàå äàñòàêîâà ìåñöà äëÿ ¢ñòàëÿâàííÿ öi àáíà¢ëåííÿ (%d > %d)"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Cpuid level"
-msgstr "ÐаÑтройкi ÑžÐ·Ñ€Ð¾ÑžÐ½Ñ Ð±ÑÑпекi"
+#: ../../install_steps_interactive.pm_.c:541
+msgid ""
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
+msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Сеткавы прынтÑÑ€ (TCP/Socket)"
+#: ../../install_steps_interactive.pm_.c:543
+#, fuzzy
+msgid "Load from floppy"
+msgstr "Àäíà¢ëåííå ç äûñêåòû"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "ÐзербайджанÑкі (кірыліца)"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr "Çàõàâàííå íà äûñêåòó"
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Add a module"
-msgstr "Дадаць карыÑтальнiка"
+#: ../../install_steps_interactive.pm_.c:547
+#, fuzzy
+msgid "Loading from floppy"
+msgstr "Àäíà¢ëåííå ç äûñêåòû"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:547
+#, fuzzy
+msgid "Package selection"
+msgstr "Âûáàð ãðóïû ïàêåòà¢"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Local measure"
-msgstr "Лакальны прынтÑÑ€"
+#: ../../install_steps_interactive.pm_.c:552
+#, fuzzy
+msgid "Insert a floppy containing package selection"
+msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
msgstr ""
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "busmouse"
-msgstr "ÐÑма мышы"
+#: ../../install_steps_interactive.pm_.c:649
+#, fuzzy
+msgid "Type of install"
+msgstr "Âûáàð ïàêåòࢠäëÿ óñòàëÿâàííÿ"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:650
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 ""
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
-msgstr "IÐ¼Ñ Ð´Ð»Ñ ÑžÐ²Ð°Ñ…Ð¾Ð´Ñƒ (iÐ¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальнiку)"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:653
+#, fuzzy
+msgid "With X"
+msgstr "×àêàéöå"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr "Уругвай"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Benin"
-msgstr "БельгiйÑкi"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Path selection"
-msgstr "ÐÑабiÑты выбар пакетаў"
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Name/IP address of host:"
+#: ../../install_steps_interactive.pm_.c:741
+msgid ""
+"If you have all the CDs in the list below, click Ok.\n"
+"If you have none of those CDs, click Cancel.\n"
+"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
+"Êàëi âû ìàåöå ¢ñå CD äûñêi ñà ñïiñà íiæýé, íàöiñíiöå Îê.\n"
+"Êàëi âû íå ìàåöå àíi âîäíàãà ç ãýòûõ CD äûñêà¢, íàöiñíiöå Àäìÿíiöü.\n"
+"Êàëi íåêàòîðûõ ç CD äûñêࢠíå ìàåöå, àäìÿíiöå iõ âûäçÿëåííå i íàöiñíiöå Îê."
-#: ../../Xconfig/various.pm:1
+#: ../../install_steps_interactive.pm_.c:746
#, c-format
-msgid "Monitor: %s\n"
-msgstr "Манiтор: %s\n"
+msgid "Cd-Rom labeled \"%s\""
+msgstr "Cd-Rom ïàçíà÷àíû \"%s\""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Custom & system settings"
-msgstr "ВыкарыÑтоўваць iÑнуючы раздзел"
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr "Ïàäðûõòî¢êà ¢ñòàëÿâàíüíÿ"
-#: ../../partition_table/raw.pm:1
+#: ../../install_steps_interactive.pm_.c:776
#, 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."
+"Installing package %s\n"
+"%d%%"
msgstr ""
+"Óñòàëÿâàííå ïàêåòó %s\n"
+"%d%%"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
+msgstr "Íàñòðîéêà ïàñëÿ ¢ñòàëÿâàííÿ"
+
+#: ../../install_steps_interactive.pm_.c:828
#, fuzzy, c-format
-msgid "Printer host name or IP missing!"
-msgstr "IÐ¼Ñ Ð¿Ñ€Ñ‹Ð½Ñ‚Ñру"
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:834
#, fuzzy, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Выбар пакетаў Ð´Ð»Ñ ÑžÑталÑваннÑ"
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:861
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Key isn't writable"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates ?"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Bangladesh"
-msgstr "БангладÑш"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:876
+#, fuzzy
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgstr "Ñóâÿçü ç ëþðàì äëÿ àòðûìàííÿ ñïiñó äàñòóïíûõ ïàêåòà¢"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Initial tests"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
+msgstr "Âûáàð ëþñòðà äëÿ àòðûìàííÿ ïàêåòà¢"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Continue"
-msgstr "ПрацÑгнуць"
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Ñóâÿçü ç ëþðàì äëÿ àòðûìàííÿ ñïiñó äàñòóïíûõ ïàêåòà¢"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Custom Restore"
-msgstr "Па выбару"
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr "ßêi âàø ÷àñàâû ïîÿñ?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Saturday"
-msgstr "Субота"
+#: ../../install_steps_interactive.pm_.c:923
+#, fuzzy
+msgid "Hardware clock set to GMT"
+msgstr "Âàø ñiñòýìíû ãàäçiííiê óñòàëÿâàíû íà GMT?"
-#: ../../help.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Set the root umask."
-msgstr "Пароль Ð´Ð»Ñ root"
-
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "Памылка Ñ‡Ñ‹Ñ‚Ð°Ð½Ð½Ñ Ñ„Ð°Ð¹Ð»Ñƒ %s"
+#: ../../install_steps_interactive.pm_.c:931
+#, fuzzy
+msgid "NTP Server"
+msgstr "NIS ñåðâåð:"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr "на аÑнове Ñкрыпту"
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
+msgstr "Àääàëåíû ñåðâåð CUPS"
-#: ../../harddrake/v4l.pm:1
-#, fuzzy, c-format
-msgid "PLL setting:"
-msgstr "фарматаванне"
+#: ../../install_steps_interactive.pm_.c:966
+#, fuzzy
+msgid "No printer"
+msgstr "Iìÿ äðóêàðêi"
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
-#, fuzzy, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Вы павiнны мець раздзел swap"
+#: ../../install_steps_interactive.pm_.c:982
+#, fuzzy
+msgid "Do you have an ISA sound card?"
+msgstr "Öi ¸ñöü ó âàñ iíøû?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "The URL must begin with http:// or https://"
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "IÐ½ÑˆÐ°Ñ ÐС (SunOS,...)"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Install/Upgrade"
-msgstr "УÑталёўка"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d packages"
-msgstr "%d пакетаў"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Costa Rica"
-msgstr "КоÑта-Рыка"
+#: ../../install_steps_interactive.pm_.c:994
+#, fuzzy
+msgid "Mouse"
+msgstr "Ïîðò ìûøû"
-#: ../../standalone.pm:1
-#, 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"
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Domain Authentication Required"
-msgstr "ÐўтÑнтыфiкацыÑ"
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "Ïðûíòýð"
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid "Use libsafe for servers"
-msgstr "ÐбÑрыце Ð´Ð°Ð´Ð°Ñ‚ÐºÐ¾Ð²Ñ‹Ñ Ð½Ð°Ñтройкi Ð´Ð»Ñ Ñервера"
+#: ../../install_steps_interactive.pm_.c:999
+#, fuzzy
+msgid "ISDN card"
+msgstr "Óíóòðàíàÿ ISDN êàðòà"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Icelandic"
-msgstr "IÑландÑкi"
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+#, fuzzy
+msgid "Sound card"
+msgstr "Ñòàíäàðòíû"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
msgstr ""
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Манцiраванне дыÑку %s\n"
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+#, fuzzy
+msgid "NIS"
+msgstr "Âûêàðûñòî¢âàöü NIS"
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Lilo/grub mode"
-msgstr "РÑжым злучÑннÑ"
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Íàâóêîâûÿ ïðûêëàäàíí³"
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "Марцінік"
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+#, fuzzy
+msgid "Local files"
+msgstr "Ëàêàëüíû ïðûíòýð"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr "Ïàðîëü äëÿ root"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Old user list:\n"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr "Íÿìà ïàðîëþ"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "Search Backups"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
+"Ãýòû ïàðîëü çàíàäòà ïðîñòû (ÿãî äà¢æûíÿ ïàâiííà áûöü íå ìåíåé çà %d ëiòàðà¢)"
-#: ../../modules/parameters.pm:1
-#, fuzzy, c-format
-msgid "a number"
-msgstr "Ðумар Ñ‚Ñлефону"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "Швецкi"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "À¢òýíòûôiêàöûÿ"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Якi драйвер %s паÑпрабаваць?"
+#: ../../install_steps_interactive.pm_.c:1088
+#, fuzzy
+msgid "Authentication LDAP"
+msgstr "À¢òýíòûôiêàöûÿ"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Weekday"
-msgstr "Серада"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Filesystem types:"
-msgstr "Тыпы файлавых ÑiÑÑ‚Ñмаў:"
+#: ../../install_steps_interactive.pm_.c:1090
+#, fuzzy
+msgid "LDAP Server"
+msgstr "ñåðâåð"
-#: ../../lang.pm:1
-#, c-format
-msgid "Northern Mariana Islands"
-msgstr "Ð’Ñ‹Ñпы Паўночнае Мар'Ñны"
+#: ../../install_steps_interactive.pm_.c:1096
+#, fuzzy
+msgid "Authentication NIS"
+msgstr "À¢òýíòûôiêàöûÿ NIS"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "NIS Domain"
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "нÑма"
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr "NIS ñåðâåð:"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1104
msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
+"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 ""
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Floppy"
-msgstr "Захаванне на дыÑкету"
+#: ../../install_steps_interactive.pm_.c:1106
+#, fuzzy
+msgid "Authentication Windows Domain"
+msgstr "À¢òýíòûôiêàöûÿ"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript referencing"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1108
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Iìÿ äàìåíó"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Bootloader"
-msgstr "Ð“Ð°Ð»Ð¾ÑžÐ½Ñ‹Ñ Ð¾Ð¿Ñ†Ñ‹i пачатковага загрузчыку"
+#: ../../install_steps_interactive.pm_.c:1109
+#, fuzzy
+msgid "Domain Admin Password"
+msgstr "Ïàäöâåðäçiöü ïàðîëü"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
+#: ../../install_steps_interactive.pm_.c:1144
+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\"."
msgstr ""
+"Ç äàïàìîãàé çàãðóçà÷íàãà äûñêà âû çìîæàöå çàãðóæàöü Linux íåçàëåæíà àä\n"
+" ñòàíäàðòíàãà çàãðóç÷ûêà. Ãýòà ìîæà áûöü ÿêàñíà, êàëi âû íå æàäàåöå \n"
+"¢ñòà븢âàöü SILO, êàëi iíøàÿ àïåðàöûéíàÿ ñiñòýìà âûäàëÿå SILO, öi SILO íå \n"
+"ìîæà ïðàöàâàöü ó âàøàé êàíôiãóðàöûi. Çàãðóçà÷íû äûñê òàêñàìà ìîæà áûöü \n"
+"âûêàðûñòàí ñóìåñíà ç âûðàòàâàëüíàé äûñêåòàé Mandrake Linux, ÿêàÿ âåëüìi \n"
+"ïàëåã÷ûöü âûðàòàâàííå ñiñòýìû ïàñëÿ çáîþ.\n"
+"\n"
+"Êàëi æàäàåöå ñòâàðûöü çàãðóçà÷íû äûñê çàðàç, óñòà¢öå äûñêåòó ¢ ïåðøû\n"
+"äûñêàâîä i íàöiñíiöå \"Ok\"."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "ПераноÑ"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, fuzzy, c-format
-msgid "Bootloader to use"
-msgstr "Ð“Ð°Ð»Ð¾ÑžÐ½Ñ‹Ñ Ð¾Ð¿Ñ†Ñ‹i пачатковага загрузчыку"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "IÐ¼Ñ Ñерверу SMB"
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr "Ïåðøû äûñêàâîä"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Name Servers:"
-msgstr "NIS Ñервер:"
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "Äðóãi äûñêàâîä"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Minute"
-msgstr "Хвіліны"
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "Ïðàïóñöiöü"
-#: ../../install_messages.pm:1
+#: ../../install_steps_interactive.pm_.c:1167
#, 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"
+msgstr ""
+"Ç äàïàìîãàé çàãðóçà÷íàãà äûñêó âû çìîæàöå çàãðóæàöü Linux òàêñàìà ÿê i \n"
+"ñòàíäàðòíûì çàãðóç÷ûêàì. Ãýòà ìîæà áûöü ÿêàñíà, êàëi âû íå æàäàåöå \n"
+"¢ñòà븢âàöü LILO (öi Grub), êàëi iíøàÿ àïåðàöûéíàÿ ñiñòýìà âûäàëÿå LILO,\n"
+"öi LILO íå ìîæà ïðàöàâàöü ó âàøàé êàíôiãóðàöûi. Çàãðóçà÷íû äûñê òàêñàìà "
+"ìîæà\n"
+"áûöü âûêàðûñòàíû ñóìåñíà ç ðàìîíòíàé äûñêåòàé Mandrake Linux, ÿêàÿ âåëüìi \n"
+"ïàëåã÷ûöü âûðàòàâàííå ñiñòýìû ïàñëÿ çáîþ.\n"
"\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"
+"%s"
+
+#: ../../install_steps_interactive.pm_.c:1173
+msgid ""
"\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"
+"(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)."
msgstr ""
-#: ../../standalone/printerdrake:1
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "Âûáà÷àéöå, àëå äûñêàâîä íåäàñòóïíû"
+
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr "Àáÿðûöå äûñêàâîä, ó ÿêiì áóäçå ñòâàðàööà çàãðóçà÷íàÿ äûñêåòà"
+
+#: ../../install_steps_interactive.pm_.c:1189
#, fuzzy, c-format
-msgid "/_Expert mode"
-msgstr "ЭкÑперт"
+msgid "Insert a floppy in %s"
+msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr "Ñòâàðýííå çàãðóçà÷íàé äûñêåòû"
+
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr "Ïàäðûõòî¢êà çàãðóç÷ûêà"
+
+#: ../../install_steps_interactive.pm_.c:1210
+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 to boot your machine"
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
+msgstr "Âû æàäàåöå âûêàðûñòî¢âàöü aboot?"
+
+#: ../../install_steps_interactive.pm_.c:1219
msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
+"Ïàìûëêà ¢ñòàëÿâàííÿ àboot, \n"
+"ñïðàáàâàöü óñòà븢âàöü, íåãëåäçÿ÷û íà ìàã÷ûìàñöü ïàðóøýííÿ ïåðøàãà ðàçäåëó?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr "МікранÑзыÑн"
+#: ../../install_steps_interactive.pm_.c:1226
+#, fuzzy
+msgid "Installing bootloader"
+msgstr "Óñòàëÿâàííå çàãðóç÷ûêó"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 мiлiÑрда колераў (24 бiты)"
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Ïðàöýñ óñòàëÿâàííÿ çàãðóç÷ûêà íå àòðûìà¢ñÿ. Óçíiêëà íàñòóïíàÿ ïàìûëêà:"
-#: ../../steps.pm:1
+#: ../../install_steps_interactive.pm_.c:1240
#, c-format
-msgid "License"
+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 ""
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "This may take a moment to generate the keys."
+msgid "Insert a blank floppy in drive %s"
+msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
+
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
+msgstr "Ñòâàðýííå äûñêåòû äëÿ ¢ñòàëÿâàííÿ"
+
+#: ../../install_steps_interactive.pm_.c:1289
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
msgstr ""
+"Íåêàòîðûÿ êðîêi íå çàâåðøàíû.\n"
+"Âû ñàïðà¢äû æàäàåöå âûéñöi çàðàç?"
-#: ../../standalone/draksec:1
+#: ../../install_steps_interactive.pm_.c:1300
#, 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"
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press return to reboot.\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"
+"For information on fixes which are available for this release of Mandrake "
+"Linux,\n"
+"consult the Errata available from:\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"
+"%s\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"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandrake Linux User's Guide."
+msgstr ""
+"Âiíøóåì, óñòàëÿâàííå çàâåðøàíà.\n"
+"Âûäàëiöå çàãðóçà÷íû äûñê i íàöiñíiöå enter äëÿ ïåðàçàãðóçêi.\n"
"\n"
"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
+"Çà iíôàðìàöûÿé ïðà çìÿíåííi äàäçåíàãà âûïóñêó Mandrake Linux,\n"
+"çâÿðòàéöåñü íà \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"
+"%s\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 ""
+"Iíôàðìàöûÿ ïà íàñòðîéêå âàøàé ñiñòýìû ¸ñòü ¢ ïàñëÿ-¢ñòàë¸âà÷íàé\n"
+"ãëàâå âàøàãà Äàïàìîæíiêà Êàðûñòàëüíiêó ç Àôiöûéíàãà Mandrake Linux."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+#: ../../install_steps_interactive.pm_.c:1313
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1318
+#, fuzzy
+msgid "Generate auto install floppy"
+msgstr "Ñòâàðýííå äûñêåòû äëÿ ¢ñòàëÿâàííÿ"
-#: ../../install_any.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1320
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"
+"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 ""
-"Памылка: Ð´Ð»Ñ ÑтварÑÐ½Ð½Ñ Ð½Ð¾Ð²Ñ‹Ñ… файлавых ÑiÑÑ‚Ñмаў не знайдзены Ð°Ð´Ð¿Ð°Ð²ÐµÐ´Ð½Ñ‹Ñ \n"
-"прылады. Праверце абÑталÑванне Ð´Ð»Ñ Ð¿Ð¾ÑˆÑƒÐºÑƒ iмавернай прычыны."
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Якую ÑiÑÑ‚Ñму друку Ð’Ñ‹ жадаеце выкарыÑтоўваць?"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Ð’Ñ‹ жадаеце, каб гÑтае злучÑнне Ñтартавала пры загрузцы?"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
+msgstr "À¢òàìàòû÷íû"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1325
+#, fuzzy
+msgid "Replay"
+msgstr "Ïåðàçàãðóçiöü"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1328
+#, fuzzy
+msgid "Save packages selection"
+msgstr "Àñàáiñòû âûáàð ïàêåòà¢"
-#: ../../keyboard.pm:1
+#: ../../install_steps_newt.pm_.c:20
#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "ПольÑкi (ÑÑ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ð°Ñ Ñ€Ð°Ñкладка)"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Add Printer"
-msgstr "ПрынтÑÑ€"
+msgid "Mandrake Linux Installation %s"
+msgstr "Óñòàëÿâàííå Mandrake Linux %s"
-#: ../../standalone/drakbackup:1
-#, c-format
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
+" <Tab>/<Alt-Tab> ïàìiæ ýëåìåíòàìi | <Space> âûáàð | <F12> íàñòóïíû ýêðàí "
-#: ../../printer/printerdrake.pm:1
-#, 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?"
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "ГÑты раздзел не можа быць выкарыÑтаны пад вiртуальную файлавую ÑiÑÑ‚Ñму"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr "Файл ужо iÑнуе. ВыкарыÑтаць Ñго?"
+#: ../../interactive.pm_.c:152
+#, fuzzy
+msgid "Choose a file"
+msgstr "Àáÿðûöå äçåÿííå"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Шлюз"
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+#, fuzzy
+msgid "Next"
+msgstr "Òýêñò"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr "Тонга"
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr "Äðýííû âûáàð, ïàñïðàáóéöå ÿø÷å\n"
-#: ../../lang.pm:1
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "Tunisia"
-msgstr "ТуніÑÑ–Ñ"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Scanner sharing"
-msgstr "ПрынтÑÑ€"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Profile: "
-msgstr "памылка манцiраваннÑ: "
+msgid "Your choice? (default %s) "
+msgstr "Âàø âûáàð? (çìî¢÷àííå %s) "
-#: ../../standalone/harddrake2:1
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr ""
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
-msgstr ""
+#: ../../interactive/stdio.pm_.c:70
+#, fuzzy, c-format
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Âàø âûáàð? (çìî¢÷àííå %s) "
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
-msgstr "ГÑÑ‚Ð°Ñ Ð¼ÐµÑ‚ÐºÐ° ўжо выкарыÑтоўваецца"
+#: ../../interactive/stdio.pm_.c:95
+#, fuzzy, c-format
+msgid "Button `%s': %s"
+msgstr "Îïöûi: %s"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
+#: ../../interactive/stdio.pm_.c:96
+#, fuzzy
+msgid "Do you want to click on this button?"
+msgstr "Âû æàäàåöå âûêàðûñòî¢âàöü aboot?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "УÑе дадзеные Ñž раздзеле %s будуць Ñтрачаны паÑÐ»Ñ Ñ„Ð°Ñ€Ð¼Ð°Ñ‚Ð°Ð²Ð°Ð½Ð½Ñ"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connection Time: "
-msgstr "IÐ¼Ñ Ð·Ð»ÑƒÑ‡ÑннÑ"
-
-#: ../../standalone/livedrake:1
+#: ../../interactive/stdio.pm_.c:105
#, fuzzy, 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."
-msgstr ""
-"ЗмÑнiце ваш Cd-Rom!\n"
-"\n"
-"Калi лаÑка, уÑтаўце Cd-Rom, пазначаны \"%s\", у ваш дыÑкавод i нацiÑнiце Oк "
-"паÑлÑ.\n"
-"Калi вы не маеце Ñго, нацiÑнiце ÐдмÑнiць, каб адмÑнiць уÑталÑванне з гÑтага "
-"Cd."
+msgid "Your choice? (default `%s'%s) "
+msgstr "Âàø âûáàð? (çìî¢÷àííå %s) "
-#: ../../standalone/drakperm:1
+#: ../../interactive/stdio.pm_.c:123
#, c-format
-msgid "Use group id for execution"
+msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "ÐбÑрыце аÑноўнага карыÑтальнiка:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "Габон"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../interactive/stdio.pm_.c:126
msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
msgstr ""
-"Ðддалены CUPS Ñервер не патрабуе ад Ð’Ð°Ñ Ð½Ð°Ñтройкі прынтÑру\n"
-"на гÑтай машыне, ён будзе знойдзены аўтаматычна.\n"
-"Калі Ð’Ñ‹ не ўпÑўнены, абÑрыце \"Ðддалены Ñервер CUPS\"."
-#: ../../any.pm:1
+#: ../../interactive/stdio.pm_.c:139
#, 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."
-msgstr "Ð’Ñ‹ можаце абраць Ñ–Ð½ÑˆÑ‹Ñ Ð¼Ð¾Ð²Ñ‹, ÑкiÑ Ð±ÑƒÐ´ÑƒÑ†ÑŒ даÑтупны паÑÐ»Ñ ÑžÑталÑваннÑ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Domain"
-msgstr "NIS Domain"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Пазначце дакладны памер RAM (знойдзена %d Mб)"
-
-#: ../../help.pm:1
-#, 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."
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "DNS 2 правайдару"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "×åøñêi (QWERTZ)"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "Ð—Ð°Ð³Ñ€ÑƒÐ·Ð°Ñ‡Ð½Ð°Ñ Ð¿Ñ€Ñ‹Ð»Ð°Ð´Ð°"
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "Íÿìåöêi"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Памеры Ñкога раздзела вы жадаеце змÑнiць?"
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Dvorak"
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr "ÐÑÑ–Ñтотна Ð±Ð»Ñ–Ð·ÐºÑ–Ñ Ð´Ð° Злучаных штатаў выÑпы"
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "Iñïàíñêi"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Djibouti"
-msgstr "ÐдмÑнiць"
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "Ôiíñêi"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr ""
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "Ôðàíöóçñêi"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "detected on port %s"
-msgstr "ДублÑванне пункту манцiÑ€Ð°Ð²Ð°Ð½Ð½Ñ %s"
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "Íàðâåæñêi"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD"
-msgstr ""
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "Ïîëüñêi"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Ð’iдÑакарта: %s\n"
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "Ðóñêi"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/Set as _Default"
-msgstr " (Па дамаўленню)"
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
+msgstr "Øâåöêi"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
-msgstr ""
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "UK êëàâiÿòóðà"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "US êëàâiÿòóðà"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Series"
+#: ../../keyboard.pm_.c:167
+#, fuzzy
+msgid "Albanian"
+msgstr "Iðàíñêi"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "Пашыраны раздзел не падтрымлiваецца гÑтай платформай"
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
+msgstr "Àðìÿíñêi (ñòàðû)"
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Splash selection"
-msgstr "ÐÑабiÑты выбар пакетаў"
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
+msgstr "Àðìÿíñêi (typewriter)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "ÐаÑтройка ISDN"
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
+msgstr "Àðìÿíñêi (ôàíåòû÷íû)"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "high"
-msgstr "Ð’Ñ‹Ñокi"
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
+msgstr "Àçåðáàéäæàíñê³ (latin)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "СумеÑнае IнтÑрнÑÑ‚-злучÑнне"
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "Áåëüãiéñêi"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Choose file"
-msgstr ""
+#: ../../keyboard.pm_.c:178
+#, fuzzy
+msgid "Bengali"
+msgstr "Òàáëiöà"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Summary: "
-msgstr "ÐÐ³ÑƒÐ»ÑŒÐ½Ñ‹Ñ Ð·ÑŒÐ²ÐµÑткі"
+#: ../../keyboard.pm_.c:179
+#, fuzzy
+msgid "Bulgarian (phonetic)"
+msgstr "Àðìÿíñêi (ôàíåòû÷íû)"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-"Увага! Знойдзена Ñ–ÑÐ½ÑƒÑŽÑ‡Ð°Ñ ÑiÑÑ‚Ñма Ñеткавай бÑÑпекi (firewall). Вам магчыма "
-"ÑпатрÑбіцца ÑкарÑктаваць Ñе паÑÐ»Ñ ÑžÑталÑваннÑ."
+#: ../../keyboard.pm_.c:180
+#, fuzzy
+msgid "Bulgarian (BDS)"
+msgstr "Áàëãàðñêi"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "ÐдлучÑнне ад Ñеткi"
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
+msgstr "Áðàçiëüñêi (ABNT-2)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
-msgstr ""
+#: ../../keyboard.pm_.c:184
+#, fuzzy
+msgid "Bosnian"
+msgstr "Ýñòîíñêi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
+msgstr "Áåëàðóñê³"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer default settings"
-msgstr "ЗлучÑнне прынтÑру"
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "Øâåéöàðñêi (Íÿìåöêàÿ ðàñêëàäêà)"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Ð—Ð²Ñ‹Ñ‡Ð°Ð¹Ð½Ð°Ñ Ð¼Ñ‹Ñˆ з 2 кнопкамі"
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "Øâåéöàðñêi (Ôðàíöóçñêàÿ ðàñêëàäêà)"
-#: ../../standalone/harddrake2:1
-#, 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)"
-msgstr ""
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "×åøñêi (QWERTY)"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr "Íÿìåöêi (íÿìà çàáëàêiðàâàíûõ êëàâiø)"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Select a device !"
-msgstr "ÐбÑрыце вiдÑакарту"
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remove selected server"
-msgstr "Выдалiць чаргу друку"
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "Äàöêi"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using dhcp) usb"
-msgstr ""
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Dvorak (US)"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Southern Territories"
-msgstr "ÐŸÐ°ÑžÐ´Ð½Ñ‘Ð²Ñ‹Ñ Ð¤Ñ€Ð°Ð½Ñ†ÑƒÑÐºÑ–Ñ Ð¢Ñрыторыі"
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Íàðâåæñêi)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the processor"
-msgstr ""
+#: ../../keyboard.pm_.c:196
+#, fuzzy
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (US)"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "Ýñòîíñêi"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr "УÑе Ð´Ð°Ð´Ð·ÐµÐ½Ñ‹Ñ Ñž гÑтым раздзеле павiнны быць зархiваваныÑ"
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Ãðóçiíñêi (\"Ðóñêàÿ\" ðàñêëàäêà)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "УÑталÑванне пакету %s"
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Ãðóçiíñêi (\"Ëàöiíñêàÿ\" ðàñêëàäêà)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "Ãðý÷àñêi"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
msgstr ""
-"Каб зрабiць больш разделаў, выдалiце адзiн i Ñтварыце пашыраны раздзел "
-"(extended)"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "Выбар пакетаў"
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "Ìàäüÿðñêi"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "УÑе iÑÐ½ÑƒÑŽÑ‡Ñ‹Ñ Ñ€Ð°Ð·Ð´Ð·ÐµÐ»Ñ‹ на дыÑку %s i Ð´Ð°Ð´Ð·ÐµÐ½Ñ‹Ñ Ð½Ð° iÑ… будуць Ñтрачаны"
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "Õàðâàöêi"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Ваша ÑiÑÑ‚Ñма не мае даÑтакова меÑца Ð´Ð»Ñ ÑžÑталÑÐ²Ð°Ð½Ð½Ñ Ñ†i Ð°Ð±Ð½Ð°ÑžÐ»ÐµÐ½Ð½Ñ (%d > %d)"
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
+msgstr "I¢ðûò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr "I¢ðûò (ôàíåòû÷íû)"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr "Iðàíñêi"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr "Бутан"
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr "Iñëàíäñêi"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "Сеткавы iнтÑрфейÑ"
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "Iòàëüÿíñêi"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Disconnection from Internet failed."
-msgstr "ДалучÑнне да IнтÑрнÑту"
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Reading printer data..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
+msgstr "ßïîíñêi 106 êëàâiø"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
+#: ../../keyboard.pm_.c:217
+#, fuzzy
msgid "Korean keyboard"
-msgstr "UK клавiÑтура"
-
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Not connected"
-msgstr "Размеркаванне"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "IнтÑрнÑÑ‚ злучÑнне i канфiгурацыÑ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
-msgstr "ГрÑчаÑкi"
+msgstr "UK êëàâiÿòóðà"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr ""
+#: ../../keyboard.pm_.c:218
+msgid "Latin American"
+msgstr "Ëàöiíà-Àìåðûêàíñêi"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Ð—Ð²Ñ‹Ñ‡Ð°Ð¹Ð½Ð°Ñ Ð¼Ñ‹Ñˆ з 3 кнопкамі"
+#: ../../keyboard.pm_.c:219
+#, fuzzy
+msgid "Laotian"
+msgstr "Ðàçìåðêàâàííå"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
-msgstr ""
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
+msgstr "Ëiòî¢ñêi AZERTY (ñòàðû)"
-#: ../../fsedit.pm:1
-#, fuzzy, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Ð’Ñ‹ не можаце разбiваць на разделы, памер ÑкiÑ… меней за 16 Мб"
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
+msgstr "Ëiòî¢ñêi AZERTY (íîâû)"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "ÐаціÑніце на раздзел"
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Ëiòî¢ñêi \"íóìàð ðàäêà\" QWERTY"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "ЧаÑÑ†Ñ–Ð½Ñ Ð²ÐµÑ€Ñ‚.разг. манiтору: %s\n"
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Ëiòî¢ñêi \"ôàíåòû÷íû\" QWERTY"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "Кропка манцiраваннÑ"
+#: ../../keyboard.pm_.c:225
+#, fuzzy
+msgid "Latvian"
+msgstr "Ðàçìåðêàâàííå"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "User :"
-msgstr "IÐ¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальнiку:"
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore system"
-msgstr "УÑталÑванне ÑiÑÑ‚Ñмы"
+#: ../../keyboard.pm_.c:229
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Àçåðáàéäæàíñê³ (ê³ðûë³öà)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Another one"
-msgstr "цiкава"
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
+msgstr "Ãàëàíäñêi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
-msgstr ""
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
+msgstr "Ïîëüñêi (ñòàíäàðòíàÿ ðàñêëàäêà)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Colombia"
-msgstr "КалюмбіÑ"
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
+msgstr "Ïîëüñêi (qwertz ðàñêëàäêà)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
+msgstr "Ïàðòóãàëüñêi"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr ""
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr "Êàíàäñêi (Êâåáýê)"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Reunion"
-msgstr "Памеры Ñкрану"
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Romanian (qwertz)"
+msgstr "Ðóñêi (ß-Â-Å-Ð-Ò-È)"
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "ПадрабÑзнаÑцi"
+#: ../../keyboard.pm_.c:240
+#, fuzzy
+msgid "Romanian (qwerty)"
+msgstr "Ðóñêi (ß-Â-Å-Ð-Ò-È)"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr ""
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "Ðóñêi (ß-Â-Å-Ð-Ò-È)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Synchronization tool"
-msgstr ""
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
+msgstr "Ñëàâåíñêi"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Checking your system..."
-msgstr "Якую ÑiÑÑ‚Ñму друку Ð’Ñ‹ жадаеце выкарыÑтоўваць?"
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "Ñëàâàöêi (QWERTZ)"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Print"
-msgstr "ПрынтÑÑ€"
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "Ñëàâàöêi (QWERTY)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Serbian (cyrillic)"
+msgstr "Àçåðáàéäæàíñê³ (ê³ðûë³öà)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "МанголіÑ"
+#: ../../keyboard.pm_.c:250
+#, fuzzy
+msgid "Tamil (Unicode)"
+msgstr "i18n (äîáðà)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
-msgstr "Заманцiравана\n"
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
+msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configure CUPS"
-msgstr "ÐаÑтройка X Window"
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr "Òàéñêàÿ êëàâiÿòóðà"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Graphical Interface"
-msgstr "ЗапуÑк X пры Ñтарце ÑiÑÑ‚Ñмы"
+#: ../../keyboard.pm_.c:254
+#, fuzzy
+msgid "Tajik keyboard"
+msgstr "Òàéñêàÿ êëàâiÿòóðà"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Users"
-msgstr "Ðднаўленне з файлу"
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Òóðýöêi (òðàäûöû¸íàÿ \"F\" ìàäýëü)"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Encryption key for %s"
-msgstr "Паролi не Ñупадаюць"
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Òóðýöêi (ñó÷àñíàÿ \"Q\" ìàäýëü)"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Do you want to recover your system?"
-msgstr "Ð’Ñ‹ жадаеце выкарыÑтоўваць aboot?"
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr "Óêðàiíñêi"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Portmapper (аглÑдальнiк партоў) кiруе RPC злучÑннÑмi, ÑкiÑ Ð·Ð²Ñ‹Ñ‡Ð°Ð¹Ð½Ð°\n"
-"выкарыÑтоўваюцца такiмi пратаколамi Ñк NFS i NIS. Portmap Ñервер павiнен "
-"выконвацца\n"
-"на машынах ÑкiÑ Ð¿Ñ€Ð°Ñ†ÑƒÑŽÑ†ÑŒ Ñк Ñерверы Ð´Ð»Ñ Ð¿Ñ€Ð°Ñ‚Ð°ÐºÐ¾Ð»Ð°Ñž, ÑкiÑ ÑкарыÑтоўваюць RPC."
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "US êëàâiÿòóðà (ìiæíàðîäíàÿ)"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Detected hardware"
-msgstr "Гл. апiÑанне абÑталÑваннÑ"
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Âüåòíàìñêi \"íóìàð ðàäêà\" QWERTY"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr "МарыціўÑ"
+#: ../../keyboard.pm_.c:263
+#, fuzzy
+msgid "Yugoslavian (latin)"
+msgstr "Àçåðáàéäæàíñê³ (latin)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
msgstr ""
-#: ../../fs.pm:1
-#, fuzzy, c-format
-msgid "Enabling swap partition %s"
-msgstr "Фарматаванне раздзелу %s"
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
+msgstr ""
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
msgstr ""
-"Ðе знойдзена раздзелаў FAT Ð´Ð»Ñ Ð·Ð¼ÑÐ½ÐµÐ½Ð½Ñ Ð¿Ð°Ð¼ÐµÑ€Ð°Ñž альбо выкарыÑтаннÑ\n"
-"Ñž ÑкаÑцi вiртуальнай файлавай ÑiÑÑ‚Ñмы (цi недаÑтаткова праÑторы на дыÑку)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr "ÐрмÑнÑкi (Ñтары)"
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Monaco"
-msgstr "Манiтор"
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Падрыхтоўка разделаў не ўдалаÑÑ: %s"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
+msgstr ""
-#: ../../fs.pm:1 ../../swap.pm:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s памылка Ñ„Ð°Ñ€Ð¼Ð°Ñ‚Ð°Ð²Ð°Ð½Ð½Ñ %s"
-
-#: ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "Canada (cable)"
-msgstr "КанадÑкi (КвебÑк)"
-
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Floppy creation completed"
-msgstr "IÐ¼Ñ Ð·Ð»ÑƒÑ‡ÑннÑ"
-
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Upgrade"
-msgstr "Раздзел %s"
+msgid "Circular mounts %s\n"
+msgstr "Ìàíöiðàâàííå äûñêó %s\n"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Workstation"
-msgstr "ÐÐ°Ð²ÑƒÐºÐ¾Ð²Ñ‹Ñ Ð¿Ñ€Ñ‹ÐºÐ»Ð°Ð´Ð°Ð½Ð½Ñ–"
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../modules.pm_.c:290
msgid ""
-"Installing package %s\n"
-"%d%%"
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-"УÑталÑванне пакету %s\n"
-"%d%%"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
-msgstr "Кыргізтан"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on USB"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../../move/move.pm:1
-#, 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."
-msgstr ""
+#: ../../modules/parameters.pm_.c:18
+#, fuzzy
+msgid "modinfo is not available"
+msgstr "Äûñêàâîä íåäàñòóïíû"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "With basic documentation"
-msgstr "ÐўтÑнтыфiкацыÑ"
+#: ../../modules/parameters.pm_.c:50
+#, fuzzy
+msgid "a number"
+msgstr "Íóìàð òýëåôîíó"
-#: ../../services.pm:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr "Anacron, перыÑдычны камандны планавальнiк."
+msgid "%d comma separated numbers"
+msgstr ""
-#: ../../install_interactive.pm:1
+#: ../../modules/parameters.pm_.c:52
#, 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 `/'"
+msgid "%d comma separated strings"
msgstr ""
-"Вы павiнны мець каранёвы раздзел.\n"
-"Ð”Ð»Ñ Ð³Ñтага Ñтварыце раздзел (альбо адзначце ўжо iÑнуючы).\n"
-"Потым абÑрыце ``Кропка манцiраваннÑ'' i ÑžÑтанавiце Ñе Ñž `/'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "ЗаходнÑÑ Ð¡Ð°Ñ…Ð°Ñ€Ð°"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Proxy павiнен быць http://..."
+#: ../../modules/parameters.pm_.c:54
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Ôàðìàòàâàííå ðàçäçåëà¢"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr "ÐŸÐ°ÑžÐ´Ð½Ñ‘Ð²Ð°Ñ Ðфрыка"
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - Ìûø"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Eject tape after the backup"
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Стварыць загр. дыÑк"
+#: ../../mouse.pm_.c:33
+#, fuzzy
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Çâû÷àéíàÿ ìûø ç 2 êíîïêàì³"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Modify printer configuration"
-msgstr "ÐаÑтройка злучÑÐ½Ð½Ñ Ð· IнтÑрнÑтам"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Choose a partition"
-msgstr "ÐбÑрыце дзеÑнне"
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Edit current rule"
-msgstr ""
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
-msgstr ""
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Please test the mouse"
-msgstr "Калі лаÑка, зрабіце некалькі рухаў мышшу."
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Do not update inode access times on this file system\n"
-"(e.g, for faster access on the news spool to speed up news servers)."
-msgstr ""
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+#, fuzzy
+msgid "1 button"
+msgstr "2 êíîïêi"
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr ""
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "Çâû÷àéíàÿ ìûø ç 2 êíîïêàì³"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Sticky-bit"
-msgstr ""
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "Ç êîëàì"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Other Media"
-msgstr "ІншыÑ"
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "ïàñëÿäî¢íàÿ"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "Çâû÷àéíàÿ ìûø ç 3 êíîïêàì³"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup system files"
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Sector"
-msgstr "Сектар"
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Qatar"
-msgstr "Стартавае меню"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Base dn"
-msgstr ""
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Ð’Ñ‹ не можаце выбраць гÑты пакет, таму Ñк не хапае меÑца Ð´Ð»Ñ Ñго ÑžÑталÑваннÑ"
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "generate auto-install floppy"
-msgstr "СтварÑнне дыÑкеты Ð´Ð»Ñ ÑžÑталÑваннÑ"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "MM Series"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr "РÑжым злучÑннÑ"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr ""
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (ïàñëÿäî¢íàÿ, ñòàðû òûï C7)"
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "Ðчышчаць /tmp пры кожнай загрузцы"
+#: ../../mouse.pm_.c:68
+#, fuzzy
+msgid "busmouse"
+msgstr "Íÿìà ìûøû"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malawi"
-msgstr "МалÑві"
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "2 êíîïêi"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "local config: false"
-msgstr "Лакальны прынтÑÑ€"
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "3 êíîïêi"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "System settings"
-msgstr "ВыкарыÑтоўваць iÑнуючы раздзел"
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "íÿìà"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Please choose your type of mouse."
-msgstr "калi лаÑка, пазначце тып вашай мышы."
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "Íÿìà ìûøû"
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "running"
-msgstr "Увага!"
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
+msgstr "Êàë³ ëàñêà, çðàá³öå íåêàëüê³ ðóõࢠìûøøó."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "class of hardware device"
-msgstr ""
+#: ../../mouse.pm_.c:491
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "Êàë³ ëàñêà, çðàá³öå íåêàëüê³ ðóõࢠìûøøó."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr "Ðóøöå êîëàì ìûøû!"
+
+#: ../../my_gtk.pm_.c:65
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "Злучанае КаралеўÑтва"
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+#, fuzzy
+msgid "Finish"
+msgstr "Ôiíñêi"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Indonesia"
-msgstr "нÑма"
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
+msgstr "Äàëåé ->"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "Па дамаўленню"
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "Ãýòà äàêëàäíà?"
-#: ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "France [SECAM]"
-msgstr "ФранцыÑ"
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "Iíôàðìàöûÿ"
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "абмежаванне"
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
+msgstr "Ðàçãàðíóöü äðýâà"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "must have"
-msgstr "павiнны мець"
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
+msgstr "Çãàðíóöü äðýâà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr "Ïåðàêëþ÷ýííå ïàìiæ óïàðàäêàâàííåì ïà ãðóïå i àñîáêàõ"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Senegal"
-msgstr "Таблiца"
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "âûêàðûñòî¢âàöü pppoe"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Command line"
-msgstr "IÐ¼Ñ Ð´Ð°Ð¼ÐµÐ½Ñƒ"
+#: ../../network/adsl.pm_.c:24
+#, fuzzy
+msgid "use pptp"
+msgstr "âûêàðûñòî¢âàöü pppoe"
-#: ../advertising/08-store.pl:1
-#, 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:"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "March"
-msgstr "Сакавік"
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "access to administrative files"
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
+msgstr "Äàëó÷ýííå äà Iíòýðíýòó"
+
+#: ../../network/adsl.pm_.c:30
msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-#: ../../fs.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:166
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.)"
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Montserrat"
-msgstr "Порт мышы"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "ñåðâåð"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr ""
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Iìÿ äàìåíó"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "Swap"
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Ñåðâåð äðóêó"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Custom settings"
-msgstr "ВыкарыÑтоўваць iÑнуючы раздзел"
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "ñåðâåð"
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "ñåòêàâàÿ êàðòà íå çíîéäçåíà"
+
+#: ../../network/drakfirewall.pm_.c:129
msgid ""
-"The USB key seems to have write protection enabled, but we can't safely\n"
-"unplug it now.\n"
-"\n"
+"drakfirewall configurator\n"
"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandrake Move again."
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Other"
-msgstr "Ðднаўленне з файлу"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
+#: ../../network/drakfirewall.pm_.c:135
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Configure CUPS"
-msgstr "ÐаÑтройка X Window"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
-msgstr ", "
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remove selected host/network"
-msgstr "Выдалiць чаргу друку"
-
-#: ../../services.pm:1
-#, fuzzy, c-format
+#: ../../network/drakfirewall.pm_.c:153
msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-"Postfix - гÑта паштовы транÑпартны агент, праграма, ÑкаÑ\n"
-"перамÑшчае пошту з адной машыны на йншую."
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "ÐзербайджанÑкі (кірыліца)"
-#: ../../keyboard.pm:1
+#: ../../network/drakfirewall.pm_.c:159
#, 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)"
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Network Hotplugging"
-msgstr "КанфiÐ³ÑƒÑ€Ð°Ñ†Ñ‹Ñ Ñеткi"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr ""
+#: ../../network/drakfirewall.pm_.c:167
+#, fuzzy
+msgid "Everything (no firewall)"
+msgstr "¡ñ¸ ñêàíôiãóðàâàíà!"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore From CD"
-msgstr "Ðднаўленне з дыÑкеты"
+#: ../../network/drakfirewall.pm_.c:169
+#, fuzzy
+msgid "Other ports"
+msgstr "Iíøûÿ êðàiíû"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
+#: ../../network/ethernet.pm_.c:37
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)."
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
msgstr ""
-"Ваш камп'ютар можа быць Ñканфігураваны на ÑумеÑнае выкарыÑтанне\n"
-" ІнтÑрнÑту (Internet Connection Sharing)?\n"
-"\n"
-"Заўвага: вам патрÑбны Ñеткавы адаптар Ð´Ð»Ñ Ð¿Ð°Ð´ÐºÐ»ÑŽÑ‡ÑÐ½Ð½Ñ Ð´Ð° ЛВС.\n"
-"\n"
-"Ð’Ñ‹ жадаеце уÑталÑваць ÑумеÑны доÑтуп да Internet?"
+"ßêi dhcp êëiåíò âû ïëàíóåöå âûêàðûñòî¢âàöü?\n"
+"Ïà çìî¢÷àííþ, ãýòà dhcp-client"
-#: ../../network/ethernet.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:88
+#, fuzzy
msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-"Калi лаÑка, пазначце Ñеткавы адаптар, Ñкi плануеце выкарыÑтоўваць Ð´Ð»Ñ "
-"далучÑÐ½Ð½Ñ Ð´Ð° iнтÑрнÑÑ‚"
+"Íi âîäíû ethernet ñåòêàâû àäàïòàð ó âàøàé ñiñòýìå íå âûçíà÷àíû. Êàëi ëàñêà, "
+"ñêàðûñòàéöå êàíôiãóðàöûéíû iíñòðóìýíò."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
+msgstr "Ïàçíà÷öå ñåòêàâû iíòýðôåéñ"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
+#: ../../network/ethernet.pm_.c:93
msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
+"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
+"Êàëi ëàñêà, ïàçíà÷öå ñåòêàâû àäàïòàð, ÿêi ïëàíóåöå âûêàðûñòî¢âàöü äëÿ "
+"äàëó÷ýííÿ äà iíòýðíýò"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
-msgstr "Ðўтары: "
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "ñåòêàâàÿ êàðòà íå çíîéäçåíà"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "СумеÑнае IнтÑрнÑÑ‚-злучÑнне зараз забаронена"
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "Íàñòðîéêà ñåòêi"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
+#: ../../network/ethernet.pm_.c:201
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
+"Óâÿäçiöå iìÿ ñâà¸é ìàøûíû (host).\n"
+"Iìÿ âàøàé ìàøûíû ïàâiííà áûöü çàäàäçåíà ïî¢íàñöþ,\n"
+"íàïðûêëàä ``mybox.mylab.myco.com''.\n"
+"Âû ìîæàöå òàêñàìà ¢âåñöi IP àäðàñ øëþçó, êàëi ¸í ó âàñ ¸ñöü."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latin American"
-msgstr "Лацiна-ÐмерыканÑкi"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Japanese text printing mode"
-msgstr "ÐаÑтройка Ñеткi"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Old device file"
-msgstr "ÐбÑрыце файл"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "IнфармацыÑ: "
-
-#: ../../interactive/stdio.pm:1
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Опцыi: %s"
-
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Калi лаÑка, пачакайце"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "None"
-msgstr "Зроблена"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "ГÑта дакладна?"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Выбар пакетаў Ð´Ð»Ñ ÑžÑталÑваннÑ"
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "Iìÿ ìàøûíû"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
-msgstr ""
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+#, fuzzy
+msgid "Network Configuration Wizard"
+msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Delete selected printer"
-msgstr "Выдалiць чаргу друку"
+#: ../../network/isdn.pm_.c:22
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "Óíóòðàíàÿ ISDN êàðòà"
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "IнфармацыÑ"
+#: ../../network/isdn.pm_.c:22
+msgid "Internal ISDN card"
+msgstr "Óíóòðàíàÿ ISDN êàðòà"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "УÑталёўка"
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
+msgstr "ßêi òûï âàøàãà ISDN çëó÷ýííÿ?"
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../network/isdn.pm_.c:45
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"
+"Which ISDN configuration do you prefer?\n"
"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"ÐаціÑніце \"Так\", калі жадаеце выдаліць уÑе дадзеныÑ\n"
-"Ñ– раздзелы на гÑтым дыÑку. Будзце уважлівыÑ, паÑÐ»Ñ Ð³Ñтай аперацыі вы не\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
"\n"
-"здолееце аднавіць Ð»ÑŽÐ±Ñ‹Ñ Ð´Ð°Ð´Ð·ÐµÐ½Ñ‹Ñ Ñ– раздзелы, улічваючы Ñ– Ð´Ð°Ð´Ð·ÐµÐ½Ñ‹Ñ Windows\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
"\n"
-"\n"
-"ÐаціÑніце \"Ðдмена\" каб адмÑніць аперацыю без Ñтраты дадзеных Ñ– раздзелаў"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "ЗаканчÑнне ÑžÑталÑваннÑ"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
+"We recommand the light configuration.\n"
msgstr ""
-#: ../../standalone/drakgw:1
-#, 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)."
-msgstr ""
-"УÑе адканфігуравана.\n"
-"Зараз вы можаце ÑумеÑна выкарыÑтоўваць падключÑнне да Internet\n"
-"з іншымі камп'ÑŽÑ‚Ñрамі Ñž вашай ЛВС, карыÑтаючыÑÑ Ð°ÑžÑ‚Ð°Ð¼Ð°Ñ‚Ñ‹Ñ‡Ð½Ñ‹Ð¼\n"
-"канфігураваннем (DHCP)."
+#: ../../network/isdn.pm_.c:54
+#, fuzzy
+msgid "New configuration (isdn-light)"
+msgstr "Çíîéäçåíà ñ³ñòýìà ñåòêàâàé áÿñïåê³ (firewall)!"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Ðддалены Ñервер CUPS"
+#: ../../network/isdn.pm_.c:54
+#, fuzzy
+msgid "Old configuration (isdn4net)"
+msgstr "Çíîéäçåíà ñ³ñòýìà ñåòêàâàé áÿñïåê³ (firewall)!"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - Мыш"
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "Íàñòðîéêà ISDN"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/isdn.pm_.c:166
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."
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
+"Àáÿðûöå âàøàãà ïðàâàéäàðà.\n"
+"êàëi ÿãî íÿìà ¢ ãýòûì ñïiñå, àáÿðûöå òûï ``Iíøû''"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Minimal install"
-msgstr "Выдалiць з ÑiÑÑ‚Ñмы"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Ethiopia"
-msgstr "ЭÑтонÑкi"
+#: ../../network/isdn.pm_.c:179
+#, fuzzy
+msgid "Europe protocol (EDSS1)"
+msgstr "Å¢ðîïà (EDSS1)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
-msgstr ""
+#: ../../network/isdn.pm_.c:181
+#, fuzzy
+msgid "Protocol for the rest of the world"
+msgstr "Ïàäêëþ÷ýííå"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
+#: ../../network/isdn.pm_.c:181
+#, fuzzy
+msgid ""
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
+"Ïàäêëþ÷ýííå \n"
+" íå ïðàç D-êàíàë (âûëó÷àíûÿ êàíàëû)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr ""
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
+msgstr "ßêi ïðàòàêîë âû æàäàåöå âûêàðûñòî¢âàöü?"
-#: ../../standalone/harddrake2:1
+#: ../../network/isdn.pm_.c:196
#, 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 "Found \"%s\" interface do you want to use it ?"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Ðгульны памер: %d / %d Mб"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "disabled"
-msgstr "Таблiца"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Search for new scanners"
-msgstr "ДаÑÑ‚ÑƒÐ¿Ð½Ñ‹Ñ Ð¿Ð°ÐºÐµÑ‚Ñ‹"
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
+msgstr "ßêi òûï êàðòû âû ìàåöå?"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Disabling servers..."
-msgstr "ВызначÑнне прыладаў..."
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
+msgstr "Íå âÿäîìà"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "УÑталÑванне %s не атрымалаÑÑ. Узнiкла наÑÑ‚ÑƒÐ¿Ð½Ð°Ñ Ð¿Ð°Ð¼Ñ‹Ð»ÐºÐ°:"
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr ""
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
-#: ../../install_any.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:210
msgid ""
-"You have selected the following server(s): %s\n"
"\n"
+"If you have an ISA card, the values on the next screen should be right.\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"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
+msgstr ""
"\n"
+"Êàëi âû ìàåöå ISA êàðòó, âåëi÷ûíi íà íàñòóïíûì ýêðàíå ïàâiííû áûöü "
+"ñàïðà¢äíûìi.\n"
"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
+"Êàëi âû ìàåöå PCMCIA êàðòó, âû ïàâiííû âåäàöü irq i io âàøàé êàðòû.\n"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Сеткавы прынтÑÑ€ (TCP/Socket)"
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "Àäìÿíiöü"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup User files..."
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
+msgstr "Ïðàöÿãíóöü"
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "УÑталÑванне ÑiÑÑ‚Ñмы"
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
+msgstr "ßêàÿ ¢ âàñ ISDN êàðòà?"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "First DNS Server (optional)"
-msgstr "Першы Ñервер DNS"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:239
msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
+"Âûçíà÷àíà ISDN PCI êàðòà, àëå íåâÿäîìû ÿå òûï. Êàëi ëàñêà, ïàçíà÷öå PCI "
+"êàðòó íà íàñòóïíûì ýêðàíå."
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
-"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
-"symlink /etc/security/msec/server to point to\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
-"add a service if it is present in the file during the installation of\n"
-"packages."
-msgstr ""
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "Êàðòà ISDN PCI íå çíîéäçåíà. Êàëi ëàñêà, ïàçíà÷öå íà íàñòóïíûì ýêðàíå."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "РуÑкi (фанетычны)"
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Äà ÿêîãà ïàñëÿäî¢íàãà ïîðòó äàëó÷àíû ìàäýì?"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "dhcpd Config..."
-msgstr "ÐаÑтройка IDE"
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "Ïàðàìåòðû êàìóòàâàíàãà çëó÷ýííÿ (Dialup)"
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "УÑталÑванне LILO/GRUB"
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr "Iìÿ çëó÷ýííÿ"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "Iўрыт"
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
+msgstr "Íóìàð òýëåôîíó"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "ÐдлучÑнне ад Ñеткi"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "Iìÿ (login ID)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
-msgstr ""
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr "CHAP"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Truly minimal install"
-msgstr "Выдалiць з ÑiÑÑ‚Ñмы"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "ДаніÑ"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "íà àñíîâå ñêðûïòó"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "ПераноÑіцца раздзел..."
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "íà àñíîâå òýðìiíàëó"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "(This) DHCP Server IP"
-msgstr "IP Ñервера SMB"
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "Iìÿ äàìåíó"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Test of the configuration"
-msgstr "Праверка параметраў наÑтройкi"
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+#, fuzzy
+msgid "First DNS Server (optional)"
+msgstr "Ïåðøû ñåðâåð DNS"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Installing %s ..."
-msgstr "УÑталÑванне пакету %s"
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+#, fuzzy
+msgid "Second DNS Server (optional)"
+msgstr "Äðóãi ñåðâåð DNS:"
-#: ../../help.pm:1
-#, c-format
+#: ../../network/modem.pm_.c:95
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."
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../network/modem.pm_.c:97
#, c-format
-msgid "Choose your filesystem encryption key"
+msgid ""
+"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr "С'ера ЛіонÑ"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Botswana"
-msgstr "ЭÑтонÑкi"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Andorra"
-msgstr "Ðдкат"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Do nothing"
+msgstr "×àêàåööà"
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "(default value: %s)"
-msgstr " ? (змоўчанне %s) "
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Install rpm"
+msgstr "Óñòà븢êà"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
-msgstr ""
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Title"
+msgstr "Òàáëiöà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (Letter)"
+#: ../../network/netconnect.pm_.c:29
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
+"\n"
+"Âû ìîæàöå àäêëþ÷ûööà ö³ ïåðàêàíô³ãóðàâàöü âàøàå çëó÷ýííå."
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+#, fuzzy
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"
+"You can reconfigure your connection."
msgstr ""
+"\n"
+"Âû ìîæàöå àäêëþ÷ûööà ö³ ïåðàêàíô³ãóðàâàöü âàøàå çëó÷ýííå."
-#: ../../Xconfig/card.pm:1
-#, fuzzy, c-format
-msgid "Choose an X server"
-msgstr "ÐбÑрыце X Ñервер"
+#: ../../network/netconnect.pm_.c:29
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "ßê âû ïëàíóåöå äàëó÷ûööà äà Iíòýðíýòó?"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
+#: ../../network/netconnect.pm_.c:32
+#, fuzzy
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
msgstr ""
+"\n"
+"Âû ìîæàöå àäêëþ÷ûööà ö³ ïåðàêàíô³ãóðàâàöü âàøàå çëó÷ýííå."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Памер swap раздзелу ў Mб:"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "No changes to backup!"
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "Фарматаванне\n"
+#: ../../network/netconnect.pm_.c:32
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "ßê âû ïëàíóåöå äàëó÷ûööà äà Iíòýðíýòó?"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Type of install"
-msgstr "Выбар пакетаў Ð´Ð»Ñ ÑƒÑталÑваннÑ"
+#: ../../network/netconnect.pm_.c:36
+#, fuzzy
+msgid "Connect"
+msgstr "Iìÿ çëó÷ýííÿ"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/Windows 95/98/NT"
+#: ../../network/netconnect.pm_.c:37
+#, fuzzy
+msgid "Disconnect"
+msgstr "Íàñòðîéêà ISDN"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
-msgstr ""
+#: ../../network/netconnect.pm_.c:38
+#, fuzzy
+msgid "Configure the connection"
+msgstr "Íàñòðîéêà ñåòêi"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Пратакол rusers дазвалÑе карыÑтальнiкам Ñеткi вызначаць, хто\n"
-"ўвайшоў i працуе на машынах Ñž Ñетцы."
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
+msgstr "Iíòýðíýò çëó÷ýííå i êàíôiãóðàöûÿ"
-#: ../../standalone/drakautoinst:1
+#: ../../network/netconnect.pm_.c:94
#, fuzzy, c-format
-msgid "Automatic Steps Configuration"
-msgstr "ÐаÑтройка мадÑму"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "БарбадоÑ"
-
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
+msgid "We are now going to configure the %s connection."
msgstr ""
+"\n"
+"Âû ìîæàöå àäêëþ÷ûööà ö³ ïåðàêàíô³ãóðàâàöü âàøàå çëó÷ýííå."
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm_.c:103
#, fuzzy, c-format
-msgid "Please select data to backup..."
-msgstr "Калi лаÑка, абÑрыце мову Ð´Ð»Ñ ÐºÐ°Ñ€Ñ‹ÑтаннÑ."
-
-#: ../../standalone/net_monitor:1
-#, c-format
msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
+"\n"
+"\n"
+"\n"
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press OK to continue."
msgstr ""
+"\n"
+"Âû ìîæàöå àäêëþ÷ûööà ö³ ïåðàêàíô³ãóðàâàöü âàøàå çëó÷ýííå."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
-msgstr ""
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
+#: ../../network/netconnect.pm_.c:133
+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 ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
+#: ../../network/netconnect.pm_.c:157
+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 ""
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "The DNS Server IP"
-msgstr "IP Ñервера SMB"
+#: ../../network/netconnect.pm_.c:163
+#, fuzzy
+msgid "Choose the profile to configure"
+msgstr "Àáÿðûöå àñíî¢íàãà êàðûñòàëüíiêà:"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range End:"
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
msgstr ""
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
-msgstr "Ð’Ñ‹Ñокi"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Add a new printer to the system"
-msgstr "Дадаць карыÑтальніка Ñž ÑÑ‹ÑÑ‚Ñму"
-
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr ""
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+#, fuzzy
+msgid "Expert Mode"
+msgstr "Ýêñïåðò"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
-msgstr ""
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
+msgstr "Âûçíà÷ýííå ïðûëàäà¢..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+#: ../../network/netconnect.pm_.c:214
+msgid "Normal modem connection"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Local Printers"
-msgstr "Лакальны прынтÑÑ€"
-
-#: ../../standalone/drakpxe:1
+#: ../../network/netconnect.pm_.c:214
#, fuzzy, c-format
-msgid "Installation image directory"
-msgstr "ЗаканчÑнне наÑтройкi"
+msgid "detected on port %s"
+msgstr "Äóáëÿâàííå ïóíêòó ìàíöiðàâàííÿ %s"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "NIS Ñервер:"
+#: ../../network/netconnect.pm_.c:215
+#, fuzzy
+msgid "Winmodem connection"
+msgstr "Çëó÷ýííå ïðûíòýðó"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Port: %s"
-msgstr "Порт"
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "detected"
+msgstr "Àääàëåíû ïðûíòýð"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Spain"
-msgstr "IÑпанÑкi"
+#: ../../network/netconnect.pm_.c:216
+#, fuzzy
+msgid "ISDN connection"
+msgstr "Íàñòðîéêà ISDN"
-#: ../../standalone/drakTermServ:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid "local config: %s"
+msgid "detected %s"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "ГÑта iÐ¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальнiку ўжо дададзена"
-
-#: ../../interactive.pm:1
-#, fuzzy, c-format
-msgid "Choose a file"
-msgstr "ÐбÑрыце дзеÑнне"
+#: ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "ADSL connection"
+msgstr "Ðàçìåðêàâàííå"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr "Применить"
+#: ../../network/netconnect.pm_.c:218
+#, fuzzy
+msgid "Cable connection"
+msgstr "Çëó÷ýííå ïðûíòýðó"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Auto-detect available ports"
-msgstr "Ðддалены прынтÑÑ€"
+#: ../../network/netconnect.pm_.c:218
+#, fuzzy
+msgid "cable connection detected"
+msgstr "Çëó÷ýííå ïðûíòýðó"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr "Сан Марына"
+#: ../../network/netconnect.pm_.c:219
+#, fuzzy
+msgid "LAN connection"
+msgstr "Ðàçìåðêàâàííå"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "СумеÑнае IнтÑрнÑÑ‚-злучÑнне зараз забаронена"
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
+msgstr ""
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Belgium"
-msgstr "БельгiйÑкi"
+#: ../../network/netconnect.pm_.c:222
+#, fuzzy
+msgid "Choose the connection you want to configure"
+msgstr "Àáÿðûöå iíñòðóìåíò, ÿêi æàäàåöå ñêàðûñòàöü"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Kuwait"
-msgstr "Выхад"
+#: ../../network/netconnect.pm_.c:246
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "ÐбÑрыце мÑнÑджар вокнаў:"
+#: ../../network/netconnect.pm_.c:247
+#, fuzzy
+msgid "Internet connection"
+msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
-msgstr "Сьнежань"
+#: ../../network/netconnect.pm_.c:253
+msgid "Do you want to start the connection at boot?"
+msgstr "Âû æàäàåöå, êàá ãýòàå çëó÷ýííå ñòàðòàâàëà ïðû çàãðóçöû?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "sub generation of the cpu"
-msgstr ""
+#: ../../network/netconnect.pm_.c:267
+#, fuzzy
+msgid "Network configuration"
+msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
msgstr ""
-#: ../../lang.pm:1
+#: ../../network/netconnect.pm_.c:272
#, fuzzy, c-format
-msgid "Taiwan"
-msgstr "Размеркаванне"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "ПакіÑтан"
+msgid ""
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
+msgstr "Öi æàäàåöå ïðàòýñöiðàâàöü íàñòðîéêi?"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
+#: ../../network/netconnect.pm_.c:282
+msgid ""
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:286
msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
-"Узнiкла памылка, Ñкую не атрымліваецца карÑктна апрацаваць,\n"
-"таму працÑгвайце на Ñваю рызыку."
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Importance: "
-msgstr "ЗначнаÑць: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:287
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."
+"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 ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Permissions"
-msgstr "ВерÑiÑ: %s\n"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "IÐ¼Ñ Ð¿Ñ€Ð°Ð²Ð°Ð¹Ð´Ð°Ñ€Ñƒ, напрыклад правайдар.net"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#: ../../network/network.pm_.c:278
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'."
+"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 ""
-"У Вашай ÑiÑÑ‚Ñме маецца недахоп Ñ€ÑÑурÑаў, таму магчымы праблемы\n"
-"пры ÑžÑталÑваннi Mandrake Linux. У гÑтым выпадку паÑпрабуйце Ñ‚ÑкÑтавую\n"
-"праграму ÑžÑталÑваннÑ. Ð”Ð»Ñ Ð³Ñтага нацiÑнiце `F1' у Ñ‡Ð°Ñ Ð·Ð°Ð³Ñ€ÑƒÐ·Ðºi, а потым\n"
-"набÑрыце `text' i нацiÑнiце <ENTER>."
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "ВыкарыÑтоўваць раздзел Windows Ð´Ð»Ñ Ð²iртуальнай файлавай ÑiÑÑ‚Ñмы"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
-msgstr "ÐрмÑнÑкi (typewriter)"
-
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connection type: "
-msgstr "IÐ¼Ñ Ð·Ð»ÑƒÑ‡ÑннÑ"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Graphical interface"
-msgstr "ЗапуÑк X пры Ñтарце ÑiÑÑ‚Ñмы"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "Чад"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "India"
-msgstr "IранÑкi"
+#: ../../network/network.pm_.c:283
+msgid ""
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
+msgstr ""
+"Êàëi ëàñêà, óâÿäçiöå IP êàíôiãóðàöûþ äëÿ âàøàé ìàøûíû.\n"
+"Êîæíû ïóíêò ïàâiíåí áûöü çàïî¢íåíû ÿê IP àäðàñ ¢ äçåñÿòêîâà-êðîïêàâàé \n"
+"íàòàöûi (íàïðûêëàä, 1.2.3.4)."
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s з падтрымкай 3D-паÑкарÑннÑ"
+msgid "Configuring network device %s"
+msgstr "Íàñòðîéêà ñåòêàâàé ïðûëàäû %s"
-#: ../../lang.pm:1
+#: ../../network/network.pm_.c:294
#, fuzzy, c-format
-msgid "Slovakia"
-msgstr "СлавенÑкi"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "Сынгапур"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "Камбоджа"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "ЧаÑÑ†Ñ–Ð½Ñ Ð³Ð°Ñ€.разг. манiтору: %s\n"
+msgid " (driver %s)"
+msgstr "Ñåðâåð XFree86: %s\n"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr ""
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "IP àäðàñ"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
-msgstr ""
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr "Ìàñêà ñåòêi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "À¢òàìàòû÷íû IP"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "Цi жадаеце пратÑÑцiраваць наÑтройкi?"
+#: ../../network/network.pm_.c:299
+#, fuzzy
+msgid "Start at boot"
+msgstr "Ñòâàðûöü çàãð. äûñê"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Add host"
-msgstr "Дадаць карыÑтальнiка"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP àäðàñ ïàâiíåí áûöü ó ôàðìàöå 1.2.3.4"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/network.pm_.c:326
msgid ""
-"If you really think that you know which driver is the right one for your "
-"card\n"
-"you can pick one in the above list.\n"
-"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-#: ../../any.pm:1
-#, c-format
+#: ../../network/network.pm_.c:330
msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../network/network.pm_.c:350
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"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 ""
+"Óâÿäçiöå iìÿ ñâà¸é ìàøûíû (host).\n"
+"Iìÿ âàøàé ìàøûíû ïàâiííà áûöü çàäàäçåíà ïî¢íàñöþ,\n"
+"íàïðûêëàä ``mybox.mylab.myco.com''.\n"
+"Âû ìîæàöå òàêñàìà ¢âåñöi IP àäðàñ øëþçó, êàëi ¸í ó âàñ ¸ñöü."
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "No CDROM support"
-msgstr ""
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "DNS ñåðâåð"
-#: ../../standalone/drakxtv:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "China (broadcast)"
+msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use quota for backup files."
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "ÐаÑтройка прынтÑру"
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "Ïðûëàäà-øëþç"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
-"containing binaries for architectures other than its own."
-msgstr ""
+#: ../../network/network.pm_.c:363
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP àäðàñ ïàâiíåí áûöü ó ôàðìàöå 1.2.3.4"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Internet connection"
-msgstr "СумеÑнае IнтÑрнÑÑ‚-злучÑнне"
+#: ../../network/network.pm_.c:367
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP àäðàñ ïàâiíåí áûöü ó ôàðìàöå 1.2.3.4"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Загрузка модулю %s не прайшла.\n"
-"Жадаеце паÑпрабаваць з iншымi параметрамi?"
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
+msgstr "Íàñòðîéêà proxy êýøóþ÷ûõ ñåðâåðà¢"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr ""
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr ""
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "FTP proxy"
-#: ../../fsedit.pm:1
-#, fuzzy, c-format
-msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
msgstr ""
-"Вам неабходна задаць правiльны тып файлавай ÑiÑÑ‚Ñмы (ext2, reiserfs)\n"
-"Ð´Ð»Ñ Ð³Ñтай кропкi манцiраваннÑ\n"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Калі лаÑка, зрабіце некалькі рухаў мышшу."
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "ÐідÑрлÑнды"
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
+msgstr "Proxy ïàâiíåí áûöü http://..."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Sending files by FTP"
-msgstr "Захаванне ў файл"
+#: ../../network/network.pm_.c:388
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Proxy ïàâiíåí áûöü http://..."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Ð£Ð½ÑƒÑ‚Ñ€Ð°Ð½Ð°Ñ ISDN карта"
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
+msgstr "Çíîéäçåíà ñ³ñòýìà ñåòêàâàé áÿñïåê³ (firewall)!"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/shorewall.pm_.c:27
msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
+"Óâàãà! Çíîéäçåíà ³ñíóþ÷àÿ ñiñòýìà ñåòêàâàé áÿñïåêi (firewall). Âàì ìàã÷ûìà "
+"ñïàòðýá³ööà ñêàðýêòàâàöü ÿå ïàñëÿ ¢ñòàëÿâàííÿ."
-#: ../../network/modem.pm:1
-#, fuzzy, c-format
-msgid "Title"
-msgstr "Таблiца"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install & convert Fonts"
-msgstr ""
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
+msgstr "Íàñòðîéêà çëó÷ýííÿ ç Iíòýðíýòàì"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
-msgstr ""
+#: ../../network/tools.pm_.c:58
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Öi æàäàåöå çàðàç ïàñïðàáàâàöü äàëó÷ûööà äà Iíòýðíýòó?"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Installing bootloader"
-msgstr "УÑталÑванне загрузчыку"
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "ßêi òûï âàøàãà ISDN çëó÷ýííÿ?"
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "replay"
-msgstr "Перазагрузiць"
+#: ../../network/tools.pm_.c:70
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "ßê âû ïëàíóåöå äàëó÷ûööà äà Iíòýðíýòó?"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/tools.pm_.c:72
+#, fuzzy
msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
"\n"
-"What would you like to do?"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Pipe into command"
-msgstr ""
+"Âû ìîæàöå àäêëþ÷ûööà ö³ ïåðàêàíô³ãóðàâàöü âàøàå çëó÷ýííå."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"ПÑўнае абÑталÑванне патрабуе камерцыйных драйвераў Ð´Ð»Ñ Ð¿Ñ€Ð°Ñ†Ñ‹.\n"
-"ЧаÑткова інфармацыю пра Ñ–Ñ… можна атрымаць тут: %s"
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
+msgstr "Íàñòðîéêà äàëó÷ýííÿ äà Iíòýðíýòó"
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "Гаіці"
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
+msgstr "Êàëi ëàñêà, çàïî¢íiöå öi ïàçíà÷öå ïîëå íiæýé"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "ВызначÑнне прыладаў..."
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr "IRQ êàðòû"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "Àäðàñû ïàìÿö³ êàðòû (DMA)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Description of the fields:\n"
-"\n"
-msgstr ""
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "IO êàðòû"
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Basic options"
-msgstr "Опцыi"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "IO_0 êàðòû"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
-msgstr ""
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "IO_1 êàðòû"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr ""
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
+msgstr "Âàø àñàáiñòû òýëåôîííû íóìàð"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Refreshing printer data..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
+msgstr "Iìÿ ïðàâàéäàðó, íàïðûêëàä ïðàâàéäàð.net"
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr ""
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
+msgstr "Íóìàð òýëåôîíó ïðàâàéäàðà"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "Будзьце уважлiвы. ГÑтую аперацыю нельга адмÑнiць"
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+#, fuzzy
+msgid "Provider dns 1 (optional)"
+msgstr "DNS 1 ïðàâàéäàðó"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "УÑтаўце дыÑкету Ñž дыÑкавод %s"
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+#, fuzzy
+msgid "Provider dns 2 (optional)"
+msgstr "DNS 2 ïðàâàéäàðó"
-#: ../../diskdrake/dav.pm:1
-#, fuzzy, c-format
-msgid "Server: "
-msgstr "Ñервер"
+#: ../../network/tools.pm_.c:109
+#, fuzzy
+msgid "Choose your country"
+msgstr "Âûáàð êëàâiÿòóðû"
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Security Alerts:"
-msgstr "ÐаÑтройкi ÑžÐ·Ñ€Ð¾ÑžÐ½Ñ Ð±ÑÑпекi"
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
+msgstr "Ðýæûì çëó÷ýííÿ"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Sweden"
-msgstr "Гл."
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+#, fuzzy
+msgid "Connection speed"
+msgstr "Iìÿ çëó÷ýííÿ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
-msgstr ""
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+#, fuzzy
+msgid "Connection timeout (in sec)"
+msgstr "Iìÿ çëó÷ýííÿ"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Poland"
-msgstr "IÑландÑкi"
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
+msgstr "Iìÿ äëÿ ¢âàõîäó (iìÿ êàðûñòàëüíiêó)"
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Other ports"
-msgstr "IÐ½ÑˆÑ‹Ñ ÐºÑ€Ð°iны"
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
+msgstr "Ïàðîëü äëÿ ¢âàõîäó"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
msgstr ""
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid " - detected"
-msgstr "Ðддалены прынтÑÑ€"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr ""
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
+msgstr "ïàìûëêà ìàíöiðàâàííÿ: "
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Connection timeout (in sec)"
-msgstr "IÐ¼Ñ Ð·Ð»ÑƒÑ‡ÑннÑ"
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
+msgstr "Ïàøûðàíû ðàçäçåë íå ïàäòðûìëiâàåööà ãýòàé ïëàòôîðìàé"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../partition_table.pm_.c:685
msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
+"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 ""
+"Âû ìàåöå äçiðêó ¢ òàáëiöû ðàäçåëà¢, àëå ÿ íå ìàþ ìàã÷ûìàñöi ÿå ñêàðûñòàöü.\n"
+"Àäçiíû âûõàä ó òûì, êàá ïåðàìÿñöiöü ïåðøàñíûÿ ðàçäçåëû òàê, êàá äçiðêà iøëà\n"
+"àäðàçó çà ïàøûðàíûì (extended) ðàçäçåëàì"
-#: ../../keyboard.pm:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "Croatian"
-msgstr "Харвацкi"
-
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Use existing partition"
-msgstr "ВыкарыÑтоўваць iÑнуючы раздзел"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Зрабiць неактыўным Ñеткавае злучÑнне"
+msgid "Restoring from file %s failed: %s"
+msgstr "Àäíà¢ëåííå ç ôàéëà %s íå àòðûìàëàñÿ: %s"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr ""
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
+msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup:1
+#: ../../partition_table.pm_.c:796
#, c-format
-msgid "Remove user directories before restore."
-msgstr ""
+msgid "Error writing to file %s"
+msgstr "Ïàìûëêà çàïiñó ¢ ôàéë %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../partition_table/raw.pm_.c:192
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?"
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "CUPS printer configuration"
-msgstr "ÐаÑтройка злучÑÐ½Ð½Ñ Ð· IнтÑрнÑтам"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr ""
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr "ïàâiííû ìåöü"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
-msgstr ""
+#: ../../pkgs.pm_.c:27
+msgid "important"
+msgstr "âàæíà"
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "Сервер XFree86 %s"
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr "âåëüìi äîáðà"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Domain Name:"
-msgstr "IÐ¼Ñ Ð´Ð°Ð¼ÐµÐ½Ñƒ"
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr "äîáðà"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Root umask"
-msgstr "Пароль Ð´Ð»Ñ root"
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr "ìîæà áûöü"
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "On Floppy"
-msgstr "Захаванне на дыÑкету"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reboot by the console user"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore"
-msgstr "Ðднаўленне з файлу"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
+msgstr ""
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Server:"
-msgstr "Ñервер"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "ПраглÑд даÑтупных пакетаў"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
+msgstr ""
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "ÐаÑтройкi ÑžÐ·Ñ€Ð¾ÑžÐ½Ñ Ð±ÑÑпекi"
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "Ð”Ð°Ð´Ð°Ñ‚ÐºÐ¾Ð²Ð°Ñ Ñ‚Ð°Ð±Ð»iца раздзелаў"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+msgid "Unknown Model"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "Кіпар"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "Ëàêàëüíû ïðûíòýð"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connection complete."
-msgstr "IÐ¼Ñ Ð·Ð»ÑƒÑ‡ÑннÑ"
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
+msgstr "Àääàëåíû ïðûíòýð"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "Выдалiць з RAID"
+#: ../../printer/main.pm_.c:28
+#, fuzzy
+msgid "Printer on remote CUPS server"
+msgstr "Àääàëåíû ñåðâåð CUPS"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"ГÑты пароль занадта проÑты (Ñго Ð´Ð°ÑžÐ¶Ñ‹Ð½Ñ Ð¿Ð°Ð²iнна быць не меней за %d лiтараў)"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+#, fuzzy
+msgid "Printer on remote lpd server"
+msgstr "Àääàëåíû ñåðâåð lpd"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Configuration Wizards"
-msgstr "КанфiÐ³ÑƒÑ€Ð°Ñ†Ñ‹Ñ Ñеткi"
+#: ../../printer/main.pm_.c:30
+msgid "Network printer (TCP/Socket)"
+msgstr "Ñåòêàâû ïðûíòýð (TCP/Socket)"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "ISDN connection"
-msgstr "ÐаÑтройка ISDN"
+#: ../../printer/main.pm_.c:31
+#, fuzzy
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "SMB/Windows 95/98/NT"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr ""
+#: ../../printer/main.pm_.c:32
+#, fuzzy
+msgid "Printer on NetWare server"
+msgstr "Ñåðâåð äðóêó"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
-msgstr ""
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+#, fuzzy
+msgid "Enter a printer device URI"
+msgstr "URI ïðûíòýðó"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
msgstr ""
-#: ../../help.pm:1
-#, 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"
-"!!"
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Niue"
-msgstr "гальштук"
+#: ../../printer/main.pm_.c:317
+#, fuzzy
+msgid "Local Printers"
+msgstr "Ëàêàëüíû ïðûíòýð"
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "ПрапуÑцiць"
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+#, fuzzy
+msgid "Remote Printers"
+msgstr "Àääàëåíû ïðûíòýð"
-#: ../../services.pm:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
+msgid " on parallel port \\/*%s"
msgstr ""
-"Ðктывiзаваць/дÑактывiзаваць уÑе ÑÐµÑ‚ÐºÐ°Ð²Ñ‹Ñ iнтÑрфейÑÑ‹, ÑканфiÐ³ÑƒÑ€Ð°Ð²Ð°Ð½Ñ‹Ñ Ð´Ð»Ñ\n"
-"Ñтарту пры загрузцы ÑiÑÑ‚Ñмы."
-#: ../../standalone/harddrake2:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, 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 ", USB printer \\/*%s"
msgstr ""
-#: ../../pkgs.pm:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid "important"
-msgstr "важна"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "ДаÑтаÑаваньне Ð´Ð»Ñ ÐºÑ–Ñ€Ð°Ð²Ð°Ð½ÑŒÐ½Ñ ÐºÐ°Ñ€Ñ‹Ñтальнікамі Mandrake Linux"
+msgid ", multi-function device on parallel port \\/*%s"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Aruba"
-msgstr "Grub"
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:344
#, fuzzy, c-format
-msgid "Users"
-msgstr "IÐ¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальнiку:"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Падрыхтоўка загрузчыка"
+msgid ", printing to %s"
+msgstr "Ïàìûëêà çàïiñó ¢ ôàéë %s"
-#: ../../../move/move.pm:1
+#: ../../printer/main.pm_.c:346
#, c-format
-msgid "Enter your user information, password will be used for screensaver"
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../network/network.pm:1
+#: ../../printer/main.pm_.c:348
#, c-format
-msgid "Gateway (e.g. %s)"
+msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid "The passwords do not match"
-msgstr "Паролi не Ñупадаюць"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Examples for correct IPs:\n"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please choose the media for backup."
-msgstr "Калi лаÑка, абÑрыце мову Ð´Ð»Ñ ÐºÐ°Ñ€Ñ‹ÑтаннÑ."
-
-#: ../../standalone/harddrake2:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid "Frequency (MHz)"
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../install_any.pm:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
+msgid ", using command %s"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of the processor"
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../printer/main.pm_.c:647
#, fuzzy, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Ваш ÑiÑÑ‚Ñмны гадзiннiк уÑталÑваны на GMT?"
-
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "Цi жадаеце пратÑÑцiраваць наÑтройкi?"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Give a file name"
-msgstr "УлаÑнае iмÑ"
+msgid "(on %s)"
+msgstr "(ìîäóëü %s)"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Да Ñкога паÑлÑдоўнага порту далучаны мадÑм?"
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
+msgstr ""
-#: ../../standalone/livedrake:1
+#: ../../printer/main.pm_.c:674
#, fuzzy, c-format
-msgid "Change Cd-Rom"
-msgstr "ЗмÑнiць памеры Ñкрану"
+msgid "On CUPS server \"%s\""
+msgstr "IP ñåðâåðà SMB"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "Парагвай"
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
+msgstr " (Ïà äàìà¢ëåííþ)"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "Якую канфiгурацыю XFree вы жадаеце атрымаць?"
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
+msgstr "Âûáàð òûïó çëó÷ýííÿ ïðûíòýðó"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
+msgstr "ßê ïðûíòàð äàëó÷àíû?"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:30
+#, fuzzy
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:"
+"\n"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
msgstr ""
+"Àääàëåíû CUPS ñåðâåð íå ïàòðàáóå àä Âàñ íàñòðîéê³ ïðûíòýðó\n"
+"íà ãýòàé ìàøûíå, ¸í áóäçå çíîéäçåíû à¢òàìàòû÷íà.\n"
+"Êàë³ Âû íå ¢ïý¢íåíû, àáÿðûöå \"Àääàëåíû ñåðâåð CUPS\"."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "force"
-msgstr "ПераноÑ"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Exit"
-msgstr "Ext2"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+#, fuzzy
+msgid "CUPS configuration"
+msgstr "Íàñòðîéêà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+#, fuzzy
+msgid "Specify CUPS server"
+msgstr "Àääàëåíû ñåðâåð CUPS"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:83
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "ЭÑтонÑкi"
-
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:84
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+"\n"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-"Apache - гÑта World Wide Web Ñервер. Ðн выкарыÑтоўзваеца Ð´Ð»Ñ Ð°Ð±ÑлугоўваннÑ\n"
-"HTML файлаў i CGI."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:88
+#, fuzzy
+msgid "The IP address should look like 192.168.1.20"
+msgstr "IP àäðàñ ïàâiíåí áûöü ó ôàðìàöå 1.2.3.4"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ALL"
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Clients"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:99
+#, fuzzy
+msgid "CUPS server IP"
+msgstr "IP ñåðâåðà SMB"
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Choose the network interface"
-msgstr "Пазначце Ñеткавы iнтÑрфейÑ"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
+msgstr "Ïîðò"
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown Model"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:102
+#, fuzzy
+msgid "Automatic CUPS configuration"
+msgstr "Íàñòðîéêà ìàäýìó"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:159
+#, fuzzy
+msgid "Checking your system..."
+msgstr "ßêóþ ñiñòýìó äðóêó Âû æàäàåöå âûêàðûñòî¢âàöü?"
+
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+#, fuzzy
+msgid "Printerdrake"
+msgstr "Ïðûíòýð"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:167
msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Загрузачны раздзел па дамаўленню\n"
-" (Ð´Ð»Ñ Ð·Ð°Ð³Ñ€ÑƒÐ·Ðºi MS-DOS, а не Ð´Ð»Ñ lilo)\n"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
+"There are no printers found which are directly connected to your machine"
msgstr ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "choose image"
-msgstr "ÐбÑрыце дзеÑнне"
-
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Знойдзена ÑÑ–ÑÑ‚Ñма Ñеткавай бÑÑпекі (firewall)!"
+#: ../../printer/printerdrake.pm_.c:179
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Íàñòóïíûÿ ïàêåòû áóäóöü âûäàëåíû"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "IÐ¼Ñ Ð·Ð»ÑƒÑ‡ÑннÑ"
+#: ../../printer/printerdrake.pm_.c:180
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Íàñòóïíûÿ ïàêåòû áóäóöü âûäàëåíû"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:182
msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+"\n"
+"and one unknown printer are "
msgstr ""
-#: ../../fsedit.pm:1
+#: ../../printer/printerdrake.pm_.c:184
#, c-format
msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
+"\n"
+"and %d unknown printers are "
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Updating package selection"
-msgstr "ÐÑабiÑты выбар пакетаў"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "Куды вы жадаеце манцiраваць вiртуальную прыладу %s?"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:187
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"\n"
+"are "
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"is "
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "the number of buttons the mouse has"
-msgstr "2 кнопкi"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Replay"
-msgstr "Перазагрузiць"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup other files"
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
-
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "ДыÑкавод недаÑтупны"
+#: ../../printer/printerdrake.pm_.c:189
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Ó âàøàé ñ³ñòýìå íÿìà íiâîäíàãà ñåòêàâàãà àäàïòàðà!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
+#: ../../printer/printerdrake.pm_.c:192
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: ../../printer/printerdrake.pm_.c:194
#, c-format
-msgid "TV norm:"
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:200
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Äà ÿêîãà ïàñëÿäî¢íàãà ïîðòó äàëó÷àíû ìàäýì?"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 Мб"
+#: ../../printer/printerdrake.pm_.c:214
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "type: thin"
-msgstr "Тып: "
+#: ../../printer/printerdrake.pm_.c:215
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Æàäàåöå ïðàòýñöiðàâàöü äðóê?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "ЛiтоўÑкi AZERTY (новы)"
+#: ../../printer/printerdrake.pm_.c:217
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Âû æàäàåöå, êàá ãýòàå çëó÷ýííå ñòàðòàâàëà ïðû çàãðóçöû?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
msgstr ""
-#: ../../fsedit.pm:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:219
+#, 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"
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
msgstr ""
-"Ð’Ñ‹ абралi RAID раздзел Ñк каранёвы.\n"
-"ÐÑма загрузчыку, Ñкi б загрузiÑžÑÑ Ð±ÐµÐ· /boot раздзела.\n"
-"Дадайце раздел /boot, калi лаÑка."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "IÐ½ÑˆÐ°Ñ ÐС (MacOS,...)"
-
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "To activate the mouse,"
-msgstr "Калі лаÑка, зрабіце некалькі рухаў мышшу."
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "ДалучÑнне да Ñеткi"
-#: ../../common.pm:1
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Ð’Ñ‹ можаце абраць Ñ–Ð½ÑˆÑ‹Ñ Ð¼Ð¾Ð²Ñ‹, ÑкiÑ Ð±ÑƒÐ´ÑƒÑ†ÑŒ даÑтупны паÑÐ»Ñ ÑžÑталÑваннÑ"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+#, fuzzy
+msgid "Add a new printer"
+msgstr "Iìÿ äðóêàðêi"
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:259
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"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\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"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"It asks you for all necessary information to set up the printer and gives "
+"you access to all available printer drivers, driver options, and printer "
+"connection types."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:272
+msgid ""
"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\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"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\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) and you Windows machines must be connected and "
+"turned on.\n"
"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\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"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Ðа вашым дыÑку было знойдзена болей за адзін раздзел\n"
-"Windows. Калі лаÑка, абÑрыце той, памер Ñкога жадаеце змÑніць, "
-"кабуÑталÑваць\n"
-"ÑÑ–ÑÑ‚Ñму Mandrake Linux.\n"
+
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
+msgid ""
"\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"Ð”Ð»Ñ iфармацыі, кожны раздзел адзначаны Ñк: \"Linux імÑ\", \"Windows\n"
-"імÑ\" \"CвойÑтвы\".\n"
-"\"Linux ІмÑ\" кадавана так - \"тып дыÑку\", \"нумар дыÑку\",\"нумар "
-"раздзелу\n"
-"(напрыклад, \"hda1\").\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"
-"\"Тып дыÑку\" кадаваны Ñк \"hd\", калі гÑта IDE, Ñ– \"sd\" калі SCSI.\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:289
+msgid ""
"\n"
-"\"Ðумар дыÑку\" - Ñімвал паÑÐ»Ñ \"hd\" ці \"sd\". Ð”Ð»Ñ IDE дыÑкаў:\n"
-" * \"а\" \"master\" на першаÑным канале IDE \n"
-" * \"b\" \"slave\" на першаÑным канале IDE\n"
-" * \"c\" \"master\" на другаÑным канале IDE\n"
-" * \"d\" \"slave\" на другаÑным канале IDE\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"
-"Ð”Ð»Ñ SCSI дыÑкаў - \"a\" гÑта \"першаÑны жорÑкі дыÑк\", \"b\" - \"другаÑны "
-"жорÑкі дыÑк\", Ñ– г.д.\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"
-"\"Windows ІмÑ\" Ñімвал вашага дыÑку Ñž Windows (першы дыÑк ці\n"
-"раздзел пазначаецца Ñк \"C:\")."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
+#: ../../printer/printerdrake.pm_.c:307
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
+msgstr "Àääàëåíû ïðûíòýð"
+
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "Падлік межаў файлавай ÑiÑÑ‚Ñмы FAT"
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:329
msgid ""
"\n"
-"Backup Sources: \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 ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "custom"
-msgstr "Па выбару"
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+#, fuzzy
+msgid "Printer auto-detection"
+msgstr "Àääàëåíû ïðûíòýð"
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm_.c:385
#, c-format
-msgid "Content of the file"
+msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:387
#, fuzzy, c-format
-msgid "Authentication LDAP"
-msgstr "ÐўтÑнтыфiкацыÑ"
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:391
+#, fuzzy, c-format
+msgid "Detected %s"
+msgstr "Äóáëÿâàííå ïóíêòó ìàíöiðàâàííÿ %s"
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "Let me pick any driver"
+msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "transmitted"
+msgid "USB printer \\/*%s"
msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:399
#, fuzzy, c-format
-msgid "Palestine"
-msgstr "ÐÑабiÑты выбар пакетаў"
+msgid "Network printer \"%s\", port %s"
+msgstr "Ñåòêàâû ïðûíòýð (TCP/Socket)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+#: ../../printer/printerdrake.pm_.c:401
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+#, fuzzy
+msgid "Local Printer"
+msgstr "Ëàêàëüíû ïðûíòýð"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " isdn"
+#: ../../printer/printerdrake.pm_.c:526
+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 ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:530
+#, fuzzy
+msgid "You must enter a device or file name!"
+msgstr "URI ïðûíòýðó"
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Theme name"
-msgstr "IÐ¼Ñ Ð´Ð»Ñ Ñ€Ð°Ð·Ð¼ÐµÑ€ÐºÐ°Ð²Ð°Ð½Ð°Ð³Ð° Ñ€ÑÑурÑу"
+#: ../../printer/printerdrake.pm_.c:539
+#, fuzzy
+msgid "No printer found!"
+msgstr "Ëàêàëüíû ïðûíòýð"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/_Дапамога"
+#: ../../printer/printerdrake.pm_.c:548
+#, fuzzy
+msgid "Available printers"
+msgstr "Äàñòóïíûÿ ïàêåòû"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitrary driver"
+#: ../../printer/printerdrake.pm_.c:552
+msgid ""
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "Ð’Ñ‹Ñпы Кука"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:553
msgid ""
-"Here you can choose whether the scanners connected to this machine should be "
-"accessable by remote machines and by which remote machines."
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the width of the progress bar"
+#: ../../printer/printerdrake.pm_.c:555
+msgid ""
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Фарматаванне раздзелу %s"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Hostname required"
-msgstr "IÐ¼Ñ Ð¼Ð°ÑˆÑ‹Ð½Ñ‹"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselect fonts installed"
+#: ../../printer/printerdrake.pm_.c:556
+msgid ""
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "З колам"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Submit kernel version"
-msgstr "ÐаÑтройка злучÑÐ½Ð½Ñ Ð· IнтÑрнÑтам"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Cancel"
-msgstr "Ðдмена"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Searching for configured scanners ..."
-msgstr "ДаÑÑ‚ÑƒÐ¿Ð½Ñ‹Ñ Ð¿Ð°ÐºÐµÑ‚Ñ‹"
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Videocard"
-msgstr "Ð’iдÑа-Ñ€Ñжым"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
+#: ../../printer/printerdrake.pm_.c:558
+msgid ""
+"Please choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Remove Selected"
-msgstr "Выдалiць чаргу друку"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/Autodetect _modems"
-msgstr "Ðддалены прынтÑÑ€"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remove printer"
-msgstr "Ðддалены прынтÑÑ€"
+#: ../../printer/printerdrake.pm_.c:559
+#, fuzzy
+msgid "Please choose the port where your printer is connected to."
+msgstr "Äà ÿêîãà ïàñëÿäî¢íàãà ïîðòó äàëó÷àíû ìàäýì?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Last Log"
+#: ../../printer/printerdrake.pm_.c:561
+msgid ""
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:565
+#, fuzzy
+msgid "You must choose/enter a printer/device!"
+msgstr "URI ïðûíòýðó"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Connection Type"
-msgstr "IÐ¼Ñ Ð·Ð»ÑƒÑ‡ÑннÑ"
+#: ../../printer/printerdrake.pm_.c:584
+#, fuzzy
+msgid "Manual configuration"
+msgstr "Íàñòðîéêà"
-#: ../../standalone/logdrake:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
+msgstr "Îïöûi àääàëåíàãà ïðûíòýðó lpd"
+
+#: ../../printer/printerdrake.pm_.c:634
+#, fuzzy
msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
+"Äëÿ íàñòðîéêi àääàëåíàé ÷àðãi äðóêó âàì ïàòðýáíà\n"
+"ïàçíà÷ûöü iìÿ àääàëåíàãà ñåðâåðà i iìÿ ÷àðãi äðóêó,\n"
+"ó ÿêóþ àääàëåíû ñåðâåð áóäçå àäïðà¢ëÿöü çàäàííi."
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Other"
-msgstr "ІншыÑ"
+#: ../../printer/printerdrake.pm_.c:635
+#, fuzzy
+msgid "Remote host name"
+msgstr "Àääàëåíû âóçåë"
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
-msgstr "Па дамаўленню"
+#: ../../printer/printerdrake.pm_.c:636
+#, fuzzy
+msgid "Remote printer name"
+msgstr "Àääàëåíû ïðûíòýð"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:639
+#, fuzzy
+msgid "Remote host name missing!"
+msgstr "Àääàëåíû âóçåë"
+
+#: ../../printer/printerdrake.pm_.c:643
+#, fuzzy
+msgid "Remote printer name missing!"
+msgstr "Àääàëåíû âóçåë"
-#: ../../standalone/drakbug:1
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
#, fuzzy, c-format
-msgid "Please enter a package name."
-msgstr "Калi лаÑка, увÑдзiце iÐ¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальнiку"
+msgid "Detected model: %s %s"
+msgstr "Äóáëÿâàííå ïóíêòó ìàíöiðàâàííÿ %s"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run chkrootkit checks"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+#, fuzzy
+msgid "Scanning network..."
+msgstr "ßêi òûï âàøàãà ISDN çëó÷ýííÿ?"
-#: ../../standalone/drakfont:1
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, c-format
-msgid "type1inst building"
+msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
#, fuzzy, c-format
-msgid "Abiword"
-msgstr "ÐдмÑнiць"
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Àäëó÷ýííå àä ñåòêi"
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "choose image file"
-msgstr "ÐбÑрыце дзеÑнне"
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "Îïöûi ïðûíòýðó SMB (Windows 9x/NT)"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "X server"
-msgstr "X Ñервер"
+#: ../../printer/printerdrake.pm_.c:796
+#, fuzzy
+msgid ""
+"To print to a SMB printer, you need to provide the SMB host name (Note! It "
+"may be different from its TCP/IP hostname!) and possibly the IP address of "
+"the print server, as well as the share name for the printer you wish to "
+"access and any applicable user name, password, and workgroup information."
+msgstr ""
+"Äëÿ äðóêó íà ïðûíòýðû SMB íåàáõîäíà ïàçíà÷ûöü iìÿ õîñòó SMB (íå çà¢ñ¸äû "
+"ñóïàäàå ç iìåíåì ó ñåòöû TCP/IP) i àäðàñ IP ñåðâåðà äðóêó, à òàêñàìà iìÿ "
+"ðýñóðñó, ÿêi ñïàëó÷àíû ç âûáðàíûì ïðûíòýðàì, iìÿ êàðûñòàëüíiêó, ïàðîëü i "
+"iíôàðìàöûþ àá ïðàöî¢íàé ãðóïå."
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Domain Admin User Name"
-msgstr "IÐ¼Ñ Ð´Ð°Ð¼ÐµÐ½Ñƒ"
+#: ../../printer/printerdrake.pm_.c:797
+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 ""
-#: ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "ÐтрымалаÑÑ Ð¿Ð°Ð¼Ñ‹Ð»ÐºÐ° ÑžÐ¿Ð°Ñ€Ð°Ð´ÐºÐ°Ð²Ð°Ð½Ð½Ñ Ð¿Ð°ÐºÐµÑ‚Ð°Ñž:"
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
+msgstr "Iìÿ ñåðâåðó SMB"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
-msgstr "US клавiÑтура (мiжнароднаÑ)"
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr "IP ñåðâåðà SMB"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Not installed"
-msgstr "ЗаканчÑнне ÑžÑталÑваннÑ"
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr "Iìÿ äëÿ ðàçìåðêàâàíàãà ðýñóðñó"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "Ïðàöî¢íàÿ ãðóïà"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "LAN connection"
-msgstr "Размеркаванне"
+#: ../../printer/printerdrake.pm_.c:806
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Àääàëåíû ïðûíòýð"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/-"
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Italian"
-msgstr "IтальÑнÑкi"
-
-#: ../../interactive.pm:1
-#, c-format
-msgid "Basic"
-msgstr "ПроÑтые"
-
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Honduras"
-msgstr "ГандураÑ"
-
-#: ../../help.pm:1
-#, c-format
-msgid "pdq"
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO"
-msgstr "IO карты"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Samba server"
-msgstr "NIS Ñервер:"
-
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:827
#, 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"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
msgstr ""
-#: ../../standalone/drakautoinst:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
+"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 ""
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:840
msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
+"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 ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
+msgstr "Îïöûi ïðûíòýðó NetWare"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reports check result to tty"
+#: ../../printer/printerdrake.pm_.c:912
+#, fuzzy
+msgid ""
+"To print on a NetWare printer, you need to provide the NetWare print server "
+"name (Note! it may be different from its TCP/IP hostname!) as well as the "
+"print queue name for the printer you wish to access and any applicable user "
+"name and password."
msgstr ""
+"Äëÿ äðóêó íà ïðûíòýðû NetWare íåàáõîäíà ïàçíà÷ûöü iìÿ ñåðâåðó äðóêó NetWare "
+"(íå çà¢ñ¸äû ñóïàäàå ç iìåíåì ó ñåòöû TCP/IP) i iìÿ ÷àðãi äðóêó, ÿêàÿ "
+"àäïàâÿäàå àáðàíàìó ïðûíòýðó, à òàêñàìà iìÿ êàðûñòàëüíiêó i ïàðîëü."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "You must enter a device or file name!"
-msgstr "URI прынтÑру"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr "Ñåðâåð äðóêó"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Quit"
-msgstr "Выхад"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
+msgstr "Iìÿ ÷àðãi äðóêó"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Ð’iдÑапамÑць: %s Кб\n"
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
+msgstr ""
-#: ../../standalone.pm:1
-#, 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"
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
msgstr ""
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, c-format
-msgid "access to compilation tools"
+msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
-msgid "Global statistics"
+msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please select data to restore..."
-msgstr "Калi лаÑка, абÑрыце мову Ð´Ð»Ñ ÐºÐ°Ñ€Ñ‹ÑтаннÑ."
+#: ../../printer/printerdrake.pm_.c:1030
+#, fuzzy
+msgid "TCP/Socket Printer Options"
+msgstr "Îïöûi ñîêåòó ïðûíòýðó"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1032
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"
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-"Калi вы плануеце выкарыÑтоўваць boot воблаÑць, тады размÑÑцiце Ñе\n"
-" не далей за 2048 Ñектароў ад пачатку дыÑка"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Standard test page"
-msgstr "Стандартны"
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Time Zone"
-msgstr "IÐ¼Ñ Ð´Ð»Ñ Ñ€Ð°Ð·Ð¼ÐµÑ€ÐºÐ°Ð²Ð°Ð½Ð°Ð³Ð° Ñ€ÑÑурÑу"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create"
-msgstr "Стварыць"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "What"
-msgstr "Чакайце"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "ÐтрымалаÑÑ Ð¿Ð°Ð¼Ñ‹Ð»ÐºÐ° ÑžÐ¿Ð°Ñ€Ð°Ð´ÐºÐ°Ð²Ð°Ð½Ð½Ñ Ð¿Ð°ÐºÐµÑ‚Ð°Ñž:"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Bulgarian (BDS)"
-msgstr "БалгарÑкi"
+#: ../../printer/printerdrake.pm_.c:1033
+#, fuzzy
+msgid ""
+"To print to a TCP or socket printer, you need to provide the host name or IP "
+"of the printer and optionally the port number (default is 9100). On HP "
+"JetDirect servers the port number is usually 9100, on other servers it can "
+"vary. See the manual of your hardware."
+msgstr ""
+"Êàá äðóêàâàöü ïðàç ñîêåò äðóêàðêi, âàì íåàáõîäíà çàáÿñïå÷ûöü\n"
+"iìÿ ïðûíòýðó i ìàã÷ûìà ÿãî íóìàð ïîðòó."
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Disable Server"
-msgstr "Сервер друку"
+#: ../../printer/printerdrake.pm_.c:1037
+#, fuzzy
+msgid "Printer host name or IP missing!"
+msgstr "Iìÿ ïðûíòýðó"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Filesystem encryption key"
-msgstr "Тып файлавай ÑiÑÑ‚Ñмы:"
+#: ../../printer/printerdrake.pm_.c:1059
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Iìÿ ïðûíòýðó"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
+msgstr "URI ïðûíòýðó"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1108
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."
+"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 ""
-#: ../../interactive/stdio.pm:1
-#, 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? "
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1463
msgid ""
-"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
+"Every printer needs a name (for example \"printer\"). The Description and "
+"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Save theme"
-msgstr "УÑталÑванне ÑiÑÑ‚Ñмы"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "БразыліÑ"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr "Iìÿ äðóêàðêi"
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Auto Install"
-msgstr "УÑталёўка"
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
+msgstr "Àïiñàííå"
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Network Configuration Wizard"
-msgstr "КанфiÐ³ÑƒÑ€Ð°Ñ†Ñ‹Ñ Ñеткi"
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
+msgstr "Ðàçìåðêàâàííå"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Removable media automounting"
-msgstr "Ðўтаманцiраванне зменных назапашвальнікаў"
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+#, fuzzy
+msgid "Reading printer database..."
+msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "Printing"
-msgstr "ПрынтÑÑ€"
+#: ../../printer/printerdrake.pm_.c:1482
+#, fuzzy
+msgid "Preparing printer database..."
+msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Enter the directory to save:"
-msgstr "Калі лаÑка, зрабіце некалькі рухаў мышшу."
+#: ../../printer/printerdrake.pm_.c:1578
+#, fuzzy
+msgid "Your printer model"
+msgstr "Àääàëåíû ïðûíòýð"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:1579
#, c-format
msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "СтварÑнне новага раздзелу"
-
-#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
-msgid "Driver:"
-msgstr "Ñервер"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
+"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 ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "ВыкарыÑтоўваць fdisk"
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+#, fuzzy
+msgid "The model is correct"
+msgstr "Ãýòà äàêëàäíà?"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "Рушце колам мышы!"
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+#, fuzzy
+msgid "Select model manually"
+msgstr "Àääàëåíû ïðûíòýð"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "sent: "
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:1606
+#, fuzzy
+msgid "Printer model selection"
+msgstr "Çëó÷ýííå ïðûíòýðó"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "Ðўтаматычны IP"
+#: ../../printer/printerdrake.pm_.c:1607
+#, fuzzy
+msgid "Which printer model do you have?"
+msgstr "ßêi òûï äðóêàðêi âû ìàåöå?"
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1608
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:\")"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Moldova"
-msgstr "ПанÑдзелак"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Configuration of a remote printer"
-msgstr "ÐаÑтройка прынтÑру"
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
+#: ../../printer/printerdrake.pm_.c:1611
+msgid ""
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "Proxy павiнен быць http://..."
+#: ../../printer/printerdrake.pm_.c:1697
+#, fuzzy
+msgid "OKI winprinter configuration"
+msgstr "Íàñòðîéêà çëó÷ýííÿ ç Iíòýðíýòàì"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Oriya"
+#: ../../printer/printerdrake.pm_.c:1698
+msgid ""
+"You are configuring an OKI laser winprinter. These printers\n"
+"use a very special communication protocol and therefore they work only when "
+"connected to the first parallel port. When your printer is connected to "
+"another port or to a print server box please connect the printer to the "
+"first parallel port before you print a test page. Otherwise the printer will "
+"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Add a new rule at the end"
-msgstr "IÐ¼Ñ Ð´Ñ€ÑƒÐºÐ°Ñ€Ðºi"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+#, fuzzy
+msgid "Lexmark inkjet configuration"
+msgstr "Íàñòðîéêà çëó÷ýííÿ ç Iíòýðíýòàì"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1719
msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
+"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 ""
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1746
msgid ""
-"You may now provide options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Вы не можаце задаць опцыi модулю %s.\n"
-"Опцыi - у фармаце ``iмÑ=значÑнне iмÑ2=значÑнне2 ...''.\n"
-"Ðапрыклад, ``io=0x300 irq=7''"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "ВыйÑцi без запiÑу таблiцы раздзелаў"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Hard Drive"
+"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.pm:1
-#, fuzzy, c-format
-msgid "Installing packages..."
-msgstr "УÑталÑванне пакету %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dutch"
-msgstr "ГаландÑкi"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Angola"
-msgstr "Ðнгола"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "ÐаÑÑ‚ÑƒÐ¿Ð½Ñ‹Ñ Ð¿Ð°ÐºÐµÑ‚Ñ‹ будуць даданы да ÑiÑÑ‚Ñмы"
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "service setting"
-msgstr "прылада"
-
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "Па выбару"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Latvia"
-msgstr "Размеркаванне"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "File is already used by another loopback, choose another one"
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
msgstr ""
-"Файл ужо выкарыÑтоўваецца iншай вiртуальнай ÑiÑÑ‚Ñмай. Калi лаÑка, \n"
-"абÑрыце iншую назву"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
+#: ../../printer/printerdrake.pm_.c:1750
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1972
msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
+"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 ""
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid "No known driver"
+msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "1 MB"
-msgstr "1 Мб"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
+msgid "Option %s must be a number!"
msgstr ""
-#: ../../standalone/draksound:1
+#: ../../printer/printerdrake.pm_.c:1989
#, 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"
+msgid "Option %s out of range!"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:2028
#, fuzzy, c-format
-msgid "Configure Local Area Network..."
-msgstr "ÐаÑтройка лакальнай Ñеткi"
-
-#: ../../../move/move.pm:1
-#, c-format
msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
+msgstr "Æàäàåöå ïðàòýñöiðàâàöü äðóê?"
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2051
+#, fuzzy
+msgid "Test pages"
+msgstr "Ïðàâåðêà ïàðòî¢"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
+#: ../../printer/printerdrake.pm_.c:2052
+msgid ""
+"Please select the test pages you want to print.\n"
+"Note: the photo test page can take a rather long time to get printed and on "
+"laser printers with too low memory it can even not come out. In most cases "
+"it is enough to print the standard test page."
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run some checks against the rpm database"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2056
+#, fuzzy
+msgid "No test pages"
+msgstr "Òàê, íàäðóêàâàöü àáåäçâå ñòàðîíêi òýêñòó"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Execute"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2057
+#, fuzzy
+msgid "Print"
+msgstr "Ïðûíòýð"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Preparing printer database..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+#: ../../printer/printerdrake.pm_.c:2114
+#, fuzzy
+msgid "Standard test page"
+msgstr "Ñòàíäàðòíû"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Information"
-msgstr "IнфармацыÑ"
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
+msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "No network card"
-msgstr "ÑÐµÑ‚ÐºÐ°Ð²Ð°Ñ ÐºÐ°Ñ€Ñ‚Ð° не знойдзена"
+#: ../../printer/printerdrake.pm_.c:2120
+#, fuzzy
+msgid "Alternative test page (A4)"
+msgstr "Äðóê òýñòàâûõ ñòàðîíàê"
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "3 кнопкi"
+#: ../../printer/printerdrake.pm_.c:2122
+#, fuzzy
+msgid "Photo test page"
+msgstr "Äðóê òýñòàâûõ ñòàðîíàê"
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, fuzzy, c-format
-msgid "Which filesystem do you want?"
-msgstr "Якую ÑiÑÑ‚Ñму друку Ð’Ñ‹ жадаеце выкарыÑтоўваць?"
+#: ../../printer/printerdrake.pm_.c:2126
+#, fuzzy
+msgid "Do not print any test page"
+msgstr "Äðóê òýñòàâûõ ñòàðîíàê"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malta"
-msgstr "Мальта"
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
+msgstr "Äðóê òýñòàâûõ ñòàðîíàê"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2159
#, fuzzy, c-format
-msgid "Detailed information"
-msgstr "IнфармацыÑ"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid ""
-"Printer default settings\n"
+"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"
-"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"
msgstr ""
+"Òýñòàâûÿ ñòàðîíêi àäïðà¢ëåíû äýìàíó äðóêó.\n"
+"Ïåðàä òûì, ÿê ïðûíòýð çàïðàöóå, ìîæà ïðàéñöi ïý¢íû ÷àñ.\n"
+"Ñòàòóñ äðóêó:\n"
+"%s\n"
+"\n"
+"¨í ïðàöóå íàðìàëüíà?"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "ÐаÑтройка Ñеткi"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2163
+#, fuzzy
msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
msgstr ""
+"Òýñòàâûÿ ñòàðîíêi àäïðà¢ëåíû äýìàíó äðóêó.\n"
+"Ïåðàä òûì, ÿê ïðûíòýð çàïðàöóå, ìîæà ïðàéñöi ïý¢íû ÷àñ.\n"
+"¨í ïðàöóå íàðìàëüíà?"
-#: ../../Xconfig/main.pm:1
-#, fuzzy, c-format
-msgid "Graphic Card"
-msgstr "Ð’iдÑакарта"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing Windows partition"
-msgstr "ВылiчÑнне межаў файлавай ÑiÑÑ‚Ñмы Windows"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "КамÑрун"
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
+msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "DNS 1 правайдару"
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+#, fuzzy
+msgid "Raw printer"
+msgstr "Iìÿ äðóêàðêi"
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
+"To print a file from the command line (terminal window) you can either use "
+"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
+"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
+"to modify the option settings easily.\n"
msgstr ""
-"Ð’Ñ‹ можаце цÑпер разбiць ваш дыÑк %s\n"
-"Па заканчÑннi не забудзьцеÑÑ Ð·Ð°Ñ…Ð°Ð²Ð°Ñ†ÑŒ змÑненнi, ÑкарыÑтаўшы `w'"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finnish)"
+#: ../../printer/printerdrake.pm_.c:2218
+msgid ""
+"These commands you can also use in the \"Printing command\" field of the "
+"printing dialogs of many applications, but here do not supply the file name "
+"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Close"
-msgstr "Порт мышы"
-
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, 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."
+"\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 ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Calendar"
-msgstr "КалÑндар"
-
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
#, c-format
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+"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\n"
+"\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:2228
msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
-"Ð”Ð»Ñ Ð½Ð°Ñтройкi аддаленай чаргi друку вам патрÑбна\n"
-"пазначыць iÐ¼Ñ Ð°Ð´Ð´Ð°Ð»ÐµÐ½Ð°Ð³Ð° Ñервера i iÐ¼Ñ Ñ‡Ð°Ñ€Ð³i друку,\n"
-"у Ñкую аддалены Ñервер будзе адпраўлÑць заданнi."
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Iceland"
-msgstr "IÑландÑкi"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Network & Internet Configuration"
-msgstr "КанфiÐ³ÑƒÑ€Ð°Ñ†Ñ‹Ñ Ñеткi"
-
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
+"Here is a list of the available printing options for the current printer:\n"
+"\n"
msgstr ""
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "stopped"
-msgstr "Далучыць"
-
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, c-format
-msgid "Whether the FPU has an irq vector"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr "Разгарнуць дрÑва"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
-"\n"
-"It has been reported to oops the kernel on unloading.\n"
-"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+"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 ""
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Expert Mode"
-msgstr "ЭкÑперт"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "Опцыi прынтÑру"
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Local Network adress"
-msgstr "ÑÐµÑ‚ÐºÐ°Ð²Ð°Ñ ÐºÐ°Ñ€Ñ‚Ð° не знойдзена"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
-
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Set the user umask."
-msgstr "IÐ¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальнiку:"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
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 ?"
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
msgstr ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Samba Server"
-msgstr "NIS Ñервер:"
-
-#: ../../standalone/drakxtv:1
+#: ../../printer/printerdrake.pm_.c:2253
#, c-format
-msgid "Australian Optus cable TV"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../install_steps_newt.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2257
msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+"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 ""
-" <Tab>/<Alt-Tab> памiж Ñлементамi | <Space> выбар | <F12> наÑтупны Ñкран "
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm_.c:2261
#, c-format
-msgid "Subnet:"
+msgid ""
+"\n"
+"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
+"a particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:2271
#, fuzzy, c-format
-msgid "Zimbabwe"
-msgstr "можа быць"
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Àäëó÷ýííå àä ñåòêi"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2272
#, fuzzy, c-format
-msgid "When"
-msgstr "З колам"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
-msgstr ""
+msgid "Printing/Scanning on \"%s\""
+msgstr "Àäëó÷ýííå àä ñåòêi"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2274
#, fuzzy, c-format
-msgid "Hour"
-msgstr "Гадзіны"
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Àäëó÷ýííå àä ñåòêi"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:2275
#, fuzzy, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Другi Ñервер DNS:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Finland"
-msgstr "ФінлÑндыÑ"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Параметры глыбiнi колеру: %s\n"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Ð’Ñ‹ не можаце адмÑнiць вылучÑнне гÑтага пакету. Яго патрÑбна абнавiць"
+msgid "Printing on the printer \"%s\""
+msgstr "Àäëó÷ýííå àä ñåòêi"
+
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+#, fuzzy
+msgid "Close"
+msgstr "Ïîðò ìûøû"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Loading from floppy"
-msgstr "Ðднаўленне з дыÑкеты"
+#: ../../printer/printerdrake.pm_.c:2281
+#, fuzzy
+msgid "Print option list"
+msgstr "Îïöûi ïðûíòýðó"
-#: ../../standalone/drakclock:1
+#: ../../printer/printerdrake.pm_.c:2301
#, c-format
-msgid "Timezone - DrakClock"
+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!"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
+#: ../../printer/printerdrake.pm_.c:2322
+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 ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Slovenia"
-msgstr "СлавенÑкi"
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+#, fuzzy
+msgid "Reading printer data..."
+msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
-#: ../../standalone/mousedrake:1
-#, fuzzy, c-format
-msgid "Mouse test"
-msgstr "Mouse Systems"
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+#, fuzzy
+msgid "Transfer printer configuration"
+msgstr "Íàñòðîéêà çëó÷ýííÿ ç Iíòýðíýòàì"
-#: ../../standalone/drakperm:1
+#: ../../printer/printerdrake.pm_.c:2365
#, 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."
+"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 ""
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2368
msgid ""
-"Enter a user\n"
-"%s"
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
msgstr ""
-"УвÑдзiце iÐ¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальнiку\n"
-"%s"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2370
msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
msgstr ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "ProgressBar color selection"
-msgstr "ЗлучÑнне прынтÑру"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-"У меню маюцца наÑÑ‚ÑƒÐ¿Ð½Ñ‹Ñ Ð¿ÑƒÐ½ÐºÑ‚Ñ‹.\n"
-"Ð’Ñ‹ можаце дадаць ÑшчÑ, альбо змÑнiць iÑнуючыÑ."
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
-
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2374
msgid ""
-"Application Name\n"
-"or Full Path:"
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2375
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."
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
msgstr ""
-"Каманды, ÑкiÑ Ð²Ñ‹ÐºÐ¾Ð½Ð²Ð°ÑŽÑ†Ñ†Ð°, Ñ„iкÑуюцца па камандзе i чаÑе Ñе выкананнÑ\n"
-"i выконваюцца групы каманд, калi загрузка памÑцi нiжÑй даÑтатковай."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
+#: ../../printer/printerdrake.pm_.c:2376
+msgid ""
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Installing SANE packages..."
-msgstr "УÑталÑванне пакету %s"
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
msgstr ""
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../diskdrake/removable.pm:1
-#, fuzzy, c-format
-msgid "Change type"
-msgstr "ЗмÑнiць тып раздзелу"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "УÑталÑванне SILO"
-
-#: ../../install_messages.pm:1
+#: ../../printer/printerdrake.pm_.c:2392
#, 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."
+"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 ""
-"Ð’iншуем, уÑталÑванне завершана.\n"
-"Выдалiце загрузачны дыÑк i нацiÑнiце enter Ð´Ð»Ñ Ð¿ÐµÑ€Ð°Ð·Ð°Ð³Ñ€ÑƒÐ·Ðºi.\n"
-"\n"
-"\n"
-"За iнфармацыÑй пра змÑненнi дадзенага выпуÑку Mandrake Linux,\n"
-"звÑртайцеÑÑŒ на \n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"IÐ½Ñ„Ð°Ñ€Ð¼Ð°Ñ†Ñ‹Ñ Ð¿Ð° наÑтройке вашай ÑiÑÑ‚Ñмы Ñ‘Ñть Ñž паÑлÑ-ÑžÑталёвачнай\n"
-"главе вашага Дапаможнiка КарыÑтальнiку з ÐÑ„iцыйнага Mandrake Linux."
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Enable Network Time Protocol"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "paranoid"
-msgstr "Паранаiдальны"
-
-#: ../../security/l10n.pm:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
-msgid "Do not send mails when unneeded"
+msgid ""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2413
+#, fuzzy
+msgid "New printer name"
+msgstr "Iìÿ äðóêàðêi"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "Send mail report after each backup to:"
+msgid "Transferring %s..."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2427
#, 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"
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
msgstr ""
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolution"
-msgstr "Памеры Ñкрану"
+#: ../../printer/printerdrake.pm_.c:2437
+#, fuzzy
+msgid "Refreshing printer data..."
+msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"Ð”Ð»Ñ Ð´Ñ€ÑƒÐºÑƒ на прынтÑры SMB неабходна пазначыць iÐ¼Ñ Ñ…Ð¾Ñту SMB (не заўÑёды "
-"Ñупадае з iменем у Ñетцы TCP/IP) i Ð°Ð´Ñ€Ð°Ñ IP Ñервера друку, а такÑама iÐ¼Ñ "
-"Ñ€ÑÑурÑу, Ñкi Ñпалучаны з выбраным прынтÑрам, iÐ¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальнiку, пароль i "
-"iнфармацыю аб працоўнай групе."
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+#, fuzzy
+msgid "Configuration of a remote printer"
+msgstr "Íàñòðîéêà ïðûíòýðó"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2446
+#, fuzzy
+msgid "Starting network..."
+msgstr "ßêi òûï âàøàãà ISDN çëó÷ýííÿ?"
+
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+#, fuzzy
+msgid "Configure the network now"
+msgstr "Íàñòðîéêà ñåòêi"
+
+#: ../../printer/printerdrake.pm_.c:2480
+#, fuzzy
+msgid "Network functionality not configured"
+msgstr "Ìàíiòîð ïàêóëü íå íàñòðîåíû"
+
+#: ../../printer/printerdrake.pm_.c:2481
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"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 ""
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "reconfigure"
-msgstr "ÐаÑтройка X Window"
+#: ../../printer/printerdrake.pm_.c:2484
+#, fuzzy
+msgid "Go on without configuring the network"
+msgstr "Íàñòðîéêà ñåòêi"
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2518
msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
-"Ваша вiдÑакарта можа мець 3D-паÑкарÑнне, Ñкое падтрымлiваецца толькi XFree %"
-"s.\n"
-"МÐЙЦЕ ÐÐ ÐŽÐ’ÐЗЕ, ШТО ГЭТРЭКСПЕРЫМЕÐТÐЛЬÐÐЯ ПÐДТРЫМКРI МОЖРПРЫВЕСЦI ДÐ\n"
-"ЗÐÐ’IСÐÐÐЯ Ð’ÐШÐГРКÐМП'ЮТЭРУ."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell timeout"
+#: ../../printer/printerdrake.pm_.c:2519
+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 ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Xinetd Service"
-msgstr "Сервер друку"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to network tools"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2529
+#, fuzzy
+msgid "Restarting printing system..."
+msgstr "ßêóþ ñiñòýìó äðóêó Âû æàäàåöå âûêàðûñòî¢âàöü?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2568
+#, fuzzy
+msgid "high"
+msgstr "Âûñîêi"
-#: ../advertising/03-software.pl:1
-#, 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."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2568
+#, fuzzy
+msgid "paranoid"
+msgstr "Ïàðàíàiäàëüíû"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid "Here is a list of all auto-detected printers. "
+msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2570
#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"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 ""
-"Памылка ÑžÑталÑÐ²Ð°Ð½Ð½Ñ Ð°boot, \n"
-"Ñпрабаваць уÑталёўваць, негледзÑчы на магчымаÑць парушÑÐ½Ð½Ñ Ð¿ÐµÑ€ÑˆÐ°Ð³Ð° разделу?"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr "Выдалiць чаргу друку"
+#: ../../printer/printerdrake.pm_.c:2604
+#, fuzzy
+msgid "Starting the printing system at boot time"
+msgstr "ßêóþ ñiñòýìó äðóêó Âû æàäàåöå âûêàðûñòî¢âàöü?"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2605
#, c-format
msgid ""
-"%s exists, delete?\n"
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\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."
+"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 ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Калi лаÑка, запоўнiце цi пазначце поле нiжÑй"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Цi жадаеце пратÑÑцiраваць наÑтройкi?"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-дыÑкi %s\n"
-
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "On boot"
-msgstr "Yaboot"
-
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2630
#, fuzzy, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "Выбар пакетаў Ð´Ð»Ñ ÑžÑталÑваннÑ"
+msgid "Removing %s ..."
+msgstr "Ïàìåðû ýêðàíó: %s\n"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:2636
#, fuzzy, c-format
-msgid "Bus identification"
-msgstr "ÐўтÑнтыфiкацыÑ"
+msgid "Installing %s ..."
+msgstr "Óñòàëÿâàííå ïàêåòó %s"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Vatican"
-msgstr "Размеркаванне"
+#: ../../printer/printerdrake.pm_.c:2685
+#, fuzzy
+msgid "Select Printer Spooler"
+msgstr "Âûáàð òûïó çëó÷ýííÿ ïðûíòýðó"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please make a backup of your data first"
-msgstr "Па-першае, зрабiце Ñ€Ñзервовую копiÑŽ вашых дадзеных"
+#: ../../printer/printerdrake.pm_.c:2686
+#, fuzzy
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "ßêóþ ñiñòýìó äðóêó Âû æàäàåöå âûêàðûñòî¢âàöü?"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ADSL adapters"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2720
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
+msgstr "Íàñòðîéêà ïðûíòýðó"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Ðа Ñкi з маючыхÑÑ Ð¶Ð¾Ñ€ÑткiÑ… дыÑкаў Ð’Ñ‹ жадаеце ÑžÑталÑваць Linux?"
+#: ../../printer/printerdrake.pm_.c:2731
+#, fuzzy
+msgid "Installing Foomatic..."
+msgstr "Óñòàëÿâàííå ïàêåòó %s"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Eritrea"
-msgstr "ЭкÑперт"
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr "Îïöûi ïðûíòýðó"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot ISO"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2810
+#, fuzzy
+msgid "Preparing Printerdrake..."
+msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Firmware needed"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+#, fuzzy
+msgid "Configuring applications..."
+msgstr "Íàñòðîéêà ïðûíòýðó"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Remove List"
-msgstr "Ðддалены прынтÑÑ€"
+#: ../../printer/printerdrake.pm_.c:2845
+#, fuzzy
+msgid "Would you like to configure printing?"
+msgstr "Æàäàåöå íàñòðîiöü ïðûíòýð?"
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
+#: ../../printer/printerdrake.pm_.c:2915
+#, fuzzy
+msgid ""
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
+"Òóò çìÿø÷àþööà ÷ýðãi äðóêó.\n"
+"Âû ìîæàöå äàäàöü ÿø÷ý, àëüáî çìÿíiöü iñíóþ÷ûÿ."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2916
+#, fuzzy
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."
+"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 ""
+"Òóò çìÿø÷àþööà ÷ýðãi äðóêó.\n"
+"Âû ìîæàöå äàäàöü ÿø÷ý, àëüáî çìÿíiöü iñíóþ÷ûÿ."
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "Марока"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Which printer model do you have?"
-msgstr "Якi тып друкаркi вы маеце?"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Add a new printer"
-msgstr "IÐ¼Ñ Ð´Ñ€ÑƒÐºÐ°Ñ€Ðºi"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " All of your selected data have been "
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "ÐÑпал"
+#: ../../printer/printerdrake.pm_.c:2960
+#, fuzzy
+msgid "Change the printing system"
+msgstr "Íàñòðîéêà ñåòêi"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "<-- Delete"
-msgstr "Знiшчыць"
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+#, fuzzy
+msgid "Normal Mode"
+msgstr "Çâû÷àéíû"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+#, fuzzy
+msgid "Do you want to configure another printer?"
+msgstr "Öi æàäàåöå ïðàòýñöiðàâàöü íàñòðîéêi?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "chunk size"
-msgstr "памер блоку"
+#: ../../printer/printerdrake.pm_.c:3211
+#, fuzzy
+msgid "Modify printer configuration"
+msgstr "Íàñòðîéêà çëó÷ýííÿ ç Iíòýðíýòàì"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:3213
+#, fuzzy, c-format
msgid ""
-"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
-"\n"
-"If set to NONE, no issues are allowed.\n"
-"\n"
-"Else only /etc/issue is allowed."
-msgstr ""
+"Printer %s\n"
+"What do you want to modify on this printer?"
+msgstr "Öi æàäàåöå ïðàòýñöiðàâàöü íàñòðîéêi?"
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
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
-#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "commands before booting, or 'c' for a command-line."
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+#, fuzzy
+msgid "Printer connection type"
+msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Праблемы з уÑталÑваннем пакету %s"
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+#, fuzzy
+msgid "Printer name, description, location"
+msgstr "Çëó÷ýííå ïðûíòýðó"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh"
-msgstr "Ðднавіць"
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
+msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Reload partition table"
-msgstr "Ð”Ð°Ð´Ð°Ñ‚ÐºÐ¾Ð²Ð°Ñ Ñ‚Ð°Ð±Ð»iца раздзелаў"
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Selected"
-msgstr "Выдалiць чаргу друку"
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+#, fuzzy
+msgid "Print test pages"
+msgstr "Äðóê òýñòàâûõ ñòàðîíàê"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+#, fuzzy
+msgid "Know how to use this printer"
+msgstr "Öi æàäàåöå ïðàòýñöiðàâàöü íàñòðîéêi?"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+#, fuzzy
+msgid "Remove printer"
+msgstr "Àääàëåíû ïðûíòýð"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:3282
#, fuzzy, c-format
-msgid "Boot"
-msgstr "Root"
+msgid "Removing old printer \"%s\"..."
+msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:3307
+#, fuzzy
+msgid "Default printer"
+msgstr "Ëàêàëüíû ïðûíòýð"
+
+#: ../../printer/printerdrake.pm_.c:3308
#, c-format
-msgid " and the CD is in the drive"
+msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, fuzzy, c-format
-msgid "Tuner type:"
-msgstr "ЗмÑнiць тып раздзелу"
-
-#: ../../help.pm:1
-#, 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"
-"\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 ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3312
#, c-format
msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Security Administrator:"
-msgstr "Опцыi аддаленага прынтÑру lpd"
-
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:3313
#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../../move/tree/mdk_totem:1
+#: ../../printer/printerdrake.pm_.c:3317
#, 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."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../printer/printerdrake.pm_.c:3325
#, fuzzy, c-format
-msgid "Fonts copy"
-msgstr "Фарматаваць дыÑкету"
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Öi æàäàåöå ïðàòýñöiðàâàöü íàñòðîéêi?"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
-msgstr "Ðўтаматычны"
+#: ../../printer/printerdrake.pm_.c:3329
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
+msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
-#: ../../Xconfig/test.pm:1
+#: ../../raid.pm_.c:35
#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Цi жадаеце пратÑÑцiраваць наÑтройкi?"
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "Íå àòðûìëiâàåööà äàäàöü ðàçäçåë íà _àäôàðìàöiðàâàíû_ RAID md%d"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
-msgstr ""
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
+msgstr "mkraid íå ïðàöàçäîëüíû"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Save packages selection"
-msgstr "ÐÑабiÑты выбар пакетаў"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid íå ïðàöàçäîëüíû (ìîæà raid ïðûëàäû àäñóòíi÷àþöü?)"
-#: ../../standalone/printerdrake:1
+#: ../../raid.pm_.c:153
#, c-format
-msgid "/_Actions"
-msgstr "/_ДзеÑньні"
-
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Remove the last item"
-msgstr "Фарматаванне вiртуальнага раздзелу %s"
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "Íåäàñòàòêîâà ðàçäçåëࢠäëÿ RAID óçðî¢íÿ %d\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
+#: ../../security/main.pm_.c:36
+msgid ""
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
+"\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
+"\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\n"
+"\n"
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
+"\n"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
-msgstr ""
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Íàñòðîéêi ¢çðî¢íÿ áÿñïåêi"
-#: ../../network/adsl.pm:1
+#: ../../security/main.pm_.c:77
#, fuzzy, c-format
-msgid "use pptp"
-msgstr "выкарыÑтоўваць pppoe"
+msgid " (default value: %s)"
+msgstr " ? (çìî¢÷àííå %s) "
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "ÐбÑрыце, ÑкiÑ ÑервiÑÑ‹ запуÑкаць аўтаматычна пры загрузцы"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check files/directories writable by everybody"
-msgstr ""
+#: ../../security/main.pm_.c:113
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Íàñòðîéêi ¢çðî¢íÿ áÿñïåêi"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Learn how to use this printer"
-msgstr "Цi жадаеце пратÑÑцiраваць наÑтройкi?"
+#: ../../security/main.pm_.c:115
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Îïöûi àääàëåíàãà ïðûíòýðó lpd"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Configure the network now"
-msgstr "ÐаÑтройка Ñеткi"
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "Network Options"
+msgstr "Îïöûi ìîäóëþ:"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Выбар люÑтра Ð´Ð»Ñ Ð°Ñ‚Ñ€Ñ‹Ð¼Ð°Ð½Ð½Ñ Ð¿Ð°ÐºÐµÑ‚Ð°Ñž"
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "System Options"
+msgstr "Îïöûi ìîäóëþ:"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
msgstr ""
-"У праграмы змены памераў раздзела FAT не атрымалаÑÑ\n"
-"апрацаваць Ваш раздзел, памылка: %s"
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Size: "
-msgstr "Памер: %s"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "Ðа Ñкi Ñектар перанеÑці?"
+#: ../../security/main.pm_.c:191
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Íàñòðîéêi ¢çðî¢íÿ áÿñïåêi"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahamas"
-msgstr "Багамы"
+#: ../../security/main.pm_.c:197
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Ïàäðûõòî¢êà ¢ñòàëÿâàíüíÿ"
-#: ../../interactive/stdio.pm:1
-#, fuzzy, c-format
-msgid "Do you want to click on this button?"
-msgstr "Ð’Ñ‹ жадаеце выкарыÑтоўваць aboot?"
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Manual configuration"
-msgstr "ÐаÑтройка"
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
+msgstr "Anacron, ïåðûÿäû÷íû êàìàíäíû ïëàíàâàëüíiê."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "search"
+#: ../../services.pm_.c:21
+msgid ""
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
+"ampd âûêàðûñòî¢âàåööà äëÿ àäñëåæâàííÿ ñòàòóñó áàòàðýi i âÿäçåííÿ "
+"ñòàòûñòûêi.\n"
+"ßãî ìîæíà âûêàðûñòî¢âàöü äëÿ âûêëþ÷ýííÿ ìàøûíû ïðû íiçêiì çàðàäçå áàòàðýi."
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:23
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."
+"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 ""
-"ГÑты пакет загружае абраную раÑкладку клавiÑтуры Ñк набор з\n"
-"/etc/sysconfig/keyboard. Ðна можа быць абрана такÑама з дапамогай "
-"kbdconfig.\n"
-"Ð’Ñ‹ можаце зрабiць даÑтупнай Ñе Ð´Ð»Ñ ÑˆÐ¼Ð°Ñ‚Ð»Ñ–ÐºÑ–Ñ… машынаў."
+"Êàìàíäû, ÿêiÿ âûêîíâàþööà, ôiêñóþööà ïà êàìàíäçå i ÷àñå ÿå âûêàíàííÿ\n"
+"i âûêîíâàþööà ãðóïû êàìàíä, êàëi çàãðóçêà ïàìÿöi íiæýé äàñòàòêîâàé."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
+#: ../../services.pm_.c:25
+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 ""
+"cron - ñòàíäàðòíàÿ UNIX ïðàãðàìà, ÿêàÿ âûêîíâàå ïðàãðàìû êàðûñòàëüíiêà\n"
+"ïðàç ïàçíà÷àíûÿ ïåðûÿäû ÷àñó. Vixie cron äàäàå ðàä äàïà¢íåííÿ¢ äà "
+"ñòàíäàðòíàãà\n"
+"UNIX cron, óêëþ÷àþ÷û ëåïøû ¢çðîâåíü áÿñïåêi i ìîöíûÿ êàíôiãóðàöûéíûÿ îïöûi."
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf host name must not contain a ."
+#: ../../services.pm_.c:28
+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 ""
+"GPM äàäàå ïàäòðûìêó ìûøû äà ïðàãðàìà¢, ÿêiÿ ïðàöóþöü ó òýêñòàâûì ðýæûìå,\n"
+"òàêiõ ÿê Midnight Commander. Ãýòà äàçâàëÿå âûêàðûñòî¢âàöü ìûø ïðû "
+"êàïiðàâàííi i ¢ñòà¢öû,\n"
+"i ¢êëþ÷àå ïàäòðûìêó ¢ñïëûâàþ÷ûõ (pop-up) ìåíþ ¢ òýêñòàâûì ðýæûìå."
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse icmp echo."
+#: ../../services.pm_.c:31
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:33
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."
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
-"Syslog - гÑта Ñродак, з дапамогай Ñкога многiÑ Ð´Ñманы запiÑваюць "
-"паведамленнi\n"
-"Ñž Ñ€Ð¾Ð·Ð½Ñ‹Ñ Ñ„Ð°Ð¹Ð»Ñ‹ ÑтатыÑтыкi. ГÑта вельмi добра Ð´Ð»Ñ Ð°Ð³Ð»Ñду працы розных Ñлужбаў."
+"Apache - ãýòà World Wide Web ñåðâåð. ¨í âûêàðûñòî¢çâàåöà äëÿ àáñëóãî¢âàííÿ\n"
+"HTML ôàéëࢠi CGI."
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Unknown/Others"
-msgstr "Ðгульны"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
+#: ../../services.pm_.c:34
+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 ""
+"Iíòýðíýò ñóïåðñåðâåð-äýìàí (çàâåööà inetd) çàïóñêàå ïðû ñòàðöå \n"
+"êîëüêàñöü ðîçíûõ iíòýðíýò ñëóæáà¢, ÿêiÿ íåàáõîäíû. ßãî ìîæíà âûêàðûñòî¢âàöü "
+"äëÿ ïóñêó\n"
+"øìàòë³ê³õ ñëóæáà¢, óêëþ÷àþ÷û telnet, ftp, rsh i rlogin. Áëàêóþ÷û inetd, "
+"áëàêóåì\n"
+"óñå ñëóæáû, çà ÿêiÿ ¸í àäêàçâàå."
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Options"
-msgstr "Опцыi"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
+#: ../../services.pm_.c:38
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:40
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."
+"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 ""
+"Ãýòû ïàêåò çàãðóæàå àáðàíóþ ðàñêëàäêó êëàâiÿòóðû ÿê íàáîð ç\n"
+"/etc/sysconfig/keyboard. ¨íà ìîæà áûöü àáðàíà òàêñàìà ç äàïàìîãàé "
+"kbdconfig.\n"
+"Âû ìîæàöå çðàáiöü äàñòóïíàé ÿå äëÿ øìàòë³ê³õ ìàøûíà¢."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
+#: ../../services.pm_.c:43
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Auto-detected"
-msgstr "Ðддалены прынтÑÑ€"
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr ""
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
+#: ../../services.pm_.c:46
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)."
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
msgstr ""
-"Ваш камп'ютар можа быць Ñканфігураваны на ÑумеÑнае выкарыÑтанне\n"
-" ІнтÑрнÑту (Internet Connection Sharing)?\n"
-"\n"
-"Заўвага: вам патрÑбны Ñеткавы адаптар Ð´Ð»Ñ Ð¿Ð°Ð´ÐºÐ»ÑŽÑ‡ÑÐ½Ð½Ñ Ð´Ð° ЛВС.\n"
-"\n"
-"Ð’Ñ‹ жадаеце уÑталÑваць ÑумеÑны доÑтуп да Internet?"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../services.pm_.c:48
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"
+"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 ""
+"lpd - ãýòû äýìàí äðóêó, ïàòðýáíû äëÿ êàðýêòíàé ïðàöû lpr. Ãýòà\n"
+"ñåðâåð, ÿêi êiðóå ïðàöàé ïðûíòýðó(à¢)."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:50
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"
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:52
+#, fuzzy
msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
msgstr ""
+"named (BIND) - ãýòà ñåðâåð äàìåííûõ iì¸íà¢, ÿêi âûêàðûñòî¢âàåööà äëÿ\n"
+"ïåðàêëàäàííÿ iì¸í âóçëî¢ ó IP àäðàñû."
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
-msgstr "Ðдказаць"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
+#: ../../services.pm_.c:53
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
+"Ìàíöiðàâàöü i ðàçìàíöiðàâàöü óñå ñåòêàâûÿ ôàéëàâûÿ ñiñòýìû (NFS),\n"
+" SMB (Lan Manager/Windows) i NCP (Netware) ïóíêòû ìàíöiðàâàííÿ."
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:55
msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
+"Àêòûâiçàâàöü/äýàêòûâiçàâàöü óñå ñåòêàâûÿ iíòýðôåéñû, ñêàíôiãóðàâàíûÿ äëÿ\n"
+"ñòàðòó ïðû çàãðóçöû ñiñòýìû."
-#: ../../fs.pm:1
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "СтварÑнне i фарматаванне файла %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
+#: ../../services.pm_.c:57
+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 ""
+"NFS - ãýòà âÿäîìû ïðàòàêîë äëÿ äîñòóïó äà ôàéëࢠïðàç TCP/IP ñåòêi.\n"
+"Ãýòàÿ ñëóæáà çàáÿñïå÷âàåööà NFS ñåðâåðàì, ÿêi êàíôiãóðûðóåöà ïðàç\n"
+"/etc/exports ôàéë."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:60
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"
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
msgstr ""
+"NFS - ãýòà âÿäîìû ïðàòàêîë äëÿ äîñòóïó äà ôàéëࢠïðàç TCP/IP\n"
+"ñåòêi. Ãýòàÿ ñëóæáà ¢ïëûâàå íà íàÿ¢íàñöü ñóâÿçi ïàìiæ NFS ôàéëàìi."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "ВыбÑрыце iÑнуючы LVM Ð´Ð»Ñ Ð´Ð°Ð±Ð°ÑžÐ»ÐµÐ½Ð½Ñ"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "xfs restart"
-msgstr "абмежаванне"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:62
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
+#: ../../services.pm_.c:65
+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 ""
+"Ïàäòðûìêà PCMCIA - ãýòà çâû÷àéíà ïàäòðûìêà òàêiõ ðý÷à¢, ÿê Ethernet i\n"
+"ìàäýìû ¢ íà¢òáóêàõ. Âàì íÿìà íåàáõîäíàñöi êàíôiãóðàâàöü iõ, êàëi íà âàøàé\n"
+"ìàøûíå iõ íÿìà, öi ÿíà íå íà¢òáóê."
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "нÑма даÑтупных раздзелаў"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Printer Management \n"
-msgstr "IÐ¼Ñ Ð´Ñ€ÑƒÐºÐ°Ñ€Ðºi"
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Domain Name Resolver"
-msgstr "IÐ¼Ñ Ð´Ð°Ð¼ÐµÐ½Ñƒ"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
+#: ../../services.pm_.c:68
+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 ""
+"Portmapper (àãëÿäàëüíiê ïàðòî¢) êiðóå RPC çëó÷ýííÿìi, ÿêiÿ çâû÷àéíà\n"
+"âûêàðûñòî¢âàþööà òàêiìi ïðàòàêîëàìi ÿê NFS i NIS. Portmap ñåðâåð ïàâiíåí "
+"âûêîíâàööà\n"
+"íà ìàøûíàõ ÿêiÿ ïðàöóþöü ÿê ñåðâåðû äëÿ ïðàòàêîëà¢, ÿêiÿ ñêàðûñòî¢âàþöü RPC."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
+#: ../../services.pm_.c:71
+#, fuzzy
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
msgstr ""
+"Postfix - ãýòà ïàøòîâû òðàíñïàðòíû àãåíò, ïðàãðàìà, ÿêàÿ\n"
+"ïåðàìÿø÷àå ïîøòó ç àäíîé ìàøûíû íà éíøóþ."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
+#: ../../services.pm_.c:72
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
msgstr ""
+"Çàõàâàöü i àäíàâiöü ñiñòýìíû ýíòðàïiéíû ïóë äëÿ âûñîêàé ÿêàñöi\n"
+"ãåíåðàöû³ âûïàäêîâûõ ë³êà¢."
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Detection in progress"
-msgstr "ДублÑванне пункту манцiÑ€Ð°Ð²Ð°Ð½Ð½Ñ %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "modem"
-msgstr "Порт мышы"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "Сардэчна запрашаем у %s"
-
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../services.pm_.c:76
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"
+"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 ""
+"Äýìàí ìàðøðóòûçàöûi äàçâàëÿå äûíàìi÷íûì òàáëiöàì IP ìàðøðóòûçàöûi\n"
+"àäíà¢ëÿööà ïðàç RIP ïðàòàêîë. RIP âûêàðûñòî¢âàåööà ¢ ìàëûõ ñåòêàõ, áîëüø\n"
+"ñêëàäàíûÿ ïðàòàêîëû ìàðøðóòûçàöûi - ó âÿëiêiõ ñåòêàõ."
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "УÑтаўце дыÑкету Ñž дыÑкавод %s"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
+#: ../../services.pm_.c:79
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
msgstr ""
+"Ïðàòàêîë rstat äàçâàëÿå êàðûñòàëüíiêàì ñåòêi àòðûìëiâàöü\n"
+"ïàìåðû íàãðóçêi äëÿ êîæíàé ìàøûíû ñåòêi."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../services.pm_.c:81
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr "У вашай ÑÑ–ÑÑ‚Ñме нÑма нiводнага Ñеткавага адаптара!"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "ПрынтÑÑ€"
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"Ïðàòàêîë rusers äàçâàëÿå êàðûñòàëüíiêàì ñåòêi âûçíà÷àöü, õòî\n"
+"¢âàéøî¢ i ïðàöóå íà ìàøûíàõ ¢ ñåòöû."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:83
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>\". "
+"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 ""
+"Ïðàòàêîë rwho äàå ìàã÷ûìàñöü êàðûñòàëüíiêàì àòðûìàöü ñïiñ ¢ñiõ\n"
+"êàðûñòàëüíiêà¢, óâàéøî¢øûõ íà ìàøûíó, âûêàíࢠrwho äýìàí (ïàäîáíû íà finger)."
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "DrakClock"
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:86
msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without them. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"У некаторых выпадках %s драйверу патрÑбна Ð½ÐµÐºÐ°Ñ‚Ð¾Ñ€Ð°Ñ Ð´Ð°Ð´Ð°Ñ‚ÐºÐ¾Ð²Ð°Ñ iнфармацыÑ,\n"
-"але звычайна гÑта не патрабуецца. Цi не жадаеце вы задаць Ð´Ð»Ñ Ñго\n"
-"Ð´Ð°Ð´Ð°Ñ‚ÐºÐ¾Ð²Ñ‹Ñ Ð¾Ð¿Ñ†Ñ‹i, цi дазволiце драйверу пратÑÑцiраваць машыну\n"
-"Ñž пошуках неабходнай iнфармацыi? Магчыма, Ñ‚ÑÑцiраванне прывÑдзе\n"
-"да ÑÐ¿Ñ‹Ð½ÐµÐ½Ð½Ñ ÐºÐ°Ð¼Ð¿'ÑŽÑ‚Ñру, але Ñно нiчога не ÑапÑуе."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
+"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 ""
+"Syslog - ãýòà ñðîäàê, ç äàïàìîãàé ÿêîãà ìíîãiÿ äýìàíû çàïiñâàþöü "
+"ïàâåäàìëåííi\n"
+"¢ ðîçíûÿ ôàéëû ñòàòûñòûêi. Ãýòà âåëüìi äîáðà äëÿ àãëÿäó ïðàöû ðîçíûõ ñëóæáà¢."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "Куба"
+#: ../../services.pm_.c:89
+#, fuzzy
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+msgstr "Çàïóñêàå i ïðûïûíÿå X Font Server ïðû çàãðóçöû i âûêëþ÷ýííi."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr "КаÑтрычнік"
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Àáÿðûöå, ÿêiÿ ñåðâiñû çàïóñêàöü à¢òàìàòû÷íà ïðû çàãðóçöû"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Belize"
-msgstr "ЗмÑненне памераў"
+#: ../../services.pm_.c:127
+#, fuzzy
+msgid "Printing"
+msgstr "Ïðûíòýð"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Searching for new printers..."
-msgstr "ДаÑÑ‚ÑƒÐ¿Ð½Ñ‹Ñ Ð¿Ð°ÐºÐµÑ‚Ñ‹"
+#: ../../services.pm_.c:128
+#, fuzzy
+msgid "Internet"
+msgstr "öiêàâà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
+#: ../../services.pm_.c:131
+msgid "File sharing"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
-msgstr ""
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+#, fuzzy
+msgid "System"
+msgstr "Mouse Systems"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
-"Your card is supported by XFree %s which may have a better support in 2D."
-msgstr ""
-"Падтрымка 3D-паÑкарÑÐ½Ð½Ñ Ñž Вашай відÑакарце выканана толькі Ñž XFree %s.\n"
-"XFree %s можа выкарыÑтоўваць толькі 2D-паÑкарÑнне Ð´Ð»Ñ Ð³Ñтай відÑакарты."
+#: ../../services.pm_.c:138
+#, fuzzy
+msgid "Remote Administration"
+msgstr "Îïöûi àääàëåíàãà ïðûíòýðó lpd"
-#: ../../security/help.pm:1
-#, c-format
-msgid " Activate/Disable daily security check."
-msgstr ""
+#: ../../services.pm_.c:146
+#, fuzzy
+msgid "Database Server"
+msgstr "Ñåðâåð äðóêó"
-#: ../../standalone/drakbackup:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "\t-CD-R.\n"
+msgid "Services: %d activated for %d registered"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
-msgstr ""
+#: ../../services.pm_.c:191
+#, fuzzy
+msgid "Services"
+msgstr "ïðûëàäà"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "МайÑтар падрыхтоўкi раздзелаў DrakX знайшоў наÑÑ‚ÑƒÐ¿Ð½Ñ‹Ñ Ð²Ð°Ñ€Ñ‹Ñнты:"
+#: ../../services.pm_.c:203
+#, fuzzy
+msgid "running"
+msgstr "Óâàãà!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "МадьÑÑ€Ñкi"
+#: ../../services.pm_.c:203
+#, fuzzy
+msgid "stopped"
+msgstr "Äàëó÷ûöü"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
msgstr ""
-"ÐбÑрыце вашага правайдара.\n"
-"калi Ñго нÑма Ñž гÑтым ÑпiÑе, абÑрыце тып ``Iншы''"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
+#: ../../services.pm_.c:222
+msgid ""
+"No additional information\n"
+"about this service, sorry."
msgstr ""
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid "Use my Windows partition"
-msgstr "ВылiчÑнне межаў файлавай ÑiÑÑ‚Ñмы Windows"
+#: ../../services.pm_.c:229
+#, fuzzy
+msgid "On boot"
+msgstr "Yaboot"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
-msgstr "8 Мб"
+#: ../../services.pm_.c:241
+#, fuzzy
+msgid "Start"
+msgstr "Ñòàðòàâàå ìåíþ"
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "LDAP Server"
-msgstr "Ñервер"
+#: ../../services.pm_.c:241
+#, fuzzy
+msgid "Stop"
+msgstr "Ñåêòàð"
-#: ../../services.pm:1
-#, 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."
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-"Падтрымка PCMCIA - гÑта звычайна падтрымка такiÑ… Ñ€Ñчаў, Ñк Ethernet i\n"
-"мадÑмы Ñž наўтбуках. Вам нÑма неабходнаÑцi канфiгураваць iÑ…, калi на вашай\n"
-"машыне iÑ… нÑма, цi Ñна не наўтбук."
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Choose your country"
-msgstr "Выбар клавiÑтуры"
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
-"\n"
-"- System Files:\n"
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
msgstr ""
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Standalone Tools"
-msgstr "КанÑÐ¾Ð»ÑŒÐ½Ñ‹Ñ Ñ–Ð½ÑÑ‚Ñ€ÑƒÐ¼ÐµÐ½Ñ‚Ð°Ð»ÑŒÐ½Ñ‹Ñ Ñродкі"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Where"
-msgstr "З колам"
+#: ../../share/advertising/02-community.pl_.c:9
+#, fuzzy
+msgid "Get involved in the Free Software world"
+msgstr "Ïàäêëþ÷ýííå"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "but not matching"
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "ÐаÑтройка карт PCMCIA ..."
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Äàëó÷ýííå äà Iíòýðíýòó"
-#: ../../common.pm:1
-#, c-format
-msgid "kdesu missing"
+#: ../../share/advertising/03-internet.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../keyboard.pm:1
-#, c-format
+#: ../../share/advertising/04-multimedia.pl_.c:11
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."
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "Ð’Ñ‹Ñпа РаÑÑтва"
-
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Automatic"
-msgstr "Ðўтаматычны IP"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "ПрацÑÑ ÑƒÑталÑÐ²Ð°Ð½Ð½Ñ Ð·Ð°Ð³Ñ€ÑƒÐ·Ñ‡Ñ‹ÐºÐ° не атрымаўÑÑ. Узнiкла наÑÑ‚ÑƒÐ¿Ð½Ð°Ñ Ð¿Ð°Ð¼Ñ‹Ð»ÐºÐ°:"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Çàáàâû"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
+#: ../../share/advertising/05-games.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Set this printer as the default"
-msgstr ""
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+#, fuzzy
+msgid "Mandrake Control Center"
+msgstr "Äàëó÷ýííå äà Iíòýðíýòó"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Verify that %s is the correct path"
-msgstr "ГÑта дакладна?"
+#: ../../share/advertising/06-mcc.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
+msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "Раздзел %s"
+#: ../../share/advertising/07-desktop.pl_.c:9
+#, fuzzy
+msgid "User interfaces"
+msgstr "Ñåòêàâû iíòýðôåéñ"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Paranoid"
-msgstr "Паранаiдальны"
+#: ../../share/advertising/07-desktop.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
+msgstr ""
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "NIS"
-msgstr "ВыкарыÑтоўваць NIS"
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "ðàñïðàöî¢ø÷ûê"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Del User"
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Location on the bus"
+#: ../../share/advertising/08-development.pl_.c:11
+msgid ""
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "No printer found!"
-msgstr "Лакальны прынтÑÑ€"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
msgstr ""
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Erase entire disk"
-msgstr "Сцёрцi Ð´Ð°Ð´Ð·ÐµÐ½Ñ‹Ñ Ð½Ð° ÑžÑiм дыÑку"
-
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Default)"
-msgstr " (Па дамаўленню)"
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Automatic reconfiguration"
-msgstr "ÐаÑтройка мадÑму"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Receiving Speed:"
+#: ../../share/advertising/09-server.pl_.c:10
+msgid ""
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Ip"
+#: ../../share/advertising/10-mnf.pl_.c:10
+msgid ""
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../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
-#, c-format
-msgid "<- Previous"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Transfer Now"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password and network authentication methods"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
msgstr ""
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "ПераключÑнне памiж упарадкаваннем па групе i аÑобках"
-
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Themes"
-msgstr "ДрÑва"
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "Опцыi: %s"
-
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr "СумеÑнае IнтÑрнÑÑ‚-злучÑнне"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "OKI winprinter configuration"
-msgstr "ÐаÑтройка злучÑÐ½Ð½Ñ Ð· IнтÑрнÑтам"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Parallel port #%s"
-msgstr "IÐ¼Ñ Ð¿Ñ€Ñ‹Ð½Ñ‚Ñру"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Security Level"
-msgstr "ÐаÑтройкi ÑžÐ·Ñ€Ð¾ÑžÐ½Ñ Ð±ÑÑпекi"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-"ÐÐµÐºÐ°Ñ‚Ð¾Ñ€Ñ‹Ñ ÐºÑ€Ð¾Ðºi не завершаны.\n"
-"Ð’Ñ‹ Ñапраўды жадаеце выйÑцi зараз?"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Sudan"
-msgstr "SunOS"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "ПольÑкi (qwertz раÑкладка)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
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?"
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
msgstr ""
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
-#, 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"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "ПартугальÑкi"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
-msgstr "IÐ¼Ñ Ð²iртуальнага раздзелу"
-
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "IP Ð°Ð´Ñ€Ð°Ñ Ð¿Ð°Ð²iнен быць у фармаце 1.2.3.4"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Left Control key"
-msgstr "Ðддалены прынтÑÑ€"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Serbia"
-msgstr "паÑлÑдоўнаÑ"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Newzealand"
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
-msgstr "ГÑты каталог павінен знаходзіцца ўнутры каранёвай файлавай ÑÑ–ÑÑ‚Ñмы"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Across Network"
-msgstr "Сетка:"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "ýêñïåðò"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "УÑталÑванне загрузчыку"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+msgid ""
+"Join the MandrakeSoft support teams and the Linux Community online to share "
+"your knowledge and help others by becoming a recognized Expert on the online "
+"technical support website:"
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Пазначце памер вiдÑапамÑцi"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "ýêñïåðò"
-#: ../../security/help.pm:1
-#, 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))."
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
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."
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
+#: ../../share/advertising/17-mdkclub.pl_.c:10
+msgid ""
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
msgstr ""
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
+#: ../../standalone.pm_.c:21
+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 ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Знойдзены %s %s iнтÑрфейÑÑ‹"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Post Install"
-msgstr "УÑталёўка"
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "The internal domain name"
-msgstr "IÐ¼Ñ Ð´Ñ€ÑƒÐºÐ°Ñ€Ðºi"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ карты"
+#: ../../standalone.pm_.c:40
+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 name.\n"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
+#: ../../standalone.pm_.c:51
+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.pm:1
-#, c-format
+#: ../../standalone.pm_.c:57
msgid ""
"Font Importation and monitoring "
"application \n"
@@ -12112,6826 +9231,4670 @@ msgid ""
" : and gs for ghostscript for only this one."
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "ÐбÑрыце дыÑкавод, у Ñкiм будзе Ñтварацца Ð·Ð°Ð³Ñ€ÑƒÐ·Ð°Ñ‡Ð½Ð°Ñ Ð´Ñ‹Ñкета"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
+#: ../../standalone.pm_.c:68
+msgid ""
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
+#: ../../standalone.pm_.c:70
+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)"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Everything (no firewall)"
-msgstr "ÐŽÑÑ‘ Ñканфiгуравана!"
+#: ../../standalone.pm_.c:82
+#, fuzzy
+msgid "[keyboard]"
+msgstr "Êëàâiÿòóðà"
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
+#: ../../standalone.pm_.c:84
+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 ""
-#: ../../interactive/newt.pm:1
-#, fuzzy, c-format
-msgid "Do"
-msgstr "Зроблена"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "СувÑзь з люрам Ð´Ð»Ñ Ð°Ñ‚Ñ€Ñ‹Ð¼Ð°Ð½Ð½Ñ ÑпiÑу даÑтупных пакетаў"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "ЛiтоўÑкi AZERTY (Ñтары)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "БразiльÑкi (ABNT-2)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone.pm_.c:94
msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
+"[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 ""
-#: ../../install_gtk.pm:1
-#, fuzzy, c-format
-msgid "System installation"
-msgstr "УÑталÑванне SILO"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
+#: ../../standalone.pm_.c:99
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid reboot by the console user."
+#: ../../standalone.pm_.c:100
+msgid ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
msgstr ""
-#: ../../standalone/logdrake:1
+#: ../../standalone.pm_.c:114
#, c-format
-msgid "/File/_Open"
+msgid ""
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "СтварÑнне дыÑкеты Ð´Ð»Ñ ÑžÑталÑваннÑ"
+#: ../../standalone.pm_.c:168
+#, fuzzy
+msgid "Installing packages..."
+msgstr "Óñòàëÿâàííå ïàêåòó %s"
-#: ../../any.pm:1
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Êàëi ëàñêà, âûéäçiöå, à ïîòûì ñêàðûñòàéöå Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "Open Firmware Delay"
-msgstr ""
+msgid "Please relog into %s to activate the changes"
+msgstr "Êàëi ëàñêà, ïåðàéäçiöå ¢ %s äëÿ àêòûâàöûi çìÿíåííÿ¢"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Hungary"
-msgstr "МадьÑÑ€Ñкi"
+#: ../../standalone/drakTermServ_.c:239
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Íàñòðîéêà çëó÷ýííÿ ç Iíòýðíýòàì"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Zealand"
-msgstr "ÐÐ¾Ð²Ð°Ñ Ð—ÑлÑндыÑ"
+#: ../../standalone/drakTermServ_.c:253
+#, fuzzy
+msgid "Enable Server"
+msgstr "Ñåðâåð äðóêó"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Color configuration"
-msgstr "ÐаÑтройка"
+#: ../../standalone/drakTermServ_.c:260
+#, fuzzy
+msgid "Disable Server"
+msgstr "Ñåðâåð äðóêó"
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
+#: ../../standalone/drakTermServ_.c:268
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS ñåðâåð:"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "please choose the date to restore"
-msgstr "калi лаÑка, пазначце тып вашай мышы."
+#: ../../standalone/drakTermServ_.c:275
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS ñåðâåð:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
-msgstr "ÐідÑрлÑнÑÐºÐ°Ñ ÐнціліÑ"
+#: ../../standalone/drakTermServ_.c:283
+#, fuzzy
+msgid "Etherboot Floppy/ISO"
+msgstr "Ñòâàðûöü çàãð. äûñê"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng"
-msgstr ""
+#: ../../standalone/drakTermServ_.c:294
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Äàäàöü êàðûñòàëüíiêà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
+#: ../../standalone/drakTermServ_.c:299
+msgid "Add/Del Clients"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:328
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "and %d unknown printers"
-msgstr "IÐ¼Ñ Ð´Ñ€ÑƒÐºÐ°Ñ€Ðºi"
-
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:332
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)"
+"\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
-#, c-format
+#: ../../standalone/drakTermServ_.c:365
msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\n"
+"\n"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
+"\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\n"
+"\n"
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
+"\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
+"\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
+"\n"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \n"
+"\n"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Карта ISDN PCI не знойдзена. Калi лаÑка, пазначце на наÑтупным Ñкране."
-
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
-msgstr "Калi лаÑка, увÑдзiце iÐ¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальнiку"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
msgstr ""
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Simply reboot"
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid " enter `void' for void entry"
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
-msgstr "Студзень"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Password history length"
-msgstr "ГÑты пароль занадта проÑты"
-
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Winmodem connection"
-msgstr "ЗлучÑнне прынтÑру"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr ""
+#: ../../standalone/drakTermServ_.c:587
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Ðàçìåðêàâàííå"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
msgstr ""
-"Ðе хапае меÑца Ñž буферы падкачкi (swap) Ð´Ð»Ñ ÑžÑталÑваннÑ, павÑлiчце Ñго."
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "%s on %s"
-msgstr "Порт"
+#: ../../standalone/drakTermServ_.c:604
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Çíiø÷ûöü"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Allow/Forbid remote root login."
-msgstr "Ðддалены прынтÑÑ€"
+#: ../../standalone/drakTermServ_.c:611
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Àáÿðûöå ôàéë"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:668
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/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
+"!!! 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_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Якi ваш чаÑавы поÑÑ?"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use .backupignore files"
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
+#: ../../standalone/drakTermServ_.c:673
+#, fuzzy
+msgid "Add User -->"
+msgstr "Äàäàöü êàðûñòàëüíiêà"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Guinea"
-msgstr "Ðгульны"
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
+msgstr ""
-#: ../../network/tools.pm:1
+#: ../../standalone/drakTermServ_.c:720
#, fuzzy, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Як вы плануеце далучыцца да IнтÑрнÑту?"
+msgid "type: %s"
+msgstr "Òûï: "
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
+#: ../../standalone/drakTermServ_.c:773
+msgid "Thin Client"
msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/drakTermServ_.c:775
+msgid "Allow Thin Clients"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "Мазамбік"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "Пiктаграма"
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Kill those programs"
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please choose what you want to backup"
-msgstr "Выбар пакетаў Ð´Ð»Ñ ÑžÑталÑваннÑ"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 колераў (8 бiтаў)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "Чытанне-запiÑ"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "Памер: %s\n"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Hostname: "
-msgstr "IÐ¼Ñ Ð¼Ð°ÑˆÑ‹Ð½Ñ‹"
+#: ../../standalone/drakTermServ_.c:821
+msgid "<-- Edit Client"
+msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Add a rule"
-msgstr "Дадаць карыÑтальнiка"
+#: ../../standalone/drakTermServ_.c:837
+#, fuzzy
+msgid "Delete Client"
+msgstr "Çíiø÷ûöü"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Памер фрагменту %s\n"
+#: ../../standalone/drakTermServ_.c:843
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Íàñòðîéêà IDE"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
+#: ../../standalone/drakTermServ_.c:876
+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
-#, fuzzy, c-format
-msgid "Local Printer"
-msgstr "Лакальны прынтÑÑ€"
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
+msgstr ""
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Куды вы жадаеце манцiраваць прыладу %s?"
+#: ../../standalone/drakTermServ_.c:901
+#, fuzzy
+msgid "Netmask:"
+msgstr "Ìàñêà ñåòêi"
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "ADSL connection"
-msgstr "Размеркаванне"
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Error!"
-msgstr "Памылка"
+#: ../../standalone/drakTermServ_.c:929
+#, fuzzy
+msgid "Domain Name:"
+msgstr "Iìÿ äàìåíó"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "cable connection detected"
-msgstr "ЗлучÑнне прынтÑру"
+#: ../../standalone/drakTermServ_.c:937
+#, fuzzy
+msgid "Name Servers:"
+msgstr "NIS ñåðâåð:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Паведаміць пра памылку"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Dominica"
-msgstr "NIS Domain"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "ЗмÑненне памераў"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Памеры Ñкрану: %s\n"
+#: ../../standalone/drakTermServ_.c:1001
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Çàêàí÷ýííå íàñòðîéêi"
-#: ../../install2.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:1002
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)"
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "ÐаÑÑ‚ÑƒÐ¿Ð½Ñ‹Ñ Ð¿Ð°ÐºÐµÑ‚Ñ‹ будуць выдалены"
+#: ../../standalone/drakTermServ_.c:1018
+#, fuzzy
+msgid "Write Config"
+msgstr "Íàñòðîéêà X Window"
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr "ДалучÑнне да IнтÑрнÑту"
+#: ../../standalone/drakTermServ_.c:1120
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Óñòà¢öå äûñêåòó ¢ äûñêàâîä %s"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
-msgstr "ВыкарыÑтоўваць iÑнуючы раздзел"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "КанадÑкi (КвебÑк)"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Мыш: %s\n"
+#: ../../standalone/drakTermServ_.c:1129
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Äûñêàâîä íåäàñòóïíû"
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakTermServ_.c:1138
#, c-format
-msgid "Reselect correct fonts"
+msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, fuzzy, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "ÑкÑперт"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Write protection"
-msgstr "Ðддалены прынтÑÑ€"
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "You've not selected any font"
-msgstr "Выдалiць чаргу друку"
+#: ../../standalone/drakautoinst_.c:40
+#, fuzzy
+msgid "Error!"
+msgstr "Ïàìûëêà"
-#: ../../steps.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, c-format
-msgid "Language"
-msgstr "Выбар мовы"
+msgid "I can't find needed image file `%s'."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer model selection"
-msgstr "ЗлучÑнне прынтÑру"
+#: ../../standalone/drakautoinst_.c:43
+#, fuzzy
+msgid "Auto Install Configurator"
+msgstr "Íàñòðîéêà ïàñëÿ ¢ñòàëÿâàííÿ"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:44
msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr "УÑе Ð´Ð°Ð´Ð·ÐµÐ½Ñ‹Ñ Ñž раздзеле %s будуць Ñтрачаны паÑÐ»Ñ Ð·Ð¼ÐµÐ½Ñ‹ Ñго тыпу"
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "ISDN adapters"
-msgstr "Ð£Ð½ÑƒÑ‚Ñ€Ð°Ð½Ð°Ñ ISDN карта"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d Ñекундаў"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "УÑтаўце дыÑкету Ñž дыÑкавод %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr ""
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
+"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/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
-msgid "Sound configuration"
-msgstr "ÐаÑтройка"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Photo test page"
-msgstr "Друк Ñ‚ÑÑтавых Ñтаронак"
+#: ../../standalone/drakautoinst_.c:62
+#, fuzzy
+msgid "replay"
+msgstr "Ïåðàçàãðóçiöü"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "Custom disk partitioning"
-msgstr "ВыкарыÑтоўваць iÑнуючы раздзел"
+#: ../../standalone/drakautoinst_.c:66
+#, fuzzy
+msgid "Automatic Steps Configuration"
+msgstr "Íàñòðîéêà ìàäýìó"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
+#: ../../standalone/drakautoinst_.c:67
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Ñòâàðýííå äûñêåòû äëÿ ¢ñòàëÿâàííÿ"
+
+#: ../../standalone/drakautoinst_.c:139
msgid ""
-"The following printers\n"
"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr "У вашай ÑÑ–ÑÑ‚Ñме нÑма нiводнага Ñеткавага адаптара!"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "You don't have any winmodem"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "type: %s"
-msgstr "Тып: "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "Славацкi (QWERTY)"
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
+msgstr "Ïðûì³öå âiíøàâàííi!"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:235
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."
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
msgstr ""
-#: ../../standalone/draksound:1
-#, fuzzy, c-format
-msgid "No Sound Card detected!"
-msgstr "Размеркаванне"
+#: ../../standalone/drakautoinst_.c:273
+#, fuzzy
+msgid "Auto Install"
+msgstr "Óñòà븢êà"
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "Порт мышы"
+#: ../../standalone/drakautoinst_.c:343
+#, fuzzy
+msgid "Add an item"
+msgstr "Äàäàöü êàðûñòàëüíiêà"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
-msgstr ""
+#: ../../standalone/drakautoinst_.c:350
+#, fuzzy
+msgid "Remove the last item"
+msgstr "Ôàðìàòàâàííå âiðòóàëüíàãà ðàçäçåëó %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Ftp Server"
-msgstr "NIS Ñервер:"
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
+msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Uganda"
-msgstr "Ðдкат"
+#: ../../standalone/drakbackup_.c:691
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "Калi лаÑка, пазначце поÑлÑдоўны порт, да Ñкога падключана Ð²Ð°ÑˆÐ°Ñ Ð¼Ñ‹Ñˆ."
-
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:704
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"
+" DrakBackup Report \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"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:705
+msgid ""
"\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"
+" DrakBackup Daemon Report\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"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:709
+msgid ""
"\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"
+" DrakBackup Report Details\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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr "КамараÑ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "May"
-msgstr "Травень"
-
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Yaboot mode"
-msgstr "Ð—Ð°Ð³Ñ€ÑƒÐ·Ð°Ñ‡Ð½Ð°Ñ Ð¿Ñ€Ñ‹Ð»Ð°Ð´Ð°"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Ð—Ð²Ñ‹Ñ‡Ð°Ð¹Ð½Ð°Ñ Ð¼Ñ‹Ñˆ з 3 кнопкамі"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
-msgstr ""
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+#, fuzzy
+msgid "Total progess"
+msgstr "Ïðàâåðêà ïàðòî¢"
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakbackup_.c:785
#, c-format
msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+"%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/drakbackup:1
-#, fuzzy, c-format
-msgid "Select another media to restore from"
-msgstr "калi лаÑка, пазначце тып вашай мышы."
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Software Manager"
-msgstr "IÐ¼Ñ Ð´Ð»Ñ Ñ€Ð°Ð·Ð¼ÐµÑ€ÐºÐ°Ð²Ð°Ð½Ð°Ð³Ð° Ñ€ÑÑурÑу"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:801
#, c-format
-msgid "CD in place - continue."
+msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../common.pm:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid "KB"
+msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:819
#, fuzzy, c-format
-msgid "Network & Internet"
-msgstr "Сеткавы iнтÑрфейÑ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "ЛiтоўÑкi \"фанетычны\" QWERTY"
+msgid "Bad password on %s"
+msgstr "Íÿìà ïàðîëþ"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "Net Boot Images"
+msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakbackup_.c:821
#, fuzzy, c-format
-msgid "Sharing of local scanners"
-msgstr "ДаÑÑ‚ÑƒÐ¿Ð½Ñ‹Ñ Ð¿Ð°ÐºÐµÑ‚Ñ‹"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr ""
+msgid "Can't find %s on %s"
+msgstr "Ïàìûëêà àäêðûööÿ %s äëÿ çàïiñó: %s"
-#: ../../../move/move.pm:1
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid "Detect again USB key"
+msgid "%s not responding"
msgstr ""
-#: ../../services.pm:1
+#: ../../standalone/drakbackup_.c:828
#, c-format
-msgid "Services and deamons"
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remote host name missing!"
-msgstr "Ðддалены вузел"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "with /usr"
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Network"
-msgstr "Сетка:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "ГÑты пароль занадта проÑты"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "ÐаÑтройка Ñлужбаў"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "Славацкi (QWERTZ)"
-
-#: ../advertising/06-development.pl:1
-#, 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."
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "No devices found"
-msgstr "Лакальны прынтÑÑ€"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use daemon"
-msgstr "IÐ¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальнiку:"
-
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "ÐўтÑнтыфiкацыÑ"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Additional CUPS servers: "
-msgstr "IP Ñервера SMB"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Where do you want to mount %s?"
-msgstr "Куды вы жадаеце манцiраваць прыладу %s?"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Algeria"
-msgstr "паÑлÑдоўнаÑ"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Via Network"
-msgstr "Пераканфiгураваць лакальную Ñетку"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
msgstr ""
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Initrd-size"
-msgstr "Initrd"
-
-#: ../../help.pm:1
+#: ../../standalone/drakbackup_.c:1060
#, 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."
+msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Set as default"
-msgstr "Па дамаўленню"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 Мб"
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+#, fuzzy
+msgid "Hard Disk Backup files..."
+msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configured on this machine"
-msgstr "ÐаÑтройка мышы"
+#: ../../standalone/drakbackup_.c:1236
+#, fuzzy
+msgid "Backup User files..."
+msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid " --help - display this help \n"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1290
+#, fuzzy
+msgid "Backup Other files..."
+msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
+
+#: ../../standalone/drakbackup_.c:1296
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone.pm:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, 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"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Setting Default Printer..."
-msgstr "Лакальны прынтÑÑ€"
-
-#: ../../standalone/drakgw:1
+#: ../../standalone/drakbackup_.c:1319
#, c-format
-msgid "Interface %s (using module %s)"
+msgid ""
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Generating preview ..."
-msgstr "ВызначÑнне прыладаў..."
-
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1322
msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
+"\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
msgstr ""
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "ignore"
-msgstr "нÑма"
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1340
msgid ""
-"Allow/Forbid X connections:\n"
-"\n"
-"- ALL (all connections are allowed),\n"
"\n"
-"- LOCAL (only connection from local machine),\n"
+"Drakbackup activities via CD:\n"
"\n"
-"- NONE (no connection)."
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
+#: ../../standalone/drakbackup_.c:1345
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "паÑлÑдоўнаÑ"
+#: ../../standalone/drakbackup_.c:1354
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Ïàìûëêà ÷ûòàííÿ ôàéëó %s"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "ГрузiнÑкi (\"ЛацiнÑкаÑ\" раÑкладка)"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+#, fuzzy
+msgid "File Selection"
+msgstr "Âûáàð ãðóïû ïàêåòà¢"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1573
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Kenya"
-msgstr "КлавiÑтура"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Спачатку зрабiце ``Unmount''"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Installing mtools packages..."
-msgstr "УÑталÑванне пакету %s"
-
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "You must specify a root partition"
-msgstr "Вы павiнны мець раздзел swap"
-
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "first step creation"
-msgstr "ÐаÑтройка паÑÐ»Ñ ÑžÑталÑваннÑ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
+"\n"
+"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1574
msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Select a scanner model"
-msgstr "ÐбÑрыце вiдÑакарту"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
-msgstr ""
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
+"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Drakbackup Configuration"
-msgstr "КанфiÐ³ÑƒÑ€Ð°Ñ†Ñ‹Ñ Ñеткi"
+#: ../../standalone/drakbackup_.c:1575
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Save as.."
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1578
msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
msgstr ""
-#: ../../install_gtk.pm:1
-#, fuzzy, c-format
-msgid "System configuration"
-msgstr "ÐаÑтройка"
-
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "Ðўтаматычны ўваход у ÑiÑÑ‚Ñму"
-
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Domain Admin Password"
-msgstr "Падцвердзiць пароль"
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Please check all users that you want to include in your backup."
+msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../advertising/05-desktop.pl:1
-#, 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, ..."
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Configuring printer ..."
-msgstr "ÐаÑтройка прынтÑру"
-
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, 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)"
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "Мб"
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+#, fuzzy
+msgid "Remove Selected"
+msgstr "Âûäàëiöü ÷àðãó äðóêó"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
-msgstr ""
+#: ../../standalone/drakbackup_.c:1679
+#, fuzzy
+msgid "Windows (FAT32)"
+msgstr "Âûäàëiöü Windows(TM)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1714
+#, fuzzy
+msgid "Users"
+msgstr "Iìÿ êàðûñòàëüíiêó:"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Bermuda"
-msgstr "ÐÑмецкi"
+#: ../../standalone/drakbackup_.c:1740
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:1747
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."
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-"Далей адзначаны уÑе Ñ–ÑÐ½ÑƒÑŽÑ‡Ñ‹Ñ Ñ€Ð°Ð·Ð´Ð·ÐµÐ»Ñ‹ Linux, Ð·Ð½Ð¾Ð¹Ð´Ð·ÐµÐ½Ñ‹Ñ Ð½Ð° вашым дыÑку,\n"
-" ÑÐºÑ–Ñ Ð·Ñ€Ð¾Ð±Ð»ÐµÐ½Ñ‹ майÑтрам вылучÑÐ½Ð½Ñ Ð´Ñ‹Ñкаў. Ð’Ñ‹ можаце пакінуць Ñ–Ñ… так Ñ– "
-"выкарыÑтўваць\n"
-" далей, бо Ñны добра падыходзÑць Ð´Ð»Ñ Ð·Ð²Ñ‹Ñ‡Ð°Ð¹Ð½Ð°Ð³Ð° выкарыÑтаннÑ. Калі вы\n"
-" ўноÑіце змены, вы павінны, вылучыць Ñ…Ð°Ñ†Ñ Ñ€Ð°Ð·Ð´Ð·ÐµÐ» (\"/\"). Рабіце\n"
-" раздзел не вельмі малым, бо Ñž адваротным выпадку вы Ð½Ñ Ð·Ð´Ð¾Ð»ÐµÐµÑ†Ðµ уÑталÑваць\n"
-" даÑтаткова праграмнага забеÑпÑчÑннÑ.Калі вы жадаеце захаваць Ð²Ð°ÑˆÑ‹Ñ "
-"дадзеныÑ\n"
-" на аÑобным раздзеле, вы павінны абраць пункт Ð¼Ð°Ð½Ñ†Ñ–Ñ€Ð°Ð²Ð°Ð½Ð½Ñ \"/home\".\n"
-"\n"
-"Кожны раздзел пазначаны наÑтупным чынам \"ІмÑ\", \"СвойÑтвы\".\n"
-"\n"
-"\n"
-"\"ІмÑ\" кадавана так - \"тып дыÑку\", \"нумар дыÑку\", \"нумар раздзелу\" \n"
-"(напрыклад, \"hda1\").\n"
-"\n"
-"\n"
-"\"Тып дыÑку\" кадаваны Ñк \"hd\", калі гÑта IDE, Ñ– \"sd\" калі SCSI.\n"
-" * \"а\" \"master\" на першаÑным канале IDE \n"
-" * \"b\" \"slave\" на першаÑным канале IDE\n"
-" * \"c\" \"master\" на другаÑным канале IDE\n"
-" * \"d\" \"slave\" на другаÑным канале IDE\n"
-"\n"
-"\n"
-"Ð”Ð»Ñ SCSI дыÑкаў - \"a\" гÑта \"першаÑны жорÑкі дыÑк\", \"b\" - \"другаÑны "
-"жорÑкі дыÑк\", Ñ– г.д."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, fuzzy, c-format
-msgid "Remove"
-msgstr "Ðддалены прынтÑÑ€"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr "ЛіÑота"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
+#: ../../standalone/drakbackup_.c:1748
+msgid ""
+" Transfer \n"
+"Now"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
+#: ../../standalone/drakbackup_.c:1749
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "Фарматаванне вiртуальнага раздзелу %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "ÐšÐ¾Ñ‚Ñ Ð´Ñ Ð†Ð½Ð²Ð¾Ñ€Ñ"
+#: ../../standalone/drakbackup_.c:1753
+#, fuzzy
+msgid "Please enter the host name or IP."
+msgstr "Êàë³ ëàñêà, çðàá³öå íåêàëüê³ ðóõࢠìûøøó."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
+#: ../../standalone/drakbackup_.c:1758
+msgid ""
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "Так"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Якi пратакол вы жадаеце выкарыÑтоўваць?"
+#: ../../standalone/drakbackup_.c:1763
+#, fuzzy
+msgid "Please enter your login"
+msgstr "Ïàñïðàáóéöå ÿø÷ý ðàç"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Progress"
-msgstr "Ðднаўленне з файлу"
+#: ../../standalone/drakbackup_.c:1768
+#, fuzzy
+msgid "Please enter your password"
+msgstr "Ïàñïðàáóéöå ÿø÷ý ðàç"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Estonia"
-msgstr "ЭÑтонÑкi"
+#: ../../standalone/drakbackup_.c:1774
+#, fuzzy
+msgid "Remember this password"
+msgstr "Íÿìà ïàðîëþ"
-#: ../../partition_table.pm:1
-#, 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."
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
msgstr ""
-"Ð’Ñ‹ маеце дзiрку Ñž таблiцы радзелаў, але Ñ Ð½Ðµ маю магчымаÑцi Ñе ÑкарыÑтаць.\n"
-"Ðдзiны выхад у тым, каб перамÑÑцiць першаÑÐ½Ñ‹Ñ Ñ€Ð°Ð·Ð´Ð·ÐµÐ»Ñ‹ так, каб дзiрка iшла\n"
-"адразу за пашыраным (extended) раздзелам"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Channel"
-msgstr "Ðдмена"
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Add"
-msgstr "Дадаць"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid " Error while sending mail. \n"
-msgstr "Памылка Ñ‡Ñ‹Ñ‚Ð°Ð½Ð½Ñ Ñ„Ð°Ð¹Ð»Ñƒ %s"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "КлавiÑтура"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1882
msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Choose the connection you want to configure"
-msgstr "ÐбÑрыце iнÑтрумент, Ñкi жадаеце ÑкарыÑтаць"
+#: ../../standalone/drakbackup_.c:1887
+#, fuzzy
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Êàëi ëàñêà, àáÿðûöå òûï êëàâiÿòóðû."
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Please wait, setting security level..."
-msgstr "ÐаÑтройкi ÑžÐ·Ñ€Ð¾ÑžÐ½Ñ Ð±ÑÑпекi"
+#: ../../standalone/drakbackup_.c:1893
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Íàö³ñí³öå íà ðàçäçåë"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "ÐаÑтройка Ñеткавай прылады %s"
+#: ../../standalone/drakbackup_.c:1899
+#, fuzzy
+msgid "Please check if you are using CDRW media"
+msgstr "Íàö³ñí³öå íà ðàçäçåë"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "activated"
-msgstr "Ðктыўны"
+#: ../../standalone/drakbackup_.c:1905
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Íàö³ñí³öå íà ðàçäçåë"
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
+#: ../../standalone/drakbackup_.c:1906
+msgid " Erase Now "
msgstr ""
-"Калi лаÑка, пазначце Ñеткавы адаптар, Ñкi плануеце выкарыÑтоўваць Ð´Ð»Ñ "
-"далучÑÐ½Ð½Ñ Ð´Ð° iнтÑрнÑÑ‚"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Пошук пакетаў Ð´Ð»Ñ Ð°Ð±Ð½Ð°ÑžÐ»ÐµÐ½Ð½Ñ"
+#: ../../standalone/drakbackup_.c:1912
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Íàö³ñí³öå íà ðàçäçåë"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
-msgstr "Пункт манцiраваннÑ:"
+#: ../../standalone/drakbackup_.c:1918
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Íàö³ñí³öå íà ðàçäçåë"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
+#: ../../standalone/drakbackup_.c:1931
+msgid ""
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Allow/Forbid direct root login."
-msgstr "Ðддалены прынтÑÑ€"
+#: ../../standalone/drakbackup_.c:1964
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Àáÿðûöå ôàéë"
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
+#: ../../standalone/drakbackup_.c:2012
+#, fuzzy
+msgid "Use tape to backup"
+msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
+
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "With X"
-msgstr "Чакайце"
+#: ../../standalone/drakbackup_.c:2021
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../Xconfig/card.pm:1
-#, fuzzy, c-format
-msgid "Multi-head configuration"
-msgstr "чытанне наÑтройкi"
+#: ../../standalone/drakbackup_.c:2027
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "No browser available! Please install one"
-msgstr "Ð’Ñ‹ можаце абраць Ñ–Ð½ÑˆÑ‹Ñ Ð¼Ð¾Ð²Ñ‹, ÑкiÑ Ð±ÑƒÐ´ÑƒÑ†ÑŒ даÑтупны паÑÐ»Ñ ÑžÑталÑваннÑ"
+#: ../../standalone/drakbackup_.c:2033
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../Xconfig/main.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
msgstr ""
-"Ці жадаеце Ð’Ñ‹ захаваць змÑненні?\n"
-"БÑÐ³ÑƒÑ‡Ð°Ñ ÐºÐ°Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ‹Ñ:\n"
-"\n"
-"%s"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Ð’Ñ‹ не можаце разбiваць на разделы, памер ÑкiÑ… меней за 32 Мб"
-#: ../../services.pm:1
-#, 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)."
-msgstr ""
-"Пратакол rwho дае магчымаÑць карыÑтальнiкам атрымаць ÑпiÑ ÑžÑiÑ…\n"
-"карыÑтальнiкаў, увайшоўшых на машыну, выканаў rwho дÑман (падобны на finger)."
+#: ../../standalone/drakbackup_.c:2103
+#, fuzzy
+msgid "Please enter the directory to save to:"
+msgstr "Êàë³ ëàñêà, çðàá³öå íåêàëüê³ ðóõࢠìûøøó."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "IÐ¼Ñ Ð´Ð°Ð¼ÐµÐ½Ñƒ"
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+#, fuzzy
+msgid "Use quota for backup files."
+msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Sharing of local printers"
-msgstr "ДаÑÑ‚ÑƒÐ¿Ð½Ñ‹Ñ Ð¿Ð°ÐºÐµÑ‚Ñ‹"
+#: ../../standalone/drakbackup_.c:2180
+#, fuzzy
+msgid "Network"
+msgstr "Ñåòêà:"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Available printers"
-msgstr "ДаÑÑ‚ÑƒÐ¿Ð½Ñ‹Ñ Ð¿Ð°ÐºÐµÑ‚Ñ‹"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "NO"
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "ПуÑта"
+#: ../../standalone/drakbackup_.c:2195
+#, fuzzy
+msgid "Tape"
+msgstr "Òûï: "
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Куды вы жадаеце манцiраваць прыладу %s?"
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
msgstr ""
-"\n"
-"Ð’Ñ‹ можаце адключыцца ці пераканфігураваць вашае злучÑнне."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Interface \"%s\""
-msgstr "Сеткавы iнтÑрфейÑ"
+#: ../../standalone/drakbackup_.c:2229
+#, fuzzy
+msgid "Use daemon"
+msgstr "Iìÿ êàðûñòàëüíiêó:"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr ""
+#: ../../standalone/drakbackup_.c:2234
+#, fuzzy
+msgid ""
+"Please choose the time \n"
+"interval between each backup"
+msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "1 button"
-msgstr "2 кнопкi"
+#: ../../standalone/drakbackup_.c:2240
+#, fuzzy
+msgid ""
+"Please choose the\n"
+"media for backup."
+msgstr "Êàëi ëàñêà, àáÿðûöå ìîâó äëÿ êàðûñòàííÿ."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2247
msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
"\n"
-"There are %d unknown printers directly connected to your system"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Test"
-msgstr "ТÑÑÑ‚"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Korea"
-msgstr "ПераноÑ"
-
-#: ../../interactive/stdio.pm:1
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Ваш выбар? (змоўчанне %s) "
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Raw printer"
-msgstr "IÐ¼Ñ Ð´Ñ€ÑƒÐºÐ°Ñ€Ðºi"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Vendor"
-msgstr "Ðдкат"
+#: ../../standalone/drakbackup_.c:2324
+#, fuzzy
+msgid "What"
+msgstr "×àêàéöå"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Interface %s"
-msgstr "Сеткавы iнтÑрфейÑ"
+#: ../../standalone/drakbackup_.c:2329
+#, fuzzy
+msgid "Where"
+msgstr "Ç êîëàì"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "ÐаÑтройка мышы"
+#: ../../standalone/drakbackup_.c:2334
+#, fuzzy
+msgid "When"
+msgstr "Ç êîëàì"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
-msgstr "ÐбÑрыце пункты манцiраваннÑ"
+#: ../../standalone/drakbackup_.c:2339
+#, fuzzy
+msgid "More Options"
+msgstr "Îïöûi ìîäóëþ:"
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr "Так"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+#, fuzzy
+msgid "Drakbackup Configuration"
+msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Yugoslavian (latin)"
-msgstr "ÐзербайджанÑкі (latin)"
+#: ../../standalone/drakbackup_.c:2376
+#, fuzzy
+msgid "Please choose where you want to backup"
+msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "УÑталёўваем"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
+msgstr ""
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan"
+#: ../../standalone/drakbackup_.c:2388
+#, fuzzy
+msgid "across Network"
+msgstr "Ñåòêà:"
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "ÐбÑрыце ÑžÑталÑванне цi абнаўленне"
+#: ../../standalone/drakbackup_.c:2406
+#, fuzzy
+msgid "on Tape Device"
+msgstr "Ïîðò ïðûíòýðó"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "ISDN card"
-msgstr "Ð£Ð½ÑƒÑ‚Ñ€Ð°Ð½Ð°Ñ ISDN карта"
+#: ../../standalone/drakbackup_.c:2449
+#, fuzzy
+msgid "Please choose what you want to backup"
+msgstr "Âûáàð ïàêåòࢠäëÿ ¢ñòàëÿâàííÿ"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
+#: ../../standalone/drakbackup_.c:2450
+#, fuzzy
+msgid "Backup system"
+msgstr "Íàñòð. ôàéëàâûõ ñiñòýìà¢"
+
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2537
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."
+"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2538
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"
+"- System Files:\n"
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Ðддалены Ñервер CUPS"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2540
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
-msgstr ""
-
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "DHCP host name"
-msgstr "IÐ¼Ñ Ð¼Ð°ÑˆÑ‹Ð½Ñ‹"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Калi лаÑка, пазначце поÑлÑдоўны порт, да Ñкога падключана Ð²Ð°ÑˆÐ°Ñ Ð¼Ñ‹Ñˆ."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
+"\n"
+"- User Files:\n"
msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
+#: ../../standalone/drakbackup_.c:2542
+msgid ""
+"\n"
+"- Other Files:\n"
msgstr ""
-#: ../../security/level.pm:1
+#: ../../standalone/drakbackup_.c:2544
#, c-format
-msgid "Poor"
-msgstr "ЗуÑім Ñлабы"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result by mail"
+msgid ""
+"\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
-msgstr "ГрÑнада"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "Ðенадзейна"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "SSH server"
-msgstr "NIS Ñервер:"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s Ñектараў"
-
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "Ðе"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "ГвадÑлупа"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Kannada"
-msgstr "КанадÑкi (КвебÑк)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
+#: ../../standalone/drakbackup_.c:2553
+msgid ""
+"\n"
+"- Burn to CD"
msgstr ""
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Ð’Ñ‹ жадаеце каб BackSpace працаваў у канÑолі Ñк Delete?"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "ЧаÑÑ†Ñ–Ð½Ñ Ð²ÐµÑ€Ñ‚Ñ‹ÐºÐ°Ð»ÑŒÐ½Ð°Ð¹ разгорткi"
-
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Пераход на крок `%s'\n"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Niger"
-msgstr "Ð’Ñ‹Ñокi"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Removing %s ..."
-msgstr "Памеры Ñкрану: %s\n"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "No printer"
-msgstr "IÐ¼Ñ Ð´Ñ€ÑƒÐºÐ°Ñ€Ðºi"
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "alert configuration"
-msgstr "ÐаÑтройка"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "Опцыi прынтÑру NetWare"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "%s BootSplash (%s) preview"
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "February"
-msgstr "Люты"
-
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/drakbackup_.c:2555
#, fuzzy, c-format
-msgid "General"
-msgstr "Ðгульны"
+msgid " on device: %s"
+msgstr "Ìûø: %s\n"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "Дадаць карыÑтальнiка"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "КанфiÐ³ÑƒÑ€Ð°Ñ†Ñ‹Ñ Ñеткi"
-
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:2557
#, c-format
-msgid "April"
-msgstr "КраÑавік"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Deactivate now"
-msgstr "Ðктыўны"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "Mandatory package %s is missing"
+msgid ""
+"\n"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Хвіліпіны"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "Ок"
-
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "drakTermServ Overview"
+msgid "\t\tErase=%s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
-msgstr "IÐ¼Ñ Ñ‡Ð°Ñ€Ð³i друку"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Ð’Ñ‹ жадаеце выкарыÑтоўваць aboot?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belarusian"
-msgstr "БеларуÑкі"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2561
#, c-format
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Move files to the new partition"
-msgstr "Ðе хапае праÑторы Ð´Ð»Ñ ÑтварÑÐ½Ð½Ñ Ð½Ð¾Ð²Ñ‹Ñ… раздзелаў"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2562
#, 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."
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2563
+#, fuzzy
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 ""
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Pitcairn"
-msgstr "ПрынтÑÑ€"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore From Catalog"
-msgstr "Ð”Ð°Ð´Ð°Ñ‚ÐºÐ¾Ð²Ð°Ñ Ñ‚Ð°Ð±Ð»iца раздзелаў"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "IDE"
-msgstr "IDE"
+"- Options:\n"
+msgstr "Îïöûi"
-#: ../../fs.pm:1
-#, c-format
-msgid "mounting partition %s in directory %s failed"
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with graphical menu"
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "Чакаецца"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
-msgstr "Ð’Ñ‹ не можаце адмÑнiць вылучÑнне гÑтага пакету. Ðн ужо ÑžÑталÑваны"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "УÑÑ‘ роўна працÑгваць?"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "ПраглÑд даÑтупных пакетаў"
-
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:2572
#, c-format
msgid ""
"\n"
-" DrakBackup Report \n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "Пазначце параметры"
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr "Ванааці"
+#: ../../standalone/drakbackup_.c:2575
+#, fuzzy
+msgid "\t-Tape \n"
+msgstr "Òûï: "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "New user list:\n"
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../any.pm:1
-#, 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\"."
+#: ../../standalone/drakbackup_.c:2578
+msgid "\t-Network by rsync.\n"
msgstr ""
-"З дапамогай загрузачнага дыÑка вы зможаце загружаць Linux незалежна ад\n"
-" Ñтандартнага загрузчыка. ГÑта можа быць ÑкаÑна, калi вы не жадаеце \n"
-"ÑžÑталёўваць SILO, калi iÐ½ÑˆÐ°Ñ Ð°Ð¿ÐµÑ€Ð°Ñ†Ñ‹Ð¹Ð½Ð°Ñ ÑiÑÑ‚Ñма выдалÑе SILO, цi SILO не \n"
-"можа працаваць у вашай канфiгурацыi. Загрузачны дыÑк такÑама можа быць \n"
-"выкарыÑтан ÑумеÑна з выратавальнай дыÑкетай Mandrake Linux, ÑÐºÐ°Ñ Ð²ÐµÐ»ÑŒÐ¼i \n"
-"палегчыць выратаванне ÑiÑÑ‚Ñмы паÑÐ»Ñ Ð·Ð±Ð¾ÑŽ.\n"
-"\n"
-"Калi жадаеце Ñтварыць загрузачны дыÑк зараз, уÑтаўце дыÑкету Ñž першы\n"
-"дыÑкавод i нацiÑнiце \"Ok\"."
-#: ../../fsedit.pm:1
-#, fuzzy, c-format
-msgid "You can't use an encrypted file system for mount point %s"
+#: ../../standalone/drakbackup_.c:2579
+msgid "\t-Network by webdav.\n"
msgstr ""
-"Вам неабходна задаць правiльны тып файлавай ÑiÑÑ‚Ñмы (ext2, reiserfs)\n"
-"Ð´Ð»Ñ Ð³Ñтай кропкi манцiраваннÑ\n"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password history length to prevent password reuse."
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
-msgstr "ÐорфалÑÐºÑ–Ñ Ð²Ñ‹Ñпы"
-
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Theme installation failed!"
-msgstr "ÐšÐ»Ð°Ñ ÑƒÑталÑваннÑ"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
+#: ../../standalone/drakbackup_.c:2587
+msgid ""
+"List of data to restore:\n"
+"\n"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "ВыкарыÑтоўваць Ð´Ð»Ñ Ð²iртуальнай файлавай ÑiÑÑ‚Ñмы"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
+#: ../../standalone/drakbackup_.c:2754
+msgid ""
+"List of data corrupted:\n"
+"\n"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
-msgstr "Ужыць фільтар"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pppoe"
-msgstr "выкарыÑтоўваць pppoe"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Moving files to the new partition"
-msgstr "Ðе хапае праÑторы Ð´Ð»Ñ ÑтварÑÐ½Ð½Ñ Ð½Ð¾Ð²Ñ‹Ñ… раздзелаў"
+#: ../../standalone/drakbackup_.c:2756
+#, fuzzy
+msgid "Please uncheck or remove it on next time."
+msgstr "Äà ÿêîãà ïàñëÿäî¢íàãà ïîðòó äàëó÷àíû ìàäýì?"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s з ÑкÑперыментальнай падтрымкай 3D-паÑкарÑннÑ"
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
+msgstr ""
-#: ../../help.pm:1 ../../interactive.pm:1
-#, c-format
-msgid "Advanced"
+#: ../../standalone/drakbackup_.c:2787
+msgid " All of your selected data have been "
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "Transfer"
+msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (US)"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Afghanistan"
-msgstr "IранÑкi"
+#: ../../standalone/drakbackup_.c:2906
+#, fuzzy
+msgid " Restore Configuration "
+msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "More Options"
-msgstr "Опцыi модулю:"
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "Бурундзі"
+#: ../../standalone/drakbackup_.c:3019
+#, fuzzy
+msgid "Backup the system files before:"
+msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron - ÑÑ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ð°Ñ UNIX праграма, ÑÐºÐ°Ñ Ð²Ñ‹ÐºÐ¾Ð½Ð²Ð°Ðµ праграмы карыÑтальнiка\n"
-"праз Ð¿Ð°Ð·Ð½Ð°Ñ‡Ð°Ð½Ñ‹Ñ Ð¿ÐµÑ€Ñ‹Ñды чаÑу. Vixie cron дадае рад дапаўненнÑÑž да "
-"Ñтандартнага\n"
-"UNIX cron, уключаючы лепшы ўзровень бÑÑпекi i Ð¼Ð¾Ñ†Ð½Ñ‹Ñ ÐºÐ°Ð½Ñ„iÐ³ÑƒÑ€Ð°Ñ†Ñ‹Ð¹Ð½Ñ‹Ñ Ð¾Ð¿Ñ†Ñ‹i."
+#: ../../standalone/drakbackup_.c:3021
+#, fuzzy
+msgid "please choose the date to restore"
+msgstr "êàëi ëàñêà, ïàçíà÷öå òûï âàøàé ìûøû."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3057
+#, fuzzy
+msgid "Use Hard Disk to backup"
+msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "Чытайце ўважлiва!"
+#: ../../standalone/drakbackup_.c:3060
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Êàë³ ëàñêà, çðàá³öå íåêàëüê³ ðóõࢠìûøøó."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3103
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Ðàçìåðêàâàííå"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3110
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Âûáàð òûïó çëó÷ýííÿ ïðûíòýðó"
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "Порт"
+#: ../../standalone/drakbackup_.c:3134
+#, fuzzy
+msgid "Restore from Hard Disk."
+msgstr "Àäíà¢ëåííå ç äûñêåòû"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3204
+#, fuzzy
+msgid "Select another media to restore from"
+msgstr "êàëi ëàñêà, ïàçíà÷öå òûï âàøàé ìûøû."
-#. -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
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Press enter to boot the selected OS, 'e' to edit the"
+#: ../../standalone/drakbackup_.c:3206
+#, fuzzy
+msgid "Other Media"
+msgstr "²íøûÿ"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3211
+#, fuzzy
+msgid "Restore system"
+msgstr "Óñòàëÿâàííå ñiñòýìû"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "The encryption keys do not match"
-msgstr "Паролi не Ñупадаюць"
+#: ../../standalone/drakbackup_.c:3212
+#, fuzzy
+msgid "Restore Users"
+msgstr "Àäíà¢ëåííå ç ôàéëó"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
+#: ../../standalone/drakbackup_.c:3213
+#, fuzzy
+msgid "Restore Other"
+msgstr "Àäíà¢ëåííå ç ôàéëó"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "USB printer"
-msgstr "IÐ¼Ñ Ð´Ñ€ÑƒÐºÐ°Ñ€Ðºi"
+#: ../../standalone/drakbackup_.c:3215
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "êàëi ëàñêà, ïàçíà÷öå òûï âàøàé ìûøû."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3334
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."
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3344
+#, fuzzy
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
+"Restore Selected\n"
+"Files"
+msgstr "Âûäàëiöü ÷àðãó äðóêó"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "Памеры Ñкрану"
+#: ../../standalone/drakbackup_.c:3361
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Àäíà¢ëåííå ç ôàéëó"
-#: ../../network/drakfirewall.pm:1
+#: ../../standalone/drakbackup_.c:3427
#, 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 "Backup files not found at %s."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../standalone/drakbackup_.c:3440
#, c-format
msgid ""
-"Please enter your username, password and domain name to access this host."
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Remove selected host"
-msgstr "Выдалiць чаргу друку"
-
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Network configuration"
-msgstr "КанфiÐ³ÑƒÑ€Ð°Ñ†Ñ‹Ñ Ñеткi"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "Ðддалены прынтÑÑ€"
-
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "No sharing"
-msgstr "Чакаецца"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule down one level"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3440
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Àäíà¢ëåííå ç äûñêåòû"
-#: ../../common.pm:1
+#: ../../standalone/drakbackup_.c:3442
#, c-format
-msgid "TB"
+msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "FATAL"
-msgstr "FAT"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh the list"
-msgstr "Ðднавіць ÑьпіÑ"
-
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup_.c:3452
#, 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."
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakpxe:1
+#: ../../standalone/drakbackup_.c:3452
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Äàäàòêîâàÿ òàáëiöà ðàçäçåëà¢"
+
+#: ../../standalone/drakbackup_.c:3454
#, 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"
+msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete"
-msgstr "Знiшчыць"
+#: ../../standalone/drakbackup_.c:3474
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Ïåðàêàíôiãóðàâàöü ëàêàëüíóþ ñåòêó"
-#: ../../Xconfig/various.pm:1
+#: ../../standalone/drakbackup_.c:3474
#, 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 "Restore Via Network Protocol: %s"
msgstr ""
-"Можна наÑтроiць ÑiÑÑ‚Ñму Ð´Ð»Ñ Ð°ÑžÑ‚Ð°Ð¼Ð°Ñ‚Ñ‹Ñ‡Ð½Ð°Ð³Ð° запуÑку X паÑÐ»Ñ Ñтарту ÑiÑÑ‚Ñмы.\n"
-"Жадаеце, каб X Ñтартаваў пры Ñ€ÑÑтарце?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
+#: ../../standalone/drakbackup_.c:3475
+#, fuzzy
+msgid "Host Name"
+msgstr "Iìÿ ìàøûíû"
+
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Disconnect %s"
-msgstr "ÐаÑтройка ISDN"
+#: ../../standalone/drakbackup_.c:3483
+#, fuzzy
+msgid "Password required"
+msgstr "Ïàðîëü"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
-msgstr "Стан:"
+#: ../../standalone/drakbackup_.c:3489
+#, fuzzy
+msgid "Username required"
+msgstr "Iìÿ êàðûñòàëüíiêó:"
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
+#: ../../standalone/drakbackup_.c:3492
+#, fuzzy
+msgid "Hostname required"
+msgstr "Iìÿ ìàøûíû"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "SSH Server"
-msgstr "NIS Ñервер:"
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
msgstr ""
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "European protocol"
-msgstr "Еўропа (EDSS1)"
+#: ../../standalone/drakbackup_.c:3513
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Àäíà¢ëåííå ç ôàéëó"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
-msgstr ""
+#: ../../standalone/drakbackup_.c:3760
+#, fuzzy
+msgid "Custom Restore"
+msgstr "Ïà âûáàðó"
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
-#, c-format
-msgid "Error"
-msgstr "Памылка"
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
msgstr ""
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "Australia"
-msgstr "паÑлÑдоўнаÑ"
+#: ../../standalone/drakbackup_.c:3813
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Äàäàòêîâàÿ òàáëiöà ðàçäçåëà¢"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
+#: ../../standalone/drakbackup_.c:3841
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Àäíà¢ëåííå ç ôàéëó"
+
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+msgid "Previous"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, fuzzy, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Канфiгураваць маю карту"
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+#, fuzzy
+msgid "Save"
+msgstr "Ñòàðòàâàå ìåíþ"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Level"
-msgstr "узровень"
+#: ../../standalone/drakbackup_.c:3946
+#, fuzzy
+msgid "Build Backup"
+msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Change the printing system"
-msgstr "ÐаÑтройка Ñеткi"
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+#, fuzzy
+msgid "Restore"
+msgstr "Àäíà¢ëåííå ç ôàéëó"
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4189
msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
msgstr ""
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr "памылка манцiраваннÑ: "
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "ÐаÑтройка Ñлужбаў"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
+#: ../../standalone/drakbackup_.c:4195
+msgid ""
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4209
+#, fuzzy
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 ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Íàñòóïíûÿ ïàêåòû áóäóöü äàäàíû äà ñiñòýìû"
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "Вобраз"
+#: ../../standalone/drakbackup_.c:4232
+#, fuzzy
+msgid "Please select data to restore..."
+msgstr "Êàëi ëàñêà, àáÿðûöå ìîâó äëÿ êàðûñòàííÿ."
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "Remote Administration"
-msgstr "Опцыi аддаленага прынтÑру lpd"
+#: ../../standalone/drakbackup_.c:4267
+#, fuzzy
+msgid "Please select media for backup..."
+msgstr "Êàëi ëàñêà, àáÿðûöå ìîâó äëÿ êàðûñòàííÿ."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-msgstr ""
+#: ../../standalone/drakbackup_.c:4275
+#, fuzzy
+msgid "Please select data to backup..."
+msgstr "Êàëi ëàñêà, àáÿðûöå ìîâó äëÿ êàðûñòàííÿ."
-#: ../../modules.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Selected All"
-msgstr "ÐбÑрыце файл"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Webmin Service"
-msgstr "прылада"
+#: ../../standalone/drakbackup_.c:4382
+#, fuzzy
+msgid "Backup system files"
+msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
-msgstr "прылада"
+#: ../../standalone/drakbackup_.c:4384
+#, fuzzy
+msgid "Backup user files"
+msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Enter the directory to save to:"
-msgstr "Калі лаÑка, зрабіце некалькі рухаў мышшу."
+#: ../../standalone/drakbackup_.c:4386
+#, fuzzy
+msgid "Backup other files"
+msgstr "Äðýííû ôàéë ðýçåðâîâàé êîïii"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Greece"
-msgstr "ГрÑчаÑкi"
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
+msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "УÑÑ‘"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Якую ÑiÑÑ‚Ñму друку Ð’Ñ‹ жадаеце выкарыÑтоўваць?"
+#: ../../standalone/drakbackup_.c:4416
+#, fuzzy
+msgid "Sending files..."
+msgstr "Çàõàâàííå ¢ ôàéë"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
-msgstr "Ліпень"
+#: ../../standalone/drakbackup_.c:4500
+#, fuzzy
+msgid "Backup Now from configuration file"
+msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Prints into %s"
-msgstr "Памылка запiÑу Ñž файл %s"
+#: ../../standalone/drakbackup_.c:4505
+#, fuzzy
+msgid "View Backup Configuration."
+msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "ÐдбылаÑÑ Ð¿Ð°Ð¼Ñ‹Ð»ÐºÐ°"
+#: ../../standalone/drakbackup_.c:4526
+#, fuzzy
+msgid "Wizard Configuration"
+msgstr "Íàñòðîéêà"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"ГÑты пакет павiнен быць абноўлены\n"
-"Ð’Ñ‹ ўпÑўнены, што хочаце адмÑнiць вылучÑнне?"
+#: ../../standalone/drakbackup_.c:4531
+#, fuzzy
+msgid "Advanced Configuration"
+msgstr "Çàêàí÷ýííå íàñòðîéêi"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "ÐрмÑнÑкi (typewriter)"
+#: ../../standalone/drakbackup_.c:4536
+#, fuzzy
+msgid "Backup Now"
+msgstr "Íàñòð. ôàéëàâûõ ñiñòýìà¢"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4624
msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
+"options description:\n"
+"\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
+#: ../../standalone/drakbackup_.c:4654
+msgid ""
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
+#: ../../standalone/drakbackup_.c:4662
+msgid ""
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
+#: ../../standalone/drakbackup_.c:4701
+msgid ""
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
+"\n"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4727
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4729
msgid ""
-"Directory %s already contains data\n"
-"(%s)"
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Printer on NetWare server"
-msgstr "Сервер друку"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Пазначце памер RAM у Mб"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr "ПÑтніца"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Disconnection from Internet complete."
-msgstr "ДалучÑнне да IнтÑрнÑту"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "УлаÑнае iмÑ"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "done"
-msgstr "Зроблена"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Да Ñкога паÑлÑдоўнага порту далучаны мадÑм?"
-
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid "Higher"
-msgstr "Ð’Ñ‹Ñокi"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Выбар раздзелаў Ð´Ð»Ñ Ñ„Ð°Ñ€Ð¼Ð°Ñ‚Ð°Ð²Ð°Ð½Ð½Ñ"
-
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4732
msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
+"Description:\n"
"\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
"\n"
-"You can visit our hardware database at:\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
+"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
+"\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Can't find %s on %s"
-msgstr "Памылка Ð°Ð´ÐºÑ€Ñ‹Ñ†Ñ†Ñ %s Ð´Ð»Ñ Ð·Ð°Ð¿iÑу: %s"
+#: ../../standalone/drakbackup_.c:4769
+msgid ""
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "ЯпонÑкi 106 клавiш"
+#: ../../standalone/drakbackup_.c:4778
+msgid ""
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
+msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
+msgid "Installation of %s failed. The following error occured:"
+msgstr "Óñòàëÿâàííå %s íå àòðûìàëàñÿ. Óçíiêëà íàñòóïíàÿ ïàìûëêà:"
+
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
-msgstr "Буркіна ХваÑо"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "June"
-msgstr "ЧÑрвень"
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Êàíñîëüíûÿ ³íñòðóìåíòàëüíûÿ ñðîäê³"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use scanners on remote computers"
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Delete selected rule"
-msgstr "Выдалiць чаргу друку"
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Äàëó÷ýííå äà Iíòýðíýòó"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Ðддалены Ñервер CUPS"
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "àáàâÿçêîâà"
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "УÑтаўце дыÑкету Ñž дыÑкавод %s"
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Ïîðò ìûøû"
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
-msgstr "Мальды"
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Àääàëåíû ïðûíòýð"
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "кампактна"
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Iìÿ äëÿ ðàçìåðêàâàíàãà ðýñóðñó"
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
-msgstr "1 хвiлiна"
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "type: fat"
-msgstr "Тып: "
+#: ../../standalone/drakbug_.c:60
+#, fuzzy
+msgid "Windows Migration tool"
+msgstr "Íàâóêîâûÿ ïðûêëàäàíí³"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "on channel %d id %d\n"
-msgstr "на шыне %d id %d\n"
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Âûêàðûñòî¢âàöü DiskDrake"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Êàíôiãóðàöûÿ ñåòêi"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Application:"
+msgstr "Ðàçìåðêàâàííå"
+
+#: ../../standalone/drakbug_.c:76
+#, fuzzy
+msgid "Package: "
+msgstr "Ïàêåò"
+
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr "ЛаоÑ"
+#: ../../standalone/drakbug_.c:78
+#, fuzzy
+msgid "Release: "
+msgstr "Êàëi ëàñêà, ïà÷àêàéöå"
-#: ../advertising/04-configuration.pl:1
-#, c-format
+#: ../../standalone/drakbug_.c:93
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!"
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
+#: ../../standalone/drakbug_.c:112
+#, fuzzy
+msgid "Report"
+msgstr "Ïîðò"
+
+#: ../../standalone/drakbug_.c:148
+#, fuzzy
+msgid "Not installed"
+msgstr "Çàêàí÷ýííå ¢ñòàëÿâàííÿ"
+
+#: ../../standalone/drakbug_.c:160
+#, fuzzy
+msgid "Package not installed"
+msgstr "Çàêàí÷ýííå ¢ñòàëÿâàííÿ"
+
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../install_interactive.pm:1
+#: ../../standalone/drakbug_.c:180
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Âû ìîæàöå àáðàöü ³íøûÿ ìîâû, ÿêiÿ áóäóöü äàñòóïíû ïàñëÿ ¢ñòàëÿâàííÿ"
+
+#: ../../standalone/drakconnect_.c:75
#, fuzzy, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr ""
-"Ðе знойдзена раздзелаў FAT Ð´Ð»Ñ Ð·Ð¼ÑÐ½ÐµÐ½Ð½Ñ Ð¿Ð°Ð¼ÐµÑ€Ð°Ñž альбо выкарыÑтаннÑ\n"
-"Ñž ÑкаÑцi вiртуальнай файлавай ÑiÑÑ‚Ñмы (цi недаÑтаткова праÑторы на дыÑку)"
+msgid "Network configuration (%d adapters)"
+msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr ""
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+#, fuzzy
+msgid "Profile: "
+msgstr "ïàìûëêà ìàíöiðàâàííÿ: "
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
+#: ../../standalone/drakconnect_.c:125
+msgid "New profile..."
msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
+#: ../../standalone/drakconnect_.c:131
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "Сервер друку"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Custom configuration"
-msgstr "ÐаÑтройка"
+#: ../../standalone/drakconnect_.c:157
+#, fuzzy
+msgid "Hostname: "
+msgstr "Iìÿ ìàøûíû"
-#: ../../standalone/drakpxe:1
-#, 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"
+#: ../../standalone/drakconnect_.c:164
+msgid "Internet access"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr ""
+#: ../../standalone/drakconnect_.c:177
+#, fuzzy
+msgid "Type:"
+msgstr "Òûï: "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
-msgstr "ВераÑень"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "Øëþç:"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Interface:"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Portugal"
-msgstr "Порт"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "Цi Ñ‘Ñць у Ð²Ð°Ñ iншы?"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Памылка запiÑу Ñž файл %s"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
+msgstr ""
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Калі лаÑка, зрабіце некалькі рухаў мышшу."
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to normal mode"
-msgstr "Звычайны Ñ€Ñжым"
+#: ../../standalone/drakconnect_.c:216
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "Íàñòðîéêà ñëóæáà¢"
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
-msgstr "Ðгульны"
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+#, fuzzy
+msgid "LAN configuration"
+msgstr "Íàñòðîéêà ADSL"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Цылiндры з %d па %d\n"
+#: ../../standalone/drakconnect_.c:228
+#, fuzzy
+msgid "Driver"
+msgstr "ñåðâåð"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
-msgstr ""
+#: ../../standalone/drakconnect_.c:228
+#, fuzzy
+msgid "Interface"
+msgstr "Ñåòêàâû iíòýðôåéñ"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "New profile..."
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
msgstr ""
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
-#, c-format
-msgid "NONE"
-msgstr ""
+#: ../../standalone/drakconnect_.c:228
+#, fuzzy
+msgid "State"
+msgstr "Ñòàðòàâàå ìåíþ"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "Ðа Ñкi дыÑк перанеÑці?"
+#: ../../standalone/drakconnect_.c:240
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "Íàñòðîéêà ëàêàëüíàé ñåòêi"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Display logo on Console"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
msgstr ""
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Windows Domain"
-msgstr "ÐÐ°Ð²ÑƒÐºÐ¾Ð²Ñ‹Ñ Ð¿Ñ€Ñ‹ÐºÐ»Ð°Ð´Ð°Ð½Ð½Ñ–"
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "Ìàéñòàð ñòâàðýííÿ..."
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Saami (norwegian)"
-msgstr "Dvorak (ÐарвежÑкi)"
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
+msgstr ""
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Interface %s (on network %s)"
-msgstr "Сеткавы iнтÑрфейÑ"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+#, fuzzy
+msgid "Connected"
+msgstr "Iìÿ çëó÷ýííÿ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
-msgstr ""
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+#, fuzzy
+msgid "Not connected"
+msgstr "Ðàçìåðêàâàííå"
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
+#: ../../standalone/drakconnect_.c:400
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:427
msgid ""
-"No additional information\n"
-"about this service, sorry."
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr ""
+#: ../../standalone/drakconnect_.c:449
+#, fuzzy
+msgid "LAN Configuration"
+msgstr "Íàñòðîéêà"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Build Single NIC -->"
+msgid "Adapter %s: %s"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "Маршалавы выÑпы"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "ГÑта дакладна?"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Windows (FAT32)"
-msgstr "Выдалiць Windows(TM)"
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr "Пароль Ð´Ð»Ñ root"
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "DVDRAM device"
-msgstr "прылада"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+#, fuzzy
+msgid "activate now"
+msgstr "Àêòû¢íû"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+#, fuzzy
+msgid "deactivate now"
+msgstr "Àêòû¢íû"
+
+#: ../../standalone/drakconnect_.c:499
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:556
msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
msgstr ""
-"ÐÑма раздзела swap.\n"
-"\n"
-"УÑÑ‘ адно працÑгваць?"
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Version: "
-msgstr "ВерÑiÑ: %s\n"
+#: ../../standalone/drakconnect_.c:580
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Iíòýðíýò çëó÷ýííå i êàíôiãóðàöûÿ"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Server IP missing!"
-msgstr "IÐ¼Ñ Ð¿Ñ€Ñ‹Ð½Ñ‚Ñру"
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Iíòýðíýò çëó÷ýííå i êàíôiãóðàöûÿ"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Suriname"
-msgstr "IÐ¼Ñ Ð´Ð»Ñ Ñ€Ð°Ð·Ð¼ÐµÑ€ÐºÐ°Ð²Ð°Ð½Ð°Ð³Ð° Ñ€ÑÑурÑу"
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+#, fuzzy
+msgid "Connection type: "
+msgstr "Iìÿ çëó÷ýííÿ"
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid "Use a floppy"
-msgstr "Захаванне на дыÑкету"
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Øëþç"
+
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
-msgstr "Гібралтар"
+#: ../../standalone/drakfloppy_.c:40
+#, fuzzy
+msgid "Module name"
+msgstr "Îïöûi ìîäóëþ:"
-#: ../../network/modem.pm:1
-#, fuzzy, c-format
-msgid "Do nothing"
-msgstr "Чакаецца"
+#: ../../standalone/drakfloppy_.c:40
+#, fuzzy
+msgid "Size"
+msgstr "Ïàìåð: %s"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Delete Client"
-msgstr "Знiшчыць"
+#: ../../standalone/drakfloppy_.c:45
+#, fuzzy
+msgid "drakfloppy"
+msgstr "Àäíà¢ëåííå ç äûñêåòû"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "Тып файлавай ÑiÑÑ‚Ñмы:"
+#: ../../standalone/drakfloppy_.c:63
+#, fuzzy
+msgid "boot disk creation"
+msgstr "Íàñòðîéêà ïàñëÿ ¢ñòàëÿâàííÿ"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Starting network..."
-msgstr "Якi тып вашага ISDN злучÑннÑ?"
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr "Ïà äàìà¢ëåííþ"
-#: ../../lang.pm:1
+#: ../../standalone/drakfloppy_.c:87
#, c-format
-msgid "Vietnam"
+msgid "DrakFloppy Error: %s"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/_Fields description"
-msgstr "ÐпiÑанне"
-
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr ""
+#: ../../standalone/drakfloppy_.c:98
+#, fuzzy
+msgid "kernel version"
+msgstr "Íàñòðîéêà çëó÷ýííÿ ç Iíòýðíýòàì"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
-msgstr ""
+#: ../../standalone/drakfloppy_.c:104
+#, fuzzy
+msgid "General"
+msgstr "Àãóëüíû"
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Help"
-msgstr "Дапамога"
+#: ../../standalone/drakfloppy_.c:109
+#, fuzzy
+msgid "Expert Area"
+msgstr "Ýêñïåðò"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
+#: ../../standalone/drakfloppy_.c:112
+msgid "mkinitrd optional arguments"
msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Your personal phone number"
-msgstr "Ваш аÑабiÑты Ñ‚Ñлефонны нумар"
+#: ../../standalone/drakfloppy_.c:113
+#, fuzzy
+msgid "Add a module"
+msgstr "Äàäàöü êàðûñòàëüíiêà"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which size do you want to keep for Windows on"
-msgstr "Якую праÑтору захаваць Ð´Ð»Ñ Windows?"
+#: ../../standalone/drakfloppy_.c:133
+#, fuzzy
+msgid "force"
+msgstr "Ïåðàíîñ"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
msgstr ""
-"ТÑÑÑ‚Ð°Ð²Ñ‹Ñ Ñтаронкi адпраўлены дÑману друку.\n"
-"Перад тым, Ñк прынтÑÑ€ запрацуе, можа прайÑцi пÑўны чаÑ.\n"
-"Ðн працуе нармальна?"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Username required"
-msgstr "IÐ¼Ñ ÐºÐ°Ñ€Ñ‹Ñтальнiку:"
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Device"
-msgstr "Прылада:"
+#: ../../standalone/drakfloppy_.c:135
+#, fuzzy
+msgid "omit scsi modules"
+msgstr "Ðýæûì çëó÷ýííÿ"
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Опцыi прынтÑру SMB (Windows 9x/NT)"
+#: ../../standalone/drakfloppy_.c:172
+#, fuzzy
+msgid "Remove a module"
+msgstr "Àäâàðîòíû ïàðàäàê ñòàðîíàê"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "mkinitrd optional arguments"
+msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../advertising/03-software.pl:1
+#: ../../standalone/drakfloppy_.c:341
#, c-format
msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "Protocol for the rest of the world"
-msgstr "ПадключÑнне"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakfloppy_.c:344
#, fuzzy, c-format
-msgid "Print test pages"
-msgstr "Друк Ñ‚ÑÑтавых Ñтаронак"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Activate now"
-msgstr "Ðктыўны"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
-msgstr "64 Мб цi болей"
+msgid "Unable to fork: %s"
+msgstr "Çðàáiöü íåàêòû¢íûì ñåòêàâàå çëó÷ýííå"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakfloppy_.c:349
#, 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."
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Not formatted\n"
-msgstr "Ðе адфарматавана\n"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Periodic Checks"
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "PXE Server Configuration"
-msgstr "ЗаканчÑнне наÑтройкi"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup the system files before:"
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
-
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
msgstr ""
-"ГÑта Ñтандартны узровень бÑÑпекi, Ñкi Ñ€Ñкамендаваны Ð´Ð»Ñ ÐºÐ°Ð¼Ð¿'ÑŽÑ‚Ñру,\n"
-"Ñкi далучаны да Internet у ÑкаÑцi клiенту. Ð”Ð°Ð´Ð°Ð½Ñ‹Ñ Ð½Ð¾Ð²Ñ‹Ñ Ð¿Ñ€Ð°Ð²ÐµÑ€Ðºi\n"
-"бÑÑпекi."
-#: ../../any.pm:1
-#, c-format
-msgid "First floppy drive"
-msgstr "Першы дыÑкавод"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr ""
+#: ../../standalone/drakfont_.c:242
+#, fuzzy
+msgid "no fonts found"
+msgstr "Íå çíàéøëi %s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak"
-msgstr "Dvorak"
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+#, fuzzy
+msgid "done"
+msgstr "Çðîáëåíà"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose the new size"
-msgstr "Выбар новых памераў"
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Media class"
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Faroe Islands"
-msgstr "IÑландÑкi"
+#: ../../standalone/drakfont_.c:359
+#, fuzzy
+msgid "Fonts copy"
+msgstr "Ôàðìàòàâàöü äûñêåòó"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Restart XFS"
-msgstr "абмежаванне"
+#: ../../standalone/drakfont_.c:363
+#, fuzzy
+msgid "True Type fonts installation"
+msgstr "Ïàäðûõòî¢êà ¢ñòàëÿâàíüíÿ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake will not be started now."
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Model name"
-msgstr "Опцыi модулю:"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Albania"
-msgstr "IранÑкi"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr "БрытанÑÐºÐ°Ñ Ñ‚ÑÑ€Ñ‹Ñ‚Ð¾Ñ€Ñ‹Ñ Ð†Ð½Ð´Ñ‹Ð¹Ñкага акіÑна"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Normal Mode"
-msgstr "Звычайны"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer connection type"
-msgstr "СумеÑнае IнтÑрнÑÑ‚-злучÑнне"
-
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
-msgstr "У вашай ÑÑ–ÑÑ‚Ñме нÑма нiводнага Ñеткавага адаптара!"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Network %s"
-msgstr "Сетка:"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connect %s"
-msgstr "IÐ¼Ñ Ð·Ð»ÑƒÑ‡ÑннÑ"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Restarting CUPS..."
-msgstr "абмежаванне"
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "ÐдлучÑнне ад Ñеткi"
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
+msgstr ""
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
msgstr ""
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "ДублÑванне пункту манцiÑ€Ð°Ð²Ð°Ð½Ð½Ñ %s"
+#: ../../standalone/drakfont_.c:459
+#, fuzzy
+msgid "Restart XFS"
+msgstr "àáìåæàâàííå"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
msgstr ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "ÐаÑтройка далучÑÐ½Ð½Ñ Ð´Ð° IнтÑрнÑту"
-
-#: ../../harddrake/v4l.pm:1
-#, fuzzy, c-format
-msgid "Unknown|Generic"
-msgstr "Ðгульны"
+#: ../../standalone/drakfont_.c:528
+#, fuzzy
+msgid "xfs restart"
+msgstr "àáìåæàâàííå"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
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"
+"Before installing any fonts, be sure that you have the right to use and "
+"install them on your system.\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."
+"-You can install the fonts using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-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
-#, c-format
-msgid "Quit"
-msgstr "Выхад"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "Размеркаваць аўтаматычна"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Праверыць на наÑўнаÑць дрÑнных блокаў?"
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Other MultiMedia devices"
-msgstr "ІншыÑ"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "burner"
-msgstr "ПрынтÑÑ€"
+#: ../../standalone/drakfont_.c:621
+#, fuzzy
+msgid "Fonts Importation"
+msgstr "Ôàðìàòàâàííå ðàçäçåëà¢"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Bug Description/System Information"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid " (Default is all users)"
-msgstr "Лакальны прынтÑÑ€"
+#: ../../standalone/drakfont_.c:658
+#, fuzzy
+msgid "Uninstall Fonts"
+msgstr "Âûäàëåííå âûáðàíûõ RPM-ïàêåòࢠç ñiñòýìû"
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "No remote machines"
-msgstr "Ðддалены прынтÑÑ€"
+#: ../../standalone/drakfont_.c:669
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Çàêàí÷ýííå íàñòðîéêi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:677
+#, fuzzy
+msgid "Font List"
+msgstr "Êðîïêà ìàíöiðàâàííÿ"
+
+#: ../../standalone/drakfont_.c:737
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@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"
+" 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"
"\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 ""
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Authentication NIS"
-msgstr "ÐўтÑнтыфiÐºÐ°Ñ†Ñ‹Ñ NIS"
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:862
+#, fuzzy
+msgid "Choose the applications that will support the fonts:"
+msgstr "Âûáàð ðàçäçåëࢠäëÿ ôàðìàòàâàííÿ"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
msgstr ""
-"ÐžÐ¿Ñ†Ñ‹Ñ ``Ðбмежаванне опцыÑÑž каманднага радку'' не выкарыÑтоўваецца без паролÑ"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "СумеÑнае IнтÑрнÑÑ‚-злучÑнне зараз магчыма"
+#: ../../standalone/drakfont_.c:877
+#, fuzzy
+msgid "StarOffice"
+msgstr "äîáðà"
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "Ð—Ð»ÑƒÑ‡Ð°Ð½Ñ‹Ñ ÐрабÑÐºÑ–Ñ Ð­Ð¼Ñ–Ñ€Ð°Ñ‚Ñ‹"
+#: ../../standalone/drakfont_.c:884
+#, fuzzy
+msgid "Abiword"
+msgstr "Àäìÿíiöü"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "IO_0 карты"
+#: ../../standalone/drakfont_.c:891
+#, fuzzy
+msgid "Generic Printers"
+msgstr "Ïðûíòýð"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "Тайланд"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "IO_1 карты"
+#: ../../standalone/drakfont_.c:1005
+#, fuzzy
+msgid "Install List"
+msgstr "Óñòàëÿâàííå ñiñòýìû"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "КазахÑтан"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Write"
-msgstr "ЭкÑперт"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
msgstr ""
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "УÑталÑванне Mandrake Linux %s"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
-msgstr ""
+#: ../../standalone/drakfont_.c:1116
+#, fuzzy
+msgid "Selected All"
+msgstr "Àáÿðûöå ôàéë"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "ТайÑÐºÐ°Ñ ÐºÐ»Ð°Ð²iÑтура"
+#: ../../standalone/drakfont_.c:1120
+#, fuzzy
+msgid "Remove List"
+msgstr "Àääàëåíû ïðûíòýð"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr "Ð’Ñ‹Ñпа Боўвіт"
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+msgid "Initials tests"
+msgstr ""
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "Параметры камутаванага злучÑÐ½Ð½Ñ (Dialup)"
+#: ../../standalone/drakfont_.c:1145
+#, fuzzy
+msgid "Copy fonts on your system"
+msgstr "Ó âàøàé ñ³ñòýìå íÿìà íiâîäíàãà ñåòêàâàãà àäàïòàðà!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-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 ""
-"ЗмÑнiце ваш Cd-Rom!\n"
-"\n"
-"Калi лаÑка, уÑтаўце Cd-Rom, пазначаны \"%s\", у ваш дыÑкавод i нацiÑнiце Oк "
-"паÑлÑ.\n"
-"Калi вы не маеце Ñго, нацiÑнiце ÐдмÑнiць, каб адмÑнiць уÑталÑванне з гÑтага "
-"Cd."
+#: ../../standalone/drakfont_.c:1153
+#, fuzzy
+msgid "Post Install"
+msgstr "Óñòà븢êà"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "ПольÑкi"
+#: ../../standalone/drakfont_.c:1178
+#, fuzzy
+msgid "Remove fonts on your system"
+msgstr "Ó âàøàé ñ³ñòýìå íÿìà íiâîäíàãà ñåòêàâàãà àäàïòàðà!"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Mandrake Online"
-msgstr "ДалучÑнне да IнтÑрнÑту"
+#: ../../standalone/drakfont_.c:1182
+#, fuzzy
+msgid "Post Uninstall"
+msgstr "Çàêàí÷ýííå ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
+msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå"
+
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid ", multi-function device on a parallel port"
-msgstr "IÐ¼Ñ Ð¿Ñ€Ñ‹Ð½Ñ‚Ñру"
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå çàðàç ìàã÷ûìà"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakgw_.c:126
msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"Ði водны ethernet Ñеткавы адаптар у вашай ÑiÑÑ‚Ñме не вызначаны. Калi лаÑка, "
-"ÑкарыÑтайце канфiгурацыйны iнÑтрумÑнт."
-
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "МаÑка Ñеткi"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, fuzzy, c-format
-msgid "No hard drives found"
-msgstr "Лакальны прынтÑÑ€"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "2 кнопкi"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "Якi тып вашага ISDN злучÑннÑ?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "Метка"
+#: ../../standalone/drakgw_.c:130
+#, fuzzy
+msgid "disable"
+msgstr "Òàáëiöà"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "Захаванне на дыÑкету"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Check open ports"
-msgstr "ДублÑванне пункту манцiÑ€Ð°Ð²Ð°Ð½Ð½Ñ %s"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+#, fuzzy
+msgid "reconfigure"
+msgstr "Íàñòðîéêà X Window"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Edit selected printer"
-msgstr "Выдалiць чаргу друку"
+#: ../../standalone/drakgw_.c:133
+#, fuzzy
+msgid "Disabling servers..."
+msgstr "Âûçíà÷ýííå ïðûëàäà¢..."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer auto-detection"
-msgstr "Ðддалены прынтÑÑ€"
+#: ../../standalone/drakgw_.c:142
+#, fuzzy
+msgid "Internet connection sharing is now disabled."
+msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå çàðàç çàáàðîíåíà"
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Ð¯ÐºÐ°Ñ Ñž Ð²Ð°Ñ ISDN карта?"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå çàðàç çàáàðîíåíà"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:150
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."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"NFS - гÑта вÑдомы пратакол Ð´Ð»Ñ Ð´Ð¾Ñтупу да файлаў праз TCP/IP Ñеткi.\n"
-"ГÑÑ‚Ð°Ñ Ñлужба забÑÑпечваецца NFS Ñерверам, Ñкi канфiгурыруеца праз\n"
-"/etc/exports файл."
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Msec"
-msgstr "Порт мышы"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
+#: ../../standalone/drakgw_.c:154
+#, fuzzy
+msgid "enable"
+msgstr "Òàáëiöà"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Ваш выбар? (змоўчанне %s) "
+#: ../../standalone/drakgw_.c:166
+#, fuzzy
+msgid "Internet connection sharing is now enabled."
+msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå çàðàç ìàã÷ûìà"
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakgw_.c:183
+#, fuzzy
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"
+"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"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
"\n"
-"Click on \"%s\" if you wish to select partitions that will be checked for\n"
-"bad blocks on the disk."
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
-"УÑе раздзелы, ÑÐºÑ–Ñ Ð±Ñ‹Ð»Ñ– толькі вызначаны павінны быць\n"
-"адфарматаваны (фарматаваць - значыць Ñтварыць файлаваю ÑÑ–ÑÑ‚Ñму).\n"
-"\n"
-"\n"
-"У той жа чаÑ, вы можаце перафарматаваць ужо Ñ–ÑÐ½ÑƒÑŽÑ‡Ñ‹Ñ Ñ€Ð°Ð·Ð´Ð·ÐµÐ»Ñ‹, каб Ñцёрці\n"
-"Ð´Ð°Ð´Ð·ÐµÐ½Ñ‹Ñ ÑÐºÑ–Ñ Ñны ўтрымліваюць. Калі вы жадаеце зрабіць гÑта, абÑрыце "
-"раздзелы\n"
-"ÑÐºÑ–Ñ Ð¶Ð°Ð´Ð°ÐµÑ†Ðµ адфарматаваць.\n"
-"\n"
-"\n"
-"Заўважце, вы павінны перафарматаваць уÑе ÑÑ‚Ð²Ð¾Ñ€Ð°Ð½Ñ‹Ñ Ñ€Ð°Ð·Ð´Ð·ÐµÐ»Ñ‹. Ð’Ñ‹ павінны\n"
-"перафарматаваць раздзелы, ÑÐºÑ–Ñ ÑžÑ‚Ñ€Ñ‹Ð¼Ð»Ñ–Ð²Ð°ÑŽÑ†ÑŒ аперацыйную ÑÑ–ÑÑ‚Ñму (тыпу \"/"
-"\",\n"
-"\"/usr\" ці \"/var\"), але не павінны перафарматаваць раздзелы, ÑÐºÑ–Ñ "
-"утрымліваюць\n"
-"дадзеныÑ, ÑÐºÑ–Ñ Ð²Ñ‹ жадаеце захаваць (звычайна /home).\n"
-"\n"
+"Âàø êàìï'þòàð ìîæà áûöü ñêàíô³ãóðàâàíû íà ñóìåñíàå âûêàðûñòàííå\n"
+" ²íòýðíýòó (Internet Connection Sharing)?\n"
"\n"
-"Калі лаÑка, будзце ўважлівыÑ, абіраючы раздзелы, бо паÑÐ»Ñ Ñ„Ð°Ñ€Ð¼Ð°Ñ‚Ð°Ð²Ð°Ð½Ð½Ñ\n"
-"уÑе Ð´Ð°Ð´Ð·ÐµÐ½Ñ‹Ñ Ð±ÑƒÐ´ÑƒÑ†ÑŒ незваротна выдаленыÑ.\n"
+"Çà¢âàãà: âàì ïàòðýáíû ñåòêàâû àäàïòàð äëÿ ïàäêëþ÷ýííÿ äà ËÂÑ.\n"
"\n"
-"\n"
-"ÐаціÑніце \"Так\" калі вы Ð³Ð°Ñ‚Ð¾Ð²Ñ‹Ñ Ñ„Ð°Ñ€Ð¼Ð°Ñ‚Ð°Ð²Ð°Ñ†ÑŒ раздзелÑ.\n"
-"\n"
-"\n"
-"ÐаціÑніце \"Ðдмена\" калі жадаеце абраць Ñ–Ð½ÑˆÑ‹Ñ Ñ€Ð°Ð·Ð´Ð·ÐµÐ»Ñ‹ Ð´Ð»Ñ "
-"уÑталÑваннÑвашай\n"
-"новай аперацыйнай ÑÑ–ÑÑ‚Ñмы Mandrake Linux."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "French"
-msgstr "ФранцузÑкi"
+"Âû æàäàåöå óñòàëÿâàöü ñóìåñíû äîñòóï äà Internet?"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakgw_.c:211
#, c-format
-msgid "Czech (QWERTY)"
-msgstr "ЧешÑкi (QWERTY)"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Allow X Window connections"
-msgstr "ЗлучÑнне прынтÑру"
-
-#: ../../standalone/service_harddrake:1
-#, fuzzy, c-format
-msgid "Hardware probing in progress"
-msgstr "ДублÑванне пункту манцiÑ€Ð°Ð²Ð°Ð½Ð½Ñ %s"
+msgid "Interface %s (using module %s)"
+msgstr ""
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
+#: ../../standalone/drakgw_.c:212
#, fuzzy, c-format
-msgid "Net Device"
-msgstr "Сервер друку"
+msgid "Interface %s"
+msgstr "Ñåòêàâû iíòýðôåéñ"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "ÐÐ³ÑƒÐ»ÑŒÐ½Ñ‹Ñ Ð·ÑŒÐ²ÐµÑткі"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr "Ó âàøàé ñ³ñòýìå íÿìà íiâîäíàãà ñåòêàâàãà àäàïòàðà!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:221
msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
msgstr ""
+"Íi âîäíû ethernet ñåòêàâû àäàïòàð ó âàøàé ñiñòýìå íå âûçíà÷àíû. Êàëi ëàñêà, "
+"ñêàðûñòàéöå êàíôiãóðàöûéíû iíñòðóìýíò."
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Next"
-msgstr "Далей ->"
-
-#: ../../bootloader.pm:1
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Куды вы жадаеце ÑžÑталÑваць пачатковы загрузчык?"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
-msgstr "ПуÑрта Рыка"
-
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp)"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr "Ñåòêàâû iíòýðôåéñ"
-#: ../../standalone/drakautoinst:1
+#: ../../standalone/drakgw_.c:228
#, c-format
msgid ""
+"There is only one configured network adapter on your system:\n"
"\n"
-"Welcome.\n"
+"%s\n"
"\n"
-"The parameters of the auto-install are available in the sections on the left"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/drakgw_.c:235
msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
msgstr ""
+"Êàëi ëàñêà, àáÿðûöå ñåòêàâû àäàïòàð, ÿê³ áóäçå âûêàðûñòàíû äëÿ äàëó÷ýííÿ äà "
+"âàøàé ëàêàëüíàé ñåòêi."
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Telnet server"
-msgstr "X Ñервер"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "ЛiтоўÑкi \"нумар радка\" QWERTY"
+#: ../../standalone/drakgw_.c:261
+#, fuzzy
+msgid "Network interface already configured"
+msgstr "Ìàíiòîð ïàêóëü íå íàñòðîåíû"
-#: ../../install_any.pm:1
+#: ../../standalone/drakgw_.c:262
#, c-format
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
+"Warning, the network adapter (%s) is already configured.\n"
"\n"
+"Do you want an automatic re-configuration?\n"
"\n"
-"Do you really want to remove these packages?\n"
+"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
-msgstr "Ðнгулла"
+#: ../../standalone/drakgw_.c:267
+#, fuzzy
+msgid "Automatic reconfiguration"
+msgstr "Íàñòðîéêà ìàäýìó"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "NIS Domain"
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "Ðнтарктыка"
+#: ../../standalone/drakgw_.c:268
+#, fuzzy
+msgid "Show current interface configuration"
+msgstr "Íàñòðîéêà çëó÷ýííÿ ç Iíòýðíýòàì"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:269
+#, fuzzy
+msgid "Current interface configuration"
+msgstr "Íàñòðîéêà çëó÷ýííÿ ç Iíòýðíýòàì"
+
+#: ../../standalone/drakgw_.c:270
#, c-format
msgid ""
+"Current configuration of `%s':\n"
"\n"
-"- User Files:\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Mount options"
-msgstr "Опцыi модулю:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Jamaica"
-msgstr "Ямайка"
-
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:283
msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
+"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"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
+"\n"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Падрыхтоўка ÑžÑталÑваньнÑ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "ЧешÑкi (QWERTZ)"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr ""
+#: ../../standalone/drakgw_.c:290
+#, fuzzy
+msgid "Local Network adress"
+msgstr "ñåòêàâàÿ êàðòà íå çíîéäçåíà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
+#: ../../standalone/drakgw_.c:294
+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/draksplash:1
-#, fuzzy, c-format
-msgid "You must choose an image file first!"
-msgstr "URI прынтÑру"
+#: ../../standalone/drakgw_.c:300
+#, fuzzy
+msgid "(This) DHCP Server IP"
+msgstr "IP ñåðâåðà SMB"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore from Hard Disk."
-msgstr "Ðднаўленне з дыÑкеты"
+#: ../../standalone/drakgw_.c:301
+#, fuzzy
+msgid "The DNS Server IP"
+msgstr "IP ñåðâåðà SMB"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "Дадаць да LVM"
+#: ../../standalone/drakgw_.c:302
+#, fuzzy
+msgid "The internal domain name"
+msgstr "Iìÿ äðóêàðêi"
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "DNS Ñервер"
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Host name or IP."
-msgstr "IÐ¼Ñ Ð¼Ð°ÑˆÑ‹Ð½Ñ‹"
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
+msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Edit"
-msgstr "/_РÑдагаваць"
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid "Clear all"
-msgstr "ÐчыÑцiць уÑÑ‘"
+msgid "Potential LAN address conflict found in current config of %s!\n"
+msgstr "Ïàòýíöûéíû àäðàñ ËÂÑ êàíôëiêòóå ç áÿãó÷àé êàíôiãóðàöûÿé %s!\n"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "No test pages"
-msgstr "Так, надрукаваць абедзве Ñтаронкi Ñ‚ÑкÑту"
+#: ../../standalone/drakgw_.c:335
+#, fuzzy
+msgid "Configuring..."
+msgstr "Íàñòðîéêà IDE"
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr ""
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "Êàíô³ãóðàöûÿ ñöýíàðà¢, óñòàëÿâàííå ÏÇ, çàïóñê ñëóæáà¢..."
-#: ../../standalone/drakconnect:1
+#: ../../standalone/drakgw_.c:372
#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Boot disk creation"
-msgstr "ÐаÑтройка паÑÐ»Ñ ÑžÑталÑваннÑ"
+msgid "Problems installing package %s"
+msgstr "Ïðàáëåìû ç óñòàëÿâàííåì ïàêåòó %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
-msgstr "ПанÑдзелак"
+#: ../../standalone/drakgw_.c:505
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+"Óñå àäêàíô³ãóðàâàíà.\n"
+"Çàðàç âû ìîæàöå ñóìåñíà âûêàðûñòî¢âàöü ïàäêëþ÷ýííå äà Internet\n"
+"ç ³íøûì³ êàìï'þòýðàì³ ¢ âàøàé ËÂÑ, êàðûñòàþ÷ûñÿ à¢òàìàòû÷íûì\n"
+"êàíô³ãóðàâàííåì (DHCP)."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown model"
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "authentication"
-msgstr "ÐўтÑнтыфiкацыÑ"
+#: ../../standalone/drakgw_.c:525
+#, fuzzy
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå çàðàç ìàã÷ûìà"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup Now"
-msgstr "ÐаÑтр. файлавых ÑiÑÑ‚Ñмаў"
+#: ../../standalone/drakgw_.c:531
+#, fuzzy
+msgid "Internet connection sharing configuration"
+msgstr "Iíòýðíýò çëó÷ýííå i êàíôiãóðàöûÿ"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
+#: ../../standalone/drakgw_.c:539
#, fuzzy, c-format
-msgid "/_File"
-msgstr "Файлы:\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr ""
-
-#: ../../services.pm:1
-#, c-format
msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
+msgstr "Ñóìåñíàå Iíòýðíýò-çëó÷ýííå"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Editable"
-msgstr "Таблiца"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "group"
+msgstr "Ïðàöî¢íàÿ ãðóïà"
-#: ../../network/ethernet.pm:1
-#, fuzzy, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
+#: ../../standalone/drakperm_.c:36
+msgid "path"
msgstr ""
-"Якi dhcp клiент вы плануеце выкарыÑтоўваць?\n"
-"Па змоўчанню, гÑта dhcp-client"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr ""
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "permissions"
+msgstr "Ðàçäçåë %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
-msgstr "МайотÑ"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "user"
+msgstr "Iìÿ êàðûñòàëüíiêó:"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "%d KB\n"
-msgstr "Памер: %d Kб\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "СтварÑнне дыÑкеты Ð´Ð»Ñ ÑžÑталÑваннÑ"
+#: ../../standalone/drakperm_.c:44
+#, fuzzy
+msgid "delete"
+msgstr "Çíiø÷ûöü"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Searching for scanners ..."
-msgstr "ДаÑÑ‚ÑƒÐ¿Ð½Ñ‹Ñ Ð¿Ð°ÐºÐµÑ‚Ñ‹"
+#: ../../standalone/drakperm_.c:45
+#, fuzzy
+msgid "edit"
+msgstr "Ñÿðýäíi"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Russia"
-msgstr "РуÑкi"
+#: ../../standalone/drakperm_.c:46
+#, fuzzy
+msgid "Down"
+msgstr "Çðîáëåíà"
-#: ../../steps.pm:1
-#, fuzzy, c-format
-msgid "Partitioning"
-msgstr "ПрынтÑÑ€"
+#: ../../standalone/drakperm_.c:47
+#, fuzzy
+msgid "add a rule"
+msgstr "Äàäàöü êàðûñòàëüíiêà"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
+#: ../../standalone/drakperm_.c:51
+msgid ""
+"Drakperm is used to see files to use in order to fix permissions, owners, "
+"and groups via msec.\n"
+"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create catalog!"
+#: ../../standalone/drakperm_.c:56
+#, fuzzy
+msgid "Add a new rule at the end"
+msgstr "Iìÿ äðóêàðêi"
+
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
msgstr ""
-#: ../advertising/11-mnf.pl:1
-#, 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."
+#: ../../standalone/drakperm_.c:58
+msgid "Up selected rule one level"
msgstr ""
-#: ../../fsedit.pm:1
-#, fuzzy, c-format
-msgid "Not enough free space for auto-allocating"
-msgstr "Ðе хапае праÑторы Ð´Ð»Ñ ÑтварÑÐ½Ð½Ñ Ð½Ð¾Ð²Ñ‹Ñ… раздзелаў"
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "Пароль Ð´Ð»Ñ root"
+#: ../../standalone/drakperm_.c:60
+#, fuzzy
+msgid "Delete selected rule"
+msgstr "Âûäàëiöü ÷àðãó äðóêó"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable IP spoofing protection"
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
-msgstr ""
+#: ../../standalone/drakperm_.c:231
+#, fuzzy
+msgid "Current user"
+msgstr "Ïðûíÿöü êàðûñòàëüíiêà"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Group :"
-msgstr "ÐŸÑ€Ð°Ñ†Ð¾ÑžÐ½Ð°Ñ Ð³Ñ€ÑƒÐ¿Ð°"
+#: ../../standalone/drakperm_.c:236
+#, fuzzy
+msgid "Permissions"
+msgstr "Âåðñiÿ: %s\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "УÑе Ð´Ð°Ð´Ð·ÐµÐ½Ñ‹Ñ Ñž раздзеле %s будуць Ñтрачаны"
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Internet connection configuration"
-msgstr "IнтÑрнÑÑ‚ злучÑнне i канфiгурацыÑ"
+#: ../../standalone/drakperm_.c:238
+#, fuzzy
+msgid "Property"
+msgstr "Ïîðò"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "USB"
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
+#: ../../standalone/drakperm_.c:296
+msgid ""
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_About..."
-msgstr "ÐдмÑнiць"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Bengali"
-msgstr "Таблiца"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
-msgstr "Параметры: "
-
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
+#: ../../standalone/drakperm_.c:297
+msgid "Use owner id for execution"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "Стварыць загр. дыÑк"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "Саламонавы выÑпы"
+#: ../../standalone/drakperm_.c:298
+msgid "Use group id for execution"
+msgstr ""
-#: ../../standalone/mousedrake:1
-#, fuzzy, c-format
-msgid "Please test your mouse:"
-msgstr "Калі лаÑка, зрабіце некалькі рухаў мышшу."
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
+msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(модуль %s)"
+#: ../../standalone/drakperm_.c:304
+#, fuzzy
+msgid "Path selection"
+msgstr "Àñàáiñòû âûáàð ïàêåòà¢"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
-msgstr "ÐŸÑ€Ð°Ñ†Ð¾ÑžÐ½Ð°Ñ Ð³Ñ€ÑƒÐ¿Ð°"
+#: ../../standalone/drakperm_.c:350
+#, fuzzy
+msgid "user :"
+msgstr "Iìÿ êàðûñòàëüíiêó:"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer host name or IP"
-msgstr "IÐ¼Ñ Ð¿Ñ€Ñ‹Ð½Ñ‚Ñру"
+#: ../../standalone/drakperm_.c:352
+#, fuzzy
+msgid "group :"
+msgstr "Ïðàöî¢íàÿ ãðóïà"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "down"
-msgstr "Зроблена"
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Ðàçìåðêàâàííå"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Path or Module"
+#: ../../standalone/draksound_.c:47
+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 ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
+#: ../../standalone/draksound_.c:54
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Show current interface configuration"
-msgstr "ÐаÑтройка злучÑÐ½Ð½Ñ Ð· IнтÑрнÑтам"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Add Printer"
-msgstr "ПрынтÑÑ€"
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:21
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."
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Development"
-msgstr "раÑпрацоўшчык"
+#: ../../standalone/draksplash_.c:67
+#, fuzzy
+msgid "first step creation"
+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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Done"
-msgstr "Зроблена"
+#: ../../standalone/draksplash_.c:70
+#, fuzzy
+msgid "final resolution"
+msgstr "Ïàìåðû ýêðàíó"
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Web Server"
-msgstr "Ñервер"
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+#, fuzzy
+msgid "choose image file"
+msgstr "Àáÿðûöå äçåÿííå"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Chile"
-msgstr "Порт мышы"
+#: ../../standalone/draksplash_.c:72
+#, fuzzy
+msgid "Theme name"
+msgstr "Iìÿ äëÿ ðàçìåðêàâàíàãà ðýñóðñó"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Íàñòðîéêà ñëóæáà¢"
+
+#: ../../standalone/draksplash_.c:90
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."
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:91
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!"
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "(ужо дададзена %s)"
-
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Bootloader installation in progress"
-msgstr "УÑталÑванне загрузчыку"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
+#: ../../standalone/draksplash_.c:95
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Add/Del Users"
-msgstr "Дадаць карыÑтальнiка"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "УÑталёўкі"
+#: ../../standalone/draksplash_.c:113
+#, fuzzy
+msgid "Preview"
+msgstr "ïðûëàäà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr ""
+#: ../../standalone/draksplash_.c:115
+#, fuzzy
+msgid "Save theme"
+msgstr "Óñòàëÿâàííå ñiñòýìû"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr ""
+#: ../../standalone/draksplash_.c:116
+#, fuzzy
+msgid "Choose color"
+msgstr "Àáÿðûöå ìàíiòîð"
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Alternative test page (A4)"
-msgstr "Друк Ñ‚ÑÑтавых Ñтаронак"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, 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 "This theme haven't yet any bootsplash in %s !"
msgstr ""
-"Калi вы маеце ÑžÑе CD дыÑкi Ñа ÑпiÑа нiжÑй, нацiÑнiце Ок.\n"
-"Калi вы не маеце анi воднага з гÑтых CD дыÑкаў, нацiÑнiце ÐдмÑнiць.\n"
-"Калi некаторых з CD дыÑкаў не маеце, адмÑнiце iÑ… выдзÑленне i нацiÑнiце Ок."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP"
+#: ../../standalone/draksplash_.c:428
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Çëó÷ýííå ïðûíòýðó"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup user files"
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
+#: ../../standalone/draksplash_.c:449
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "URI ïðûíòýðó"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "New"
-msgstr "Ðовы"
+#: ../../standalone/draksplash_.c:458
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Âûçíà÷ýííå ïðûëàäà¢..."
-#: ../../help.pm:1
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:46
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"
+"XawTV isn't installed!\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"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
"\n"
-"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\"."
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
-msgstr ""
+#: ../../standalone/drakxtv_.c:63
+#, fuzzy
+msgid "Canada (cable)"
+msgstr "Êàíàäñêi (Êâåáýê)"
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Load from floppy"
-msgstr "Ðднаўленне з дыÑкеты"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "The following printer was auto-detected. "
-msgstr "ÐаÑÑ‚ÑƒÐ¿Ð½Ñ‹Ñ Ð¿Ð°ÐºÐµÑ‚Ñ‹ будуць выдалены"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Uses command %s"
-msgstr "Порт"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "ÐарвежÑкi"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Searching for new scanners ..."
-msgstr "ДаÑÑ‚ÑƒÐ¿Ð½Ñ‹Ñ Ð¿Ð°ÐºÐµÑ‚Ñ‹"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "select path to restore (instead of /)"
-msgstr "калi лаÑка, пазначце тып вашай мышы."
-
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Configure bootsplash picture"
-msgstr "ÐаÑтройка Ñлужбаў"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Georgia"
-msgstr "ÐарвежÑкi"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "Кітай"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "Да Ñкога паÑлÑдоўнага порту далучаны мадÑм?"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Reading data of installed printers..."
-msgstr "ДаÑÑ‚ÑƒÐ¿Ð½Ñ‹Ñ Ð¿Ð°ÐºÐµÑ‚Ñ‹"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "Ñервер"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
+msgstr ""
-#: ../../install_any.pm:1
-#, fuzzy, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "УÑтаўце дыÑкету Ñž дыÑкавод %s"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "East Europe"
+msgstr "Å¢ðîïà"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr ""
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Ôðàíöûÿ"
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Праверка параметраў наÑтройкi"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "Ireland"
+msgstr "Iñëàíäñêi"
-#. -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
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Welcome to GRUB the operating system chooser!"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "West Europe"
+msgstr "Å¢ðîïà"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "Grub"
+#: ../../standalone/drakxtv_.c:66
+#, fuzzy
+msgid "Australia"
+msgstr "ïàñëÿäî¢íàÿ"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
msgstr ""
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
msgstr ""
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Zeroconf Host name"
-msgstr "IÐ¼Ñ Ð¼Ð°ÑˆÑ‹Ð½Ñ‹"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
msgstr ""
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP Ð°Ð´Ñ€Ð°Ñ Ð¿Ð°Ð²iнен быць у фармаце 1.2.3.4"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configure CUPS printing system"
-msgstr "ÐаÑтройка Ñеткi"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "Эквадор"
-
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Add an item"
-msgstr "Дадаць карыÑтальнiка"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
+#: ../../standalone/drakxtv_.c:102
+msgid ""
+"Please,\n"
+"type in your tv norm and country"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "China (Hong Kong)"
-msgstr "СÑн Ган"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, 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."
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Shell"
-msgstr "Ðбалонка:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sao Tome and Principe"
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone/drakxtv_.c:120
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Àòðûìàëàñÿ ïàìûëêà ¢ïàðàäêàâàííÿ ïàêåòà¢:"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "ÐзербайджанÑкі (latin)"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Package not installed"
-msgstr "ЗаканчÑнне ÑžÑталÑваннÑ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "American Samoa"
-msgstr "ÐмÑрыканÑкае Самоа"
-
-#: ../advertising/12-mdkexpert.pl:1
-#, fuzzy, c-format
-msgid "Become a MandrakeExpert"
-msgstr "ÑкÑперт"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Protocol"
-msgstr "Пратакол"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Copy fonts on your system"
-msgstr "У вашай ÑÑ–ÑÑ‚Ñме нÑма нiводнага Ñеткавага адаптара!"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "ÐаÑтройка злучÑÐ½Ð½Ñ Ð· IнтÑрнÑтам"
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakxtv_.c:148
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"
-" DrakBackup Report Details\n"
+"\n"
+"You can visit our hardware database at:\n"
"\n"
"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
+#: ../../standalone/harddrake2_.c:17
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Äðóê òýñòàâûõ ñòàðîíàê"
+
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:21
msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr ""
+#: ../../standalone/harddrake2_.c:22
+#, fuzzy
+msgid "Channel"
+msgstr "Àäìåíà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "Ð’Ñ‹ не можаце вылучаць Ñ– адмÑнÑць вылучÑнне гÑтага пакету"
-
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "Увага!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remote host name"
-msgstr "Ðддалены вузел"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
+#: ../../standalone/harddrake2_.c:23
+msgid ""
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
msgstr ""
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "ВыкарыÑтоўваць незанÑтую праÑтору на раздзеле Windows"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Ðднавіць"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "Italy"
-msgstr "IтальÑнÑкi"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
-msgstr "ÐšÐ°Ð¹Ð¼Ð°Ð½Ð°Ð²Ñ‹Ñ Ð²Ñ‹Ñпы"
-
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "памылка разманцiÑ€Ð°Ð²Ð°Ð½Ð½Ñ %s: %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "IÐ¼Ñ Ð´Ñ€ÑƒÐºÐ°Ñ€Ðºi"
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "disable"
-msgstr "Таблiца"
+#: ../../standalone/harddrake2_.c:26
+#, fuzzy
+msgid "Bus identification"
+msgstr "À¢òýíòûôiêàöûÿ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do it!"
+#: ../../standalone/harddrake2_.c:27
+msgid ""
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Select model manually"
-msgstr "Ðддалены прынтÑÑ€"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Format"
-msgstr "Фарматаванне"
-
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:30
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'"
+"- 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
-#, c-format
-msgid "Various"
-msgstr ""
+#: ../../standalone/harddrake2_.c:33
+#, fuzzy
+msgid "Cache size"
+msgstr "ïàìåð áëîêó"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
msgstr ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Load setting"
-msgstr "фарматаванне"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Жадаеце пратÑÑцiраваць друк?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
msgstr ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Albanian"
-msgstr "IранÑкi"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "ЖамойціÑ"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "Кампактна"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Detected model: %s %s"
-msgstr "ДублÑванне пункту манцiÑ€Ð°Ð²Ð°Ð½Ð½Ñ %s"
+#: ../../standalone/harddrake2_.c:36
+#, fuzzy
+msgid "Cpuid level"
+msgstr "Íàñòðîéêi ¢çðî¢íÿ áÿñïåêi"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
msgstr ""
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Local files"
-msgstr "Лакальны прынтÑÑ€"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "можа быць"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
-msgstr "Панама"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Can't open %s!"
-msgstr "Памылка Ð°Ð´ÐºÑ€Ñ‹Ñ†Ñ†Ñ %s Ð´Ð»Ñ Ð·Ð°Ð¿iÑу: %s"
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:37
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?"
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
msgstr ""
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "Манiтор"
-
-#: ../../printer/printerdrake.pm:1
-#, 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"
+#: ../../standalone/harddrake2_.c:38
+msgid "This field describes the device"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 тыÑÑч колераў (16 бiтаў)"
+#: ../../standalone/harddrake2_.c:39
+#, fuzzy
+msgid "Old device file"
+msgstr "Àáÿðûöå ôàéë"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Remove fonts on your system"
-msgstr "У вашай ÑÑ–ÑÑ‚Ñме нÑма нiводнага Ñеткавага адаптара!"
+#: ../../standalone/harddrake2_.c:41
+#, fuzzy
+msgid "New devfs device"
+msgstr "Ïðûëàäà-øëþç"
-#: ../../standalone/drakgw:1
-#, 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."
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "ЗапуÑк X пры Ñтарце ÑiÑÑ‚Ñмы"
+#: ../../standalone/harddrake2_.c:43
+#, fuzzy
+msgid "Module"
+msgstr "Ïîðò ìûøû"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "ÐедаÑтаткова раздзелаў Ð´Ð»Ñ RAID ÑƒÐ·Ñ€Ð¾ÑžÐ½Ñ %d\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
msgstr ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy failed, file %s not found"
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "local config: true"
-msgstr "ÐаÑтройка X Window"
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../standalone/harddrake2_.c:46
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."
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-"Тут змÑшчаюцца чÑргi друку.\n"
-"Ð’Ñ‹ можаце дадаць ÑшчÑ, альбо змÑнiць iÑнуючыÑ."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connected"
-msgstr "IÐ¼Ñ Ð·Ð»ÑƒÑ‡ÑннÑ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "Малі"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "No details"
-msgstr "ПадрабÑзнаÑцi"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "вельмi добра"
-
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Preview"
-msgstr "прылада"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Remote Control"
-msgstr "Ðддалены прынтÑÑ€"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please select media for backup..."
-msgstr "Калi лаÑка, абÑрыце мову Ð´Ð»Ñ ÐºÐ°Ñ€Ñ‹ÑтаннÑ."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Сервер XFree86: %s\n"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Allow Thin Clients"
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "ГрузiнÑкi (\"РуÑкаÑ\" раÑкладка)"
-
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_Ðалады"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Your printer model"
-msgstr "Ðддалены прынтÑÑ€"
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
+msgstr ""
-#: ../../any.pm:1
-#, 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)."
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/harddrake2_.c:53
msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
+#: ../../standalone/harddrake2_.c:55
+#, fuzzy
+msgid "Floppy format"
+msgstr "Ôàðìàòàâàííå"
+
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
msgstr ""
-#: ../advertising/04-configuration.pl:1
-#, fuzzy, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "ÐаÑтройка злучÑÐ½Ð½Ñ Ð· IнтÑрнÑтам"
+#: ../../standalone/harddrake2_.c:56
+#, fuzzy
+msgid "Level"
+msgstr "óçðîâåíü"
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Save"
-msgstr "Стартавае меню"
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Disk"
-msgstr "Дацкi"
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+#, fuzzy
+msgid "Model"
+msgstr "Ïîðò ìûøû"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Enter a printer device URI"
-msgstr "URI прынтÑру"
+#: ../../standalone/harddrake2_.c:58
+#, fuzzy
+msgid "hard disk model"
+msgstr "Àäðàñû ïàìÿö³ êàðòû (DMA)"
-#: ../advertising/01-thanks.pl:1
-#, 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."
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Israel"
-msgstr "Iўрыт"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "French Guiana"
-msgstr "ФранцузÑкi"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "default:LTR"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Model name"
+msgstr "Îïöûi ìîäóëþ:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
+#: ../../standalone/harddrake2_.c:60
+msgid "Official vendor name of the cpu"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
-msgstr ""
+#: ../../standalone/harddrake2_.c:61
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 êíîïêi"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Transfer printer configuration"
-msgstr "ÐаÑтройка злучÑÐ½Ð½Ñ Ð· IнтÑрнÑтам"
+#: ../../standalone/harddrake2_.c:62
+#, fuzzy
+msgid "Name"
+msgstr "Iìÿ: "
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Ð’Ñ‹ жадаеце, каб гÑтае злучÑнне Ñтартавала пры загрузцы?"
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "network printer port"
+msgstr "Ñåòêàâû ïðûíòýð (TCP/Socket)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of suid root files"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
msgstr ""
-#: ../../any.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:64
+msgid "the number of the processor"
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "%s (Port %s)"
-msgstr "Порт"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use network connection to backup"
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
-
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Kernel version"
-msgstr "ÐаÑтройка злучÑÐ½Ð½Ñ Ð· IнтÑрнÑтам"
+#: ../../standalone/harddrake2_.c:65
+#, fuzzy
+msgid "Model stepping"
+msgstr "ôàðìàòàâàííå"
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "ПрынÑць карыÑтальнiка"
+#: ../../standalone/harddrake2_.c:66
+#, fuzzy
+msgid "The type of bus on which the mouse is connected"
+msgstr "Êàëi ëàñêà, ïàçíà÷öå ïîñëÿäî¢íû ïîðò, äà ÿêîãà ïàäêëþ÷àíà âàøàÿ ìûø."
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, fuzzy, c-format
-msgid "Server"
-msgstr "Ñервер"
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
+#: ../../standalone/harddrake2_.c:68
+msgid "the vendor name of the processor"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid " local network"
-msgstr "ÑÐµÑ‚ÐºÐ°Ð²Ð°Ñ ÐºÐ°Ñ€Ñ‚Ð° не знойдзена"
+#: ../../standalone/harddrake2_.c:82
+#, fuzzy
+msgid "/_Quit"
+msgstr "Âûõàä"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "ДрÑнны выбар, паÑпрабуйце Ñшче\n"
+#: ../../standalone/harddrake2_.c:83
+#, fuzzy
+msgid "/Autodetect _printers"
+msgstr "Àääàëåíû ïðûíòýð"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Search new servers"
-msgstr "DNS Ñервер"
+#: ../../standalone/harddrake2_.c:85
+#, fuzzy
+msgid "/Autodetect _modems"
+msgstr "Àääàëåíû ïðûíòýð"
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
+#: ../../standalone/harddrake2_.c:89
+msgid "/_Help..."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "РÑжым ÑкÑперту"
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
msgstr ""
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "IP Ð°Ð´Ñ€Ð°Ñ Ð¿Ð°Ð²iнен быць у фармаце 1.2.3.4"
-
-#: ../../network/modem.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:93
msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
+"Description of the fields:\n"
+"\n"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Looking at packages already installed..."
-msgstr "Ð’Ñ‹ не можаце адмÑнiць вылучÑнне гÑтага пакету. Ðн ужо ÑžÑталÑваны"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
+#: ../../standalone/harddrake2_.c:96
+msgid ""
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Driver"
-msgstr "Ñервер"
+#: ../../standalone/harddrake2_.c:96
+#, fuzzy
+msgid "Select a device !"
+msgstr "Àáÿðûöå âiäýàêàðòó"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "DVD-R device"
-msgstr "прылада"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer on remote lpd server"
-msgstr "Ðддалены Ñервер lpd"
+#: ../../standalone/harddrake2_.c:102
+#, fuzzy
+msgid "/_About..."
+msgstr "Àäìÿíiöü"
-#: ../../standalone/drakfont:1
-#, 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."
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:105
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."
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
-msgstr "Серада"
+#: ../../standalone/harddrake2_.c:106
+#, fuzzy
+msgid "Author:"
+msgstr "À¢òàïîøóê"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "ÐÑмецкi"
+#: ../../standalone/harddrake2_.c:113
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Äóáëÿâàííå ïóíêòó ìàíöiðàâàííÿ %s"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Austria"
-msgstr "паÑлÑдоўнаÑ"
+#: ../../standalone/harddrake2_.c:119
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Âûçíà÷ýííå æîðñòêàãà äûñêó"
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "ÐÑма мышы"
+#: ../../standalone/harddrake2_.c:126
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Ãë. àïiñàííå àáñòàëÿâàííÿ"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "Калi лаÑка, абÑрыце тып клавiÑтуры."
+#: ../../standalone/harddrake2_.c:129
+#, fuzzy
+msgid "Information"
+msgstr "Iíôàðìàöûÿ"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check permissions of files in the users' home"
-msgstr ""
+#: ../../standalone/harddrake2_.c:131
+#, fuzzy
+msgid "Configure module"
+msgstr "Íàñòðîéêà ìûøû"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
msgstr ""
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "Згарнуць дрÑва"
-
-#: ../../standalone/drakautoinst:1
+#: ../../standalone/harddrake2_.c:143
#, fuzzy, c-format
-msgid "Auto Install Configurator"
-msgstr "ÐаÑтройка паÑÐ»Ñ ÑžÑталÑваннÑ"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "ÐаÑтройка Ñеткi"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "Куды вы жадаеце ÑžÑталÑваць пачатковы загрузчык?"
+msgid "Running \"%s\" ..."
+msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:159
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."
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "tape"
-msgstr "Тып: "
+#: ../../standalone/harddrake2_.c:231
+#, fuzzy
+msgid "secondary"
+msgstr "%d ñåêóíäà¢"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr ""
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect modems"
+msgstr "Àääàëåíû ïðûíòýð"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr ""
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect printers"
+msgstr "Àääàëåíû ïðûíòýð"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (паÑлÑдоўнаÑ, Ñтары тып C7)"
+#: ../../standalone/harddrake2_.c:261
+#, fuzzy
+msgid "/Options"
+msgstr "Îïöûi"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Ðднаўленне з файла %s не атрымалаÑÑ: %s"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "Êàëi ëàñêà, àáÿðûöå òûï êëàâiÿòóðû."
-#: ../../fsedit.pm:1
-#, fuzzy, c-format
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr "Âû æàäàåöå êàá BackSpace ïðàöàâࢠó êàíñîë³ ÿê Delete?"
+
+#: ../../standalone/livedrake_.c:18
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "Çìÿíiöü ïàìåðû ýêðàíó"
+
+#: ../../standalone/livedrake_.c:19
+#, fuzzy
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"
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
-"Таблiца раздзелаў не чытаецца, Ñна занадта ÑапÑÐ°Ð²Ð°Ð½Ð°Ñ Ð´Ð»Ñ Ð¼ÐµÐ½Ñ :(\n"
-"ПаÑпрабую iÑцi далей i буду прапуÑкаць дрÑÐ½Ð½Ñ‹Ñ Ñ€Ð°Ð·Ð´Ð·ÐµÐ»Ñ‹ (УÑе ДÐДЕЗЕÐЫЯ\n"
-"будуць Ñтрачаны!). Iншае рашÑнне не дазволiць DrakX змÑнiць таблiцу "
-"раздзелаў.\n"
-"(памылка ў %s)\n"
+"Çìÿíiöå âàø Cd-Rom!\n"
"\n"
-"Цi жадаеце Ñтрацiць уÑе раздзелы?\n"
+"Êàëi ëàñêà, óñòà¢öå Cd-Rom, ïàçíà÷àíû \"%s\", ó âàø äûñêàâîä i íàöiñíiöå Oê "
+"ïàñëÿ.\n"
+"Êàëi âû íå ìàåöå ÿãî, íàöiñíiöå Àäìÿíiöü, êàá àäìÿíiöü óñòàëÿâàííå ç ãýòàãà "
+"Cd."
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Find Package"
-msgstr "%d пакетаў"
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Íåìàã÷ûìà çàïóñö³öü live upgrade !!!\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "New devfs device"
-msgstr "Прылада-шлюз"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
msgstr ""
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Boot Style Configuration"
-msgstr "ÐаÑтройка мадÑму"
-
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Automatic time synchronization"
-msgstr "ÐаÑтройка мадÑму"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
+#: ../../standalone/logdrake_.c:68
+msgid "Show only for the selected day"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "ÐрмÑнÑкi (фанетычны)"
-
-#: ../../harddrake/v4l.pm:1
-#, fuzzy, c-format
-msgid "Card model:"
-msgstr "ÐдраÑÑ‹ памÑці карты (DMA)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
msgstr ""
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Start Server"
-msgstr "NIS Ñервер:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr "ТуркменіÑтан"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "All remote machines"
-msgstr "Ðддалены прынтÑÑ€"
-
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Install themes"
-msgstr "УÑталÑванне ÑiÑÑ‚Ñмы"
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "Падрыхтоўка ÑžÑталÑваньнÑ"
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Add User -->"
-msgstr "Дадаць карыÑтальнiка"
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "Ðаўру"
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "True Type fonts installation"
-msgstr "Падрыхтоўка ÑžÑталÑваньнÑ"
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "LAN configuration"
-msgstr "ÐаÑтройка ADSL"
+#: ../../standalone/logdrake_.c:145
+#, fuzzy
+msgid "User"
+msgstr "Iìÿ êàðûñòàëüíiêó:"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "hard disk model"
-msgstr "ÐдраÑÑ‹ памÑці карты (DMA)"
+#: ../../standalone/logdrake_.c:146
+#, fuzzy
+msgid "Messages"
+msgstr "Ïðàâåðêà ïàðòî¢"
-#: ../../standalone/drakTermServ:1
-#, 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."
+#: ../../standalone/logdrake_.c:147
+msgid "Syslog"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
+#: ../../standalone/logdrake_.c:151
+msgid "search"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "IранÑкi"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Croatia"
-msgstr "Харвацкi"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "Шлюз:"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Add server"
-msgstr "Дадаць карыÑтальнiка"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remote printer name"
-msgstr "Ðддалены прынтÑÑ€"
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
+msgstr ""
-#: ../advertising/10-security.pl:1
-#, 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."
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "Прылада:"
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
+msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Printerdrake"
-msgstr "ПрынтÑÑ€"
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "ЛіцÑÐ½Ð·Ñ–Ð¹Ð½Ð°Ñ Ð´Ð°Ð¼Ð¾Ð²Ð°"
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
+msgstr ""
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "System Options"
-msgstr "Опцыi модулю:"
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
+msgstr ""
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid "Please choose the desired security level"
-msgstr "Узровень бÑÑпекi"
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+msgid "Mail alert"
+msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/logdrake_.c:245
#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
+msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid ", USB printer"
-msgstr "IÐ¼Ñ Ð´Ñ€ÑƒÐºÐ°Ñ€Ðºi"
+#: ../../standalone/logdrake_.c:392
+#, fuzzy
+msgid "Mail alert configuration"
+msgstr "Íàñòðîéêà ADSL"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/logdrake_.c:393
msgid ""
-"Unable to properly close mkbootdisk:\n"
+"Welcome to the mail configuration utility.\n"
"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Выбар раздзелаў Ð´Ð»Ñ Ñ„Ð°Ñ€Ð¼Ð°Ñ‚Ð°Ð²Ð°Ð½Ð½Ñ"
+#: ../../standalone/logdrake_.c:401
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Iìÿ äàìåíó"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "ÐаÑтройка X Window"
+#: ../../standalone/logdrake_.c:402
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS ñåðâåð:"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "hd"
-msgstr "Чад"
+#: ../../standalone/logdrake_.c:403
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Ñåðâåð äðóêó"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "ТурÑцкi (Ñ‚Ñ€Ð°Ð´Ñ‹Ñ†Ñ‹Ñ‘Ð½Ð°Ñ \"F\" мадÑль)"
+#: ../../standalone/logdrake_.c:404
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS ñåðâåð:"
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "Прыміце вiншаваннi!"
+#: ../../standalone/logdrake_.c:405
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS ñåðâåð:"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
-msgstr ""
+#: ../../standalone/logdrake_.c:406
+#, fuzzy
+msgid "Webmin Service"
+msgstr "ïðûëàäà"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Allow remote root login"
-msgstr "Ðддалены прынтÑÑ€"
+#: ../../standalone/logdrake_.c:407
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Ñåðâåð äðóêó"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Down"
-msgstr "Зроблена"
+#: ../../standalone/logdrake_.c:414
+#, fuzzy
+msgid "service setting"
+msgstr "ïðûëàäà"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
+#: ../../standalone/logdrake_.c:415
+msgid ""
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
-#: ../../network/modem.pm:1
-#, fuzzy, c-format
-msgid "Install rpm"
-msgstr "УÑталёўка"
+#: ../../standalone/logdrake_.c:428
+#, fuzzy
+msgid "load setting"
+msgstr "ôàðìàòàâàííå"
-#: ../../printer/printerdrake.pm:1
-#, 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"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "ЗаÑталоÑÑ Ñ‡Ð°Ñу "
+#: ../../standalone/logdrake_.c:444
+#, fuzzy
+msgid "alert configuration"
+msgstr "Íàñòðîéêà"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "UK клавiÑтура"
+#: ../../standalone/logdrake_.c:445
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Ïàñïðàáóéöå ÿø÷ý ðàç"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "Разманцiраваць"
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
+msgstr ""
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft IntelliMouse"
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "êàëi ëàñêà, ïàçíà÷öå òûï âàøàé ìûøû."
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Uninstall Fonts"
-msgstr "Выдаленне выбраных RPM-пакетаў з ÑiÑÑ‚Ñмы"
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
+msgstr "Ýìóëÿâàöü òðýöþþ êíîïêó?"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "ÐаÑтройкi ÑžÐ·Ñ€Ð¾ÑžÐ½Ñ Ð±ÑÑпекi"
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Êàíôiãóðàöûÿ ñåòêi"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "ÐÑмецкi (нÑма заблакiраваных клавiш)"
+#: ../../standalone/net_monitor_.c:96
+#, fuzzy
+msgid "Profile "
+msgstr "ïàìûëêà ìàíöiðàâàííÿ: "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
+#: ../../standalone/net_monitor_.c:103
+#, fuzzy
+msgid "Sending Speed:"
+msgstr "Çàõàâàííå ¢ ôàéë"
+
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 тыÑÑчы колераў (15 бiтаў)"
+#: ../../standalone/net_monitor_.c:106
+#, fuzzy
+msgid "Connection Time: "
+msgstr "Iìÿ çëó÷ýííÿ"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "ГамбіÑ"
+#: ../../standalone/net_monitor_.c:147
+#, fuzzy
+msgid "Wait please, testing your connection..."
+msgstr "ßêi òûï âàøàãà ISDN çëó÷ýííÿ?"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Mandrake Control Center"
-msgstr "ДалучÑнне да IнтÑрнÑту"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Äàëó÷ýííå äà Iíòýðíýòó"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Reboot"
-msgstr "Root"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Äàëó÷ýííå äà Iíòýðíýòó"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device"
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, 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."
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "\t-Tape \n"
-msgstr "Тып: "
+#: ../../standalone/net_monitor_.c:225
+#, fuzzy
+msgid "Connection complete."
+msgstr "Iìÿ çëó÷ýííÿ"
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../standalone/net_monitor_.c:226
msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Remember this password"
-msgstr "ÐÑма паролю"
+#: ../../standalone/net_monitor_.c:330
+#, fuzzy
+msgid "Color configuration"
+msgstr "Íàñòðîéêà"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
msgstr ""
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "СумеÑнае IнтÑрнÑÑ‚-злучÑнне зараз магчыма"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid " cable"
-msgstr "Таблiца"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
-msgstr "ВыкарыÑтоўваць незанÑтую праÑтору на раздзеле Windows"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "Жадаеце наÑтроiць прынтÑÑ€?"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Сервер XFree86: %s\n"
+#: ../../standalone/net_monitor_.c:400
+#, fuzzy
+msgid "Local measure"
+msgstr "Ëàêàëüíû ïðûíòýð"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Выбар пакетаў Ð´Ð»Ñ ÑžÑталÑваннÑ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
-msgstr "Папуа ÐÐ¾Ð²Ð°Ñ Ð“Ð²Ñ–Ð½ÑÑ"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "IÐ¼Ñ Ð¿Ñ€Ñ‹Ð½Ñ‚Ñру"
-
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Busy files"
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Serbian (cyrillic)"
-msgstr "ÐзербайджанÑкі (кірыліца)"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Калі лаÑка, зрабіце некалькі рухаў мышшу."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../standalone/net_monitor_.c:453
msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "Жадаеце пратÑÑцiраваць друк?"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
+"Warning, another internet connection has been detected, maybe using your "
+"network"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "СтварÑнне загрузачнай дыÑкеты"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "Iìÿ çëó÷ýííÿ"
-#: ../../standalone/net_monitor:1
+#: ../../standalone/net_monitor_.c:459
#, fuzzy, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Якi тып вашага ISDN злучÑннÑ?"
+msgid "Disconnect %s"
+msgstr "Íàñòðîéêà ISDN"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "ÐдлучÑнне ад Ñеткi"
+#: ../../standalone/printerdrake_.c:47
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "×ûòàþ áàçó äàäçåíûõ äðàéâåðî¢ CUPS"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "IÐ¼Ñ (login ID)"
+#: ../../standalone/scannerdrake_.c:39
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Âûçíà÷ýííå ïðûëàäà¢..."
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS - гÑта вÑдомы пратакол Ð´Ð»Ñ Ð´Ð¾Ñтупу да файлаў праз TCP/IP\n"
-"Ñеткi. ГÑÑ‚Ð°Ñ Ñлужба ўплывае на наÑўнаÑць ÑувÑзi памiж NFS файламi."
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
+msgstr "Ïðàâåðêà ïàðòî¢"
-#: ../../standalone/drakconnect:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, c-format
-msgid "DHCP Client"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, 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"
-msgstr ""
+#: ../../standalone/scannerdrake_.c:54
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "Æàäàåöå íàñòðîiöü ïðûíòýð?"
-#: ../../standalone/drakgw:1
+#: ../../standalone/scannerdrake_.c:57
#, c-format
-msgid "dismiss"
+msgid "%s is not in the scanner database, configure it manually?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "ÐдлучÑнне ад Ñеткi"
+#: ../../standalone/scannerdrake_.c:63
+#, fuzzy
+msgid "Select a scanner"
+msgstr "Àáÿðûöå âiäýàêàðòó"
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/scannerdrake_.c:91
#, c-format
-msgid "omit raid modules"
+msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../services.pm:1
+#: ../../standalone/scannerdrake_.c:105
#, c-format
msgid ""
-"lpd is the print daemon required for lpr to work properly. It is\n"
-"basically a server that arbitrates print jobs to printer(s)."
-msgstr ""
-"lpd - гÑты дÑман друку, патрÑбны Ð´Ð»Ñ ÐºÐ°Ñ€Ñктнай працы lpr. ГÑта\n"
-"Ñервер, Ñкi кiруе працай прынтÑру(аў)."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sunday"
-msgstr "ÐÑдзелÑ"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Internet Connection Configuration"
-msgstr "IнтÑрнÑÑ‚ злучÑнне i канфiгурацыÑ"
-
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
-msgstr ""
+#: ../../standalone/scannerdrake_.c:107
+#, fuzzy
+msgid "choose device"
+msgstr "Çàãðóçà÷íàÿ ïðûëàäà"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/scannerdrake_.c:113
#, c-format
msgid ""
-"Once you've selected a device, you'll be able to see the device information "
-"in fields displayed on the right frame (\"Information\")"
-msgstr ""
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule up one level"
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr "У вашай ÑÑ–ÑÑ‚Ñме нÑма нiводнага Ñеткавага адаптара!"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Цi жадаеце пратÑÑцiраваць наÑтройкi?"
-
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "I can't find any room for installing"
-msgstr "Дадаць раздзел немагчыма"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Default printer"
-msgstr "Лакальны прынтÑÑ€"
-
-#: ../../network/netconnect.pm:1
+#: ../../standalone/scannerdrake_.c:118
#, c-format
msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "Modify RAID"
-msgstr "ЗмÑнiць RAID"
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
-#: ../../network/isdn.pm:1
-#, 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."
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
-"Вызначана ISDN PCI карта, але невÑдомы Ñе тып. Калi лаÑка, пазначце PCI "
-"карту на наÑтупным Ñкране."
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr "Дадаць карыÑтальнiка"
+#: ../../standalone/service_harddrake_.c:64
+#, fuzzy
+msgid "Hardware probing in progress"
+msgstr "Äóáëÿâàííå ïóíêòó ìàíöiðàâàííÿ %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-дыÑкi %s\n"
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "Âûáàð ìîâû"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Liberia"
-msgstr "паÑлÑдоўнаÑ"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "Êëàñ óñòàëÿâàííÿ"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
+msgstr "Âûçíà÷ýííå æîðñòêàãà äûñêó"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "Íàñòðîéêà ìûøû"
-#: ../../steps.pm:1
-#, c-format
+#: ../../steps.pm_.c:18
msgid "Choose your keyboard"
-msgstr "Выбар клавiÑтуры"
+msgstr "Âûáàð êëàâiÿòóðû"
-#: ../../steps.pm:1
-#, c-format
-msgid "Format partitions"
-msgstr "Фарматаванне раздзелаў"
+#: ../../steps.pm_.c:19
+#, fuzzy
+msgid "Security"
+msgstr "êó÷àðàâû"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "ÐаÑтройка мадÑму"
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "Íàñòð. ôàéëàâûõ ñiñòýìà¢"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Running \"%s\" ..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+#: ../../steps.pm_.c:21
+msgid "Format partitions"
+msgstr "Ôàðìàòàâàííå ðàçäçåëà¢"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "enable radio support"
-msgstr ""
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "Âûáàð ïàêåòà¢"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "ПрынтÑÑ€"
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "Óñòàëÿâàííå ñiñòýìû"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "IÐ¼Ñ Ñ„Ð°Ð¹Ð»Ñƒ вiртуальнай файлавай ÑiÑÑ‚Ñмы: %s"
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "Äàäàöü êàðûñòàëüíiêà"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Да Ñкога паÑлÑдоўнага порту далучаны мадÑм?"
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "Íàñòðîéêà ñåòêi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not transfer printers"
-msgstr ""
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "Íàñòðîéêà ñëóæáà¢"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Delay before booting the default image"
-msgstr "Затрымка перад загрузкай вобразу па дамаўленню"
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "Óñòàëÿâàííå çàãðóç÷ûêó"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use Hard Disk to backup"
-msgstr "ДрÑнны файл Ñ€Ñзервовай копii"
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "Ñòâàðûöü çàãð. äûñê"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Configure"
-msgstr "ÐаÑтройка X Window"
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "Íàñòðîéêà X Window"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Scannerdrake"
-msgstr "ÐбÑрыце вiдÑакарту"
+#: ../../steps.pm_.c:34
+#, fuzzy
+msgid "Install system updates"
+msgstr "Óñòàëÿâàííå ñiñòýìû"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "Çàêàí÷ýííå ¢ñòàëÿâàííÿ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../network/network.pm:1
-#, 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."
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
msgstr ""
-"УвÑдзiце iÐ¼Ñ Ñваёй машыны (host).\n"
-"IÐ¼Ñ Ð²Ð°ÑˆÐ°Ð¹ машыны павiнна быць зададзена поўнаÑцю,\n"
-"напрыклад ``mybox.mylab.myco.com''.\n"
-"Ð’Ñ‹ можаце такÑама ўвеÑцi IP Ð°Ð´Ñ€Ð°Ñ ÑˆÐ»ÑŽÐ·Ñƒ, калi ён у Ð²Ð°Ñ Ñ‘Ñць."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Select Printer Spooler"
-msgstr "Выбар тыпу злучÑÐ½Ð½Ñ Ð¿Ñ€Ñ‹Ð½Ñ‚Ñру"
-
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Create new theme"
-msgstr "СтварÑнне новага раздзелу"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "No image found"
-msgstr "Лакальны прынтÑÑ€"
-
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
-"ÐÐµÐºÐ°Ñ‚Ð¾Ñ€Ñ‹Ñ Ð²Ð°Ð¶Ð½Ñ‹Ñ Ð¿Ð°ÐºÐµÑ‚Ñ‹ не былi ÑžÑталÑваны карÑктна.\n"
-"Другi ваш cdrom дыÑк цi ваш cdrom маюць дÑфекты.\n"
-"Праверце cdrom на вашым кампутары, выкарыÑтоўваючы\"rpm -qpl Mandrake/RPMS/*."
-"rpm\"\n"
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Network Computer (client)"
+msgstr "Ñåòêàâû ïðûíòýð (socket)"
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Detected model: %s"
-msgstr "ДублÑванне пункту манцiÑ€Ð°Ð²Ð°Ð½Ð½Ñ %s"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
-msgstr ""
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Office"
+msgstr "äîáðà"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Gnome Workstation"
+msgstr "Íàâóêîâûÿ ïðûêëàäàíí³"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr ""
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "²íñòðóìåíòàëüíûÿ ñðîäê³ äëÿ Palm Pilot ³ Visor"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Azerbaijan"
-msgstr "IранÑкi"
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Workstation"
+msgstr "Íàâóêîâûÿ ïðûêëàäàíí³"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
+#: ../../share/compssUsers:999
+msgid "Domain Name and Network Information Server"
msgstr ""
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../share/compssUsers:999
msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
msgstr ""
+"Îô³ñíûÿ ïðàãðàìû: ïðàöýñàðû ñëîâࢠ(kword, abiword), ýëåêòðîíûÿ òàáë³öû, "
+"àãëÿäàëüí³ê³ pdf-ôàéëà¢, ³ ã.ä."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
+#: ../../share/compssUsers:999
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "À¢äû¸ñðîäê³: ïðàéãðàâàëüí³ê³ mp3 ³ midi, ì³êøàðû ³ ã.ä."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Як прынтар далучаны?"
-
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid "Security level"
-msgstr "ÐаÑтройкi ÑžÐ·Ñ€Ð¾ÑžÐ½Ñ Ð±ÑÑпекi"
-
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "final resolution"
-msgstr "Памеры Ñкрану"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, fuzzy, c-format
-msgid "Services"
-msgstr "прылада"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Auto configuration"
-msgstr "ÐаÑтройка"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 Мб"
+#: ../../share/compssUsers:999
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "í³ã³ ³ Howto ïà Linux ³ Free Software"
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Office Workstation"
-msgstr "ÐÐ°Ð²ÑƒÐºÐ¾Ð²Ñ‹Ñ Ð¿Ñ€Ñ‹ÐºÐ»Ð°Ð´Ð°Ð½Ð½Ñ–"
+msgid "KDE Workstation"
+msgstr "Íàâóêîâûÿ ïðûêëàäàíí³"
#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
-"ОфіÑÐ½Ñ‹Ñ Ð¿Ñ€Ð°Ð³Ñ€Ð°Ð¼Ñ‹: працÑÑары Ñловаў (kword, abiword), ÑÐ»ÐµÐºÑ‚Ñ€Ð¾Ð½Ñ‹Ñ Ñ‚Ð°Ð±Ð»Ñ–Ñ†Ñ‹, "
-"аглÑдальнікі pdf-файлаў, Ñ– г.д."
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Game station"
-msgstr "ÐœÑƒÐ»ÑŒÑ‚Ñ‹Ð¼ÐµÐ´Ñ‹Ñ - гук"
+msgid "Multimedia - Video"
+msgstr "Ìóëüòûìåäûÿ - â³äýà"
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "ЗабаўлÑÐ»ÑŒÐ½Ñ‹Ñ Ð¿Ñ€Ð°Ð³Ñ€Ð°Ð¼Ñ‹: аркады, ÑтратÑгіі Ñ– г.д."
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr "Íàáîð ³íñòðóìåíòࢠäëÿ ïîøòû, íàâ³íà¢, web'ó, ïåðàäà÷û ôàéëà¢, ³ chat"
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia station"
-msgstr "ÐœÑƒÐ»ÑŒÑ‚Ñ‹Ð¼ÐµÐ´Ñ‹Ñ - гук"
+msgid "Database"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "РÑдактары Ñ– прайгравальнікі гуку Ñ– відÑа"
+msgid "PostgreSQL or MySQL database server"
+msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Internet station"
-msgstr "ÐаÑтройка злучÑÐ½Ð½Ñ Ð· IнтÑрнÑтам"
+msgid "Tools to ease the configuration of your computer"
+msgstr "Öi æàäàåöå ïðàòýñöiðàâàöü íàñòðîéêi?"
#: ../../share/compssUsers:999
-#, fuzzy
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Прыкладанні Ð´Ð»Ñ Ñ‡Ñ‹Ñ‚Ð°Ð½Ð½Ñ Ñ– адпраўкі пошты Ñ– навінаў (pine, mutt, tin...), "
-"Web аглÑдальнікі"
+msgid "Multimedia - Sound"
+msgstr "Ìóëüòûìåäûÿ - ãóê"
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Network Computer (client)"
-msgstr "Сеткавы прынтÑÑ€ (socket)"
+msgid "Documentation"
+msgstr "À¢òýíòûôiêàöûÿ"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
+msgid "Console Tools"
+msgstr "Êàíñîëüíûÿ ³íñòðóìåíòàëüíûÿ ñðîäê³"
+
+#: ../../share/compssUsers:999
+msgid "Postfix mail server, Inn news server"
msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Configuration"
-msgstr "ÐаÑтройка"
+msgid "Internet station"
+msgstr "Íàñòðîéêà çëó÷ýííÿ ç Iíòýðíýòàì"
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Tools to ease the configuration of your computer"
-msgstr "Цi жадаеце пратÑÑцiраваць наÑтройкi?"
+msgid "Multimedia station"
+msgstr "Ìóëüòûìåäûÿ - ãóê"
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Scientific Workstation"
-msgstr "ÐÐ°Ð²ÑƒÐºÐ¾Ð²Ñ‹Ñ Ð¿Ñ€Ñ‹ÐºÐ»Ð°Ð´Ð°Ð½Ð½Ñ–"
+msgid "Configuration"
+msgstr "Íàñòðîéêà"
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
-msgstr ""
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "Øìàò ãðàô³÷íûõ ìýíàäæýðࢠÏðàöî¢íûõ ñòàëî¢(Gnome, IceWM)"
#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "КанÑÐ¾Ð»ÑŒÐ½Ñ‹Ñ Ñ–Ð½ÑÑ‚Ñ€ÑƒÐ¼ÐµÐ½Ñ‚Ð°Ð»ÑŒÐ½Ñ‹Ñ Ñродкі"
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"The K Desktop Environment - àñíî¢íàå ãðàô³÷íàå àñÿðîäçå ç êàëåêöûÿé "
+"³íñòðóìåíòàëüíûõ ñðîäêà¢"
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "РÑдактары, абалонкі, Ñ‚Ñрміналы"
+msgid "Graphical Environment"
+msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
-msgid "KDE Workstation"
-msgstr "ÐÐ°Ð²ÑƒÐºÐ¾Ð²Ñ‹Ñ Ð¿Ñ€Ñ‹ÐºÐ»Ð°Ð´Ð°Ð½Ð½Ñ–"
+msgid "Development"
+msgstr "ðàñïðàöî¢ø÷ûê"
#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
+msgid "Apache, Pro-ftpd"
msgstr ""
-"The K Desktop Environment - аÑноўнае графічнае аÑÑродзе з калекцыÑй "
-"інÑтрументальных Ñродкаў"
+
+#: ../../share/compssUsers:999
+msgid "Tools to create and burn CD's"
+msgstr "²íñòðóìåíòàëüíûÿ ñðîäê³ ñòâàðýíüíÿ CD"
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Gnome Workstation"
-msgstr "ÐÐ°Ð²ÑƒÐºÐ¾Ð²Ñ‹Ñ Ð¿Ñ€Ñ‹ÐºÐ»Ð°Ð´Ð°Ð½Ð½Ñ–"
+msgid "Office Workstation"
+msgstr "Íàâóêîâûÿ ïðûêëàäàíí³"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
-"Графічнае аÑÑродзе Ñа зручным Ð´Ð·ÐµÐ»Ñ Ð²Ñ‹ÐºÐ°Ñ€Ñ‹ÑÑ‚Ð°Ð½Ð½Ñ Ð½Ð°Ð±Ð¾Ñ€Ð°Ð¼ прыкладаннÑÑž Ñ– "
-"інÑтрументальных Ñродкаў"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Ð†Ð½ÑˆÑ‹Ñ Ð³Ñ€Ð°Ñ„Ñ–Ñ‡Ð½Ñ‹Ñ ÐŸÑ€Ð°Ñ†Ð¾ÑžÐ½Ñ‹Ñ Ñталы"
+msgid "Graphics programs such as The Gimp"
+msgstr "Ãðàô³÷íûÿ ïðàãðàìû òûïó The Gimp"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgid "DNS/NIS "
msgstr ""
#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
-msgstr "БібліÑÑ‚Ñкі Ñ– праграмы Ð´Ð»Ñ Ñ€Ð°Ñпрацоўкі на С Ñ– С++"
+msgstr "Á³áë³ÿòýê³ ³ ïðàãðàìû äëÿ ðàñïðàöî¢ê³ íà Ñ ³ Ñ++"
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Documentation"
-msgstr "ÐўтÑнтыфiкацыÑ"
+msgid "Network Computer server"
+msgstr "Ñåòêàâû ïðûíòýð (socket)"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "нігі і Howto па Linux і Free Software"
+msgid "Mail/Groupware/News"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr ""
+#, fuzzy
+msgid "Game station"
+msgstr "Ìóëüòûìåäûÿ - ãóê"
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr ""
+msgid "Video players and editors"
+msgstr "Ðýäàêòàðû ³ ïðàéãðàâàëüí³ê³ â³äýà"
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr ""
+msgid "Multimedia - Graphics"
+msgstr "Ìóëüòûìåäûÿ - Ãðàô³êà"
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr ""
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Çàáà¢ëÿëüíûÿ ïðàãðàìû: àðêàäû, ñòðàòýã³³ ³ ã.ä."
#: ../../share/compssUsers:999
-msgid "Mail"
-msgstr "Пошта"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"Ïðûêëàäàíí³ äëÿ ÷ûòàííÿ ³ àäïðà¢ê³ ïîøòû ³ íàâ³íࢠ(pine, mutt, tin...), "
+"Web àãëÿäàëüí³ê³"
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Postfix mail server"
-msgstr "Сервер друку"
+msgid "Personal Finance"
+msgstr "Ïåðñàíàëüíûÿ ô³íàíñû"
#: ../../share/compssUsers:999
-msgid "Database"
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
msgstr ""
+"Ãðàô³÷íàå àñÿðîäçå ñà çðó÷íûì äçåëÿ âûêàðûñòàííÿ íàáîðàì ïðûêëàäàííÿ¢ ³ "
+"³íñòðóìåíòàëüíûõ ñðîäêà¢"
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
+msgid "Clients for different protocols including ssh"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
+msgid "LSB"
msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
msgid "Internet gateway"
-msgstr "ÐаÑтройка злучÑÐ½Ð½Ñ Ð· IнтÑрнÑтам"
+msgstr "Íàñòðîéêà çëó÷ýííÿ ç Iíòýðíýòàì"
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr ""
+msgid "Sound and video playing/editing programs"
+msgstr "Ðýäàêòàðû ³ ïðàéãðàâàëüí³ê³ ãóêó ³ â³äýà"
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr ""
+msgid "Other Graphical Desktops"
+msgstr "²íøûÿ ãðàô³÷íûÿ Ïðàöî¢íûÿ ñòàëû"
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer server"
-msgstr "Сеткавы прынтÑÑ€ (socket)"
+msgid "Editors, shells, file tools, terminals"
+msgstr "Ðýäàêòàðû, àáàëîíê³, òýðì³íàëû"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr ""
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "Ïðàãðàìû ê³ðàâàííÿ âàøûì³ ô³íàíñàì³, òûïó gnucash"
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Set of tools to read and send mail and news and to browse the Web"
-msgstr ""
-"Прыкладанні Ð´Ð»Ñ Ñ‡Ñ‹Ñ‚Ð°Ð½Ð½Ñ Ñ– адпраўкі пошты Ñ– навінаў (pine, mutt, tin...), "
-"Web аглÑдальнікі"
+msgid "Personal Information Management"
+msgstr "Ìýíàäæàð àñàá³ñòàé ³íôàðìàöû³"
+#: ../../share/compssUsers:999
+msgid "Multimedia - CD Burning"
+msgstr "Ìóëüòûìåäûÿ - Ñòâàðýííå CD"
+
+#: ../../share/compssUsers:999
#, fuzzy
-#~ msgid "Profile "
-#~ msgstr "памылка манцiраваннÑ: "
+msgid "Scientific Workstation"
+msgstr "Íàâóêîâûÿ ïðûêëàäàíí³"
#, fuzzy
+#~ msgid "cpu number "
+#~ msgstr "Íóìàð òýëåôîíó"
+
#~ msgid ""
-#~ "Welcome to the Internet Connection Sharing utility!\n"
+#~ "You now have the opportunity to download encryption software.\n"
#~ "\n"
-#~ "%s\n"
+#~ "WARNING:\n"
#~ "\n"
-#~ "Click on Configure to launch the setup wizard."
-#~ msgstr "СумеÑнае IнтÑрнÑÑ‚-злучÑнне"
-
-#, fuzzy
-#~ msgid "Internet Connection Sharing configuration"
-#~ msgstr "IнтÑрнÑÑ‚ злучÑнне i канфiгурацыÑ"
-
-#, fuzzy
-#~ msgid "No Internet Connection Sharing has ever been configured."
-#~ msgstr "СумеÑнае IнтÑрнÑÑ‚-злучÑнне зараз магчыма"
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
+#~ "\n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
+#~ "\n"
+#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
+#~ "\n"
+#~ "\n"
+#~ "For any queries relating to these agreement, please contact \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
+#~ msgstr ""
+#~ "Çàðàç âû ìàåöå ìàã÷ûìàñöü çàãðóçiöü ïðàãðàìû äëÿ øûôðàâàííÿ.\n"
+#~ "\n"
+#~ "ÓÂÀÃÀ:\n"
+#~ "\n"
+#~ "Ç-çà àãóëüíûõ àáìåæàâàííÿ¢ íà ïðàãðàìû ãýòêàãà ðîäó i ðîçíûõ ïàíÿööÿ¢\n"
+#~ "ó ðîçíûõ çàêîíàäà¢ñòâàõ, ïðàäàâåö i/àëüáî êàðûñòàëüíiê ãýòûõ ïðàãðàì "
+#~ "ïàâiíåí\n"
+#~ "óïý¢íiööà ¢ òûì, øòî çàêîíû ÿãî/iõ äçÿðæàâࢠäàçâàëÿþöü çàãðóæàöü, "
+#~ "çàõî¢âàöü\n"
+#~ "i/àëüáî âûêàðûñòî¢âàöü ãýòûÿ ïðàãðàìû.\n"
+#~ "\n"
+#~ "Àêðàìÿ òàãî, ïðàäàâåö i/àëüáî êàðûñòàëüíiê ïàâiííû áûöü óïý¢íåíû, øòî íå "
+#~ "ïàðóøàþöü\n"
+#~ "çàêîíࢠñâà¸é êðàiíû. Êàëi ïðàäàâåö i/àëüáî êàðûñòàëüíiê ïàðóøàå ãýòûÿ\n"
+#~ "çàêîíû, ÿêiÿ ìîãóöü áûöü ñêàðûñòàíûÿ ñóïðàöü ÿãî, ¸í/ÿíû íÿñå àäêàçíàñöü\n"
+#~ "\n"
+#~ "Íi ¢ ÿêiì ðàçå íi Mandrakesoft, íi ÿå âûêàíà¢öû i ïàñòà¢ø÷ûêi íå "
+#~ "àäêàçâàþöü\n"
+#~ "çà íåïàñðýäíóþ, íåïðàìóþ àëüáî âûïàäêîâóþ øêîäó (øòî óêëþ÷àå, àëå \n"
+#~ "íå àáìÿæî¢âàåööà ñòðà÷àíûì³ ïðûáûòêàì, ïàðóøýííå áiçíýñó, ñòðàòàé "
+#~ "êàìåðöûéíûõ \n"
+#~ "äàäçåíûõ i iíøûìi ñòðàòàìi, à òàêñàìà ìàã÷ûìûìi ñàíêöûÿìi i øòðàôàìi, "
+#~ "ÿêiÿ \n"
+#~ "íàëåæûöü âûïëàöiöü ïà ïàñòàíîâå ñóäó), ÿêiÿ âûöÿêàþöü ç êàðûñòàííÿ, \n"
+#~ "âàëîäàííÿ, àëüáî ïðîñòà çàãðóçêi ç ñåòêi ïðàãðàì, äà ÿêiõ ïðàäàâåö àëüáî\n"
+#~ "êàðûñòàëüíiê àòðûìàëi äîñòóï ïàñëÿ ïàäïiñàííÿ ãýòàãà ïàãàäíåííÿ.\n"
+#~ "\n"
+#~ "Ãýòàå ïàãàäíåííå ¢ ïåðøóþ ÷àðãó àäêàçâàå çàêîíàäà¢ñòâó Ôðàíöûi, çà "
+#~ "âûêëþ÷ýííåì\n"
+#~ "âûïàäêà¢, ÿêiÿ ñïåöûÿëüíà ðýãëàìåíòóþööà ìÿñöîâûì çàêîíàäà¢ñòâàì ó ìåæàõ\n"
+#~ "ãðàìàäçÿíñêàãà ïðàâà. Àäíàê äàäçåíàå ïàãàäíåííå êàòýãàðû÷íà àáâÿðãàå "
+#~ "ëþáûÿ\n"
+#~ "íåñóàäíîñiíû çàêîíàäà¢ñòâà¢, ïðûíöûïà¢, àëüáî ïðûìÿíåííå àä "
+#~ "ïðîöiëåãëàãà.\n"
+#~ "Òàêiì ÷ûíàì, çàêîíû Ôðàíöûi áóäóöü ïðýâàëiðàâàöü íàä ëþáûìi iíøûìi "
+#~ "ìÿñöîâûìi\n"
+#~ "çàêîíàìi.\n"
+#~ "\n"
+#~ "Ç ëþáûìi ïûòàííÿìi, ÿêiÿ äàòû÷àööà äàäçåííàãà ïàãàäíåííÿ, çâÿðòàéöåñÿ: \n"
+#~ "Mandrakesoft\n"
+#~ "43, rue d'Aboukir\n"
+#~ "75002 Paris\n"
+#~ "FRANCE"
#, fuzzy
-#~ msgid "Hostname configuration"
-#~ msgstr "ÐаÑтройка"
+#~ msgid "Proxy configuration"
+#~ msgstr "Íàñòðîéêà proxy êýøóþ÷ûõ ñåðâåðà¢"
#, fuzzy
-#~ msgid "Hostname"
-#~ msgstr "IÐ¼Ñ Ð¼Ð°ÑˆÑ‹Ð½Ñ‹"
+#~ msgid "port"
+#~ msgstr "Ïîðò"
#, fuzzy
-#~ msgid "Remote Printers"
-#~ msgstr "Ðддалены прынтÑÑ€"
+#~ msgid "Url should begin with 'http:'"
+#~ msgstr "Proxy ïàâiíåí áûöü http://..."
#, fuzzy
-#~ msgid "Level 1"
-#~ msgstr "узровень"
+#~ msgid "login"
+#~ msgstr "À¢òàìàòû÷íû ¢âàõîä ó ñiñòýìó"
#, fuzzy
-#~ msgid "Level 2"
-#~ msgstr "узровень"
+#~ msgid "password"
+#~ msgstr "Ïàðîëü"
#, fuzzy
-#~ msgid "Level 3"
-#~ msgstr "узровень"
+#~ msgid "re-type password"
+#~ msgstr "Íÿìà ïàðîëþ"
#, fuzzy
-#~ msgid "Level 4"
-#~ msgstr "узровень"
+#~ msgid "The passwords don't match. Try again!"
+#~ msgstr "Ïàðîëi íå ñóïàäàþöü"
-#, fuzzy
-#~ msgid "Level 5"
-#~ msgstr "узровень"
+#~ msgid "Can't write file %s"
+#~ msgstr "Íå àòðûìëiâàåööà çàïiñ ó ôàéë %s"
#, fuzzy
-#~ msgid "Insert floppy and press %s"
-#~ msgstr "УÑтаўце дыÑкету Ñž дыÑкавод %s"
-
-#~ msgid "Load"
-#~ msgstr "Загрузіць"
+#~ msgid "Please click on a medium"
+#~ msgstr "Íàö³ñí³öå íà ðàçäçåë"
#, fuzzy
-#~ msgid "Bad Ip"
-#~ msgstr "IO карты"
-
-#~ msgid "Please relog into %s to activate the changes"
-#~ msgstr "Калi лаÑка, перайдзiце Ñž %s Ð´Ð»Ñ Ð°ÐºÑ‚Ñ‹Ð²Ð°Ñ†Ñ‹i змÑненнÑÑž"
-
-#~ msgid "Wizard..."
-#~ msgstr "МайÑтар ÑтварÑннÑ..."
-
-#~ msgid "Name: %s\n"
-#~ msgstr "IмÑ: %s\n"
-
-#~ msgid "Internet connection & configuration"
-#~ msgstr "IнтÑрнÑÑ‚ злучÑнне i канфiгурацыÑ"
-
-#~ msgid ""
-#~ "\n"
-#~ "You can disconnect or reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "Ð’Ñ‹ можаце адключыцца ці пераканфігураваць вашае злучÑнне."
-
-#~ msgid "Set of tools for mail, news, web, file transfer, and chat"
-#~ msgstr ""
-#~ "Ðабор інÑтрументаў Ð´Ð»Ñ Ð¿Ð¾ÑˆÑ‚Ñ‹, навінаў, web'у, перадачы файлаў, Ñ– chat"
-
-#~ msgid "Games"
-#~ msgstr "Забавы"
-
-#~ msgid "Multimedia - Graphics"
-#~ msgstr "ÐœÑƒÐ»ÑŒÑ‚Ñ‹Ð¼ÐµÐ´Ñ‹Ñ - Графіка"
-
-#~ msgid "Multimedia - Sound"
-#~ msgstr "ÐœÑƒÐ»ÑŒÑ‚Ñ‹Ð¼ÐµÐ´Ñ‹Ñ - гук"
-
-#~ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-#~ msgstr "ÐўдыёÑродкі: прайгравальнікі mp3 Ñ– midi, мікшары Ñ– г.д."
-
-#~ msgid "Multimedia - Video"
-#~ msgstr "ÐœÑƒÐ»ÑŒÑ‚Ñ‹Ð¼ÐµÐ´Ñ‹Ñ - відÑа"
-
-#~ msgid "Video players and editors"
-#~ msgstr "РÑдактары Ñ– прайгравальнікі відÑа"
-
-#~ msgid "Multimedia - CD Burning"
-#~ msgstr "ÐœÑƒÐ»ÑŒÑ‚Ñ‹Ð¼ÐµÐ´Ñ‹Ñ - СтварÑнне CD"
-
-#~ msgid "Tools to create and burn CD's"
-#~ msgstr "ІнÑÑ‚Ñ€ÑƒÐ¼ÐµÐ½Ñ‚Ð°Ð»ÑŒÐ½Ñ‹Ñ Ñродкі ÑтварÑÐ½ÑŒÐ½Ñ CD"
-
-#~ msgid "More Graphical Desktops (Gnome, IceWM)"
-#~ msgstr "Шмат графічных мÑнаджÑраў Працоўных Ñталоў(Gnome, IceWM)"
-
-#~ msgid "Personal Information Management"
-#~ msgstr "МÑнаджар аÑабіÑтай інфармацыі"
-
-#~ msgid "Tools for your Palm Pilot or your Visor"
-#~ msgstr "ІнÑÑ‚Ñ€ÑƒÐ¼ÐµÐ½Ñ‚Ð°Ð»ÑŒÐ½Ñ‹Ñ Ñродкі Ð´Ð»Ñ Palm Pilot Ñ– Visor"
-
-#~ msgid "Personal Finance"
-#~ msgstr "ПерÑÐ°Ð½Ð°Ð»ÑŒÐ½Ñ‹Ñ Ñ„Ñ–Ð½Ð°Ð½ÑÑ‹"
-
-#~ msgid "Programs to manage your finances, such as gnucash"
-#~ msgstr "Праграмы ÐºÑ–Ñ€Ð°Ð²Ð°Ð½Ð½Ñ Ð²Ð°ÑˆÑ‹Ð¼Ñ– фінанÑамі, тыпу gnucash"
-
-#~ msgid "no network card found"
-#~ msgstr "ÑÐµÑ‚ÐºÐ°Ð²Ð°Ñ ÐºÐ°Ñ€Ñ‚Ð° не знойдзена"
-
-#~ msgid ""
-#~ "Please enter your host name if you know it.\n"
-#~ "Some DHCP servers require the hostname to work.\n"
-#~ "Your host name should be a fully-qualified host name,\n"
-#~ "such as ``mybox.mylab.myco.com''."
-#~ msgstr ""
-#~ "УвÑдзiце iÐ¼Ñ Ñваёй машыны (host).\n"
-#~ "IÐ¼Ñ Ð²Ð°ÑˆÐ°Ð¹ машыны павiнна быць зададзена поўнаÑцю,\n"
-#~ "напрыклад ``mybox.mylab.myco.com''.\n"
-#~ "Ð’Ñ‹ можаце такÑама ўвеÑцi IP Ð°Ð´Ñ€Ð°Ñ ÑˆÐ»ÑŽÐ·Ñƒ, калi ён у Ð²Ð°Ñ Ñ‘Ñць."
-
-#~ msgid ""
-#~ "The partition you've selected to add as root (/) is physically located "
-#~ "beyond\n"
-#~ "the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
-#~ "If you plan to use the LILO boot manager, be careful to add a /boot "
-#~ "partition"
-#~ msgstr ""
-#~ "Ðбраны Ð´Ð»Ñ Ð´Ð°Ð´Ð°Ñ‚ÐºÑƒ Ñž ÑкаÑцi каранёвага (/) раздзел Ñ„iзiчна знаходзiца "
-#~ "далей\n"
-#~ "1024-га цылiндру жорÑткага дыÑку, а Ñž Ð²Ð°Ñ Ð½Ñма раздзелу /boot .\n"
-#~ "Калi будзе выкарыÑтоўвацца дыÑпечар загрузкi LILO, не запамÑтайце дадаць\n"
-#~ "раздзел /boot"
-
-#~ msgid ""
-#~ "Sorry I won't accept to create /boot so far onto the drive (on a cylinder "
-#~ "> 1024).\n"
-#~ "Either you use LILO and it won't work, or you don't use LILO and you "
-#~ "don't need /boot"
-#~ msgstr ""
-#~ "Прабачце, але нельга Ñтварыць /boot на гÑтым дыÑку (на цылiндры > 1024).\n"
-#~ "Калі вы думаеце выкарыÑтоўваць LILO - тады гÑта не будзе працаваць, LILO "
-#~ "не выкарыÑтоўваеца, тады /boot не патрÑбны."
-
-#~ msgid "Please be patient. This operation can take several minutes."
-#~ msgstr "Калі лаÑка, пачакайце. ГÑÑ‚Ð°Ñ Ð°Ð¿ÐµÑ€Ð°Ñ†Ñ‹Ñ Ð°Ð´Ñ‹Ð¼Ðµ пÑўны чаÑ."
-
-#~ msgid "Test ports"
-#~ msgstr "Праверка партоў"
+#~ msgid "detected on interface %s"
+#~ msgstr "Ñåòêàâû iíòýðôåéñ"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 5720fd877..1ad2b46b9 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -1,1847 +1,1139 @@
-# translation of DrakX-bg.po to Bulgarian
-# Copyright (C) 2000,2003 Free Software Foundation, Inc.
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2000 Free Software Foundation, Inc.
# Copyright (c) 2000 MandrakeSoft
# Bozhan Boiadzhiev <bozhan@plov.omega.bg>, 2000.
-# Borislav Aleksandrov <B.Aleksandrov@cnsys.bg>, 2003.
-# Boyan Ivanov <boyan17@bulgaria.com>, 2003.
-#
#
+#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX-bg\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
-"PO-Revision-Date: 2003-09-12 22:40+0300\n"
-"Last-Translator: Boyan Ivanov <boyan17@bulgaria.com>\n"
-"Language-Team: Bulgarian <dict@linux.zonebg.com>\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"PO-Revision-Date: 2000-02-28 20:56+0200\n"
+"Last-Translator: Bozhan Boiadzhiev <bozhan@plov.omega.bg>\n"
+"Language-Team: Bulgarian\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CP1251\n"
+"Content-Type: text/plain; charset=windows-1251\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.2\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Ïðåòúðñâàíå íà äÿëîâåòå çà íàìèðàíå íà òî÷êè íà ìîíòèðàíå"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 ÊÁ"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr "àêî å âêëþ÷åíî,ïðîâåðÿâà äîáàâÿíåòî/ïðåìàõâàíåòî íà suid root ôàéëîâå"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 ÊÁ"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s %s èçèñêâà èìå íà õîñò,MAC àäðåñ,IP,nbi-image, 0/1 çà THIN_CLIENT, 0/1 çà "
-"Ëîêàëíà íàñòðîéêà...\n"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 ÌÁ"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr "Íàñòðîéêàòà å ïðîìåíåíà - ðàñòàðòèðàíå íà clusternfs/dhcpd"
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 ÌÁ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tÈçòðèâàíå=%s"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 ÌÁ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 ÌÁ"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "network printer port"
-msgstr "ïîðò íà ìðåæîâ ïðèíòåð "
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 ÌÁ"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Ñëîæåòå äèñêåòà:"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 ÌÁ"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr "ÄðàêÒåðìÑúðâ"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 ÌÁ èëè ïîâå÷å"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "Èçáåðåòå X ñúðâúð"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "X ñúðâúð"
+
+#: ../../Xconfig/card.pm_.c:230
+msgid "Multi-head configuration"
+msgstr ""
+
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-"Ðåçåðâíàòà òàáëèöà íà äÿëîâåòå íå å ñúñ ñúùàòà ãîëåìèíà\n"
-"Äà ïðîäúëæà ëè âñå ïàê ?"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Which username"
-msgstr "Êîå ïîòðåáèòåëñêî èìå"
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
+msgstr "Èçáåðåòå êàïàöèòåò íà ïàìåòòà íà ãðàôè÷íàòà ñè êàðòà"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "Êàêúâ òèï èíôîðìàöèÿ èñêàòå äà ïðèáàâèòå"
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "Íàñòðîéêà íà XFree"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Restore partition table"
-msgstr "Âúçñòàíîâè òàáëèöàòà ñ äÿëîâåòå"
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Êîÿ íàñòðîéêà íà XFree èñêàòå äà èìàòå ?"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure hostname..."
-msgstr "Íàñòðîéêà íà èìå íà õîñò..."
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
+msgstr ""
+
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
+msgstr "Èçïîëçâàé ðàçøèðåíèåòî Xinerama"
+
+#: ../../Xconfig/card.pm_.c:389
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Íàñòðîéêà ñàìî íà êàðòà \"%s\" (%s)"
-#: ../../printer/cups.pm:1
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Íà CUPS ñúðâúð \"%s\""
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../install_steps_interactive.pm:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Post-install configuration"
-msgstr "Ñëåä èíñòàëàöèîííà íàñòðîéêà"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s ñ õàðäóåðíî 3D óñêîðåíèå"
-#: ../../standalone/drakperm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-"Ñåãàøíîòî íèâî íà ñèãóðíîñò å %s. \n"
-"Èçáåðåòå ïðàâà çà ðàçãëåæäàíå/ðåäàêòèðàíå"
+"Êàðòàòà âè ìîæå äà èìà ïîääðúæêà íà õàðäóåðíî 3D óñêîðåíèå, íî ñàìî ñ Xfree %"
+"s.\n"
+"Êàðòàòà âè ñå ïîääúðæà îò XFree %s, êîéòî ìîæå äà èìà ïî-äîáðà ïîääðúæêà íà "
+"2D."
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Âìåñòî òîâà èçïîëçâàéòå ``%s''"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "Êàðòàòà âè ìîæå äà èìà ïîääðúæêà íà õàðäóåðíî 3D óñêîðåíèå â XFree %s."
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid "Type"
-msgstr "Âèä"
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s ñ ÅÊÑÏÅÐÈÌÅÍÒÀËÍO õàðäóåðíî 3D óñêîðåíèå"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
+"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."
msgstr ""
-"\n"
-"Ñúùî òàêà, ïðèíòåðè íàñòðîåíè ñ PPD ôàéëîâå ïðåäîñòàâåíè îò ïðîèçâîäèòåëèòå "
-"èì èëè ñ îðèãèíàëíè CUPS äðàéâåðè íå ìîãàò äà áúäàò ïðåõâúðëÿíè."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "Øðè Ëàíêà"
+"Êàðòàòà âè ìîæå äà èìà ïîääðúæêà íà õàðäóåðíî 3D óñêîðåíèå, íî ñàìî ñ XFree %"
+"s,\n"
+"ÎÒÁÅËÅÆÅÒÅ, ×Å ÒÎÂÀ Å ÅÊÑÏÅÐÈÌÅÍÒÀËÍÀ ÏÎÄÄÐÚÆÊÀ È ÌÎÆÅ ÄÀ ÇÀÁÈÅ ÊÎÌÏÞÒÚÐÀ "
+"ÂÈ.\n"
+"Êàðòàòà âè ñå ïîääúðæà îò XFree %s, êîéòî ìîæå äà èìà ïî-äîáðà ïîääðúæêà íà "
+"2D."
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"Ñëåäíèÿ ïðèíòåð\n"
-"\n"
-"%s%s\n"
-"å äèðåêòíî ñâúðçàíè êúì âàøàòà ñèñòåìà"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
-msgstr "Öåíòðàëíîàôðèêàíñêà Ðåïóáëèêà"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "Gateway óñòðîéñòâî"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Advanced preferences"
-msgstr "Äîïúëíèòåëíè îïöèè"
+"Êàðòàòà âè ìîæå äà èìà ïîääðúæêà íà õàðäóåðíî 3D óñêîðåíèå ñ XFree %s.\n"
+"ÎÒÁÅËÅÆÅÒÅ, ×Å ÒÎÂÀ Å ÅÊÑÏÅÐÈÌÅÍÒÀËÍÀ ÏÎÄÄÐÚÆÊÀ È ÊÎÌÏÞÒÚÐÚÒ ÂÈ ÌÎÆÅ ÄÀ "
+"ÇÀÁÈÅ."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Net Method:"
-msgstr "Ìðåæîâ ìåòîä:"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (èíñòàëàöèÿ ãðàôè÷åí äðàéâåð)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Ethernetcard"
-msgstr "Ethernet êàðòà"
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "Êëèåíòñêà"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
-msgstr "Àêî å âêëþ÷åíî, ïðàùà îò÷åò íà òîçè å-àäðåñ,èíà÷å ïðàùà íà root."
+#: ../../Xconfig/main.pm_.c:102
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Ãðàôè÷íà êàðòà"
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr "Ïàðàìåòðè"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "Ìîíèòîð"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "no"
-msgstr "íå"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "Ðàçäåëèòåëíà ñïîñîáíîñò"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Auto-detect"
-msgstr "Àâòîìàòè÷íî çàñè÷àíå"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface:"
-msgstr "Èíòåðôåéñ:"
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Îïöèè"
-#: ../../steps.pm:1
-#, c-format
-msgid "Select installation class"
-msgstr "Èçáîð íà êëàñ èíñòàëàöèÿ"
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "Ok"
-#: ../../network/tools.pm:1
-#, c-format
-msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Ñèñòåìàòà íå èçãëåæäà ñâúðçàíà êúì Èíòåðíåò.\n"
-"Îïèòàéòå ñå äà ïðåíàñòðîèòå âðúçêàòà."
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "Èçõîä"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
+"Keep the changes?\n"
+"The current configuration is:\n"
"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+"%s"
msgstr ""
-"Ñâúðçâà âàøèÿò ïðèíòåð êúì Linux ñúðâúð è ïîçâîëÿâà Windows ìàøèíè äà ñå "
-"ñâúðçâàò êúì íåãî êàòî êëèåíòè.\n"
+"Äà çàïàçÿ ëè ïðîìåíèòå ?\n"
+"Òåêóùàòà íàñòðîéêà å:\n"
"\n"
-"Èñêàòå ëè, äà ïðîäúëæèòå íàñòðîéêèòå çà òîçè ïðèíòåð êàêòî ïðàâåõòå äî ñåãà?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belarus"
-msgstr "Áåëàðóñ"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Ãðåøêà ïðè çàïèñ âúâ ôàéëà %s"
+"%s"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result to syslog"
-msgstr "Èçïðàùà ðåçóëòàòðà îò ïðîâåðêàòà êúì syslog"
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "Èçáåðåòå ìîíèòîð"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
msgstr ""
-"apmd ñå èçïîëçâà çà íàáëþäåíèå íà áàòåðèÿòà è çàïèñâàéêè ñòàòóñà ÷ðåç\n"
-"syslog. Ìîæå ñúùî äà ñå èçïîëçâà çà ñïèðàíå íà ìàøèíàòà, êîãàòî áàòåðèÿòà å "
-"èçòîùåíà."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tape to backup"
-msgstr "Èçïîëçâà ëåíòà çà ðåçåðâíî êîïèå"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Ñëåäíèòå ïàêåòè ùå áúäàò èíñòàëèðàíè"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS configuration"
-msgstr "CUPS êîíôèãóðàöèÿ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total progress"
-msgstr "Îáù ïðîãðåñ"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Íÿìà äîñòàòú÷íî ìÿñòî çà ñúçäàâàíå íà íîâ äÿë"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "Ìåñòåíå"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "Îáù"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "yes"
-msgstr "äà"
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+#, fuzzy
+msgid "Vendor"
+msgstr "Âúðíè"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
-"Welcome to The Network Configuration Wizard.\n"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"We are about to configure your internet/network connection.\n"
-"If you don't want to use the auto detection, deselect the checkbox.\n"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
-"Äîáðå äîøëè ïðè ìàãüîñíèêà çà íàñòðîéêà íà ìðåæà\n"
+"Äâàòà êðèòè÷íè ïàðàìåòúðà ñà âåðòèêàëíàòà ñêîðîñò íà âúçñòàíîâÿâàíå, êîÿòî "
+"îòðàçÿâà ñêîðîñòòà, \n"
+"ñ êîÿòî öåëèÿò åêðàí ñå âúçñòàíîâÿâà, è íàé-âàæíîòî - õîðèçîíòàëíàòà\n"
+"ñèíõðîíèçàöèîííà ñêîðîñò, êîÿòî îòðàçÿâà ñêîðîñòòà, ñ êîÿòî ñå èçïèñâàò "
+"õîðèçîíòàëíèòå ëèíèè.\n"
"\n"
-"Âèå ñòå íà ïúò äà íàñòðîèòå Èíòåðíåò/ìðåæîâàòà ñè âðúçêà.\n"
-"Àêî íå èñêàòå äà èçïîëçâàòå àâòîìàòè÷íî çàñè÷àíå, èçêëþ÷åòå êóòèéêàòà.\n"
+"ÌÍÎÃÎ Å ÂÀÆÍÎ äà èçáåðåòå òàêàâà ñèíõðîíèçàöèîííàòà ñêîðîñò, êîÿòî äà "
+"îòãîâàðÿ íà âúçìîæíîñòèòå íà Âàøèÿ ìîíèòîð - â ïðîòèâåí ñëó÷àé ìîæåòå äà "
+"ïîâðåäèòå ìîíèòîðà ñè.\n"
+" Àêî èìàòå íÿêàêâè ñúìíåíèÿ, èçáåðåòå êîíñåðâàòèâíà íàñòðîéêà."
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ""
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "Õîðèçîíòàëíà ñêîðîñò íà âúçñòàíîâÿâàíå"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "Ëèâàí"
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "Âåðòèêàëíà ñêîðîñò íà âúçñòàíîâÿâàíå"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 öâÿòà (8 áèòà)"
-#: ../../services.pm:1
-#, c-format
-msgid "Stop"
-msgstr "Ñòîï"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 õèëÿäè öâÿòà (15 áèòà)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Edit selected host"
-msgstr "Íàñòðîéêà íà èçáðàíèÿ õîñò"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 õèëÿäè öâÿòà (16 áèòà)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD device defined!"
-msgstr "Íå å äåôèíèðàíî CD óñòðîéñòâî!"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 ìèëèîíà öâÿòà (24 áèòà)"
-#: ../../network/shorewall.pm:1
-#, c-format
-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 ""
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 ìèëèàðäà öâÿòà (32 áèòà)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tÈçïîëçâà .backupignore ôàéëîâå\n"
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "Ðàçäåëèòåëíà ñïîñîáíîñò"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "Áúëãàðñêà (ôîíåòè÷åí)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "Èçáåðåòå ðàçäåëèòåëíà ñïîñîáíîñò è äúëáî÷èíà íà öâåòîâåòå"
-#: ../../standalone/drakpxe:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "The DHCP start ip"
-msgstr ""
+msgid "Graphics card: %s"
+msgstr "Ãðàôè÷íà êàðòà: %s"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "256 kB"
-msgstr "256 ÊÁ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr "Îòêàç"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Don't rewind tape after backup"
-msgstr "Íå ïðåâúðòà ëåíòàòà ñëåä àðõèâèðàíå"
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "Ïðîâåðêà íà íàñòðîéêàòà"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "Îïöèè íà çàðåæäàùàòà ïðîãðàìà"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "Èñêàòå ëè äà òåñòâàòå íàñòðîéêèòå?"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+#: ../../Xconfig/test.pm_.c:30
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""
+"Âíèìàíèå: òåñòâàíåòî íà òàçè ãðàôè÷íà êàðòà ìîæå äà \"çàìðàçè\" êîìïþòúðà âè"
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Tape"
-msgstr "Ëåíòà"
-
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid "Malaysia"
-msgstr "Ìàëàéçèÿ"
+msgid "Keyboard layout: %s\n"
+msgstr "Òèï êëàâèàòóðà: %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid "Scanning network..."
-msgstr "Ñòàðòèðàíå ìðåæàòà...."
+msgid "Mouse type: %s\n"
+msgstr "Òèï ìèøêà: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
+msgid "Mouse device: %s\n"
+msgstr "Óñòðîéñòâî íà ìèøêàòà: %s\n"
-#: ../../standalone/drakedm:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr "Ïðîìÿíàòà å íàïðàâåíà.Æåëàåòå ëè äà ðåñòàðòèðàòå dm óñëóãàòà?"
+msgid "Monitor: %s\n"
+msgstr "Ìîíèòîð: %s\n"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Swiss (French layout)"
-msgstr "Øâåéöàðñêà (ôðåíñêè íàðåäáà)"
+msgid "Monitor HorizSync: %s\n"
+msgstr "Õîðèçîíòàëíà ñèíõðîíèçàöèÿ íà ìîíèòîðà: %s\n"
-#: ../../raid.pm:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid ïðîïàäíà (ìîæå áè raidtools ëèïñâàò ?)"
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Âåðòèêàëíî îïðåñíÿâàíå íà ìîíèòîðà: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid "August"
-msgstr "Àâãóñò"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "FTP server"
-msgstr "NTP ñúðâúð"
+msgid "Graphics card: %s\n"
+msgstr "Ãðàôè÷íà êàðòà: %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid "Webcam"
-msgstr ""
+msgid "Graphics memory: %s kB\n"
+msgstr "Ãðàôè÷íà ïàìåò: %s kB\n"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "Ðàçìåð íà âòîðè÷åí êåø íà cpu"
+msgid "Color depth: %s\n"
+msgstr "Äúëáî÷èíà íà öâåòà: %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid "Soundcard"
-msgstr "Çâóêîâà êàðòà"
+msgid "Resolution: %s\n"
+msgstr "Ðàçäåëèòåëíà ñïîñîáíîñò: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Month"
-msgstr "Ìåñåö"
+msgid "XFree86 server: %s\n"
+msgstr "XFree86 ñúðâúð: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Search for files to restore"
-msgstr "Òúðñåíå íà ôàéëîâå çà âúçñòàíîâÿâàíå"
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 äðàéâåð: %s\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Luxembourg"
-msgstr "Ëþêñåìáóðã"
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "X ïðè ñòàðòèðàíå íà ñèñòåìàòà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:62
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
-"Çà äà îòïå÷àòàòå ôàéë îò êîìàíäíèÿ ðåä (òåðìèíàëåí ïðîçîðåö) èçïîëçâàéòå "
-"êîìàíäàòà \"%s <file>\".\n"
+"Kîìïþòúðà âè ìîæå àâòîìàòè÷íî, äà âëåçå â X ïðè ñòàðòèðàíå.\n"
+"Èñêàòå ëè X äà ñå ñòàðòèðà, êîãàòî ðåñòàðòèðàòå ñèñòåìàòà?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Level %s\n"
-msgstr "Íèâî %s\n"
+#: ../../Xconfig/various.pm_.c:73
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac (phonetic)"
-msgstr "Ñèðèéñêè (ôîíåòè÷åí)"
+#: ../../Xconfig/various.pm_.c:85
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Êàêúâ å òèïúò íà ISDN âðúçêàòà ?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Iran"
-msgstr "Èðàí"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
+msgstr "Ïúðâè ñåêòîð îò ñòàðòèðàùèÿ ñå äÿë"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus"
-msgstr "Øèíà"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
+msgstr "Ïúðâèÿò ñåêòîð îò äðàéâà (MBR)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Iraq"
-msgstr "Èðàê"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "SILO èíñòàëàöèÿ"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "connecting to %s ..."
-msgstr "Èçïúëíÿâà \"%s\" ..."
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
+msgstr "Êúäå èñêàòå äà èíñòàëèðàòå bootloader-à?"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Âúçìîæåí êîíôëèêò ñ àäðåñèòå â LAN ñ íàñòðîéêàòà íà %s!\n"
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "LILO/grub èíñòàëàöèÿ"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring..."
-msgstr "Íàñòðîéêà ..."
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
+msgstr "SILO"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
-msgstr ""
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
+msgstr "LILO ñ òåêñòîâî ìåíþ"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Password (again)"
-msgstr "Ïàðîëà (îòíîâî)"
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
+msgstr "LILO ñ ãðàôè÷íî ìåíþ"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search installed fonts"
-msgstr ""
+#: ../../any.pm_.c:142
+msgid "Grub"
+msgstr "Grub"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default desktop"
-msgstr "Ïîäðàçáèðàùî ñå ðàáîòíî ìÿñòî"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "Ñòàðòèðàíå îò DOS/Windows (loadlin)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
-msgstr ""
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr "Âåíåöóåëà"
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "Îïöèè íà çàðåæäàùàòà ïðîãðàìà"
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "IP address"
-msgstr "IP àäðåñ"
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
+msgstr "Èçïîëçâàíà çàðåæäàùàòà ïðîãðàìà"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "Èçáåðåòå ãîëåìèíèòå"
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "Bootloader èíñòàëàöèÿ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "Ñòàðòèðàùî óñòðîéñòâî"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
-msgstr ""
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "Êîìïàêòåí"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"Âàøèÿò ìîäåì íå ñå ïîääúðæà îò ñèñòåìàòà.\n"
-"Ïîãëåäíåòå â http://www.linmodems.org"
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "êîìïàêòåí"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose another partition"
-msgstr "Èçáåðåòå äðóã äÿë"
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "Âèäåî ðåæèì"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Current user"
-msgstr "Òåêóù ïîòðåáèòåë"
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
+msgstr "Çàáàâÿíå ïðåäè ñòàðòèðàíåòî íà default äÿëà"
+
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
+msgid "Password"
+msgstr "Ïàðîëà"
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
-msgstr "Ïîòðåáèòåëñêî èìå"
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "Ïàðîëà (îòíîâî)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Ëÿâ \"Windows\" êëàâèø"
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "Îãðàíè÷è îïöèèòå, çàäàâàíè îò êîìàíäíèÿ ðåä"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "Ãèÿíà"
+#: ../../any.pm_.c:171
+msgid "restrict"
+msgstr "îãðàíè÷è"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Êîíôèãóðèðàíå íà dhcpd ñúðâúð"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "Ïî÷èñòâàíå íà /tmp ïðè âñÿêî çàðåæäàíå"
-#: ../../standalone/drakperm:1
+#: ../../any.pm_.c:174
#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Òî÷åí ðàçìåð íà RAM-ïàìåòòà, àêî å íåîáõîäèìî (íàìåðåíè %d MB)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " íà Novell ñúðâúð \"%s\", ïðèíòåð \"%s\""
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
+msgstr "Âêëþ÷è ìíîãî ïðîôèëè"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Name"
-msgstr "Èìå íà ïðèíòåð"
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "Äàéòå ðàçìåðà RAM-ïàìåò â Mb"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
-msgstr ""
+#: ../../any.pm_.c:182
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr "Îïöèÿòà ``Îãðàíè÷è îïöèèòå îò êîìàíäíèÿ ðåä'' å áåçïîëåçíà áåç ïàðîëà"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
-msgstr "Ïðåìàõíè ìîäóëà"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "Ìîëÿ, îïèòàéòå îòíîâî"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Password"
-msgstr "Ïàðîëà"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "Ïàðîëèòå íà ñúâïàäàò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Äîïúëíèòåëíà êîíôèãóðàöèÿ"
+#: ../../any.pm_.c:191
+msgid "Init Message"
+msgstr "Ñòàðòîâî ñúîáùåíèå"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr "Ñêàíèðàíå íà âàøåòî HP ìíîãîôóíêöèîíàëíî óñòðîéñòâî"
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
+msgstr "Èç÷àêâàíå íà Open Firmware"
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "Ãëàâåí"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
+msgstr "Èç÷àêâàíå çà ñòàðòèðàíå íà ÿäðîòî"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "Èçáåðåòå ñúùåñòâóâàù RAID çà ïðèáàâÿíå"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
+msgstr "Ñòàðòèðàíå îò CD ?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Òóðñêà (ìîäåðåí \"Q\" ìîäåë)"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
+msgstr "Ñòàðòèðàíå îò OF ?"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo message not found"
-msgstr "Lilo ñúîáùåíèå íå å íàìåðåíî"
+#: ../../any.pm_.c:197
+msgid "Default OS?"
+msgstr "ÎÑ ïî ïîäðàçáèðàíå ?"
-#: ../../services.pm:1
-#, c-format
+#: ../../any.pm_.c:231
msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
+"\n"
+"On which drive are you booting?"
msgstr ""
-"Àâòîìàòè÷íî ðåãåíåðèðàíå íà header-èòå íà ÿäðîòî, â /boot çà\n"
-"/usr/include/linux/{autoconf,version}.h"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
-msgstr "àêî å íóæíî"
-
-#: ../../standalone/drakclock:1
-#, c-format
+#: ../../any.pm_.c:247
msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
+"Òîâà ñà ðàçëè÷íèòå çàïèñè.\n"
+"Ìîæåòå äà äîáàâèòå îùå èëè äà ïðîìåíèòå ñúùåñòâóâàùèòå."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Failed..."
-msgstr "Âúçñòàíîâÿâàíåòî ïðîïàäíà..."
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "Äîáàâè"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr ""
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "Ãîòîâî"
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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 ""
-"Âúâåäåíèå\n"
-"\n"
-"Îïåðàöèîííàòà ñèñòåìà è ðàçëè÷íèòå êîìïîíåíòè äîñòúïíè â Mandrake Linux "
-"äèñòðèáóöèÿòà ïî-äîëó ùå ñå\n"
-"íàðè÷àò \"Ñîôòóåðåí Ïðîäóêòè\". Ñîôòóåðíèòå Ïðîäóêòè âêëþ÷âàò, íî íå ñå "
-"îãðàíè÷àâàò ñàìî äî, íàáîðà\n"
-"ïðîãðàìè, ìåòîäè, ïðàâèëà è äîêóìåíòàöèÿ îòíàñÿùà ñå äî îïåðàöèîííàòà "
-"ñèñòåìà è ðàçëè÷íèòå\n"
-"êîìïîíåíòè íà Mandrake Linux äèñòðèáóöèÿòà.\n"
-"\n"
-"\n"
-"1. Ëèöåíçèîíåí äîãîâîð\n"
-"\n"
-"Ìîëÿ, ïðî÷åòåòå âíèìàòåëíî òîçè äîêóìåíò. Òîçè äîêóìåíò å ëèöåíçèîíåí "
-"äîãîâîð ìåæäó âàñ è\n"
-"MandrakeSoft S.A., êîéòî ñå îòíàñÿ äî Ñîôòóåðíèÿ Ïðîäóêò. ×ðåç "
-"èíñòàëèðàíåòî, êîïèðàíåòî\n"
-"èëè èçïîëçâàíåòî íà Ñîôòóåðíèÿ Ïðîäóêò ïî êàêúâòî è äà å íà÷èí âèå èçðè÷íî "
-"ïðèåìàòå è\n"
-"íàïúëíî ñå ñúãëàñÿâàòå äà ñïàçâàòå ñðîêîâåòå è óñëîâèÿòà íà òîçè Ëèöåíç.\n"
-"Àêî íå ñå ñúãëàñÿâàòå ñ íÿêîÿ ÷àñò íà Ëèöåíçà, íÿìàòå ïðàâî äà èíñòàëèðàòå, "
-"êîïèðàòå èëè\n"
-"èçïîëçâàòå Ñîôòóåðíèÿ Ïðîäóêò. Îïèòèòå äà ñå èíñòàëèðà, êîïèðà èëè èçïîëçâà "
-"Ñîôòóåðíèÿ Ïðîäóêò\n"
-"íåñúîáðàçíî ñúñ ñðîêîâåòå è óñëîâèÿòà íà òîçè Ëèöåíç ñå çàáðàíÿâàò è òàêèâà "
-"ïðåêðàòÿâàò ïðàâàòà\n"
-"âè ïî òîçè Ëèöåíç. Ïðè ïðåêðàòÿâàíå íà Ëèöåíçà, òðÿáâà íåçàáàâíî äà "
-"óíèæòîæèòå âñè÷êè\n"
-"êîïèÿ íà Ñîôòóåðíèÿ ëèöåíç.\n"
-"\n"
-"\n"
-"2. Îãðàíè÷åíà ãàðàíöèÿ\n"
-"\n"
-"Ñîôòóåðíèòå Ïðîäóêòè è ïðèëîæåíàòà äîêóìåíòàöèÿ ñå ïðåäîñòàâÿò \"òàêèâà "
-"êàêâèòî ñà\", áåç ãàðàíöèÿ,\n"
-"â ðàìêèòå íà ðàçðåøåíîòî îò çàêîíà.\n"
-"MandrakeSoft S.A., ïðè íèêàêâè îáñòîÿòåëñòâà è â ðàìêèòå íà çàêîíà, íå å "
-"îòãîâîðíà çà êàêâèòî äà e\n"
-"óìèøëåíè, ñëó÷àéíè, ïðåêè èëè êîñâåíè ùåòè (âêëþ÷èòåëíî çàãóáà íà äàííè çà "
-"ðàáîòà, ïðåêðàòÿâàíå íà,\n"
-"ðàáîòà, ôèíàíñîâè çàãóáè, çàêîííè äàíúöè è íàêàçàíèÿ â ðåçóëòàò íà ñúäåáíî "
-"ðåøåíèå èëè êàêâàòî è äà å\n"
-"äðóãà ïðîèçëèçàùè îò òîâà çàãóáè) ïðîèçòè÷àùè îò óïîòðåáàòà èëè îò "
-"íåâúçìîæíîñòòà äà ñå óïîòðåáè\n"
-"Ñîôòóåðíèÿ Ïðîäóêò, äàæå àêî MandrakeSoft S.A. äà å èçâåñòèëà çà "
-"âúçìîæíîñòòà èëè ñëó÷âàíåòî íà òàêàâà çàãóáà.\n"
-"\n"
-"ÎÃÐÀÍÈ×ÅÍÀ ÎÒÃÎÂÎÐÍÎÑÒ ÑÂÚÐÇÀÍÀ Ñ ÏÐÈÒÅÆÀÂÀÍÅÒÎ ÈËÈ ÈÇÏÎËÇÂÀÍÅÒÎ ÍÀ ÇÀÁÐÀÍÅÍ "
-"ÑÎÔÒÓÅÐ Â ÍßÊÎÈ ÑÒÐÀÍÈ\n"
-"\n"
-"Â ðàìêèòå íà çàêîíà, MandrakeSoft S.A. è íåéíèòå äèñòðèáóòîðè íÿìà ïðè "
-"íèêàêâè óñëîâèÿ äà áúäàò\n"
-"îòãîâîðíè çà êàêâèòî è äà áèëî óìèøëåíè, ñëó÷àéíè, ïðåêè èëè êîñâåíè ùåòè "
-"(âêëþ÷èòåëíî çàãóáà íà äàííè\n"
-"çà ðàáîòà, ïðåêðàòÿâàíå íà, ðàáîòà, ôèíàíñîâè çàãóáè, çàêîííè äàíúöè è "
-"íàêàçàíèÿ â ðåçóëòàò íà\n"
-"ñúäåáíî ðåøåíèå èëè êàêâàòî è äà å äðóãà ïðîèçëèçàùè îò òîâà çàãóáè) "
-"ïðîèçòè÷àùè îò ïðèòåæàâàíåòî\n"
-"è óïîòðåáàòà íà ñîôòóåðíè êîìïîíåíòè è îò èçòåãëÿíåòî íà ñîôòóåðíè "
-"êîìïîíåíòè îò ñàéòîâåòå íà Mandrake Linux,\n"
-"êîèòî ñà çàáðàíåíè â íÿêîè ñòðàíè îò ìåñòíîòî çàêîíîäàòåëñòâî.\n"
-"Òàçè îãðàíè÷åíà îòãîâîðíîñò ñå îòíàñÿ äî, íî íå ñàìî çà, ìîùíèòå "
-"êðèïòîãðàôñêè êîìïîíåíòè âêëþ÷åíè\n"
-"â Ñîôòóåðíèÿ Ïðîäóêò.\n"
-"\n"
-"\n"
-"3. GPL Ëèöåíçà è ïðèäðóæàâàùè ëèöåíçè\n"
-"\n"
-"Ñîôòóåðíèÿò Ïðîäóêò ñå ñúñòîè îò êîìïîíåíòè ñúçäàäåíè îò ðàçëè÷íè õîðà èëè "
-"îðãàíèçàöèè. Ïîâå÷åòî îò\n"
-"òåçè êîìïîíåíòè ñå óïðàâëÿâàò îò ñðîêîâåòå è óñëîâèÿòà íà GNU Îáùèÿ Ïóáëè÷åí "
-"Ëèöåíç, îòòóê íàòàòúê íàðè÷àí\n"
-"\"GPL\", èëè ïîäîáíè íåìó ëèöåíçè. Ïîâå÷åòî îò òåçè ëèöåíçè âè ïîçâîëÿâàò äà "
-"èçïîëçâàòå, êîïèðàòå, èëè\n"
-"ðåäèñòðèáóòèðàòå êîìïîíåíòèòå, êîèòî òå ïîêðèâàò. Ìîëÿ, ïðî÷åòåòå âíèìàòåëíî "
-"ñðîêîâåòå è óñëîâèÿòà íà\n"
-"ëèöåíçèîííèÿ äîãîâîð íà âñåêè êîìïîíåíò ïðåäè äà ãî èçïîëçâàòå. Âñÿêàêâè "
-"âúïðîñè îòíîñíî ëèöåíçà\n"
-"íà êîìïîíåíòèòå áè òðÿáâàëî äà áúäàò íàñî÷åíè êúì ñúîòâåòíèÿ èì àâòîð, à íå "
-"êúì MandrakeSoft.\n"
-"Ïðîãðàìèòå ðàçðàáîòåíè îò MandrakeSoft S.A. ñå óïðàâëÿâàò îò GPL Ëèöåíçà. "
-"Äîêóìåíòàöèÿòà íàïèñàíà\n"
-"îò MandrakeSoft S.A. ñå óïðàâëÿâà îò ñïåöèàëåí ëèöåíç. Ìîëÿ, ïîãëåäíåòå "
-"äîêóìåíòàöèÿòà çà\n"
-"ïîâå÷å èíôîðìàöèÿ.\n"
-"\n"
-"\n"
-"4. Ïðàâà çà Èíòåëåêòóàëíà Ñîáñòâåíîñò\n"
-"\n"
-"Âñè÷êè ïðàâà êúì êîìïîíåíòèòå íà Ñîôòóåðíèÿ Ïðîäóêò ïðèíàäëåæàò íà "
-"ñúîòâåòíèòå èì àâòîðè è ñà\n"
-"çàùèòåíè îò çàêîíèòå çà èíòåëåêòóàëíàòà ñîáñòâåíîñò è çà êîïèðàíå ïðèëàãàíè "
-"çà ñîôòóåðíèòå ïðîãðàìè.\n"
-"MandrakeSoft S.A. çàïàçâà ïðàâîòî ñè äà ìîäèôèöèðà è ïðèãîäÿâà Ñîôòóåðíèÿ "
-"Ïðîäóêò, êàòî öÿëî èëè íà\n"
-"÷àñòè, ïî âñÿêàêúâ íà÷èí è ñ âñÿêàêâè öåëè.\n"
-"\"Mandrake\", \"Mandrake Linux\" è ñâúðçàíèòå ëîãîòà ñà çàïàçåíà ìàðêà íà "
-"MandrakeSoft S.A.\n"
-"\n"
-"\n"
-"5. Óïðàâëÿâàùè Çàêîíè\n"
-"\n"
-"Àêî íÿêîÿ ÷àñò îò òîçè äîãîâîð ñå âîäè çàáðàíåíà, íåëåãàëíà èëè íåïðèëîæèìà "
-"ñïîðåä ðåøåíèå íà ñúä,\n"
-"òàçè ÷àñò ñå èçêëþ÷âà îò äîãîâîðà. Âèå îñòàâàòå îãðàíè÷åíè îò îñòàíàëèòå "
-"ïðèëîæèìè ñåêöèè íà äîãîâîðà.\n"
-"Ñðîêîâåòå è óñëîâèÿòà íà òîçè Ëèöåíç ñå óïðàâëÿâàò îò Çàêîíèòå íà Ôðàíöèÿ.\n"
-"Âñè÷êè ñïîðîâå ïî óñëîâèÿòà íà òîçè ëèöåíç áè áèëî äîáðå äà ñå îòíåñàò äî "
-"ñúäà. Êàòî êðàéíà ìÿðêà,\n"
-"ñïîðîâåòå ùå áúäàò îòíàñÿíè äî ïîäõîäÿùèÿ ïðàâíè ñúäèëèùà íà Ïàðèæ - "
-"Ôðàíöèÿ.\n"
-"Çà âñÿêàêâè âúïðîñè ïî òîçè äîêóìåíò, ìîëÿ, ñâúðæåòå ñå ñ MandrakeSoft S.A.\n"
-"\n"
-"ÇÀÁÅËÅÆÊÀ: Òîâà å áúëãàðñêè ïðèáëèçèòåëåí ïðåâîä íà äîêóìåíòà, êîåòî "
-"îçíà÷àâà, ÷å òîé\n"
-"âåðîÿòíî íå å äîñòàòú÷íî òî÷åí. Êàòî ïî-äîñòîâåðåí èçòî÷íèê ïîëçâàéòå "
-"íåãîâèÿ îðèãèíàë íà\n"
-"àíãëèéñêè.\n"
+#: ../../any.pm_.c:257
+msgid "Modify"
+msgstr "Ìîäèôèöèðàé"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default user"
-msgstr "Ïîòðåáèòåë ïî ïîäðàçáèðàíå"
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "Êàêúâ òèï èíôîðìàöèÿ èñêàòå äà ïðèáàâèòå"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"ëåíòàòà çà ïðîãðåñ x êîîðäèíàòè\n"
-"îò ãîðíèÿò ëÿâ úãúë"
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "Linux"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Current interface configuration"
-msgstr "Êîíôèãóðàöèÿ íà òåêóùèÿò èíòåðôåéñ"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "Äðóãà ÎÑ (SunOS...)"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Ëèíååí Ïðèíòåðåí Äåìîí"
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "Äðóãà ÎÑ (MacOS...)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"Àêî èìàòå ISA êàðòà, ñòîéíîñòèòå íà ñëåäâàùèÿ åêðàí òðÿáâà äà ñà âåðíè.\n"
-"\n"
-"Àêî èìàòå PCMCIA êàðòà, ùå òðÿáâà äà çíàåòå IRC è IO íà êàðòàòà ñè.\n"
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "Äðóãà ÎÑ (Windows...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not print any test page"
-msgstr "Íå ïå÷àòè íèêàêâà òåñòîâà ñòðàíèöà"
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "Îáðàç"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr "Ãóðìóê÷è"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "Ãëàâåí"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
-msgstr ""
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
+msgstr "Äîïúëâàíå"
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
-msgstr "Áåç APIC"
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr "Ïàðîëàòà å ïðåêàëåíî ïðîñòà (òðÿáâà äà áúäå äúëãà ïîíå %d ñèìâîëà)"
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "×åòåíå-çàïèñ"
-#: ../../standalone.pm:1
-#, c-format
-msgid "[keyboard]"
-msgstr "[êëàâèàòóðà]"
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "Òàáëèöà"
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP proxy"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "Îïàñåí"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install List"
-msgstr "Èíñòàëàöèîíåí ñïèñúê"
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "Åòèêåò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Change\n"
-"Restore Path"
-msgstr ""
-"Ïðîìÿíà\n"
-"ïúòÿ íà âúçñòàíîâÿâàíå"
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "Ïî ïîäðàçáèðàíå"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Ïîêàçâà ñàìî çà èçáðàíèÿò äåí"
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
+msgstr "Initrd-ãîëåìèíà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr ""
+#: ../../any.pm_.c:318
+msgid "NoVideo"
+msgstr "Áåç ãðàôèêà"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 ÊÁ"
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "Ïðåìàõíè çàïèñ"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr ""
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "Ïðàçåí åòèêåò íå å ðàçðåøåí"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
+msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Êàêúâ òèï êàðòà èìàòå ?"
+#: ../../any.pm_.c:330
+#, fuzzy
+msgid "You must specify a root partition"
+msgstr "Òðÿáâà äà èìàòå swap-äÿë"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "Òîçè åòèêåò âå÷å ñå èçïîëçâà"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Security"
-msgstr "Ñèãóðíîñò"
+msgid "Found %s %s interfaces"
+msgstr "Íàìåðåíè ñà %s %s èíòåðôåéñè"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "Èìàòå ëè äðóã(è) ?"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
+#: ../../any.pm_.c:642
#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
+msgid "Do you have any %s interfaces?"
+msgstr "Èìàòå ëè íÿêàêúâ %s èíòåðôåéñ?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Íå ìîãà äà íàìåðÿ àðõèâ çà âúçñòàíîâÿâàíå...\n"
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "Íå"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown"
-msgstr "Íåèçâåñòåí"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "Äà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr ""
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "Âèæ õàðäóåðíàòà èíôîðìàöèÿ"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Network Configuration"
-msgstr "Íàñòðîéêà íà ìðåæàòà"
+msgid "Installing driver for %s card %s"
+msgstr "Èíñòàëèðàíå íà äðàéâåð çà %s ïëàòêà %s"
-#: ../../standalone/logdrake:1
+#: ../../any.pm_.c:663
#, c-format
-msgid "<control>S"
-msgstr "<control>S"
+msgid "(module %s)"
+msgstr "(ìîäóë %s)"
-#: ../../network/isdn.pm:1
+#: ../../any.pm_.c:674
#, c-format
msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-"Ïðîòîêîë çà îñòàíàëèÿ ñâÿò\n"
-" áåç D-Êàíàë (íàåòà ëèíèÿ)"
-#: ../../standalone/drakTermServ:1
+#: ../../any.pm_.c:680
#, 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."
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
msgstr ""
+"Ñåãà ìîæåòå äà ïîäàäåòå îïöèèòå ìó äî ìîäóëà %s.\n"
+"Îïöèèòå ñà âúâ ôîðìàò ``èìå=ñòîéíîñò èìå2=ñòîéíîñò2 ...''.\n"
+"Íàïðèìåð: ``io=0x300 irq=7''"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Íàñòðîéêàòà %s òðÿáâà äà å ÷èñëî !"
-
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, c-format
-msgid "Notice"
-msgstr "Áåëåæêà"
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "Îïöèè íà ìîäóëà:"
-#: ../../install_steps_interactive.pm:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "Âèå íå ñòå êîíôèãóðèðàëè X. Ñèãóðíè ëè ñòå, ÷å èñêàòå òîâà?"
+msgid "Which %s driver should I try?"
+msgstr "Êîé %s äðàéâåð äà ïðîáâàì ?"
-#: ../../printer/printerdrake.pm:1
+#: ../../any.pm_.c:703
#, 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\"."
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. Would you like to "
+"specify\n"
+"extra options for it or allow the driver to probe your machine for the\n"
+"information it needs? Occasionally, probing will hang a computer, but it "
+"should\n"
+"not cause any damage."
msgstr ""
-"Êîíôèãóðàöèÿòà íà ïðèíòåðà ùå ðàáîòè íàïúëíî àâòîìàòè÷íî. Àêî âàøèÿò ïðèíòåð "
-"íå å áèë êîðåêòíî îòêðèò èëè âèå ïðåäïî÷èòàòå íà íàñòðîèòå ïðèíòåðà, "
-"âêëþ÷åòå íà \"Ðú÷íà êîíôèãóðàöèÿ\"."
+" íÿêîè ñëó÷àè, %s äðàéâåðúò ñå íóæäàå îò äîïúëíèòåëíà èíôîðìàöèÿ, çà\n"
+"äà ðàáîòè êîðåêòíî, âúïðåêè ÷å íîðìàëíî ðàáîòè è áåç íåÿ. Æåëàåòå ëè "
+"äàïîäàäåòå\n"
+"äîïúëíèòåëíè îïöèè çà íåãî èëè äà ðàçðåøèòå íà äðàéâåðà äà ïîòúðñè "
+"èíôîðìàöèÿòà\n"
+"îò êîÿòî ñå íóæäàå ? Ïî ïðèíöèï òîâà ìîæå äà çàáèå êîìïþòúðà âè, íî íÿìà äà "
+"ãî ïîâðåäè."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "What type of partitioning?"
-msgstr "Êàêúâ òèï ðàçäåëÿíå íà äÿëîâå ?"
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
+msgstr "Àâòîìàòè÷íî çàñè÷àíå"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "Çàäàé îïöèè"
+
+#: ../../any.pm_.c:719
#, c-format
msgid ""
-"file list sent by FTP: %s\n"
-" "
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
+"Çàðåæäàíåòî íà ìîäóëà %s íå óñïÿ.\n"
+"Èñêàòå ëè äà îïèòàòå îòíîâî ñ äðóãè ïàðàìåòðè ?"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface"
-msgstr "Èíòåðôåéñ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Multisession CD"
-msgstr "Ìóëòèñåñèåí äèñê"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
+msgstr ""
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated strings"
-msgstr "íèçîâå ðàçäåëåíè ñúñ çàïåòàÿ"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Messages"
-msgstr "Ñúîáùåíèÿ"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
+msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Íåèçâåñòåí|CPH06X (bt878) [ìíîãî ïðîèçâîäèòåëè]"
+#: ../../any.pm_.c:738
+msgid "access to network tools"
+msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP è IMAP ñúðâúð"
+#: ../../any.pm_.c:739
+msgid "access to compilation tools"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../any.pm_.c:744
#, c-format
-msgid "Mexico"
-msgstr "Ìåêñèêî"
+msgid "(already added %s)"
+msgstr "(âå÷å ïðèáàâèõ %s)"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Model stepping"
-msgstr "Ôîðìàòèðàíå"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "Òàçè ïàðîëà å ïðåêàëåíî ïðîñòà"
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
-msgstr "Ðóàíäà"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
+msgstr "Ìîëÿ, çàäàéòå ïîòðåáèòåëñêî èìå"
-#: ../../lang.pm:1
-#, c-format
-msgid "Switzerland"
-msgstr "Øâåéöàðèÿ"
+#: ../../any.pm_.c:751
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr ""
+"Ïîòðåáèòåëñêîòî èìå ìîæå äà âêëþ÷âà ñàìî ìàëêè áóêâè, íîìåðà, `-' è `_'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr "Áðóíåé"
+#: ../../any.pm_.c:752
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Òîâà ïîòðåáèòåëñêî èìå å âå÷å äîáàâåíî"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Èìàòå ëè íÿêàêúâ %s èíòåðôåéñ?"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "Òîâà ïîòðåáèòåëñêî èìå å âå÷å äîáàâåíî"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "Òðÿáâà äà ñòå root , çà äà ïðî÷åòåòå ôàéëà ñ íàñòðîéêèòå.\n"
+#: ../../any.pm_.c:757
+msgid "Add user"
+msgstr "Äîáàâè ïîòðåáèòåë"
-#: ../../printer/printerdrake.pm:1
+#: ../../any.pm_.c:758
#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Îïöèè íà îòäàëå÷åí lpd-ïðèíòåð"
-
-#: ../../help.pm:1
-#, fuzzy, 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."
+"Enter a user\n"
+"%s"
msgstr ""
-"GNU/Linux å ìíîãîïîòðåáèòåëñêà ñèñòåìà, êîÿòî îçíà÷àâà, ÷å âñåêè ïîòðåáèòåë "
-"ìîæå\n"
-"äà èìà ñâîè ïðåäïî÷èòàíèÿ, ôàéëîâå è ò.í.. ìîæåòå äà ïðî÷åòåòå Ðúêîâîäñòâîòî "
-"íà\n"
-"Ïîòðåáèòåëÿ, çà äà íàó÷èòå ïîâå÷å.\n"
-"Çà ðàçëèêà îò Root, êîéòî å àäìèíèñòðàòîðúò, ïîòðåáèòåëèòå, êîèòî ùå "
-"äîáàâèòå òóê\n"
-"íÿìà äà ìîãàò äà ïðîìåíÿò íèùî îñâåí ñîáñòâåíèòå ñè ôàéëîâå è òåõíèòå "
-"íàñòðîéêè.\n"
-"Ùå òðÿáâà äà ñúçäàäåòå ïîíå åäèí îáèêíîâåí ïîòðåáèòåë çà ñåáå ñè.\n"
-"Ñ òîçè àêàóíò ùå òðÿáâà äà âëèçàòå çà ðóòèííà äåéíîñò. Âúïðåêè òîâà "
-"ïðàêòèêàòà\n"
-"äà âëèçàòå êàòî root åæåäíåâíî, ìîæå äà áúäå ìíîãî îïàñíà ! È íàé-ìàëêàòà "
-"ãðåøêà\n"
-"ìîæå äà îçíà÷àâà, ÷å ñèñòåìàòà âè íÿìà äà ðàáîòè ïîâå÷å. Àêî íàïðàâèòå íÿêîÿ "
-"ñåðèîçíà\n"
-"ãðåøêà êàòî ïîòðåáèòåë, òîâà ìîæå ñà äà äîâåäå äî çàãóáà íà ÷àñò îò "
-"èíôîðìàöèÿòà,\n"
-"íî íå è íà öÿëàòà ñèñòåìà.\n"
-"\n"
-"Ïúðâî, òðÿáâà äà ñè âúâåäåòå èìåòî. Òîâà íå å çàäúëæèòåëíî, ðàçáèðà ñå, "
-"âñúùíîñò\n"
-"ìîæåòå äà âúâåäåòå êàêâîòî è äà å. DrakX ñëåä òîâà ùå èçáåðå ïúðâàòà "
-"âúâåäåíà\n"
-"â êóòèéêàòà äóìà è ùå ãî èçêàðà êàòî ïîòðåáèòåëñêî èìå. Òîâà å èìåòî, ñ "
-"êîåòî\n"
-"âñúùíîñò îïðåäåëåíèÿò ïîòðåáèòåë ùå âëèçà â ñèñòåìàòà. Ìîæåòå äà ãî "
-"ïðîìåíèòå.\n"
-"Òðÿáâà äà âúâåäåòå è ïàðîëà òóê. Ïàðîëàòà íà íåïðåâèëåãèðîâàí (îáèêíîâåí) "
-"ïîòðåáèòåë\n"
-"íå å òîëêîâà ôàòàëíà êàòî òàçè íà Root îò ãëåäíà òî÷êà íà ñèãóðíîñòòà, íî "
-"âñå\n"
-"ïàê íÿìà ïðè÷èíà äà ÿ ïîäöåíÿâàòå, òúé êàòî ðèñêóâàòå ôàéëîâåòå ñè.\n"
-"\n"
-"Ñëåä êàòî öúêíåòå íà \"Ïðèåìè ïîòðåáèòåë\", ìîæåòå äà äîáàâèòå êîëêîòî ñè "
-"èñêàòå.\n"
-"Äîáàâåòå ïî åäèí ïîòðåáèòåë çà âñåêè îò ïðèÿòåëèòå ñè: áàùà ñè, ñåñòðà ñè, "
-"íàïðèìåð.\n"
-"Êîãàòî ñòå äîáàâèëè âñè÷êè ïîòðåáèòåëè, êîèòî èñêàòå, öúêíåòå Ãîòîâî.\n"
-"\n"
-"Öúêíåòå íà áóòîíà \"Íàïðåäíè÷àâ\", çà äà ïðîìåíèòå îáâèâêàòà ïî ïîäðàçáèðàíå "
-"íà\n"
-"ïîòðåáèòåëÿ (bash ïî ïîäðàçáèðàíå)."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Internet Access..."
-msgstr "Íàñòðîéêà íà Èíòåðíåò äîñòúïà ..."
+"Âúâåäåòå ïîòðåáèòåë\n"
+"%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Ìîëÿ èçáåðåòå èíòåðâàë ìåæäó âñÿêî àðõèâèðàíå"
+#: ../../any.pm_.c:759
+msgid "Accept user"
+msgstr "Ïðèåìè ïîòðåáèòåë"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Norway"
-msgstr "Íîðâåãèÿ"
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "Èñòèíñêî èìå"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Delete profile"
-msgstr "Èçòðèé ïðîôèë ..."
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "Ïîòðåáèòåëñêî èìå"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Danish"
-msgstr "Äàòñêà"
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "Øåë"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Àâòîìàòè÷íî âêëþ÷âàíå íà numlock êëàâèøà ïîä êîíçîëà è\n"
-"XFree ïðè ñòàðòèðàíå."
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "Èêîíà"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Ìîëÿ, âúâåäåòå IP íàñòðîéêèòå çà òàçè ìàøèíà.\n"
-"Âñÿêî óñòðîéñòâî òðÿáâà äà áúäå âúâåäåíî êàòî IP àäðåñ\n"
-"ñ òî÷êîâî-äåñåòè÷íî îçíà÷åíèå (íàïðèìåð, 1.2.3.4)."
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "Autologin"
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:804
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."
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
-"Èíñòàëàöèÿòà íà Mandrake Linux å ðàçïîëîæåíà íà íÿêîëêî CDROM-à. DrakX\n"
-"çíàå äàëè èçáðàí ïàêåò íå ñå íàìèðà íà äðóã CDROM,òàêà ÷å ùå èçâàäè "
-"òåêóùîòî\n"
-"CD è ùå âè îñòàâè äà âêàðàòå òîâà, îò êîåòî èìà íóæäà."
+"Ìîãà äà íàñòðîÿ êîìïþòúðà âè äà âëèçàíå â ñèñòåìàòà àâòîìàòè÷íî êàòî íÿêîé "
+"ïîòðåáèòåë.\n"
+"Èñêàòå ëè òàçè âúçìîæíîñò ?"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
-msgstr "Ïðè ïðîâåðêà, ñîáñòâåíèêà è ãðóïàòà íÿìà äà áúäàò ïðîìåíåíè"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "Áúëãàðèÿ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
-msgstr "Âòîðíèê"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "Ïðîöåñîðè"
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "Èçáåðåòå ïîäðàçáèðàù ñå ïîòðåáèòåë :"
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "Ñâàëáàðä è ßí Ìàéåí Îñòðîâè"
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
+msgstr "Èçáåðåòå Windows Manager çà ñòàðòèðàíå:"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No NIC selected!"
-msgstr "Íÿìà èçáðàí NIC !"
+#: ../../any.pm_.c:824
+#, fuzzy
+msgid "Please choose a language to use."
+msgstr "Ìîëÿ, èçáåðåòå èçïîëçâàí åçèê."
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../any.pm_.c:826
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 ""
-"Ïîÿâè ñå ïðîáëåì ïðè êîíôèãóðàöèÿòà.\n"
-"Ïðîâåðåòå âàøàòà âðúçêà ïðåç net_monitor èëè mcc. Àêî âàøàòà âðúçêà íå "
-"ðàáîòè , âèå òðÿáâà äà ïðåêîíôèãóðèðàòå."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "äÿë %s ñåãà å èçâåñòåí êàòî %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Other files..."
-msgstr "Ðåçåðâíî êîïèå íà äðóãè ôàéëîâå..."
+"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 "Ìîæåòå äà èçáåðåòå äðóãè åçèöè, êîèòî ùå áúäàò íàëèöå ñëåäèíñòàëàöèÿòà"
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
-msgstr "Êîíãî (Êèíøàñà)"
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "Âñè÷êè"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "IP íà SMB ñúðâúð:"
+#: ../../any.pm_.c:961
+#, fuzzy
+msgid "Allow all users"
+msgstr "Äîáàâÿíå íà ïîòðåáèòåë"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Òàáëèöàòà íà äÿëîâåòå íà óñòðîéñòâî %s ùå áúäå çàïèñàíà âúðõó äèñêà !"
+#: ../../any.pm_.c:961
+#, fuzzy
+msgid "No sharing"
+msgstr "Ïîäåëÿíå íà ôàéëîâå"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing HPOJ package..."
-msgstr "Èíñòàëèðàíå íà HPOJ ïàêåòè ..."
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
+#, fuzzy, c-format
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr ""
+"Òîçè ïàêåò òðÿáâà äà áúäå îáíîâåí\n"
+"Ñèãóðíè ëè ñòå, ÷å èñêàòå äà ãî èçêëþ÷èòå ?"
-#: ../../any.pm:1
-#, c-format
+#: ../../any.pm_.c:973
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"
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-"Êëèåíòñêè bootdisk å íåîáõîäèì çà ñòàðòèðàíå â Linux ñèñòåìàòà âè "
-"íåçàâèñèìî\n"
-"îò îáèêíîâåíàòà çàðåæäàùà ïðîãðàìà. Òîâà å ïîëåçíî, àêî íå èñêàòå äà "
-"èíñòàëèðàòå\n"
-"LILO (èëè GRUB) íà ñèñòåìàòà ñè èëè àêî íÿêîÿ äðóãà îïåðàöèîííà ñèñòåìà "
-"ìàõíå LILO èëè LILO íå\n"
-"ðàáîòè ñ õàðäóåðíàòà âè íàñòðîéêà. Bootdisk-úò ìîæå äà áúäå èçïîëçâàí ñúñ\n"
-"ñïàñèòåëíàòà äèñêåòà íà Mandrake, óëåñíÿâàùà âúçñòàíîâÿâàíåòî ïðè ðåäêè\n"
-"ñëó÷àè íà ñðèâ. Èñêàòå ëè äà ñúçäàì bootdisk çà ñèñòåìàòà âè ?\n"
-"%s"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
+msgid "Mandatory package %s is missing"
+msgstr ""
+
+#: ../../any.pm_.c:987
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 ""
-"\n"
-" DrakBackup Ðàïîðò \n"
-"\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latvian"
-msgstr "Ëàòâèéñêà"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr "Åæåìåñå÷íî"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Retry"
-msgstr "Âúçñòàíîâÿâà"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr "Èìå íà ìîäóë"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Start at boot"
-msgstr "Èçïúëíåíèå ïðè ñòàðòèðàíå"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Èçïîëçâà èíêðåìåíòíè àðõèâè"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "Ïúðâèÿò ñåêòîð îò äðàéâà (MBR)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "Åë Ñàëâàäîð"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
-msgstr "Äæîéñòèê"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "DVD"
-msgstr "DVD"
+#: ../../any.pm_.c:1003
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
+msgstr ""
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
-msgstr "Èçïîëçâà óíèêîä ïî ïîäðàçáèðàíå"
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
+msgstr "Äîáðå äîøëè ïðè Cracker-èòå"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "ìîäóëúò íà ÃÍÓ/Ëèíóêñ ÿäðîòî ñå ãðèæè çà òîâà óñòðîéñòâî"
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Ëîøî"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Õàäðóåðíèÿò âè ÷àñîâíèê å íàñòðîåí ïî GMT"
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
+msgstr "Ñòàíäàðòíà"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "Îïèòâàì ñå äà ñïàñÿ òàáëèöàòà íà äÿëîâåòå"
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Âèñîêî"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Íàñòðîéêàòà %s òðÿáâà äà å öÿëî ÷èñëî !"
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+#, fuzzy
+msgid "Higher"
+msgstr "Âèñîêî"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
-msgstr "Èçïîëçâà ïàðîëà çà ðàçïîçíàâàíå íà ïîòðåáèòåëèòå"
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "Ïàðàíîè÷íî"
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../any.pm_.c:1061
msgid ""
-"Entries you'll have to fill:\n"
-"%s"
+"This level is to be used with care. It makes your system more easy to use,\n"
+"but very sensitive: it must not be used for a machine connected to others\n"
+"or to the Internet. There is no password access."
msgstr ""
-"Çàïèñèòå êîèòî âèå ùå òðÿáâà äà çàïúëíèòå:\n"
-"%s"
+"Òîâà íèâî ñå èçïîëçâà ñ âíèìàíèå. Òîâà êàðà ñèñòåìàòà âè ïî-ëåñíà çà\n"
+"óïîòðåáà, íî å ïî-÷óâñòâèòåëíî: íå òðÿáâà äà áúäå èçïîëçâàíà íà ìàøèíè\n"
+"ñâúðçàíè ñ äðóãè èëè ïî Èíòåðíåò. Íÿìà äîñòúï ñ ïàðîëè."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1064
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."
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
+"Ïàðîëàòà ñåãà å âêëþ÷åíà, íî èçïîëçâàíåòî êàòî ìðåæîâ êîìïþòúð íå å "
+"ïðåïîðú÷èòåëíî."
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Íå ìîãà äà ïóñíà îáíîâÿâàíåòî !!!\n"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "Èìå: "
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
+#: ../../any.pm_.c:1065
+#, fuzzy
+msgid ""
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
+"Òîâà å ñòàíäàðòíàòà ñèãóðíîñò ïðåïîðú÷èòåëíà çà êîìïþòúð, êîéòî ùå áúäå\n"
+"èçïîëçâàí äà ñå ñâúðçâà êúì Èíòåðíåò êàòî êëèåíò. Èìà ïðîâåðêè íà "
+"ñèãóðíîñòòà. "
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 ìèëèîíà öâÿòà (24 áèòà)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Allow all users"
-msgstr "Ïîçâîëÿâà íà ïîòðåáèòåëè"
-
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr "Îôèöèàëíèÿò èçòî÷íèê íà MandrakeSoft "
-
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "Ïðîìÿíà íà ãîëåìèíàòà"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1066
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
-"Ìîëÿ, âúâåäåòå ìàêñèìàëíèÿ ðàçìåð\n"
-" ïîçâîëåí çà Drakbackup (â Ìá)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Cable connection"
-msgstr "Êàáåëíà âðúçêà"
-
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, c-format
-msgid "User"
-msgstr "Ïîòðåáèòåë"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
+#: ../../any.pm_.c:1067
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
+"connections from many clients. Note: if your machine is only a client on the "
+"Internet, you should choose a lower level."
msgstr ""
+"Ñ òîâà íèâî íà ñèãóðíîñò, ïîëçâàíåòî íà ñèñòåìàòà êàòî ñúðâúð ñòàâà "
+"âúçìîæíî.\n"
+"Ñèãóðíîñòòà ñåãà å äîñòàòú÷íî ãîëÿìà äà ñå èçïîëçâà ñèñòåìàòà êàòî\n"
+"ñúðâúð ïðèåìàù âðúçêè îò ìíîãî êëèåíòè. "
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "mkraid ïðîïàäíà"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Name"
-msgstr "Èìå"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Èìèòàöèÿ íà 3 áóòîíà"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
+#: ../../any.pm_.c:1070
+#, fuzzy
+msgid ""
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
+"Èçáèðàìå 4-òî íèâî, íî ñèñòåìàòà å íàïúëíî çàòâîðåíà.\n"
+"Íèâîòî íà ñèãóðíîñò å íà ìàêñèìóìà ñè."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files..."
-msgstr "Èçïðàùàì ôàéëîâå..."
+#: ../../any.pm_.c:1076
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Îïöèè"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "Èçðàåëñêà (ôîíåòè÷íà)"
+#: ../../any.pm_.c:1077
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Èçáåðåòå íèâî íà ñèãóðíîñò"
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
-msgstr "äîñòúï äî rpm èíñòðóìåíòè"
+#: ../../any.pm_.c:1080
+msgid "Security level"
+msgstr "Íèâî íà ñèãóðíîñò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Òðÿáâà äà âúâåäåòå/èçáåðåòå ïðèíòåð/óñòðîéñòâî!"
+#: ../../any.pm_.c:1082
+msgid "Use libsafe for servers"
+msgstr "Èçïîëçâàéòå libsafe çà ñúðâúðè"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
+#: ../../any.pm_.c:1083
+msgid ""
+"A library which defends against buffer overflow and format string attacks."
msgstr ""
+"Áèáëèîòåêà, êîÿòî îñèãóðÿâà çàùèòà îò aòàêè ñ ïðåïúëâàíå íà áóôåð è ôîðìàòíè "
+"ñòðèíãîâå."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "Òåëåôîíåí íîìåð"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr "Ãðåøêà: \"%s\" äðàéâåð çà âàøàòà êàðòà å èíñòàëèðàí"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Èìå íà ïðèíòåðà, îïèñàíèå, ìåñòîïîëîæåíèå"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Èçïîëçâàé ðàçøèðåíèåòî Xinerama"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "West Europe"
-msgstr "Çàïàäíà Åâðîïà"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On CD-R"
+#: ../../any.pm_.c:1166
+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 ""
-#: ../../standalone.pm:1
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, c-format
msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\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 ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake2 version %s"
-msgstr "Harddrake2 âåðñèÿ %s"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Preferences"
-msgstr "Íàñòðîéêè"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr "Ñâàçèëåíä"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "Äîìèíèêàíñêà Ðåïóáëèêà"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr "Êîïèðàíå íà %s"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Choose color"
-msgstr "Èçáåðîð íà öâÿò"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac"
-msgstr "Ñèðèéñêè"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
-msgstr "Çàäàâà-UID"
-
-#: ../../help.pm:1
-#, 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!"
-msgstr ""
-"Èçáåðåòå òâúðäèÿ äèñê, êîéòî èñêàòå äà èçòðèåòå, çà äà\n"
-"èíñòàëèðàì íîâèÿ âè Mandrake Linux äÿë. Âíèìàíèå, âñè÷êè äàííè íà íåãî ùå "
-"áúäàò çàãóáåíè\n"
-"è íÿìà äà ìîãàò äà ñå âúçñòàíîâÿò."
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Welcome to GRUB the operating system chooser!"
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -1853,26 +1145,38 @@ 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
+#: ../../bootloader.pm_.c:986
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr ""
-"Èçïîëçâà êëàâèøèòå %c è %c çà èçáîð íà òîâà êîé çàïèñ äà áúäå ïîäñâåòíàò."
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Îáèêíîâåííà 2-áóòîííà ìèøêà"
+msgstr "Use the %c and %c keys for selecting which entry is highlighted."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr ""
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Press enter to boot the selected OS, 'e' to edit the"
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr "Ïúðâî ïðåìàõíè ëîãè÷íèòå äÿëîâî\n"
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "commands before booting, or 'c' for a command-line."
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -1884,3041 +1188,2358 @@ msgstr "Ïúðâî ïðåìàõíè ëîãè÷íèòå äÿëîâî\n"
#
#. -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
+#: ../../bootloader.pm_.c:995
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Ïîäñâåòíàòèÿò çàïèñ ùå çàðåäè àâòîìàòè÷íî ñëåä %d ñåêóíäè."
+msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
-msgstr ""
-"Íå ìîãà äà ïèøà â /etc/sysconfig/bootsplash\n"
-"Ôàéëà íå å íàìåðåí."
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
+msgstr "íÿìà äîñòàòú÷íî ìÿñòî çà /boot"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet access"
-msgstr "Èíòåðíåò äîñòúï"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "Äåñêòîï"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"y coordinate of text box\n"
-"in number of characters"
-msgstr ""
-"y êîîðäèíàòè íà òåêñòîâàòà ðàìêà\n"
-"â áðîé ñèìâîëè"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "Ñòàðòîâî Ìåíþ"
-#: ../../printer/printerdrake.pm:1
+#: ../../bootloader.pm_.c:1120
#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Çà äà âèäèòå ñïèñúê ñ äîñòúïíèòå îïöèè çà òåêóùèÿ ïðèíòåð, öúêíåòå íà áóòîíà "
-"\"Ñïèñúê ñ îïöèè çà ïå÷àò\"."
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "Íå ìîæåòå äà èíñòàëèðàòå bootloader íà äÿëà %s\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr "Âêëþ÷âàíå íà ñúðâúðè ..."
+#: ../../bootlook.pm_.c:53
+msgid "Boot Style Configuration"
+msgstr "Íàñòðîéêà íà íà÷èíà íà ñòàðòèðàíå"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Îòïå÷àòâàíå íà òåñòîâ(àòà/èòå) ñòðàíèö(à/è) ..."
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
+msgstr "/_Ôàéë"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
+msgstr "/Ôàéë/_Èçõîä"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Âå÷å èìà äÿë ìîíòèðàí íà òîâà ìÿñòî %s\n"
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
+msgstr "<control>Q"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
-msgstr "Ðàçðåøàâà/Çàáðàíÿâà åæå÷àñîâà ïðîâåðêà íà ñèãóðíîñòòà"
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
+msgstr "NewStyle êàòåãîðèçèðàí ìîíèòîð"
-#: ../../help.pm:1
-#, 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''."
-msgstr ""
-"Â òîçè ìîìåíò òðÿáâà èçáåðåòå êúäå íà òâúðäèÿ ñè äèñêà äà èíñòàëèðàòå "
-"âàøàòà\n"
-"Mandrake Linux îïåðàöèîííà ñèñòåìà. Àêî òâúðäèÿò âè äèñê å ïðàçåí èëè äðóãà\n"
-"îïåðàöèîííà ñèñòåìà èçïîëçâà öÿëîòî ïðîñòðàíñòâî, ùå òðÿáâà äà ãî "
-"ðàçäåëèòå.\n"
-"Êàçàíî ïðîñòè÷êî, ðàçäåëÿíåòî íà òâúðäèÿ äèñê ñå ñúñòîè â ëîãè÷åñêî "
-"ðàçäåëÿíå\n"
-"öåë äà ñå ñúçäàäå ìÿñòî çà èíñòàëàöèÿ íà íîâàòà Mandrake Linux ñèñòåìà.\n"
-"\n"
-"Òúé êàòî ïðîöåñúò íà ðàçäåëÿíå îáèêíîâåíî å íåîáðàòèì, ðàçäåëÿíåòî ìîæå äà\n"
-"èçãëåæäà ïëàøåù è ñòðÿñêàù, àêî ñòå íåîïèòåí ïîòðåáèòåë. Ñëàâà Áîãó, èìà\n"
-"ìàãüîñíèê, êîéòî îïðîñòÿâà òîçè ïðîöåñ. Ïðåäè äà çàïî÷íåòå, êîíñóëòèðàéòå "
-"ñå\n"
-"ñ ðúêîâîäñòâîòî è íå áúðçàéòå.\n"
-"\n"
-"Àêî ïóñêàòå èíñòàëàöèÿòà â Åêñïåðòåí ðåæèì, ùå áúäåòå âúâåäåíè â DiskDrake,\n"
-"ðàçäåëÿùèÿ èíñòðóìåíò íà Mandrake Linux, êîéòî âè ïîçâîëÿâà äà äîíàñòðîèòå\n"
-"äÿëîâåòå ñè. Âèæòå ãëàâàòà DiskDrake îò ðúêîâîäñòâîòî. Îò èíñòàëàöèîííèÿ\n"
-"èíòåðôåéñ ìîæåòå äà èçïîëçâàòå ìàãüîñíèöèòå, êàòî íàòèñíåòå áóòîíà\n"
-"\"Ìàãüîñíèê\" íà äèàëîãà.\n"
-"\n"
-"Àêî äÿëîâåòå ñà âå÷å îïðåäåëåíè, äàëè îò ïðåäèøíà èíñòàëàöèÿ èëè îò äðóã\n"
-"èñòðóìåíò çà ðàçäåëÿíå, ïðîñòî èçáåðåòå íà êîé äà èíñòàëèðàòå Linux\n"
-"ñèñòåìàòà.\n"
-"\n"
-"Àêî äÿëîâåòå íå ñà îïðåäåëåíè, ùå òðÿáâà äà ñúçäàäåòå òàêèâà èçïîëçâàéêè\n"
-"ìàãüîñíèêà. Â çàâèñèìîñò îò íàñòðîéêàòà íà òâúðäèÿ äèñê, ñà âúçìîæíè "
-"íÿêîëêî\n"
-"îïöèè:\n"
-"\n"
-" * \"%s\" òàçè îïöèÿ ïðîñòî ùå äîâåäå äî àâòîìàòè÷íî ïîäåëÿíå íà ïðàçíîòî "
-"ïðîñòðàíñòâî íà òâúðäèÿ âè äèñê. Íÿìà äà áúäåòå ïèòàíè çà òîâà.\n"
-"\n"
-" * \"%s\": ìàãüîñíèêúò å çàñÿêúë åäèí èëè ïîâå÷å\n"
-"ñúùåñòâóâàùè Linux äÿëîâå íà òâúðäèÿ âè äèñê. Àêî èñêàòå äà ãè èçïîëçâàòå,\n"
-"èçáåðåòå òàçè îïöèÿ.\n"
-"\n"
-" * \"%s\": àêî èìàòå èíñòàëèðàí\n"
-"Microsoft Windows íà òâúðäèÿ ñè äèñê è òîé çàåìà öÿëîòî äîñòúïíî\n"
-"ïðîñòðàíñòâî íà íåãî, òðÿáâà äà îñâîáîäèòå ìÿñòî çà Linux äàííè. Çà äà\n"
-"íàïðàâèòåòîâà, ìîæåòå äà èçòðèåòå Microsoft Windows äÿëà è äàííèòå (âèæòå\n"
-"ðåøåíèÿòà \"Èçòðèé öåëèÿ äèñê\" èëè \"Åêïåðòåí ðåæèì\") èëè äà ïðîìåíèòå\n"
-"ãîëåìèíàòà íà Microsoft Windows äÿëà. Ïðîìÿíàòà íà ãîëåìèíàòà ìîæå äà áúäå\n"
-"èçâúðøåíà áåç çàãóáà íà äàííè. Òîâà ðåøåíèå ñå ïðåïîðú÷âà, àêî èñêàòå\n"
-"åäíîâðåìåííî Mandrake Linux è Microsoft Windows íà åäèí è ñúùè êîìïþòúð.\n"
-"\n"
-" Ïðåäè äà èçáåðåòå òàçè îïöèÿ, ìîëÿ, ðàçáåðåòå, ÷å ñëåä òàçè ïðîöåäóðà,\n"
-"ãîëåìèíàòà íà Microsoft Windows äÿëà ùå áúäå ïî-ìàëêà, îòêîëêîòî ïðåäè "
-"òîâà.\n"
-"Ùå èìàòå ïî-ìàëêî ìÿñòî ïîä Microsoft Windows çà ñúõðàíÿâàíå íà äàííè èëè "
-"çà\n"
-"èíñòàëèðà íà íîâ ñîôòóåð.\n"
-"\n"
-" * \"%s\": àêî èñêàòå äà èçòðèåòå âñè÷êè äàííè è äÿëîâå, êîèòî\n"
-"ñúùåñòâóâàò íà âàøèÿ òâúðä äèñê è äà ãè çàìåíèòå ñ íîâàòà Mandrake Linux\n"
-"ñèñòåìà, èçáåðåòå òàçè îïöèÿ. Áúäåòå âíèìàòåëíè ñ òîâà ðåøåíèÿ, çàùîòî íÿìà\n"
-"äà ìîæåòå äà âúðíåòå îáðàòíî èçáîðà ñè, ñëåä êàòî ïîòâúðäèòå.\n"
-"\n"
-" !! Àêî èçáåðåòå òàçè îïöèÿ, âñè÷êè äàííè íà äèñêà âè ùå áúäàò "
-"çàãóáåíè !!\n"
-"\n"
-" * \"%s\": Òîâà ïðîñòî ùå èçòðèå âñè÷êî íà äèñêà è ùå çàïî÷íå íà\n"
-"÷èñòî, ðàçäåëÿíå îò ðàç. Âñÿêàêâè äàííè íà äèñêà âè ùå áúäàò çàãóáåíè.\n"
-"\n"
-" !! Àêî èçáåðåòå òàçè îïöèÿ, âñè÷êè äàííè íà äèñêà âè ùå áúäàò "
-"çàãóáåíè !!\n"
-"\n"
-" * \"%s\": èçáåðåòå òàçè îïöèÿ, àêî èñêàòå ðú÷íî äà ðàçäåëèòå\n"
-"òâúðäèÿ ñè äèñê. Áúäåòå âíèìàòåëíè - òîâà å ìîùåí, íî îïàñåí èçáîð. Ìîæåòå\n"
-"ìíîãî ëåñíî äà çàãóáèòå âñè÷êè äàííè. Òàêà ÷å íå èçáèðàéòå òîâà, àêî íå\n"
-"çíàåòå êàêâî ïðàâèòå."
+#: ../../bootlook.pm_.c:83
+msgid "NewStyle Monitor"
+msgstr "NewStyle ìîíèòîð"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
-msgstr "Óêðàéíà"
+#: ../../bootlook.pm_.c:84
+msgid "Traditional Monitor"
+msgstr "Îáèêíîâåí ìîíèòîð"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Application:"
-msgstr "Ïðèëîæåíèå:"
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
+msgstr "Îáèêíîâåí Gtk+ ìîíèòîð"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "External ISDN modem"
-msgstr "Âúíøåí ISDN ìîäåì"
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
+msgstr "Ïóñíè Aurora ïðè ñòàðòèðàíå"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr "àêî å çàäàåíî äà, èçïðàùà ïî ïîùàòà ñúîáùåíèå çà ðåçóëòàòà."
+#: ../../bootlook.pm_.c:89
+msgid "Lilo/grub mode"
+msgstr "Ðåæèì íà Lilo/grub"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Âàøèÿò èçáîð ? (ïî ïîäðàçáèðàíå å %s)"
+#: ../../bootlook.pm_.c:89
+msgid "Yaboot mode"
+msgstr "Ðåæèì íà Yaboot"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr ""
+#: ../../bootlook.pm_.c:138
+#, fuzzy
+msgid "Install themes"
+msgstr "Èíñòàëèðàíå íà ñèñòåìàòà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:139
msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Òåñòîâèòå ñòðàíèöè ñà èçïðàòåíè êúì ïðèíòåðà.\n"
-"Ìîæå äà îòíåìå ìàëêî âðåìå ïðåäè ïðèíòåðà äà çàïî÷íå.\n"
-"Ñúñòîÿíèå íà ïå÷àòà:\n"
-"%s\n"
-"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
+"Display theme\n"
+"under console"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and one unknown printer"
-msgstr "è åäèí íåèçâåñòåí ïðèíòåð"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Ireland"
-msgstr "Èðëàíäèÿ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Restore Configuration "
-msgstr " Êîíôèãóðàöèÿ çà âúçñòàíîâÿâàíå "
+#: ../../bootlook.pm_.c:140
+#, fuzzy
+msgid "Create new theme"
+msgstr "Ñúçäàé íîâ äÿë"
-#: ../../Xconfig/test.pm:1
+#: ../../bootlook.pm_.c:184
#, c-format
-msgid "Is this the correct setting?"
-msgstr "Âñè÷êî ïðàâèëíî ëè å ?"
-
-#: ../../help.pm:1
-#, fuzzy, 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 "Backup %s to %s.old"
msgstr ""
-"Àêî èñêàòå äà ñâúðæåòå êîìïþòúðà ñè êúì Èíòåðíåò èëè êúì ëîêàëíà ìðåæà, "
-"ìîëÿ\n"
-"èçáåðåòå ïîäõîäÿùàòà îïöèÿ. Ìîëÿ, âêëþ÷åòå óñòðîéñòâîòî ñè ïðåäè äà "
-"èçáåðåòå\n"
-"îïöèÿòà, çà äà äàäåòå âúçìîæíîñò íà DrakX äà ãî çàñå÷å.\n"
-"\n"
-"Mandrake Linux èçâúðøâà íàñòðîéêàòà íà Èíòåðíåò âðúçêàòà ïî âðåìå íà\n"
-"èíñòàëàöèÿ. Äîñòúïíèòå âðúçêè: îáèêíîâåí ìîäåì, ISDN ìîäåì, ADSL âðúçêà,\n"
-"êàáåëåí ìîäåì è íàêðàÿ îáèêíîâåíà LAN âðúçêà (Ethernet).\n"
-"\n"
-"Òóê íÿìà ïîäðîáíî äà ðàçãëåæäàìå âñÿêà íàñòðîéêà. Ïðîñòî áúäåòå ñèãóðíè, ÷å\n"
-"èìàòå äîñòàòú÷íî äàííè îò Èíòåðíåò äîñòàâ÷èêà ñè èëè ñèñòåìíèÿ\n"
-"àäìèíñèòðàòîð.\n"
-"\n"
-"Ìîæåòå äà ñå êîíñóëòèðàòå ñ ãëàâàòà â ðúêîâîäñòâîòî çà Èíòåðíåò âðúçêèòå çà\n"
-"ïîäðîáíîñòè çà íàñòðîéêàòà èëè ïðîñòî èç÷àêàéòå ñèñòåìàòà âè äà áúäå\n"
-"èíñòàëèðàíà è èçïîëçâàéòå ïðîãðàìàòà îïèñàíà òàì, çà äà íàñòðîèòå âðúçêàòà.\n"
-"\n"
-"Àêî èñêàòå äà íàñòðîèòå ìðåæàòà ïî-êúñíî ñëåä èíñòàëàöèÿ èëè àêî ñòå "
-"ñâúðøèëè\n"
-"ñ íàñòðîéêàòà íà ìðåæàòà, öúêíåòå \"Îòêàç\"."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Êîíôèãóðàöèÿ íà Ìàãüîñíèê"
+#: ../../bootlook.pm_.c:187
+#, fuzzy, c-format
+msgid "Copy %s to %s"
+msgstr "Êîïèðàíå íà %s"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Autoprobe"
-msgstr "Àâòîìàòè÷íî çàñè÷àíå"
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+msgstr "Ãðåøêà"
-#: ../../security/help.pm:1
-#, 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."
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
msgstr ""
-"àêî å âêëþ÷åíî,ïðîâåðÿâà :\n"
-"\n"
-"- çà ïðàçíè ïàðîëè,\n"
-"\n"
-"- äàëè íÿìà ïàðîëè â /etc/shadow\n"
-"- çà ïîòðåáèòåëè ðàçëè÷íè îò root"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files..."
-msgstr "Àðõèâèðàíå íà ñèñòåìíè ôàéëîâå..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Íå ìîæåòå äà èçïîëçâàòå broadcast áåç NIS äîìåéí"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Èçòðèâàíå íà ïðèíòåð \"%s\"..."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell history size"
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
+#: ../../bootlook.pm_.c:222
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../bootlook.pm_.c:224
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"
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Configured on other machines"
-msgstr "Íàñòðîåíî íà äðóãè ìàøèíè"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-"èíôîðìàöèîííî íèâî, êîåòî ìîæå äà áúäå ïîëó÷åíî ÷ðåç èíñòðóêöèÿòà cpuid"
-#: ../../lang.pm:1
+#: ../../bootlook.pm_.c:238
#, c-format
-msgid "Peru"
-msgstr "Ïåðó"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " on device: %s"
-msgstr " íà óñòðîéñòâî: %s"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "Ïðåìàõíè Windows(TM)"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Ñòàðòèðà X Font Server (òîâà å çàäúëæèòåëíî, çà äà òðúãíå XFree)."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../bootlook.pm_.c:244
msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-"Ïîâå÷åòî îò òåçè ñòîéíîñòè ñà èçâëå÷åíè\n"
-"îò âàøàòà ðàáîòåùà ñèñòåìà.\n"
-"Âèå ìîæå äà ãè ïðîìåíèòå ïðè íåîáõîäèìîñò."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "Ìàäàãàñêàð"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
-msgstr ""
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+#, fuzzy
+msgid "Notice"
+msgstr "Áåç ãðàôèêà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "System"
-msgstr "Ñèñòåìà"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Èñêàòå ëè äà èçïîëçâàòå òàçè îñîáåíîñò?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr "Àðàáñêè"
+#: ../../bootlook.pm_.c:251
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Èçáîð íà êëàñ èíñòàëàöèÿ"
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:259
#, c-format
msgid ""
-"\n"
-"- Options:\n"
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"\n"
-"- Îïöèè:\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Password required"
-msgstr "Èçèñêâà ïàðîëà"
+"Â ìîìåíòà èçïîëçâàòå %s êàòî ïðîãðàìà çà ñòàðòèðàíå.\n"
+"Öúêíåòå íà Íàñòðîé, çà äà ñòàðòèðàòå óñòàíîâÿâàùèÿ ìàãüîñíèê."
-#: ../../common.pm:1
-#, c-format
-msgid "%d minutes"
-msgstr "%d ìèíóòè"
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
+msgstr "Íàñòðîé"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Ãðàôè÷íà êàðòà: %s"
+#: ../../bootlook.pm_.c:268
+#, fuzzy
+msgid "Splash selection"
+msgstr "Çàïàçè èçáîð íà ïàêåòè"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV transfer failed!"
+#: ../../bootlook.pm_.c:271
+msgid "Themes"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "Íàñòðîéêà íà XFree"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Choose action"
-msgstr "Èçáåðåòå äåéñòâèå"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "French Polynesia"
-msgstr "Ôðåíñêà Ïîëèíåçèÿ"
-
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:273
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."
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
msgstr ""
-"Ïî ïîäðàçáèðàíå, DrakX ïðåäïîëàãà ÷å èìàòå äâóáóòîííà ìèøêà è ùå âêëþ÷è\n"
-"ñèìóëèðàíå íà òðè áóòîíà. DrakX àâòîìàòè÷íî ðàçáèðà äàëè å PS/2, ñåðèéíà "
-"èëè\n"
-"USB ìèøêà.\n"
-"\n"
-"Àêî èñêàòå äà îïðåäåëèòå äðóã òèï íà ìèøêàòà, èçáåðåòå ïîäõîäÿù îò ñïèñúêà,\n"
-"êîéòî ùå âè áúäå ïðåäñòàâåí.\n"
-"\n"
-"Àêî èçáåðåòå ìèøêà ðàçëè÷íà îò òàçè ïî ïîäðàçáèðàíå, ùå âè áúäå ïðåäîñòàâåí\n"
-"åêðàí çà ïðîáà. Èçïîëçâàéòå áóòîíèòå è êîëåëöåòî, çà äà ïðîâåðèòå, ÷å\n"
-"íàñòðîéêàòà å äîðà. Àêî ìèøêàòà íå ðàáîòè, êàêòî òðÿáâà, íàòèñíåòå èíòåðâàë\n"
-"èëè ÑÅ ÂÚÐÍÅÒÅ êúì \"Îòêàç\" è èçáåðåòå ïàê."
-#: ../../services.pm:1
-#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Ïîääðúæêà íà OKI 4w è ñúâìåñòèìè win-ïðèíòåðè."
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
msgstr ""
-"Ôàéëîâå èëè ìàñêè,çàïèñàíè â .backupignore ôàéëà â ïúðâàòà äèðåêòîðèÿ îò "
-"àðõèâà, íÿìà äà áúäàò àðõèâèðàíè."
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Ïóñíè ALSA (Advanced Linux Sound Architecture) çâóêîâàòà ñèñòåìà"
+#: ../../bootlook.pm_.c:316
+msgid "System mode"
+msgstr "Ñèñòåìåí ðåæèì"
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Èíñòàëèðàíå íà äðàéâåð çà %s ïëàòêà %s"
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
+msgstr "Ïóñíè X-Window ñèñòåìàòà ïðè ñòàðòèðàíå"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Ïðåõâúðëèëè ñòå ïðèíòåð ïî ïîäðàçáèðàíå (\"%s\"), Èñêàòå ëè äà ãî îñòàâèòå "
-"ïî ïîäðàçáèðàíå â íîâàòà ïðèíòåðíà ñèñòåìà %s ?"
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
+msgstr "Íå, íå èñêàì autologin"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Enable Server"
-msgstr "Âêëþ÷âà Ñúðâúð"
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "Äà, èñêàì autologin ñ òîâà (ïîòðåáèòåë, äåñêòîï)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ukrainian"
-msgstr "Óêðàèíñêà"
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
+msgstr "OK"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Íÿìàøå äîñòúï äî ìðåæàòà è òàêúâ íå ìîæåøå äà áúäå óñòàíîâåí. Ìîëÿ, "
-"ïðîâåðåòå íàñòðîéêàòà è õàðäóåðà ñè. Òîãàâà îïèòàéòå äà íàñòðîèòå "
-"îòäàëå÷åíèÿ ïðèíòåð îòíîâî."
+#: ../../common.pm_.c:107
+msgid "GB"
+msgstr "ÃÁ"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Ðàçðåøàâàíå íà \"%s\" äà ïèøå âúâ ôàéëà"
+#: ../../common.pm_.c:107
+msgid "KB"
+msgstr "ÊÁ"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Ñëîæåòå ñòàðòèðàùàòà äèñêåòà â óñòðîéñòâî %s"
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "ÌÁ"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local network(s)"
-msgstr "Ëîêàëíà ìðåæà(è)"
+#: ../../common.pm_.c:115
+msgid "TB"
+msgstr "ÒÁ"
-#: ../../help.pm:1
+#: ../../common.pm_.c:123
#, c-format
-msgid "Remove Windows"
-msgstr "Ïðåìàõíè Windows(TM)"
+msgid "%d minutes"
+msgstr "%d ìèíóòè"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-"Âàøèÿò %s áå êîíôèãóðèðàí.\n"
-"Âå÷å ìîæåòå äà ñêàíèðàòå äîêóìåíòè,èçïîëçâàéêè \"XSane\" îò ìåíþòî "
-"Ìóëòèìåäèÿ/Ãðàôèêè"
+#: ../../common.pm_.c:125
+msgid "1 minute"
+msgstr "1 ìèíóòà"
-#: ../../harddrake/data.pm:1
+#: ../../common.pm_.c:127
#, c-format
-msgid "Firewire controllers"
-msgstr "Firewire êîíòðîëåðè"
+msgid "%d seconds"
+msgstr "%d ñåêóíäè"
-#: ../../help.pm:1
+#: ../../common.pm_.c:172
+#, fuzzy
+msgid "Can't make screenshots before partitioning"
+msgstr "Íå ìîãà äà äîáàâÿ ïîâå÷å äÿëîâå"
+
+#: ../../common.pm_.c:179
#, fuzzy, 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!"
-msgstr ""
-"LILO (èëè LInux LOader) è Grub ñà bootloader-è: òå ìîãà äà ñòàðòèðàò\n"
-"GNU/Linux èëè êîÿ äà å äðóãà îïåðàöèîííà ñèñòåìà ñúùåñòâóâàùà íà êîìïþòúðà "
-"âè.\n"
-"Îáèêíîâåííî, òåçè äðóãè îïåðàöèîííè ñèñòåìà ñå çàñè÷àò è èíñòàëèðàò\n"
-"ïðàâèëíî. Àêî òîâà íå ñòàâà ïðè âàñ, ìîæåòå äà äîáàâÿòå çàïèñè íà ðúêà â\n"
-"òîçè åêðàí. Ãëåäàéòå äà èçáåðåòå âåðíè ïàðàìåòðè.\n"
-"\n"
-"\n"
-"Ìîæå äà íå èñêàòå äà äàâàòå äîñòúï äî òåçè îïåðàöèîííè ñèñòåìè íà íèêîé,\n"
-"â êîéòî ñëó÷àé ìîæåòå äà èçòðèåòå ñúîòâåòíèòå çàïèñè. Íî â òàêúâ ñëó÷àé,\n"
-"ùå ñå íóæäàåòå îò boot-äèñêåòà, çà äà ãè ñòàðòèðàòå !"
+msgid "Screenshots will be available after install in %s"
+msgstr "Ìîæåòå äà èçáåðåòå äðóãè åçèöè, êîèòî ùå áúäàò íàëèöå ñëåäèíñòàëàöèÿòà"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "System mode"
-msgstr "Ñèñòåìåí ðåæèì"
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+msgid "France"
+msgstr "Ôðàíöèÿ"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
msgstr ""
-"Çà äà ïå÷àòèòå íà NetWare ïðèíòåð ,òðÿáâà äà çíàåòå èìåî ìó è âúçìîæíî\n"
-"àäðåñà íà ñúðâúðà, êàêòî è èìåòî íà îïàøêàòà,ïîòðåáèòåëñêîòî èìå,ïàðîëà. "
-"(çàáåëåæêà! òîé ìîæå äà å ðàçëè÷åí îò TCP/IP èìå íà õîñò!)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Netmask:"
-msgstr "Ìðåæîâà ìàñêà:"
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+#, fuzzy
+msgid "Belgium"
+msgstr "Áåëãèéñêà"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "Äîïúëâàíå"
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#, fuzzy
+msgid "Germany"
+msgstr "Íåìñêà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Îïðåñíÿâàíå íà ñïèñúêà ñ ïðèíòåðè ( çà äà ïîêàæå è âñè÷êè îòäàëå÷åíè CUPS "
-"ïðèíòåðè)"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#, fuzzy
+msgid "Greece"
+msgstr "Ãðúöêà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+#, fuzzy
+msgid "Norway"
+msgstr "Íîðâåæêà"
-#: ../../install_steps_interactive.pm:1
-#, 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"
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+#, fuzzy
+msgid "Sweden"
+msgstr "Âèæ"
+
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
msgstr ""
-"Àâòîìàòè÷íàòà èíñòàëàöèÿ ìîæå äà áúäå íàïúëíî àâòîìàòèçèðàíà,\n"
-"â òàêúâ ñëó÷àé ùå ïðåâçåìå òâúðäèÿ âè äèñê !!!\n"
-"(òîâà å çà ïðåäíàçíà÷åíî çà èíñòàëèðàíå íà äðóãà ìàøèíà).\n"
-"\n"
-"Ìîæå áè èñêàòå äà ïîâòîðèòå èíñòàëàöèÿòà.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Ìðåæîâ ïðèíòåð \"%s\", ïîðò %s"
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "Italy"
+msgstr "Èòàëèàíñêà"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+#, fuzzy
+msgid "Austria"
+msgstr "ñåðèéíà"
+
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:19
msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
+"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
-#, c-format
-msgid "OK to restore the other files."
-msgstr "OK çà âúçñòàíîâÿâàíå íà äðóãè ôàéëîâå."
+#: ../../diskdrake/dav.pm_.c:27
+#, fuzzy
+msgid "New"
+msgstr "íîâ"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Ìîëÿ, èçáåðåòå ïîäðåæäàíå íà êëàâèàòóðàòà."
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Äåìîíòèðàé"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "Ïå÷àòàùî óñòðîéñòâî URI"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Ìîíòèðàé"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not erasable media!"
-msgstr "Òîçè íîñèòåë íå ìîæå äà áúäå èçòðèò !"
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
+msgstr "Ñúðâúð"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "Áàçèðàíà íà òåðìèíàë"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Ìÿñòî íà ìîíòèðàíå"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr "Ðàçðåøàâà/Çàáðàíÿâà çàùèòàòà îò IP spoofing."
+#: ../../diskdrake/dav.pm_.c:85
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Ìîëÿ, ïðîáâàéòå ìèøêàòà ñè"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Èíñòàëèðàíå íà ïðèíòåðíàòà ñèñòåìà â %s íèâî íà ñèãóðíîñò"
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "The user name is too long"
-msgstr "Òîâà èìå å òâúðäå äúëãî"
+#: ../../diskdrake/dav.pm_.c:109
+#, fuzzy
+msgid "Server: "
+msgstr "Ñúðâúð"
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "Äðóãà ÎÑ (Windows...)"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
+msgstr "Ìÿñòî íà ìîíòèðàíå: "
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr ""
+msgid "Options: %s"
+msgstr "Îïöèè: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
-msgstr "×åòåíå íà áàçàòà äàííè îò ïðèíòåðè ..."
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
+msgstr "Ïúðâî ñúçäàéòå backup íà ñâîèòå äàííè"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Ïîäãîòâè äèñêåòà çà àâòîìàòè÷íà èíñòàëàöèÿ"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "Ïðî÷åòåòå âíèìàòåëíî !"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:100
msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
+"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 ""
+"Àêî ñìÿòàòå äà èçïîëçâàòå aboot, îñòàâåòå ñâîáîäíî ïðîñòðàíñòâî (2048 "
+"ñåêòîðà\n"
+"ñà äîñòàòú÷íè) â íà÷àëîòî íà äèñêà"
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr "Ñîìàëèÿ"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "Ìàãüîñíèê"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
+msgstr "Èçáåðåòå äåéñòâèå"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
-"Ïîäîáíî íà ïðåäèøíîòî íèâî, íî ñèñòåìàòà å íàïúëíî çàòâîðåíà.\n"
-"Íèâîòî íà ñèãóðíîñò å íà ìàêñèìóìà ñè."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "Íèêàðàãóà"
+"Èìàòå åäèí ãîëÿì FAT äÿë\n"
+"(ïî ïðèíöèï ñå ïîëçâàò îò Microsoft Dos/Windows).\n"
+"Ïðåäëàãàì ïúðâî äà ïðîìåíèòå ãîëåìèíàòà íà òîçè äÿë\n"
+"(ùðàêíåòå âúðõó íåãî, à ñëåä òîâà ùðàêíåòå âúðõó \"Ïðîìåíè ãîëåìèíàòà\")"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "Íîâà Êàëåäîíèÿ"
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "Ìîëÿ, öúêíåòå íà äÿëà"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Ïðîòîêîë Åâðîïà (EDSS1)"
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "Ïîäðîáíîñòè"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Delete"
-msgstr "/_Èçòðèé"
+#: ../../diskdrake/hd_gtk.pm_.c:254
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Ëîêàëåí ïðèíòåð"
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "Âèäåî ðåæèì"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
-msgstr "Îìàí"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "FAT"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Ìîëÿ, âúâåäåòå äîëó âàøèÿò àäðåñ íà Åë. ïîùà"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Network Monitoring"
-msgstr "Ìîíèòîðèíã íà ìðåæàòà"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Journalised FS"
+msgstr "Æóðíàëíà FS"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:325
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "New size in MB: "
-msgstr "Íîâà ãîëåìèíà â MB: "
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "Swap"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Òèï íà òàáëèöàòà ñ äÿëîâå: %s\n"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "Ïðàçåí"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication Windows Domain"
-msgstr "Èäåíòèôèêàöèÿ íà Windows Äîìåéí"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "Äðóãà"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "US êëàâèàòóðà"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "Âèäîâå ôàéëîâà ñèñòåìà:"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr "Èìèòàöèÿ íà áóòîíè"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "Ñúçäàé"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", ìðåæîâè ïðèíòåð \"%s\", ïîðò %s"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "Âèä"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
+msgid "Use ``%s'' instead"
+msgstr "Âìåñòî òîâà èçïîëçâàéòå ``%s''"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "Èçòðèé"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Sending Speed:"
-msgstr "Ñêîðîñò íà èçïðàùàíå:"
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
+msgstr "Ïúðâî èçïîëçâàéòå 'Äåìîíòèðàíå'"
-#: ../../harddrake/sound.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
-"currently uses\n"
-"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services're configured to be run on\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
+"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
+"Ñëåä ïðîìÿíà íà òèïà íà äÿëà %s, âñè÷êè äàííè âúðõó íåãî ùå áúäàò çàãóáåíè"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Êîíôèãóðàöèÿ çà ïîäðåäáà íà ïîùà"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr "Òîêåëàó"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose a partition"
+msgstr "Èçáåðåòå äÿë"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Matching"
-msgstr "ñúâïàäåíèå"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose another partition"
+msgstr "Èçáåðåòå äðóã äÿë"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bosnian"
-msgstr "Áîñíåíñêà"
+#: ../../diskdrake/interactive.pm_.c:202
+msgid "Exit"
+msgstr "Èçëåç"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Release: "
-msgstr "Âåðñèÿ:"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
+msgstr "Ïðåìèíè â Åêñïåðòåí ðåæèì"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection speed"
-msgstr "Ñêîðîñò íà âðúçêàòà"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
+msgstr "Ïðåìèíè â Íîðìàëåí ðåæèì"
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr "Íàìèáèÿ"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "Âúðíè"
-#: ../../services.pm:1
-#, c-format
-msgid "Database Server"
-msgstr "Ñúðâúð Áàçè-äàííè"
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "Ïðîäúëæåíèå âúïðåêè âñè÷êî ?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "Èçõîä áåç çàïèñ"
-#: ../../raid.pm:1
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Íå ìîãà äà ïðèáàâÿ äÿë êúì _ôîðìàòèðàí_ RAID md%d"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "Èçõîä, áåç äà çàïèñ íà òàáëèöàòà íà äÿëîâåòå ?"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Network Time Protocol"
-msgstr "Ìðåæîâ èíòåðôåéñ"
+#: ../../diskdrake/interactive.pm_.c:257
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "Èñêàòå ëè äà çàïàçèòå ïðîìåíèòå â /etc/fstab"
-#: ../../Xconfig/card.pm:1
-#, 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."
-msgstr ""
-"Êàðòàòà âè ìîæå äà èìà ïîääðúæêà íà õàðäóåðíî 3D óñêîðåíèå, íî ñàìî ñ XFree %"
-"s,\n"
-"ÎÒÁÅËÅÆÅÒÅ, ×Å ÒÎÂÀ Å ÅÊÑÏÅÐÈÌÅÍÒÀËÍÀ ÏÎÄÄÐÚÆÊÀ È ÌÎÆÅ ÄÀ ÇÀÁÈÅ ÊÎÌÏÞÒÚÐÀ "
-"ÂÈ.\n"
-"Êàðòàòà âè ñå ïîääúðæà îò XFree %s, êîéòî ìîæå äà èìà ïî-äîáðà ïîääðúæêà íà "
-"2D."
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "Èç÷èñòè âñè÷êî"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Ìîëÿ, èç÷àêàéòå, óñòàíîâÿâàì îïöèèòå ïî çàùèòà..."
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
+msgstr "Àâòîìàòè÷íî ñúçäàâàíå"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "Íåèçâåñòåí|CPH05X (bt878) [ìíîãî ïðîèçâîäèòåëè]"
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+msgid "More"
+msgstr "Îùå"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Ïóñíè X-Window ñèñòåìàòà ïðè ñòàðòèðàíå"
+#: ../../diskdrake/interactive.pm_.c:278
+msgid "Hard drive information"
+msgstr "Èíôîðìàöèÿòà çà òâúðäèÿ äèñê"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:310
+msgid "All primary partitions are used"
+msgstr "Âñè÷êè ïúðâè÷íè äÿëîâå ñå èçïîëçâàò"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
-msgstr "Äåñåí Shift êëàâèø"
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "Íå ìîãà äà äîáàâÿ ïîâå÷å äÿëîâå"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
+#: ../../diskdrake/interactive.pm_.c:312
+msgid ""
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
msgstr ""
+"Àêî èñêàòå îùå äÿëîâå, ìîëÿ èçòðèéòå åäèí, çà äà ìîæåòå äà ñúçäàäåòå åäèí "
+"ðàçøèðåí äÿë"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Ïðàâè ïîðòà íà ïðèíòåðà íàëè÷åí çà CUPS..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr "Àíòèãóà è Áàðáóäà"
+#: ../../diskdrake/interactive.pm_.c:322
+msgid "Save partition table"
+msgstr "Çàïàçè òàáëèöàòà ñ äÿëîâåòå"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:323
+msgid "Restore partition table"
+msgstr "Âúçñòàíîâè òàáëèöàòà ñ äÿëîâåòå"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "Èñïàíñêà"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
+msgstr "Ñïàñÿâàíå òàáëèöàòà ñ äÿëîâåòå"
-#: ../../services.pm:1
-#, c-format
-msgid "Start"
-msgstr "Ñòàðò"
+#: ../../diskdrake/interactive.pm_.c:326
+msgid "Reload partition table"
+msgstr "Ïðåçàðåäè òàáëèöàòà ñ äÿëîâåòå"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:331
+msgid "Removable media automounting"
+msgstr "Àâòîìàòè÷íî ìîíòèðàíå íà ñìåíÿåì íîñèòåë"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring applications..."
-msgstr "Íàñòðîéêà íà ïðèëîæåíèÿ..."
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "Èçáåðåòå ôàéë"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:347
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."
+"The backup partition table has not the same size\n"
+"Still continue?"
msgstr ""
-"\n"
-"Äîáðå äîøëè ïðè Ìàãüîñíèêà çà êîíôèãóðèðàíå íà Ïðèíòåð\n"
-"\n"
-"Òàé ùå âè ïîìîãíå äà èíñòàëèðàòå âàøèòå ïðèíòåðè ñâúðçàíè êúì êîìïþòúðà.\n"
-"\n"
-"Àêî èìàòå ïðèíòåð(è) ñâúðçàíè êúì òàçè ìàøèíà, âêëþ÷åòå ãè, òàêà ÷å òå äà "
-"ìîãàò äà ñå êîíôèãóðèðàò àâòîìàòè÷íî.\n"
-"\n"
-"Öúêíåòå íà \"Ñëåäâàùî\" êîãàòî ñòå ãîòîâè, è íà \"Ïðåêúñâà\" àêî íå èñêàòå "
-"äà íàñòðîéâàòå ïðèíòåðèòå ñåãà."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
-msgstr "Îáèêíîâåíà ìîäåìíà âðúçêà"
-
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "File Selection"
-msgstr "Èçáîð íà ôàéë"
-
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Èçòðèâà ëåíòàòà ïðåäè äà àðõèâèðà"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
-msgstr "Èçïúëíÿâà èíñòðóìåíò çà êîíôèãóðèðàíå"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "Èíñòàëàöèÿ íà Bootloader"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Ãîëåìèíà íà root-äÿëà â MB: "
+"Ðåçåðâíàòà òàáëèöà íà äÿëîâåòå íå å ñúñ ñúùàòà ãîëåìèíà\n"
+"Äà ïðîäúëæà ëè âñå ïàê ?"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Òîâà å íóæåí ïàêåò, íå ìîæå äà áúäå íåìàðêèðàí"
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "Ïðåäóïðåæäåíèå"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:362
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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
+"Ñëîæåòå äèñêåòà âúâ ôëîïèòî\n"
+"Âñè÷êè äàííè, íàìèðàùè ñå âúðõó äèñêåòàòà, ùå áúäàò çàãóáåíè"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
+msgstr "Îïèòâàì ñå äà ñïàñÿ òàáëèöàòà íà äÿëîâåòå"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) å Domain Name Server (DNS), êîéòî ñå èçïîëçâà äà ïðåâúðíå\n"
-"èìåòî íà õîñòà äî IP àäðåñ."
+#: ../../diskdrake/interactive.pm_.c:379
+msgid "Detailed information"
+msgstr "Ïîäðîáíà èíôîðìàöèÿ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr "Ñàíòà Ëó÷èÿ"
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "Ïðîìåíè ãîëåìèíàòà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "Íîåìâðè"
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "Ïðåìåñòè"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
-msgstr "Îòâúðçâàíå ..."
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "Ôîðìàòèðàé"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Report"
-msgstr "Ðàïîðò"
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "Ïðèáàâè êúì RAID"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr "Ïàëàó"
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "Ïðèáàâè êúì LVM"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "íèâî"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "Ïðåìàõíè îò RAID"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "Ïðåìàõíè îò LVM"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "Èçáîð íà ãðóïà ïàêåòè"
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "Ìîäèôèöèðàé RAID"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Ïîçâîëÿâà ëîêàëíà íàñòðîéêà\n"
-"íà õàðäóåðà"
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
+msgstr "Èçïîëçâàé çà loopback"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "Ñúçäàé íîâ äÿë"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr "Âèå ìîæå äà êîíôèãóðèðàòå âñåêè ïàðàìåòúð íà ìîäóëúò òóê."
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "Íà÷àëåí ñåêòîð: "
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Èçáåðåòå ðàçäåëèòåëíà ñïîñîáíîñò è äúëáî÷èíà íà öâåòîâåòå"
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "Ãîëåìèíà â MB: "
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
-msgstr "Äà ñèìóëèðàì ëè òðåòè áóòîí ?"
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "Âèä ôàéëîâà ñèñòåìà: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Ïðåäïî÷èòàíèå: "
+
+#: ../../diskdrake/interactive.pm_.c:481
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr "Ìîíòèðàé"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Ïîäãîòâÿì äèñêåòà ñ àâòîìàòè÷íà èíñòàëàöèÿ"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Install updates"
-msgstr "Èíñòàëèðàíå íà îáíîâëåíèÿ"
+#: ../../diskdrake/interactive.pm_.c:511
+msgid "Remove the loopback file?"
+msgstr "Äà ïðåìàõíà ëè loopback ôàéëà ?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
-msgstr "âèñî÷èíà íà ðàìêà çà òåêñò"
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "Ïðîìÿíà òèïà íà äÿëà"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "State"
-msgstr "Ñúñòîÿíèå"
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+msgid "Which filesystem do you want?"
+msgstr "Êîÿ ôàéëîâà ñèñòåìà èñêàòå ?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Ïðîâåðåòå èìàòå ëè äèñêåòà â óñòðîéñòâîòî %s"
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
+msgstr "Ïðåõîä îò ext2 êúì ext3"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Enable multiple profiles"
-msgstr "Âêëþ÷âà ìíîãî ïðîôèëè"
+msgid "Where do you want to mount loopback file %s?"
+msgstr "Êúäå èñêàòå äà ìîíòèðàòå loopback-ôàéëà %s ?"
-#: ../../fs.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr ""
+msgid "Where do you want to mount device %s?"
+msgstr "Êúäå èñêàòå äà ìîíòèðàòå óñòðîéñòâî %s ?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
+"Íå ìîãà äà ìàõíà òî÷êàòà íà ìîíòèðàíå, òúé êàòî äÿëúò ñå èçïîëçâà çà "
+"loopback.\n"
+"Ïúðâî ìàõíåòå loopback"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Local printer"
-msgstr "Ëîêàëåí ïðèíòåð"
+#: ../../diskdrake/interactive.pm_.c:606
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Êúäå èñêàòå äà ìîíòèðàòå óñòðîéñòâî %s ?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Files Restored..."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "Èç÷èñëÿâàì ãðàíèöèòå íà fat ôàéëîâàòà ñèñòåìà"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
-msgstr "Èçáîð íà ïàêåòè"
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "Ïðîìÿíà íà ãîëåìèíàòà"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritania"
-msgstr "Ìàâðèòàíèÿ"
+#: ../../diskdrake/interactive.pm_.c:662
+msgid "This partition is not resizeable"
+msgstr "Ãîëåìèíàòà íà äÿëà íå ìîæå äà áúäå ïðîìåíåíà"
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
+msgstr "Âñè÷êè äàííè íà òîçè äÿë òðÿáâà äà áúäàò àðõèâèðàíè"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:669
#, 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 "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-"Íÿìà íàìåðåí ëîêàëåí ïðèíòåð! Çà äà èíñòàëèðàòå ðú÷íî ïðèíòåð, âúâåäåòå èìå "
-"íà óñòðîéñòâî/èìå íà ôàéë âúâ âõîäíîòî ïîëå (Ïàðàëåëíè ïîðòîâå /dev/lp0, /"
-"dev/lp1, ..., ñúîòâåòñâàùè íà LPT1:, LPT2:, ..., 1-âè USB ïðèíòåð: /dev/usb/"
-"lp0, 2-ðè USB ïðèíòåð: /dev/usb/lp1, ...)."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All primary partitions are used"
-msgstr "Âñè÷êè ïúðâè÷íè äÿëîâå ñå èçïîëçâàò"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "LPD ñúðâúð \"%s\", ïðèíòåð \"%s\""
+"Ñëåä ïðîìÿíà ãîëåìèíàòà íà äÿëà %s, äàííète âúðõó íåãî ùå áúäàò çàãóáåíè"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Ñëåä êàòî ñòàíå òîâà, ïðåïîðú÷âàìå âè äà ðåñòàðòèðàòå X\n"
-"ñðåäàòà ñè, çà äà èçáåãíåòå ïðîáëåìè ñúñ ñìÿíàòà èìåòî íà õîñòà."
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "Èçáåðåòå íîâà ãîëåìèíà"
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Àâòîìàòè÷íî çàñè÷àíå è íàñòðîéêà íà õàðäóåðà ïðè ñòàðòèðàíå."
+#: ../../diskdrake/interactive.pm_.c:675
+msgid "New size in MB: "
+msgstr "Íîâà ãîëåìèíà â MB: "
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation Server Configuration"
-msgstr "Êîíôèãóðèðàíå íà Èíñòàëàöèîíåí Ñúðâúð"
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "Íà êîé äèñê èñêàòå äà ãî ïðåìåñòèòå ?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "Íàñòðîéêà íà IDE"
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "Ñåêòîð"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Ôóíêöèîíàëíîñòòà íà ìðåæàòà íå å íàñòðîåíà"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "Íà êîé ñåêòîð èñêàòå äà ãî ïðåìåñòèòå?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Configure module"
-msgstr "Íàñòðîéêà íà ìîäóë"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "Ìåñòåíå"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "Êîêîñîâè Îñòðîâè"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "Ìåñòâÿ äÿëà ... "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Òðÿáâà äà ðåñòàðòèðàòå, ïðåäè ïðîìåíèòå äà âëÿçàò â ñèëà"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr "Èçáåðåòå ñúùåñòâóâàù RAID çà ïðèáàâÿíå"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
-msgstr "Òåëåôîíåí íîìåð íà äîñòàâ÷èêà"
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "íîâ"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Host %s"
-msgstr "Õîñò %s"
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
+msgstr "Èçáåðåòå ñúùåñòâóâàù LVM çà ïðèáàâÿíå"
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
-msgstr "Ôèäæè"
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
+msgstr "LVM èìå ?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
-msgstr "Àðìåíèÿ"
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
+msgstr "Òîçè äÿë íå ìîæå äà áúäå èçïîëçâàí çà loopback"
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "Âòîðî ôëîïè óñòðîéñòâî"
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
+msgstr "Loopback"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
-msgstr "Îòíîñíî Harddrake"
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
+msgstr "Èìå íà loopback ôàéëà: "
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:831
+msgid "Give a file name"
+msgstr "Äàéòå èìå íà ôàéë"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
+msgstr "Ôàéëúò âå÷å ñå èçïîëçâà òî äðóã loopback, èçáåðåòå äðóã ôàéë."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Ñëîæåòå äèñêåòà âúâ ôëîïèòî\n"
-"Âñè÷êè äàííè, íàìèðàùè ñå âúðõó äèñêåòàòà, ùå áúäàò çàãóáåíè"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
+msgstr "Ôàéëúò âå÷å ñúøåñòâóâà. Äà ãî èçïîëçâàì ëè ?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "Ðàçìåð: %s"
+#: ../../diskdrake/interactive.pm_.c:858
+msgid "Mount options"
+msgstr "Îïöèè çà mount:"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Control è Shift êëàâèøè åäíîâðåìåíî"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
+msgstr "Ðàçëè÷íè"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "secondary"
-msgstr "âòîðè"
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "óñòðîéñòâî"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Ïðåãëåä íà Êîíôèãóðàöèÿ çà ðåçåðâíî êîïèå."
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "íèâî"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "ãîëåìèíà íà ïàð÷åòî"
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "Áåç ïàðîëà"
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
+msgstr "Âíèìàíèå: òàçè îïåðàöèÿ å îïàñíà"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nigeria"
-msgstr "Íèãåðèÿ"
+#: ../../diskdrake/interactive.pm_.c:962
+msgid "What type of partitioning?"
+msgstr "Êàêúâ òèï ðàçäåëÿíå íà äÿëîâå ?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
+#: ../../diskdrake/interactive.pm_.c:978
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
msgstr ""
+"Òîçè ïàêåò òðÿáâà äà áúäå îáíîâåí\n"
+"Ñèãóðíè ëè ñòå, ÷å èñêàòå äà ãî èçêëþ÷èòå ?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "Íÿìà äÿë, êîéòî ìîãà äà èçïîëçâàì"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:992
msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
-"Èìàòå ñëåäíèòå ñêåíåðè\n"
-"\n"
-"%s\n"
-"íà âàøàòà ñèñòåìà\n"
+"Ñúæàëÿâàì, íî íå ìîãà äà ïðèåìà äà ñúçäàì /boot òîëêîâà íàâúòðå âúðõó äèñêà "
+"(âúðõó öèëèíäúð > 1024).\n"
+"Èëè èçïîëçâàòå LILO è òî íå ðàáîòè, èëè íå èçïîëçâàòå LILO è íÿìàòå íóæäà "
+"îò /boot"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Míîãîôóíêöèîíàëíî óñòðîéñòâî íà íà ïàðàëåëåí ïîðò %s"
+#: ../../diskdrake/interactive.pm_.c:996
+msgid ""
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
+msgstr ""
+"Äÿëúò, êîéòî ñòå ìàðêèðàëè çà root (/) å ôèçè÷åñêè ðàçïîëîæåí îòâúä\n"
+"1024-èÿ öèëèíäúð íà òâúðäèÿ äèñê è íÿìàòå /boot äÿë.\n"
+"Àêî ñìÿòàòå äà èçïîëçâàòå boot ìåíèäæúðà LILO, áúäåòå âíèìàòåëíè ïðè\n"
+"ïðèáàâÿíåòî íà /boot äÿë"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1002
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."
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
msgstr ""
-"Çà äà ïå÷àòàòå íà socket èëè TCP ïðèíòåð, òðÿáâà äà ïðåäîñòàâèòå èìåòî íà "
-"õîñòà íà ïðèíòåðà è, åâåíòóàëíî, íîìåð íà ïîðò. Íà HP JetDirect ñúðâúðè, "
-"íîìåðúò íà ïîðòà îáèêíîâåííî å 9100, íà äðóãè ñúðâúðè ìîæå äà âàðèðà. Âèæòå "
-"ðúêîâîñòâîòî íà õàðäóåðà ñè."
+"Ìàðêèðàëè ñòå ñîôòóåðåí RAID äÿë êàòî root (/).\n"
+"Íÿìà çàðåæäàùà ïðîãðàìà, êîÿòî äà ìîæå äà ñå ñïðàâè ñ íåãî áåç /boot äÿë.\n"
+"Òàêà ÷å äîáàâåòå /boot äÿë"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid "Hard drive information"
-msgstr "Èíôîðìàöèÿòà çà òâúðäèÿ äèñê"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "Òàáëèöàòà íà äÿëîâåòå íà óñòðîéñòâî %s ùå áúäå çàïèñàíà âúðõó äèñêà !"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian"
-msgstr "Ðóñêà"
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
+msgstr "Òðÿáâà äà ðåñòàðòèðàòå, ïðåäè ïðîìåíèòå äà âëÿçàò â ñèëà"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1037
#, c-format
-msgid "Jordan"
-msgstr "Éîðäàíèÿ"
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr "Ñëåä ôîðìàòèðàíå íà äÿëà %s, âñè÷êè äàííè âúðõó íåãî ùå áúäàò çàãóáåíè"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Hide files"
-msgstr "Ñêðèé ôàéëîâåòå"
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "Ôîðìàòèðàíå"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Àâòîìàòè÷íî îòêðèâà ïðèíòåðè ñâúðçàíè êúì òàçè ìàøèíà"
+msgid "Formatting loopback file %s"
+msgstr "Ôîðìàòèðàíå íà loopback ôàéëà %s"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "Ñúæàëÿâàì íÿìà ôëîïè"
+msgid "Formatting partition %s"
+msgstr "Ôîðìàòèðàíå íà äÿëà %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bolivia"
-msgstr "Áîëèâèÿ"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Hide files"
+msgstr "Ñêðèé ôàéëîâåòå"
+
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Move files to the new partition"
+msgstr "Ïðåìåñòè ôàéëîâåòå íà íîâ äÿë"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1053
#, c-format
msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
+"Äèðåêòîðèÿòà %s âå÷å ñúäúðæà íÿêàêâè äàííè\n"
+"(%s)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "Ëîø ïàêåò"
+#: ../../diskdrake/interactive.pm_.c:1064
+msgid "Moving files to the new partition"
+msgstr "Ïðåìåñòè ôàéëîâåòå íà íîâ äÿë"
-#: ../advertising/07-server.pl:1
+#: ../../diskdrake/interactive.pm_.c:1068
#, 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!"
-msgstr ""
-"Ïðåâðúùà âàøàòà ìàøèíà â ìîùåí Linux ñúðâúð ñ íÿêîëêî öúêâàíèÿ íà ìèøêàòà: "
-"Web ñúðâúð, ïîùà, firewall, router, ôàéëîâ è ïðèíò ñúðâúð, ..."
+msgid "Copying %s"
+msgstr "Êîïèðàíå íà %s"
-#: ../../security/level.pm:1
+#: ../../diskdrake/interactive.pm_.c:1072
#, c-format
-msgid "DrakSec Basic Options"
-msgstr "Îñíîâíè îïöèè íà DrakSec "
+msgid "Removing %s"
+msgstr "Èçòðèâàíå íà %s"
-#: ../../standalone/draksound:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
+msgid "partition %s is now known as %s"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Romania"
-msgstr "Ðóìúíèÿ"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group"
-msgstr "Ãðóïà"
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "Óñòðîéñòâî: "
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "Canada"
-msgstr "Êàíàäà"
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "Áóêâà íà óñòðîéñòâîòî ïîä DOS: %s (ïðîñòî ïðåäïîëîæåíèå)\n"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "choose device"
-msgstr "èçáèðà óñòðîéñòâî"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "Âèä: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from LVM"
-msgstr "Ïðåìàõíè îò LVM"
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "Èìå: "
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "Timezone"
-msgstr "×àñîâà çîíà"
+msgid "Start: sector %s\n"
+msgstr "Íà÷àëî: ñåêòîð %s\n"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "German"
-msgstr "Íåìñêà"
+msgid "Size: %s"
+msgstr "Ðàçìåð: %s"
-#: ../../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
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid "Next ->"
-msgstr "Ñëåäâàù ->"
+msgid ", %s sectors"
+msgstr ", %s ñåêòîðà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in japanese language. Only "
-"use this function if you really want to print text in japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:1125
+#, fuzzy, c-format
+msgid "Cylinder %d to %d\n"
+msgstr "Îò öèëèíäúð %d äî öèëèíäúð %d\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Âåðîÿòíî å òîçè äÿë äà å\n"
-"Äðàéâåð-äÿë, ìîæå áè òðÿáâà\n"
-"òðÿáâà äà ãî îñòàâèòå.\n"
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "Ôîðìàòèðàí\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
-msgstr "Ãâèíåÿ-Áèñàó"
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "Íåôîðìàòèðàí\n"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Õîðèçîíòàëíà ñêîðîñò íà âúçñòàíîâÿâàíå"
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
+msgstr "Ìîíòèðàí\n"
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Edit"
-msgstr "Ðåäàêöèÿ"
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, c-format
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+"Loopback file(s):\n"
+" %s\n"
msgstr ""
-"Íå ìîãà äà ìàõíà òî÷êàòà íà ìîíòèðàíå, òúé êàòî äÿëúò ñå èçïîëçâà çà "
-"loopback.\n"
-"Ïúðâî ìàõíåòå loopback"
+"Loopback ôàéë(îâå):\n"
+" %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1132
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\""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
+"Äÿë, êîéòî ñå ñòàðòèðà ïî ïîäðàçáèðàíå\n"
+" (çà MS-DOS boot, íå çà lilo)\n"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "USB controllers"
-msgstr "USB êîíòðîëåðè"
-
-#: ../../Xconfig/various.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "What norm is your TV using?"
-msgstr "Êàêúâ å òèïúò íà èçïîëçâàíèÿò TV ?"
+msgid "Level %s\n"
+msgstr "Íèâî %s\n"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "Type:"
-msgstr "Òèï: "
+msgid "Chunk size %s\n"
+msgstr "Ðàçìåð íà ïàð÷åòî %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Share name"
-msgstr "Îáùî èìå"
+msgid "RAID-disks %s\n"
+msgstr "RAID-äèñêîâå %s\n"
-#: ../../standalone/drakgw:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "enable"
-msgstr "âêëþ÷è"
+msgid "Loopback file name: %s"
+msgstr "Èìå íà loopback ôàéëà: %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-"Ñâúðçâàíå ñ Mandrake Linux web ñàéò çà ïîëó÷àâàíå íà ñïèñúêà ñ íàëè÷íè "
-"îãëåäàëíè ñúðâúðè..."
+"\n"
+"Âåðîÿòíî å òîçè äÿë äà å\n"
+"Äðàéâåð-äÿë, ìîæå áè òðÿáâà\n"
+"òðÿáâà äà ãî îñòàâèòå.\n"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"Èçíèêíà ïðîáëåì ïðè ðåñòàðòèðàíåòî íà ìðåæàòà:\n"
"\n"
-"%s"
+"Òàçè ñïåöèàëíà ñòàðòèðàùà\n"
+"èâèöà íà äÿëà å çà äâîéíî\n"
+"ñòàðòèðàíå íà ñèñòåìàòà âè.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove the loopback file?"
-msgstr "Äà ïðåìàõíà ëè loopback ôàéëà ?"
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Èçáðàíàòà ãîëåìèíà å ïî-ãîëÿìà îò äîñòúïíîòî ïðîñòðàíñòâî"
+msgid "Size: %s\n"
+msgstr "Ðàçìåð: %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "NCP server name missing!"
-msgstr "Ëèïñâà èìå íà NCP ñúðâúð !"
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Ãåîìåòðèÿ: %s öèëèíäðè, %s ãëàâè, %s ñåêòîðè\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose your country."
-msgstr "Ìîëÿ, èçáåðåòå âàøàòà ñòðàíà."
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
+msgstr "Èíôîðìàöèÿ: "
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Àðõèâíè ôàéëîâå íà õàðääèñêà"
+msgid "LVM-disks %s\n"
+msgstr "LVM-äèñêîâå %s\n"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid "Laotian"
-msgstr "Ëàîñêà"
+msgid "Partition table type: %s\n"
+msgstr "Òèï íà òàáëèöàòà ñ äÿëîâå: %s\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Samoa"
-msgstr "Ñàìîà"
+#: ../../diskdrake/interactive.pm_.c:1169
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
+msgstr "íà øèíà %d àäðåñ %d\n"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"rstat ïðîòîêîëà ïîçâîëÿâà íà ìðåæîâèòå ïîòðåáèòåëè äà èçâëè÷àò\n"
-"ïàðàìåòðèòå íà âúçìîæíîñòèòå çà âñÿêà ìàøèíà íà ìðåæàòà."
+#: ../../diskdrake/interactive.pm_.c:1199
+#, fuzzy
+msgid "Filesystem encryption key"
+msgstr "Âèä ôàéëîâà ñèñòåìà: "
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Re-generating list of configured scanners ..."
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module configuration"
-msgstr "Íàñòðîéêà íà ìîäóë"
+#: ../../diskdrake/interactive.pm_.c:1203
+#, fuzzy, c-format
+msgid "This encryption key is too simple (must be at least %d characters long)"
+msgstr "Ïàðîëàòà å ïðåêàëåíî ïðîñòà (òðÿáâà äà áúäå äúëãà ïîíå %d ñèìâîëà)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Scanner"
-msgstr "Ñêåíåð"
+#: ../../diskdrake/interactive.pm_.c:1204
+#, fuzzy
+msgid "The encryption keys do not match"
+msgstr "Ïàðîëèòå íà ñúâïàäàò"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
msgstr ""
-"Âíèìàíèå: òåñòâàíåòî íà òàçè ãðàôè÷íà êàðòà ìîæå äà çàìðàçè êîìïþòúðà âè"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
msgstr ""
-"Ïîòðåáèòåëñêîòî èìå ìîæå äà âêëþ÷âà ñàìî ìàëêè áóêâè, íîìåðà, `-' è `_'"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "Äîáðå äîøëè ïðè Cracker-èòå"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "Îïöèè íà ìîäóëà:"
+#: ../../diskdrake/removable.pm_.c:47
+msgid "Change type"
+msgstr "Ïðîìÿíè òèïà"
-#: ../advertising/11-mnf.pl:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
+msgid "Can't login using username %s (bad password?)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Ïðîäúëæè áåç íàñòîéêà íà ìðåæàòà"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Abort"
-msgstr "Îòêàç"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr ""
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Èäåíòèôèêàöèÿ"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington THinking Mouse ñ êîëåëöå"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Èíòåðíåò"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Èçïîëçâàíå íà îòäàëå÷åíè ñêåíåðè"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Ïîòðåáèòåëñêî èìå"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
+"Please enter your username, password and domain name to access this host."
msgstr ""
-"Âàøèÿò Windows äÿë å ìíîãî ôðàãìåíòèðàí, ìîëÿ ïúðâî ñòàðòèðàéòå ''defrag''"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Äâîðàê (Íîðâåæêà)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Ïðîãðåñ çà ðåçåðâíî êîïèå íà òâúðä äèñê..."
-
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Íå ìîãà äà íàïðàâÿ 'fork': %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "Âèä: "
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+#, fuzzy
+msgid "Username"
+msgstr "Ïîòðåáèòåëñêî èìå"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Ðåäàêòèðà êëèåíò"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS äîìåéí"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "no fonts found"
-msgstr "íÿìà íàìåðåíè øðèôòîâå"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+#, fuzzy
+msgid "Search servers"
+msgstr "DNS ñúðâúð"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "Mouse"
-msgstr "Ìèøêà"
+msgid "%s formatting of %s failed"
+msgstr "%s ôîðìàòèðàíå îò %s ïðîâàëåíî"
-#: ../../bootloader.pm:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "not enough room in /boot"
-msgstr "íÿìà äîñòàòú÷íî ìÿñòî çà /boot"
+msgid "I don't know how to format %s in type %s"
+msgstr "íå çíàì êàê äà ôîðìàòèðàì %s â òèï %s"
-#: ../../install_steps_gtk.pm:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "trying to promote %s"
+msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Liechtenstein"
-msgstr "Ëèõòåíùàéí"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid "Host name"
-msgstr "Èìå íà õîñò:"
+msgid "error unmounting %s: %s"
+msgstr "ãðåøêà ïðè äåìîíòèðàíåòî íà %s: %s"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the color of the progress bar"
-msgstr "öâåòúò íà ëåíòàòà çà ïðîãðåñ"
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "ïðîñò"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Fonts Files"
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to RAID"
-msgstr "Ïðèáàâè êúì RAID"
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "ñúðâúð"
-#: ../../help.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
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"
+"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"
-" * 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."
+"Do you agree to loose all the partitions?\n"
msgstr ""
+"Íå ìîãà äà ðàç÷åòà òàáëèöàòà íà äÿëîâåòå, ïðåêàëåíî å ïîâðåäåíà çà ìåí :(\n"
+"Ìîãà äà ñå îïèòàì äà èç÷èñòÿ ëîøèòå äÿëîâå (ÂÑÈ×ÊÈ ÄÀÍÍÈ ùå áúäàò "
+"çàãóáåíè!).\n"
+"Äðóãî ðåøåíèå å äà çàáðàíèòå íà DrakX ïîïðàâÿ òàáëèöàòà ñ äÿëîâå.\n"
+"(ãðåøêàòà å %s)\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr ""
-"Ïðèíòåðúò \"%s\" å áèë óñïåøíî äîáàâåí êúì Star Office/OpenOffice.org/GIMP."
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr "Íå ìîæåòå äà èçïîëçâàòå JFS çà äÿë ïî-ìàëúê îò 16 ÌÁ"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Íÿìà ôëîïè óñòðîéñòâî!"
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "Íå ìîæåòå äà èíñòàëèðàíå ReiserFS íà äÿë ïî-ìàëúê îò 32 ÌÁ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"Çà äà âèäèòå ñïèñúê íà äîñòúïíèòå îïöèè çà òåêóùèÿ ïðèíòåð, èëè ïðî÷åòåòå "
-"ñïèñúêà ïîêàçàí ïî-äîëó èëè öúêíåòå íà áóòîíà \"Ñïèñúê ñ îïöèè çà ïå÷àò\". %s"
-"%s%s\n"
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
+msgstr "Òî÷êèòå íà ìîíòèðàíå òðÿáâà äà çàïî÷âàò ñ /"
-#: ../../lang.pm:1
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "Saudi Arabia"
-msgstr "Ñàóäèòñêà Àðàáèÿ"
+msgid "There is already a partition with mount point %s\n"
+msgstr "Âå÷å èìà äÿë ñ òàçè ìÿñòî íà ìîíòèðàíå %s\n"
-#: ../../services.pm:1
+#: ../../fsedit.pm_.c:526
#, c-format
-msgid "Internet"
-msgstr "Èíòåðíåò"
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr "Íå ìîæåòå äà èçïîëçâàòå LVM ëîãè÷åñêè òèï çà ìÿñòî íà ìîíòèðàíå %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "Ïðîäúëæåíèå âúïðåêè âñè÷êî ?"
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
+msgstr "Òàçè äèðåêòîðèÿ òðÿáâà äà îñòàíå â ðàìêèòå íà root ôàéëîâàòà ñèñòåìà."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:530
+#, fuzzy
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr "Àêî âàøèÿò ïðèíòåð íå å â ñïèñúêà, èçáåðåòå ñúâìåñòèì èëè ïîäîáåí."
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer"
-msgstr "Ïðèíòåð"
-
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices were added:\n"
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
+"Íóæäàåòå ñå îò èñòèíñêà ôàéëîâà ñèñòåìà (ext2, reiserfs) çà òàçè òî÷êà íà "
+"ìîíòèðàíå\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Ãåîìåòðèÿ: %s öèëèíäðè, %s ãëàâè, %s ñåêòîðè\n"
+#: ../../fsedit.pm_.c:532
+#, fuzzy, c-format
+msgid "You can't use an encrypted file system for mount point %s"
+msgstr "Íå ìîæåòå äà èçïîëçâàòå LVM ëîãè÷åñêè òèï çà ìÿñòî íà ìîíòèðàíå %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Ïå÷àòàíå íà ïðèíòåð \"%s\""
+#: ../../fsedit.pm_.c:599
+#, fuzzy
+msgid "Not enough free space for auto-allocating"
+msgstr "Íÿìà äîñòàòú÷íî ìÿñòî çà àâòîìàòè÷íî çàåìàíå"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
msgstr ""
-"/etc/hosts.allow è /etc/hosts.deny âå÷å ñà êîíôèãóðèðàíè - íå ñà ïðîìåíåíè"
-#: ../../standalone/drakbackup:1
+#: ../../fsedit.pm_.c:694
#, c-format
-msgid "Restore From Tape"
-msgstr "Âúçñòàíîâÿâà îò ëåíòà"
+msgid "Error opening %s for writing: %s"
+msgstr "Ãðåøêà ïðè îòâàðÿíå íà %s çà çàïèñ: %s"
-#: ../../standalone/drakbug:1
-#, 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."
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the profile to configure"
-msgstr "Èçáåðåòå ïðîôèë çà íàñòðîéêà"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
msgstr ""
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../harddrake/sound.pm_.c:171
#, c-format
msgid ""
-"\n"
-"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Àðõèâèðàíå îò êîíôèãóðàöèîíåí ôàéë"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr "Òî÷êèòå çà ìîíòèðàíå òðÿáâà äà ñúäúðæàò ñàìî áóêâè è öèôðè"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Ðåñòàðòèðàíå íà ïðèíòåðíàòà ñèñòåìà"
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Íàñòðîéêà"
-#: ../../../move/tree/mdk_totem:1
+#: ../../harddrake/sound.pm_.c:174
#, c-format
-msgid "You can only run with no CDROM support"
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "Âèæ õàðäóåðíàòà èíôîðìàöèÿ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
-msgstr "Äåí"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr "Ïúðâè ñåêòîð îò ñòàðòèðàùèÿ ñå äÿë"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Ïðîèçâîäèòåë íà ïðèíòåðà, ìîäåë"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Ïå÷àòàé, Áåç Îïàøêà"
-
-#: ../../standalone.pm:1
+#: ../../harddrake/sound.pm_.c:176
#, 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)"
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Ìàñêà íà ïîäìðåæà:"
+#: ../../harddrake/sound.pm_.c:178
+#, fuzzy
+msgid "Driver:"
+msgstr "Äðàéâåð"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Set password expiration and account inactivation delays"
-msgstr ""
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+#, fuzzy
+msgid "Help"
+msgstr "/_Ïîìîù"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
msgstr ""
-#: ../../Xconfig/monitor.pm:1
-#, c-format
+#: ../../harddrake/sound.pm_.c:186
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"
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Äâàòà êðèòè÷íè ïàðàìåòúðà ñà âåðòèêàëíàòà ñêîðîñò íà âúçñòàíîâÿâàíå, êîÿòî "
-"îòðàçÿâà ñêîðîñòòà, \n"
-"ñ êîÿòî öåëèÿò åêðàí ñå âúçñòàíîâÿâà, è íàé-âàæíîòî - õîðèçîíòàëíàòà\n"
-"ñèíõðîíèçàöèîííà ñêîðîñò, êîÿòî îòðàçÿâà ñêîðîñòòà, ñ êîÿòî ñå èçïèñâàò "
-"õîðèçîíòàëíèòå ëèíèè.\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
-"ÌÍÎÃÎ Å ÂÀÆÍÎ äà èçáåðåòå òàêàâà ñèíõðîíèçàöèîííàòà ñêîðîñò, êîÿòî äà "
-"îòãîâàðÿ íà âúçìîæíîñòèòå íà Âàøèÿ ìîíèòîð - â ïðîòèâåí ñëó÷àé ìîæåòå äà "
-"ïîâðåäèòå ìîíèòîðà ñè.\n"
-" Àêî èìàòå íÿêàêâè ñúìíåíèÿ, èçáåðåòå êîíñåðâàòèâíà íàñòðîéêà."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
-msgstr "Ìîäèôèöèðà"
+"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 ""
-#: ../../printer/printerdrake.pm:1
+#: ../../harddrake/sound.pm_.c:202
#, c-format
msgid ""
+"The old \"%s\" driver is blacklisted.\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 ""
+"It has been reported to oopses the kernel on unloading.\n"
"\n"
-"Êîìàíäèòå \"%s\" è \"%s\" ñúùî òàêà ïîçâîëÿâàò äà ïîïðàâÿòå èçáðàíèòå "
-"íàñòðîéêè çà îïðåäåëåíà ðàáîòà íà ïðèíòåðà. Ïðîñòî äîáàâåòå èñêàíèòå "
-"íàñòðîéêè êúì êîìàíäíèÿ ðåä, íàïð. \"%s <file>\".\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Insert floppy"
-msgstr "Ñëîæåòå äèñêåòà âúâ ôëîïèòî"
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+msgid "Please Wait... Applying the configuration"
+msgstr "Ìîëÿ, ïî÷àêàéòå ... Ïðèëàãàíå íà íàñòðîéêèòå"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid ""
-"WebDAV is a protocol that allows you to mount a web server's directory\n"
-"locally, and treat it like a local filesystem (provided the web server is\n"
-"configured as a WebDAV server). If you would like to add WebDAV mount\n"
-"points, select \"New\"."
-msgstr ""
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "Ìîëÿ èç÷àêàéòå"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "HardDrake"
+#: ../../harddrake/sound.pm_.c:210
+msgid "No known driver"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
-msgstr "íîâ"
-
-#: ../../security/help.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid "Enable/Disable syslog reports to console 12"
+msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Æåëàåòå ëè äà îïèòàòå ïàê ?"
-
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "Ìàãüîñíèê"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected server"
-msgstr "Íàñòðîéêà íà èçáðàíèÿ ñúðâúð"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Ìîëÿ, èçáåðåòå êúäå ùå æåëàåòå äà àðõèâèðàòå"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Íàëàãà ñå ðà ðåñòàðòèðàòå, ïðåäè ìîäèôèêàöèèòå äà ïðåäèçâèêàò åôåêò"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
-msgstr ""
+#: ../../harddrake/sound.pm_.c:214
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Íåèçâåñòåí ìîäåë"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, c-format
msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-"Íåóñïåøíà ïðîâåðêà íà ôàéëâà ñèñòåìà %s. Èñêàòå ëè äà îïðàâèòå ãðåøêèòå? "
-"(áúäåòå âíèìàòåëíè, ìîæå äà çàãóáèòå äàííè)"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Ìîëÿ, èçáåðåòå ïîäðåæäàíå íà êëàâèàòóðàòà."
-
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "Ñòàíäàðòíà"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Ìîëÿ, èçáåðåòå òèï íà ìèøêàòà."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
-msgstr "Ñâúðçâàíå ..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "ÍÍåóñïåøíà íàñòðîéêà íà ïðèíòåð \"%s\"!"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "not configured"
-msgstr "íå å êîíôèãóðèðàí"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "About"
-msgstr "Îòíîñíî"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "Íàñòðîéêà íà proxy"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Íà÷àëî: ñåêòîð %s\n"
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Èçïîëçâàé àâòîìàòè÷íî çàñè÷àíå"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Mask"
-msgstr "Ëîøà ìàñêà"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Îáù"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface already configured"
-msgstr "Ìðåæîâèÿò èíòåðôåéñ âå÷å å êîíôèãóðèðàí"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
-msgstr "Íÿìàì äîñòúï äî ôëîïè!"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
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."
+"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 ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Mail Server"
-msgstr "Ïîùåíñêè ñúðâúð"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "Ìîëÿ, öúêíåòå íà äÿëà"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Ìíîãîôóíêöèîíàëíî óñòðîéñòâî íà HP JetDirect"
+#: ../../harddrake/v4l.pm_.c:227
+#, fuzzy
+msgid "Card model:"
+msgstr "Ïàìåò (DMA) íà êàðòàòà"
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linux"
+#: ../../harddrake/v4l.pm_.c:228
+#, fuzzy
+msgid "Tuner type:"
+msgstr "Ïðîìÿíè òèïà"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Upgrade %s"
-msgstr "Îáíîâÿâà %s"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Èçáåðåòå âðúçêà êúì ïðèíòåðà"
+#: ../../harddrake/v4l.pm_.c:231
+#, fuzzy
+msgid "PLL setting:"
+msgstr "Ôîðìàòèðàíå"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr "Íà÷àëî íà IP îáõâàò:"
-
-#: ../../services.pm:1
-#, 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."
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
msgstr ""
-"Internet superserver daemon (÷åñòî íàðè÷àí inetd) ïóñêà ðàçëè÷íè äðóãè\n"
-"Èíòåðíåò óñëóãè. Òîé îòãîâàðÿ çà ïóñêàíåòî íà ìíîãî óñëóãè îò ðîäà íà\n"
-"telnet, ftp, rsh è rlogin. Èçêëþ÷âàíåòî íà inetd èçêëþ÷âà âñè÷êè óñëóãè,\n"
-"çà êîèòî îòãîâàðÿ."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
-msgstr "âèñî÷èíàòà íà ëåíòàòà çà ïðîãðåñ"
+"GNU/Linux å ìíîãîïîòðåáèòåëñêà ñèñòåìà, êîÿòî îçíà÷àâà, ÷å âñåêè ïîòðåáèòåë "
+"ìîæå\n"
+"äà èìà ñâîè ïðåäïî÷åòàíèÿ, ôàéëîâå è ò.í.. ìîæåòå äà ïðî÷åòåòå Ðúêîâîñòâîòî "
+"íà\n"
+"Ïîòðåáèòåëÿ, çà äà íàó÷èòå ïîâå÷å.\n"
+"Çà ðàçëèêà îò Root, êîéòî å àäìèíèñòðàòîðúò, ïîòðåáèòåëèòå, êîèòî ùå "
+"äîáàâèòå òóê\n"
+"íÿìà äà ìîãàò äà ïðîìåíÿò íèùî îñâåí ñîáñòâåíèòå ñè ôàéëîâå è òåõíèòå "
+"íàñòðîéêè.\n"
+"Ùå òðÿáâà äà ñúçäàäåòå ïîíå åäèí îáèêíîâåí ïîòðåáèòåë çà ñåáå ñè.\n"
+"Ñ òîçè àêàóíò ùå òðÿáâà äà âëèçàòå çà ðóòèííà äåéíîñò. Âúïðåêè òîâà "
+"ïðàêòèêàòà\n"
+"äà âëèçàòå êàòî root åæåäíåâíî, ìîæå äà áúäå ìíîãî îïàñíà ! È íàé-"
+"ìàëêàòàãðåøêà\n"
+"ìîæå äà îçíà÷àâà, ÷å ñèñòåìàòà âè íÿìà äà ðàáîòè ïîâå÷å. Àêî íàïðàâèòå íÿêîÿ "
+"ñåðèîçíà\n"
+"ãðåøêà êàòî ïîòðåáèòåë, òîâà ìîæå ñà äà äîâåäå äî çàãóáà íà ÷àñò îò "
+"èíôîðìàöèÿòà,\n"
+"íî íå è íà öÿëàòà ñèñòåìà.\n"
+"\n"
+"Ïúðâî, òðÿáâà äà ñè âúâåäåòå èìåòî. Òîâà íå å çàäúëæèòåëíî, ðàçáèðà ñå, "
+"âñúùíîñò\n"
+"ìîæåòå äà âúâåäåòå êàêâîòî è äà å. DrakX ñëåä òîâà ùå èçáåðå ïúðâàòà "
+"âúâåäåíà\n"
+"â êóòèéêàòà äóìà è ùå ãî èçêàðà êàòî ïîòðåáèòåëñêî èìå. Òîâà å èìåòî, ñ "
+"êîåòî\n"
+"âñúùíîñò îïðåäåëåíèÿò ïîòðåáèòåë ùå âëèçà â ñèñòåìàòà. Ìîæåòå äà ãî "
+"ïðîìåíèòå.\n"
+"Òðÿáâà äà âúâåäåòå è ïàðîëà òóê. Ïàðîëàòà íà íåïðåâèëåãèðîâàí (îáèêíîâåí) "
+"ïîòðåáèòåë\n"
+"íå å òîëêîâà ôàòàëíà êàòî òàçè íà Root îò ãëåäíà òî÷êà íà ñèãóðíîñòòà, íî "
+"âñå\n"
+"ïàê íÿìà ïðè÷èíà äà ÿ ïîäöåíÿâàòà, òúé êàòî ðèñêóâàòå ôàéëîâåòå ñè.\n"
+"\n"
+"Ñëåä êàòî öúêíåòå íà \"Ïðèåìè ïîòðåáèòåë\", ìîæåòå äà äîáàâèòå êîëêîòî ñè "
+"èñêàòå.\n"
+"Äîáàâåòå ïî åäèí ïîòðåáèòåë çà âñåêè îò ïðèÿòåëèòå ñè: áàùà ñè, ñåñòðà ñè, "
+"íàïðèìåð.\n"
+"Êîãàòî ñòå äîáàâèëè âñè÷êè ïîòðåáèòåëè, êîèòî èñêàòå, öúêíåòå Ãîòîâî.\n"
+"\n"
+"Öúêíåòå íà áóòîíà \"Íàïðåäíè÷àâ\", çà äà ïðîìåíèòå îáâèâêàòà ïî ïîäðàçáèðàíå "
+"íà\n"
+"ïîòðåáèòåëÿ (bash ïî ïîäðàçáèðàíå)."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:48
msgid ""
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
"\n"
-"- Save via %s on host: %s\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
msgstr ""
+"Ïî-ãîðå ñà èçáðîåíè çàñå÷åíèòå Linux äÿëîâå ñúùåñòâóâàùè\n"
+"íà òâúðäèÿ âè äèñê. Ìîæåòå äà çàïàçèòå èçáîðà íàïðàâåí îò ìàãüîñíèêà, òå ñà\n"
+"äîáðè çà îáùà óïîòðåáà. Àêî ãè ïðîìåíèòå, òðÿáâà äà ïîíå äà îïðåäåëèòå\n"
+"root äÿë (\"/\"). Íå èçáèðàéòå ïðåêàëåíî ìàëêè äÿëîâå, çàùîòî íÿìà äà "
+"ìîæåòå\n"
+"äà èíñòàëèðàòå äîñòàòú÷íî ñîôòóåð. Àêî èñêàòå äà ñúõðàíÿâàòå äàííèòå ñè íà\n"
+"îòäåëåí äÿë, òðÿáâà äà èçáåðåòå \"/home\" (âúçìîæíî å ñàìî, àêî èìàòå "
+"ïîâå÷å\n"
+"îò åäèí Linux äÿë).\n"
+"\n"
+"\n"
+"Çà èíôîðìàöèÿ, âñåêè äÿë å ïîêàçàí, êàêòî ñëåäâà: \"Èìå\", \"Êàïàöèòåò\".\n"
+"\n"
+"\n"
+"\"Èìåòî\" ñå êîäèðà êàêòî ñëåäâà: \"òèï íà äèñêà\", \"íîìåð íà äèñêà\",\n"
+"\"íîìåð íà äÿë\" (íàïðèìåð, \"hda1\").\n"
+"\n"
+"\n"
+"\"Òèïúò íà äèñêà\" ìîæå äà å \"hd\", àêî å IDE òâúðä äèñê, èëè \"sd\", àêî "
+"å\n"
+"SCSI òâúðä äèñê.\n"
+"\n"
+"\n"
+"\"Íîìåðúò íà äèñêà\" âèíàãè å áóêâàòà ñëåä \"hd\" èëè \"sd\". Ïðè IDE "
+"äèñêîâå:\n"
+"\n"
+" * \"a\" îçíà÷àâà \"master äèñê íà ïúðâèÿ IDE êîíòðîëåð\",\n"
+" * \"b\" îçíà÷àâà \"slave äèñê íà ïúðâèÿ IDE êîíòðîëåð\",\n"
+" * \"c\" îçíà÷àâà \"master äèñê íà âòîðèÿ IDE êîíòðîëåð\",\n"
+" * \"d\" îçíà÷àâà \"slave äèñê íà âòîðèÿ IDE êîíòðîëåð\".\n"
+"\n"
+"\n"
+"Ïðè SCSI óñòðîéñòâà, \"a\" îçíà÷àâà \"ïúðâè òâúðä äèñê\", \"b\" îçíà÷àâà "
+"\"âòîðè òâúðä äèñê\" è ò.í.."
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "Àðæåíòèíà"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Domain Name Server"
-msgstr "Domain Name Server"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Level:"
-msgstr "Íèâî íà ñèãóðíîñò:"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr "Òî÷êèòå íà ìîíòèðàíå òðÿáâà äà çàïî÷âàò ñ /"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Èçáåðåòå âàøåòî CD/DVD óñòðîéñòâî"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "CUPS server"
-msgstr "DNS ñúðâúð"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Postfix Ïîùåíñêè ñúðâúð"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "Èçõîä áåç çàïèñ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "Éåìåí"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
-msgstr "Òîçè ïðîäóêò å äîñòúïåí îò web ñàéòà íà MandrakeStore"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Èìà ìíîãî íåùà çà èçáîð îò (%s).\n"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
+#: ../../help.pm_.c:79
+msgid ""
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
+"Èíñòàëàöèÿòà íà Mandrake Linux å ðàçïîëîæåíà íà íÿêîëêî CDROM-à. DrakX\n"
+"çíàå äàëè èçáðàí ïàêåò íå ñå íàìèðà íà äðóã CDROM èëè ùå èçâàäè òåêóùîòî\n"
+"CD è ùå âè îñòàâè äà âêàðàòå òîâà, îò êîåòî èìà íóæäà."
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../help.pm_.c:84
+#, fuzzy
msgid ""
-"An error occurred:\n"
+"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"
+"you are not supposed to know them all by heart.\n"
"\n"
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
"\n"
-"%s\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
+"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
+"\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
+"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
"\n"
-"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"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\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."
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
+"\n"
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
+"Ñåãà å ìîìåíòúò äà îïðåäåëèòå êîè ïðîãðàìè èñêàòå äà áúäàò èíñòàëèðàíè íà\n"
+"ñèñòåìàòà âè. Â Mandrake Linux äèñòðèáóöèÿòà èìà õèëÿäè ïàêåòè, íî íå å\n"
+"çàäúëæèòåëíî äà ãè çíàåòå íàèçóñò.\n"
+"\n"
+"Àêî èçâúðøâàòå ñòàíäàðòíà èíñòëàöèÿ îò CDROM, ïúðâî ùå áúäåòå ïîïèòàíè êîè\n"
+"CD-òà èìàòå (â Åêñïåðòåí ðåæèì). Ïðîâåðåòå çàãëàâèÿòà íà CD-òàòà è ïîñî÷åòå\n"
+"êóòèéêèòå ñúîòâåòñòâàùè íà CD-òàòà, ñ êîèòî ðàçïîëàãàòå. Öúêíåòå \"OK\",\n"
+"êîãàòî ñòå ãîòîâè äà ïðîäúëæèòå.\n"
+"\n"
+"Ïàêåòèòå ñà ïîäðåäåíè â ãðóïè ñúîòâåòñòâàùè íà ïðàêòè÷åñêàòà óïîòðåáà íà\n"
+"ìàøèíàòà âè. Ãðóïèòå, ñàìè ïî ñåáå ñè, ñà ïîäðåäåíè â ÷åòèðè ñåêöèè:\n"
+"\n"
+" * \"Ðàáîòíà ñòàíöèÿ\": àêî ñìÿòàòå äà èçïîëçâàòå ìàøèíàòà ñè êàòî ðàáîòíà "
+"ñòàíöèÿ,\n"
+"èçáåðåòå åäíà èëè ïîâå÷å ñúîòâåòíèòå ãðóïè.\n"
+"\n"
+" * \"Ðàçðàáîòêà\": àêî ìàøèíàòà âè ùå áúäå èçïîëçâàíå çà ïðîãðàìèðàíå, "
+"èçáåðåòå\n"
+"æåëàíàòà(èòå) ãðóïà(è).\n"
+"\n"
+" * \"Ñúðâúð\": íàêðàÿ, àêî ìàøèíàòà âè ùå áúäå èçïîëçâàíà çà ñúðâúð, ùå\n"
+"ìîæåòå äà èçáåðåòå êîè îò íàé-÷åñòî èçïîëçâàíèòå óñëóãè èñêàòå äà èìàòå\n"
+"èíñòàëèðàíè íà ìàøèíàòà.\n"
+"\n"
+" * \"Ãðàôè÷íà ñðåäà\": òóê ìîæåòå äà èçáåðåòå ïðåäïî÷èòàíàòà ãðàôè÷íà "
+"ñðåäà.\n"
+"Ïîíå åäíà òðÿáâà äà áúäå èçáðàíà, àêî èñêàòå äà èìàòå ãðàôè÷íà ñðåäà !\n"
+"\n"
+"Ïðåìåñòâàéêè êóðñîðà íà ìèøíàòà íàä èìåòî íà ãðóïàòà, ùå âèäèòå êðàòúê\n"
+"îáÿñíåíèòåëåí òåêñò çà íåÿ.\n"
+"\n"
+"Ìîæåòå äà öúêíåòå êóòèéêàòà \"Èíäèâèäóàëåí èçáîð íà ïàêåòè\", êîÿòî å "
+"ïîëåçíà,\n"
+"àêî ñòå çàïîçíàòè ñ ïàêåòèòå, êîèòî ùå âè áúäàò ïðåäëîæåíè èëè àêî èñêàòå "
+"äà\n"
+"èìàòå ïúëåí êîíòðîë íàä òîâà, êîåòî äà áúäå èíñòàëèðàíî.\n"
+"\n"
+"Àêî ñòå çàïî÷íàëè èíñòàëàöèÿòà â ðåæèì íà \"Îáíîâÿâàíå\", ìîæåòå äà "
+"èçêëþ÷èòå\n"
+"âñè÷êè ãðóïè, çà äà èçáåãíåòå èíñòàëèðàíåòî íà íîâè ïàêåòè. Òîâà å ïîëåçíî\n"
+"ïðè ïîïðàâêà èëè îáíîâÿâàíå íà ñúùåñòâóâàùàòà ñèñòåìà."
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "Çàñè÷àíå íà äèñêîâåòå"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../help.pm_.c:135
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
msgstr ""
-"Âèå íå ñòå èçáðàëè íèêàêâà ãðóïà îò ïàêåòè.\n"
-"Ìîëÿ, èçáåðåòå ìèíèìàëíàòà èíñòàëàöèÿ êîÿòè èñêàòå:"
+"Íàêðàÿ, â çàâèñèìîñò îò èçáîðà âè äàëè äà èçáèðàòå ïàêåòè åäèí ïî åäèí, ùå\n"
+"âè áúäå ïðåäñòàâåíî äúðâî ñúäúðæàùî âñè÷êè ïàêåòè ïîäðåäåíè ïî ãðóïè è\n"
+"ïîäðãðóïè. Äîêàòî îáõîæäàòå äúðâîòî, ìîæåòå äà èçáåðåòå öåëè ãðóïè, "
+"ïîäãðóïè\n"
+"èëè îòäåëíè ïàêåòè.\n"
+"\n"
+"Êîãàòî ïîñî÷èòå ïàêåò îò äúðâîòî, ùå ñå ïîÿâè îïèñàíèå âäÿñíî. Êîãàòî\n"
+"èçáîðúò å ïðèêëþ÷åí, öúêíåòå áóòîíà \"Èíñòàëèðàé\", êîéòî ùå ïóñíå ïðîöåñà\n"
+"íà èíñòàëàöèÿ. Â çàâèñèìîñò îò ñêîðîñòòà íà õàðäóåðà âè è áðîÿ íà ïàêåòèòå,\n"
+"êîèòî èñêàòå äà áúäàò èíñòàëèðàíè, ïðîöåñúò ìîæå äà îòíåìå èçâåñòíî âðåìå.\n"
+"Î÷àêâàíîòî âðåìå çà ïðèêëþ÷âàíå íà ïðîöåñà, ÷å áúäå ïîêàçàíî íà åêðàòà, çà\n"
+"äà âè ïîìîãíå äà ïðåöåíèòå äàëè èìàòå äîñòàòú÷íî âðåìå äà ñå íàñëàäèòå íà\n"
+"÷àøà êàôå.\n"
+"\n"
+"!! Àêî å èçáðàí ñúðâúðåí ïàêåò, áèëî òî óìèøëåíî èëè çàùîòî å ÷àñò îò öÿëà\n"
+"ãðóïà, ùå áúäåòå ïîìîëåíè çà ïîòâúðæäåíèå, ÷å íàèñòèíà èñêàòå òîçè ñúðâúð\n"
+"äà áúäå èíñòàëèðàí.  Mandrake Linux, âñè÷êè ñúðâúðè òðúãâàò ïî "
+"ïîäðàçáèðàíå\n"
+"ïðè çàðåæäàíå.Äàæå àêî ñà ñèãóðíè è íÿìàò èçâåñòíè ïðîáëåìè, êîãàòî\n"
+"äèñòðèáóöèÿòà ñå ðàçïðîñòðàíÿâà, ìîæå äà ñå ñëó÷è òàêà, ÷å äà ñå ïîÿâÿò\n"
+"äóïêè â ñèãóðíîñòòà, ñëåä êàòî âåðñèÿòà íà Mandrake Linux å çàâúðøåíà. Àêî\n"
+"íå çíàåòå çà êàêâî ñëóæè îïðåäåëåíà óñëóãà èëè çàùî å èíñòàëèðàíà, öúêíåòå\n"
+"\"Íå\". Ñ öúêàíå íà \"Äà\" ùå èíñòàëèðàòå èçáðîåíè óñëóãè è òå ùå áúäàò\n"
+"ñòàðòèðàíè àâòîìàòè÷íî ïî ïîäðàçáèðàíå. !!\n"
+"\n"
+"Îïöèÿòà \"Àâòîìàòè÷íè çàâèñèìîñòè\" èçêëþ÷âà ïðåäóïðåäèòåëíèòå äèàëîçè,\n"
+"êîãàòî èíñòàëàòîðúò àâîìàòè÷íî ðåøè èçáåðå ïàêåò. Òîâà ñå ñëó÷âà, çàùîòî\n"
+"å ðåøèë, ÷å ñå íóæäàå äà çàäîâîëè çàâèñèìîñò ñ äðóã ïàêåò, çà äà ïðèêëþ÷è\n"
+"óñïåøíî èíñòàëàöèÿòà.\n"
+"\n"
+"Ìàëêàòà èêîíêà íà äèñêåòêà â äúíîòî íà ñïèñúêà ïîçâîëÿâà äà çàðåäèòå ñïèñúê\n"
+"ñ ïàêåòè îò ïðåäèøíà èíñòàëàöèÿ. Àêî öúêíåòå íà òàçè èêîíêà, ùå áúäåòå\n"
+"ïîìîëåíè äà âêàðàòå äèñêåòà ñúçäàäåíà ïðåäè òîâà â êðàÿ íà äðóãà "
+"èíñòàëàöèÿ.\n"
+"Âèæòå âòîðàòà ïîäñêàçêà ïî âðåìå íà ïîñëåäíàòà ñòúïêà, çà òîâà êàê äà\n"
+"ñúçäàäåòå òàêàâà äèñêåòà."
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../help.pm_.c:171
+#, fuzzy
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."
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
+"Àêî èñêàòå äà ñâúðæåòå êîìïþòúðà ñè êúì Èíòåðíåò èëè êúì ëîêàëíà ìðåæà, "
+"ìîëÿ\n"
+"èçáåðåòå ïîäõîäÿùàòà îïöèÿ. Ìîëÿ, âêëþ÷åòå óñòðîéñòâîòî ñè ïðåäè äà "
+"èçáåðåòå\n"
+"îïöèÿòà, çà äà äàäåòå âúçìîæíîñò íà DrakX äà ãî çàñå÷å.\n"
+"\n"
+"Mandrake Linux èçâúðøâà íàñòðîéêàòà íà Èíòåðíåò âðúçêàòà ïî âðåìå íà\n"
+"èíñòàëàöèÿ. Äîñòúïíèòå âðúçêè: îáèêíîâåí ìîäåì, ISDN ìîäåì, ADSL âðúçêà,\n"
+"êàáåëåí ìîäåì è íàêðàÿ îáèêíîâåíà LAN âðúçêà (Ethernet).\n"
+"\n"
+"Òóê íÿìà ïîäðîáíî äà ðàçãëåæäàìå âñÿêà íàñòðîéêà. Ïðîñòî áúäåòå ñèãóðíè, ÷å\n"
+"èìàòå äîñòàòú÷íî äàííè îò Èíòåðíåò äîñòàâ÷èêà ñè èëè ñèñòåìíèÿ\n"
+"àäìèíñèòðàòîð.\n"
+"\n"
+"Ìîæåòå äà ñå êîíñóëòèðàòå ñ ãëàâàòà â ðúêîâîäñòâîòî çà Èíòåðíåò âðúçêèòå çà\n"
+"ïîäðîáíîñòè çà íàñòðîéêàòà èëè ïðîñòî èç÷àêàéòå ñèñòåìàòà âè äà áúäå\n"
+"èíñòàëèðàíà è èçïîëçâàéòå ïðîãðàìàòà îïèñàíà òàì, çà äà íàñòðîèòå âðúçêàòà.\n"
+"\n"
+"Àêî èñêàòå äà íàñòðîèòå ìðåæàòà ïî-êúñíî ñëåä èíñòàëàöèÿ èëè àêî ñòå "
+"ñâúðøèëè\n"
+"ñ íàñòðîéêàòà íà ìðåæàòà, öúêíåòå \"Îòêàç\"."
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "Ìîëÿ âúâåäåòå WebDAV ñúðâúð URL"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "Òàäæèêèñòàí"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "Ïðèåìè"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "Îïèñàíèå"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Please enter summary text."
-msgstr "Ìîëÿ, âúâåäåòå âàøèÿò ëîãèí"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Ãðåøêà ïðè îòâàðÿíå íà %s çà çàïèñ: %s"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Òèï ìèøêà: %s\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Êàðòàòà âè ìîæå äà èìà ïîääðúæêà íà õàðäóåðíî 3D óñêîðåíèå â XFree %s."
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "Èçáåðåòå ìîíèòîð"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "Ïðàçåí åòèêåò íå å ðàçðåøåí"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
-msgstr "Ìàëòèéñêà (UK)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "Íå ìîãà äà äîáàâÿ ïîâå÷å äÿëîâå"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "Ãîëåìèíà â MB: "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "Îòäàëå÷åí ïðèíòåð"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
-msgstr "Ìîëÿ, èçáåðåòå åçèê çà èçïîëçâàíå."
-
-#: ../../network/network.pm:1
-#, c-format
+#: ../../help.pm_.c:193
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 ""
-"ÂÍÈÌÀÍÈÅ: Òîâà óñòðîéñòâî âå÷å å íàñòðîåíî äà ñå ñâúðçâà êúì Èíòåðíåò.\n"
-"Ïðîñòî ïðèåìåòå, çà äà îñòàâèòå óñòðîéñòâîòî íàñòðîåíî.\n"
-"Ïîïðàâêàòà íà ïîëåòàòà ïî-äîëó ùå ïðåçàïèøå òàçè íàñòðîéêà."
-
-#: ../../any.pm:1
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
+"You may now choose which services you wish to start at boot time.\n"
+"\n"
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
+"\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
-"Ìîãà äà íàñòðîÿ êîìïþòúðà âè çà âëèçàíå â ñèñòåìàòà àâòîìàòè÷íî êàòî íÿêîé "
-"ïîòðåáèòåë."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Floppy format"
-msgstr "Ôîðìàòèðà ôëîïè"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Generic Printers"
-msgstr "Ïðèíòåð áåç äðàéâåðè"
+"Ñåãà ìîæåòå äà èçáåðåòå êîè óñëóãè äà ñå ïóñêàò ïðè ñòàðòèðàíå.\n"
+"\n"
+"Òóê ñà ïðåäñòàâåíè âñè÷êè óñëóãè, äîñòúïíè ñ íàñòîÿùàòà èíñòàëàöèÿ.\n"
+"Ïðåãëåäàéòå ãè âíèìàòåëíî è èçêëþ÷åòå òåçè, êîèòî íå âè òðÿáâàò âèíàãè ïðè "
+"ñòàðòèðàíå.\n"
+"\n"
+"Ìîæåòå âèäèòå êðàòúê îáÿñíèòåëåí òåêñò çà óñëóãàòà, êàòî ïîñòàâèòå êóðîðà íà "
+"ìèøêàòà ñè\n"
+"íàä èìåòî íà óñëóãàòà. Àêî íå ñòå ñèãóðíè, äàëè óñëóãàòà å ïîëåçíà èëè íå, "
+"ïî-äîáðå\n"
+"å äà îñòàâèòå èçáîðà ïî ïîäðàçáèðàíå.\n"
+"\n"
+"Âíèìàâàéòå ñ òàçè ñòúïêà, àêî ñìÿòàòå äà èçïîëçâàòå ìàøèíàòà ñè êàòî "
+"ñúðâúð:\n"
+"ñèãóðíî íå áèõòå èñêàëè äà ïóñêàòå óñëóãè, îò êîèòî íå ñå íóæäàåòå. Ìîëÿ,\n"
+"çàïîìíåòå, ÷å íÿêîè óñëóãè ìîãàò äà áúäàò îïàñíè, àêî ñà âêëþ÷åíè íà "
+"ñúðâúðà.\n"
+"Ïî ïðèíöèï, èçáèðàéòå ñàìî óñëóãèòå, îò êîèòî íàèñòèíà ñå íóæäàåòå."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:210
msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
+#: ../../help.pm_.c:224
+#, fuzzy
+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.\n"
+"\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
+msgstr ""
+"X (îð X Window System) å ñúðöåòî íà GNU/Linux ãðàôè÷íèÿ èíòåðôåéñ, íà êîéòî\n"
+"ñå îñëàíÿò ãðàôè÷íèòå ñðåäè (KDE, Gnome, AfterStep, WindowMaker...) "
+"ñâúðçàíè\n"
+"ñ Mandrake Linux.  òàçè ñåêöèÿ, DrakX ùå ñå àâòîìàòè÷íî äà íàñòðîè X.\n"
+"\n"
+"Èçêëþ÷èòåëíî ðÿäêî ñå ñëó÷âà äà ñå ïðîâàëè, îñâåí àêî õàðäóåðúò íå å ìíîãî\n"
+"ñòàð (èëè ïðåêàëåíî íîâ). Àêî óñïåå, ùå ñòàðòèðà X àâòîìàòè÷íî ñ íàé-"
+"äîáðàòà\n"
+"ðàçäåëèòåëíà ñïîñîáíîñò â çàâèñèìîñò îò ãîëåìèíàòà íà ìîíèòîðà âè. Ùå ñå\n"
+"ïîÿâè ïðîçîðåö, çà äà âè ïîïèòà äàëè ãî âèæäàòå.\n"
+"\n"
+"Àêî èçâúðøâàòå \"Åêñïåðòíà\" èíñòàëàöèÿ, ùå áúäåòå âúâåäåíè â ìàãüîñíèêà çà\n"
+"íàñòðîéêà íà X. Âèæòå ñúîòâåòíàòà ñåêöèÿ íà ðúêîâîäñòâîòî çà ïîâå÷å\n"
+"èíôîðìàöèÿ çà ìàãüîñíèêà.\n"
+"\n"
+"Àêî âèäèòå ñúîáùåíèåòî, íàòèñíåòå \"Äà\", ñëåä êîåòî DrakX ùå ïðîäúëæè ñúñ\n"
+"ñëåäâàùàòà ñòúïêà. Àêî íå âèäèòå ñúîáùåíèåòî, òîâà îçíà÷àâà, ÷å íàñòðîéêàòà\n"
+"å ñãðåøåíà è òåñòúò àâòîìàòè÷íî ùå áúäå ïðèêëþ÷åí ñëåä 10 ñåêóíäè,\n"
+"âúçñòàíîâÿâàéêè åêðàíà."
+
+#: ../../help.pm_.c:246
+msgid ""
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
msgstr ""
+"Íàêðàÿ, ùå áúäåòå ïîïèòàíè äàëè èñêàòå äà âèæäàòå ãðàôè÷íèÿ èíòåðôåéñ ïðè\n"
+"çàðåæäàíå. Îòáåëåæåòå, ÷å òîçè âúïðîñ ùå âè áúäå çàäàäåí äàæå àêî èçáåðåòå,\n"
+"äà íå òåñòâàòå íàñòðîéêàòà. Î÷åâèäíî, áèõòå îòãîâîðèëè ñ \"Íå\", àêî "
+"ìàøèíàòà\n"
+"ùå ðàáîòè êàòî ñúðâúð èëè àêî íÿìà óñïåøíî íàñòðîåí äèñïëåé."
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of the root partition"
-msgstr "Ïúðâè ñåêòîð îò ñòàðòèðàùèÿ ñå äÿë"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Alternative drivers"
-msgstr "Àëòåðíàòèâíè äðàéâåðè"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:253
+#, fuzzy
msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
+msgstr ""
+"Mandrake Linux CDROM-úò èìà âãðàäåí ñïàñèòåëåí ðåæèì. Ìîæåòå äà ãî\n"
+"äîñòèãíåòå, êàòî ñòàðòèðàòå îò CDROM-à, íàòèñíåòå êëàâèøà >>F1<< è íàïèøåòå\n"
+">>rescue<<. Íî ñëó÷àé, ÷å êîìïþòúðúò íå ìîæå äà ñòàðòèðà îò CDROM, ùå "
+"òðÿáâà\n"
+"äà ñå âúðíåòå êúì òàçè ñòúïêà çà ïîìîù â ïîíå äâå ñèòóàöèè:\n"
+"\n"
+" * êîãàòî èñíòàëèðàòå boot loader, DrakX ùå ïðåçàïèøå ñòàðòîâèÿ ñåêòîð (MBR) "
+"íà ãëàâíèÿ âè äèñê (îñâåí àêî íå èçïîëçâàòå äðóã ñòàðòîâ ìåíèäæúð), òàêà ÷å\n"
+"äà ñòàðòèðàòå Windows èëè GNU/Linux (àêî èìàòå Windows â ñèñòåìàòà ñè). Àêî\n"
+"ñå íóæäàåòå äà ïðåèíñòàëèðàòå Windows, èíñòàëàöèîííèÿ ïðîöåñ íà Microsoft\n"
+"ùå ïðåçàïèøå ñòàðòîâèÿ ñåêòîð è íÿìà äà ìîæåòå äà ïóñíåòå âàøèÿ GNU/Linux!\n"
+"\n"
+" * àêî ñå ïîÿâè ïðîáëåì è íå ìîæåòå äà ïóñíåòå GNU/Linux îò òâúðäèÿ ñè "
+"äèñê,\n"
+"òàçè äèñêåòà ùå èìà çà öåë ñàìî äà ñòàðòèðà GNU/Linux. Òÿ ñúäúðæà "
+"çàäîâîëèòåëåí\n"
+"áðîé ñèñòåìíè èíñòðóìåíòè çà âúçñòàíîâÿâàíå íà ñèñòåìà, êîÿòî å çàáèëà ñëåä\n"
+"ñðèâ â çàõðàíâàíåòî, ñëó÷àéíà ãðåøêà, ãðåøêà â ïàðîëàòà èëè íÿêàêâà äðóãà\n"
+"ïðè÷èíà.\n"
+"\n"
+"Êîãàòî öúêíåòå íà òàçè ñòúïêà, ùå áúäåòå ïîìîëåíè äà ïîñòàâèòå äèñê â\n"
+"óñòðîéñòâîòî. Äèñêåòàòà, êîÿòî âêàðàòå, òðÿáâà äà áúäå ïðàçíà èëè äà "
+"ñúäúðæà\n"
+"äàííè, îò êîèòî íå ñå íóæäàåòå. Íÿìà íóæäà äà ÿ ôîðìàòèðàòå, òúé êàòî DrakX\n"
+"ùå ïðåçàïèøå öÿëàòà äèñêåòà."
+
+#: ../../help.pm_.c:277
+#, fuzzy
+msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
-msgstr "Êàïî Âåðäå"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr ""
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr "Çàðåæäàíå íà íàñòðîéêàòà íà ïðèíòåðà... Ìîëÿ èç÷àêàéòå"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
+"\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
msgstr ""
-"ïðåäèøíèòå ÷èïîâå íà ïåíòèóì áÿõà áúãâàè è çàáèâàõà ïðè äåêîäèðàíå íà F00F "
-"êîäà"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr "Ãóàì"
+"Â òîçè ìîìåíò òðÿáâà èçáåðåòå êúäå íà òâúðäèÿ ñè äèñêà äà èíñòàëèðàòå "
+"âàøàòà\n"
+"Mandrake Linux îïåðàöèîííà ñèñòåìà. Àêî òâúðäèÿò âè äèñê å ïðàçåí èëè äðóãà\n"
+"îïåðàöèîííà ñèñòåìà èçïîëçâà öÿëîòî ïðîñòðàíñòâî, ùå òðÿáâà äà ãî "
+"ðàçäåëèòå.\n"
+"Êàçàíî ïðîñòè÷êî, ðàçäåëÿíåòî íà òâúðäèÿ äèñê ñå ñúñòîè â ëîãè÷åñêî "
+"ðàçäåëÿíå\n"
+"öåë äà ñå ñúçäàäå ìÿñòî çà èíñòàëàöèÿ íà íîâàòà Mandrake Linux ñèñòåìà.\n"
+"\n"
+"Òúé êàòî ïðîöåñúò íà ðàçäåëÿíå îáèêíîâåíî å íåîáðàòèì, ðàçäåëÿíåòî ìîæå äà\n"
+"èçãëåæäà ïëàøåù è ñòðÿñêàù, àêî ñòå íåîïèòåí ïîòðåáèòåë. Ñëàâà Áîãó, èìà\n"
+"ìàãüîñíèê, êîéòî îïðîñòÿâà òîçè ïðîöåñ. Ïðåäè äà çàïî÷íåòå, êîíñóëòèðàéòå "
+"ñå\n"
+"ñ ðúêîâîäñòâîòî è íå áúðçàéòå.\n"
+"\n"
+"Àêî ïóñêàòå èíñòàëàöèÿòà â Åêñïåðòåí ðåæèì, ùå áúäåòå âúâåäåíè â DiskDrake,\n"
+"ðàçäåëÿùèÿ èíñòðóìåíò íà Mandrake Linux, êîéòî âè ïîçâîëÿâà äà äîíàñòðîèòå\n"
+"äÿëîâåòå ñè. Âèæòå ãëàâàòà DiskDrake îò ðúêîâîäñòâîòî. Îò èíñòàëàöèîííèÿ\n"
+"èíòåðôåéñ ìîæåòå äà èçïîëçâàòå ìàãüîñíèöèòå, êàòî íàòèñíåòå áóòîíà\n"
+"\"Ìàãüîñíèê\" íà äèàëîãà.\n"
+"\n"
+"Àêî äÿëîâåòå ñà âå÷å îïðåäåëåíè, äàëè îò ïðåäèøíà èíñòàëàöèÿ èëè îò äðóã\n"
+"èñòðóìåíò çà ðàçäåëÿíå, ïðîñòî èçáåðåòå íà êîé äà èíñòàëèðàòå Linux\n"
+"ñèñòåìàòà.\n"
+"\n"
+"Àêî äÿëîâåòå íå ñà îïðåäåëåíè, ùå òðÿáâà äà ñúçäàäåòå òàêèâà èçïîëçâàéêè\n"
+"ìàãüîñíèêà. Â çàâèñèìîñò îò íàñòðîéêàòà íà òâúðäèÿ äèñê, ñà âúçìîæíè "
+"íÿêîëêî\n"
+"îïöèè:\n"
+"\n"
+" * \"Èçïîëçâàé ñâîáîäíîòî ïðîñòðàíñòâî\": òàçè îïöèÿ ïðîñòî ùå äîâåäå òî\n"
+"àâòîìàòè÷íî ïîäåëÿíå íà ïðàçíîòî ïðîñòðàíñòâî íà òâúðäèÿ âè äèñê. Íÿìà äà\n"
+"áúäåòå ïèòàíè çà òîâà.\n"
+"\n"
+" * \"Èçïîëçâàé ñúùåñòâóâàù äÿë\": ìàãüîñíèêúò å çàñÿêúë åäèí èëè ïîâå÷å\n"
+"ñúùåñòâóâàùè Linux äÿëîâå íà òâúðäèÿ âè äèñê. Àêî èñêàòå äà ãè èçïîëçâàòå,\n"
+"èçáåðåòå òàçè îïöèÿ.\n"
+"\n"
+" * \"Èçïîëçâàé ñâîáîäíîòî ïðîñòðàíñòâî íà Windows äÿë\": àêî èìàòå "
+"èíñòàëèðàí\n"
+"Microsoft Windows íà òâúðäèÿ ñè äèñê è òîé çàåìà öÿëîòî äîñòúïíî\n"
+"ïðîñòðàíñòâî íà íåãî, òðÿáâà äà îñâîáîäèòå ìÿñòî çà Linux äàííè. Çà äà\n"
+"íàïðàâèòåòîâà, ìîæåòå äà èçòðèåòå Microsoft Windows äÿëà è äàííèòå (âèæòå\n"
+"ðåøåíèÿòà \"Èçòðèé öåëèÿ äèñê\" èëè \"Åêïåðòåí ðåæèì\") èëè äà ïðîìåíèòå\n"
+"ãîëåìèíàòà íà Microsoft Windows äÿëà. Ïðîìÿíàòà íà ãîëåìèíàòà ìîæå äà áúäå\n"
+"èçâúðøåíà áåç çàãóáà íà äàííè. Òîâà ðåøåíèå ñå ïðåïîðú÷âà, àêî èñêàòå\n"
+"åäíîâðåìåííî Mandrake Linux è Microsoft Windows íà åäèí è ñúùè êîìïþòúð.\n"
+"\n"
+" Ïðåäè äà èçáåðåòå òàçè îïöèÿ, ìîëÿ, ðàçáåðåòå, ÷å ñëåä òàçè ïðîöåäóðà,\n"
+"ãîëåìèíàòà íà Microsoft Windows äÿëà ùå áúäå ïî-ìàëêà, îòêîëêîòî ïðåäè "
+"òîâà.\n"
+"Ùå èìàòå ïî-ìàëêî ìÿñòî ïîä Microsoft Windows çà ñúõðàíÿâàíå íà äàííè èëè "
+"çà\n"
+"èíñòàëèðà íà íîâ ñîôòóåð.\n"
+"\n"
+" * \"Èçòðèé öåëèÿ äèñê\": àêî èñêàòå äà èçòðèåòå âñè÷êè äàííè è äÿëîâå, "
+"êîèòî\n"
+"ñúùåñòâóâàò íà âàøèÿ òâúðä äèñê è äà ãè çàìåíèòå ñ íîâàòà Mandrake Linux\n"
+"ñèñòåìà, èçáåðåòå òàçè îïöèÿ. Áúäåòå âíèìàòåëíè ñ òîâà ðåøåíèÿ, çàùîòî íÿìà\n"
+"äà ìîæåòå äà âúðíåòå îáðàòíî èçáîðà ñè, ñëåä êàòî ïîòâúðäèòå.\n"
+"\n"
+" !! Àêî èçáåðåòå òàçè îïöèÿ, âñè÷êè äàííè íà äèñêà âè ùå áúäàò "
+"çàãóáåíè !!\n"
+"\n"
+" * \"Èçòðèé Windows\": Òîâà ïðîñòî ùå èçòðèå âñè÷êî íà äèñêà è ùå çàïî÷íå "
+"íà\n"
+"÷èñòî, ðàçäåëÿíå îò ðàç. Âñÿêàêâè äàííè íà äèñêà âè ùå áúäàò çàãóáåíè.\n"
+"\n"
+" !! Àêî èçáåðåòå òàçè îïöèÿ, âñè÷êè äàííè íà äèñêà âè ùå áúäàò "
+"çàãóáåíè !!\n"
+"\n"
+" * \"Åêñïåðòåí ðåæèì\": èçáåðåòå òàçè îïöèÿ, àêî èñêàòå ðú÷íî äà ðàçäåëèòå\n"
+"òâúðäèÿ ñè äèñê. Áúäåòå âíèìàòåëíè - òîâà å ìîùåí, íî îïàñåí èçáîð. Ìîæåòå\n"
+"ìíîãî ëåñíî äà çàãóáèòå âñè÷êè äàííè. Òàêà ÷å íå èçáèðàéòå òîâà, àêî íå\n"
+"çíàåòå êàêâî ïðàâèòå."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:347
msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-"Ìîëÿ, èçáåðåòå ïîðòà íà êîéòî âàøèÿò ïðèíòåð å çàêà÷åí èëè âúâåäåòå èìå íà "
-"óñòðîéñòâî/èìå íà ôàéë âúâ âõîäíîòî ïîëå"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/Îïöèè/Òåñò"
+"À òàêà ! Èíñòàëàöèÿòà å çàâúðøåíà è GNU/Linux ñèñòåìàòà âè å ãîòîâà çà\n"
+"óïîòðåáà. Ïðîñòî öúêíåòå \"OK\", çà äà ðåñòàðòèðàòå ñèñòåìàòà. Ìîæåòå äà\n"
+"ñòàðòèðàòå GNU/Linux èëè Windows, êîåòî ïðåäïî÷èòàòå (àêî èìàòå äâå "
+"ñèñòåìè),\n"
+"âåäíàãà ñëåä êàòî êîìïþòúðúò ñòàðòèðà îòíîâî.\n"
+"\n"
+"Áóòîíà \"Íàïðåäíè÷àâ\" (ñàìî â \"Åêñïåðòåí\") ïîêàçâà îùå äâà áóòîíà çà:\n"
+"\n"
+" * \"ãåíåðèðàíå íà äèñêåòà çà àâòîìàòè÷íà èíñòàëàöèÿ\": çà äà ñúçäàäåòå\n"
+"èíñòàëàöèîííà äèñêåòà, êîÿòî ñëåä òîâà àâòîìàòè÷íî äà èç÷úðøâà öÿëàòà\n"
+"èíñòàëàöèÿ áåç ïîìîùòà íà îïåðàòîð, ïðèëè÷àùà íà èíñòàëàöèÿòà, êîÿòî òîêó-"
+"ùî\n"
+"ñòå èçâúðøèëè.\n"
+"\n"
+" Îòáåëåæåòå, ÷å äâå ðàçëè÷íè îïöèè ñà äîñòúíè, ÷ðåç öúêàíå íà áóòîíà:\n"
+"\n"
+" * \"Ïðåèãðàé\". Òîâà å ÷àñòè÷íî àâòîìàòèçèðàíà èíñòàëàöèÿ êàòî ñòúïêèòå\n"
+"ïî ðàçäåëÿíå íà äÿëîâå îñòàâàò èíòåðàêòèâíè.\n"
+"\n"
+" * \"Àâòîìàòè÷íà\". Íàïúëíî àâòîìàòè÷íà èíñòàëàöèÿ: òâúðäèÿò äèñê ñå\n"
+"ïðåçàïèñâà íàïúëíî, âñÿêàêâè äàííè ñå çàãóáâàò.\n"
+"\n"
+" Òàçè îñîáåíîñò å ìíîãî óäîáíà, êîãàòî èíñòàëèðàòå ãîëÿì áðîé ïîäîáíî\n"
+"ìàøèíè. Âèæòå ñåêöèÿòà çà àâòîìàòè÷íà èíñòàëàöèÿ íà íàøèÿ web-ñàéò.\n"
+"\n"
+" * \"Çàïàçè èçáîðà íà ïàêåòè\"(*): çàïàçâà èçáîðà íà ïàêåòè, òàêà êàêòî "
+"å\n"
+"íàïðàâåí ïðåäè. Êîãàòî ïðàâèòå äðóãà èíñòàëàöèÿ, âêàðàéòå äèñêåòàòà â\n"
+"óñòðîéñòâîòî è ïóñíåòå èíñòàëàöèÿòà äà âúðâè ÷ðåç ïîìîùíèÿ åêðàí, êàòî\n"
+"íàòèñíåòå êëàâèøà [F1] è êàòî íàïèøåòå >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) Òðÿáâà âè FAT-ôîðìàòèðàíà äèñêåòà (çà äà ñúçäàäåòå òàêâà ïîä GNU/Linux,\n"
+"íàïèøåòå \"mformat a:\")"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:378
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."
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-"Òîâà íèâî ñå èçïîëçâà ñ âíèìàíèå. Òîâà êàðà ñèñòåìàòà âè ïî-ëåñíà çà\n"
-"óïîòðåáà, íî å ïî-÷óâñòâèòåëíî: íå òðÿáâà äà áúäå èçïîëçâàíà íà ìàøèíè\n"
-"ñâúðçàíè ñ äðóãè èëè ïî Èíòåðíåò. Íÿìà äîñòúï ñ ïàðîëè."
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mounting partition %s"
-msgstr "Ôîðìàòèðà äÿë %s"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "Ïîòðåáèòåëñêî èìå"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Êîé äÿë èñêàòå äà èçïîëçâàòå çà Linux4Win ?"
-
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "due to missing %s"
-msgstr "ëèïñâà kdesu"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Test pages"
-msgstr "Òåñòîâè ñòðàíèöè"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Logical volume name "
-msgstr "Èìå íà logical volume"
+"Âñè÷êè íîâîäåôèíèðàíè äÿëîâå òðÿáâà äà áúäàò ôîðìàòèðàíè, çà äà ñå "
+"èçïîëçâàò\n"
+"(ôîðìàòèðàíå îçíà÷àâà ñúçäàâàíå íà ôàéëîâà ñèñòåìà).\n"
+"\n"
+"Â òîçè ìîìåíòà ìîæå áè èñêàòå äà ïðåôîðìàòèðàòå íÿêîè ñúùåñòâóâàùè äÿëîâå, "
+"çà\n"
+"äà èçòðèåòå âñÿêàêâè äàííè, êîèòî ñúäúðæàò. Àêî èñêàòå äà ãî íàïðàâèòå, "
+"ìîëÿ\n"
+"èçáåðåòå òÿõ.\n"
+"\n"
+"Ìîëÿ, îòáåëåæåòå, ÷å íå å íåîáõîäèìî äà ïðåôîðìàòèðàòå âñè÷êè äÿëîâå\n"
+"ñúùåñòâóâàùè îòïðåäè. Òðÿáâà äà ïðåôîðìàòèðàòå äÿëîâåòå ñúäúðæàùè\n"
+"îïåðàöèîííàòà ñèñòåìà (êàòî \"/\", \"/usr\" èëè \"/var\"), íî òîâà íå å\n"
+"çàäúëæèòåëíî çà äÿëîâå ñúäúðæàùè äàííè, êîèòî èñêàòå äà çàïàçèòå "
+"(îáèêíîâåíî\n"
+"\"/home\").\n"
+"\n"
+"Ìîëÿ, áúäåòå âíèìàòåëíè, êîãàòî èçáèðàòå äÿëîâåòå. Ñëåä ôîðìàòèðàíå âñè÷êè\n"
+"äàííè íà ïîñî÷åíèòå äÿëîâå ùå áúäàò èçòðèòè è íÿìà äà ìîæåòå äà ãè\n"
+"âúçñòàíîâèòå.\n"
+"\n"
+"Öúêíåòå \"OK\", êîãàòî ñòå ãîòîâè äà ôîðìàòèðàòå äàëîâå.\n"
+"\n"
+"Öúêíåòå \"Îòêàç\", àêî èñêàòå äà èçáåðåòå äðóãè äÿëîâå çà èíñòàëàöèÿ íà "
+"íîâàòà\n"
+"ñè Mandrake Linux îïåðàöèîííà ñèñòåìà.\n"
+"\n"
+"Öúêíåòå \"Íàïðåäíè÷àâ\", àêî èñêàòå äà èçáåðåòå äÿëîâå, êîèòî äà áúäàò\n"
+"ïðîâåðåíè çà ëîøè áëîêîâå îò äèñêà."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:404
msgid ""
-"List of data to restore:\n"
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
"\n"
+"Please be patient."
msgstr ""
-"Ñïèñúê íà äàííè çà âúçñòàíîâÿâàíå:\n"
+"Íîâàòà âè Mandrake Linux îïåðàöèîííà ñèñòåìà â ìîìåíòà ñå èíñòàëèðà. Òàçè\n"
+"îïåðàöèÿ áè òðÿáâàëî äà îòíåìå íÿêîëêî ìèíóòè (çàâèñè îò èçáðàíàòà ãîëåìèíà "
+"íà\n"
+"èíñòàëàöèÿòà è îò ñêîðîñòòà íà êîìïþòúðà âè).\n"
"\n"
+"Ìîëÿ, áúäåòå òúðïåëèâè."
-#: ../../fs.pm:1
-#, c-format
-msgid "Checking %s"
-msgstr "Ïðîâåðêà íà %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/Socket Îïöèè íà ïðèíòåð"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Ïàìåò (DMA) íà êàðòàòà"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Ðàçêà÷âàì îò Èíòåðíåò "
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "Ôðàíöèÿ"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
-msgstr "ïðåãëåä"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
-msgstr "Ïðîâåðêà íà èíñòàëèðàíèÿ ñîôòóåð..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Ëèïñâà èìå íà îòäàëå÷åí ïðèíòåð !"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Èñêàòå ëè äà ðàçðåøèòå ïå÷àò íà ïðèíòåðèòå â ëîêàëíàòà ìðåæà?\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "Òóðöèÿ"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch USB"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Number of buttons"
-msgstr "Áðîé áóòîíè"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Âèåòíàìñêà \"÷èñëîâà ðåäèöà\" QWERTY"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Module"
-msgstr "Ìîäóë"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:412
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
+"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-"Êàòî äîïúëíåíèå, îïàøêèòå íå ñúçäàäåíè ñ òàçè ïðîãðàìà èëè \"foomatic-"
-"configure\" íå ìîãàò äà áúäàò ïðåõâúðëÿíè."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
-msgstr "Õàðäóåð"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl è Alt êëàâèøè åäíîâðåìåííî"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "ÑÀÙ"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "User umask"
-msgstr "Ïîòðåáèòåëñêà ìàñêà"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "ÎÑ ïî ïîäðàçáèðàíå ?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "Øâåéöàðñêà (íåìñêà íàðåäáà)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Íàñòðîéêà íà âñè÷êè ãëàâè ïî îòäåëíî"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:425
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 ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "NTP ñúðâúð"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Sulogin(8) in single user level"
-msgstr ""
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Load/Save on floppy"
-msgstr "Çàðåäè/Çàïàçè íà äèñêåòà"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
-msgstr ""
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "äîáúð"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Ïîçâîëåíî â %d ñåêóíäè"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Ìîëÿ, èçáåðåòå ñåðèåí ïîðò êúì êîéòî ñâúðçàí ìîäåìúò âè."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Property"
-msgstr "Ñîáñòâåíîñò"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr "Íàñòðîéêà íà ëîêàëíà ìðåæà"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "Ãàíà"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
msgstr ""
+"Ïðåäè äà ïðîäúëæèòå, òðÿáâà âíèìàòåëíî äà ïðî÷åòåòå óñëîâèÿòà íà ëèöåíçà. "
+"Òîé\n"
+"ïîêðèâà öÿëàòà Mandrake Linux äèñòðèáóöèÿ, è, àêî íå ñòå ñúãëàñíè ñ âñè÷êè "
+"óñëîâèÿ\n"
+"â íåãî, öúêíåòå íà áóòîíà Îòêàç. Òîâà íåçàáàâíî ùå ïðèêëþ÷è èíñòàëàöèÿòà. Çà "
+"äà\n"
+"ïðîäúëæèòå ñ èíñòàëàöèÿòà, öúêíåòå íà áóòîíà Ïðèåìè."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Advanced Options"
-msgstr "Äîïúëíèòåëíè îïöèè"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Configuration"
-msgstr "Ïðåãëåä íà íàñòðîéêèòå"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
+#: ../../help.pm_.c:432
+msgid ""
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
msgstr ""
+"Â òîçè ìîìåíò, òðÿáâà äà èçáåðåòå íèâîòî íà ñèãóðíîñò, êîåòî èñêàòå çà\n"
+"ìàøèíàòà. Ïî ïðàâèëî, êîëêîòî ïîâå÷å ìàøèíàòà âè å äîñòúïíà è êîëêîòî "
+"ïîâå÷å\n"
+"äàííè ñå ñúõðàíÿâàò íà íåÿ, òîëêîâà ïî-âèñîêî òðÿáâà äà å íèâîòî íà "
+"ñèãóðíîñò.\n"
+"Âúïðåêè òîâà, âèñîêàòà ñèãóðíîñò å çà ñìåòêà íà ëåêîòàòà íà ðàáîòà.\n"
+"Îáúðíåòå ñå êúì ãëàâàòà MSEC íà Reference Manual, çà äà ïîëó÷èòå ïîâå÷å "
+"èíôîðìàöèÿ\n"
+"çà çíà÷åíèåòî íà òåçè íèâà.\n"
+"\n"
+"Àêî íå çíàåòå êàêòî äà èçáåðåòå, èçáåðåòå îïöèÿòà ïî ïîäðàçáèðàíå."
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../help.pm_.c:442
+#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -4928,61 +3549,60 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``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."
@@ -5054,1789 +3674,1085 @@ msgstr ""
"íàìåðèòå çà ïîëåçíî ìÿñòî, êúäåòî äà ñúõðàíÿâàòå íÿêîå ÿäðî èëè image íà\n"
"ramdisk â ñëó÷àé íà èçâúíðåäíè ñèòóàöèè."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:513
msgid ""
-"Graphic Card\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-" 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"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\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 ""
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Ïîÿâè ñå ãðåøêà ïðè èíñòàëèðàíå íà ïàêåòèòå:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Íàñòðîéêà íà Lexmark inkjet"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "Âúðíè"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Save partition table"
-msgstr "Çàïàçè òàáëèöàòà ñ äÿëîâåòå"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "Ôèíëàíäñêà"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "Ìàêåäîíèÿ"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
-msgstr ""
-"Ñïîäåëÿíåòî íà ïîòðåáèòåëñêè äèðåêòîðèè èçïîëçâà ãðóïà \"fileshare\".\n"
-"Ìîæå äà èçïîëçâàòå userdrake,çà äà äîáàâèòå ïîòðåáèòåë êúì òàçè ãðóïà."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "Ñëîâåíñêà"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Authorize:\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\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"
-"- only local ones if set to \"LOCAL\"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
"\n"
-"- none if set to \"NONE\".\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr "Ëèáèÿ"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"Íàñòðîéâàùè ñêðèïòîâå, èíñòàëèðàíå íà ñîôòóåð, ñòàðòèðàíå íà ñúðâúðè..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Ïðèìåð íà ïàðàëåëåí ïîðò #%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
-"- Burn to CD"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "Òàáëèöà"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "íå çíàì êàê äà ôîðìàòèðàì %s â òèï %s"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Model"
-msgstr "Ìîäåë"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "USB printer #%s"
-msgstr "USB ïðèíòåð #%s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Stop Server"
-msgstr "Ñïèðà ñúðâúð"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Modem"
-msgstr "Ìîäåì"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr "Òóâàëó"
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr "Èçïîëçâàé àâòîìàòè÷íî çàñè÷àíå"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
-msgstr ""
-"GPM äîáàâÿ ïîääðúæêà íà ìèøêà â òåêñòîâî-áàçèðàíèòå Linux ïðèëîæåíèÿ êàòî\n"
-"Midnight Commander. Ñúùî òàêà ïîçâîëÿâà áàçèðàíèòå íà ìèøêà êîíçîëè\n"
-"ðåæè-è-ëåïè îïåðàöèè, è âêëþ÷âà ïîääðúæêà íà èçêà÷àùè ìåíþòà íà êîçîëàòà."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr "Ïóñíàò ïðè ñòàðòèðàíå"
-
-#: ../advertising/12-mdkexpert.pl:1
-#, 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:"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "No password aging for"
-msgstr "Áåç îñòàðÿâàíå íà ïàðîëàòà çà"
-
-#: ../../standalone/draksec:1
-#, 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"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Àâòîìàòè÷íî îòêðèâà íàëè÷íèòå ïðèíòåðè íàîòäàëå÷åíèòå ìàøèíè"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr "Èçòî÷åí Òèìîð"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Login name"
-msgstr "Ïîòåáèòåëñêî èìå"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
-msgstr ""
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr "Èçòðîé ïðîôèë ..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Èíñòàëèðàíå íà Foomatic..."
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Ìîëÿ èçëåçòå îò ñåñèÿòà è èçïîëçâàéòå Ctrl-Alt-BackSpace"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected"
-msgstr "çàñå÷åíà "
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "Ìðåæàòà ñå íóæäàå îò ïðåñòàðòèðàíå. Èñêàòå ëè äà ÿ ïðåñòàðòèðàì?"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package: "
-msgstr "Ïàêåò: "
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr "Íå ìîãà äà ïèøà â /etc/sysconfig/bootsplash."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "ÏÐÅÄÓÏÐÅÆÄÅÍÈÅ ÇÀ ÑÈÃÓÐÍÎÑÒ!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
-msgstr "Íå, íå èñêàì autologin"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
-msgstr ""
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr "Èçáîð íà åçèê"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "Èçòðèâàíå íà %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s íå å íàìåðåí...\n"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Testing your connection..."
-msgstr "Èçïðîáâàíå íà âðúçêàòà..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cache size"
-msgstr "Ðàçìåð íà êåø"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Ïàðîëàòà ñåãà å âêëþ÷åíà, íî èçïîëçâàíåòî êàòî ìðåæîâ êîìïþòúð íå å "
-"ïðåïîðú÷èòåëíî."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr "Íà÷àëåí ñåêòîð: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr "Êîíãî (Áðàçèâèë)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Read"
-msgstr "×åòåíå"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
msgstr ""
-"Ïàêåò %s òðÿáâà äà áúäå èíñòàëèðàí\n"
-"Èñêàòå äà ãî èíñòàëèðàòå?"
+"Áåøå çàñå÷åí ïîâå÷å îò åäèí Microsoft Windows äÿë\n"
+"íà òâúðäèÿ âè äèñêà. Èçáåðåòå òîçè, ÷èÿòî äúëæèíà èñêàòå äà ïðîìåíèòå, çà "
+"äà\n"
+"èíñòàëèðàòå Mandrake Linux îïåðàöèîííà ñèñòåìà.\n"
+"\n"
+"\n"
+"Çà èíôîðìàöèÿ, âñåêè äÿë å èçáðîåí êàêòî ñëåäâà: \"Linux èìå\", \"Windows èìå"
+"\", \"Êàïàöèòåò\".\n"
+"\n"
+"\"Linux èìåòî\" ñå êîäèðà êàêòî ñëåäâà: \"òèï íà äèñêà\", \"íîìåð íà äèñêà"
+"\",\n"
+"\"íîìåð íà äÿë\" (íàïðèìåð, \"hda1\").\n"
+"\n"
+"\n"
+"\"Òèïúò íà äèñêà\" ìîæå äà å \"hd\", àêî å IDE òâúðä äèñê, èëè \"sd\", àêî "
+"å\n"
+"SCSI òâúðä äèñê.\n"
+"\n"
+"\n"
+"\"Íîìåðúò íà äèñêà\" âèíàãè å áóêâàòà ñëåä \"hd\" èëè \"sd\". Ïðè IDE "
+"äèñêîâå:\n"
+"\n"
+" * \"a\" îçíà÷àâà \"master äèñê íà ïúðâèÿ IDE êîíòðîëåð\",\n"
+" * \"b\" îçíà÷àâà \"slave äèñê íà ïúðâèÿ IDE êîíòðîëåð\",\n"
+" * \"c\" îçíà÷àâà \"master äèñê íà âòîðèÿ IDE êîíòðîëåð\",\n"
+" * \"d\" îçíà÷àâà \"slave äèñê íà âòîðèÿ IDE êîíòðîëåð\".\n"
+"\n"
+"\n"
+"Ïðè SCSI óñòðîéñòâà, \"a\" îçíà÷àâà \"ïúðâè òâúðä äèñê\", \"b\" îçíà÷àâà "
+"\"âòîðè òâúðä äèñê\" è ò.í..\n"
+"\n"
+"\"Windows èìåòî\" å áóêâàòà íà òâúðäèÿ âè äèñê ïîä Windows (ïúðâèÿò äèñê "
+"èëè\n"
+"äÿë ñå íàðè÷à \"C:\")."
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
-msgstr "Ñåéøåëè"
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
+msgstr "Ìîëÿ, áúäåòå òúðïåëèâè. Òàçè îïåðàöèÿ ìîæå äà îòíåìå íÿêîëêî ìèíóòè."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:547
+#, fuzzy
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"
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
+"\n"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
+"\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
+"\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
+"\n"
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
+"\n"
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
+"\n"
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
+"\n"
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
+msgstr ""
+"DrakX ñåãà òðÿáâà äà ïðîâåäå èíñòàëàöèÿ ïî ïîäðàçáèðàíå (\"Ïðåïîðú÷èòåëíà"
+"\")\n"
+"èëè òàêàâà, êúäåòî èìàòå ïî-ãîëÿì êîíòðîë (\"Åêñïåðòíà\"). Âèå ñúùî òàêà\n"
+"ìîæåòå äà èçáåðåòå äà èçâúðøèòå íîâà èíñòàëàöèÿ èëè íàäãðàæäàíå íà\n"
+"ñúùåñòâóâàùà Mandrake Linux ñèñòåìà. Öúêàéêè íà \"Èíñòàëèðàé\" ùå çàòðèå\n"
+"íàïúëíî ñòàðàòà ñèñòåìà. Èçáåðåòå \"Íàäãðàäè\", àêî íàäãðàæäàòå èëè\n"
+"ïîïðàâèòå ñúùåñòâóâàùà ñèñòåìà\n"
+"\n"
+"Ìîëÿ, èçáåðåòå \"Èíñòàëèðàé\", àêî íÿìàòå èíñòàëèðàíà ïðåäèøíà âåðñè íà\n"
+"Mandrake Linux èëè àêî èñêàòå äà èçáèðàòå ìåæäó îïåðàöèîííè ñèñòåìè.\n"
+"\n"
+"Ìîëÿ, èçáåðåòå \"Íàäãðàäè\", àêî èñêàòå äà íàäãðàäèòå èëè ïîïðàâèòå âå÷å\n"
+"èíñòàëèðàíà âåðñèÿ íà Mandrake Linux.\n"
+"\n"
+"Â çàâèñèìîñò îò ïîçíàíèÿòà âè ïî GNU/Linux, ìîëÿ, èçáåðåòå åäèí îò ñëåäíèòå\n"
+"âèäîâå èíñòàëàöèÿ/íàäãðàæäàíå íà âàøàòà Mandrake Linux îïåðàöèîíí ñèñòåìà:\n"
+"\n"
+" * Ïðåïîðú÷èòåëíà: èçáåðåòå òîâà, àêî íèêîãà íå ñòå èñíòàëèðàëè GNU/Linux\n"
+"îïåðàöèîííà ñèñòåìà. Èíñòàëàöèÿòà å ìíîãî ëåñíà è ùå áúäåòå ïîïèòàíè ñàìî\n"
+"íÿêîëêî âúïðîñà.\n"
+"\n"
+" * Åêñïåðòíà:àêî èìàòå äîáðè ïîçíàíèÿ ïî GNU/Linux, ìîæåòå äà èçáåðåòå òîçè\n"
+"èíñòàëàöèîíåí êëàñ. Åêñïåðòíàòà èíñòàëàöèÿ ùå âè ïîçâîëè äà èçâúðøèòå ìíîãî\n"
+"ïîòðåáèòåëñêà èíñòàëàöèÿ. Îòãîâîðèòå íà íÿêîè âúïðîñè ìîæå äà ñà òðúäè, àêî\n"
+"íå ïîçíàâàòå äîáðå GNU/Linux, òàêà ÷å èçáåðåòå òîâà, îñâåí àêî íå çíàåòå\n"
+"êàêâî ïðàâèòå."
+
+#: ../../help.pm_.c:582
+msgid ""
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
-"For your printer Printerdrake has found:\n"
+"Click on the \"More\" button to be presented with the complete list of\n"
+"supported keyboards.\n"
"\n"
-"%s"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
msgstr ""
+"Îáèêíîâåíî, DrakX áè òðÿáâàëî äà èçáåðå ïðàâèëíàòà çà âàñ êëàâèàòóðà (â "
+"çàâèñèìîñò\n"
+"îò åçèêà, êîéòî ñòå èçáðàëè) è íÿìà äà ñå íàëîæè äà âèäèòå òàçè ñòúïêà. "
+"Îáà÷å ìîæå äà\n"
+"íÿìàòå êëàâèàòóðà ñúîòâåòñòâàùà òî÷íî íà âàøèÿ åçèê: íàïðèìåð, àêî ñòå "
+"àíãëîãîâîðÿù øâåä,\n"
+"ìîæå áè ùå èñêàòå êëàâèàòóðàòà âè äà áúäå øâåäñêà. Èëè àêî ãîâîðèòå "
+"aíãëèéñêè, íî ñòå\n"
+"â Êâåáåê, ìîæå áè ùå ñòå â ñúùàòà ñèòóàöèÿ. È â äâàòà ñëó÷àÿ, ùå òðÿáâà äà "
+"ñå âúðíåòå\n"
+"êúì òàçè èíñòàëàöèîííà ñòúïêà è äà èçáåðåòå ïðàâèëíàòà êëàâèàòóðà îò "
+"ñïèñúêà.\n"
+"\n"
+"Âñè÷êî, êîåòî òðÿáâà äà íàïðàâèòå, å äà ïîñî÷èòå ïðåäïî÷èòàíàòà êëàâèàòóðíà "
+"íàðåäáà\n"
+"îò ñïèñúêà, êîéòî ùå ñå ïîÿâè ïðåä âàñ.\n"
+"\n"
+"Àêî èìàòå êëàâèàòóðà îò åçèê ðàçëè÷åí îò òîçè èçïîëçâàí ïî ïîäðàçáèðàíå, "
+"öúêíåòå\n"
+"íà áóòîíà \"Íàïðåäíè÷àâ\". Ùå âè áúäå ïðåäîñòàâåí ïúëåí ñïèñúê ñ "
+"ïîääúðæàíèòå êëàâèàòóðè."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Bad password on %s"
-msgstr "Ëîøà ïàðîëà íà %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:598
msgid ""
+"The first step is to choose your preferred language.\n"
"\n"
-"There is one unknown printer directly connected to your system"
+"Please choose your preferred language for installation and system usage.\n"
+"\n"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
+"\n"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
+"Ìîëÿ, öúêíåòå íà ïðåäïî÷èòàíèÿ åçèê íà èíñòàëàöèÿ è ñèñòåìíà óïîòðåáà.\n"
"\n"
-"Èìà åäèí íåèçâåñòåí ïðèíòåð âêëþ÷åí êúì âàøàòà ñèñòåíìà"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Control key"
-msgstr "Äåñåí Control êëàâèø"
+"Öúêàíåòî íà áóòîíà \"Íàïðåäíè÷àâ\" ùå âè ïîçâîëè äà èçáåðåòå äðóãè åçèöè\n"
+"äà áúäàò èíñòàëèðàíè íà ðàáîòíàòà âè ñòàíöèÿ. Èçáèðàíåòî íà äðóãè åçèöè\n"
+"ùå èíñòàëèðà ôàéëîâå ñïåöèâè÷íè çà åçèöèòå çà ñèñòåìíà äîêóìåíòàöèÿ è\n"
+"ïðèëîæåíèÿ. Íàïðèìåð, àêî èìàòå ïîòðåáèòåëè îò Èçïàíèÿ íà ìàøèíàòà ñè,\n"
+"èçáåðåòå àíãëèéñêè êàòî ãëàâåí åçèê â äúðâîâèäíàòà ôîðìà è â ñåêöèÿ\n"
+"\"Íàïðåäíè÷àâ\" öúêíåòå íà ñèâàòà çâåçäà ñúîòâåòñòâàùà íà\n"
+"\"Èñïàíñêè|Èñïàíèÿ\".\n"
+"Îòáåëåæåòå, ÷å ìîãàò äà áúäàò èíñòàëèðàíè íÿêîëêî åçèêà. Âåäíúæ èçáðàí\n"
+"íÿêàêúâ ëîêàë, öúêíåòå áóòîíà \"OK\", çà äà ïðîäúëæèòå."
-#: ../../network/tools.pm:1
-#, c-format
+#: ../../help.pm_.c:617
msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"Ñëîæåòå FAT ôîðìàòèðàíà äèñêåòà â óñòðîéñòâî %s ñ %s â ãëàâíàòà äèðåêòîðèÿ è "
-"íàòèñíåòå %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "Çàìáèÿ"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr "Àäìèíèñòðàòîð ïî ñèãóðíîñòòà (ëîãèí èëè Åë.ïîùà)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr "Ðóìúíñêà (qwerty)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
+"\n"
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
+"\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
msgstr ""
+"Ïî ïîäðàçáèðàíå, DrakX ïðåäïîëàãà ÷å èìàòå äâóáóòîííà ìèøêà è ùå âêëþ÷è\n"
+"ñèìóëèðàíå íà òðè áóòîíà. DrakX àâòîìàòè÷íî ðàçáèðà äàëè å PS/2, ñåðèéíà "
+"èëè\n"
+"USB ìèøêà.\n"
+"\n"
+"Àêî èñêàòå äà îïðåäåëèòå äðóã òèï íà ìèøêàòà, èçáåðåòå ïîäõîäÿù îò ñïèñúêà,\n"
+"êîéòî ùå âè áúäå ïðåäñòàâåí.\n"
+"\n"
+"Àêî èçáåðåòå ìèøêà ðàçëè÷íà îò òàçè ïî ïîäðàçáèðàíå, ùå âè áúäå ïðåäîñòàâåí\n"
+"åêðàí çà ïðîáà. Èçïîëçâàéòå áóòîíèòå è êîëåëöåòî, çà äà ïðîâåðèòå, ÷å\n"
+"íàñòðîéêàòà å äîðà. Àêî ìèøêàòà íå ðàáîòè, êàêòî òðÿáâà, íàòèñíåòå èíòåðâàë\n"
+"èëè ÑÅ ÂÚÐÍÅÒÅ êúì \"Îòêàç\" è èçáåðåòå ïàê."
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "Åãèïåò"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "×åøêà Ðåïóáëèêà"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "Çâóêîâà êàðòà"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Import Fonts"
-msgstr "Èìïîðòèðò íà øðèôòîâå"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../help.pm_.c:638
msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Èìàòå åäèí ãîëÿì FAT äÿë\n"
-"(ïî ïðèíöèï ñå ïîëçâàò îò Microsoft Dos/Windows).\n"
-"Ïðåäëàãàì ïúðâî äà ïðîìåíèòå ãîëåìèíàòà íà òîçè äÿë\n"
-"(ùðàêíåòå âúðõó íåãî, à ñëåä òîâà ùðàêíåòå âúðõó \"Ïðîìåíè ãîëåìèíàòà\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
+"Ìîëÿ, èçáåðåòå âåðíèÿ ïîðò. Íàïðèìåð, ïîðòúò COM1 ïîä Windows ïîä GNU/Linux\n"
+"ñå íàðè÷à ttyS0."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+#: ../../help.pm_.c:642
+msgid ""
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
"\n"
-msgstr ""
-"Ïîçäðàâëåíèÿ, ìðåæîâàòà è èíòåðíåò íàñòðîéêàòà å çàâúðøåíà.\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
"\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "Ïðîìÿíà òèïà íà äÿëà"
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Resolution\n"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
"\n"
-" 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 ""
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Network Options"
-msgstr "Ìðåæîâè îïöèè"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable msec hourly security check"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
+"\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
+"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../help.pm_.c:678
msgid ""
-"Display theme\n"
-"under console"
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, 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 in doubt, DrakX will display a dialog with various options.\n"
+"\n"
+" * \"Bootloader to use\": you have three choices:\n"
+"\n"
+" * \"GRUB\": if you prefer grub (text menu);\n"
+"\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\n"
+"\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
+"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
+"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
+"\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\n"
+"\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
msgstr ""
-"Ïîêàçâà òåìà\n"
-"íà êîíçîëà"
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr "(íà %s)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:718
msgid ""
-"A library which defends against buffer overflow and format string attacks."
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"Áèáëèîòåêà, êîÿòî îñèãóðÿâà çàùèòà îò aòàêè ñ ïðåïúëâàíå íà áóôåð è ôîðìàòíè "
-"ñòðèíãîâå."
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr "ñðåäíî"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "New printer name"
-msgstr "Íîâî èìå íà ïðèíòåð"
+"LILO (èëè LInux LOader) è Grub ñà bootloader-è: òå ìîãà äà ñòàðòèðàò\n"
+"GNU/Linux èëè êîÿ äà å äðóãà îïåðàöèîííà ñèñòåìà ñúùåñòâóâàùà íà êîìïþòúðà "
+"âè.\n"
+"Îáèêíîâåííî, òåçè äðóãè îïåðàöèîííè ñèñòåìà ñå çàñè÷àò è èíñòàëèðàò\n"
+"ïðàâèëíî. Àêî òîâà íå ñòàâà ïðè âàñ, ìîæåòå äà äîáàâÿòå çàïèñè íà ðúêà â\n"
+"òîçè åêðàí. Ãëåäàéòå äà èçáåðåòå âåðíè ïàðàìåòðè.\n"
+"\n"
+"\n"
+"Ìîæå äà íå èñêàòå äà äàâàòå äîñòúï äî òåçè îïåðàöèîííè ñèñòåìè íà íèêîé,\n"
+"â êîéòî ñëó÷àé ìîæåòå äà èçòðèåòå ñúîòâåòíèòå çàïèñè. Íî â òàêúâ ñëó÷àé,\n"
+"ùå ñå íóæäàåòå îò boot-äèñêåòà, çà äà ãè ñòàðòèðàòå !"
-#: ../../fs.pm:1
-#, c-format
+#: ../../help.pm_.c:732
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 )."
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\n"
+"\n"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
msgstr ""
+"Òðÿáâà äà ïîñî÷èòå êúäå æåëàåòå äà\n"
+"ïîñòàâèòå èíôîðìàöèÿòà, íåîáõîäèìà çà ñòàðòèðàíåòî íà GNU/Linux.\n"
+"\n"
+"Àêî íå ñòå ñèãóðíè â òîâà, êîåòî ïðàâèòå, èçáåðåòå \"Ïúðâèÿ ñåêòîð íà\n"
+"óñòðîéñòâîòî (MBR)\"."
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr "Åêâàòîðèàëíà Ãâèíåÿ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup System"
-msgstr "Ñèñòåìà çà ñúõðàíåíèå"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Build Backup"
-msgstr "Ñúçäàâàíå íà àðõèâ"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:739
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
+"\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
+"\n"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
msgstr ""
-"Çà äà îòïå÷àòàòå ôàéë îò êîìàíäíèÿ ðåä (òåðìèíàëåí ïðîçîðåö), èçïîëçâàéòå "
-"êîìàíäàòà \"%s <file>\" èëè \"%s <file>\".\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Çà ñåãà, íÿìà íàëè÷íà àëòåðíàòèâà"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwertz)"
-msgstr "Ðóìúíñêà (qwertz)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Write Config"
-msgstr "Çàïèñâà íàñòðîéêà"
-
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:759
msgid ""
-"The routed daemon allows for automatic IP router table updated via\n"
-"the RIP protocol. While RIP is widely used on small networks, more complex\n"
-"routing protocols are needed for complex networks."
-msgstr ""
-"touted äåìîíà ïîçâîëÿâà òàáëèöà çà IP ðóòèðàíå àâòîìàòè÷íî îáíîâÿâàíà ÷ðåç\n"
-"RIP ïðîòîêîëà. Äîêàòî RIP å øèðîêî èçïîëçâàíà çà ìàëêè ìðåæè, çà ïî-ñëîæíè\n"
-"ïðîòîêîëè çà ðóòèðàíå ñà íóæíè çà ñëîæíè ìðåæè. "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr "Êèðèáàòè"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech Mouse (ñåðèéíà, îò ñòàðèÿ òèï C7) ñ åìóëàöèÿ íà êîëåëöå"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"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 does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
+"\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:781
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"
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
+"\n"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\n"
+"\n"
+"For Linux, there are a few possible options:\n"
"\n"
-"You will be presented with a list of different parameters to change to get\n"
-"an optimal graphical display: Graphic Card\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\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"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\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"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
"\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
"\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"hda=autotune\n"
"\n"
-"Monitor\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\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"
+" * Initrd: this option can be used either to load initial modules, before\n"
+"the boot device is available, or to load a ramdisk image for an emergency\n"
+"boot situation;\n"
"\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
"\n"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
"\n"
-"Resolution\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"
-" 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"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
+msgstr ""
+
+#: ../../help.pm_.c:828
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
"\n"
+"Yaboot's main options are:\n"
"\n"
+" * Init Message: a simple text message displayed before the boot prompt;\n"
"\n"
-"Test\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"
-" 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"
+" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+"yaboot. The first delay is measured in seconds and at this point, you can\n"
+"choose between CD, OF boot, MacOS or Linux;\n"
"\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\n"
"\n"
-"Options\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\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."
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr "Ïðåãëåä"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr "CDROM"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Èñêàòå ëè ñåãà äà îïèòàòå âðúçêà êúì Èíòåðíåò ?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "Áåëãèéñêà"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Èìàòå ëè ISA çâóêîâà êàðòà?"
-
-#: ../../network/ethernet.pm:1
-#, c-format
+#: ../../help.pm_.c:860
msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
+"\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
+"\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
+"\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\n"
+"\n"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\n"
+"\n"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\n"
+"\n"
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
msgstr ""
-"Íå áåøå íàìåðåí ìðåæîâ àäàïòåð â ñèñòåìàòà âè.\n"
-"Íå ìîæåòå äà íàñòðîèòå òàêúâ âèä âðúçêà."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Windows"
-msgstr "Windows"
-
-#: ../../common.pm:1
-#, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "Íå ìîãà äà íàïðàâÿ ìîìåíòíà \"ñíèìêà\" ïðåäè ðàçäåëÿíåòî íà äèñêà "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Name"
-msgstr "Èìå íà õîñò"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Ôàéë/Çàïèñ _êàòî"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:891
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
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr "%s íå å â áàçàòà äàííè íà ñêåíåðà, äà êîíôèãóðèðàì ðú÷íî?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "Çàáàâÿíå ïðåäè ñòàðòèðàíåòî íà ïîäðàçáèðàùèÿò îáðàç"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Restrict command line options"
-msgstr "Îãðàíè÷è îïöèèòå, çàäàâàíè îò êîìàíäíèÿ ðåä"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "East Europe"
-msgstr "Èçòî÷íà Åâðîïà"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "Èçïîëçâàé ñâîáîäíîòî ìÿñòî"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "èçïîëçâàé DHCP"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr "Ïîäðåäáà íà ïîùà"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Internet configuration"
-msgstr "Íàñòðîéêà íà Èíòåðíåò"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr "Óçáåêèñòàí"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected %s"
-msgstr "Çàñå÷åí %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Àâòîìàòè÷íî îòêðèâà _ïðèíòåðè"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "Çàâúðøè"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Ïîêàæè àâòîìàòè÷íî îòáåëÿçàíèòå ïàêåòè"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr "Òîãî"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "Ôëàãîâå íà CPU ñúîáùåíè îò ÿäðîòî"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Íåùî áåøå ãðåøíî! - Äàëè mkisofs å èíñòàëèðàí?"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "16 ÌÁ"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "Ìîëÿ, îïèòàéòå îòíîâî"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The model is correct"
-msgstr "Òîçè ìîäåë å ïðàâèëåí"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Íåóñïåøíî ïðåðàçäåëÿíå íà FAT: %s"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr "Èçáèðàíå íà ïàêåòè åäèí ïî åäèí"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr "Ãîëåìèíàòà íà äÿëà íå ìîæå äà áúäå ïðîìåíåíà"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr "Ìåñòîïîëîæåíèå"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "Ãâàòåìàëà"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr "Æóðíàëíà FS"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
-msgstr "Òàçè ìàøèíà"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Áóêâà íà óñòðîéñòâîòî ïîä DOS: %s (ïðîñòî ïðåäïîëîæåíèå)\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr "Áàõðåéí"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
+"Èçáåðåòå òâúðäèÿ äèñê, êîéòî èñêàòå äà èçòðåòå, çà äà\n"
+"èíñòàëèðàì íîâèÿ âè Mandrake Linux äÿë. Âíèìàíèå, âñè÷êè äàííè íà íåãî ùå "
+"áúäàò çàãóáåíè\n"
+"è íÿìà äà ìîãàò äà ñå âúçñòàíîâÿò."
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit scsi modules"
-msgstr "áåç scsi ìîäóëè"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "ôàìèëèÿ cpu (íàïð: 6 çà i686 êëàñ)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../help.pm_.c:896
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"
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"Òúé êàòî ïðàâèòå ìðåæîâà èíñòàëàöèÿ, ìðåæàòà âè âå÷å å íàñòðîåíà.\n"
-"Öúêíåòå Ok, çà äà çàïàçèòå íàñòðîéêàòà, èëè Îòìÿíà, çà äà ïðåíàñòîèòå "
-"Èíòåðíåò è ìðåæîâàòà ñè âðúçêà.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
-msgstr "Ïóñêà åæåäíåâíà ïðîâåðêà çà ñèãóðíîñò"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Òèï êëàâèàòóðà: %s\n"
+"Öúêíåòå \"OK\", àêî èñêàòå äà èçòðèåòå âñè÷êè äàííè è\n"
+"äÿëîâå ñúùåñòâóâàùè íà òîçè òâúðä äèñê. Âíèìàíèå, ñëåä öúêàíå íà \"OK\", "
+"íÿìàäà ìîæåòå äà âúçñòàíîâèòå êàêâèòî è äà áèëî äàííè è äÿëîâå ñúùåñòâóâàùè "
+"íà òîçè òâúðä äèñê,\n"
+"âêëþ÷èòåëíî êàêâèòî è äà å Windows äàííè.\n"
+"\n"
+"Öúêíåòå \"Îòìÿíà\", çà äà îòìåíèòå òàçè îïåðàöèÿ áåç çàãóáà äà äàííèòå è\n"
+"äÿëîâåòå ñúùåñòâóâàùè íà òîçè òâúðä äèñê."
-#: ../../printer/printerdrake.pm:1
+#: ../../install2.pm_.c:111
#, 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."
+"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 ""
-"Òóê ìîæå äà ðåøèòå äàëè ïðèíòåðèòå ñâúðçàíè êúì âàøàòà ìàøèíà ùå áúäàò "
-"äîñòúïíè îò îòäàëå÷åíèòå ìàøèíè è îò êîé."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr "Ìàëòèéñêà (US)"
-#: ../../standalone/drakfloppy:1
+#: ../../install2.pm_.c:167
#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
+msgid "You must also format %s"
msgstr ""
-#: ../../services.pm:1
+#: ../../install_any.pm_.c:423
#, c-format
msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Ìîíòèðà è äåìîíòèðà âñÿêàêâè Network File System (NFS), SMB (LAN\n"
-"Manager/Windows), è NCP (NetWare)."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Launch the wizard"
-msgstr "Ñòàðòèðàíå íà ïîìîùíèê"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Tvcard"
-msgstr "TV êàðòà"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Ïðåìèíè â íîðìàëåí/åêñïåðòåí ðåæèì"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr "Ãîëåìèíà"
-
-#: ../../help.pm:1
-#, c-format
-msgid "GRUB"
-msgstr "GRUB"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr "Ãðåíëàíäèÿ"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "×åòâúðòúê"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Åòèêåòúò íà ëåíòàòà íå å ïðàâèëíèÿ. Ëåíòàòà ñå êàçâà %s."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Óñòàíîâêàòà íà Ñïîäåëÿíåòî íà Èíòåðíåò âðúçêàòà å çàâúðøåíà.\n"
-" ìîìåíòà å âêëþ÷åíà.\n"
-"\n"
-"Êàêâî èñêàòå äà íàïðàâèòå ?"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Èçòðèâà âñè÷êè NBI"
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"This dialog allows you to fine tune your bootloader:\n"
+"You have selected the following server(s): %s\n"
"\n"
-" * \"%s\": there are three choices for your bootloader:\n"
"\n"
-" * \"%s\": if you prefer grub (text menu).\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
"\n"
-" * \"%s\": if you prefer LILO with its text menu interface.\n"
"\n"
-" * \"%s\": if you prefer LILO with its graphical interface.\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Èçáðàëè ñòå ñëåäíèÿ(òå) ñúðâúð(è): %s\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"
+"ñèãóðíîñòòà, íî ìîæå äà ñå íàìåðÿò íîâè.  òîçè ñëó÷àé, ùå òðÿáâà äà ñòå\n"
+"ñèãóðíè, ÷å ùå íàäãðàæäàòå âúçìîæíî íàé-áúðçî.\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 ""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"if set, send the mail report to this email address else send it to root."
-msgstr ""
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Êîÿ íàñòðîéêà íà XFree èñêàòå äà èìàòå ?"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "More"
-msgstr "Îùå"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
-msgstr ""
+"Íàèñòèíà ëè èñêàòå äà èíñòàëèðàòå òåçè ñúðâúðè ?\n"
-#: ../../security/level.pm:1
+#: ../../install_any.pm_.c:441
#, 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."
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-"Ñ òîâà íèâî íà ñèãóðíîñò, ïîëçâàíåòî íà ñèñòåìàòà êàòî ñúðâúð ñòàâà "
-"âúçìîæíî.\n"
-"Ñèãóðíîñòòà ñåãà å äîñòàòú÷íî ãîëÿìà äà ñå èçïîëçâà ñèñòåìàòà êàòî\n"
-"ñúðâúð ïðèåìàù âðúçêè îò ìíîãî êëèåíòè. "
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Server Name"
-msgstr "Èìå íà ñúðâúð"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Password"
-msgstr "Ïàðîëà íà àêàóíòà"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
+msgstr "Íå ìîæåòå äà èçïîëçâàòå broadcast áåç NIS äîìåéí"
-#: ../../standalone/drakhelp:1
+#: ../../install_any.pm_.c:879
#, c-format
-msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
-msgstr ""
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Ñëîæåòå FAT ôîðìàòèðàíà äèñêåòà â óñòðîéñòâî %s"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-"Èçáàõòå äà èíñòàëèðàòå bootloader íà äÿë\n"
-"Òîâà ïðåäïîëàãà,÷å âå÷å èìàòå bootloader íà äèñêà(íàïðèìåð: System "
-"Commander).\n"
-"\n"
-"Îò êîé äèñê çàðåæäàòå ?"
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
+msgstr "Òàçè äèñêåòà íå å ôîðìàòèðàíà íà FAT"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../install_any.pm_.c:895
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."
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-"ÂÍÈÌÀÍÈÅ!\n"
-"\n"
-"DrakX òðÿáâà äà ïðåðàçäåëè Âàøèÿ Windows äÿë. Áúäåòå âíèìàòåëíè: òàçè "
-"îïåðàöèÿ å\n"
-"îïàñíà. Àêî îùå íå ñòå ãî íàïðàâèëè, òðÿáâà ïúðâî äà ïóñíåòå scandisk (è\n"
-"åâåíòóàëíî äà èçïîëçâàòå defrag) ïîä Windows âúðõó òîçè äÿë, òîãàâà \n"
-"ïîâòîðåòå èíñòàëàöèàÿòà. Áè áèëî äîáðå äà íàïðàâèòå àðõèâ íà äàííèòå ñè.\n"
-"Êîãàòî ñòå ñèãóðíè, íàòèñíåòå ÎÊ."
+"Çà äà èçïîëçâàòå çàïàçåí èçáîð íà ïàêåòè, ñòàðòèðàéòå èíñòàëàöèÿòà ñ ``linux "
+"defcfg=floppy''"
-#: ../../keyboard.pm:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, c-format
-msgid "Tajik keyboard"
-msgstr "Òàäæèêèñòàíñêà êëàâèàòóðà"
+msgid "Error reading file %s"
+msgstr "Ãðåøêà ïðè ÷åòåíåòî íà ôàéëà %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_any.pm_.c:1040
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"
+"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 ""
-"Ìîæåòå äà êîïèðàòå íàñòðîéêèòå íà ïðèíòåðà, êîèòî ñòå èçâúðøèëè çà spoller %"
-"s íà %s, òåêóùèÿ spooler. Öÿëàòà èíôîðìàöèÿ çà íàñòðîéêèòå (èìå íå ïðèíòåð, "
-"îïèñàíèå, ìåñòîïîëîæåíèå, âèä íà âðúçêàòà è íàñòðîéêè ïî ïîäðàçáèðàíå) ñå "
-"ïðåçàïèñâàò, íî ðàáîòèòå íå ñå ïðåõâúðëÿò.\n"
-"Íå âñè÷êè îïàøêè ìîãàò äà áúäàò ïðåõâúðëåíè ïî ñëåäíèòå ïðè÷èíè:\n"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Font List"
-msgstr "Ñïèñúê øðèôòîâå"
+"Ïîÿâè ñå ãðåøêà - íå ñà îòêðèòè âàëèäíè óñòðîéñòâà, âúðõó êîèòî äà áúäàò "
+"ñúçäàäåíè íîâè ôàéëîâè ñèñòåìè. Ìîëÿ ïðîâåðåòå òâúðäèÿ ñè äèñê ñè çà "
+"ïðè÷èíàòà çà òîçè ïðîáëåì"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_interactive.pm_.c:21
#, 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."
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"Ìîæå áè ñå íóæäàåòå äà ïðîìåíèòå Open Firmware ñòàðòîâîòî óñòðîéñòâî,\n"
-" çà äà ïóñíåòå çàðåæäàùàòà ïðîãðàìà. Àêî íå âèæäàòå ïîäñêàçêàòà è ïðè\n"
-" ðåñòàðòèðàíå, çàäðúæòå Command-Option-O-F ïðè ðåñòàðòèðàíå è âúâåäåòå:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Ñëåä êîåòî íàïèøåòå: shut-down\n"
-"Ïðè ñëåäâàùîòî ðåñòàðòèðàíå áè òðÿáâàëî äà âèäåòå ïîäñêàçêàòà."
+"×àñò îò õàðäóåðà íà êîìïþòúðà âè ñå íóæäàå îò ``ñîáñòâåíèòå ñè'' äðàéâåðè, "
+"çà äà ðàáîòè.\n"
+"Ìîæåòå äà íàìåðèòå ïîâå÷å èíôîðìàöèÿ çà òîâà íà: %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:56
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"
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
-"Èçãëåæäà èìàòå ñòàðîâðåìñêà èëè íåèçâåñòíà\n"
-"ìàøèíà, íà êîÿòî yaboot íÿìà äà ïðîðàáîòè.\n"
-"Èíñòàëàöèÿòà ùå ïðîäúëæè, íî ùå òðÿáâà\n"
-"äà èïîëçâàòå BootX, çà äà ñòàðòèðàòå ìàøèíàòà ñè"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Select file"
-msgstr "Èçáåðåòå ôàéë"
+"Òðÿáâà äà èìàòå root-äÿë.\n"
+"Çàòîâà ñúçäàéòå äÿë (èëè öúêíåòå íà ñúùåñòâóâàù).\n"
+"Òîãàâà èçáåðåòå äåéñòâèå ``Ìÿñòî íà ìîíòèðàíå'' è ãî ñëîæåòå `/'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr "Èçáîð íà ìðåæà èëè õîñò çà êîéòî ëîêàëíèÿò ïðèíòåð ùå áúäå ðàçðåøåí:"
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
+msgstr "Òðÿáâà äà èìàòå swap-äÿë"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:62
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"
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"Ìîæåòå äà èçïîëçâàòå òàçè êîìàíäà è â ïîëåòî \"Êîìàíäà çà ïå÷àò\" íà "
-"ïå÷àòíèòå äèàëîçè â ìíîƒî ïðèëîæåíèÿ. Íî ò¢ê íå ïîñòàâÿéòå èìåòî íà ôàéëà, "
-"çàùîòî òî ñå ïîäàâà îò ïðèëîæåíèåòî.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "ßïîíèÿ"
+"Íÿìàòå swap-äÿë\n"
+"\n"
+"Äà ïðîäúëæà ëè âñå ïàê ?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print option list"
-msgstr "Ñïèñúê ñ ïðèíòåðíè îïöèè"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Òðÿáâà äà èìàòå FAT äÿë ìîíòèðàí â /boot/efi"
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "Ïðîìåíèòå ñà çàïàçåíè, íî çà äà áúäàò åôåêòèâíè òðÿáâà äà èçëåçåòå"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
+msgstr "Èçïîëçâàé ñâîáîäíîòî ìÿñòî"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
-msgstr "Ñòðàíà / Ðåãèîí"
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
+msgstr "Íÿìà äîñòàòú÷íî ìÿñòî çà ñúçäàâàíå íà íîâ äÿë"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search servers"
-msgstr "Òúðñè ñúðâúðè"
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
+msgstr "Èçïîçâàíå íà ñúùåñòâóâàù äÿë"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "Ëèïñâà èìå íà NCP îïàøêà !"
+#: ../../install_interactive.pm_.c:102
+msgid "There is no existing partition to use"
+msgstr "Íÿìà äÿë, êîéòî ìîãà äà èçïîëçâàì"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
+msgstr "Èçïîëçâàé çà Windows äÿëúò çà loopback"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM îçàãëàâåí \"%s\""
+#: ../../install_interactive.pm_.c:112
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Êîé äÿë èñêàòå äà èçïîëçâàòå çà Linux4Win ?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr ""
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
+msgstr "Èçáåðåòå ãîëåìèíèòå"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Çàïàçâà è âúçñòàíîâÿòà ïîòîêà íà ñèñòåìíà åíòðîïèÿ çà ïî-ãîëÿìî êà÷åñòâî\n"
-"íà ïðîèçâîëíî ãåíåðèðàíå íà ÷èñëà."
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
+msgstr "Ãîëåìèíà íà root-äÿëà â MB: "
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr "Ïðåâúðíåòå âàøàòà ìàøèíà â íàäåæäåí ñúðâúð"
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr "Ãîëåìèíà íà swap-äÿëà â MB: "
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr ""
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
+msgstr "Èçïîëçâàé ñâîáîäíîòî ìÿñòî íà Windows äÿëà"
-#: ../../network/network.pm:1
-#, c-format
-msgid " (driver %s)"
-msgstr " (äðàéâåð %s)"
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
+msgstr "Êîé äÿë æåëàåòå äà ïðîìåíèòå?"
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
-msgstr ""
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "Èç÷èñëÿâàì ãðàíèöèòå íà Windows ôàéëîâàòà ñèñòåìà"
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
-"Loopback file(s):\n"
-" %s\n"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-"Loopback ôàéë(îâå):\n"
-" %s\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr "Íå çíàì"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP õîñò \"%s\", ïîðò %s"
+"Íå âúçìîæíîñò çà ðàáîòà ñ âàøèÿ FAT äÿë, \n"
+"ïîðàäè ïîëó÷åíàòà ãðåøêà: %s"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../install_interactive.pm_.c:137
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?"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
+"Âàøèÿò Windows äÿë å ìíîãî ôðàãìåíòèðàí, ìîëÿ ïúðâî ñòàðòèðàéòå ''defrag''"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Telugu"
-msgstr "Òåëóãó"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:138
+#, fuzzy
msgid ""
+"WARNING!\n"
"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
+"ÂÍÈÌÀÍÈÅ!\n"
"\n"
-"\n"
-"Âàøàòà êàðòà â ìîìåíòà èçïîëçâà %s\"%s\" äðàéâåð (ïîäðàçáèðàù äðàéâåð çà "
-"êàðòàòà âè å \"%s\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Uninstall"
-msgstr "Ñëåä äåèíñòàëèðàíå"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Ñâúðçâàì êúì Èíòåðíåò"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
-msgstr ""
+"DrakX òðÿáâà äà ïðåðàçäåëè Âàøèÿ Windows äÿë. Áúäåòå âíèìàòåëíè: òàçè "
+"îïåðàöèÿ å\n"
+"îïàñíà. Àêî îùå íå ñòå ãî íàïðàâèëè, òðÿáâà ïúðâî äà ïóñíåòå scandisk (è\n"
+"åâåíòóàëíî äà èçïîëçâàòå defrag) ïîä Windows âúðõó òîçè äÿë, òîãàâà \n"
+"ïîâòîðåòå èíñòàëàöèàÿòà. Áè áèëî äîáðå äà íàïðàâèòå àðõèâ íà äàííèòå ñè.\n"
+"Êîãàòî ñòå ñèãóðíè, íàòèñíåòå ÎÊ."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid level"
-msgstr "Cpuid íèâî"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Êîëêî èñêàòå äà îñòàâèòå çà windows?"
-#: ../../printer/main.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Novell ñúðâúð \"%s\", ïðèíòåð \"%s\""
+msgid "partition %s"
+msgstr "äÿë %s"
-#: ../../keyboard.pm:1
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "Ìîíãîëñêà (êèðèëèöà)"
+msgid "FAT resizing failed: %s"
+msgstr "Íåóñïåøíî ïðåðàçäåëÿíå íà FAT: %s"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Add a module"
-msgstr "Äîáàâè ìîäóëà"
+#: ../../install_interactive.pm_.c:171
+msgid ""
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Íÿìà FAT äÿëîâå çà ñìÿíà íà ãîëåìèíàòà èëè çà èçïîëçâàíå êàòî loopback (èëè "
+"íÿìà äîñòàòú÷íî ìÿñòî íà äèñêà)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr "Ïðîôèë çà èçòðèâàíå:"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr "Èçòðèé öåëèÿ äèñê"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Local measure"
-msgstr "Ëîêàëíî èçìåðâàíå"
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr "Ïðåìàõíè Windows(TM)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
-msgstr ""
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "èìàòå ïîâå÷å îò åäèí òâúðäè äèñêîâå, êîé äà èçïîëçâàì çà èíñòàëàöèÿòà?"
-#: ../../mouse.pm:1
+#: ../../install_interactive.pm_.c:183
#, c-format
-msgid "busmouse"
-msgstr "BUS ìèøêà"
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "ÂÑÈ×ÊÈ ñúùåñòâóâàùè äÿëîâå è äàííèòe âúðõó òÿõ íà %s ùå áúäàò çàãóáåíè"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Èìå íà àêàóíòà (ïîòåáèòåëñêî èìå)"
+#: ../../install_interactive.pm_.c:191
+msgid "Custom disk partitioning"
+msgstr "Êëèåíòñêî ðàçäåëÿíå íà äèñêà"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
-msgstr ""
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr "Èçïîëçâàé fdisk"
-#: ../../network/drakfirewall.pm:1
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-"drakfirewall êîíôèãóðàöèÿ\n"
-"\n"
-"Óáåäåòå ñå, ÷å âèå èìàòå êîíôèãóðèðàí Èíòåðíåò/Èíòðàíåò äîñòúï ñ\n"
-"drakconnect ïðåäè äà ïðàâèòå äðóãè íåùà ïî-íàòàòúê."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr "Ïðèåìà broadcast-íàòî icmp echo"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr "Óðóãâàé"
+"Ñåãà ìîæåòå äà ðàçäåëèòå %s.\n"
+"Êîãàòî ñòå ãîòîâè, íå çàáðàâÿéòå äà çàïèøåòå èçïîëçâàéêè `w'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Benin"
-msgstr "Áåíèí"
+#: ../../install_interactive.pm_.c:227
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Íÿìà äîñòàòú÷íî ñâîáîäíî ìÿñòî íà äÿëà"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "SMB/Windows ñúðâúð \"%s\", äÿë \"%s\""
+#: ../../install_interactive.pm_.c:243
+msgid "I can't find any room for installing"
+msgstr "Íå ìîãà äà íàìåðÿ íèêàêâî ìÿñòî çà èíñòàëàöèÿ"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path selection"
-msgstr "Èçáîð íà ïúò"
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Ïîìîùíèêúò çà ðàçäåëèíå íà äÿëîâå íà DrakX íàìåðè ñëåäíèòå ðåøåíèÿ:"
-#: ../../standalone/scannerdrake:1
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid "Name/IP address of host:"
-msgstr ""
+msgid "Partitioning failed: %s"
+msgstr "Íåóñïåøíî ðàçäåëÿíå íà: %s"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Ìîíèòîð: %s\n"
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr "Âêëþ÷âàì ìðåæàòà"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom & system settings"
-msgstr "Ïîòðåáèòåëñêè è ñèñòåìíè íàñòðîéêè"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr "Èçêëþ÷âàíå íà ìðåæàòà"
-#: ../../partition_table/raw.pm:1
-#, c-format
+#: ../../install_steps.pm_.c:76
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."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"Íåùî ëîøî ñòàâà ñ óñòðîéñòâîòî âè.\n"
-"Òåñòà çà öåëîñò íà äàííèòå ïðîïàäíà.\n"
-"Òîâà çíà÷è, ÷å ïèñàíåòî íà êàêâîòî è áèëî ïî äèñêà ùå ïðåâðúùà\n"
-"ïðîèçâîëíî â áîêëóê"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Ëèïñâà èìå íà õîñò íà ïðèíòåða èëè IP!"
+"Ïîÿâè ñå ãðåøêà, íî íå çíàì êàê äà ñå ñïðàâÿ ñ íåÿ äåëèêàòíî.\n"
+"Ìîæåòå äà ïðîäúëæèòå íà ñâîé ðèñê."
-#: ../../standalone/drakbackup:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Ìîëÿ, èçáåðåòå âñè÷êè ïîòðåáèòåëè,êîèòî æåëàåòå äà âêëþ÷èòå â àðõèâà."
+msgid "Duplicate mount point %s"
+msgstr "Äóáëèðàé òî÷êàòà íà ìîíòèðàíå %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps.pm_.c:380
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Key isn't writable"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bangladesh"
-msgstr "Áàíãëàäåø"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
+"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 ""
+"Íÿêîè âàæíè ïàêåòè íå ñå èíñòàëèðàõà êàêòî òðÿáâà.\n"
+"Èëè CDROM óñòðîéñòâîòî âè èëè êîìïàêò äèñêà âè å äåôåêòåí.\n"
+"Ïðîâåðåòå êîìïàêò äèñêà íà èíñòàëèðàíèÿ êîìïþòúð èçïîëçâàéêè \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Initial tests"
-msgstr "Íà÷àëíè òåñòîâå"
-
-#: ../../network/isdn.pm:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "Continue"
-msgstr "Íàòàòúê"
+msgid "Welcome to %s"
+msgstr "Äîáðå äîøëè â %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom Restore"
-msgstr "Ïîòðåáèòåëñêî âúçñòàíîâÿâàíå"
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr "Íÿìà ôëîïè óñòðîéñòâî"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "Saturday"
-msgstr "Ñúáîòà"
+msgid "Entering step `%s'\n"
+msgstr "Íàâëèçàì â åòàï `%s'\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:146
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."
+"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 ""
-"\"%s\"àêî íàìåðÿ çâóêîâà êàðòà,ùå âèäèòå ñúîáùåíèå çà òîâà.\n"
-"Àêî çàáåëåæèòå,÷å íàìåðåíàòà çâóêîâà êàðòà íå îòãîâàðÿ íà èñòèíàòà,\n"
-"ìîæåòå äà öúêíåòå íà áóòîíà è äà èçáåðåòå äðóã äðàéâåð."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the root umask."
-msgstr "Óñòàíîâÿâàíå íà root umask."
-
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "Ãðåøêà ïðè ÷åòåíåòî íà ôàéëà %s"
+"Âàøàòà ñèñòåìà å ñ ìàëêè ðåñóðñè. Ìîæå äà èìàòå ïðîáëåìè ñ èíñòàëèðàíåòî\n"
+"íà Mandrake Linux. Àêî ñå ïîÿâè ïðîáëåì îïèòàéòå ñ òåêñòîâàòà èíñàëàöèÿ. "
+"Çàöåëòà,\n"
+"íàòèñíåòå 'F1', êîãàòî ñòàðòèðàòå îò CDROM è âúâåäåòå 'òåüò'."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr "Áàçèðàíà íà ñêðèïò"
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr "Êëàñ èíñòàëàöèÿ"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "PLL setting:"
-msgstr "PLL íàñòðîéêè:"
+#: ../../install_steps_gtk.pm_.c:160
+#, fuzzy
+msgid "Please choose one of the following classes of installation:"
+msgstr "Ìîëÿ, èçáåðåòå åäèí îò ñëåäíèòå êëàñîâå íà èíñòàëàöèÿ:"
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Òðÿáâà äà èìàòå FAT äÿë ìîíòèðàí â /boot/efi"
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
+msgstr "Èçáîð íà ãðóïà ïàêåòè"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
+msgstr "Èçáèðàíå íà ïàêåòè åäèí ïî åäèí"
-#: ../../diskdrake/dav.pm:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid "The URL must begin with http:// or https://"
-msgstr "URL òðÿáâà äà çàïî÷âà ñ http:// èëè https://"
+msgid "Total size: %d / %d MB"
+msgstr "Îáùà ãîëåìèíà: %d / %d MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Òðÿáâà äèðåêòíî äà îïðåäåëèòå URI çà äîñòúï äî ïðèíòåðà. URI òðÿáâà äà "
-"èçïúëíè èëè CUPS èëè Foomatic ñïåöèôèêàöèèòå. Îòáåëåæåòå, ÷å íå âñè÷êè "
-"òèïîâå URI ñå ïîääðúðæàò îò spooler-èòå."
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
+msgstr "Ëîø ïàêåò"
-#: ../../any.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "Äðóãà ÎÑ (SunOS...)"
+msgid "Name: %s\n"
+msgstr "Èìå: %s\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid "Install/Upgrade"
-msgstr "Èíñòàëèðàé/Îáíîâè"
+msgid "Version: %s\n"
+msgstr "Âåðñèÿ: %s\n"
-#: ../../install_steps_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid "%d packages"
-msgstr "%d ïàêåòà"
+msgid "Size: %d KB\n"
+msgstr "Ãîëåìèíà: %d KB\n"
-#: ../../crypto.pm:1 ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
-msgid "Costa Rica"
-msgstr "Êîñòà Ðèêà"
+msgid "Importance: %s\n"
+msgstr "Âàæíîñò: %s\n"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:360
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"
+"You can't select this package as there is not enough space left to install it"
msgstr ""
+"Íå ìîæåòå äà îñòàâèòå ïàêåòà íåìàðêèðàí, çàùîòî íÿìàòå ìÿñòî äà ãî "
+"èíñòàëèðàòå"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain Authentication Required"
-msgstr "Èçèñêâà Èäåíòèôèêàöèÿ çà Äîìåéí"
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
+msgstr "Ñëåäíèòå ïàêåòè ùå áúäàò èíñòàëèðàíè"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Use libsafe for servers"
-msgstr "Èçïîëçâàéòå libsafe çà ñúðâúðè"
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
+msgstr "Ñëåäíèòå ïàêåòè ùå áúäàò ïðåìàõíàòè"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Icelandic"
-msgstr "Èñëàíäñêà"
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
+msgstr "Íå ìîæåòå äà îòáåëåæåòå/äåîòáåëåæåòå òîçè ïàêåò"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
-msgstr ""
-"\n"
-"Èçïîëçâàíå: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Òîâà å íóæåí ïàêåò, íå ìîæå äà áúäå íåìàðêèðàí"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
+msgstr "Íå ìîæåòå äà îñòàâèòå òîçè ïàêåò íåìàðêèðàí. Òîé âå÷å å èíñòàëèðàí"
+
+#: ../../install_steps_gtk.pm_.c:395
msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
-"Ìîëÿ, âúâåäåòå ìàêñèìàëíèÿò ðàçìåð\n"
-" ïîçâîëåí çà Drakbackup (â ÌÁ)"
+"Òîçè ïàêåò òðÿáâà äà áúäå îáíîâåí\n"
+"Ñèãóðíè ëè ñòå, ÷å èñêàòå äà ãî èçêëþ÷èòå ?"
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "\"Îìàãüîñàí êðúã\" îò ìîíòèðàíèÿ: %s\n"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "Íå ìîæåòå äà èçêëþ÷èòå òîçè ïàêåò. Òîé òðÿáâà äà áúäå îáíîâåí"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo/grub mode"
-msgstr "Ðåæèì íà Lilo/grub"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
+msgstr "Ïîêàæè àâòîìàòè÷íî îòáåëÿçàíèòå ïàêåòè"
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "Ìàðòèíèêà"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr "Èíñòàëèðàé"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Òâúðä äèñê / NFS"
+#: ../../install_steps_gtk.pm_.c:407
+msgid "Load/Save on floppy"
+msgstr "Çàðåäè/Çàïàçè íà äèñêåòà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Old user list:\n"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:408
+msgid "Updating package selection"
+msgstr "Îáíîâÿâàíå íà èçáîðà íà ïàêåòè"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:413
+msgid "Minimal install"
+msgstr "Ìèìèíàëíà èíñòàëàöèÿ"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "a number"
-msgstr "íîìåð"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
+msgstr "Èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "Øâåäñêà"
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr "Èíñòàëèðàì"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Êîé %s äðàéâåð äà ïðîáâàì ?"
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr "Ïðåñìÿòàíå"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr ""
-"Âèå ùå ïîëó÷èòå òðåâîãà àêî åäíî îò èçáðîåíèòå îáñëóæâàíèÿ íå ñå èçïúëíÿâà "
-"ïîâå÷å"
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr "Îñòàâàùî âðåìå "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Weekday"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:469
+msgid "Please wait, preparing installation..."
+msgstr "Ìîëÿ, èç÷àêàéòå, ïîäãîòâÿíå íà èíñòàëàöèÿòà"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid "Filesystem types:"
-msgstr "Âèäîâå ôàéëîâà ñèñòåìà:"
+msgid "%d packages"
+msgstr "%d ïàêåòà"
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "Northern Mariana Islands"
-msgstr "Ñåâåðíè Ìàðèàíîâè Îñòðîâè"
+msgid "Installing package %s"
+msgstr "Èíñòàëèðàíå íà ïàêåòà %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", ìíîãîôóíêöèîíàëíî óñòðîéñòâî íà HP JetDirect"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "Ïðèåìè"
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "íÿìà"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
+msgstr "Îòêàæè"
-#: ../../standalone/drakconnect:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Èìå íà ñúçäàâàíèÿ ïðîôèë (íîâèÿò ïðîôèë ñå ñúçäàâà êàòî êîïèå íà òåêóùèÿ):"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Floppy"
-msgstr "Ôëîïè"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript referencing"
-msgstr ""
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Bootloader"
-msgstr "Bootloader"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
+"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 ""
+"Ñìåíåòå CD-ROM !\n"
+"\n"
+"Ìîëÿ, ñëîæåòå CD-ROM îçàãëàâåí \"%s\" â óñòðîéñòâîòî è íàòèñíåòå Ok, êîãàòî "
+"ñòå ãîòîâè.\n"
+"Àêî ãî íÿìàòå, íàòèñíåòå Îòìÿíà, çà äà èçáåãíåòå èíñòàëèðàíåòî îò òîçè CD-"
+"ROM."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "Ïðåìåñòè"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Bootloader to use"
-msgstr "Èçïîëçâàíà çàðåæäàùàòà ïðîãðàìà"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "Õîñò íà SMB ñúðâúð"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
+msgstr "Äà ïðîäúëæà ëè âñå ïàê ?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Name Servers:"
-msgstr "Name ñúðâúðè:"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
+msgstr "Ïîÿâè ñå ãðåøêà ïðè ïîðú÷âàíåòî íà ïàêåòèòå:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Minute"
-msgstr "Ìèíóòà"
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
+msgstr "Ïîÿâè ñå ãðåøêà ïðè èíñòàëèðàíå íà ïàêåòèòå:"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:10
msgid ""
"\n"
"Warning\n"
@@ -6897,5604 +4813,4617 @@ msgstr ""
"ñúîòâåòíèòå èì àâòîðè è ñà çàùèòåíè êàòî èíòåëåêòóàëíà ñîáñòâåíîñò îò\n"
"çàêîíèòå çà àâòîðñêè ïðàâà ïðèëîæèìè çà ñîôòóåðíèòå ïðîãðàìè.\n"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Expert mode"
-msgstr "/ Ðàçøèðåíè ôóíêèöèè"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Ïðåìàõâà òîçè ïðèíòåð îò Star Office/OpenOffice.org/GIMP"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtual Server ñå èçïîëçâà çà èçãðàæäàíå íà âèñîêîïðîèçâîäèòåëåí\n"
-"è äîáðå äîñòúïåí ñúðâúð."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr "Ìèêðîíåçèÿ"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 ìèëèàðäà öâÿòà (32 áèòà)"
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
+msgstr "Ïîÿâè ñå ãðåøêà"
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
-msgstr "Ëèöåíç"
+#: ../../install_steps_interactive.pm_.c:85
+#, fuzzy
+msgid "Do you really want to leave the installation?"
+msgstr "Íàèñòèíà ëè èñêàòå äà ïðåìàõíåòå ïðèíòåðà \"%s\" ?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
+msgstr "Ëèöåíçèîíåí äîãîâîð"
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
+"Introduction\n"
"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
-"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"
+"1. License Agreement\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"
+"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"
-"<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"
+"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"
-"<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"
+"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"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
"\n"
+"3. The GPL License and Related Licenses\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"
+"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"
-"<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 ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr "Àâòîìàòè÷íî îòêðèâàíå íà ïðèíòåð (Ëîêàëåí, TCP/Socket, è SMB ïðåíòåðè)"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr "Sagem (èçïîëçâà pppoa) usb"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"Ïîÿâè ñå ãðåøêà - íå ñà îòêðèòè âàëèäíè óñòðîéñòâà, âúðõó êîèòî äà áúäàò "
-"ñúçäàäåíè íîâè ôàéëîâè ñèñòåìè. Ìîëÿ ïðîâåðåòå òâúðäèÿ ñè äèñê ñè çà "
-"ïðè÷èíàòà çà òîçè ïðîáëåì"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Ñòàðòèðàíå íà ïðèíòåðíàòà ñèñòåìà ïðè ñòàðòèðàíå"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Èñêàòå ëè äà ñòàðòèðàòå âðúçêàòà ñè ïðè çàðåæäàíå ?"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr "Ïðîöåñîð ID"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr "Çàòðóäíåíèÿ ïðè çâóê"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "Ïîëñêà (QWERTY íàðåäáà)"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Add Printer"
-msgstr "/ Äîáàâÿíå íà ïðèíòåð"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"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"
-"Drakbackup activities via CD:\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 ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
+"Âúâåäåòíèå\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"
+"Îïåðàöèîííàòà ñèñòåìà è ðàçëè÷íèòå êîìïîíåíòè äîñòúïíè â Mandrake Linux "
+"äèñòðèáóöèÿòà ïî-äîëó ùå ñå\n"
+"íàðè÷àò \"Ñîôòóåðåí Ïðîäóêòè\". Ñîôòóåðíèòå Ïðîäóêòè âêëþ÷âàò, íî íå ñå "
+"îãðàíè÷àâàò ñàìî äî, íàáîðà\n"
+"ïðîãðàìè, ìåòîäè, ïðàâèëà è äîêóìåíòàöèÿ îòíàñÿùà ñå äî îïåðàöèîííàòà "
+"ñèñòåìà è ðàçëè÷íèòå\n"
+"êîìïîíåíòè íà Mandrake Linux äèñòðèáóöèÿòà.\n"
"\n"
-"Do you really want to configure printing on this machine?"
+"\n"
+"1. Ëèöåíçèîíåí äîãîâîð\n"
+"\n"
+"Ìîëÿ, ïðî÷åòåòå âíèìàòåëíî òîçè äîêóìåíò. Òîçè äîêóìåíò å ëèöåíçèîíåí "
+"äîãîâîð ìåæäó âàñ è\n"
+"MandrakeSoft S.A., êîéòî ñå îòíàñÿ äî Ñîôòóåðíèÿ Ïðîäóêò. ×ðåç "
+"èíñòàëèðàíåòî, êîïèðàíåòî\n"
+"èëè èçïîëçâàíåòî íà Ñîôòóåðíèÿ Ïðîäóêò ïî êàêúâòî è äà å íà÷èí âèå èçðè÷íî "
+"ïðèåìàòå è\n"
+"íàïúëíî ñå ñúãëàñÿâàòå äà ñïàçâàòå ñðîêîâåòå è óñëîâèÿòà íà òîçè Ëèöåíç.\n"
+"Àêî íå ñå ñúãëàñÿâàòå ñ íÿêîÿ ÷àñò íà Ëèöåíçà, íÿìàòå ïðàâî äà èíñòàëèðàòå, "
+"êîïèðàòå èëè\n"
+"èçïîëçâàòå Ñîôòóåðíèÿ Ïðîäóêò. Îïèòèòå äà ñå èíñòàëèðà, êîïèðà èëè èçïîëçâà "
+"Ñîôòóåðíèÿ Ïðîäóêò\n"
+"íåñúîáðàçíî ñúñ ñðîêîâåòå è óñëîâèÿòà íà òîçè Ëèöåíç ñå çàáðàíÿâàò è òàêèâà "
+"ïðåêðàòÿâàò ïðàâàòà\n"
+"âè ïî òîçè Ëèöåíç. Ïðè ïðåêðàòÿâàíå íà Ëèöåíçà, òðÿáâà íåçàáàâíî äà "
+"óíèæòîæèòå âñè÷êè\n"
+"êîïèÿ íà Ñîôòóåðíèÿ ëèöåíç.\n"
+"\n"
+"\n"
+"2. Îãðàíè÷åíà ãàðàíöèÿ\n"
+"\n"
+"Ñîôòóåðíèòå Ïðîäóêòè è ïðèëîæåíàòà äîêóìåíòàöèÿ ñå ïðåäîñòàâÿòà \"òàêèâà "
+"êàêâèòî ñà\", áåç ãàðàíöèÿ,\n"
+"â ðàìêèòå íà ðàçðåøåíîòî îò çàêîíà.\n"
+"MandrakeSoft S.A., ïðè íèêàêâè îáñòîÿòåëñòâà è â ðàìêèòå íà çàêîíà, íå å "
+"îòãîâîðíà çà êàêâèòî äà e\n"
+"óìèøëåíè, ñëó÷àéíè, ïðåêè èëè êîñòâåíè ùåòè (âêëþ÷èòåëíî çàãóáà íà äàííè çà "
+"ðàáîòà, ïðåêðàòÿâàíå íà,\n"
+"ðàáîòà, ôèíàíñîâè çàãóáè, çàêîííè äàíúöè è íàêàçàíèÿ â ðåçóëòàò íà ñúäåáíî "
+"ðåøåíèå èëè êàêâàòî è äà å\n"
+"äðóãà ïðîèçëèçàùè îò òîâà çàãóáè) ïðîèçòè÷àùè îò óïîòðåáàòà èëè îò "
+"íåâúçìîæíîñòòà äà ñå óïîòðåáè\n"
+"Ñîôòóåðíèÿ Ïðîäóêò, äàæå àêî MandrakeSoft S.A. äà å èçâåñòèëà çà "
+"âúçìîæíîñòòà èëè ñëó÷âàíåòî íà òàêàâà çàãóáà.\n"
+"\n"
+"ÎÃÐÀÍÈ×ÅÍÀ ÎÒÃÎÂÎÐÍÎÑÒ ÑÂÚÐÇÀÍÀ Ñ ÏÐÈÒÅÆÀÂÀÍÅÒÎ ÈËÈ ÈÇÏÎËÇÂÀÍÅÒÎ ÍÀ ÇÀÁÐÀÍÅÍ "
+"ÑÎÔÒÓÅÐ Â ÍßÊÎÈ ÑÒÐÀÍÈ\n"
+"\n"
+"Â ðàìêèòå íà çàêîíà, MandrakeSoft S.A. è íåéíèòå äèñòðèáóòîðè íÿìà ïðè "
+"íèêàêâè óñëîâèÿ äà áúäàò\n"
+"îòãîâîðíè çà êàêâèòî è äà áèëî óìèøëåíè, ñëó÷àéíè, ïðåêè èëè êîñâåíè ùåòè "
+"(âêëþ÷èòåëíî çàãóáà íà äàííè\n"
+"çà ðàáîòà, ïðåêðàòÿâàíå íà, ðàáîòà, ôèíàíñîâè çàãóáè, çàêîííè äàíúöè è "
+"íàêàçàíèÿ â ðåçóëòàò íà\n"
+"ñúäåáíî ðåøåíèå èëè êàêâàòî è äà å äðóãà ïðîèçëèçàùè îò òîâà çàãóáè) "
+"ïðîèçòè÷àùè îò ïðèòåæàâàíåòî\n"
+"è óïîòðåáàòà íà ñîôòóåðíè êîìïîíåíòè è îò èçòåãëÿíåòî íà ñîôòóåðíè "
+"êîìïîíåíòè îò ñàéòîâåòå íà Mandrake Linux,\n"
+"êîèòî ñà çàáðàíåíè â íÿêîè ñòðàíè îò ìåñòíîòî çàêîíîäàòåëñòâî.\n"
+"Òàçè îãðàíè÷åíà îòãîâîðíîñò ñå îòíàñÿ äî, íî íå ñàìî çà, ìîùíèòå "
+"êðèïòîãðàôñêè êîìïîíåíòè âêëþ÷åíè\n"
+"â Ñîôòóåðíèÿ Ïðîäóêò.\n"
+"\n"
+"\n"
+"3. GPL Ëèöåíçà è ïðèäðóæàâàùè ëèöåíçè\n"
+"\n"
+"Ñîôòóåðíèÿò Ïðîäóêò ñå ñúñòîè îò êîìïîíåíòè ñúçäàäåíè îò ðàçëè÷íè õîðà èëè "
+"îðãàíèçàöèè. Ïîâå÷åòî îò\n"
+"òåçè êîìïîíåíòè ñå óïðàâëÿâàò îò ñðîêîâåòå è óñëîâèÿòà íà GNU Îáùèÿ Ïóáëè÷åí "
+"Ëèöåíç, îòòóê íàòàòúê íàðè÷àí\n"
+"\"GPL\", èëè ïîäîáíè íåìó ëèöåíçè. Ïîâå÷åòî îò òåçè ëèöåíçè âè ïîçâîëÿâàò äà "
+"èçïîëçâàòå, êîïèðàòå, èëè\n"
+"ðåäèñòðèáóòèðàòå êîìïîíåíòèòå, êîèòî òå ïîêðèâàò. Ìîëÿ, ïðî÷åòåòå âíèìàòåëíî "
+"ñðîêîâåòå è óñëîâèÿòà íà\n"
+"ëèöåíçèîííèÿ äîãîâîð íà âñåêè êîìïîíåíò ïðåäè äà ãî èçïîëçâàòå. Âñÿêàêâè "
+"âúïðîñè îòíîñíî ëèöåíçà\n"
+"íà êîìïîíåíòèòå áè òðÿáâàëî äà áúäàò íàñî÷åíè êúì ñúîòâåòíèÿ èì àâòîð, à íå "
+"êúì MandrakeSoft.\n"
+"Ïðîãðàìèòå ðàçðàáîòåíè îò MandrakeSoft S.A. ñå óïðàâëÿâàò îò GPL Ëèöåíçà. "
+"Äîêóìåíòàöèÿòà íàïèñàíà\n"
+"îò MandrakeSoft S.A. ñå óïðàâëÿâà îò ñïåöèàëåí ëèöåíç. Ìîëÿ, ïîãëåäíåòå "
+"äîêóìåíòàöèÿòà çà\n"
+"ïîâå÷å èíôîðìàöèÿ.\n"
+"\n"
+"\n"
+"4. Ïðàâà çà Èíòåëåêòóàëíà Ñîáñòâåíîñò\n"
+"\n"
+"Âñè÷êè ïðàâà êúì êîìïîíåíòèòå íà Ñîôòóåðíèÿ Ïðîäóêò ïðèíàäëåæàò íà "
+"ñúîòâåòíèòå èì àâòîðè è ñà\n"
+"çàùèòåíè îò çàêîíèòå çà èíòåëåêòóàëíàòà ñîáñòâåíîñò è çà êîïèðàíå ïðèëàãàíè "
+"çà ñîôòóåðíèòå ïðîãðàìè.\n"
+"MandrakeSoft S.A. çàïàçâà ïðàâîòî ñè äà ìîäèôèöèðà è ïðèãîäÿâà Ñîôòóåðíèÿ "
+"Ïðîäóêò, êàòî öÿëî èëè íà\n"
+"÷àñòè, ïî âñÿêàêúâ íà÷èì î ñ âñÿêàêâè öåëè.\n"
+"\"Mandrake\", \"Mandrake Linux\" è ñâúðçàíèòå ëîãîòà ñà çàïàçåíà ìàðêà íà "
+"MandrakeSoft S.A.\n"
+"\n"
+"\n"
+"5. Óïðàâëÿâàùè Çàêîíè\n"
+"\n"
+"Àêî íÿêîÿ ÷àñò îò òîçè äîãîâîð ñå âîäè çàáðàíåíà, íåëåãàëíà èëè íåïðèëîæèìà "
+"ñïîðåä ðåøåíèå íà ñúä,\n"
+"òàçè ÷àñò ñå èçêëþ÷âà îò äîãîâîðà. Âèå îñòàâàòå îãðàíè÷åíè îò îñòàíàëèòå "
+"ïðèëîæèìè ñåêöèè íà äîãîâîðà.\n"
+"Ñðîêîâåòå è óñëîâèÿòà íà òîçè Ëèöåíç ñå óïðàâëÿâàò îò Çàêîíèòå íà Ôðàíöèÿ.\n"
+"Âñè÷êè ñïîðîâå ïî óñëîâèÿòà íà òîçè ëèöåç áè áèëî äîáðå äà ñå îòíåñàò äî "
+"ñúäà. Êàòî êðàéíà ìÿðêà,\n"
+"ñïîðîâåòå ùå áúäàò îòíàñÿíè äî ïîäõîäÿùèÿ ïðàâíè ñúäèëèùà íà Ïàðèæ - "
+"Ôðàíöèÿ.\n"
+"Çà âñÿêàêâè âúïðîñè ïî òîçè äîêóìåíò, ìîëÿ, ñâúðæåòå ñå ñ MandrakeSoft S.A.\n"
+"\n"
+"ÇÀÁÅËÅÆÊÀ: Òîâà å áúëãàðñêè ïðèáëèçèòåëåí ïðåâîä íà äîêóìåíòà, êîåòî "
+"îçíà÷àâà, ÷å òîé\n"
+"âåðîÿòíî íå å äîñòàòú÷íî òî÷åí. Êàòî ïî-äîñòîâåðåí èçòî÷íèê ïîëçâàéòå "
+"íåãîâèÿ îðèãèíàë íà\n"
+"àíãëèéñêè.\n"
+
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Õîñò \"%s\", ïîðò %s"
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "Êëàâèàòóðà"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "Òîçè äÿë íå ìîæå äà áúäå èçïîëçâàí çà loopback"
+#: ../../install_steps_interactive.pm_.c:218
+#, fuzzy
+msgid "Please choose your keyboard layout."
+msgstr "Ìîëÿ, èçáåðåòå ïîäðåæäàíå íà êëàâèàòóðàòà."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr "Ôàéëúò âå÷å ñúøåñòâóâà. Äà ãî èçïîëçâàì ëè ?"
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
+msgstr "Åòî ïúëåí ñïèñúê íà äîñòðúïíèòå êëàâèàòóðè"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
-msgstr "ïîëó÷åíî: "
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
+msgstr "Êàêúâ êëàñ èíñòàëàöèÿ æåëàåòå ?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr "Äåñåí Alt êëàâèø"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
+msgstr "Èíñòàëèðàé/Îáíîâè"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "ñïèñúê íà àëòåðíàòèâíè äðàéâåðè çà òàçè êàðòà"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
+msgstr "Òîâà íîâà èíñòàëàöèÿ ëè å èëè îáíîâÿâàíå ?"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Gateway"
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr "Ïðåïîðú÷èòåëíà"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr "Òîíãà"
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Åêñïåðòíà"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "Òóíèñ"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#, fuzzy
+msgid "Upgrade"
+msgstr "Îáíîâÿâàíå"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing"
-msgstr "Ñïîäåëÿíå íà ñêåíåðè"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#, fuzzy
+msgid "Upgrade packages only"
+msgstr "Îáíîâÿâàíå íà èçáîðà íà ïàêåòè"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile: "
-msgstr "Ïðîôèë: "
+#: ../../install_steps_interactive.pm_.c:282
+#, fuzzy
+msgid "Please choose the type of your mouse."
+msgstr "Ìîëÿ, èçáåðåòå òèï íà ìèøêàòà."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr "Ïîðò íà ìèøêàòà"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr "Ïîçâîëÿâà/Çàáðàíÿâà àâòîìàòè÷íî âëèçàíå."
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
+msgstr "Ìîëÿ, èçáåðåòå êúì êîé ñåðèåí ïîðò å ñâúðçàíà ìèøêàòà âè."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
+msgstr "Èìèòàöèÿ íà áóòîíè"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Íå âêëþ÷âà êðèòè÷íè ôàéëîâå (passwd, group, fstab)"
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
+msgstr "Èìèòàöèÿ íà 2 áóòîíà"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
+msgstr "Èìèòàöèÿ íà 3 áóòîíà"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr "Íàñòðîéêà íà PCMCIA êàðòèòå ..."
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
-msgstr "Òîçè åòèêåò âå÷å ñå èçïîëçâà"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr "Íàñòðîéêà íà IDE"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Ñëåä ôîðìàòèðàíå íà äÿëà %s, âñè÷êè äàííè âúðõó íåãî ùå áúäàò çàãóáåíè"
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr "íÿìà äÿëîâå íà ðàçïîëîæåíèå"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection Time: "
-msgstr "Âðåìå íà âðúçêàòà: "
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
+msgstr "Ïðåòúðñâàíå íà äÿëîâåòå çà íàìèðàíå íà òî÷êè íà ìîíòèðàíå"
-#: ../../standalone/livedrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr "Èçáåðåòå ìåñòà çà ìîíòèðàíå"
+
+#: ../../install_steps_interactive.pm_.c:386
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."
+"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 ""
-"Ìîëÿ, ñëîæåòå Èíñòàëàöèîííèÿ CD-ROM â óñòðîéñòâîòî è íàòèñíåòå Ok, êîãàòî "
-"ñòå ãîòîâè.\n"
-"Àêî ãî íÿìàòå, íàòèñíåòå Îòìÿíà, çà äà èçáåãíåòå èíñòàëèðàíåòî îò òîçè CD-"
-"ROM."
+"Íÿìà ñâîáîäíî ìÿñòî çà 1 ÌÁ ñòàðòèðàùî ïîëå ! Èíñòàëàöèÿòà ùå ïðîäúëæè, íî, "
+"çà äà ñòàðòèðàòå ñèñòåìàòà ñè, ùå òðÿáâà äà ñúçäàäåòå ñòàðòèðàùî ïîëå â "
+"DiskDrake"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use group id for execution"
-msgstr "Èçïîëçâà id íà ãðóïà ïðè èçïúëíåíèå"
+#: ../../install_steps_interactive.pm_.c:395
+msgid "No root partition found to perform an upgrade"
+msgstr "Íå å íàìåðåí ãëàâåí äÿë çà íàäãðàæäàíå"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "Èçáåðåòå ïîäðàçáèðàù ñå ïîòðåáèòåë :"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr "Root äÿë"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "Ãàáîí"
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr "Êîé å root-äÿëúò (/) íà ñèñòåìàòà âè ?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Îòäàëå÷åíèòå íà CUPS ñúðâúð ïðèíòåðè íå òðÿáâà äà íàñòðîéâàòå\n"
-"òóê; òåçè ïðèíòåðè ùå áúäàò çàñå÷åíè àâòîìàòè÷íî."
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr "Íàëàãà ñå ðà ðåñòàðòèðàòå, ïðåäè ìîäèôèêàöèèòå äà ïðåäèçâèêàò åôåêò"
-#: ../../any.pm:1
-#, 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."
-msgstr ""
-"Mandrake Linux ìîæå äà ïîäúðæà ìíîãî åçèöè. Èçáåðåòå\n"
-"åçèöèòå êîèòî èñêàòå àä èíñòàëèðàòå. Òå ùå áúäàò íàëè÷íè ñëåä\n"
-"êàòî çàâúðøè èíñòàëàöèÿòà è âèå ïðåñòàðòèðàòå ñèñòåìàòà."
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr "Èçáåðåòå äÿëîâåòå, êîèòî èñêàòå äà ôîðìàòèðàòå"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
+msgstr "Ïðîâåðêà çà ëîøè ñåêòîðè ?"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain"
-msgstr "Äîìåéí"
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr "Ôîðìàòèðàíå íà äÿëowe"
-#: ../../any.pm:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Òî÷åí ðàçìåð íà RAM-ïàìåòòà, àêî å íåîáõîäèìî (íàìåðåíè %d MB)"
+msgid "Creating and formatting file %s"
+msgstr "Ñúçäàâàíå è ôîðìàòèðàíå íà ôàéëà %s"
-#: ../../help.pm:1
+#: ../../install_steps_interactive.pm_.c:470
#, 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."
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "2-ðè DNS íà äîñòàâ÷èêà (ïî æåëàíèå)"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "Ñòàðòèðàùî óñòðîéñòâî"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Êîé äÿë æåëàåòå äà ïðîìåíèòå?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr "Ìàëêè Îñòðîâè ïî êðàéáðåæèåòî íà ÑÀÙ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Djibouti"
-msgstr "Äæèáóòè"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Èíñòðóìåíò çà ïðåãëåæäàíå íà âàøèòå ëîã ôàéëîâå"
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+"Íÿìà äîñòàòú÷íî swap çà ïðèêëþ÷âàíå íà èíñòàëàöèÿòà, ìîëÿ äîáàâåòå ìàëêî"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected on port %s"
-msgstr "çàñå÷åí íà ïîðò %s"
+#: ../../install_steps_interactive.pm_.c:479
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Òúðñÿ íàëè÷íè ïàêåòè"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD"
-msgstr "LPD"
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr "Òúðñÿ íàëè÷íè ïàêåòè"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Ãðàôè÷íà êàðòà: %s\n"
+#: ../../install_steps_interactive.pm_.c:483
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Íå ìîæåòå äà îñòàâèòå òîçè ïàêåò íåìàðêèðàí. Òîé âå÷å å èíñòàëèðàí"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/Set as _Default"
-msgstr "/(Ïî ïîäðàçáèðàíå)"
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr "Òúðñÿ ïàêåòè çà îáíîâÿâàíå"
-#: ../../security/l10n.pm:1
+#: ../../install_steps_interactive.pm_.c:505
#, c-format
-msgid "Accept icmp echo"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
+"Ñèñòåìàòà âè íÿìà äîñòàòú÷íî ìÿñòî çà èíñòàëàöèÿ èëè îáíîâÿâàíå (%d > %d)"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Series ñ åìóëàöèÿ íà êîëåëöå"
+#: ../../install_steps_interactive.pm_.c:541
+msgid ""
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
+msgstr ""
+"Ìîæå èçáåðåòå çàðåæäàíå èëè çàïèñ íà èçáîðà íà ïàêåòè íà ôëîïè.\n"
+"Ôîðìàòúò å ñúùèÿò êàòî auto_install ãåíåðèðàíèòå äèñêåòè."
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "Ðàçøèðåíè äÿëîâå íå ñå ïîääúðæàò íà òàçè ïëàòôîðìà"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Load from floppy"
+msgstr "Çàðåäè îò äèñêåòà"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Splash selection"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr "Çàïàçè íà äèñêåòà"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Íàñòðîéêà íà IDSN"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Loading from floppy"
+msgstr "Çàðåæäàíå îò äèñêåòà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "high"
-msgstr "âèñîêî"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Package selection"
+msgstr "Èçáîð íà ïàêåòè"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Ñïîäåëÿíå íà âðúçêàòà ñ Èíòåðíåò"
+#: ../../install_steps_interactive.pm_.c:552
+msgid "Insert a floppy containing package selection"
+msgstr "Ñëîæåòå äèñêåòà ñúäúðæàùà èçáîð íà ïàêåòè"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Choose file"
-msgstr "Èçáåðåòå ôàéë"
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
+msgstr "Èçáðàíàòà ãîëåìèíà å ïî-ãîëÿìà îò äîñòúïíîòî ïðîñòðàíñòâî"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Summary: "
-msgstr "Îáîáùåíèå"
+#: ../../install_steps_interactive.pm_.c:649
+#, fuzzy
+msgid "Type of install"
+msgstr "Èçáåðåòå ïàêåòè çà èíñòàëèðàíå"
-#: ../../network/shorewall.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:650
msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
msgstr ""
-"Âíèìàíèå ! Îòêðèòà å íàñòðîéêà íà Çàùèòíà Ñòåíà. Ìîæå äà ñå íàëîæè íÿêàêâà "
-"ðú÷íà ïîïðàâêà ñëåä èíñòàëàöèÿòà."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Ïå÷àòàíå/Ôîòî êàðòåí äîñòúï íà \"%s\""
+#: ../../install_steps_interactive.pm_.c:653
+#, fuzzy
+msgid "With X"
+msgstr "Åäèí ìîìåíò"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:741
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"If you have all the CDs in the list below, click Ok.\n"
+"If you have none of those CDs, click Cancel.\n"
+"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-"Èñêàòå ëè äà ðàçðåøèòå ïå÷àò íà ïðèíòåðèòå ñïîìåíàòè ãîðå èëè íà ïðèíòåðèòå "
-"â ëîêàëíàòà ìðåæà?\n"
+"Àêî èìàòå âñè÷êè CD-òà îò ñïèñúêà ïî-ãîðå, íàòèñíåòå Ok.\n"
+"Àêî íÿìàòå íèòî åäíî îò òåçè CD-òà, íàòèñíåòå Îòìÿíà.\n"
+"Àêî âè ëèïñâàò íÿêîè CD-òà, ìàõíåòå ãè, è íàòèñíåòå Ok. "
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:746
#, c-format
-msgid "Printer default settings"
-msgstr "Íàñòðîéêè ïî ïîäðàçáèðàíå çà ïðèíòåðà"
+msgid "Cd-Rom labeled \"%s\""
+msgstr "CD-ROM îçàãëàâåí \"%s\""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Îáèêíîâåííà PS2 ìèøêà"
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr "Ïîäãîòâÿì èíñòàëàöèÿòà"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm_.c:776
#, 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)"
+"Installing package %s\n"
+"%d%%"
msgstr ""
+"Èíñòàëèðàì ïàêåò %s\n"
+"%d%%"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Èçòðèâàíå íà ñòàð ïðèíòåð \"%s\"..."
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
+msgstr "Ñëåä èíñòàëàöèîííà íàñòðîéêà"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm_.c:828
#, c-format
-msgid "Select a device !"
-msgstr "Èçáåðåòå óñòðîéñòâî !"
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Ñëîæåòå ñòàðòèðàùàòà äèñêåòà â óñòðîéñòâî %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:834
#, c-format
-msgid "Remove selected server"
-msgstr "Èçòðèâàíå íà èçáðàíèÿ ñúðâúð"
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "Ñëîæåòå äèñêåòà çà îáíîâÿâàíå íà ìîäóëè â óñòðîéñòâî %s"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using dhcp) usb"
-msgstr "Sagem (èçïîëçâà dhcp) usb"
+#: ../../install_steps_interactive.pm_.c:861
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates ?"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "French Southern Territories"
-msgstr "Ôðàíöèÿ Þæíè Òåðèòîðèè"
+#: ../../install_steps_interactive.pm_.c:876
+#, fuzzy
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgstr "Ñâúðçâàíå ñ îãëåäàëíèÿ ñúðâúð çà ïîëó÷àâàíå íà ñïèñúêà ñ ïàêåòèòå"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "èìåòî íà ïðîèçâîäèòåëÿ íà ïðîöåñîðà"
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
+msgstr "Èçáåðåòå îãëåäàëåí ñúðâúð,îò êîéòî äà ïîëó÷èòå ïàêåòèòå"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Ñâúðçâàíå ñ îãëåäàëíèÿ ñúðâúð çà ïîëó÷àâàíå íà ñïèñúêà ñ ïàêåòèòå"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr "Âñè÷êè äàííè íà òîçè äÿë òðÿáâà äà áúäàò àðõèâèðàíè"
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr "Êîÿ å âðåìåâàòà âè çîíà ?"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "Èíñòàëèðàíå íà ïàêåòà %s"
+#: ../../install_steps_interactive.pm_.c:923
+msgid "Hardware clock set to GMT"
+msgstr "Õàäðóåðíèÿò âè ÷àñîâíèê å íàñòðîåí ïî GMT"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr "Ïðîâåðêà íà óñòðîéñòâî è êîíôèãóðàöèÿ çà HPOJ..."
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Àâòîìàòè÷íà ñèíõðîíèçàöèÿ íà âðåìåòî (èçïîëçâà NTP)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Àêî èñêàòå îùå äÿëîâå, ìîëÿ èçòðèéòå åäèí, çà äà ìîæåòå äà ñúçäàäåòå åäèí "
-"ðàçøèðåí äÿë"
+#: ../../install_steps_interactive.pm_.c:931
+msgid "NTP Server"
+msgstr "NTP ñúðâúð"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
+msgstr "Îòäàëå÷åí CUPS ñúðâúð"
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "Ïàêåòè çà èíñòàëèðàíå"
+#: ../../install_steps_interactive.pm_.c:966
+msgid "No printer"
+msgstr "Íÿìà ïðèíòåð"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "ÂÑÈ×ÊÈ ñúùåñòâóâàùè äÿëîâå è äàííèòe âúðõó òÿõ íà %s ùå áúäàò çàãóáåíè"
+#: ../../install_steps_interactive.pm_.c:982
+#, fuzzy
+msgid "Do you have an ISA sound card?"
+msgstr "Èìàòå ëè äðóã(è) ?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-"Ñèñòåìàòà âè íÿìà äîñòàòú÷íî ìÿñòî çà èíñòàëàöèÿ èëè îáíîâÿâàíå (%d > %d)"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-"Âñåêè ïðèíòåð ñå íóæäàå îò èìå (íàïðèìåð \"printer\"). Ïîëåòàòà Îïèñàíèå è "
-"Ìåñòîïîëîæå íå òðÿáâà äà áúäàò ïîïúëâàíè. Èìà êîìåíòàðè çà ïîòðåáèòåëèòå."
-#: ../../help.pm:1
-#, 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."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
+msgstr "Îáîáùåíèå"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr "Áóòàí"
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
+msgstr "Ìèøêà"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "Ìðåæîâ èíòåðôåéñ"
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
+msgstr "×àñîâà çîíà"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Ðàçêà÷âàíåòî îò Èíòåðíåò å íåóñïåøíî"
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "Ïðèíòåð"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
-msgstr "×åòåíå íà äàííè îò ïðèíòåðà ..."
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
+msgstr "ISDN êàðòà"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "Êîðåéñêà êëàâèàòóðà"
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
+msgstr "Çâóêîâà êàðòà"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Not connected"
-msgstr "Íå ñâúðçàí"
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
+msgstr "TV êàðòà"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "Íàñòðîéêà íà Èíòåðíåò âðúçêà"
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
+msgstr "LDAP"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
-msgstr "Ãðúöêà"
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+msgid "NIS"
+msgstr "NIS"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr "Ñâåòè Êèòñ è Íåâèñ"
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS äîìåéí"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Îáèêíîâåííà 3-áóòîííà ìèøêà ñ åìóëàöèÿ íà êîëåëöå"
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+msgid "Local files"
+msgstr "Ëîêàëíè ôàéëîâå"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
-msgstr "Ñòàðòèðàíå îò OF ?"
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr "Âúâåäåòå ïàðîëà çà root"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Íå ìîæåòå äà èçïîëçâàòå JFS çà äÿë ïî-ìàëúê îò 16 ÌÁ"
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr "Áåç ïàðîëà"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Èçòðèâàíå íà âàøèÿ RW íîñèòåë (1âà ñåñèÿ)"
+msgid "This password is too short (it must be at least %d characters long)"
+msgstr "Ïàðîëàòà å ïðåêàëåíî ïðîñòà (òðÿáâà äà áúäå äúëãà ïîíå %d ñèìâîëà)"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Âåðòèêàëíî îïðåñíÿâàíå íà ìîíèòîðà: %s\n"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "Èäåíòèôèêàöèÿ"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "Ìÿñòî íà ìîíòèðàíå"
+#: ../../install_steps_interactive.pm_.c:1088
+msgid "Authentication LDAP"
+msgstr "LDAP àóòîðèçàöèÿ"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"Ïîÿâè ñå ãðåøêà:\n"
-"%s\n"
-"Îïèòàéòå äà ïðîìåíèòå íÿêîé ïàðàìåòðè"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
+msgstr "LDAP Áàçîâ dn"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "TCP/IP õîñò \"%s\", ïîðò %s"
+#: ../../install_steps_interactive.pm_.c:1090
+msgid "LDAP Server"
+msgstr "LDAP ñúðâúð"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "User :"
-msgstr "Ïîòðåáèòåë :"
+#: ../../install_steps_interactive.pm_.c:1096
+msgid "Authentication NIS"
+msgstr "NIS àóòîðèçàöèÿ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore system"
-msgstr "Ñèñòåìà çà âúçñòàíîâÿâàíå"
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "NIS äîìåéí"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr "NIS ñúðâúð"
+
+#: ../../install_steps_interactive.pm_.c:1104
msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
+"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/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1106
+#, fuzzy
+msgid "Authentication Windows Domain"
+msgstr "LDAP àóòîðèçàöèÿ"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Another one"
-msgstr "Äðóãî"
+#: ../../install_steps_interactive.pm_.c:1108
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Èìå íà äîìåéíà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Colombia"
-msgstr "Êîëóìáèÿ"
-
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1144
msgid ""
-"Current configuration of `%s':\n"
+"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"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
msgstr ""
+"Êëèåíòñêÿò bootdisk å íåîáõîäèì çà ñòàðòèðàíå â Linux ñèñòåìàòà âè "
+"íåçàâèñèìî\n"
+"îò îáèêíîâåíèÿ bootloader. Òîâà å ïîëåçíî, àêî íå èñêàòå äà èíñòàëèðàòå\n"
+"SILO íà ñèñòåìàòà ñè, àêî íÿêîÿ äðóãà îïåðàöèîííà ñèñòåìà ìàõíå SILO\n"
+"èëè àêî SILO íå ðàáîòè ñ õàðäóåðíàòà âè íàñòðîéêà. Êëèåíòñêèÿò bootdisk\n"
+"ìîæå äà áúäå èçïîëçâàí ñúñ\n"
+"ñïàñèòåëíèÿò îáðàç íà Mandrake, óëåñíÿâàêè âúçñòàíîâÿâàíåòî ïðè ðåäêè\n"
+"ñëó÷àè íà ñðèâ.\n"
+"\n"
+"Àêî èñêàòå äà ñúçäàäåòå bootdisk çà âàøàòà ñèñòåìà, ïîñòàâåòå äèñêåòà â\n"
+"ïúðâîòî óñòðîéñòâî è íàòèñíåòå \"Ok\"."
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug & Play"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr "Ðèþíèúí"
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr "Ïúðâî ôëîïè óñòðîéñòâî"
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "Ïîäðîáíîñòè"
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "Âòîðî ôëîïè óñòðîéñòâî"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Çà âàøà ñèãóðíîñò, ñåãà òÿ ùå áúäåòå îòâúðçàíà."
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "Ïðåñêî÷è"
-#: ../../standalone/drakbug:1
+#: ../../install_steps_interactive.pm_.c:1167
#, c-format
-msgid "Synchronization tool"
+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"
msgstr ""
+"Êëèåíòñêè bootdisk å íåîáõîäèì çà ñòàðòèðàíå â Linux ñèñòåìàòà âè "
+"íåçàâèñèìî\n"
+"îò îáèêíîâåíàòà çàðåæäàùà ïðîãðàìà. Òîâà å ïîëåçíî, àêî íå èñêàòå äà "
+"èíñòàëèðàòå\n"
+"LILO (èëè GRUB) íà ñèñòåìàòà ñè èëè àêî íÿêîÿ äðóãà îïåðàöèîííà ñèñòåìà "
+"ìàõíå LILO èëè LILO íå\n"
+"ðàáîòè ñ õàðäóåðíàòà âè íàñòðîéêà. Bootdisk-úò ìîæå äà áúäå èçïîëçâàí ñúñ\n"
+"ñïàñèòåëíàòà äèñêåòà íà Mandrake, óëåñíÿâàùà âúçñòàíîâÿâàíåòî ïðè ðåäêè\n"
+"ñëó÷àè íà ñðèâ. Èñêàòå ëè äà ñúçäàì bootdisk çà ñèñòåìàòà âè ?\n"
+"%s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking your system..."
-msgstr "Ïðîâåðêà íà âàøàòà ñèñòåìà..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print"
-msgstr "Ïå÷àò"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1173
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+"\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)."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "Ìîíãîëèÿ"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
-msgstr "Ìîíòèðàí\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS"
-msgstr "Íàñòðîéêà íà CUPS"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Interface"
-msgstr "Ãðàôè÷åí èíòåðôåéñ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Users"
-msgstr "Âúçñòàíîâè Ïîòðåáèòåëè"
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "Ñúæàëÿâàì íÿìà ôëîïè"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Êëþ÷ çà êðèïòèðàíå íà %s"
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr "Èçáåðåòå ôëîïè äðàéâ,êúäåòî äà íàïðàâèòå ñòàðòèðàùà äèñêåòà"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:1189
#, fuzzy, c-format
-msgid "Do you want to recover your system?"
-msgstr "Èñêàòå ëè äà èçïîëçâàòå aboot ?"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"portmapper ñå ñïðàâÿ ñ RPC âðúçêè, êîèòî ñå èçïîëçâàò îò ïðîòîêîëè êàòî\n"
-"NFS è NIS. portmap ñúðâúðà òðÿáâà äà å ïóñíàò íà ìàøèíè, êîèòî ðàáîòÿò êàòî\n"
-"ñúðâúð çà ïðîòîêîëè, êîèòî ñå íóæäàÿò äà èçïîëçâàò RPC ìåõàíèçúì."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detected hardware"
-msgstr "Îòêðèò õàðäóåð"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr "Ìàâðèöèé"
+msgid "Insert a floppy in %s"
+msgstr "Ñëîæåòå äèñêåòà â óñòðîéñòâî %s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
-msgstr "Ìàéíìàð (áèðìàíñêà)"
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr "Ñúçäàâàíå íà ñòàðòèðàùà äèñêåòà"
-#: ../../fs.pm:1
-#, c-format
-msgid "Enabling swap partition %s"
-msgstr "Ðàçðåøàâà swap äÿë %s"
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr "Ïîäãîòîâêà íà bootloader"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
+#: ../../install_steps_interactive.pm_.c:1210
+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 to boot your machine"
msgstr ""
-"Íÿìà FAT äÿëîâå çà èçïîëçâàíå êàòî loopback (èëè íÿìà äîñòàòú÷íî ìÿñòî íà "
-"äèñêà)"
+"Èçãëåæäà èìàòå ñòàðîâðåìñêà èëè íåèçâåñòíà\n"
+"ìàøèíà, íà êîÿòî yaboot íÿìà äà ïðîðàáîòè.\n"
+"Èíñòàëàöèÿòà ùå ïðîäúëæè, íî ùå òðÿáâà\n"
+"äà èïîëçâàòå BootX, çà äà ñòàðòèðàòå ìàøèíàòà ñè"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr "Àðìåíñêà (ñòàðà)"
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
+msgstr "Èñêàòå ëè äà èçïîëçâàòå aboot ?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1219
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."
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
-"Ïðèíòåð ñ èìå \"%s\" âå÷å ñúùåñòâóâà â %s.\n"
-"Öúêíåòå \"Ïðåõâúðëè\", çà äà ãî ïðåçàïèøåòå.\n"
-"Ìîæåòå ñúùî òàêà äà íàïèøåòå íîâî èìå èëè äà ïðîïóñíòå ïðèíòåðà."
-
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
-msgstr "íàìåðåòå ðåøåíèÿ íà âàøèòå ïðîáëåìè ñ ïîäðúæêàòà íà MandrakeSoft"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", õîñò \"%s\", ïîðò %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Monaco"
-msgstr "Ìîíàêî"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Íåóñïåøíî ðàçäåëÿíå íà: %s"
-
-#: ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s ôîðìàòèðàíå îò %s ïðîâàëåíî"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Canada (cable)"
-msgstr "Êàíàäà (êàáåë)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Floppy creation completed"
-msgstr "Ñúçäàâàíåòî íà äèñêåòà ïðèêëþ÷è"
+"Ãðåøêà ïðè èíñòàëèðàíå íà aboot, \n"
+"äà ñå îïèòàì ëè äà ïðîäúëæà èíñòàëàöèÿòà äîðè, àêî òîâà óíèæòîæè ïúðâèÿ äÿë ?"
-#: ../../help.pm:1
-#, c-format
-msgid "Upgrade"
-msgstr "Îáíîâÿâàíå"
+#: ../../install_steps_interactive.pm_.c:1226
+msgid "Installing bootloader"
+msgstr "Èíñòàëèðàíå íà bootloader"
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
-msgstr "Ðàáîòíà ñòàíöèÿ"
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Èíñòàëàöèÿòà íà bootloader ïðîâàëåíà. Ïîÿâè ñå ñëåäíàòà ãðåøêà:"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:1240
#, c-format
msgid ""
-"Installing package %s\n"
-"%d%%"
+"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 ""
-"Èíñòàëèðàì ïàêåò %s\n"
-"%d%%"
+"Ìîæå áè ñå íóæäàåòå äà ïðîìåíèòå Open Firmware ñòàðòîâîòî óñòðîéñòâî,\n"
+" çà äà ïóñíåòå çàðåæäàùàòà ïðîãðàìà. Àêî íå âèæäàòå ïîäñêàçêàòà è ïðè\n"
+" ðåñòàðòèðàíå, çàäðúæòå Command-Option-O-F ïðè ðåñòàðòèðàíå è âúâåäåòå:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+" Ñëåä êîåòî íàïèøåòå: shut-down\n"
+"Ïðè ñëåäâàùîòî ðåñòàðòèðàíå áè òðÿáâàëî äà âèäåòå ïîäñêàçêàòà."
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "Kyrgyzstan"
-msgstr "Êèðãèçòàí"
+msgid "Insert a blank floppy in drive %s"
+msgstr "Ñëîæåòå ïðàçíà äèñêåòà â óñòðîéñòâî %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "Ìíîãîôóíêöèîíàëíî óñòðîéñòâî íà USB"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
+msgstr "Ïîäãîòâÿì äèñêåòà ñ àâòîìàòè÷íà èíñòàëàöèÿ"
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1289
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"
+"Some steps are not completed.\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."
+"Do you really want to quit now?"
msgstr ""
+"Íÿêîè åòàïè íå ñà çàâúðøåíè.\n"
+"\n"
+"Íàèñòèíà ëè èñêàòå äà èçëåçåòå ñåãà ?"
-#: ../../help.pm:1
-#, c-format
-msgid "With basic documentation"
-msgstr "Ñ áàçîâà äîêóìåíòàöèÿ"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr "Anacrton - ïåðèîäè÷íî èçïúëíÿâàíå íà êîìàíäè ïî ðàçïèñàíèå."
-
-#: ../../install_interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:1300
#, c-format
msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Òðÿáâà äà èìàòå root-äÿë.\n"
-"Çàòîâà ñúçäàéòå äÿë (èëè öúêíåòå íà ñúùåñòâóâàù).\n"
-"Òîãàâà èçáåðåòå äåéñòâèå ``Ìÿñòî íà ìîíòèðàíå'' è ãî ñëîæåòå `/'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "Çàïàäíà Ñàõàðà"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Proxy-ñúðâúðà òðÿáâà äà å http://..."
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr "Þæíà Àôðèêà"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Èçêàðâà ëåíòà ñëåä àðõèâèðàíå"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
+"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 ""
+"Ïîçäðàâëåíèÿ, èíñòàëàöèÿòà å ïðåêëþ÷åíà.\n"
+"Ïðåìàõíåòå ñòàðòîâîòî óñòðîéñòâî è íàòèñåíå Enter çà äà ðåñòàðòèðàéòå.\n"
+"\n"
+"\n"
+"Çà èíôîðìàöèÿ îòíîñíî ïîïðàâêè, íà òàçè âåðñèÿ íà Mandrake Linux,\n"
+"ñå êîíñóëòèðàéòå ñ Errata, íà àäðåñ : \n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Èíôîðìàöèÿ çà íàñòðîéâàíå íà ñèñòåìàòà âè ìîæåòå äà íàìåðèòå â\n"
+"ñëåäèíñòàëàöèîííàòà ãëàâà îò Official Mandrake Linux User's Guide."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Ïîïðàâè íàñòðîéêèòå íà ïðèíòåð"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
-msgstr "Èçáåðåòå äÿë"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Edit current rule"
-msgstr "Ðåäàêòèðà òåêóùîòî ïðàâèëî"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
+#: ../../install_steps_interactive.pm_.c:1313
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Please test the mouse"
-msgstr "Ìîëÿ, ïðîáâàéòå ìèøêàòà ñè"
+#: ../../install_steps_interactive.pm_.c:1318
+msgid "Generate auto install floppy"
+msgstr "Ïîäãîòâè äèñêåòà çà àâòîìàòè÷íà èíñòàëàöèÿ"
-#: ../../fs.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1320
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)."
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
msgstr ""
+"Àâòîìàòè÷íàòà èíñòàëàöèÿ ìîæå äà áúäå íàïúëíî àâòîìàòèçèðàíà,\n"
+"â òàêúâ ñëó÷àé ùå ïðåâçåìå òâúðäèÿ âè äèñê !!!\n"
+"(òîâà å çà ïðåäíàçíà÷åíî çà èíñòàëèðàíå íà äðóãà ìàøèíà).\n"
+"\n"
+"Ìîæå áè èñêàòå äà ïîâòîðèòå èíñòàëàöèÿòà.\n"
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3 áóòîíà ñ åìóëàöèÿ íà êîëåëöå"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Sticky-bit"
-msgstr "sticky-áèò"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other Media"
-msgstr "Äðóã íîñèòåë"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files"
-msgstr "Ðåçåðâíî êîïèå íà ñèñòåìíè ôàéëîâå"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
+msgstr "Àâòîìàòèçèðàí"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Sector"
-msgstr "Ñåêòîð"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Replay"
+msgstr "Ïîâòîðè"
-#: ../../lang.pm:1
-#, c-format
-msgid "Qatar"
-msgstr "Êàòàð"
+#: ../../install_steps_interactive.pm_.c:1328
+msgid "Save packages selection"
+msgstr "Çàïàçè èçáîð íà ïàêåòè"
-#: ../../any.pm:1
+#: ../../install_steps_newt.pm_.c:20
#, c-format
-msgid "LDAP Base dn"
-msgstr "LDAP Áàçîâ dn"
+msgid "Mandrake Linux Installation %s"
+msgstr "Èíñòàëàöèÿ íà Mandrake Linux %s"
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
msgid ""
-"You can't select this package as there is not enough space left to install it"
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-"Íå ìîæåòå äà îñòàâèòå ïàêåòà íåìàðêèðàí, çàùîòî íÿìàòå ìÿñòî äà ãî "
-"èíñòàëèðàòå"
-
-#: ../../help.pm:1
-#, c-format
-msgid "generate auto-install floppy"
-msgstr "Ïîäãîòâÿ äèñêåòà çà àâòîìàòè÷íà èíñòàëàöèÿ"
+" <Tab>/<Alt-Tab> ìåæäó åëåìåíòèòå | <Space> èçáèðà | <F12> ñëåäâàù åêðàí"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr "Ðåæèì íà íàáèðàíå"
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
+msgstr "ëèïñâà kdesu"
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr "Ïîäåëÿíå íà ôàéëîâå"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "Ïî÷èñòâàíå íà /tmp ïðè âñÿêî çàðåæäàíå"
+#: ../../interactive.pm_.c:152
+msgid "Choose a file"
+msgstr "Èçáåðåòå ôàéë"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malawi"
-msgstr "Ìàëàâè"
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
+msgstr "Íàïðåäíè÷àâ"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: false"
-msgstr "ëîêàëíà íàñòðîéêà: íå"
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
+msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "System settings"
-msgstr "Ñèñòåìíè íàñòðîéêè"
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
+msgstr "<- Ïðåäèøåí"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Ìîëÿ, èçáåðåòå òèï íà ìèøêàòà."
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+#, fuzzy
+msgid "Next"
+msgstr "Òåêñò"
-#: ../../services.pm:1
-#, c-format
-msgid "running"
-msgstr "ñòàðòèðàíå"
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr "Ëîø èçáîð, îïèòàéòå îòíîâî\n"
-#: ../../standalone/harddrake2:1
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "class of hardware device"
-msgstr "êëàñ õàðäóåðíî óñòðîéñòâî"
+msgid "Your choice? (default %s) "
+msgstr "Âàøèÿò èçáîð ? (ïî ïîäðàçáèðàíå å %s)"
-#: ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-"Òîâà ñà ìàøèíèòå è ìðåæèòå çà êîèòî ëîêàëíî ñâúðçàíèòå ïðèíòåðè ùå áúäàò "
-"äîñòúïíè:"
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "Àíãëèÿ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Indonesia"
-msgstr "Èíäîíåçèÿ"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "ïî ïîäðàáèðàíå"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "France [SECAM]"
-msgstr "Ôðàíöèÿ [SECAM]"
+#: ../../interactive/stdio.pm_.c:70
+#, fuzzy, c-format
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Âàøèÿò èçáîð ? (ïî ïîäðàçáèðàíå å %s)"
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "îãðàíè÷è"
+#: ../../interactive/stdio.pm_.c:95
+#, fuzzy, c-format
+msgid "Button `%s': %s"
+msgstr "Îïöèè: %s"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "must have"
-msgstr "íóæåí"
+#: ../../interactive/stdio.pm_.c:96
+#, fuzzy
+msgid "Do you want to click on this button?"
+msgstr "Èñêàòå ëè äà èçïîëçâàòå aboot ?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
msgstr ""
-"CUPS íå ïîääúðæà ïðèíòåðè íà Novell ñúðâúðè èëè ïðèíòåðè èçïðàùàùè äàííè âúâ "
-"ñâîáîäíî-èçãðàäåíà êîìàíäà.\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Senegal"
-msgstr "Ñåíåãàë"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Command line"
-msgstr "Êîìàíäåí ðåä"
+#: ../../interactive/stdio.pm_.c:105
+#, fuzzy, c-format
+msgid "Your choice? (default `%s'%s) "
+msgstr "Âàøèÿò èçáîð ? (ïî ïîäðàçáèðàíå å %s)"
-#: ../advertising/08-store.pl:1
+#: ../../interactive/stdio.pm_.c:123
#, 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 "=> There are many things to choose from (%s).\n"
msgstr ""
-"Íàøèòå ïúëíè ðåøåíèÿ, êàêòî è ñïåöèàëíè ïðåäëîæåíèÿ íà ïðîäóêòè è äðóãè "
-"\"ëàêîìñòâà\" ñà äîñòúïíè â íàøèÿò 'e-èçòî÷íèê':"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "March"
-msgstr "Ìàðò"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to administrative files"
-msgstr "äîñòúï äî ôàéëîâå çà àäìèíèñòðèðàíå"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../interactive/stdio.pm_.c:126
msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
msgstr ""
-#: ../../fs.pm:1
+#: ../../interactive/stdio.pm_.c:139
#, 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.)"
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
-msgstr "Ìîíñåðàò"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "Swap"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "×åøêà (QWERTZ)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom settings"
-msgstr "Ïîòðåáèòåëñêè íàñòðîéêè"
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "Íåìñêà"
-#: ../../../move/move.pm:1
-#, 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."
-msgstr ""
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Äâîðàê"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Other"
-msgstr "Âúçñòàíîâè äðóãè"
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "Èñïàíñêà"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "TV êàðòà"
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "Ôèíëàíäñêà"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Ïðèíòåð íà SMB/Windows 95/98/NT ñúðâúð"
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "Ôðåíñêà"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/ Íàñòðîéêà íà CUPS"
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "Íîðâåæêà"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
-msgstr ", "
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "Ïîëñêà"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
-msgstr ""
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "Ðóñêà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Èçòðèâàíå íà èçáðàí õîñò/ìðåæà"
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
+msgstr "Øâåäñêà"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix å Main Transport Agent (MTA), êîéòî å ïðîãðàìà êîÿòî ïðåíàñÿ\n"
-"ïîùà îò ìàøèíà íà ìàøèíà."
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "UÊ êëàâèàòóðà"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "Óçáåêèñòàíñêà (êèðèëèöà)"
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "US êëàâèàòóðà"
-#: ../../keyboard.pm:1
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Òóê ìîæå äà èçáåðåòå êëàâèø èëè êëàâèøíà êîìáèíàöèÿ, êîÿòî \n"
-"ùå âè ïîçâîëè äà èçáèðàòå ðàçëè÷íè êëàâèàòóðíè ïîäðåäáè\n"
-"(íàïð. latin è íå latin)"
+#: ../../keyboard.pm_.c:167
+msgid "Albanian"
+msgstr "Àëáàíñêà"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Ìðåæîâ Hotplugging"
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
+msgstr "Àðìåíñêà (ñòàðà)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr "àêî å çàäàåíî äà, èçïðàùà ðåçóëòàòà îò ïðîâåðêàòà íà tty."
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
+msgstr "Àðìåíñêà (ïèøåùà ìàøèíà)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From CD"
-msgstr "Âúçñòàíîâÿâà îò CD"
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
+msgstr "Àðìåíñêà (ôîíåòè÷åí)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Íà ïúò ñòå äà íàñòðîèòå êîìïþòúðà ñè òàêà, ÷å äà ïîäåëÿ Èíòåðíåò âðúçêàòà\n"
-"ñè. Ñ òàçè âúçìîæíîñò, äðóãè êîìïþòðè â ëîêàëíàòà âè ìðåæà ùå ìîãàò äà\n"
-"èçïîëçâàò Èíòåðíåò âðúçêàòà íà òîçè êîìïþòúð.\n"
-"\n"
-"Óáåäåòå ñå, ÷å âèå ñòå êîíôèãóðèðàëè âàøàòà Ìðåæà/Èíòåðíåò äîñòúï "
-"èçïîëçâàéêè drakconnect ïðåäè äà ïðàâèòå äðóãî.\n"
-"\n"
-"Îòáåëåæåòå: òðÿáâà âè îòäåëåí çà òîâà ìðåæîâ àäàïòåð, çà äà óñòàíîâèòå "
-"âúòðåøíàòà ñè ìðåæà (LAN)."
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
+msgstr "Àçåðáàéäæàíñêà (ëàòèíèöà)"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr "Ìîëÿ, èçáåðåòå êîé ìðåæîâ àäàïòåð äà èçïîëçâàì çà âðúçêà êúì Èíòåðíåò"
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "Áåëãèéñêà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
+#: ../../keyboard.pm_.c:178
+#, fuzzy
+msgid "Bengali"
+msgstr "âêëþ÷è"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
-msgstr ""
+#: ../../keyboard.pm_.c:179
+#, fuzzy
+msgid "Bulgarian (phonetic)"
+msgstr "Àðìåíñêà (ôîíåòè÷åí)"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
-msgstr "Àâòîðè:"
+#: ../../keyboard.pm_.c:180
+#, fuzzy
+msgid "Bulgarian (BDS)"
+msgstr "Áúëãàðñêà"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Ñïîäåëÿíåòî íà Èíòåðíåò âðúçêàòà â ìîìåíòà å èçêëþ÷åíî."
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
+msgstr "Áðàçèëñêà (ABNT-2)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr ""
+#: ../../keyboard.pm_.c:184
+#, fuzzy
+msgid "Bosnian"
+msgstr "Åñòîíñêà"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latin American"
-msgstr "Ëàòèíîàìåðèêàíñêà"
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
+msgstr "Áåëàðóñêà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Ðåæèì çà ïå÷àò íà ÿïîíñêè òåêñò"
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "Øâåéöàðñêà (íåìñêà íàðåäáà)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Old device file"
-msgstr "Ñòàð ôàéë íà óñòðîñòâî"
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "Øâåéöàðñêà (ôðåíñêè íàðåäáà)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "Èíôîðìàöèÿ: "
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "×åøêà (QWERTY)"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Áóòîí `%s': %s"
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr "Íåìñêà (áåç íåðàáîòåùè êëàâèøè)"
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Ìîëÿ èç÷àêàéòå"
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genuis NetMouse"
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "Äàòñêà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "None"
-msgstr "Áåç"
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Äâîðàê (US)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Âúâåäåíîòî IP íå å âÿðíî.\n"
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Äâîðàê (Íîðâåæêà)"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Ìîëÿ, èçáåðåòå âñè÷êè ïîòðåáèòåëè,êîèòî æåëàåòå äà âêëþ÷èòå â àðõèâà."
+#: ../../keyboard.pm_.c:196
+#, fuzzy
+msgid "Dvorak (Swedish)"
+msgstr "Äâîðàê (US)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
-msgstr "Ethernet êàðòà"
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "Åñòîíñêà"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Delete selected printer"
-msgstr "Èçòðèâà èçáðàíîòî ïðàâèëî"
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Ãðóçèíñêà (\"Ðóñêà\" íàðåäáà)"
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "Èíôîðìàöèÿ"
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Ãðóçèíñêà (\"Ëàòèíñêà\" íàðåäáà)"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "Èíñòàëèðàé"
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "Ãðúöêà"
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
msgstr ""
-"Öúêíåòå íà \"%s\", àêî èñêàòå äà èçòðèåòå âñè÷êè äàííè è\n"
-"äÿëîâå ñúùåñòâóâàùè íà òîçè òâúðä äèñê. Âíèìàíèå, ñëåä öúêàíå íà \"%s\", "
-"íÿìà äà ìîæåòå äà âúçñòàíîâèòå êàêâèòî è äà áèëî äàííè è äÿëîâå ñúùåñòâóâàùè "
-"íà òîçè òâúðä äèñê,\n"
-"âêëþ÷èòåëíî êàêâèòî è äà å Windows äàííè.\n"
-"\n"
-"Öúêíåòå \"%s\", çà äà îòìåíèòå òàçè îïåðàöèÿ áåç çàãóáà äà äàííèòå è\n"
-"äÿëîâåòå ñúùåñòâóâàùè íà òîçè òâúðä äèñê."
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "Èçõîä îò èíñòàëàöèîííàòà ïðîãðàìà"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
msgstr ""
-#: ../../standalone/drakgw:1
-#, 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)."
-msgstr ""
-"Âñè÷êî å íàñòðîåíî.\n"
-"Ñåãà ìîæåòå äà ñïîäåëèòå Èíòåðíåò âðúçêàòà ñè ñ äðóãè êîìïþòðè â ëîêàëíàòà "
-"âè ìðåæà èçïîëçâàéêè àâòîìàòè÷íà ìðåæîâà íàñòðîéêà (DHCP)."
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "Óíãàðñêà"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Îòäàëå÷åí CUPS ñúðâúð"
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "Õúðâàòñêà"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Ìèøêà íà Sun"
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
+msgstr "Èçðàåëñêà"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Â ñèñòåìàòà âè èìà ñàìî åäèí íàñòðîåí ìðåæîâ àäàïòåð:\n"
-"\n"
-"%s\n"
-"\n"
-"Ñìÿòàì äà óñòàíîâÿ ëîêàëíàòà âè ìðåæà íà òîçè àäàïòåð."
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr "Èçðàåëñêà (ôîíåòè÷íà)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
-msgstr ""
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr "Èðàíñêà"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Minimal install"
-msgstr "Ìèìèíàëíà èíñòàëàöèÿ"
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr "Èñëàíäñêà"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "Åòèîïèÿ"
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "Èòàëèàíñêà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
-msgstr ""
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
+msgstr "ßïîíñêà 106 êëàâèøà"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr "Äàâåíàäæàðè"
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
+msgstr "Êîðåéñêà êëàâèàòóðà"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
+#: ../../keyboard.pm_.c:218
+msgid "Latin American"
+msgstr "Ëàòèíîàìåðèêàíñêà"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Îáùà ãîëåìèíà: %d / %d MB"
+#: ../../keyboard.pm_.c:219
+#, fuzzy
+msgid "Laotian"
+msgstr "Ëàòâèéñêà"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "disabled"
-msgstr "èçêëþ÷åí"
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
+msgstr "Ëèòâèéñêà AZERTY (ñòàðà)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Search for new scanners"
-msgstr "Òúðñåíå çà íîâè ñêåíåðè"
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
+msgstr "Ëèòâèéñêà AZERTY (íîâà)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Disabling servers..."
-msgstr "Èçêëþ÷âàíå íà ñúðâúðè ..."
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Ëèòâèéñêà \"÷èñëîâà ðåäèöà\" QWERTY"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Èíñòàëàöèÿòà íà %s ïðîâàëåíà. Ïîÿâè ñå ñëåäíàòà ãðåøêà:"
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Ëèòâèéñêà \"ôîíåòè÷åí\" QWERTY"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr "Íå ìîãà äà ñòàðòèðàì mkinitrd -f /boot/initrd-%s.img %s."
+#: ../../keyboard.pm_.c:225
+msgid "Latvian"
+msgstr "Ëàòâèéñêà"
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
msgstr ""
-"Èçáðàëè ñòå ñëåäíèÿ(òå) ñúðâúð(è): %s\n"
-"\n"
-"\n"
-"Òåçè ñúðâúðè ñå àêòèâèðàò ïî ïîäðàçáèðàíå. Òå íÿìàò èçâåñòíè ïðîáëåìè ñúñ\n"
-"ñèãóðíîñòòà, íî ìîæå äà ñå íàìåðÿò íîâè.  òîçè ñëó÷àé, ùå òðÿáâà äà ñòå\n"
-"ñèãóðíè, ÷å ùå íàäãðàæäàòå âúçìîæíî íàé-áúðçî.\n"
-"\n"
-"\n"
-"Íàèñòèíà ëè èñêàòå äà èíñòàëèðàòå òåçè ñúðâúðè ?\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Ìðåæîâ ïðèíòåð (TCP/Socket)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup User files..."
-msgstr "Ðåçåðâíî êîïèå íà ïîòðåáèòåëñêè ôàéëîâå..."
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
+msgstr "Ìàêåäîíñêà"
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "Èíñòàëèðàíå íà ñèñòåìàòà"
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
+msgstr ""
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Ïúðâè DNS ñúðâúð (ïî èçáîð)"
+#: ../../keyboard.pm_.c:229
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Ñðúáñêà (êèðèëèöà)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
msgstr ""
-"Àëòåðíàòèâíî, âèå ìîæå äà çàäàäåòå èìå íà óñòðîéñòâî/ôàéë â èçõîäíèÿ ðåä"
-#: ../../security/help.pm:1
-#, 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."
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "Ðóñêà (ôîíåòè÷íà)"
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
+msgstr "Õîëàíäñêà"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Config..."
-msgstr "Íàñòðîéêà íà dhcpd..."
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
+msgstr "Ïîëñêà (QWERTY íàðåäáà)"
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "LILO/grub èíñòàëàöèÿ"
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
+msgstr "Ïîëñêà (QWERTZ íàðåäáà)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "Èçðàåëñêà"
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
+msgstr "Ïîðòóãàëñêà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Ïðèíòåð \"%s\" íà ñúðâúð \"%s\""
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr "Êàíàäñêà (Êâåáåê)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Ôëîïèòî ìîæå äà áúäå èçâàäåíî ñåãà"
+#: ../../keyboard.pm_.c:239
+msgid "Romanian (qwertz)"
+msgstr "Ðóìúíñêà (qwertz)"
-#: ../../help.pm:1
-#, c-format
-msgid "Truly minimal install"
-msgstr "Íàèñòèíà ìèíèìàëíà èíñòàëàöèÿ"
+#: ../../keyboard.pm_.c:240
+msgid "Romanian (qwerty)"
+msgstr "Ðóìúíñêà (qwerty)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "Äàíèÿ"
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "Ðóñêà (Yawerty)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "Ìåñòâÿ äÿëà ... "
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
+msgstr "Ñëîâåíñêà"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "(This) DHCP Server IP"
-msgstr "(Òîçè) DHCP ñúðâúð IP"
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "Ñëîâàøêà (QWERTZ)"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Test of the configuration"
-msgstr "Ïðîâåðêà íà íàñòðîéêàòà"
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "Ñëîâàøêà (QWERTY)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing %s ..."
-msgstr "Èíñòàëèðà %s ..."
+#: ../../keyboard.pm_.c:248
+msgid "Serbian (cyrillic)"
+msgstr "Ñðúáñêà (êèðèëèöà)"
-#: ../../help.pm:1
-#, fuzzy, 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."
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
msgstr ""
-"Íàêðàÿ, â çàâèñèìîñò îò èçáîðà âè äàëè äà èçáèðàòå ïàêåòè åäèí ïî åäèí, ùå\n"
-"âè áúäå ïðåäñòàâåíî äúðâî ñúäúðæàùî âñè÷êè ïàêåòè ïîäðåäåíè ïî ãðóïè è\n"
-"ïîäðãðóïè. Äîêàòî îáõîæäàòå äúðâîòî, ìîæåòå äà èçáåðåòå öåëè ãðóïè, "
-"ïîäãðóïè\n"
-"èëè îòäåëíè ïàêåòè.\n"
-"\n"
-"Êîãàòî ïîñî÷èòå ïàêåò îò äúðâîòî, ùå ñå ïîÿâè îïèñàíèå âäÿñíî. Êîãàòî\n"
-"èçáîðúò å ïðèêëþ÷åí, öúêíåòå áóòîíà \"Èíñòàëèðàé\", êîéòî ùå ïóñíå ïðîöåñà\n"
-"íà èíñòàëàöèÿ. Â çàâèñèìîñò îò ñêîðîñòòà íà õàðäóåðà âè è áðîÿ íà ïàêåòèòå,\n"
-"êîèòî èñêàòå äà áúäàò èíñòàëèðàíè, ïðîöåñúò ìîæå äà îòíåìå èçâåñòíî âðåìå.\n"
-"Î÷àêâàíîòî âðåìå çà ïðèêëþ÷âàíå íà ïðîöåñà, ÷å áúäå ïîêàçàíî íà åêðàòà, çà\n"
-"äà âè ïîìîãíå äà ïðåöåíèòå äàëè èìàòå äîñòàòú÷íî âðåìå äà ñå íàñëàäèòå íà\n"
-"÷àøà êàôå.\n"
-"\n"
-"!! Àêî å èçáðàí ñúðâúðåí ïàêåò, áèëî òî óìèøëåíî èëè çàùîòî å ÷àñò îò öÿëà\n"
-"ãðóïà, ùå áúäåòå ïîìîëåíè çà ïîòâúðæäåíèå, ÷å íàèñòèíà èñêàòå òîçè ñúðâúð\n"
-"äà áúäå èíñòàëèðàí.  Mandrake Linux, âñè÷êè ñúðâúðè òðúãâàò ïî "
-"ïîäðàçáèðàíå\n"
-"ïðè çàðåæäàíå.Äàæå àêî ñà ñèãóðíè è íÿìàò èçâåñòíè ïðîáëåìè, êîãàòî\n"
-"äèñòðèáóöèÿòà ñå ðàçïðîñòðàíÿâà, ìîæå äà ñå ñëó÷è òàêà, ÷å äà ñå ïîÿâÿò\n"
-"äóïêè â ñèãóðíîñòòà, ñëåä êàòî âåðñèÿòà íà Mandrake Linux å çàâúðøåíà. Àêî\n"
-"íå çíàåòå çà êàêâî ñëóæè îïðåäåëåíà óñëóãà èëè çàùî å èíñòàëèðàíà, öúêíåòå\n"
-"\"Íå\". Ñ öúêàíå íà \"Äà\" ùå èíñòàëèðàòå èçáðîåíè óñëóãè è òå ùå áúäàò\n"
-"ñòàðòèðàíè àâòîìàòè÷íî ïî ïîäðàçáèðàíå. !!\n"
-"\n"
-"Îïöèÿòà \"Àâòîìàòè÷íè çàâèñèìîñòè\" èçêëþ÷âà ïðåäóïðåäèòåëíèòå äèàëîçè,\n"
-"êîãàòî èíñòàëàòîðúò àâîìàòè÷íî ðåøè èçáåðå ïàêåò. Òîâà ñå ñëó÷âà, çàùîòî\n"
-"å ðåøèë, ÷å ñå íóæäàå äà çàäîâîëè çàâèñèìîñò ñ äðóã ïàêåò, çà äà ïðèêëþ÷è\n"
-"óñïåøíî èíñòàëàöèÿòà.\n"
-"\n"
-"Ìàëêàòà èêîíêà íà äèñêåòêà â äúíîòî íà ñïèñúêà ïîçâîëÿâà äà çàðåäèòå ñïèñúê\n"
-"ñ ïàêåòè îò ïðåäèøíà èíñòàëàöèÿ. Àêî öúêíåòå íà òàçè èêîíêà, ùå áúäåòå\n"
-"ïîìîëåíè äà âêàðàòå äèñêåòà ñúçäàäåíà ïðåäè òîâà â êðàÿ íà äðóãà "
-"èíñòàëàöèÿ.\n"
-"Âèæòå âòîðàòà ïîäñêàçêà ïî âðåìå íà ïîñëåäíàòà ñòúïêà, çà òîâà êàê äà\n"
-"ñúçäàäåòå òàêàâà äèñêåòà."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr "Èçáîð íà êðèïòèðàù êëþ÷ çà åàøàòà ôàéëîâà ñèñòåìà"
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr "Ñèåðà Ëåîíå"
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr "Òàéâàíñêà êëàâèàòóðà"
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
-msgstr "Áîòñâàíà"
+#: ../../keyboard.pm_.c:254
+msgid "Tajik keyboard"
+msgstr "Òàäæèêèñòàíñêà êëàâèàòóðà"
-#: ../../lang.pm:1
-#, c-format
-msgid "Andorra"
-msgstr "Àíäîðà"
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Òóðñêà (òðàäèöèîíåí \"F\" ìîäåë)"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "(default value: %s)"
-msgstr "(ïîäðàçáèðàùà ñòîéíîñò: %s)"
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Òóðñêà (ìîäåðåí \"Q\" ìîäåë)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
-msgstr ""
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr "Óêðàèíñêà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Àëòåðíàòèâíà òåñòîâà ñòðàíèöà (Ïèñìî)"
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "US êëàâèàòóðà (ìåæäóíàðîäíà)"
-#: ../../standalone/drakgw:1
-#, c-format
-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 ""
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Âèåòíàìñêà \"÷èñëîâà ðåäèöà\" QWERTY"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Choose an X server"
-msgstr "Èçáåðåòå X ñúðâúð"
+#: ../../keyboard.pm_.c:263
+msgid "Yugoslavian (latin)"
+msgstr "Þãîñëàâñêà (ëàòèíèöà)"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Ãîëåìèíà íà swap-äÿëà â MB: "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No changes to backup!"
-msgstr "Íÿìà ïðîìåíè çà ðåçåðâíî êîïèå!"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "Ôîðìàòèðàí\n"
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Type of install"
-msgstr "Òèï èíñòàëàöèÿ"
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Ïðèíòåð \"%s\" íà SMB/Windows ñúðâúð \"%s\""
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
+msgstr ""
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d ñúñ çàïåòàÿ ðàçäåëåíè íîìåðà"
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
msgstr ""
-"rusers ïðîòîêîëà ïîçâîëÿâà íà ìðåæîâèòå ïîòðåáèòåëè äà ïðîâåðÿâàò êîé å\n"
-"âëÿçúë íà äðóãà îòãîâàðÿùàòà ìàøèíà."
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Íàñòðîéêà íà àâòîìàòè÷íèòå ñòúïêè"
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "Áàðáàäîñ"
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr ""
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
msgstr ""
-"Êàêâî èñêàòå äà çíàåòå ïîâå÷å çà îáùíîñòòà íà Îòâîðåíèÿò èçõîäåí êîä? Âëåçòå "
-"â ñâåòà íà Ñâîáîäíèÿò Ñîôòóåð"
-#: ../../standalone/drakbackup:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid "Please select data to backup..."
-msgstr "Ìîëÿ, èçáåðåòå äàííè çà ðåçåðâíî êîïèå..."
+msgid "Circular mounts %s\n"
+msgstr "\"Îìàãüîñàí êðúã\" îò ìîíòèðàíèÿ: %s\n"
-#: ../../standalone/net_monitor:1
-#, c-format
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
+msgstr "Ïúðâî ïðåìàõíè ëîãè÷íèòå äÿëîâî\n"
+
+#: ../../modules.pm_.c:290
msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-"Âðúçêàòà ïðîïàäíà.\n"
-"Ïðîâåðåòå ñè êîíôèãóðàöèÿòà â Êîíòðîëåí öåíòúð íà Mandrake."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
-msgstr "ïîëó÷åíè"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
-msgstr "/Ôàéë/_Íîâ"
+#: ../../modules/parameters.pm_.c:18
+#, fuzzy
+msgid "modinfo is not available"
+msgstr "Íÿìà ôëîïè óñòðîéñòâî"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DNS Server IP"
-msgstr "DNS ñúðâúð IP"
+#: ../../modules/parameters.pm_.c:50
+#, fuzzy
+msgid "a number"
+msgstr "Òåëåôîíåí íîìåð"
-#: ../../standalone/drakTermServ:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "IP Range End:"
-msgstr "Êðàé íà IP îáõâàò:"
+msgid "%d comma separated numbers"
+msgstr ""
-#: ../../security/level.pm:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "High"
-msgstr "Âèñîêî"
+msgid "%d comma separated strings"
+msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Add a new printer to the system"
-msgstr "Äîáàâÿ ïîòðåáèòåë êúì ñèñòåìàòà"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr "Áåç ãðàôèêà"
+#: ../../modules/parameters.pm_.c:54
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Ôîðìàòèðàíå íà äÿëîâå"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
-msgstr "Òîâà ïîëå îïèñâà óñòðîéñòâîòî"
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Ìèøêà íà Sun"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Äîáàâÿíå íà ïðèíòåð íà Star Office/OpenOffice.org/GIMP"
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printers"
-msgstr "Ëîêàëíè ïðèíòåðè"
+#: ../../mouse.pm_.c:33
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Îáèêíîâåííà PS2 ìèøêà"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation image directory"
-msgstr "Äèðåêòîðèÿ ñ îáðàçà íà èíñòàëàöèÿòà"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "NIS ñúðâúð"
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington THinking Mouse"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Port: %s"
-msgstr "Ïîðò: %s"
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genuis NetMouse"
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "Èñïàíèÿ"
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
-msgstr ""
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "Òîâà ïîòðåáèòåëñêî èìå âå÷å å äîáàâåíî"
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
+msgstr "1 áóòîí"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
-msgstr "Èçáåðåòå ôàéë"
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "Îáèêíîâåííà 2-áóòîííà ìèøêà"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr "Ïðèëîæè"
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "Wheel"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Àâòîìàòè÷íî çàñè÷àíå íà ïîðòîâåòå"
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "ñåðèéíà"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr "Ñàí Ìàðèíî"
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "Îáèêíîâåííà 3-áóòîííà ìèøêà"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Ñïîäåëÿíåòî íà Èíòåðíåò âðúçêàòà å èçêëþ÷åíî."
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Belgium"
-msgstr "Áåëãèÿ"
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
-msgstr "Êóâåéò"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "Èçáåðåòå ìåíèäæúð íà ïðîçîðöè çà ñòàðòèðàíå:"
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "December"
-msgstr "Äåêåìâðè"
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "sub generation of the cpu"
-msgstr ""
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "MM Series"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
-msgstr "Ïúðâîíà÷àëåí ïîìîùíèê"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../lang.pm:1
-#, c-format
-msgid "Taiwan"
-msgstr "Òàéâàí"
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (ñåðèéíà, îò ñòàðèÿ òèï C7)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "Ïàêèñòàí"
+#: ../../mouse.pm_.c:68
+msgid "busmouse"
+msgstr "BUS ìèøêà"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "ìîëÿ èç÷àêàéòå, ïðàâÿ ðàçáîð íà ôàéë: %s"
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "2 áóòîíà"
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Ïîÿâè ñå ãðåøêà, íî íå çíàì êàê äà ñå ñïðàâÿ ñ íåÿ äåëèêàòíî.\n"
-"Ìîæåòå äà ïðîäúëæèòå íà ñâîé ðèñê."
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "3 áóòîíà"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Importance: "
-msgstr "Âàæíîñò:"
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "íÿìà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "Áåç ìèøêà"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Permissions"
-msgstr "Ïðàâà"
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
+msgstr "Ìîëÿ, ïðîáâàéòå ìèøêàòà ñè"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Èìå íà äîñòàâ÷èêà (íàïð. provider.net)"
+#: ../../mouse.pm_.c:491
+msgid "To activate the mouse,"
+msgstr "Çà äà àêòèâèðàòå ìèøêàòà ñè,"
-#: ../../install_steps_gtk.pm:1
-#, 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'."
-msgstr ""
-"Âàøàòà ñèñòåìà å ñ ìàëêè ðåñóðñè. Ìîæå äà èìàòå ïðîáëåìè ñ èíñòàëèðàíåòî\n"
-"íà Mandrake Linux. Àêî ñå ïîÿâè ïðîáëåì îïèòàéòå ñ òåêñòîâàòà èíñàëàöèÿ. "
-"Çàöåëòà,\n"
-"íàòèñíåòå 'F1', êîãàòî ñòàðòèðàòå îò CDROM è âúâåäåòå 'òåüò'."
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr "ÁÓÒÍÅÒÅ ÒÎÏ×ÅÒÎ !"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "Èçïîëçâàé çà Windows äÿëúò çà loopback"
+#: ../../my_gtk.pm_.c:65
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
-msgstr "Àðìåíñêà (ïèøåùà ìàøèíà)"
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
+msgstr "Çàâúðøè"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection type: "
-msgstr "Òèï íà âðúçêàòà: "
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
+msgstr "Ñëåäâàù ->"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Graphical interface"
-msgstr "Ãðàôè÷åí èíòåðôàéñ"
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "Âñè÷êî ïðàâèëíî ëè å ?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "×àä"
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "Èíôîðìàöèÿ"
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "Èíäèÿ"
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
+msgstr "Ðàçøèðè äúðâîòî"
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s ñ õàðäóåðíî 3D óñêîðåíèå"
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
+msgstr "Èç÷èñòè äúðâîòî"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr "Ñëîâàêèÿ"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr "Ïðåâêëþ÷âàíå ìåæäó íîðìàëíî è ñîðòèðàíå ïî ãðóïè"
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "Ñèíãàïóð"
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "èçïîëçâàé PPPOE"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "Êàìáîäæà"
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
+msgstr "èçïîëçâàé PPPTP"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Õîðèçîíòàëíà ñèíõðîíèçàöèÿ íà ìîíèòîðà: %s\n"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
+msgstr "èçïîëçâàé DHCP"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr "Ïúò"
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
+msgstr "Alcatel speedtouch USB"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
+msgstr "Ñâúðæè ñå êúì Èíòåðíåò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:30
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?"
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
+"Íàé-÷åñòèÿ íà÷èí çà ñâúðçâàíå ÷ðåç ADSL å PPPOE.\n"
+"Íÿêîè âðúçêè èçïîëçâàò PPTP, à maëêî èçïîëçâàò DHCP.\n"
+"Àêî íå çíàåòå, èçáåðåòå 'èçïîëçâàé PPPOE'."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:166
msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-"Ïðèíòåð %s\n"
-"Êàêâî èñêàòå äà ïîïðàâèòå ïî òîçè ïðèíòåð ?"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add host"
-msgstr "Äîáàâÿíå íà õîñò"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Ñúðâúð"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Èìå íà äîìåéíà"
+
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Ñúðâúð Áàçè-äàííè"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "LDAP ñúðâúð"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "íå å îòêðèòà ìðåæîâà êàðòà"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
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"
+"drakfirewall configurator\n"
"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"Àêî ìèñëèòå , ÷å çíàåòå êîé òî÷íî äðàéâåð å çà âàøàòà êàðòà\n"
-"âèå ìîæå äà ãî èçáåðåòå îò ãîðíèÿò ñïèñúê.\n"
+"Íàñòðîé÷èê çà ìàëêà çàùèòíà ñòåíà\n"
"\n"
-"Òåêóùî èçïîëçâàíèÿò äðàéâåð çà âàøàòà \"%s\" çâóêîâà êàðòà å \"%s\" "
+"Òîâà íàñòðîéâà ïåðñîíàëíà çàùèòíà ñòåíà çà òàçè Mandrake Linux ìàøèíà.\n"
+"Çà ìîùíî ïîñòâåòåíî íà çàùèòàòà ðåøåíèå, ìîëå, ïîãëåäíåòå ñïåöèàëèçèðàíàòà\n"
+"MandrakeSecurity Firewall äèñòðèáóöèÿ."
-#: ../../any.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:135
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"
+"drakfirewall configurator\n"
"\n"
-"\"Custom\" permit a per-user granularity.\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-"Èñêàòå ëè äà ïîçâîëèòå íà ïîòðåáèòåëè äà ïîäåëÿò òåõíèòå äèðåêòîðèè?\n"
-"Ðàçðåøàâàíåòî íà òîâà ùå ïîçâîëè íà ïîòðåáèòåëèòå ïðîñòî äà öúêíàò íà "
-"\"Ïîäåëÿ\" â konqueror èëè nautilus.\n"
-"\n"
-"\"Êëèåíòñêà\" ïîçâîëÿâà çà ïîòðåáèòåë íàñòðîéêà.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
msgstr ""
-"Ìîæå èçáåðåòå çàðåæäàíå èëè çàïèñ íà èçáîðà íà ïàêåòè íà ôëîïè.\n"
-"Ôîðìàòúò å ñúùèÿò êàòî auto_install ãåíåðèðàíèòå äèñêåòè."
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "No CDROM support"
-msgstr "Ïîäðúæêà íà ðàäèî:"
+#: ../../network/drakfirewall.pm_.c:153
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
-#: ../../standalone/drakxtv:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
-msgid "China (broadcast)"
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use quota for backup files."
-msgstr "Èçïîëçâà êâîòà çà ôàéëîâå íà ðåçåðâíî êîïèå."
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Íàñòðîéêà íà ïðèíòåðà \"%s\"..."
+#: ../../network/drakfirewall.pm_.c:169
+#, fuzzy
+msgid "Other ports"
+msgstr "Òåñòâàíå ïîðòîâåòå"
-#: ../../fs.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:37
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."
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
msgstr ""
+"Êàêúâ DHCP êëèåíò èñêàòå äà èçïîëçâàòå ?\n"
+"Ïî ïîäðàçáèðàíå å dhcp-client ?"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection"
-msgstr "Èíòåðíåò âðúçêà"
-
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:88
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-"Çàðåæäàíåòî íà ìîäóëà %s íå óñïÿ.\n"
-"Èñêàòå ëè äà îïèòàòå îòíîâî ñ äðóãè ïàðàìåòðè ?"
+"Íå áåøå íàìåðåí ìðåæîâ àäàïòåð â ñèñòåìàòà âè.\n"
+"Íå ìîæåòå äà íàñòðîèòå òàêúâ âèä âðúçêà."
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr "Äîáðå äîøëè â ñâåòà íà Îòâîðåíèÿò Èçõîäåí êîä"
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
+msgstr "Èçáåðåòå ìðåæîâ èíòåðôåéñ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr "Áîñíà è Õåðöåãîâèíà"
+#: ../../network/ethernet.pm_.c:93
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "Ìîëÿ, èçáåðåòå êîé ìðåæîâ àäàïòåð äà èçïîëçâàì çà âðúçêà êúì Èíòåðíåò"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "íå å îòêðèòà ìðåæîâà êàðòà"
+
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "Íàñòîéêà íà ìðåæàòà"
+
+#: ../../network/ethernet.pm_.c:201
msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
-"Íóæäàåòå ñå îò èñòèíñêà ôàéëîâà ñèñòåìà (ext2, reiserfs,xfs, èëè jfs) çà "
-"òàçè òî÷êà íà ìîíòèðàíå\n"
+"Ìîëÿ, âúâåäåòå èìå íà õîñò àêî ãî çíàåòå.\n"
+"Íÿêîé DHCP ñúðâúðè èçèñêâàò òîâà çà äà ðàáîòÿò.\n"
+"Host èìåòî òðÿáâà äà áóäå íàïúëíî êâàëèôèöèðàíî èìå,\n"
+"êàòî ``mybox.mylab.myco.com''."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Òðÿáâà äà âúâåäåòå èìå èëè IP àäðåñ.\n"
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "Èìå íà õîñò:"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "Õîëàíäèÿ"
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+msgid "Network Configuration Wizard"
+msgstr "Ìàãüîñíèê çà íàñòðîéêà íà ìðåæàòà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Èçïðàùàì ôàéëîâå ïî FTP..."
+#: ../../network/isdn.pm_.c:22
+msgid "External ISDN modem"
+msgstr "Âúíøåí ISDN ìîäåì"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
msgstr "Âúòðåøíà ISDN êàðòà"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
-msgstr ""
-"Íÿìà èçâåñòíåí OSS/ALSA àëòåðíàòèâåí äðàéâåð çà âàøàòà çâóêîâà êàðòà (%s) "
-"êîÿòî â ìîìåíòà èçïîëçâà \"%s\""
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Title"
-msgstr "Çàãëàâèå"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install & convert Fonts"
-msgstr ""
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
+msgstr "Êàêúâ å òèïúò íà ISDN âðúçêàòà ?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
+#: ../../network/isdn.pm_.c:45
+msgid ""
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
msgstr ""
+"Êîÿ ISDN íàñòðîéêà ïðåäïî÷èòàòå ?\n"
+"\n"
+"* Ñòàðàòà íàñòðîéêà èçïîëçâà isdn4net. Ñúäúðæà ìîùíè èíñòðóìåíòè\n"
+" íî å êàïðèçíà çà íàñòðîéêà è íå å ñòàíäàðòíà.\n"
+"\n"
+"* Íîâàòà íàñòðîéêà å ïî-ëåñíà çà ðàçáèðàíå, ïî ñòàíäàðòíà,\n"
+" íî ñ ïî-ìàëêî èíñòðóìåíòè.\n"
+"\n"
+"Ïðåïîðú÷âàìå âè îëåêîòåíàòà íàñòðîéêà.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
-msgstr "Èíñòàëèðàíå íà bootloader"
+#: ../../network/isdn.pm_.c:54
+msgid "New configuration (isdn-light)"
+msgstr "Íîâà íàñòðîéêà (isdn-light)"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "replay"
-msgstr "ïîâòîðè"
+#: ../../network/isdn.pm_.c:54
+msgid "Old configuration (isdn4net)"
+msgstr "Ñòàðà íàñòðîéêà (isdn4net)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
-msgstr "çàñå÷åíà %s"
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "Íàñòðîéêà íà IDSN"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/isdn.pm_.c:166
msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
+"Ïîñî÷åòå äîñòàâ÷èêà ñè.\n"
+" Àêî íå å â ñïèñúêà, èçáåðåòå Unlisted"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr "Âèðäæèíñêè Îñòðîâè (ÑÀÙ)"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol"
+msgstr "Ïðîòîêîë Åâðîïà"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "Ëîø backup-ôàéë"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol (EDSS1)"
+msgstr "Ïðîòîêîë Åâðîïà (EDSS1)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Óñòàíîâêàòà íà Ñïîäåëÿíåòî íà Èíòåðíåò âðúçêàòà å âå÷å çàâúðøåíà.\n"
-" ìîìåíòà å èçêëþ÷åíà.\n"
-"\n"
-"Êàêâî èñêàòå äà íàïðàâèòå ?"
+#: ../../network/isdn.pm_.c:181
+msgid "Protocol for the rest of the world"
+msgstr "Ïðîòîêîë çà îñòàíàëèÿ ñâÿò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
+#: ../../network/isdn.pm_.c:181
+msgid ""
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
+"Ïðîòîêîë çà îñòàíàëèÿ ñâÿò\n"
+" áåç D-Êàíàë (íàåòà ëèíèÿ)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Pipe into command"
-msgstr "Ïðîãðàìåí êàíàë êúì êîìàíäà"
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
+msgstr "Êàêúâ ïðîòîêîë æåëàåòå äà ïðîìåíèòå ?"
-#: ../../install_interactive.pm:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
+msgid "Found \"%s\" interface do you want to use it ?"
msgstr ""
-"×àñò îò õàðäóåðà íà êîìïþòúðà âè ñå íóæäàå îò ``ñîáñòâåíèòå ñè'' äðàéâåðè, "
-"çà äà ðàáîòè.\n"
-"Ìîæåòå äà íàìåðèòå ïîâå÷å èíôîðìàöèÿ çà òîâà íà: %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "Õàèòè"
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
+msgstr "Êàêúâ òèï êàðòà èìàòå ?"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "Îòêðèâàíå íà óñòðîéñòâà ..."
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
+msgstr "Íå çíàì"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../network/isdn.pm_.c:210
msgid ""
-"Description of the fields:\n"
"\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
-"Îïèñàíèå íà ïîëåòàòà:\n"
"\n"
+"Àêî èìàòå ISA êàðòà, ñòîéíîñòèòå íà ñëåäâàùèÿ åêðàí òðÿáâà äà ñà âåðíè.\n"
+"\n"
+"Àêî èìàòå PCMCIA êàðòà, ùå òðÿáâà äà çíàåòå IRC è IO íà êàðòàòà ñè.\n"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Basic options"
-msgstr "Îñíîâíè íàñòðîéêè"
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "Îòêàç"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
-msgstr "èìå íà ïðîöåñîðà"
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
+msgstr "Íàòàòúê"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr "Ïðèåìà ñúîáùåíèÿ çà IPv4 ãðåøêè."
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
+msgstr "Êîÿ å ISDN êàðòàòà âè ?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Îïðåñíÿâàíå íà äàííèòå îò ïðèíòåðà ..."
+#: ../../network/isdn.pm_.c:239
+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 ""
+"Îòêðèòà å ISDN PCI êàðòà, íî ñ íåïîçíàò òèï. Ìîëÿ èçáåðåòå íÿêîÿ PCI êàðòà "
+"îò ñëåäâàùèÿò åêðàí."
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr "Âèå òðÿáâà ñúùî äà ôîðìàòèðàòå %s"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "Íå å íàìåðåíà ISDN PCI êàðòà. Ìîëÿ èçáåðåòå îò ñëåäâàùèÿò åêðàí."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "Âíèìàíèå: òàçè îïåðàöèÿ å îïàñíà"
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Ìîëÿ, èçáåðåòå ñåðèåí ïîðò êúì êîéòî ñâúðçàí ìîäåìúò âè."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "Ñëîæåòå äèñêåòà ñúäúðæàùà èçáîð íà ïàêåòè"
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "Îïöèè çà èçáèðàíå ïî òåëåôîí"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server: "
-msgstr "Ñúðâúð: "
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr "Èìå íà âðúçêàòà"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Alerts:"
-msgstr "Ïðåäóïðåæäåíèÿ çà çàùèòà:"
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
+msgstr "Òåëåôîíåí íîìåð"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
-msgstr "Øâåöèÿ"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "Ïîòðåáèòåëñêî èìå"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
-msgstr ""
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr "CHAP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "Ïîëøà"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Other ports"
-msgstr "Äðóãè ïîðòîâåòå"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "Áàçèðàíà íà ñêðèïò"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "Áàçèðàíà íà òåðìèíàë"
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid " - detected"
-msgstr "çàñå÷åíà "
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "Èìå íà äîìåéíà"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr "SMBus êîíòðîëåðè"
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+msgid "First DNS Server (optional)"
+msgstr "Ïúðâè DNS ñúðâúð (ïî èçáîð)"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Timeout íà âðúçêàòà (â ñåê)"
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+msgid "Second DNS Server (optional)"
+msgstr "Âòîðè DNS ñúðâúð (ïî èçáîð)"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/modem.pm_.c:95
msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Croatian"
-msgstr "Õúðâàòñêà"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Use existing partition"
-msgstr "Èçïîçâàíå íà ñúùåñòâóâàù äÿë"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Íå ìîãà äà ñå ñâðúæà ñ îãëåäàëåí ñúðâúð' %s"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Ïîìîù/_Îòíîñíî..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../network/modem.pm_.c:97
#, c-format
msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "Íàñòðîéêà íà CUPS ïðèíòåð"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
+"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Domain Name:"
-msgstr "Èìå íà äîìåéíà:"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Do nothing"
+msgstr "íî íå ñúâïàäà"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Root umask"
-msgstr "Root umask"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Install rpm"
+msgstr "Èíñòàëèðàé"
-#: ../../any.pm:1
-#, c-format
-msgid "On Floppy"
-msgstr "Çàïàçâà íà äèñêåòà"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Title"
+msgstr "Òàáëèöà"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reboot by the console user"
+#: ../../network/netconnect.pm_.c:29
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
+"\n"
+"Ìîæåòå äà ñå îòâúðæåòå èëè äà ïðåíàñòðîèòå âðúçêàòà."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore"
-msgstr "Âúçñòàíîâÿâà"
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Server:"
-msgstr "Ñúðâúð: "
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can reconfigure your connection."
msgstr ""
+"\n"
+"Ìîæåòå äà ïðåíàñòðîèòå âðúçêàòà."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Òúðñÿ íàëè÷íè ïàêåòè..."
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Ìîëÿ, èçáåðåòå íèâî íà ñèãóðíîñò..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
-msgstr "Ñòàðòîâî ñúîáùåíèå"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "Ñïàñÿâàíå òàáëèöàòà ñ äÿëîâåòå"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "Êèïúð"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection complete."
-msgstr "Âðúçêàòà å óñòàíîâåíà."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "Ïðåìàõíè îò RAID"
+#: ../../network/netconnect.pm_.c:29
+msgid "You are currently connected to internet."
+msgstr "Â ìîìåíòà ñòå ñâúðçàíè êúì Èíòåðíåò"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
+#: ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
msgstr ""
-"Êðèïòèðàù êëþ÷ å ïðåêàëåíî ïðîñò (òðÿáâà äà áúäå äúëãà ïîíå %d ñèìâîëà)"
+"\n"
+"Ìîæåòå äà ñå ñâúðæåòå êúì Èíòåðíåò èëè äà ïðåíàñòðîèòå âðúçêàòà."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Êîíôèãóðàöèîííè Ìàãüîñíèöè"
+#: ../../network/netconnect.pm_.c:32
+msgid "You are not currently connected to Internet."
+msgstr "Â ìîìåíòà íå ñòå ñâúðçàíè êúì Èíòåðíåò"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN âðúçêà"
+#: ../../network/netconnect.pm_.c:36
+msgid "Connect"
+msgstr "Ñâúðæè"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CDROM / DVDROM"
+#: ../../network/netconnect.pm_.c:37
+msgid "Disconnect"
+msgstr "Îòâúðæè"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
-msgstr "ïúðâè"
+#: ../../network/netconnect.pm_.c:38
+#, fuzzy
+msgid "Configure the connection"
+msgstr "Â ìîìåíòà íàñòðîéâàì ìðåæàòà"
+
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
+msgstr "Èíòåðíåò âðúçêà è íàñòðîéêà"
-#: ../../printer/main.pm:1
+#: ../../network/netconnect.pm_.c:94
#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr " íà SMB/Windows ñúðâúð \"%s\", ïîäåëåí \"%s\""
+msgid "We are now going to configure the %s connection."
+msgstr "Ñåãà ùå íàñòðîèì %s âðúçêàòà."
-#: ../../help.pm:1
+#: ../../network/netconnect.pm_.c:103
#, 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"
-"!!"
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press OK to continue."
msgstr ""
-"Ñåãà ìîæåòå äà èçáåðåòå êîè óñëóãè äà ñå ïóñêàò ïðè ñòàðòèðàíå.\n"
"\n"
-"Òóê ñà ïðåäñòàâåíè âñè÷êè óñëóãè, äîñòúïíè ñ íàñòîÿùàòà èíñòàëàöèÿ.\n"
-"Ïðåãëåäàéòå ãè âíèìàòåëíî è èçêëþ÷åòå òåçè, êîèòî íå âè òðÿáâàò âèíàãè ïðè "
-"ñòàðòèðàíå.\n"
"\n"
-"Ìîæåòå äà âèäèòå êðàòúê îáÿñíèòåëåí òåêñò çà óñëóãàòà, êàòî ïîñòàâèòå êóðîðà "
-"íà ìèøêàòà ñè\n"
-"íàä èìåòî íà óñëóãàòà. Àêî íå ñòå ñèãóðíè, äàëè óñëóãàòà å ïîëåçíà èëè íå, "
-"ïî-äîáðå\n"
-"å äà îñòàâèòå èçáîðà ïî ïîäðàçáèðàíå.\n"
"\n"
-"Âíèìàâàéòå ñ òàçè ñòúïêà, àêî ñìÿòàòå äà èçïîëçâàòå ìàøèíàòà ñè êàòî "
-"ñúðâúð:\n"
-"ñèãóðíî íå áèõòå èñêàëè äà ïóñêàòå óñëóãè, îò êîèòî íå ñå íóæäàåòå. Ìîëÿ,\n"
-"çàïîìíåòå, ÷å íÿêîè óñëóãè ìîãàò äà áúäàò îïàñíè, àêî ñà âêëþ÷åíè íà "
-"ñúðâúðà.\n"
-"Ïî ïðèíöèï, èçáèðàéòå ñàìî óñëóãèòå, îò êîèòî íàèñòèíà ñå íóæäàåòå.\n"
-"!!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niue"
-msgstr "Íèþ"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "Ïðåñêà÷à"
+"Ñåãà ùå íàñòðîèì %s âðúçêàòà.\n"
+"\n"
+"Íàòèñíåòå OK, çà äà ïðîäúëæèòå."
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Àêòèâèðà/äåàêòèâèðà âñè÷êè ìðåæîâè èíòåðôåéñè, íàñòðîåíè äà ñå ïóñêàò\n"
-"ïðè ñòàðòèðàíå íà ìàøèíàòà."
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr "Íàñòðîéêà íà ìðåæàòà"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/netconnect.pm_.c:133
msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr "×åñòîòà íà ïðîöåñîðà â Mhz"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "important"
-msgstr "âàæåí"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "Ìàíäðåéê èíñòðóìåíò çà ðàáîòà ñ ïîòðåáèòåëñêè ñìåòêè"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
+"Because you are doing a network installation, your network is already "
+"configured.\n"
+"Click on Ok to keep your configuration, or cancel to reconfigure your "
+"Internet & Network connection.\n"
msgstr ""
+"Òúé êàòî ïðàâèòå ìðåæîâà èíñòàëàöèÿ, ìðåæàòà âè âå÷å å íàñòðîåíà.\n"
+"Öúêíåòå Ok, çà äà çàïàçèòå íàñòðîéêàòà, èëè Îòìÿíà, çà äà ïðåíàñòîèòå "
+"Èíòåðíåò è ìðåæîâàòà ñè âðúçêà.\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:157
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"
+"Welcome to The Network Configuration Wizard.\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."
+"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 ""
+"Äîáðå äîøëè ïðè ìàãüîñíèêà çà íàñòðîéêà íà ìðåæà\n"
+"\n"
+"Âèå ñòå íà ïúò äà íàñòðîèòå Èíòåðíåò/ìðåæîâàòà ñè âðúçêà.\n"
+"Àêî íå èñêàòå äà èçïîëçâàòå àâòîìàòè÷íî çàñè÷àíå, èçêëþ÷åòå êóòèéêàòà.\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr "Àðóáà"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "Ïîòðåáèòåëè"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Ïîäãîòîâêà íà bootloader"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
+#: ../../network/netconnect.pm_.c:163
+msgid "Choose the profile to configure"
+msgstr "Èçáåðåòå ïðîôèë çà íàñòðîéêà"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Gateway (íàïð. %s)"
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
+msgstr "Èçïîëçâàé àâòîìàòè÷íî çàñè÷àíå"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
-msgstr "Ïàðîëèòå íå ñúâïàäàò"
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
+msgstr "Ðàçøèðåíè ôóíêèöèè"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Ïðèìåðè íà ïðàâèëíè IP:\n"
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
+msgstr "Îòêðèâàíå íà óñòðîéñòâà ..."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please choose the media for backup."
-msgstr ""
-"Ìîëÿ, èçáåðåòå\n"
-"íîñèòåë çà ðåçåðâíî êîïèå."
+#: ../../network/netconnect.pm_.c:214
+msgid "Normal modem connection"
+msgstr "Îáèêíîâåíà ìîäåìíà âðúçêà"
-#: ../../standalone/harddrake2:1
+#: ../../network/netconnect.pm_.c:214
#, c-format
-msgid "Frequency (MHz)"
-msgstr "×åñòîðòà (MHz)"
+msgid "detected on port %s"
+msgstr "çàñå÷åí íà ïîðò %s"
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Çà äà èçïîëçâàòå çàïàçåí èçáîð íà ïàêåòè, ñòàðòèðàéòå èíñòàëàöèÿòà ñ ``linux "
-"defcfg=floppy''"
+#: ../../network/netconnect.pm_.c:215
+#, fuzzy
+msgid "Winmodem connection"
+msgstr "Îáèêíîâåíà ìîäåìíà âðúçêà"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of the processor"
-msgstr "íîìåðúò íà ïðîöåñîðà"
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "detected"
+msgstr "çàñå÷åíà %s"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Õàäðóåðíèÿò âè ÷àñîâíèê å íàñòðîåí ïî GMT"
+#: ../../network/netconnect.pm_.c:216
+msgid "ISDN connection"
+msgstr "ISDN âðúçêà"
-#: ../../network/isdn.pm:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "Æåëàåòå ëè äà çàïî÷íåòå íîâî íàñòðîéâàíå?"
+msgid "detected %s"
+msgstr "çàñå÷åíà %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Give a file name"
-msgstr "Äàéòå èìå íà ôàéë"
+#: ../../network/netconnect.pm_.c:217
+msgid "ADSL connection"
+msgstr "ADSL âðúçêà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Ìîëÿ, èçáåðåòå ïîðò êúì êîéòî ñâúðçàí ïðèíòåðà âè."
+#: ../../network/netconnect.pm_.c:218
+msgid "Cable connection"
+msgstr "Êàáåëíà âðúçêà"
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "Ñìÿíà íà CD-ROM"
+#: ../../network/netconnect.pm_.c:218
+msgid "cable connection detected"
+msgstr "çàñå÷åíà å êàáåëíà âðúçêà"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "Ïàðàãâàé"
+#: ../../network/netconnect.pm_.c:219
+msgid "LAN connection"
+msgstr "LAN âðúçêà"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "Íàñòðîéêàòà çàâúðøè,æåëàåòå ëè äà ÿ ïðèëîæèòå ?"
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
+msgstr "ethernet êàðòè çàñå÷åíè"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr ""
-"Èçïîëçâà èíêðåìåíòàëíî/äèôåðåíöèàëíî ñúçäàâàíå íà ðåçåðâíî êîïèå ( íå çàìåíà "
-"ñòàðèòå)"
+#: ../../network/netconnect.pm_.c:222
+msgid "Choose the connection you want to configure"
+msgstr "Èçáåðåòå âðúçêàòà, êîéòî èñêàòå äà èçïîëçâàòå"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../network/netconnect.pm_.c:246
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:"
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
+"Íàñòðîèëè ñòå íÿêîëêî íà÷èíà çà âðúçêà êúì Èíòåðíåò.\n"
+"Èçáåðåòå òîçè, êîéòî èñêàòå äà èçïîëçâàòå.\n"
+"\n"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr "Íÿìà äðàéâåð çà âàøàòà çâóêîâà êàðòà (%s)"
+#: ../../network/netconnect.pm_.c:247
+msgid "Internet connection"
+msgstr "Èíòåðíåò âðúçêà"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "force"
-msgstr "ïðèíóäèòåëíî"
+#: ../../network/netconnect.pm_.c:253
+msgid "Do you want to start the connection at boot?"
+msgstr "Èñêàòå ëè äà ñòàðòèðàòå âðúçêàòà ñè ïðè çàðåæäàíå ?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Exit"
-msgstr "Èçëåç"
+#: ../../network/netconnect.pm_.c:267
+msgid "Network configuration"
+msgstr "Íàñòðîéêà íà ìðåæàòà"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
+msgstr "Ìðåæàòà òðÿáâà äà áúäå ðåñòàðòèðàíà"
+
+#: ../../network/netconnect.pm_.c:272
#, c-format
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
msgstr ""
-"ÇÀÁÅËÅÆÊÀ:  çàâèñèìîñò îò ìîäåëà ïðèíòåð è ïå÷àòàùàòà ñèñòåìà äî %d MB "
-"äîïúëíèòåëíî ñîôòóåð ùå áúäå èíñòàëèðàí."
+"Èçíèêíà ïðîáëåì ïðè ðåñòàðòèðàíåòî íà ìðåæàòà:\n"
+"\n"
+"%s"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../network/netconnect.pm_.c:282
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
-"Íÿìàòå íàñòðîåí èíòåðôåéñ.\n"
-"Íàñòðîéòå ãè ïðåäè òîâà, êàòî öúêíåòå íà 'Íàñòðîéêà'"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "Åñòîíñêà"
+"Ïîçäðàâëåíèÿ, ìðåæîâàòå è Èíòåðíåò íàñòðîéêàòà å çàâúðøåíà.\n"
+"\n"
+"Íàñòðîéêèòå ùå áúäàò ïðèëîæåíè êúì ñèñòåìàòà âè.\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:286
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
-"Apache å World Wide Web (WWW) ñúðâúð. Òîé ñëóæè äà îáðàáîòâà íà HTML "
-"ôàéëîâå\n"
-"è CGI."
+"Ñëåä êàòî ñòàíå òîâà, ïðåïîðú÷âàìå âè äà ðåñòàðòèðàòå X\n"
+"ñðåäàòà ñè, çà äà èçáåãíåòå ïðîáëåìè ñúñ ñìÿíàòà èìåòî íà õîñòà."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/netconnect.pm_.c:287
msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
+"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 ""
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ALL"
+#: ../../network/network.pm_.c:278
+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 ""
+"ÂÍÈÌÀÍÈÅ: Òîâà óñòðîéñòâî âå÷å å íàñòðîåíî äà ñå ñâúðçâà êúì Èíòåðíåò.\n"
+"Ïðîñòî ïðèåìåòå, çà äà îñòàâèòå óñòðîéñòâîòî íàñòðîåíî.\n"
+"Ïîïðàâêàòà íà ïîëåòàòà ïî-äîëó ùå ïðåçàïèøå òàçè íàñòðîéêà."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Äîáàâÿ/Èçòðèâà êëèåíòè"
+#: ../../network/network.pm_.c:283
+msgid ""
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
+msgstr ""
+"Ìîëÿ, âúâåäåòå IP íàñòðîéêèòå çà òàçè ìàøèíà.\n"
+"Âñÿêî óñòðîéñòâî òðÿáâà äà áúäå âúâåäåíî êàòî IP àäðåñ\n"
+"ñ òî÷êîâî-äåñåòè÷íî îçíà÷åíèå (íàïðèìåð, 1.2.3.4)."
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "Choose the network interface"
-msgstr "Èçáåðåòå ìðåæîâ èíòåðôåéñ"
+msgid "Configuring network device %s"
+msgstr "Íàñòðîéêà íà ìðåæîâîòî óñòðîéñòâî %s"
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../network/network.pm_.c:294
#, c-format
-msgid "Unknown Model"
-msgstr "Íåèçâåñòåí Ìîäåë"
+msgid " (driver %s)"
+msgstr " (äðàéâåð %s)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
-msgstr "CD/DVD çàïèñâàùî"
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "IP àäðåñ"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Äÿë, êîéòî ñå ñòàðòèðà ïî ïîäðàçáèðàíå\n"
-" (çà MS-DOS boot, íå çà lilo)\n"
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr "Ìðåæîâà ìàñêà"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr ""
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image"
-msgstr "èçáîð íà èçîáðàæåíèå"
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "Àâòîìàòè÷åí IP àäðåñ"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Îòêðèòà å íàñòðîéêà íà Çàùèòíà Ñòåíà !"
+#: ../../network/network.pm_.c:299
+#, fuzzy
+msgid "Start at boot"
+msgstr "Ïóñíàò ïðè ñòàðòèðàíå"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "Èìå íà âðúçêàòà"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP àäðåñúò òðÿáâà äà áúäå âúâ ôîðìàò 1.2.3.4"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../network/network.pm_.c:326
msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-"x êîîðäèíàòè íà òåêñòîâàòà ðàìêà\n"
-"â áðîé ñèìâîëè"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/network.pm_.c:330
msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Updating package selection"
-msgstr "Îáíîâÿâàíå íà èçáîðà íà ïàêåòè"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "Êúäå èñêàòå äà ìîíòèðàòå loopback-ôàéëà %s ?"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../network/network.pm_.c:350
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"Please enter your host name.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''.\n"
+"You may also enter the IP address of the gateway if you have one"
msgstr ""
-"Äèñêåòàòà å óñïåøíî ñúçäàäåíà.\n"
-"Ñåãà ìîæåòå äà ïðåèãðàåòå èíñòàëàöèÿòà."
+"Ìîëÿ, âúâåäåòå host name çà ìàøèíàòà.\n"
+"Host èìåòî òðÿáâà äà áóäå íàïúëíî êâàëèôèöèðàíî èìå,\n"
+"êàòî ``mybox.mylab.myco.com''.\n"
+"Ìîæåòå ñúùî äà âúâåäåòå IP àäðåñà íà Âàøèÿ gateway, àêî èìàòå òàêúâ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr ""
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "DNS ñúðâúð"
-#: ../../standalone/harddrake2:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "áðîé áóòîíè íà ìèøêàòà"
+msgid "Gateway (e.g. %s)"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
-msgstr "Ïîâòîðè"
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "Gateway óñòðîéñòâî"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup other files"
-msgstr "Ðåçåðâíî êîïèå íà äðóãè ôàéëîâå"
+#: ../../network/network.pm_.c:363
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP àäðåñúò òðÿáâà äà áúäå âúâ ôîðìàò 1.2.3.4"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "Íÿìà ôëîïè óñòðîéñòâî"
+#: ../../network/network.pm_.c:367
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP àäðåñúò òðÿáâà äà áúäå âúâ ôîðìàò 1.2.3.4"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
-msgstr ""
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
+msgstr "Íàñòðîéêà íà proxy"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
-msgstr ""
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr ""
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "FTP proxy"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 ÌÁ"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
+msgstr "Ïðîñëåäÿâàíå íà ID íà ìðåæîâàòà êàðòà (ïîëåçíî ïðè ëàïòîïè)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: thin"
-msgstr "òèï: thin"
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
+msgstr "Proxy-ñúðâúðà òðÿáâà äà å http://..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "Ëèòâèéñêà AZERTY (íîâà)"
+#: ../../network/network.pm_.c:388
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "URL òðÿáâà äà å çàïî÷âà ñ 'http:'"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
+msgstr "Îòêðèòà å íàñòðîéêà íà Çàùèòíà Ñòåíà !"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/shorewall.pm_.c:27
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"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
-"Ìàðêèðàëè ñòå ñîôòóåðåí RAID äÿë êàòî root (/).\n"
-"Íÿìà çàðåæäàùà ïðîãðàìà, êîÿòî äà ìîæå äà ñå ñïðàâè ñ íåãî áåç /boot äÿë.\n"
-"Òàêà ÷å äîáàâåòå /boot äÿë"
+"Âíèìàíèå ! Îòêðèòà å íàñòðîéêà íà Çàùèòíà Ñòåíà. Ìîæå äà ñå íàëîæè íÿêàêâà "
+"ðú÷íà ïîïðàâêà ñëåä èíñòàëàöèÿòà."
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "Äðóãà ÎÑ (MacOS...)"
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
+msgstr "Íàñòðîéêà íà Èíòåðíåò"
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Çà äà àêòèâèðàòå ìèøêàòà ñè,"
+#: ../../network/tools.pm_.c:58
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Èñêàòå ëè ñåãà äà îïèòàòå âðúçêà êúì Èíòåðíåò ?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "Âêëþ÷âàì ìðåæàòà"
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+msgid "Testing your connection..."
+msgstr "Èçïðîáâàíå íà âðúçêàòà..."
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Ñíèìêè ùå áúäàò íàëè÷íè ñëåä èíñòàëèðàíå â %s"
+#: ../../network/tools.pm_.c:70
+msgid "The system is now connected to Internet."
+msgstr "Ñèñòåìàòà â ìîìåíòà å ñâúðçàíà êúì Èíòåðíåò."
-#: ../../help.pm:1
-#, c-format
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
+msgstr "Çà âàøà ñèãóðíîñò, ñåãà òÿ ùå áúäåòå îòâúðçàíà."
+
+#: ../../network/tools.pm_.c:72
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:\")."
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-"Áåøå çàñå÷åí ïîâå÷å îò åäèí Microsoft Windows äÿë\n"
-"íà òâúðäèÿ âè äèñêà. Èçáåðåòå òîçè, ÷èÿòî äúëæèíà èñêàòå äà ïðîìåíèòå, çà "
-"äà\n"
-"èíñòàëèðàòå Mandrake Linux îïåðàöèîííà ñèñòåìà.\n"
-"\n"
-"\n"
-"Çà èíôîðìàöèÿ, âñåêè äÿë å èçáðîåí êàêòî ñëåäâà: \"Linux èìå\", \"Windows èìå"
-"\", \"Êàïàöèòåò\".\n"
-"\n"
-"\"Linux èìåòî\" ñå êîäèðà êàêòî ñëåäâà: \"òèï íà äèñêà\", \"íîìåð íà äèñêà"
-"\",\n"
-"\"íîìåð íà äÿë\" (íàïðèìåð, \"hda1\").\n"
-"\n"
-"\n"
-"\"Òèïúò íà äèñêà\" ìîæå äà å \"hd\", àêî å IDE òâúðä äèñê, èëè \"sd\", àêî "
-"å\n"
-"SCSI òâúðä äèñê.\n"
-"\n"
-"\n"
-"\"Íîìåðúò íà äèñêà\" âèíàãè å áóêâàòà ñëåä \"hd\" èëè \"sd\". Ïðè IDE "
-"äèñêîâå:\n"
-"\n"
-" * \"a\" îçíà÷àâà \"master äèñê íà ïúðâèÿ IDE êîíòðîëåð\",\n"
-" * \"b\" îçíà÷àâà \"slave äèñê íà ïúðâèÿ IDE êîíòðîëåð\",\n"
-" * \"c\" îçíà÷àâà \"master äèñê íà âòîðèÿ IDE êîíòðîëåð\",\n"
-" * \"d\" îçíà÷àâà \"slave äèñê íà âòîðèÿ IDE êîíòðîëåð\".\n"
-"\n"
-"\n"
-"Ïðè SCSI óñòðîéñòâà, \"a\" îçíà÷àâà \"ïúðâè òâúðä äèñê\", \"b\" îçíà÷àâà "
-"\"âòîðè òâúðä äèñê\" è ò.í..\n"
-"\n"
-"\"Windows èìåòî\" å áóêâàòà íà òâúðäèÿ âè äèñê ïîä Windows (ïúðâèÿò äèñê "
-"èëè\n"
-"äÿë ñå íàðè÷à \"C:\")."
+"Ñèñòåìàòà íå èçãëåæäà ñâúðçàíà êúì Èíòåðíåò.\n"
+"Îïèòàéòå ñå äà ïðåíàñòðîèòå âðúçêàòà."
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
-msgstr "Òàíçàíèÿ"
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
+msgstr "Íàñòðîéêà íà âðúçêàòà"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "Èç÷èñëÿâàì ãðàíèöèòå íà fat ôàéëîâàòà ñèñòåìà"
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
+msgstr "Ìîëÿ, ïîïúëíåòå èëè ïðîâåðåòå ïîëåòî ïî-äîëó"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Èçòî÷íèê çà ðåçåðâíî êîïèå: \n"
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr "IRQ íà êàðòàòà"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "custom"
-msgstr "Êëèåíòñêà"
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "Ïàìåò (DMA) íà êàðòàòà"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Content of the file"
-msgstr "Ñúäúðæàíèå íà ôàéëà"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "IO íà êàðòàòà"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
-msgstr "LDAP àóòîðèçàöèÿ"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "IO_0 íà êàðòàòà"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
-msgstr ""
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "IO_1 íà êàðòàòà"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
-msgstr "Íåêà èçáåðà äðàéâåð"
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
+msgstr "Ëè÷íèÿ âè òåëåôîíåí íîìåð"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
-msgstr "ïðåõâúðëåíè"
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
+msgstr "Èìå íà äîñòàâ÷èêà (íàïð. provider.net)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palestine"
-msgstr "Ïàëåñòèíà"
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
+msgstr "Òåëåôîíåí íîìåð íà äîñòàâ÷èêà"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+msgid "Provider dns 1 (optional)"
+msgstr "1-âè DNS íà äîñòàâ÷èêà (ïî æåëàíèå)"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d ñúñ çàïåòàÿ ðàçäåëåí íèç"
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+msgid "Provider dns 2 (optional)"
+msgstr "2-ðè DNS íà äîñòàâ÷èêà (ïî æåëàíèå)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " isdn"
-msgstr ""
+#: ../../network/tools.pm_.c:109
+msgid "Choose your country"
+msgstr "Èçáåðåòå ñòðàíàòà ñè"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "Åòî ïúëåí ñïèñúê íà äîñòðúïíèòå êëàâèàòóðè"
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
+msgstr "Ðåæèì íà íàáèðàíå"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Theme name"
-msgstr "Èìå íà òåìà"
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+msgid "Connection speed"
+msgstr "Ñêîðîñò íà âðúçêàòà"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/_Ïîìîù"
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+msgid "Connection timeout (in sec)"
+msgstr "Timeout íà âðúçêàòà (â ñåê)"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitrary driver"
-msgstr "Èçáîð íà ñëó÷àåí äðàéâåð"
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
+msgstr "Èìå íà àêàóíòà (ïîòåáèòåëñêî èìå)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "Îñòðîâè Êóê"
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
+msgstr "Ïàðîëà íà àêàóíòà"
-#: ../../standalone/scannerdrake:1
-#, 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."
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the width of the progress bar"
-msgstr "øèðèíàòà íà ëåíòàòà çà ïðîãðåñ"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Ôîðìàòèðàíå íà äÿë %s"
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
+msgstr "ìîíòèðàíåòî íå óñïÿ: "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hostname required"
-msgstr "Èçèñêâà èìå íà ìàøèíà"
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
+msgstr "Ðàçøèðåíè äÿëîâå íå ñå ïîääúðæàò íà òàçè ïëàòôîðìà"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselect fonts installed"
+#: ../../partition_table.pm_.c:685
+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 ""
+"Èìàòå ïðàçíèíà â òàáëèöàòà ñ äÿëîâåòå, íî íå ìîãà äà ÿ èçïîëçâàì.\n"
+"Åäèíñòâåíèÿò íà÷èí å äà ïðåìåñòèòå ãëàâíèòå ñè äÿëîâå, çà äà èìàòå ïðàçíî "
+"ìÿñòî ñëåä extended-äÿëîâåòå"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Wheel"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Submit kernel version"
-msgstr "Âåðñèÿ íà ÿäðîòî"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "Cancel"
-msgstr "Îòêàç"
+msgid "Restoring from file %s failed: %s"
+msgstr "Âúçñòàíîâÿâàíåòî îò ôàéëà %s íå óñïÿ: %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for configured scanners ..."
-msgstr "Òúðñåíå íà íàñòðîåíè ñêåíåðè..."
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
+msgstr "Ëîø backup-ôàéë"
-#: ../../harddrake/data.pm:1
+#: ../../partition_table.pm_.c:796
#, c-format
-msgid "Videocard"
-msgstr "Âèäåî êàðòà"
+msgid "Error writing to file %s"
+msgstr "Ãðåøêà ïðè çàïèñ âúâ ôàéëà %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
+#: ../../partition_table/raw.pm_.c:192
+msgid ""
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
msgstr ""
+"Íåùî ëîøî ñòàâà ñ óñòðîéñòâîòî âè.\n"
+"Òåñòà çà öåëîñò íà äàííèòå ïðîïàäíà.\n"
+"Òîâà çíà÷è, ÷å ïèñàíåòî íà êàêâîòî è áèëî ïî äèñêà ùå ïðåâðúùà\n"
+"ïðîèçâîëíî â áîêëóê"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Remove Selected"
-msgstr "Èçòðèâàíå íà îèçáðàíèòå"
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr "íóæåí"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Àâòîìàòè÷íî îòêðèâà _ìîäåìè"
+#: ../../pkgs.pm_.c:27
+msgid "important"
+msgstr "âàæåí"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove printer"
-msgstr "Ïðåìàõâàíå íà ïðèíòåðà"
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr "ìíîãî äîáúð"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Last Log"
-msgstr ""
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr "äîáúð"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr "ñòàâà"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Connection Type"
-msgstr "Òèï íà Âðúçêà"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
+msgstr "PDQ - Ïå÷àòàé, Áåç Îïàøêà"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Äîáðå äîøëè â íàñòðîéêàòà íà å-ïîùà.\n"
-"\n"
-"Òóê ìîæåòå äà óêàæåòå ïðåäîïèòàíèÿòà ñè çà èçâåñòÿâàùàòà ñèñòåìà.\n"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
+msgstr "PDQ"
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Other"
-msgstr "Äðóãà"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
+msgstr "LPD - Ëèíååí Ïðèíòåðåí Äåìîí"
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
-msgstr "Ïî ïîäðàçáèðàíå"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
+msgstr "LPD"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Èìèòàöèÿ íà 2 áóòîíà"
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
+msgstr "LPRng - LPR Íîâî ïîêîëåíèå"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Please enter a package name."
-msgstr "Ìîëÿ, çàäàéòå ïîòðåáèòåëñêî èìå"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
+msgstr "LPRng"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run chkrootkit checks"
-msgstr ""
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
+msgstr "CUPS - Îáùà Unix Ïðèíòåðíà Ñèñòåìà"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "type1inst building"
-msgstr ""
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
+msgstr "CUPS"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Íåèçâåñòåí ìîäåë"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image file"
-msgstr "èçáåðåòå èçîáðàæåíèå"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "Ëîêàëåí ïðèíòåð"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "X server"
-msgstr "X ñúðâúð"
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
+msgstr "Îòäàëå÷åí ïðèíòåð"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin User Name"
-msgstr "Èìå íà àäìèíèñòðàòîð íà äîìåéí"
+#: ../../printer/main.pm_.c:28
+msgid "Printer on remote CUPS server"
+msgstr "Ïðèíòåð íà îòäàëå÷åí CUPS ñúðâúð"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Ïîÿâè ñå ãðåøêà ïðè ñêàíèðàíå çà TV êàíàëè"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+msgid "Printer on remote lpd server"
+msgstr "Ïðèíòåð íà îòäàëå÷åí LPD ñúðâúð"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
-msgstr "US êëàâèàòóðà (ìåæäóíàðîäíà)"
+#: ../../printer/main.pm_.c:30
+msgid "Network printer (TCP/Socket)"
+msgstr "Ìðåæîâ ïðèíòåð (TCP/Socket)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Not installed"
-msgstr "Íå å èíñòàëèðàí"
+#: ../../printer/main.pm_.c:31
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "Ïðèíòåð íà SMB/Windows 95/98/NT ñúðâúð"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Äâàòà Alt êëàâèøà åäíîâðåìåííî"
+#: ../../printer/main.pm_.c:32
+msgid "Printer on NetWare server"
+msgstr "Ïðèíòåð íà NetWare ñúðâúð"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "LAN connection"
-msgstr "LAN âðúçêà"
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+msgid "Enter a printer device URI"
+msgstr "Âúâåäåòå URI íà ïå÷àòàùî óñòðîéñòâî"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/-"
-msgstr "/Ôàéë/-"
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
+msgstr "Ïðåêàðàé ðàáîòàòà ïðåç êîìàíäà"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Italian"
-msgstr "Èòàëèàíñêà"
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
+msgstr "Íåèçâåñòåí ìîäåë"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Basic"
-msgstr "Áàçîâ"
+#: ../../printer/main.pm_.c:317
+#, fuzzy
+msgid "Local Printers"
+msgstr "Ëîêàëåí ïðèíòåð"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+#, fuzzy
+msgid "Remote Printers"
+msgstr "Îòäàëå÷åí ïðèíòåð"
-#: ../../lang.pm:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid "Honduras"
-msgstr "Õîíäóðàñ"
+msgid " on parallel port \\/*%s"
+msgstr ""
-#: ../../help.pm:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid "pdq"
+msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid "Card IO"
-msgstr "IO íà êàðòàòà"
+msgid ", multi-function device on parallel port \\/*%s"
+msgstr ""
+
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
+msgstr ""
+
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
+msgstr ""
+
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
+msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: ../../printer/main.pm_.c:344
#, fuzzy, c-format
-msgid "Samba server"
-msgstr "Samba Ñúðâúð"
+msgid ", printing to %s"
+msgstr "Ãðåøêà ïðè çàïèñ âúâ ôàéëà %s"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm_.c:346
#, c-format
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-"\n"
-"Òàçè ñïåöèàëíà ñòàðòèðàùà\n"
-"èâèöà íà äÿëà å çà äâîéíî\n"
-"ñòàðòèðàíå íà ñèñòåìàòà âè.\n"
-#: ../../standalone/drakautoinst:1
+#: ../../printer/main.pm_.c:348
#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
+msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-"Ìîëÿ, èçáåðåòå çà âñÿêà ñòúïêà, äàëè ùå ñå ïðåèãðàå êàòî ïðè èíñòàëàöèÿòà, "
-"èëè ùå áúäå ðú÷íà"
-#: ../../standalone/scannerdrake:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid "\t-Network by FTP.\n"
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../security/l10n.pm:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid "Reports check result to tty"
-msgstr "Èçïðàùà ðåçóëòàòà îò ïðîâåðêàòà íà tty."
+msgid ", using command %s"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Âèå òðÿáâà äà âúâåäåòå óñòðîéñòâî èëè èìå íà ôàéë!"
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
+msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
+#: ../../printer/main.pm_.c:647
#, c-format
-msgid "/_Quit"
-msgstr "/_Èçëèçà"
+msgid "(on %s)"
+msgstr "(íà %s)"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Ãðàôè÷íà ïàìåò: %s kB\n"
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
+msgstr "(íà òàçè ìàøèíà)"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../printer/main.pm_.c:674
+#, fuzzy, c-format
+msgid "On CUPS server \"%s\""
+msgstr "IP íà CUPS ñúðâúðà"
+
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
+msgstr " (Ïî ïîäðàçáèðàíå)"
+
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
+msgstr "Èçáåðåòå âðúçêà êúì ïðèíòåðà"
+
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
+msgstr "Êàê å ñâúðçàí ïðèíòåðúò ?"
+
+#: ../../printer/printerdrake.pm_.c:30
+#, fuzzy
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"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
msgstr ""
+"\n"
+"Îòäàëå÷åíèòå íà CUPS ñúðâúð ïðèíòåðè íå òðÿáâà äà íàñòðîéâàòå\n"
+"òóê; òåçè ïðèíòåðè ùå áúäàò çàñå÷åíè àâòîìàòè÷íî. Ìîëÿ,\n"
+"èçáåðåòå \"Ïðèíòåð íà îòäàëå÷åí CUPS ñúðâúð\" â òîçè ñëó÷àé."
-#: ../../any.pm:1
-#, c-format
-msgid "access to compilation tools"
-msgstr "äîñòúï äî èíñòðóìåíòè çà êîìïèëàöèÿ"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Global statistics"
-msgstr "Ñòàòèñòèêè"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+#, fuzzy
+msgid "CUPS configuration"
+msgstr "Íàñòðîéêà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Ìîëÿ, èçáåðåòå äàííè çà âúçñòàíîâÿâàíå..."
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+#, fuzzy
+msgid "Specify CUPS server"
+msgstr "Îòäàëå÷åí CUPS ñúðâúð"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:83
+#, fuzzy
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"
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
+msgstr ""
+"Ñ îòäàëå÷åíèòå CUPS ñúðâúðè, íÿìà íóæäà äà íàñòðîéâàòà êàêúâòî\n"
+"è äà áèëî ïðèíòåð òóê; CUPS ñúðâúðèòå èíôîðìèðàò àâòîìàòè÷íî ìàøèíàòà\n"
+"çà òåõíèòå ïðèíòåðè. Âñè÷êè ïðèíòåðè èçâåñòíè íà ìàøèíàòà âè\n"
+"ñà èçðåäåíè â ïîëåòî \"Ïðèíòåð ïî ïîðäðàçáèðàíå\". Èçáåðåòå\n"
+"ïðèíòåð ïî ïîäðàçáèðàíå çà ìàøèíàòà ñè îò òàì è öúêíåòå íà áóòîíà\n"
+"\"Ïðèëîæè/Ïðåïðî÷åòè ïðèíòåðèòå\". Öúêíåòå íà ñúùèÿ áóòîí, çà äà\n"
+"îïðåñíèòå ñïèñúêà (ìîæå äà îòíåìå äî 30 ñåêóíäè ñëåä ïóñêàíåòî\n"
+"íà CUPS, äîêàòî âñè÷êè îòäàëå÷åíè ïðèíòåðè ñòàíàò âèäèìè).\n"
+"Êîãàòî CUPS ñúðâúð å íà äðóãà ìðåæà, òðÿáâà äà äàäåòå IP àäðåñ è,\n"
+"åâåíòóëàíî íîìåð íà ïîðò íà CUPS ñúðâúðà, çà äà âçåìåòå èíôîðìàöèÿ\n"
+"çà ïðèíòåðà îò ñúðâúðà, èíà÷å îñòàâåòå ïîëåòî ïðàçíî."
+
+#: ../../printer/printerdrake.pm_.c:84
+#, fuzzy
+msgid ""
+"\n"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-"Àêî ñìÿòàòå äà èçïîëçâàòå aboot, îñòàâåòå ñâîáîäíî ïðîñòðàíñòâî (2048 "
-"ñåêòîðà\n"
-"ñà äîñòàòú÷íè) â íà÷àëîòî íà äèñêà"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Standard test page"
-msgstr "Ñòàíäàðòíà òåñòîâà ñòðàíèöà"
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Time Zone"
-msgstr "×àñîâà çîíà"
+"\n"
+"Îáèêíîâåíî, CUPS àâòîìàòè÷íî ñå íàñòðîéâà ñïîðåä ìðåæîâàòà ñðåäà,\n"
+"òàêà ÷å äà èìàòå äîñòúï äî ïðèíòåðèòå íà CUPS ñúðâúðà â ëîêàëíàòà\n"
+"âè ìðåæà. Àêî íå ñðàáîòè êàêòî òðÿáâà, èçêëþ÷åòå \"Àâòîìàòè÷íà\n"
+"CUPS íàñòðîéêà\" è ïîïðàâåòå ôàéëà /etc/cups/cupsd.conf ðú÷íî. Íå\n"
+"çàáðàâÿéòå äà ðåñòàðòèðàòå CUPS ñëåä òîâà (êîìàíäà: \"service\n"
+"cups restart\")."
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create"
-msgstr "Ñúçäàé"
+#: ../../printer/printerdrake.pm_.c:88
+msgid "The IP address should look like 192.168.1.20"
+msgstr "IP àäðåñúò òðÿáâà äà áúäå âúâ ôîðìàò 192.168.1.20"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "What"
-msgstr "Êàêâî"
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
+msgstr "Íîìåðúò íà ïîðòà òðÿáâà äà å öÿëî ÷èñëî !"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Ïîÿâè ñå ãðåøêà ïðè ïîðú÷âàíåòî íà ïàêåòèòå:"
+#: ../../printer/printerdrake.pm_.c:99
+msgid "CUPS server IP"
+msgstr "IP íà CUPS ñúðâúðà"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "Áúëãàðñêà (BDS)"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
+msgstr "Ïîðò"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Server"
-msgstr "Èçêëþ÷âà Ñúðâúð"
+#: ../../printer/printerdrake.pm_.c:102
+msgid "Automatic CUPS configuration"
+msgstr "Àâòîìàòè÷íà íàñòðîéêà íà CUPS"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem encryption key"
-msgstr "Êðèïòèðàù êëþ÷ çà ôàéëîâà ñèñòåìà"
+#: ../../printer/printerdrake.pm_.c:159
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Ðåñòàðòèðàíå íà ïðèíòåðíàòà ñèñòåìà"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
-msgstr "Ãóàäæàðàòè"
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+#, fuzzy
+msgid "Printerdrake"
+msgstr "Ïðèíòåð"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:167
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."
+"There are no printers found which are directly connected to your machine"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:179
+#, fuzzy
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 ""
+"The following printers\n"
+"\n"
+msgstr "Ñëåäíèòå ïàêåòè ùå áúäàò ïðåìàõíàòè"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:180
+#, fuzzy
msgid ""
+"The following printer\n"
"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
+msgstr "Ñëåäíèòå ïàêåòè ùå áúäàò ïðåìàõíàòè"
+
+#: ../../printer/printerdrake.pm_.c:182
+msgid ""
"\n"
+"and one unknown printer are "
msgstr ""
-"\n"
-" Àâòîðñêè ïðàâà (C) 2002 îò MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Save theme"
-msgstr "Çàïàçâà òåìà"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "Áðàçèëèÿ"
-#: ../../standalone/drakautoinst:1
+#: ../../printer/printerdrake.pm_.c:184
#, c-format
-msgid "Auto Install"
-msgstr "Àâòîìàòè÷íî Èíñòàëèðà"
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration Wizard"
-msgstr "Ìàãüîñíèê çà íàñòðîéêà íà ìðåæàòà"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"are "
+msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
-msgstr "Àâòîìàòè÷íî ìîíòèðàíå íà ñìåíÿåì íîñèòåë"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"is "
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Printing"
-msgstr "Ïå÷àòàíå"
+#: ../../printer/printerdrake.pm_.c:189
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Íÿìàòå ìðåæîâ àäàïòåð!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save:"
-msgstr "Âúâåäåòå äèðåêòîðèÿòà çà çàïàçâàíå:"
+#: ../../printer/printerdrake.pm_.c:192
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:194
#, c-format
msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "Íÿìà íàìåðåíè ïðèíòåðè âêëþ÷åíè äèðåêòíî êúì ìàøèíàòà âè"
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "Ñúçäàé íîâ äÿë"
+#: ../../printer/printerdrake.pm_.c:200
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Ìîëÿ, èçáåðåòå ñåðèåí ïîðò êúì êîéòî ñâúðçàí ìîäåìúò âè."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Driver:"
-msgstr "Äðàéâåð: "
+#: ../../printer/printerdrake.pm_.c:214
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
-msgstr "íåèçâåñòåí"
+#: ../../printer/printerdrake.pm_.c:215
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Èñêàòå ëè äà íàñòðîèòå òîçè ïðèíòåð (\"%s\")\n"
+"êàòî ïðèíòåð ïî ïîäðàçáèðàíå ?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "Èçïîëçâàé fdisk"
+#: ../../printer/printerdrake.pm_.c:217
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Èñêàòå ëè äà ñòàðòèðàòå âðúçêàòà ñè ïðè çàðåæäàíå ?"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "ÁÓÒÍÅÒÅ ÒÎÏ×ÅÒÎ !"
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
-#: ../../standalone/net_monitor:1
+#: ../../printer/printerdrake.pm_.c:219
#, c-format
-msgid "sent: "
-msgstr "èçïðàùà: "
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "Àâòîìàòè÷åí IP àäðåñ"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+#, fuzzy
+msgid "Add a new printer"
+msgstr "Äîáàâè ïðèíòåð"
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:259
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"
+"Welcome to the Printer Setup Wizard\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"
+"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"
-" Note that two different options are available after clicking the button:\n"
+"It asks you for all necessary information to set up the printer and gives "
+"you access to all available printer drivers, driver options, and printer "
+"connection types."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:272
+msgid ""
"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\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"
-" 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"
+"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) and you Windows machines must be connected and "
+"turned on.\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"
+"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"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"À òàêà ! Èíñòàëàöèÿòà å çàâúðøåíà è GNU/Linux ñèñòåìàòà âè å ãîòîâà çà\n"
-"óïîòðåáà. Ïðîñòî öúêíåòå \"OK\", çà äà ðåñòàðòèðàòå ñèñòåìàòà. Ìîæåòå äà\n"
-"ñòàðòèðàòå GNU/Linux èëè Windows, êîåòî ïðåäïî÷èòàòå (àêî èìàòå äâå "
-"ñèñòåìè),\n"
-"âåäíàãà ñëåä êàòî êîìïþòúðúò ñòàðòèðà îòíîâî.\n"
+
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
+msgid ""
"\n"
-"Áóòîíà \"Íàïðåäíè÷àâ\" (ñàìî â \"Åêñïåðòåí\") ïîêàçâà îùå äâà áóòîíà çà:\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" * \"ãåíåðèðàíå íà äèñêåòà çà àâòîìàòè÷íà èíñòàëàöèÿ\": çà äà ñúçäàäåòå\n"
-"èíñòàëàöèîííà äèñêåòà, êîÿòî ñëåä òîâà àâòîìàòè÷íî äà èç÷úðøâà öÿëàòà\n"
-"èíñòàëàöèÿ áåç ïîìîùòà íà îïåðàòîð, ïðèëè÷àùà íà èíñòàëàöèÿòà, êîÿòî òîêó-"
-"ùî\n"
-"ñòå èçâúðøèëè.\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
"\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"
-" * \"Ïðåèãðàé\". Òîâà å ÷àñòè÷íî àâòîìàòèçèðàíà èíñòàëàöèÿ êàòî ñòúïêèòå\n"
-"ïî ðàçäåëÿíå íà äÿëîâå îñòàâàò èíòåðàêòèâíè.\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:289
+msgid ""
"\n"
-" * \"Àâòîìàòè÷íà\". Íàïúëíî àâòîìàòè÷íà èíñòàëàöèÿ: òâúðäèÿò äèñê ñå\n"
-"ïðåçàïèñâà íàïúëíî, âñÿêàêâè äàííè ñå çàãóáâàò.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" Òàçè îñîáåíîñò å ìíîãî óäîáíà, êîãàòî èíñòàëèðàòå ãîëÿì áðîé ïîäîáíî\n"
-"ìàøèíè. Âèæòå ñåêöèÿòà çà àâòîìàòè÷íà èíñòàëàöèÿ íà íàøèÿ web-ñàéò.\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer or connected directly to the network.\n"
"\n"
-" * \"Çàïàçè èçáîðà íà ïàêåòè\"(*): çàïàçâà èçáîðà íà ïàêåòè, òàêà êàêòî "
-"å\n"
-"íàïðàâåí ïðåäè. Êîãàòî ïðàâèòå äðóãà èíñòàëàöèÿ, âêàðàéòå äèñêåòàòà â\n"
-"óñòðîéñòâîòî è ïóñíåòå èíñòàëàöèÿòà äà âúðâè ÷ðåç ïîìîùíèÿ åêðàí, êàòî\n"
-"íàòèñíåòå êëàâèøà [F1] è êàòî íàïèøåòå >>linux defcfg=\"floppy\"<<.\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"
-"(*) Òðÿáâà âè FAT-ôîðìàòèðàíà äèñêåòà (çà äà ñúçäàäåòå òàêâà ïîä GNU/Linux,\n"
-"íàïèøåòå \"mformat a:\")"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Moldova"
-msgstr "Ìîëäîâà"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington THinking Mouse"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuration of a remote printer"
-msgstr "Íàñòðîéêà íà îòäàëå÷åí ïðèíòåð"
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
+"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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URL òðÿáâà äà å çàïî÷âà ñ 'ftp:' èëè 'http:'"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Oriya"
-msgstr "Îðèéñêà"
+#: ../../printer/printerdrake.pm_.c:307
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
+msgstr "Îòäàëå÷åí ïðèíòåð"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Äîáàâÿ íîâî ïðàâèëî íà êðàÿ"
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr "LiLo è Bootsplash òåìè ñà óñïåøíî èíñòàëèðàíè"
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:329
msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
+"\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 ""
-"Âèå ñúùî ðåøàâàòå, äàëè ïðèíòåðèòå íà îòäàëå÷åíèòå ìàøèíè ùå áúäàò "
-"àâòîìàòè÷íî äîñòúïíè íà òàçè ìàøèíà."
-#: ../../modules/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+#, fuzzy
+msgid "Printer auto-detection"
+msgstr "Èçïîëçâàé àâòîìàòè÷íî çàñè÷àíå"
+
+#: ../../printer/printerdrake.pm_.c:385
#, 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 ", network printer \"%s\", port %s"
msgstr ""
-"Ñåãà ìîæåòå äà ïîäàäåòå îïöèèòå ìó äî ìîäóëà %s.\n"
-"Îïöèèòå ñà âúâ ôîðìàò ``èìå=ñòîéíîñò èìå2=ñòîéíîñò2 ...''.\n"
-"Íàïðèìåð: ``io=0x300 irq=7''"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "Èçõîä, áåç äà çàïèñ íà òàáëèöàòà íà äÿëîâåòå ?"
+#: ../../printer/printerdrake.pm_.c:387
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Ïðèíòåð íà SMB/Windows 95/98/NT ñúðâúð"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
+#: ../../printer/printerdrake.pm_.c:391
+#, fuzzy, c-format
+msgid "Detected %s"
+msgstr "çàñå÷åíà %s"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "On Hard Drive"
+msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
-msgid "Installing packages..."
-msgstr "Èíñòàëèðàíå íà ïàêåòè ..."
-
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "Dutch"
-msgstr "Õîëàíäñêà"
+msgid "USB printer \\/*%s"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Angola"
-msgstr "Àíãîëà"
+#: ../../printer/printerdrake.pm_.c:399
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Ìðåæîâ ïðèíòåð (TCP/Socket)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "Ñëåäíèòå ïàêåòè ùå òðÿáâà äà ñå èíñòàëèðàò:\n"
+#: ../../printer/printerdrake.pm_.c:401
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Ïðèíòåð íà SMB/Windows 95/98/NT ñúðâúð"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "service setting"
-msgstr "óñòàíîâÿâàíå íà îáñëóæâàíèÿ"
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+#, fuzzy
+msgid "Local Printer"
+msgstr "Ëîêàëåí ïðèíòåð"
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "Êëèåíòñêà"
+#: ../../printer/printerdrake.pm_.c:526
+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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
-msgstr "Ëàòâèÿ"
+#: ../../printer/printerdrake.pm_.c:530
+#, fuzzy
+msgid "You must enter a device or file name!"
+msgstr "Âúâåäåòå URI íà ïå÷àòàùî óñòðîéñòâî"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr "Ôàéëúò âå÷å ñå èçïîëçâà òî äðóã loopback, èçáåðåòå äðóã ôàéë."
+#: ../../printer/printerdrake.pm_.c:539
+#, fuzzy
+msgid "No printer found!"
+msgstr "Ëîêàëåí ïðèíòåð"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr "Ñàìî çà ÷åòåíå"
+#: ../../printer/printerdrake.pm_.c:548
+#, fuzzy
+msgid "Available printers"
+msgstr "Ëîêàëåí ïðèíòåð"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:552
msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
-msgstr "Íÿìà èçâåñòåí äðàéâåð"
+#: ../../printer/printerdrake.pm_.c:553
+msgid ""
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "1 ÌÁ"
+#: ../../printer/printerdrake.pm_.c:555
+msgid ""
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:556
msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-"Àêî òîé íå å òîçè êîéòî èñêàòå äà êîíôèãóðèðàòå, âúâåäåòå èìå íà óñòðîéñòâî/"
-"èìå íà ôàéë âúâ âõîäíîòî ïîëå"
-#: ../../standalone/draksound:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:558
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 choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Íàñòîéêà íà ëîêàëíà ìðåæà ..."
+#: ../../printer/printerdrake.pm_.c:559
+#, fuzzy
+msgid "Please choose the port where your printer is connected to."
+msgstr "Ìîëÿ, èçáåðåòå ñåðèåí ïîðò êúì êîéòî ñâúðçàí ìîäåìúò âè."
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:561
msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr "Ïóñíêàíå çâóêîâàòà ñèñòåìà íà ìàøèíàòà âè"
+#: ../../printer/printerdrake.pm_.c:565
+#, fuzzy
+msgid "You must choose/enter a printer/device!"
+msgstr "Âúâåäåòå URI íà ïå÷àòàùî óñòðîéñòâî"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:584
+#, fuzzy
+msgid "Manual configuration"
+msgstr "Íàñòðîéêà íà öâåòîâå"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run some checks against the rpm database"
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
+msgstr "Îïöèè íà îòäàëå÷åí lpd-ïðèíòåð"
+
+#: ../../printer/printerdrake.pm_.c:634
+#, fuzzy
+msgid ""
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
+"Çà äà èçïîëçâàòå îòäàëå÷åí lpd ïðèíòåð, òðÿáâà\n"
+"äà ïðåäîñòàâèòå èìåíàòà íà õîñòà íà ïðèíòåðíèÿ ñúðâúð è\n"
+"èìåòî íà ïðèíòåðà íà òîçè ñúðâúð."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Execute"
-msgstr "Èçïúëíè"
+#: ../../printer/printerdrake.pm_.c:635
+msgid "Remote host name"
+msgstr "Èìå íà îòäàëå÷åí õîñò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Ïîäãîòâÿíå íà áàçàòà äàííè îò ïðèíòåðè ..."
+#: ../../printer/printerdrake.pm_.c:636
+msgid "Remote printer name"
+msgstr "Èìå íà îòäàëå÷åí ïðèíòåð"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Information"
-msgstr "Èíôîðìàöèÿ"
+#: ../../printer/printerdrake.pm_.c:639
+msgid "Remote host name missing!"
+msgstr "Ëèïñâà èìå íà èìå íà õîñò !"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "No network card"
-msgstr "Íÿìà îòêðèòà ìðåæîâà êàðòà"
+#: ../../printer/printerdrake.pm_.c:643
+msgid "Remote printer name missing!"
+msgstr "Ëèïñâà èìå íà îòäàëå÷åí ïðèíòåð !"
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "3 áóòîíà"
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "çàñå÷åíà %s"
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Which filesystem do you want?"
-msgstr "Êîÿ ôàéëîâà ñèñòåìà èñêàòå ?"
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Ñòàðòèðàíå ìðåæàòà ...."
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, c-format
-msgid "Malta"
-msgstr "Ìàëòà"
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Detailed information"
-msgstr "Ïîäðîáíà èíôîðìàöèÿ"
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Ïå÷àòàíå íà ïðèíòåð \"%s\""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "Íàñòðîéêè íà SMB (Windows 9x/NT) ïðèíòåð"
+
+#: ../../printer/printerdrake.pm_.c:796
+#, fuzzy
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."
+"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 ""
-"Íàñòðîéêè íà ïðèíòåðà ïî ïîäðàçáèðàíå\n"
-"\n"
-"Òðÿáâà äà ñòå ñèãóðíè, ÷å ãîëåìèíàòà íà ñòðàíèöàòà\n"
-"è òèïà íà ìàñòèëîòî (àêî èìà) ñà íàñòðîåíè ïðàâèëíî.\n"
-"Îòáåëåæåòå, ÷å ïðè ìíîãî âèñîêî êà÷åñòî íà èçõîäà íà\n"
-"ïðèíòåðà, òîé ìîæå çíà÷èòåëíî äà ñå çàáàâè."
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
-msgstr "Òàçè äèñêåòà íå å ôîðìàòèðàíà íà FAT"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "Íàñòîéêà íà ìðåæàòà"
+"Çà äà ïå÷àòàòå íà SMB ïðèíòåð, òðÿáâà äà äàäåòå èìåòî\n"
+"íà SMB õîñòà (Çàáåëåæêà ! Òî ìîæå äà å ðàçëè÷íî îò TCP/IP õîñòà !)\n"
+"è âúçìîæíî IP àäðåñà íà ïðèíòåðñêèÿ ñúðâúð, êàêòî è îáùîòî èìå íà\n"
+"ïðèíòåðà, äî êîéòî èñêàòå äîñòúï è ïîäõîäÿùî èìåí, ïàðîëà è èíôîðìàöèÿ\n"
+"çà ðàáîòíàòà ãðóïà."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:797
msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
+" 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 ""
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Graphic Card"
-msgstr "Ãðàôè÷íà êàðòà"
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
+msgstr "Õîñò íà SMB ñúðâúð"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing Windows partition"
-msgstr "Èç÷èñëÿâàì ãðàíèöèòå íà Windows ôàéëîâàòà ñèñòåìà"
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr "IP íà SMB ñúðâúð:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "Êàìåðóí"
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr "Îáùî èìå"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "1-âè DNS íà äîñòàâ÷èêà (ïî æåëàíèå)"
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "Ðàáîòíà ãðóïà"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Ñåãà ìîæåòå äà ðàçäåëèòå %s.\n"
-"Êîãàòî ñòå ãîòîâè, íå çàáðàâÿéòå äà çàïèøåòå èçïîëçâàéêè `w'"
+#: ../../printer/printerdrake.pm_.c:806
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Èçïîëçâàé àâòîìàòè÷íî çàñè÷àíå"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Saami (swedish/finnish)"
-msgstr "Ñààìè (íîðâåæêà)"
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
+msgstr "Òðÿáâà äà áúäàò çàäàäåíè è èìåòî è IP àäðåñà íà ñúðâúðà !"
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Close"
-msgstr "Çàòâîðè"
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
+msgstr "Ëèïñâà èìå íà SAMBA share !"
+
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
+msgstr ""
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:827
#, 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."
+"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/logdrake:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
-msgid "Calendar"
-msgstr "Êàëåíäàð"
+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 ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:840
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+"Connect your printer to a Linux server and let your Windows machine(s) "
+"connect to it as a client.\n"
+"\n"
+"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
+msgstr "Îïöèè çà NetWare ïðèíòåð"
+
+#: ../../printer/printerdrake.pm_.c:912
+#, fuzzy
msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
+"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 ""
-"Çà äà èçïîëçâàòå îòäàëå÷åí lpd ïðèíòåð, òðÿáâà äà ïðåäîñòàâèòå èìåíàòà íà "
-"õîñòà íà ïðèíòåðíèÿ ñúðâúð è èìåòî íà ïðèíòåðà íà òîçè ñúðâúð."
+"Çà äà ïå÷àòèòå íà NetWare ïðèíòåð ,òðÿáâà äà çíàåòå èìåî ìó è âúçìîæíî\n"
+"àäðåñà íà ñúðâúðà, êàêòî è èìåòî íà îïàøêàòà,ïîòðåáèòåëñêîòî èìå,ïàðîëà."
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
-msgstr "Èñëàíäèÿ"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr "Ñúðâúð íà ïðèíòåðà"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Network & Internet Configuration"
-msgstr "Íàñòðîéêà íà ìðåæàòà"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
+msgstr "Èìå íà ïå÷àòíàòà îïàøêàòà"
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
-msgstr "ëèïñâà ïîìîù íà êîíçîëà"
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
+msgstr "Ëèïñâà èìå íà NCP ñúðâúð !"
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr "ñïðÿíà"
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
+msgstr "Ëèïñâà èìå íà NCP îïàøêà !"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, c-format
-msgid "Whether the FPU has an irq vector"
+msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
-msgid "Ext2"
-msgstr "Ext2"
+msgid "Host \"%s\", port %s"
+msgstr ""
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr "Ðàçøèðè äúðâîòî"
+#: ../../printer/printerdrake.pm_.c:1030
+#, fuzzy
+msgid "TCP/Socket Printer Options"
+msgstr "Îïöèè íà Socket ïðèíòåð"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1032
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
-"\n"
-"It has been reported to oops the kernel on unloading.\n"
-"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Expert Mode"
-msgstr "Ðàçøèðåíè ôóíêèöèè"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "Îïöèè íà ïðèíòåðà"
+#: ../../printer/printerdrake.pm_.c:1033
+#, fuzzy
+msgid ""
+"To print to a TCP or socket printer, you need to provide the host name or IP "
+"of the printer and optionally the port number (default is 9100). On HP "
+"JetDirect servers the port number is usually 9100, on other servers it can "
+"vary. See the manual of your hardware."
+msgstr ""
+"Çà äà ïå÷àòàòå íà socket ïðèíòåð, òðÿáâà äà ïðåäîñòàâèòå\n"
+"èìåòî íà õîñòà íà ïðèíòåðà è, åâåíòóàëíî, íîìåð íà ïîðò.\n"
+"Íà HP JetDirect ñúðâúðè, íîìåðúò íà ïîðòà îáèêíîâåííî å 9100,\n"
+"íà äðóãè ñúðâúðè ìîæå äà âàðèðà. Âèæòå ðúêîâîñòâîòî íà\n"
+"õàðäóåðà ñè."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Local Network adress"
-msgstr "Àäðåñ íà Ëîêàëíà ìðåæà"
+#: ../../printer/printerdrake.pm_.c:1037
+#, fuzzy
+msgid "Printer host name or IP missing!"
+msgstr "Ëèïñâà èìå íà õîñò íà ïðèíòåða !"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Ðåçåðâíî êîïèå íà âàøèòå ñèñòåìíè ôàéëîâå (/etc äèðåêòîðèÿ)"
+#: ../../printer/printerdrake.pm_.c:1059
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Èìå íà õîñò íà ïðèíòåðà"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the user umask."
-msgstr "Óñòàíîâÿâàíå íà ïîòðåáèòåëñêà umask"
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
+msgstr "Ïå÷àòàùî óñòðîéñòâî URI"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1108
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 ?"
+"You can specify directly the URI to access the printer. The URI must fulfill "
+"either the CUPS or the Foomatic specifications. Note that not all URI types "
+"are supported by all the spoolers."
msgstr ""
+"Òðÿáâà äèðåêòíî äà îïðåäåëèòå URI çà äîñòúï äî ïðèíòåðà. URI òðÿáâà äà "
+"èçïúëíè èëè CUPS èëè Foomatic ñïåöèôèêàöèèòå. Îòáåëåæåòå, ÷å íå âñè÷êè "
+"òèïîâå URI ñå ïîääðúðæàò îò spooler-èòå."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Samba Server"
-msgstr "Samba Ñúðâúð"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
+msgstr "Òðÿáâà äà áúäå âúâåäåí âàëèäåí URI !"
-#: ../../install_steps_newt.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1463
+#, fuzzy
msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+"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 ""
-" <Tab>/<Alt-Tab> ìåæäó åëåìåíòèòå | <Space> èçáèðà | <F12> ñëåäâàù åêðàí"
+"Âñåêè ïðèíòåð ñå íóæäàå îò èìå (íàïðèìåð lp).\n"
+"Ïîëåòàòà Îïèñàíèå è Ìåñòîïîëîæå íå òðÿáâà äà áúäàò\n"
+"ïîïúëâàíè. Èìà êîìåíòàðè çà ïîòðåáèòåëèòå."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet:"
-msgstr "Ïîäìðåæà:"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr "Èìå íà ïðèíòåð"
-#: ../../lang.pm:1
-#, c-format
-msgid "Zimbabwe"
-msgstr "Çèìáàáâå"
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
+msgstr "Îïèñàíèå"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "When"
-msgstr "Êîãà"
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
+msgstr "Ìåñòîïîëîæåíèå"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+msgid "Reading printer database..."
+msgstr "×åòåíå íà áàçàòà äàííè îò ïðèíòåðè ..."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Hour"
-msgstr "×àñ"
+#: ../../printer/printerdrake.pm_.c:1482
+msgid "Preparing printer database..."
+msgstr "Ïîäãîòâÿíå íà áàçàòà äàííè îò ïðèíòåðè ..."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Âòîðè DNS ñúðâúð (ïî èçáîð)"
+#: ../../printer/printerdrake.pm_.c:1578
+#, fuzzy
+msgid "Your printer model"
+msgstr "Èìå íà îòäàëå÷åí ïðèíòåð"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:1579
#, c-format
-msgid "Finland"
-msgstr "Ôèíëàíäèÿ"
+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/various.pm:1
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Äúëáî÷èíà íà öâåòà: %s\n"
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+#, fuzzy
+msgid "The model is correct"
+msgstr "Âñè÷êî ïðàâèëíî ëè å ?"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Íå ìîæåòå äà èçêëþ÷èòå òîçè ïàêåò. Òîé òðÿáâà äà áúäå îáíîâåí"
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+#, fuzzy
+msgid "Select model manually"
+msgstr "Èìå íà îòäàëå÷åí ïðèíòåð"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "Çàðåæäàíå îò äèñêåòà"
+#: ../../printer/printerdrake.pm_.c:1606
+msgid "Printer model selection"
+msgstr "Èçáîð ìîäåë íà ïðèíòåðà"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:1607
+msgid "Which printer model do you have?"
+msgstr "Êàêúâ ìîäåë ïðèíòåð èìàòå ?"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
+#: ../../printer/printerdrake.pm_.c:1608
+msgid ""
+"\n"
+"\n"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr "Ñëîâåíèÿ"
+#: ../../printer/printerdrake.pm_.c:1611
+msgid ""
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
+msgstr ""
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse test"
-msgstr "Ïðîâåðêà íà ìèøêàòà"
+#: ../../printer/printerdrake.pm_.c:1697
+msgid "OKI winprinter configuration"
+msgstr "Íàñòðîéêè íà OKI Winprinter"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1698
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."
+"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 ""
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+msgid "Lexmark inkjet configuration"
+msgstr "Íàñòðîéêà íà Lexmark inkjet"
+
+#: ../../printer/printerdrake.pm_.c:1719
+#, fuzzy
msgid ""
-"Enter a user\n"
-"%s"
+"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 ""
-"Âúâåäåòå ïîòðåáèòåë\n"
-"%s"
+"Inkjet ïðèíòåðíèòå äðàéâåðè ïðåäîñòàâåíè îò Lexmark ïîääúðæàò\n"
+"ñàìî ëîêàëíè ïðèíòåðè, áåç ïðèíòåðè íà îòäàëå÷åíè ìàøèíè èëè\n"
+"ïðèíòåðíè ìàøèíè. Ìîëÿ, ñâúðæåòå ïðèíòåðà ñè íà ëîêàëåí ïîðò\n"
+"èëè ãî íàñòðîéòå íà ìàøèíàòà, êúì êîÿòî å ñâúðçàí."
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1746
msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"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/draksplash:1
-#, c-format
-msgid "ProgressBar color selection"
-msgstr "Èçáîð íà öâÿò çà ëåíòàòà íà ïðîãðåñ"
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1750
msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-"Òîâà ñà ðàçëè÷íèòå çàïèñè.\n"
-"Ìîæåòå äà äîáàâèòå îùå èëè äà ïðîìåíèòå ñúùåñòâóâàùèòå."
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:1972
+#, fuzzy
+msgid ""
+"Printer default settings\n"
+"\n"
+"You should make sure that the page size and the ink type/printing mode (if "
+"available) and also the hardware configuration of laser printers (memory, "
+"duplex unit, extra trays) are set correctly. Note that with a very high "
+"printout quality/resolution printing can get substantially slower."
+msgstr ""
+"Íàñòðîéêè íà ïðèíòåðà ïî ïîäðàçáèðàíå\n"
+"Òðÿáâà äà ñòå ñèãóðíè, ÷å ãîëåìèíàòà íà ñòðàíèöàòà\n"
+"è òèïà íà ìàñòèëîòî (àêî èìà) ñà íàñòðîåíè ïðàâèëíî.\n"
+"Îòáåëåæåòå, ÷å ïðè ìíîãî âèñîêî êà÷åñòî íà èçõîäà íà\n"
+"ïðèíòåðà, òîé ìîæå çíà÷èòåëíî äà ñå çàáàâè."
+
+#: ../../printer/printerdrake.pm_.c:1981
+#, c-format
+msgid "Option %s must be an integer number!"
+msgstr "Íàñòðîéêàòà %s òðÿáâà äà å öÿëî ÷èñëî !"
+
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
+msgid "Option %s must be a number!"
+msgstr "Íàñòðîéêàòà %s òðÿáâà äà å ÷èñëî !"
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:1989
#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
+msgid "Option %s out of range!"
+msgstr "Îïöèÿòà %s å èçâúí ãðàíèöèòå !"
-#: ../../standalone/drakbug:1
+#: ../../printer/printerdrake.pm_.c:2028
#, c-format
msgid ""
-"Application Name\n"
-"or Full Path:"
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
+"Èñêàòå ëè äà íàñòðîèòå òîçè ïðèíòåð (\"%s\")\n"
+"êàòî ïðèíòåð ïî ïîäðàçáèðàíå ?"
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2051
+msgid "Test pages"
+msgstr "Òåñòîâè ñòðàíèöè"
+
+#: ../../printer/printerdrake.pm_.c:2052
+#, fuzzy
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."
+"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 ""
-"Ïóñêà êîìàíäè ïî ðàçïèñàíèå âúâ âðåìå îïðåäåëåíî îò êîìàíäàòà at è ïóñêà\n"
-"íàáîð îò äðóãè, êîãàòî íàòîâàðåíîñòòà ñïàäíå äîñòàòú÷íî."
+"Ìîëÿ, èçáåðåòå òåñòîâà ñòðàíèöà çà ïå÷àò.\n"
+"Çàáåëåæêà: òåñòîâàòà ñòðàíèöà çà ñíèìêà ìîæå äà îòíåìå äîñòà äúëãî\n"
+"âðåìå äà ñå èçïå÷àòà è íà ëàçåðíè ïðèíòåðè ñ ìàëêî ïàìåò ìîæå âúîáùå\n"
+"äà íå èçëåçå.  ïîâå÷åòî ñëó÷àè å äîñòàòú÷íà ñòàíäàðòíà òåñòîâà ñòðàíèöà."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
-msgstr "Ïîäðúæêà íà ðàäèî:"
+#: ../../printer/printerdrake.pm_.c:2056
+msgid "No test pages"
+msgstr "Áåç òåñòîâè ñòðàíèöè"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "Èíñòàëèðàíå íà SANE ïàêåòè ..."
+#: ../../printer/printerdrake.pm_.c:2057
+msgid "Print"
+msgstr "Ïå÷àò"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
-msgstr "LDAP"
+#: ../../printer/printerdrake.pm_.c:2114
+msgid "Standard test page"
+msgstr "Ñòàíäàðòíà òåñòîâà ñòðàíèöà"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
-msgstr "SILO"
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
+msgstr "Àëòåðíàòèâíà òåñòîâà ñòðàíèöà (Ïèñìî)"
-#: ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Change type"
-msgstr "Ïðîìÿíè òèïà"
+#: ../../printer/printerdrake.pm_.c:2120
+msgid "Alternative test page (A4)"
+msgstr "Àëòåðíàòèâíà òåñòîâà ñòðàíèöà (À4)"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", USB ïðèíòåð #%s"
+#: ../../printer/printerdrake.pm_.c:2122
+msgid "Photo test page"
+msgstr "Òåñòîâà ñòðàíèöà ñúñ ñíèìêà"
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "SILO èíñòàëàöèÿ"
+#: ../../printer/printerdrake.pm_.c:2126
+#, fuzzy
+msgid "Do not print any test page"
+msgstr "Îòïå÷àòâàíå íà òåñòîâè ñòðàíèöè"
+
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
+msgstr "Îòïå÷àòâàíå íà òåñòîâ(àòà/èòå) ñòðàíèö(à/è) ..."
-#: ../../install_messages.pm:1
+#: ../../printer/printerdrake.pm_.c:2159
#, 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"
+"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"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-"Ïîçäðàâëåíèÿ, èíñòàëàöèÿòà å ïðåêëþ÷åíà.\n"
-"Ïðåìàõíåòå ñòàðòîâîòî óñòðîéñòâî è íàòèñåíå Enter çà äà ðåñòàðòèðàéòå.\n"
-"\n"
-"\n"
-"Çà èíôîðìàöèÿ îòíîñíî ïîïðàâêè, íà òàçè âåðñèÿ íà Mandrake Linux,\n"
-"ñå êîíñóëòèðàéòå ñ Errata, íà àäðåñ : \n"
-"\n"
-"\n"
+"Òåñòîâèòå ñòðàíèöè ñà èçïðàòåíè êúì ïðèíòåðà.\n"
+"Ìîæå äà îòíåìå ìàëêî âðåìå ïðåäè ïðèíòåðà äà çàïî÷íå.\n"
+"Ñúñòîÿíèå íà ïå÷àòà:\n"
"%s\n"
"\n"
-"\n"
-"Èíôîðìàöèÿ çà íàñòðîéâàíå íà ñèñòåìàòà âè ìîæåòå äà íàìåðèòå â\n"
-"ñëåäèíñòàëàöèîííàòà ãëàâà îò Official Mandrake Linux User's Guide."
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Enable Network Time Protocol"
+#: ../../printer/printerdrake.pm_.c:2163
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
msgstr ""
+"Òåñòîâèòå ñòðàíèöè ñà èçïðàòåíè êúì ïðèíòåðíà.\n"
+"Ìîæå äà îòíåìå ìàëêî âðåìå ïðåäè ïðèíòåðà äà çàïî÷íå.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "paranoid"
-msgstr "ïàðàíîè÷íî"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Do not send mails when unneeded"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
+msgstr "Ïðîðàáîòè ëè êàêòî òðÿáâà ?"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+msgid "Raw printer"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
-msgid "Send mail report after each backup to:"
+msgid ""
+"To print a file from the command line (terminal window) you can either use "
+"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
+"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
+"to modify the option settings easily.\n"
msgstr ""
+"Çà äà èçïå÷àòàòå ôàéë îò êîìàíäíèÿ ðåä (òåðìèíàëåí ïðîçîðåö), ìîæåòå èëè äà "
+"èçïîëçâàòå êîìàíäàòà \"%s <file>\" èëè ãðàôè÷íèÿ ïå÷àòàù èíñòðóìåíò: \"xpp "
+"<file>\" èëè \"kprinter <file>\". Ãðàôè÷íèòå èíñòðóìåíòè âè ïîçâîëÿâàò äà "
+"èçáèðàòå ïðèíòåðà è äà ïîïðàâÿòå ëåñíî íàñòðîéêèòå íà îïöèèòå.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2218
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 "
+"These commands you can also use in the \"Printing command\" field of the "
+"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
"Ìîæåòå äà èçïîëçâàòå òàçè êîìàíäà è â ïîëåòî \"Êîìàíäà çà ïå÷àò\" íà "
-"ïå÷àòíèòå äèàëîçè â ìíîãî ïðèëîæåíèÿ. Íî òóê íå ïîñòàâÿéòå èìåòî íà ôàéëà, "
+"ïå÷àòíèòå äèàëîçè â ìíîƒî ïðèëîæåíèÿ. Íî ò¢ê íå ïîñòàâÿéòå èìåòî íà ôàéëà, "
"çàùîòî òî ñå ïîäàâà îò ïðèëîæåíèåòî.\n"
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolution"
-msgstr "Ðàçäåëèòåëíà ñïîñîáíîñò"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, 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."
+"\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 ""
-"Çà äà ïå÷àòàòå íà SMB ïðèíòåð, òðÿáâà äà äàäåòå èìåòî\n"
-"íà SMB õîñòà (Çàáåëåæêà ! Òî ìîæå äà å ðàçëè÷íî îò TCP/IP õîñòà !)\n"
-"è âúçìîæíî IP àäðåñà íà ïðèíòåðñêèÿ ñúðâúð, êàêòî è îáùîòî èìå íà\n"
-"ïðèíòåðà, äî êîéòî èñêàòå äîñòúï è ïîäõîäÿùî èìåí, ïàðîëà è èíôîðìàöèÿ\n"
-"çà ðàáîòíàòà ãðóïà."
+"\n"
+"Êîìàíäàòà \"%s\" ñúùî òàêà âè ïîçâîëÿâà äà ïîïðàâèòå íàñòðîéêèòå íà îïöèèòå "
+"çà îïðåäåëåíà ðàáîòà íà ïðèíòåðà. Ïðîñòî äîáàâåòå öåëàíèòå íàñòðîéêè êúì "
+"êîìàíäíèÿ ðåä, íàïð. \"%s <file>\". "
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
+#, fuzzy, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"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\n"
+"\n"
msgstr ""
+"Çà äà âèäèòå ñïèñúê íà äîñòúïíèòå îïöèè çà òåêóùèÿ ïðèíòåð, èëè ïðî÷åòåòå "
+"ñïèñúêà ïîêàçàí ïî-äîëó èëè öúêíåòå íà áóòîíà \"Ñïèñúê ñ îïöèè çà ïå÷àò\".\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
-msgstr "ïðåíàñòðîéêà"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2228
msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+"Here is a list of the available printing options for the current printer:\n"
+"\n"
msgstr ""
-"Êàðòàòà âè ìîæå äà èìà ïîääðúæêà íà õàðäóåðíî 3D óñêîðåíèå ñ XFree %s.\n"
-"ÎÒÁÅËÅÆÅÒÅ, ×Å ÒÎÂÀ Å ÅÊÑÏÅÐÈÌÅÍÒÀËÍÀ ÏÎÄÄÐÚÆÊÀ È ÊÎÌÏÞÒÚÐÚÒ ÂÈ ÌÎÆÅ ÄÀ "
-"ÇÀÁÈÅ."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell timeout"
-msgstr "Øåë âðåìå çà äîñòúï"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Xinetd Service"
-msgstr "Xinetd îáñëóæâàíå"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to network tools"
-msgstr "äîñòúï äî ìðåæîâè èíñòðóìåíòè"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
msgstr ""
+"Çà äà èçïå÷àòàòå ôàéë îò êîìàíäíèÿ ðåä (òåðìèíàëåí ïðîçîðåö) èçïîëçâàéòå "
+"êîìàíäàòà \"%s <file>\".\n"
-#: ../advertising/03-software.pl:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
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."
+"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 ""
-"Mandrake Linux 9.2 âè ïïîçâîëÿâà äà ïîëó÷èòå íàé-ïîñëåäíèòå âåðñèè íà "
-"ñîôòóåðà, äà ñëóøàòå ìóçèêàëíè ôàéëîâå, äà îáðàáîòâàòå ôîòî è ãðàôè÷íè "
-"ôàéëîâå, êàêòî è äà ãëåäàòå âèäåî."
+"Ìîæåòå äà èçïîëçâàòå òàçè êîìàíäà è â ïîëåòî \"Êîìàíäà çà ïå÷àò\" íà "
+"ïå÷àòíèòå äèàëîçè â ìíîãî ïðèëîæåíèÿ. Íî òóê íå ïîñòàâÿéòå èìåòî íà ôàéëà, "
+"çàùîòî òî ñå ïîäàâà îò ïðèëîæåíèåòî.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Òîâà å ñïèñúê íà àâòîìàòè÷íî îòêðèòè ïðèíòåðè."
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
+#, fuzzy
+msgid ""
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
+msgstr ""
+"Çà äà âèäèòå ñïèñúê ñ äîñòúïíèòå îïöèè çà òåêóùèÿ ïðèíòåð, öúêíåòå íà áóòîíà "
+"\"Ñïèñúê ñ îïöèè çà ïå÷àò\".\n"
+"\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2253
#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
msgstr ""
-"Ãðåøêà ïðè èíñòàëèðàíå íà aboot, \n"
-"äà ñå îïèòàì ëè äà ïðîäúëæà èíñòàëàöèÿòà äîðè, àêî òîâà óíèæòîæè ïúðâèÿ äÿë ?"
+"Çà äà îòïå÷àòàòå ôàéë îò êîìàíäíèÿ ðåä (òåðìèíàëåí ïðîçîðåö), èçïîëçâàéòå "
+"êîìàíäàòà \"%s <file>\" èëè \"%s <file>\".\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2257
msgid ""
-"Restore Selected\n"
-"Files"
+"You can also use the graphical interface \"xpdq\" for setting options and "
+"handling printing jobs.\n"
+"If you are using KDE as desktop environment you have a \"panic button\", an "
+"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
+"jobs immediately when you click it. This is for example useful for paper "
+"jams.\n"
msgstr ""
-"Âúçñòàíîâÿâà èçáðàíèòå\n"
-"ôàéëîâå"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2261
#, 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."
+"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
+"a particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\".\n"
msgstr ""
+"\n"
+"Êîìàíäèòå \"%s\" è \"%s\" ñúùî òàêà ïîçâîëÿâàò äà ïîïðàâÿòå èçáðàíèòå "
+"íàñòðîéêè çà îïðåäåëåíà ðàáîòà íà ïðèíòåðà. Ïðîñòî äîáàâåòå èñêàíèòå "
+"íàñòðîéêè êúì êîìàíäíèÿ ðåä, íàïð. \"%s <file>\".\n"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Ìîëÿ, ïîïúëíåòå èëè ïðîâåðåòå ïîëåòî ïî-äîëó"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Èñêàòå ëè äà çàïàçèòå ïðîìåíèòå â /etc/fstab"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
-msgstr "Ñòàðòèðàù ïðîòîêîë"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-äèñêîâå %s\n"
+#: ../../printer/printerdrake.pm_.c:2271
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Ïå÷àòàíå íà ïðèíòåð \"%s\""
-#: ../../services.pm:1
-#, c-format
-msgid "On boot"
-msgstr "Ïðè çàðåæäàíå"
+#: ../../printer/printerdrake.pm_.c:2272
+#, fuzzy, c-format
+msgid "Printing/Scanning on \"%s\""
+msgstr "Ïå÷àòàíå íà ïðèíòåð \"%s\""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "Ïàêåò %s å íåîáõîäèì. Äà ãî èíñòàëèðàì?"
+#: ../../printer/printerdrake.pm_.c:2274
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Ïå÷àòàíå íà ïðèíòåð \"%s\""
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:2275
#, c-format
-msgid "Bus identification"
-msgstr "Èäåíòèôèêàöèÿ íà øèíà"
+msgid "Printing on the printer \"%s\""
+msgstr "Ïå÷àòàíå íà ïðèíòåð \"%s\""
-#: ../../lang.pm:1
-#, c-format
-msgid "Vatican"
-msgstr "Âàòèêàíà"
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+msgid "Close"
+msgstr "Çàòâîðè"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please make a backup of your data first"
-msgstr "Ïúðâî ñúçäàéòå backup íà ñâîèòå äàííè"
+#: ../../printer/printerdrake.pm_.c:2281
+msgid "Print option list"
+msgstr "Ñïèñúê ñ ïðèíòåðíè îïöèè"
-#: ../../harddrake/data.pm:1
+#: ../../printer/printerdrake.pm_.c:2301
#, c-format
-msgid "ADSL adapters"
+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!"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "èìàòå ïîâå÷å îò åäèí òâúðäè äèñêîâå, êîé äà èçïîëçâàì çà èíñòàëàöèÿòà?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Eritrea"
-msgstr "Åðèòðåÿ"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot ISO"
+#: ../../printer/printerdrake.pm_.c:2322
+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/adsl.pm:1
-#, fuzzy, c-format
-msgid "Firmware needed"
-msgstr "àêî å íóæíî"
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+msgid "Reading printer data..."
+msgstr "×åòåíå íà äàííè îò ïðèíòåðà ..."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove List"
-msgstr "Èçòðèâà ñïèñúê"
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+msgid "Transfer printer configuration"
+msgstr "Ïðåíîñ íà íàñòðîéêà íà ïðèíòåð"
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
+#: ../../printer/printerdrake.pm_.c:2365
+#, fuzzy, c-format
+msgid ""
+"You can copy the printer configuration which you have done for the spooler %"
+"s to %s, your current spooler. All the configuration data (printer name, "
+"description, location, connection type, and default option settings) is "
+"overtaken, but jobs will not be transferred.\n"
+"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
+"Ìîæåòå äà êîïèðàòå íàñòðîéêèòå íà ïðèíòåðà, êîèòî ñòå èçâúðøèëè\n"
+"çà spoller %s íà %s, òåêóùèÿ spooler. Öÿëàòà èíôîðìàöèÿ çà íàñòðîéêèòå\n"
+"(èìå íå ïðèíòåð, îïèñàíèå, ìåñòîïîëîæåíèå, âèä íà âðúçêàòà è\n"
+"íàñòðîéêè ïî ïîäðàçáèðàíå) ñå ïðåçàïèñâàò, íî ðàáîòèòå íå ñå\n"
+"ïðåõâúðëÿò.\n"
+"Íå âñè÷êè îïàøêè ìîãàò äà áúäàò ïðåõâúðëåíè ïî ñëåäíèòå ïðè÷èíè:\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
-msgstr "Èíóêòèòóò"
+#: ../../printer/printerdrake.pm_.c:2368
+#, fuzzy
+msgid ""
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
+msgstr ""
+"CUPS íå ïîääúðæà ïðèíòåðè íà Novell ñúðâúðè èëè ïðèíòåðè\n"
+"èçïðàùàùè äàííè âúâ ñâîáîäíî-èçãðàäåíà êîìàíäà.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2370
+#, fuzzy
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."
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
msgstr ""
+"PDQ ïîääúðæà ñàìî ëîêàëíè ïðèíòåðè, îòäàëå÷åíè LPD ïðèíòåðè\n"
+"è Socket/TCP ïðèíòåðè.\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "Ìàðîêî"
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr "LPD è LPRng íå ïîääúðæà IPP ïðèíòåðè.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Êàêúâ ìîäåë ïðèíòåð èìàòå ?"
+#: ../../printer/printerdrake.pm_.c:2374
+#, fuzzy
+msgid ""
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
+msgstr ""
+"Êàòî äîïúëíåíèå, îïàøêèòå íå ñúçäàäåíè ñ òàçè ïðîãðàìà\n"
+"èëè \"foomatic-configure\" íå ìîãàò äà áúäàò ïðåõâúðëÿíè."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add a new printer"
-msgstr "Äîáàâè íîâ ïðèíòåð"
+#: ../../printer/printerdrake.pm_.c:2375
+#, fuzzy
+msgid ""
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
+msgstr ""
+"\n"
+"Ñúùî òàêà, ïðèíòåðè íàñòðîåíè ñ PPD ôàéëîâå ïðåäîñòàâåíè\n"
+"îò ïðîèçâîäèòåëèòå èì èëè ñ îðèãèíàëíè CUPS äðàéâåðè íå\n"
+"ìîãàò äà áúäàò ïðåõâúðëÿíè."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " All of your selected data have been "
+#: ../../printer/printerdrake.pm_.c:2376
+msgid ""
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
msgstr ""
+"\n"
+"Îòáåëåæåòå ïðèíòåðèòå, êîèòî èñêàòå äà ïðåõâúðëèòå è öúêíåòå\n"
+"\"Ïðåõâúðëè\"."
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "Íåïàë"
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
+msgstr "Íå ïðåõâúðëÿé ïðèíòåðè"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Èçòðèâà"
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
+msgstr "Ïðåõâúðëè"
-#: ../../harddrake/data.pm:1
+#: ../../printer/printerdrake.pm_.c:2392
#, c-format
-msgid "cpu # "
-msgstr "cpu # "
+msgid ""
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
+msgstr ""
+"Ïðèíòåð ñ èìå \"%s\" âå÷å ñúùåñòâóâà â %s.\n"
+"Öúêíåòå \"Ïðåõâúðëè\", çà äà ãî ïðåçàïèøåòå.\n"
+"Ìîæåòå ñúùî òàêà äà íàïèøåòå íîâî èìå èëè äà ïðîïóñíòå ïðèíòåðà."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "chunk size"
-msgstr "ãîëåìèíà íà ïàð÷åòî"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr "Èìåòî íà ïðèíòåðà òðÿáâà äà ñúäúðæà ñàìî áóêâè, ÷èñëà è ïîä÷åðòàâêà"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2405
#, 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."
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
msgstr ""
+"Ïðèíòåðúò \"%s\" âå÷å ñúùåñòâóâà,\n"
+"íàèñòèíà ëè èñêàòå äà ïðåçàïèøåòå íàñòðîéêàòà ?"
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2413
+msgid "New printer name"
+msgstr "Íîâî èìå íà ïðèíòåð"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "êîìàíäèòå ïðåäè ñòàðòèðàíå, èëè 'c' çà êîìàíäåí ðåä."
+msgid "Transferring %s..."
+msgstr "Ïðåõâúðëÿíå íà %s ..."
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Ïðîáëåìè ñ èíñòàëèðàíåòî íà ïàêåòà %s"
+#: ../../printer/printerdrake.pm_.c:2427
+#, fuzzy, c-format
+msgid ""
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
+msgstr ""
+"Ïðåõâúðëèëè ñòå ïðèíòåð ïî ïîäðàçáèðàíå (\"%s\"),\n"
+"Èñêàòå ëè äà ãî îñòàâèòå ïî ïîäðàçáèðàíå â íîâàòà\n"
+"ïðèíòåðíà ñèñòåìà %s ?"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Âèå ùå ïîëó÷èòå òðåâîãà àêî íàòîâàðâàíåòî å ïî-âèñîêî îò òàçè ñòîéíîñò"
+#: ../../printer/printerdrake.pm_.c:2437
+msgid "Refreshing printer data..."
+msgstr "Îïðåñíÿâàíå íà äàííèòå îò ïðèíòåðà ..."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+msgid "Configuration of a remote printer"
+msgstr "Íàñòðîéêà íà îòäàëå÷åí ïðèíòåð"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh"
-msgstr "Îïðåñíè"
+#: ../../printer/printerdrake.pm_.c:2446
+msgid "Starting network..."
+msgstr "Ñòàðòèðàíå ìðåæàòà ...."
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Reload partition table"
-msgstr "Ïðåçàðåäè òàáëèöàòà ñ äÿëîâåòå"
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+msgid "Configure the network now"
+msgstr "Â ìîìåíòà íàñòðîéâàì ìðåæàòà"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Äà, èñêàì autologin ñ òîâà (ïîòðåáèòåë, äåñêòîï)"
+#: ../../printer/printerdrake.pm_.c:2480
+msgid "Network functionality not configured"
+msgstr "Ôóíêöèîíàëíîñòòà íà ìðåæàòà íå å íàñòðîåíà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Selected"
-msgstr "Âúçñòàíîâÿâà èçáðàíèòå"
+#: ../../printer/printerdrake.pm_.c:2481
+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 ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
+#: ../../printer/printerdrake.pm_.c:2484
+msgid "Go on without configuring the network"
+msgstr "Ïðîäúëæè áåç íàñòîéêà íà ìðåæàòà"
+
+#: ../../printer/printerdrake.pm_.c:2518
+msgid ""
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
+#: ../../printer/printerdrake.pm_.c:2519
+#, fuzzy
+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 ""
+"Íÿìàøå äîñòúï äî ìðåæàòà è òàêúâ íå ìîæåøå äà áúäå\n"
+"óñòàíîâåí. Ìîëÿ, ïðîâåðåòå íàñòðîéêàòà è õàðäóåðà\n"
+"ñè. Òîãàâà îïèòàéòå äà íàñòðîèòå îòäàëå÷åíèÿ ïðèíòåð\n"
+"îòíîâî."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Boot"
-msgstr "Çàðåæäàíå"
+#: ../../printer/printerdrake.pm_.c:2529
+msgid "Restarting printing system..."
+msgstr "Ðåñòàðòèðàíå íà ïðèíòåðíàòà ñèñòåìà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " and the CD is in the drive"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "high"
+msgstr "âèñîêî"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Tuner type:"
-msgstr "Òèï íà òóíåð:"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "paranoid"
+msgstr "ïàðàíîè÷íî"
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:2569
#, 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"
-"\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 ""
-"Äîéäå âðåìåòî äà èçáåðåòå ñèñòåìà çà ïå÷àò çà âàøèÿ êîìïþòúð.Äðóãèòå\n"
-"îïåðàöèîííè ñèñòåìè ìîæå äà âè ïðåäëàãàò åäíà,íî íèå âè ïðåäëàãàìå äâå.\n"
-"Âñÿêà îò òÿõ å ïðèãîäåíà çà äàäåí òèï êîíôèãóðàöèÿ.\n"
-"\n"
-" * \"%s\"-- å àêðîíèì íà \"print,don't queue\"(\"ïà÷àòàé,íå ÷àêàé\"),å "
-"èäåàëíèÿò\n"
-"èçáîð,àêî èìàòå äèðåêòíà âðúçêà ñ ïðèíòåðà,èñêàòå äà ãî êîíòðîëèðàòå,èëè\n"
-"íÿìàòå ìðåæîâè ïðèíòåðè.(\"%s\" ìîæå äà ðàáîòè ñàìî â ìíîãî ïðîñòè\n"
-"ñèòóàöèè è å íÿêàê áàâåí,êîãàòî ñå ïîëçâà â ìðåæà.) Ïðåïîðú÷èòåëíî å äà \n"
-"èçïîëâàòå \"pdq\" àêî íÿìàòå îïèò ñ GNU/Linux. \n"
-" * \"%s\" - `` Common Unix Printing System``(îáè÷àéíà ñèñòåìà çà ïå÷àò çà "
-"Unix)\n"
-"å îòëè÷åí èçáîð,çà ïå÷àò êàêòî íà ñîáñòâåíèÿ âè ïðèíòåð,òàêà è íà äðóã,íà\n"
-"ïîëîâèí ñâÿò ðàçñòîÿíèå.Òÿ å ëåñíà çà êîíôèãóðèðàíå è ìîæå ðàáîòè êàòî\n"
-"êëèåíò èëè ñúðâúð íà àðõàè÷íàòà\"lpd \",êîåòî ÿ ïðàâè íàïúëíî ñúâìåñòèìà\n"
-"ñ ïî-ñòàðè îïåðàöèîííè ñèñòåìè,êîèòî ìîæå âñå îùå äà ñå íóæäàÿò îò òàçè\n"
-"óñëóãà.Âúïðåêè ÷å å äîñòà ìîùíà,îñíîâíàòà èíñòàëàöèÿ å ïî÷òè òîëêîâà \n"
-"ëåñíà,êîëêîòî è òàçè íà \"pdq\".Àêî èñêàòå äà åìóëèðàòå \"lpd\" ñúðâúð,\n"
-"óâåðåòå ñå,÷å \"cups-lpd\" äåìîíà å ïóñíàò.\"%s\" âêëþ÷âà ãðàôè÷íè \n"
-"èíòåðôåéñè çà ïðå÷àò è èçáîð íà îïöèè çà ïðèíòåðà,êàêòî è çà\n"
-"êîíôèãóðèðàíåòî ìó.\n"
-"\n"
-"Àêî ñåãà íàïðàâèòå èçáîð,à ïî-êúñíî ðàçáåðåòå,÷å íå õàðåñâàòå ñèñòåìàòà\n"
-"ñè çà ïå÷àò,ìîæåòå äà ÿ ñìåíèòå êàòî ïóñíåòå PrinterDrake îò Ìàíäðåéê \n"
-"êîíòðîëèÿ öåíòúð è öúêíåòå íà \"åêñïåðò\"."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
-msgstr "\"Menu\" êëàâèø"
+msgid "Installing a printing system in the %s security level"
+msgstr "Èíñòàëèðàíå íà ïðèíòåðíàòà ñèñòåìà â %s íèâî íà ñèãóðíîñò"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2570
#, 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"
-"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."
+"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Administrator:"
-msgstr "Àäìèíèñòðàòîð ïî çàùèòà:"
+#: ../../printer/printerdrake.pm_.c:2604
+msgid "Starting the printing system at boot time"
+msgstr "Ñòàðòèðàíå íà ïðèíòåðíàòà ñèñòåìà ïðè ñòàðòèðàíå"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2605
#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
+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 ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
+msgstr "Ïðîâåðêà íà èíñòàëèðàíèÿ ñîôòóåð..."
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid ""
-"You can't use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2630
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "Èçòðèâàíå íà %s"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2636
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "Èíñòàëèðàíå íà ïàêåòè ..."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Íÿìàòå Internet âðúçêà.\n"
-"Ñúçäàéòå òàêàâà, êàòî öúêíåòå íà 'Íàñòðîé'"
+#: ../../printer/printerdrake.pm_.c:2685
+msgid "Select Printer Spooler"
+msgstr "Èçáåðåòå ïðèíòåðåí spooler"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Fonts copy"
-msgstr "Êîïèðà øðèôòîâå"
+#: ../../printer/printerdrake.pm_.c:2686
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Êîÿ ïðèíòåðíà ñèñòåìà (spooler) èçêàòå äà èçïîëçâàòå ?"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
-msgstr "Àâòîìàòèçèðàí"
+#: ../../printer/printerdrake.pm_.c:2720
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
+msgstr "Íàñòðîéêà íà ïðèíòåðà \"%s\" ..."
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Èñêàòå ëè äà òåñòâàòå íàñòðîéêèòå?"
+#: ../../printer/printerdrake.pm_.c:2731
+#, fuzzy
+msgid "Installing Foomatic..."
+msgstr "Èíñòàëèðàíå íà ïàêåòè ..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
-msgstr "Ïðèíòåðúò \"%s\" áåøå óñïåøíî ïðåìàõíàò îò ffice/OpenOffice.org/GIMP."
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr "Îïöèè íà ïðèíòåðà"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save packages selection"
-msgstr "Çàïàçè èçáîð íà ïàêåòè"
+#: ../../printer/printerdrake.pm_.c:2810
+#, fuzzy
+msgid "Preparing Printerdrake..."
+msgstr "Ïîäãîòâÿíå íà PinterDrake ..."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Actions"
-msgstr "/_Äåéñòâèÿ"
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+#, fuzzy
+msgid "Configuring applications..."
+msgstr "Íàñòðîéêà íà ïðèíòåðà \"%s\" ..."
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Remove the last item"
-msgstr "Èçòðèâà ïîñëåäíèÿò îáåêò"
+#: ../../printer/printerdrake.pm_.c:2845
+msgid "Would you like to configure printing?"
+msgstr "Èñêàòå ëè äà íàñòðîèòå ïå÷àòà ?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
+msgstr "Ïå÷àòíà ñèñòåìà: "
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
+#: ../../printer/printerdrake.pm_.c:2915
+#, fuzzy
+msgid ""
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
+"Ñëåäíèòå ïðèíòåðè ñà íàñòðîåíè.\n"
+"Öúêíåòå íà åäèí îò òÿõ, çà äà ãî ðåäàêòèðàòå\n"
+"èëè çà äà ïîëó÷èòå èíôîðìàöèÿ çà íåãî, èëè\n"
+"âúðõó \"Äîáàâè Ïðèíòåð\", çà äà äîáàâèòå íîâ ïðèíòåð."
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "èçïîëçâàé PPPTP"
+#: ../../printer/printerdrake.pm_.c:2916
+#, fuzzy
+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 ""
+"Ñëåäíèòå ïðèíòåðè ñà íàñòðîåíè.\n"
+"Öúêíåòå íà åäèí îò òÿõ, çà äà ãî ðåäàêòèðàòå\n"
+"èëè çà äà ïîëó÷èòå èíôîðìàöèÿ çà íåãî, èëè\n"
+"âúðõó \"Äîáàâè Ïðèíòåð\", çà äà äîáàâèòå íîâ ïðèíòåð."
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Èçáèðà óñëóãèòå, êîèòî òðÿáâà äà ñå ïóñíàò ïðè ïóñêàíå íà ìàøèíàòà"
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check files/directories writable by everybody"
-msgstr "Ïðîâåðÿâà ôàéëîâåòå/äèðåêòîðèèòå äîñòúïíè çà ïèñàíå îò âñåêè."
+#: ../../printer/printerdrake.pm_.c:2960
+#, fuzzy
+msgid "Change the printing system"
+msgstr "Íàñòîéêà íà ìðåæàòà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Íàó÷åòå êàê äà èçïîçëâàòå òîçè ïðèíòåð"
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+msgid "Normal Mode"
+msgstr "Íîðìàëåí ðåæèì"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configure the network now"
-msgstr "Â ìîìåíòà íàñòðîéâàì ìðåæàòà"
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+msgid "Do you want to configure another printer?"
+msgstr "Èñêàòå ëè äà íàñòðîèòå äðóã ïðèíòåð ?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Èçáåðåòå îãëåäàëåí ñúðâúð,îò êîéòî äà ïîëó÷èòå ïàêåòèòå"
+#: ../../printer/printerdrake.pm_.c:3211
+msgid "Modify printer configuration"
+msgstr "Ïîïðàâè íàñòðîéêèòå íà ïðèíòåð"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:3213
+#, fuzzy, c-format
msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
-"Íå âúçìîæíîñò çà ðàáîòà ñ âàøèÿ FAT äÿë, \n"
-"ïîðàäè ïîëó÷åíàòà ãðåøêà: %s"
+"Ïðèíòåð %s: %s %s\n"
+"Êàêâî èñêàòå äà ïîïðàâèòå ïî òîçè ïðèíòåð ?"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Size: "
-msgstr "Ðàçìåð: "
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
+msgstr "Äàâàé !"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "Íà êîé ñåêòîð èñêàòå äà ãî ïðåìåñòèòå?"
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+msgid "Printer connection type"
+msgstr "Òèï íà âðúçêàòà êúì ïðèíòåðà"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahamas"
-msgstr "Áàõàìè"
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+msgid "Printer name, description, location"
+msgstr "Èìå íà ïðèíòåðà, îïèñàíèå, ìåñòîïîëîæåíèå"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Do you want to click on this button?"
-msgstr "Èñêàòå ëè äà öúêíåòå íà òîçè áóòîí?"
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
+msgstr "Ïðîèçâîäèòåë íà ïðèíòåðà, ìîäåë, äðàéâåð"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Manual configuration"
-msgstr "Ðú÷íà íàñòðîéêà"
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
+msgstr "Ïðîèçâîäèòåë íà ïðèíòåðà, ìîäåë"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "search"
-msgstr "òúðñè"
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
+msgstr "Îïðåäåëè òîçè ïðèíòåð çà ïîëçâàíå ïî ïîäðàçáèðàíå"
-#: ../../services.pm:1
-#, 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."
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-"Òîçè ïàêåò çàðåæäà ìàðêèðàíàòà êëàâèàòóðíà íàðåäáà â /etc/sysconfig/"
-"keyboard.\n"
-"Òÿ ìîæå äà áúäå èçáðàíà ñ èíñòðóìåíòà kbdconfig. Òðÿáâà äà îñòàâèòå "
-"òîâàâêëþ÷åíî çà ïîâå÷åòî ìàøèíè."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (èíñòàëàöèÿ ãðàôè÷åí äðàéâåð)"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf host name must not contain a ."
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr "Ïîçâîëÿâà/Çàáðàíÿâà icmp echo."
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+msgid "Print test pages"
+msgstr "Îòïå÷àòâàíå íà òåñòîâè ñòðàíèöè"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Syslog is the facility by which many daemons use to log messages\n"
-"to various system log files. It is a good idea to always run syslog."
-msgstr ""
-"Syslog å ïðîãðàìà êîÿòî ìíîãî äåìîíè èçïîëçâàò äà çàïàçâàò ñúîáùåíèÿ â\n"
-"ðàçëè÷íè ñèñòåìíè ôàéëîâå (ëîãîâå). Äîáðå å ïîñòîÿííî äà ÿ èìàòå ðàáîòåùà."
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+#, fuzzy
+msgid "Know how to use this printer"
+msgstr "Èñêàòå ëè äà íàñòðîèòå äðóã ïðèíòåð ?"
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown/Others"
-msgstr "Íåèçâåñòíè/Äðóãè"
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+msgid "Remove printer"
+msgstr "Ïðåìàõâàíå íà ïðèíòåðà"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:3282
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
+msgstr "Èçòðèâàíå íà ñòàð ïðèíòåð \"%s\" ..."
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Options"
-msgstr "Îïöèè"
+#: ../../printer/printerdrake.pm_.c:3307
+msgid "Default printer"
+msgstr "Ïðèíòåð ïî ïîäðàçáèðàíå"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3308
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Ïðèíòåðúò \"%s\" âå÷å å îïðåäåëåí çà ïîëçâàíå ïî ïîäðàçáèðàíå."
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr "Ïîêîëåíèå íà ïðîöåñîðà (íàïð: 8 çà PentiumIII, ...)"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3312
#, c-format
-msgid "Auto-detected"
-msgstr "Àâòîìàòè÷íî çàñå÷åí"
-
-#: ../../standalone/drakpxe:1
-#, fuzzy, 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)."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Íà ïúò ñòå äà íàñòðîèòå êîìïþòúðà ñè òàêà, ÷å äà ïîäåëÿ Èíòåðíåò âðúçêàòà\n"
-"ñè. Ñ òàçè âúçìîæíîñò, äðóãè êîìïþòðè â ëîêàëíàòà âè ìðåæà ùå ìîãàò äà\n"
-"èçïîëçâàò Èíòåðíåò âðúçêàòà íà òîçè êîìïþòúð.\n"
-"\n"
-"Îòáåëåæåòå: òðÿáâà âè îòäåëåí çà òîâà ìðåæîâ àäàïòåð, çà äà óñòàíîâèòå "
-"âúòðåøíàòà ñè ìðåæà (LAN)."
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm_.c:3313
#, 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 "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, 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"
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-"Íÿìà ñâîáîäíî ìÿñòî çà 1 ÌÁ ñòàðòèðàùî ïîëå ! Èíñòàëàöèÿòà ùå ïðîäúëæè, íî, "
-"çà äà ñòàðòèðàòå ñèñòåìàòà ñè, ùå òðÿáâà äà ñúçäàäåòå ñòàðòèðàùî ïîëå â "
-"DiskDrake"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3317
#, c-format
msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
-msgstr ""
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
-msgstr "Îòêàæè"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-"HardDrake ïðàâè ïðîáè íà õàðäóåðà, è åâåíòóàëíî íàñòðîéâà\n"
-"íîâ/ïðîìåíåí õàðäóåð."
-#: ../../fs.pm:1
+#: ../../printer/printerdrake.pm_.c:3325
#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Ñúçäàâàíå è ôîðìàòèðàíå íà ôàéë %s"
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Íàèñòèíà ëè èñêàòå äà ïðåìàõíåòå ïðèíòåðà \"%s\" ?"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:3329
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
+msgstr "Èçòðèâàíå íà ïðèíòåðà \"%s\" ..."
-#: ../../printer/printerdrake.pm:1
+#: ../../raid.pm_.c:35
#, 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"
-msgstr ""
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "Íå ìîãà äà ïðèáàâÿ äÿë êúì _ôîðìàòèðàí_ RAID md%d"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "Èçáåðåòå ñúùåñòâóâàù LVM çà ïðèáàâÿíå"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
+msgstr "mkraid ïðîïàäíà"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "xfs restart"
-msgstr "xfs ðåñòàðòèðà"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid ïðîïàäíà (ìîæå áè raidtools ëèïñâàò ?)"
-#: ../../printer/printerdrake.pm:1
+#: ../../raid.pm_.c:153
#, c-format
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "Íÿìà äîñòàòú÷íî äÿëîâå çà RAID íèâî %d\n"
+
+#: ../../security/main.pm_.c:36
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
+"\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
+"\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\n"
+"\n"
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
+"\n"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
-"Ïðèíòåðúò \"%s\" âå÷å ñúùåñòâóâà,\n"
-"íàèñòèíà ëè èñêàòå äà ïðåçàïèøåòå íàñòðîéêàòà ?"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr ""
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Íèâî íà ñèãóðíîñò"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
-msgstr ""
+#: ../../security/main.pm_.c:77
+#, fuzzy, c-format
+msgid " (default value: %s)"
+msgstr " (Ïî ïîäðàçáèðàíå)"
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "íÿìà äÿëîâå íà ðàçïîëîæåíèå"
+#: ../../security/main.pm_.c:113
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Íèâî íà ñèãóðíîñò"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Printer Management \n"
-msgstr "Ðàáîòà ñúñ ñìåòêè \n"
+#: ../../security/main.pm_.c:115
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Îòäàëå÷åíà àäìèíèñòðàöèÿ"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Domain Name Resolver"
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "Network Options"
+msgstr "Îïöèè íà ìîäóëà:"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
-msgstr "Êëþ÷ çà êðèïòèðàíå (îòíîâî)"
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "System Options"
+msgstr "Îïöèè íà ìîäóëà:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Ëèïñâà èìå íà SAMBA share !"
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detection in progress"
-msgstr "Îòêðèâàíå â ïðîãðåñ"
+#: ../../security/main.pm_.c:191
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Èçáåðåòå íèâî íà ñèãóðíîñò"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Ïîñòðîÿâà öÿëîòî ÿäðî -->"
+#: ../../security/main.pm_.c:197
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Ìîëÿ, èç÷àêàéòå, ïîäãîòâÿíå íà èíñòàëàöèÿòà"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "modem"
-msgstr "ìîäåì"
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr "Ïóñíè ALSA (Advanced Linux Sound Architecture) çâóêîâàòà ñèñòåìà"
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "Äîáðå äîøëè â %s"
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
+msgstr "Anacrton - ïåðèîäè÷íî èçïúëíÿâàíå íà êîìàíäè ïî ðàçïèñàíèå."
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../services.pm_.c:21
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"
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
+"apmd ñå èçïîëçâà çà íàáëþäåíèå íà áàòåðèÿòà è çàïèñâàéêè ñòàòóñà ÷ðåç\n"
+"syslog. Ìîæå ñúùî äà ñå èçïîëçâà çà ñïèðàíå íà ìàøèíàòà, êîãàòî áàòåðèÿòà å "
+"èçòîùåíà."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Ñëîæåòå äèñêåòà çà îáíîâÿâàíå íà ìîäóëè â óñòðîéñòâî %s"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
+#: ../../services.pm_.c:23
+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 ""
+"Ïóñêà êîìàíäè ïî ðàçïèñàíèå âúâ âðåìå îïðåäåëåíî îò êîìàíäàòà at è ïóñêà\n"
+"íàáîð îò äðóãè, êîãàòî íàòîâàðåíîñòòà ñïàäíå äîñòàòú÷íî."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:25
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
+"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 ""
-"Ñëåäíèÿò ïðèíòåð\n"
-"\n"
-"%s%s\n"
-"å äèðåêòíî ñâúðçàí êúì âàøàòà ñèñòåìà"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Ïðèíòåð ïîäåëåí íà õñîòîâå/ìðåæè: "
+"cron å ñòàíäàðòíà UNIX ïðîãðàìà, êîÿòî ïåðèîäè÷íî ïóñêà îïðåäåëåíè ïðîãðàìè\n"
+"ïî ðàçïèñàíèå. vixie cron äîáàâÿ ìíîæåñòâî ïðåèìóùåñòâà íàä òåçè íà ïðîñòèÿ\n"
+"UNIX cron, âêëþ÷èòåëíî ïî-äîáðà ñèãóðíîñò è ìîùíè íàñòðîéâàùè îïöèè."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:28
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>\". "
+"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 ""
-"\n"
-"Êîìàíäàòà \"%s\" ñúùî òàêà âè ïîçâîëÿâà äà ïîïðàâèòå íàñòðîéêèòå íà îïöèèòå "
-"çà îïðåäåëåíà ðàáîòà íà ïðèíòåðà. Ïðîñòî äîáàâåòå öåëàíèòå íàñòðîéêè êúì "
-"êîìàíäíèÿ ðåä, íàïð. \"%s <file>\". "
+"GPM äîáàâÿ ïîääðúæêà íà ìèøêà â òåêñòîâî-áàçèðàíèòå Linux ïðèëîæåíèÿ êàòî\n"
+"Midnight Commander. Ñúùî òàêà ïîçâîëÿâà áàçèðàíèòå íà ìèøêà êîíçîëè\n"
+"ðåæè-è-ëåïè îïåðàöèè, è âêëþ÷âà ïîääðúæêà íà èçêà÷àùè ìåíþòà íà êîçîëàòà."
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "DrakClock"
+#: ../../services.pm_.c:31
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
msgstr ""
+"HardDrake ïðàâè ïðîáè íà õàðäóåðà, è åâåíòóàëíî íàñòðîéâà\n"
+"íîâ/ïðîìåíåí õàðäóåð."
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:33
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."
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
-" íÿêîè ñëó÷àè, %s äðàéâåðúò ñå íóæäàå îò äîïúëíèòåëíà èíôîðìàöèÿ, çà\n"
-"äà ðàáîòè êîðåêòíî, âúïðåêè ÷å íîðìàëíî ðàáîòè è áåç íåÿ. Æåëàåòå ëè "
-"äàïîäàäåòå\n"
-"äîïúëíèòåëíè îïöèè çà íåãî èëè äà ðàçðåøèòå íà äðàéâåðà äà ïîòúðñè "
-"èíôîðìàöèÿòà\n"
-"îò êîÿòî ñå íóæäàå ? Ïî ïðèíöèï òîâà ìîæå äà çàáèå êîìïþòúðà âè, íî íÿìà äà "
-"ãî ïîâðåäè."
+"Apache å World Wide Web (WWW) ñúðâúð. Òîé ñëóæè äà îáðàáîòâà íà HTML "
+"ôàéëîâå\n"
+"è CGI."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
+#: ../../services.pm_.c:34
+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 ""
+"Internet superserver daemon (÷åñòî íàðè÷àí inetd) ïóñêà ðàçëè÷íè äðóãè\n"
+"Èíòåðíåò óñëóãè. Òîé îòãîâàðÿ çà ïóñêàíåòî íà ìíîãî óñëóãè îò ðîäà íà\n"
+"telnet, ftp, rsh è rlogin. Èçêëþ÷âàíåòî íà inetd èçêëþ÷âà âñè÷êè óñëóãè,\n"
+"çà êîèòî îòãîâàðÿ."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:38
msgid ""
-"\n"
-"- Daemon, %s via:\n"
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
msgstr ""
+"Âêëþ÷è ôèëòðèðàíåòî íà ïàêåòè çà Linux ÿäðà ñåðèÿ 2.2, çà\n"
+"íàñòðîêà íà çàùèòíàòà ñòåíà, s cel çàùèòàâà íà ìàøèíàòà âè îò\n"
+"ìðåæîâè àòàêè."
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "Êóáà"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "October"
-msgstr "Îêòîìâðè"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belize"
-msgstr "Áåëèç"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Òúðñè çà íîâè ïðèíòåðè..."
+#: ../../services.pm_.c:40
+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 ""
+"Òîçè ïàêåò çàðåæäà ìàðêèðàíàòà êëàâèàòóðíà íàðåäáà â /etc/sysconfig/"
+"keyboard.\n"
+"Òÿ ìîæå äà áúäå èçáðàíà ñ èíñòðóìåíòà kbdconfig. Òðÿáâà äà îñòàâèòå "
+"òîâàâêëþ÷åíî çà ïîâå÷åòî ìàøèíè."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
+#: ../../services.pm_.c:43
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
msgstr ""
+"Àâòîìàòè÷íî ðåãåíåðèðàíå íà header-èòå íà àäðîòî, â /boot çà\n"
+"/usr/include/linux/{autoconf,version}.h"
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
-msgstr "Èç÷àêâàíå çà ñòàðòèðàíå íà ÿäðîòî"
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr "Àâòîìàòè÷íî çàñè÷àíå è íàñòðîéêà íà õàðäóåðà ïðè ñòàðòèðàíå."
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../services.pm_.c:46
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."
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
msgstr ""
-"Êàðòàòà âè ìîæå äà èìà ïîääðúæêà íà õàðäóåðíî 3D óñêîðåíèå, íî ñàìî ñ Xfree %"
-"s.\n"
-"Êàðòàòà âè ñå ïîääúðæà îò XFree %s, êîéòî ìîæå äà èìà ïî-äîáðà ïîääðúæêà íà "
-"2D."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Activate/Disable daily security check."
-msgstr "Ðàçðåøàâà/Çàáðàíÿâà åæåäíåâíà ïðîâåðêà çà çàùèòà"
+"Linuxconf ïîíÿêîãà óðåæäà èçâúðøâàíåòî íà ðàçëè÷íè çàäà÷è\n"
+"ïðè ñòàðòèðàíå çà ïîääðúæêà íà ñèñòåìíàòà íàñòðîéêà."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CD-R.\n"
+#: ../../services.pm_.c:48
+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 ""
+"lpd å äåìîíà çà ïå÷àò íåîáõîäèì íà lpr äà ðàáîòè íîðìàëíî. Òîé ïðîñòî å\n"
+"ñúðâúð, êîéòî îïðåäåëÿ ðàáîòèòå çà ïå÷àò íà ïðèíòåð(à/èòå)."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
+#: ../../services.pm_.c:50
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
msgstr ""
+"Linux Virtual Server ñå èçïîëçâà çà èçãðàæäàíå íà âèñîêîïðîèçâîäèòåëåí\n"
+"è äîáðå äîñòúïåí ñúðâúð."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Ïîìîùíèêúò çà ðàçäåëèíå íà äÿëîâå íà DrakX íàìåðè ñëåäíèòå ðåøåíèÿ:"
+#: ../../services.pm_.c:52
+#, fuzzy
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
+msgstr ""
+"named (BIND) å Domain Name Server (DNS), êîéòî ñå èçïîëçâà äà ïðåâúðíå\n"
+"èìåòî íà õîñòà äî IP àäðåñ."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "Óíãàðñêà"
+#: ../../services.pm_.c:53
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
+msgstr ""
+"Ìîíòèðà è äåìîíòèðà âñÿêàêâè Network File System (NFS), SMB (LAN\n"
+"Manager/Windows), è NCP (NetWare)."
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../services.pm_.c:55
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
-"Ïîñî÷åòå äîñòàâ÷èêà ñè.\n"
-" Àêî íå å â ñïèñúêà, èçáåðåòå Unlisted"
+"Àêòèâèðà/äåàêòèâèðà âñè÷êè ìðåæîâè èíòåðôåéñè, íàñòðîåíè äà ñå ïóñêàò\n"
+"ïðè ñòàðòèðàíå íà ìàøèíàòà."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Àâòîìàòè÷íà ñèíõðîíèçàöèÿ íà âðåìåòî (èçïîëçâà NTP)"
+#: ../../services.pm_.c:57
+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 ""
+"NFS å ïîïóëÿðåí ïðîòîêîë çà îáìåí íà ôàéëîâå ïî TCP/IP ìðåæè.\n"
+"Òàçè óñëóãà îñèãóðÿâà ôóíêöèîíàëíîñòòà íà NFS ñúðâúðà, êîéòî ñå íàñòðîéâà\n"
+"÷ðåç ôàéëà /etc/exports."
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid "Use my Windows partition"
-msgstr "Èç÷èñëÿâàì ãðàíèöèòå íà Windows ôàéëîâàòà ñèñòåìà"
+#: ../../services.pm_.c:60
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
+msgstr ""
+"NFS å ïîïóëÿðåí ïðîòîêîë çà îáìåí íà ôàéëîâå ïî TCP/IP ìðåæè.\n"
+"Òàçè óñëóãà îñèãóðÿâà ôóíêöèîíàëíîñòòà íà çàêëþ÷âàíåòî íà NFS ôàéëîâåòå."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
-msgstr "8 ÌÁ"
+#: ../../services.pm_.c:62
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+"Àâòîìàòè÷íî âêëþ÷âàíå íà numlock êëàâèøà ïîä êîíçîëà è\n"
+"XFree ïðè ñòàðòèòàíå."
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Server"
-msgstr "LDAP ñúðâúð"
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr "Ïîääðúæêà íà OKI 4w è ñúâìåñòèìè win-ïðèíòåðè."
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:65
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 "
@@ -12505,411 +9434,433 @@ msgstr ""
"laptop-è. Òîâà íÿìà äà ñå ñòàðòèðà ïðåäè äà áúäå íàñòðîåí, òàêà ÷å å\n"
"ïî-äîáðå äà ÿ èìàòå èíñòàëèðàíà íà ìàøèíè, êîèòî íå ñå íóæäàÿò îò íåÿ."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Choose your country"
-msgstr "Èçáåðåòå ñòðàíàòà ñè"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:68
msgid ""
-"\n"
-"- System Files:\n"
+"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 ""
-"\n"
-"- Ñèñòåìíè ôàéëîâå:\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
-msgstr "Ñàìîñòîÿòåëíè èíñòðóìåíòè"
+"portmapper ñå ñïðàâÿ ñ RPC âðúçêè, êîèòî ñå èçïîëçâàò îò ïðîòîêîëè êàòî\n"
+"NFS è NIS. portmap ñúðâúðà òðÿáâà äà å ïóñíàò íà ìàøèíè, êîèòî ðàáîòÿò êàòî\n"
+"ñúðâúð çà ïðîòîêîëè, êîèòî ñå íóæäàÿò äà èçïîëçâàò RPC ìåõàíèçúì."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Where"
-msgstr "Êúäå"
+#: ../../services.pm_.c:71
+#, fuzzy
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
+msgstr ""
+"Postfix å Main Transport Agent (MTA), êîéòî å ïðîãðàìà êîÿòî ïðåíàñÿ\n"
+"ïîøà îò ìàøèíà íà ìàøèíà."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "but not matching"
-msgstr "íî íå ñúâïàäà"
+#: ../../services.pm_.c:72
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
+"Çàïàçâà è âúçñòàíîâÿòà ïîòîêà íà ñèñòåìíà åíòðîïèÿ çà ïî-ãîëÿìî êà÷åñòâî\n"
+"íà ïðîèçâîëíî ãåíåðèðàíå íà ÷èñëà."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../services.pm_.c:74
msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
msgstr ""
-"Òóê ìîæå äà èçáåðåòå àëòåðíàòèâåí äðàéâåð (OSS èëè ALSA) çà âàøàòà çâóêîâà "
-"êàðòà (%s)."
+"Ñâúðæè ÷èñòè äðàéâåðè ñ áëîêîâè óñòðîéñòâà (êàòî äÿëîâå\n"
+"íà òâúðäèÿ äèñê), çà óïîòðåáÿòà îò ïðèëîæåíèÿ êàòî Oracle"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Íàñòðîéêà íà PCMCIA êàðòèòå ..."
+#: ../../services.pm_.c:76
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
+msgstr ""
+"touted äåìîíà ïîçâîëÿâà òàáëèöà çà IP ðóòèðàíå àâòîìàòè÷íî îáíîâÿâàíà ÷ðåç\n"
+"RIP ïðîòîêîëà. Äîêàòî RIP å øèðîêî èçïîëçâàíà çà ìàëêè ìðåæè, çà ïî-ñëîæíè\n"
+"ïðîòîêîëè çà ðóòèðàíå ñà íóæíè çà ñëîæíè ìðåæè. "
-#: ../../common.pm:1
-#, c-format
-msgid "kdesu missing"
-msgstr "ëèïñâà kdesu"
+#: ../../services.pm_.c:79
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
+msgstr ""
+"rstat ïðîòîêîëà ïîçâîëÿâà íà ìðåæîâèòå ïîòðåáèòåëè äà èçâëè÷àò\n"
+"ïàðàìåòðèòå íà âúçìîæíîñòèòå çà âñÿêà ìàøèíà íà ìðåæàòà."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
msgstr ""
+"rusers ïðîòîêîëà ïîçâîëÿâà íà ìðåæîâèòå ïîòðåáèòåëè äà ïðîâåðÿâàò êîé å\n"
+"âëÿçúë íà äðóãà îòãîâàðÿùàòà ìàøèíà."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
-msgstr "Êëþ÷ çà êðèïòèðàíå"
+#: ../../services.pm_.c:83
+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 ""
+"rwho ïðîòîêîëà ïîçâîëÿâà íà îòäàëå÷åíè ïîòðåáèòåëè äà ñå ñäîáèÿò ñúñ ñïèñúê\n"
+"íà âñè÷êè ïîòðåáèòåëè âëåçëè íà ìàøèíà ñ ðàáîòåù rwho äåìîí (ïîäîáåí íà "
+"finger)."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
+msgstr "Ïóñíêàíå çâóêîâàòà ñèñòåìà íà ìàøèíàòà âè"
-#: ../../keyboard.pm:1
-#, c-format
+#: ../../services.pm_.c:86
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."
+"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 ""
+"Syslog å ïðîãðàìà êîÿòî ìíîãî äåìîíè èçïîëçâàò äà çàïàçâàò ñúîáùåíèÿ â\n"
+"ðàçëè÷íè ñèñòåìíè ôàéëîâå (ëîãîâå). Äîáðå å ïîñòîÿííî äà ÿ èìàòå ðàáîòåùà."
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "Êîëåäíè Îñòðîâè"
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr "Çàðåæäàíå äðàéâåðè çà âàøèòå USB óñòðîéñòâà."
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Automatic"
-msgstr "Àâòîìàòè÷åí IP àäðåñ"
+#: ../../services.pm_.c:89
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+msgstr "Ñòàðòèðà X Font Server (òîâà å çàäúëæèòåëíî, çà äà òðúãíå XFree)."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Èíñòàëàöèÿòà íà bootloader ïðîâàëåíà. Ïîÿâè ñå ñëåäíàòà ãðåøêà:"
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Èçáèðà óñëóãèòå, êîèòî òðÿáâà äà ñå ïóñíàò ïðè ïóñêàíå íà ìàøèíàòà"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "EIDE/SCSI êàíàë"
+#: ../../services.pm_.c:127
+msgid "Printing"
+msgstr "Ïå÷àòàíå"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Îïðåäåëè òîçè ïðèíòåð çà ïîëçâàíå ïî ïîäðàçáèðàíå"
+#: ../../services.pm_.c:128
+msgid "Internet"
+msgstr "Èíòåðíåò"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Âñè÷êî ïðàâèëíî ëè å ?"
+#: ../../services.pm_.c:131
+msgid "File sharing"
+msgstr "Ïîäåëÿíå íà ôàéëîâå"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "äÿë %s"
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+msgid "System"
+msgstr "Ñèñòåìà"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Paranoid"
-msgstr "Ïàðàíîè÷íî"
+#: ../../services.pm_.c:138
+msgid "Remote Administration"
+msgstr "Îòäàëå÷åíà àäìèíèñòðàöèÿ"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS"
-msgstr "NIS"
+#: ../../services.pm_.c:146
+msgid "Database Server"
+msgstr "Ñúðâúð Áàçè-äàííè"
-#: ../../standalone/drakTermServ:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "<-- Del User"
-msgstr "<-- Èçòðèâà ïîòðåáèòåë"
+msgid "Services: %d activated for %d registered"
+msgstr "Óñëóãè: %d àêòèâèðàíè îò %d ðåãèñòðèðàíè"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Location on the bus"
-msgstr ""
+#: ../../services.pm_.c:191
+msgid "Services"
+msgstr "Óñëóãè"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No printer found!"
-msgstr "Íÿìà íàìåðåí ïðèíòåð!"
+#: ../../services.pm_.c:203
+msgid "running"
+msgstr "ñòàðòèðàíå"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
-msgstr "èìåòî íà ïðîèçâîäèòåëÿ íà óñòðîéñòâîòî"
+#: ../../services.pm_.c:203
+msgid "stopped"
+msgstr "ñïðÿíà"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Erase entire disk"
-msgstr "Èçòðèé öåëèÿ äèñê"
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
+msgstr "Óñëóèãè è äåìîíè"
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Default)"
-msgstr " (Ïî ïîäðàçáèðàíå)"
+#: ../../services.pm_.c:222
+msgid ""
+"No additional information\n"
+"about this service, sorry."
+msgstr ""
+"Íÿìà äîïúëíèòåëíà èíôîðìàöèÿ\n"
+"çà òàçè óñëóãà, ñúæåëÿâàì."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Automatic reconfiguration"
-msgstr "Àâòîìàòè÷íà ðåêîíôèãóðàöèÿ"
+#: ../../services.pm_.c:229
+msgid "On boot"
+msgstr "Ïðè çàðåæäàíå"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Receiving Speed:"
-msgstr "Ñêîðîñò íà ïîëó÷àâàíå:"
+#: ../../services.pm_.c:241
+#, fuzzy
+msgid "Start"
+msgstr "Ñúñòîÿíèå"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
-msgstr "Òþðê è Êàéêîñ Îñòðîâè"
+#: ../../services.pm_.c:241
+#, fuzzy
+msgid "Stop"
+msgstr "Ñåêòîð"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Ip"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../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
-#, c-format
-msgid "<- Previous"
-msgstr "<- Ïðåäèøåí"
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Transfer Now"
-msgstr "Ïðåõâúðëÿ ñåãà"
+#: ../../share/advertising/01-thanks.pl_.c:11
+msgid ""
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password and network authentication methods"
+#: ../../share/advertising/02-community.pl_.c:9
+#, fuzzy
+msgid "Get involved in the Free Software world"
+msgstr "Ïðîòîêîë çà îñòàíàëèÿ ñâÿò"
+
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
msgstr ""
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "Ïðåâêëþ÷âàíå ìåæäó íîðìàëíî è ñîðòèðàíå ïî ãðóïè"
+#: ../../share/advertising/02-community.pl_.c:11
+msgid ""
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Themes"
-msgstr "Òåìè"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Ñâúðæè ñå êúì Èíòåðíåò"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "Îïöèè: %s"
+#: ../../share/advertising/03-internet.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-"Â ìîìåíòà èçïîëçâàòå %s êàòî ïðîãðàìà çà ñòàðòèðàíå.\n"
-"Öúêíåòå íà Íàñòðîéêà, çà äà ñòàðòèðàòå óñòàíîâÿâàùèÿ ìàãüîñíèê."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "Íàñòðîéêè íà OKI Winprinter"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Èãðè"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
-msgstr "Ñâåòà Åëåíà"
+#: ../../share/advertising/05-games.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
+msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Parallel port #%s"
-msgstr " íà ïàðàëåëåí ïîðò #%s"
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+#, fuzzy
+msgid "Mandrake Control Center"
+msgstr "Êîíòðîëåí öåíòúð"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Security Level"
-msgstr "Íèâî íà çàùèòà"
+#: ../../share/advertising/06-mcc.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../share/advertising/07-desktop.pl_.c:9
+#, fuzzy
+msgid "User interfaces"
+msgstr "Ìðåæîâ èíòåðôåéñ"
+
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
-"Íÿêîè åòàïè íå ñà çàâúðøåíè.\n"
-"\n"
-"Íàèñòèíà ëè èñêàòå äà èçëåçåòå ñåãà ?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "Ñóäàí"
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Ðàçðàáîòêà"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "Ïîëñêà (QWERTZ íàðåäáà)"
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
-msgstr "Ñèðèÿ"
+#: ../../share/advertising/08-development.pl_.c:11
+msgid ""
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
+
+#: ../../share/advertising/09-server.pl_.c:10
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?"
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
-"Äàëè âàøèÿò ïðèíòåð å ìíîãîôóíêöèîíàëíî óñòðîéñòâî îò HP èëè Sony "
-"(OfficeJet, PSC, LaserJet 1100/1200/1220/3200/3300 ñúñ ñêåíåð, DeskJet 450, "
-"Sony IJP-V100), HP PhotoSmart èëè HP LaserJet 2200?"
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
-#, c-format
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:10
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"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-"Äîáðå äîøëè â %s - èçáèðàíå íà îïåðàöèîííà ñèñòåìà!\n"
-"\n"
-"Èçáåðåòå îïåðàöèîííàòà ñèñòåìà îò ãîðíèÿò ñïèñúê èëè èç÷àêàéòå\n"
-"%d ñåêóíäè çà ïîäðàçáèðàùî ñòàðòèðàíå.\n"
-"\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "Ïîðòóãàëñêà"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
-msgstr "Èìå íà loopback ôàéëà: "
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "DNS ñúðâúðà òðÿáâà äà áúäå âúâ ôîðìàò 1.2.3.4"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Control key"
-msgstr "Ëÿâ êëàâèø Ctrl"
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
-msgstr "Ñðúáèÿ"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Newzealand"
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
-msgstr "Òàçè äèðåêòîðèÿ òðÿáâà äà îñòàíå â ðàìêèòå íà root ôàéëîâàòà ñèñòåìà."
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
+msgid ""
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
-msgstr "CapsLock êëàâèø"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "Èíñòàëèðàíå íà bootloader"
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Èçáåðåòå êàïàöèòåò íà ïàìåòòà íà ãðàôè÷íàòà ñè êàðòà"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "Åêñïåðòíà"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
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))."
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
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."
+"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 ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
-msgstr "Ïóë ñ äèíàìè÷åí IP àäðåñ:"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Åêñïåðòíà"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "LVM èìå ?"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Íàìåðåíè ñà %s %s èíòåðôåéñè"
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Install"
-msgstr "Ñëåä èíñòàëèðàíå"
+#: ../../share/advertising/17-mdkclub.pl_.c:10
+msgid ""
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The internal domain name"
-msgstr "Âúòðåøíî èìå íà äîìåéí"
+#: ../../standalone.pm_.c:21
+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 ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ íà êàðòàòà"
+#: ../../standalone.pm_.c:40
+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 name.\n"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "ëîãäðåéê"
+#: ../../standalone.pm_.c:51
+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.pm:1
-#, c-format
+#: ../../standalone.pm_.c:57
msgid ""
"Font Importation and monitoring "
"application \n"
@@ -12925,6743 +9876,4316 @@ msgid ""
" : and gs for ghostscript for only this one."
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Èçáåðåòå ôëîïè óñòðîéñòâî, êúäåòî äà íàïðàâèòå ñòàðòèðàùà äèñêåòà"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr "LILO ñ òåêñòîâî ìåíþ"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
+#: ../../standalone.pm_.c:68
+msgid ""
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Âñè÷êî (áåç firewall)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
-msgstr "Òðÿáâà äà çàäàäåòå îáàçà íà ÿäðîòî"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", ìíîãîôóíêöèîíàëíî óñòðîéñòâî íà USB"
-
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Do"
-msgstr "Íàïðàâè"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Ñâúðçâàíå ñ îãëåäàëíèÿ ñúðâúð çà ïîëó÷àâàíå íà ñïèñúêà ñ ïàêåòèòå"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "Ëèòâèéñêà AZERTY (ñòàðà)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "Áðàçèëñêà (ABNT-2)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
-msgstr "IP àäðåñ íà õîñò/ìðåæà:"
-
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone.pm_.c:70
msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
+"[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 ""
-"ëåíòàòà çà ïðîãðåñ y êîîðäèíàòè\n"
-"îò ãîðíèÿò ëÿâ úãúë"
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System installation"
-msgstr "Èíñòàëàöèÿ íà ñèñòåìà"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
-msgstr "Ñâåòè Âèíñåíò è Ãðåíàäèí"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid reboot by the console user."
-msgstr "Ïîçâîëÿâà/Çàáðàíÿâà ïðåñòàðòèðàíå îò ïîòðåáèòåë íà êîíçîëà."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Open"
-msgstr "/Ôàéë/_Îòâîðè"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "Ìåñòîïîëîæåíèå íà auto_install.cfg ôàéë"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Open Firmware Delay"
-msgstr "Èç÷àêâàíå íà Open Firmware"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
-msgstr "Óíãàðèÿ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "New Zealand"
-msgstr "Íîâà Çåëàíäèÿ"
+#: ../../standalone.pm_.c:82
+#, fuzzy
+msgid "[keyboard]"
+msgstr "Êëàâèàòóðà"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Color configuration"
-msgstr "Êîíôèãóðàöèÿ íà öâÿò"
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
+msgstr ""
-#: ../../security/level.pm:1
-#, c-format
+#: ../../standalone.pm_.c:84
msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
+"[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 ""
-"Âå÷å èìà íÿêîé îãðàíè÷åíèÿ, è ïîâå÷å àâòîìàòè÷íè ïðîâåðêè ùå ñå èçïúëíÿâàò "
-"âñÿêà âå÷åð."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "please choose the date to restore"
-msgstr "ìîëÿ, èçáåðåòå äàòàòà çà âúçñòàíîâÿâàíå"
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
-msgstr "Õîëàíäñêè Àíòèëè"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr "Ïðåõîä îò ext2 êúì ext3"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone.pm_.c:94
msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
+"[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 ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and %d unknown printers"
-msgstr "è %d íåèçâåñòíè ïðèíòåðè"
+#: ../../standalone.pm_.c:99
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone.pm_.c:100
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)"
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone.pm_.c:114
#, c-format
msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Íå å íàìåðåíà ISDN PCI êàðòà. Ìîëÿ èçáåðåòå îò ñëåäâàùèÿò åêðàí."
+#: ../../standalone.pm_.c:168
+msgid "Installing packages..."
+msgstr "Èíñòàëèðàíå íà ïàêåòè ..."
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
-msgstr "ÃÁ"
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Ìîëÿ èçëåçòå îò ñåñèÿòà è èçïîëçâàéòå Ctrl-Alt-BackSpace"
-#: ../../any.pm:1
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "Please give a user name"
-msgstr "Ìîëÿ, çàäàéòå ïîòðåáèòåëñêî èìå"
+msgid "Please relog into %s to activate the changes"
+msgstr "Ìîëÿ âëåçòå îòíîâî â %s, çà äà àêòèâèðàòå ïðîìåíèòå"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
-msgstr "Ñòàðòèðàíå îò CD ?"
+#: ../../standalone/drakTermServ_.c:239
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Ïðåíîñ íà íàñòðîéêà íà ïðèíòåð"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Simply reboot"
-msgstr ""
+#: ../../standalone/drakTermServ_.c:253
+#, fuzzy
+msgid "Enable Server"
+msgstr "Ñúðâúð Áàçè-äàííè"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid " enter `void' for void entry"
+#: ../../standalone/drakTermServ_.c:260
+#, fuzzy
+msgid "Disable Server"
+msgstr "Ñúðâúð Áàçè-äàííè"
+
+#: ../../standalone/drakTermServ_.c:268
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS ñúðâúð"
+
+#: ../../standalone/drakTermServ_.c:275
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS ñúðâúð"
+
+#: ../../standalone/drakTermServ_.c:283
+msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "January"
-msgstr "ßíóàðè"
+#: ../../standalone/drakTermServ_.c:294
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Äîáàâè ïîòðåáèòåë"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password history length"
-msgstr "Äúëæèíà íà \"èñòîðèÿòà\" íà ïàðîëèòå"
+#: ../../standalone/drakTermServ_.c:299
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP êëèåíò"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Winmodem connection"
-msgstr "Winmodem âðúçêà"
+#: ../../standalone/drakTermServ_.c:328
+msgid ""
+"\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
+"\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:332
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"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\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 ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
+#: ../../standalone/drakTermServ_.c:365
+msgid ""
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\n"
+"\n"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
+"\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\n"
+"\n"
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
+"\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
+"\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
+"\n"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \n"
+"\n"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
msgstr ""
-"Íÿìà äîñòàòú÷íî swap çà ïðèêëþ÷âàíå íà èíñòàëàöèÿòà, ìîëÿ äîáàâåòå ìàëêî"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "%s on %s"
-msgstr "%s íà %s"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid remote root login."
-msgstr "Ïîçâîëÿâà/Çàáðàíÿâà îòäàëå÷åíî âëèçàíå íà root."
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
+msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Êîÿ å âðåìåâàòà âè çîíà ?"
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Èçïîëçâà .backupignore ôàéëîâå"
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
-msgstr "Ãâèíåÿ"
+#: ../../standalone/drakTermServ_.c:587
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Íå ñâúðçàí"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Ñèñòåìàòà â ìîìåíòà å ñâúðçàíà êúì Èíòåðíåò."
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Þæíè Ñàíäâè÷åâè Îñòðîâè è Þæíà Äæîðäæèÿ"
+#: ../../standalone/drakTermServ_.c:604
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Èçòðèé"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
-msgstr ""
+#: ../../standalone/drakTermServ_.c:611
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Èçáåðåòå ôàéë"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:668
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."
+"!!! 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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "Ìîçàìáèê"
+#: ../../standalone/drakTermServ_.c:673
+#, fuzzy
+msgid "Add User -->"
+msgstr "Äîáàâè ïîòðåáèòåë"
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "Èêîíà"
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
+msgstr ""
-#: ../../../move/tree/mdk_totem:1
+#: ../../standalone/drakTermServ_.c:720
#, fuzzy, c-format
-msgid "Kill those programs"
-msgstr "äîñòúï äî X ïðîãðàìè"
+msgid "type: %s"
+msgstr "Âèä: "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Ìîëÿ èçáåðåòå êàêâî èñêàòå äà çàïàçèòå"
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
+msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 öâÿòà (8 áèòà)"
+#: ../../standalone/drakTermServ_.c:773
+#, fuzzy
+msgid "Thin Client"
+msgstr "DHCP êëèåíò"
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "×åòåíå-çàïèñ"
+#: ../../standalone/drakTermServ_.c:775
+#, fuzzy
+msgid "Allow Thin Clients"
+msgstr "DHCP êëèåíò"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "Ðàçìåð: %s\n"
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Hostname: "
-msgstr "Èìå íà õîñò:"
+#: ../../standalone/drakTermServ_.c:821
+#, fuzzy
+msgid "<-- Edit Client"
+msgstr "DHCP êëèåíò"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a rule"
-msgstr "Äîáàâÿíå íà ïðàâèëî"
+#: ../../standalone/drakTermServ_.c:837
+#, fuzzy
+msgid "Delete Client"
+msgstr "DHCP êëèåíò"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Ðàçìåð íà ïàð÷åòî %s\n"
+#: ../../standalone/drakTermServ_.c:843
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Íàñòðîéêà ..."
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
+#: ../../standalone/drakTermServ_.c:876
+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
-#, c-format
-msgid "Local Printer"
-msgstr "Ëîêàëåí ïðèíòåð"
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
+msgstr ""
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Êúäå èñêàòå äà ìîíòèðàòå óñòðîéñòâî %s ?"
+#: ../../standalone/drakTermServ_.c:901
+#, fuzzy
+msgid "Netmask:"
+msgstr "Ìðåæîâà ìàñêà"
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL âðúçêà"
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Error!"
-msgstr "Ãðåøêà !"
+#: ../../standalone/drakTermServ_.c:929
+#, fuzzy
+msgid "Domain Name:"
+msgstr "Èìå íà äîìåéíà"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "cable connection detected"
-msgstr "çàñå÷åíà å êàáåëíà âðúçêà"
+#: ../../standalone/drakTermServ_.c:937
+#, fuzzy
+msgid "Name Servers:"
+msgstr "NIS ñúðâúð"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Èíôîðìèðàé çà áúã"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
-msgstr "Äîìèíèêà"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "Ïðîìåíè ãîëåìèíàòà"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Ðàçäåëèòåëíà ñïîñîáíîñò: %s\n"
+#: ../../standalone/drakTermServ_.c:1001
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Íàñòðîéêà íà ëîêàëíà ìðåæà"
-#: ../../install2.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:1002
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)"
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-"Íÿìàì äîñòúï äà ìîäóëèòå íà ÿäðîòî ñúîòâåòñòâàùè íà âàøèÿò (ôàéë %s ëèïñâà), "
-"òîâà îçíà÷àâà, ÷å âàøåòî ôëîïè íå å ñèíõðîíèçèðàíî ñ èíñòàëàöèîííèÿò íîñèòåë "
-"(ìîëÿ íàïðàâåòå íîâî boot ôëîïè)"
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
msgstr ""
-"Ìîëÿ, èçáåðåòå âåðíèÿ ïîðò. Íàïðèìåð, ïîðòúò COM1 ïîä Windows ïîä GNU/Linux\n"
-"ñå íàðè÷à ttyS0."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Ñëåäíèòå ïàêåòè ùå áúäàò ïðåìàõíàòè"
+#: ../../standalone/drakTermServ_.c:1018
+#, fuzzy
+msgid "Write Config"
+msgstr "ïðåíàñòðîéêà"
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr "Ñâúðæè ñå êúì Èíòåðíåò"
+#: ../../standalone/drakTermServ_.c:1120
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Ñëîæåòå ñòàðòèðàùàòà äèñêåòà â óñòðîéñòâî %s"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
-msgstr "Èçïîçâàíå íà ñúùåñòâóâàù äÿë"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "Êàíàäñêà (Êâåáåê)"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Óñòðîéñòâî íà ìèøêàòà: %s\n"
+#: ../../standalone/drakTermServ_.c:1129
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Íÿìà ôëîïè óñòðîéñòâî"
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakTermServ_.c:1138
#, c-format
-msgid "Reselect correct fonts"
+msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../help.pm:1
-#, fuzzy, 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."
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-"Íàêðàÿ, ùå áúäåòå ïîïèòàíè äàëè èñêàòå äà âèæäàòå ãðàôè÷íèÿ èíòåðôåéñ ïðè\n"
-"çàðåæäàíå. Îòáåëåæåòå, ÷å òîçè âúïðîñ ùå âè áúäå çàäàäåí äàæå àêî èçáåðåòå,\n"
-"äà íå òåñòâàòå íàñòðîéêàòà. Î÷åâèäíî, áèõòå îòãîâîðèëè ñ \"Íå\", àêî "
-"ìàøèíàòà\n"
-"ùå ðàáîòè êàòî ñúðâúð èëè àêî íÿìà óñïåøíî íàñòðîåí äèñïëåé."
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert îáåäèíÿâà"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Write protection"
-msgstr "Çàùèòà îò çàïèñ"
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "You've not selected any font"
-msgstr "Íå ñòå èçáðàëè íèêàêúâ øðèôò"
+#: ../../standalone/drakautoinst_.c:40
+msgid "Error!"
+msgstr "Ãðåøêà !"
-#: ../../steps.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, c-format
-msgid "Language"
-msgstr "Èçáîð íà åçèê"
+msgid "I can't find needed image file `%s'."
+msgstr "Íå ìîãà äà íàìåðÿ íóæíà êàðòèíêà `%s'."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer model selection"
-msgstr "Èçáîð ìîäåë íà ïðèíòåðà"
+#: ../../standalone/drakautoinst_.c:43
+msgid "Auto Install Configurator"
+msgstr "Íàñòðîé÷èê íà àâòîìàòè÷íà èñíòàëàöèÿ"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:44
msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
+"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 ""
-"Ñëåä ïðîìÿíà íà òèïà íà äÿëà %s, âñè÷êè äàííè âúðõó íåãî ùå áúäàò çàãóáåíè"
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "ISDN adapters"
-msgstr "ISDN êàðòà"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d ñåêóíäè"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Ñëîæåòå ïðàçíà äèñêåòà â óñòðîéñòâî %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Òðÿáâà äà áúäå âúâåäåí âàëèäåí URI!"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr "Íàìåðåí å \"%s\" èíòåðôåéñ. Èñêàòå ëè äà ãî èçïîëçâàòå?"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound configuration"
-msgstr "Íàñòðîéêà çà çâóê"
+#: ../../standalone/drakautoinst_.c:62
+#, fuzzy
+msgid "replay"
+msgstr "Ïîâòîðè"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
-msgstr "Òåñòîâà ñòðàíèöà ñúñ ñíèìêà"
+#: ../../standalone/drakautoinst_.c:66
+msgid "Automatic Steps Configuration"
+msgstr "Íàñòðîéêà íà àâòîìàòè÷íèòå ñòúïêè"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Êëèåíòñêî ðàçäåëÿíå íà äèñêà"
+#: ../../standalone/drakautoinst_.c:67
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
+msgstr ""
+"Ìîëÿ, èçáåðåòå çà âñÿêà ñòúïêà, äàëè ùå ñå ïðåèãðàå êàòî ïðè èíñòàëàöèÿòà, "
+"èëè ùå áúäå ðú÷íà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Âúâåäåòå èìå íà ïðèíòåð è êîìåíòàð"
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Ïîäãîòâÿì äèñêåòà ñ àâòîìàòè÷íà èíñòàëàöèÿ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:139
msgid ""
-"The following printers\n"
"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Ñëåäíèòå ïðèíòåðè\n"
+"Welcome.\n"
"\n"
-"%s%s\n"
-"ñà äèðåêòíî ñâúðçàíè êúì âàøàòà ñèñòåìà"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "You don't have any winmodem"
+"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: %s"
-msgstr "òèï: %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "Ñëîâàøêà (QWERTY)"
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
+msgstr "Ïîçäðàâëåíèÿ !"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:235
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."
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
msgstr ""
+"Äèñêåòàòà å óñïåøíî ñúçäàäåíà.\n"
+"Ñåãà ìîæåòå äà ïðåèãðàåòå èíñòàëàöèÿòà."
-#: ../../standalone/draksound:1
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Íÿìà íàìåðåíà çâóêîâà êàðòà!"
+#: ../../standalone/drakautoinst_.c:273
+#, fuzzy
+msgid "Auto Install"
+msgstr "Èíñòàëèðàé"
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "Ïîðò íà ìèøêàòà"
+#: ../../standalone/drakautoinst_.c:343
+#, fuzzy
+msgid "Add an item"
+msgstr "Äîáàâÿíå íà ïîòðåáèòåë"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
-msgstr ""
+#: ../../standalone/drakautoinst_.c:350
+#, fuzzy
+msgid "Remove the last item"
+msgstr "Äà ïðåìàõíà ëè loopback ôàéëà ?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
msgstr ""
-"Òðÿáâà äà ïðåñòàðòèðàòå Ìåíèäæúà íà Äèñïëåé çà äà èìàò åôåêò ïðîìåíèòå. \n"
-"(îáñëóæâàíå dm restart - îò êîíçîëàðà)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Ftp Server"
-msgstr "Ftp Ñúðâúð"
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr "Óãàíäà"
+#: ../../standalone/drakbackup_.c:691
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "Ìîëÿ, èçáåðåòå òèïà íà øèíàòà êúì êîÿòî å ñâúðçàíà ìèøêàòà âè."
-
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:704
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"
+" DrakBackup Report \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"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:705
+msgid ""
"\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"
+" DrakBackup Daemon Report\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"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:709
+msgid ""
"\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"
+" DrakBackup Report Details\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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr "Êîìîðè"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "May"
-msgstr "Ìàé"
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+#, fuzzy
+msgid "Total progess"
+msgstr "Òåñòîâè ñòðàíèöè"
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakbackup_.c:785
#, c-format
-msgid "Yaboot mode"
-msgstr "Ðåæèì íà Yaboot"
+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 ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Îáèêíîâåííà 3-áóòîííà ìèøêà"
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
+msgstr ""
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakbackup_.c:801
#, c-format
-msgid "USA (cable)"
+msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Èçáåðåòå äðóã íîñèòåë çà âúçñòàíîâÿâàíå îò íåãî"
+#: ../../standalone/drakbackup_.c:819
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Áåç ïàðîëà"
-#: ../../standalone/drakbug:1
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "Software Manager"
-msgstr "Ñîôòóåðåí ìåíèäæúð"
+msgid "Permission denied transferring %s to %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:821
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Íå ìîãà äà îòâîðÿ %s: %s\n"
-#: ../../interactive/stdio.pm:1
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid "Re-submit"
+msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:828
#, c-format
-msgid "CD in place - continue."
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "KB"
-msgstr "ÊÁ"
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Network & Internet"
-msgstr "Ìðåæà è èíòåðíåò"
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Ëèòâèéñêà \"ôîíåòè÷åí\" QWERTY"
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Net Boot Images"
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Ñïîäåëÿíå íà ëîêàëíè ñêåíåðè"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
+msgstr ""
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "Ïðîáà çà Plug & Play å íåóñïåøíà. Ìîëÿ, èçáåðåòå ïðàâèëåí ìîíèòîð"
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
+msgstr ""
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Detect again USB key"
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
msgstr ""
-#: ../../services.pm:1
+#: ../../standalone/drakbackup_.c:1060
#, c-format
-msgid "Services and deamons"
-msgstr "Óñëóèãè è äåìîíè"
+msgid "No tape in %s!"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Ëèïñâà èìå íà èìå íà õîñò !"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "with /usr"
-msgstr "ñ /usr"
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+#, fuzzy
+msgid "Hard Disk Backup files..."
+msgstr "Ëîø backup-ôàéë"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Network"
-msgstr "Ìðåæà"
+#: ../../standalone/drakbackup_.c:1236
+#, fuzzy
+msgid "Backup User files..."
+msgstr "Ëîø backup-ôàéë"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
msgstr ""
-"Àâòîìàòè÷íî îòêðèâà ïðèíòåðè ñâúðçàíè ñ ìàøèíè ðàáîòåùè ïîä Microsoft Windows"
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "Òàçè ïàðîëà å ïðåêàëåíî ïðîñòà"
+#: ../../standalone/drakbackup_.c:1290
+#, fuzzy
+msgid "Backup Other files..."
+msgstr "Ëîø backup-ôàéë"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "Chkconfig ñïàçâà msec ïðàâèëàòà"
+#: ../../standalone/drakbackup_.c:1296
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Ëîø backup-ôàéë"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "Ñëîâàøêà (QWERTZ)"
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
-#: ../advertising/06-development.pl:1
+#: ../../standalone/drakbackup_.c:1319
#, 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."
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "No devices found"
-msgstr "Íå å íàìåðåí îáðàç"
+#: ../../standalone/drakbackup_.c:1322
+msgid ""
+"\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Íàèñòèíà ìèíèìàëíà èíñòàëàöèÿ (îñîáåííî áåç urpmi)"
+#: ../../standalone/drakbackup_.c:1340
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use daemon"
-msgstr "Èçïîëçâà äåìîí"
+#: ../../standalone/drakbackup_.c:1345
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "Èäåíòèôèêàöèÿ"
+#: ../../standalone/drakbackup_.c:1354
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Ãðåøêà ïðè ÷åòåíåòî íà ôàéëà %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Äîáàâÿ òîçè ïðèíòåð íà Star Office/OpenOffice.org/GIMP"
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Äîïúëíèòåëíè CUPS ñúðâúðè"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+#, fuzzy
+msgid "File Selection"
+msgstr "Èçáîð íà ïàêåòè"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
msgstr ""
-"Èçáåðåòå åäèí îò àâòîìàòè÷íî îòêðèòèòå ïðèíòåðè â ñïèñúêà ãîðå èëè âúâåäåòå "
-"èìå íà õîñò èëè IP è îïöèîíàëíî íîìåð íà ïîðò (ïîäðàçáèðàù 9100) â ïîëåòî."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr "Êúäå èñêàòå äà ìîíòèðàòå óñòðîéñòâî %s ?"
+#: ../../standalone/drakbackup_.c:1573
+msgid ""
+"\n"
+"Please check all options that you need.\n"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "Àëæèð"
+#: ../../standalone/drakbackup_.c:1574
+msgid ""
+"These options can backup and restore all files in your /etc directory.\n"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network"
-msgstr "Âúçñòàíîâÿâà ïðåç ìðåæà"
+#: ../../standalone/drakbackup_.c:1575
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd-ãîëåìèíà"
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1578
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."
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Please check all users that you want to include in your backup."
+msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
+
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Set as default"
-msgstr "Çàäàé ïî ïîäðàçáèðàíå"
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 ÌÁ"
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+#, fuzzy
+msgid "Remove Selected"
+msgstr "Èçòðèâàíå íà îïàøêàòà"
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configured on this machine"
-msgstr "(íà òàçè ìàøèíà)"
+#: ../../standalone/drakbackup_.c:1679
+#, fuzzy
+msgid "Windows (FAT32)"
+msgstr "Ïðåìàõíè Windows(TM)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Äâàòà Ctrl êëàâèøà åäíîâðåìåííî"
+#: ../../standalone/drakbackup_.c:1714
+#, fuzzy
+msgid "Users"
+msgstr "Ïîòðåáèòåëñêî èìå"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid " --help - display this help \n"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1740
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Ëîø backup-ôàéë"
-#: ../../standalone.pm:1
-#, 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"
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Íàñòðîéêà íà ïðèíòåð ïî ïîäðàçáèðàíå..."
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Èíòåðôåéñ %s (èçïîëçâàù ìîäóë %s)"
+#: ../../standalone/drakbackup_.c:1747
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Generating preview ..."
-msgstr "Ãåíåðèðàì ïðåãëåä..."
+#: ../../standalone/drakbackup_.c:1748
+#, fuzzy
+msgid ""
+" Transfer \n"
+"Now"
+msgstr "Ïðåõâúðëè"
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1749
msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ignore"
-msgstr "èãíîðèðàíå"
+#: ../../standalone/drakbackup_.c:1753
+#, fuzzy
+msgid "Please enter the host name or IP."
+msgstr "Ìîëÿ, ïðîáâàéòå ìèøêàòà ñè"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1758
msgid ""
-"Allow/Forbid X connections:\n"
-"\n"
-"- ALL (all connections are allowed),\n"
-"\n"
-"- LOCAL (only connection from local machine),\n"
-"\n"
-"- NONE (no connection)."
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", ìíîãîôóíêöèîíàëíî óñòðîéñòâî íà íà ïàðàëåëåí ïîðò #%s"
+#: ../../standalone/drakbackup_.c:1763
+#, fuzzy
+msgid "Please enter your login"
+msgstr "Ìîëÿ, îïèòàéòå îòíîâî"
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "ñåðèéíà"
+#: ../../standalone/drakbackup_.c:1768
+#, fuzzy
+msgid "Please enter your password"
+msgstr "Ìîëÿ, îïèòàéòå îòíîâî"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
-msgstr "DVD-ROM"
+#: ../../standalone/drakbackup_.c:1774
+#, fuzzy
+msgid "Remember this password"
+msgstr "îùå âåäíúæ ïàðîëà"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Ãðóçèíñêà (\"Ëàòèíñêà\" íàðåäáà)"
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
+msgstr ""
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1882
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "Êåíèÿ"
+#: ../../standalone/drakbackup_.c:1887
+#, fuzzy
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Ìîëÿ, èçáåðåòå ïîäðåæäàíå íà êëàâèàòóðàòà."
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Ïúðâî èçïîëçâàéòå 'Äåìîíòèðàíå'"
+#: ../../standalone/drakbackup_.c:1893
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Ìîëÿ, öúêíåòå íà íîñèòåëÿ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing mtools packages..."
-msgstr "Èíñòàëèðàíå íà mtools ïàêåòè..."
+#: ../../standalone/drakbackup_.c:1899
+#, fuzzy
+msgid "Please check if you are using CDRW media"
+msgstr "Ìîëÿ, öúêíåòå íà íîñèòåëÿ"
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a root partition"
-msgstr "Òðÿáâà äà çàäàäåòå êîðåíîâèÿò äÿë"
+#: ../../standalone/drakbackup_.c:1905
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Ìîëÿ, öúêíåòå íà íîñèòåëÿ"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "first step creation"
-msgstr "ïúðâà ñòúïêà íà ñúçäàâàíå"
+#: ../../standalone/drakbackup_.c:1906
+#, fuzzy
+msgid " Erase Now "
+msgstr "Ïðåõâúðëè"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Äâàòà Shift êëàâèøà åäíîâðåìåííî"
+#: ../../standalone/drakbackup_.c:1912
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Ìîëÿ, öúêíåòå íà íîñèòåëÿ"
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1918
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Ìîëÿ, öúêíåòå íà íîñèòåëÿ"
+
+#: ../../standalone/drakbackup_.c:1931
msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select a scanner model"
-msgstr "Èçáåðåòå ìîäåë íà ñêåíåðà"
+#: ../../standalone/drakbackup_.c:1964
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Èçáåðåòå ôàéë"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
-msgstr "Ïîçâîëÿâà/Çàáðàíÿâà ñúîáùåíèÿ çà IPv4 ãðåøêè."
+#: ../../standalone/drakbackup_.c:2012
+#, fuzzy
+msgid "Use tape to backup"
+msgstr "Ëîø backup-ôàéë"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR Íîâî ïîêîëåíèå"
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Drakbackup Êîíôèãóðàöèÿ"
+#: ../../standalone/drakbackup_.c:2021
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr "Çàïàçè êàòî..."
+#: ../../standalone/drakbackup_.c:2027
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr "Êîðåÿ (Ñåâåðíà)"
+#: ../../standalone/drakbackup_.c:2033
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
msgstr ""
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System configuration"
-msgstr "Êîíôèãóðàöèÿ íà ñèñòåìà"
+#: ../../standalone/drakbackup_.c:2103
+#, fuzzy
+msgid "Please enter the directory to save to:"
+msgstr "Ìîëÿ, ïðîáâàéòå ìèøêàòà ñè"
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "Àâòîìàòè÷íî âëèçà"
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+#, fuzzy
+msgid "Use quota for backup files."
+msgstr "Ëîø backup-ôàéë"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin Password"
-msgstr "Ïàðîëà çà àäìèíèñòðàòîð íà äîìåéí"
+#: ../../standalone/drakbackup_.c:2180
+#, fuzzy
+msgid "Network"
+msgstr "Ìðåæîâ èíòåðôåéñ"
-#: ../advertising/05-desktop.pl:1
-#, fuzzy, 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, ..."
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
msgstr ""
-"Mandrake Linux 9.1 âè ïðåäîñòàâÿ 11 ïîòðåáèòåëñêè èíòåðôåéñà êîèòî ìîãàò äà "
-"áúäàò íàïúëíî ìîäèôèöèðàíè: KDE 3, Gnome 2, WindowMaker, ..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer ..."
-msgstr "Íàñòðîéêà íà ïðèíòåðà ..."
-
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, 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)"
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "ÌÁ"
+#: ../../standalone/drakbackup_.c:2195
+#, fuzzy
+msgid "Tape"
+msgstr "Âèä"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr "Âèðäæèíñêè Îñòðîâè (Áðèòàíñêè)"
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Bermuda"
-msgstr "Áåðìóäà"
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2229
+#, fuzzy
+msgid "Use daemon"
+msgstr "Ïîòðåáèòåëñêî èìå"
+
+#: ../../standalone/drakbackup_.c:2234
+#, fuzzy
msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
+"Please choose the time \n"
+"interval between each backup"
+msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2240
+#, fuzzy
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"
+"Please choose the\n"
+"media for backup."
+msgstr "Ìîëÿ, èçáåðåòå èçïîëçâàí åçèê."
+
+#: ../../standalone/drakbackup_.c:2247
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-"Ïî-ãîðå ñà èçáðîåíè çàñå÷åíèòå Linux äÿëîâå ñúùåñòâóâàùè\n"
-"íà òâúðäèÿ âè äèñê. Ìîæåòå äà çàïàçèòå èçáîðà íàïðàâåí îò ìàãüîñíèêà, òå ñà\n"
-"äîáðè çà îáùà óïîòðåáà. Àêî ãè ïðîìåíèòå, òðÿáâà äà ïîíå äà îïðåäåëèòå\n"
-"root äÿë (\"/\"). Íå èçáèðàéòå ïðåêàëåíî ìàëêè äÿëîâå, çàùîòî íÿìà äà "
-"ìîæåòå\n"
-"äà èíñòàëèðàòå äîñòàòú÷íî ñîôòóåð. Àêî èñêàòå äà ñúõðàíÿâàòå äàííèòå ñè íà\n"
-"îòäåëåí äÿë, òðÿáâà äà èçáåðåòå \"/home\" (âúçìîæíî å ñàìî, àêî èìàòå "
-"ïîâå÷å\n"
-"îò åäèí Linux äÿë).\n"
-"\n"
-"\n"
-"Çà èíôîðìàöèÿ, âñåêè äÿë å ïîêàçàí, êàêòî ñëåäâà: \"Èìå\", \"Êàïàöèòåò\".\n"
-"\n"
-"\n"
-"\"Èìåòî\" ñå êîäèðà êàêòî ñëåäâà: \"òèï íà äèñêà\", \"íîìåð íà äèñêà\",\n"
-"\"íîìåð íà äÿë\" (íàïðèìåð, \"hda1\").\n"
-"\n"
-"\n"
-"\"Òèïúò íà äèñêà\" ìîæå äà å \"hd\", àêî å IDE òâúðä äèñê, èëè \"sd\", àêî "
-"å\n"
-"SCSI òâúðä äèñê.\n"
-"\n"
-"\n"
-"\"Íîìåðúò íà äèñêà\" âèíàãè å áóêâàòà ñëåä \"hd\" èëè \"sd\". Ïðè IDE "
-"äèñêîâå:\n"
-"\n"
-" * \"a\" îçíà÷àâà \"master äèñê íà ïúðâèÿ IDE êîíòðîëåð\",\n"
-" * \"b\" îçíà÷àâà \"slave äèñê íà ïúðâèÿ IDE êîíòðîëåð\",\n"
-" * \"c\" îçíà÷àâà \"master äèñê íà âòîðèÿ IDE êîíòðîëåð\",\n"
-" * \"d\" îçíà÷àâà \"slave äèñê íà âòîðèÿ IDE êîíòðîëåð\".\n"
-"\n"
-"\n"
-"Ïðè SCSI óñòðîéñòâà, \"a\" îçíà÷àâà \"ïúðâè òâúðä äèñê\", \"b\" îçíà÷àâà "
-"\"âòîðè òâúðä äèñê\" è ò.í.."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Remove"
-msgstr "Ïðåìàõâà"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr "Ëåñîòî"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
+msgstr ""
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr "utopia 25"
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Ïðåêàðàé çàäàíèåòî ïðåç êîìàíäà"
+#: ../../standalone/drakbackup_.c:2324
+#, fuzzy
+msgid "What"
+msgstr "Åäèí ìîìåíò"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "Äà ïðåìàõíà ëè loopback ôàéëà ?"
+#: ../../standalone/drakbackup_.c:2329
+#, fuzzy
+msgid "Where"
+msgstr "Wheel"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "Êîò ä'èâîàð"
+#: ../../standalone/drakbackup_.c:2334
+#, fuzzy
+msgid "When"
+msgstr "Wheel"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "íîâî äèíàìè÷íî óñòðîéñòâî ãåíåðèðàíî îò ÿäðîòî devfs"
+#: ../../standalone/drakbackup_.c:2339
+#, fuzzy
+msgid "More Options"
+msgstr "Îïöèè íà ìîäóëà:"
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "Äà"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+#, fuzzy
+msgid "Drakbackup Configuration"
+msgstr "Íàñòðîéêà íà ìðåæàòà"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Êàêúâ ïðîòîêîë æåëàåòå äà ïðîìåíèòå ?"
+#: ../../standalone/drakbackup_.c:2376
+#, fuzzy
+msgid "Please choose where you want to backup"
+msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Progress"
-msgstr "Ïðîãðåñ íà âúçñòàíîâÿâàíå"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
-msgstr "Åñòîíèÿ"
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
+msgstr ""
-#: ../../partition_table.pm:1
-#, 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."
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
msgstr ""
-"Èìàòå ïðàçíèíà â òàáëèöàòà ñ äÿëîâåòå, íî íå ìîãà äà ÿ èçïîëçâàì.\n"
-"Åäèíñòâåíèÿò íà÷èí å äà ïðåìåñòèòå ãëàâíèòå ñè äÿëîâå, çà äà èìàòå ïðàçíî "
-"ìÿñòî ñëåä extended-äÿëîâåòå"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
+#: ../../standalone/drakbackup_.c:2406
+msgid "on Tape Device"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Channel"
-msgstr "Êàíàë"
+#: ../../standalone/drakbackup_.c:2449
+#, fuzzy
+msgid "Please choose what you want to backup"
+msgstr "Ìîëÿ, èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå."
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Add"
-msgstr "Äîáàâÿ"
+#: ../../standalone/drakbackup_.c:2450
+#, fuzzy
+msgid "Backup system"
+msgstr "Ôàéëîâè ñèñòåìè"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr " Ãðåøêà ïî âðåìå íà èçïðàùàíå íà ïîùà. \n"
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "Êëàâèàòóðà"
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2537
msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
+"\n"
+"Backup Sources: \n"
msgstr ""
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2538
msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
+"\n"
+"- System Files:\n"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Èçáåðåòå âðúçêàòà, êîéòî èñêàòå äà èçïîëçâàòå"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Ìîëÿ, èçáåðåòå íèâî íà ñèãóðíîñò..."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Íàñòðîéêà íà ìðåæîâîòî óñòðîéñòâî %s"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
-msgstr "àêòèâèðàíî"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
+#: ../../standalone/drakbackup_.c:2540
+msgid ""
+"\n"
+"- User Files:\n"
msgstr ""
-"Ìîëÿ, èçáåðåòå êîé ìðåæîâ àäàïòåð äà èçïîëçâàì çà âðúçêà êúì dhcp ñúðâúð."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Òúðñÿ ïàêåòè çà îáíîâÿâàíå"
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
-msgstr "Ìÿñòî íà ìîíòèðàíå: "
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
+#: ../../standalone/drakbackup_.c:2542
+msgid ""
+"\n"
+"- Other Files:\n"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid direct root login."
-msgstr "Ïîçâîëÿâà/Çàáðàíÿâà äèðåêòíî âëèçàíå íà root."
-
-#: ../../security/help.pm:1
+#: ../../standalone/drakbackup_.c:2544
#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr "Ïîçâîëÿâà/Çàáðàíÿâà broadcasted icmp echo."
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
-msgstr "Ñ X"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
+msgid ""
+"\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "No browser available! Please install one"
-msgstr "Íÿìà íàëè÷íà ïðîãðàìà çà ïðåãëåä! Ìîëÿ èçáåðåòå åäíà"
-
-#: ../../Xconfig/main.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2547
msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
"\n"
-"%s"
+"- Delete hard drive tar files after backup.\n"
msgstr ""
-"Äà çàïàçÿ ëè ïðîìåíèòå ?\n"
-"Òåêóùàòà íàñòðîéêà å:\n"
-"\n"
-"%s"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Íå ìîæåòå äà èíñòàëèðàíå ReiserFS íà äÿë ïî-ìàëúê îò 32 ÌÁ"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2553
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)."
+"\n"
+"- Burn to CD"
msgstr ""
-"rwho ïðîòîêîëà ïîçâîëÿâà íà îòäàëå÷åíè ïîòðåáèòåëè äà ñå ñäîáèÿò ñúñ ñïèñúê\n"
-"íà âñè÷êè ïîòðåáèòåëè âëåçëè íà ìàøèíà ñ ðàáîòåù rwho äåìîí (ïîäîáåí íà "
-"finger)."
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "Èìå íà äîìåéíà"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Ïîäåëÿíå íà ëîêàëíè ïðèíòåðè"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Available printers"
-msgstr "Íàëè÷íè ïðèíòåðè"
-
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:2555
#, fuzzy, c-format
-msgid "NO"
-msgstr "ÈÍÔÎ"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "Ïðàçåí"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
-msgstr "øèðèíà íà òåêñò"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Êúäå èñêàòå äà ìîíòèðàòå óñòðîéñòâî %s ?"
+msgid " on device: %s"
+msgstr "Óñòðîéñòâî íà ìèøêàòà: %s\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: ../../standalone/drakbackup_.c:2557
#, c-format
msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
"\n"
-"Press \"%s\" to continue."
+"- Save to Tape on device: %s"
msgstr ""
-"Ñåãà ùå íàñòðîèì %s âðúçêàòà.\n"
-"\n"
-"\n"
-"\n"
-"Íàòèñíåòå \"%s\", çà äà ïðîäúëæèòå."
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Èíòåðôåéñ \"%s\""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Ñ áàçîâà äîêóìåíòàöèÿ (ïðåïîðú÷âà ñå!)"
-#: ../../mouse.pm:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "1 button"
-msgstr "1 áóòîí"
+msgid "\t\tErase=%s"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2561
#, c-format
msgid ""
"\n"
-"There are %d unknown printers directly connected to your system"
+"- Save via %s on host: %s\n"
msgstr ""
-"\n"
-"Èìà %d íåèçâåñòíè ïðèíòåðè âêëþ÷åíè êúì âàøàòà ñèñòåíìà"
-#: ../../Xconfig/main.pm:1
+#: ../../standalone/drakbackup_.c:2562
#, c-format
-msgid "Test"
-msgstr "Òåñò"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea"
-msgstr "Êîðåÿ"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Âàøèÿò èçáîð ? (ïî ïîäðàçáèðàíå å `%s'%s) "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer"
-msgstr "Raw ïðèíòåð"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "èìåòî íà ïðîèçâîäèòåëÿ íà ïðîöåñîðà"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
+msgid ""
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
msgstr ""
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Vendor"
-msgstr "Ïðîèçâîäèòåë"
+#: ../../standalone/drakbackup_.c:2563
+#, fuzzy
+msgid ""
+"\n"
+"- Options:\n"
+msgstr "Îïöèè"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s"
-msgstr "Èíòåðôåéñ %s"
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "Íàñòðîéêà íà ìèøêà"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
-msgstr "Èçáåðåòå ìåñòà çà ìîíòèðàíå"
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
+msgstr ""
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
+#: ../../standalone/drakbackup_.c:2572
#, c-format
-msgid "OK"
-msgstr "OK"
+msgid ""
+"\n"
+"- Daemon (%s) include:\n"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "Þãîñëàâñêà (ëàòèíèöà)"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
+msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "Èíñòàëèðàì"
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
+msgstr ""
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan"
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
-msgstr "Ñòàðòèðà userdrake"
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Òîâà íîâà èíñòàëàöèÿ ëè å èëè îáíîâÿâàíå ?"
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "ISDN card"
-msgstr "ISDN êàðòà"
+#: ../../standalone/drakbackup_.c:2578
+msgid "\t-Network by rsync.\n"
+msgstr ""
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
+#: ../../standalone/drakbackup_.c:2579
+msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2587
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"
+"List of data to restore:\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 ""
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2754
msgid ""
+"List of data corrupted:\n"
"\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"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Ïðèíòåð íà îòäàëå÷åí CUPS ñúðâúð"
+#: ../../standalone/drakbackup_.c:2756
+#, fuzzy
+msgid "Please uncheck or remove it on next time."
+msgstr "Ìîëÿ, èçáåðåòå ñåðèåí ïîðò êúì êîéòî ñâúðçàí ìîäåìúò âè."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
msgstr ""
-"Íåñïåøíî ïðåìàõâàíå íà ïðèíòåð \"%s\" îò Star Office/OpenOffice.org/GIMP."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
+#: ../../standalone/drakbackup_.c:2787
+msgid " All of your selected data have been "
msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "DHCP host name"
-msgstr "Èìå íà DHCP õîñò"
-
-#: ../../standalone/drakgw:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "The maximum lease (in seconds)"
+msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Ìîëÿ, èçáåðåòå êúì êîé ñåðèåí ïîðò å ñâúðçàíà ìèøêàòà âè."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
-msgstr "Ïðîðàáîòè ëè êàêòî òðÿáâà ?"
+#: ../../standalone/drakbackup_.c:2906
+#, fuzzy
+msgid " Restore Configuration "
+msgstr "Íàñòðîéêà íà ìðåæàòà"
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
msgstr ""
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "Ëîøî"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result by mail"
-msgstr "èçïðàùà ñúîáùåíèå çà ðåçóëòàòà ïî å-ïîùàòà."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
-msgstr "Ãðåíàäà"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "Îïàñåí"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "SSH server"
-msgstr "SSH Ñúðâúð"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s ñåêòîðà"
+#: ../../standalone/drakbackup_.c:3019
+#, fuzzy
+msgid "Backup the system files before:"
+msgstr "Ëîø backup-ôàéë"
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "Íå"
+#: ../../standalone/drakbackup_.c:3021
+#, fuzzy
+msgid "please choose the date to restore"
+msgstr "Ìîëÿ, èçáåðåòå òèï íà ìèøêàòà."
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "Ãâàäåëóïà"
+#: ../../standalone/drakbackup_.c:3057
+#, fuzzy
+msgid "Use Hard Disk to backup"
+msgstr "Ëîø backup-ôàéë"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Kannada"
-msgstr "Êàíàäà"
+#: ../../standalone/drakbackup_.c:3060
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Ìîëÿ, ïðîáâàéòå ìèøêàòà ñè"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3103
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN âðúçêà"
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Èñêàòå ëè BackSpace äà ïîäàâà Delete íà êîíçîëàòà ?"
+#: ../../standalone/drakbackup_.c:3110
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Èçáåðåòå âðúçêà êúì ïðèíòåðà"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Âåðòèêàëíà ñêîðîñò íà âúçñòàíîâÿâàíå"
+#: ../../standalone/drakbackup_.c:3134
+#, fuzzy
+msgid "Restore from Hard Disk."
+msgstr "Âúçñòàíîâè îò äèñêåòà"
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Íàâëèçàì â åòàï `%s'\n"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Niger"
-msgstr "Íèãåð"
+#: ../../standalone/drakbackup_.c:3204
+#, fuzzy
+msgid "Select another media to restore from"
+msgstr "Ìîëÿ, èçáåðåòå òèï íà ìèøêàòà."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
+#: ../../standalone/drakbackup_.c:3206
+#, fuzzy
+msgid "Other Media"
+msgstr "Äðóãà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing %s ..."
-msgstr "Èçòðèâàíå íà %s ..."
+#: ../../standalone/drakbackup_.c:3211
+#, fuzzy
+msgid "Restore system"
+msgstr "Èíñòàëèðàíå íà ñèñòåìàòà"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No printer"
-msgstr "Íÿìà ïðèíòåð"
+#: ../../standalone/drakbackup_.c:3212
+#, fuzzy
+msgid "Restore Users"
+msgstr "Âúçñòàíîâè îò ôàéë"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "alert configuration"
-msgstr "êîíôèãóðàöèÿ íà òðåâîãà"
+#: ../../standalone/drakbackup_.c:3213
+#, fuzzy
+msgid "Restore Other"
+msgstr "Âúçñòàíîâè îò ôàéë"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "Îïöèè çà NetWare ïðèíòåð"
+#: ../../standalone/drakbackup_.c:3215
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Ìîëÿ, èçáåðåòå òèï íà ìèøêàòà."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "%s BootSplash (%s) preview"
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "February"
-msgstr "Ôåâðóàðè"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
-msgstr "Îñíîâíî"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "Äîáàâÿíå íà ïîòðåáèòåë"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Íàñòðîéêà íà ìðåæàòà (%d àäàïòåðà)"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "April"
-msgstr "Àïðèë"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Deactivate now"
-msgstr "äåàêòèâèðàé ñåãà"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Çàäúëæèòåëíèÿò ïàêåò %s ëèïñâà"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Ôèëèïèíè"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "Ok"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "drakTermServ Overview"
+#: ../../standalone/drakbackup_.c:3334
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
-msgstr "Èìå íà ïå÷àòíàòà îïàøêàòà"
+#: ../../standalone/drakbackup_.c:3344
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Èçòðèâàíå íà îïàøêàòà"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Èñêàòå ëè äà èçïîëçâàòå aboot ?"
+#: ../../standalone/drakbackup_.c:3361
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Âúçñòàíîâè îò ôàéë"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:3427
#, c-format
-msgid "Belarusian"
-msgstr "Áåëàðóñêà"
+msgid "Backup files not found at %s."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:3440
#, c-format
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-"PDQ ïîääúðæà ñàìî ëîêàëíè ïðèíòåðè, îòäàëå÷åíè LPD ïðèíòåðè è Socket/TCP "
-"ïðèíòåðè.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move files to the new partition"
-msgstr "Ïðåìåñòè ôàéëîâåòå íà íîâ äÿë"
+#: ../../standalone/drakbackup_.c:3440
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Âúçñòàíîâè îò äèñêåòà"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:3442
#, 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 "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:3452
#, 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."
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
-"\n"
-"Äîáðå äîøëè â Ìàãüîñíèêà çà êîíôèãóðèðàíå íà Ïðèíòåð\n"
-"\n"
-"Òîé ùå âè ïîìîãíå äà èíñòàëèðàòå âàøèòå ïðèíòåðè ñâúðçàíè êúì êîìïþòúðà.\n"
-"\n"
-"Àêî èìàòå ïðèíòåð(è) ñâúðçàíè êúì òàçè ìàøèíà, âêëþ÷åòå ãè, òàêà ÷å òå äà "
-"ìîãàò äà ñå êîíôèãóðèðàò àâòîìàòè÷íî.\n"
-"\n"
-"Öúêíåòå íà \"Ñëåäâàùî\" êîãàòî ñòå ãîòîâè, è íà \"Ïðåêúñâà\" àêî íå èñêàòå "
-"äà íàñòðîéâàòå ïðèíòåðèòå ñåãà."
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
-msgstr "Ïèòêåúðí"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Âúçñòàíîâÿâà îò êàòàëîã"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "IDE"
-msgstr "IDE"
+#: ../../standalone/drakbackup_.c:3452
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Âúçñòàíîâè òàáëèöàòà ñ äÿëîâåòå"
-#: ../../fs.pm:1
+#: ../../standalone/drakbackup_.c:3454
#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "ìîíòèðàíåòî íà äÿë %s â äèðåêòîðèÿ %s ïðîïàäíà"
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
-msgstr "Lilo åêðàí"
+#: ../../standalone/drakbackup_.c:3474
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Âúçñòàíîâè îò ôàéë"
-#: ../../bootloader.pm:1 ../../help.pm:1
+#: ../../standalone/drakbackup_.c:3474
#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO ñ ãðàôè÷íî ìåíþ"
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "Ïðåñìÿòàíå"
+#: ../../standalone/drakbackup_.c:3475
+#, fuzzy
+msgid "Host Name"
+msgstr "Èìå íà õîñò:"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
-msgstr "Íå ìîæåòå äà îñòàâèòå òîçè ïàêåò íåìàðêèðàí. Òîé âå÷å å èíñòàëèðàí"
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", ïðèíòåð \"%s\" íà SMB/Windows ñúðâúð \"%s\""
+#: ../../standalone/drakbackup_.c:3483
+#, fuzzy
+msgid "Password required"
+msgstr "Ïàðîëà"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "Äà ïðîäúëæà ëè âñå ïàê ?"
+#: ../../standalone/drakbackup_.c:3489
+#, fuzzy
+msgid "Username required"
+msgstr "Ïîòðåáèòåëñêî èìå"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Òúðñÿ íàëè÷íè ïàêåòè è ïðåïîñòðîÿâàì rpm áàçàòà äàííè..."
+#: ../../standalone/drakbackup_.c:3492
+#, fuzzy
+msgid "Hostname required"
+msgstr "Èìå íà õîñò:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
msgstr ""
-"\n"
-" DrakBackup îò÷åò \n"
-"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "Çàäàé îïöèè"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr "Âàíóàòó"
+#: ../../standalone/drakbackup_.c:3513
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Âúçñòàíîâè îò ôàéë"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "New user list:\n"
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Òðÿáâà äà áúäàò çàäàäåíè è èìåòî è IP àäðåñà íà ñúðâúðà !"
-
-#: ../../any.pm:1
-#, 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\"."
-msgstr ""
-"Êëèåíòñêÿò bootdisk å íåîáõîäèì çà ñòàðòèðàíå â Linux ñèñòåìàòà âè "
-"íåçàâèñèìî\n"
-"îò îáèêíîâåíèÿ bootloader. Òîâà å ïîëåçíî, àêî íå èñêàòå äà èíñòàëèðàòå\n"
-"SILO íà ñèñòåìàòà ñè, àêî íÿêîÿ äðóãà îïåðàöèîííà ñèñòåìà ìàõíå SILO\n"
-"èëè àêî SILO íå ðàáîòè ñ õàðäóåðíàòà âè íàñòðîéêà. Êëèåíòñêèÿò bootdisk\n"
-"ìîæå äà áúäå èçïîëçâàí ñúñ\n"
-"ñïàñèòåëíèÿò îáðàç íà Mandrake, óëåñíÿâàêè âúçñòàíîâÿâàíåòî ïðè ðåäêè\n"
-"ñëó÷àè íà ñðèâ.\n"
-"\n"
-"Àêî èñêàòå äà ñúçäàäåòå bootdisk çà âàøàòà ñèñòåìà, ïîñòàâåòå äèñêåòà â\n"
-"ïúðâîòî óñòðîéñòâî è íàòèñíåòå \"Ok\"."
+#: ../../standalone/drakbackup_.c:3760
+#, fuzzy
+msgid "Custom Restore"
+msgstr "Êëèåíòñêà"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
msgstr ""
-"Âèå íå ìîæå äà èçïîëçâàòå êðèïòèðàíà ôàéëîâà ñèñòåìà çà òî÷êà íà ìîíòèðàíå %s"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password history length to prevent password reuse."
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
-msgstr "Íîðôîëê Îñòðîâ"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Theme installation failed!"
-msgstr "Èíñòàëàöèÿòà íà òåìà å íåóñïåøíà!"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
-msgstr "Íÿìà íèùî çà ïðàâåíå"
+#: ../../standalone/drakbackup_.c:3813
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Âúçñòàíîâè òàáëèöàòà ñ äÿëîâåòå"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "Èçïîëçâàé çà loopback"
+#: ../../standalone/drakbackup_.c:3841
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Âúçñòàíîâè îò ôàéë"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+#, fuzzy
+msgid "Previous"
+msgstr "<- Ïðåäèøåí"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
-msgstr "Èçïîëçâà ôèëòúð"
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+#, fuzzy
+msgid "Save"
+msgstr "Ñúñòîÿíèå"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pppoe"
-msgstr "èçïîëçâàé PPPOE"
+#: ../../standalone/drakbackup_.c:3946
+#, fuzzy
+msgid "Build Backup"
+msgstr "Ëîø backup-ôàéë"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving files to the new partition"
-msgstr "Ïðåìåñòè ôàéëîâåòå íà íîâ äÿë"
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+#, fuzzy
+msgid "Restore"
+msgstr "Âúçñòàíîâè îò ôàéë"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s ñ ÅÊÑÏÅÐÈÌÅÍÒÀËÍO õàðäóåðíî 3D óñêîðåíèå"
+#: ../../standalone/drakbackup_.c:4189
+msgid ""
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
+msgstr ""
-#: ../../help.pm:1 ../../interactive.pm:1
-#, c-format
-msgid "Advanced"
-msgstr "Íàïðåäíè÷àâ"
+#: ../../standalone/drakbackup_.c:4195
+msgid ""
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer"
-msgstr "Ïðåõâúðëè"
+#: ../../standalone/drakbackup_.c:4209
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Ñëåäíèòå ïàêåòè ùå áúäàò èíñòàëèðàíè"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Äâîðàê (Øâåäñêà)"
+#: ../../standalone/drakbackup_.c:4232
+#, fuzzy
+msgid "Please select data to restore..."
+msgstr "Ìîëÿ, èçáåðåòå èçïîëçâàí åçèê."
-#: ../../lang.pm:1
-#, c-format
-msgid "Afghanistan"
-msgstr "Àôãàíèñòàí"
+#: ../../standalone/drakbackup_.c:4267
+#, fuzzy
+msgid "Please select media for backup..."
+msgstr "Ìîëÿ, èçáåðåòå èçïîëçâàí åçèê."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "More Options"
-msgstr "Äîïúëíèòåëíè îïöèè"
+#: ../../standalone/drakbackup_.c:4275
+#, fuzzy
+msgid "Please select data to backup..."
+msgstr "Ìîëÿ, èçáåðåòå èçïîëçâàí åçèê."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
+msgid ""
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "Áóðóíäè"
-
-#: ../../services.pm:1
-#, 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."
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
msgstr ""
-"cron å ñòàíäàðòíà UNIX ïðîãðàìà, êîÿòî ïåðèîäè÷íî ïóñêà îïðåäåëåíè ïðîãðàìè\n"
-"ïî ðàçïèñàíèå. vixie cron äîáàâÿ ìíîæåñòâî ïðåèìóùåñòâà íàä òåçè íà ïðîñòèÿ\n"
-"UNIX cron, âêëþ÷èòåëíî ïî-äîáðà ñèãóðíîñò è ìîùíè íàñòðîéâàùè îïöèè."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr "Äîáàâÿ êëèåíò -->"
+#: ../../standalone/drakbackup_.c:4382
+#, fuzzy
+msgid "Backup system files"
+msgstr "Ëîø backup-ôàéë"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "Ïðî÷åòåòå âíèìàòåëíî !"
+#: ../../standalone/drakbackup_.c:4384
+#, fuzzy
+msgid "Backup user files"
+msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
-msgstr "RW"
+#: ../../standalone/drakbackup_.c:4386
+#, fuzzy
+msgid "Backup other files"
+msgstr "Ëîø backup-ôàéë"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "Ïîðò"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-msgstr "Íÿìà èçáðàíî ÿäðî!"
-
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Íàòèñíåòå 'enter' çà äà ñòàðòèðàòå èçáðàíàòà ÎÑ, 'e' äà ðåäàêòèðàòå"
+#: ../../standalone/drakbackup_.c:4416
+#, fuzzy
+msgid "Sending files..."
+msgstr "Çàïàçè âúâ ôàéë"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
-msgstr "Çàäàâà-GID"
+#: ../../standalone/drakbackup_.c:4500
+#, fuzzy
+msgid "Backup Now from configuration file"
+msgstr "Íàñòðîéêà íà ìðåæàòà"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The encryption keys do not match"
-msgstr "Êëþ÷îâåòå çà êðèïòèðàíå íå ñúâïàäàò"
+#: ../../standalone/drakbackup_.c:4505
+#, fuzzy
+msgid "View Backup Configuration."
+msgstr "Íàñòðîéêà íà ìðåæàòà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
+#: ../../standalone/drakbackup_.c:4526
+#, fuzzy
+msgid "Wizard Configuration"
+msgstr "Íàñòðîéêà"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "USB printer"
-msgstr ", USB ïðèíòåð"
+#: ../../standalone/drakbackup_.c:4531
+#, fuzzy
+msgid "Advanced Configuration"
+msgstr "Íàñòðîéêà íà ëîêàëíà ìðåæà"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Äåñåí \"Windows\" êëàâèø"
+#: ../../standalone/drakbackup_.c:4536
+#, fuzzy
+msgid "Backup Now"
+msgstr "Ôàéëîâè ñèñòåìè"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4624
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."
-msgstr ""
-"Ïðåäè äà ïðîäúëæèòå, òðÿáâà âíèìàòåëíî äà ïðî÷åòåòå óñëîâèÿòà íà ëèöåíçà. "
-"Òîé\n"
-"ïîêðèâà öÿëàòà Mandrake Linux äèñòðèáóöèÿ, è, àêî ñòå ñúãëàñíè ñ âñè÷êè "
-"óñëîâèÿ\n"
-"â íåãî, ñëîæåòå îòìåòêà íà \"%s\".Àêî íå ñòå ñúãëàñíè,ïðîñòî ñïðåòå "
-"êîìïþòúðà ñè."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
+"options description:\n"
"\n"
-msgstr ""
-"Òîâà å ñïèñúê îò íàëè÷íè çà ïå÷àò îïöèè îòíàñÿùè ñå çà òåêóùèÿò ïðèíòåð:\n"
+" In this step Drakbackup allow you to change:\n"
"\n"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "Ðàçäåëèòåëíà ñïîñîáíîñò"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\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."
-msgstr ""
-"Íàñòðîé÷èê çà ìàëêà çàùèòíà ñòåíà\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
"\n"
-"Òîâà íàñòðîéâà ïåðñîíàëíà çàùèòíà ñòåíà çà òàçè Mandrake Linux ìàøèíà.\n"
-"Çà ìîùíî ïîñòâåòåíî íà çàùèòàòà ðåøåíèå, ìîëå, ïîãëåäíåòå ñïåöèàëèçèðàíàòà\n"
-"MandrakeSecurity Firewall äèñòðèáóöèÿ."
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid ""
-"Please enter your username, password and domain name to access this host."
msgstr ""
-"Ìîëÿ, âúâåäåòå âàøåòî èìå, ïàðîëà è èìå íà äîìåéí çà äîñòúï äî òîçè õîñò."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Remove selected host"
-msgstr "Èçòðèâàíå íà èçáðàíèÿ àäðåñ"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network configuration"
-msgstr "Íàñòðîéêà íà ìðåæàòà"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Àâòîìàòè÷íî îòêðèâà _jaz óñòðîéñòâà"
-
-#: ../../any.pm:1
-#, c-format
-msgid "No sharing"
-msgstr "Íå ïîäåëÿ"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Ïðåìåñòâà èçáðàíîòî ïðàâèëî åäíî íèâî íàäîëó"
-
-#: ../../common.pm:1
-#, c-format
-msgid "TB"
-msgstr "ÒÁ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "FATAL"
-msgstr "ÔÀÒÀËÍÎ"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh the list"
-msgstr "Îïðåñíè ñïèñúêà ñ ïîòðåáèòåëèòå"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4654
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."
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4662
msgid ""
-"The DHCP server will allow other computer to boot using PXE in the given "
-"range of address.\n"
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
"\n"
-"The network address is %s using a netmask of %s.\n"
"\n"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete"
-msgstr "Èçòðèé"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4701
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?"
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
+"\n"
msgstr ""
-"Kîìïþòúðà âè ìîæå àâòîìàòè÷íî, äà âëåçå â X ïðè ñòàðòèðàíå.\n"
-"Èñêàòå ëè X äà ñå ñòàðòèðà, êîãàòî ðåñòàðòèðàòå ñèñòåìàòà?"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
-msgstr "Ñúçäàé äèñêúò"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnect %s"
-msgstr "Ðàçêà÷âà %s"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
-msgstr "Ñúñòîÿíèå:"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "SSH Server"
-msgstr "SSH Ñúðâúð"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
+#: ../../standalone/drakbackup_.c:4727
+msgid ""
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
-msgstr "Åâðîïåéñêè ïðîòîêîë"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", ïðèíòåð \"%s\" íà ñúðâúð \"%s\""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
+#: ../../standalone/drakbackup_.c:4729
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
-#, c-format
-msgid "Error"
-msgstr "Ãðåøêà"
-
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
-msgstr "ïîçâîëÿâà \"su\""
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Australia"
-msgstr "Àâñòðàëèÿ"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
+#: ../../standalone/drakbackup_.c:4732
+msgid ""
+"Description:\n"
+"\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
+"\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
+"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
+"\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
+"\n"
+"\n"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Íàñòðîéêà ñàìî íà êàðòà \"%s\"(%s)"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Level"
-msgstr "Íèâî"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Change the printing system"
-msgstr "Ïðîìÿíà ñèñòåìàòà çà ïå÷àò"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4769
msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
msgstr ""
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr "ìîíòèðàíåòî íå óñïÿ: "
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "Íàñòðîéêà íà óñëóãèòå"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Broadcast àäðåñ:"
-
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4778
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."
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
msgstr ""
-#: ../../any.pm:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Image"
-msgstr "Îáðàç"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Remote Administration"
-msgstr "Îòäàëå÷åíà àäìèíèñòðàöèÿ"
+msgid "Installation of %s failed. The following error occured:"
+msgstr "Èíñòàëàöèÿòà íà %s ïðîâàëåíà. Ïîÿâè ñå ñëåäíàòà ãðåøêà:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
msgstr ""
-"Íåóñïåõ ïðè äîáàâÿíå íà ïðèíòåð \"%s\" íà Star Office/OpenOffice.org/GIMP."
-#: ../../modules.pm:1
-#, c-format
-msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
msgstr ""
-"PCMCIA ïîäðúæêàòà íÿìà ïîâå÷å äà ñúùåñâòóâà çà ÿäðî 2.2. Ìîëÿ, èçïîëçâàéòå "
-"2.4"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Selected All"
-msgstr "Èçáèðà âñè÷êî"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Îáùà Unix Ïðèíòåðíà Ñèñòåìà"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Webmin Service"
-msgstr "Webmin Îáñëóæâàíå"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
-msgstr "óñòðîéñòâî"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Ìîëÿ âåâåäåòå äèðåêòîðèÿòà çà çàïàçâàíå:"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
-msgstr "Ãúðöèÿ"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "Âñè÷êè"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Êîÿ ïðèíòåðíà ñèñòåìà (spooler) èçêàòå äà èçïîëçâàòå ?"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "July"
-msgstr "Þëè"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Prints into %s"
-msgstr ", ïå÷àò íà %s"
-
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "Ïîÿâè ñå ãðåøêà"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
msgstr ""
-"Òîçè ïàêåò òðÿáâà äà áúäå îáíîâåí\n"
-"Ñèãóðíè ëè ñòå, ÷å èñêàòå äà ãî èçêëþ÷èòå ?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "Òàìèëñêà (ïèøåùà ìàøèíà)"
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Êîíçîëíè èíñòðóìåíòè"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
-msgstr ""
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Êîíòðîëåí öåíòúð"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
-msgstr "ðú÷íî"
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "çàäúëæèòåëåí"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
-msgstr ""
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Ìèøêà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Ïðîèçâîäèòåë íà ïðèíòåðà, ìîäåë, äðàéâåð"
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Îòäàëå÷åí ïðèíòåð"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-"Íÿìà íîñèòåë â óñòîéñòâîòî èëè å çàùèòåíà îò ïèñàíå %s.\n"
-"Ìîëÿ ïîñòàâåòå åäèí."
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Îáùî èìå"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Directory %s already contains data\n"
-"(%s)"
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
msgstr ""
-"Äèðåêòîðèÿòà %s âå÷å ñúäúðæà íÿêàêâè äàííè\n"
-"(%s)"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Ïðèíòåð íà NetWare ñúðâúð"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Äàâà ðàçìåðà RAM-ïàìåò â Mb"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Friday"
-msgstr "Ïåòúê"
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Ðàçêà÷âàíåòî îò Èíòåðíåò å çàâúðøåíî"
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Ïðèíòåð"
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "Èñòèíñêî èìå"
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Ìàãüîñíèê çà íàñòðîéêà íà ìðåæàòà"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "done"
-msgstr "ãîòîâî"
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Application:"
+msgstr "Èäåíòèôèêàöèÿ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Ìîëÿ ìàõíåòå îòìåòêàòà èëè ãî èçòðèéòå ñëåäâàùèÿ ïúò."
+#: ../../standalone/drakbug_.c:76
+#, fuzzy
+msgid "Package: "
+msgstr "Èçáîð íà ïàêåòè"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Higher"
-msgstr "Ïî-âèñîêî"
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Èçáåðåòå äÿëîâåòå, êîèòî èñêàòå äà ôîðìàòèðàòå"
+#: ../../standalone/drakbug_.c:78
+#, fuzzy
+msgid "Release: "
+msgstr "Ìîëÿ èç÷àêàéòå"
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbug_.c:93
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"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't find %s on %s"
-msgstr "Íå ìîãà äà íàìåðÿ %s íà %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "ßïîíñêà 106 êëàâèøà"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Òîâà ùå îòíåìå íÿêîëêî ìèíóòè."
+#: ../../standalone/drakbug_.c:112
+#, fuzzy
+msgid "Report"
+msgstr "ïîðò"
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
-msgstr "Áóðêèíà Ôàñî"
+#: ../../standalone/drakbug_.c:148
+#, fuzzy
+msgid "Not installed"
+msgstr "Èçõîä îò èíñòàëàöèîííàòà ïðîãðàìà"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "June"
-msgstr "Þíè"
+#: ../../standalone/drakbug_.c:160
+#, fuzzy
+msgid "Package not installed"
+msgstr "Èçõîä îò èíñòàëàöèîííàòà ïðîãðàìà"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use scanners on remote computers"
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Delete selected rule"
-msgstr "Èçòðèâà èçáðàíîòî ïðàâèëî"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Ðàáîòà ñ îòäàëå÷åíè CUPS ñúðâúðè"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Ñëîæåòå äèñêåòà â óñòðîéñòâî %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
-msgstr "Ìàëäèâè"
-
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "êîìïàêòåí"
+#: ../../standalone/drakbug_.c:180
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Ìîæåòå äà èçáåðåòå äðóãè åçèöè, êîèòî ùå áúäàò íàëèöå ñëåäèíñòàëàöèÿòà"
-#: ../../common.pm:1
+#: ../../standalone/drakconnect_.c:75
#, c-format
-msgid "1 minute"
-msgstr "1 ìèíóòà"
+msgid "Network configuration (%d adapters)"
+msgstr "Íàñòðîéêà íà ìðåæàòà (%d àäàïòåðà)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: fat"
-msgstr "òèï: fat"
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+msgid "Profile: "
+msgstr "Ïðîôèë: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "on channel %d id %d\n"
-msgstr "íà êàíàë %d id %d\n"
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
+msgstr "Èçòðîé ïðîôèë ..."
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
-msgstr ", ìíîãîôóíêöèîíàëíî óñòðîéñòâî"
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
+msgstr "Ïðîôèë çà èçòðèâàíå:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr "Ëàîñ"
+#: ../../standalone/drakconnect_.c:125
+msgid "New profile..."
+msgstr "Íîâ ïðîôèë ..."
-#: ../advertising/04-configuration.pl:1
-#, c-format
+#: ../../standalone/drakconnect_.c:131
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!"
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
msgstr ""
+"Èìå íà ñúçäàâàíèÿ ïðîôèë (íîâèÿò ïðîôèë ñå ñúçäàâà êàòî êîïèå íà òåêóùèÿ):"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
-msgstr ""
+#: ../../standalone/drakconnect_.c:157
+msgid "Hostname: "
+msgstr "Èìå íà õîñò:"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr "Íÿìà FAT äÿëîâå çà ñìÿíà íà ãîëåìèíàòà (èëè íÿìà äîñòàú÷íî ìÿñòî)"
+#: ../../standalone/drakconnect_.c:164
+msgid "Internet access"
+msgstr "Èíòåðíåò äîñòúï"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr "Ãîðå"
+#: ../../standalone/drakconnect_.c:177
+msgid "Type:"
+msgstr "Òèï: "
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
-msgstr "Çàùèòíà ñòåíà"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "Gateway:"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr ""
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Interface:"
+msgstr "Èíòåðôåéñ:"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr "(E)IDE/ATA êîíòðîëåðè"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
+msgstr "Ñúñòîÿíèå:"
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "Ñúðâúð íà ïðèíòåðà"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Custom configuration"
-msgstr "Ïîòðåáèòåëñêà íàñòðîéêà"
+#: ../../standalone/drakconnect_.c:216
+msgid "Configure Internet Access..."
+msgstr "Íàñòðîéêà íà Èíòåðíåò äîñòúïà ..."
-#: ../../standalone/drakpxe:1
-#, 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"
-msgstr ""
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+msgid "LAN configuration"
+msgstr "Íàñòðîéêà íà LAN"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr "Ñâåòè Ïèåð è Ìèêåëîí"
+#: ../../standalone/drakconnect_.c:228
+msgid "Driver"
+msgstr "Äðàéâåð"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "September"
-msgstr "Ñåïòåìâðè"
+#: ../../standalone/drakconnect_.c:228
+msgid "Interface"
+msgstr "Èíòåðôåéñ"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr ""
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
+msgstr "Ïðîòîêîë"
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
-msgstr "Ïîðòóãàëèÿ"
+#: ../../standalone/drakconnect_.c:228
+msgid "State"
+msgstr "Ñúñòîÿíèå"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "Èìàòå ëè äðóã(è) ?"
+#: ../../standalone/drakconnect_.c:240
+msgid "Configure Local Area Network..."
+msgstr "Íàñòîéêà íà ëîêàëíà ìðåæà ..."
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", printing to %s"
-msgstr ", ïå÷àò íà %s"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
+msgstr "Öúêíåòå òóê, çà äà ñòàðòèðàòå ìàãüîñíèêà ->"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Ïîëó÷àâàíå íà èìå îò DHCP àäðåñ"
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "Ìàãüîñíèê..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to normal mode"
-msgstr "Ïðåìèíè â Íîðìàëåí ðåæèì"
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
+msgstr "Ïðèëîæè"
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
-msgstr "Îáù"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Connected"
+msgstr "Ñâúðçàí"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Îò öèëèíäúð %d äî öèëèíäúð %d\n"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Not connected"
+msgstr "Íå ñâúðçàí"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
-msgstr ""
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
+msgstr "Ñâúðçâàíå ..."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "New profile..."
-msgstr "Íîâ ïðîôèë ..."
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
+msgstr "Îòâúðçâàíå ..."
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
-#, c-format
-msgid "NONE"
+#: ../../standalone/drakconnect_.c:400
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "Íà êîé äèñê èñêàòå äà ãî ïðåìåñòèòå ?"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Display logo on Console"
-msgstr "Ïîêàçâà ëîãî íà Êîíçîëà"
+#: ../../standalone/drakconnect_.c:427
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Íÿìàòå íàñòðîåí èíòåðôåéñ.\n"
+"Íàñòðîéòå ãè ïðåäè òîâà, êàòî öúêíåòå íà 'Íàñòðîéêà'"
-#: ../../any.pm:1
-#, c-format
-msgid "Windows Domain"
-msgstr "Windows äîìåéí"
+#: ../../standalone/drakconnect_.c:449
+msgid "LAN Configuration"
+msgstr "Íàñòðîéêà íà ëîêàëíà ìðåæà"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Saami (norwegian)"
-msgstr "Ñààìè (íîðâåæêà)"
+msgid "Adapter %s: %s"
+msgstr "Àäàïòåð %s: %s"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Interface %s (on network %s)"
-msgstr "Èíòåðôåéñ %s (íà ìðåæà %s)"
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
+msgstr "Ñòàðòèðàù ïðîòîêîë"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
-msgstr "ÈÍÔÎ"
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
+msgstr "Ïóñíàò ïðè ñòàðòèðàíå"
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
-msgstr "Óîëèñ è Ôóòóíà Îñòðîâè"
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
+msgstr "DHCP êëèåíò"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Òðÿáâà äà ñúçäàäåòå ïúðâî /etc/dhcpd.conf!"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "activate now"
+msgstr "àêòèâèðàé ñåãà"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
-msgstr ""
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "deactivate now"
+msgstr "äåàêòèâèðàé ñåãà"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:499
msgid ""
-"No additional information\n"
-"about this service, sorry."
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
msgstr ""
-"Íÿìà äîïúëíèòåëíà èíôîðìàöèÿ\n"
-"çà òàçè óñëóãà, ñúæåëÿâàì."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
+#: ../../standalone/drakconnect_.c:556
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
msgstr ""
+"Íÿìàòå Internet âðúçêà.\n"
+"Ñúçäàéòå òàêàâà, êàòî öúêíåòå íà 'Íàñòðîé'"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Ïîñòðîÿâà åäèíè÷åí NIC -->"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "Ìàðøàëîâè Îñòðîâè"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "Âñè÷êî ïðàâèëíî ëè å ?"
+#: ../../standalone/drakconnect_.c:580
+msgid "Internet connection configuration"
+msgstr "Íàñòðîéêà íà Èíòåðíåò âðúçêà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet Connection Configuration"
+msgstr "Íàñòðîéêà íà Èíòåðíåò âðúçêà"
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr "Âúâåäåòå ïàðîëà çà root"
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+msgid "Connection type: "
+msgstr "Òèï íà âðúçêàòà: "
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Ïîñòðîÿâà âñè÷êè ÿäðà -->"
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
+msgstr "Ïàðàìåòðè"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVDRAM device"
-msgstr "DVDRAM óñòðîéñòâî"
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Gateway"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
-msgstr ""
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
+msgstr "Ethernet êàðòà"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Íÿìàòå swap-äÿë\n"
-"\n"
-"Äà ïðîäúëæà ëè âñå ïàê ?"
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
+msgstr "DHCP êëèåíò"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Version: "
-msgstr "Âåðñèÿ: "
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Server IP missing!"
-msgstr "Ëèïñâà IP íà ñúðâúð"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Module name"
+msgstr "Èìå íà ìîäóë"
-#: ../../lang.pm:1
-#, c-format
-msgid "Suriname"
-msgstr "Ñóðèíàì"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Size"
+msgstr "Ãîëåìèíà"
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid "Use a floppy"
-msgstr "Çàïàçè íà äèñêåòà"
+#: ../../standalone/drakfloppy_.c:45
+msgid "drakfloppy"
+msgstr "drakfloppy"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
-msgstr "Ñòàðòèðàíå îò CD "
+#: ../../standalone/drakfloppy_.c:63
+msgid "boot disk creation"
+msgstr "ñúäàâàíå íà ñòàðòèðàùà äèñêåòà"
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
-msgstr ""
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr "ïî ïîäðàáèðàíå"
-#: ../../help.pm:1
+#: ../../standalone/drakfloppy_.c:87
#, c-format
-msgid "Graphical Environment"
-msgstr "Ãðàôè÷íà ñðåäà"
+msgid "DrakFloppy Error: %s"
+msgstr "Ãðåøêà DrakFloppy: %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
-msgstr "Ãèáðàëòàð"
+#: ../../standalone/drakfloppy_.c:98
+msgid "kernel version"
+msgstr "âåðñèÿ íà ÿäðîòî"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Do nothing"
-msgstr "Íå ïðàâè íèùî"
+#: ../../standalone/drakfloppy_.c:104
+msgid "General"
+msgstr "Îñíîâíî"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete Client"
-msgstr "Èçòðèâà êëèåíò"
+#: ../../standalone/drakfloppy_.c:109
+msgid "Expert Area"
+msgstr "Äîïúëíèòåëíè"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "Âèä ôàéëîâà ñèñòåìà: "
+#: ../../standalone/drakfloppy_.c:112
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd äîïúëíèòåëíè àðãóìåíòè"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting network..."
-msgstr "Ñòàðòèðàíå ìðåæàòà ...."
+#: ../../standalone/drakfloppy_.c:113
+msgid "Add a module"
+msgstr "Äîáàâè ìîäóëà"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
-msgstr "Âèåòíàì"
+#: ../../standalone/drakfloppy_.c:133
+msgid "force"
+msgstr "ïðèíóäèòåëíî"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Ïîëåòà îïèñàíèå"
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
+msgstr "àêî å íóæíî"
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr "Îïòèìèçèðà âàøàòà ñèãóðíîñò"
+#: ../../standalone/drakfloppy_.c:135
+msgid "omit scsi modules"
+msgstr "áåç scsi ìîäóëè"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-" Áëàãîäàðíîñòè:\n"
-"\t- LTSP Ïðîåêò http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
+msgstr "áåç raid ìîäóëè"
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Help"
-msgstr "Ïîìîù"
+#: ../../standalone/drakfloppy_.c:172
+msgid "Remove a module"
+msgstr "Ïðåìàõíè ìîäóëà"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
-msgstr ""
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
+msgstr "Ðåçóëòàò"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Your personal phone number"
-msgstr "Ëè÷íèÿ âè òåëåôîíåí íîìåð"
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
+msgstr "Ñúçäàé äèñêúò"
-#: ../../install_interactive.pm:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "Which size do you want to keep for Windows on"
-msgstr "Êîëêî èñêàòå äà îñòàâèòå çà windows?"
+msgid "Be sure a media is present for the device %s"
+msgstr "Ïðîâåðåòå èìàòå ëè äèñêåòà â óñòðîéñòâîòî %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakfloppy_.c:341
+#, fuzzy, c-format
msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
-"Òåñòîâèòå ñòðàíèöè ñà èçïðàòåíè êúì ïðèíòåðíà.\n"
-"Ìîæå äà îòíåìå ìàëêî âðåìå ïðåäè ïðèíòåðà äà çàïî÷íå.\n"
+"Íÿìà äèñêåòà â óñòîéñòâîòî %s.\n"
+"Ìîëÿ ïîñòàâåòå äèñêåòà."
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "Username required"
-msgstr "Èçèñêâà ïîòðåáèòåëñêî èìå"
+msgid "Unable to fork: %s"
+msgstr "Íå ìîæå äà ñå ðàáîòè ñ: %s"
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/drakfloppy_.c:349
#, c-format
-msgid "Device"
-msgstr "Óñòðîéñòâî"
-
-#: ../../help.pm:1
-#, fuzzy, 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."
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
msgstr ""
-"Îáèêíîâåíî, DrakX áè òðÿáâàëî äà èçáåðå ïðàâèëíàòà çà âàñ êëàâèàòóðà (â "
-"çàâèñèìîñò\n"
-"îò åçèêà, êîéòî ñòå èçáðàëè) è íÿìà äà ñå íàëîæè äà âèäèòå òàçè ñòúïêà. "
-"Îáà÷å ìîæå äà\n"
-"íÿìàòå êëàâèàòóðà ñúîòâåòñòâàùà òî÷íî íà âàøèÿ åçèê: íàïðèìåð, àêî ñòå "
-"àíãëîãîâîðÿù øâåä,\n"
-"ìîæå áè ùå èñêàòå êëàâèàòóðàòà âè äà áúäå øâåäñêà. Èëè àêî ãîâîðèòå "
-"aíãëèéñêè, íî ñòå\n"
-"â Êâåáåê, ìîæå áè ùå ñòå â ñúùàòà ñèòóàöèÿ. È â äâàòà ñëó÷àÿ, ùå òðÿáâà äà "
-"ñå âúðíåòå\n"
-"êúì òàçè èíñòàëàöèîííà ñòúïêà è äà èçáåðåòå ïðàâèëíàòà êëàâèàòóðà îò "
-"ñïèñúêà.\n"
-"\n"
-"Âñè÷êî, êîåòî òðÿáâà äà íàïðàâèòå, å äà ïîñî÷èòå ïðåäïî÷èòàíàòà êëàâèàòóðíà "
-"íàðåäáà\n"
-"îò ñïèñúêà, êîéòî ùå ñå ïîÿâè ïðåä âàñ.\n"
-"\n"
-"Àêî èìàòå êëàâèàòóðà îò åçèê ðàçëè÷åí îò òîçè èçïîëçâàí ïî ïîäðàçáèðàíå, "
-"öúêíåòå\n"
-"íà áóòîíà \"Íàïðåäíè÷àâ\". Ùå âè áúäå ïðåäîñòàâåí ïúëåí ñïèñúê ñ "
-"ïîääúðæàíèòå êëàâèàòóðè."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Íàñòðîéêè íà SMB (Windows 9x/NT) ïðèíòåð"
+"Íåìîæå äà ñå çàòâîðè ïðàâèëíî mkbootdisk: \n"
+" %s \n"
+" %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "mkinitrd optional arguments"
-msgstr "mkinitrd äîïúëíèòåëíè àðãóìåíòè"
-
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Ïðîòîêîë çà îñòàíàëèÿ ñâÿò"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print test pages"
-msgstr "Îòïå÷àòâàíå íà òåñòîâè ñòðàíèöè"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Activate now"
-msgstr "àêòèâèðàé ñåãà"
+#: ../../standalone/drakfont_.c:242
+#, fuzzy
+msgid "no fonts found"
+msgstr "%s íå å íàìåðåíî"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
-msgstr "64 ÌÁ èëè ïîâå÷å"
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+#, fuzzy
+msgid "done"
+msgstr "Ãîòîâî"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
msgstr ""
-"Ìîëÿ, èçáåðåòå òåñòîâà ñòðàíèöà çà ïå÷àò.\n"
-"Çàáåëåæêà: òåñòîâàòà ñòðàíèöà çà ñíèìêà ìîæå äà îòíåìå äîñòà äúëãî\n"
-"âðåìå äà ñå èçïå÷àòà è íà ëàçåðíè ïðèíòåðè ñ ìàëêî ïàìåò ìîæå âúîáùå\n"
-"äà íå èçëåçå.  ïîâå÷åòî ñëó÷àè å äîñòàòú÷íà ñòàíäàðòíà òåñòîâà ñòðàíèöà."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Not formatted\n"
-msgstr "Íåôîðìàòèðàí\n"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Periodic Checks"
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "PXE Server Configuration"
-msgstr "Êîíôèãóðèðàíå íà PXE ñúðâúð"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup the system files before:"
-msgstr "Ðåçåðâíî êîïèå íà ôàéëîâå ïðåäè:"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
msgstr ""
-"Òîâà å ñòàíäàðòíàòà ñèãóðíîñò ïðåïîðú÷èòåëíà çà êîìïþòúð, êîéòî ùå áúäå "
-"èçïîëçâàí äà ñå ñâúðçâà êúì Èíòåðíåò êàòî êëèåíò."
-
-#: ../../any.pm:1
-#, c-format
-msgid "First floppy drive"
-msgstr "Ïúðâî ôëîïè óñòðîéñòâî"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Ôàéë/_Èçëèçà"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak"
-msgstr "Äâîðàê"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose the new size"
-msgstr "Èçáåðåòå íîâà ãîëåìèíà"
+#: ../../standalone/drakfont_.c:359
+#, fuzzy
+msgid "Fonts copy"
+msgstr "Ôîðìàòèðàé äèñêåòàòà"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Media class"
-msgstr "Êëàñ íîñèòåë"
+#: ../../standalone/drakfont_.c:363
+#, fuzzy
+msgid "True Type fonts installation"
+msgstr "Ïîäãîòâÿì èíñòàëàöèÿòà"
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Faroe Islands"
-msgstr "Îñòðîâè Ôàðî"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Restart XFS"
-msgstr "Ðåñòàðòèðà XFS"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
-msgstr "Äîáàâÿ õîñò/ìðåæà"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake will not be started now."
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model name"
-msgstr "Èìå íà ìîäåë"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
-msgstr "Àëáàíèÿ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr "Àíãëèéñêè òåðèòîðèè â Èíäèéñêèÿ îêåàí"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Normal Mode"
-msgstr "Íîðìàëåí ðåæèì"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer connection type"
-msgstr "Òèï íà âðúçêàòà êúì ïðèíòåðà"
-
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
-msgstr "Íÿìàòå ìðåæîâ àäàïòåð!"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network %s"
-msgstr "Ìðåæà %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
-msgstr "Ìàëàéëàì"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Îïöèÿòà %s å èçâúí ãðàíèöèòå !"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connect %s"
-msgstr "Ñâúðçâà %s"
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "Ðåñòàðòèðàíå íà CUPS..."
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Ïå÷àòàíå/Ñêàíèðàíå/Ôîòî êàðòè÷êè íà ïðèíòåð \"%s\""
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
+msgstr ""
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
msgstr ""
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Äóáëèðàé òî÷êàòà íà ìîíòèðàíå %s"
+#: ../../standalone/drakfont_.c:459
+#, fuzzy
+msgid "Restart XFS"
+msgstr "ñòàðòèðàé ãî"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
msgstr ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "Íàñòðîéêà íà âðúçêàòà"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|Generic"
-msgstr "Íåèçâåñòåí|Îáù"
+#: ../../standalone/drakfont_.c:528
+#, fuzzy
+msgid "xfs restart"
+msgstr "îãðàíè÷è"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
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"
+"Before installing any fonts, be sure that you have the right to use and "
+"install them on your system.\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."
+"-You can install the fonts using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-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
-#, c-format
-msgid "Quit"
-msgstr "Èçõîä"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "Àâòîìàòè÷íî ñúçäàâàíå"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Ïðîâåðêà çà ëîøè ñåêòîðè ?"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Other MultiMedia devices"
-msgstr "Äðóãà ìóëòèìåäèéíè óñòðîéñòâà"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "burner"
-msgstr "çàïèñâà÷êà"
+#: ../../standalone/drakfont_.c:621
+#, fuzzy
+msgid "Fonts Importation"
+msgstr "Ôîðìàòèðàíå íà äÿëîâå"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Bug Description/System Information"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid " (Default is all users)"
-msgstr "Ïîòðåáèòåë ïî ïîäðàçáèðàíå"
+#: ../../standalone/drakfont_.c:658
+#, fuzzy
+msgid "Uninstall Fonts"
+msgstr "Äåèíñòàëèðàì ïàêåòà"
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "No remote machines"
-msgstr "Íÿìà îòäàëå÷åíè ìàøèíè"
+#: ../../standalone/drakfont_.c:669
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Íàñòðîéêà íà ëîêàëíà ìðåæà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:677
+#, fuzzy
+msgid "Font List"
+msgstr "Ìÿñòî íà ìîíòèðàíå"
+
+#: ../../standalone/drakfont_.c:737
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"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@mandrakesoft.com\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 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"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
+" This program is distributed in the hope that it will be useful,\n"
+" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
+" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
+" GNU General Public License for more details.\n"
"\n"
-"Äîáðå äîøëè íà Ìàãüîñíèêà çà êîíôèãóðèðàíå íà Ïðèíòåð\n"
+" You should have received a copy of the GNU General Public License\n"
+" along with this program; if not, write to the Free Software\n"
+" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
"\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"
"\n"
-"Àêî èìàòå ïðèíòåð(è) ñâúðçàíè êúì òàçè ìàøèíà, âêëþ÷åòå ãè, òàêà ÷å òå äà "
-"ìîãàò äà ñå êîíôèãóðèðàò àâòîìàòè÷íî.\n"
"\n"
-"Öúêíåòå íà \"Ñëåäâàùî\" êîãàòî ñòå ãîòîâè, è íà \"Ïðåêúñâà\" àêî íå èñêàòå "
-"äà íàñòðîéâàòå ïðèíòåðèòå ñåãà."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "NIS èäåíòèôèêàöèÿ"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Îïöèÿòà ``Îãðàíè÷è îïöèèòå îò êîìàíäíèÿ ðåä'' å áåçïîëåçíà áåç ïàðîëà"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Ñïîäåëÿíåòî íà âðúçêàòà êúì Èíòåðíåò å âå÷å àêòèâèðàíî"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "Îáåäèíåíè Àðàáñêè Åìèðñòâà"
+msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "IO_0 íà êàðòàòà"
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:862
+#, fuzzy
+msgid "Choose the applications that will support the fonts:"
+msgstr "Èçáåðåòå äÿëîâåòå, êîèòî èñêàòå äà ôîðìàòèðàòå"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
-msgstr "Çàáðàíÿâà ëîêàëíèòå íàñòðîéêè"
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "Òàéëàíä"
+#: ../../standalone/drakfont_.c:877
+#, fuzzy
+msgid "StarOffice"
+msgstr "Îôèñ"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "IO_1 íà êàðòàòà"
+#: ../../standalone/drakfont_.c:884
+#, fuzzy
+msgid "Abiword"
+msgstr "Îòêàç"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
-msgstr "Òúðñè:"
+#: ../../standalone/drakfont_.c:891
+#, fuzzy
+msgid "Generic Printers"
+msgstr "Ïðèíòåð"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "Êàçàõñòàí"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
-msgstr "Ðóòåðè:"
+#: ../../standalone/drakfont_.c:1005
+#, fuzzy
+msgid "Install List"
+msgstr "Èíñòàëèðàíå íà ñèñòåìàòà"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Write"
-msgstr "Çàïèñ"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
msgstr ""
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Èíñòàëàöèÿ íà Mandrake Linux %s"
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
+msgstr ""
-#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
-msgid "Unknown driver"
-msgstr "Íåèçâåñòåí äðàéâåð"
+#: ../../standalone/drakfont_.c:1116
+#, fuzzy
+msgid "Selected All"
+msgstr "Èçáåðåòå ôàéë"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "Òàéâàíñêà êëàâèàòóðà"
+#: ../../standalone/drakfont_.c:1120
+#, fuzzy
+msgid "Remove List"
+msgstr "Ïðåìàõâàíå íà ïðèíòåðà"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr "Îñòðîâ Áóâåò"
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+#, fuzzy
+msgid "Initials tests"
+msgstr "Ñòàðòîâî ñúîáùåíèå"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "Îïöèè çà èçáèðàíå ïî òåëåôîí"
+#: ../../standalone/drakfont_.c:1145
+#, fuzzy
+msgid "Copy fonts on your system"
+msgstr "Íÿìàòå ìðåæîâ àäàïòåð!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-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 ""
-"Ñìåíåòå CD-ROM !\n"
-"\n"
-"Ìîëÿ, ñëîæåòå CD-ROM îçàãëàâåí \"%s\" â óñòðîéñòâîòî è íàòèñíåòå Ok, êîãàòî "
-"ñòå ãîòîâè.\n"
-"Àêî ãî íÿìàòå, íàòèñíåòå Îòìÿíà, çà äà èçáåãíåòå èíñòàëèðàíåòî îò òîçè CD-"
-"ROM."
+#: ../../standalone/drakfont_.c:1153
+#, fuzzy
+msgid "Post Install"
+msgstr "Èíñòàëèðàé"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "Ïîëñêà"
+#: ../../standalone/drakfont_.c:1178
+#, fuzzy
+msgid "Remove fonts on your system"
+msgstr "Íÿìàòå ìðåæîâ àäàïòåð!"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Online"
-msgstr "Mandrake Online"
+#: ../../standalone/drakfont_.c:1182
+#, fuzzy
+msgid "Post Uninstall"
+msgstr "Èçõîä îò èíñòàëàöèîííàòà ïðîãðàìà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
+msgstr "Ñïîäåëÿíå íà âðúçêàòà ñ Èíòåðíåò"
+
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", ìíîãîôóíêöèîíàëíî óñòðîéñòâî íà íà ïàðàëåëåí ïîðò #%s"
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Ñïîäåëÿíåòî íà âðúçêàòà êúì Èíòåðíåò å âå÷å àêòèâèðàíî"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakgw_.c:126
msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"Â ñèñòåìàòà íå å îòêðèò ethernet ìðåæîâ àäàïòåð. Ìîëÿ, ñòàðòèðàéòå "
-"èíñòðóìåíòà çà íàñòðîéêà íà õàðäóåð."
-
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "Ìðåæîâà ìàñêà"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "No hard drives found"
-msgstr "Íå å íàìåðåí òâúðä äèñê"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "2 áóòîíà"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "Êàêúâ å òèïúò íà ISDN âðúçêàòà ?"
+"Óñòàíîâêàòà íà Ñïîäåëÿíåòî íà Èíòåðíåò âðúçêàòà å çàâúðøåíà.\n"
+" ìîìåíòà å âêëþ÷åíà.\n"
+"\n"
+"Êàêâî èñêàòå äà íàïðàâèòå ?"
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "Åòèêåò"
+#: ../../standalone/drakgw_.c:130
+msgid "disable"
+msgstr "èçêëþ÷è"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "Çàïàçè íà äèñêåòà"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
+msgstr "îñòàâè"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check open ports"
-msgstr "Ïðîâåðÿâà îòâîðåíèòå ïîðòîâå"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "reconfigure"
+msgstr "ïðåíàñòðîéêà"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Edit selected printer"
-msgstr "Íàñòðîéêà íà èçáðàíèÿ ñúðâúð"
+#: ../../standalone/drakgw_.c:133
+msgid "Disabling servers..."
+msgstr "Èçêëþ÷âàíå íà ñúðâúðè ..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Àâòîìàòè÷íî îòêðèâà ïðèíòåð"
+#: ../../standalone/drakgw_.c:142
+msgid "Internet connection sharing is now disabled."
+msgstr "Ñïîäåëÿíåòî íà Èíòåðíåò âðúçêàòà â ìîìåíòà å èçêëþ÷åíî."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Êîÿ îò ñëåäíèòå ISDN êàðòàòè å âàøàòà ?"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Ñïîäåëÿíåòî íà Èíòåðíåò âðúçêàòà å èçêëþ÷åíî."
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:150
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."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"NFS å ïîïóëÿðåí ïðîòîêîë çà îáìåí íà ôàéëîâå ïî TCP/IP ìðåæè.\n"
-"Òàçè óñëóãà îñèãóðÿâà ôóíêöèîíàëíîñòòà íà NFS ñúðâúðà, êîéòî ñå íàñòðîéâà\n"
-"÷ðåç ôàéëà /etc/exports."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Msec"
-msgstr "Ìñåê"
+"Óñòàíîâêàòà íà Ñïîäåëÿíåòî íà Èíòåðíåò âðúçêàòà å âå÷å çàâúðøåíà.\n"
+" ìîìåíòà å èçêëþ÷åíà.\n"
+"\n"
+"Êàêâî èñêàòå äà íàïðàâèòå ?"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> çàáåëåæêà, ïðîìåíåí åòèêåò:\n"
-"%s"
+#: ../../standalone/drakgw_.c:154
+msgid "enable"
+msgstr "âêëþ÷è"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
-msgstr ""
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
+msgstr "Âêëþ÷âàíå íà ñúðâúðè ..."
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Âàøèÿò èçáîð ? (ïî ïîäðàçáèðàíå å `%s')"
+#: ../../standalone/drakgw_.c:166
+msgid "Internet connection sharing is now enabled."
+msgstr "Ñïîäåëÿíåòî íà Èíòåðíåò â ìîìåíòà å âêëþ÷åíî."
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakgw_.c:183
+#, fuzzy
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"
+"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"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
"\n"
-"Click on \"%s\" if you wish to select partitions that will be checked for\n"
-"bad blocks on the disk."
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
-"Âñè÷êè íîâîäåôèíèðàíè äÿëîâå òðÿáâà äà áúäàò ôîðìàòèðàíè, çà äà ñå "
-"èçïîëçâàò\n"
-"(ôîðìàòèðàíå îçíà÷àâà ñúçäàâàíå íà ôàéëîâà ñèñòåìà).\n"
-"\n"
-"Â òîçè ìîìåíòà ìîæå áè èñêàòå äà ïðåôîðìàòèðàòå íÿêîè ñúùåñòâóâàùè äÿëîâå, "
-"çà\n"
-"äà èçòðèåòå âñÿêàêâè äàííè, êîèòî ñúäúðæàò. Àêî èñêàòå äà ãî íàïðàâèòå, "
-"ìîëÿ\n"
-"èçáåðåòå òÿõ.\n"
-"\n"
-"Ìîëÿ, îòáåëåæåòå, ÷å íå å íåîáõîäèìî äà ïðåôîðìàòèðàòå âñè÷êè äÿëîâå\n"
-"ñúùåñòâóâàùè îòïðåäè. Òðÿáâà äà ïðåôîðìàòèðàòå äÿëîâåòå ñúäúðæàùè\n"
-"îïåðàöèîííàòà ñèñòåìà (êàòî \"/\", \"/usr\" èëè \"/var\"), íî òîâà íå å\n"
-"çàäúëæèòåëíî çà äÿëîâå ñúäúðæàùè äàííè, êîèòî èñêàòå äà çàïàçèòå "
-"(îáèêíîâåíî\n"
-"\"/home\").\n"
-"\n"
-"Ìîëÿ, áúäåòå âíèìàòåëíè, êîãàòî èçáèðàòå äÿëîâåòå. Ñëåä ôîðìàòèðàíå âñè÷êè\n"
-"äàííè íà ïîñî÷åíèòå äÿëîâå ùå áúäàò èçòðèòè è íÿìà äà ìîæåòå äà ãè\n"
-"âúçñòàíîâèòå.\n"
-"\n"
-"Öúêíåòå \"OK\", êîãàòî ñòå ãîòîâè äà ôîðìàòèðàòå äàëîâå.\n"
-"\n"
-"Öúêíåòå \"Îòêàç\", àêî èñêàòå äà èçáåðåòå äðóãè äÿëîâå çà èíñòàëàöèÿ íà "
-"íîâàòà\n"
-"ñè Mandrake Linux îïåðàöèîííà ñèñòåìà.\n"
+"Íà ïúò ñòå äà íàñòðîèòå êîìïþòúðà ñè òàêà, ÷å äà ïîäåëÿ Èíòåðíåò âðúçêàòà\n"
+"ñè. Ñ òàçè âúçìîæíîñò, äðóãè êîìïþòðè â ëîêàëíàòà âè ìðåæà ùå ìîãàò äà\n"
+"èçïîëçâàò Èíòåðíåò âðúçêàòà íà òîçè êîìïþòúð.\n"
"\n"
-"Öúêíåòå \"Íàïðåäíè÷àâ\", àêî èñêàòå äà èçáåðåòå äÿëîâå, êîèòî äà áúäàò\n"
-"ïðîâåðåíè çà ëîøè áëîêîâå îò äèñêà."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "French"
-msgstr "Ôðåíñêà"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTY)"
-msgstr "×åøêà (QWERTY)"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow X Window connections"
-msgstr "Ïîçâîëÿâà X Window âðúçêè"
+"Îòáåëåæåòå: òðÿáâà âè îòäåëåí çà òîâà ìðåæîâ àäàïòåð, çà äà óñòàíîâèòå "
+"âúòðåøíàòà ñè ìðåæà (LAN)."
-#: ../../standalone/service_harddrake:1
+#: ../../standalone/drakgw_.c:211
#, c-format
-msgid "Hardware probing in progress"
-msgstr "Ïðîãðåñ íà õàðäóåðíà ïðîáà"
+msgid "Interface %s (using module %s)"
+msgstr "Èíòåðôåéñ %s (èçïîëçâàù ìîäóë %s)"
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
+#: ../../standalone/drakgw_.c:212
#, c-format
-msgid "Net Device"
-msgstr "Ìðåæîâî ó-âî"
+msgid "Interface %s"
+msgstr "Èíòåðôåéñ %s"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "Îáîáùåíèå"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr "Íÿìàòå ìðåæîâ àäàïòåð!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:221
msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
msgstr ""
-" (Ïàðàëåëíè ïîðòîâå: /dev/lp0, /dev/lp1, ..., ñúîòâåòñâàùè íà LPT1:, "
-"LPT2:, ..., 1-âè USB ïðèíòåð: /dev/usb/lp0, 2-ðè USB ïðèíòåð: /dev/usb/"
-"lp1, ...)."
-
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Next"
-msgstr "Ñëåäâàù"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Íå ìîæåòå äà èíñòàëèðàòå bootloader íà äÿëà %s\n"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
-msgstr "Ïóåðòî Ðèêî"
+"Â ñèñòåìàòà íå å îòêðèò ethernet ìðåæîâ àäàïòåð. Ìîëÿ, ñòàðòèðàéòå "
+"èíñòðóìåíòà çà íàñòðîéêà íà õàðäóåð."
-#: ../../network/network.pm:1
-#, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp/zeroconf)"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr "Ìðåæîâ èíòåðôåéñ"
-#: ../../standalone/drakautoinst:1
+#: ../../standalone/drakgw_.c:228
#, c-format
msgid ""
+"There is only one configured network adapter on your system:\n"
"\n"
-"Welcome.\n"
+"%s\n"
"\n"
-"The parameters of the auto-install are available in the sections on the left"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
+"Â ñèñòåìàòà âè èìà ñàìî åäèí íàñòðîåí ìðåæîâ àäàïòåð:\n"
"\n"
-"Äîáðå äîøëè.\n"
+"%s\n"
"\n"
-"Ïàðàìåòðèòå çà àâòîèíñòàëàöèÿ ñà íàëè÷íè â ñåêöèÿòà â ëÿâî"
+"Ñìÿòàì äà óñòàíîâÿ ëîêàëíàòà âè ìðåæà íà òîçè àäàïòåð."
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/drakgw_.c:235
msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
msgstr ""
+"Ìîëÿ èçáåðåòå êîé ìðåæîâ àäàïòåð äà áúäå âêëþ÷åí êúì ëîêàëíàòà âè ìðåæà."
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Telnet server"
-msgstr "X ñúðâúð"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Ëèòâèéñêà \"÷èñëîâà ðåäèöà\" QWERTY"
+#: ../../standalone/drakgw_.c:261
+#, fuzzy
+msgid "Network interface already configured"
+msgstr "Ôóíêöèîíàëíîñòòà íà ìðåæàòà íå å íàñòðîåíà"
-#: ../../install_any.pm:1
+#: ../../standalone/drakgw_.c:262
#, c-format
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
+"Warning, the network adapter (%s) is already configured.\n"
"\n"
+"Do you want an automatic re-configuration?\n"
"\n"
-"Do you really want to remove these packages?\n"
+"You can do it manually but you need to know what you're doing."
msgstr ""
-"Ñëåäíèòå ïàêåòè ùå áúäàò èçòðèòè çà äà ñå ïîçâîëè îáíîâÿâàíå íà ñèñòåìàòà: %"
-"s\n"
-"\n"
-"\n"
-"Äåéñòâèòåëíî ëè èñêàòå äà èçòðèåòå òåçè ïàêåòè?\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
-msgstr "Àíãèëà"
+#: ../../standalone/drakgw_.c:267
+#, fuzzy
+msgid "Automatic reconfiguration"
+msgstr "Àâòîìàòè÷íà íàñòðîéêà íà CUPS"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "NIS äîìåéí"
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "Àíòàðêòèêà"
+#: ../../standalone/drakgw_.c:268
+#, fuzzy
+msgid "Show current interface configuration"
+msgstr "Ïîïðàâè íàñòðîéêèòå íà ïðèíòåð"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:269
+#, fuzzy
+msgid "Current interface configuration"
+msgstr "Ïîïðàâè íàñòðîéêèòå íà ïðèíòåð"
+
+#: ../../standalone/drakgw_.c:270
#, c-format
msgid ""
+"Current configuration of `%s':\n"
"\n"
-"- User Files:\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
-msgstr "Îïöèè çà mount:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Jamaica"
-msgstr "ßìàéêà"
-
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:283
msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
+"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"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
+"\n"
msgstr ""
-"Ñâúðæè ÷èñòè äðàéâåðè ñ áëîêîâè óñòðîéñòâà (êàòî äÿëîâå\n"
-"íà òâúðäèÿ äèñê), çà óïîòðåáàòà îò ïðèëîæåíèÿ êàòî Oracle èëè DVD ïëåúðè"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Ìîëÿ, èç÷àêàéòå, ïîäãîòâÿíå íà èíñòàëàöèÿòà"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "×åøêà (QWERTZ)"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Ïðîñëåäÿâàíå íà ID íà ìðåæîâàòà êàðòà (ïîëåçíî ïðè ëàïòîïè)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Íîìåðúò íà ïîðòà òðÿáâà äà å öÿëî ÷èñëî !"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "You must choose an image file first!"
-msgstr "Âèå òðÿáâà äà èçáåðåòå ïúðâî ãðàôè÷åí ôàéë!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Âúçñòàíîâÿâà îò òâúðä äèñê."
+#: ../../standalone/drakgw_.c:290
+#, fuzzy
+msgid "Local Network adress"
+msgstr "íå å îòêðèòà ìðåæîâà êàðòà"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "Ïðèáàâè êúì LVM"
+#: ../../standalone/drakgw_.c:294
+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 ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "DNS ñúðâúð"
+#: ../../standalone/drakgw_.c:300
+#, fuzzy
+msgid "(This) DHCP Server IP"
+msgstr "IP íà CUPS ñúðâúðà"
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr "Òðèíèäàä è Òîáàãî"
+#: ../../standalone/drakgw_.c:301
+#, fuzzy
+msgid "The DNS Server IP"
+msgstr "IP íà CUPS ñúðâúðà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD è LPRng íå ïîääúðæà IPP ïðèíòåðè.\n"
+#: ../../standalone/drakgw_.c:302
+#, fuzzy
+msgid "The internal domain name"
+msgstr "Íîâî èìå íà ïðèíòåð"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host name or IP."
-msgstr "Èìå íà õîñò: èëè IP"
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
+msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Edit"
-msgstr "/_Ïðîìåíè"
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "ïðîñò"
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
+msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "Èç÷èñòè âñè÷êî"
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No test pages"
-msgstr "Áåç òåñòîâè ñòðàíèöè"
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr "Ôîëêëåíäñêè Îñòðîâè (Ìàëâèíè)"
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid "Adapter %s: %s"
-msgstr "Àäàïòåð %s: %s"
+msgid "Potential LAN address conflict found in current config of %s!\n"
+msgstr "Âúçìîæåí êîíôèêò ñ àäðåñèòå â LAN ñ íàñòðîéêàòà íà %s!\n"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Boot disk creation"
-msgstr "Ñúçäàâàíå íà ñòàðòèðàùà äèñêåòà"
+#: ../../standalone/drakgw_.c:335
+msgid "Configuring..."
+msgstr "Íàñòðîéêà ..."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Monday"
-msgstr "Ïîíåäåëíèê"
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+"Íàñòðîéâàùè ñêðèïòîâå, èíñòàëèðàíå íà ñîôòóåð, ñòàðòèðàíå íà ñúðâúðè..."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:372
#, c-format
-msgid "Unknown model"
-msgstr "Íåèçâåñòåí ìîäåë"
+msgid "Problems installing package %s"
+msgstr "Ïðîáëåìè ñ èíñòàëèðàíåòî íà ïàêåòà %s"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
+#: ../../standalone/drakgw_.c:505
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-"àêî å çàäàåíî äà, ïðîâåðÿâà ôàéëîâåòå/äèðåêòîðèèòå äîñòúïíè çà ïèñàíå îò "
-"âñåêè."
+"Âñè÷êî å íàñòðîåíî.\n"
+"Ñåãà ìîæåòå äà ñïîäåëèòå Èíòåðíåò âðúçêàòà ñè ñ äðóãè êîìïþòðè â ëîêàëíàòà "
+"âè ìðåæà èçïîëçâàéêè àâòîìàòè÷íà ìðåæîâà íàñòðîéêà (DHCP)."
-#: ../../help.pm:1
-#, c-format
-msgid "authentication"
-msgstr "èäåíòèôèêàöèÿ"
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
+msgstr "Óñòàíîâêàòà âå÷å å íàïðàâåíà, íî â ìîìåíòà å èçêëþ÷åíà."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now"
-msgstr "Ðåçåðâíî êîïèå ñåãà"
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
+msgstr "Óñòàíîâêàòà âå÷å å íàïðàâåíà è â ìîìåíòà å âêëþ÷åíà."
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/_Ôàéë"
+#: ../../standalone/drakgw_.c:525
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Íÿìà íàñòðîéâàíî ñïîäåëÿíå íà Èíòåðíåò âðúçêàòà."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Ïðåìàõâàì ïðèíòåð îò Star Office/OpenOffice.org/GIMP"
+#: ../../standalone/drakgw_.c:531
+msgid "Internet connection sharing configuration"
+msgstr "Íàñòðîéêà íà ñïîäåëÿíåòî íà Èíòåðíåò âðúçêàòà"
-#: ../../services.pm:1
+#: ../../standalone/drakgw_.c:539
#, 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."
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"Âêëþ÷è ôèëòðèðàíåòî íà ïàêåòè çà Linux ÿäðà ñåðèÿ 2.2, çà\n"
-"íàñòðîêà íà çàùèòíàòà ñòåíà, s cel çàùèòàâà íà ìàøèíàòà âè îò\n"
-"ìðåæîâè àòàêè."
+"Äîáðå äîøëè â èíñòðóìåíòà çà ñïîäåëÿíå íà Èíòåðíåò âðúçêàòà !\n"
+"\n"
+"%s\n"
+"\n"
+"Öúêíåòå ``Íàñòðîé'', àêî èñêàòå äà ñòàðòèðàíå óñòàíîâÿâàùèÿ ìàãüîñíèê."
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Editable"
-msgstr "èçêëþ÷è"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "group"
+msgstr "Ðàáîòíà ãðóïà"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
+#: ../../standalone/drakperm_.c:36
+msgid "path"
msgstr ""
-"Êàêúâ DHCP êëèåíò èñêàòå äà èçïîëçâàòå ? Ïî ïîäðàçáèðàíå å dhcp-client ?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr "Òàìèëñêà (ISCII-ïîäðåäáà)"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "permissions"
+msgstr "äÿë %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
-msgstr "Ìàéîò"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "user"
+msgstr "Ïîòðåáèòåëñêî èìå"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d KB\n"
-msgstr "%d ÊÁ\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Ïîäãîòâÿì äèñêåòà ñ àâòîìàòè÷íà èíñòàëàöèÿ"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for scanners ..."
-msgstr "Òúðñåíå íà ñêåíåðè ..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
-msgstr "Ðóñèÿ"
+#: ../../standalone/drakperm_.c:44
+#, fuzzy
+msgid "delete"
+msgstr "Èçòðèé"
-#: ../../steps.pm:1
-#, c-format
-msgid "Partitioning"
-msgstr "Ðàçäåëÿíå íà äÿëîâå"
+#: ../../standalone/drakperm_.c:45
+msgid "edit"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
-msgstr "ethernet êàðòè çàñå÷åíè"
+#: ../../standalone/drakperm_.c:46
+#, fuzzy
+msgid "Down"
+msgstr "Ãîòîâî"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
-msgstr "Ñèñòåìåí æóðíàë"
+#: ../../standalone/drakperm_.c:47
+#, fuzzy
+msgid "add a rule"
+msgstr "Äîáàâè ìîäóëà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create catalog!"
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
msgstr ""
-#: ../advertising/11-mnf.pl:1
-#, c-format
+#: ../../standalone/drakperm_.c:51
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."
+"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 ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
-msgstr "Íÿìà äîñòàòú÷íî ìÿñòî çà àâòîìàòè÷íî ðàçïðåäåëÿíå"
+#: ../../standalone/drakperm_.c:56
+#, fuzzy
+msgid "Add a new rule at the end"
+msgstr "Äîáàâè ïðèíòåð"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "Âúâåäåòå ïàðîëà çà root"
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable IP spoofing protection"
+#: ../../standalone/drakperm_.c:58
+msgid "Up selected rule one level"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
msgstr ""
-"Íÿìà ñâîáîäåí äðàéâåð çà âàøàòà çâóêîâà êàðòà (%s), íî èìà ñîáñòâåíè äðàéâåð "
-"íà \"%s\"."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group :"
-msgstr "Ãðóïà :"
+#: ../../standalone/drakperm_.c:60
+#, fuzzy
+msgid "Delete selected rule"
+msgstr "Èçòðèâàíå íà îïàøêàòà"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
msgstr ""
-"Ñëåä ïðîìÿíà ãîëåìèíàòà íà äÿëà %s, äàííète âúðõó íåãî ùå áúäàò çàãóáåíè"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Íàñòðîéêà íà Èíòåðíåò âðúçêà"
+#: ../../standalone/drakperm_.c:231
+#, fuzzy
+msgid "Current user"
+msgstr "Ïðèåìè ïîòðåáèòåë"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
-msgstr ""
+#: ../../standalone/drakperm_.c:236
+#, fuzzy
+msgid "Permissions"
+msgstr "Âåðñèÿ: %s\n"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "USB"
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
-msgstr ""
+#: ../../standalone/drakperm_.c:238
+#, fuzzy
+msgid "Property"
+msgstr "Ïîðò"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
-msgstr "ßäðî:"
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
+msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_About..."
-msgstr "/_Îòíîñíî..."
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
-msgstr "Áåíãàëñêà"
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
-msgstr "Ïðåäïî÷èòàíèå: "
+#: ../../standalone/drakperm_.c:296
+msgid ""
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
+msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Óñëóãè: %d àêòèâèðàíè îò %d ðåãèñòðèðàíè"
+#: ../../standalone/drakperm_.c:297
+#, fuzzy
+msgid "Use owner id for execution"
+msgstr "Èçïîëçâàé àâòîìàòè÷íî çàñè÷àíå"
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "Ñúçäàâàíå íà boot-äèñêåòà"
+#: ../../standalone/drakperm_.c:298
+#, fuzzy
+msgid "Use group id for execution"
+msgstr "Èçïîëçâàé àâòîìàòè÷íî çàñè÷àíå"
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "Ñîëîìîíîâè Îñòðîâè"
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
+msgstr ""
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Ìîëÿ, ïðîáâàéòå ìèøêàòà ñè"
+#: ../../standalone/drakperm_.c:304
+#, fuzzy
+msgid "Path selection"
+msgstr "Çàïàçè èçáîð íà ïàêåòè"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(ìîäóë %s)"
+#: ../../standalone/drakperm_.c:350
+#, fuzzy
+msgid "user :"
+msgstr "Ïîòðåáèòåëñêî èìå"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
+#: ../../standalone/drakperm_.c:352
+#, fuzzy
+msgid "group :"
msgstr "Ðàáîòíà ãðóïà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Èìå íà õîñò çà ïðèíòåðà èëè IP"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "down"
-msgstr "ãîòîâî"
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Íå ñâúðçàí"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Path or Module"
+#: ../../standalone/draksound_.c:47
+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 ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Èìåòî íà ïðèíòåðà òðÿáâà äà ñúäúðæà ñàìî áóêâè, ÷èñëà è ïîä÷åðòàâêà"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Show current interface configuration"
-msgstr "Ïîêàçâà êîíôèãóðàöèÿ íà òåêóùèÿò èíòåðôåéñ"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Add Printer"
-msgstr "Ïðèíòåð"
+#: ../../standalone/draksound_.c:54
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:21
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."
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Development"
-msgstr "Ðàçðàáîòêà"
+#: ../../standalone/draksplash_.c:67
+#, fuzzy
+msgid "first step creation"
+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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Done"
-msgstr "Ãîòîâî"
+#: ../../standalone/draksplash_.c:70
+#, fuzzy
+msgid "final resolution"
+msgstr "Ðàçäåëèòåëíà ñïîñîáíîñò"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Web Server"
-msgstr "Web Ñúðâúð"
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+#, fuzzy
+msgid "choose image file"
+msgstr "Èçáåðåòå ôàéë"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "×èëè"
+#: ../../standalone/draksplash_.c:72
+#, fuzzy
+msgid "Theme name"
+msgstr "Îáùî èìå"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Íàñòðîéêà íà óñëóãèòå"
+
+#: ../../standalone/draksplash_.c:90
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."
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
-"Inkjet ïðèíòåðíèòå äðàéâåðè ïðåäîñòàâåíè îò Lexmark ïîääúðæàò ñàìî ëîêàëíè "
-"ïðèíòåðè, áåç ïðèíòåðè íà îòäàëå÷åíè ìàøèíè èëè ïðèíòåðíè ìàøèíè. Ìîëÿ, "
-"ñâúðæåòå ïðèíòåðà ñè íà ëîêàëåí ïîðò èëè ãî íàñòðîéòå íà ìàøèíàòà, êúì êîÿòî "
-"å ñâúðçàí."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:91
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!"
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "(âå÷å ïðèáàâèõ %s)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation in progress"
-msgstr "Èíñòàëàöèÿ íà Bootloader"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
-msgstr ", èçïîëçâà êîìàíäà %s"
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt è Shift êëàâèøè åäíîâðåìåííî"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
-msgstr "Ôëàãîâå"
+#: ../../standalone/draksplash_.c:95
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Users"
-msgstr "Äîáàâÿ/Èçòðèâà ïîòðåáèòåëè"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "Íàñòðîéêè"
+#: ../../standalone/draksplash_.c:113
+#, fuzzy
+msgid "Preview"
+msgstr "óñòðîéñòâî"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "Âúâåäåíèÿò õîñò/ìðåæà IP íå å ïðàâèëåí.\n"
+#: ../../standalone/draksplash_.c:115
+#, fuzzy
+msgid "Save theme"
+msgstr "Èíñòàëèðàíå íà ñèñòåìàòà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr ""
+#: ../../standalone/draksplash_.c:116
+#, fuzzy
+msgid "Choose color"
+msgstr "Èçáåðåòå ìîíèòîð"
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr "Åòî ïúëåí ñïèñúê íà äîñòðúïíèòå ñòðàíè"
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Àëòåðíàòèâíà òåñòîâà ñòðàíèöà (À4)"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, 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 "This theme haven't yet any bootsplash in %s !"
msgstr ""
-"Àêî èìàòå âñè÷êè CD-òà îò ñïèñúêà ïî-ãîðå, íàòèñíåòå Ok.\n"
-"Àêî íÿìàòå íèòî åäíî îò òåçè CD-òà, íàòèñíåòå Îòìÿíà.\n"
-"Àêî âè ëèïñâàò íÿêîè CD-òà, ìàõíåòå ãè, è íàòèñíåòå Ok. "
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP"
+#: ../../standalone/draksplash_.c:428
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Èçáîð ìîäåë íà ïðèíòåðà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup user files"
-msgstr "Ðåçåðâíî êîïèå íà ïîòðåáèòåëñêè ôàéëîâå"
+#: ../../standalone/draksplash_.c:449
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Âúâåäåòå URI íà ïå÷àòàùî óñòðîéñòâî"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "New"
-msgstr "Íîâ"
+#: ../../standalone/draksplash_.c:458
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Çàñè÷àíå íà óñòðîéñòâà ..."
-#: ../../help.pm:1
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:46
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"
+"XawTV isn't installed!\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"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
"\n"
-"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\"."
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
-msgstr ""
+#: ../../standalone/drakxtv_.c:63
+#, fuzzy
+msgid "Canada (cable)"
+msgstr "Êàíàäñêà (Êâåáåê)"
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
msgstr ""
-"Â òîçè ìîìåíò, òðÿáâà äà èçáåðåòå íèâîòî íà ñèãóðíîñò, êîåòî èñêàòå çà\n"
-"ìàøèíàòà. Ïî ïðàâèëî, êîëêîòî ïîâå÷å ìàøèíàòà âè å äîñòúïíà è êîëêîòî "
-"ïîâå÷å\n"
-"äàííè ñå ñúõðàíÿâàò íà íåÿ, òîëêîâà ïî-âèñîêî òðÿáâà äà å íèâîòî íà "
-"ñèãóðíîñò.\n"
-"Âúïðåêè òîâà, âèñîêàòà ñèãóðíîñò å çà ñìåòêà íà ëåêîòàòà íà ðàáîòà.\n"
-"Îáúðíåòå ñå êúì ãëàâàòà MSEC íà Reference Manual, çà äà ïîëó÷èòå ïîâå÷å "
-"èíôîðìàöèÿ\n"
-"çà çíà÷åíèåòî íà òåçè íèâà.\n"
-"\n"
-"Àêî íå çíàåòå êàêòî äà èçáåðåòå, èçáåðåòå îïöèÿòà ïî ïîäðàçáèðàíå."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "Çàðåäè îò äèñêåòà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Ñëåäíèòå ïðèíòåðè ñà àâòîìàòè÷íî îòêðèòè. "
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Uses command %s"
-msgstr ", èçïîëçâà êîìàíäà %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "Íîðâåæêà"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for new scanners ..."
-msgstr "Òúðñåíå íà íîâè ñêåíåðè ..."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Apache World Wide Web Ñúðâúð"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "select path to restore (instead of /)"
-msgstr "èçáîð íà ïúò çà âúçñòàíîâÿâàíå (âìåñòî /)"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Configure bootsplash picture"
-msgstr "Íàñòðîéêà íà êàðòèíêàòà ïðè çàðåæäàíå"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr "Ãðóçèÿ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "Êèòàé"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr " (Óáåäåòå ñå, ÷å ïðèíòåðèòå ñà ñâúðçàíè è âêëþ÷åíè).\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "×åòåíå íà èíôîðìàöèÿ îò èíñòàëèðàíèòå ïðèíòåðè ..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
-msgstr " Èçòðèâà ñåãà "
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "ñúðâúð"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Ñëîæåòå FAT ôîðìàòèðàíà äèñêåòà â óñòðîéñòâî %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
msgstr ""
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Ìîëÿ, ïî÷àêàéòå ... Ïðèëàãàíå íà íàñòðîéêèòå"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
+msgstr ""
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Äîáðå äîøëè â GRUB ,çà èçáîð íà îïåðàöèîííàòà ñèñòåìà!"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
+msgstr ""
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "Grub"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "East Europe"
+msgstr "Åâðîïà"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
-msgstr "SCSI êîíòðîëåðè"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Ôðàíöèÿ"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr " íà LPD ñúðâúð \"%s\", ïðèíòåð \"%s\""
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "Ireland"
+msgstr "Èñëàíäñêà"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Èçáîð íà ìåíèäæúð íà äèñïëåé"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "West Europe"
+msgstr "Åâðîïà"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Èìå íà Zeroconf õîñò:"
+#: ../../standalone/drakxtv_.c:66
+#, fuzzy
+msgid "Australia"
+msgstr "ñåðèéíà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
msgstr ""
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP àäðåñúò òðÿáâà äà áúäå âúâ ôîðìàò 1.2.3.4"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configure CUPS printing system"
-msgstr "Ïðîìÿíà ñèñòåìàòà çà ïå÷àò"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "Åêâàäîð"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Add an item"
-msgstr "Äîáàâÿíå íà îáåêò"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Ïðèíòåðèòå íà òàçè ìàøèíà ñ äîñòúïíè çà äðóãèòå êîìïþòðè"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "China (Hong Kong)"
-msgstr "Õîíã Êîíã"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
+msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Íå ìîãà äà íàìåðÿ íóæíà êàðòèíêà `%s'."
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr "Íÿìà îòêðèòà çâóêîâà êàðòà. Îïèòàéòå \"harddrake\" ñëåä èíñòàëàöèÿòà"
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
+msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:102
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"Please,\n"
+"type in your tv norm and country"
msgstr ""
-"Çàäàäåí å ãðåøåí ïîðò: %s.\n"
-"Ôîðìàòúò å \"port/tcp\" èëè \"port/udp\", \n"
-"êúäåòî ïîðò å ìåæäó 1 è 65535."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Shell"
-msgstr "Øåë"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sao Tome and Principe"
-msgstr "Ñàî Òîìå è Ïðèíñèïè"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
-msgstr "Íå ìîãà äà âëÿçà êàòî èçïîëçâàì èìå %s (ãðåøíà ïàðîëà?)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "Àçåðáàéäæàíñêà (ëàòèíèöà)"
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package not installed"
-msgstr "Ïàêåòà íå å èíñòàëèðàí"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "American Samoa"
-msgstr "Àìåðèêàíñêà Ñàìîà"
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
+msgstr ""
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Become a MandrakeExpert"
-msgstr "Ñòàíåòå MandrakeExpert"
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Protocol"
-msgstr "Ïðîòîêîë"
+#: ../../standalone/drakxtv_.c:120
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Ïîÿâè ñå ãðåøêà ïðè èíñòàëèðàíå íà ïàêåòèòå:"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Êîïèðà øðèôòîâå íà âàøàòà ñèñòåìà"
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
-msgstr "Harddrake ïîìîù"
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
-msgstr "Áîãîìèïñ"
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Êîíôèãóðàöèÿ íà Òåðìèíàëåí Ñúðâúð â Mandrake "
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakxtv_.c:148
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"
-" DrakBackup Report Details\n"
"\n"
+"You can visit our hardware database at:\n"
"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
-msgstr ""
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
-msgstr " íà ïàðàëåëåí ïîðò #%s"
+#: ../../standalone/harddrake2_.c:17
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Àëòåðíàòèâíà òåñòîâà ñòðàíèöà (À4)"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
msgstr ""
-"Çàäàâà ïàðîëàòà ìèíèìàëíàòà äúëæèíà íà ïàðîëàòà, ìèíèìàëåí áðîé öèôðè è "
-"ìèíèìàëåí áðîé ãëàâíè áóêâè."
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr "àêî å çàäàäåíî äà, ïðîâåðÿâà îòâîðåíèòå ïîðòîâå"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "Íå ìîæåòå äà îòáåëåæåòå/äåîòáåëåæåòå òîçè ïàêåò"
-
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "Ïðåäóïðåæäåíèå"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/harddrake2_.c:21
msgid ""
-"\n"
-"- Other Files:\n"
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name"
-msgstr "Èìå íà îòäàëå÷åí õîñò"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr "äîñòúï äî X ïðîãðàìè"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "Èç÷èñëÿâà ñâîáîäíîòî ìÿñòî íà Windows äÿë"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Îïðåñíè"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Italy"
-msgstr "Èòàëèÿ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
-msgstr "Êàéìàíîâè Îñòðîâè"
-
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "ãðåøêà ïðè äåìîíòèðàíå íà %s: %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "Èìå íà ïðèíòåð"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
-msgstr "èçêëþ÷è"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do it!"
-msgstr "Íàïðàâè ãî!"
+#: ../../standalone/harddrake2_.c:22
+#, fuzzy
+msgid "Channel"
+msgstr "Îòêàç"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select model manually"
-msgstr "Èçáîð íà ìîäåë ðú÷íî"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Format"
-msgstr "Ôîðìàòèðàé"
-
-#: ../../network/adsl.pm:1
-#, 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'"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
msgstr ""
-"Íàé-÷åñòèÿ íà÷èí çà ñâúðçâàíå ÷ðåç ADSL å PPPOE.\n"
-"Íÿêîè âðúçêè èçïîëçâàò PPTP, à maëêî èçïîëçâàò DHCP.\n"
-"Àêî íå çíàåòå, èçáåðåòå 'èçïîëçâàé PPPOE'."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
-msgstr "Ðàçëè÷íè"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
-msgstr "Zip óñòðîéñòâî"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
-msgstr "Ëÿâ Alt êëàâèø"
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Load setting"
-msgstr "óñòàíîâÿâàíå íà íàòîâàðâàíå"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:23
msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Îïðåäåëè òîçè ïðèíòåð çà ïîëçâàíå ïî ïîäðàçáèðàíå"
+#: ../../standalone/harddrake2_.c:26
+#, fuzzy
+msgid "Bus identification"
+msgstr "Èäåíòèôèêàöèÿ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:27
msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-"\n"
-"Îòáåëåæåòå ïðèíòåðèòå, êîèòî èñêàòå äà ïðåõâúðëèòå è öúêíåòå\n"
-"\"Ïðåõâúðëè\"."
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
-msgstr "Àëáàíñêà"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "Ëèòâà"
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "Êîìïàêòåí"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Îòêðèò ìîäåë: %s %s"
-
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Local files"
-msgstr "Ëîêàëíè ôàéëîâå"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "ñòàâà"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
-msgstr "Ïàíàìà"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Can't open %s!"
-msgstr "Íå ìîãà äà îòâîðÿ %s!"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:30
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?"
+"- 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 ""
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "Ìîíèòîð"
+#: ../../standalone/harddrake2_.c:33
+#, fuzzy
+msgid "Cache size"
+msgstr "ãîëåìèíà íà ïàð÷åòî"
-#: ../../printer/printerdrake.pm:1
-#, 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"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 õèëÿäè öâÿòà (16 áèòà)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Èçòðèâà øðèôòîâå îò âàøàòà ñèñòåìà"
-
-#: ../../standalone/drakgw:1
-#, 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."
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "X ïðè ñòàðòèðàíå íà ñèñòåìàòà"
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
msgstr ""
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Íÿìà äîñòàòú÷íî äÿëîâå çà RAID íèâî %d\n"
+#: ../../standalone/harddrake2_.c:36
+#, fuzzy
+msgid "Cpuid level"
+msgstr "Íèâî íà ñèãóðíîñò"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
msgstr ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy failed, file %s not found"
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: true"
-msgstr "ëîêàëíà íàñòðîéêà: äà"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:37
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."
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
msgstr ""
-"Ñëåäíèòå ïðèíòåðè ñà íàñòðîåíè. Öúêíåòå íà åäèí îò òÿõ, çà äà ãî ðåäàêòèðàòå "
-"èëè çà äà ïîëó÷èòå èíôîðìàöèÿ çà íåãî."
-
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connected"
-msgstr "Ñâúðçàí"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
-msgstr "Ìàêåäîíñêà"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "Ìàëè"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
-msgstr "Áðèäæîâå è ñèñòåìíè êîíòðîëåðè"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "/Ôàéë/_Çàïèñ"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "No details"
-msgstr "Áåç ïîäðîáíîñòè"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "ìíîãî äîáúð"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Preview"
-msgstr "Ïðåãëåä"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Remote Control"
-msgstr "Îòäàëå÷åí êîíòðîë"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select media for backup..."
-msgstr "Ìîëÿ, èçáåðåòå íîñèòåë çà âúçñòàíîâÿâàíå..."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
+#: ../../standalone/harddrake2_.c:38
+msgid "This field describes the device"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 ñúðâúð: %s\n"
+#: ../../standalone/harddrake2_.c:39
+#, fuzzy
+msgid "Old device file"
+msgstr "Èçáåðåòå ôàéë"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "Ðàçðåøàâà Thin êëèåíòè"
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Ãðóçèíñêà (\"Ðóñêà\" íàðåäáà)"
+#: ../../standalone/harddrake2_.c:41
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway óñòðîéñòâî"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_Îïöèè"
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Your printer model"
-msgstr "Âàøèÿò ìîäåë ïðèíòåð"
+#: ../../standalone/harddrake2_.c:43
+msgid "Module"
+msgstr "Ìîäóë"
-#: ../../any.pm:1
-#, 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)."
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-"\n"
-"\n"
-"(ÏÐÅÄÓÏÐÅÆÄÅÍÈÅ! Âèå èçïîëçâàòå XFS çà âàøàòà êîðåíîâà ôàéëîâà ñèñòåìà,\n"
-"ñúçäàâàíåòî íà bootdisk âúðõó 1.44 Ìá ôëîïè íÿìà äà å óñïåøíî,\n"
-"ïîíåæå XFS ñå íóæäàå îò ìíîãî ïîâå÷å ìÿñòî)."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
msgstr ""
-#: ../advertising/04-configuration.pl:1
-#, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "Ìíîãîôóíêöèîíàëåí èíñòðóìåíò çà íàñòðîéêà íà Ìàíäðåéê"
-
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Save"
-msgstr "Çàïàçâà"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
-msgstr "%s íå ñå ïîäúðæà"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr "Çàðåæäàíå äðàéâåðè çà âàøèòå USB óñòðîéñòâà."
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Disk"
-msgstr "Äèñê"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Âúâåäåòå URI íà ïå÷àòàùî óñòðîéñòâî"
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
+msgstr ""
-#: ../advertising/01-thanks.pl:1
-#, c-format
+#: ../../standalone/harddrake2_.c:46
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."
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "Èçðàåë"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "Ôðåíñêà Ãâèàíà"
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "default:LTR"
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
-msgstr "Òðÿáâà äà áúäå âúâåäåí êîìàíäåí ðåä!"
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
-msgstr "Èçáèðà ïîòðåáèòåëè ðú÷íî"
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Ïðåíîñ íà íàñòðîéêà íà ïðèíòåð"
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Èñêàòåëè äà ðàçðåøèòå ïå÷àò çà ïðèíòåðèòå ñïîìåíàòè ãîðå?\n"
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of suid root files"
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
msgstr ""
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:53
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."
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Ïîðò %s)"
+#: ../../standalone/harddrake2_.c:55
+#, fuzzy
+msgid "Floppy format"
+msgstr "Ôîðìàòèðàé"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Èçïîëçâà ìðåæîâàòà âðúçêà çà àðõèâèðàíå"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
+msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Kernel version"
-msgstr "Âåðñèÿ íà ÿäðîòî"
+#: ../../standalone/harddrake2_.c:56
+#, fuzzy
+msgid "Level"
+msgstr "íèâî"
-#: ../../help.pm:1
-#, fuzzy, 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."
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
msgstr ""
-"Ñåãà å ìîìåíòúò äà îïðåäåëèòå êîè ïðîãðàìè èñêàòå äà áúäàò èíñòàëèðàíè íà\n"
-"ñèñòåìàòà âè. Â Mandrake Linux äèñòðèáóöèÿòà èìà õèëÿäè ïàêåòè, íî íå å\n"
-"çàäúëæèòåëíî äà ãè çíàåòå íàèçóñò.\n"
-"\n"
-"Àêî èçâúðøâàòå ñòàíäàðòíà èíñòëàöèÿ îò CDROM, ïúðâî ùå áúäåòå ïîïèòàíè êîè\n"
-"CD-òà èìàòå (â Åêñïåðòåí ðåæèì). Ïðîâåðåòå çàãëàâèÿòà íà CD-òàòà è ïîñî÷åòå\n"
-"êóòèéêèòå ñúîòâåòñòâàùè íà CD-òàòà, ñ êîèòî ðàçïîëàãàòå. Öúêíåòå \"OK\",\n"
-"êîãàòî ñòå ãîòîâè äà ïðîäúëæèòå.\n"
-"\n"
-"Ïàêåòèòå ñà ïîäðåäåíè â ãðóïè ñúîòâåòñòâàùè íà ïðàêòè÷åñêàòà óïîòðåáà íà\n"
-"ìàøèíàòà âè. Ãðóïèòå, ñàìè ïî ñåáå ñè, ñà ïîäðåäåíè â ÷åòèðè ñåêöèè:\n"
-"\n"
-" * \"Ðàáîòíà ñòàíöèÿ\": àêî ñìÿòàòå äà èçïîëçâàòå ìàøèíàòà ñè êàòî ðàáîòíà "
-"ñòàíöèÿ,\n"
-"èçáåðåòå åäíà èëè ïîâå÷å ñúîòâåòíèòå ãðóïè.\n"
-"\n"
-" * \"Ðàçðàáîòêà\": àêî ìàøèíàòà âè ùå áúäå èçïîëçâàíå çà ïðîãðàìèðàíå, "
-"èçáåðåòå\n"
-"æåëàíàòà(èòå) ãðóïà(è).\n"
-"\n"
-" * \"Ñúðâúð\": íàêðàÿ, àêî ìàøèíàòà âè ùå áúäå èçïîëçâàíà çà ñúðâúð, ùå\n"
-"ìîæåòå äà èçáåðåòå êîè îò íàé-÷åñòî èçïîëçâàíèòå óñëóãè èñêàòå äà èìàòå\n"
-"èíñòàëèðàíè íà ìàøèíàòà.\n"
-"\n"
-" * \"Ãðàôè÷íà ñðåäà\": òóê ìîæåòå äà èçáåðåòå ïðåäïî÷èòàíàòà ãðàôè÷íà "
-"ñðåäà.\n"
-"Ïîíå åäíà òðÿáâà äà áúäå èçáðàíà, àêî èñêàòå äà èìàòå ãðàôè÷íà ñðåäà !\n"
-"\n"
-"Ïðåìåñòâàéêè êóðñîðà íà ìèøíàòà íàä èìåòî íà ãðóïàòà, ùå âèäèòå êðàòúê\n"
-"îáÿñíåíèòåëåí òåêñò çà íåÿ.\n"
-"\n"
-"Ìîæåòå äà öúêíåòå êóòèéêàòà \"Èíäèâèäóàëåí èçáîð íà ïàêåòè\", êîÿòî å "
-"ïîëåçíà,\n"
-"àêî ñòå çàïîçíàòè ñ ïàêåòèòå, êîèòî ùå âè áúäàò ïðåäëîæåíè èëè àêî èñêàòå "
-"äà\n"
-"èìàòå ïúëåí êîíòðîë íàä òîâà, êîåòî äà áúäå èíñòàëèðàíî.\n"
-"\n"
-"Àêî ñòå çàïî÷íàëè èíñòàëàöèÿòà â ðåæèì íà \"Îáíîâÿâàíå\", ìîæåòå äà "
-"èçêëþ÷èòå\n"
-"âñè÷êè ãðóïè, çà äà èçáåãíåòå èíñòàëèðàíåòî íà íîâè ïàêåòè. Òîâà å ïîëåçíî\n"
-"ïðè ïîïðàâêà èëè îáíîâÿâàíå íà ñúùåñòâóâàùàòà ñèñòåìà."
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "Ïðèåìè ïîòðåáèòåë"
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
-msgstr "Ñúðâúð"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
-msgstr "Ëÿâ Shift êëàâèø"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " local network"
-msgstr "ëîêàëíà ìðåæà"
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+#, fuzzy
+msgid "Model"
+msgstr "Ìîäóë"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "Ëîø èçáîð, îïèòàéòå îòíîâî\n"
+#: ../../standalone/harddrake2_.c:58
+#, fuzzy
+msgid "hard disk model"
+msgstr "Ïàìåò (DMA) íà êàðòàòà"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search new servers"
-msgstr "Òúðñè íîâè ñúðâúðè"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
-msgstr "Õúðä è ÌàêÄîíàëä Îñòðîâè"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Model name"
+msgstr "Èìå íà ìîäóë"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
-msgstr "Íÿìà àëòåðíàòèâåí äðàéâåð"
+#: ../../standalone/harddrake2_.c:60
+msgid "Official vendor name of the cpu"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "Ïðåìèíè â Åêñïåðòåí ðåæèì"
+#: ../../standalone/harddrake2_.c:61
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 áóòîíà"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
-msgstr "(íà òàçè ìàøèíà)"
+#: ../../standalone/harddrake2_.c:62
+#, fuzzy
+msgid "Name"
+msgstr "Èìå: "
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Gateway àäðåñà òðÿáâà äà áúäå âúâ ôîðìàò 1.2.3.4"
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "network printer port"
+msgstr "Ìðåæîâ ïðèíòåð (TCP/Socket)"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Òúðñè âúâ âå÷å èíñòàëèðàíèòå ïàêåòè..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
+#: ../../standalone/harddrake2_.c:64
+msgid "the number of the processor"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Driver"
-msgstr "Äðàéâåð"
+#: ../../standalone/harddrake2_.c:65
+#, fuzzy
+msgid "Model stepping"
+msgstr "Ôîðìàòèðàíå"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
msgstr ""
-"Linuxconf ïîíÿêîãà óðåæäà èçâúðøâàíåòî íà ðàçëè÷íè çàäà÷è\n"
-"ïðè ñòàðòèðàíå çà ïîääðúæêà íà ñèñòåìíàòà íàñòðîéêà."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVD-R device"
-msgstr "DVDR óñòðîéñòâî"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Ïðèíòåð íà îòäàëå÷åí LPD ñúðâúð"
+#: ../../standalone/harddrake2_.c:66
+#, fuzzy
+msgid "The type of bus on which the mouse is connected"
+msgstr "Ìîëÿ, èçáåðåòå êúì êîé ñåðèåí ïîðò å ñâúðçàíà ìèøêàòà âè."
-#: ../../standalone/drakfont:1
-#, 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."
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:68
+msgid "the vendor name of the processor"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Wednesday"
-msgstr "Ñðÿäà"
+#: ../../standalone/harddrake2_.c:82
+#, fuzzy
+msgid "/_Quit"
+msgstr "Èçõîä"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "Ãåðìàíèÿ"
+#: ../../standalone/harddrake2_.c:83
+#, fuzzy
+msgid "/Autodetect _printers"
+msgstr "Èçïîëçâàé àâòîìàòè÷íî çàñè÷àíå"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
-msgstr "Àâñòðèÿ"
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
+msgstr "/_Îïöèè"
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "Áåç ìèøêà"
+#: ../../standalone/harddrake2_.c:85
+#, fuzzy
+msgid "/Autodetect _modems"
+msgstr "Èçïîëçâàé àâòîìàòè÷íî çàñè÷àíå"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "Ìîëÿ, èçáåðåòå ðàçìåðà íà âàøåòî CD/DVD (Mb)"
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
+msgstr "/_Ïîìîù"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check permissions of files in the users' home"
-msgstr ""
+#: ../../standalone/harddrake2_.c:89
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Ïîìîù"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
msgstr ""
-"Èçïúëíåòå \"sndconfig\" ñëåä èíñòàëàöèÿ çà äà êîíôèãóðèðàòå âàøàòà çâóêîâà "
-"êàðòà"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "Èç÷èñòè äúðâîòî"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Íàñòðîé÷èê íà àâòîìàòè÷íà èñíòàëàöèÿ"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "Íàñòîéêà íà ìðåæàòà"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "Êúäå èñêàòå äà èíñòàëèðàòå bootloader-à?"
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/harddrake2_.c:93
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."
-msgstr ""
-"Ìîëÿ, öúêíåòå íà ïðåäïî÷èòàíèÿ åçèê íà èíñòàëàöèÿ è ñèñòåìíà óïîòðåáà.\n"
+"Description of the fields:\n"
"\n"
-"Öúêàíåòî íà áóòîíà \"Íàïðåäíè÷àâ\" ùå âè ïîçâîëè äà èçáåðåòå äðóãè åçèöè\n"
-"äà áúäàò èíñòàëèðàíè íà ðàáîòíàòà âè ñòàíöèÿ. Èçáèðàíåòî íà äðóãè åçèöè\n"
-"ùå èíñòàëèðà ôàéëîâå ñïåöèâè÷íè çà åçèöèòå çà ñèñòåìíà äîêóìåíòàöèÿ è\n"
-"ïðèëîæåíèÿ. Íàïðèìåð, àêî èìàòå ïîòðåáèòåëè îò Èçïàíèÿ íà ìàøèíàòà ñè,\n"
-"èçáåðåòå àíãëèéñêè êàòî ãëàâåí åçèê â äúðâîâèäíàòà ôîðìà è â ñåêöèÿ\n"
-"\"Íàïðåäíè÷àâ\" öúêíåòå íà ñèâàòà çâåçäà ñúîòâåòñòâàùà íà\n"
-"\"Èñïàíñêè|Èñïàíèÿ\".\n"
-"Îòáåëåæåòå, ÷å ìîãàò äà áúäàò èíñòàëèðàíè íÿêîëêî åçèêà. Âåäíúæ èçáðàí\n"
-"íÿêàêúâ ëîêàë, öúêíåòå áóòîíà \"OK\", çà äà ïðîäúëæèòå."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr "%s íå ñå ïîäúðæà îò òàçè âåðñèÿ íà Mandrake Linux."
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "tape"
-msgstr "Ëåíòà"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr "DHCP êëèåíò"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (ñåðèéíà, îò ñòàðèÿ òèï C7)"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Âúçñòàíîâÿâàíåòî îò ôàéëà %s íå óñïÿ: %s"
-
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:96
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"
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
msgstr ""
-"Íå ìîãà äà ðàç÷åòà òàáëèöàòà íà äÿëîâåòå íà óñòðîéñòâî %s, ïðåêàëåíî å "
-"ïîâðåäåíà çà ìåí :(\n"
-"Ìîãà äà ñå îïèòàì äà èç÷èñòÿ ëîøèòå äÿëîâå (ÂÑÈ×ÊÈ ÄÀÍÍÈ ùå áúäàò "
-"çàãóáåíè!).\n"
-"Äðóãî ðåøåíèå å äà çàáðàíèòå íà DrakX ïîïðàâÿ òàáëèöàòà ñ äÿëîâå.\n"
-"(ãðåøêàòà å %s)\n"
-"\n"
-"Ñúãëàñíè ëè ñòå äà çàãóáèòå âñè÷êè äÿëîâå?\n"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Find Package"
-msgstr "%d ïàêåòà"
+#: ../../standalone/harddrake2_.c:96
+#, fuzzy
+msgid "Select a device !"
+msgstr "Èçáåðåòå ãðàôè÷íà êàðòà"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Ñèãóðíè ëè ñòå, ÷å èñêòå äà íàñòðîèòå ïå÷àò çà òàçè ìàøèíà?\n"
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
+msgstr "/_Èíôîðìèðàé çà áúã"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "New devfs device"
-msgstr "Íîâî devfs óñòðîéñòâî"
+#: ../../standalone/harddrake2_.c:102
+#, fuzzy
+msgid "/_About..."
+msgstr "/Ïîìîù/_Îòíîñíî..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Boot Style Configuration"
-msgstr "Íàñòðîéêà íà íà÷èíà íà ñòàðòèðàíå"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Àâòîìàòè÷íà ñèíõðîíèçàöèÿ íà âðåìåòî"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
+#: ../../standalone/harddrake2_.c:105
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "Àðìåíñêà (ôîíåòè÷åí)"
+#: ../../standalone/harddrake2_.c:106
+#, fuzzy
+msgid "Author:"
+msgstr "Àâòîìàòè÷íî çàñè÷àíå"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Card model:"
-msgstr "Ìîäåë íà êàðòà:"
+#: ../../standalone/harddrake2_.c:113
+#, fuzzy
+msgid "Detection in progress"
+msgstr "çàñå÷åí íà ïîðò %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
-msgstr "Thin êëèåíò"
+#: ../../standalone/harddrake2_.c:119
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Çàñè÷àíå íà äèñêîâåòå"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
-msgstr "Áëàãîäàðèì âè, ÷å èçáðàõòå Mandrake Linux 9.2"
+#: ../../standalone/harddrake2_.c:126
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Âèæ õàðäóåðíàòà èíôîðìàöèÿ"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Start Server"
-msgstr "Ñòàðòèðà ñúðâúð"
+#: ../../standalone/harddrake2_.c:129
+#, fuzzy
+msgid "Information"
+msgstr "Ïîêàæè èíôîðìàöèÿòà"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr "Òóðêìåíèñòàí"
+#: ../../standalone/harddrake2_.c:131
+#, fuzzy
+msgid "Configure module"
+msgstr "Íàñòðîéêà íà ìèøêà"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "All remote machines"
-msgstr "Âñè÷êè îòäàëå÷åíè ìàøèíè"
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Install themes"
-msgstr "Èíñòàëèðàíå íà òåìè"
+#: ../../standalone/harddrake2_.c:143
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Èçòðèâàíå íà ïðèíòåðà \"%s\" ..."
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
+#: ../../standalone/harddrake2_.c:159
+msgid ""
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "Ïîäãîòâÿì èíñòàëàöèÿòà"
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Ðåäàêòèðàíå íà èçáðàí õîñò/ìðåæà"
+#: ../../standalone/harddrake2_.c:231
+#, fuzzy
+msgid "secondary"
+msgstr "%d ñåêóíäè"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add User -->"
-msgstr "Äîáàâÿ ïîòðåáèòåë -->"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect modems"
+msgstr "Èçïîëçâàé àâòîìàòè÷íî çàñè÷àíå"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "Íàóðó"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect printers"
+msgstr "Èçïîëçâàé àâòîìàòè÷íî çàñè÷àíå"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Èíñòàëèðàíå íà True Type øðèôòîâå"
+#: ../../standalone/harddrake2_.c:261
+#, fuzzy
+msgid "/Options"
+msgstr "/_Îïöèè"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Àâòîìàòè÷íî îòêðèâà ïðèíòåðè ñâúðçàíè äèðåêòíî êúì ëîêàëíàòà ìðåæà"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "Ìîëÿ, èçáåðåòå ïîäðåæäàíå íà êëàâèàòóðàòà."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN configuration"
-msgstr "Íàñòðîéêà íà LAN"
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr "Èñêàòå ëè BackSpace äà ïîäàâà Delete íà êîíçîëàòà ?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "hard disk model"
-msgstr "ìîäåë íà òâúðä äèñê"
+#: ../../standalone/livedrake_.c:18
+msgid "Change Cd-Rom"
+msgstr "Ñìÿíà íà CD-ROM"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/livedrake_.c:19
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."
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
+"Ìîëÿ, ñëîæåòå Èíñòàëàöèîííèÿ CD-ROM â óñòðîéñòâîòî è íàòèñíåòå Ok, êîãàòî "
+"ñòå ãîòîâè.\n"
+"Àêî ãî íÿìàòå, íàòèñíåòå Îòìÿíà, çà äà èçáåãíåòå èíñòàëèðàíåòî îò òîçè CD-"
+"ROM."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Íå ìîæåòå äà èçïîëçâàòå LVM òèï çà ìÿñòî íà ìîíòèðàíå %s"
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Íå ìîãà äà ïóñíà îáíîâÿâàíåòî !!!\n"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "Âçèìà øðèôòîâå íà Windows"
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
+msgstr "ëîãäðåéê"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
+#: ../../standalone/logdrake_.c:68
+msgid "Show only for the selected day"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "Èðàíñêà"
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
+msgstr "/Ôàéë/_Íîâ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
-msgstr "Õúðâàòèÿ"
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
+msgstr "<control>N"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "Gateway:"
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
+msgstr "/Ôàéë/_Îòâîðè"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add server"
-msgstr "Äîáàâÿíå íà ñúðâúð"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
+msgstr "<control>O"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name"
-msgstr "Èìå íà îòäàëå÷åí ïðèíòåð"
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr "/Ôàéë/_Çàïèñ"
-#: ../advertising/10-security.pl:1
-#, 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."
-msgstr ""
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
+msgstr "<control>S"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "Óñòðîéñòâî: "
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
+msgstr "/Ôàéë/Çàïèñ _êàòî"
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr "/Ôàéë/-"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "Ëèöåíçèîíåí äîãîâîð"
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
+msgstr "/Îïöèè/Òåñò"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "System Options"
-msgstr "Ñèñòåìíè îïöèè"
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
+msgstr "/Ïîìîù/_Îòíîñíî..."
-#: ../../security/level.pm:1
-#, c-format
-msgid "Please choose the desired security level"
-msgstr "Ìîëÿ, èçáåðåòå íèâî íà ñèãóðíîñò"
+#: ../../standalone/logdrake_.c:145
+#, fuzzy
+msgid "User"
+msgstr "Ïîòðåáèòåëñêî èìå"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr ""
+#: ../../standalone/logdrake_.c:146
+#, fuzzy
+msgid "Messages"
+msgstr "ñúîáùåíèÿ"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", USB printer"
-msgstr ", USB ïðèíòåð"
+#: ../../standalone/logdrake_.c:147
+#, fuzzy
+msgid "Syslog"
+msgstr "ñèñòåìåí ëîã"
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
msgstr ""
-"Íåìîæå äà ñå çàòâîðè ïðàâèëíî mkbootdisk: \n"
-" %s \n"
-" %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Èçáåðåòå ïðèëîæåíèÿòà êîèòî ùå ïîääúðæàò øðèôòîâåòå:"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "Íàñòðîéêà íà Õ"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "hd"
-msgstr "×àä"
+#: ../../standalone/logdrake_.c:151
+msgid "search"
+msgstr "òúðñè"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Òóðñêà (òðàäèöèîíåí \"F\" ìîäåë)"
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
+msgstr "Èíñòðóìåíò çà ïðåãëåæäàíå íà âàøèòå ëîã ôàéëîâå"
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "Ïîçäðàâëåíèÿ !"
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
+msgstr "Íàñòðîéêè"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Èçïîëçâà id íà ñîáñòâåíèê ïðè èçïúëíåíèå"
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
+msgstr "ñúâïàäåíèå"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow remote root login"
-msgstr "Ïîçâîëÿâà îòäàëå÷åíî âëèçàíå íà root."
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
+msgstr "íî íå ñúâïàäà"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Down"
-msgstr "Äîëó"
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
+msgstr "Èçáåðåòå ôàéë"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "'Raw' ïðèíòåð (Áåç äðàéâåð)"
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
+msgstr "Êàëåíäàð"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Install rpm"
-msgstr "Èíñòàëèðà rpm"
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
+msgstr "Ñúäúðæàíèå íà ôàéëà"
-#: ../../printer/printerdrake.pm:1
-#, 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"
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+msgid "Mail alert"
msgstr ""
-"Çà äà èçïå÷àòàòå ôàéë îò êîìàíäíèÿ ðåä (òåðìèíàëåí ïðîçîðåö), ìîæåòå èëè äà "
-"èçïîëçâàòå êîìàíäàòà \"%s <file>\" èëè ãðàôè÷íèÿ ïå÷àòàù èíñòðóìåíò: \"xpp "
-"<file>\" èëè \"kprinter <file>\". Ãðàôè÷íèòå èíñòðóìåíòè âè ïîçâîëÿâàò äà "
-"èçáèðàòå ïðèíòåðà è äà ïîïðàâÿòå ëåñíî íàñòðîéêèòå íà îïöèèòå.\n"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "Îñòàâàùî âðåìå "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "UÊ êëàâèàòóðà"
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "Äåìîíòèðàé"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "Èíñòàëèðà øðèôòîâå"
-
-#: ../../../move/move.pm:1
+#: ../../standalone/logdrake_.c:245
#, fuzzy, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Ìîëÿ, èçáåðåòå íèâî íà ñèãóðíîñò..."
+msgid "please wait, parsing file: %s"
+msgstr "ìîëÿ èç÷àêàéòå, ïðàâÿ ðàçáîð íà ôàéë: %s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "Íåìñêà (áåç íåðàáîòåùè êëàâèøè)"
+#: ../../standalone/logdrake_.c:392
+#, fuzzy
+msgid "Mail alert configuration"
+msgstr "Íàñòðîéêà íà LILO/Grub"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
+#: ../../standalone/logdrake_.c:393
+#, fuzzy
+msgid ""
+"Welcome to the mail configuration utility.\n"
+"\n"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
+"Äîáðå äîøëè â íàñòðîéêàòà íà Proxy.\n"
+"\n"
+"Òóê ùå ìîæåòå äà óñòàíîâèòå âàøèòå HTTP è FTP proxy\n"
+"ñúñ èëè áåç ïîòðåáèòåëñêî èìå è ïàðîëà\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
-msgstr "Ïðåõâúðëÿíå íà %s ..."
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
+msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 õèëÿäè öâÿòà (15 áèòà)"
+#: ../../standalone/logdrake_.c:401
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Èìå íà äîìåéíà"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
-msgstr ""
-"Âèå ìîæå äà åêñïîðòèðàòå êàòî èçïîëçâàòå NFS èëè Samba. Ìîëÿ, èçáåðåòå êàêâî "
-"èñêàòå äà èçïîëçâàòå."
+#: ../../standalone/logdrake_.c:402
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS ñúðâúð"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "Ãàìáèÿ"
+#: ../../standalone/logdrake_.c:403
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix ïîùåíñêè ñúðâúð, Inn íîâèíàðñêè ñúðâúð"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Êîíòðîëåí öåíòúð íà Mandrake"
+#: ../../standalone/logdrake_.c:404
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS ñúðâúð"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Reboot"
-msgstr "Ïðåñòàðòèðà"
+#: ../../standalone/logdrake_.c:405
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS ñúðâúð"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Multi-function device"
-msgstr ", ìíîãîôóíêöèîíàëíî óñòðîéñòâî"
+#: ../../standalone/logdrake_.c:406
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Óñëóãè"
-#: ../../network/drakfirewall.pm:1
-#, 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."
-msgstr ""
-"Âèå ìîæå äà âúâåäåòå äðóãè ïîðòîâå. \n"
-"Âàëèäíè ñà íàïðèìåð: 139/tcp 139/udp.\n"
-"Ïîãëåäíåòå â /etc/services çà èíôîðìàöèÿ"
+#: ../../standalone/logdrake_.c:407
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Ñúðâúð íà ïðèíòåðà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Tape \n"
-msgstr ""
+#: ../../standalone/logdrake_.c:414
+#, fuzzy
+msgid "service setting"
+msgstr "èíòåðåñåí"
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../standalone/logdrake_.c:415
msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remember this password"
-msgstr "Çàïîìíÿ òàçè ïàðîëà"
+#: ../../standalone/logdrake_.c:428
+#, fuzzy
+msgid "load setting"
+msgstr "Ôîðìàòèðàíå"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Ñïîäåëÿíåòî íà Èíòåðíåò â ìîìåíòà å âêëþ÷åíî."
+#: ../../standalone/logdrake_.c:444
+#, fuzzy
+msgid "alert configuration"
+msgstr "Íàñòðîéêà íà öâåòîâå"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr ""
+#: ../../standalone/logdrake_.c:445
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Ìîëÿ, îïèòàéòå îòíîâî"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-" Àêî æåëàíèÿò ïðèíòåð å îòêðèò àâòîìàòè÷íî, ïðîñòî èçáåðåòå ãî îò ñïèñúêà è "
-"òîãàâà äîáàâåòå èìå íà ïîòðåáèòåë, ïàðîëà, è/èëè ðàáîòíà ãðóïà àêî å "
-"íåîáõîäèìî."
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
+msgstr "Çàïàçè êàòî..."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " cable"
-msgstr " êàáåë"
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "Ìîëÿ, èçáåðåòå òèï íà ìèøêàòà."
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
-msgstr "Èçïîëçâàé ñâîáîäíîòî ìÿñòî íà Windows äÿëà"
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
+msgstr "Äà ñèìóëèðàì ëè òðåòè áóòîí ?"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s íàìåðåíî íà %s, äà êîíôèãóðèðàì àâòîìàòè÷íî?"
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Íàñòðîéêà íà ìðåæàòà"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 äðàéâåð: %s\n"
+#: ../../standalone/net_monitor_.c:96
+#, fuzzy
+msgid "Profile "
+msgstr "Ïðîôèë: "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
msgstr ""
-"Òîçè àäðåñ/õîñò âå÷å å â ñïèñúêà, òîé íå ìîæå äà áúäå äîáàâåí îòíîâî.\n"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Èçáåðåòå ïàêåòèòå, êîèòî èñêàòå äà èíñòàëèðàòå"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
-msgstr "Ïàïóà Íîâà Ãâèíåÿ"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Multi-function device on a parallel port"
-msgstr ", ìíîãîôóíêöèîíàëíî óñòðîéñòâî íà íà ïàðàëåëåí ïîðò #%s"
-
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Busy files"
-msgstr "Ðåçåðâíî êîïèå íà ñèñòåìíè ôàéëîâå"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "Ñðúáñêà (êèðèëèöà)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Ìîëÿ âåâåäåòå äèðåêòîðèÿòà çà çàïàçâàíå íà àðõèâèòå:"
+#: ../../standalone/net_monitor_.c:103
+#, fuzzy
+msgid "Sending Speed:"
+msgstr "Çàïàçè âúâ ôàéë"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Èñêàòå ëè äà íàñòðîèòå òîçè ïðèíòåð (\"%s\")\n"
-"êàòî ïðèíòåð ïî ïîäðàçáèðàíå ?"
+#: ../../standalone/net_monitor_.c:106
+#, fuzzy
+msgid "Connection Time: "
+msgstr "Òèï íà âðúçêàòà: "
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "Ñúçäàâàíå íà ñòàðòèðàùà äèñêåòà..."
-
-#: ../../standalone/net_monitor:1
-#, c-format
+#: ../../standalone/net_monitor_.c:147
+#, fuzzy
msgid "Wait please, testing your connection..."
-msgstr "Ïî÷àêàéòå, ïðîáâàì âàøàòà âðúçêà..."
+msgstr "Èçïðîáâàíå íà âðúçêàòà..."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "Èçêëþ÷âàíå íà ìðåæàòà"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Ñâúðæè ñå êúì Èíòåðíåò"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "Ïîòðåáèòåëñêî èìå"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Ñâúðæè ñå êúì Èíòåðíåò"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
msgstr ""
-"NFS å ïîïóëÿðåí ïðîòîêîë çà îáìåí íà ôàéëîâå ïî TCP/IP ìðåæè.\n"
-"Òàçè óñëóãà îñèãóðÿâà ôóíêöèîíàëíîñòòà íà çàêëþ÷âàíåòî íà NFS ôàéëîâåòå."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
-msgstr "DHCP êëèåíò"
-#: ../../standalone/harddrake2:1
-#, 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"
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
msgstr ""
-"Òîâà å HardDrake, õàðäóåðåí êîíôèãóðàöèîíåí èíñòðóìåíò íà Mandrake.\n"
-"<span foreground=\"royalblue3\">Âåðñèÿ:</span> %s\n"
-"<span foreground=\"royalblue3\">Àâòîð:</span> Thierry Vignaud &lt;"
-"tvignaud@mandrakesoft.com&gt;\n"
-"\n"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
-msgstr "îñòàâè"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Ïå÷àòàí/Ñêàíèðàíåå íà \"%s\""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit raid modules"
-msgstr "áåç raid ìîäóëè"
+#: ../../standalone/net_monitor_.c:225
+#, fuzzy
+msgid "Connection complete."
+msgstr "Ñêîðîñò íà âðúçêàòà"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:226
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)."
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-"lpd å äåìîíà çà ïå÷àò íåîáõîäèì íà lpr äà ðàáîòè íîðìàëíî. Òîé ïðîñòî å\n"
-"ñúðâúð, êîéòî îïðåäåëÿ ðàáîòèòå çà ïå÷àò íà ïðèíòåð(à/èòå)."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
+#: ../../standalone/net_monitor_.c:330
+#, fuzzy
+msgid "Color configuration"
+msgstr "Íàñòðîéêà íà öâåòîâå"
+
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Sunday"
-msgstr "Íåäåëÿ"
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Íàñòðîéêà íà Èíòåðíåò âðúçêà"
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
+msgstr ""
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
-msgstr "íîìåðà ðàçäåëåíè ñúñ çàïåòàÿ"
+#: ../../standalone/net_monitor_.c:400
+#, fuzzy
+msgid "Local measure"
+msgstr "Ëîêàëíè ôàéëîâå"
-#: ../../standalone/harddrake2:1
-#, 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\")"
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule up one level"
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../standalone/net_monitor_.c:453
msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
+"Warning, another internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Ñëåäíèÿò ñêåíåð\n"
-"\n"
-"%s\n"
-"å íà ðàçïîëîæåíèå íà ñèñòåìàòà âè.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Íàèñòèíà ëè èñêàòå äà ïðåìàõíåòå ïðèíòåðà \"%s\" ?"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "Ñâúðæè"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "I can't find any room for installing"
-msgstr "Íå ìîãà äà íàìåðÿ íèêàêâî ìÿñòî çà èíñòàëàöèÿ"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Disconnect %s"
+msgstr "Îòâúðæè"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Default printer"
-msgstr "Ïðèíòåð ïî ïîäðàçáèðàíå"
+#: ../../standalone/printerdrake_.c:47
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "×åòåíå íà äàííè îò ïðèíòåðà ..."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Íàñòðîèëè ñòå íÿêîëêî íà÷èíà çà âðúçêà êúì Èíòåðíåò.\n"
-"Èçáåðåòå òîçè, êîéòî èñêàòå äà èçïîëçâàòå.\n"
-"\n"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Detecting devices ..."
+msgstr "Çàñè÷àíå íà óñòðîéñòâà ..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Modify RAID"
-msgstr "Ìîäèôèöèðàé RAID"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
+msgstr "Òåñòâàíå ïîðòîâåòå"
-#: ../../network/isdn.pm:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, 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 "The %s is not supported by this version of Mandrake Linux."
msgstr ""
-"Îòêðèòà å ISDN PCI êàðòà, íî ñ íåïîçíàò òèï. Ìîëÿ èçáåðåòå íÿêîÿ PCI êàðòà "
-"îò ñëåäâàùèÿò åêðàí."
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr "Äîáàâè ïîòðåáèòåë"
+#: ../../standalone/scannerdrake_.c:54
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "Èñêàòå ëè äà íàñòðîèòå ïå÷àòà ?"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/scannerdrake_.c:57
#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-äèñêîâå %s\n"
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Liberia"
-msgstr "Ëèáåðèÿ"
+#: ../../standalone/scannerdrake_.c:63
+#, fuzzy
+msgid "Select a scanner"
+msgstr "Èçáåðåòå ãðàôè÷íà êàðòà"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:91
#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
+msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/drakgw:1
+#: ../../standalone/scannerdrake_.c:105
#, 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"
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Èçáîð íà êëàâèàòóðà"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Format partitions"
-msgstr "Ôîðìàòèðàíå íà äÿëîâå"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Àâòîìàòè÷íà êîðåêöèÿ íà CUPS êîíôèãóðàöèÿ"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Running \"%s\" ..."
-msgstr "Èçïúëíÿâà \"%s\" ..."
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "enable radio support"
-msgstr "ðàçðåøàâà ïîäðúæêà íà ðàäèî"
+#: ../../standalone/scannerdrake_.c:107
+#, fuzzy
+msgid "choose device"
+msgstr "Ñòàðòèðàùî óñòðîéñòâî"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:113
#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Ïîäåëÿíå íà ñêåíåðà çà ñëåäíèòå õîñòîâå:"
+msgid ""
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/scannerdrake_.c:118
#, c-format
-msgid "Loopback file name: %s"
-msgstr "Èìå íà loopback ôàéëà: %s"
+msgid ""
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Ìîëÿ, èçáåðåòå ïðèíòåð,êúì êîéòî ùå ñå ïðàùàò çàäà÷èòå."
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not transfer printers"
-msgstr "Íå ïðåõâúðëÿé ïðèíòåðè"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Delay before booting the default image"
-msgstr "Çàáàâÿíå ïðåäè ñòàðòèðàíåòî íà ïîäðàçáèðàùèÿò ñå îáðàç"
+#: ../../standalone/service_harddrake_.c:64
+#, fuzzy
+msgid "Hardware probing in progress"
+msgstr "çàñå÷åí íà ïîðò %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Hard Disk to backup"
-msgstr "Èçïîëçâà òâúðä äèñê çà ðåçåðâíî êîïèå"
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "Èçáîð íà åçèê"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Configure"
-msgstr "Íàñòðîêà"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "Èçáîð íà êëàñ èíñòàëàöèÿ"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake"
-msgstr "Ñêåíåðäðåéê"
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
+msgstr "Çàñè÷àíå íà äèñêîâåòå"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "Íàñòðîéêà íà ìèøêà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
-msgstr "Ðåçåðâíî êîïèå íà ïîòðåáèòåëè"
+#: ../../steps.pm_.c:18
+msgid "Choose your keyboard"
+msgstr "Èçáîð íà êëàâèàòóðà"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Ìîëÿ, âúâåäåòå host name çà ìàøèíàòà.\n"
-"Host èìåòî òðÿáâà äà áóäå íàïúëíî êâàëèôèöèðàíî èìå,\n"
-"êàòî ``mybox.mylab.myco.com''.\n"
-"Ìîæåòå ñúùî äà âúâåäåòå IP àäðåñà íà Âàøèÿ gateway, àêî èìàòå òàêúâ"
+#: ../../steps.pm_.c:19
+msgid "Security"
+msgstr "Ñèãóðíîñò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Èçáåðåòå ïðèíòåðåí spooler"
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "Ôàéëîâè ñèñòåìè"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Create new theme"
-msgstr "Ñúçäàâà íîâà òåìà"
+#: ../../steps.pm_.c:21
+msgid "Format partitions"
+msgstr "Ôîðìàòèðàíå íà äÿëîâå"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
-msgstr ""
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "Ïàêåòè çà èíñòàëèðàíå"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "No image found"
-msgstr "Íå å íàìåðåí îáðàç"
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "Èíñòàëèðàíå íà ñèñòåìàòà"
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
-"Íÿêîè âàæíè ïàêåòè íå ñå èíñòàëèðàõà êàêòî òðÿáâà.\n"
-"Èëè CDROM óñòðîéñòâîòî âè èëè êîìïàêò äèñêà âè å äåôåêòåí.\n"
-"Ïðîâåðåòå êîìïàêò äèñêà íà èíñòàëèðàíèÿ êîìïþòúð èçïîëçâàéêè \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "Äîáàâÿíå íà ïîòðåáèòåë"
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
-msgstr "Mandrake Linux 9.2 å íåïðåêúñíàòî ðàçðàáîòâàùà ñå ïëàòôîðìà"
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "Íàñòîéêà íà ìðåæàòà"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Detected model: %s"
-msgstr "Çàñå÷åí ìîäåë: %s"
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "Íàñòðîéêà íà óñëóãèòå"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
-msgstr ""
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "Èíñòàëèðàíå íà bootloader"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "Ñúçäàâàíå íà boot-äèñêåòà"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr ""
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "Íàñòðîéêà íà Õ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
-msgstr "Àçåðáàéäæàí"
+#: ../../steps.pm_.c:34
+#, fuzzy
+msgid "Install system updates"
+msgstr "Èíñòàëèðàíå íà ñèñòåìàòà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
-msgstr ""
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "Èçõîä îò èíñòàëàöèîííàòà ïðîãðàìà"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
-msgstr ""
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Äâîðàê (US)"
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "Ñúðâúð, Web/FTP"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-"òîâà å ôèçè÷åñêàòà øèíà íà êîéòî å çàêà÷åíî óñòðîñòâîòî (íàïð: PCI, USB, ...)"
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
+msgstr "Ìðåæîâ êîìïþòúð (êëèåíò)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Êàê å ñâúðçàí ïðèíòåðúò ?"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS ñúðâúð, SMB ñúðâúð, Proxy ñúðâúð, SSH ñúðâúð"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security level"
-msgstr "Íèâî íà ñèãóðíîñò"
+#: ../../share/compssUsers:999
+msgid "Office"
+msgstr "Îôèñ"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "final resolution"
-msgstr ""
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Gnome ðàáîòíà ñòàíöèÿ"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
-msgstr "Óñëóãè"
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Èíñòðóìåíòè çà âàøèÿ Palm Pilot èëè Visor-à âè"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Auto configuration"
-msgstr "Ïîòðåáèòåëñêà íàñòðîéêà"
+#: ../../share/compssUsers:999
+msgid "Workstation"
+msgstr "Ðàáîòíà ñòàíöèÿ"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 ÌÁ"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Ñúðâúð, Firewall/Ðóòåð"
#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Îôèñíà ðàáîòíà ñòàíöèÿ"
+msgid "Domain Name and Network Information Server"
+msgstr "Èìå íà äîìåéí è Ìðåæîâ Èíôîðìàöèîíåí Ñúðâúð"
#: ../../share/compssUsers:999
msgid ""
@@ -19672,69 +14196,76 @@ msgstr ""
"ïðåãëåä íà PDF, è ò.í."
#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Èãðàëíà ñòàíöèÿ"
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "Èíñòðóìåíòè çà àóäèî: MP3 èëè MIDI ïëåéúðè, ìèêñåðè, è ò.í. "
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Çàáàâíè ïðîãðàìè: àðêàäíè èãðè, èãðè íà ìàñà, ñòðàòåãèè è ò.í."
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Ìóòèìåäèéíà ñòàíöèÿ"
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Êíèãè è HOTWO-òà çà Linux è ñâîáîäíèÿ ñîôòóåð"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Ïðîãðàìè çà ïóñêàíå/ïîïðàâÿíå íà çâóê è âèäåî"
+msgid "KDE Workstation"
+msgstr "KDE ðàáîòíà ñòàíöèÿ"
#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Èíòåðíåò ñòàíöèÿ"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm è ò.í."
#: ../../share/compssUsers:999
-#, fuzzy
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Íàáîð îò èíñòðóìåíòè çà ÷åòåíå è èçïðàùàíå íà ïîùà è íîâèíè (pine, mutt, "
-"tin..) è çà îáèêàëÿíå èç Ìðåæàòà"
+msgid "Multimedia - Video"
+msgstr "Ìóëòèìåäèÿ - Âèäåî"
#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Ìðåæîâ êîìïþòúð (êëèåíò)"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr "Íàáîð îò èíñòðóìåíòè çà ïîùà, íîâèíè, web, ôàéëîâ òðàíñôåð, è ÷àò"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Êëèåíòè çà ðàçëè÷íè ïðîòîêîëè âêëþ÷èòåëíî SSH"
+msgid "Database"
+msgstr "Ñúðâúð, Áàçè-äàííè"
#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Íàñòðîéêà"
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL èëè MySQL ñúðâúð çà áàçè-äàííè"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
msgstr "Èíñòðóìåíòè çà óëåñíÿâàíå íàñòðîéêàòà íà êîìïþòúðà âè"
#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Íàó÷íà ðàáîòíà ñòàíöèÿ"
+msgid "Multimedia - Sound"
+msgstr "Ìóòèìåäèÿ - Çâóê"
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
-msgstr ""
+msgid "Documentation"
+msgstr "Äîêóìåíòàöèÿ"
#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr "Êîíçîëíè èíñòðóìåíòè"
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Ðåäàêòîðè, øåëîâå, ôàéëîâè èíñòðèìåíòè, òåðìèíàëè"
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix ïîùåíñêè ñúðâúð, Inn íîâèíàðñêè ñúðâúð"
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE ðàáîòíà ñòàíöèÿ"
+msgid "Internet station"
+msgstr "Èíòåðíåò ñòàíöèÿ"
+
+#: ../../share/compssUsers:999
+msgid "Multimedia station"
+msgstr "Ìóòèìåäèéíà ñòàíöèÿ"
+
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Íàñòðîéêà"
+
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "Îùå ãðàôè÷íè desktop-è (Gnome, IceWM)"
#: ../../share/compssUsers:999
msgid ""
@@ -19745,2162 +14276,285 @@ msgstr ""
"èíñòðóìåíòè"
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome ðàáîòíà ñòàíöèÿ"
+msgid "Graphical Environment"
+msgstr "Ãðàôè÷íà ñðåäà"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Ãðàôè÷íà ñðåäà ñ ïîòðåáèòåëñêè íàáîð îò ïðèëîæåíèÿ è desktop èíñòðóìåíòè"
+msgid "Development"
+msgstr "Ðàçðàáîòêà"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Äðóãè ãðàôè÷íè desktop-è"
+msgid "Apache, Pro-ftpd"
+msgstr "Apache è Pro-ftpd"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm è ò.í."
+msgid "Tools to create and burn CD's"
+msgstr "Èíñòðóìåíòè çà ñúçäàâàíå è îïè÷àíå íà CD-òà"
#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "Áèáëèîòåêè çà ðàçðàáîòêà íà C è C++, ïðîãðàìè è include ôàéëîâå"
+msgid "Office Workstation"
+msgstr "Îôèñíà ðàáîòíà ñòàíöèÿ"
#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Äîêóìåíòàöèÿ"
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, è ò.í."
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Êíèãè è HOTWO-òà çà Linux è ñâîáîäíèÿ ñîôòóåð"
+msgid "Graphics programs such as The Gimp"
+msgstr "Ãðàôè÷íè ïðîãðàìè êàòî The Gimp"
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr ""
+msgid "DNS/NIS "
+msgstr "FND/NIS"
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr ""
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Áèáëèîòåêè çà ðàçðàáîòêà íà C è C++, ïðîãðàìè è include ôàéëîâå"
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Ñúðâúð, Web/FTP"
+msgid "Network Computer server"
+msgstr "Ìðåæîâ êîìïþòúð, ñúðâúð"
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache è Pro-ftpd"
+msgid "Mail/Groupware/News"
+msgstr "Ñúðâúð, Ïîùà/Groupware/Íîâèíè"
#: ../../share/compssUsers:999
-msgid "Mail"
-msgstr "Å-ïîùà"
+msgid "Game station"
+msgstr "Èãðàëíà ñòàíöèÿ"
#: ../../share/compssUsers:999
-msgid "Postfix mail server"
-msgstr "Postfix ïîùåíñêè ñúðâúð"
+msgid "Video players and editors"
+msgstr "Âèäåî ïëåéúðè è ðåäàêòîðè"
#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Ñúðâúð, Áàçè-äàííè"
+msgid "Multimedia - Graphics"
+msgstr "Ìóëòèìåäèÿ - Ãðàôèêà"
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL èëè MySQL ñúðâúð çà áàçè-äàííè"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Çàáàâíè ïðîãðàìè: àðêàäíè èãðè, èãðè íà ìàñà, ñòðàòåãèè è ò.í."
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Ñúðâúð, Firewall/Ðóòåð"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"Íàáîð îò èíñòðóìåíòè çà ÷åòåíå è èçïðàùàíå íà ïîùà è íîâèíè (pine, mutt, "
+"tin..) è çà îáèêàëÿíå èç Ìðåæàòà"
#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Èíòåðíåò gateway"
+msgid "Personal Finance"
+msgstr "Ëè÷íè ôèíàíñè"
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "FND/NIS"
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Ãðàôè÷íà ñðåäà ñ ïîòðåáèòåëñêè íàáîð îò ïðèëîæåíèÿ è desktop èíñòðóìåíòè"
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Èìå íà äîìåéí è Ìðåæîâ Èíôîðìàöèîíåí Ñúðâúð"
+msgid "Clients for different protocols including ssh"
+msgstr "Êëèåíòè çà ðàçëè÷íè ïðîòîêîëè âêëþ÷èòåëíî SSH"
#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Ìðåæîâ êîìïþòúð, ñúðâúð"
+msgid "LSB"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS ñúðâúð, SMB ñúðâúð, Proxy ñúðâúð, SSH ñúðâúð"
+msgid "Internet gateway"
+msgstr "Èíòåðíåò gateway"
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
-msgstr ""
-"Íàáîð îò èíñòðóìåíòè çà ÷åòåíå è èçïðàùàíå íà ïîùà è íîâèíè è çà ñúðôèðàíå "
-"èç Ìðåæàòà"
-
-#~ msgid "The setup has already been done, and it's currently enabled."
-#~ msgstr "Óñòàíîâêàòà âå÷å å íàïðàâåíà è â ìîìåíòà å âêëþ÷åíà."
-
-#~ msgid "Logs"
-#~ msgstr "Ëîãîâå"
-
-#~ msgid "The setup has already been done, but it's currently disabled."
-#~ msgstr "Óñòàíîâêàòà âå÷å å íàïðàâåíà, íî â ìîìåíòà å èçêëþ÷åíà."
-
-#~ msgid "Profile "
-#~ msgstr "Ïðîôèë "
-
-#~ msgid ""
-#~ "Welcome to the Internet Connection Sharing utility!\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ "Click on Configure to launch the setup wizard."
-#~ msgstr ""
-#~ "Äîáðå äîøëè â èíñòðóìåíòà çà ñïîäåëÿíå íà Èíòåðíåò âðúçêàòà !\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ "Öúêíåòå ``Íàñòðîé'', àêî èñêàòå äà ñòàðòèðàíå óñòàíîâÿâàùèÿ ìàãüîñíèê."
-
-#~ msgid "Internet Connection Sharing configuration"
-#~ msgstr "Íàñòðîéêà íà ñïîäåëÿíåòî íà Èíòåðíåò âðúçêàòà"
-
-#~ msgid "No Internet Connection Sharing has ever been configured."
-#~ msgstr "Íÿìà íàñòðîéâàíî ñïîäåëÿíå íà Èíòåðíåò âðúçêàòà."
-
-#~ msgid "when checked, owner and group won't be changed"
-#~ msgstr "ïðè ïðîâåðêà, ñîáñòâåíèêà è ãðóïàòà íÿìà äà áúäàò ïðîìåíåíè"
-
-#~ msgid "Remote Printers"
-#~ msgstr "Îòäàëå÷åí ïðèíòåð"
-
-#~ msgid "Printing system: "
-#~ msgstr "Ïå÷àòíà ñèñòåìà: "
-
-#~ msgid "Level 1"
-#~ msgstr "Íèâî 1"
-
-#~ msgid "Level 2"
-#~ msgstr "Íèâî 2"
-
-#~ msgid "Level 3"
-#~ msgstr "Íèâî 3"
-
-#~ msgid "Level 4"
-#~ msgstr "Íèâî 4"
-
-#~ msgid "Level 5"
-#~ msgstr "Íèâî 5"
-
-#~ msgid "Load"
-#~ msgstr "Çàðåäè"
-
-#~ msgid ""
-#~ "Please choose the\n"
-#~ "media for backup."
-#~ msgstr ""
-#~ "Ìîëÿ, èçáåðåòå\n"
-#~ "íîñèòåë çà ðåçåðâíî êîïèå."
-
-#~ msgid "Bad Ip"
-#~ msgstr "Ëîøî IP"
-
-#~ msgid "LiLo and Bootsplash themes installation successfull"
-#~ msgstr "LiLo è Bootsplash òåìè ñà óñïåøíî èíñòàëèðàíè"
-
-#~ msgid "Bad Mask"
-#~ msgstr "Ëîøà ìàñêà"
-
-#~ msgid "Choose your CD/DVD media size (Mb)"
-#~ msgstr "Ìîëÿ, èçáåðåòå ðàçìåðà íà âàøåòî CD/DVD (Mb)"
-
-#~ msgid "Output"
-#~ msgstr "Ðåçóëòàò"
+msgid "Sound and video playing/editing programs"
+msgstr "Ïðîãðàìè çà ïóñêàíå/ïîïðàâÿíå íà çâóê è âèäåî"
-#~ msgid "activate now"
-#~ msgstr "àêòèâèðàé ñåãà"
+#: ../../share/compssUsers:999
+msgid "Other Graphical Desktops"
+msgstr "Äðóãè ãðàôè÷íè desktop-è"
-#~ msgid ""
-#~ "Enter the maximum size\n"
-#~ " allowed for Drakbackup (Mb)"
-#~ msgstr ""
-#~ "Ìîëÿ, âúâåäåòå ìàêñèìàëíèÿ ðàçìåð\n"
-#~ " ïîçâîëåí çà Drakbackup (â Ìá)"
+#: ../../share/compssUsers:999
+msgid "Editors, shells, file tools, terminals"
+msgstr "Ðåäàêòîðè, øåëîâå, ôàéëîâè èíñòðèìåíòè, òåðìèíàëè"
-#~ msgid "Unkown driver"
-#~ msgstr "Íåèçâåñòåí äðàéâåð"
+#: ../../share/compssUsers:999
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "Ïðîãðàìè çà îáðàáîòêà íà ôèíàíñè, êàòî gnucash"
-#~ msgid ""
-#~ "Maximum size\n"
-#~ " allowed for Drakbackup (Mb)"
-#~ msgstr ""
-#~ "Ìîëÿ, âúâåäåòå ìàêñèìàëíèÿò ðàçìåð\n"
-#~ " ïîçâîëåí çà Drakbackup (â ÌÁ)"
+#: ../../share/compssUsers:999
+msgid "Personal Information Management"
+msgstr "Îáðàáîòêà íà ëè÷íà èíôîðìàöèÿ"
-#~ msgid "Total progess"
-#~ msgstr "Îáù ïðîãðåñ"
+#: ../../share/compssUsers:999
+msgid "Multimedia - CD Burning"
+msgstr "Ìóëòèìåäèÿ - îïè÷àíå íà CD"
-#~ msgid "Please relog into %s to activate the changes"
-#~ msgstr "Ìîëÿ âëåçòå îòíîâî â %s, çà äà àêòèâèðàòå ïðîìåíèòå"
+#: ../../share/compssUsers:999
+msgid "Scientific Workstation"
+msgstr "Íàó÷íà ðàáîòíà ñòàíöèÿ"
-#, fuzzy
-#~ msgid "Start Search..."
-#~ msgstr "Ñòàðòèðà ñúðâúð"
+#~ msgid "can not open /etc/inittab for reading: %s"
+#~ msgstr "íå ìîãà äà îòâîðÿ /etc/inittab çà ÷åòåíå: %s"
#, fuzzy
-#~ msgid ""
-#~ "Search For...\n"
-#~ "%s"
-#~ msgstr "Òúðñè ñúðâúðè"
-
-#~ msgid "Please check if you want to use the non-rewinding device."
-#~ msgstr ""
-#~ "Ìîëÿ, ïðîâåðåòå äàëè èñêòå äà èçïîëâàòå íåïðåíàâèâàøî ñå óñòðîéñòâî."
-
-#~ msgid "Please enter your password"
-#~ msgstr "Ìîëÿ, âúâåäåòå âàøàòà ïàðîëà"
-
-#~ msgid "Please check if you want to eject your tape after the backup."
-#~ msgstr ""
-#~ "Ìîëÿ, ïðîâåðåòå äàëè èñêòå äà èçâàäèòå ëåíòàòà ñëåä êàòî ïðàâèòå ðåçåðâíî "
-#~ "êîïèå."
-
-#~ msgid "Please check if you want to erase your tape before the backup."
-#~ msgstr ""
-#~ "Ìîëÿ, ïðîâåðåòå äàëè èñêòå äà èçòðèåòå ëåíòàòà ïðåäè äà ïðàâèòå ðåçåðâíî "
-#~ "êîïèå."
-
-#~ msgid "Please enter the host name or IP."
-#~ msgstr "Ìîëÿ, âúâåäåòå èìå íà õîñò èëè IP."
-
-#~ msgid ""
-#~ " Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s@epita."
-#~ "fr>"
-#~ msgstr ""
-#~ " Àâòîðñêè ïðàâà (C) 2001-2002 MandrakeSoft by DUPONT Sebastien "
-#~ "<dupont_s@epita.fr>"
-
-#~ msgid ""
-#~ " updates 2002 MandrakeSoft by Stew Benedict <sbenedict@mandrakesoft.com>"
-#~ msgstr ""
-#~ " îáíîâÿâàíèÿ 2002 MandrakeSoft îò Stew Benedict <sbenedict@mandrakesoft."
-#~ "com>"
-
-#~ msgid "edit"
-#~ msgstr "ðåäàêòèðà"
+#~ msgid "cpu number "
+#~ msgstr "Òåëåôîíåí íîìåð"
#~ msgid ""
-#~ "Arguments: (arg)\n"
+#~ "You now have the opportunity to download encryption software.\n"
+#~ "\n"
+#~ "WARNING:\n"
+#~ "\n"
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
+#~ "\n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
#~ "\n"
-#~ " Accept/Refuse broadcasted icmp echo."
+#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
+#~ "\n"
+#~ "\n"
+#~ "For any queries relating to these agreement, please contact \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
#~ msgstr ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Ïîçâîëÿâà/Çàáðàíÿâà broadcasted icmp echo."
+#~ "Ñåãà èìàòå âúçìîæíîñòòà äà ñâàëèòå ñîôòóåð ñ öåë êîäèðàíå.\n"
+#~ "\n"
+#~ "ÂÍÈÌÀÍÈÅ:\n"
+#~ "\n"
+#~ "Ïîðàäè ðàçëè÷íèòå èçèñêâàíèÿ ïîñòàâåíè îò òîçè ñîôòóåð è îò ìíîãî\n"
+#~ "þðèñäèêöèè, êëèåíòèòå è/èëè êðàéíèòå êëèåíòè íà òîçè ñîôòóåð òðÿáâà\n"
+#~ "äà áúäàò ñèãóðíè, ÷å íîðìàòèâíàòà áàçà èì ïîçâîëÿâà ñâàëÿíåòî, "
+#~ "ïðîäàæáàòà\n"
+#~ "è/èëè èçïîëçâàíåòî íà òîçè ñîôòóåð.\n"
+#~ "\n"
+#~ "Â äîïúëíåíèå êëèåíòúò è/èëè êðàéíèÿ ïîòðåáèòåë òðÿáâà äà âíèìàâà ñ òîâà\n"
+#~ "äàíåáè äà íàðóøè ÷àñò îò íîðìàòèâíàòà áàçà. Êëèåíòúò è/èëè êðàéíèÿò\n"
+#~ "ïîòðåáèòåë òðÿáâà äà óâàæàâà ïðèëåæàùèòå çàêîíè, òúé êàòî òîé ùå ïîíåñå\n"
+#~ "ñàíêöèèòå.\n"
+#~ " íèêàêúâ ñëó÷àé Mandrakesoft èëè íåãîâèòå ïðîèçâîäèòåëè è/èëè\n"
+#~ "ñïîìîùåñòâóâàòåëèòå ìó íå íîñÿò íèêàêâà îòãîâîðíîñò çà êàêâèòî è äà å\n"
+#~ "ïðåêè, êîñâåíè èëè ñëó÷àéíè âðåäè (âêëþ÷èòåëíî, íî íå ñàìî îãðàíè÷åíè â\n"
+#~ "çàãóáàòà íà ïîëçè, ïðåêúñâàíå íà áèçíåñ, çàãóáà íà êîìåðñèàëíè äàííè è\n"
+#~ "äðóãè ïàðè÷íè çàãóáè, è åâåíòóàëíè îòãîâîðíîñòè è îáåùåòåíèÿ çà ïëàùàíå\n"
+#~ "ïî ñúäåáíè ðåøåíèÿ) ïðåäèçâèêàíè îò èçïîëçâàíåòî, ïîñòàâÿíåòî èëè äîðè\n"
+#~ "ñâàëÿíåòî íà òîçè ñîôòóåð, äî êîéòî êëèåíòúò è/èëè êðàéíèÿò ïîòðåáèòåë\n"
+#~ "åâåíòóàëíî ìîæå äà èìà äîñòúï ñëåä ñúãëàñèåòî ñ òîâà ñïîðàçóìåíèå.\n"
+#~ "\n"
+#~ "Çà âñÿêàêâè âúïðîñè ïî òîâà ñïîðàçóìåíèå, ìîëÿ, ñâúðæåòå ñå ñ \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
+
+#~ msgid "Proxy configuration"
+#~ msgstr "Proxy íàñòðîéêà"
#~ msgid ""
-#~ "Arguments: (arg)\n"
+#~ "Welcome to the proxy configuration utility.\n"
#~ "\n"
-#~ "Allow/Forbid remote root login."
+#~ "Here, you'll be able to set up your http and ftp proxies\n"
+#~ "with or without login and password\n"
#~ msgstr ""
-#~ "Arguments: (arg)\n"
+#~ "Äîáðå äîøëè â íàñòðîéêàòà íà Proxy.\n"
#~ "\n"
-#~ "Ïîçâîëÿâà/Çàáðàíÿâà îòäàëå÷åíî âëèçàíå íà root."
-
-#~ msgid "permissions"
-#~ msgstr "ïðàâà"
-
-#~ msgid "delete"
-#~ msgstr "èçòðèâà"
+#~ "Òóê ùå ìîæåòå äà óñòàíîâèòå âàøèòå HTTP è FTP proxy\n"
+#~ "ñúñ èëè áåç ïîòðåáèòåëñêî èìå è ïàðîëà\n"
#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Accept/Refuse bogus IPv4 error messages."
+#~ "Please fill in the http proxy informations\n"
+#~ "Leave it blank if you don't want an http proxy"
#~ msgstr ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Ïîçâîëÿâà/Çàáðàíÿâà ñúîáùåíèÿ çà IPv4 ãðåøêè."
-
-#~ msgid "user"
-#~ msgstr "Ïîòðåáèòåë"
-
-#~ msgid "Expert Area"
-#~ msgstr "Äîïúëíèòåëíè"
-
-#~ msgid "Wizard..."
-#~ msgstr "Ìàãüîñíèê..."
+#~ "Ìîëÿ, ïîïúëíåòå èíôîðìàöèÿòà çà HTTP proxy.\n"
+#~ "Îñòàâåòå ïðàçíî, àêî íå èñêàòå HTTP proxy."
-#~ msgid " / Region"
-#~ msgstr "/ Ðåãèîí"
+#~ msgid "URL"
+#~ msgstr "URL"
-#~ msgid "Country"
-#~ msgstr "Ñòðàíà"
+#~ msgid "port"
+#~ msgstr "ïîðò"
-#~ msgid "Previous"
-#~ msgstr "Ïðåäèøåí"
+#~ msgid "Url should begin with 'http:'"
+#~ msgstr "URL òðÿáâà äà å çàïî÷âà ñ 'http:'"
-#~ msgid "Please check if you are using CDRW media"
-#~ msgstr "Ìîëÿ, ïðîâåðåòå äàëè èçïîëçâàòå CDRW ìåäèÿ"
-
-#~ msgid "Please check if you are using a DVDRAM device"
-#~ msgstr "Ìîëÿ, ïðîâåðåòå äàëè èçïîëçâàòå DVDRAM óñòðîéñòâî"
-
-#~ msgid "Please check if you are using a DVDR device"
-#~ msgstr "Ìîëÿ, ïðîâåðåòå äàëè èçïîëçâàòå DVDR óñòðîéñòâî"
-
-#~ msgid "We are now going to configure the %s connection."
-#~ msgstr "Ñåãà ùå íàñòðîèì %s âðúçêàòà."
-
-#~ msgid "Name: %s\n"
-#~ msgstr "Èìå: %s\n"
+#~ msgid "The port part should be numeric"
+#~ msgstr "Íîìåðúò íà ïîðò òðÿáâà äà å öèôðà"
#~ msgid ""
-#~ "Which ISDN configuration do you prefer?\n"
-#~ "\n"
-#~ "* The Old configuration uses isdn4net. It contains powerful\n"
-#~ " tools, but is tricky to configure, and not standard.\n"
-#~ "\n"
-#~ "* The New configuration is easier to understand, more\n"
-#~ " standard, but with less tools.\n"
-#~ "\n"
-#~ "We recommand the light configuration.\n"
+#~ "Please fill in the ftp proxy informations\n"
+#~ "Leave it blank if you don't want an ftp proxy"
#~ msgstr ""
-#~ "Êîÿ ISDN íàñòðîéêà ïðåäïî÷èòàòå ?\n"
-#~ "\n"
-#~ "* Ñòàðàòà íàñòðîéêà èçïîëçâà isdn4net. Ñúäúðæà ìîùíè èíñòðóìåíòè\n"
-#~ " íî å êàïðèçíà çà íàñòðîéêà è íå å ñòàíäàðòíà.\n"
-#~ "\n"
-#~ "* Íîâàòà íàñòðîéêà å ïî-ëåñíà çà ðàçáèðàíå, ïî ñòàíäàðòíà,\n"
-#~ " íî ñ ïî-ìàëêî èíñòðóìåíòè.\n"
-#~ "\n"
-#~ "Ïðåïîðú÷âàìå âè îëåêîòåíàòà íàñòðîéêà.\n"
-
-#~ msgid "New configuration (isdn-light)"
-#~ msgstr "Íîâà íàñòðîéêà (isdn-light)"
-
-#~ msgid "Old configuration (isdn4net)"
-#~ msgstr "Ñòàðà íàñòðîéêà (isdn4net)"
-
-#~ msgid "Internet connection & configuration"
-#~ msgstr "Èíòåðíåò âðúçêà è íàñòðîéêà"
-
-#~ msgid "Disconnect"
-#~ msgstr "Îòâúðæè"
-
-#~ msgid "Connect"
-#~ msgstr "Ñâúðæè"
-
-#~ msgid ""
-#~ "\n"
-#~ "You can reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "Ìîæåòå äà ïðåíàñòðîèòå âðúçêàòà."
+#~ "Ìîëÿ, ïîïúëíåòå èíôîðìàöèÿòà çà FTP proxy.\n"
+#~ "Îñòàâåòå ïðàçíî, àêî íå èñêàòå FTP proxy."
#~ msgid ""
-#~ "\n"
-#~ "You can connect to the Internet or reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "Ìîæåòå äà ñå ñâúðæåòå êúì Èíòåðíåò èëè äà ïðåíàñòðîèòå âðúçêàòà."
-
-#~ msgid "You are not currently connected to the Internet."
-#~ msgstr "Â ìîìåíòà íå ñòå ñâúðçàíè êúì Èíòåðíåò"
-
-#~ msgid ""
-#~ "\n"
-#~ "You can disconnect or reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "Ìîæåòå äà ñå îòâúðæåòå èëè äà ïðåíàñòðîèòå âðúçêàòà."
-
-#~ msgid "You are currently connected to the Internet."
-#~ msgstr "Â ìîìåíòà ñòå ñâúðçàíè êúì Èíòåðíåò"
-
-#~ msgid "files sending by FTP"
-#~ msgstr "ôàéëîâå èçïðàòåíè ïî FTP"
-
-#~ msgid "Relaunch 'lilo'"
-#~ msgstr "Ïðåñòàðòèðà 'lilo'"
-
-#~ msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#~ msgstr "Ïðàâè initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-
-#~ msgid "Copy %s to %s"
-#~ msgstr "Êîïèðà %s â %s"
-
-#~ msgid "Backup %s to %s.old"
-#~ msgstr "Ðåçåðâíî êîïèå %s â %s.old"
-
-#~ msgid "Author:"
-#~ msgstr "Àâòîð:"
-
-#~ msgid "Printer sharing"
-#~ msgstr "Ïîäåëÿíå íà ïðèíòåð"
-
-#~ msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
-#~ msgstr "GDI Ëàçàðåí ïðèíòåð èçïîëçâàù Zenographics ZJ-Stream ôîðìàò"
-
-#~ msgid "Office"
-#~ msgstr "Îôèñ"
-
-#~ msgid "Set of tools for mail, news, web, file transfer, and chat"
-#~ msgstr "Íàáîð îò èíñòðóìåíòè çà ïîùà, íîâèíè, web, ôàéëîâ òðàíñôåð, è ÷àò"
-
-#~ msgid "Games"
-#~ msgstr "Èãðè"
-
-#~ msgid "Multimedia - Graphics"
-#~ msgstr "Ìóëòèìåäèÿ - Ãðàôèêà"
-
-#~ msgid "Multimedia - Sound"
-#~ msgstr "Ìóòèìåäèÿ - Çâóê"
-
-#~ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-#~ msgstr "Èíñòðóìåíòè çà àóäèî: MP3 èëè MIDI ïëåéúðè, ìèêñåðè, è ò.í. "
-
-#~ msgid "Multimedia - Video"
-#~ msgstr "Ìóëòèìåäèÿ - Âèäåî"
-
-#~ msgid "Video players and editors"
-#~ msgstr "Âèäåî ïëåéúðè è ðåäàêòîðè"
-
-#~ msgid "Multimedia - CD Burning"
-#~ msgstr "Ìóëòèìåäèÿ - îïè÷àíå íà CD"
-
-#~ msgid "Tools to create and burn CD's"
-#~ msgstr "Èíñòðóìåíòè çà ñúçäàâàíå è îïè÷àíå íà CD-òà"
-
-#~ msgid "More Graphical Desktops (Gnome, IceWM)"
-#~ msgstr "Îùå ãðàôè÷íè desktop-è (Gnome, IceWM)"
-
-#~ msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-#~ msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, è ò.í."
-
-#~ msgid "Personal Information Management"
-#~ msgstr "Îáðàáîòêà íà ëè÷íà èíôîðìàöèÿ"
-
-#~ msgid "Tools for your Palm Pilot or your Visor"
-#~ msgstr "Èíñòðóìåíòè çà âàøèÿ Palm Pilot èëè Visor-à âè"
-
-#~ msgid "Personal Finance"
-#~ msgstr "Ëè÷íè ôèíàíñè"
-
-#~ msgid "Programs to manage your finances, such as gnucash"
-#~ msgstr "Ïðîãðàìè çà îáðàáîòêà íà ôèíàíñè, êàòî gnucash"
-
-#~ msgid "no network card found"
-#~ msgstr "íå å îòêðèòà ìðåæîâà êàðòà"
-
-#~ msgid "Get the most from the Internet"
-#~ msgstr "Âçåìåòå ïîâå÷å îò Èíòåðíåò"
-
-#~ msgid "Push multimedia to its limits!"
-#~ msgstr "Ïóñíåòå ìóëòèìåäèÿòà íà íåéíèòå îãðàíè÷åíèÿ!"
-
-#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
+#~ "Please enter proxy login and password, if any.\n"
+#~ "Leave it blank if you don't want login/passwd"
#~ msgstr ""
-#~ "Îòêðèéòå ïîâå÷åòî îò ñúùåñòâóâàùèòå ãðàôè÷íè è ìóëòèìåäèèíè èíñòðóìåíòè!"
+#~ "Ìîëÿ, âúâåäåòå èìå è ïàðîëà çà proxy, àêî èìà.\n"
+#~ "Îñòàâåòå ïðàçíî, àêî íå èñêàòå èìå/ïàðîëà"
-#~ msgid ""
-#~ "Mandrake Linux 9.2 provides the best Open Source games - arcade, action, "
-#~ "strategy, ..."
-#~ msgstr ""
-#~ "Mandrake Linux 9.2 ïðåäîñòàâÿ íàé äîáðèòå èãðè íà Ñâîáîäíèÿò Ñîôòóåð - ñ "
-#~ "äåéñòâèÿ, ñòðàòåãè÷åñêè è äð.."
+#~ msgid "login"
+#~ msgstr "ïîòðåáèòåëñêî èìå"
-#~ msgid ""
-#~ "Mandrake Linux 9.2 provides a powerful tool to fully customize and "
-#~ "configure your machine"
-#~ msgstr ""
-#~ "Mandrake Linux 9.2 ïðåäîñòàâÿ ìîùåí èíñòðóìåíò çà ïîñòðîÿâàíå è "
-#~ "êîíôèãóðèðàíå íà âàøàòà ñèñòåìà"
+#~ msgid "password"
+#~ msgstr "ïàðîëà"
-#~ msgid "User interfaces"
-#~ msgstr "Ïîòðåáèòåëñêè èíòåðôåéñ"
+#~ msgid "re-type password"
+#~ msgstr "îùå âåäíúæ ïàðîëà"
-#~ msgid ""
-#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
-#~ "Source development environments"
-#~ msgstr ""
-#~ "Èçïîëçâà ïúëíèòå âúçìîæíîñòè íà êîìïèëàòîðà GNU gcc 3 êàêòî è íàé-äîáðèòå "
-#~ "ñèñòåìè çà ðàçðàáîòêà â Îòâîðåíèÿò Èçõîäåí êîä"
+#~ msgid "The passwords don't match. Try again!"
+#~ msgstr "Ïàðîëèòå íà ñúâïàäàò. Îïèòàéòå ïàê !"
-#~ msgid "Development simplified"
-#~ msgstr "Îïðîñòÿâà ðàçðàáîòêà"
+#~ msgid "Can't write file %s"
+#~ msgstr "Ôàéëúò %s íå ìîæå äà áúäå çàïèñàí"
-#~ msgid ""
-#~ "This firewall product includes network features that allow you to fulfill "
-#~ "all your security needs"
-#~ msgstr ""
-#~ "Òîçè firewall ïðîäóêò âêëþ÷âà âñè÷êè ìðåæîâè îñîáåíîñòè êîèòî âè "
-#~ "ïîçâîëÿâàò äà èçâúðøèòå âñè÷êî íåîáõîäèìî ïî áåçîïàñíîñòòà."
+#~ msgid "no help implemented yet.\n"
+#~ msgstr "íÿìà âúâåäåíà ïîìîù îùå.\n"
-#~ msgid "Strategic partners"
-#~ msgstr "Ñòðàòåãè÷åñêè ïàðòíüîðè"
+#~ msgid "Please click on a medium"
+#~ msgstr "Ìîëÿ, öúêíåòå íà íîñèòåëÿ"
-#~ msgid "Certify yourself on Linux"
-#~ msgstr "Ñåòèôèöèðàéòå ñå ïî Linux"
+#~ msgid "Removing LPRng..."
+#~ msgstr "Èçòðèâàíå íà LPRng..."
-#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-#~ msgstr "Îòêðèéòå êàòàëîãà çà îáó÷åíèå íà MandrakeSoft Linux-Campus"
+#~ msgid "Removing LPD..."
+#~ msgstr "Èçòðèâàíå íà LPD..."
-#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
-#~ msgstr "Îòêðèòå MandrakeClub è Mandrake Corporate Club"
+#~ msgid "usage: drakfloppy\n"
+#~ msgstr "èçïîëçâàíå: drakfloppy\n"
#, fuzzy
#~ 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.\n"
-#~ "\n"
-#~ "\"Boot device\": in most cases, you will not change the default (\"First\n"
-#~ "sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
-#~ "installed on the second hard drive (\"/dev/hdb\"), or even on a floppy "
-#~ "disk\n"
-#~ "(\"On Floppy\").\n"
-#~ "\n"
-#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-#~ "handy.\n"
-#~ "\n"
-#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
-#~ "by\n"
-#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
-#~ ">>rescue<<\n"
-#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
-#~ "at\n"
-#~ "least two situations where having a boot floppy is critical:\n"
-#~ "\n"
-#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
-#~ "(MBR)\n"
-#~ "of your main disk (unless you are using another boot manager), to allow "
-#~ "you\n"
-#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
-#~ "on\n"
-#~ "your system). If at some point you need to reinstall Windows, the "
-#~ "Microsoft\n"
-#~ "install process will rewrite the boot sector and remove your ability to\n"
-#~ "start GNU/Linux!\n"
-#~ "\n"
-#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
-#~ "disk,\n"
-#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
-#~ "a\n"
-#~ "fair number of system tools for restoring a system that has crashed due "
-#~ "to\n"
-#~ "a power failure, an unfortunate typing error, a forgotten root password, "
-#~ "or\n"
-#~ "any other reason.\n"
-#~ "\n"
-#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
-#~ "format the floppy and will rewrite the whole disk."
-#~ msgstr ""
-#~ "Mandrake Linux CDROM-úò èìà âãðàäåí ñïàñèòåëåí ðåæèì. Ìîæåòå äà ãî\n"
-#~ "äîñòèãíåòå, êàòî ñòàðòèðàòå îò CDROM-à, íàòèñíåòå êëàâèøà >>F1<< è "
-#~ "íàïèøåòå\n"
-#~ ">>rescue<<. Íî ñëó÷àé, ÷å êîìïþòúðúò íå ìîæå äà ñòàðòèðà îò CDROM, ùå "
-#~ "òðÿáâà\n"
-#~ "äà ñå âúðíåòå êúì òàçè ñòúïêà çà ïîìîù â ïîíå äâå ñèòóàöèè:\n"
-#~ "\n"
-#~ " * êîãàòî èñíòàëèðàòå boot loader, DrakX ùå ïðåçàïèøå ñòàðòîâèÿ ñåêòîð "
-#~ "(MBR) íà ãëàâíèÿ âè äèñê (îñâåí àêî íå èçïîëçâàòå äðóã ñòàðòîâ ìåíèäæúð), "
-#~ "òàêà ÷å\n"
-#~ "äà ñòàðòèðàòå Windows èëè GNU/Linux (àêî èìàòå Windows â ñèñòåìàòà ñè). "
-#~ "Àêî\n"
-#~ "ñå íóæäàåòå äà ïðåèíñòàëèðàòå Windows, èíñòàëàöèîííèÿ ïðîöåñ íà "
-#~ "Microsoft\n"
-#~ "ùå ïðåçàïèøå ñòàðòîâèÿ ñåêòîð è íÿìà äà ìîæåòå äà ïóñíåòå âàøèÿ GNU/"
-#~ "Linux!\n"
-#~ "\n"
-#~ " * àêî ñå ïîÿâè ïðîáëåì è íå ìîæåòå äà ïóñíåòå GNU/Linux îò òâúðäèÿ ñè "
-#~ "äèñê,\n"
-#~ "òàçè äèñêåòà ùå èìà çà öåë ñàìî äà ñòàðòèðà GNU/Linux. Òÿ ñúäúðæà "
-#~ "çàäîâîëèòåëåí\n"
-#~ "áðîé ñèñòåìíè èíñòðóìåíòè çà âúçñòàíîâÿâàíå íà ñèñòåìà, êîÿòî å çàáèëà "
-#~ "ñëåä\n"
-#~ "ñðèâ â çàõðàíâàíåòî, ñëó÷àéíà ãðåøêà, ãðåøêà â ïàðîëàòà èëè íÿêàêâà "
-#~ "äðóãà\n"
-#~ "ïðè÷èíà.\n"
-#~ "\n"
-#~ "Êîãàòî öúêíåòå íà òàçè ñòúïêà, ùå áúäåòå ïîìîëåíè äà ïîñòàâèòå äèñê â\n"
-#~ "óñòðîéñòâîòî. Äèñêåòàòà, êîÿòî âêàðàòå, òðÿáâà äà áúäå ïðàçíà èëè äà "
-#~ "ñúäúðæà\n"
-#~ "äàííè, îò êîèòî íå ñå íóæäàåòå. Íÿìà íóæäà äà ÿ ôîðìàòèðàòå, òúé êàòî "
-#~ "DrakX\n"
-#~ "ùå ïðåçàïèøå öÿëàòà äèñêåòà."
-
-#~ msgid ""
-#~ "The following printers are configured. Double-click on a printer to "
-#~ "change its settings; to make it the default printer; to view information "
-#~ "about it; or to make a printer on a remote CUPS server available for Star "
-#~ "Office/OpenOffice.org/GIMP."
-#~ msgstr ""
-#~ "Ñëåäíèòå ïðèíòåðè ñà íàñòðîåíè.\n"
-#~ " Öúêíåòå íà åäèí îò òÿõ, çà äà ãî ðåäàêòèðàòå èëè çà äà ïîëó÷èòå "
-#~ "èíôîðìàöèÿ çà íåãî, èëè äà íàïðàâèòå ïðèíòåð íà îòäàëå÷åí CUPS ñúðâúð "
-#~ "äîñòúïåí çà Star Office/OpenOffice.org/GIMP."
-
-#~ msgid ""
-#~ "Please enter your host name if you know it.\n"
-#~ "Some DHCP servers require the hostname to work.\n"
-#~ "Your host name should be a fully-qualified host name,\n"
-#~ "such as ``mybox.mylab.myco.com''."
-#~ msgstr ""
-#~ "Ìîëÿ, âúâåäåòå èìå íà õîñò àêî ãî çíàåòå.\n"
-#~ "Íÿêîé DHCP ñúðâúðè èçèñêâàò òîâà çà äà ðàáîòÿò.\n"
-#~ "Host èìåòî òðÿáâà äà áóäå íàïúëíî êâàëèôèöèðàíî èìå,\n"
-#~ "êàòî ``mybox.mylab.myco.com''."
-
-#~ msgid "DrakFloppy Error: %s"
-#~ msgstr "Ãðåøêà DrakFloppy: %s"
-
-#~ msgid "Launch Aurora at boot time"
-#~ msgstr "Ïóñíè Aurora ïðè ñòàðòèðàíå"
-
-#~ msgid "Traditional Gtk+ Monitor"
-#~ msgstr "Îáèêíîâåí Gtk+ ìîíèòîð"
-
-#~ msgid "Traditional Monitor"
-#~ msgstr "Îáèêíîâåí ìîíèòîð"
-
-#~ msgid "NewStyle Monitor"
-#~ msgstr "NewStyle ìîíèòîð"
-
-#~ msgid "NewStyle Categorizing Monitor"
-#~ msgstr "NewStyle êàòåãîðèçèðàí ìîíèòîð"
-
-#~ msgid "Secure Connection"
-#~ msgstr "Çàùèòåíà âðúçêà"
-
-#~ msgid "FTP Connection"
-#~ msgstr "FTP âðúçêà"
-
-#~ msgid "Mail/Groupware/News"
-#~ msgstr "Ñúðâúð, Ïîùà/Groupware/Íîâèíè"
-
-#~ msgid "Postfix mail server, Inn news server"
-#~ msgstr "Postfix ïîùåíñêè ñúðâúð, Inn íîâèíàðñêè ñúðâúð"
-
-#~ msgid "/Options"
-#~ msgstr "/Îïöèè"
-
-#~ msgid "/Autodetect jazz drives"
-#~ msgstr "/Àâòîìàòè÷íî çàñè÷à jazz óñòðîéñòâà"
-
-#~ msgid "/Autodetect modems"
-#~ msgstr "/Àâòîìàòè÷íî çàñè÷à ìîäåìè"
-
-#~ msgid "/Autodetect printers"
-#~ msgstr "/Aâòîìàòè÷íî çàñè÷à ïðèíòåðè"
-
-#~ msgid ""
-#~ "Click on \"OK\" if you want to delete all data and partitions present on\n"
-#~ "this hard drive. Be careful, after clicking on \"OK\", you will not be "
-#~ "able\n"
-#~ "to recover any data and partitions present on this hard drive, including\n"
-#~ "any Windows data.\n"
-#~ "\n"
-#~ "Click on \"Cancel\" to stop this operation without losing any data and\n"
-#~ "partitions present on this hard drive."
-#~ msgstr ""
-#~ "Öúêíåòå \"OK\", àêî èñêàòå äà èçòðèåòå âñè÷êè äàííè è\n"
-#~ "äÿëîâå ñúùåñòâóâàùè íà òîçè òâúðä äèñê. Âíèìàíèå, ñëåä öúêàíå íà \"OK\", "
-#~ "íÿìàäà ìîæåòå äà âúçñòàíîâèòå êàêâèòî è äà áèëî äàííè è äÿëîâå "
-#~ "ñúùåñòâóâàùè íà òîçè òâúðä äèñê,\n"
-#~ "âêëþ÷èòåëíî êàêâèòî è äà å Windows äàííè.\n"
-#~ "\n"
-#~ "Öúêíåòå \"Îòìÿíà\", çà äà îòìåíèòå òàçè îïåðàöèÿ áåç çàãóáà äà äàííèòå è\n"
-#~ "äÿëîâåòå ñúùåñòâóâàùè íà òîçè òâúðä äèñê."
-
-#~ msgid ""
-#~ "You must indicate where you wish to place the information required to "
-#~ "boot\n"
-#~ "GNU/Linux.\n"
-#~ "\n"
-#~ "Unless you know exactly what you are doing, choose \"First sector of "
-#~ "drive\n"
-#~ "(MBR)\"."
-#~ msgstr ""
-#~ "Òðÿáâà äà ïîñî÷èòå êúäå æåëàåòå äà\n"
-#~ "ïîñòàâèòå èíôîðìàöèÿòà, íåîáõîäèìà çà ñòàðòèðàíåòî íà GNU/Linux.\n"
-#~ "\n"
-#~ "Àêî íå ñòå ñèãóðíè â òîâà, êîåòî ïðàâèòå, èçáåðåòå \"Ïúðâèÿ ñåêòîð íà\n"
-#~ "óñòðîéñòâîòî (MBR)\"."
-
-#~ msgid ""
-#~ "After you have configured the general bootloader parameters, the list of\n"
-#~ "boot options which will be available at boot time will be displayed.\n"
-#~ "\n"
-#~ "If there is another operating system installed on your machine, it will\n"
-#~ "automatically be added to the boot menu. Here, you can choose to fine-"
-#~ "tune\n"
-#~ "the existing options. Select an entry and click \"Modify\" to modify or\n"
-#~ "remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
-#~ "installation step.\n"
-#~ "\n"
-#~ "You may also not want to give access to these other operating systems to\n"
-#~ "anyone. In which case, you can delete the corresponding entries. But "
-#~ "then,\n"
-#~ "you will need a boot disk in order to boot those other operating systems!"
-#~ msgstr ""
-#~ "LILO (èëè LInux LOader) è Grub ñà bootloader-è: òå ìîãà äà ñòàðòèðàò\n"
-#~ "GNU/Linux èëè êîÿ äà å äðóãà îïåðàöèîííà ñèñòåìà ñúùåñòâóâàùà íà "
-#~ "êîìïþòúðà âè.\n"
-#~ "Îáèêíîâåííî, òåçè äðóãè îïåðàöèîííè ñèñòåìà ñå çàñè÷àò è èíñòàëèðàò\n"
-#~ "ïðàâèëíî. Àêî òîâà íå ñòàâà ïðè âàñ, ìîæåòå äà äîáàâÿòå çàïèñè íà ðúêà â\n"
-#~ "òîçè åêðàí. Ãëåäàéòå äà èçáåðåòå âåðíè ïàðàìåòðè.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ìîæå äà íå èñêàòå äà äàâàòå äîñòúï äî òåçè îïåðàöèîííè ñèñòåìè íà íèêîé,\n"
-#~ "â êîéòî ñëó÷àé ìîæåòå äà èçòðèåòå ñúîòâåòíèòå çàïèñè. Íî â òàêúâ ñëó÷àé,\n"
-#~ "ùå ñå íóæäàåòå îò boot-äèñêåòà, çà äà ãè ñòàðòèðàòå !"
-
-#~ msgid ""
-#~ "DrakX generally detects the number of buttons your mouse possesses. If "
-#~ "not,\n"
-#~ "it assumes you have a two-button mouse and will set it up for third-"
-#~ "button\n"
-#~ "emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-#~ "USB mouse.\n"
-#~ "\n"
-#~ "If you wish to specify a different type of mouse, select the appropriate\n"
-#~ "type from the provided list.\n"
-#~ "\n"
-#~ "If you choose a mouse other than the default, a test screen will be\n"
-#~ "displayed. Use the buttons and wheel to verify that the settings are\n"
-#~ "correct. If the mouse is not working well, press the space bar or "
-#~ "[Return]\n"
-#~ "to \"Cancel\" and choose again.\n"
-#~ "\n"
-#~ "Sometimes, wheel mouses are not automatically detected. You will need to\n"
-#~ "manually select it in the list. Be sure to select the one corresponding "
-#~ "to\n"
-#~ "the correct port it is attached to. After you have pressed the \"OK\"\n"
-#~ "button, a mouse image will be displayed. You then need to move the wheel "
-#~ "of\n"
-#~ "your mouse to activate it correctly. Then test that all buttons and\n"
-#~ "movements are correct."
-#~ msgstr ""
-#~ "Ïî ïîäðàçáèðàíå, DrakX ïðåäïîëàãà ÷å èìàòå äâóáóòîííà ìèøêà è ùå âêëþ÷è\n"
-#~ "ñèìóëèðàíå íà òðè áóòîíà. DrakX àâòîìàòè÷íî ðàçáèðà äàëè å PS/2, ñåðèéíà "
-#~ "èëè\n"
-#~ "USB ìèøêà.\n"
-#~ "\n"
-#~ "Àêî èñêàòå äà îïðåäåëèòå äðóã òèï íà ìèøêàòà, èçáåðåòå ïîäõîäÿù îò "
-#~ "ñïèñúêà,\n"
-#~ "êîéòî ùå âè áúäå ïðåäñòàâåí.\n"
-#~ "\n"
-#~ "Àêî èçáåðåòå ìèøêà ðàçëè÷íà îò òàçè ïî ïîäðàçáèðàíå, ùå âè áúäå "
-#~ "ïðåäîñòàâåí\n"
-#~ "åêðàí çà ïðîáà. Èçïîëçâàéòå áóòîíèòå è êîëåëöåòî, çà äà ïðîâåðèòå, ÷å\n"
-#~ "íàñòðîéêàòà å äîðà. Àêî ìèøêàòà íå ðàáîòè, êàêòî òðÿáâà, íàòèñíåòå "
-#~ "èíòåðâàë\n"
-#~ "èëè ÑÅ ÂÚÐÍÅÒÅ êúì \"Îòêàç\" è èçáåðåòå ïàê."
-
-#~ msgid ""
-#~ "The first step is to choose your preferred language.\n"
-#~ "\n"
-#~ "Please choose your preferred language for installation and system usage.\n"
-#~ "\n"
-#~ "Clicking on the \"%s\" button will allow you to select other\n"
-#~ "languages to be installed on your workstation. Selecting other languages\n"
-#~ "will install the language-specific files for system documentation and\n"
-#~ "applications. For example, if you host users from Spain on your machine,\n"
-#~ "select English as the main language in the tree view and in the Advanced\n"
-#~ "section, click on the box corresponding to \"Spanish|Spain\".\n"
-#~ "\n"
-#~ "Note that multiple languages may be installed. Once you have selected "
-#~ "any\n"
-#~ "additional locales, click the \"OK\" button to continue.\n"
-#~ "\n"
-#~ "To switch from one language to the other, you can launch the\n"
-#~ "\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
-#~ "language, or as a simple user to only change that user's default language."
-#~ msgstr ""
-#~ "Ìîëÿ, öúêíåòå íà ïðåäïî÷èòàíèÿ åçèê íà èíñòàëàöèÿ è ñèñòåìíà óïîòðåáà.\n"
-#~ "\n"
-#~ "Öúêàíåòî íà áóòîíà \"Íàïðåäíè÷àâ\" ùå âè ïîçâîëè äà èçáåðåòå äðóãè åçèöè\n"
-#~ "äà áúäàò èíñòàëèðàíè íà ðàáîòíàòà âè ñòàíöèÿ. Èçáèðàíåòî íà äðóãè åçèöè\n"
-#~ "ùå èíñòàëèðà ôàéëîâå ñïåöèâè÷íè çà åçèöèòå çà ñèñòåìíà äîêóìåíòàöèÿ è\n"
-#~ "ïðèëîæåíèÿ. Íàïðèìåð, àêî èìàòå ïîòðåáèòåëè îò Èçïàíèÿ íà ìàøèíàòà ñè,\n"
-#~ "èçáåðåòå àíãëèéñêè êàòî ãëàâåí åçèê â äúðâîâèäíàòà ôîðìà è â ñåêöèÿ\n"
-#~ "\"Íàïðåäíè÷àâ\" öúêíåòå íà ñèâàòà çâåçäà ñúîòâåòñòâàùà íà\n"
-#~ "\"Èñïàíñêè|Èñïàíèÿ\".\n"
-#~ "Îòáåëåæåòå, ÷å ìîãàò äà áúäàò èíñòàëèðàíè íÿêîëêî åçèêà. Âåäíúæ èçáðàí\n"
-#~ "íÿêàêúâ ëîêàë, öúêíåòå áóòîíà \"OK\", çà äà ïðîäúëæèòå."
-
-#~ msgid ""
-#~ "Normally, DrakX selects the right keyboard for you (depending on the\n"
-#~ "language you have chosen). However, you might not have a keyboard that\n"
-#~ "corresponds exactly to your language: for example, if you are an English\n"
-#~ "speaking Swiss person, you may still want your keyboard to be a Swiss\n"
-#~ "keyboard. Or if you speak English but are located in Quebec, you may "
-#~ "find\n"
-#~ "yourself in the same situation. In both cases, you will have to go back "
-#~ "to\n"
-#~ "this installation step and select an appropriate keyboard from the list.\n"
-#~ "\n"
-#~ "Click on the \"More\" 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, you will "
-#~ "be\n"
-#~ "asked in the next dialog to choose the key binding that will switch the\n"
-#~ "keyboard layout between the latin and non-latin layouts."
-#~ msgstr ""
-#~ "Îáèêíîâåíî, DrakX áè òðÿáâàëî äà èçáåðå ïðàâèëíàòà çà âàñ êëàâèàòóðà (â "
-#~ "çàâèñèìîñò\n"
-#~ "îò åçèêà, êîéòî ñòå èçáðàëè) è íÿìà äà ñå íàëîæè äà âèäèòå òàçè ñòúïêà. "
-#~ "Îáà÷å ìîæå äà\n"
-#~ "íÿìàòå êëàâèàòóðà ñúîòâåòñòâàùà òî÷íî íà âàøèÿ åçèê: íàïðèìåð, àêî ñòå "
-#~ "àíãëîãîâîðÿù øâåä,\n"
-#~ "ìîæå áè ùå èñêàòå êëàâèàòóðàòà âè äà áúäå øâåäñêà. Èëè àêî ãîâîðèòå "
-#~ "aíãëèéñêè, íî ñòå\n"
-#~ "â Êâåáåê, ìîæå áè ùå ñòå â ñúùàòà ñèòóàöèÿ. È â äâàòà ñëó÷àÿ, ùå òðÿáâà "
-#~ "äà ñå âúðíåòå\n"
-#~ "êúì òàçè èíñòàëàöèîííà ñòúïêà è äà èçáåðåòå ïðàâèëíàòà êëàâèàòóðà îò "
-#~ "ñïèñúêà.\n"
-#~ "\n"
-#~ "Âñè÷êî, êîåòî òðÿáâà äà íàïðàâèòå, å äà ïîñî÷èòå ïðåäïî÷èòàíàòà "
-#~ "êëàâèàòóðíà íàðåäáà\n"
-#~ "îò ñïèñúêà, êîéòî ùå ñå ïîÿâè ïðåä âàñ.\n"
-#~ "\n"
-#~ "Àêî èìàòå êëàâèàòóðà îò åçèê ðàçëè÷åí îò òîçè èçïîëçâàí ïî ïîäðàçáèðàíå, "
-#~ "öúêíåòå\n"
-#~ "íà áóòîíà \"Íàïðåäíè÷àâ\". Ùå âè áúäå ïðåäîñòàâåí ïúëåí ñïèñúê ñ "
-#~ "ïîääúðæàíèòå êëàâèàòóðè."
-
-#~ msgid ""
-#~ "DrakX now needs to know if you want to perform a default (\"Recommended"
-#~ "\")\n"
-#~ "installation or if you want to have greater control (\"Expert\") over "
-#~ "your\n"
-#~ "installation. You can also choose to do a new installation or upgrade "
-#~ "your\n"
-#~ "existing Mandrake Linux system:\n"
-#~ "\n"
-#~ " * \"Install\": completely wipes out the old system. However, depending "
-#~ "on\n"
-#~ "what is currently installed on your machine, you may be able to keep "
-#~ "some\n"
-#~ "old partitions (Linux or otherwise) unchanged;\n"
-#~ "\n"
-#~ " * \"Upgrade\": this installation class allows to simply update the\n"
-#~ "packages currently installed on your Mandrake Linux system. It keeps "
-#~ "your\n"
-#~ "hard drives' current partitions as well as user configurations. All "
-#~ "other\n"
-#~ "configuration steps remain available, similar to a normal installation;\n"
-#~ "\n"
-#~ " * \"Upgrade Packages Only\": this new installation class allows you to\n"
-#~ "upgrade an existing Mandrake Linux system while keeping all system\n"
-#~ "configurations unchanged. Adding new packages to the current "
-#~ "installation\n"
-#~ "is also possible.\n"
-#~ "\n"
-#~ "Upgrades should work fine on Mandrake Linux systems using version \"8.1"
-#~ "\"\n"
-#~ "or later.\n"
-#~ "\n"
-#~ "Depending on your GNU/Linux knowledge, select one of the following "
-#~ "choices:\n"
-#~ "\n"
-#~ " * Recommended: choose this if you have never installed a GNU/Linux\n"
-#~ "operating system. The installation will be very easy and you will only "
-#~ "be\n"
-#~ "asked a few questions;\n"
-#~ "\n"
-#~ " * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
-#~ "perform a highly customized installation. Some of the decisions you will\n"
-#~ "have to make may be difficult if you do not have good GNU/Linux "
-#~ "knowledge,\n"
-#~ "so it is not recommended that those without a fair amount of experience\n"
-#~ "select this installation class."
-#~ msgstr ""
-#~ "DrakX ñåãà òðÿáâà äà ïðîâåäå èíñòàëàöèÿ ïî ïîäðàçáèðàíå (\"Ïðåïîðú÷èòåëíà"
-#~ "\")\n"
-#~ "èëè òàêàâà, êúäåòî èìàòå ïî-ãîëÿì êîíòðîë (\"Åêñïåðòíà\"). Âèå ñúùî òàêà\n"
-#~ "ìîæåòå äà èçáåðåòå äà èçâúðøèòå íîâà èíñòàëàöèÿ èëè íàäãðàæäàíå íà\n"
-#~ "ñúùåñòâóâàùà Mandrake Linux ñèñòåìà. Öúêàéêè íà \"Èíñòàëèðàé\" ùå çàòðèå\n"
-#~ "íàïúëíî ñòàðàòà ñèñòåìà. Èçáåðåòå \"Íàäãðàäè\", àêî íàäãðàæäàòå èëè\n"
-#~ "ïîïðàâèòå ñúùåñòâóâàùà ñèñòåìà\n"
-#~ "\n"
-#~ "Ìîëÿ, èçáåðåòå \"Èíñòàëèðàé\", àêî íÿìàòå èíñòàëèðàíà ïðåäèøíà âåðñè íà\n"
-#~ "Mandrake Linux èëè àêî èñêàòå äà èçáèðàòå ìåæäó îïåðàöèîííè ñèñòåìè.\n"
-#~ "\n"
-#~ "Ìîëÿ, èçáåðåòå \"Íàäãðàäè\", àêî èñêàòå äà íàäãðàäèòå èëè ïîïðàâèòå âå÷å\n"
-#~ "èíñòàëèðàíà âåðñèÿ íà Mandrake Linux.\n"
-#~ "\n"
-#~ "Â çàâèñèìîñò îò ïîçíàíèÿòà âè ïî GNU/Linux, ìîëÿ, èçáåðåòå åäèí îò "
-#~ "ñëåäíèòå\n"
-#~ "âèäîâå èíñòàëàöèÿ/íàäãðàæäàíå íà âàøàòà Mandrake Linux îïåðàöèîíí "
-#~ "ñèñòåìà:\n"
-#~ "\n"
-#~ " * Ïðåïîðú÷èòåëíà: èçáåðåòå òîâà, àêî íèêîãà íå ñòå èñíòàëèðàëè GNU/"
-#~ "Linux\n"
-#~ "îïåðàöèîííà ñèñòåìà. Èíñòàëàöèÿòà å ìíîãî ëåñíà è ùå áúäåòå ïîïèòàíè "
-#~ "ñàìî\n"
-#~ "íÿêîëêî âúïðîñà.\n"
-#~ "\n"
-#~ " * Åêñïåðòíà:àêî èìàòå äîáðè ïîçíàíèÿ ïî GNU/Linux, ìîæåòå äà èçáåðåòå "
-#~ "òîçè\n"
-#~ "èíñòàëàöèîíåí êëàñ. Åêñïåðòíàòà èíñòàëàöèÿ ùå âè ïîçâîëè äà èçâúðøèòå "
-#~ "ìíîãî\n"
-#~ "ïîòðåáèòåëñêà èíñòàëàöèÿ. Îòãîâîðèòå íà íÿêîè âúïðîñè ìîæå äà ñà òðúäè, "
-#~ "àêî\n"
-#~ "íå ïîçíàâàòå äîáðå GNU/Linux, òàêà ÷å èçáåðåòå òîâà, îñâåí àêî íå çíàåòå\n"
-#~ "êàêâî ïðàâèòå."
-
-#~ msgid "Please be patient. This operation can take several minutes."
-#~ msgstr ""
-#~ "Ìîëÿ, áúäåòå òúðïåëèâè. Òàçè îïåðàöèÿ ìîæå äà îòíåìå íÿêîëêî ìèíóòè."
-
-#~ msgid ""
-#~ "At this point, you need to choose which partition(s) will be used for "
-#~ "the\n"
-#~ "installation of your Mandrake Linux system. If partitions have already "
-#~ "been\n"
-#~ "defined, either from a previous installation of GNU/Linux or from "
-#~ "another\n"
-#~ "partitioning tool, you can use existing partitions. Otherwise, hard "
-#~ "drive\n"
-#~ "partitions must be defined.\n"
-#~ "\n"
-#~ "To create partitions, you must first select a hard drive. You can select\n"
-#~ "the disk for partitioning by clicking on ``hda'' for the first IDE "
-#~ "drive,\n"
-#~ "``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-#~ "\n"
-#~ "To partition the selected hard drive, you can use these options:\n"
-#~ "\n"
-#~ " * \"Clear all\": this option deletes all partitions on the selected "
-#~ "hard\n"
-#~ "drive;\n"
-#~ "\n"
-#~ " * \"Auto allocate\": this option enables to automatically create ext3 "
-#~ "and\n"
-#~ "swap partitions on your hard drive's free space;\n"
-#~ "\n"
-#~ "\"More\": gives access to additional features:\n"
-#~ "\n"
-#~ " * \"Save partition table\": saves the partition table to a floppy. "
-#~ "Useful\n"
-#~ "for later partition-table recovery, if necessary. It is strongly\n"
-#~ "recommended to perform this step;\n"
-#~ "\n"
-#~ " * \"Restore partition table\": allows to restore a previously saved\n"
-#~ "partition table from a floppy disk;\n"
-#~ "\n"
-#~ " * \"Rescue partition table\": if your partition table is damaged, you "
-#~ "can\n"
-#~ "try to recover it using this option. Please be careful and remember that "
-#~ "it\n"
-#~ "can fail;\n"
#~ "\n"
-#~ " * \"Reload partition table\": discards all changes and loads your "
-#~ "initial\n"
-#~ "partition table;\n"
-#~ "\n"
-#~ " * \"Removable media automounting\": unchecking this option will force\n"
-#~ "users to manually mount and unmount removable medias such as floppies "
-#~ "and\n"
-#~ "CD-ROMs.\n"
-#~ "\n"
-#~ " * \"Wizard\": use this option if you wish to use a wizard to partition\n"
-#~ "your hard drive. This is recommended if you do not have a good knowledge "
-#~ "of\n"
-#~ "partitioning;\n"
-#~ "\n"
-#~ " * \"Undo\": use this option to cancel your changes;\n"
-#~ "\n"
-#~ " * \"Toggle to normal/expert mode\": allows additional actions on\n"
-#~ "partitions (type, options, format) and gives more information;\n"
-#~ "\n"
-#~ " * \"Done\": when you are finished partitioning your hard drive, this "
-#~ "will\n"
-#~ "save your changes back to disk.\n"
-#~ "\n"
-#~ "Note: you can reach any option using the keyboard. Navigate through the\n"
-#~ "partitions using [Tab] and [Up/Down] arrows.\n"
-#~ "\n"
-#~ "When a partition is selected, you can use:\n"
-#~ "\n"
-#~ " * Ctrl-c to create a new partition (when an empty partition is "
-#~ "selected);\n"
-#~ "\n"
-#~ " * Ctrl-d to delete a partition;\n"
-#~ "\n"
-#~ " * Ctrl-m to set the mount point.\n"
-#~ "\n"
-#~ "To get information about the different filesystem types available, "
-#~ "please\n"
-#~ "read the ext2FS chapter from the ``Reference Manual''.\n"
-#~ "\n"
-#~ "If you are installing on a PPC machine, you will want to create a small "
-#~ "HFS\n"
-#~ "``bootstrap'' partition of at least 1MB, which will be used by the "
-#~ "yaboot\n"
-#~ "bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-#~ "may find it a useful place to store a spare kernel and ramdisk images "
-#~ "for\n"
-#~ "emergency boot situations."
-#~ msgstr ""
-#~ "Â òîçè ìîìåíò òðÿáâà äà èçáåðåòå êîé äÿëîâå äà áúäàò èçïîëçâàíè çà "
-#~ "èíñòàëàöèÿ\n"
-#~ "íà âàøàòà Mandrake Linux ñèñòåìà. Àêî äÿëîâåòå âå÷å ñà îïðåäåëåíè, äàëè "
-#~ "îò\n"
-#~ "ïðåäèøíà èíñòàëàöèÿ íà GNU/Linux èëè îò äðóã èíñòðóìåíò çà ðàçäåëÿíå, "
-#~ "ìîæåòå\n"
-#~ "äà èçïîëçâàòå ñúùåñòâóâàùèòå äàëîâå.  ïðîòèâåí ñëó÷àé òðÿáâà äà "
-#~ "îïðåäåëèòå\n"
-#~ "äÿëîâå îò òâúðäèÿ äèñê.\n"
-#~ "\n"
-#~ "Çà äà ñúçäàäåòå äÿëîâå, òðÿáâà ïúðâî äà èçáåðåòå òâúðä äèñê. Ìîæåòå äà\n"
-#~ "èçáåðåòå äèñê çà ðàçäåëÿíå, êàòî öúêíåòå íà \"hda\" çà ïúðâî IDE "
-#~ "óñòðîéñòâî,\n"
-#~ "\"hdb\" çà âòîðîòî, \"sda\" çà ïúðâî SCSI óñòðîéñòâî è ò.í..\n"
-#~ "\n"
-#~ "Çà äà ðàçäåëèòå èçáðàíèÿ òâúð äèñê, ìîæåòå äà èçïîëçâàòå ñëåäíèÿ îïöèè:\n"
-#~ "\n"
-#~ " * \"Èç÷èñòè âñè÷êî\": òàçè îïöèÿ èçòðèâà âñè÷êè äÿëîâå íà èçáðàíèÿ "
-#~ "äèñê.\n"
-#~ "\n"
-#~ " * \"Àâòîìàòè÷íî ñúçäàâàíå\": òàçè îïöèÿ ïîçâîëÿâà àâòîìàòè÷íî äà "
-#~ "ñúçàäåòå\n"
-#~ "Ext2 è swap äÿëîâå â ñâîáîäíîòî ïðîñòðàíñòâî íà òâúðäèÿ âè äèñê.\n"
-#~ "\n"
-#~ " * \"Ñïàñè òàáëèöàòà ñ äÿëîâå\": àêî òàáëèöàòà ñ äÿëîâå å ïîâðåäåíà, "
-#~ "ìîæåòå\n"
-#~ "äà ñå îïèòàòå äà ÿ âúçñòàíîâèòå ñ òàçè îïöèÿ. Ìîëÿ, áúäåòå âíèìàòåëíè è\n"
-#~ "ïîìíåòå, ÷å ìîæå äà íå ñòàíå.\n"
-#~ "\n"
-#~ " * \"Âúðíè\": èçïîëçâàéòå òàçè îïöèÿ, çà äà îòìåíèòå ïðîìåíèòå.\n"
-#~ "\n"
-#~ " * \"Ïðåçàðåäè\": ìîæåòå äà èçïîëçâàòå òàçè îïöèÿ, àêî èñêàòå äà âúðíåòå\n"
-#~ "âñè÷êè ïðîìåíè è äà çàðåäèòå ïúðâîíà÷àëíàòà òàáëèöà ñ äÿëîâå.\n"
-#~ "\n"
-#~ " * \"Ìàãüîñíèê\": èçïîëçâàéòå òàçè îïöèÿ, àêî èñêàòå äà èçïîëçâàòå "
-#~ "ìàãüîñíèê,\n"
-#~ "äà ðàçäåëè òâúðäèÿ âè äèñê. Òîâà ñå ïðåïîðú÷âà, àêî íÿìàòå äîñòàòú÷íî "
-#~ "ïîçíàíèÿ\n"
-#~ "çà ðàçäåëÿíåòî.\n"
-#~ "\n"
-#~ " * \"Âúçñòàíîâè îò äèñêåòà\": òàçè îïöèÿ ùå âè ïîçâîëè äà âúçñòàíîâèòå "
-#~ "çàïàçåíà\n"
-#~ "ïðåäè òîâà íà äèñêåòà òàáëèöà ñ äÿëîâå.\n"
-#~ "\n"
-#~ " * \"Çàïàçè íà äèñêåòà\": çàïàçâà òàáëèöàòà ñ äÿëîâå íà äèñêåòà. Ïîëåçíî "
-#~ "å ïðè\n"
-#~ "åâåíòóàëíî âúçñòàíîâÿâàíå íà òàáëèöàòà ïðè íåîáõîäèìîñò. Ñèëíî ñå "
-#~ "ïðåïîðú÷âà\n"
-#~ "äà íàïðàâèòå òîâà.\n"
-#~ "\n"
-#~ " * \"Ãîòîâî\": êîãàòî ñòå ñâúðøèëè ñ ðàçäåëÿíåòî íà òâúðäèÿ ñè äèñê, òîâà "
-#~ "ùå\n"
-#~ "çàïèøå ïðîìåíèòå âúðõó äèñêà.\n"
-#~ "\n"
-#~ "Çàáåëåæåòà: ìîæåòå äà äîñòèãíåòå âñÿêà îïöèÿ èçïîëçâàéêè êëàâèàòóðàòà.\n"
-#~ "Ìèíàâàéòå ïðåç äÿëîâåòå èçïîëçâàéêè [Tab} è ñòðåëêèòå íàãîðå/íàäîëó.\n"
-#~ "\n"
-#~ "Êîãàòî å èçáðàí äÿë, ìîæåòå äà èçïîëçâàòå:\n"
-#~ "\n"
-#~ " * Ctrl-c, çà äà ñúçäàäåòå íîâ äÿë (àêî å èçáðàí ïðàçåí äÿë);\n"
-#~ "\n"
-#~ " * Ctrl-d, çà äà èçòðèåòå äÿë;\n"
-#~ "\n"
-#~ " * Ctrl-m, çà äà óñòàíîâèòå òî÷êà íà ìîíòèðàíå.\n"
-#~ "\n"
-#~ "Àêî èíñòàëèòå íà PPC ìàøèíà, ñèãóðíî ùå èñêàòå äà ñúçäàäåòå ìàëúê HFS\n"
-#~ "\"bootstrap\" äÿë îò ïîíå 1 ÌÁ, êîéòî ùå áúäå èçïîëçâàò îò boot loader-"
-#~ "úò\n"
-#~ "yaboot. Àêî ñìÿòàòå äà íàïðàâèòå äÿëà ïî-ãîëÿì, íàïðèìåð 50 ÌÁ, ìîæåòå äà "
-#~ "ãî\n"
-#~ "íàìåðèòå çà ïîëåçíî ìÿñòî, êúäåòî äà ñúõðàíÿâàòå íÿêîå ÿäðî èëè image íà\n"
-#~ "ramdisk â ñëó÷àé íà èçâúíðåäíè ñèòóàöèè."
-
-#~ msgid ""
-#~ "At this point, it is time to choose the security level desired for the\n"
-#~ "machine. As a rule of thumb, the more exposed the machine is, and the "
-#~ "more\n"
-#~ "the data stored in it is crucial, the higher the security level should "
-#~ "be.\n"
-#~ "However, a higher security level is generally obtained at the expense of\n"
-#~ "ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' "
-#~ "to\n"
-#~ "get more information about the meaning of these levels.\n"
-#~ "\n"
-#~ "If you do not know what to choose, keep the default option."
-#~ msgstr ""
-#~ "Â òîçè ìîìåíò, òðÿáâà äà èçáåðåòå íèâîòî íà ñèãóðíîñò, êîåòî èñêàòå çà\n"
-#~ "ìàøèíàòà. Ïî ïðàâèëî, êîëêîòî ïîâå÷å ìàøèíàòà âè å äîñòúïíà è êîëêîòî "
-#~ "ïîâå÷å\n"
-#~ "äàííè ñå ñúõðàíÿâàò íà íåÿ, òîëêîâà ïî-âèñîêî òðÿáâà äà å íèâîòî íà "
-#~ "ñèãóðíîñò.\n"
-#~ "Âúïðåêè òîâà, âèñîêàòà ñèãóðíîñò å çà ñìåòêà íà ëåêîòàòà íà ðàáîòà.\n"
-#~ "Îáúðíåòå ñå êúì ãëàâàòà MSEC íà Reference Manual, çà äà ïîëó÷èòå ïîâå÷å "
-#~ "èíôîðìàöèÿ\n"
-#~ "çà çíà÷åíèåòî íà òåçè íèâà.\n"
-#~ "\n"
-#~ "Àêî íå çíàåòå êàêòî äà èçáåðåòå, èçáåðåòå îïöèÿòà ïî ïîäðàçáèðàíå."
-
-#~ msgid ""
-#~ "Before continuing, you should read carefully the terms of the license. "
-#~ "It\n"
-#~ "covers the whole Mandrake Linux distribution, and if you do not agree "
-#~ "with\n"
-#~ "all the terms included in it, click on the \"Refuse\" button which will\n"
-#~ "immediately terminate the installation. To continue with the "
-#~ "installation,\n"
-#~ "click on the \"Accept\" button."
-#~ msgstr ""
-#~ "Ïðåäè äà ïðîäúëæèòå, òðÿáâà âíèìàòåëíî äà ïðî÷åòåòå óñëîâèÿòà íà ëèöåíçà. "
-#~ "Òîé\n"
-#~ "ïîêðèâà öÿëàòà Mandrake Linux äèñòðèáóöèÿ, è, àêî íå ñòå ñúãëàñíè ñ "
-#~ "âñè÷êè óñëîâèÿ\n"
-#~ "â íåãî, öúêíåòå íà áóòîíà Îòêàç. Òîâà íåçàáàâíî ùå ïðèêëþ÷è èíñòàëàöèÿòà. "
-#~ "Çà äà\n"
-#~ "ïðîäúëæèòå ñ èíñòàëàöèÿòà, öúêíåòå íà áóòîíà Ïðèåìè."
-
-#~ msgid ""
-#~ "Your new Mandrake Linux operating system is currently being installed.\n"
-#~ "Depending on the number of packages you will be installing and the speed "
-#~ "of\n"
-#~ "your computer, this operation could take from a few minutes to a\n"
-#~ "significant amount of time.\n"
-#~ "\n"
-#~ "Please be patient."
-#~ msgstr ""
-#~ "Íîâàòà âè Mandrake Linux îïåðàöèîííà ñèñòåìà â ìîìåíòà ñå èíñòàëèðà. "
-#~ "Òàçè\n"
-#~ "îïåðàöèÿ áè òðÿáâàëî äà îòíåìå íÿêîëêî ìèíóòè (çàâèñè îò èçáðàíàòà "
-#~ "ãîëåìèíà íà\n"
-#~ "èíñòàëàöèÿòà è îò ñêîðîñòòà íà êîìïþòúðà âè).\n"
-#~ "\n"
-#~ "Ìîëÿ, áúäåòå òúðïåëèâè."
-
-#~ msgid ""
-#~ "Any partitions that have been newly defined must be formatted for use\n"
-#~ "(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
-#~ "\n"
-#~ "Click on \"Cancel\" 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\n"
-#~ "for bad blocks on the disk."
-#~ msgstr ""
-#~ "Âñè÷êè íîâîäåôèíèðàíè äÿëîâå òðÿáâà äà áúäàò ôîðìàòèðàíè, çà äà ñå "
-#~ "èçïîëçâàò\n"
-#~ "(ôîðìàòèðàíå îçíà÷àâà ñúçäàâàíå íà ôàéëîâà ñèñòåìà).\n"
-#~ "\n"
-#~ "Â òîçè ìîìåíòà ìîæå áè èñêàòå äà ïðåôîðìàòèðàòå íÿêîè ñúùåñòâóâàùè "
-#~ "äÿëîâå, çà\n"
-#~ "äà èçòðèåòå âñÿêàêâè äàííè, êîèòî ñúäúðæàò. Àêî èñêàòå äà ãî íàïðàâèòå, "
-#~ "ìîëÿ\n"
-#~ "èçáåðåòå òÿõ.\n"
-#~ "\n"
-#~ "Ìîëÿ, îòáåëåæåòå, ÷å íå å íåîáõîäèìî äà ïðåôîðìàòèðàòå âñè÷êè äÿëîâå\n"
-#~ "ñúùåñòâóâàùè îòïðåäè. Òðÿáâà äà ïðåôîðìàòèðàòå äÿëîâåòå ñúäúðæàùè\n"
-#~ "îïåðàöèîííàòà ñèñòåìà (êàòî \"/\", \"/usr\" èëè \"/var\"), íî òîâà íå å\n"
-#~ "çàäúëæèòåëíî çà äÿëîâå ñúäúðæàùè äàííè, êîèòî èñêàòå äà çàïàçèòå "
-#~ "(îáèêíîâåíî\n"
-#~ "\"/home\").\n"
-#~ "\n"
-#~ "Ìîëÿ, áúäåòå âíèìàòåëíè, êîãàòî èçáèðàòå äÿëîâåòå. Ñëåä ôîðìàòèðàíå "
-#~ "âñè÷êè\n"
-#~ "äàííè íà ïîñî÷åíèòå äÿëîâå ùå áúäàò èçòðèòè è íÿìà äà ìîæåòå äà ãè\n"
-#~ "âúçñòàíîâèòå.\n"
-#~ "\n"
-#~ "Öúêíåòå \"OK\", êîãàòî ñòå ãîòîâè äà ôîðìàòèðàòå äàëîâå.\n"
-#~ "\n"
-#~ "Öúêíåòå \"Îòêàç\", àêî èñêàòå äà èçáåðåòå äðóãè äÿëîâå çà èíñòàëàöèÿ íà "
-#~ "íîâàòà\n"
-#~ "ñè Mandrake Linux îïåðàöèîííà ñèñòåìà.\n"
-#~ "\n"
-#~ "Öúêíåòå \"Íàïðåäíè÷àâ\", àêî èñêàòå äà èçáåðåòå äÿëîâå, êîèòî äà áúäàò\n"
-#~ "ïðîâåðåíè çà ëîøè áëîêîâå îò äèñêà."
-
-#~ msgid ""
-#~ "There you are. Installation is now completed and your GNU/Linux system "
-#~ "is\n"
-#~ "ready to use. Just click \"OK\" to reboot the system. You can start\n"
-#~ "GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-#~ "soon as the computer has booted up again.\n"
-#~ "\n"
-#~ "The \"%s\" button (in Expert mode only) shows two more buttons to:\n"
-#~ "\n"
-#~ " * \"generate auto-install floppy\": to create an installation floppy "
-#~ "disk\n"
-#~ "which will automatically perform a whole installation without the help "
-#~ "of\n"
-#~ "an operator, similar to the installation you just configured.\n"
-#~ "\n"
-#~ " Note that two different options are available after clicking the "
-#~ "button:\n"
-#~ "\n"
-#~ " * \"Replay\". This is a partially automated installation as the\n"
-#~ "partitioning step (and only this one) remains interactive;\n"
-#~ "\n"
-#~ " * \"Automated\". Fully automated installation: the hard disk is\n"
-#~ "completely rewritten, all data is lost.\n"
-#~ "\n"
-#~ " This feature is very handy when installing a great number of similar\n"
-#~ "machines. See the Auto install section on our web site;\n"
-#~ "\n"
-#~ " * \"Save packages selection\"(*): saves the package selection as done\n"
-#~ "previously. Then, when doing another installation, insert the floppy "
-#~ "inside\n"
-#~ "the drive and run the installation going to the help screen by pressing "
-#~ "on\n"
-#~ "the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
-#~ "\n"
-#~ "(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-#~ "\"mformat a:\")"
-#~ msgstr ""
-#~ "À òàêà ! Èíñòàëàöèÿòà å çàâúðøåíà è GNU/Linux ñèñòåìàòà âè å ãîòîâà çà\n"
-#~ "óïîòðåáà. Ïðîñòî öúêíåòå \"OK\", çà äà ðåñòàðòèðàòå ñèñòåìàòà. Ìîæåòå äà\n"
-#~ "ñòàðòèðàòå GNU/Linux èëè Windows, êîåòî ïðåäïî÷èòàòå (àêî èìàòå äâå "
-#~ "ñèñòåìè),\n"
-#~ "âåäíàãà ñëåä êàòî êîìïþòúðúò ñòàðòèðà îòíîâî.\n"
-#~ "\n"
-#~ "Áóòîíà \"Íàïðåäíè÷àâ\" (ñàìî â \"Åêñïåðòåí\") ïîêàçâà îùå äâà áóòîíà çà:\n"
-#~ "\n"
-#~ " * \"ãåíåðèðàíå íà äèñêåòà çà àâòîìàòè÷íà èíñòàëàöèÿ\": çà äà ñúçäàäåòå\n"
-#~ "èíñòàëàöèîííà äèñêåòà, êîÿòî ñëåä òîâà àâòîìàòè÷íî äà èç÷úðøâà öÿëàòà\n"
-#~ "èíñòàëàöèÿ áåç ïîìîùòà íà îïåðàòîð, ïðèëè÷àùà íà èíñòàëàöèÿòà, êîÿòî òîêó-"
-#~ "ùî\n"
-#~ "ñòå èçâúðøèëè.\n"
-#~ "\n"
-#~ " Îòáåëåæåòå, ÷å äâå ðàçëè÷íè îïöèè ñà äîñòúíè, ÷ðåç öúêàíå íà áóòîíà:\n"
-#~ "\n"
-#~ " * \"Ïðåèãðàé\". Òîâà å ÷àñòè÷íî àâòîìàòèçèðàíà èíñòàëàöèÿ êàòî "
-#~ "ñòúïêèòå\n"
-#~ "ïî ðàçäåëÿíå íà äÿëîâå îñòàâàò èíòåðàêòèâíè.\n"
-#~ "\n"
-#~ " * \"Àâòîìàòè÷íà\". Íàïúëíî àâòîìàòè÷íà èíñòàëàöèÿ: òâúðäèÿò äèñê ñå\n"
-#~ "ïðåçàïèñâà íàïúëíî, âñÿêàêâè äàííè ñå çàãóáâàò.\n"
-#~ "\n"
-#~ " Òàçè îñîáåíîñò å ìíîãî óäîáíà, êîãàòî èíñòàëèðàòå ãîëÿì áðîé ïîäîáíî\n"
-#~ "ìàøèíè. Âèæòå ñåêöèÿòà çà àâòîìàòè÷íà èíñòàëàöèÿ íà íàøèÿ web-ñàéò.\n"
-#~ "\n"
-#~ " * \"Çàïàçè èçáîðà íà ïàêåòè\"(*): çàïàçâà èçáîðà íà ïàêåòè, òàêà "
-#~ "êàêòî å\n"
-#~ "íàïðàâåí ïðåäè. Êîãàòî ïðàâèòå äðóãà èíñòàëàöèÿ, âêàðàéòå äèñêåòàòà â\n"
-#~ "óñòðîéñòâîòî è ïóñíåòå èíñòàëàöèÿòà äà âúðâè ÷ðåç ïîìîùíèÿ åêðàí, êàòî\n"
-#~ "íàòèñíåòå êëàâèøà [F1] è êàòî íàïèøåòå >>linux defcfg=\"floppy\"<<.\n"
-#~ "\n"
-#~ "(*) Òðÿáâà âè FAT-ôîðìàòèðàíà äèñêåòà (çà äà ñúçäàäåòå òàêâà ïîä GNU/"
-#~ "Linux,\n"
-#~ "íàïèøåòå \"mformat a:\")"
-
-#~ msgid ""
-#~ "You now need to choose where you want to install the Mandrake Linux\n"
-#~ "operating system on your hard drive. If your hard drive is empty or if "
-#~ "an\n"
-#~ "existing operating system is using all the available space, you will "
-#~ "need\n"
-#~ "to partition it. Basically, partitioning a hard drive consists of "
-#~ "logically\n"
-#~ "dividing it to create space to install your new Mandrake Linux system.\n"
-#~ "\n"
-#~ "Because the partitioning process' effects are usually irreversible,\n"
-#~ "partitioning can be intimidating and stressful if you are an "
-#~ "inexperienced\n"
-#~ "user. Fortunately, there is a wizard which simplifies this process. "
-#~ "Before\n"
-#~ "beginning, please consult the manual and take your time.\n"
-#~ "\n"
-#~ "If you are running the installation in Expert mode, you will enter\n"
-#~ "DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-#~ "fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
-#~ "Guide''. From the installation interface, you can use the wizards as\n"
-#~ "described here by clicking the dialog's \"Wizard\" button.\n"
-#~ "\n"
-#~ "If partitions have already been defined, either from a previous\n"
-#~ "installation or from another partitioning tool, simply select those to\n"
-#~ "install your Linux system.\n"
-#~ "\n"
-#~ "If partitions are not defined, you will need to create them using the\n"
-#~ "wizard. Depending on your hard drive configuration, several options are\n"
-#~ "available.\n"
-#~ "\n"
-#~ " * \"Use free space\": this option will simply lead to an automatic\n"
-#~ "partitioning of your blank drive(s). You will not be prompted further;\n"
-#~ "\n"
-#~ " * \"Use existing partition\": the wizard has detected one or more "
-#~ "existing\n"
-#~ "Linux partitions on your hard drive. If you want to use them, choose "
-#~ "this\n"
-#~ "option. You will then be asked to choose the mount points associated to\n"
-#~ "each of the partitions. The legacy mount points are selected by default,\n"
-#~ "and you should generally keep them.\n"
-#~ "\n"
-#~ " * \"Use the free space on the Windows partition\": if Microsoft Windows "
-#~ "is\n"
-#~ "installed on your hard drive and takes all the space available on it, "
-#~ "you\n"
-#~ "have to create free space for Linux data. To do so, you can delete your\n"
-#~ "Microsoft Windows partition and data (see ``Erase entire disk'' or "
-#~ "``Expert\n"
-#~ "mode'' solutions) or resize your Microsoft Windows partition. Resizing "
-#~ "can\n"
-#~ "be performed without the loss of any data, provided you previously\n"
-#~ "defragment the Windows partition. Backing up your data won't hurt "
-#~ "either..\n"
-#~ "This solution is recommended if you want to use both Mandrake Linux and\n"
-#~ "Microsoft 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"
-#~ "than at the present time. You will have less free space under Microsoft\n"
-#~ "Windows to store your data or to install new software;\n"
-#~ "\n"
-#~ " * \"Erase entire disk\": if you want to delete all data and all "
-#~ "partitions\n"
-#~ "present on your hard drive and replace them with your new Mandrake Linux\n"
-#~ "system, choose this option. Be careful with this solution because you "
-#~ "will\n"
-#~ "not be able to revert your choice after you confirm;\n"
-#~ "\n"
-#~ " !! If you choose this option, all data on your disk will be lost. !!\n"
-#~ "\n"
-#~ " * \"Remove Windows\": this will simply erase everything on the drive "
-#~ "and\n"
-#~ "begin fresh, partitioning everything from scratch. All data on your disk\n"
-#~ "will be lost;\n"
-#~ "\n"
-#~ " !! If you choose this option, all data on your disk will be lost. !!\n"
-#~ "\n"
-#~ " * \"Expert mode\": choose this option if you want to manually partition\n"
-#~ "your hard drive. Be careful -- it is a powerful but dangerous option. "
-#~ "You\n"
-#~ "can very easily lose all your data. Hence, do not choose this unless you\n"
-#~ "know what you are doing. To know how to use the DiskDrake utility used\n"
-#~ "here, refer to the section ``Managing Your Partitions'' of the "
-#~ "````Starter\n"
-#~ "Guide''''"
-#~ msgstr ""
-#~ "Â òîçè ìîìåíò òðÿáâà èçáåðåòå êúäå íà òâúðäèÿ ñè äèñêà äà èíñòàëèðàòå "
-#~ "âàøàòà\n"
-#~ "Mandrake Linux îïåðàöèîííà ñèñòåìà. Àêî òâúðäèÿò âè äèñê å ïðàçåí èëè "
-#~ "äðóãà\n"
-#~ "îïåðàöèîííà ñèñòåìà èçïîëçâà öÿëîòî ïðîñòðàíñòâî, ùå òðÿáâà äà ãî "
-#~ "ðàçäåëèòå.\n"
-#~ "Êàçàíî ïðîñòè÷êî, ðàçäåëÿíåòî íà òâúðäèÿ äèñê ñå ñúñòîè â ëîãè÷åñêî "
-#~ "ðàçäåëÿíå\n"
-#~ "öåë äà ñå ñúçäàäå ìÿñòî çà èíñòàëàöèÿ íà íîâàòà Mandrake Linux ñèñòåìà.\n"
-#~ "\n"
-#~ "Òúé êàòî ïðîöåñúò íà ðàçäåëÿíå îáèêíîâåíî å íåîáðàòèì, ðàçäåëÿíåòî ìîæå "
-#~ "äà\n"
-#~ "èçãëåæäà ïëàøåù è ñòðÿñêàù, àêî ñòå íåîïèòåí ïîòðåáèòåë. Ñëàâà Áîãó, èìà\n"
-#~ "ìàãüîñíèê, êîéòî îïðîñòÿâà òîçè ïðîöåñ. Ïðåäè äà çàïî÷íåòå, êîíñóëòèðàéòå "
-#~ "ñå\n"
-#~ "ñ ðúêîâîäñòâîòî è íå áúðçàéòå.\n"
-#~ "\n"
-#~ "Àêî ïóñêàòå èíñòàëàöèÿòà â Åêñïåðòåí ðåæèì, ùå áúäåòå âúâåäåíè â "
-#~ "DiskDrake,\n"
-#~ "ðàçäåëÿùèÿ èíñòðóìåíò íà Mandrake Linux, êîéòî âè ïîçâîëÿâà äà "
-#~ "äîíàñòðîèòå\n"
-#~ "äÿëîâåòå ñè. Âèæòå ãëàâàòà DiskDrake îò ðúêîâîäñòâîòî. Îò èíñòàëàöèîííèÿ\n"
-#~ "èíòåðôåéñ ìîæåòå äà èçïîëçâàòå ìàãüîñíèöèòå, êàòî íàòèñíåòå áóòîíà\n"
-#~ "\"Ìàãüîñíèê\" íà äèàëîãà.\n"
-#~ "\n"
-#~ "Àêî äÿëîâåòå ñà âå÷å îïðåäåëåíè, äàëè îò ïðåäèøíà èíñòàëàöèÿ èëè îò äðóã\n"
-#~ "èñòðóìåíò çà ðàçäåëÿíå, ïðîñòî èçáåðåòå íà êîé äà èíñòàëèðàòå Linux\n"
-#~ "ñèñòåìàòà.\n"
-#~ "\n"
-#~ "Àêî äÿëîâåòå íå ñà îïðåäåëåíè, ùå òðÿáâà äà ñúçäàäåòå òàêèâà èçïîëçâàéêè\n"
-#~ "ìàãüîñíèêà. Â çàâèñèìîñò îò íàñòðîéêàòà íà òâúðäèÿ äèñê, ñà âúçìîæíè "
-#~ "íÿêîëêî\n"
-#~ "îïöèè:\n"
-#~ "\n"
-#~ " * \"Èçïîëçâàé ñâîáîäíîòî ïðîñòðàíñòâî\": òàçè îïöèÿ ïðîñòî ùå äîâåäå òî\n"
-#~ "àâòîìàòè÷íî ïîäåëÿíå íà ïðàçíîòî ïðîñòðàíñòâî íà òâúðäèÿ âè äèñê. Íÿìà "
-#~ "äà\n"
-#~ "áúäåòå ïèòàíè çà òîâà.\n"
-#~ "\n"
-#~ " * \"Èçïîëçâàé ñúùåñòâóâàù äÿë\": ìàãüîñíèêúò å çàñÿêúë åäèí èëè ïîâå÷å\n"
-#~ "ñúùåñòâóâàùè Linux äÿëîâå íà òâúðäèÿ âè äèñê. Àêî èñêàòå äà ãè "
-#~ "èçïîëçâàòå,\n"
-#~ "èçáåðåòå òàçè îïöèÿ.\n"
-#~ "\n"
-#~ " * \"Èçïîëçâàé ñâîáîäíîòî ïðîñòðàíñòâî íà Windows äÿë\": àêî èìàòå "
-#~ "èíñòàëèðàí\n"
-#~ "Microsoft Windows íà òâúðäèÿ ñè äèñê è òîé çàåìà öÿëîòî äîñòúïíî\n"
-#~ "ïðîñòðàíñòâî íà íåãî, òðÿáâà äà îñâîáîäèòå ìÿñòî çà Linux äàííè. Çà äà\n"
-#~ "íàïðàâèòåòîâà, ìîæåòå äà èçòðèåòå Microsoft Windows äÿëà è äàííèòå "
-#~ "(âèæòå\n"
-#~ "ðåøåíèÿòà \"Èçòðèé öåëèÿ äèñê\" èëè \"Åêïåðòåí ðåæèì\") èëè äà ïðîìåíèòå\n"
-#~ "ãîëåìèíàòà íà Microsoft Windows äÿëà. Ïðîìÿíàòà íà ãîëåìèíàòà ìîæå äà "
-#~ "áúäå\n"
-#~ "èçâúðøåíà áåç çàãóáà íà äàííè. Òîâà ðåøåíèå ñå ïðåïîðú÷âà, àêî èñêàòå\n"
-#~ "åäíîâðåìåííî Mandrake Linux è Microsoft Windows íà åäèí è ñúùè êîìïþòúð.\n"
-#~ "\n"
-#~ " Ïðåäè äà èçáåðåòå òàçè îïöèÿ, ìîëÿ, ðàçáåðåòå, ÷å ñëåä òàçè "
-#~ "ïðîöåäóðà,\n"
-#~ "ãîëåìèíàòà íà Microsoft Windows äÿëà ùå áúäå ïî-ìàëêà, îòêîëêîòî ïðåäè "
-#~ "òîâà.\n"
-#~ "Ùå èìàòå ïî-ìàëêî ìÿñòî ïîä Microsoft Windows çà ñúõðàíÿâàíå íà äàííè èëè "
-#~ "çà\n"
-#~ "èíñòàëèðà íà íîâ ñîôòóåð.\n"
-#~ "\n"
-#~ " * \"Èçòðèé öåëèÿ äèñê\": àêî èñêàòå äà èçòðèåòå âñè÷êè äàííè è äÿëîâå, "
-#~ "êîèòî\n"
-#~ "ñúùåñòâóâàò íà âàøèÿ òâúðä äèñê è äà ãè çàìåíèòå ñ íîâàòà Mandrake Linux\n"
-#~ "ñèñòåìà, èçáåðåòå òàçè îïöèÿ. Áúäåòå âíèìàòåëíè ñ òîâà ðåøåíèÿ, çàùîòî "
-#~ "íÿìà\n"
-#~ "äà ìîæåòå äà âúðíåòå îáðàòíî èçáîðà ñè, ñëåä êàòî ïîòâúðäèòå.\n"
-#~ "\n"
-#~ " !! Àêî èçáåðåòå òàçè îïöèÿ, âñè÷êè äàííè íà äèñêà âè ùå áúäàò "
-#~ "çàãóáåíè !!\n"
-#~ "\n"
-#~ " * \"Èçòðèé Windows\": Òîâà ïðîñòî ùå èçòðèå âñè÷êî íà äèñêà è ùå çàïî÷íå "
-#~ "íà\n"
-#~ "÷èñòî, ðàçäåëÿíå îò ðàç. Âñÿêàêâè äàííè íà äèñêà âè ùå áúäàò çàãóáåíè.\n"
-#~ "\n"
-#~ " !! Àêî èçáåðåòå òàçè îïöèÿ, âñè÷êè äàííè íà äèñêà âè ùå áúäàò "
-#~ "çàãóáåíè !!\n"
-#~ "\n"
-#~ " * \"Åêñïåðòåí ðåæèì\": èçáåðåòå òàçè îïöèÿ, àêî èñêàòå ðú÷íî äà "
-#~ "ðàçäåëèòå\n"
-#~ "òâúðäèÿ ñè äèñê. Áúäåòå âíèìàòåëíè - òîâà å ìîùåí, íî îïàñåí èçáîð. "
-#~ "Ìîæåòå\n"
-#~ "ìíîãî ëåñíî äà çàãóáèòå âñè÷êè äàííè. Òàêà ÷å íå èçáèðàéòå òîâà, àêî íå\n"
-#~ "çíàåòå êàêâî ïðàâèòå."
-
-#~ msgid ""
-#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
-#~ "by\n"
-#~ "booting from the CD-ROM, press the >>F1<< key at boot and type "
-#~ ">>rescue<<\n"
-#~ "at the prompt. But in case your computer cannot boot from the CD-ROM, "
-#~ "you\n"
-#~ "should come back to this step for help in at least two situations:\n"
-#~ "\n"
-#~ " * when installing the bootloader, DrakX will rewrite the boot sector (\n"
-#~ "MBR) of your main disk (unless you are using another boot manager), to\n"
-#~ "allow you to start up with either Windows or GNU/Linux (assuming you "
-#~ "have\n"
-#~ "Windows in your system). If you need to reinstall Windows, the Microsoft\n"
-#~ "install process will rewrite the boot sector, and then you will not be "
-#~ "able\n"
-#~ "to start GNU/Linux!\n"
-#~ "\n"
-#~ " * if a problem arises and you cannot start up GNU/Linux from the hard\n"
-#~ "disk, this floppy disk will be the only means of starting up GNU/Linux. "
-#~ "It\n"
-#~ "contains a fair number of system tools for restoring a system, which has\n"
-#~ "crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-#~ "password, or any other reason.\n"
-#~ "\n"
-#~ "If you say \"Yes\", you will be asked to enter a disk inside the drive. "
-#~ "The\n"
-#~ "floppy disk you will insert must be empty or contain data which you do "
-#~ "not\n"
-#~ "need. You will not have to format it since DrakX will rewrite the whole\n"
-#~ "disk."
-#~ msgstr ""
-#~ "Mandrake Linux CDROM-úò èìà âãðàäåí ñïàñèòåëåí ðåæèì. Ìîæåòå äà ãî\n"
-#~ "äîñòèãíåòå, êàòî ñòàðòèðàòå îò CDROM-à, íàòèñíåòå êëàâèøà >>F1<< è "
-#~ "íàïèøåòå\n"
-#~ ">>rescue<<. Íî ñëó÷àé, ÷å êîìïþòúðúò íå ìîæå äà ñòàðòèðà îò CDROM, ùå "
-#~ "òðÿáâà\n"
-#~ "äà ñå âúðíåòå êúì òàçè ñòúïêà çà ïîìîù â ïîíå äâå ñèòóàöèè:\n"
-#~ "\n"
-#~ " * êîãàòî èñíòàëèðàòå boot loader, DrakX ùå ïðåçàïèøå ñòàðòîâèÿ ñåêòîð "
-#~ "(MBR) íà ãëàâíèÿ âè äèñê (îñâåí àêî íå èçïîëçâàòå äðóã ñòàðòîâ ìåíèäæúð), "
-#~ "òàêà ÷å\n"
-#~ "äà ñòàðòèðàòå Windows èëè GNU/Linux (àêî èìàòå Windows â ñèñòåìàòà ñè). "
-#~ "Àêî\n"
-#~ "ñå íóæäàåòå äà ïðåèíñòàëèðàòå Windows, èíñòàëàöèîííèÿ ïðîöåñ íà "
-#~ "Microsoft\n"
-#~ "ùå ïðåçàïèøå ñòàðòîâèÿ ñåêòîð è íÿìà äà ìîæåòå äà ïóñíåòå âàøèÿ GNU/"
-#~ "Linux!\n"
-#~ "\n"
-#~ " * àêî ñå ïîÿâè ïðîáëåì è íå ìîæåòå äà ïóñíåòå GNU/Linux îò òâúðäèÿ ñè "
-#~ "äèñê,\n"
-#~ "òàçè äèñêåòà ùå èìà çà öåë ñàìî äà ñòàðòèðà GNU/Linux. Òÿ ñúäúðæà "
-#~ "çàäîâîëèòåëåí\n"
-#~ "áðîé ñèñòåìíè èíñòðóìåíòè çà âúçñòàíîâÿâàíå íà ñèñòåìà, êîÿòî å çàáèëà "
-#~ "ñëåä\n"
-#~ "ñðèâ â çàõðàíâàíåòî, ñëó÷àéíà ãðåøêà, ãðåøêà â ïàðîëàòà èëè íÿêàêâà "
-#~ "äðóãà\n"
-#~ "ïðè÷èíà.\n"
-#~ "\n"
-#~ "Êîãàòî öúêíåòå íà òàçè ñòúïêà, ùå áúäåòå ïîìîëåíè äà ïîñòàâèòå äèñê â\n"
-#~ "óñòðîéñòâîòî. Äèñêåòàòà, êîÿòî âêàðàòå, òðÿáâà äà áúäå ïðàçíà èëè äà "
-#~ "ñúäúðæà\n"
-#~ "äàííè, îò êîèòî íå ñå íóæäàåòå. Íÿìà íóæäà äà ÿ ôîðìàòèðàòå, òúé êàòî "
-#~ "DrakX\n"
-#~ "ùå ïðåçàïèøå öÿëàòà äèñêåòà."
-
-#~ 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.\n"
-#~ "\n"
-#~ "You will be presented the list of available resolutions and color depth\n"
-#~ "available for your hardware. Choose the one that best suit your needs "
-#~ "(you\n"
-#~ "will be able to change that after installation though). When you are\n"
-#~ "satisfied with the sample shown in the monitor, click \"OK\". A window "
-#~ "will\n"
-#~ "then appear and ask you if you can see it.\n"
-#~ "\n"
-#~ "If you are doing an \"Expert\" installation, you will enter the X\n"
-#~ "configuration wizard. See the corresponding section of the manual for "
-#~ "more\n"
-#~ "information about this wizard.\n"
-#~ "\n"
-#~ "If you can see the message during the test, and answer \"Yes\", then "
-#~ "DrakX\n"
-#~ "will proceed to the next step. If you cannot see the message, it simply\n"
-#~ "means that the configuration was wrong and the test will automatically "
-#~ "end\n"
-#~ "after 10 seconds, restoring the screen. Refer then to the video\n"
-#~ "configuration section of the user guide for more information on how to\n"
-#~ "configure your display."
-#~ msgstr ""
-#~ "X (îð X Window System) å ñúðöåòî íà GNU/Linux ãðàôè÷íèÿ èíòåðôåéñ, íà "
-#~ "êîéòî\n"
-#~ "ñå îñëàíÿò ãðàôè÷íèòå ñðåäè (KDE, Gnome, AfterStep, WindowMaker...) "
-#~ "ñâúðçàíè\n"
-#~ "ñ Mandrake Linux.  òàçè ñåêöèÿ, DrakX ùå ñå àâòîìàòè÷íî äà íàñòðîè X.\n"
-#~ "\n"
-#~ "Èçêëþ÷èòåëíî ðÿäêî ñå ñëó÷âà äà ñå ïðîâàëè, îñâåí àêî õàðäóåðúò íå å "
-#~ "ìíîãî\n"
-#~ "ñòàð (èëè ïðåêàëåíî íîâ). Àêî óñïåå, ùå ñòàðòèðà X àâòîìàòè÷íî ñ íàé-"
-#~ "äîáðàòà\n"
-#~ "ðàçäåëèòåëíà ñïîñîáíîñò â çàâèñèìîñò îò ãîëåìèíàòà íà ìîíèòîðà âè. Ùå ñå\n"
-#~ "ïîÿâè ïðîçîðåö, çà äà âè ïîïèòà äàëè ãî âèæäàòå.\n"
-#~ "\n"
-#~ "Àêî èçâúðøâàòå \"Åêñïåðòíà\" èíñòàëàöèÿ, ùå áúäåòå âúâåäåíè â ìàãüîñíèêà "
-#~ "çà\n"
-#~ "íàñòðîéêà íà X. Âèæòå ñúîòâåòíàòà ñåêöèÿ íà ðúêîâîäñòâîòî çà ïîâå÷å\n"
-#~ "èíôîðìàöèÿ çà ìàãüîñíèêà.\n"
-#~ "\n"
-#~ "Àêî âèäèòå ñúîáùåíèåòî, íàòèñíåòå \"Äà\", ñëåä êîåòî DrakX ùå ïðîäúëæè "
-#~ "ñúñ\n"
-#~ "ñëåäâàùàòà ñòúïêà. Àêî íå âèäèòå ñúîáùåíèåòî, òîâà îçíà÷àâà, ÷å "
-#~ "íàñòðîéêàòà\n"
-#~ "å ñãðåøåíà è òåñòúò àâòîìàòè÷íî ùå áúäå ïðèêëþ÷åí ñëåä 10 ñåêóíäè,\n"
-#~ "âúçñòàíîâÿâàéêè åêðàíà."
-
-#~ msgid ""
-#~ "You may now choose which services you wish to start at boot time.\n"
-#~ "\n"
-#~ "Here are listed all the services available with the current "
-#~ "installation.\n"
-#~ "Review them carefully and uncheck those which are not always needed at "
-#~ "boot\n"
-#~ "time.\n"
-#~ "\n"
-#~ "You can get a short explanatory text about a service by selecting a\n"
-#~ "specific service. However, if you are not sure whether a service is "
-#~ "useful\n"
-#~ "or not, it is safer to leave the default behavior.\n"
-#~ "\n"
-#~ "!! At this stage, be very careful if you intend to use your machine as a\n"
-#~ "server: you will probably not want to start any services which you do "
-#~ "not\n"
-#~ "need. Please remember that several services can be dangerous if they are\n"
-#~ "enabled on a server. In general, select only the services you really "
-#~ "need.\n"
-#~ "!!"
-#~ msgstr ""
-#~ "Ñåãà ìîæåòå äà èçáåðåòå êîè óñëóãè äà ñå ïóñêàò ïðè ñòàðòèðàíå.\n"
-#~ "\n"
-#~ "Òóê ñà ïðåäñòàâåíè âñè÷êè óñëóãè, äîñòúïíè ñ íàñòîÿùàòà èíñòàëàöèÿ.\n"
-#~ "Ïðåãëåäàéòå ãè âíèìàòåëíî è èçêëþ÷åòå òåçè, êîèòî íå âè òðÿáâàò âèíàãè "
-#~ "ïðè ñòàðòèðàíå.\n"
-#~ "\n"
-#~ "Ìîæåòå âèäèòå êðàòúê îáÿñíèòåëåí òåêñò çà óñëóãàòà, êàòî ïîñòàâèòå êóðîðà "
-#~ "íà ìèøêàòà ñè\n"
-#~ "íàä èìåòî íà óñëóãàòà. Àêî íå ñòå ñèãóðíè, äàëè óñëóãàòà å ïîëåçíà èëè "
-#~ "íå, ïî-äîáðå\n"
-#~ "å äà îñòàâèòå èçáîðà ïî ïîäðàçáèðàíå.\n"
-#~ "\n"
-#~ "Âíèìàâàéòå ñ òàçè ñòúïêà, àêî ñìÿòàòå äà èçïîëçâàòå ìàøèíàòà ñè êàòî "
-#~ "ñúðâúð:\n"
-#~ "ñèãóðíî íå áèõòå èñêàëè äà ïóñêàòå óñëóãè, îò êîèòî íå ñå íóæäàåòå. "
-#~ "Ìîëÿ,\n"
-#~ "çàïîìíåòå, ÷å íÿêîè óñëóãè ìîãàò äà áúäàò îïàñíè, àêî ñà âêëþ÷åíè íà "
-#~ "ñúðâúðà.\n"
-#~ "Ïî ïðèíöèï, èçáèðàéòå ñàìî óñëóãèòå, îò êîèòî íàèñòèíà ñå íóæäàåòå."
-
-#~ msgid ""
-#~ "You are now able to set up your Internet/network connection. If you wish "
-#~ "to\n"
-#~ "connect your computer to the Internet or to a local network, click \"OK"
-#~ "\".\n"
-#~ "The autodetection of network devices and modem will be launched. If this\n"
-#~ "detection fails, uncheck the \"Use auto-detection\" box next time. You "
-#~ "may\n"
-#~ "also choose not to configure the network, or do it later; in that case,\n"
-#~ "simply click the \"Cancel\" button.\n"
-#~ "\n"
-#~ "Available connections are: traditional modem, ISDN modem, ADSL "
-#~ "connection,\n"
-#~ "cable modem, and finally a simple LAN connection (Ethernet).\n"
-#~ "\n"
-#~ "Here, we will not detail each configuration. Simply make sure that you "
-#~ "have\n"
-#~ "all the parameters from your Internet Service Provider or system\n"
-#~ "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.\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you\n"
-#~ "are finished configuring your network connection, click \"Cancel\"."
-#~ msgstr ""
-#~ "Àêî èñêàòå äà ñâúðæåòå êîìïþòúðà ñè êúì Èíòåðíåò èëè êúì ëîêàëíà ìðåæà, "
-#~ "ìîëÿ\n"
-#~ "èçáåðåòå ïîäõîäÿùàòà îïöèÿ. Ìîëÿ, âêëþ÷åòå óñòðîéñòâîòî ñè ïðåäè äà "
-#~ "èçáåðåòå\n"
-#~ "îïöèÿòà, çà äà äàäåòå âúçìîæíîñò íà DrakX äà ãî çàñå÷å.\n"
-#~ "\n"
-#~ "Mandrake Linux èçâúðøâà íàñòðîéêàòà íà Èíòåðíåò âðúçêàòà ïî âðåìå íà\n"
-#~ "èíñòàëàöèÿ. Äîñòúïíèòå âðúçêè: îáèêíîâåí ìîäåì, ISDN ìîäåì, ADSL âðúçêà,\n"
-#~ "êàáåëåí ìîäåì è íàêðàÿ îáèêíîâåíà LAN âðúçêà (Ethernet).\n"
-#~ "\n"
-#~ "Òóê íÿìà ïîäðîáíî äà ðàçãëåæäàìå âñÿêà íàñòðîéêà. Ïðîñòî áúäåòå ñèãóðíè, "
-#~ "֌\n"
-#~ "èìàòå äîñòàòú÷íî äàííè îò Èíòåðíåò äîñòàâ÷èêà ñè èëè ñèñòåìíèÿ\n"
-#~ "àäìèíñèòðàòîð.\n"
-#~ "\n"
-#~ "Ìîæåòå äà ñå êîíñóëòèðàòå ñ ãëàâàòà â ðúêîâîäñòâîòî çà Èíòåðíåò âðúçêèòå "
-#~ "çà\n"
-#~ "ïîäðîáíîñòè çà íàñòðîéêàòà èëè ïðîñòî èç÷àêàéòå ñèñòåìàòà âè äà áúäå\n"
-#~ "èíñòàëèðàíà è èçïîëçâàéòå ïðîãðàìàòà îïèñàíà òàì, çà äà íàñòðîèòå "
-#~ "âðúçêàòà.\n"
-#~ "\n"
-#~ "Àêî èñêàòå äà íàñòðîèòå ìðåæàòà ïî-êúñíî ñëåä èíñòàëàöèÿ èëè àêî ñòå "
-#~ "ñâúðøèëè\n"
-#~ "ñ íàñòðîéêàòà íà ìðåæàòà, öúêíåòå \"Îòêàç\"."
-
-#~ msgid ""
-#~ "Finally, depending on whether or not you chose to be able to select\n"
-#~ "individual packages, you will be presented a tree containing all "
-#~ "packages\n"
-#~ "classified by groups and subgroups. While browsing the tree, you can "
-#~ "select\n"
-#~ "entire groups, subgroups, or individual packages.\n"
-#~ "\n"
-#~ "Whenever you select a package on the tree, a description appears on the\n"
-#~ "right. When your selection is finished, click the \"Install\" button "
-#~ "which\n"
-#~ "will then launch the installation process. Depending on the speed of "
-#~ "your\n"
-#~ "hardware and the number of packages that need to be installed, it may "
-#~ "take\n"
-#~ "a while to complete the process. An installation time estimate is "
-#~ "displayed\n"
-#~ "on the screen, to help you gauge if there is sufficient time to enjoy a "
-#~ "cup\n"
-#~ "of coffee.\n"
-#~ "\n"
-#~ "!! If a server package has been selected, either intentionally or "
-#~ "because\n"
-#~ "it was part of a whole group, you will be asked to confirm that you "
-#~ "really\n"
-#~ "want those servers to be installed. Under Mandrake Linux, any installed\n"
-#~ "servers are started by default at boot time. Even if they are safe and "
-#~ "have\n"
-#~ "no known issues at the time the distribution was shipped, it may happen\n"
-#~ "that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
-#~ "install the listed services and they will be started automatically by\n"
-#~ "default. !!\n"
-#~ "\n"
-#~ "The \"Automatic dependencies\" option simply disables the warning dialog\n"
-#~ "which appears whenever the installer automatically selects a package. "
-#~ "This\n"
-#~ "occurs because it has determined that it needs to satisfy a dependency "
-#~ "with\n"
-#~ "another package in order to successfully complete the installation.\n"
-#~ "\n"
-#~ "The tiny floppy disk icon at the bottom of the list allows to load the\n"
-#~ "package list chosen during a previous installation. Clicking on this "
-#~ "icon\n"
-#~ "will ask you to insert a floppy disk previously created at the end of\n"
-#~ "another installation. See the second tip of the previous step on how to\n"
-#~ "create such a floppy disk."
-#~ msgstr ""
-#~ "Íàêðàÿ, â çàâèñèìîñò îò èçáîðà âè äàëè äà èçáèðàòå ïàêåòè åäèí ïî åäèí, "
-#~ "ùå\n"
-#~ "âè áúäå ïðåäñòàâåíî äúðâî ñúäúðæàùî âñè÷êè ïàêåòè ïîäðåäåíè ïî ãðóïè è\n"
-#~ "ïîäðãðóïè. Äîêàòî îáõîæäàòå äúðâîòî, ìîæåòå äà èçáåðåòå öåëè ãðóïè, "
-#~ "ïîäãðóïè\n"
-#~ "èëè îòäåëíè ïàêåòè.\n"
-#~ "\n"
-#~ "Êîãàòî ïîñî÷èòå ïàêåò îò äúðâîòî, ùå ñå ïîÿâè îïèñàíèå âäÿñíî. Êîãàòî\n"
-#~ "èçáîðúò å ïðèêëþ÷åí, öúêíåòå áóòîíà \"Èíñòàëèðàé\", êîéòî ùå ïóñíå "
-#~ "ïðîöåñà\n"
-#~ "íà èíñòàëàöèÿ. Â çàâèñèìîñò îò ñêîðîñòòà íà õàðäóåðà âè è áðîÿ íà "
-#~ "ïàêåòèòå,\n"
-#~ "êîèòî èñêàòå äà áúäàò èíñòàëèðàíè, ïðîöåñúò ìîæå äà îòíåìå èçâåñòíî "
-#~ "âðåìå.\n"
-#~ "Î÷àêâàíîòî âðåìå çà ïðèêëþ÷âàíå íà ïðîöåñà, ÷å áúäå ïîêàçàíî íà åêðàòà, "
-#~ "çà\n"
-#~ "äà âè ïîìîãíå äà ïðåöåíèòå äàëè èìàòå äîñòàòú÷íî âðåìå äà ñå íàñëàäèòå "
-#~ "íà\n"
-#~ "÷àøà êàôå.\n"
-#~ "\n"
-#~ "!! Àêî å èçáðàí ñúðâúðåí ïàêåò, áèëî òî óìèøëåíî èëè çàùîòî å ÷àñò îò "
-#~ "öÿëà\n"
-#~ "ãðóïà, ùå áúäåòå ïîìîëåíè çà ïîòâúðæäåíèå, ÷å íàèñòèíà èñêàòå òîçè "
-#~ "ñúðâúð\n"
-#~ "äà áúäå èíñòàëèðàí.  Mandrake Linux, âñè÷êè ñúðâúðè òðúãâàò ïî "
-#~ "ïîäðàçáèðàíå\n"
-#~ "ïðè çàðåæäàíå.Äàæå àêî ñà ñèãóðíè è íÿìàò èçâåñòíè ïðîáëåìè, êîãàòî\n"
-#~ "äèñòðèáóöèÿòà ñå ðàçïðîñòðàíÿâà, ìîæå äà ñå ñëó÷è òàêà, ÷å äà ñå ïîÿâÿò\n"
-#~ "äóïêè â ñèãóðíîñòòà, ñëåä êàòî âåðñèÿòà íà Mandrake Linux å çàâúðøåíà. "
-#~ "Àêî\n"
-#~ "íå çíàåòå çà êàêâî ñëóæè îïðåäåëåíà óñëóãà èëè çàùî å èíñòàëèðàíà, "
-#~ "öúêíåòå\n"
-#~ "\"Íå\". Ñ öúêàíå íà \"Äà\" ùå èíñòàëèðàòå èçáðîåíè óñëóãè è òå ùå áúäàò\n"
-#~ "ñòàðòèðàíè àâòîìàòè÷íî ïî ïîäðàçáèðàíå. !!\n"
-#~ "\n"
-#~ "Îïöèÿòà \"Àâòîìàòè÷íè çàâèñèìîñòè\" èçêëþ÷âà ïðåäóïðåäèòåëíèòå äèàëîçè,\n"
-#~ "êîãàòî èíñòàëàòîðúò àâîìàòè÷íî ðåøè èçáåðå ïàêåò. Òîâà ñå ñëó÷âà, çàùîòî\n"
-#~ "å ðåøèë, ÷å ñå íóæäàå äà çàäîâîëè çàâèñèìîñò ñ äðóã ïàêåò, çà äà "
-#~ "ïðèêëþ÷è\n"
-#~ "óñïåøíî èíñòàëàöèÿòà.\n"
-#~ "\n"
-#~ "Ìàëêàòà èêîíêà íà äèñêåòêà â äúíîòî íà ñïèñúêà ïîçâîëÿâà äà çàðåäèòå "
-#~ "ñïèñúê\n"
-#~ "ñ ïàêåòè îò ïðåäèøíà èíñòàëàöèÿ. Àêî öúêíåòå íà òàçè èêîíêà, ùå áúäåòå\n"
-#~ "ïîìîëåíè äà âêàðàòå äèñêåòà ñúçäàäåíà ïðåäè òîâà â êðàÿ íà äðóãà "
-#~ "èíñòàëàöèÿ.\n"
-#~ "Âèæòå âòîðàòà ïîäñêàçêà ïî âðåìå íà ïîñëåäíàòà ñòúïêà, çà òîâà êàê äà\n"
-#~ "ñúçäàäåòå òàêàâà äèñêåòà."
-
-#~ 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"
-#~ "you are not supposed to know them all by heart.\n"
-#~ "\n"
-#~ "If you are performing a standard installation from a CD-ROM, you will "
-#~ "first\n"
-#~ "be asked to specify the CDs you currently have (in Expert mode only). "
-#~ "Check\n"
-#~ "the CD labels and highlight the boxes corresponding to the CDs you have\n"
-#~ "available for installation. Click \"OK\" when you are ready to continue.\n"
-#~ "\n"
-#~ "Packages are sorted in groups corresponding to a particular use of your\n"
-#~ "machine. The groups themselves are sorted into four sections:\n"
-#~ "\n"
-#~ " * \"Workstation\": if you plan to use your machine as a workstation,\n"
-#~ "select one or more of the corresponding groups;\n"
-#~ "\n"
-#~ " * \"Development\": if your machine is to be used for programming, "
-#~ "choose\n"
-#~ "the desired group(s);\n"
-#~ "\n"
-#~ " * \"Server\": if your machine is intended to be a server, you will be "
-#~ "able\n"
-#~ "to select which of the most common services you wish to install on your\n"
-#~ "machine;\n"
-#~ "\n"
-#~ " * \"Graphical Environment\": finally, this is where you will choose "
-#~ "your\n"
-#~ "preferred graphical environment. At least one must be selected if you "
-#~ "want\n"
-#~ "to have a graphical workstation!\n"
-#~ "\n"
-#~ "Moving the mouse cursor over a group name will display a short "
-#~ "explanatory\n"
-#~ "text about that group. If you unselect all groups when performing a "
-#~ "regular\n"
-#~ "installation (by opposition to an upgrade), a dialog will pop up "
-#~ "proposing\n"
-#~ "different options for a minimal installation:\n"
-#~ "\n"
-#~ " * \"With X\": install the fewest packages possible to have a working\n"
-#~ "graphical desktop;\n"
-#~ "\n"
-#~ " * \"With basic documentation\": installs the base system plus basic\n"
-#~ "utilities and their documentation. This installation is suitable for\n"
-#~ "setting up a server;\n"
-#~ "\n"
-#~ " * \"Truly minimal install\": will install the strict minimum necessary "
-#~ "to\n"
-#~ "get a working Linux system, in command line only. This installation is\n"
-#~ "about 65Mb large.\n"
-#~ "\n"
-#~ "You can check the \"Individual package selection\" box, which is useful "
-#~ "if\n"
-#~ "you are familiar with the packages being offered or if you want to have\n"
-#~ "total control over what will be installed.\n"
-#~ "\n"
-#~ "If you started the installation in \"Upgrade\" mode, you can unselect "
-#~ "all\n"
-#~ "groups to avoid installing any new package. This is useful to repair or\n"
-#~ "update an existing system."
-#~ msgstr ""
-#~ "Ñåãà å ìîìåíòúò äà îïðåäåëèòå êîè ïðîãðàìè èñêàòå äà áúäàò èíñòàëèðàíè "
-#~ "íà\n"
-#~ "ñèñòåìàòà âè. Â Mandrake Linux äèñòðèáóöèÿòà èìà õèëÿäè ïàêåòè, íî íå å\n"
-#~ "çàäúëæèòåëíî äà ãè çíàåòå íàèçóñò.\n"
-#~ "\n"
-#~ "Àêî èçâúðøâàòå ñòàíäàðòíà èíñòëàöèÿ îò CDROM, ïúðâî ùå áúäåòå ïîïèòàíè "
-#~ "êîè\n"
-#~ "CD-òà èìàòå (â Åêñïåðòåí ðåæèì). Ïðîâåðåòå çàãëàâèÿòà íà CD-òàòà è "
-#~ "ïîñî÷åòå\n"
-#~ "êóòèéêèòå ñúîòâåòñòâàùè íà CD-òàòà, ñ êîèòî ðàçïîëàãàòå. Öúêíåòå \"OK\",\n"
-#~ "êîãàòî ñòå ãîòîâè äà ïðîäúëæèòå.\n"
-#~ "\n"
-#~ "Ïàêåòèòå ñà ïîäðåäåíè â ãðóïè ñúîòâåòñòâàùè íà ïðàêòè÷åñêàòà óïîòðåáà íà\n"
-#~ "ìàøèíàòà âè. Ãðóïèòå, ñàìè ïî ñåáå ñè, ñà ïîäðåäåíè â ÷åòèðè ñåêöèè:\n"
-#~ "\n"
-#~ " * \"Ðàáîòíà ñòàíöèÿ\": àêî ñìÿòàòå äà èçïîëçâàòå ìàøèíàòà ñè êàòî "
-#~ "ðàáîòíà ñòàíöèÿ,\n"
-#~ "èçáåðåòå åäíà èëè ïîâå÷å ñúîòâåòíèòå ãðóïè.\n"
-#~ "\n"
-#~ " * \"Ðàçðàáîòêà\": àêî ìàøèíàòà âè ùå áúäå èçïîëçâàíå çà ïðîãðàìèðàíå, "
-#~ "èçáåðåòå\n"
-#~ "æåëàíàòà(èòå) ãðóïà(è).\n"
-#~ "\n"
-#~ " * \"Ñúðâúð\": íàêðàÿ, àêî ìàøèíàòà âè ùå áúäå èçïîëçâàíà çà ñúðâúð, ùå\n"
-#~ "ìîæåòå äà èçáåðåòå êîè îò íàé-÷åñòî èçïîëçâàíèòå óñëóãè èñêàòå äà èìàòå\n"
-#~ "èíñòàëèðàíè íà ìàøèíàòà.\n"
-#~ "\n"
-#~ " * \"Ãðàôè÷íà ñðåäà\": òóê ìîæåòå äà èçáåðåòå ïðåäïî÷èòàíàòà ãðàôè÷íà "
-#~ "ñðåäà.\n"
-#~ "Ïîíå åäíà òðÿáâà äà áúäå èçáðàíà, àêî èñêàòå äà èìàòå ãðàôè÷íà ñðåäà !\n"
-#~ "\n"
-#~ "Ïðåìåñòâàéêè êóðñîðà íà ìèøíàòà íàä èìåòî íà ãðóïàòà, ùå âèäèòå êðàòúê\n"
-#~ "îáÿñíåíèòåëåí òåêñò çà íåÿ.\n"
-#~ "\n"
-#~ "Ìîæåòå äà öúêíåòå êóòèéêàòà \"Èíäèâèäóàëåí èçáîð íà ïàêåòè\", êîÿòî å "
-#~ "ïîëåçíà,\n"
-#~ "àêî ñòå çàïîçíàòè ñ ïàêåòèòå, êîèòî ùå âè áúäàò ïðåäëîæåíè èëè àêî èñêàòå "
-#~ "äà\n"
-#~ "èìàòå ïúëåí êîíòðîë íàä òîâà, êîåòî äà áúäå èíñòàëèðàíî.\n"
-#~ "\n"
-#~ "Àêî ñòå çàïî÷íàëè èíñòàëàöèÿòà â ðåæèì íà \"Îáíîâÿâàíå\", ìîæåòå äà "
-#~ "èçêëþ÷èòå\n"
-#~ "âñè÷êè ãðóïè, çà äà èçáåãíåòå èíñòàëèðàíåòî íà íîâè ïàêåòè. Òîâà å "
-#~ "ïîëåçíî\n"
-#~ "ïðè ïîïðàâêà èëè îáíîâÿâàíå íà ñúùåñòâóâàùàòà ñèñòåìà."
-
-#~ msgid ""
-#~ "The Mandrake Linux installation is spread out over several CD-ROMs. "
-#~ "DrakX\n"
-#~ "knows if a selected package is located on another CD-ROM and will eject "
-#~ "the\n"
-#~ "current CD and ask you to insert a different one as required."
-#~ msgstr ""
-#~ "Èíñòàëàöèÿòà íà Mandrake Linux å ðàçïîëîæåíà íà íÿêîëêî CDROM-à. DrakX\n"
-#~ "çíàå äàëè èçáðàí ïàêåò íå ñå íàìèðà íà äðóã CDROM èëè ùå èçâàäè òåêóùîòî\n"
-#~ "CD è ùå âè îñòàâè äà âêàðàòå òîâà, îò êîåòî èìà íóæäà."
-
-#~ msgid ""
-#~ "Listed above are the existing Linux partitions detected on your hard "
-#~ "drive.\n"
-#~ "You can keep the choices made by the wizard, they are good for most "
-#~ "common\n"
-#~ "installations. If you make any changes, you must at least define a root\n"
-#~ "partition (\"/\"). Do not choose too small a partition or you will not "
-#~ "be\n"
-#~ "able to install enough software. If you want to store your data on a\n"
-#~ "separate partition, you will also need to create a \"/home\" partition\n"
-#~ "(only possible if you have more than one Linux partition available).\n"
-#~ "\n"
-#~ "Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-#~ "\n"
-#~ "\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-#~ "\"partition number\" (for example, \"hda1\").\n"
-#~ "\n"
-#~ "\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive "
-#~ "and\n"
-#~ "\"sd\" if it is a SCSI hard drive.\n"
-#~ "\n"
-#~ "\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-#~ "hard drives:\n"
-#~ "\n"
-#~ " * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-#~ "\n"
-#~ " * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-#~ "\n"
-#~ " * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-#~ "\n"
-#~ " * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-#~ "\n"
-#~ "With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-#~ "\"second lowest SCSI ID\", etc."
-#~ msgstr ""
-#~ "Ïî-ãîðå ñà èçáðîåíè çàñå÷åíèòå Linux äÿëîâå ñúùåñòâóâàùè\n"
-#~ "íà òâúðäèÿ âè äèñê. Ìîæåòå äà çàïàçèòå èçáîðà íàïðàâåí îò ìàãüîñíèêà, òå "
-#~ "ñà\n"
-#~ "äîáðè çà îáùà óïîòðåáà. Àêî ãè ïðîìåíèòå, òðÿáâà äà ïîíå äà îïðåäåëèòå\n"
-#~ "root äÿë (\"/\"). Íå èçáèðàéòå ïðåêàëåíî ìàëêè äÿëîâå, çàùîòî íÿìà äà "
-#~ "ìîæåòå\n"
-#~ "äà èíñòàëèðàòå äîñòàòú÷íî ñîôòóåð. Àêî èñêàòå äà ñúõðàíÿâàòå äàííèòå ñè "
-#~ "íà\n"
-#~ "îòäåëåí äÿë, òðÿáâà äà èçáåðåòå \"/home\" (âúçìîæíî å ñàìî, àêî èìàòå "
-#~ "ïîâå÷å\n"
-#~ "îò åäèí Linux äÿë).\n"
-#~ "\n"
-#~ "\n"
-#~ "Çà èíôîðìàöèÿ, âñåêè äÿë å ïîêàçàí, êàêòî ñëåäâà: \"Èìå\", \"Êàïàöèòåò"
-#~ "\".\n"
-#~ "\n"
-#~ "\n"
-#~ "\"Èìåòî\" ñå êîäèðà êàêòî ñëåäâà: \"òèï íà äèñêà\", \"íîìåð íà äèñêà\",\n"
-#~ "\"íîìåð íà äÿë\" (íàïðèìåð, \"hda1\").\n"
-#~ "\n"
-#~ "\n"
-#~ "\"Òèïúò íà äèñêà\" ìîæå äà å \"hd\", àêî å IDE òâúðä äèñê, èëè \"sd\", "
-#~ "àêî å\n"
-#~ "SCSI òâúðä äèñê.\n"
-#~ "\n"
-#~ "\n"
-#~ "\"Íîìåðúò íà äèñêà\" âèíàãè å áóêâàòà ñëåä \"hd\" èëè \"sd\". Ïðè IDE "
-#~ "äèñêîâå:\n"
-#~ "\n"
-#~ " * \"a\" îçíà÷àâà \"master äèñê íà ïúðâèÿ IDE êîíòðîëåð\",\n"
-#~ " * \"b\" îçíà÷àâà \"slave äèñê íà ïúðâèÿ IDE êîíòðîëåð\",\n"
-#~ " * \"c\" îçíà÷àâà \"master äèñê íà âòîðèÿ IDE êîíòðîëåð\",\n"
-#~ " * \"d\" îçíà÷àâà \"slave äèñê íà âòîðèÿ IDE êîíòðîëåð\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Ïðè SCSI óñòðîéñòâà, \"a\" îçíà÷àâà \"ïúðâè òâúðä äèñê\", \"b\" îçíà÷àâà "
-#~ "\"âòîðè òâúðä äèñê\" è ò.í.."
-
-#~ msgid ""
-#~ "GNU/Linux is a multiuser system, and this means that each user can have "
-#~ "his\n"
-#~ "own preferences, his own files and so on. You can read the ``User "
-#~ "Guide''\n"
-#~ "to learn more this concept. But unlike \"root\", which is the\n"
-#~ "administrator, the users you add here will not be entitled to change\n"
-#~ "anything except their own files and their own configurations. You will "
-#~ "have\n"
-#~ "to create at least one regular user for yourself. That account is where "
-#~ "you\n"
-#~ "should log in for routine use. Although it is very practical to log in "
-#~ "as\n"
-#~ "\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
-#~ "could mean that your system would not work any more. If you make a "
-#~ "serious\n"
-#~ "mistake as a regular user, you may only lose some information, but not "
-#~ "the\n"
-#~ "entire system.\n"
-#~ "\n"
-#~ "First, you have to enter your real name. This is not mandatory, of "
-#~ "course\n"
-#~ "-- as you can actually enter whatever you want. DrakX will then take the\n"
-#~ "first word you have entered in the box and will bring it over to the "
-#~ "\"User\n"
-#~ "name\". This is the name this particular user will use to log onto the\n"
-#~ "system. You can change it. You then have to enter a password here. A\n"
-#~ "non-privileged (regular) user's password is not as crucial as the \"root"
-#~ "\"\n"
-#~ "one from a security point of view, but that is no reason to neglect it:\n"
-#~ "after all, your files are at risk.\n"
-#~ "\n"
-#~ "If you click on \"Accept user\", you can then add as many as you want. "
-#~ "Add\n"
-#~ "a user for each one of the people meant to use that computer. When you "
-#~ "are\n"
-#~ "finish adding all the users you want, select \"Done\".\n"
-#~ "\n"
-#~ "Clicking the \"%s\" button allows you to change the default \"shell\"\n"
-#~ "for that user (bash by default).\n"
-#~ "\n"
-#~ "When you are finished adding all users, you will be proposed to choose a\n"
-#~ "user which can automatically log into the system when the computer boots\n"
-#~ "up. If you are interested in that feature (and do not care much about "
-#~ "local\n"
-#~ "security), choose the desired user and window manager, then click \"Yes"
-#~ "\".\n"
-#~ "If you are not interested in this feature, click \"No\"."
-#~ msgstr ""
-#~ "GNU/Linux å ìíîãîïîòðåáèòåëñêà ñèñòåìà, êîÿòî îçíà÷àâà, ÷å âñåêè "
-#~ "ïîòðåáèòåë ìîæå\n"
-#~ "äà èìà ñâîè ïðåäïî÷åòàíèÿ, ôàéëîâå è ò.í.. ìîæåòå äà ïðî÷åòåòå "
-#~ "Ðúêîâîñòâîòî íà\n"
-#~ "Ïîòðåáèòåëÿ, çà äà íàó÷èòå ïîâå÷å.\n"
-#~ "Çà ðàçëèêà îò Root, êîéòî å àäìèíèñòðàòîðúò, ïîòðåáèòåëèòå, êîèòî ùå "
-#~ "äîáàâèòå òóê\n"
-#~ "íÿìà äà ìîãàò äà ïðîìåíÿò íèùî îñâåí ñîáñòâåíèòå ñè ôàéëîâå è òåõíèòå "
-#~ "íàñòðîéêè.\n"
-#~ "Ùå òðÿáâà äà ñúçäàäåòå ïîíå åäèí îáèêíîâåí ïîòðåáèòåë çà ñåáå ñè.\n"
-#~ "Ñ òîçè àêàóíò ùå òðÿáâà äà âëèçàòå çà ðóòèííà äåéíîñò. Âúïðåêè òîâà "
-#~ "ïðàêòèêàòà\n"
-#~ "äà âëèçàòå êàòî root åæåäíåâíî, ìîæå äà áúäå ìíîãî îïàñíà ! È íàé-"
-#~ "ìàëêàòàãðåøêà\n"
-#~ "ìîæå äà îçíà÷àâà, ÷å ñèñòåìàòà âè íÿìà äà ðàáîòè ïîâå÷å. Àêî íàïðàâèòå "
-#~ "íÿêîÿ ñåðèîçíà\n"
-#~ "ãðåøêà êàòî ïîòðåáèòåë, òîâà ìîæå ñà äà äîâåäå äî çàãóáà íà ÷àñò îò "
-#~ "èíôîðìàöèÿòà,\n"
-#~ "íî íå è íà öÿëàòà ñèñòåìà.\n"
-#~ "\n"
-#~ "Ïúðâî, òðÿáâà äà ñè âúâåäåòå èìåòî. Òîâà íå å çàäúëæèòåëíî, ðàçáèðà ñå, "
-#~ "âñúùíîñò\n"
-#~ "ìîæåòå äà âúâåäåòå êàêâîòî è äà å. DrakX ñëåä òîâà ùå èçáåðå ïúðâàòà "
-#~ "âúâåäåíà\n"
-#~ "â êóòèéêàòà äóìà è ùå ãî èçêàðà êàòî ïîòðåáèòåëñêî èìå. Òîâà å èìåòî, ñ "
-#~ "êîåòî\n"
-#~ "âñúùíîñò îïðåäåëåíèÿò ïîòðåáèòåë ùå âëèçà â ñèñòåìàòà. Ìîæåòå äà ãî "
-#~ "ïðîìåíèòå.\n"
-#~ "Òðÿáâà äà âúâåäåòå è ïàðîëà òóê. Ïàðîëàòà íà íåïðåâèëåãèðîâàí (îáèêíîâåí) "
-#~ "ïîòðåáèòåë\n"
-#~ "íå å òîëêîâà ôàòàëíà êàòî òàçè íà Root îò ãëåäíà òî÷êà íà ñèãóðíîñòòà, íî "
-#~ "âñå\n"
-#~ "ïàê íÿìà ïðè÷èíà äà ÿ ïîäöåíÿâàòà, òúé êàòî ðèñêóâàòå ôàéëîâåòå ñè.\n"
-#~ "\n"
-#~ "Ñëåä êàòî öúêíåòå íà \"Ïðèåìè ïîòðåáèòåë\", ìîæåòå äà äîáàâèòå êîëêîòî ñè "
-#~ "èñêàòå.\n"
-#~ "Äîáàâåòå ïî åäèí ïîòðåáèòåë çà âñåêè îò ïðèÿòåëèòå ñè: áàùà ñè, ñåñòðà "
-#~ "ñè, íàïðèìåð.\n"
-#~ "Êîãàòî ñòå äîáàâèëè âñè÷êè ïîòðåáèòåëè, êîèòî èñêàòå, öúêíåòå Ãîòîâî.\n"
-#~ "\n"
-#~ "Öúêíåòå íà áóòîíà \"Íàïðåäíè÷àâ\", çà äà ïðîìåíèòå îáâèâêàòà ïî "
-#~ "ïîäðàçáèðàíå íà\n"
-#~ "ïîòðåáèòåëÿ (bash ïî ïîäðàçáèðàíå)."
-
-#~ msgid "Palestina"
-#~ msgstr "Ïàëåñòèíà"
-
-#~ msgid "Jordania"
-#~ msgstr "Éîðäàíèÿ"
-
-#~ msgid ""
-#~ "Assign raw devices to block devices (such as hard drive\n"
-#~ "partitions), for the use of applications such as Oracle"
-#~ msgstr ""
-#~ "Ñâúðæè ÷èñòè äðàéâåðè ñ áëîêîâè óñòðîéñòâà (êàòî äÿëîâå\n"
-#~ "íà òâúðäèÿ äèñê), çà óïîòðåáÿòà îò ïðèëîæåíèÿ êàòî Oracle"
-
-#~ msgid ""
-#~ "[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-"
-#~ "usbtable] [--dynamic=dev]"
-#~ msgstr ""
-#~ "[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-"
-#~ "usbtable] [--dynamic=dev]"
-
-#~ msgid "Install system updates"
-#~ msgstr "Èíñòàëèðàíå îáíîâÿâàíå çà ñèñòåìàòà"
-
-#~ msgid "Choose your language"
-#~ msgstr "Èçáîð íà åçèê"
-
-#~ msgid ""
-#~ "The partition you've selected to add as root (/) is physically located "
-#~ "beyond\n"
-#~ "the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
-#~ "If you plan to use the LILO boot manager, be careful to add a /boot "
-#~ "partition"
-#~ msgstr ""
-#~ "Äÿëúò, êîéòî ñòå ìàðêèðàëè çà root (/) å ôèçè÷åñêè ðàçïîëîæåí îòâúä\n"
-#~ "1024-èÿ öèëèíäúð íà òâúðäèÿ äèñê è íÿìàòå /boot äÿë.\n"
-#~ "Àêî ñìÿòàòå äà èçïîëçâàòå boot ìåíèäæúðà LILO, áúäåòå âíèìàòåëíè ïðè\n"
-#~ "ïðèáàâÿíåòî íà /boot äÿë"
-
-#~ msgid ""
-#~ "Sorry I won't accept to create /boot so far onto the drive (on a cylinder "
-#~ "> 1024).\n"
-#~ "Either you use LILO and it won't work, or you don't use LILO and you "
-#~ "don't need /boot"
-#~ msgstr ""
-#~ "Ñúæàëÿâàì, íî íå ìîãà äà ïðèåìà äà ñúçäàì /boot òîëêîâà íàâúòðå âúðõó "
-#~ "äèñêà (âúðõó öèëèíäúð > 1024).\n"
-#~ "Èëè èçïîëçâàòå LILO è òî íå ðàáîòè, èëè íå èçïîëçâàòå LILO è íÿìàòå íóæäà "
-#~ "îò /boot"
-
-#~ msgid "Switching between ALSA and OSS help"
-#~ msgstr "Ïîìîù çà ïðåâêëþ÷âàíå ìåæäó ALSA è OSS"
-
-#~ msgid "Do you want to configure another printer?"
-#~ msgstr "Èñêàòå ëè äà íàñòðîèòå äðóã ïðèíòåð ?"
-
-#~ msgid "Know how to use this printer"
-#~ msgstr "Çíàåòå ëè êàê äà èçïîçëâàòå ïðèíåðà"
-
-#~ msgid "Preparing Printerdrake..."
-#~ msgstr "Ïîäãîòâÿíå íà PinterDrake..."
-
-#~ msgid "192.168.100.0/255.255.255.0\n"
-#~ msgstr "192.168.100.0/255.255.255.0\n"
-
-#~ msgid "192.168.100.0/24\n"
-#~ msgstr "192.168.100.0/24\n"
-
-#~ msgid "10.1.*\n"
-#~ msgstr "10.1.*\n"
-
-#~ msgid "10.0.0.*\n"
-#~ msgstr "10.0.0.*\n"
-
-#~ msgid "192.168.100.194\n"
-#~ msgstr "192.168.100.194\n"
-
-#~ msgid "quit"
-#~ msgstr "íàïóñêà"
-
-#~ msgid "save"
-#~ msgstr "çàïàçâà"
-
-#~ msgid "Reading printer data ..."
-#~ msgstr "×åòåíå íà äàííè îò ïðèíòåðà ..."
-
-#~ msgid ""
-#~ "Scannerdrake was not able to detect your %s.\n"
-#~ "Please select the device where your scanner is attached"
-#~ msgstr ""
-#~ "Scannerdrake íå å â ñúñòîÿíèå äà îòêðèå âàøèÿò %s.\n"
-#~ "Ìîëÿ, èçáåðåòå óñòðîéñòâîòî êúäåòî âàøèÿò ñêåíåð å çàêà÷åí"
-
-#~ msgid "The %s is not known by this version of scannerdrake."
-#~ msgstr "%s íå å èçâåñòíî îò òàçè âåðñèÿ íà scannerdrake."
-
-#~ msgid "Select a scanner"
-#~ msgstr "Èçáîð íà ñêåíåð"
+#~ "Usage: harddrake [-h|--help] [--test]\n"
+#~ msgstr "óïîòðåáà: keyboarddrake [--expert] [keyboard]\n"
-#~ msgid "Detecting devices ..."
-#~ msgstr "Çàñè÷àíå íà óñòðîéñòâà ..."
+#~ msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+#~ msgstr "óïîòðåáà: keyboarddrake [--expert] [keyboard]\n"
-#~ msgid "Test ports"
-#~ msgstr "Òåñòâàíå ïîðòîâåòå"
+#~ msgid "detected on interface %s"
+#~ msgstr "çàñå÷åí íà èíòåðôåéñ %s"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index 125bb638f..cd8cea4c0 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -6,2825 +6,1768 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 8.2\n"
-"POT-Creation-Date: 2003-07-09 14:16+0200\n"
-"PO-Revision-Date: 2003-09-07 05:56+0200\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"PO-Revision-Date: 2002-09-24 12:05+0200\n"
"Last-Translator: Thierry Vignaud <tvignaud@mandrakesoft.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr ""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 ko"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "network printer port"
-msgstr "Dibarzhoù ar voullerez NetWare"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 ko"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Please insert floppy disk:"
-msgstr "Lakait ur bladennig el lenner %s"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Mo"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Mo"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"N'eo ket heñvel ment an daolenn barzhañ gwarezet\n"
-"Kenderc'hel memestra ?"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Mo"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Which username"
-msgstr "Anv arveriad"
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Mo"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "Pe seurt enmont a vennit ouzhpennañ"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Mo"
-#: ../../diskdrake/interactive.pm:1 ../../help.pm:1
-#, fuzzy, c-format
-msgid "Restore partition table"
-msgstr "Taolenn barzhañ saveteerezh"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Mo"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "War ar servijer CUPS « %s »"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Mo pe vuioc'h"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Post-install configuration"
-msgstr "Kefluniadur goude staliañ"
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "Dibabit ur servijer X"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Grit kentoc'h gant ``%s''"
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "servijer X"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Type"
-msgstr "Seurt"
+#: ../../Xconfig/card.pm_.c:230
+#, fuzzy
+msgid "Multi-head configuration"
+msgstr "o lenn ar c'hefluniadur"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:231
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
-#, c-format
-msgid "Sri Lanka"
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
+msgstr "Diuzit ment memor ho kartenn c'hrafek"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Central African Republic"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "Staliadur XFree86"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "Trobarzhell an dreuzell"
+#: ../../Xconfig/card.pm_.c:351
+#, fuzzy
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Pe seurt enmont a vennit ouzhpennañ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Net Method:"
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Ethernetcard"
-msgstr "dedennus"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr "Arventennoù"
-
-#: ../../harddrake/v4l.pm:1
-#, fuzzy, c-format
-msgid "Auto-detect"
-msgstr "Dilesadur"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface:"
-msgstr "C'hetal:"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Select installation class"
-msgstr "Diuzit renkad ar staliadur"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "on CDROM"
-msgstr "war ar CDROM"
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
+msgstr "Implijit Xinemara"
-#: ../../network/tools.pm:1
+#: ../../Xconfig/card.pm_.c:389
#, fuzzy, c-format
-msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr "Anv ar gevreadenn"
+msgid "Configure only card \"%s\"%s"
+msgstr "Kefluniadur hep ken kartenn \"%s\" (%s)"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Belarus"
-msgstr "Bulgarek"
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../partition_table.pm:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Error writing to file %s"
-msgstr "Fazi en ur skrivañ er restr %s"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s gant 3D"
-#: ../../services.pm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-"servijout a ra apmd evit evezhiañ stad an daspugner hag he enrollañ dre "
-"syslog.\n"
-"Gallout a ra ivez servijout da lazhañ an ardivink pa vez izel an daspugner."
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use tape to backup"
-msgstr "Restr gwareziñ siek"
-
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "The following packages are going to be installed"
-msgstr "Ar pakadoù a-heul a zo war-nes bezañ distaliet"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS configuration"
-msgstr "Kefluniadur CUPS"
-#: ../../lang.pm:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid "Hong Kong"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../install_interactive.pm:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid "Not enough free space to allocate new partitions"
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "O tilec'hiañ"
-
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
+"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."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr "("
-
-#: ../../network/netconnect.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
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"
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "Liban"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "Stop"
-msgstr "Harz"
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "Personelañ"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Edit selected host"
-msgstr "kavoutet %s"
+#: ../../Xconfig/main.pm_.c:102
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Kartenn c'hrafek"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "No CD device defined!"
-msgstr "Diuzit ar restr"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "Skramm"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "Bulgariek (soniadel)"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "Spister"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP start ip"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "256 kB"
-msgstr "256 ko"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "Dibarzhoù pennañ ar c'harger loc'hañ"
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+#, fuzzy
+msgid "Options"
+msgstr "Parzhadur"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
-msgstr ""
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "Mat eo"
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Tape"
-msgstr "Seurt"
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "Kuitaat"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/main.pm_.c:145
#, fuzzy, c-format
-msgid "Scanning network..."
-msgstr "Kefluniañ ur rouedad"
-
-#: ../../standalone/drakbackup:1
-#, c-format
msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr "Derc'hel ar c'hefluniadur IP o ren"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malaysia"
-msgstr "Malezia"
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "Dibabit ur skramm"
-#: ../../standalone/drakedm:1
-#, fuzzy, c-format
-msgid "The change is done, do you want to restart the dm service ?"
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
msgstr ""
-"Bremanaet e tle bezañ ar pabak-mañ\n"
-"Ha sur oc'h e mennit e ziuzañ ?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (French layout)"
-msgstr "Suis (reizhadur gall)"
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid sac'het (raidtools a vank emichañs ?)"
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "Rummel"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Webcam"
-msgstr ""
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+#, fuzzy
+msgid "Vendor"
+msgstr "Dizober"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "size of the (second level) cpu cache"
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Soundcard"
-msgstr "Kartenn son"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
+"\n"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
+"An div arventenn dreistpouezus a zo ar feur freskaat a-serzh, da lavaret eo "
+"ar\n"
+"feur ma vez freskaet ar skramm a-bezh, ha pouezusuc'h c'hoazh ar feur "
+"kempredañ\n"
+"a-led, da lavaret eo ar feur ma vez diskwelet linennoù skubañ.\n"
+"\n"
+"HOLLBOUEZHUS eo deoc'h na spisaat ur seurt skramm gant ur feur kempredañ\n"
+"a zo en tu-hont da varregezh ho skramm : gallout a rafe gwastañ ho skramm\n"
+" M'hoc'h eus douetañs, dibabit ur c'hefluniadur fur."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Level %s\n"
-msgstr "Live %s\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Luxembourg"
-msgstr "Luksembourg"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac (phonetic)"
-msgstr "Siriak (soniadel)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Iran"
-msgstr "Iran"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus"
-msgstr ""
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "Feur freskaat a-led"
-#: ../../lang.pm:1
-#, c-format
-msgid "Iraq"
-msgstr "Irak"
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "Feur freskaat a-serzh"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 liv (8 bit)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring..."
-msgstr "Kefluskañ a ra..."
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil liv (15 bit)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil liv (16 bit)"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
-msgstr ""
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milion a livioù (24 bit)"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Password (again)"
-msgstr "Tremenger (adarre)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miliard a livioù (32 bit)"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search installed fonts"
-msgstr ""
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "Spisterioù"
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr "Venezuela"
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "Dibabit ar spister ha donder al livioù"
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "IP address"
-msgstr "Chomlec'h IP"
+msgid "Graphics card: %s"
+msgstr "Kartenn c'hrafek : %s"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "Dibabit ar mentoù"
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr "Nullañ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "Amprouiñ ar c'hefluniadur"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
-msgstr ""
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid "Choose another partition"
-msgstr "Dibabit un parzhadur all"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Current user"
-msgstr "Aotren an arveriad"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
-msgstr "Anv arveriad"
+msgid "Keyboard layout: %s\n"
+msgstr "Reizhadur ar stokellaoueg : %s\n"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid "Left \"Windows\" key"
-msgstr ""
+msgid "Mouse type: %s\n"
+msgstr "Seurt logodenn : %s\n"
-#: ../../standalone/drakTermServ:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Kefluniadur ar servijer dhcpd"
+msgid "Mouse device: %s\n"
+msgstr "Trobarzhell al logodenn : %s\n"
-#: ../../standalone/drakperm:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
+msgid "Monitor: %s\n"
+msgstr "Skramm : %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Guyana"
-msgstr "Gwiana"
+msgid "Monitor HorizSync: %s\n"
+msgstr "KempredA-led ar skramm : %s\n"
-#: ../../printer/main.pm:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr ""
-
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Remove a module"
-msgstr "Eilpennañ urzh ar pajennoù"
+msgid "Monitor VertRefresh: %s\n"
+msgstr "FreskA-serzh ar skramm : %s\n"
-#: ../../any.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid "Password"
-msgstr "Tremenger"
+msgid "Graphics card: %s\n"
+msgstr "Kartenn c'hrafek : %s\n"
-#: ../../security/help.pm:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid ""
-"Arguments: (max, inactive=-1)\n"
-"\n"
-"Set password aging to \\fImax\\fP days and delay to change to \\fIinactive"
-"\\fP."
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Advanced Configuration"
-msgstr "Kefluniadur"
+msgid "Graphics memory: %s kB\n"
+msgstr "Memor c'hrafek : %s ko\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr ""
+msgid "Color depth: %s\n"
+msgstr "Donder liv: %s\n"
-#: ../../any.pm:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid "Root"
-msgstr "Gwrizienn"
+msgid "Resolution: %s\n"
+msgstr "Spister: %s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "Dibabit da be RAID ouzhpennañ"
+msgid "XFree86 server: %s\n"
+msgstr "Servijer XFree86 : %s\n"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turkek (arnevez doare \"Q\")"
+msgid "XFree86 driver: %s\n"
+msgstr "Sturier XFree86 : %s\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo message not found"
-msgstr ""
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "X pa loc'her"
-#: ../../services.pm:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:62
msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
+"Kefluniañ ho urzhiataer evit lañsañ X ent emgefreek pa loc'ho a c'hellañ.\n"
+"Mennout a rit lañsañ X pa adloc'hit ?"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Failed..."
-msgstr "Adaozañ adalek ar restr"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "Dilesadur"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:73
msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backups will be stored on your\n"
-" /var/lib/drakbackup directory\n"
-"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbackup.conf\n"
-"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
"\n"
+"Do you have this feature?"
msgstr ""
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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 ""
+#: ../../Xconfig/various.pm_.c:85
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Ouzh pe borzh a-steud eo luget ho logodenn ?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
+msgstr "Rann gentañ ar parzhadur loc'hañ"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Current interface configuration"
-msgstr "Kefluniañ ar modem"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
+msgstr "Rann gentañ ar bladenn (MBR)"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr ""
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "Staliadur SILO"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
+msgstr "Pelec'h e mennit staliañ ar c'harger loc'hañ ?"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Do not print any test page"
-msgstr "O voullañ pajenn(où) skrid..."
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "Staliadur LILO/grub"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr ""
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
+msgstr "SILO"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
-msgstr ""
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
+msgstr "LILO gant meuziad skrid"
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
-msgstr ""
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
+msgstr "LILO gant meuziad c'hrafek"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutañ)"
+#: ../../any.pm_.c:142
+msgid "Grub"
+msgstr "Grub"
-#: ../../standalone.pm:1
-#, fuzzy, c-format
-msgid "[keyboard]"
-msgstr "Stokellaoueg"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "Loc'hañ abaoe DOS/Windows (loadlin)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "Proksi FTP"
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Install List"
-msgstr "Staliañ ar reizhiad"
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "Dibarzhoù pennañ ar c'harger loc'hañ"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid ""
-"Change\n"
-"Restore Path"
-msgstr "Adaozañ adalek ar restr"
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
+msgstr "C'harger loc'hañ da implijout"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
-msgstr ""
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "Staliadur c'harger loc'hañ"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 ko"
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "Trobarzhell loc'hañ"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Logs"
-msgstr ""
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "Fetis"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr ""
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "fetis"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr ""
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "Mod video"
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "What kind of card do you have?"
-msgstr "Peseurt moullerez hoc'h eus ?"
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
+msgstr "Gedvezh kent loc'hañ ar skeudenn dre ziouer"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr ""
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
+msgid "Password"
+msgstr "Tremenger"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Security"
-msgstr "Diogelroez"
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "Tremenger (adarre)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "Strishaat dibarzhoù al linenn urzhiañ"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#, c-format
-msgid "<control>Q"
-msgstr ""
+#: ../../any.pm_.c:171
+msgid "restrict"
+msgstr "strishaat"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Unknown"
-msgstr "Rummel"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "Skarañ /tmp bep ma loc'her"
-#: ../../printer/printerdrake.pm:1
+#: ../../any.pm_.c:174
#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr ""
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Spisait ment ar memor vev diouzh ret (kavet %d Mo)"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Network Configuration"
-msgstr "Kefluniadur ar rouedad"
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
+msgstr "Aotren lies trolinenn"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>S"
-msgstr ""
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "Roit ment ar memor vev e Mo"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../any.pm_.c:182
msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr "Didalvout eo ``Strishaat dibarzhoù al linenn urzhiañ'' hep tremenger"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "Klaskit adarre mar plij"
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Notice"
-msgstr "frondenn"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "An tremegerioù ne glot ket"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-" Activate/Disable daily security check."
+#: ../../any.pm_.c:191
+msgid "Init Message"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Enable/Disable crontab and at for users. Put allowed users in /etc/cron."
-"allow and /etc/at.allow\n"
-"(see man at(1) and crontab(1))."
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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\"."
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "What type of partitioning?"
-msgstr "Peseurt moullerez hoc'h eus ?"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-" "
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Interface"
-msgstr "dedennus"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Multisession CD"
-msgstr "Liesvedia"
+#: ../../any.pm_.c:197
+msgid "Default OS?"
+msgstr "RK dre ziouer"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:231
msgid ""
-"Options Description:\n"
-"\n"
-" - Backup System Files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User Files: \n"
-"\n"
-"\tThis option allows you select all users that you want to \n"
-"\tbackup. To preserve disk space, it is recommended that\n"
-"\tyou do not include the web browser's cache.\n"
-"\n"
-" - Backup Other Files: \n"
-"\n"
-"\tThis option allows you to include additional data to save.\n"
-"\tIf you want to add individual files, select them from the\n"
-"\trighthand 'Files' list pane. To add directories, enter the \n"
-"\tdirectory by clicking on it in the lefthand 'Folders' pane, \n"
-"\tand at that point click 'OK' without selecting any files.\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful option for \n"
-"\tbackup. This option allows you to backup all your data \n"
-"\tthe first time, and only the changed data afterward.\n"
-"\tThen you will be able, during the restore step, to restore \n"
-"\tyour data from a specified date. If you have not selected \n"
-"\tthis option all old backups are deleted before each backup. \n"
-"\n"
-" - Differential Backups:\n"
-" \n"
-"\tThe differential backup, rather than comparing changes in the\n"
-"\tdata to the previous incremental backup, always compares the\n"
-"\tdata to the initial base backup. This method allows one to\n"
-"\trestore the base and then the differential from a certain date.\n"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
"\n"
+"On which drive are you booting?"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../any.pm_.c:247
msgid ""
-"Arguments: (arg, expr='*.*', dev='tty12')\n"
-"\n"
-"Enable/Disable syslog reports to console 12. \\fIexpr\\fP is the\n"
-"expression describing what to log (see syslog.conf(5) for more details) and\n"
-"dev the device to report the log."
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
+"Setu da heul an enmontoù liesseurt.\n"
+"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: ../../modules/parameters.pm:1
-#, fuzzy, c-format
-msgid "comma separated strings"
-msgstr "Furmadiñ parzhadurioù"
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "Ouzhpennañ"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr ""
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "Graet"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Messages"
-msgstr "Amprouiñ ar porzhioù"
+#: ../../any.pm_.c:257
+msgid "Modify"
+msgstr "Kemmañ"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "Pe seurt enmont a vennit ouzhpennañ"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "Servijer POP ha LDAP"
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "Linux"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Mexico"
-msgstr ""
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "Reizhiadoù (SunOS...)"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Model stepping"
-msgstr "O furmadiñ"
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "Reizhiadoù (MacOS...)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
-msgstr ""
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "Reizhiadoù (windows...)"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Hag un etrefas %s bennak a zo ganeoc'h ?"
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "Skeudenn"
-#: ../../lang.pm:1
-#, c-format
-msgid "Switzerland"
-msgstr "Suis"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "Gwrizienn"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr ""
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
+msgstr "Ouzhpennañ"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "Kefluniadur ar rouedad"
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "Lenn-skrivañ "
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Configure Internet Access..."
-msgstr "Kefluniañ servijoù"
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "Taolenn"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Norway"
-msgstr "Norvej"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "Arvarus"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Danish"
-msgstr "Danek"
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "Skridennad"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "Dre ziouer"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Skrivit ar c'hefluniadur IP evit ar benveg-mañ mar plij.\n"
-"Pep mellad a zlefe bezañ skrivet evel ur chomlec'h IP e stumm\n"
-"sifroù dekvel pikoù etrezo (da skouer 1.2.3.4)."
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
+msgstr "Ment an Initrd"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
+#: ../../any.pm_.c:318
+msgid "NoVideo"
+msgstr "N'ev ket video"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "Dilemel an enmont"
+
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "Berzet eo ar skridennadoù goullo"
+
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "Bulgari"
+#: ../../any.pm_.c:330
+#, fuzzy
+msgid "You must specify a root partition"
+msgstr "Ret eo deoc'h kaout ur parzhadur disloañ"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "No NIC selected!"
-msgstr "Lugerezh ar voullerez"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "En implij eo ar skridennad-se endeo"
-#: ../../lang.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr ""
+msgid "Found %s %s interfaces"
+msgstr "Kavet etrefas %s %s"
-#: ../../network/netconnect.pm:1
-#, 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."
-msgstr ""
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "Hag un all hoc'h eus ?"
-#: ../../diskdrake/interactive.pm:1
+#: ../../any.pm_.c:642
#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
+msgid "Do you have any %s interfaces?"
+msgstr "Hag un etrefas %s bennak a zo ganeoc'h ?"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup Other files..."
-msgstr "Restr gwareziñ siek"
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "Ket"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "IP ar servijer SMB"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "Ya"
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
-msgstr "Kongo (Kinshasa)"
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "Gwelet titouroù periantel"
-#: ../../diskdrake/interactive.pm:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "War-nes bezañ skrivet war bladenn eo taolenn barzhañ an ardivink %s !"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Installing HPOJ package..."
-msgstr "O staliañ pakadoù..."
+msgid "Installing driver for %s card %s"
+msgstr "O staliañ ur sturier evit kartenn %s %s"
-#: ../../any.pm:1
+#: ../../any.pm_.c:663
#, 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"
-msgstr ""
-"Ur bladenn loc'hañ neuziet a ro un tu da loc'hañ ho reizhiad Linux hep "
-"bezañ\n"
-"dindan beli ar c'harger loc'hañ boas. Talvoudus eo ma ne mennit ket staliañ "
-"LILO\n"
-"(pe grub) war ho reizhiad, pe ma skarzh ur reizhiad oberiañ LILO, pe ma ne\n"
-"da ket en-dro LILO war ho kefluniadur periantel. Ur bladenn loc'hañ neuziet\n"
-"a c'hell ivez bezañ implijet gant ar skeudenn saveteiñ Mandrake, en ur "
-"aesaat an\n"
-"assevel pa vefec'h sac'het grevus. Mennout a rit krouiñ ur bladenn loc'hañ "
-"evit\n"
-"ho reizhiad ?\n"
-"%s"
+msgid "(module %s)"
+msgstr "(mollad %s)"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:674
#, c-format
msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../any.pm_.c:680
#, c-format
-msgid "Latvian"
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
msgstr ""
+"Bremañ e c'hellit pourvezañ e zibarzhoù d'ar mollad %s.\n"
+"Diouzh ar furmad ``anv=talvoud anv2=talvoud2...'' eo an dibaboù.\n"
+"Da skouer, ``io=0x300 irq=7''"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr ""
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "Dibarzhoù ar mollad :"
-#: ../../standalone/drakfloppy:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "Module name"
-msgstr "Dibarzhoù ar mollad"
-
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Start at boot"
-msgstr "Krouiñ ur bladennig loc'hañ"
+msgid "Which %s driver should I try?"
+msgstr "Pe sturier %s a zlefen amprouiñ ?"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:703
#, c-format
-msgid "Use Incremental Backups"
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"E degouezhoù 'zo, ar sturier %s en deus ezhomm titouroù ouzhpenn evit mont\n"
+"en-dro reizh, daoust ma da en-dro mat hepto peurvuiañ. Ha mennout a rit "
+"spisaat\n"
+"dibaboù ouzphenn evitañ, pe aotren d'ar sturier amprouiñ ho penvek evit\n"
+"an titouroù en deus ezhomm ? A-wechoù, amprouiñ a c'hell sac'hañ un "
+"urzhiataer,\n"
+"hogen ne raio reuz ebet."
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "Rann gentañ ar bladenn (MBR)"
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
+msgstr "Embrouiñ"
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr ""
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "Spisait dibarzhoù"
-#: ../../harddrake/data.pm:1
+#: ../../any.pm_.c:719
#, c-format
-msgid "Joystick"
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
+"Kargañ ar mollad %s a zo sac'het.\n"
+"Mennout a rit klask adarre gant arventennoù all ?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "DVD"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVDR device"
-msgstr "trobarzhell DVDR"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "O klask assevel an daolenn barzhañ"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
+#: ../../any.pm_.c:738
+msgid "access to network tools"
msgstr ""
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
+#: ../../any.pm_.c:739
+msgid "access to compilation tools"
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../install_steps_gtk.pm:1
+#: ../../any.pm_.c:744
#, c-format
-msgid "Name: "
-msgstr "Anv: "
+msgid "(already added %s)"
+msgstr "(ouzhpennet %s endeo)"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 milion a livioù (24 bit)"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "Re eeun eo an tremeger"
-#: ../../any.pm:1
-#, c-format
-msgid "Allow all users"
-msgstr "Aotreiñ an holl dud"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
+msgstr "Roit un anv arveriad mar plij"
-#: ../../share/advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
+#: ../../any.pm_.c:751
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
+"An anv arveriad a zle bezañ ennañ lizherennoù munut, sifroù, `-' ha `_' "
+"hepken"
-#: ../../diskdrake/interactive.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "Oc'h adventañ"
+#: ../../any.pm_.c:752
+#, fuzzy
+msgid "The user name is too long"
+msgstr "En implij eo an anv arveriad-se endeo"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Cable connection"
-msgstr "Lugerezh ar voullerez"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "En implij eo an anv arveriad-se endeo"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "User"
-msgstr "Arveriad"
+#: ../../any.pm_.c:757
+msgid "Add user"
+msgstr "Ouzhpennañ un arveriad"
-#: ../../fsedit.pm:1
-#, fuzzy, c-format
+#: ../../any.pm_.c:758
+#, 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 loose all the partitions?\n"
+"Enter a user\n"
+"%s"
msgstr ""
-"N'hellañ ket lenn ho taolenn barzhañ, re vrein eo evidon :(\n"
-"Klask a rin kenderc'hel en ur ziverkañ ar parzhadurioù siek"
+"Skrivit un arveriad\n"
+"%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
+#: ../../any.pm_.c:759
+msgid "Accept user"
+msgstr "Aotren an arveriad"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Name"
-msgstr "Anv"
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "Anv gwirion"
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "mkraid sac'het"
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "Anv arveriad"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr ""
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "Shell"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Sending files..."
-msgstr "Enrollañ er restr"
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "Arlun"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "Israelian (soniadel)"
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "Autologin"
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
+#: ../../any.pm_.c:804
+#, fuzzy
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
+"Kefluniañ ho urzhiataer evit lañsañ X ent emgefreek pa loc'ho a c'hellañ.\n"
+"Mennout a rit lañsañ X pa adloc'hit ?"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "edit"
-msgstr "Etre"
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "Dibabit ar arveriad dre ziouer"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Trobarzhell ar voullerez"
+#: ../../any.pm_.c:809
+#, fuzzy
+msgid "Choose the window manager to run:"
+msgstr "Dibabit ar benveg a vennit staliañ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr ""
+#: ../../any.pm_.c:824
+msgid "Please choose a language to use."
+msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "Niverenn bellgomz"
+#: ../../any.pm_.c:826
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
+msgstr "Gallout a rit dibab yezhoù all hag a vo hegerz goude staliañ"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr ""
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "An holl"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer name, description, location"
-msgstr "Lugerezh ar voullerez"
+#: ../../any.pm_.c:961
+msgid "Allow all users"
+msgstr "Aotreiñ an holl dud"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
-msgstr ""
+#: ../../any.pm_.c:961
+msgid "No sharing"
+msgstr "N'ev ket lodañ"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
#, fuzzy, c-format
-msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Diuzit ar yezh da implijout, mar plij."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Implijit Xinemara"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback"
-msgstr "Saveteiñ"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk: \n"
-" %s \n"
-" %s"
+msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
+"Bremanaet e tle bezañ ar pabak-mañ\n"
+"Ha sur oc'h e mennit e ziuzañ ?"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "West Europe"
-msgstr "Europa-Heol"
-
-#: ../../standalone.pm:1
-#, c-format
+#: ../../any.pm_.c:973
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"
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Harddrake2 version %s"
-msgstr "Dinoiñ ar bladenn galet"
-
-#: ../../lang.pm:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
-msgid "Swaziland"
+msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr "Adskrivañ %s"
-
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Choose color"
-msgstr "Dibabit ur skramm"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Dominican Republic"
+#: ../../any.pm_.c:987
+msgid ""
+"Would you like to allow users to share some of their directories?\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror "
+"and nautilus.\n"
+"\n"
+"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac"
-msgstr "Siriak"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1003
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!"
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
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
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Implijit ar stokelloù %c ha %c evit diuz pe enmont zo war wel"
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
+msgstr "Bezit deuet mat, preizherien !"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Logodenn rummel 2 nozelenn"
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Paour"
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr ""
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
+msgstr "Skouer"
-#. -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
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "An enmont war wel a vo loc'het ent emgefreek e %d eilenn."
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Uhel"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
-msgstr ""
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+#, fuzzy
+msgid "Higher"
+msgstr "Uhel"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Internet access"
-msgstr "dedennus"
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "Ankeniet"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../any.pm_.c:1061
msgid ""
-"y coordinate of text box\n"
-"in number of characters"
+"This level is to be used with care. It makes your system more easy to use,\n"
+"but very sensitive: it must not be used for a machine connected to others\n"
+"or to the Internet. There is no password access."
msgstr ""
+"Ret eo implijout al live-mañ gant evezh. Ober a ra d'ho reizhiad bezañ\n"
+"aesoc'h da implijout, hogen kizidig-tre : arabat e implj evit un ardivink\n"
+"kevreet ouzh lod all pe ouzh ar genrouedad. N'eus ket a haeziñ dre dremenger."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1064
msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
+"Gweredekaet eo bremañ an tremenger, hogen dierbedet eo c'hoazh an implij en "
+"ur rouedad"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "O voullañ pajenn(où) skrid..."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Bez' ez eus ur parzhadur e boent marc'hañ %s endeo\n"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1065
+#, fuzzy
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 ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
-msgstr "Ukren"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Application:"
-msgstr "X11/Arloadoù"
-
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "External ISDN modem"
-msgstr "Mailh"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
+"Setu al live surentez standard a vez erbedet evit un urzhiataer a vo "
+"implijet\n"
+"evit kevreañ evel arval ouzh ar Genrouedad. Bremañ ez eus gwiriadennoù "
+"surentez."
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Ho tibab ? (%s dre ziouer)"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
+#: ../../any.pm_.c:1066
+msgid ""
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid " / Region"
-msgstr "Spister"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../any.pm_.c:1067
+#, fuzzy
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"
+"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 ""
-"Pajenn(où) arnod zo bet kaset d'an diaoul moullañ.\n"
-"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
-"Stad ar moullañ :\n"
-"%s\n"
-"\n"
-"Ha mont a ra en-dro reizh ?"
+"Gant al live surentez-mañ e teu posupl implijout ar reizhiad-mañ evel ur "
+"servijer.\n"
+"Uhel a-walc'h eo bremañ ar surentez evit implijout ar reizhiad evel ur "
+"servijer\n"
+"o tigemer kevreadennoù a-berzh arvaloù niverus."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
+#: ../../any.pm_.c:1070
+#, fuzzy
+msgid ""
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
+"Kemer a reomp arc'hweloù al live 4, hogen bremañ eo peurserret ar reizhiad.\n"
+"Arc'hweloù surentez a zo en o muiañ"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "and one unknown printer"
-msgstr "Moullerez lec'hel"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Ireland"
-msgstr "Iwerzhon"
+#: ../../any.pm_.c:1076
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Parzhadur"
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "kernel version"
-msgstr "Kefluniañ ar proksioù"
+#: ../../any.pm_.c:1077
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Dibabit al live surentez"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid " Restore Configuration "
-msgstr "Kefluniadur ar rouedad"
+#: ../../any.pm_.c:1080
+msgid "Security level"
+msgstr "Live surentez"
-#: ../../Xconfig/test.pm:1
-#, fuzzy, c-format
-msgid "Is this the correct setting?"
-msgstr "Ha reizh eo ?"
+#: ../../any.pm_.c:1082
+msgid "Use libsafe for servers"
+msgstr "Implijit libsafe gant ar servijer"
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1083
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."
+"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Wizard Configuration"
-msgstr "Kefluniadur"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Autoprobe"
-msgstr "Embrouiñ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files..."
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../install_any.pm:1
-#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr "N'hellañ ket implijout ar skignañ hep domani NIS"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
-
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "drakfloppy"
-msgstr "Assevel adalek ar pladennig"
+#: ../../any.pm_.c:1166
+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 ""
-#: ../../standalone/drakpxe:1
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, c-format
msgid ""
-"Please indicate where the auto_install.cfg file is located.\n"
+"Welcome to %s the operating system chooser!\n"
"\n"
-"Leave it blank if you do not want to set up automatic installation mode.\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
"\n"
msgstr ""
+"Degemer mat e %s, an dibaber reizhiad oberian~ !\n"
+"\n"
+"Dibabit an dibaber reizhiad pe\n"
+"gortozit %d eilennoù\n"
+"\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Peru"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid " on device: %s"
-msgstr "Trobarzhell al logodenn : %s\n"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "Chetan Windows(TM)"
-
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"Enaou ha dizenaou ar servijer Fontoù X da vare al loc'hañ hag al lazhañ."
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Degemer mat e GRUB an dibaber reizhiad oberia¤ !"
-#: ../../standalone/drakTermServ:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:986
#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Implijit ar stokelloù %c ha %c evit diuz pe enmont zo war wel"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Stokit enkas evit loc'ha¤ ar RK diuzet, 'e' evit aoza¤ an"
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "Madagaskar"
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "urzhiado— kent loc'ha¤, pe 'c' evit ul linenn-urzhia¤."
-#: ../../standalone/drakbug:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:995
#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "An enmont war wel a vo loc'het ent emgefreek e %d eilenn."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "System"
-msgstr "Reizhiad"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "Gorretaol"
-#: ../../any.pm:1 ../../help.pm:1
-#, fuzzy, c-format
-msgid "Do you want to use this feature?"
-msgstr "Mennout a rit implijout aboot?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr "Arabek"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "Meuziad Lañsañ"
-#: ../../standalone/drakbackup:1
+#: ../../bootloader.pm_.c:1120
#, fuzzy, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Parzhadur"
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "Pelec'h e mennit staliañ ar c'harger loc'hañ ?"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Password required"
-msgstr "Tremenger"
+#: ../../bootlook.pm_.c:53
+#, fuzzy
+msgid "Boot Style Configuration"
+msgstr "Kefluniadur goude staliañ"
-#: ../../common.pm:1
-#, c-format
-msgid "%d minutes"
-msgstr "%d munutennoù"
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
+msgstr "/_Restr"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Kartenn c'hrafek : %s"
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
+msgstr "/Restr/_Kuitaat"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV transfer failed!"
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "Staliadur XFree86"
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
+msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Choose action"
-msgstr "Dibabit un obererezh"
+#: ../../bootlook.pm_.c:83
+#, fuzzy
+msgid "NewStyle Monitor"
+msgstr "Skramm"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Polynesia"
-msgstr "Polinezi galleg"
+#: ../../bootlook.pm_.c:84
+#, fuzzy
+msgid "Traditional Monitor"
+msgstr "Kemmañ ar skramm"
-#: ../../help.pm:1
-#, 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."
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
+#: ../../bootlook.pm_.c:89
+#, fuzzy
+msgid "Lilo/grub mode"
+msgstr "Anv domani"
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "O staliañ ur sturier evit kartenn %s %s"
+#: ../../bootlook.pm_.c:89
+#, fuzzy
+msgid "Yaboot mode"
+msgstr "Trobarzhell loc'hañ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:138
+#, fuzzy
+msgid "Install themes"
+msgstr "Staliañ ar reizhiad"
+
+#: ../../bootlook.pm_.c:139
msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
+"Display theme\n"
+"under console"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Enable Server"
-msgstr "Stlennvonioù"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ukrainian"
-msgstr "Ukrainiek"
+#: ../../bootlook.pm_.c:140
+#, fuzzy
+msgid "Create new theme"
+msgstr "Krouiñ ur parzhadur nevez"
-#: ../../printer/printerdrake.pm:1
+#: ../../bootlook.pm_.c:184
#, 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 "Backup %s to %s.old"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Lakait ur bladennig el lenner %s"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: ../../bootlook.pm_.c:187
#, fuzzy, c-format
-msgid "Local network(s)"
-msgstr "kartenn rouedad kavet ebet"
+msgid "Copy %s to %s"
+msgstr "Adskrivañ %s"
-#: ../../help.pm:1
-#, c-format
-msgid "Remove Windows"
-msgstr "Chetan Windows"
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+msgstr "Fazi"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Firewire controllers"
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../help.pm:1
+#: ../../bootlook.pm_.c:222
#, fuzzy, 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!"
-msgstr ""
-"LILO (the LInux LOader) ha Grub a zo kargerien loc'hañ : barrek int da "
-"loc'hañ\n"
-"pe Linux pe forzh pe reizhiad korvoiñ all bezañt war ho urzhiataer.\n"
-"Peurvuiañ, ar reizhiadoù korvoiñ all-se a vez dinoet ha staliet reizh.\n"
-"Ma n'eo ket kont evel-hen, gallout a rit ouzhpennañ un enmont gant an dorn\n"
-"er skramm-mañ. Taolit pled da zibab an arventennoù reizh.\n"
-"\n"
-"\n"
-"Gallout a rafec'h ivez mennout na lakaat hegerz hini ebet eus ar reizhiadoù\n"
-"korvoiñ-se, neuze n'hoc'h eus ken nemet dilemel an enmontoù a zegouezh. "
-"Hogen\n"
-"neuze e vo ret deoc'h kaout ur bladennig loc'hañ evit loc'hañ anezho."
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "System mode"
-msgstr ""
+msgid "Write %s"
+msgstr "XFree %s"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:224
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."
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-"Evit moullañ war ur voullerez NetWare eo ret deoc'h pourvezañ anv ar\n"
-"servijer moullañ NetWare (Ho evezh ! Disheñvel e c'hell bezañ diouzh e\n"
-"anv ostiz TCP/IP !) kement hag anv ar steud moullañ evit ar voullerez\n"
-"a glaskit tizhout ha ne vern pe anv arveriad ha tremenger en implij."
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Netmask:"
-msgstr "Maskl rouedad"
-#: ../../any.pm:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Append"
-msgstr "Ouzhpennañ"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../bootlook.pm_.c:238
#, 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 "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:244
msgid ""
-"OSS (Open Sound System) was the first sound API. It's an OS independant "
-"sound API (it's available on most unices systems) but it's a very basic and "
-"limited API.\n"
-"What's more, OSS drivers all reinvent the wheel.\n"
-"\n"
-"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
-"which\n"
-"supports quite a large range of ISA, USB and PCI cards.\n"
-"\n"
-"It also provides a much higher API than OSS.\n"
-"\n"
-"To use alsa, one can either use:\n"
-"- the old compatibility OSS api\n"
-"- the new ALSA api that provides many enhanced features but requires using "
-"the ALSA library.\n"
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, 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"
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Dibarzhoù ar voullerez NetWare"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+#, fuzzy
+msgid "Notice"
+msgstr "frondenn"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
+#: ../../bootlook.pm_.c:251
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Diuzit renkad ar staliadur"
-#: ../../printer/printerdrake.pm:1
+#: ../../bootlook.pm_.c:259
#, fuzzy, c-format
-msgid "Printer Device URI"
-msgstr "Trobarzhell ar voullerez"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not erasable media!"
-msgstr ""
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "Diazezet war un dermenell"
+msgid ""
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
+msgstr "Lugerezh ar voullerez"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
+msgstr "Kefluniañ"
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "The user name is too long"
-msgstr "En implij eo an anv arveriad-se endeo"
+#: ../../bootlook.pm_.c:268
+#, fuzzy
+msgid "Splash selection"
+msgstr "Diuz pakadoù unan hag unan"
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "Reizhiadoù (windows...)"
+#: ../../bootlook.pm_.c:271
+#, fuzzy
+msgid "Themes"
+msgstr "Gwezenn"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV remote site already in sync!"
+#: ../../bootlook.pm_.c:273
+msgid ""
+"\n"
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Generate auto install floppy"
-msgstr "O krouiñ ur bladennig staliañ emgefreek"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr "Somali"
-
-#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
-msgid "No open source driver"
-msgstr "Sturier X"
-
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+#: ../../bootlook.pm_.c:316
+msgid "System mode"
msgstr ""
-"Kemer a reomp arc'hweloù al live 4, hogen bremañ eo peurserret ar reizhiad.\n"
-"Arc'hweloù surentez a zo en o muiañ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "Kaledoni-nevez"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "Mod video"
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Please enter your email address below "
-msgstr "Klaskit adarre mar plij"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Oman"
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Network Monitoring"
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "SunOS"
-msgstr "SunOS"
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
+msgstr "YA"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "New size in MB: "
-msgstr "Ment nevez e Mo : "
+#: ../../common.pm_.c:107
+msgid "GB"
+msgstr "Go"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Seurt taolenn barzhañ : %s\n"
+#: ../../common.pm_.c:107
+msgid "KB"
+msgstr "Ko"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Authentication Windows Domain"
-msgstr "Dilesadur"
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "Mo"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "Stokellaoueg SUA"
+#: ../../common.pm_.c:115
+msgid "TB"
+msgstr "To"
-#: ../../install_steps_interactive.pm:1
+#: ../../common.pm_.c:123
#, c-format
-msgid "Buttons emulation"
-msgstr ""
+msgid "%d minutes"
+msgstr "%d munutennoù"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ""
+#: ../../common.pm_.c:125
+msgid "1 minute"
+msgstr "1 munutenn"
-#: ../../standalone/drakbackup:1
+#: ../../common.pm_.c:127
#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
+msgid "%d seconds"
+msgstr "%d eilenn"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
+#: ../../common.pm_.c:172
+#, fuzzy
+msgid "Can't make screenshots before partitioning"
+msgstr "N'hellan ouzpennañ parzhadur ebet ken"
-#: ../../standalone/net_monitor:1
+#: ../../common.pm_.c:179
#, fuzzy, c-format
-msgid "Sending Speed:"
-msgstr "Enrollañ er restr"
+msgid "Screenshots will be available after install in %s"
+msgstr "Gallout a rit dibab yezhoù all hag a vo hegerz goude staliañ"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"The classic bug sound tester is to run the following commands:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
-"currently uses\n"
-"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services're configured to be run on\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+msgid "France"
+msgstr "Gall"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
msgstr ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Mail alert configuration"
-msgstr "Kefluniañ ar proksioù"
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+msgid "Belgium"
+msgstr "Beljik"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr ""
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
+msgstr "Tchek"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bosnian"
-msgstr ""
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+msgid "Germany"
+msgstr "Alaman"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Release: "
-msgstr "Gortozit mar plij"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+msgid "Greece"
+msgstr "Gres"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Connection speed"
-msgstr "Anv ar gevreadenn"
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+msgid "Norway"
+msgstr "Norvegek"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+msgid "Sweden"
+msgstr "Suis"
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr ""
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
+msgstr "Izelvroioù"
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "Database Server"
-msgstr "Stlennvonioù"
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+msgid "Italy"
+msgstr "Italian"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+msgid "Austria"
+msgstr "Aostria"
-#: ../../raid.pm:1
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "N'hellan ket ouzhpennañ ur parzhadur da RAID md%d _furmadet_"
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
+msgstr "Amerika"
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../diskdrake/dav.pm_.c:19
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."
+"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/draksec:1
-#, fuzzy, c-format
-msgid "Please wait, setting security options..."
-msgstr "Gortozit mar plij, o prientiñ ar staliadur"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
+#: ../../diskdrake/dav.pm_.c:27
+msgid "New"
+msgstr "Nevez"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr ""
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Divarc'hañ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr ""
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Marc'hañ"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
-msgstr ""
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
+msgstr "Servijer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Poent marc'hañ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr ""
+#: ../../diskdrake/dav.pm_.c:85
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
+#: ../../diskdrake/dav.pm_.c:109
+#, fuzzy
+msgid "Server: "
+msgstr "Servijer"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "Spagnol"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
+msgstr "Poent marc'hañ : "
-#: ../../services.pm:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, fuzzy, c-format
-msgid "Start"
-msgstr "Meuziad Lañsañ"
+msgid "Options: %s"
+msgstr "Parzhadur"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Activate/Disable ethernet cards promiscuity check."
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
+msgstr "Gwarezit ho roadoù da gentañ mar plij"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Configuring applications..."
-msgstr "Kefluniañ ar voullerez"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "Lennit aketus !"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:100
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."
+"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 ""
+"M'emaoc'h e soñj implijout aboot, taolit evezh leuskel un egor dieub (2048 "
+"rann\n"
+"a zo a-walc'h) e deroù ar bladenn"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Normal modem connection"
-msgstr "Kefluniañ ur rouedad"
-
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "File Selection"
-msgstr "Diuzadenn strollad pakadoù"
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "Skoazeller"
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
+msgstr "Dibabit un obererezh"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
+#: ../../diskdrake/hd_gtk.pm_.c:191
+msgid ""
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
+"Ur mell barzhadur FAT hoc'h eus\n"
+"(implijet gant MicroSoft Dos/Windows peurliesañ).\n"
+"Aliañ a ran ouzoc'h adventañ ar parzhadur-se\n"
+"(klikit warni, da c'houde klikit war \"Adventañ\")"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "Staliadur c'harger loc'hañ"
+#
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "Klikit war ur parzhadur mar plij"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Ment ar parzhadur gwrizienn e Mo : "
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "Munudoù"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Hemañ a zo ur pakad ret, n'hell ket bezañ andiuzet"
+#: ../../diskdrake/hd_gtk.pm_.c:254
+#, fuzzy
+msgid "No hard drives found"
+msgstr "N'ev ket Moullerez lec'hel!\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) a zo ur Servijer Anvioù Domani (DNS) a zo implijet evit\n"
-"amdreiñ anvioù ostiz e chomlec'hioù IP."
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "FAT"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:325
+#, fuzzy
+msgid "Journalised FS"
+msgstr "marc'hañ sac'het"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Report"
-msgstr "Paour"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "Disloañ"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "live"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "Goullo"
-#: ../../share/advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "All"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "Diuzadenn strollad pakadoù"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "Seurt ar reizhiadoù restroù :"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr "Kefluniadur goude staliañ"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "Krouiñ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "Seurt"
-#: ../../modules/interactive.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr ""
+msgid "Use ``%s'' instead"
+msgstr "Grit kentoc'h gant ``%s''"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Dibabit ar spister ha donder al livioù"
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "Dilemel"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
-msgstr "Kendarvan an trede nozelenn ?"
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
+msgstr "Implijit ``Divarc'hañ'' da gentañ"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, 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."
+"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
+"Goude kemmañ seurt ar parzhadur %s, holl roadoù ar parzhadur-se a vo kollet"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr "Marc'hañ"
-
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Creating auto install floppy"
-msgstr "O krouiñ ur bladennig staliañ emgefreek"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose a partition"
+msgstr "Dibabit un parzhadur"
-#: ../../steps.pm:1
-#, fuzzy, c-format
-msgid "Install updates"
-msgstr "Staliañ ar reizhiad"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose another partition"
+msgstr "Dibabit un parzhadur all"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:202
+msgid "Exit"
+msgstr "Kuitaat"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "State"
-msgstr "Meuziad Lañsañ"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
+msgstr "Tremen er mod mailh"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
+msgstr "Tremen er mod boas"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable multiple profiles"
-msgstr "Aotren lies trolinenn"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "Dizober"
-#: ../../fs.pm:1
-#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "Kenderc'hel evelato ?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "Kuitaat hep enrollañ"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Local printer"
-msgstr "Moullerez lec'hel"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "Kuitaat hep skrivañ an daolenn barzhañ ?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Files Restored..."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:257
+#, fuzzy
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
-msgstr "Diuzadenn pakadoù"
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "Skarañ an holl"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritania"
-msgstr "Maouritani"
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
+msgstr "Ac'hubiñ ent emgefreek"
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+#, fuzzy
+msgid "More"
+msgstr "Dilec'hiañ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:278
+#, fuzzy
+msgid "Hard drive information"
+msgstr "Dinoiñ ar bladenn galet"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:310
msgid "All primary partitions are used"
msgstr "Ac'hubet eo an holl barzhadurioù kentañ renk"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "N'hellan ouzpennañ parzhadur ebet ken"
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
+#: ../../diskdrake/interactive.pm_.c:312
+msgid ""
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
msgstr ""
+"Evit kaout muioc'h a barzhadurioù, lamit unan evit ma c'hellot krouiñ ur "
+"parzhadur astennet mar plij"
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Installation Server Configuration"
-msgstr "Kefluniadur"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "Kefluniañ IDE"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Network functionality not configured"
-msgstr "Skramm ket kefluniet"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Configure module"
-msgstr "Kefluniañ al logodenn"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "Inizi Koko (Keeling)"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Disconnecting from the Internet "
-msgstr "Anv ar gevreadenn"
+#: ../../diskdrake/interactive.pm_.c:322
+#, fuzzy
+msgid "Save partition table"
+msgstr "Skrivañ an daolenn barzhañ"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Ret e vo deoc'h adloc'hañ a-raok ma talvezo ar c'hemm"
+#: ../../diskdrake/interactive.pm_.c:323
+#, fuzzy
+msgid "Restore partition table"
+msgstr "Taolenn barzhañ saveteerezh"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Provider phone number"
-msgstr "Niverenn bellgomz"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
+msgstr "Taolenn barzhañ saveteerezh"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Host %s"
-msgstr "Anv an ostiz"
+#: ../../diskdrake/interactive.pm_.c:326
+#, fuzzy
+msgid "Reload partition table"
+msgstr "Taolenn barzhañ saveteerezh"
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
-msgstr "Armeni"
+#: ../../diskdrake/interactive.pm_.c:331
+#, fuzzy
+msgid "Removable media automounting"
+msgstr "Emvarc'hañ ar skoroù lem/laka"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Fiji"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "Diuzit ar restr"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:347
msgid ""
-"Arguments: (length, ndigits=0, nupper=0)\n"
-"\n"
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
+"The backup partition table has not the same size\n"
+"Still continue?"
msgstr ""
+"N'eo ket heñvel ment an daolenn barzhañ gwarezet\n"
+"Kenderc'hel memestra ?"
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "Eil lenner pladennig"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
-msgstr "A-brepoz Harddrake"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "Ho evezh"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:362
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -2832,227 +1775,107 @@ msgstr ""
"Lakait ur bladennig el lenner\n"
"Kollet e vo holl roadoù ar bladennig-se"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "Ment: %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "secondary"
-msgstr "%d eilenn"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "View Backup Configuration."
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr ""
-
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "Tremenger ebet"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Nigeria"
-msgstr "Nijeria"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr ""
-
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "There is no existing partition to use"
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
msgstr "O klask assevel an daolenn barzhañ"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
+#: ../../diskdrake/interactive.pm_.c:379
+#, fuzzy
+msgid "Detailed information"
+msgstr "Diskouez titouroù"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "Adventañ"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Hard drive information"
-msgstr "Dinoiñ ar bladenn galet"
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "Dilec'hiañ"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian"
-msgstr "Rusiek"
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "Furmadiñ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Jordan"
-msgstr "Jordani"
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "Ouzhpennañ da RAID"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Hide files"
-msgstr "mkraid sac'het"
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "Ouzhpennañ da LVM"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "Lemel diwar RAID"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"XawTV isn't installed!\n"
-"\n"
-"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv nor "
-"saa7134\n"
-"module in \"/etc/modules\") nor installed xawtv, please send the\n"
-"results of \"lspcidrake -v -f\" to \"install@mandrakesoft.com\"\n"
-"with subject \"undetected TV card\".\n"
-"\n"
-"\n"
-"You can install it by typing \"urpmi xawtv\" as root, in a console."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "Lemel diwar LVM"
-#: ../../any.pm:1
-#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "Ho tigarez, lenner pladennig hegerz ebet"
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "Kemmañ RAID"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bolivia"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
+msgstr "Implij da saveteiñ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "Krouiñ ur parzhadur nevez"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "Pakad siek"
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "Rann kregiñ : "
-#: ../../share/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!"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "Ment e Mo : "
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid "DrakSec Basic Options"
-msgstr "Parzhadur"
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "Seurt ar reizhiad restroù : "
-#: ../../standalone/draksound:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Dibarzh : "
+
+#: ../../diskdrake/interactive.pm_.c:481
msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
+"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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Romania"
-msgstr "Roumani"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "choose device"
-msgstr "Trobarzhell loc'hañ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Canada"
-msgstr "Kanada"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from LVM"
-msgstr "Lemel diwar LVM"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Timezone"
-msgstr "Takad-eur"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German"
-msgstr "Alaman"
+#: ../../diskdrake/interactive.pm_.c:511
+#, fuzzy
+msgid "Remove the loopback file?"
+msgstr "O furmadiñ ar restr saveteiñ %s"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../interactive.pm:1
-#: ../../interactive/newt.pm:1 ../../my_gtk.pm:1
-#: ../../printer/printerdrake.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Next ->"
-msgstr "A heul ->"
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "Kemmañ seurt ar parzhadur"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in japanese language. Only "
-"use this function if you really want to print text in japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+#, fuzzy
+msgid "Which filesystem do you want?"
+msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Guinea-Bissau"
-msgstr ""
+msgid "Where do you want to mount loopback file %s?"
+msgstr "Pelec'h e mennit marc'hañ ar restr saveteiñ %s ?"
-#: ../../Xconfig/monitor.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Feur freskaat a-led"
+msgid "Where do you want to mount device %s?"
+msgstr "Pelec'h e mennit marc'hañ an drobarzhell %s ?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -3060,1198 +1883,1206 @@ msgstr ""
"N'hellan ket dizober ar poent marc'hañ dre m'eo implijet ar parzhadur-se\n"
"evit saveteiñ. Lamit ar saveteiñ da gentañ"
-#: ../../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 ""
+#: ../../diskdrake/interactive.pm_.c:606
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Pelec'h e mennit marc'hañ an drobarzhell %s ?"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "USB controllers"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "O jediñ bevennoù ar reizhiad restroù FAT"
-#: ../../Xconfig/various.pm:1
-#, fuzzy, c-format
-msgid "What norm is your TV using?"
-msgstr "Ouzh pe borzh a-steud eo luget ho logodenn ?"
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "Oc'h adventañ"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Type:"
-msgstr "Seurt : "
+#: ../../diskdrake/interactive.pm_.c:662
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
+msgstr "Mat e vije gwareziñ holl roadoù ar parzhadur-se"
+
+#: ../../diskdrake/interactive.pm_.c:669
#, c-format
-msgid "Share name"
-msgstr "Anv rannet"
+msgid "After resizing partition %s, all data on this partition will be lost"
+msgstr "Goude adventañ ar parzhadur %s e vo kollet holl roadoù ar parzhadur-se"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "enable"
-msgstr "Taolenn"
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "Dibabit ar ment nevez"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
-msgstr "O taremprediñ ar melezour evit kaout roll ar pakadoù hegerz"
+#: ../../diskdrake/interactive.pm_.c:675
+msgid "New size in MB: "
+msgstr "Ment nevez e Mo : "
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Remove the loopback file?"
-msgstr "O furmadiñ ar restr saveteiñ %s"
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "Rann"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "Da beseurt rann e mennit dilec'hiañ ?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP server name missing!"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "O tilec'hiañ"
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Please choose your country."
-msgstr "Dibabit seurt ho logodenn, mar plij."
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "O tilec'hiañ ur parzhadur..."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Restr gwareziñ siek"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr "Dibabit da be RAID ouzhpennañ"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Laotian"
-msgstr "Laosiek"
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "nevez"
-#: ../../lang.pm:1
-#, c-format
-msgid "Samoa"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
+msgstr "Dibabit da be LVM ouzhpennañ"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Ar c'homenad rstat a ro tu da implijerien ur rouedad da zastum\n"
-"muzulioù barregezh diwar ne vern pe ardivink er rouedad-se."
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
+msgstr "Anv LVM?"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Re-generating list of configured scanners ..."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
+msgstr "N'heller ket implijout ar parzhadur-mañ evit saveteiñ"
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Scanner"
-msgstr "Diuzit ur gartenn c'hrafek"
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
+msgstr "Saveteiñ"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
+msgstr "Anv ar restr saveteiñ : "
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Bad Ip"
-msgstr "IO kartenn"
+#: ../../diskdrake/interactive.pm_.c:831
+#, fuzzy
+msgid "Give a file name"
+msgstr "Anv gwirion"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"An anv arveriad a zle bezañ ennañ lizherennoù munut, sifroù, `-' ha `_' "
-"hepken"
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
+msgstr "Restr implijet gant ur saveteiñ all endeo, dibabit unan all"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Menudrake"
-msgstr "MandrakeStore"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
+msgstr "Ar restr a zo endeo. E implijout ?"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "Bezit deuet mat, preizherien !"
+#: ../../diskdrake/interactive.pm_.c:858
+msgid "Mount options"
+msgstr "Dibarzhoù marc'hañ"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "Dibarzhoù ar mollad :"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
+msgstr "A bep sort"
-#: ../../share/advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "trobarzhell"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Go on without configuring the network"
-msgstr "Kefluniañ ar rouedad"
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "live"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Abort"
-msgstr "Dilaoskel"
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "ment diaoz"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
+msgstr "Bezit war evezh : arvarus eo an obererezh-mañ."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please check if you want to use the non-rewinding device."
-msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
+#: ../../diskdrake/interactive.pm_.c:962
+#, fuzzy
+msgid "What type of partitioning?"
+msgstr "Peseurt moullerez hoc'h eus ?"
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:978
#, fuzzy, c-format
-msgid "Usage of remote scanners"
-msgstr "Implij da saveteiñ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CDROM.\n"
+msgid "The package %s is needed. Install it?"
msgstr ""
+"Bremanaet e tle bezañ ar pabak-mañ\n"
+"Ha sur oc'h e mennit e ziuzañ ?"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:992
msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
+"Ma zigarezit na asantiñ krouiñ /boot ken pell war ar bladenn (war ur granenn "
+"> 1024).\n"
+"Pe e implijit LILO ha ne daio ket en-dro, pe ne rit ket ha n'hoc'h eus ket "
+"ezhomm a /boot"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norvegek)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
+#: ../../diskdrake/interactive.pm_.c:996
+msgid ""
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
+"Lec'hiet eo ar parzhadur hoc'h eus diuzet da ouzphennañ evel gwrizienn (/) "
+"en tu-hont\n"
+"d'ar 1024vet kranenn eus ar bladenn galet, ha n'hoc'h eus ket a barzhadur /"
+"boot.\n"
+"Ma vennit implijout ar merour loc'hañ LILO, taolit pled da ouzhpennañ ur "
+"parzhadur /boot"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "N'ev ket fork: %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "Seurt : "
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
+# a-steud<
+#: ../../diskdrake/interactive.pm_.c:1002
+msgid ""
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "no fonts found"
-msgstr "%s ket kavet"
-
-#: ../../harddrake/data.pm:1 ../../help.pm:1
-#: ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid "Mouse"
-msgstr "Logodenn"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "War-nes bezañ skrivet war bladenn eo taolenn barzhañ an ardivink %s !"
-#: ../../bootloader.pm:1
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
+msgstr "Ret e vo deoc'h adloc'hañ a-raok ma talvezo ar c'hemm"
+
+#: ../../diskdrake/interactive.pm_.c:1037
#, c-format
-msgid "not enough room in /boot"
+msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
+"Goude furmadiñ ar parzhadur %s, holl roadoù ar parzhadur-se a vo kollet"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Host name"
-msgstr "Anv an ostiz"
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "O furmadiñ"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Liechtenstein"
-msgstr ""
+msgid "Formatting loopback file %s"
+msgstr "O furmadiñ ar restr saveteiñ %s"
-#: ../../standalone/draksplash:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "the color of the progress bar"
-msgstr ""
+msgid "Formatting partition %s"
+msgstr "O furmadiñ ar parzhadur %s"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:1052
+#, fuzzy
+msgid "Hide files"
+msgstr "mkraid sac'het"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to RAID"
-msgstr "Ouzhpennañ da RAID"
+#: ../../diskdrake/interactive.pm_.c:1052
+#, fuzzy
+msgid "Move files to the new partition"
+msgstr "Krouiñ ur parzhadur nevez"
-#: ../../help.pm:1
+#: ../../diskdrake/interactive.pm_.c:1053
#, c-format
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."
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1064
+#, fuzzy
+msgid "Moving files to the new partition"
+msgstr "Krouiñ ur parzhadur nevez"
+
+#: ../../diskdrake/interactive.pm_.c:1068
#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr ""
+msgid "Copying %s"
+msgstr "Adskrivañ %s"
-#: ../../standalone/drakTermServ:1
+#: ../../diskdrake/interactive.pm_.c:1072
#, fuzzy, c-format
-msgid "No floppy drive available!"
-msgstr "Lenner pladennig hegerz ebet"
+msgid "Removing %s"
+msgstr "Spisterioù"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
+msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "Kenderc'hel evelato ?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "Trobarzhell : "
-#: ../../harddrake/data.pm:1 ../../help.pm:1
-#: ../../install_steps_interactive.pm:1 ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "Printer"
-msgstr "Moullerez"
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "Lizher ar bladenn DOS : %s (diwar varteze hepken)\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saudi Arabia"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "Seurt : "
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "Internet"
-msgstr "dedennus"
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "Anv: "
-#: ../../standalone/service_harddrake:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "Some devices were added:\n"
-msgstr ""
+msgid "Start: sector %s\n"
+msgstr "O kregiñ : rann %s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Mentoniezh : %s kranenn, %s penn, %s rann\n"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "O tizenaouiñ ar rouedad"
+msgid "Size: %s"
+msgstr "Ment: %s"
-#: ../../standalone/drakTermServ:1
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
+msgid ", %s sectors"
+msgstr ", %s rann"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm_.c:1125
#, fuzzy, c-format
-msgid "Restore From Tape"
-msgstr "Taolenn barzhañ saveteerezh"
+msgid "Cylinder %d to %d\n"
+msgstr "Kranenn %d da granenn %d\n"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Choose the profile to configure"
-msgstr "Dibabit ar ment nevez"
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "Furmadet\n"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "Ket furmadet\n"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup Now from configuration file"
-msgstr "Kefluniadur ar rouedad"
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
+msgstr "Marc'het\n"
-#: ../../fsedit.pm:1
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr ""
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, fuzzy, c-format
-msgid "Restarting printing system..."
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
-
-#: ../../security/help.pm:1
-#, c-format
msgid ""
-"Arguments: (name)\n"
-"\n"
-"Add the name as an exception to the handling of password aging by msec."
-msgstr ""
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "Gwelet titouroù periantel"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr "Rann gentañ ar parzhadur loc'hañ"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr ""
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr ""
+"Loopback file(s):\n"
+" %s\n"
+msgstr "Restr(où) saveteiñ : %s\n"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1132
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)"
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
+"Parzhadur loc'het dre ziouer\n"
+" (evit loc'hañ MS-DOS, ket evit lilo)\n"
-#: ../../standalone/drakTermServ:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "Subnet Mask:"
-msgstr ""
+msgid "Level %s\n"
+msgstr "Live %s\n"
-#: ../../standalone/drakboot:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr ""
+msgid "Chunk size %s\n"
+msgstr "Ment diaoz %s\n"
-#: ../../Xconfig/monitor.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"An div arventenn dreistpouezus a zo ar feur freskaat a-serzh, da lavaret eo "
-"ar\n"
-"feur ma vez freskaet ar skramm a-bezh, ha pouezusuc'h c'hoazh ar feur "
-"kempredañ\n"
-"a-led, da lavaret eo ar feur ma vez diskwelet linennoù skubañ.\n"
-"\n"
-"HOLLBOUEZHUS eo deoc'h na spisaat ur seurt skramm gant ur feur kempredañ\n"
-"a zo en tu-hont da varregezh ho skramm : gallout a rafe gwastañ ho skramm\n"
-" M'hoc'h eus douetañs, dibabit ur c'hefluniadur fur."
+msgid "RAID-disks %s\n"
+msgstr "Pladennoù RAID %s\n"
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "Modify"
-msgstr "Kemmañ"
+msgid "Loopback file name: %s"
+msgstr "Anv ar restr saveteiñ : %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
msgid ""
"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/dav.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
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\"."
+"\n"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "HardDrake"
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid "new"
-msgstr "nevez"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Would you like to try again?"
-msgstr "Mennout a rit kefluniañ ur voullerez ?"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../help.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "Skoazeller"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Edit selected server"
-msgstr "kavoutet %s"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please choose where you want to backup"
-msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Ret eo deoc'h adloc'hañ evit ma talvezo kemmoù an daolenn barzhañ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
-msgstr ""
+msgid "Size: %s\n"
+msgstr "Ment: %s\n"
-#: ../../standalone/keyboarddrake:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Mentoniezh : %s kranenn, %s penn, %s rann\n"
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "Skouer"
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
+msgstr "Titouroù: "
-#: ../../standalone/mousedrake:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid "Please choose your mouse type."
-msgstr "Dibabit seurt ho logodenn, mar plij."
+msgid "LVM-disks %s\n"
+msgstr "Pladennoù LVM %s\n"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid "Connect..."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Kefluniañ ar voullerez"
+msgid "Partition table type: %s\n"
+msgstr "Seurt taolenn barzhañ : %s\n"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1169
#, fuzzy, c-format
-msgid "not configured"
-msgstr "Kefluniañ X"
+msgid "on channel %d id %d\n"
+msgstr "war bus %d Nn %d\n"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
+#: ../../diskdrake/interactive.pm_.c:1199
+#, fuzzy
+msgid "Filesystem encryption key"
+msgstr "Seurt ar reizhiad restroù : "
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "About"
-msgstr "Dilaoskel"
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
+msgstr ""
-#: ../../network/network.pm:1
+#: ../../diskdrake/interactive.pm_.c:1203
#, fuzzy, c-format
-msgid "Proxies configuration"
-msgstr "Kefluniadur goude staliañ"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "O kregiñ : rann %s\n"
+msgid "This encryption key is too simple (must be at least %d characters long)"
+msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutañ)"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Network interface already configured"
-msgstr "Skramm ket kefluniet"
+#: ../../diskdrake/interactive.pm_.c:1204
+#, fuzzy
+msgid "The encryption keys do not match"
+msgstr "An tremegerioù ne glot ket"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "connecting to Bugzilla wizard ..."
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Mail Server"
-msgstr "Stlennvonioù"
+#: ../../diskdrake/removable.pm_.c:47
+#, fuzzy
+msgid "Change type"
+msgstr "Kemmañ seurt ar parzhadur"
-#
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "Please click on a partition"
-msgstr "Klikit war ur parzhadur mar plij"
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linux"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Dilesadur"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
-msgstr ""
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "dedennus"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "across Network"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Anv arveriad"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+#, fuzzy
+msgid "Username"
+msgstr "Anv arveriad"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Upgrade %s"
-msgstr "Bremanaat"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Domani NIS"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Diuzit lugerezh ar voullerez"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+#, fuzzy
+msgid "Search servers"
+msgstr "Servijer DNS"
-#: ../../standalone/drakxtv:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
+msgid "%s formatting of %s failed"
+msgstr "furmadiñ er seurt %s eus %s a zo sac'het"
-#: ../../standalone/drakbackup:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
+msgid "I don't know how to format %s in type %s"
+msgstr "N'ouzon ket penaos furmadiñ %s er seurt %s"
-#: ../../standalone/drakTermServ:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "IP Range Start:"
+msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../services.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"An diaoul gourservijer kenrouedad (anvet inetd ordinal) a loc'h ur\n"
-"bochad a servijoù kenrouedad all diouzh an ezhomm. E karg loc'hañ meur a "
-"servijoù\n"
-"eo, en o zouez telnet, ftp, rsh, and rlogin. Dizoberiañ inetd a zizoberia\n"
-"an holl servijoù m'eo eñ atebek warno."
+msgid "error unmounting %s: %s"
+msgstr "fazi en ur zivarc'hañ %s : %s"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
-msgstr ""
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "eeun"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
+msgstr "gant /usr"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "Arc'hantin"
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "servijer"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
msgid ""
-"Arguments: (arg)\n"
+"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"
-" Accept/Refuse broadcasted icmp echo."
+"Do you agree to loose all the partitions?\n"
msgstr ""
+"N'hellañ ket lenn ho taolenn barzhañ, re vrein eo evidon :(\n"
+"Klask a rin kenderc'hel en ur ziverkañ ar parzhadurioù siek"
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Domain Name Server"
-msgstr "Anv ar domani"
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr ""
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Security Level:"
-msgstr "Live surentez"
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
msgstr "Poentoù marc'hañ a rank kregiñ gant /"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Postfix Mail Server"
-msgstr "Stlennvonioù"
-
-#: ../../diskdrake/interactive.pm:1
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "Quit without saving"
-msgstr "Kuitaat hep enrollañ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr ""
+msgid "There is already a partition with mount point %s\n"
+msgstr "Bez' ez eus ur parzhadur e boent marc'hañ %s endeo\n"
-#: ../../share/advertising/11-mnf.pl:1
+#: ../../fsedit.pm_.c:526
#, c-format
-msgid "This product is available on the MandrakeStore Web site."
+msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "Dinoiñ ar bladenn galet"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:530
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-#: ../../diskdrake/dav.pm:1
-#, fuzzy, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: ../../lang.pm:1
+#: ../../fsedit.pm_.c:532
#, c-format
-msgid "Tajikistan"
+msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "Aotren"
+#: ../../fsedit.pm_.c:599
+msgid "Not enough free space for auto-allocating"
+msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Description"
-msgstr "Spisait dibarzhoù"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
+msgstr ""
-#: ../../fsedit.pm:1
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fazi en ur zigeriñ %s evit skrivañ : %s"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Seurt logodenn : %s\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please choose your CD/DVD media size (Mb)"
-msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
+msgstr ""
-#: ../../security/help.pm:1
+#: ../../harddrake/sound.pm_.c:171
#, c-format
msgid ""
-"Arguments: (arg)\n"
-"\n"
-" Enabling su only from members of the wheel group or allow su from any user."
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Expert Area"
-msgstr "Mod mailh"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "Dibabit ur skramm"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "Berzet eo ar skridennadoù goullo"
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Kefluniadur"
-#: ../../keyboard.pm:1
+#: ../../harddrake/sound.pm_.c:174
#, c-format
-msgid "Maltese (UK)"
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "N'hellan ouzpennañ parzhadur ebet ken"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "Ment e Mo : "
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Remote printer"
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
-msgstr "Diuzit ar yezh da implijout, mar plij."
-
-#: ../../network/network.pm:1
+#: ../../harddrake/sound.pm_.c:176
#, 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."
-msgstr ""
-
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "I can set up your computer to automatically log on one user."
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-"Kefluniañ ho urzhiataer evit lañsañ X ent emgefreek pa loc'ho a c'hellañ.\n"
-"Mennout a rit lañsañ X pa adloc'hit ?"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Floppy format"
-msgstr "Furmadiñ"
+#: ../../harddrake/sound.pm_.c:178
+#, fuzzy
+msgid "Driver:"
+msgstr "Servijer"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Generic Printers"
-msgstr "Moullerez"
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+msgid "Help"
+msgstr "Skoazell"
-#: ../../printer/printerdrake.pm:1
-#, 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"
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
+#: ../../harddrake/sound.pm_.c:186
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
msgstr ""
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "First sector of the root partition"
-msgstr "Rann gentañ ar parzhadur loc'hañ"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Alternative drivers"
-msgstr "O voullañ pajenn(où) skrid..."
-
-#: ../../standalone/drakbackup:1
+#: ../../harddrake/sound.pm_.c:202
#, c-format
msgid ""
+"The old \"%s\" driver is blacklisted.\n"
"\n"
-"Please check all options that you need.\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
-msgstr "Penn Verde"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr ""
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Amprouiñ ar c'hefluniadur"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "Gortozit mar plij"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Guam"
-msgstr ""
+#: ../../harddrake/sound.pm_.c:210
+#, fuzzy
+msgid "No known driver"
+msgstr "Sturier X"
-#: ../../printer/printerdrake.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, 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 "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/Dibarzhoù/Arnodenn"
+#: ../../harddrake/sound.pm_.c:214
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Sturier X"
-#: ../../security/level.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, 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."
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-"Ret eo implijout al live-mañ gant evezh. Ober a ra d'ho reizhiad bezañ\n"
-"aesoc'h da implijout, hogen kizidig-tre : arabat e implj evit un ardivink\n"
-"kevreet ouzh lod all pe ouzh ar genrouedad. N'eus ket a haeziñ dre dremenger."
-#: ../../fs.pm:1
-#, fuzzy, c-format
-msgid "Mounting partition %s"
-msgstr "O furmadiñ ar parzhadur %s"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "Anv arveriad"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Pe barzhadur a vennit implijout evit lakaat Linux4Win ?"
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Dilesadur"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup system"
-msgstr "Kefluniañ reizhiadoù restroù"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Rummel"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Test pages"
-msgstr "Amprouiñ ar porzhioù"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Logical volume name "
-msgstr "Restroù lec'hel"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
msgid ""
-"List of data to restore:\n"
-"\n"
+"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 ""
-#: ../../fs.pm:1
-#, fuzzy, c-format
-msgid "Checking %s"
-msgstr "Adskrivañ %s"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "Dibarzhoù ar voullerez NetWare"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
+#: ../../harddrake/v4l.pm_.c:227
+#, fuzzy
+msgid "Card model:"
msgstr "Memor kartenn (DMA)"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "Gall"
+#: ../../harddrake/v4l.pm_.c:228
+#, fuzzy
+msgid "Tuner type:"
+msgstr "Kemmañ seurt ar parzhadur"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remote printer name missing!"
-msgstr "Anv an ostiz a-bell"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Ha mennout a rit amprouiñ moullañ skrid ?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "Turki"
+#: ../../harddrake/v4l.pm_.c:231
+#, fuzzy
+msgid "PLL setting:"
+msgstr "O furmadiñ"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Number of buttons"
-msgstr "2 nozelenn"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Yezh ar Viet-Nam QUERTY \"linenn sifroù\""
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Module"
-msgstr "Logodenn"
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+
+#: ../../help.pm_.c:48
+msgid ""
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/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 ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:79
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
+#: ../../help.pm_.c:84
+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"
+"you are not supposed to know them all by heart.\n"
+"\n"
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
+"\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
+"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
+"\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
+"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
+"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
+"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
+"\n"
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
+#: ../../help.pm_.c:135
+msgid ""
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
msgstr ""
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "Amerika"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "RK dre ziouer"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "Suis (reizhadur alaman)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
+#: ../../help.pm_.c:171
+msgid ""
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:193
+#, fuzzy
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\"."
+"You may now choose which services you wish to start at boot time.\n"
+"\n"
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
+"\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
+"Bremañ e c'hellit diuz pe servijoù a vennit e vije lañset pa loc'her.\n"
+"Pa zeu ho logodenn war un draez, ul lagadenn skoazell a zeuio war wel hag\n"
+"a zisplego pal ar servij-se.\n"
+"\n"
+"Bezit aketuz-kenañ el lankad-mañ ma vennit implijout ho ardivink evel ur\n"
+"servijer : mennout a rit emichañs chom hep loc'hañ kement servij n'ho peus "
+"ket\n"
+"c'hoant."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "Servijer NTP"
-
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Load/Save on floppy"
-msgstr "Enrollañ war bladennig"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
+#: ../../help.pm_.c:210
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
msgstr ""
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "brav"
-
-#: ../../Xconfig/test.pm:1
-#, fuzzy, c-format
-msgid "Leaving in %d seconds"
-msgstr "%d eilenn"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country"
-msgstr "Bro"
+#: ../../help.pm_.c:224
+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.\n"
+"\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
+msgstr ""
+
+#: ../../help.pm_.c:246
+msgid ""
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
+msgstr ""
+
+#: ../../help.pm_.c:253
+msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
+msgstr ""
+
+#: ../../help.pm_.c:277
+msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft 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"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
+"\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
+msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Property"
-msgstr "Perzhioù"
+#: ../../help.pm_.c:347
+msgid ""
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
+#: ../../help.pm_.c:378
+msgid ""
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr "Kefluniadur ar voullerez vihan"
+#: ../../help.pm_.c:404
+#, fuzzy
+msgid ""
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
+"\n"
+"Please be patient."
+msgstr "Gortozit mar plij"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
+#: ../../help.pm_.c:412
+msgid ""
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
+"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
+#: ../../help.pm_.c:425
+msgid ""
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Advanced Options"
-msgstr "Kefluniadur"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "View Configuration"
-msgstr "Kefluniadur"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
+#: ../../help.pm_.c:432
+msgid ""
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:442
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"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -4261,6127 +3092,5171 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:513
msgid ""
-"Graphic Card\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-" 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"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\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 ""
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Ur fazi a zo bet en ur staliañ ar pakadoù :"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Kefluniañ ar proksioù"
-
-#: ../../diskdrake/interactive.pm:1 ../../help.pm:1
-#, c-format
-msgid "Undo"
-msgstr "Dizober"
-
-#: ../../diskdrake/interactive.pm:1 ../../help.pm:1
-#, fuzzy, c-format
-msgid "Save partition table"
-msgstr "Skrivañ an daolenn barzhañ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "Finnek"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "Makedonia"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "Slovek"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr "Libi"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
+"\"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 ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Anv ar voullerez"
+#: ../../help.pm_.c:544
+#, fuzzy
+msgid "Please be patient. This operation can take several minutes."
+msgstr "Gortozit mar plij."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:547
msgid ""
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
"\n"
-"- Burn to CD"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
+"\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
+"\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
+"\n"
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
+"\n"
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
+"\n"
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
+"\n"
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "Taolenn"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "N'ouzon ket penaos furmadiñ %s er seurt %s"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Model"
-msgstr "Logodenn"
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../help.pm_.c:582
msgid ""
-"Arguments: (arg)\n"
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
-"Enable/Disable libsafe if libsafe is found on the system."
+"Click on the \"More\" 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, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "USB printer #%s"
-msgstr "Moullerez USB \\/*%s"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Stop Server"
-msgstr "Servijer NIS"
-
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../help.pm_.c:598
msgid ""
+"The first step is to choose your preferred language.\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
+"Please choose your preferred language for installation and system usage.\n"
+"\n"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
+"\n"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Modem"
-msgstr "Logodenn"
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../help.pm_.c:617
msgid ""
-"Arguments: (arg, listen_tcp=None)\n"
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
"\n"
-"Allow/Forbid X connections. First arg specifies what is done\n"
-"on the client side: ALL (all connections are allowed), LOCAL (only\n"
-"local connection) and NONE (no connection)."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr ""
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
+"\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:638
+#, fuzzy
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."
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"GPM a zegas implij al logodenn d'an arloadoù Linux mod-skrid evel\n"
-"Midnight Commander. Reiñ a ra tu da seveniñ obererezhoù troc'hañ-ha-pegañ,\n"
-"ha skor evit meuziadoù kemperzhel war al letrin."
+"Diuzit ar porzh a zere mar plij. Da skouer, porzh COM1 dindan MS Windows\n"
+"a vez anvet ttyS0 gant Linux."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
+#: ../../help.pm_.c:642
+msgid ""
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
+"\n"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
+"\n"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
+"\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
+"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../share/advertising/12-mdkexpert.pl:1
-#, c-format
+#: ../../help.pm_.c:678
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:"
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, 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 in doubt, DrakX will display a dialog with various options.\n"
+"\n"
+" * \"Bootloader to use\": you have three choices:\n"
+"\n"
+" * \"GRUB\": if you prefer grub (text menu);\n"
+"\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\n"
+"\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
+"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
+"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
+"\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\n"
+"\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
msgstr ""
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../help.pm_.c:718
+#, fuzzy
msgid ""
-"The following options can be set to customize your\n"
-"system security. If you need an explanation, look at the help tooltip.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
+"LILO (the LInux LOader) ha Grub a zo kargerien loc'hañ : barrek int da "
+"loc'hañ\n"
+"pe Linux pe forzh pe reizhiad korvoiñ all bezañt war ho urzhiataer.\n"
+"Peurvuiañ, ar reizhiadoù korvoiñ all-se a vez dinoet ha staliet reizh.\n"
+"Ma n'eo ket kont evel-hen, gallout a rit ouzhpennañ un enmont gant an dorn\n"
+"er skramm-mañ. Taolit pled da zibab an arventennoù reizh.\n"
+"\n"
+"\n"
+"Gallout a rafec'h ivez mennout na lakaat hegerz hini ebet eus ar reizhiadoù\n"
+"korvoiñ-se, neuze n'hoc'h eus ken nemet dilemel an enmontoù a zegouezh. "
+"Hogen\n"
+"neuze e vo ret deoc'h kaout ur bladennig loc'hañ evit loc'hañ anezho."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
+#: ../../help.pm_.c:732
+#, fuzzy
+msgid ""
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\n"
+"\n"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
msgstr ""
+"Ret eo deoc'h menegiñ pelec'h e mennit\n"
+"lec'hiañ an titouroù ret evit loc'hañ Linux.\n"
+"\n"
+"\n"
+"Nemet ma ouifec'h resis ar pezh a rit, dibabit \"Rann gentañ\n"
+"ar bladenn (MBR)\"."
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
+#: ../../help.pm_.c:739
+msgid ""
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
+"\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
+"\n"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:759
msgid ""
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"- Save to Tape on device: %s"
+"Because hardware detection does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
+"\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr "Lemel..."
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../help.pm_.c:781
msgid ""
-"Arguments: (arg)\n"
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
+"\n"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\n"
+"\n"
+"For Linux, there are a few possible options:\n"
+"\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
+"\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
+"\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
+"\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"hda=autotune\n"
+"\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
+"\n"
+" * Initrd: this option can be used either to load initial modules, before\n"
+"the boot device is available, or to load a ramdisk image for an emergency\n"
+"boot situation;\n"
+"\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
+"\n"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
+"\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support;\n"
+"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Installing Foomatic..."
-msgstr "O staliañ ar pakad %s"
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Dizereit mar plij ha neuze implijit Ctrl-Alt-WarGil"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected"
-msgstr "kavoutet"
-
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
+#: ../../help.pm_.c:828
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
+"\n"
+"Yaboot's main options are:\n"
+"\n"
+" * Init Message: a simple text message displayed before the boot prompt;\n"
+"\n"
+" * Boot Device: indicates where you want to place the information required\n"
+"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
+"to hold this information;\n"
+"\n"
+" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+"yaboot. The first delay is measured in seconds and at this point, you can\n"
+"choose between CD, OF boot, MacOS or Linux;\n"
+"\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
+"\n"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\n"
+"\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
+"\n"
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
msgstr ""
-"Bremanaet e tle bezañ ar pabak-mañ\n"
-"Ha sur oc'h e mennit e ziuzañ ?"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package: "
-msgstr "Pakad:"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
+#: ../../help.pm_.c:860
+msgid ""
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
+"\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
+"\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
+"\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\n"
+"\n"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\n"
+"\n"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\n"
+"\n"
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
+#: ../../help.pm_.c:891
+msgid ""
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
+#: ../../help.pm_.c:896
+msgid ""
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Windows Migration tool"
-msgstr "Titouroù"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr "An holl yezhoù"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "Lemel %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s not found...\n"
-msgstr "N'eo ket bet kavet %s...\n"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Testing your connection..."
-msgstr "Kefluniañ ur rouedad"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Cache size"
-msgstr "ment diaoz"
-
-#: ../../security/level.pm:1
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
+"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 ""
-"Gweredekaet eo bremañ an tremenger, hogen dierbedet eo c'hoazh an implij en "
-"ur rouedad"
-#: ../../diskdrake/interactive.pm:1
+#: ../../install2.pm_.c:167
#, c-format
-msgid "Start sector: "
-msgstr "Rann kregiñ : "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr "Kongo (Brazzaville)"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-"Bremanaet e tle bezañ ar pabak-mañ\n"
-"Ha sur oc'h e mennit e ziuzañ ?"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Seychelles"
+msgid "You must also format %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:423
#, 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"
+"You have selected the following server(s): %s\n"
"\n"
-"For your printer Printerdrake has found:\n"
"\n"
-"%s"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Bad password on %s"
-msgstr "N'eo ket tremenger mad war %s"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:441
#, c-format
msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
"\n"
-"There is one unknown printer directly connected to your system"
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Right Control key"
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "Zambi"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
+msgstr "N'hellañ ket implijout ar skignañ hep domani NIS"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr ""
+#: ../../install_any.pm_.c:879
+#, fuzzy, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Lakait ur bladennig el lenner %s"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr "Romaniek (qwerty)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
+#: ../../install_any.pm_.c:895
+msgid ""
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-#: ../../crypto.pm:1 ../../lang.pm:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, c-format
-msgid "Czech Republic"
-msgstr "Republik Tchek"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "Ejipt"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "Kartenn son"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Import Fonts"
-msgstr "Furmadiñ parzhadurioù"
+msgid "Error reading file %s"
+msgstr "Fazi en ur lenn ar restr %s"
-#: ../../diskdrake/hd_gtk.pm:1
-#, fuzzy, c-format
+#: ../../install_any.pm_.c:1040
msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
+"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 ""
-"Ur mell barzhadur FAT hoc'h eus\n"
-"(implijet gant MicroSoft Dos/Windows peurliesañ).\n"
-"Aliañ a ran ouzoc'h adventañ ar parzhadur-se\n"
-"(klikit warni, da c'houde klikit war \"Adventañ\")"
+"C'hoarvezet ez eus ur fazi - n'eus bet kavet trobarzhell reizh ebet a-benn "
+"krouiñ reizhiadoù restroù nevez warni. Gwiriit abeg ar gudenn-mañ en ho "
+"ardivinkaj mar plij "
-#: ../../standalone/drakfont:1
+#: ../../install_interactive.pm_.c:21
#, c-format
-msgid "Suppress Temporary Files"
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:56
msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
+"Ret eo deoc'h kaout ur parzhadur gwrizienn.\n"
+"Evit se, krouit ur parzhadur (pe glikit war unan a zo c'hoazh).\n"
+"Da c'houde dibabit an ober ``Poent marc'hañ'' ha lakait anezhañ da `/'"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "Kemmañ seurt ar parzhadur"
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
+msgstr "Ret eo deoc'h kaout ur parzhadur disloañ"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:62
msgid ""
-"Resolution\n"
+"You don't have a swap partition.\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."
+"Continue anyway?"
msgstr ""
+"N'hoc'h eus ket a barzhadur disloañ\n"
+"\n"
+"Kenderc'hel evelato ?"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Network Options"
-msgstr "Dibarzhoù ar rouedad"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+#, fuzzy
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Ret eo deoc'h kaout ur parzhadur disloañ"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Use free space"
+msgstr "Implij da saveteiñ"
+
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Statistics"
-msgstr "Sifroù"
+#: ../../install_interactive.pm_.c:100
+#, fuzzy
+msgid "Use existing partitions"
+msgstr "O furmadiñ parzhadurioù"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr "(war %s)"
+#: ../../install_interactive.pm_.c:102
+#, fuzzy
+msgid "There is no existing partition to use"
+msgstr "O klask assevel an daolenn barzhañ"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "Doare MM"
+#: ../../install_interactive.pm_.c:109
+#, fuzzy
+msgid "Use the Windows partition for loopback"
+msgstr "Implij da saveteiñ"
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
+#: ../../install_interactive.pm_.c:112
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Pe barzhadur a vennit implijout evit lakaat Linux4Win ?"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr ""
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
+msgstr "Dibabit ar mentoù"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "New printer name"
-msgstr "Anv nevez ar moullerez"
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
+msgstr "Ment ar parzhadur gwrizienn e Mo : "
-#: ../../fs.pm:1
-#, 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 )."
-msgstr ""
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr "Ment ar parzhadur disloañ e Mo : "
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../security/help.pm:1
+#: ../../install_interactive.pm_.c:129
+#, fuzzy
+msgid "Which partition do you want to resize?"
+msgstr "Pe seurt parzhadur a vennit ?"
+
+#: ../../install_interactive.pm_.c:131
+#, fuzzy
+msgid "Resizing Windows partition"
+msgstr "O jediñ bevennoù ar reizhiad restroù FAT"
+
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Allow/Forbid autologin."
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Build Backup"
-msgstr "Restr gwareziñ siek"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:137
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
+#: ../../install_interactive.pm_.c:138
+#, fuzzy
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
+"HO EVEZH !\n"
+"\n"
+"Ezhomm en deus DrakX adventañ ho parzhadur Windows bremañ. Bezit war "
+"evezh :\n"
+"arvarus eo an obererezh-se. Ma n'hoc'h eus ket graet c'hoazh, gwelloc'h e\n"
+"vije deoc'h seveniñ da gentañ scandisk (ha diouzh ret seveniñ defrag) war "
+"ar\n"
+"parzhadur-se, ha gwareziñ ho roadoù. Pa vezit sur, gwaskit \"Mat eo\""
+
+#: ../../install_interactive.pm_.c:148
+#, fuzzy
+msgid "Which size do you want to keep for Windows on"
+msgstr "Da beseurt rann e mennit dilec'hiañ ?"
-#: ../../keyboard.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Romanian (qwertz)"
-msgstr "Romaniek (Yawertz)"
+msgid "partition %s"
+msgstr "parzhadur %s"
-#: ../../standalone/drakTermServ:1
+#: ../../install_interactive.pm_.c:156
#, fuzzy, c-format
-msgid "Write Config"
-msgstr "Kefluniañ X"
+msgid "FAT resizing failed: %s"
+msgstr "Adventañ ent emgefreek sac'het"
-#: ../../services.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:171
msgid ""
-"The routed daemon allows for automatic IP router table updated via\n"
-"the RIP protocol. While RIP is widely used on small networks, more complex\n"
-"routing protocols are needed for complex networks."
-msgstr ""
-"An diaoul routed a ro an tu da vremanaat ent emgefreek an taolenn henchañ\n"
-"IP dre ar c'homenad RIP. Tra ma vez implijet aliesig RIP war rouedadoù "
-"bihan,\n"
-"ezhomm a zo komenadoù henchañ kemplezhoc'h evit rouedadoù rouestlet."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Allow/Forbid remote root login."
-msgstr ""
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr "Chetan an holl planedenn"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr ""
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr "Chetan Windows(TM)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../network/tools.pm:1
+#: ../../install_interactive.pm_.c:183
#, fuzzy, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Goude adventañ ar parzhadur %s e vo kollet holl roadoù ar parzhadur-se"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "Belgian"
+#: ../../install_interactive.pm_.c:191
+#, fuzzy
+msgid "Custom disk partitioning"
+msgstr "O furmadiñ parzhadurioù"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Hag un all hoc'h eus ?"
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr "Implijit fdisk"
-#: ../../network/ethernet.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:198
+#, fuzzy, c-format
msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
+"Gallout a rit bremañ parzhañ ho pladenn galet %s\n"
+"Pa 'z eo graet, na zisoñjit ket enrollañ dre implijout `w'"
-#: ../../diskdrake/hd_gtk.pm:1
-#, fuzzy, c-format
-msgid "Windows"
-msgstr "Titouroù"
+#: ../../install_interactive.pm_.c:227
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "N'hoc'h eus parzhadur windows ebet !"
-#: ../../common.pm:1
-#, fuzzy, c-format
-msgid "Can't make screenshots before partitioning"
+#: ../../install_interactive.pm_.c:243
+#, fuzzy
+msgid "I can't find any room for installing"
msgstr "N'hellan ouzpennañ parzhadur ebet ken"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Name"
-msgstr "Anv an Ostiz"
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Restr/_Gwarediñ dindan"
+#: ../../install_interactive.pm_.c:250
+#, fuzzy, c-format
+msgid "Partitioning failed: %s"
+msgstr "Seurt taolenn barzhañ : %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr "O lañsañ ar rouedad"
+
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr "O tizenaouiñ ar rouedad"
+
+#: ../../install_steps.pm_.c:76
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)."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
+"Degouezhet ez eus ur fazi, hogen n'ouzon ket e verañ naet.\n"
+"Kendalc'hit war ho mar."
-#: ../../standalone/drakTermServ:1
+#: ../../install_steps.pm_.c:211
#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Poent marc'hañ doubl %s"
+
+#: ../../install_steps.pm_.c:380
msgid ""
-"drakTermServ Overview\n"
-"\t\t\t \n"
-" - Create Etherboot Enabled Boot Images:\n"
-" \t\tTo boot a kernel via etherboot, a special kernel/initrd image "
-"must be created.\n"
-" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
-"graphical interface\n"
-" \t\tto help manage/customize these images. To create the file \n"
-" \t\t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \t\tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel.\n"
-"\n"
-" - Maintain /etc/dhcpd.conf:\n"
-" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP address\n"
-" \t\tand net boot images to the machine. drakTermServ helps create/"
-"remove these entries.\n"
-"\t\t\t\n"
-" \t\t(PCI cards may omit the image - etherboot will request the "
-"correct image. You should\n"
-" \t\talso consider that when etherboot looks for the images, it "
-"expects names like\n"
-" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:\n"
-" \t\t\n"
-"\t\t\t\thost curly {\n"
-"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
-"\t\t\t\t\tfixed-address 192.168.192.3;\n"
-"\t\t\t\t\t#type fat;\n"
-"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
-"nbi\";\n"
-"\t\t\t\t\t#hdw_config true;\n"
-"\t\t\t\t}\n"
-"\t\t\t\n"
-"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
-"entry for\n"
-"\t\t\ta client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
-"either be 'thin'\n"
-"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-"\t\t\tmost software on the client machine. A special inittab, /etc/inittab\\$"
-"\\$IP=client_ip\\$\\$ is\n"
-"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-"\t\t\tmodified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-"\t\t\tusing xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-"\t\t\tsubnet.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#hdw_config\" entry is also only used by drakTermServ. "
-"Clients can either \n"
-"\t\t\tbe 'true' or 'false'. 'true' enables root login at the client machine "
-"and allows local \n"
-"\t\t\thardware configuration of sound, mouse, and X, using the 'drak' tools. "
-"This is enabled \n"
-"\t\t\tby creating seperate config files associated with the client's IP "
-"address and creating \n"
-"\t\t\tread/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-"\t\t\twith the configuration, you can remove root login priviledges from the "
-"client.\n"
-"\t\t\t\n"
-"\t\t\tNote: You must stop/start the server after adding or changing "
-"clients.\n"
-"\t\t\t\n"
-" - Maintain /etc/exports:\n"
-" \t\tClusternfs allows export of the root filesystem to diskless "
-"clients. drakTermServ\n"
-" \t\tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \t\tdiskless clients.\n"
-"\n"
-" \t\tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t\t/ (ro,all_squash)\n"
-" \t\t/home SUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tWith SUBNET/MASK being defined for your network.\n"
-" \t\t\n"
-" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
-" \t\tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
-"\\$. drakTermServ helps\n"
-" \t\tin this respect by adding or removing system users from this "
-"file.\n"
-"\n"
-" - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
-" \t\tThrough clusternfs, each diskless client can have it's own "
-"unique configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t\tdrakTermServ will help create these files.\n"
-"\n"
-" - Per client system configuration files:\n"
-" \t\tThrough clusternfs, each diskless client can have it's own "
-"unique configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-"\t\t\t\tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t\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 turned\n"
-" back off, retaining the configuration files, once the client machine "
-"is configured.\n"
-"\t\t\n"
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ will configure this file to work in conjunction "
-"with the images created by\n"
-" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to each\n"
-" \t\tdiskless client.\n"
-"\n"
-" \t\tA typical tftp configuration file looks like:\n"
-" \t\t\n"
-" \t\tservice tftp\n"
-" \t\t(\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t\t}\n"
-" \t\t\n"
-" \t\tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \t\tputs it's images.\n"
-"\n"
-" - Create etherboot floppies/CDs:\n"
-" \t\tThe diskless client machines need either ROM images on the NIC, "
-"or a boot floppy\n"
-" \t\tor CD to initate the boot sequence. drakTermServ will help "
-"generate these images,\n"
-" \t\tbased on the NIC in the client machine.\n"
-" \t\t\n"
-" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
-" \n"
-"\n"
+"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 ""
-#: ../../standalone/scannerdrake:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
+msgid "Welcome to %s"
+msgstr "Degemer e %s"
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "Gedvezh kent loc'hañ ar skeudenn dre ziouer"
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr "Lenner pladennig hegerz ebet"
-#: ../../any.pm:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "Restrict command line options"
-msgstr "Strishaat dibarzhoù al linenn urzhiañ"
+msgid "Entering step `%s'\n"
+msgstr "O kregiñ gant al lankad `%s'\n"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "East Europe"
+#: ../../install_steps_gtk.pm_.c:146
+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 ""
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "Use free space"
-msgstr "Implij da saveteiñ"
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr "Renkad staliañ"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "implijit dhcp"
+#: ../../install_steps_gtk.pm_.c:160
+#, fuzzy
+msgid "Please choose one of the following classes of installation:"
+msgstr "Dibabit unan eus ar renkadoù staliañ a-heul mar plij :"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
+msgstr "Diuzadenn strollad pakadoù"
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Internet configuration"
-msgstr "Kefluniañ ar proksioù"
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
+msgstr "Diuz pakadoù unan hag unan"
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid "Uzbekistan"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "Poent marc'hañ doubl %s"
+msgid "Total size: %d / %d MB"
+msgstr "Ment hollek : %d / %d Mo"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/Autodetect _printers"
-msgstr "Dilesadur"
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
+msgstr "Pakad siek"
-#: ../../interactive.pm:1 ../../interactive/newt.pm:1 ../../my_gtk.pm:1
-#: ../../ugtk2.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "Finish"
-msgstr "Disoc'h"
+msgid "Name: %s\n"
+msgstr "Anv : %s\n"
-#: ../../install_steps_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid "Show automatically selected packages"
-msgstr ""
+msgid "Version: %s\n"
+msgstr "Stumm : %s\n"
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid "Togo"
-msgstr "Togo"
+msgid "Size: %d KB\n"
+msgstr "Ment : %d Ko\n"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr ""
+msgid "Importance: %s\n"
+msgstr "Talvoudegezh : %s\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:360
+#, fuzzy
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr "N'hellit ket andiuz ar pakad-mañ. Staliet eo endo"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "16 Mo"
+#: ../../install_steps_gtk.pm_.c:365
+#, fuzzy
+msgid "The following packages are going to be installed"
+msgstr "Ar pakadoù a-heul a zo war-nes bezañ distaliet"
-#: ../../any.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "Klaskit adarre mar plij"
+#: ../../install_steps_gtk.pm_.c:366
+#, fuzzy
+msgid "The following packages are going to be removed"
+msgstr "Ar pakadoù a-heul a zo war-nes bezañ staliet/lamet"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "The model is correct"
-msgstr "Ha reizh eo ?"
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
+msgstr "N'hellit ket diuz/andiuz ar pakad-mañ"
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Adventañ ent emgefreek sac'het"
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Hemañ a zo ur pakad ret, n'hell ket bezañ andiuzet"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr "Diuz pakadoù unan hag unan"
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
+msgstr "N'hellit ket andiuz ar pakad-mañ. Staliet eo endo"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "This partition is not resizeable"
-msgstr "Pe seurt parzhadur a vennit ?"
+#: ../../install_steps_gtk.pm_.c:395
+msgid ""
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
+msgstr ""
+"Bremanaet e tle bezañ ar pabak-mañ\n"
+"Ha sur oc'h e mennit e ziuzañ ?"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Location"
-msgstr "Titouroù"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "N'hellit ket andiuz ar pakad-mañ. Ret eo dezhañ bezañ bremanaet"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, fuzzy, c-format
-msgid "Journalised FS"
-msgstr "marc'hañ sac'het"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr "Staliañ"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Guatemala"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:407
+#, fuzzy
+msgid "Load/Save on floppy"
+msgstr "Enrollañ war bladennig"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "This machine"
-msgstr "O vrasjediñ"
+#: ../../install_steps_gtk.pm_.c:408
+#, fuzzy
+msgid "Updating package selection"
+msgstr "Diuz pakadoù unan hag unan"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Lizher ar bladenn DOS : %s (diwar varteze hepken)\n"
+#: ../../install_steps_gtk.pm_.c:413
+#, fuzzy
+msgid "Minimal install"
+msgstr "Distaliañ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
+msgstr "Dibabit ar pakadoù a vennit staliañ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr "O staliañ"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit scsi modules"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr "O vrasjediñ"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr "Amzer a chom"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:469
+msgid "Please wait, preparing installation..."
+msgstr "Gortozit mar plij, o prientiñ ar staliadur"
-#: ../../Xconfig/various.pm:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Reizhadur ar stokellaoueg : %s\n"
+msgid "%d packages"
+msgstr "%d pakad"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, 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."
-msgstr ""
+msgid "Installing package %s"
+msgstr "O staliañ ar pakad %s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "Aotren"
-#: ../../services.pm:1
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#, fuzzy
+msgid "Refuse"
+msgstr "Adventañ"
+
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
+"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 ""
-"Evit marc'hañ ha divarc'hañ poentoù marc'hañ an holl Reizhiadoù Restroù\n"
-"Rouedad (NFS), SMB (Lan Manager/Windows) ha NCP (NetWare)."
+"Kemmit ho Cd-Rom!\n"
+"\n"
+"Lakait el lenner ar Cd-Rom warnañ an diketenn \"%s\" mar plij ha gwaskit Mat "
+"eo da c'houde.\n"
+"Ma n'emañ ket ganeoc'h gwaskit Nullañ evit chom hep staliañ ar Cd-Rom-se."
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Tvcard"
-msgstr "Kartenn pellwel"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
+msgstr "Kenderc'hel evelato ?"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Tremen er mod boas"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
+msgstr "Ur fazi a zo bet en ur rummañ pakadoù :"
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Size"
-msgstr "Ment: %s"
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
+msgstr "Ur fazi a zo bet en ur staliañ ar pakadoù :"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "GRUB"
-msgstr "Go"
+#: ../../install_steps_interactive.pm_.c:10
+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 ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Greenland"
-msgstr "Islandek"
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
+msgstr "Ur fazi a zo bet"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
+#: ../../install_steps_interactive.pm_.c:85
+#, fuzzy
+msgid "Do you really want to leave the installation?"
+msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
+"Introduction\n"
"\n"
-"What would you like to do?"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Delete All NBIs"
-msgstr "Diuzit ar restr"
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"This dialog allows you to fine tune your bootloader:\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"
-" * \"%s\": there are three choices for your bootloader:\n"
"\n"
-" * \"%s\": if you prefer grub (text menu).\n"
+"2. Limited Warranty\n"
"\n"
-" * \"%s\": if you prefer LILO with its text menu interface.\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"
-" * \"%s\": if you prefer LILO with its graphical interface.\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\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"
+"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"
-" * \"%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"
+"3. The GPL License and Related Licenses\n"
"\n"
-"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
-"are normally reserved for the expert user."
+"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 ""
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"if set, send the mail report to this email address else send it to root."
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, fuzzy, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Pe seurt enmont a vennit ouzhpennañ"
-
-#: ../../any.pm:1 ../../diskdrake/interactive.pm:1 ../../help.pm:1
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "More"
-msgstr "Dilec'hiañ"
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "Stokellaoueg"
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which can "
-"accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should choose a lower level."
-msgstr ""
-"Gant al live surentez-mañ e teu posupl implijout ar reizhiad-mañ evel ur "
-"servijer.\n"
-"Uhel a-walc'h eo bremañ ar surentez evit implijout ar reizhiad evel ur "
-"servijer\n"
-"o tigemer kevreadennoù a-berzh arvaloù niverus."
+#: ../../install_steps_interactive.pm_.c:218
+#, fuzzy
+msgid "Please choose your keyboard layout."
+msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Account Password"
-msgstr "Tremenger"
+#: ../../install_steps_interactive.pm_.c:219
+#, fuzzy
+msgid "Here is the full list of keyboards available"
+msgstr "stokellaoueg"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
+msgstr "Pe renkad staliañ a fell deoc'h ?"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Tajik keyboard"
-msgstr "Stokellaoueg Thai"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
+msgstr "Staliañ/Bremanaat"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
+msgstr "Hag ur staliadur pe ur bremanadur eo ?"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Font List"
-msgstr "Poent marc'hañ"
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr "Erbedet"
-#: ../../install_steps_interactive.pm:1
-#, 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."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Mailh"
-#: ../../install_steps_interactive.pm:1
-#, 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"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade"
+msgstr "Bremanaat"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Select file"
-msgstr "Diuzit ar restr"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade packages only"
+msgstr "Bremanaat pakadoù hep ken"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:282
+msgid "Please choose the type of your mouse."
+msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr "Porzh al logodenn"
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "Japon"
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
+msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outañ, mar plij."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Print option list"
-msgstr "Dibarzhoù ar voullerez"
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
+msgstr ""
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Backup quota exceeded!\n"
-"%d Mb used vs %d Mb allocated."
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Search servers"
-msgstr "Servijer DNS"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr "O kefluniañ kartennoù PCMCIA..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr "Kefluniañ IDE"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom skridennet \"%s\""
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr "parzhadur hegerz ebet"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
msgstr ""
-"Enroll hag assav poul dizurzh ar reizhiad evit genel niveroù\n"
-"dargouezhek gant gwelloc'h perzhded."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr "Dibabit at poentoù marc'hañ"
+
+#: ../../install_steps_interactive.pm_.c:386
msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
+"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 ""
-#: ../../share/advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:395
+#, fuzzy
+msgid "No root partition found to perform an upgrade"
+msgstr "Parzhadur gwrizienn kavet ebet"
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid " (driver %s)"
-msgstr "Servijer XFree86 : %s\n"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr "Parzhadur gwrizienn"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr "Restr(où) saveteiñ : %s\n"
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr "Pehini eo parzhadur gwrizienn (/) ho reizhiad ?"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr "Ret eo deoc'h adloc'hañ evit ma talvezo kemmoù an daolenn barzhañ"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr "Dibabit ar parzhadur a vennit furmadiñ"
-#: ../../standalone/drakautoinst:1
-#, 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?"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
+msgstr "Gwiriañ ar bloc'hoù siek ?"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Telugu"
-msgstr "Beljik"
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr "O furmadiñ parzhadurioù"
-#: ../../harddrake/sound.pm:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid ""
-"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Post Uninstall"
-msgstr "Dilezel ar staliadur"
+msgid "Creating and formatting file %s"
+msgstr "O krouiñ hag o furmadiñ ar restr saveteiñ %s"
-#: ../../standalone/scannerdrake:1
+#: ../../install_steps_interactive.pm_.c:470
#, c-format
-msgid " ("
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Cpuid level"
-msgstr "Live surentez"
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Ket a-walc'h a zisloañ evit peurstaliañ, kreskit anezhañ mar plij"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "Mongoliek (lizherenneg ar ruseg)"
+#: ../../install_steps_interactive.pm_.c:479
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "O klask ar pakadoù hegerz"
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Add a module"
-msgstr "Ouzhpennañ un arveriad"
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr "O klask ar pakadoù hegerz"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:483
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "N'hellit ket andiuz ar pakad-mañ. Staliet eo endo"
-#: ../../standalone/net_monitor:1
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr "O kavout pakadoù da vremanaat"
+
+#: ../../install_steps_interactive.pm_.c:505
#, fuzzy, c-format
-msgid "Local measure"
-msgstr "Restroù lec'hel"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
+msgstr "Ho reizhiad n'eus ket wa-walc'h a egor evit staliañ pe vremanaat"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
+#: ../../install_steps_interactive.pm_.c:541
+msgid ""
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "busmouse"
-msgstr "Logodenn bus"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Load from floppy"
+msgstr "Assevel adalek ar pladennig"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Account Login (user name)"
-msgstr "Poent marc'hañ"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr "Enrollañ war bladennig"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Loading from floppy"
+msgstr "Assevelañ adalek ar pladennig"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Package selection"
+msgstr "Diuzadenn pakadoù"
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:552
+#, fuzzy
+msgid "Insert a floppy containing package selection"
+msgstr "Lakait ur bladennig el lenner %s"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Benin"
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Path selection"
-msgstr "Diuz pakadoù unan hag unan"
+#: ../../install_steps_interactive.pm_.c:649
+#, fuzzy
+msgid "Type of install"
+msgstr "Dibabit pakadoù da staliañ"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Name/IP address of host:"
+#: ../../install_steps_interactive.pm_.c:650
+msgid ""
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Skramm : %s\n"
+#: ../../install_steps_interactive.pm_.c:653
+msgid "With X"
+msgstr "Gant X"
-#: ../../partition_table/raw.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Dibarzhoù ar voullerez"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:741
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+"If you have all the CDs in the list below, click Ok.\n"
+"If you have none of those CDs, click Cancel.\n"
+"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
+"M'hoc'h eus an holl CDoù er roll a-is, gwaskit Mat eo.\n"
+"Ma n'hoc'h eus hini eus ar CDoù-se, gwaskit Nullañ.\n"
+"Ma fazi deoc'h lod eus ar CDoù, andiuzit anezho ha gwaskit Mat eo."
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:746
#, c-format
-msgid "Bangladesh"
-msgstr ""
+msgid "Cd-Rom labeled \"%s\""
+msgstr "Cd-Rom skridennet \"%s\""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr "O prientiñ ar staliadur"
-#: ../../standalone/drakfont:1
+#: ../../install_steps_interactive.pm_.c:776
#, c-format
-msgid "Initial tests"
+msgid ""
+"Installing package %s\n"
+"%d%%"
msgstr ""
+"O staliañ ar pakad %s\n"
+"%d%%"
+
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
+msgstr "Kefluniadur goude staliañ"
-#: ../../network/isdn.pm:1
+#: ../../install_steps_interactive.pm_.c:828
#, fuzzy, c-format
-msgid "Continue"
-msgstr "Kenderc'hel evelato ?"
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Lakait ur bladennig el lenner %s"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:834
#, fuzzy, c-format
-msgid "Custom Restore"
-msgstr "Neuziet"
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:861
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."
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates ?"
msgstr ""
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr "Diazezet war ur skrid"
+#: ../../install_steps_interactive.pm_.c:876
+#, fuzzy
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgstr "O taremprediñ ar melezour evit kaout roll ar pakadoù hegerz"
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "Fazi en ur lenn ar restr %s"
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
+msgstr "Dibabit ur melezour da dapout ar pakadoù diwarnañ"
-#: ../../harddrake/v4l.pm:1
-#, fuzzy, c-format
-msgid "PLL setting:"
-msgstr "O furmadiñ"
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "O taremprediñ ar melezour evit kaout roll ar pakadoù hegerz"
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
-#, fuzzy, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Ret eo deoc'h kaout ur parzhadur disloañ"
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr "Pe seurt a vo ho takad-eur ?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:923
+#, fuzzy
+msgid "Hardware clock set to GMT"
+msgstr "Ha war GMT eo lakaet ho eurier periantel ?"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "The URL must begin with http:// or https://"
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:931
+msgid "NTP Server"
+msgstr "Servijer NTP"
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "Reizhiadoù (SunOS...)"
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+#, fuzzy
+msgid "Remote CUPS server"
+msgstr "Steud a-bell"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Install/Upgrade"
-msgstr "Staliañ/Bremanaat"
+#: ../../install_steps_interactive.pm_.c:966
+#, fuzzy
+msgid "No printer"
+msgstr "Moullerez lec'hel"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d packages"
-msgstr "%d pakad"
+#: ../../install_steps_interactive.pm_.c:982
+#, fuzzy
+msgid "Do you have an ISA sound card?"
+msgstr "Hag un all hoc'h eus ?"
-#: ../../standalone.pm:1
-#, 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"
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Domain Authentication Required"
-msgstr "Dilesadur"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Costa Rica"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
+msgstr "Evit diverriñ"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Use libsafe for servers"
-msgstr "Implijit libsafe gant ar servijer"
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
+msgstr "Logodenn"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Icelandic"
-msgstr "Islandek"
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
+msgstr "Takad-eur"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "Moullerez"
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Adereit ouzh %s evit bevaat ar c'hemmoù mar plij"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
+msgstr "Kartenn ISDN"
-#: ../../my_gtk.pm:1
-#, fuzzy, c-format
-msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
+msgstr "Kartenn son"
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Lilo/grub mode"
-msgstr "Anv domani"
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
+msgstr "Kartenn pellwel"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Output"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
+msgstr "LDAP"
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Marc'hañ kelc'hiek %s\n"
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+msgid "NIS"
+msgstr "NIS"
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "Martinik"
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Titouroù"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+msgid "Local files"
+msgstr "Restroù lec'hel"
-#: ../../modules/parameters.pm:1
-#, fuzzy, c-format
-msgid "a number"
-msgstr "Niverenn bellgomz"
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr "Termeniñ tremenger root"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "Svedek"
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr "Tremenger ebet"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Pe sturier %s a zlefen amprouiñ ?"
+msgid "This password is too short (it must be at least %d characters long)"
+msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutañ)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "Dilesadur"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Filesystem types:"
-msgstr "Seurt ar reizhiadoù restroù :"
+#: ../../install_steps_interactive.pm_.c:1088
+#, fuzzy
+msgid "Authentication LDAP"
+msgstr "Dilesadur"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Northern Mariana Islands"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1090
+msgid "LDAP Server"
+msgstr "Servijer LDAP"
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "ebet"
+#: ../../install_steps_interactive.pm_.c:1096
+msgid "Authentication NIS"
+msgstr "Dilesadur NIS"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "user :"
-msgstr "arveriad :"
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "Domani NIS"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please enter your password"
-msgstr "Klaskit adarre mar plij"
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr "Servijer NIS"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1104
msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
+"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 ""
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Floppy"
-msgstr "Enrollañ war bladennig"
+#: ../../install_steps_interactive.pm_.c:1106
+#, fuzzy
+msgid "Authentication Windows Domain"
+msgstr "Dilesadur"
-#
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please check if you want to erase your RW media (1st Session)"
-msgstr "Klikit war ur parzhadur mar plij"
+#: ../../install_steps_interactive.pm_.c:1108
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Anv ar domani"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript referencing"
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Bootloader"
-msgstr "C'harger loc'hañ da implijout"
+#: ../../install_steps_interactive.pm_.c:1144
+#, fuzzy
+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\"."
+msgstr ""
+"Ur bladenn loc'hañ neuziet a ro un tu da loc'hañ ho reizhiad Linux hep "
+"bezañ\n"
+"dindan beli ar c'harger loc'hañ boas. Talvoudus eo ma ne mennit ket staliañ "
+"LILO\n"
+"(pe grub) war ho reizhiad, pe ma skarzh ur reizhiad oberiañ LILO, pe ma ne\n"
+"da ket en-dro LILO war ho kefluniadur periantel. Ur bladenn loc'hañ neuziet\n"
+"a c'hell ivez bezañ implijet gant ar skeudenn saveteiñ Mandrake, en ur "
+"aesaat an\n"
+"assevel pa vefec'h sac'het grevus. Mennout a rit krouiñ ur bladenn loc'hañ "
+"evit\n"
+"ho reizhiad ?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "Dilec'hiañ"
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr "Lenner pladennig kentañ"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Bootloader to use"
-msgstr "C'harger loc'hañ da implijout"
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "Eil lenner pladennig"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "Anv ar servijer SMB"
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "Tremen e-biou"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:1167
#, c-format
-msgid "\tLimit disk usage to %s Mb\n"
+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"
msgstr ""
+"Ur bladenn loc'hañ neuziet a ro un tu da loc'hañ ho reizhiad Linux hep "
+"bezañ\n"
+"dindan beli ar c'harger loc'hañ boas. Talvoudus eo ma ne mennit ket staliañ "
+"LILO\n"
+"(pe grub) war ho reizhiad, pe ma skarzh ur reizhiad oberiañ LILO, pe ma ne\n"
+"da ket en-dro LILO war ho kefluniadur periantel. Ur bladenn loc'hañ neuziet\n"
+"a c'hell ivez bezañ implijet gant ar skeudenn saveteiñ Mandrake, en ur "
+"aesaat an\n"
+"assevel pa vefec'h sac'het grevus. Mennout a rit krouiñ ur bladenn loc'hañ "
+"evit\n"
+"ho reizhiad ?\n"
+"%s"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Name Servers:"
-msgstr "Servijer NIS"
-
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1173
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"
+"(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)."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "Ho tigarez, lenner pladennig hegerz ebet"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
+"Dibabit al lenner pladennig a vennit implijout evit ober ar bladenn loc'hañ"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliard a livioù (32 bit)"
-
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:1189
#, fuzzy, c-format
-msgid "Micronesia"
-msgstr "Makedonia"
+msgid "Insert a floppy in %s"
+msgstr "Lakait ur bladennig el lenner %s"
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr "O krouiñ ar bladenn loc'hañ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr "O prientiñ ar c'harger loc'hañ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+#: ../../install_steps_interactive.pm_.c:1210
+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 to boot your machine"
msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
+msgstr "Mennout a rit implijout aboot?"
-#: ../../install_any.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1219
msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"C'hoarvezet ez eus ur fazi - n'eus bet kavet trobarzhell reizh ebet a-benn "
-"krouiñ reizhiadoù restroù nevez warni. Gwiriit abeg ar gudenn-mañ en ho "
-"ardivinkaj mar plij "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
+"Fazi en ur staliañ aboot,\n"
+"klask rediañ ar staliadur zoken ma tistruj ar parzhadur kentañ ?"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Mennout a rit implijout aboot ?"
+#: ../../install_steps_interactive.pm_.c:1226
+msgid "Installing bootloader"
+msgstr "Staliañ ar c'harger loc'hañ"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1232
+#, fuzzy
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Staliadur LILO a zo sac'het. Degouezhet eo ar fazi a heul :"
-#: ../../harddrake/sound.pm:1
+#: ../../install_steps_interactive.pm_.c:1240
#, c-format
-msgid "Sound trouble shooting"
+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 ""
-#: ../../keyboard.pm:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "Polonek (reizhadur qwerty)"
+msgid "Insert a blank floppy in drive %s"
+msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "activate now"
-msgstr "Bevaat"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
+msgstr "O krouiñ ur bladennig staliañ emgefreek"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1289
msgid ""
+"Some steps are not completed.\n"
"\n"
-"Drakbackup activities via CD:\n"
-"\n"
+"Do you really want to quit now?"
msgstr ""
+"Lankadoù 'zo n'int ket peurc'hraet.\n"
+"\n"
+"Mennout a rit kuitaat da vat bremañ ?"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:1300
#, c-format
msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press return to reboot.\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?"
+"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 ""
+"Gourc'hemennoù, peurc'hraet eo ar staliadur.\n"
+"Lamit ar bladenn loc'hañ ha gwaskit enkas evit adloc'hañ.\n"
+"\n"
+"\n"
+"Evit titouroù war palastroù hegerz evit stumm-mañ Mandrake Linux,\n"
+"sellit ouzh ar meneger fazioù hegerz e \n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Titouroù war gefluniañ ho reizhiad a zo hegerz e rannbennad Goude\n"
+"Staliañ Sturier ofisiel an Arveriad Mandrake Linux."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
+#: ../../install_steps_interactive.pm_.c:1313
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "N'heller ket implijout ar parzhadur-mañ evit saveteiñ"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr "Ar restr a zo endeo. E implijout ?"
+#: ../../install_steps_interactive.pm_.c:1318
+#, fuzzy
+msgid "Generate auto install floppy"
+msgstr "O krouiñ ur bladennig staliañ emgefreek"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
+#: ../../install_steps_interactive.pm_.c:1320
+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 ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
+msgstr "Emgefreek"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1325
+#, fuzzy
+msgid "Replay"
+msgstr "Adkargañ"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Treuzell"
+#: ../../install_steps_interactive.pm_.c:1328
+#, fuzzy
+msgid "Save packages selection"
+msgstr "Diuz pakadoù unan hag unan"
-#: ../../lang.pm:1
+#: ../../install_steps_newt.pm_.c:20
#, c-format
-msgid "Tonga"
+msgid "Mandrake Linux Installation %s"
+msgstr "Staliadur Mandrake Linux %s"
+
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
+msgid ""
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
+" <Tab>/<Alt-Tab> etre elfennoù | <Esaouenn> a ziuz | <F12> skramm a heul "
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "Tunizi"
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
+msgstr "kdesu mank"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Scanner sharing"
-msgstr "Moullerez"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Profile: "
-msgstr "marc'hañ sac'het : "
+#: ../../interactive.pm_.c:152
+msgid "Choose a file"
+msgstr "Dibabit ur restr"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
+msgstr "Barek"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
-msgstr ""
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+#, fuzzy
+msgid "Basic"
+msgstr "Diazez"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Create/Transfer\n"
-"backup keys for SSH"
-msgstr ""
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
+msgstr "<- Diaraog"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+msgid "Next"
+msgstr "A heul"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
-msgstr ""
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr "Dibab fall, klaskit adarre\n"
-#: ../../any.pm:1
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "This label is already used"
-msgstr "En implij eo ar skridennad-se endeo"
+msgid "Your choice? (default %s) "
+msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm_.c:54
#, 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."
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
-msgstr "Gresianek"
+#: ../../interactive/stdio.pm_.c:70
+#, fuzzy, c-format
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../../diskdrake/interactive.pm:1
+#: ../../interactive/stdio.pm_.c:95
#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"Goude furmadiñ ar parzhadur %s, holl roadoù ar parzhadur-se a vo kollet"
+msgid "Button `%s': %s"
+msgstr "Nozel `%s': %s"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connection Time: "
-msgstr "Anv ar gevreadenn"
+#: ../../interactive/stdio.pm_.c:96
+#, fuzzy
+msgid "Do you want to click on this button?"
+msgstr "Mennout a rit implijout SILO ?"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "select perm file to see/edit"
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
msgstr ""
-#: ../../standalone/livedrake:1
+#: ../../interactive/stdio.pm_.c:105
#, fuzzy, 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."
-msgstr ""
-"Kemmit ho Cd-Rom!\n"
-"\n"
-"Lakait el lenner ar Cd-Rom warnañ an diketenn \"%s\" mar plij ha gwaskit Mat "
-"eo da c'houde.\n"
-"Ma n'emañ ket ganeoc'h gwaskit Nullañ evit chom hep staliañ ar Cd-Rom-se."
+msgid "Your choice? (default `%s'%s) "
+msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../../standalone/drakperm:1
+#: ../../interactive/stdio.pm_.c:123
#, c-format
-msgid "Use group id for execution"
+msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "Dibabit ar arveriad dre ziouer"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "Gabon"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../interactive/stdio.pm_.c:126
msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
msgstr ""
-#: ../../any.pm:1
+#: ../../interactive/stdio.pm_.c:139
#, 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."
-msgstr "Gallout a rit dibab yezhoù all hag a vo hegerz goude staliañ"
+"=> Notice, a label changed:\n"
+"%s"
+msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Domain"
-msgstr "Domani NIS"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Spisait ment ar memor vev diouzh ret (kavet %d Mo)"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "Tchek (QWERTZ)"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "Alaman"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "Dibarzhoù ar voullerez (da zilenn)"
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Dvorak"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "Trobarzhell loc'hañ"
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "Spagnol"
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Pe seurt parzhadur a vennit ?"
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "Finnek"
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr ""
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "Gall"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr ""
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "Norvegek"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Djibouti"
-msgstr "Dilaoskel"
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "Polonek"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "detected on port %s"
-msgstr "Poent marc'hañ doubl %s"
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "Rusiek"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD"
-msgstr "LPD"
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
+msgstr "Svedek"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Kartenn c'hrafek : %s\n"
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "Stokellaoueg RU"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "Stokellaoueg SUA"
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Splash selection"
-msgstr "Diuz pakadoù unan hag unan"
+#: ../../keyboard.pm_.c:167
+msgid "Albanian"
+msgstr "Albaniek"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr ""
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
+msgstr "Armeniek (kozh)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Kefluniadur ISDN"
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
+msgstr "Armeniek (skriverez)"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "high"
-msgstr "Uhel"
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
+msgstr "Armeniek (soniadel)"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Internet Connection Sharing"
-msgstr "Lugerezh ar voullerez"
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
+msgstr "Azerbaidjanek (latin)"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Choose file"
-msgstr "Dibabit un obererezh"
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "Belgian"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
+#: ../../keyboard.pm_.c:178
+msgid "Bengali"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "O tizenaouiñ ar rouedad"
+#: ../../keyboard.pm_.c:179
+msgid "Bulgarian (phonetic)"
+msgstr "Bulgariek (soniadel)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
+#: ../../keyboard.pm_.c:180
+msgid "Bulgarian (BDS)"
+msgstr "Bulgarek (BDS)"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer default settings"
-msgstr "Lugerezh ar voullerez"
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
+msgstr "Brasilek (ABNT-2)"
-#: ../../standalone/harddrake2:1
-#, 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)"
+#: ../../keyboard.pm_.c:184
+msgid "Bosnian"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Logodenn rummel PS2 rodellek"
+#: ../../keyboard.pm_.c:185
+#, fuzzy
+msgid "Belarusian"
+msgstr "Bulgarek"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "Suis (reizhadur alaman)"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Select a device !"
-msgstr "Diuzit ur gartenn c'hrafek"
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "Suis (reizhadur gall)"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remove selected server"
-msgstr "Lemel ar steudad"
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "Tchek (QWERTY)"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Southern Territories"
-msgstr ""
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr "Alaman (stokell marv ebet)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the processor"
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr "Mat e vije gwareziñ holl roadoù ar parzhadur-se"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "O staliañ ar pakad %s"
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "Danek"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Dvorak (US)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Evit kaout muioc'h a barzhadurioù, lamit unan evit ma c'hellot krouiñ ur "
-"parzhadur astennet mar plij"
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Norvegek)"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
+#: ../../keyboard.pm_.c:196
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (Svedek)"
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "Dibabit pakadoù da staliañ"
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "Estoniek"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
-"\n"
-msgstr ""
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Jorjiek (reizhadur \"Rusiek\")"
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "Goude adventañ ar parzhadur %s e vo kollet holl roadoù ar parzhadur-se"
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Jorjiek (reizhadur \"Latin\")"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr "Ho reizhiad n'eus ket wa-walc'h a egor evit staliañ pe vremanaat"
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "Gresian"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr ""
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "Hungarian"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr ""
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "Kroatek"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
-msgstr ""
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
+msgstr "Israelian"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "Stokellaoueg korean"
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr "Israelian (soniadel)"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Not connected"
-msgstr "Lugerezh ar voullerez"
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr "Iraniek"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
-msgstr "Gresianek"
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr "Islandek"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"If \\fIarg\\fP = ALL allow /etc/issue and /etc/issue.net to exist. If \\fIarg"
-"\\fP = NONE no issues are\n"
-"allowed else only /etc/issue is allowed."
-msgstr ""
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "Italian"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, 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."
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
-msgstr ""
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
+msgstr "Stokellaoueg korean"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr ""
+#: ../../keyboard.pm_.c:218
+msgid "Latin American"
+msgstr "Amerikan Latin"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "FreskA-serzh ar skramm : %s\n"
+#: ../../keyboard.pm_.c:219
+msgid "Laotian"
+msgstr "Laosiek"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "path"
-msgstr ""
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
+msgstr "Lituaniek AZERTY (kozh)"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "Poent marc'hañ"
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
+msgstr "Lituaniek AZERTY (nevez)"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Lituaniek QUERTY \"linenn sifroù\""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore system"
-msgstr "Staliañ ar reizhiad"
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Lituaniek QUERTY \"soniadel\""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
+#: ../../keyboard.pm_.c:225
+msgid "Latvian"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Another one"
-msgstr "dedennus"
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
+msgstr "Makedonia"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Colombia"
-msgstr "Kolombi"
+#: ../../keyboard.pm_.c:229
+msgid "Mongolian (cyrillic)"
+msgstr "Mongoliek"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
msgstr ""
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr "Enez ar Reunion"
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
+msgstr "Hollandek"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "Munudoù"
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
+msgstr "Polonek (reizhadur qwerty)"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr ""
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
+msgstr "Polonek (reizhadur qwerty)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Synchronization tool"
-msgstr ""
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
+msgstr "Portugalek"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Checking your system..."
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr "Kanadian (Kebek)"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Print"
-msgstr "Moullerez"
+#: ../../keyboard.pm_.c:239
+msgid "Romanian (qwertz)"
+msgstr "Romaniek (Yawertz)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
+#: ../../keyboard.pm_.c:240
+msgid "Romanian (qwerty)"
+msgstr "Romaniek (Yawerty)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "Mongoli"
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "Rusiek (Yawerty)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
-msgstr "Marc'het\n"
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
+msgstr "Slovek"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Graphical Interface"
-msgstr "X pa loc'her"
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "Slovakek (QWERTZ)"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Users"
-msgstr "Adaozañ adalek ar restr"
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "Slovakek (QWERTY)"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Encryption key for %s"
-msgstr "An tremegerioù ne glot ket"
+#: ../../keyboard.pm_.c:248
+msgid "Serbian (cyrillic)"
+msgstr "Serbiek (reizhadur latin)"
-#: ../../services.pm:1
-#, 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."
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
msgstr ""
-"Ar c'hartenner porzhioù a vera kevreadennoù RPC, a zo implijet gant\n"
-"komenadoù evel NFS ha NIS. Ar servijer kartenn-porzhioù a rankfe mont en-"
-"dro\n"
-"war ardivinkoù anezho servijerien komenadoù a implij ar reizhiad RPC."
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Detected hardware"
-msgstr "Gwelet titouroù periantel"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr "Maouritani"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
msgstr ""
-#: ../../fs.pm:1
-#, fuzzy, c-format
-msgid "Enabling swap partition %s"
-msgstr "O furmadiñ ar parzhadur %s"
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr "Stokellaoueg Thai"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
+#: ../../keyboard.pm_.c:254
+#, fuzzy
+msgid "Tajik keyboard"
+msgstr "Stokellaoueg Thai"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr "Armeniek (kozh)"
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Turkek (hengounel doare \"F\")"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Turkek (arnevez doare \"Q\")"
-#: ../../share/advertising/12-mdkexpert.pl:1
-#, c-format
-msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
-msgstr ""
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr "Ukrainiek"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ""
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "Stokellaoueg SUA (etrevroadel)"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Monaco"
-msgstr "Skramm"
+#: ../../keyboard.pm_.c:262
+#, fuzzy
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Lituaniek QUERTY \"linenn sifroù\""
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "Partitioning failed: %s"
-msgstr "Seurt taolenn barzhañ : %s\n"
+#: ../../keyboard.pm_.c:263
+msgid "Yugoslavian (latin)"
+msgstr "Yougoslaviek (latin)"
-#: ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "furmadiñ er seurt %s eus %s a zo sac'het"
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
+msgstr ""
-#: ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "Canada (cable)"
-msgstr "Kanadian (Kebek)"
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Upgrade"
-msgstr "Bremanaat"
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
+msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Workstation"
-msgstr "Titouroù"
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-"O staliañ ar pakad %s\n"
-"%d%%"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "With basic documentation"
-msgstr "Teuliadur"
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr "Anacron, ur steuñvaer urzhiadoù mareadek."
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr ""
-#: ../../install_interactive.pm:1
-#, 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 `/'"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
msgstr ""
-"Ret eo deoc'h kaout ur parzhadur gwrizienn.\n"
-"Evit se, krouit ur parzhadur (pe glikit war unan a zo c'hoazh).\n"
-"Da c'houde dibabit an ober ``Poent marc'hañ'' ha lakait anezhañ da `/'"
-#: ../../network/network.pm:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid "Proxy should be http://..."
-msgstr "http://... a zlefe bezañ ar proksi"
+msgid "Circular mounts %s\n"
+msgstr "Marc'hañ kelc'hiek %s\n"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
+#: ../../modules.pm_.c:290
+msgid ""
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Krouiñ ur bladennig loc'hañ"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Modify printer configuration"
-msgstr "Kefluniañ ar modem"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
-msgstr "Dibabit un parzhadur"
+#: ../../modules/parameters.pm_.c:18
+#, fuzzy
+msgid "modinfo is not available"
+msgstr "Lenner pladennig hegerz ebet"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Edit current rule"
-msgstr ""
+#: ../../modules/parameters.pm_.c:50
+#, fuzzy
+msgid "a number"
+msgstr "Niverenn bellgomz"
-#: ../../standalone/drakbackup:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "%s"
+msgid "%d comma separated numbers"
msgstr ""
-#: ../../security/help.pm:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Enable/Disable the logging of IPv4 strange packets."
+msgid "%d comma separated strings"
msgstr ""
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Please test the mouse"
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: ../../fs.pm:1
-#, 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)."
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Other Media"
-msgstr "All"
+#: ../../modules/parameters.pm_.c:54
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Furmadiñ parzhadurioù"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup system files"
-msgstr "Restr gwareziñ siek"
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Logodenn Sun"
-#: ../../mouse.pm:1
-#, c-format
+#: ../../mouse.pm_.c:32
msgid "Logitech MouseMan+"
msgstr "Logitech MouseMan+"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Sector"
-msgstr "Rann"
+#: ../../mouse.pm_.c:33
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Logodenn rummel PS2 rodellek"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Qatar"
-msgstr "Meuziad Lañsañ"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "LDAP Base dn"
-msgstr ""
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Logodenn Kensington Thinking"
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "N'hellit ket andiuz ar pakad-mañ. Staliet eo endo"
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "generate auto-install floppy"
-msgstr "O krouiñ ur bladennig staliañ emgefreek"
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Dialing mode"
-msgstr "Anv domani"
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr ""
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
+msgstr "1 nozelenn"
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "Skarañ /tmp bep ma loc'her"
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "Logodenn rummel 2 nozelenn"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malawi"
-msgstr ""
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "Rodel"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "local config: false"
-msgstr "Restroù lec'hel"
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "a-steud"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Dibabit seurt ho logodenn, mar plij."
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "Logodenn rummel 3 nozelenn"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "class of hardware device"
-msgstr ""
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "Rouantelezh Unanet"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "running"
-msgstr "Ho evezh"
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Logitech doare CC"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "default"
-msgstr "dre ziouer"
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../lang.pm:1
-#, c-format
-msgid "Indonesia"
-msgstr "Indonezi"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "Doare MM"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "France [SECAM]"
-msgstr "Gall [SECAM]"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "strishaat"
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logodenn Logitech (a-steud, seurt C7 kozh)"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "must have"
-msgstr "a rankfec'h kaout"
+#: ../../mouse.pm_.c:68
+msgid "busmouse"
+msgstr "Logodenn bus"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "2 nozelenn"
-#: ../../lang.pm:1
-#, c-format
-msgid "Senegal"
-msgstr "Senegal"
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "3 nozelenn"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Command line"
-msgstr "Anv ar domani"
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "ebet"
-#: ../../share/advertising/08-store.pl:1
-#, 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:"
-msgstr ""
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "Logodenn ebet"
-#: ../../any.pm:1
-#, c-format
-msgid "access to administrative files"
-msgstr ""
+#: ../../mouse.pm_.c:490
+#, fuzzy
+msgid "Please test the mouse"
+msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
-msgstr ""
+#: ../../mouse.pm_.c:491
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Do not allow set-user-identifier or set-group-identifier\n"
-"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
-"have suidperl(1) installed.)"
-msgstr ""
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr "FIÑV HO RODELL !"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Arguments: (val)\n"
-"\n"
-"Set the shell timeout. A value of zero means no timeout."
-msgstr ""
+#: ../../my_gtk.pm_.c:65
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Montserrat"
-msgstr "Porzh al logodenn"
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
+msgstr "Disoc'h"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr ""
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
+msgstr "A heul ->"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "Disloañ"
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "Ha reizh eo ?"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connecting to the Internet "
-msgstr "Anv ar gevreadenn"
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "Titouroù"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Other"
-msgstr "Adaozañ adalek ar restr"
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
+msgstr "Astenn ar wezenn"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "Kartenn pellwel"
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
+msgstr "Plegañ ar wezenn"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr "Gwintañ etre kompez ha rummet dre strollad"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "implijit pppoe"
+
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
+msgstr "implijit pptp"
+
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
+msgstr "implijit dhcp"
+
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Arguments: (umask)\n"
-"\n"
-"Set the root umask."
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remove selected host/network"
-msgstr "Lemel ar steudad"
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+#, fuzzy
+msgid "Connect to the Internet"
+msgstr "Anv ar gevreadenn"
-#: ../../services.pm:1
-#, fuzzy, c-format
+#: ../../network/adsl.pm_.c:30
msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-"Ur Gwazour Treuzdougen Postel eo Postfix, a zo ar goulev a\n"
-"zilech posteloù etre un ardivink hag un all."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from the Internet failed."
+#: ../../network/adsl.pm_.c:166
+msgid ""
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "Serbiek (reizhadur latin)"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Servijer"
-#: ../../keyboard.pm:1
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Anv ar domani"
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Network Hotplugging"
-msgstr "Kefluniadur ar rouedad"
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Stlennvonioù"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr ""
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "Servijer LDAP"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore From CD"
-msgstr "Assevel adalek ar pladennig"
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "kartenn rouedad kavet ebet"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:129
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"
+"drakfirewall configurator\n"
"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-#: ../../network/ethernet.pm:1
-#, fuzzy, c-format
+#: ../../network/drakfirewall.pm_.c:135
msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outañ, mar plij."
+"drakfirewall configurator\n"
+"\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
msgstr ""
-#: ../../share/advertising/09-mdksecure.pl:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:153
msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Lugerezh ar voullerez"
-
-#: ../../security/help.pm:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latin American"
-msgstr "Amerikan Latin"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Japanese text printing mode"
-msgstr "Kefluniañ ur rouedad"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Old device file"
-msgstr "Diuzit ar restr"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "Titouroù: "
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Nozel `%s': %s"
-
-#: ../../any.pm:1 ../../harddrake/sound.pm:1 ../../interactive.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakxtv:1
-#: ../../standalone/harddrake2:1 ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Gortozit mar plij"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "None"
-msgstr "Graet"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Ha reizh eo ?"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
msgstr ""
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "Titouroù"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "Staliañ"
+#: ../../network/drakfirewall.pm_.c:169
+#, fuzzy
+msgid "Other ports"
+msgstr "Amprouiñ ar porzhioù"
-#: ../../help.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:37
+#, fuzzy
msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "Dilezel ar staliadur"
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
+msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/ethernet.pm_.c:88
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)."
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Remote CUPS server"
-msgstr "Steud a-bell"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Logodenn Sun"
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+#, fuzzy
+msgid "Choose the network interface"
+msgstr "Dibabit ar ment nevez"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/ethernet.pm_.c:93
+#, fuzzy
msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Minimal install"
-msgstr "Distaliañ"
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outañ, mar plij."
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "Etiopi"
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "kartenn rouedad kavet ebet"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr ""
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "Kefluniañ ar rouedad"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/ethernet.pm_.c:201
+#, fuzzy
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"
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
+"Roit ho anv ostiz mar plij.\n"
+"Un anv peurzoareet a zlefe bezañ hini o ostiz,\n"
+"evel ``mabenveg.mastal.makomp.com''.\n"
+"Gallout a rit ivez reiñ chomlec'h IP an dreuzell m'hoc'h eus unan"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Ment hollek : %d / %d Mo"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "disabled"
-msgstr "Taolenn"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Search for new scanners"
-msgstr "Pakadoù hegerz"
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Disabling servers..."
-msgstr "O tinoiñ trobarzhelloù..."
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "Anv an ostiz"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+#, fuzzy
+msgid "Network Configuration Wizard"
+msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Staliadur %s a zo sac'het. Degouezhet eo ar fazi a heul :"
+#: ../../network/isdn.pm_.c:22
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "Mailh"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+#: ../../network/isdn.pm_.c:22
+msgid "Internal ISDN card"
msgstr ""
-#: ../../install_any.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
+#, fuzzy
+msgid "What kind is your ISDN connection?"
+msgstr "Ouzh pe borzh a-steud eo luget ho logodenn ?"
+
+#: ../../network/isdn.pm_.c:45
msgid ""
-"You have selected the following server(s): %s\n"
+"Which ISDN configuration do you prefer?\n"
"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\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"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
"\n"
-"Do you really want to install these servers?\n"
+"We recommand the light configuration.\n"
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Dibarzhoù ar voullerez NetWare"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup User files..."
-msgstr "Restr gwareziñ siek"
+#: ../../network/isdn.pm_.c:54
+#, fuzzy
+msgid "New configuration (isdn-light)"
+msgstr "o lenn ar c'hefluniadur"
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "Staliañ ar reizhiad"
+#: ../../network/isdn.pm_.c:54
+#, fuzzy
+msgid "Old configuration (isdn4net)"
+msgstr "o lenn ar c'hefluniadur"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Servijer DNS kentañ (da zilenn)"
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "Kefluniadur ISDN"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:166
msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "Russian (soniadel)"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "dhcpd Config..."
-msgstr "Kefluniañ IDE"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The setup has already been done, but it's currently disabled."
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "Staliadur LILO/grub"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "Israelian"
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "load setting"
-msgstr "O furmadiñ"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "O tizenaouiñ ar rouedad"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol (EDSS1)"
msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Truly minimal install"
-msgstr "Distaliañ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "Danmark"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "O tilec'hiañ ur parzhadur..."
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "(This) DHCP Server IP"
-msgstr "IP ar servijer SMB"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Test of the configuration"
+#: ../../network/isdn.pm_.c:181
+#, fuzzy
+msgid "Protocol for the rest of the world"
msgstr "Amprouiñ ar c'hefluniadur"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Installing %s ..."
-msgstr "O staliañ pakadoù..."
-
-#: ../../help.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:181
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."
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr ""
+#: ../../network/isdn.pm_.c:185
+#, fuzzy
+msgid "Which protocol do you want to use?"
+msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../standalone/drakbackup:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid ""
-"Please choose your CD/DVD device\n"
-"(Press Enter to propogate settings to other fields.\n"
-"This field isn't necessary, only a tool to fill in the form.)"
+msgid "Found \"%s\" interface do you want to use it ?"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Andorra"
-msgstr "Dizober"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr ""
+#: ../../network/isdn.pm_.c:203
+#, fuzzy
+msgid "What kind of card do you have?"
+msgstr "Peseurt moullerez hoc'h eus ?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
msgstr ""
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "(default value: %s)"
-msgstr "? (%s dre ziouer)"
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr ""
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/isdn.pm_.c:210
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"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, fuzzy, c-format
-msgid "Choose an X server"
-msgstr "Dibabit ur servijer X"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Ment ar parzhadur disloañ e Mo : "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Other (not drakbackup)\n"
-"keys in place already"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "No changes to backup!"
-msgstr "Restr gwareziñ siek"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "Furmadet\n"
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "Dilaoskel"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Type of install"
-msgstr "Dibabit pakadoù da staliañ"
+#: ../../network/isdn.pm_.c:214
+#, fuzzy
+msgid "Continue"
+msgstr "Kenderc'hel evelato ?"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/Windows 95/98/NT"
+#: ../../network/isdn.pm_.c:220
+#, fuzzy
+msgid "Which is your ISDN card?"
+msgstr "Pehini eo ho takad-eur ?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/isdn.pm_.c:239
msgid ""
-"\n"
-"- Daemon (%s) include:\n"
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Ar c'homenad rusers a ro tu da implijerien ur rouedad da anavezout piv\n"
-"a zo kevreet ouzh ardivinkoù all a respont."
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Kefluniadur goude staliañ"
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "Dibarzhoù sifrennañ"
-#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
-msgstr ""
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr "Anv ar gevreadenn"
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr ""
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+#, fuzzy
+msgid "Phone number"
+msgstr "Niverenn bellgomz"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please select data to backup..."
-msgstr "Diuzit ar yezh da implijout, mar plij."
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "Anv ereañ"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
-msgstr ""
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr "CHAP"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
-msgstr ""
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "/File/_New"
-msgstr "Restroù :\n"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "Diazezet war ur skrid"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "The DNS Server IP"
-msgstr "IP ar servijer SMB"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "Diazezet war un dermenell"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range End:"
-msgstr ""
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "Anv ar domani"
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
-msgstr "Uhel"
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+msgid "First DNS Server (optional)"
+msgstr "Servijer DNS kentañ (da zilenn)"
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr "N'ev ket video"
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+msgid "Second DNS Server (optional)"
+msgstr "Eil servijer DNS (da zilenn)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
+#: ../../network/modem.pm_.c:95
+msgid ""
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../network/modem.pm_.c:97
#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgid ""
+"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printers"
-msgstr "Moullerezioù lec'hel"
-
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Installation image directory"
-msgstr "Kefluniadur"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "Servijer NIS"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Do nothing"
+msgstr "N'ev ket lodañ"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Port: %s"
-msgstr "Paour"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Install rpm"
+msgstr "Staliañ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "Spagn"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Title"
+msgstr "Taolenn"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
+#: ../../network/netconnect.pm_.c:29
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "En implij eo an anv arveriad-se endeo"
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+#, fuzzy
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr "Kefluniañ ur rouedad"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
-msgstr "Dibabit ur restr"
+#: ../../network/netconnect.pm_.c:29
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr ""
+#: ../../network/netconnect.pm_.c:32
+#, fuzzy
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "Anv ar gevreadenn"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Auto-detect available ports"
-msgstr "Dilesadur"
+#: ../../network/netconnect.pm_.c:32
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr ""
+#: ../../network/netconnect.pm_.c:36
+#, fuzzy
+msgid "Connect"
+msgstr "Anv ar gevreadenn"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr ""
+#: ../../network/netconnect.pm_.c:37
+#, fuzzy
+msgid "Disconnect"
+msgstr "Lugerezh ar voullerez"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Belgium"
-msgstr "Beljik"
+#: ../../network/netconnect.pm_.c:38
+#, fuzzy
+msgid "Configure the connection"
+msgstr "Kefluniañ ur rouedad"
-#: ../../lang.pm:1
+#: ../../network/netconnect.pm_.c:41
+#, fuzzy
+msgid "Internet connection & configuration"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../network/netconnect.pm_.c:94
#, fuzzy, c-format
-msgid "Kuwait"
-msgstr "Kuitaat"
+msgid "We are now going to configure the %s connection."
+msgstr "Kefluniañ ur rouedad"
-#: ../../any.pm:1
+#: ../../network/netconnect.pm_.c:103
#, fuzzy, c-format
-msgid "Choose the window manager to run:"
-msgstr "Dibabit ar benveg a vennit staliañ"
+msgid ""
+"\n"
+"\n"
+"\n"
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press OK to continue."
+msgstr "Kefluniañ ur rouedad"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "sub generation of the cpu"
-msgstr ""
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
+#: ../../network/netconnect.pm_.c:133
+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 ""
-#: ../../install_steps.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:157
msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+"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 ""
-"Degouezhet ez eus ur fazi, hogen n'ouzon ket e verañ naet.\n"
-"Kendalc'hit war ho mar."
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Taiwan"
-msgstr "Laosiek"
+#: ../../network/netconnect.pm_.c:163
+#, fuzzy
+msgid "Choose the profile to configure"
+msgstr "Dibabit ar ment nevez"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "please wait, parsing file: %s"
-msgstr "O prientiñ ar staliadur"
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "Pakistan"
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
+msgstr "Mod mailh"
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Importance: "
-msgstr "Talvoudegezh : %s\n"
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
+msgstr "O tinoiñ trobarzhelloù..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
+#: ../../network/netconnect.pm_.c:214
+#, fuzzy
+msgid "Normal modem connection"
+msgstr "Kefluniañ ur rouedad"
-#: ../../standalone/drakperm:1
+#: ../../network/netconnect.pm_.c:214
#, fuzzy, c-format
-msgid "Permissions"
-msgstr "Stumm : %s\n"
+msgid "detected on port %s"
+msgstr "Poent marc'hañ doubl %s"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr ""
+#: ../../network/netconnect.pm_.c:215
+#, fuzzy
+msgid "Winmodem connection"
+msgstr "Kefluniañ ur rouedad"
-#: ../../install_steps_gtk.pm:1
-#, 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'."
-msgstr ""
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "detected"
+msgstr "kavoutet %s"
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "Implij da saveteiñ"
+#: ../../network/netconnect.pm_.c:216
+#, fuzzy
+msgid "ISDN connection"
+msgstr "Lugerezh ar voullerez"
-#: ../../keyboard.pm:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid "Armenian (typewriter)"
-msgstr "Armeniek (skriverez)"
+msgid "detected %s"
+msgstr "kavoutet %s"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connection type: "
-msgstr "Anv ar gevreadenn"
+#: ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "ADSL connection"
+msgstr "Lugerezh ar voullerez"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Graphical interface"
-msgstr "X pa loc'her"
+#: ../../network/netconnect.pm_.c:218
+#, fuzzy
+msgid "Cable connection"
+msgstr "Lugerezh ar voullerez"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "Tchad"
+#: ../../network/netconnect.pm_.c:218
+#, fuzzy
+msgid "cable connection detected"
+msgstr "Lugerezh ar voullerez"
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s gant 3D"
+#: ../../network/netconnect.pm_.c:219
+#, fuzzy
+msgid "LAN connection"
+msgstr "Lugerezh ar voullerez"
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "Indez"
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
+msgstr "kartenn(où) ethernet kavoutet"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr "Slovaki"
+#: ../../network/netconnect.pm_.c:222
+#, fuzzy
+msgid "Choose the connection you want to configure"
+msgstr "Dibabit ar benveg a vennit staliañ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
+#: ../../network/netconnect.pm_.c:246
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "Kambodj"
+#: ../../network/netconnect.pm_.c:247
+#, fuzzy
+msgid "Internet connection"
+msgstr "Lugerezh ar voullerez"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "KempredA-led ar skramm : %s\n"
+#: ../../network/netconnect.pm_.c:253
+#, fuzzy
+msgid "Do you want to start the connection at boot?"
+msgstr "Mennout a rit implijout aboot ?"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr ""
+#: ../../network/netconnect.pm_.c:267
+#, fuzzy
+msgid "Network configuration"
+msgstr "Kefluniadur ar rouedad"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:272
+#, fuzzy, c-format
msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
+"A problem occured while restarting the network: \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"
+"%s"
+msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
+
+#: ../../network/netconnect.pm_.c:282
+msgid ""
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../network/netconnect.pm_.c:286
msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Add host"
-msgstr "Ouzhpennañ un arveriad"
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
+msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:287
msgid ""
-"If you really think that you know which driver is the right one for your "
-"card\n"
-"you can pick one in the above list.\n"
-"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+"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 ""
-#: ../../any.pm:1
-#, c-format
+#: ../../network/network.pm_.c:278
msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
+"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_interactive.pm:1
-#, c-format
+#: ../../network/network.pm_.c:283
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
msgstr ""
+"Skrivit ar c'hefluniadur IP evit ar benveg-mañ mar plij.\n"
+"Pep mellad a zlefe bezañ skrivet evel ur chomlec'h IP e stumm\n"
+"sifroù dekvel pikoù etrezo (da skouer 1.2.3.4)."
-#: ../../standalone/drakxtv:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "China (broadcast)"
-msgstr ""
+msgid "Configuring network device %s"
+msgstr "O kefluniañ an drobarzhell rouedad %s"
-#: ../../standalone/drakbackup:1
+#: ../../network/network.pm_.c:294
#, fuzzy, c-format
-msgid "Use quota for backup files."
-msgstr "Restr gwareziñ siek"
+msgid " (driver %s)"
+msgstr "Servijer XFree86 : %s\n"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Kefluniañ ar voullerez"
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "Chomlec'h IP"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
-"containing binaries for architectures other than its own."
-msgstr ""
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr "Maskl rouedad"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Internet connection"
-msgstr "Lugerezh ar voullerez"
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Kargañ ar mollad %s a zo sac'het.\n"
-"Mennout a rit klask adarre gant arventennoù all ?"
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "IP emgefreek"
-#: ../../share/advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr ""
+#: ../../network/network.pm_.c:299
+#, fuzzy
+msgid "Start at boot"
+msgstr "Krouiñ ur bladennig loc'hañ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr ""
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
+msgstr "Er furmad 1.2.3.4 e tlefe bezañ ar chomlec'h IP"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/network.pm_.c:326
msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "Izelvroioù"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Sending files by FTP"
-msgstr "Enrollañ er restr"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Internal ISDN card"
+#: ../../network/network.pm_.c:330
+msgid ""
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/network.pm_.c:350
msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
+"Please enter your host name.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''.\n"
+"You may also enter the IP address of the gateway if you have one"
msgstr ""
+"Roit ho anv ostiz mar plij.\n"
+"Un anv peurzoareet a zlefe bezañ hini o ostiz,\n"
+"evel ``mabenveg.mastal.makomp.com''.\n"
+"Gallout a rit ivez reiñ chomlec'h IP an dreuzell m'hoc'h eus unan"
-#: ../../network/modem.pm:1
-#, fuzzy, c-format
-msgid "Title"
-msgstr "Taolenn"
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "Servijer DNS"
-#: ../../standalone/drakfont:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "Install & convert Fonts"
+msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
-msgstr ""
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "Trobarzhell an dreuzell"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
-msgstr "Staliañ ar c'harger loc'hañ"
+#: ../../network/network.pm_.c:363
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "Er furmad 1.2.3.4 e tlefe bezañ ar chomlec'h IP"
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "replay"
-msgstr "Adkargañ"
+#: ../../network/network.pm_.c:367
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Er furmad 1.2.3.4 e tlefe bezañ ar chomlec'h IP"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
-msgstr "kavoutet %s"
+#: ../../network/network.pm_.c:381
+#, fuzzy
+msgid "Proxies configuration"
+msgstr "Kefluniadur goude staliañ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr "Iniz Gwerc'hez"
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "Proksi HTTP"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "Restr gwareziñ siek"
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "Proksi FTP"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
+msgstr "http://... a zlefe bezañ ar proksi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Pipe into command"
-msgstr ""
+#: ../../network/network.pm_.c:388
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "http://... a zlefe bezañ ar proksi"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../network/shorewall.pm_.c:26
+#, fuzzy
+msgid "Firewalling configuration detected!"
+msgstr "o lenn ar c'hefluniadur"
+
+#: ../../network/shorewall.pm_.c:27
msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "O tinoiñ trobarzhelloù..."
+#: ../../network/tools.pm_.c:57
+#, fuzzy
+msgid "Internet configuration"
+msgstr "Kefluniañ ar proksioù"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Click here to launch the wizard ->"
-msgstr ""
+#: ../../network/tools.pm_.c:58
+#, fuzzy
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "Kefluniañ ur rouedad"
+
+#: ../../network/tools.pm_.c:70
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
+
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/tools.pm_.c:72
+#, fuzzy
msgid ""
-"Description of the fields:\n"
-"\n"
-msgstr ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "Anv ar gevreadenn"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
-msgstr ""
+#: ../../network/tools.pm_.c:96
+#, fuzzy
+msgid "Connection Configuration"
+msgstr "Kefluniañ ar proksioù"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
msgstr ""
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr ""
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr "IRQ kartenn"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "Bezit war evezh : arvarus eo an obererezh-mañ."
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "Memor kartenn (DMA)"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "Lakait ur bladennig el lenner %s"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "IO kartenn"
-#: ../../diskdrake/dav.pm:1
-#, fuzzy, c-format
-msgid "Server: "
-msgstr "Servijer"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "IO_0 kartenn"
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Security Alerts:"
-msgstr "Live surentez"
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "IO_1 kartenn"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
-msgstr "Sued"
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "Pologn"
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+#, fuzzy
+msgid "Provider phone number"
+msgstr "Niverenn bellgomz"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please check if you want to eject your tape after the backup."
-msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+msgid "Provider dns 1 (optional)"
+msgstr "Dibarzhoù ar voullerez (da zilenn)"
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Other ports"
-msgstr "Amprouiñ ar porzhioù"
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+msgid "Provider dns 2 (optional)"
+msgstr "Dibarzhoù ar voullerez (da zilenn)"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
+#: ../../network/tools.pm_.c:109
+#, fuzzy
+msgid "Choose your country"
+msgstr "Dibabit ho stokellaoueg"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr ""
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+#, fuzzy
+msgid "Dialing mode"
+msgstr "Anv domani"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+#, fuzzy
+msgid "Connection speed"
+msgstr "Anv ar gevreadenn"
+
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Anv ar gevreadenn"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+#, fuzzy
+msgid "Account Login (user name)"
+msgstr "Poent marc'hañ"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Croatian"
-msgstr "Kroatek"
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+#, fuzzy
+msgid "Account Password"
+msgstr "Tremenger"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Use existing partition"
-msgstr "O furmadiñ parzhadurioù"
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Unable to contact mirror %s"
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
+msgstr "marc'hañ sac'het : "
+
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
+#: ../../partition_table.pm_.c:685
+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 ""
+"Un toull a zo en ho taolenn barzhañ hogen n'hellan ket e implijout.\n"
+"Fiñval ar parzhadurioù kentañ derez evit ma vo an toull stok ouzh ar "
+"parzhadurioù astennet eo an diskoulm"
-#: ../../standalone/drakbackup:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "Remove user directories before restore."
-msgstr ""
+msgid "Restoring from file %s failed: %s"
+msgstr "Assevel adalek ar restr %s sac'het %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
+msgstr "Restr gwareziñ siek"
+
+#: ../../partition_table.pm_.c:796
#, c-format
+msgid "Error writing to file %s"
+msgstr "Fazi en ur skrivañ er restr %s"
+
+#: ../../partition_table/raw.pm_.c:192
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?"
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "CUPS printer configuration"
-msgstr "Kefluniañ ar modem"
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr "a rankfec'h kaout"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr ""
+#: ../../pkgs.pm_.c:27
+msgid "important"
+msgstr "a-bouez"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
-msgstr ""
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr "brav-tre"
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr "brav"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Domain Name:"
-msgstr "Anv ar domani"
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr "marteze"
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "On Floppy"
-msgstr "Enrollañ war bladennig"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore"
-msgstr "Adaozañ adalek ar restr"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
+msgstr "PDQ"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "O klask ar pakadoù hegerz"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
+msgstr "LPD"
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../help.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "Taolenn barzhañ saveteerezh"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
+msgstr "LPRng"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connection complete."
-msgstr "Anv ar gevreadenn"
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
+msgstr "CUPS"
+
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+msgid "Unknown Model"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "Lemel diwar RAID"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "Moullerez lec'hel"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutañ)"
+#: ../../printer/main.pm_.c:27
+#, fuzzy
+msgid "Remote printer"
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Configuration Wizards"
-msgstr "Kefluniadur ar rouedad"
+#: ../../printer/main.pm_.c:28
+#, fuzzy
+msgid "Printer on remote CUPS server"
+msgstr "Steud a-bell"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "ISDN connection"
-msgstr "Lugerezh ar voullerez"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+#, fuzzy
+msgid "Printer on remote lpd server"
+msgstr "lpd a-bell"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
-msgstr ""
+#: ../../printer/main.pm_.c:30
+#, fuzzy
+msgid "Network printer (TCP/Socket)"
+msgstr "Dibarzhoù ar voullerez NetWare"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
+#: ../../printer/main.pm_.c:31
+#, fuzzy
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "SMB/Windows 95/98/NT"
+
+#: ../../printer/main.pm_.c:32
+#, fuzzy
+msgid "Printer on NetWare server"
+msgstr "Servijer moullañ"
+
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+#, fuzzy
+msgid "Enter a printer device URI"
+msgstr "Trobarzhell ar voullerez"
+
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
msgstr ""
-#: ../../help.pm:1
-#, fuzzy, 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"
-"!!"
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
msgstr ""
-"Bremañ e c'hellit diuz pe servijoù a vennit e vije lañset pa loc'her.\n"
-"Pa zeu ho logodenn war un draez, ul lagadenn skoazell a zeuio war wel hag\n"
-"a zisplego pal ar servij-se.\n"
-"\n"
-"Bezit aketuz-kenañ el lankad-mañ ma vennit implijout ho ardivink evel ur\n"
-"servijer : mennout a rit emichañs chom hep loc'hañ kement servij n'ho peus "
-"ket\n"
-"c'hoant."
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "Tremen e-biou"
+#: ../../printer/main.pm_.c:317
+msgid "Local Printers"
+msgstr "Moullerezioù lec'hel"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Niue"
-msgstr "frondenn"
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+msgid "Remote Printers"
+msgstr "Moullerezio* a-bell"
-#: ../../services.pm:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
+msgid " on parallel port \\/*%s"
msgstr ""
-"Oberia/Dizoberia an holl etrefasoù rouedad kefluniet da lañsañ\n"
-"da vare al loc'hañ."
-#: ../../standalone/harddrake2:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr ""
+msgid ", USB printer \\/*%s"
+msgstr ", Mouluriez USB \\/*%s"
-#: ../../pkgs.pm:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid "important"
-msgstr "a-bouez"
+msgid ", multi-function device on parallel port \\/*%s"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "Arveriadioù"
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/main.pm_.c:344
#, fuzzy, c-format
-msgid "Aruba"
-msgstr "Grub"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "O prientiñ ar c'harger loc'hañ"
+msgid ", printing to %s"
+msgstr "Fazi en ur skrivañ er restr %s"
-#: ../../network/network.pm:1
+#: ../../printer/main.pm_.c:346
#, c-format
-msgid "Gateway (e.g. %s)"
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
-msgstr "An tremegerioù ne glot ket"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:348
#, c-format
-msgid "Examples for correct IPs:\n"
+msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid "Frequency (MHz)"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../install_any.pm:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid "the number of the processor"
+msgid ", using command %s"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Ha war GMT eo lakaet ho eurier periantel ?"
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
+msgstr ""
-#: ../../network/isdn.pm:1
+#: ../../printer/main.pm_.c:647
#, fuzzy, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
+msgid "(on %s)"
+msgstr "(mollad %s)"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Give a file name"
-msgstr "Anv gwirion"
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:674
#, fuzzy, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
+msgid "On CUPS server \"%s\""
+msgstr "IP ar servijer SMB"
-#: ../../standalone/livedrake:1
-#, fuzzy, c-format
-msgid "Change Cd-Rom"
-msgstr "Kemmañ ar spister"
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
+msgstr " (Dre ziouer)"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "Pe seurt enmont a vennit ouzhpennañ"
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
+msgstr "Diuzit lugerezh ar voullerez"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "Paraguay"
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
+msgstr "Penaos eo luget ar voullerez ?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
+#: ../../printer/printerdrake.pm_.c:30
+msgid ""
+"\n"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "force"
-msgstr "Dilec'hiañ"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+#, fuzzy
+msgid "CUPS configuration"
+msgstr "Kefluniadur"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Exit"
-msgstr "Kuitaat"
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+#, fuzzy
+msgid "Specify CUPS server"
+msgstr "Steud a-bell"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:83
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:84
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"\n"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "Estoniek"
+#: ../../printer/printerdrake.pm_.c:88
+#, fuzzy
+msgid "The IP address should look like 192.168.1.20"
+msgstr "Er furmad 1.2.3.4 e tlefe bezañ ar chomlec'h IP"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
msgstr ""
-"Ur servijer evit ar Gwiad Bedel eo Apache. Implijet e vez evit servijañ\n"
-"restroù HTML ha CGI."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Clients"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:99
+#, fuzzy
+msgid "CUPS server IP"
+msgstr "IP ar servijer SMB"
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Choose the network interface"
-msgstr "Dibabit ar ment nevez"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "Port"
+msgstr "Paour"
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown Model"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:102
+#, fuzzy
+msgid "Automatic CUPS configuration"
+msgstr "Kefluniadur goude staliañ"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:159
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+#, fuzzy
+msgid "Printerdrake"
+msgstr "Moullerez"
+
+#: ../../printer/printerdrake.pm_.c:167
msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
+"There are no printers found which are directly connected to your machine"
msgstr ""
-"Parzhadur loc'het dre ziouer\n"
-" (evit loc'hañ MS-DOS, ket evit lilo)\n"
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "choose image"
-msgstr "Dibabit ur restr"
-
-#: ../../network/shorewall.pm:1
-#, fuzzy, c-format
-msgid "Firewalling configuration detected!"
-msgstr "o lenn ar c'hefluniadur"
+#: ../../printer/printerdrake.pm_.c:179
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Ar pakadoù a-heul a zo war-nes bezañ staliet/lamet"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "Anv ar gevreadenn"
+#: ../../printer/printerdrake.pm_.c:180
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Ar pakadoù a-heul a zo war-nes bezañ staliet/lamet"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:182
msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+"\n"
+"and one unknown printer are "
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Updating package selection"
-msgstr "Diuz pakadoù unan hag unan"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "Pelec'h e mennit marc'hañ ar restr saveteiñ %s ?"
-
-#: ../../standalone/drakautoinst:1
+#: ../../printer/printerdrake.pm_.c:184
#, c-format
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"\n"
+"and %d unknown printers are "
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "the number of buttons the mouse has"
-msgstr "2 nozelenn"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:187
msgid ""
-"Please enter the directory (or module) to\n"
-" put the backup on this host."
+"\n"
+"are "
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Replay"
-msgstr "Adkargañ"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup other files"
-msgstr "Restr gwareziñ siek"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"is "
+msgstr ""
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "Lenner pladennig hegerz ebet"
+#: ../../printer/printerdrake.pm_.c:189
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
+#: ../../printer/printerdrake.pm_.c:192
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: ../../printer/printerdrake.pm_.c:194
#, c-format
-msgid "TV norm:"
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:200
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 Mo"
+#: ../../printer/printerdrake.pm_.c:214
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "type: thin"
-msgstr "Seurt : "
+#: ../../printer/printerdrake.pm_.c:215
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Ha mennout a rit amprouiñ moullañ skrid ?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lituaniek AZERTY (nevez)"
+#: ../../printer/printerdrake.pm_.c:217
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Mennout a rit implijout aboot ?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
msgstr ""
-#: ../../fsedit.pm:1
+#: ../../printer/printerdrake.pm_.c:219
#, 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"
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Previous"
-msgstr "Diaraog"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "Reizhiadoù (MacOS...)"
-
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "To activate the mouse,"
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "O lañsañ ar rouedad"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+#, fuzzy
+msgid "Add a new printer"
+msgstr "Moullerez lec'hel"
-#: ../../common.pm:1
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Gallout a rit dibab yezhoù all hag a vo hegerz goude staliañ"
+#: ../../printer/printerdrake.pm_.c:259
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard allows you to install local or remote printers to be used from "
+"this machine and also from other machines in the network.\n"
+"\n"
+"It asks you for all necessary information to set up the printer and gives "
+"you access to all available printer drivers, driver options, and printer "
+"connection types."
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:272
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"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\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"
-"\"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"
+"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) and you Windows machines must be connected and "
+"turned on.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\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"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
+msgid ""
"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\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"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:289
+msgid ""
"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
+"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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
+#: ../../printer/printerdrake.pm_.c:307
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
+
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "O jediñ bevennoù ar reizhiad restroù FAT"
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:329
msgid ""
"\n"
-"Backup Sources: \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 ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Content of the file"
-msgstr "Anv ar gevreadenn"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Authentication LDAP"
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+#, fuzzy
+msgid "Printer auto-detection"
msgstr "Dilesadur"
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm_.c:385
#, c-format
-msgid "Let me pick any driver"
+msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: ../../printer/printerdrake.pm_.c:387
#, fuzzy, c-format
-msgid "Profile "
-msgstr "marc'hañ sac'het : "
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
-msgstr ""
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palestine"
-msgstr "Palestin"
+#: ../../printer/printerdrake.pm_.c:391
+#, fuzzy, c-format
+msgid "Detected %s"
+msgstr "Poent marc'hañ doubl %s"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+msgid "Printer on parallel port \\/*%s"
+msgstr ""
-#: ../../modules/parameters.pm:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "%d comma separated strings"
-msgstr ""
+msgid "USB printer \\/*%s"
+msgstr "Moullerez USB \\/*%s"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:399
#, fuzzy, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "stokellaoueg"
+msgid "Network printer \"%s\", port %s"
+msgstr "Dibarzhoù ar voullerez NetWare"
-#: ../../standalone/draksplash:1
+#: ../../printer/printerdrake.pm_.c:401
#, fuzzy, c-format
-msgid "Theme name"
-msgstr "Anv rannet"
-
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/_Skoazell"
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitrary driver"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+msgid "Local Printer"
+msgstr "Moullerez lec'hel"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:526
msgid ""
-"Here you can choose whether the scanners connected to this machine should be "
-"accessable by remote machines and by which remote machines."
-msgstr ""
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the width of the progress bar"
+"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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "Inizi Kook"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "O furmadiñ ar parzhadur %s"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Hostname required"
-msgstr "Anv an ostiz : "
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselect fonts installed"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:530
+#, fuzzy
+msgid "You must enter a device or file name!"
+msgstr "Trobarzhell ar voullerez"
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../any.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../help.pm:1
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#: ../../interactive.pm:1 ../../interactive/http.pm:1
-#: ../../interactive/newt.pm:1 ../../interactive/stdio.pm:1 ../../my_gtk.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakautoinst:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakboot:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#: ../../standalone/drakfont:1 ../../standalone/draksec:1
-#: ../../standalone/net_monitor:1 ../../ugtk.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Cancel"
-msgstr "Nullañ"
+#: ../../printer/printerdrake.pm_.c:539
+#, fuzzy
+msgid "No printer found!"
+msgstr "N'ev ket Moullerez lec'hel!\n"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Searching for configured scanners ..."
+#: ../../printer/printerdrake.pm_.c:548
+#, fuzzy
+msgid "Available printers"
msgstr "Pakadoù hegerz"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Rodel"
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Videocard"
-msgstr "Mod video"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
+#: ../../printer/printerdrake.pm_.c:552
+msgid ""
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Remove Selected"
-msgstr "Lemel ar steudad"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/Autodetect _modems"
-msgstr "Dilesadur"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remove printer"
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
+#: ../../printer/printerdrake.pm_.c:553
+msgid ""
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Last Log"
+#: ../../printer/printerdrake.pm_.c:555
+msgid ""
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
msgstr ""
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:556
msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful:\n"
-"this operation is dangerous. If you have not already done\n"
-"so, you should first exit the installation, run scandisk\n"
-"under Windows (and optionally run defrag), then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-"HO EVEZH !\n"
-"\n"
-"Ezhomm en deus DrakX adventañ ho parzhadur Windows bremañ. Bezit war "
-"evezh :\n"
-"arvarus eo an obererezh-se. Ma n'hoc'h eus ket graet c'hoazh, gwelloc'h e\n"
-"vije deoc'h seveniñ da gentañ scandisk (ha diouzh ret seveniñ defrag) war "
-"ar\n"
-"parzhadur-se, ha gwareziñ ho roadoù. Pa vezit sur, gwaskit \"Mat eo\""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
+#: ../../printer/printerdrake.pm_.c:558
+msgid ""
+"Please choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:559
+#, fuzzy
+msgid "Please choose the port where your printer is connected to."
+msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
+
+#: ../../printer/printerdrake.pm_.c:561
msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../install_steps_gtk.pm:1 ../../mouse.pm:1
-#: ../../services.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Other"
-msgstr "All"
+#: ../../printer/printerdrake.pm_.c:565
+#, fuzzy
+msgid "You must choose/enter a printer/device!"
+msgstr "Trobarzhell ar voullerez"
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Default"
-msgstr "Dre ziouer"
+#: ../../printer/printerdrake.pm_.c:584
+#, fuzzy
+msgid "Manual configuration"
+msgstr "Kefluniañ ar proksioù"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "type1inst building"
+#: ../../printer/printerdrake.pm_.c:634
+#, fuzzy
+msgid ""
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
+"A-benn implijout ur steud moulañ lpd a-bell, ret eo deoc'h\n"
+"pourvezañ anv ostiz ar servijer moullañ hag anv as steud\n"
+"war ar servijer-se ma zlefe bezañ kaset an dleadoù moullañ."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Abiword"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:635
+#, fuzzy
+msgid "Remote host name"
+msgstr "Anv an ostiz a-bell"
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "choose image file"
-msgstr "Dibabit ur restr"
+#: ../../printer/printerdrake.pm_.c:636
+#, fuzzy
+msgid "Remote printer name"
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "X server"
-msgstr "servijer X"
+#: ../../printer/printerdrake.pm_.c:639
+#, fuzzy
+msgid "Remote host name missing!"
+msgstr "Anv an ostiz a-bell"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Domain Admin User Name"
-msgstr "Anv ar domani"
+#: ../../printer/printerdrake.pm_.c:643
+#, fuzzy
+msgid "Remote printer name missing!"
+msgstr "Anv an ostiz a-bell"
-#: ../../standalone/drakxtv:1
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
#, fuzzy, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Ur fazi a zo bet en ur staliañ ar pakadoù :"
+msgid "Detected model: %s %s"
+msgstr "Poent marc'hañ doubl %s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
-msgstr "Stokellaoueg SUA (etrevroadel)"
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Kefluniañ ur rouedad"
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, c-format
-msgid "Saami (swedish/finish)"
+msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
#, fuzzy, c-format
-msgid "Not installed"
-msgstr "Dilezel ar staliadur"
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "O tizenaouiñ ar rouedad"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Alt keys simultaneously"
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "Dibarzhoù moullañ SMB (Windows 9x/NT)"
+
+#: ../../printer/printerdrake.pm_.c:796
+#, fuzzy
+msgid ""
+"To print to a SMB printer, you need to provide the SMB host name (Note! It "
+"may be different from its TCP/IP hostname!) and possibly the IP address of "
+"the print server, as well as the share name for the printer you wish to "
+"access and any applicable user name, password, and workgroup information."
msgstr ""
+"Evit moullañ war ur voullerez SMB eo ret deoc'h pourvezañ\n"
+"anv an ostiz SMB (Ho evezh ! Disheñvel e c'hell bezañ diouzh\n"
+"e anv ostiz TCP/IP !) ha marteze chomlec'h IP ar servijer moullañ,\n"
+"kement hag anv rannet ar voullerez a glaskit tizhout ha ne vern pe\n"
+"ditour a anv arveriad, tremenger ha strollad labour en implij."
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "LAN connection"
-msgstr "Lugerezh ar voullerez"
+#: ../../printer/printerdrake.pm_.c:797
+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 ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/-"
-msgstr "/Restr/-"
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
+msgstr "Anv ar servijer SMB"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Italian"
-msgstr "Italianek"
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr "IP ar servijer SMB"
-#: ../../interactive.pm:1 ../../standalone/draksec:1
-#, c-format
-msgid "Basic"
-msgstr "Diazez"
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr "Anv rannet"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
-msgstr ""
-"\n"
-"Copyright (C) 2002 gant MandrakeSoft\n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "Strollad labour"
-#: ../../lang.pm:1
-#, c-format
-msgid "Honduras"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:806
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Dilesadur"
-#: ../../help.pm:1
-#, c-format
-msgid "pdq"
-msgstr "pdq"
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
+msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO"
-msgstr "IO kartenn"
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
+msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "when checked, owner and group won't be changed"
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:827
#, 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"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
msgstr ""
-#: ../../standalone/drakautoinst:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
+"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 ""
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:840
msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
+"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 ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by FTP.\n"
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
+msgstr "Dibarzhoù ar voullerez NetWare"
+
+#: ../../printer/printerdrake.pm_.c:912
+#, fuzzy
+msgid ""
+"To print on a NetWare printer, you need to provide the NetWare print server "
+"name (Note! it may be different from its TCP/IP hostname!) as well as the "
+"print queue name for the printer you wish to access and any applicable user "
+"name and password."
msgstr ""
+"Evit moullañ war ur voullerez NetWare eo ret deoc'h pourvezañ anv ar\n"
+"servijer moullañ NetWare (Ho evezh ! Disheñvel e c'hell bezañ diouzh e\n"
+"anv ostiz TCP/IP !) kement hag anv ar steud moullañ evit ar voullerez\n"
+"a glaskit tizhout ha ne vern pe anv arveriad ha tremenger en implij."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "You must enter a device or file name!"
-msgstr "Trobarzhell ar voullerez"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr "Servijer moullañ"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/_Quit"
-msgstr "Kuitaat"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
+msgstr "Anv ar steud moullañ"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid ""
-"You need the alcatel microcode.\n"
-"Download it at\n"
-"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Memor c'hrafek : %s ko\n"
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
+msgstr ""
-#: ../../standalone.pm:1
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, 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 ", host \"%s\", port %s"
msgstr ""
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
-msgid "access to compilation tools"
+msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please select data to restore..."
-msgstr "Diuzit ar yezh da implijout, mar plij."
+#: ../../printer/printerdrake.pm_.c:1030
+#, fuzzy
+msgid "TCP/Socket Printer Options"
+msgstr "Dibarzhoù ar voullerez NetWare"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1032
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"
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-"M'emaoc'h e soñj implijout aboot, taolit evezh leuskel un egor dieub (2048 "
-"rann\n"
-"a zo a-walc'h) e deroù ar bladenn"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Standard test page"
-msgstr "Diorren"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create"
-msgstr "Krouiñ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "What"
-msgstr "Petra"
+#: ../../printer/printerdrake.pm_.c:1033
+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 ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Ur fazi a zo bet en ur rummañ pakadoù :"
+#: ../../printer/printerdrake.pm_.c:1037
+#, fuzzy
+msgid "Printer host name or IP missing!"
+msgstr "Dibarzhoù ar voullerez"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "Bulgarek (BDS)"
+#: ../../printer/printerdrake.pm_.c:1059
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Anv ar voullerez"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Disable Server"
-msgstr "Stlennvonioù"
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+#, fuzzy
+msgid "Printer Device URI"
+msgstr "Trobarzhell ar voullerez"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Filesystem encryption key"
-msgstr "Seurt ar reizhiad restroù : "
+#: ../../printer/printerdrake.pm_.c:1108
+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 ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1463
msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
+"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 ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Save theme"
-msgstr "Staliañ ar reizhiad"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "group"
-msgstr "Strollad labour"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "Brazil"
-
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Auto Install"
-msgstr "Staliañ"
-
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Network Configuration Wizard"
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../diskdrake/interactive.pm:1 ../../help.pm:1
-#, fuzzy, c-format
-msgid "Removable media automounting"
-msgstr "Emvarc'hañ ar skoroù lem/laka"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr "Anv ar moullerez"
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "Printing"
-msgstr "Moullerez"
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+#, fuzzy
+msgid "Description"
+msgstr "Spisait dibarzhoù"
-#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
-msgid "Unknown driver"
-msgstr "Sturier X"
+#: ../../printer/printerdrake.pm_.c:1466
+#, fuzzy
+msgid "Location"
+msgstr "Titouroù"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"There are no printers found which are directly connected to your machine"
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+msgid "Reading printer database..."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "Krouiñ ur parzhadur nevez"
+#: ../../printer/printerdrake.pm_.c:1482
+msgid "Preparing printer database..."
+msgstr ""
-#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
-msgid "Driver:"
-msgstr "Servijer"
+#: ../../printer/printerdrake.pm_.c:1578
+#, fuzzy
+msgid "Your printer model"
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:1579
#, c-format
-msgid "unknown"
+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 ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "Implijit fdisk"
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+#, fuzzy
+msgid "The model is correct"
+msgstr "Ha reizh eo ?"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "FIÑV HO RODELL !"
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+#, fuzzy
+msgid "Select model manually"
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "sent: "
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:1606
+#, fuzzy
+msgid "Printer model selection"
+msgstr "Lugerezh ar voullerez"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "IP emgefreek"
+#: ../../printer/printerdrake.pm_.c:1607
+#, fuzzy
+msgid "Which printer model do you have?"
+msgstr "Peseurt moullerez hoc'h eus ?"
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1608
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:\")"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Logodenn Kensington Thinking"
+#: ../../printer/printerdrake.pm_.c:1611
+msgid ""
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Configuration of a remote printer"
-msgstr "Kefluniañ ar voullerez"
+#: ../../printer/printerdrake.pm_.c:1697
+#, fuzzy
+msgid "OKI winprinter configuration"
+msgstr "Kefluniañ ar modem"
-#: ../../lang.pm:1
-#, c-format
-msgid "Moldova"
+#: ../../printer/printerdrake.pm_.c:1698
+msgid ""
+"You are configuring an OKI laser winprinter. These printers\n"
+"use a very special communication protocol and therefore they work only when "
+"connected to the first parallel port. When your printer is connected to "
+"another port or to a print server box please connect the printer to the "
+"first parallel port before you print a test page. Otherwise the printer will "
+"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please check if you want to erase your tape before the backup."
-msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+#, fuzzy
+msgid "Lexmark inkjet configuration"
+msgstr "Kefluniañ ar proksioù"
-#: ../../share/advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
+#: ../../printer/printerdrake.pm_.c:1719
+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 ""
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "http://... a zlefe bezañ ar proksi"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Oriya"
+#: ../../printer/printerdrake.pm_.c:1746
+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
-#, fuzzy, c-format
-msgid "Add a new rule at the end"
-msgstr "Moullerez lec'hel"
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1750
msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1972
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''"
+"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 ""
-"Bremañ e c'hellit pourvezañ e zibarzhoù d'ar mollad %s.\n"
-"Diouzh ar furmad ``anv=talvoud anv2=talvoud2...'' eo an dibaboù.\n"
-"Da skouer, ``io=0x300 irq=7''"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "Kuitaat hep skrivañ an daolenn barzhañ ?"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-#: ../../standalone.pm:1
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid "Installing packages..."
-msgstr "O staliañ pakadoù..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dutch"
-msgstr "Hollandek"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "Ar pakadoù a-heul a zo war-nes bezañ distaliet"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Angola"
+msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "service setting"
-msgstr "dedennus"
-
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1 ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "Custom"
-msgstr "Personelañ"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr "Restr implijet gant ur saveteiñ all endeo, dibabit unan all"
+msgid "Option %s must be a number!"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:1989
#, c-format
-msgid "Read-only"
+msgid "Option %s out of range!"
msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:2028
#, fuzzy, c-format
-msgid "Latvia"
-msgstr "Laosiek"
-
-#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
-msgid "No known driver"
-msgstr "Sturier X"
+msgid ""
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
+msgstr "Ha mennout a rit amprouiñ moullañ skrid ?"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "1 Mo"
+#: ../../printer/printerdrake.pm_.c:2051
+#, fuzzy
+msgid "Test pages"
+msgstr "Amprouiñ ar porzhioù"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2052
msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
+"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/draksound:1
-#, 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"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2056
+#, fuzzy
+msgid "No test pages"
+msgstr "Ya, moullit an div bajenn arnod"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Configure Local Area Network..."
-msgstr "Kefluniañ ur rouedad"
+#: ../../printer/printerdrake.pm_.c:2057
+#, fuzzy
+msgid "Print"
+msgstr "Moullerez"
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2114
+#, fuzzy
+msgid "Standard test page"
+msgstr "Diorren"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Preparing printer database..."
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Information"
-msgstr "Diskouez titouroù"
+#: ../../printer/printerdrake.pm_.c:2120
+#, fuzzy
+msgid "Alternative test page (A4)"
+msgstr "O voullañ pajenn(où) skrid..."
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "No network card"
-msgstr "kartenn rouedad kavet ebet"
+#: ../../printer/printerdrake.pm_.c:2122
+#, fuzzy
+msgid "Photo test page"
+msgstr "O voullañ pajenn(où) skrid..."
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, fuzzy, c-format
-msgid "Which filesystem do you want?"
-msgstr "Pe seurt parzhadur a vennit ?"
+#: ../../printer/printerdrake.pm_.c:2126
+#, fuzzy
+msgid "Do not print any test page"
+msgstr "O voullañ pajenn(où) skrid..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "3 nozelenn"
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
+msgstr "O voullañ pajenn(où) skrid..."
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2159
#, fuzzy, c-format
-msgid "Detailed information"
-msgstr "Diskouez titouroù"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Malta"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid ""
-"Printer default settings\n"
+"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"
-"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 ""
+"Pajenn(où) arnod zo bet kaset d'an diaoul moullañ.\n"
+"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
+"Stad ar moullañ :\n"
+"%s\n"
+"\n"
+"Ha mont a ra en-dro reizh ?"
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
+#: ../../printer/printerdrake.pm_.c:2163
+#, fuzzy
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
msgstr ""
+"Pajenn(où) arnod zo bet kaset d'an diaoul moullañ.\n"
+"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
+"Ha mont a ra en-dro reizh ?"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "Kefluniañ ar rouedad"
-
-#: ../../Xconfig/main.pm:1
-#, fuzzy, c-format
-msgid "Graphic Card"
-msgstr "Kartenn c'hrafek"
-
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "Resizing Windows partition"
-msgstr "O jediñ bevennoù ar reizhiad restroù FAT"
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
+msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "Dibarzhoù ar voullerez (da zilenn)"
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+#, fuzzy
+msgid "Raw printer"
+msgstr "Moullerez lec'hel"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
-msgid "Cameroon"
-msgstr "Kameroun"
-
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
+"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 ""
-"Gallout a rit bremañ parzhañ ho pladenn galet %s\n"
-"Pa 'z eo graet, na zisoñjit ket enrollañ dre implijout `w'"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Close"
-msgstr "Logodenn USB"
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2218
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."
+"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 ""
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, c-format
-msgid "Calendar"
+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 ""
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
#, c-format
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+"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\n"
+"\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:2228
msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
+"Here is a list of the available printing options for the current printer:\n"
+"\n"
msgstr ""
-"A-benn implijout ur steud moulañ lpd a-bell, ret eo deoc'h\n"
-"pourvezañ anv ostiz ar servijer moullañ hag anv as steud\n"
-"war ar servijer-se ma zlefe bezañ kaset an dleadoù moullañ."
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, c-format
-msgid "Iceland"
-msgstr "Bro ar Skorn"
-
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
msgstr ""
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "stopped"
-msgstr "Ouzhpennañ"
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
+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/harddrake2:1
-#, c-format
-msgid "Whether the FPU has an irq vector"
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
+msgid ""
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:2253
#, c-format
-msgid "Ext2"
-msgstr "Ext2"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
+msgstr ""
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr "Astenn ar wezenn"
+#: ../../printer/printerdrake.pm_.c:2257
+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 ""
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm_.c:2261
#, c-format
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
"\n"
-"It has been reported to oops the kernel on unloading.\n"
-"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+"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 ""
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Expert Mode"
-msgstr "Mod mailh"
+#: ../../printer/printerdrake.pm_.c:2271
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "O tizenaouiñ ar rouedad"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "Dibarzhoù ar voullerez"
+#: ../../printer/printerdrake.pm_.c:2272
+#, fuzzy, c-format
+msgid "Printing/Scanning on \"%s\""
+msgstr "O tizenaouiñ ar rouedad"
-#: ../../standalone/drakgw:1
+#: ../../printer/printerdrake.pm_.c:2274
#, fuzzy, c-format
-msgid "Local Network adress"
-msgstr "kartenn rouedad kavet ebet"
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "O tizenaouiñ ar rouedad"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2275
#, fuzzy, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Restr gwareziñ siek"
+msgid "Printing on the printer \"%s\""
+msgstr "O tizenaouiñ ar rouedad"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+#, fuzzy
+msgid "Close"
+msgstr "Logodenn USB"
+
+#: ../../printer/printerdrake.pm_.c:2281
+#, fuzzy
+msgid "Print option list"
+msgstr "Dibarzhoù ar voullerez"
+
+#: ../../printer/printerdrake.pm_.c:2301
#, 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"
+"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 you want to install the updates ?"
+"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Samba Server"
-msgstr "Servijer NIS"
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2322
msgid ""
-"Arguments: (arg, alert=1)\n"
-"\n"
-"Enable/Disable IP spoofing protection."
+"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 ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+msgid "Reading printer data..."
msgstr ""
-#: ../../install_steps_newt.pm:1
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+#, fuzzy
+msgid "Transfer printer configuration"
+msgstr "Kefluniañ ar proksioù"
+
+#: ../../printer/printerdrake.pm_.c:2365
#, c-format
msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+"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 ""
-" <Tab>/<Alt-Tab> etre elfennoù | <Esaouenn> a ziuz | <F12> skramm a heul "
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet:"
+#: ../../printer/printerdrake.pm_.c:2368
+msgid ""
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Zimbabwe"
-msgstr "marteze"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please enter the host name or IP."
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "When"
-msgstr "Pa"
+#: ../../printer/printerdrake.pm_.c:2370
+msgid ""
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
+msgstr ""
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Eil servijer DNS (da zilenn)"
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Finland"
-msgstr "Finland"
+#: ../../printer/printerdrake.pm_.c:2374
+msgid ""
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2375
msgid ""
-"Arguments: (arg)\n"
"\n"
-"Authorize all services controlled by tcp_wrappers (see hosts.deny(5)) if "
-"\\fIarg\\fP = ALL. Only local ones\n"
-"if \\fIarg\\fP = LOCAL and none if \\fIarg\\fP = NONE. To authorize the "
-"services you need, use /etc/hosts.allow\n"
-"(see hosts.allow(5))."
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Donder liv: %s\n"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "N'hellit ket andiuz ar pakad-mañ. Ret eo dezhañ bezañ bremanaet"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "Assevelañ adalek ar pladennig"
-
-#: ../../standalone/mousedrake:1
-#, fuzzy, c-format
-msgid "Mouse test"
-msgstr "Mouse Systems"
-
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2376
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."
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
msgstr ""
-#: ../../ugtk.pm:1
-#, c-format
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr "Sloveni"
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
msgstr ""
-"Skrivit un arveriad\n"
-"%s"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:2392
#, c-format
msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"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/draksplash:1
-#, fuzzy, c-format
-msgid "ProgressBar color selection"
-msgstr "Lugerezh ar voullerez"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr ""
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
msgstr ""
-"Setu da heul an enmontoù liesseurt.\n"
-"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
+#: ../../printer/printerdrake.pm_.c:2413
+#, fuzzy
+msgid "New printer name"
+msgstr "Moullerez lec'hel"
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
+msgid "Transferring %s..."
+msgstr ""
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:2427
#, 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."
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
msgstr ""
-"Seveniñ an urzhiadoù steuñvaet gant an urzhiad at d'ar pred laket pa 'z eo\n"
-"bet sevenet at, ha seveniñ urzhiadoù dre lod pa 'z eo izel a-walc'h ar garg."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
+#: ../../printer/printerdrake.pm_.c:2437
+msgid "Refreshing printer data..."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Installing SANE packages..."
-msgstr "O staliañ pakadoù..."
-
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "boot disk creation"
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+#, fuzzy
+msgid "Configuration of a remote printer"
+msgstr "Kefluniañ ar voullerez"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "LDAP"
-msgstr "LDAP"
+#: ../../printer/printerdrake.pm_.c:2446
+#, fuzzy
+msgid "Starting network..."
+msgstr "Kefluniañ ur rouedad"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
-msgstr "SILO"
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+#, fuzzy
+msgid "Configure the network now"
+msgstr "Kefluniañ ur rouedad"
-#: ../../diskdrake/removable.pm:1
-#, fuzzy, c-format
-msgid "Change type"
-msgstr "Kemmañ seurt ar parzhadur"
+#: ../../printer/printerdrake.pm_.c:2480
+#, fuzzy
+msgid "Network functionality not configured"
+msgstr "Skramm ket kefluniet"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ", USB printer #%s"
-msgstr ", Mouluriez USB \\/*%s"
+#: ../../printer/printerdrake.pm_.c:2481
+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 ""
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "Staliadur SILO"
+#: ../../printer/printerdrake.pm_.c:2484
+#, fuzzy
+msgid "Go on without configuring the network"
+msgstr "Kefluniañ ar rouedad"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD/DVDROM to backup"
+#: ../../printer/printerdrake.pm_.c:2518
+msgid ""
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2519
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."
+"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 ""
-"Gourc'hemennoù, peurc'hraet eo ar staliadur.\n"
-"Lamit ar bladenn loc'hañ ha gwaskit enkas evit adloc'hañ.\n"
-"\n"
-"\n"
-"Evit titouroù war palastroù hegerz evit stumm-mañ Mandrake Linux,\n"
-"sellit ouzh ar meneger fazioù hegerz e \n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Titouroù war gefluniañ ho reizhiad a zo hegerz e rannbennad Goude\n"
-"Staliañ Sturier ofisiel an Arveriad Mandrake Linux."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:2529
+#, fuzzy
+msgid "Restarting printing system..."
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
+
+#: ../../printer/printerdrake.pm_.c:2568
+#, fuzzy
+msgid "high"
+msgstr "Uhel"
+
+#: ../../printer/printerdrake.pm_.c:2568
+#, fuzzy
msgid "paranoid"
msgstr "Ankeniet"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid "Send mail report after each backup to:"
+msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2570
#, 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"
+"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 ""
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolution"
-msgstr "Spister"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
+#: ../../printer/printerdrake.pm_.c:2604
+msgid "Starting the printing system at boot time"
msgstr ""
-"Evit moullañ war ur voullerez SMB eo ret deoc'h pourvezañ\n"
-"anv an ostiz SMB (Ho evezh ! Disheñvel e c'hell bezañ diouzh\n"
-"e anv ostiz TCP/IP !) ha marteze chomlec'h IP ar servijer moullañ,\n"
-"kement hag anv rannet ar voullerez a glaskit tizhout ha ne vern pe\n"
-"ditour a anv arveriad, tremenger ha strollad labour en implij."
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2605
#, c-format
msgid ""
-"Arguments: (arg)\n"
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\n"
"\n"
-" Accept/Refuse icmp echo."
+"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/drakgw:1
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:2630
#, fuzzy, c-format
-msgid "reconfigure"
-msgstr "Kefluniañ X"
+msgid "Removing %s ..."
+msgstr "Spisterioù"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2636
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "O staliañ pakadoù..."
+
+#: ../../printer/printerdrake.pm_.c:2685
+#, fuzzy
+msgid "Select Printer Spooler"
+msgstr "Diuzit lugerezh ar voullerez"
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm_.c:2686
+#, fuzzy
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Pe seurt parzhadur a vennit ?"
+
+#: ../../printer/printerdrake.pm_.c:2720
#, fuzzy, c-format
-msgid "Xinetd Service"
-msgstr "Servijer moullañ"
+msgid "Configuring printer \"%s\"..."
+msgstr "Kefluniañ ar voullerez"
-#: ../../any.pm:1
-#, c-format
-msgid "access to network tools"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2731
+#, fuzzy
+msgid "Installing Foomatic..."
+msgstr "O staliañ ar pakad %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr "Dibarzhoù ar voullerez"
-#: ../../share/advertising/03-software.pl:1
-#, 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."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2810
+#, fuzzy
+msgid "Preparing Printerdrake..."
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+#, fuzzy
+msgid "Configuring applications..."
+msgstr "Kefluniañ ar voullerez"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"Fazi en ur staliañ aboot,\n"
-"klask rediañ ar staliadur zoken ma tistruj ar parzhadur kentañ ?"
+#: ../../printer/printerdrake.pm_.c:2845
+#, fuzzy
+msgid "Would you like to configure printing?"
+msgstr "Mennout a rit kefluniañ ur voullerez ?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Options Description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %%).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time (about 1000%% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" #> cat .backupignore\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:2915
+#, fuzzy
msgid ""
-"Restore Selected\n"
-"Files"
-msgstr "Lemel ar steudad"
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
+msgstr ""
+"Setu da heul ar steudadoù moullañ.\n"
+"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2916
+#, fuzzy
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."
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; or to view information about "
+"it."
msgstr ""
+"Setu da heul ar steudadoù moullañ.\n"
+"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2960
+#, fuzzy
+msgid "Change the printing system"
+msgstr "Kefluniañ ur rouedad"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "Pladennoù LVM %s\n"
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+#, fuzzy
+msgid "Normal Mode"
+msgstr "Boas"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "The package %s is needed. Install it?"
-msgstr ""
-"Bremanaet e tle bezañ ar pabak-mañ\n"
-"Ha sur oc'h e mennit e ziuzañ ?"
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+#, fuzzy
+msgid "Do you want to configure another printer?"
+msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "On boot"
-msgstr "Gwrizienn"
+#: ../../printer/printerdrake.pm_.c:3211
+#, fuzzy
+msgid "Modify printer configuration"
+msgstr "Kefluniañ ar modem"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:3213
#, fuzzy, c-format
-msgid "Bus identification"
-msgstr "Dilesadur"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vatican"
-msgstr "Vatikan"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please make a backup of your data first"
-msgstr "Gwarezit ho roadoù da gentañ mar plij"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
+msgid ""
+"Printer %s\n"
+"What do you want to modify on this printer?"
+msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot ISO"
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Eritrea"
-msgstr "Mod mailh"
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+#, fuzzy
+msgid "Printer connection type"
+msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Remove List"
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+#, fuzzy
+msgid "Printer name, description, location"
+msgstr "Lugerezh ar voullerez"
-#: ../../share/advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "Marok"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Which printer model do you have?"
-msgstr "Peseurt moullerez hoc'h eus ?"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Add a new printer"
-msgstr "Moullerez lec'hel"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " All of your selected data have been "
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "<-- Delete"
-msgstr "Dilemel"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "chunk size"
-msgstr "ment diaoz"
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+#, fuzzy
+msgid "Print test pages"
+msgstr "O voullañ pajenn(où) skrid..."
-#. -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
-#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "urzhiado— kent loc'ha¤, pe 'c' evit ul linenn-urzhia¤."
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+#, fuzzy
+msgid "Know how to use this printer"
+msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+#, fuzzy
+msgid "Remove printer"
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
+
+#: ../../printer/printerdrake.pm_.c:3282
#, fuzzy, c-format
-msgid "Problems installing package %s"
-msgstr "O staliañ ar pakad %s"
+msgid "Removing old printer \"%s\"..."
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:3307
+#, fuzzy
+msgid "Default printer"
+msgstr "Moullerez lec'hel"
-#: ../../standalone/drakbug:1
+#: ../../printer/printerdrake.pm_.c:3308
#, c-format
-msgid ""
-"\n"
-"\n"
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
-" where you'll find a form to fill in.The information displayed above will "
-"be \n"
-"transferred to that server\n"
-"\n"
+msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../help.pm:1
-#, fuzzy, c-format
-msgid "Reload partition table"
-msgstr "Taolenn barzhañ saveteerezh"
-
-#: ../../standalone/drakboot:1
+#: ../../printer/printerdrake.pm_.c:3312
#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
+msgid ""
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../printer/printerdrake.pm_.c:3313
#, c-format
-msgid "Search for fonts in installed list"
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Boot"
-msgstr "Gwrizienn"
-
-#: ../../harddrake/v4l.pm:1
-#, fuzzy, c-format
-msgid "Tuner type:"
-msgstr "Kemmañ seurt ar parzhadur"
-
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:3317
#, 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"
-"\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 ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../standalone/draksec:1
+#: ../../printer/printerdrake.pm_.c:3325
#, fuzzy, c-format
-msgid "Security Administrator:"
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:3329
#, fuzzy, c-format
-msgid "Please enter your login"
-msgstr "Klaskit adarre mar plij"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
-msgstr ""
+msgid "Removing printer \"%s\"..."
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../standalone/drakconnect:1
+#: ../../raid.pm_.c:35
#, c-format
-msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Fonts copy"
-msgstr "Furmadiñ ar bladennig"
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "N'hellan ket ouzhpennañ ur parzhadur da RAID md%d _furmadet_"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
-msgstr "Emgefreek"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
+msgstr "mkraid sac'het"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid sac'het (raidtools a vank emichañs ?)"
-#: ../../printer/printerdrake.pm:1
+#: ../../raid.pm_.c:153
#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
-msgstr ""
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "Ket a-walc'h a parzhadurioù evit RAID live %d\n"
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../security/main.pm_.c:36
msgid ""
"Standard: This is the standard security recommended for a computer that will "
"be used to connect\n"
@@ -10394,7 +8269,7 @@ msgid ""
"which can accept\n"
" connections from many clients. If your machine is only a "
"client on the Internet, you\n"
-" should choose a lower level.\n"
+"\t should choose a lower level.\n"
"\n"
"Paranoid: This is similar to the previous level, but the system is entirely "
"closed and security\n"
@@ -10403,824 +8278,684 @@ msgid ""
"Security Administrator:\n"
" If the 'Security Alerts' option is set, security alerts will "
"be sent to this user (username or\n"
-" email)"
+"\t email)"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Save packages selection"
-msgstr "Diuz pakadoù unan hag unan"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Live surentez"
-#: ../../standalone/drakautoinst:1
+#: ../../security/main.pm_.c:77
#, fuzzy, c-format
-msgid "Remove the last item"
-msgstr "O furmadiñ ar restr saveteiñ %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
-msgstr ""
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "implijit pptp"
+msgid " (default value: %s)"
+msgstr "? (%s dre ziouer)"
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Dibabit pe servijoù a zlefe bezañ lañset ent emgefreek pa loc'her"
+#: ../../security/main.pm_.c:113
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Live surentez"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Learn how to use this printer"
-msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
+#: ../../security/main.pm_.c:115
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Configure the network now"
-msgstr "Kefluniañ ur rouedad"
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "Network Options"
+msgstr "Dibarzhoù ar mollad :"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Dibabit ur melezour da dapout ar pakadoù diwarnañ"
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "System Options"
+msgstr "Dibarzhoù ar mollad :"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Size: "
-msgstr "Ment: %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "Da beseurt rann e mennit dilec'hiañ ?"
-
-#: ../../interactive/stdio.pm:1
-#, fuzzy, c-format
-msgid "Do you want to click on this button?"
-msgstr "Mennout a rit implijout SILO ?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahamas"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Manual configuration"
-msgstr "Kefluniañ ar proksioù"
+#: ../../security/main.pm_.c:191
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "O termeniñ al live surentez"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "search"
-msgstr "Klask"
+#: ../../security/main.pm_.c:197
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Gortozit mar plij, o prientiñ ar staliadur"
-#: ../../services.pm:1
-#, 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."
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
-"Ar pakad-mañ a garg ar stokellaoueg diuzet evel termenet e\n"
-"/etc/sysconfig/keyboard. Dre ar maveg kbdconfig e c'hell bezañ diuzet\n"
-"kement-se. Gwell deoc'h leuskel se gweredekaet war darn vuiañ an ardivinkoù."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr ""
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
+msgstr "Anacron, ur steuñvaer urzhiadoù mareadek."
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf host name must not contain a ."
+#: ../../services.pm_.c:21
+msgid ""
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
+"servijout a ra apmd evit evezhiañ stad an daspugner hag he enrollañ dre "
+"syslog.\n"
+"Gallout a ra ivez servijout da lazhañ an ardivink pa vez izel an daspugner."
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:23
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."
+"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 ""
-"Syslog a zo ur gwazerezh ma enroll drezañ an diaouled niverus o "
-"c'hemennadoù\n"
-"e kerzhlevrioù liesseurt ar reizhiad. Ur mennozh mat eo seveniñ ingal syslog."
-
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Unknown/Others"
-msgstr "Rummel"
+"Seveniñ an urzhiadoù steuñvaet gant an urzhiad at d'ar pred laket pa 'z eo\n"
+"bet sevenet at, ha seveniñ urzhiadoù dre lod pa 'z eo izel a-walc'h ar garg."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
+#: ../../services.pm_.c:25
+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 ""
+"Ur goulev standard UNIX eo cron evit seveniñ goulevioù diouzh c'hoant an\n"
+"arveriaded da goulzoù mareadek steuñvaet. vixie cron a ouzhpenn kalzig a "
+"arc'hweloù\n"
+"d'ar cron UNIX diazez, en o zouez surentez ha dibarzhoù kefluniañ gwelloc'h."
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Options"
-msgstr "Parzhadur"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
+#: ../../services.pm_.c:28
+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 ""
+"GPM a zegas implij al logodenn d'an arloadoù Linux mod-skrid evel\n"
+"Midnight Commander. Reiñ a ra tu da seveniñ obererezhoù troc'hañ-ha-pegañ,\n"
+"ha skor evit meuziadoù kemperzhel war al letrin."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:31
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."
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
+#: ../../services.pm_.c:33
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
+"Ur servijer evit ar Gwiad Bedel eo Apache. Implijet e vez evit servijañ\n"
+"restroù HTML ha CGI."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Auto-detected"
-msgstr "Dilesadur"
-
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../services.pm_.c:34
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)."
+"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 ""
+"An diaoul gourservijer kenrouedad (anvet inetd ordinal) a loc'h ur\n"
+"bochad a servijoù kenrouedad all diouzh an ezhomm. E karg loc'hañ meur a "
+"servijoù\n"
+"eo, en o zouez telnet, ftp, rsh, and rlogin. Dizoberiañ inetd a zizoberia\n"
+"an holl servijoù m'eo eñ atebek warno."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:38
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"
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:40
msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
+"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 ""
+"Ar pakad-mañ a garg ar stokellaoueg diuzet evel termenet e\n"
+"/etc/sysconfig/keyboard. Dre ar maveg kbdconfig e c'hell bezañ diuzet\n"
+"kement-se. Gwell deoc'h leuskel se gweredekaet war darn vuiañ an ardivinkoù."
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Refuse"
-msgstr "Adventañ"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:43
msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
msgstr ""
-#: ../../printer/cups.pm:1 ../../printer/main.pm:1
-#, c-format
-msgid "Remote Printers"
-msgstr "Moullerezio* a-bell"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "O krouiñ hag o furmadiñ ar restr saveteiñ %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:46
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"
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "Dibabit da be LVM ouzhpennañ"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "xfs restart"
-msgstr "strishaat"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:48
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"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 ""
+"An diaoul moullañ ret evit ma dafez en-ro reizh lpr eo lpd. Dre vras\n"
+"ez eo ur servijer a vera dleadoù moullañ evir ar voullerez(ed)."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "parzhadur hegerz ebet"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
+#: ../../services.pm_.c:50
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
+#: ../../services.pm_.c:52
+#, fuzzy
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
msgstr ""
+"named (BIND) a zo ur Servijer Anvioù Domani (DNS) a zo implijet evit\n"
+"amdreiñ anvioù ostiz e chomlec'hioù IP."
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Domain Name Resolver"
-msgstr "Anv ar domani"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
+#: ../../services.pm_.c:53
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
+"Evit marc'hañ ha divarc'hañ poentoù marc'hañ an holl Reizhiadoù Restroù\n"
+"Rouedad (NFS), SMB (Lan Manager/Windows) ha NCP (NetWare)."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
+#: ../../services.pm_.c:55
+msgid ""
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
+"Oberia/Dizoberia an holl etrefasoù rouedad kefluniet da lañsañ\n"
+"da vare al loc'hañ."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
+#: ../../services.pm_.c:57
+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 ""
+"NFS a zo ur c'homenad brudet evit rannañ restroù dre rouedadoù TCP/IP.\n"
+"Ar servij-mañ a bourvez arc'hweloù ur servijer NFS, a vez kefluniaet dre ar\n"
+"restr /etc/exports."
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Detection in progress"
-msgstr "Poent marc'hañ doubl %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
+#: ../../services.pm_.c:60
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
msgstr ""
+"NFS a zo ur c'homenad brudet evit rannañ restroù dre rouedadoù\n"
+"TCP/IP. Ar servij-mañ a bourvez un arc'hwel morailhañ restroù NFS."
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "Degemer e %s"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Lakait ur bladennig gwerc'h el lenner %s"
+#: ../../services.pm_.c:62
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../services.pm_.c:65
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Moullerez"
+"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 ""
+"Skorañ PCMCIA a zegas an tu da implijonut traoù evel ethernet ha modemoù\n"
+"e urzhiataeroù hezoug. Ne vo ket kroget hep bezañ bet kefluniet, rak-se eo "
+"diarvar\n"
+"e staliañ war ardivinkoù n'o deus ket ezhomm anezhañ."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:68
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>\". "
+"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 ""
+"Ar c'hartenner porzhioù a vera kevreadennoù RPC, a zo implijet gant\n"
+"komenadoù evel NFS ha NIS. Ar servijer kartenn-porzhioù a rankfe mont en-"
+"dro\n"
+"war ardivinkoù anezho servijerien komenadoù a implij ar reizhiad RPC."
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:71
+#, fuzzy
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."
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
msgstr ""
-"E degouezhoù 'zo, ar sturier %s en deus ezhomm titouroù ouzhpenn evit mont\n"
-"en-dro reizh, daoust ma da en-dro mat hepto peurvuiañ. Ha mennout a rit "
-"spisaat\n"
-"dibaboù ouzphenn evitañ, pe aotren d'ar sturier amprouiñ ho penvek evit\n"
-"an titouroù en deus ezhomm ? A-wechoù, amprouiñ a c'hell sac'hañ un "
-"urzhiataer,\n"
-"hogen ne raio reuz ebet."
+"Ur Gwazour Treuzdougen Postel eo Postfix, a zo ar goulev a\n"
+"zilech posteloù etre un ardivink hag un all."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
+#: ../../services.pm_.c:72
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
msgstr ""
+"Enroll hag assav poul dizurzh ar reizhiad evit genel niveroù\n"
+"dargouezhek gant gwelloc'h perzhded."
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
+#: ../../services.pm_.c:74
msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr "Lugerezh ar voullerez"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "Kuba"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Searching for new printers..."
-msgstr "Pakadoù hegerz"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Belize"
-msgstr "Adventañ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
+#: ../../services.pm_.c:76
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
msgstr ""
+"An diaoul routed a ro an tu da vremanaat ent emgefreek an taolenn henchañ\n"
+"IP dre ar c'homenad RIP. Tra ma vez implijet aliesig RIP war rouedadoù "
+"bihan,\n"
+"ezhomm a zo komenadoù henchañ kemplezhoc'h evit rouedadoù rouestlet."
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../services.pm_.c:79
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."
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
msgstr ""
+"Ar c'homenad rstat a ro tu da implijerien ur rouedad da zastum\n"
+"muzulioù barregezh diwar ne vern pe ardivink er rouedad-se."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
msgstr ""
+"Ar c'homenad rusers a ro tu da implijerien ur rouedad da anavezout piv\n"
+"a zo kevreet ouzh ardivinkoù all a respont."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "Hungareg"
-
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../services.pm_.c:83
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"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 ""
+"Ar c'homenad rwho a bourchas da implijerien a-bell roll an holl arveriaded a "
+"zo\n"
+"kevreet ouzh un ardivink ma da en-dro warnañ an diaoul rwhod (heñvel ouzh "
+"finger)."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
-msgstr "8 Mo"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "LDAP Server"
-msgstr "Servijer LDAP"
-
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:86
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."
+"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 ""
-"Skorañ PCMCIA a zegas an tu da implijonut traoù evel ethernet ha modemoù\n"
-"e urzhiataeroù hezoug. Ne vo ket kroget hep bezañ bet kefluniet, rak-se eo "
-"diarvar\n"
-"e staliañ war ardivinkoù n'o deus ket ezhomm anezhañ."
-
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Choose your country"
-msgstr "Dibabit ho stokellaoueg"
+"Syslog a zo ur gwazerezh ma enroll drezañ an diaouled niverus o "
+"c'hemennadoù\n"
+"e kerzhlevrioù liesseurt ar reizhiad. Ur mennozh mat eo seveniñ ingal syslog."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
+#: ../../services.pm_.c:89
+#, fuzzy
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr ""
+"Enaou ha dizenaou ar servijer Fontoù X da vare al loc'hañ hag al lazhañ."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Where"
-msgstr "Pelec'h"
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Dibabit pe servijoù a zlefe bezañ lañset ent emgefreek pa loc'her"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "but not matching"
-msgstr ""
+#: ../../services.pm_.c:127
+#, fuzzy
+msgid "Printing"
+msgstr "Moullerez"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
+#: ../../services.pm_.c:128
+#, fuzzy
+msgid "Internet"
+msgstr "dedennus"
+
+#: ../../services.pm_.c:131
+msgid "File sharing"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "O kefluniañ kartennoù PCMCIA..."
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+#, fuzzy
+msgid "System"
+msgstr "Reizhiad/Diazez"
-#: ../../common.pm:1
-#, c-format
-msgid "kdesu missing"
-msgstr "kdesu mank"
+#: ../../services.pm_.c:138
+#, fuzzy
+msgid "Remote Administration"
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr ""
+#: ../../services.pm_.c:146
+#, fuzzy
+msgid "Database Server"
+msgstr "Stlennvonioù"
-#: ../../diskdrake/interactive.pm:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "Encryption key"
+msgid "Services: %d activated for %d registered"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+#: ../../services.pm_.c:191
+#, fuzzy
+msgid "Services"
+msgstr "trobarzhell"
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "Inizi Nedeleg"
+#: ../../services.pm_.c:203
+#, fuzzy
+msgid "running"
+msgstr "Ho evezh"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Staliadur LILO a zo sac'het. Degouezhet eo ar fazi a heul :"
+#: ../../services.pm_.c:203
+#, fuzzy
+msgid "stopped"
+msgstr "Ouzhpennañ"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Set this printer as the default"
+#: ../../services.pm_.c:222
+msgid ""
+"No additional information\n"
+"about this service, sorry."
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "parzhadur %s"
+#: ../../services.pm_.c:229
+#, fuzzy
+msgid "On boot"
+msgstr "Gwrizienn"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Paranoid"
-msgstr "Ankeniet"
+#: ../../services.pm_.c:241
+#, fuzzy
+msgid "Start"
+msgstr "Meuziad Lañsañ"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NIS"
-msgstr "NIS"
+#: ../../services.pm_.c:241
+#, fuzzy
+msgid "Stop"
+msgstr "Rann"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Del User"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Location on the bus"
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "No printer found!"
-msgstr "N'ev ket Moullerez lec'hel!\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
+#: ../../share/advertising/01-thanks.pl_.c:11
+msgid ""
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
msgstr ""
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Erase entire disk"
-msgstr "Chetan an holl planedenn"
+#: ../../share/advertising/02-community.pl_.c:9
+#, fuzzy
+msgid "Get involved in the Free Software world"
+msgstr "Amprouiñ ar c'hefluniadur"
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Default)"
-msgstr " (Dre ziouer)"
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Arguments: ()\n"
-"\n"
-"If SERVER_LEVEL (or SECURE_LEVEL if absent) is greater than 3\n"
-"in /etc/security/msec/security.conf, creates the symlink /etc/security/msec/"
-"server\n"
-"to point to /etc/security/msec/server.<SERVER_LEVEL>. The /etc/security/msec/"
-"server\n"
-"is used by chkconfig --add to decide to add a service if it is present in "
-"the file\n"
-"during the installation of packages."
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Automatic reconfiguration"
-msgstr "Kefluniadur goude staliañ"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Anv ar gevreadenn"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Receiving Speed:"
+#: ../../share/advertising/03-internet.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "permissions"
-msgstr "parzhadur %s"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../interactive.pm:1
-#: ../../interactive/newt.pm:1 ../../my_gtk.pm:1
-#: ../../printer/printerdrake.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "<- Previous"
-msgstr "<- Diaraog"
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Internet Connection Sharing configuration"
-msgstr "Lugerezh ar voullerez"
+#: ../../share/advertising/04-multimedia.pl_.c:11
+msgid ""
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
+msgstr ""
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "Gwintañ etre kompez ha rummet dre strollad"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "C'hoarioù"
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Themes"
-msgstr "Gwezenn"
+#: ../../share/advertising/05-games.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
+msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Options: %s"
-msgstr "Parzhadur"
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+#, fuzzy
+msgid "Mandrake Control Center"
+msgstr "Anv ar gevreadenn"
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr "Lugerezh ar voullerez"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "OKI winprinter configuration"
-msgstr "Kefluniañ ar modem"
+#: ../../share/advertising/07-desktop.pl_.c:9
+#, fuzzy
+msgid "User interfaces"
+msgstr "Etrefas arveriad/X"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
-msgstr "Sant Lena"
+#: ../../share/advertising/07-desktop.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Security Level"
-msgstr "Live surentez"
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Diorren"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
+
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-"Lankadoù 'zo n'int ket peurc'hraet.\n"
-"\n"
-"Mennout a rit kuitaat da vat bremañ ?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "Sondan"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "Polonek (reizhadur qwerty)"
+#: ../../share/advertising/09-server.pl_.c:10
+msgid ""
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
-msgstr "Siri"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
-#, c-format
+#: ../../share/advertising/10-mnf.pl_.c:10
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"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-"Degemer mat e %s, an dibaber reizhiad oberian~ !\n"
-"\n"
-"Dibabit an dibaber reizhiad pe\n"
-"gortozit %d eilennoù\n"
-"\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "Portugalek"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
-msgstr "Anv ar restr saveteiñ : "
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "Er furmad 1.2.3.4 e tlefe bezañ ar chomlec'h IP"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Left Control key"
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
-msgstr "Serbi"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Newzealand"
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
+msgid ""
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "Staliañ ar c'harger loc'hañ"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Diuzit ment memor ho kartenn c'hrafek"
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
-#: ../../standalone.pm:1
-#, c-format
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
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."
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+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 ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "Anv LVM?"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Kavet etrefas %s %s"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "sticky-bit"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Post Install"
-msgstr "Staliañ"
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "The internal domain name"
-msgstr "Moullerez lec'hel"
+#: ../../share/advertising/17-mdkclub.pl_.c:10
+msgid ""
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
+msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ kartenn"
+#: ../../standalone.pm_.c:21
+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 ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone.pm_.c:40
msgid ""
-"Arguments: (umask)\n"
+"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
+"Backup and Restore application\n"
"\n"
-"Set the user umask."
+"--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 name.\n"
msgstr ""
-#: ../../standalone/logdrake:1 ../../ugtk.pm:1
-#, c-format
-msgid "logdrake"
+#: ../../standalone.pm_.c:51
+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.pm:1
-#, c-format
+#: ../../standalone.pm_.c:57
msgid ""
"Font Importation and monitoring "
"application \n"
@@ -11236,6074 +8971,4488 @@ msgid ""
" : and gs for ghostscript for only this one."
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+#: ../../standalone.pm_.c:68
+msgid ""
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
+#: ../../standalone.pm_.c:70
+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)"
msgstr ""
-"Dibabit al lenner pladennig a vennit implijout evit ober ar bladenn loc'hañ"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr "LILO gant meuziad skrid"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
-msgstr ""
+#: ../../standalone.pm_.c:82
+#, fuzzy
+msgid "[keyboard]"
+msgstr "Stokellaoueg"
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
+#: ../../standalone.pm_.c:84
+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 ""
-#: ../../interactive/newt.pm:1
-#, fuzzy, c-format
-msgid "Do"
-msgstr "Graet"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "O taremprediñ ar melezour evit kaout roll ar pakadoù hegerz"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lituaniek AZERTY (kozh)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasilek (ABNT-2)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone.pm_.c:94
msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
+"[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 ""
-#: ../../install_gtk.pm:1
-#, fuzzy, c-format
-msgid "System installation"
-msgstr "Staliadur SILO"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
+#: ../../standalone.pm_.c:99
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Open"
+#: ../../standalone.pm_.c:100
+msgid ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
msgstr ""
-#: ../../security/help.pm:1
+#: ../../standalone.pm_.c:114
#, c-format
msgid ""
-"Arguments: (arg)\n"
"\n"
-"The argument specifies if clients are authorized to connect\n"
-"to the X server on the tcp port 6000 or not."
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "O krouiñ ur bladennig staliañ emgefreek"
+#: ../../standalone.pm_.c:168
+msgid "Installing packages..."
+msgstr "O staliañ pakadoù..."
-#: ../../any.pm:1
-#, c-format
-msgid "Open Firmware Delay"
-msgstr ""
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Dizereit mar plij ha neuze implijit Ctrl-Alt-WarGil"
-#: ../../lang.pm:1
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "Hungary"
-msgstr "Hongri"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Total progress"
-msgstr "Amprouiñ ar porzhioù"
+msgid "Please relog into %s to activate the changes"
+msgstr "Adereit ouzh %s evit bevaat ar c'hemmoù mar plij"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Color configuration"
+#: ../../standalone/drakTermServ_.c:239
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
msgstr "Kefluniañ ar proksioù"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Zealand"
-msgstr "Zeland Nevez"
+#: ../../standalone/drakTermServ_.c:253
+#, fuzzy
+msgid "Enable Server"
+msgstr "Stlennvonioù"
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
+#: ../../standalone/drakTermServ_.c:260
+#, fuzzy
+msgid "Disable Server"
+msgstr "Stlennvonioù"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "please choose the date to restore"
-msgstr "Dibabit seurt ho logodenn, mar plij."
+#: ../../standalone/drakTermServ_.c:268
+#, fuzzy
+msgid "Start Server"
+msgstr "Servijer NIS"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
+#: ../../standalone/drakTermServ_.c:275
+#, fuzzy
+msgid "Stop Server"
+msgstr "Servijer NIS"
+
+#: ../../standalone/drakTermServ_.c:283
+#, fuzzy
+msgid "Etherboot Floppy/ISO"
+msgstr "Krouiñ ur bladennig loc'hañ"
+
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
+#: ../../standalone/drakTermServ_.c:294
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Ouzhpennañ un arveriad"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Netherlands Antilles"
-msgstr "Izelvroioù"
+#: ../../standalone/drakTermServ_.c:299
+msgid "Add/Del Clients"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
+#: ../../standalone/drakTermServ_.c:328
+msgid ""
+"\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
+"\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:332
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "and %d unknown printers"
-msgstr "Moullerez lec'hel"
-
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:365
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)"
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\n"
+"\n"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
+"\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\n"
+"\n"
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
+"\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
+"\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
+"\n"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \n"
+"\n"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
-msgstr "Go"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
-msgstr "Roit un anv arveriad mar plij"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid " enter `void' for void entry"
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "on Hard Drive"
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
msgstr ""
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Winmodem connection"
-msgstr "Kefluniañ ur rouedad"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Set the password history length to prevent password reuse."
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
+#: ../../standalone/drakTermServ_.c:587
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Ket a-walc'h a zisloañ evit peurstaliañ, kreskit anezhañ mar plij"
+#: ../../standalone/drakTermServ_.c:604
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Dilemel"
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "%s on %s"
-msgstr "Paour"
+#: ../../standalone/drakTermServ_.c:611
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Diuzit ar restr"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:668
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."
+"!!! 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_interactive.pm:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Pe seurt a vo ho takad-eur ?"
+#: ../../standalone/drakTermServ_.c:673
+#, fuzzy
+msgid "Add User -->"
+msgstr "Ouzhpennañ un arveriad"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakTermServ_.c:720
#, fuzzy, c-format
-msgid "Guinea"
-msgstr "Rummel"
-
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
+msgid "type: %s"
+msgstr "Seurt : "
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
+#: ../../standalone/drakTermServ_.c:773
+msgid "Thin Client"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
+#: ../../standalone/drakTermServ_.c:775
+msgid "Allow Thin Clients"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "Arlun"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please choose what you want to backup"
-msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 liv (8 bit)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "Lenn-skrivañ "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "Ment: %s\n"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Hostname: "
-msgstr "Anv an ostiz : "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Ment diaoz %s\n"
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
+msgstr ""
-#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
+#: ../../standalone/drakTermServ_.c:821
+msgid "<-- Edit Client"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printer"
-msgstr "Moullerez lec'hel"
+#: ../../standalone/drakTermServ_.c:837
+#, fuzzy
+msgid "Delete Client"
+msgstr "Dilemel"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s@epita."
-"fr>"
-msgstr "Copyright (C) 2001-2002 MandrakeSoft gant DUPONT Sebastien <dupont_s@epita.fr>"
+#: ../../standalone/drakTermServ_.c:843
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Kefluniañ IDE"
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+#: ../../standalone/drakTermServ_.c:876
+msgid ""
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "ADSL connection"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Error!"
-msgstr "Fazi!"
+#: ../../standalone/drakTermServ_.c:901
+#, fuzzy
+msgid "Netmask:"
+msgstr "Maskl rouedad"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "cable connection detected"
-msgstr "Lugerezh ar voullerez"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_Report Bug"
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "Adventañ"
+#: ../../standalone/drakTermServ_.c:929
+#, fuzzy
+msgid "Domain Name:"
+msgstr "Anv ar domani"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
-msgstr "Dominik"
+#: ../../standalone/drakTermServ_.c:937
+#, fuzzy
+msgid "Name Servers:"
+msgstr "Servijer NIS"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please enter the device name to use for backup"
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Spister: %s\n"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "matching"
-msgstr "O vrasjediñ"
+#: ../../standalone/drakTermServ_.c:1001
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Kefluniadur"
-#: ../../install2.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:1002
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)"
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
msgstr ""
-"Diuzit ar porzh a zere mar plij. Da skouer, porzh COM1 dindan MS Windows\n"
-"a vez anvet ttyS0 gant Linux."
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "The following packages are going to be removed"
-msgstr "Ar pakadoù a-heul a zo war-nes bezañ staliet/lamet"
+#: ../../standalone/drakTermServ_.c:1018
+#, fuzzy
+msgid "Write Config"
+msgstr "Kefluniañ X"
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, fuzzy, c-format
-msgid "Connect to the Internet"
-msgstr "Anv ar gevreadenn"
+#: ../../standalone/drakTermServ_.c:1120
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "Use existing partitions"
-msgstr "O furmadiñ parzhadurioù"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "Kanadian (Kebek)"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Trobarzhell al logodenn : %s\n"
+#: ../../standalone/drakTermServ_.c:1129
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Lenner pladennig hegerz ebet"
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakTermServ_.c:1138
#, c-format
-msgid "Reselect correct fonts"
+msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Options Description:\n"
-"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
-"\n"
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../share/advertising/13-mdkexpert_corporate.pl:1
-#, fuzzy, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Write protection"
-msgstr "Dilesadur"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "You've not selected any font"
-msgstr "Lemel ar steudad"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Language"
-msgstr "Dibabit ho yezh"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer model selection"
-msgstr "Lugerezh ar voullerez"
+#: ../../standalone/drakautoinst_.c:40
+msgid "Error!"
+msgstr "Fazi!"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
+msgid "I can't find needed image file `%s'."
msgstr ""
-"Goude kemmañ seurt ar parzhadur %s, holl roadoù ar parzhadur-se a vo kollet"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d eilenn"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr ""
+#: ../../standalone/drakautoinst_.c:43
+#, fuzzy
+msgid "Auto Install Configurator"
+msgstr "Kefluniadur goude staliañ"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
+#: ../../standalone/drakautoinst_.c:44
+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/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
-msgid "Sound configuration"
-msgstr "Kefluniadur"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Photo test page"
-msgstr "O voullañ pajenn(où) skrid..."
+#: ../../standalone/drakautoinst_.c:62
+#, fuzzy
+msgid "replay"
+msgstr "Adkargañ"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "Custom disk partitioning"
-msgstr "O furmadiñ parzhadurioù"
+#: ../../standalone/drakautoinst_.c:66
+#, fuzzy
+msgid "Automatic Steps Configuration"
+msgstr "Kefluniadur goude staliañ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
+#: ../../standalone/drakautoinst_.c:67
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "O krouiñ ur bladennig staliañ emgefreek"
+
+#: ../../standalone/drakautoinst_.c:139
msgid ""
-"The following printers\n"
"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "type: %s"
-msgstr "Seurt : "
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
+msgstr "Gourc'hemennoù!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "Slovakek (QWERTY)"
+#: ../../standalone/drakautoinst_.c:235
+msgid ""
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
+msgstr ""
-#: ../../standalone/draksound:1
-#, fuzzy, c-format
-msgid "No Sound Card detected!"
-msgstr "Lugerezh ar voullerez"
+#: ../../standalone/drakautoinst_.c:273
+#, fuzzy
+msgid "Auto Install"
+msgstr "Staliañ"
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "Porzh al logodenn"
+#: ../../standalone/drakautoinst_.c:343
+#, fuzzy
+msgid "Add an item"
+msgstr "Ouzhpennañ un arveriad"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
+#: ../../standalone/drakautoinst_.c:350
+#, fuzzy
+msgid "Remove the last item"
+msgstr "O furmadiñ ar restr saveteiñ %s"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Ftp Server"
-msgstr "Servijer NIS"
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Enable/Disable msec hourly security check."
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Uganda"
-msgstr "Bremanaat"
+#: ../../standalone/drakbackup_.c:691
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outañ, mar plij."
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:704
msgid ""
-"Arguments: (size)\n"
"\n"
-"Set shell commands history size. A value of -1 means unlimited."
+" DrakBackup Report \n"
+"\n"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:705
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"
+" DrakBackup Daemon Report\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"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:709
+msgid ""
"\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"
+" DrakBackup Report Details\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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr ""
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+#, fuzzy
+msgid "Total progess"
+msgstr "Amprouiñ ar porzhioù"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:785
+#, c-format
msgid ""
+"%s exists, delete?\n"
"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
-msgstr "Kefluniañ ur rouedad"
+"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/drakboot:1
-#, fuzzy, c-format
-msgid "Yaboot mode"
-msgstr "Trobarzhell loc'hañ"
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
+msgstr ""
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakbackup_.c:801
#, c-format
-msgid "USA (cable)"
+msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../mouse.pm:1
+#: ../../standalone/drakbackup_.c:819
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Tremenger ebet"
+
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Logodenn rummel 3 nozelenn"
+msgid "Permission denied transferring %s to %s"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:821
#, fuzzy, c-format
-msgid "Select another media to restore from"
-msgstr "Dibabit seurt ho logodenn, mar plij."
+msgid "Can't find %s on %s"
+msgstr "Fazi en ur zigeriñ %s evit skrivañ : %s"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Software Manager"
-msgstr "Anv rannet"
+#: ../../standalone/drakbackup_.c:824
+#, c-format
+msgid "%s not responding"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:828
#, c-format
msgid ""
-"Restore Description:\n"
-" \n"
-"Only the most recent date will be used, because with incremental \n"
-"backups it is necessary to restore one by one each older backup.\n"
-"\n"
-"So if you don't want to restore a user please unselect all their\n"
-"check boxes.\n"
-"\n"
-"Otherwise, you are able to select only one of these.\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful option for \n"
-"\tbackup. This option allows you to backup all your data \n"
-"\tthe first time, and only the changed data afterward.\n"
-"\tThen you will be able, during the restore step, to restore \n"
-"\tyour data from a specified date. If you have not selected \n"
-"\tthis option all old backups are deleted before each backup. \n"
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
"\n"
-" - Differential Backups:\n"
-" \n"
-"\tThe differential backup, rather than comparing changes in the\n"
-"\tdata to the previous incremental backup, always compares the\n"
-"\tdata to the initial base backup. This method allows one to\n"
-"\trestore the base and then the differential from a certain date.\n"
+"ssh -i %s %s\\@%s\n"
"\n"
+"without being prompted for a password."
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD in place - continue."
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "KB"
-msgstr "Ko"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Network & Internet"
-msgstr "Kefluniadur ar rouedad"
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituaniek QUERTY \"soniadel\""
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Net Boot Images"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Sharing of local scanners"
-msgstr "Pakadoù hegerz"
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
+msgstr ""
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
msgstr ""
-#: ../../services.pm:1
+#: ../../standalone/drakbackup_.c:1060
#, c-format
-msgid "Services and deamons"
+msgid "No tape in %s!"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remote host name missing!"
-msgstr "Anv an ostiz a-bell"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "with /usr"
-msgstr "gant /usr"
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+#, fuzzy
+msgid "Hard Disk Backup files..."
+msgstr "Restr gwareziñ siek"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Network"
-msgstr "Taolenn"
+#: ../../standalone/drakbackup_.c:1236
+#, fuzzy
+msgid "Backup User files..."
+msgstr "Restr gwareziñ siek"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "Re eeun eo an tremeger"
+#: ../../standalone/drakbackup_.c:1290
+#, fuzzy
+msgid "Backup Other files..."
+msgstr "Restr gwareziñ siek"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovakek (QWERTZ)"
+#: ../../standalone/drakbackup_.c:1296
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Restr gwareziñ siek"
-#: ../../share/advertising/06-development.pl:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, 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."
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:1319
#, c-format
-msgid "Truly minimal install (especially no urpmi)"
+msgid ""
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1322
msgid ""
-" Transfer \n"
-"Now"
+"\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use daemon"
-msgstr "Anv arveriad"
-
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakconnect:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "Dilesadur"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+#: ../../standalone/drakbackup_.c:1340
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Additional CUPS servers: "
-msgstr "IP ar servijer SMB"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1345
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."
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Where do you want to mount %s?"
-msgstr "Pelec'h e mennit marc'hañ an drobarzhell %s ?"
+#: ../../standalone/drakbackup_.c:1354
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Fazi en ur lenn ar restr %s"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Via Network"
-msgstr "Adaozañ adalek ar restr"
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "Aljeri"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+#, fuzzy
+msgid "File Selection"
+msgstr "Diuzadenn strollad pakadoù"
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "Ment an Initrd"
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1573
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"
+"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
+#: ../../standalone/drakbackup_.c:1574
+msgid ""
+"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 Mo"
+#: ../../standalone/drakbackup_.c:1575
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Restr gwareziñ siek"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone.pm:1
-#, 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"
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Setting Default Printer..."
-msgstr "Moullerez lec'hel"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
+#: ../../standalone/drakbackup_.c:1578
+msgid ""
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
msgstr ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Generating preview ..."
-msgstr "O tinoiñ trobarzhelloù..."
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Please check all users that you want to include in your backup."
+msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-#: ../../network/network.pm:1
-#, 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)."
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "a-steud"
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+#, fuzzy
+msgid "Remove Selected"
+msgstr "Lemel ar steudad"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
+#: ../../standalone/drakbackup_.c:1679
+msgid "Windows (FAT32)"
+msgstr "Windows (FAT32)"
+
+#: ../../standalone/drakbackup_.c:1714
+#, fuzzy
+msgid "Users"
+msgstr "Anv arveriad"
+
+#: ../../standalone/drakbackup_.c:1740
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Restr gwareziñ siek"
+
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Jorjiek (reizhadur \"Latin\")"
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
+msgstr ""
-#: ../../share/advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
+#: ../../standalone/drakbackup_.c:1747
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1748
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+" Transfer \n"
+"Now"
msgstr ""
-#: ../../share/advertising/04-configuration.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1749
msgid ""
-"Mandrake Linux 9.1 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!"
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "Kenya"
+#: ../../standalone/drakbackup_.c:1753
+#, fuzzy
+msgid "Please enter the host name or IP."
+msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Implijit ``Divarc'hañ'' da gentañ"
+#: ../../standalone/drakbackup_.c:1758
+msgid ""
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Installing mtools packages..."
-msgstr "O staliañ pakadoù..."
+#: ../../standalone/drakbackup_.c:1763
+#, fuzzy
+msgid "Please enter your login"
+msgstr "Klaskit adarre mar plij"
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "You must specify a root partition"
-msgstr "Ret eo deoc'h kaout ur parzhadur disloañ"
+#: ../../standalone/drakbackup_.c:1768
+#, fuzzy
+msgid "Please enter your password"
+msgstr "Klaskit adarre mar plij"
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "first step creation"
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
+#: ../../standalone/drakbackup_.c:1774
+#, fuzzy
+msgid "Remember this password"
+msgstr "Tremenger ebet"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Select a scanner model"
-msgstr "Diuzit ur gartenn c'hrafek"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Drakbackup Configuration"
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Save as.."
-msgstr "Meuziad Lañsañ"
-
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1882
msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr "Kore (norzh)"
+#: ../../standalone/drakbackup_.c:1887
+#, fuzzy
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
-#: ../../any.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "Autologin"
+#
+#: ../../standalone/drakbackup_.c:1893
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Klikit war ur parzhadur mar plij"
-#: ../../install_gtk.pm:1
-#, fuzzy, c-format
-msgid "System configuration"
-msgstr "Kefluniañ ar proksioù"
+#
+#: ../../standalone/drakbackup_.c:1899
+#, fuzzy
+msgid "Please check if you are using CDRW media"
+msgstr "Klikit war ur parzhadur mar plij"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Domain Admin Password"
-msgstr ""
+#
+#: ../../standalone/drakbackup_.c:1905
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Klikit war ur parzhadur mar plij"
-#: ../../share/advertising/05-desktop.pl:1
-#, 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, ..."
+#: ../../standalone/drakbackup_.c:1906
+msgid " Erase Now "
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Configuring printer ..."
-msgstr "Kefluniañ ar voullerez"
+#
+#: ../../standalone/drakbackup_.c:1912
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Klikit war ur parzhadur mar plij"
-#: ../../diskdrake/interactive.pm:1 ../../install_interactive.pm:1
-#, c-format
+#
+#: ../../standalone/drakbackup_.c:1918
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Klikit war ur parzhadur mar plij"
+
+#: ../../standalone/drakbackup_.c:1931
msgid ""
-"To ensure data integrity after resizing the partition(s), \n"
-"filesystem checks will be run on your next boot into Windows(TM)"
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "Mo"
+#: ../../standalone/drakbackup_.c:1964
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Diuzit ar restr"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
-msgstr ""
+#: ../../standalone/drakbackup_.c:2012
+#, fuzzy
+msgid "Use tape to backup"
+msgstr "Restr gwareziñ siek"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Bermuda"
-msgstr ""
+#: ../../standalone/drakbackup_.c:2021
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
-msgstr ""
+#: ../../standalone/drakbackup_.c:2027
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
+#: ../../standalone/drakbackup_.c:2033
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
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."
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
msgstr ""
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, fuzzy, c-format
-msgid "Remove"
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
+#: ../../standalone/drakbackup_.c:2103
+#, fuzzy
+msgid "Please enter the directory to save to:"
+msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr ""
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+#, fuzzy
+msgid "Use quota for backup files."
+msgstr "Restr gwareziñ siek"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr "utopia 25"
+#: ../../standalone/drakbackup_.c:2180
+#, fuzzy
+msgid "Network"
+msgstr "Taolenn"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
-msgstr ""
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
+msgstr "CDROM / DVDROM"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
msgstr ""
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../modules/interactive.pm:1 ../../my_gtk.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Yes"
-msgstr "Ya"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "Aod an Olifant"
-
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Pe seurt parzhadur a vennit ?"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Progress"
-msgstr "Adaozañ adalek ar restr"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
-msgstr "Estoni"
+#: ../../standalone/drakbackup_.c:2195
+#, fuzzy
+msgid "Tape"
+msgstr "Seurt"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
msgstr ""
-#: ../../partition_table.pm:1
-#, 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."
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
msgstr ""
-"Un toull a zo en ho taolenn barzhañ hogen n'hellan ket e implijout.\n"
-"Fiñval ar parzhadurioù kentañ derez evit ma vo an toull stok ouzh ar "
-"parzhadurioù astennet eo an diskoulm"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Channel"
-msgstr "Nullañ"
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
+msgstr ""
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Add"
-msgstr "Ouzhpennañ"
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Lugerezh ar voullerez"
+#: ../../standalone/drakbackup_.c:2229
+#, fuzzy
+msgid "Use daemon"
+msgstr "Anv arveriad"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid " Error while sending mail. \n"
-msgstr "Fazi en ur lenn ar restr %s"
+#: ../../standalone/drakbackup_.c:2234
+#, fuzzy
+msgid ""
+"Please choose the time \n"
+"interval between each backup"
+msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "Stokellaoueg"
+#: ../../standalone/drakbackup_.c:2240
+#, fuzzy
+msgid ""
+"Please choose the\n"
+"media for backup."
+msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2247
msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Dibabit ar benveg a vennit staliañ"
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Please wait, setting security level..."
-msgstr "O termeniñ al live surentez"
+#: ../../standalone/drakbackup_.c:2324
+msgid "What"
+msgstr "Petra"
-#: ../../share/advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.1: the ultimate development platform"
-msgstr ""
+#: ../../standalone/drakbackup_.c:2329
+msgid "Where"
+msgstr "Pelec'h"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "O kefluniañ an drobarzhell rouedad %s"
+#: ../../standalone/drakbackup_.c:2334
+msgid "When"
+msgstr "Pa"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "activated"
-msgstr "Bevaat"
+#: ../../standalone/drakbackup_.c:2339
+#, fuzzy
+msgid "More Options"
+msgstr "Dibarzhoù ar mollad :"
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
-msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outañ, mar plij."
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+#, fuzzy
+msgid "Drakbackup Configuration"
+msgstr "Kefluniadur ar rouedad"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "O kavout pakadoù da vremanaat"
+#: ../../standalone/drakbackup_.c:2376
+#, fuzzy
+msgid "Please choose where you want to backup"
+msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
-msgstr "Poent marc'hañ : "
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
-msgstr "Gant X"
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, fuzzy, c-format
-msgid "Multi-head configuration"
-msgstr "o lenn ar c'hefluniadur"
+#: ../../standalone/drakbackup_.c:2406
+#, fuzzy
+msgid "on Tape Device"
+msgstr "Trobarzhell ar voullerez"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "No browser available! Please install one"
-msgstr "Gallout a rit dibab yezhoù all hag a vo hegerz goude staliañ"
+#: ../../standalone/drakbackup_.c:2449
+#, fuzzy
+msgid "Please choose what you want to backup"
+msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-#: ../../Xconfig/main.pm:1
-#, fuzzy, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr "Derc'hel ar c'hefluniadur IP o ren"
+#: ../../standalone/drakbackup_.c:2450
+#, fuzzy
+msgid "Backup system"
+msgstr "Kefluniañ reizhiadoù restroù"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
msgstr ""
-#: ../../services.pm:1
-#, 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)."
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
msgstr ""
-"Ar c'homenad rwho a bourchas da implijerien a-bell roll an holl arveriaded a "
-"zo\n"
-"kevreet ouzh un ardivink ma da en-dro warnañ an diaoul rwhod (heñvel ouzh "
-"finger)."
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "Anv ar domani"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Sharing of local printers"
-msgstr "Pakadoù hegerz"
+#: ../../standalone/drakbackup_.c:2537
+msgid ""
+"\n"
+"Backup Sources: \n"
+msgstr ""
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/91errata.php3"
+#: ../../standalone/drakbackup_.c:2538
+msgid ""
+"\n"
+"- System Files:\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Available printers"
-msgstr "Pakadoù hegerz"
+#: ../../standalone/drakbackup_.c:2540
+msgid ""
+"\n"
+"- User Files:\n"
+msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "Goullo"
+#: ../../standalone/drakbackup_.c:2542
+msgid ""
+"\n"
+"- Other Files:\n"
+msgstr ""
-#: ../../help.pm:1
+#: ../../standalone/drakbackup_.c:2544
#, 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 correct, 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."
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Pelec'h e mennit marc'hañ an drobarzhell %s ?"
+#: ../../standalone/drakbackup_.c:2553
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2555
#, fuzzy, c-format
-msgid "Interface \"%s\""
-msgstr "dedennus"
+msgid " on device: %s"
+msgstr "Trobarzhell al logodenn : %s\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr "1 nozelenn"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2557
#, c-format
msgid ""
"\n"
-"There are %d unknown printers directly connected to your system"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../Xconfig/main.pm:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "Test"
+msgid "\t\tErase=%s"
msgstr ""
-#: ../../security/help.pm:1
+#: ../../standalone/drakbackup_.c:2561
#, c-format
msgid ""
-"Arguments: (arg)\n"
"\n"
-"Allow/Forbid direct root login."
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup_.c:2562
#, c-format
-msgid "Korea"
-msgstr "Kore"
-
-#: ../../interactive/stdio.pm:1
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Ho tibab ? (%s dre ziouer)"
+msgid ""
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Raw printer"
-msgstr "Moullerez lec'hel"
+#: ../../standalone/drakbackup_.c:2563
+#, fuzzy
+msgid ""
+"\n"
+"- Options:\n"
+msgstr "Parzhadur"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Vendor"
-msgstr "Dizober"
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Interface %s"
-msgstr "dedennus"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "Kefluniañ al logodenn"
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:2572
#, c-format
-msgid "Choose the mount points"
-msgstr "Dibabit at poentoù marc'hañ"
+msgid ""
+"\n"
+"- Daemon (%s) include:\n"
+msgstr ""
-#: ../../help.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakboot:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/net_monitor:1 ../../ugtk.pm:1
-#, c-format
-msgid "OK"
-msgstr "YA"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "Yougoslaviek (latin)"
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
+msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "O staliañ"
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Hag ur staliadur pe ur bremanadur eo ?"
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
+msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "ISDN card"
-msgstr "Kartenn son"
+#: ../../standalone/drakbackup_.c:2578
+msgid "\t-Network by rsync.\n"
+msgstr ""
-#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
+#: ../../standalone/drakbackup_.c:2579
+msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2587
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"
+"List of data to restore:\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 ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Steud a-bell"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2754
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
-msgstr ""
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "delete"
-msgstr "Dilemel"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
+"List of data corrupted:\n"
+"\n"
msgstr ""
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "DHCP host name"
-msgstr "Anv an ostiz"
+#: ../../standalone/drakbackup_.c:2756
+#, fuzzy
+msgid "Please uncheck or remove it on next time."
+msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outañ, mar plij."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
+#: ../../standalone/drakbackup_.c:2787
+msgid " All of your selected data have been "
msgstr ""
-#: ../../fs.pm:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "Mount the file system read-only."
+msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "Paour"
+#: ../../standalone/drakbackup_.c:2906
+#, fuzzy
+msgid " Restore Configuration "
+msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "Arvarus"
+#: ../../standalone/drakbackup_.c:3019
+#, fuzzy
+msgid "Backup the system files before:"
+msgstr "Restr gwareziñ siek"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s rann"
+#: ../../standalone/drakbackup_.c:3021
+#, fuzzy
+msgid "please choose the date to restore"
+msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../modules/interactive.pm:1 ../../my_gtk.pm:1
-#: ../../standalone/harddrake2:1 ../../ugtk2.pm:1
-#, c-format
-msgid "No"
-msgstr "Ket"
+#: ../../standalone/drakbackup_.c:3057
+#, fuzzy
+msgid "Use Hard Disk to backup"
+msgstr "Restr gwareziñ siek"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner, Sony IJP-V100), an HP "
-"PhotoSmart or an HP LaserJet 2200?"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3060
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "Gwadeloup"
+#: ../../standalone/drakbackup_.c:3103
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Lugerezh ar voullerez"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Kannada"
-msgstr "Kanadian"
+#: ../../standalone/drakbackup_.c:3110
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Diuzit lugerezh ar voullerez"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3134
+#, fuzzy
+msgid "Restore from Hard Disk."
+msgstr "Assevel adalek ar pladennig"
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Feur freskaat a-serzh"
-
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "O kregiñ gant al lankad `%s'\n"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan+/FirstMouse+"
+#: ../../standalone/drakbackup_.c:3204
+#, fuzzy
+msgid "Select another media to restore from"
+msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Removing %s ..."
-msgstr "Spisterioù"
+#: ../../standalone/drakbackup_.c:3206
+#, fuzzy
+msgid "Other Media"
+msgstr "All"
-#: ../../lang.pm:1
-#, c-format
-msgid "Niger"
-msgstr "Nijer"
+#: ../../standalone/drakbackup_.c:3211
+#, fuzzy
+msgid "Restore system"
+msgstr "Staliañ ar reizhiad"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "No printer"
-msgstr "Moullerez lec'hel"
+#: ../../standalone/drakbackup_.c:3212
+#, fuzzy
+msgid "Restore Users"
+msgstr "Adaozañ adalek ar restr"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "alert configuration"
-msgstr "Kefluniañ ar proksioù"
+#: ../../standalone/drakbackup_.c:3213
+#, fuzzy
+msgid "Restore Other"
+msgstr "Adaozañ adalek ar restr"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "Dibarzhoù ar voullerez NetWare"
+#: ../../standalone/drakbackup_.c:3215
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "%s BootSplash (%s) preview"
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "General"
-msgstr "Rummel"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing system: "
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "Ouzhpennañ un arveriad"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "Mandatory package %s is missing"
+#: ../../standalone/drakbackup_.c:3334
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Filipin"
-
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../my_gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/draksec:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Ok"
-msgstr "Mat eo"
+#: ../../standalone/drakbackup_.c:3344
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Lemel ar steudad"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
-msgstr "Anv ar steud moullañ"
+#: ../../standalone/drakbackup_.c:3361
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Adaozañ adalek ar restr"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:3427
#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Mennout a rit implijout aboot?"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Belarusian"
+msgid "Backup files not found at %s."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:3440
#, c-format
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Move files to the new partition"
-msgstr "Krouiñ ur parzhadur nevez"
+#: ../../standalone/drakbackup_.c:3440
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Assevel adalek ar pladennig"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:3442
#, 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 "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:3452
#, 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."
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore From Catalog"
+#: ../../standalone/drakbackup_.c:3452
+#, fuzzy
+msgid "Restore From Tape"
msgstr "Taolenn barzhañ saveteerezh"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Pitcairn"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:3454
#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "group :"
-msgstr "Strollad labour"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "mounting partition %s in directory %s failed"
+msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3474
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Adaozañ adalek ar restr"
-#: ../../bootloader.pm:1 ../../help.pm:1
+#: ../../standalone/drakbackup_.c:3474
#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO gant meuziad c'hrafek"
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "O vrasjediñ"
+#: ../../standalone/drakbackup_.c:3475
+#, fuzzy
+msgid "Host Name"
+msgstr "Anv an ostiz"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
-msgstr "N'hellit ket andiuz ar pakad-mañ. Staliet eo endo"
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/Windows 95/98/NT"
+#: ../../standalone/drakbackup_.c:3483
+#, fuzzy
+msgid "Password required"
+msgstr "Tremenger"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "Kenderc'hel evelato ?"
+#: ../../standalone/drakbackup_.c:3489
+#, fuzzy
+msgid "Username required"
+msgstr "Anv arveriad"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "O klask ar pakadoù hegerz"
+#: ../../standalone/drakbackup_.c:3492
+#, fuzzy
+msgid "Hostname required"
+msgstr "Anv an ostiz : "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "Spisait dibarzhoù"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3513
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Adaozañ adalek ar restr"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
msgstr ""
-#: ../../any.pm:1
-#, fuzzy, 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\"."
-msgstr ""
-"Ur bladenn loc'hañ neuziet a ro un tu da loc'hañ ho reizhiad Linux hep "
-"bezañ\n"
-"dindan beli ar c'harger loc'hañ boas. Talvoudus eo ma ne mennit ket staliañ "
-"LILO\n"
-"(pe grub) war ho reizhiad, pe ma skarzh ur reizhiad oberiañ LILO, pe ma ne\n"
-"da ket en-dro LILO war ho kefluniadur periantel. Ur bladenn loc'hañ neuziet\n"
-"a c'hell ivez bezañ implijet gant ar skeudenn saveteiñ Mandrake, en ur "
-"aesaat an\n"
-"assevel pa vefec'h sac'het grevus. Mennout a rit krouiñ ur bladenn loc'hañ "
-"evit\n"
-"ho reizhiad ?"
+#: ../../standalone/drakbackup_.c:3760
+#, fuzzy
+msgid "Custom Restore"
+msgstr "Neuziet"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Theme installation failed!"
-msgstr "Diuzit renkad ar staliadur"
+#: ../../standalone/drakbackup_.c:3813
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Taolenn barzhañ saveteerezh"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3841
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Adaozañ adalek ar restr"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "Implij da saveteiñ"
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+msgid "Previous"
+msgstr "Diaraog"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+msgid "Save"
+msgstr "Enrollañ"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pppoe"
-msgstr "implijit pppoe"
+#: ../../standalone/drakbackup_.c:3946
+#, fuzzy
+msgid "Build Backup"
+msgstr "Restr gwareziñ siek"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Moving files to the new partition"
-msgstr "Krouiñ ur parzhadur nevez"
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+#, fuzzy
+msgid "Restore"
+msgstr "Adaozañ adalek ar restr"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+#: ../../standalone/drakbackup_.c:4189
+msgid ""
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
msgstr ""
-#: ../../help.pm:1 ../../interactive.pm:1
-#, c-format
-msgid "Advanced"
-msgstr "Barek"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer"
+#: ../../standalone/drakbackup_.c:4195
+msgid ""
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Svedek)"
+#: ../../standalone/drakbackup_.c:4209
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Ar pakadoù a-heul a zo war-nes bezañ distaliet"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "More Options"
-msgstr "Dibarzhoù ar mollad :"
+#: ../../standalone/drakbackup_.c:4232
+#, fuzzy
+msgid "Please select data to restore..."
+msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../lang.pm:1
-#, c-format
-msgid "Afghanistan"
-msgstr "Afganistan"
+#: ../../standalone/drakbackup_.c:4267
+#, fuzzy
+msgid "Please select media for backup..."
+msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
+#: ../../standalone/drakbackup_.c:4275
+#, fuzzy
+msgid "Please select data to backup..."
+msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
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."
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-"Ur goulev standard UNIX eo cron evit seveniñ goulevioù diouzh c'hoant an\n"
-"arveriaded da goulzoù mareadek steuñvaet. vixie cron a ouzhpenn kalzig a "
-"arc'hweloù\n"
-"d'ar cron UNIX diazez, en o zouez surentez ha dibarzhoù kefluniañ gwelloc'h."
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr ""
+#: ../../standalone/drakbackup_.c:4382
+#, fuzzy
+msgid "Backup system files"
+msgstr "Restr gwareziñ siek"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "Lennit aketus !"
+#: ../../standalone/drakbackup_.c:4384
+#, fuzzy
+msgid "Backup user files"
+msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
-msgstr ""
+#: ../../standalone/drakbackup_.c:4386
+#, fuzzy
+msgid "Backup other files"
+msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Port"
-msgstr "Paour"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-msgstr ""
+#: ../../standalone/drakbackup_.c:4416
+#, fuzzy
+msgid "Sending files..."
+msgstr "Enrollañ er restr"
-#. -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
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Stokit enkas evit loc'ha¤ ar RK diuzet, 'e' evit aoza¤ an"
+#: ../../standalone/drakbackup_.c:4500
+#, fuzzy
+msgid "Backup Now from configuration file"
+msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
-msgstr ""
+#: ../../standalone/drakbackup_.c:4505
+#, fuzzy
+msgid "View Backup Configuration."
+msgstr "Kefluniadur ar rouedad"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "The encryption keys do not match"
-msgstr "An tremegerioù ne glot ket"
+#: ../../standalone/drakbackup_.c:4526
+#, fuzzy
+msgid "Wizard Configuration"
+msgstr "Kefluniadur"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr ""
+#: ../../standalone/drakbackup_.c:4531
+#, fuzzy
+msgid "Advanced Configuration"
+msgstr "Kefluniadur"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+#: ../../standalone/drakbackup_.c:4536
+#, fuzzy
+msgid "Backup Now"
+msgstr "Kefluniañ reizhiadoù restroù"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4624
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."
+"options description:\n"
+"\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4654
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
"\n"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "Spisterioù"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4662
msgid ""
-"drakfirewall configurator\n"
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\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."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4701
msgid ""
-"Please enter your username, password and domain name to access this host."
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
+"\n"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Remove selected host"
-msgstr "Lemel ar steudad"
-
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Network configuration"
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../any.pm:1
-#, c-format
-msgid "No sharing"
-msgstr "N'ev ket lodañ"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule down one level"
+#: ../../standalone/drakbackup_.c:4727
+#, fuzzy
+msgid ""
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
+"Copyright (C) 2001 MandrakeSoft gant DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../common.pm:1
-#, c-format
-msgid "TB"
-msgstr "To"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "FATAL"
-msgstr "FAT"
+#: ../../standalone/drakbackup_.c:4729
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4732
msgid ""
-"The DHCP server will allow other computer to boot using PXE in the given "
-"range of address.\n"
+"Description:\n"
+"\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
+"\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
+"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
+"\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
"\n"
-"The network address is %s using a netmask of %s.\n"
"\n"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Delete"
-msgstr "Dilemel"
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4769
msgid ""
-"Arguments: (arg)\n"
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
"\n"
-"Allow/Forbid reboot by the console user."
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4778
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?"
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
msgstr ""
-"Kefluniañ ho urzhiataer evit lañsañ X ent emgefreek pa loc'ho a c'hellañ.\n"
-"Mennout a rit lañsañ X pa adloc'hit ?"
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Build the disk"
-msgstr ""
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Disconnect %s"
-msgstr "Lugerezh ar voullerez"
+msgid "Installation of %s failed. The following error occured:"
+msgstr "Staliadur %s a zo sac'het. Degouezhet eo ar fazi a heul :"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "Proksi HTTP"
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "SSH Server"
-msgstr "Servijer NIS"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+msgid "Standalone Tools"
msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#: ../../fsedit.pm:1 ../../install_steps.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakboot:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Error"
-msgstr "Fazi"
-
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
msgstr ""
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "Australia"
-msgstr ""
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr ""
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
-#: ../../Xconfig/card.pm:1
-#, fuzzy, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Kefluniadur hep ken kartenn \"%s\" (%s)"
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Logodenn"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Level"
-msgstr "live"
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Change the printing system"
-msgstr "Kefluniañ ur rouedad"
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Anv rannet"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "Kefluniañ servijoù"
+#: ../../standalone/drakbug_.c:60
+#, fuzzy
+msgid "Windows Migration tool"
+msgstr "Titouroù"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
-msgstr ""
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Moullerez"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr "marc'hañ sac'het : "
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"the GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
-msgstr ""
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Application:"
+msgstr "X11/Arloadoù"
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "Skeudenn"
+#: ../../standalone/drakbug_.c:76
+#, fuzzy
+msgid "Package: "
+msgstr "Pakad"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
msgstr ""
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "Remote Administration"
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
+#: ../../standalone/drakbug_.c:78
+#, fuzzy
+msgid "Release: "
+msgstr "Gortozit mar plij"
-#: ../../modules.pm:1
-#, c-format
+#: ../../standalone/drakbug_.c:93
msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Selected All"
-msgstr "Diuzit ar restr"
+#: ../../standalone/drakbug_.c:112
+#, fuzzy
+msgid "Report"
+msgstr "Paour"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr ""
+#: ../../standalone/drakbug_.c:148
+#, fuzzy
+msgid "Not installed"
+msgstr "Dilezel ar staliadur"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Webmin Service"
-msgstr "trobarzhell"
+#: ../../standalone/drakbug_.c:160
+#, fuzzy
+msgid "Package not installed"
+msgstr "Dilezel ar staliadur"
-#: ../../diskdrake/interactive.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "device"
-msgstr "trobarzhell"
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "An holl"
+#: ../../standalone/drakbug_.c:180
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Gallout a rit dibab yezhoù all hag a vo hegerz goude staliañ"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakconnect_.c:75
#, fuzzy, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Pe seurt parzhadur a vennit ?"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
-msgstr "Gres"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "Ur fazi a zo bet"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Bremanaet e tle bezañ ar pabak-mañ\n"
-"Ha sur oc'h e mennit e ziuzañ ?"
+msgid "Network configuration (%d adapters)"
+msgstr "Kefluniadur ar rouedad"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "Tamoul (skriverez)"
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+#, fuzzy
+msgid "Profile: "
+msgstr "marc'hañ sac'het : "
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+#: ../../standalone/drakconnect_.c:125
+msgid "New profile..."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:131
msgid ""
-"Directory %s already contains data\n"
-"(%s)"
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Printer on NetWare server"
-msgstr "Servijer moullañ"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Roit ment ar memor vev e Mo"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "Anv gwirion"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "done"
-msgstr "Graet"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid "Higher"
-msgstr "Uhel"
+#: ../../standalone/drakconnect_.c:157
+#, fuzzy
+msgid "Hostname: "
+msgstr "Anv an ostiz : "
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Dibabit ar parzhadur a vennit furmadiñ"
+#: ../../standalone/drakconnect_.c:164
+#, fuzzy
+msgid "Internet access"
+msgstr "dedennus"
-#: ../../standalone/drakxtv:1
-#, 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"
-msgstr ""
+#: ../../standalone/drakconnect_.c:177
+#, fuzzy
+msgid "Type:"
+msgstr "Seurt : "
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Can't find %s on %s"
-msgstr "Fazi en ur zigeriñ %s evit skrivañ : %s"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "Treuzell : "
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "Japonek (106 stokell)"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+#, fuzzy
+msgid "Interface:"
+msgstr "dedennus"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr ""
+#: ../../standalone/drakconnect_.c:216
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "Kefluniañ servijoù"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Delete selected rule"
-msgstr "Lemel ar steudad"
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+#, fuzzy
+msgid "LAN configuration"
+msgstr "Kefluniadur"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Steud a-bell"
+#: ../../standalone/drakconnect_.c:228
+#, fuzzy
+msgid "Driver"
+msgstr "Servijer"
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Lakait ur bladennig el lenner %s"
+#: ../../standalone/drakconnect_.c:228
+#, fuzzy
+msgid "Interface"
+msgstr "dedennus"
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "fetis"
-
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
-msgstr "1 munutenn"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "type: fat"
-msgstr "Seurt : "
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "on channel %d id %d\n"
-msgstr "war bus %d Nn %d\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
-msgstr ""
+#: ../../standalone/drakconnect_.c:228
+#, fuzzy
+msgid "State"
+msgstr "Meuziad Lañsañ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr "Laos"
+#: ../../standalone/drakconnect_.c:240
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "Kefluniañ ur rouedad"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr "Sevel"
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "Skoazeller..."
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr ""
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+#, fuzzy
+msgid "Connected"
+msgstr "Anv ar gevreadenn"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr ""
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+#, fuzzy
+msgid "Not connected"
+msgstr "Lugerezh ar voullerez"
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "Servijer moullañ"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from the Internet complete."
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Custom configuration"
-msgstr "Kefluniañ ar proksioù"
-
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakconnect_.c:400
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 ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakconnect_.c:427
msgid ""
-"\n"
-"Restore Backup Problems:\n"
-"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
-msgstr "Portugal"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "Hag un all hoc'h eus ?"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Fazi en ur skrivañ er restr %s"
-
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to normal mode"
-msgstr "Tremen er mod boas"
-
-#: ../../Xconfig/monitor.pm:1 ../../mouse.pm:1
-#, c-format
-msgid "Generic"
-msgstr "Rummel"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Kranenn %d da granenn %d\n"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "New profile..."
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
+#: ../../standalone/drakconnect_.c:449
+#, fuzzy
+msgid "LAN Configuration"
+msgstr "Kefluniadur"
-#: ../../standalone/draksplash:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Display logo on Console"
+msgid "Adapter %s: %s"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Windows Domain"
-msgstr "Titouroù"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Saami (norwegian)"
-msgstr "Dvorak (Norvegek)"
-
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Interface %s (on network %s)"
-msgstr "dedennus"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
-msgstr ""
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+#, fuzzy
+msgid "activate now"
+msgstr "Bevaat"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr ""
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+#, fuzzy
+msgid "deactivate now"
+msgstr "Bevaat"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:499
msgid ""
-"No additional information\n"
-"about this service, sorry."
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
+#: ../../standalone/drakconnect_.c:556
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
msgstr ""
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "Ha reizh eo ?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "Inizi Marshall<"
+#: ../../standalone/drakconnect_.c:580
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Lugerezh ar voullerez"
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr "Termeniñ tremenger root"
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+#, fuzzy
+msgid "Connection type: "
+msgstr "Anv ar gevreadenn"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "DVDRAM device"
-msgstr "trobarzhell"
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Treuzell"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, 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"
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"N'hoc'h eus ket a barzhadur disloañ\n"
-"\n"
-"Kenderc'hel evelato ?"
+#: ../../standalone/drakfloppy_.c:39
+#, fuzzy
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Version: "
-msgstr "Stumm : "
+#: ../../standalone/drakfloppy_.c:40
+#, fuzzy
+msgid "Module name"
+msgstr "Dibarzhoù ar mollad :"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Server IP missing!"
-msgstr "Dibarzhoù ar voullerez"
+#: ../../standalone/drakfloppy_.c:40
+#, fuzzy
+msgid "Size"
+msgstr "Ment: %s"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Suriname"
-msgstr ""
+#: ../../standalone/drakfloppy_.c:45
+#, fuzzy
+msgid "drakfloppy"
+msgstr "Assevel adalek ar pladennig"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
-msgstr ""
+#: ../../standalone/drakfloppy_.c:63
+#, fuzzy
+msgid "boot disk creation"
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
-msgstr ""
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr "dre ziouer"
-#: ../../lang.pm:1
+#: ../../standalone/drakfloppy_.c:87
#, c-format
-msgid "Gibraltar"
+msgid "DrakFloppy Error: %s"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "on Tape Device"
-msgstr "Trobarzhell ar voullerez"
-
-#: ../../network/modem.pm:1
-#, fuzzy, c-format
-msgid "Do nothing"
-msgstr "N'ev ket lodañ"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Delete Client"
-msgstr "Dilemel"
+#: ../../standalone/drakfloppy_.c:98
+#, fuzzy
+msgid "kernel version"
+msgstr "Kefluniañ ar proksioù"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "Seurt ar reizhiad restroù : "
+#: ../../standalone/drakfloppy_.c:104
+#, fuzzy
+msgid "General"
+msgstr "Rummel"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Starting network..."
-msgstr "Kefluniañ ur rouedad"
+#: ../../standalone/drakfloppy_.c:109
+#, fuzzy
+msgid "Expert Area"
+msgstr "Mod mailh"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
+#: ../../standalone/drakfloppy_.c:112
+msgid "mkinitrd optional arguments"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/_Fields description"
-msgstr "Spisait dibarzhoù"
-
-#: ../../share/advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr ""
+#: ../../standalone/drakfloppy_.c:113
+#, fuzzy
+msgid "Add a module"
+msgstr "Ouzhpennañ un arveriad"
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../install_steps_gtk.pm:1
-#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakTermServ:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakfont:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Help"
-msgstr "Skoazell"
+#: ../../standalone/drakfloppy_.c:133
+#, fuzzy
+msgid "force"
+msgstr "Dilec'hiañ"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Your personal phone number"
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
msgstr ""
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "Which size do you want to keep for Windows on"
-msgstr "Da beseurt rann e mennit dilec'hiañ ?"
+#: ../../standalone/drakfloppy_.c:135
+msgid "omit scsi modules"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
msgstr ""
-"Pajenn(où) arnod zo bet kaset d'an diaoul moullañ.\n"
-"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
-"Ha mont a ra en-dro reizh ?"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Username required"
-msgstr "Anv arveriad"
+#: ../../standalone/drakfloppy_.c:172
+#, fuzzy
+msgid "Remove a module"
+msgstr "Eilpennañ urzh ar pajennoù"
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Dibarzhoù moullañ SMB (Windows 9x/NT)"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Accept/Refuse bogus IPv4 error messages."
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "mkinitrd optional arguments"
+msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../share/advertising/03-software.pl:1
+#: ../../standalone/drakfloppy_.c:341
#, c-format
msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Amprouiñ ar c'hefluniadur"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Print test pages"
-msgstr "O voullañ pajenn(où) skrid..."
-
-#: ../../Xconfig/card.pm:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "64 MB or more"
-msgstr "64 Mo pe vuioc'h"
+msgid "Unable to fork: %s"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakfloppy_.c:349
#, 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."
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Not formatted\n"
-msgstr "Ket furmadet\n"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Periodic Checks"
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "PXE Server Configuration"
-msgstr "Kefluniadur"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup the system files before:"
-msgstr "Restr gwareziñ siek"
-
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
msgstr ""
-"Setu al live surentez standard a vez erbedet evit un urzhiataer a vo "
-"implijet\n"
-"evit kevreañ evel arval ouzh ar Genrouedad. Bremañ ez eus gwiriadennoù "
-"surentez."
-
-#: ../../any.pm:1
-#, c-format
-msgid "First floppy drive"
-msgstr "Lenner pladennig kentañ"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Restr/_Kuitaat"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose the new size"
-msgstr "Dibabit ar ment nevez"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Media class"
-msgstr ""
+#: ../../standalone/drakfont_.c:242
+#, fuzzy
+msgid "no fonts found"
+msgstr "%s ket kavet"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
-msgstr ""
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+#, fuzzy
+msgid "done"
+msgstr "Graet"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Faroe Islands"
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Restart XFS"
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"if set to yes, check for empty passwords, for no password in /etc/shadow and "
-"for users with the 0 id other than root."
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please enter the directory to save to:"
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Model name"
-msgstr "Dibarzhoù ar mollad :"
+#: ../../standalone/drakfont_.c:359
+#, fuzzy
+msgid "Fonts copy"
+msgstr "Furmadiñ ar bladennig"
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
-msgstr "Albani"
+#: ../../standalone/drakfont_.c:363
+#, fuzzy
+msgid "True Type fonts installation"
+msgstr "O prientiñ ar staliadur"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CDR/DVDR in drive!"
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Normal Mode"
-msgstr "Boas"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Please be sure that the cron daemon is included in your services. \n"
-"\n"
-"Note that currently all 'net' medias also use the hard drive."
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer connection type"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Network %s"
-msgstr "Taolenn"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connect %s"
-msgstr "Anv ar gevreadenn"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting CUPS..."
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "O tizenaouiñ ar rouedad"
-
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Poent marc'hañ doubl %s"
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
+#: ../../standalone/drakfont_.c:459
+msgid "Restart XFS"
msgstr ""
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Connection Configuration"
-msgstr "Kefluniañ ar proksioù"
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
+msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, fuzzy, c-format
-msgid "Unknown|Generic"
-msgstr "Rummel"
+#: ../../standalone/drakfont_.c:528
+#, fuzzy
+msgid "xfs restart"
+msgstr "strishaat"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
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"
+"Before installing any fonts, be sure that you have the right to use and "
+"install them on your system.\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."
+"-You can install the fonts using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
msgstr ""
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
-#: ../../install_steps_interactive.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/draksplash:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "Quit"
-msgstr "Kuitaat"
+#: ../../standalone/drakfont_.c:621
+#, fuzzy
+msgid "Fonts Importation"
+msgstr "Furmadiñ parzhadurioù"
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../help.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "Ac'hubiñ ent emgefreek"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Gwiriañ ar bloc'hoù siek ?"
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Other MultiMedia devices"
-msgstr "All"
+#: ../../standalone/drakfont_.c:658
+#, fuzzy
+msgid "Uninstall Fonts"
+msgstr "O tistaliañ ar RPMoù"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "burner"
-msgstr "Moullerez"
+#: ../../standalone/drakfont_.c:669
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Kefluniadur"
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "No remote machines"
-msgstr "Moullerezio* a-bell"
+#: ../../standalone/drakfont_.c:677
+#, fuzzy
+msgid "Font List"
+msgstr "Poent marc'hañ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:737
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@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"
+" 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"
"\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 ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "Dilesadur NIS"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Didalvout eo ``Strishaat dibarzhoù al linenn urzhiañ'' hep tremenger"
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:862
+#, fuzzy
+msgid "Choose the applications that will support the fonts:"
+msgstr "Dibabit ar parzhadur a vennit furmadiñ"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "IO_0 kartenn"
+#: ../../standalone/drakfont_.c:877
+#, fuzzy
+msgid "StarOffice"
+msgstr "Burev"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
+#: ../../standalone/drakfont_.c:884
+msgid "Abiword"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "United Arab Emirates"
-msgstr "Amerika"
+#: ../../standalone/drakfont_.c:891
+#, fuzzy
+msgid "Generic Printers"
+msgstr "Moullerez"
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "Thailand"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
+msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "IO_1 kartenn"
+#: ../../standalone/drakfont_.c:1005
+#, fuzzy
+msgid "Install List"
+msgstr "Staliañ ar reizhiad"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
msgstr ""
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Staliadur Mandrake Linux %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "Stokellaoueg Thai"
+#: ../../standalone/drakfont_.c:1116
+#, fuzzy
+msgid "Selected All"
+msgstr "Diuzit ar restr"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "Dibarzhoù sifrennañ"
+#: ../../standalone/drakfont_.c:1120
+#, fuzzy
+msgid "Remove List"
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+msgid "Initials tests"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
+#: ../../standalone/drakfont_.c:1145
+msgid "Copy fonts on your system"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-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."
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
msgstr ""
-"Kemmit ho Cd-Rom!\n"
-"\n"
-"Lakait el lenner ar Cd-Rom warnañ an diketenn \"%s\" mar plij ha gwaskit Mat "
-"eo da c'houde.\n"
-"Ma n'emañ ket ganeoc'h gwaskit Nullañ evit chom hep staliañ ar Cd-Rom-se."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "Polonek"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Mandrake Online"
-msgstr "MandrakeConsulting"
+#: ../../standalone/drakfont_.c:1153
+#, fuzzy
+msgid "Post Install"
+msgstr "Staliañ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
+#: ../../standalone/drakfont_.c:1178
+msgid "Remove fonts on your system"
msgstr ""
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
+#: ../../standalone/drakfont_.c:1182
+#, fuzzy
+msgid "Post Uninstall"
+msgstr "Dilezel ar staliadur"
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "Maskl rouedad"
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+#, fuzzy
+msgid "Internet Connection Sharing"
+msgstr "Lugerezh ar voullerez"
-#: ../../diskdrake/hd_gtk.pm:1
-#, fuzzy, c-format
-msgid "No hard drives found"
-msgstr "N'ev ket Moullerez lec'hel!\n"
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech doare CC"
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "2 nozelenn"
+#: ../../standalone/drakgw_.c:126
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "Ouzh pe borzh a-steud eo luget ho logodenn ?"
+#: ../../standalone/drakgw_.c:130
+#, fuzzy
+msgid "disable"
+msgstr "Taolenn"
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "Skridennad"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "Enrollañ war bladennig"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+#, fuzzy
+msgid "reconfigure"
+msgstr "Kefluniañ X"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer auto-detection"
-msgstr "Dilesadur"
+#: ../../standalone/drakgw_.c:133
+#, fuzzy
+msgid "Disabling servers..."
+msgstr "O tinoiñ trobarzhelloù..."
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Pehini eo ho takad-eur ?"
+#: ../../standalone/drakgw_.c:142
+#, fuzzy
+msgid "Internet connection sharing is now disabled."
+msgstr "Lugerezh ar voullerez"
-#: ../../services.pm:1
-#, 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."
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
msgstr ""
-"NFS a zo ur c'homenad brudet evit rannañ restroù dre rouedadoù TCP/IP.\n"
-"Ar servij-mañ a bourvez arc'hweloù ur servijer NFS, a vez kefluniaet dre ar\n"
-"restr /etc/exports."
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Msec"
-msgstr "Logodenn"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:150
msgid ""
-"=> Notice, a label changed:\n"
-"%s"
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
+#: ../../standalone/drakgw_.c:154
+#, fuzzy
+msgid "enable"
+msgstr "Taolenn"
+
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Ho tibab ? (%s dre ziouer)"
+#: ../../standalone/drakgw_.c:166
+#, fuzzy
+msgid "Internet connection sharing is now enabled."
+msgstr "Lugerezh ar voullerez"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:183
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"
+"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"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
"\n"
-"Click on \"%s\" if you wish to select partitions that will be checked for\n"
-"bad blocks on the disk."
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/drakgw_.c:211
#, c-format
-msgid "French"
-msgstr "Gall"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTY)"
-msgstr "Tchek (QWERTY)"
-
-#: ../../standalone/service_harddrake:1
-#, fuzzy, c-format
-msgid "Hardware probing in progress"
-msgstr "Poent marc'hañ doubl %s"
+msgid "Interface %s (using module %s)"
+msgstr ""
-#: ../../standalone/drakgw:1
+#: ../../standalone/drakgw_.c:212
#, fuzzy, c-format
-msgid "Net Device"
-msgstr "Servijer moullañ"
+msgid "Interface %s"
+msgstr "dedennus"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "Evit diverriñ"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:221
msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Next"
-msgstr "A heul"
-
-#: ../../bootloader.pm:1
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Pelec'h e mennit staliañ ar c'harger loc'hañ ?"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp)"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr ""
-#: ../../standalone/drakautoinst:1
+#: ../../standalone/drakgw_.c:228
#, c-format
msgid ""
+"There is only one configured network adapter on your system:\n"
"\n"
-"Welcome.\n"
+"%s\n"
"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/drakgw_.c:235
msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lituaniek QUERTY \"linenn sifroù\""
+#: ../../standalone/drakgw_.c:261
+#, fuzzy
+msgid "Network interface already configured"
+msgstr "Skramm ket kefluniet"
-#: ../../install_any.pm:1
+#: ../../standalone/drakgw_.c:262
#, c-format
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
+"Warning, the network adapter (%s) is already configured.\n"
"\n"
+"Do you want an automatic re-configuration?\n"
"\n"
-"Do you really want to remove these packages?\n"
+"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
+#: ../../standalone/drakgw_.c:267
+#, fuzzy
+msgid "Automatic reconfiguration"
+msgstr "Kefluniadur goude staliañ"
+
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "Domani NIS"
+#: ../../standalone/drakgw_.c:268
+#, fuzzy
+msgid "Show current interface configuration"
+msgstr "Kefluniañ ar modem"
+
+#: ../../standalone/drakgw_.c:269
+#, fuzzy
+msgid "Current interface configuration"
+msgstr "Kefluniañ ar modem"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:270
#, c-format
msgid ""
+"Current configuration of `%s':\n"
"\n"
-"- User Files:\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "Antartik"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
-msgstr "Dibarzhoù marc'hañ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Jamaica"
-msgstr "Jamaik"
-
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:283
msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
+"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"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
+"\n"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:290
+#, fuzzy
+msgid "Local Network adress"
+msgstr "kartenn rouedad kavet ebet"
+
+#: ../../standalone/drakgw_.c:294
msgid ""
-"Arguments: (arg, alert=1)\n"
+"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"
-"Enable/Disable name resolution spoofing protection. If\n"
-"\\fIalert\\fP is true, also reports to syslog."
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Gortozit mar plij, o prientiñ ar staliadur"
+#: ../../standalone/drakgw_.c:300
+#, fuzzy
+msgid "(This) DHCP Server IP"
+msgstr "IP ar servijer SMB"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "Tchek (QWERTZ)"
+#: ../../standalone/drakgw_.c:301
+#, fuzzy
+msgid "The DNS Server IP"
+msgstr "IP ar servijer SMB"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr ""
+#: ../../standalone/drakgw_.c:302
+#, fuzzy
+msgid "The internal domain name"
+msgstr "Moullerez lec'hel"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
msgstr ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "You must choose an image file first!"
-msgstr "Trobarzhell ar voullerez"
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore from Hard Disk."
-msgstr "Assevel adalek ar pladennig"
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "Ouzhpennañ da LVM"
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "Servijer DNS"
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
+msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "eeun"
+#: ../../standalone/drakgw_.c:335
+#, fuzzy
+msgid "Configuring..."
+msgstr "Kefluniañ IDE"
-#: ../../diskdrake/interactive.pm:1 ../../help.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "Skarañ an holl"
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:372
#, fuzzy, c-format
-msgid "No test pages"
-msgstr "Ya, moullit an div bajenn arnod"
+msgid "Problems installing package %s"
+msgstr "O staliañ ar pakad %s"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
+#: ../../standalone/drakgw_.c:505
+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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown model"
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
-msgstr ""
+#: ../../standalone/drakgw_.c:525
+#, fuzzy
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Lugerezh ar voullerez"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "authentication"
-msgstr "Dilesadur"
+#: ../../standalone/drakgw_.c:531
+#, fuzzy
+msgid "Internet connection sharing configuration"
+msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:539
#, fuzzy, c-format
-msgid "Backup Now"
-msgstr "Kefluniañ reizhiadoù restroù"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/_Restr"
+msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
+msgstr "Lugerezh ar voullerez"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr ""
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "group"
+msgstr "Strollad labour"
-#: ../../services.pm:1
-#, 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."
+#: ../../standalone/drakperm_.c:36
+msgid "path"
msgstr ""
-#: ../../network/ethernet.pm:1
-#, fuzzy, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
-msgstr "Pe seurt parzhadur a vennit ?"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "permissions"
+msgstr "parzhadur %s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr "Tamoul (reizhadur ISCII)"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "user"
+msgstr "Anv arveriad"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "%d KB\n"
-msgstr "Ment : %d Ko\n"
+#: ../../standalone/drakperm_.c:44
+#, fuzzy
+msgid "delete"
+msgstr "Dilemel"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "O krouiñ ur bladennig staliañ emgefreek"
+#: ../../standalone/drakperm_.c:45
+#, fuzzy
+msgid "edit"
+msgstr "Etre"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Searching for scanners ..."
-msgstr "Pakadoù hegerz"
+#: ../../standalone/drakperm_.c:46
+#, fuzzy
+msgid "Down"
+msgstr "Graet"
-#: ../../steps.pm:1
-#, fuzzy, c-format
-msgid "Partitioning"
-msgstr "Moullerez"
+#: ../../standalone/drakperm_.c:47
+#, fuzzy
+msgid "add a rule"
+msgstr "Ouzhpennañ un arveriad"
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
-msgstr "Rusi"
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
-msgstr "kartenn(où) ethernet kavoutet"
+#: ../../standalone/drakperm_.c:51
+msgid ""
+"Drakperm is used to see files to use in order to fix permissions, owners, "
+"and groups via msec.\n"
+"You can also edit your own rules which will owerwrite the default rules."
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
-msgstr "Syslog"
+#: ../../standalone/drakperm_.c:56
+#, fuzzy
+msgid "Add a new rule at the end"
+msgstr "Moullerez lec'hel"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create catalog!"
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
msgstr ""
-#: ../../share/advertising/11-mnf.pl:1
-#, 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."
+#: ../../standalone/drakperm_.c:58
+msgid "Up selected rule one level"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "Termeniñ tremenger root"
+#: ../../standalone/drakperm_.c:60
+#, fuzzy
+msgid "Delete selected rule"
+msgstr "Lemel ar steudad"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "Goude adventañ ar parzhadur %s e vo kollet holl roadoù ar parzhadur-se"
+#: ../../standalone/drakperm_.c:231
+#, fuzzy
+msgid "Current user"
+msgstr "Aotren an arveriad"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Internet connection configuration"
-msgstr "Lugerezh ar voullerez"
+#: ../../standalone/drakperm_.c:236
+#, fuzzy
+msgid "Permissions"
+msgstr "Stumm : %s\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Please enter the maximum size\n"
-" allowed for Drakbackup (Mb)"
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
-msgstr ""
+#: ../../standalone/drakperm_.c:238
+#, fuzzy
+msgid "Property"
+msgstr "Paour"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_About..."
-msgstr "/_A-brepoz"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
-msgstr "Dibarzh : "
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Wizard..."
-msgstr "Skoazeller..."
+#: ../../standalone/drakperm_.c:296
+msgid ""
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
+msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
+#: ../../standalone/drakperm_.c:297
+msgid "Use owner id for execution"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "Krouiñ ur bladennig loc'hañ"
+#: ../../standalone/drakperm_.c:298
+msgid "Use group id for execution"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "Inizi Salaun"
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
+msgstr ""
-#: ../../standalone/mousedrake:1
-#, fuzzy, c-format
-msgid "Please test your mouse:"
-msgstr "Dibabit seurt ho logodenn, mar plij."
+#: ../../standalone/drakperm_.c:304
+#, fuzzy
+msgid "Path selection"
+msgstr "Diuz pakadoù unan hag unan"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(mollad %s)"
+#: ../../standalone/drakperm_.c:350
+#, fuzzy
+msgid "user :"
+msgstr "Anv arveriad"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
+#: ../../standalone/drakperm_.c:352
+#, fuzzy
+msgid "group :"
msgstr "Strollad labour"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer host name or IP"
-msgstr "Anv ar voullerez"
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Path or Module"
+#: ../../standalone/draksound_.c:47
+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 ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
+#: ../../standalone/draksound_.c:54
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Show current interface configuration"
-msgstr "Kefluniañ ar modem"
+#: ../../standalone/draksplash_.c:21
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Development"
-msgstr "Diorren"
+#: ../../standalone/draksplash_.c:67
+#, fuzzy
+msgid "first step creation"
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../any.pm:1 ../../diskdrake/dav.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#: ../../help.pm:1 ../../interactive/http.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "Done"
-msgstr "Graet"
+#: ../../standalone/draksplash_.c:70
+#, fuzzy
+msgid "final resolution"
+msgstr "Spister"
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Web Server"
-msgstr "Servijer"
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+#, fuzzy
+msgid "choose image file"
+msgstr "Dibabit ur restr"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
+#: ../../standalone/draksplash_.c:72
+#, fuzzy
+msgid "Theme name"
+msgstr "Anv rannet"
+
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "Chili"
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Kefluniañ servijoù"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:90
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."
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:91
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!"
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "(ouzhpennet %s endeo)"
-
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Bootloader installation in progress"
-msgstr "Staliadur c'harger loc'hañ"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Add/Del Users"
-msgstr "Ouzhpennañ un arveriad"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
+#: ../../standalone/draksplash_.c:95
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
msgstr ""
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
msgstr ""
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Here is the full list of available countries"
-msgstr "stokellaoueg"
+#: ../../standalone/draksplash_.c:113
+#, fuzzy
+msgid "Preview"
+msgstr "trobarzhell"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Alternative test page (A4)"
-msgstr "O voullañ pajenn(où) skrid..."
+#: ../../standalone/draksplash_.c:115
+#, fuzzy
+msgid "Save theme"
+msgstr "Staliañ ar reizhiad"
-#: ../../install_steps_interactive.pm:1
-#, 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."
+#: ../../standalone/draksplash_.c:116
+#, fuzzy
+msgid "Choose color"
+msgstr "Dibabit ur skramm"
+
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
msgstr ""
-"M'hoc'h eus an holl CDoù er roll a-is, gwaskit Mat eo.\n"
-"Ma n'hoc'h eus hini eus ar CDoù-se, gwaskit Nullañ.\n"
-"Ma fazi deoc'h lod eus ar CDoù, andiuzit anezho ha gwaskit Mat eo."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, c-format
-msgid "PAP"
-msgstr "PAP"
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup user files"
-msgstr "Restr gwareziñ siek"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
+msgstr ""
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "New"
-msgstr "Nevez"
+#: ../../standalone/draksplash_.c:428
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/draksplash_.c:449
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Trobarzhell ar voullerez"
+
+#: ../../standalone/draksplash_.c:458
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "O tinoiñ trobarzhelloù..."
-#: ../../help.pm:1
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:46
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"
+"XawTV isn't installed!\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"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
"\n"
-"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 ""
-
-#: ../../help.pm:1
-#, 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."
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "Assevel adalek ar pladennig"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Ar pakadoù a-heul a zo war-nes bezañ staliet/lamet"
+#: ../../standalone/drakxtv_.c:63
+#, fuzzy
+msgid "Canada (cable)"
+msgstr "Kanadian (Kebek)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "Norvegek"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Searching for new scanners ..."
-msgstr "Pakadoù hegerz"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "select path to restore (instead of /)"
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Configure bootsplash picture"
-msgstr "Kefluniañ servijoù"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "Sina"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr "Jeorji"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Reading data of installed printers..."
-msgstr "Pakadoù hegerz"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "servijer"
-
-#: ../../install_any.pm:1
-#, fuzzy, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Lakait ur bladennig el lenner %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Amprouiñ ar c'hefluniadur"
-
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Degemer mat e GRUB an dibaber reizhiad oberia¤ !"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
+#: ../../standalone/drakxtv_.c:65
+msgid "East Europe"
msgstr ""
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
-msgstr ""
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Gall"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Zeroconf Host name"
-msgstr "Anv an ostiz"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "Ireland"
+msgstr "Islandek"
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Er furmad 1.2.3.4 e tlefe bezañ ar chomlec'h IP"
+#: ../../standalone/drakxtv_.c:65
+msgid "West Europe"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "Kehider"
+#: ../../standalone/drakxtv_.c:66
+#, fuzzy
+msgid "Australia"
+msgstr "a-steud"
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Add an item"
-msgstr "Ouzhpennañ un arveriad"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:102
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"Please,\n"
+"type in your tv norm and country"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sao Tome and Principe"
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaidjanek (latin)"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Package not installed"
-msgstr "Dilezel ar staliadur"
-
-#: ../../share/advertising/12-mdkexpert.pl:1
-#, fuzzy, c-format
-msgid "Become a MandrakeExpert"
-msgstr "MandrakeExpert"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "American Samoa"
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Protocol"
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Copy fonts on your system"
+#: ../../standalone/drakxtv_.c:120
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Ur fazi a zo bet en ur staliañ ar pakadoù :"
+
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Kefluniañ ar proksioù"
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakxtv_.c:148
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"
-" DrakBackup Report Details\n"
+"\n"
+"You can visit our hardware database at:\n"
"\n"
"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
-msgstr ""
+#: ../../standalone/harddrake2_.c:17
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "O voullañ pajenn(où) skrid..."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
+#: ../../standalone/harddrake2_.c:21
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "N'hellit ket diuz/andiuz ar pakad-mañ"
-
-#: ../../diskdrake/interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../network/modem.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "Ho evezh"
+#: ../../standalone/harddrake2_.c:22
+#, fuzzy
+msgid "Channel"
+msgstr "Nullañ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remote host name"
-msgstr "Anv an ostiz a-bell"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "deactivate now"
-msgstr "Bevaat"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
+#: ../../standalone/harddrake2_.c:23
+msgid ""
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
msgstr ""
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "Krouiñ ur parzhadur nevez"
+#: ../../standalone/harddrake2_.c:26
+#, fuzzy
+msgid "Bus identification"
+msgstr "Dilesadur"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Italy"
-msgstr "Itali"
+#: ../../standalone/harddrake2_.c:27
+msgid ""
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "Anv ar moullerez"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "disable"
-msgstr "Taolenn"
+#: ../../standalone/harddrake2_.c:30
+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 ""
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "fazi en ur zivarc'hañ %s : %s"
+#: ../../standalone/harddrake2_.c:33
+#, fuzzy
+msgid "Cache size"
+msgstr "ment diaoz"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do it!"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Select model manually"
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Format"
-msgstr "Furmadiñ"
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
+msgstr ""
-#: ../../network/adsl.pm:1
-#, 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'"
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
-msgstr "A bep sort"
+#: ../../standalone/harddrake2_.c:36
+#, fuzzy
+msgid "Cpuid level"
+msgstr "Live surentez"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:37
msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+#: ../../standalone/harddrake2_.c:38
+msgid "This field describes the device"
msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
-msgstr "Albaniek"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "Lituani"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "Fetis"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Detected model: %s %s"
-msgstr "Poent marc'hañ doubl %s"
+#: ../../standalone/harddrake2_.c:39
+#, fuzzy
+msgid "Old device file"
+msgstr "Diuzit ar restr"
-#: ../../share/advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Local files"
-msgstr "Restroù lec'hel"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "marteze"
+#: ../../standalone/harddrake2_.c:41
+#, fuzzy
+msgid "New devfs device"
+msgstr "Trobarzhell an dreuzell"
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Can't open %s!"
-msgstr "Fazi en ur zigeriñ %s evit skrivañ : %s"
+#: ../../standalone/harddrake2_.c:43
+#, fuzzy
+msgid "Module"
+msgstr "Logodenn"
-#: ../../Xconfig/various.pm:1
-#, 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?"
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "Skramm"
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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"
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil liv (16 bit)"
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/harddrake2_.c:46
msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove fonts on your system"
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
msgstr ""
-#: ../../standalone/drakgw:1
-#, 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."
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "X pa loc'her"
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please enter the directory to save:"
-msgstr "Dibabit seurt ho logodenn, mar plij."
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
msgstr ""
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Ket a-walc'h a parzhadurioù evit RAID live %d\n"
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "local config: true"
-msgstr "Kefluniañ X"
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../standalone/harddrake2_.c:53
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."
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-"Setu da heul ar steudadoù moullañ.\n"
-"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connected"
-msgstr "Anv ar gevreadenn"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
-msgstr "Makedonia"
+#: ../../standalone/harddrake2_.c:55
+#, fuzzy
+msgid "Floppy format"
+msgstr "Furmadiñ"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "/Restr/_Enrollañ"
+#: ../../standalone/harddrake2_.c:56
+#, fuzzy
+msgid "Level"
+msgstr "live"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "Mali"
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "No details"
-msgstr "Munudoù"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
+msgstr ""
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "brav-tre"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Preview"
-msgstr "trobarzhell"
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+#, fuzzy
+msgid "Model"
+msgstr "Logodenn"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Remote Control"
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
+#: ../../standalone/harddrake2_.c:58
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memor kartenn (DMA)"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please select media for backup..."
-msgstr "Diuzit ar yezh da implijout, mar plij."
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Servijer XFree86 : %s\n"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Model name"
+msgstr "Dibarzhoù ar mollad :"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Allow Thin Clients"
+#: ../../standalone/harddrake2_.c:60
+msgid "Official vendor name of the cpu"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Jorjiek (reizhadur \"Rusiek\")"
-
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "/_Options"
-msgstr "Parzhadur"
+#: ../../standalone/harddrake2_.c:61
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 nozelenn"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Your printer model"
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
+#: ../../standalone/harddrake2_.c:62
+#, fuzzy
+msgid "Name"
+msgstr "Anv: "
-#: ../../any.pm:1
-#, 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)."
-msgstr ""
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "network printer port"
+msgstr "Dibarzhoù ar voullerez NetWare"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
+#: ../../standalone/harddrake2_.c:64
+msgid "the number of the processor"
msgstr ""
-#: ../../share/advertising/04-configuration.pl:1
-#, fuzzy, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "Kefluniañ ar proksioù"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Save"
-msgstr "Enrollañ"
+#: ../../standalone/harddrake2_.c:65
+#, fuzzy
+msgid "Model stepping"
+msgstr "O furmadiñ"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr ""
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Disk"
-msgstr "Danek"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Enter a printer device URI"
-msgstr "Trobarzhell ar voullerez"
+#: ../../standalone/harddrake2_.c:66
+#, fuzzy
+msgid "The type of bus on which the mouse is connected"
+msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outañ, mar plij."
-#: ../../share/advertising/01-thanks.pl:1
-#, 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."
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "Israel"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "Gwiana gallek"
+#: ../../standalone/harddrake2_.c:68
+msgid "the vendor name of the processor"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "default:LTR"
+#: ../../standalone/harddrake2_.c:82
+#, fuzzy
+msgid "/_Quit"
+msgstr "Kuitaat"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "add a rule"
-msgstr "Ouzhpennañ un arveriad"
+#: ../../standalone/harddrake2_.c:83
+#, fuzzy
+msgid "/Autodetect _printers"
+msgstr "Dilesadur"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
-msgstr ""
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+#, fuzzy
+msgid "/_Options"
+msgstr "Parzhadur"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
-msgstr ""
+#: ../../standalone/harddrake2_.c:85
+#, fuzzy
+msgid "/Autodetect _modems"
+msgstr "Dilesadur"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Transfer printer configuration"
-msgstr "Kefluniañ ar proksioù"
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
+msgstr "/_Skoazell"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Mennout a rit implijout aboot ?"
+#: ../../standalone/harddrake2_.c:89
+msgid "/_Help..."
+msgstr "/_Skoazell..."
-#: ../../install_steps_interactive.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "%s (Port %s)"
-msgstr "Paour"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use network connection to backup"
-msgstr "Restr gwareziñ siek"
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:93
msgid ""
-"Arguments: (arg)\n"
+"Description of the fields:\n"
"\n"
-" Enable/Disable sulogin(8) in single user level."
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:96
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."
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "Aotren an arveriad"
-
-#: ../../diskdrake/dav.pm:1 ../../help.pm:1
-#, c-format
-msgid "Server"
-msgstr "Servijer"
+#: ../../standalone/harddrake2_.c:96
+#, fuzzy
+msgid "Select a device !"
+msgstr "Diuzit ur gartenn c'hrafek"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "Dibab fall, klaskit adarre\n"
+#: ../../standalone/harddrake2_.c:102
+#, fuzzy
+msgid "/_About..."
+msgstr "Marc'hañ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
+#: ../../standalone/harddrake2_.c:105
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "Tremen er mod mailh"
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
-msgstr ""
+#: ../../standalone/harddrake2_.c:106
+#, fuzzy
+msgid "Author:"
+msgstr "Embrouiñ"
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Er furmad 1.2.3.4 e tlefe bezañ ar chomlec'h IP"
+#: ../../standalone/harddrake2_.c:113
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Poent marc'hañ doubl %s"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
-msgstr ""
+#: ../../standalone/harddrake2_.c:119
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Dinoiñ ar bladenn galet"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Looking at packages already installed..."
-msgstr "N'hellit ket andiuz ar pakad-mañ. Staliet eo endo"
+#: ../../standalone/harddrake2_.c:126
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Gwelet titouroù periantel"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
-msgstr ""
+#: ../../standalone/harddrake2_.c:129
+#, fuzzy
+msgid "Information"
+msgstr "Diskouez titouroù"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Driver"
-msgstr "Servijer"
+#: ../../standalone/harddrake2_.c:131
+#, fuzzy
+msgid "Configure module"
+msgstr "Kefluniañ al logodenn"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/harddrake2_.c:143
#, fuzzy, c-format
-msgid "Printer on remote lpd server"
-msgstr "lpd a-bell"
+msgid "Running \"%s\" ..."
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/harddrake2_.c:159
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."
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "Logodenn ebet"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "Alamagn"
+#: ../../standalone/harddrake2_.c:231
+#, fuzzy
+msgid "secondary"
+msgstr "%d eilenn"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
-msgstr "Aostria"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect modems"
+msgstr "Dilesadur"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect printers"
+msgstr "Dilesadur"
-#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "Plegañ ar wezenn"
+#: ../../standalone/harddrake2_.c:261
+#, fuzzy
+msgid "/Options"
+msgstr "Parzhadur"
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Auto Install Configurator"
-msgstr "Kefluniadur goude staliañ"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "Kefluniañ ur rouedad"
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "Pelec'h e mennit staliañ ar c'harger loc'hañ ?"
+#: ../../standalone/livedrake_.c:18
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "Kemmañ ar spister"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/livedrake_.c:19
+#, fuzzy
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"
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"Kemmit ho Cd-Rom!\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."
+"Lakait el lenner ar Cd-Rom warnañ an diketenn \"%s\" mar plij ha gwaskit Mat "
+"eo da c'houde.\n"
+"Ma n'emañ ket ganeoc'h gwaskit Nullañ evit chom hep staliañ ar Cd-Rom-se."
+
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
msgstr ""
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Assevel adalek ar restr %s sac'het %s"
+#: ../../standalone/logdrake_.c:68
+msgid "Show only for the selected day"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logodenn Logitech (a-steud, seurt C7 kozh)"
+#: ../../standalone/logdrake_.c:75
+#, fuzzy
+msgid "/File/_New"
+msgstr "Restroù :\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "New devfs device"
-msgstr "Trobarzhell an dreuzell"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
msgstr ""
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Boot Style Configuration"
-msgstr "Kefluniadur goude staliañ"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
+msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Automatic time synchronization"
-msgstr "Kefluniadur goude staliañ"
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr "/Restr/_Enrollañ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
msgstr ""
-#: ../../share/advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.1"
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "Armeniek (soniadel)"
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr "/Restr/-"
-#: ../../harddrake/v4l.pm:1
-#, fuzzy, c-format
-msgid "Card model:"
-msgstr "Memor kartenn (DMA)"
+#: ../../standalone/logdrake_.c:82
+#, fuzzy
+msgid "/Options/Test"
+msgstr "Parzhadur"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Start Server"
-msgstr "Servijer NIS"
+#: ../../standalone/logdrake_.c:145
+#, fuzzy
+msgid "User"
+msgstr "Anv arveriad"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr ""
+#: ../../standalone/logdrake_.c:146
+#, fuzzy
+msgid "Messages"
+msgstr "Amprouiñ ar porzhioù"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "All remote machines"
-msgstr "Moullerezio* a-bell"
+#: ../../standalone/logdrake_.c:147
+msgid "Syslog"
+msgstr "Syslog"
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Install themes"
-msgstr "Staliañ ar reizhiad"
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-" updates 2002 MandrakeSoft by Stew Benedict <sbenedict@mandrakesoft.com>"
+#: ../../standalone/logdrake_.c:151
+#, fuzzy
+msgid "search"
+msgstr "Klask"
+
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "O prientiñ ar staliadur"
+#: ../../standalone/logdrake_.c:167
+#, fuzzy
+msgid "matching"
+msgstr "O vrasjediñ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Add User -->"
-msgstr "Ouzhpennañ un arveriad"
+#: ../../standalone/logdrake_.c:172
+#, fuzzy
+msgid "Choose file"
+msgstr "Dibabit un obererezh"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "True Type fonts installation"
-msgstr "O prientiñ ar staliadur"
+#: ../../standalone/logdrake_.c:191
+#, fuzzy
+msgid "Content of the file"
+msgstr "Anv ar gevreadenn"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+msgid "Mail alert"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../standalone/logdrake_.c:245
#, fuzzy, c-format
-msgid "LAN configuration"
-msgstr "Kefluniadur"
+msgid "please wait, parsing file: %s"
+msgstr "O prientiñ ar staliadur"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "hard disk model"
-msgstr "Memor kartenn (DMA)"
+#: ../../standalone/logdrake_.c:392
+#, fuzzy
+msgid "Mail alert configuration"
+msgstr "Kefluniañ ar proksioù"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
+#: ../../standalone/logdrake_.c:393
+msgid ""
+"Welcome to the mail configuration utility.\n"
+"\n"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "Iraniek"
+#: ../../standalone/logdrake_.c:401
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Anv ar domani"
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
-msgstr "Kroati"
+#: ../../standalone/logdrake_.c:402
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Servijer NIS"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "Treuzell : "
+#: ../../standalone/logdrake_.c:403
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Stlennvonioù"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Add server"
-msgstr "Ouzhpennañ un arveriad"
+#: ../../standalone/logdrake_.c:404
+#, fuzzy
+msgid "Samba Server"
+msgstr "Servijer NIS"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remote printer name"
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
+#: ../../standalone/logdrake_.c:405
+#, fuzzy
+msgid "SSH Server"
+msgstr "Servijer NIS"
-#: ../../share/advertising/10-security.pl:1
-#, 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."
-msgstr ""
+#: ../../standalone/logdrake_.c:406
+#, fuzzy
+msgid "Webmin Service"
+msgstr "trobarzhell"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "Trobarzhell : "
+#: ../../standalone/logdrake_.c:407
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Servijer moullañ"
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Printerdrake"
-msgstr "Moullerez"
+#: ../../standalone/logdrake_.c:414
+#, fuzzy
+msgid "service setting"
+msgstr "dedennus"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
+#: ../../standalone/logdrake_.c:415
+msgid ""
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "System Options"
-msgstr "Dibarzhoù ar mollad :"
+#: ../../standalone/logdrake_.c:428
+#, fuzzy
+msgid "load setting"
+msgstr "O furmadiñ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please enter the directory where backups are stored"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid "Please choose the desired security level"
-msgstr "Dibabit al live surentez"
+#: ../../standalone/logdrake_.c:444
+#, fuzzy
+msgid "alert configuration"
+msgstr "Kefluniañ ar proksioù"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr ""
+#: ../../standalone/logdrake_.c:445
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Klaskit adarre mar plij"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid ", USB printer"
-msgstr ", Mouluriez USB \\/*%s"
+#: ../../standalone/logdrake_.c:486
+#, fuzzy
+msgid "Save as.."
+msgstr "Meuziad Lañsañ"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Dibabit ar parzhadur a vennit furmadiñ"
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "Kefluniañ X"
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
+msgstr "Kendarvan an trede nozelenn ?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turkek (hengounel doare \"F\")"
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "Gourc'hemennoù!"
+#: ../../standalone/net_monitor_.c:96
+#, fuzzy
+msgid "Profile "
+msgstr "marc'hañ sac'het : "
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Down"
-msgstr "Graet"
+#: ../../standalone/net_monitor_.c:103
+#, fuzzy
+msgid "Sending Speed:"
+msgstr "Enrollañ er restr"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
msgstr ""
-#: ../../network/modem.pm:1
-#, fuzzy, c-format
-msgid "Install rpm"
-msgstr "Staliañ"
+#: ../../standalone/net_monitor_.c:106
+#, fuzzy
+msgid "Connection Time: "
+msgstr "Anv ar gevreadenn"
-#: ../../printer/printerdrake.pm:1
-#, 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"
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "Amzer a chom"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "Stokellaoueg RU"
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "Divarc'hañ"
+#: ../../standalone/net_monitor_.c:147
+#, fuzzy
+msgid "Wait please, testing your connection..."
+msgstr "Kefluniañ ur rouedad"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Uninstall Fonts"
-msgstr "O tistaliañ ar RPMoù"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Anv ar gevreadenn"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft IntelliMouse"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Anv ar gevreadenn"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "Alaman (stokell marv ebet)"
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil liv (15 bit)"
+#: ../../standalone/net_monitor_.c:225
+#, fuzzy
+msgid "Connection complete."
+msgstr "Anv ar gevreadenn"
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:226
msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Reboot"
-msgstr "Gwrizienn"
+#: ../../standalone/net_monitor_.c:330
+#, fuzzy
+msgid "Color configuration"
+msgstr "Kefluniañ ar proksioù"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
msgstr ""
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Mandrake Control Center"
-msgstr "Anv ar gevreadenn"
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
+msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, 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."
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Monitor\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"monitor connected to your machine. If it is correct, you can choose from\n"
-"this list the monitor you actually have connected to your computer."
+#: ../../standalone/net_monitor_.c:400
+#, fuzzy
+msgid "Local measure"
+msgstr "Restroù lec'hel"
+
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Tape \n"
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
msgstr ""
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../standalone/net_monitor_.c:453
msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
+"Warning, another internet connection has been detected, maybe using your "
+"network"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/net_monitor_.c:459
#, fuzzy, c-format
-msgid "Remember this password"
-msgstr "Tremenger ebet"
+msgid "Connect %s"
+msgstr "Anv ar gevreadenn"
-#: ../../standalone/drakgw:1
+#: ../../standalone/net_monitor_.c:459
#, fuzzy, c-format
-msgid "Internet Connection Sharing is now enabled."
+msgid "Disconnect %s"
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr ""
+#: ../../standalone/printerdrake_.c:47
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
+#: ../../standalone/scannerdrake_.c:39
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "O tinoiñ trobarzhelloù..."
+
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
+msgstr "Amprouiñ ar porzhioù"
-#: ../../help.pm:1 ../../install_interactive.pm:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, c-format
-msgid "Use the free space on the Windows partition"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:54
#, fuzzy, c-format
-msgid "%s found on %s, configure it automatically?"
+msgid "%s found on %s, configure it?"
msgstr "Mennout a rit kefluniañ ur voullerez ?"
-#: ../../security/help.pm:1
+#: ../../standalone/scannerdrake_.c:57
#, c-format
-msgid ""
-"Arguments: (arg)\n"
-"\n"
-"Use password to authenticate users."
-msgstr ""
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Sturier XFree86 : %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
+msgid "%s is not in the scanner database, configure it manually?"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Dibabit ar pakadoù a vennit staliañ"
+#: ../../standalone/scannerdrake_.c:63
+#, fuzzy
+msgid "Select a scanner"
+msgstr "Diuzit ur gartenn c'hrafek"
-#: ../../lang.pm:1
+#: ../../standalone/scannerdrake_.c:91
#, c-format
-msgid "Papua New Guinea"
+msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/scannerdrake_.c:105
#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "Serbiek (reizhadur latin)"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "Ha mennout a rit amprouiñ moullañ skrid ?"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "O krouiñ ar bladenn loc'hañ"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Kefluniañ ur rouedad"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "O tizenaouiñ ar rouedad"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "Anv ereañ"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS a zo ur c'homenad brudet evit rannañ restroù dre rouedadoù\n"
-"TCP/IP. Ar servij-mañ a bourvez un arc'hwel morailhañ restroù NFS."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "O tizenaouiñ ar rouedad"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit raid modules"
-msgstr ""
+#: ../../standalone/scannerdrake_.c:107
+#, fuzzy
+msgid "choose device"
+msgstr "Trobarzhell loc'hañ"
-#: ../../services.pm:1
+#: ../../standalone/scannerdrake_.c:113
#, c-format
msgid ""
-"lpd is the print daemon required for lpr to work properly. It is\n"
-"basically a server that arbitrates print jobs to printer(s)."
-msgstr ""
-"An diaoul moullañ ret evit ma dafez en-ro reizh lpr eo lpd. Dre vras\n"
-"ez eo ur servijer a vera dleadoù moullañ evir ar voullerez(ed)."
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Internet Connection Configuration"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../standalone/scannerdrake_.c:118
#, 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\")"
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
msgstr ""
-#: ../../standalone/drakperm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "Move selected rule up one level"
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "I can't find any room for installing"
-msgstr "N'hellan ouzpennañ parzhadur ebet ken"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Default printer"
-msgstr "Moullerez lec'hel"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Modify RAID"
-msgstr "Kemmañ RAID"
-
-#: ../../network/isdn.pm:1
-#, 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."
-msgstr ""
+#: ../../standalone/service_harddrake_.c:64
+#, fuzzy
+msgid "Hardware probing in progress"
+msgstr "Poent marc'hañ doubl %s"
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr "Ouzhpennañ un arveriad"
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "Dibabit ho yezh"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "Pladennoù RAID %s\n"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "Diuzit renkad ar staliadur"
-#: ../../lang.pm:1
-#, c-format
-msgid "Liberia"
-msgstr "Liberia"
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
+msgstr "Dinoiñ ar bladenn galet"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "Kefluniañ al logodenn"
-#: ../../steps.pm:1
-#, c-format
+#: ../../steps.pm_.c:18
msgid "Choose your keyboard"
msgstr "Dibabit ho stokellaoueg"
-#: ../../steps.pm:1
-#, c-format
-msgid "Format partitions"
-msgstr "Furmadiñ parzhadurioù"
+#: ../../steps.pm_.c:19
+msgid "Security"
+msgstr "Diogelroez"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Kefluniadur goude staliañ"
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "Kefluniañ reizhiadoù restroù"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Running \"%s\" ..."
-msgstr "Dibarzhoù ar voullerez lpd a-bell"
+#: ../../steps.pm_.c:21
+msgid "Format partitions"
+msgstr "Furmadiñ parzhadurioù"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "enable radio support"
-msgstr ""
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "Dibabit pakadoù da staliañ"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Moullerez"
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "Staliañ ar reizhiad"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Anv ar restr saveteiñ : %s"
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "Ouzhpennañ un arveriad"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "Kefluniañ ur rouedad"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not transfer printers"
-msgstr ""
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "Kefluniañ servijoù"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Delay before booting the default image"
-msgstr "Gedvezh kent loc'hañ ar skeudenn dre ziouer"
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "Staliañ ar c'harger loc'hañ"
-#: ../../standalone/drakfont:1
-#, 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"
-msgstr ""
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "Krouiñ ur bladennig loc'hañ"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "user"
-msgstr "arveriad"
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "Kefluniañ X"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use Hard Disk to backup"
-msgstr "Restr gwareziñ siek"
+#: ../../steps.pm_.c:34
+#, fuzzy
+msgid "Install system updates"
+msgstr "Staliañ ar reizhiad"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakgw:1
-#, c-format
-msgid "Configure"
-msgstr "Kefluniañ"
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "Dilezel ar staliadur"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake"
-msgstr "Scannerdrake"
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
-msgstr ""
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "Web/FTP"
-#: ../../network/network.pm:1
-#, 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."
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Network Computer (client)"
+msgstr "Dibarzhoù ar voullerez NetWare"
+
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
msgstr ""
-"Roit ho anv ostiz mar plij.\n"
-"Un anv peurzoareet a zlefe bezañ hini o ostiz,\n"
-"evel ``mabenveg.mastal.makomp.com''.\n"
-"Gallout a rit ivez reiñ chomlec'h IP an dreuzell m'hoc'h eus unan"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Select Printer Spooler"
-msgstr "Diuzit lugerezh ar voullerez"
+#: ../../share/compssUsers:999
+msgid "Office"
+msgstr "Burev"
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Create new theme"
-msgstr "Krouiñ ur parzhadur nevez"
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Gnome Workstation"
+msgstr "Titouroù"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "No image found"
-msgstr "N'ev ket Moullerez lec'hel!\n"
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Workstation"
+msgstr "Titouroù"
-#: ../../install_steps.pm:1
-#, 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"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Detected model: %s"
-msgstr "Poent marc'hañ doubl %s"
-
-#: ../../standalone/drakedm:1
-#, 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."
+#: ../../share/compssUsers:999
+msgid "Domain Name and Network Information Server"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
+#: ../../share/compssUsers:999
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Azerbaijan"
+#: ../../share/compssUsers:999
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
+#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+#: ../../share/compssUsers:999
+msgid "Books and Howto's on Linux and Free Software"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Penaos eo luget ar voullerez ?"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security level"
-msgstr "Live surentez"
-
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "final resolution"
-msgstr "Spister"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, fuzzy, c-format
-msgid "Services"
-msgstr "trobarzhell"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 Mo"
-
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Office Workstation"
+msgid "KDE Workstation"
msgstr "Titouroù"
#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Game station"
-msgstr "Teuliadur"
+msgid "Multimedia - Video"
+msgstr "Liesvedia"
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Multimedia station"
-msgstr "Liesvedia"
+msgid "Database"
+msgstr "Stlennvonioù"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
+msgid "PostgreSQL or MySQL database server"
msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Internet station"
-msgstr "Kefluniañ ar proksioù"
+msgid "Tools to ease the configuration of your computer"
+msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "Liesvedia"
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer (client)"
-msgstr "Dibarzhoù ar voullerez NetWare"
+msgid "Documentation"
+msgstr "Teuliadur"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
+msgid "Console Tools"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Kefluniadur"
+msgid "Postfix mail server, Inn news server"
+msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Tools to ease the configuration of your computer"
-msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
+msgid "Internet station"
+msgstr "Kefluniañ ar proksioù"
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Scientific Workstation"
-msgstr "Titouroù"
+msgid "Multimedia station"
+msgstr "Liesvedia"
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
+msgid "Configuration"
+msgstr "Kefluniadur"
+
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Console Tools"
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
+msgid "Graphical Environment"
msgstr ""
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "KDE Workstation"
-msgstr "Titouroù"
+msgid "Development"
+msgstr "Diorren"
#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: ../../share/compssUsers:999
+msgid "Tools to create and burn CD's"
msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Gnome Workstation"
+msgid "Office Workstation"
msgstr "Titouroù"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
+msgid "Graphics programs such as The Gimp"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
+msgid "DNS/NIS "
+msgstr "DNS/NIS"
#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Teuliadur"
+#, fuzzy
+msgid "Network Computer server"
+msgstr "Dibarzhoù ar voullerez NetWare"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
+msgid "Mail/Groupware/News"
msgstr ""
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr ""
+#, fuzzy
+msgid "Game station"
+msgstr "Teuliadur"
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
+msgid "Video players and editors"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "Liesvedia"
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "Mail"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
msgstr ""
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Postfix mail server"
-msgstr "Stlennvonioù"
+msgid "Personal Finance"
+msgstr ""
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Database"
-msgstr "Stlennvonioù"
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
+msgid "Clients for different protocols including ssh"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
+msgid "LSB"
msgstr ""
#: ../../share/compssUsers:999
@@ -17312,272 +13461,163 @@ msgid "Internet gateway"
msgstr "dedennus"
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS"
+msgid "Sound and video playing/editing programs"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
+msgid "Other Graphical Desktops"
msgstr ""
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer server"
-msgstr "Dibarzhoù ar voullerez NetWare"
+msgid "Editors, shells, file tools, terminals"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
+msgid "Programs to manage your finance, such as gnucash"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
+msgid "Personal Information Management"
msgstr ""
+#: ../../share/compssUsers:999
#, fuzzy
-#~ msgid "help"
-#~ msgstr "Skoazell"
-
-#
-#, fuzzy
-#~ msgid "Please check if you are using CDRW media"
-#~ msgstr "Klikit war ur parzhadur mar plij"
-
-#
-#, fuzzy
-#~ msgid "Please check if you are using a DVDRAM device"
-#~ msgstr "Klikit war ur parzhadur mar plij"
-
-#
-#, fuzzy
-#~ msgid "Please check if you are using a DVDR device"
-#~ msgstr "Klikit war ur parzhadur mar plij"
-
-#
-#, fuzzy
-#~ msgid "Please check for multisession CD"
-#~ msgstr "Klikit war ur parzhadur mar plij"
-
-#, fuzzy
-#~ msgid "We are now going to configure the %s connection."
-#~ msgstr "Kefluniañ ur rouedad"
-
-#~ msgid "Name: %s\n"
-#~ msgstr "Anv : %s\n"
-
-#, fuzzy
-#~ msgid "New configuration (isdn-light)"
-#~ msgstr "o lenn ar c'hefluniadur"
-
-#, fuzzy
-#~ msgid "Old configuration (isdn4net)"
-#~ msgstr "o lenn ar c'hefluniadur"
-
-#, fuzzy
-#~ msgid "Internet connection & configuration"
-#~ msgstr "Lugerezh ar voullerez"
-
-#, fuzzy
-#~ msgid "Configure the connection"
-#~ msgstr "Kefluniañ ur rouedad"
+msgid "Multimedia - CD Burning"
+msgstr "Liesvedia"
+#: ../../share/compssUsers:999
#, fuzzy
-#~ msgid "Disconnect"
-#~ msgstr "Lugerezh ar voullerez"
+msgid "Scientific Workstation"
+msgstr "Titouroù"
#, fuzzy
-#~ msgid "Connect"
-#~ msgstr "Anv ar gevreadenn"
+#~ msgid "cpu number "
+#~ msgstr "Niverenn bellgomz"
-#, fuzzy
#~ msgid ""
+#~ "You now have the opportunity to download encryption software.\n"
#~ "\n"
-#~ "You can reconfigure your connection."
-#~ msgstr "Kefluniañ ur rouedad"
-
-#, fuzzy
-#~ msgid ""
+#~ "WARNING:\n"
#~ "\n"
-#~ "You can connect to the Internet or reconfigure your connection."
-#~ msgstr "Anv ar gevreadenn"
-
-#, fuzzy
-#~ msgid "You are not currently connected to the Internet."
-#~ msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
-
-#, fuzzy
-#~ msgid "You are currently connected to the Internet."
-#~ msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
-
-#, fuzzy
-#~ msgid "Write %s"
-#~ msgstr "XFree %s"
-
-#, fuzzy
-#~ msgid "Copy %s to %s"
-#~ msgstr "Adskrivañ %s"
-
-#, fuzzy
-#~ msgid "Author:"
-#~ msgstr "Embrouiñ"
-
-#, fuzzy
-#~ msgid "Audio station"
-#~ msgstr "Liesvedia"
-
-#, fuzzy
-#~ msgid "Video station"
-#~ msgstr "Teuliadur"
-
-#, fuzzy
-#~ msgid "Graphic station"
-#~ msgstr "Teuliadur"
-
-#, fuzzy
-#~ msgid "Graphics programs"
-#~ msgstr "Kartenn c'hrafek : %s"
-
-#, fuzzy
-#~ msgid "Printer sharing"
-#~ msgstr "Moullerez"
-
-#~ msgid "Office"
-#~ msgstr "Burev"
-
-#~ msgid "Games"
-#~ msgstr "C'hoarioù"
-
-#, fuzzy
-#~ msgid "Multimedia - Graphics"
-#~ msgstr "Liesvedia"
-
-#, fuzzy
-#~ msgid "Multimedia - Sound"
-#~ msgstr "Liesvedia"
-
-#, fuzzy
-#~ msgid "Multimedia - Video"
-#~ msgstr "Liesvedia"
-
-#, fuzzy
-#~ msgid "Multimedia - CD Burning"
-#~ msgstr "Liesvedia"
-
-#~ msgid "no network card found"
-#~ msgstr "kartenn rouedad kavet ebet"
-
-#, fuzzy
-#~ msgid "Get involved in the Free Software world"
-#~ msgstr "Amprouiñ ar c'hefluniadur"
-
-#, fuzzy
-#~ msgid "Get the most from the Internet"
-#~ msgstr "Anv ar gevreadenn"
-
-#, fuzzy
-#~ msgid "User interfaces"
-#~ msgstr "Etrefas arveriad/X"
-
-#, fuzzy
-#~ msgid "Development simplified"
-#~ msgstr "Diorren"
-
-#, fuzzy
-#~ msgid ""
-#~ "The following printers are configured. Double-click on a printer to "
-#~ "change its settings; to make it the default printer; to view information "
-#~ "about it; or to make a printer on a remote CUPS server available for Star "
-#~ "Office/OpenOffice.org/GIMP."
-#~ msgstr ""
-#~ "Setu da heul ar steudadoù moullañ.\n"
-#~ "Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-
-#, fuzzy
-#~ msgid ""
-#~ "Please enter your host name if you know it.\n"
-#~ "Some DHCP servers require the hostname to work.\n"
-#~ "Your host name should be a fully-qualified host name,\n"
-#~ "such as ``mybox.mylab.myco.com''."
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
+#~ "\n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
+#~ "\n"
+#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
+#~ "\n"
+#~ "\n"
+#~ "For any queries relating to these agreement, please contact \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
#~ msgstr ""
-#~ "Roit ho anv ostiz mar plij.\n"
-#~ "Un anv peurzoareet a zlefe bezañ hini o ostiz,\n"
-#~ "evel ``mabenveg.mastal.makomp.com''.\n"
-#~ "Gallout a rit ivez reiñ chomlec'h IP an dreuzell m'hoc'h eus unan"
-
-#, fuzzy
-#~ msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#~ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ "Tu zo deoc'h bremañ ezkargañ meziantoù gouestlet d'ar rinegouriezh.\n"
+#~ "\n"
+#~ "HO EVEZH :\n"
+#~ "\n"
+#~ "Abalamour m'eo disheñvel ar pennaennoù meur o talvezout evit ar meziantoù-"
+#~ "mañ hervez\n"
+#~ "gwiraouriezhoù disheñvel, ret eo d'an arval ha/pe arveriad en diwezh ar "
+#~ "meziantoù-mañ\n"
+#~ "gwiriañ eo aotreet da ezskargañ, mirout ha/pe implijout ar meziantoù-mañ\n"
+#~ "gouez d'al lezennoù en e/he gwiraouriezh.\n"
+#~ "\n"
+#~ "Ouzhpenn an arval ha/pe arveriad en diwezh a rank bezañ war evezh chom "
+#~ "hep terriñ\n"
+#~ "lezennoù e/he gwiraouriezh. Ma c'hoarvezfe gant an arval ha/pe arveriad\n"
+#~ "en diwezh na zoujañ ouzh termenoù lezennoù o talvezout, e telezfe "
+#~ "kastizoù\n"
+#~ "kriz.\n"
+#~ "\n"
+#~ "E nep degouezh ne vo dalc'het Mandrakesoft nag e oberatourien na/pe e "
+#~ "bourvezerien\n"
+#~ "atebek eus nep gaou dibar, ameeun pe zarvoudus a c'hoarvezfe (ha pa vefe\n"
+#~ "zoken e-touez traoù all koll gounid, arsav aferioù, koll roadoù "
+#~ "kenwerzhel ha\n"
+#~ "kolloù arc'hant all, hag atebegezh pe zigoll diouzh an dro da vezañ "
+#~ "paeet\n"
+#~ "da heul ur barnadeg) o tont diouzh implij, perc'hennañ, pe zoken "
+#~ "ezkargañ\n"
+#~ "ar meziantoù-mañ, a c'hellfe an arval ha/pe arveriad en diwezh bezañ\n"
+#~ "grataet goude bezañ sinet an emglev-mañ.\n"
+#~ "\n"
+#~ "\n"
+#~ "Evit forzh pe c'houlenn a-zivout an emglevioù-se, darempredit mar plij\n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "SUA"
#, fuzzy
-#~ msgid "Traditional Monitor"
-#~ msgstr "Kemmañ ar skramm"
+#~ msgid "Proxy configuration"
+#~ msgstr "Kefluniadur goude staliañ"
-#, fuzzy
-#~ msgid "NewStyle Monitor"
-#~ msgstr "Skramm"
+#~ msgid "URL"
+#~ msgstr "URL"
#, fuzzy
-#~ msgid "Secure Connection"
-#~ msgstr "Diuzit lugerezh ar voullerez"
+#~ msgid "port"
+#~ msgstr "Paour"
#, fuzzy
-#~ msgid "FTP Connection"
-#~ msgstr "Lugerezh ar voullerez"
+#~ msgid "Url should begin with 'http:'"
+#~ msgstr "http://... a zlefe bezañ ar proksi"
#, fuzzy
-#~ msgid "/Options"
-#~ msgstr "Parzhadur"
+#~ msgid "login"
+#~ msgstr "Belgian"
#, fuzzy
-#~ msgid "/Autodetect jazz drives"
-#~ msgstr "Dilesadur"
+#~ msgid "password"
+#~ msgstr "Tremenger"
#, fuzzy
-#~ msgid "/Autodetect modems"
-#~ msgstr "Dilesadur"
+#~ msgid "re-type password"
+#~ msgstr "Tremenger ebet"
#, fuzzy
-#~ msgid "/Autodetect printers"
-#~ msgstr "Dilesadur"
+#~ msgid "The passwords don't match. Try again!"
+#~ msgstr "An tremegerioù ne glot ket"
-#~ msgid ""
-#~ "The partition you've selected to add as root (/) is physically located "
-#~ "beyond\n"
-#~ "the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
-#~ "If you plan to use the LILO boot manager, be careful to add a /boot "
-#~ "partition"
-#~ msgstr ""
-#~ "Lec'hiet eo ar parzhadur hoc'h eus diuzet da ouzphennañ evel gwrizienn "
-#~ "(/) en tu-hont\n"
-#~ "d'ar 1024vet kranenn eus ar bladenn galet, ha n'hoc'h eus ket a "
-#~ "barzhadur /boot.\n"
-#~ "Ma vennit implijout ar merour loc'hañ LILO, taolit pled da ouzhpennañ ur "
-#~ "parzhadur /boot"
-
-#~ msgid ""
-#~ "Sorry I won't accept to create /boot so far onto the drive (on a cylinder "
-#~ "> 1024).\n"
-#~ "Either you use LILO and it won't work, or you don't use LILO and you "
-#~ "don't need /boot"
-#~ msgstr ""
-#~ "Ma zigarezit na asantiñ krouiñ /boot ken pell war ar bladenn (war ur "
-#~ "granenn > 1024).\n"
-#~ "Pe e implijit LILO ha ne daio ket en-dro, pe ne rit ket ha n'hoc'h eus "
-#~ "ket ezhomm a /boot"
+#~ msgid "Can't write file %s"
+#~ msgstr "N'hellan ket skrivañ e %s"
-#, fuzzy
-#~ msgid "Do you want to configure another printer?"
-#~ msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
+#~ msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-#, fuzzy
-#~ msgid "Know how to use this printer"
-#~ msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
+#~ msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-#, fuzzy
-#~ msgid "Preparing Printerdrake..."
-#~ msgstr "Dibarzhoù ar voullerez lpd a-bell"
+#~ msgid "no help implemented yet.\n"
+#~ msgstr "N'ev ket skoazell.\n"
+#
#, fuzzy
-#~ msgid "Reading printer data ..."
-#~ msgstr "Dibarzhoù ar voullerez lpd a-bell"
+#~ msgid "Please click on a medium"
+#~ msgstr "Klikit war ur parzhadur mar plij"
-#~ msgid "Test ports"
-#~ msgstr "Amprouiñ ar porzhioù"
+#~ msgid "detected on interface %s"
+#~ msgstr "kavoutet war %s"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index aced32368..5fb053f2e 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -1,5197 +1,3464 @@
-# translation of DrakX-bs.po to Bosnian
-# Copyright (C) 2001, 2003. Free Software Foundation, Inc.
+# Copyright (C) 2001. Free Software Foundation, Inc.
# Amila Akagić <bono@lugbih.org>, 06. 2001.
-# Vedran Ljubović <vljubovic@smartnet.ba>, 2002, 2003.
-# Vedran Ljubovic <vljubovic@smartnet.ba>, 2003.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX-bs\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
-"PO-Revision-Date: 2003-09-20 12:33+0200\n"
-"Last-Translator: Vedran Ljubovic <vljubovic@smartnet.ba>\n"
-"Language-Team: Bosnian <lokal@lugbih.org>\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"PO-Revision-Date: 2001-08-21 17:14GMT\n"
+"Last-Translator: Amila Akagić <bono@lugbih.org>\n"
+"Language-Team: Bosnian <lokal-subscribe@lugbih.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
+"X-Generator: KBabel 0.9.1\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Pretražujem particije da naÄ‘em taÄke montiranja"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr ""
-"ako je postavljeno na da, provjerava dodavanje/brisanje suid root datoteka."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s zahtijeva ime raÄunara, MAC adresu, IP adresu, nbi-image, 0/1 za "
-"THIN_CLIENT, 0/1 za Local Config...\n"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr "Konfiguracija je promijenjena - da restartujem clusternfs/dhcpd?"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tObriši=%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Diferencijalni backupi snimaju samo datoteke koje su promijenjene nakon "
-"originalnog 'baznog' backupa."
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "network printer port"
-msgstr "port mrežnog Å¡tampaÄa"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Molim ubacite disketu:"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr "DrakTermServ"
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Backup tabela particija nema istu veliÄinu\n"
-"Ipak nastavljate?"
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Which username"
-msgstr "Koje korisniÄko ime"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "Koju vrstu opcije želite dodati?"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Restore partition table"
-msgstr "Vrati tabelu particija"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB ili više"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure hostname..."
-msgstr "Podesi ime raÄunara..."
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "Izaberite X server"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Na CUPS serveru \"%s\""
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "X server"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Post-install configuration"
-msgstr "Post-instalacijsko podešavanje"
+#: ../../Xconfig/card.pm_.c:230
+msgid "Multi-head configuration"
+msgstr "Multi-head konfiguracija"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-"Trenutni nivo sigurnisti je %s\n"
-"Izaberite koje privilegije želite vidjeti/izmijeniti"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Koristi ``%s'' umjesto toga"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Type"
-msgstr "Tip"
+"Vaš sistem podržava konfiguraciju više glava.\n"
+"Å ta želite uÄiniti?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"TakoÄ‘er Å¡tampaÄi konfigurisani sa PPD datotekama koje su osigurali njihovi "
-"proizvoÄ‘aÄi ili sa vlastitim CUPS drajverima ne mogu biti prebaÄeni."
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
+msgstr "Izaberite veliÄinu memorije vaÅ¡e grafiÄke karte"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "Å ri Lanka"
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "XFree konfiguracija"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Sljedeći Å¡tampaÄ\n"
-"\n"
-"%s%s\n"
-"su direktno spojeni na vaš sistem"
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Koju konfiguraciju XFree želite imati?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
-msgstr "CentralnoafriÄka Republika"
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
+msgstr "Konfiguriši sve glave odvojeno"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "Gateway uređaj"
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
+msgstr "Koristi Xinerama ekstenziju"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Advanced preferences"
-msgstr "Napredne opcije"
+#: ../../Xconfig/card.pm_.c:389
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfiguriši samo karticu \"%s\" (%s)"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Net Method:"
-msgstr "Net Method:"
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Ethernetcard"
-msgstr "Ethernet kartica"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s sa 3D hardverskim ubrzanjem"
-#: ../../security/l10n.pm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-"Ako je ukljuÄeno, Å¡alje mail izvjeÅ¡taj na ovu email adresu, inaÄe ga Å¡alje "
-"root-u"
-
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr "Parametri"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "no"
-msgstr "ne"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Auto-detect"
-msgstr "Auto prepoznavanje"
+"Vaša kartica može imati podršku za 3D hardversko ubrzanje ali samo sa\n"
+"XFree %s. Vašu karticu podržava XFree %s koji može imati bolju podršku za 2D."
-#: ../../standalone/drakconnect:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid "Interface:"
-msgstr "Interfejs:"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "Vaša kartica može imati podršku za 3D hardversko ubrzanje sa XFree %s."
-#: ../../steps.pm:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid "Select installation class"
-msgstr "Izaberite klasu instalacije"
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s sa EKSPERIMENTALNIM 3D hardverskim ubrzanjem"
-#: ../../network/tools.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
+"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."
msgstr ""
-"Izgleda da sistem nije spojen na Internet.\n"
-"Probajte promijeniti postavke vaše konekcije."
+"Vaša kartica može imati podršku za 3D hardversko ubrzanje sa XFree %s,\n"
+"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR.\n"
+"Vašu karticu podržava XFree %s koji može imati bolju podršku za 2D."
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"Povezati Å¡tampaÄ na Linux server i dopustiti Windows raÄunarima da se "
-"spajaju na njega kao klijenti.\n"
-"\n"
-"Da li zaista želite nastaviti sa podeÅ¡avanjem Å¡tampaÄa kako ste zapoÄeli?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belarus"
-msgstr "Bjelorusija"
+"Vaša kartica može imati podršku za 3D hardversko ubrzanje sa XFree %s,\n"
+"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR."
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Greška u pisanju datoteke: %s"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (installation display driver)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result to syslog"
-msgstr "Prijavi rezultate provjere u syslog"
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "RuÄno izaberi"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
-msgstr ""
-"Apmd se koristi za nadgledanje statusa baterija i njegovo bilježenje preko\n"
-"sysloga. TakoÄ‘e se može koristiti za gaÅ¡enje raÄunara kada su baterije pri "
-"kraju."
+#: ../../Xconfig/main.pm_.c:102
+#, fuzzy
+msgid "Graphic Card"
+msgstr "GrafiÄka karta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tape to backup"
-msgstr "Koristi traku za backup"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "Monitor"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Sljedeći paketi će biti instalirani"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "Rezolucija"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS configuration"
-msgstr "Podešavanje CUPSa"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total progress"
-msgstr "Ukupno napredak"
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Opcije"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Nema dovoljno slobodnog prostora za pravljenje novih particija"
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "Ok"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "Premještam"
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "Izlaz"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
"\n"
-"Drakbackup activities via %s:\n"
-"\n"
+"%s"
msgstr ""
+"Zadržati izmjene?\n"
+"Trenutna konfiguracija je:\n"
"\n"
-"Drakbackup aktivnosti putem %s:\n"
-"\n"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "yes"
-msgstr "da"
+"%s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr "("
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "Izaberite monitor"
-#: ../../network/netconnect.pm:1
-#, c-format
-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"
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
msgstr ""
-"Dobro došli u Čarobnjak za podešavanje mreže\n"
-"\n"
-"Sada ćemo podesiti vašu internet/mrežnu konekciju.\n"
-"Ako ne želite da koristite automatsko prepoznavanje, iskljuÄite opciju.\n"
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "Liban"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Stop"
-msgstr "Stop"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Edit selected host"
-msgstr "Izmijeni izabrani raÄunar"
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "Opšti"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD device defined!"
-msgstr "Nije definisan CD uređaj!"
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+#, fuzzy
+msgid "Vendor"
+msgstr "Poništi"
-#: ../../network/shorewall.pm:1
-#, fuzzy, c-format
-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"
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-"Molim unesite naziv interfejsa spojenog na Internet.\n"
-"\n"
-"Primjeri:\n"
-"\t\tppp+ za modemsku ili DSL konekciju, \n"
-"\t\teth0, ili eth1 za mrežnu konekciju, \n"
-"\t\tippp+ za isdn konekciju.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tKoristi datoteke .backupignore\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "Bugarska (fonetska)"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP start ip"
-msgstr "PoÄetna DHCP adresa"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Don't rewind tape after backup"
-msgstr "Ne premotavaj traku nakon backupa"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "Glavne opcije bootloadera"
-
-#: ../../standalone.pm:1
-#, c-format
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
+"\n"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
-
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Tape"
-msgstr "Traka"
+"Dva kritiÄna parametra su brzina vertikalnog osvježenja, Å¡to je brzina\n"
+"kojom se cijeli ekran osvježava, i najvažnije brzina horizontalne\n"
+"sinhronizacije, što je brzina kojm se prikazuju skan-linije.\n"
+"\n"
+"VEOMA JE VAŽNO da ne navedete tip monitora Äiji je sinhronizacioni\n"
+"raspon izvan mogućnosti vašeg monitora: time možete oštetiti monitor.\n"
+" Ako niste sigurni, izaberite najmanju opciju."
-#: ../../lang.pm:1
-#, c-format
-msgid "Malaysia"
-msgstr "Malezija"
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "Brzina horizontalnog osvježavanja"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning network..."
-msgstr "Pretražujem mrežu..."
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "Brzina vertiaklnog osvježavanja"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Sa ovom opcijom bićete u mogućnosti da vratite bilo koju\n"
-" verziju vašeg /etc direktorija."
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 boja (8 bita)"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr "Izmjena je primijenjena, želite li sada restartovati servis dm?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 hiljada boja (15 bita)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (French layout)"
-msgstr "Å vicarska (francuski izgled)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 hiljada boja (16 bita)"
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid nije uspio (možda nedostaju raidtools?)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miliona boja (24 bita)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "August"
-msgstr "August"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milijarde boja (32 bita)"
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "FTP server"
-msgstr "NTP server"
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "Rezolucije"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Webcam"
-msgstr "Web kamera"
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "Izaberite rezoluciju i dubinu boja"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "veliÄina CPU keÅ¡a (drugog nivoa)"
+msgid "Graphics card: %s"
+msgstr "GrafiÄka karta: %s"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Soundcard"
-msgstr "ZvuÄna kartica"
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr "Odustani"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Month"
-msgstr "Mjesec"
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "Testiranje konfiguracije"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search for files to restore"
-msgstr "Izaberite datoteke za vraćanje"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "Želite li testirati konfiguraciju?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Luxembourg"
-msgstr "Luksemburg"
+#: ../../Xconfig/test.pm_.c:30
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Upozorenje: testiranje ove grafiÄke karte može zalediti raÄunar"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Za štampanje datoteke sa komandne linije (terminalski prozor) koristite "
-"komandu \"%s <datoteka>\".\n"
+msgid "Keyboard layout: %s\n"
+msgstr "Raspored tastature: %s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid "Level %s\n"
-msgstr "Nivo %s\n"
+msgid "Mouse type: %s\n"
+msgstr "Tip miša: %s\n"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid "Syriac (phonetic)"
-msgstr "Sirijska (fonetska)"
+msgid "Mouse device: %s\n"
+msgstr "Uređaj miša: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid "Iran"
-msgstr "Iran"
+msgid "Monitor: %s\n"
+msgstr "Monitor: %s\n"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Bus"
-msgstr "Sabirnica"
+msgid "Monitor HorizSync: %s\n"
+msgstr "Monitor HorizSync: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Iraq"
-msgstr "Irak"
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Monitor VertRefresh: %s\n"
-#: ../../standalone/drakbug:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid "connecting to %s ..."
-msgstr "spajam se na %s..."
+msgid "Graphics card: %s\n"
+msgstr "GrafiÄka karta: %s\n"
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"Potencijalan konflikt LAN adresa pronađen u trenutnoj konfiguraciji %s!\n"
+msgid "Graphics memory: %s kB\n"
+msgstr "GrafiÄka memorija: %s kB\n"
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid "Configuring..."
-msgstr "Podešavam..."
+msgid "Color depth: %s\n"
+msgstr "Dubina boja: %s\n"
-#: ../../harddrake/v4l.pm:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
-msgstr ""
-"Za većinu modernih TV kartica, bttv modul Linux kernela automatski "
-"prepoznaje odgovarajuće parametre.\n"
-"Ako je vaša kartica pogrešno prepoznata, ovdje možete prisiliti odgovarajući "
-"tip tunera i kartice. Samo izaberite parametre vaše TV karte."
+msgid "Resolution: %s\n"
+msgstr "Rezolucija: %s\n"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Password (again)"
-msgstr "Å ifra (ponovo)"
+msgid "XFree86 server: %s\n"
+msgstr "XFree86 server: %s\n"
-#: ../../standalone/drakfont:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Search installed fonts"
-msgstr "Pretraži instalirane fontove"
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 drajver: %s\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default desktop"
-msgstr "Desktop"
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "X u startanju"
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:62
msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
-"Da prijavite bug, kliknite na dugme Prijavi.\n"
-"Ovo će otvoriti prozor web browsera na %s\n"
-" gdje ćete pronaći formular koji treba popuniti. Gore prikazane informacije "
-"će biti \n"
-"poslane na taj server."
+"Mogu podesiti vaÅ¡ raÄunar da automatski pokrene X nakon boota.\n"
+"Želite li da se X pokrene kada bootate?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr "Venecuela"
-
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "IP address"
-msgstr "IP adresa"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "Izaberite veliÄine"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:73
msgid ""
-"List of data corrupted:\n"
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
"\n"
-msgstr ""
-"Lista oštećenih podataka:\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"
-
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
-msgstr ""
-"Može se montirati samo eksplicitno (tj.,\n"
-"opcija -a neće montirati i ovaj sistem)."
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
+"Do you have this feature?"
msgstr ""
-"Vaš modem nije podržan pod ovim sistemom.\n"
-"Pogledajte http://www.linmodems.org"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose another partition"
-msgstr "Izaberi drugu particiju"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Current user"
-msgstr "Trenutni korisnik"
+#: ../../Xconfig/various.pm_.c:85
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Koje je vrste vaša ISDN konekcija?"
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
-msgstr "KorisniÄko ime"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
+msgstr "Prvi sektor boot particije"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Lijeva \"Windows\" tipka"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
+msgstr "Prvi sektor diska (MBR)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "Gvajana"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "SILO instalacija"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Podešavanje dhcpd servera"
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
+msgstr "Gdje želite smjestiti bootloader?"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Koristi se za direktorij:\n"
-" samo vlasnik tog direktorija ili datoteke u ovom direktoriju ga može "
-"obrisati"
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "LILO/grub instalacija"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr "na Novell serveru \"%s\", Å¡tampaÄ \"%s\""
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
+msgstr "SILO"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Name"
-msgstr "Naziv Å¡tampaÄa"
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
+msgstr "LILO sa tekstualnim menijem"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
-msgstr ""
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
+msgstr "LILO sa grafiÄkim menijem"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
-msgstr "Ukloni modul"
+#: ../../any.pm_.c:142
+msgid "Grub"
+msgstr "Grub"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Password"
-msgstr "Å ifra"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "Bootanje iz DOS/Windowsa (loadlin)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Napredno podešavanje"
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr "Skeniram pomoću HP multifunkcijskog uređaja"
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "Glavne opcije bootloadera"
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "Root"
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
+msgstr "Bootloader koji ćete koristiti"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "Izaberite postojeći RAID na koji ćete dodati"
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "Bootloader instalacija"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turska (moderni \"Q\" model)"
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "Boot uređaj"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo message not found"
-msgstr "Nisam pronašao Lilo poruku."
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "Kompaktno"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Automatsko regenerisanje kernel zaglavlja u /boot za\n"
-"/usr/include/linux/{autoconf,version}.h"
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "kompaktno"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
-msgstr "ako je potrebno"
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "Video mod"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
-msgstr ""
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
+msgstr "ÄŒekanje prije bootanja default preslike"
+
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
+msgid "Password"
+msgstr "Å ifra"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Failed..."
-msgstr "Vraćanje nije uspjelo..."
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "Å ifra (ponovo)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "Zapiši šifru ovog sistema u konfiguraciju DrakBackup-a."
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "OgraniÄi opcije komandne linije"
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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 ""
-"Budući da prevodilac ovog teksta nije u mogućnosti da osigura pravnu\n"
-"provjeru prevedenog teksta, tekst licence je ostavljen u originalnom "
-"(engleskom)\n"
-"obliku.\n"
-"\n"
-"\n"
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the 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"
+#: ../../any.pm_.c:171
+msgid "restrict"
+msgstr "ograniÄi"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default user"
-msgstr "Korisnik"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "ÄŒisti /tmp prilikom svakog boota"
-#: ../../standalone/draksplash:1
+#: ../../any.pm_.c:174
#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"koordinate progresne trake x\n"
-"tj. njenog lijevog ugla"
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Precizna veliÄina RAMa ako je potrebno (pronaÄ‘eno %d MB)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Current interface configuration"
-msgstr "Postavke trenutnog interfejsa"
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
+msgstr "Omogući više profila"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "Navedite veliÄinu rama u MB"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../any.pm_.c:182
msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"Ako imate ISA karticu, vrijednosti na idućem ekranu bi trebale biti "
-"ispravne.\n"
-"\n"
-"Ako imate PCMCIA karticu, moraćete znati IRQ i IO vaše kartice.\n"
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr "Opcija ``OgraniÄi opcije komandne linije'' je beskorisna bez Å¡ifre"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not print any test page"
-msgstr "Nemoj štampati testnu stranicu"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "Molimo pokušajte ponovo"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr "Gurmukhi"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "Å ifre se ne poklapaju"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s je već u upotrebi\n"
+#: ../../any.pm_.c:191
+msgid "Init Message"
+msgstr "Init Poruka"
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
-msgstr "Prinudi bez APICa"
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
+msgstr "Otvori Äekanje firmware-a"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr ""
-"Ova šifra je previše jednostavna (mora biti duga najmanje %d karaktera)"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
+msgstr "Kernel Boot Timeout"
-#: ../../standalone.pm:1
-#, c-format
-msgid "[keyboard]"
-msgstr "[tastatura]"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
+msgstr "Omogući boot sa CDa?"
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP proxy"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
+msgstr "Omogući boot sa OFa?"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install List"
-msgstr "Lista instalacije"
+#: ../../any.pm_.c:197
+msgid "Default OS?"
+msgstr "Default OS?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:231
msgid ""
-"Change\n"
-"Restore Path"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
+"\n"
+"On which drive are you booting?"
msgstr ""
-"Promijeni\n"
-"stazu vraćanja"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Prikaži samo za izabrani dan"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tOgraniÄi upotrebu diska na %s MB\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Napomena: Paralelni portovi ne mogu biti automatski istraženi)"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Koju vrstu kartice imate?"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Security"
-msgstr "Sigurnost"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:247
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"
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
-"Možete takoÄ‘er koristiti grafiÄki interfejs \"xpdq\" za podeÅ¡avanje opcija i "
-"upravljanje zadacima štampe.\n"
-"Ako koristite KDE okruženje radne površine imate \"dugme za paniku\". To je "
-"ikona na radnoj povrÅ¡ini Äiji je naziv \"ZAUSTAVI Å¡tampaÄ!\", koja "
-"zaustavlja sve zadatke štampe odmah kada kliknete na nju. Ovo je korisno "
-"npr. u sluÄaju zaglavljivanja papira.\n"
+"Navedene su razne stavke.\n"
+"Možete dodati nove ili promjeniti postojeće."
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "Dodaj"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Ne mogu naći backupe za vraćanje...\n"
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "Gotovo"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown"
-msgstr "Nepoznat"
+#: ../../any.pm_.c:257
+msgid "Modify"
+msgstr "Izmjeni"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "Ovaj server je već na listi, ne možete ga ponovo dodati.\n"
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "Koju vrstu stavke želite dodati?"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Network Configuration"
-msgstr "Podešavanje mreže"
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "Linux"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "Ostali OSi (SunOS...)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Protokol za ostatak svijeta \n"
-" bez D-kanala (iznajmljene linije)"
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "Ostali OSi (MacOS...)"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - /etc/xinetd.d/tftp:\n"
-" \tdrakTermServ will configure this file to work in conjunction with "
-"the images created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical tftp configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \tputs its images."
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "Ostali OSi (windows...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Opcija %s mora biti broj!"
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "Preslika"
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, c-format
-msgid "Notice"
-msgstr "Napomena"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "Root"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "Niste podesili X. Sigurno želite uraditi ovo?"
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
+msgstr "Append"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"PodeÅ¡avanje Å¡tampaÄa će raditi potpuno automatski. Ako vaÅ¡ Å¡tampaÄ nije "
-"ispravno prepoznat ili ako želite sami podesiti Å¡tampaÄ, ukljuÄite \"RuÄno "
-"podešavanje\"."
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "What type of partitioning?"
-msgstr "Koju vrstu particioniranja?"
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "Čitaj-piši"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-" "
-msgstr ""
-"lista datoteka poslana putem FTPa: %s\n"
-" "
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "Tabela"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface"
-msgstr "Interfejs"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "Nesigurno"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Multisession CD"
-msgstr "Višesesijski CD"
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "Labela"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated strings"
-msgstr "tekst razdvojen zarezima"
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "Default"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "Ovo su raÄunari sa koji treba koristiti skenere:"
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
+msgstr "Initrd-veliÄina"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Messages"
-msgstr "Poruke"
+#: ../../any.pm_.c:318
+msgid "NoVideo"
+msgstr "NoVideo"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Nepoznat|CPH06X (bt878) [razni proizvoÄ‘aÄi]"
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "Ukloni stavku"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP i IMAP server"
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "Prazna labela nije dozvoljena"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mexico"
-msgstr "Meksiko"
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
+msgstr "Morate navesti image kernela"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model stepping"
-msgstr "Model stepping"
+#: ../../any.pm_.c:330
+msgid "You must specify a root partition"
+msgstr "Morate navesti root particiju"
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
-msgstr "Ruanda"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "Ova labela je već u upotrebi"
-#: ../../lang.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Switzerland"
-msgstr "Å vicarska"
+msgid "Found %s %s interfaces"
+msgstr "Pronađeno %s %s interfejsa"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr "Bruneji"
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "Imate li neki drugi?"
-#: ../../modules/interactive.pm:1
+#: ../../any.pm_.c:642
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Imate li ijedan %s interfejs?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "Da biste proÄitali konfiguracijsku datoteku, morate biti root. \n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Opcije udaljenog lpd Å¡tampaÄa"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"GNU/Linux je viÅ¡ekorisniÄki sistem, Å¡to znaÄi da svaki korisnik može imati\n"
-"vlastite preference, vlastite datoteke i tako dalje. Možete proÄitati "
-"''PoÄetniÄki\n"
-"vodiÄ'' da biste saznali viÅ¡e o viÅ¡ekorisniÄkim sistemima. Ali za razliku "
-"od\n"
-"\"root\"-a, koji je administrator sistema, korisnicima koje dodate u ovom "
-"trenutku\n"
-"neće biti dozvoljeno da promijene ništa osim vlastitih datoteka i vlastite\n"
-"konfiguracije, Äime je sistem zaÅ¡tićen od nenamjernih ili zlonamjernih "
-"izmjena\n"
-"koje mogu uticati na cijeli sistem. Moraćete kreirati najmanje jednog "
-"korisnika\n"
-"za vas same -- ovo je raÄun koji trebate koristiti za rutinsku, svakodnevnu\n"
-"upotrebu. Iako je vrlo lako prijaviti se kao \"root\" da biste radili sve i "
-"svašta,\n"
-"to takoÄ‘e može biti i vrlo opasno! Jedna greÅ¡ka može znaÄiti da vaÅ¡ sistem\n"
-"viÅ¡e ne radi. Ako napravite ozbiljnu pogreÅ¡ku kao obiÄan korisnik, najgore\n"
-"Å¡to se može desiti jeste da izgubite neke informacije, ali ne i da utiÄete "
-"na\n"
-"cijeli sistem.\n"
-"\n"
-"U prvom polju unosite vaše pravo ime i prezime. Naravno, ovo nije obavezno\n"
-"-- u stvari možete ovdje unijeti šta god hoćete. DrakX će koristiti prvu "
-"rijeÄ\n"
-"koju unesete i kopirati je u polje \"%s\", što je ime koje će ovaj\n"
-"korisnik unositi da bi ušao na sistem. Ako želite, možete promijeniti\n"
-"ponuÄ‘enu vrijednost. Idući korak je da unesete Å¡ifru. Sa sigurnosne taÄke\n"
-"glediÅ¡ta, Å¡ifra neprivilegovanog (obiÄnog) korisnika nije tako važna kao "
-"\"root\"\n"
-"šifra, ali to nije razlog da je zanemarite tako što ćete je ostaviti praznom "
-"ili\n"
-"prejednostavnom: na kraju krajeva, vaÅ¡e liÄne datoteke je ono Å¡to je u\n"
-"riziku.\n"
-"\n"
-"Jednom kada kliknete na \"%s\", možete ih dodati još.\n"
-"Dodajte po jednog korisnika za svakog od vaših prijatelja: na primjer za\n"
-"vašeg oca ili sestru. Kliknite na \"%s\" kada završite dodavanje korisnika.\n"
-"\n"
-"Klikanjem na dugme \"%s\" možete promijeniti osnovni \"shell\" za tog\n"
-"korisnika (ponuđen je bash).\n"
-"\n"
-"Kada završite dodavanje svih korisnika, bićete upitani da odaberete\n"
-"korisnika koji se može automatski prijaviti prilikom pokretanja sistema.\n"
-"Ako ste zainteresovani za ovu mogućnost (i ne brinete previše o lokalnoj\n"
-"sigurnosti), izaberite željenog korisnika i window manager, zatim kliknite\n"
-"na \"%s\". Ako niste zainteresovani za to, iskljuÄite opciju\n"
-"\"%s\"."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Internet Access..."
-msgstr "Podesi Internet pristup..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Izaberite vremenski interval između svakog backupa"
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "Ne"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Norway"
-msgstr "Norveška"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "Da"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Delete profile"
-msgstr "Obriši profil"
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "Pogledaj hardware info"
-#: ../../keyboard.pm:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Danish"
-msgstr "Danska"
+msgid "Installing driver for %s card %s"
+msgstr "Instaliram drajver za %s karticu %s"
-#: ../../services.pm:1
+#: ../../any.pm_.c:663
#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Automatski ukljuÄuje numlock pod konzolom i grafiÄkim okruženjem\n"
-"prilikom boota."
+msgid "(module %s)"
+msgstr "(modul %s)"
-#: ../../network/network.pm:1
-#, c-format
+#: ../../any.pm_.c:674
+#, fuzzy, 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)."
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-"Molim unesite IP konfiguraciju za ovaj raÄunar.\n"
-"Svaka stavka bi trebala biti unesena kao IP adresa u decimalnoj notaciji\n"
-"razdvojenoj taÄkama (npr. 1.2.3.4)."
+"Sada možete navesti opcije za modul %s.\n"
+"Obratite pažnju da adrese trebate unositi sa prefiksom 0x kao npr. '0x123'"
-#: ../../help.pm:1
+#: ../../any.pm_.c:680
#, 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."
+"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 ""
-"Mandrake Linux instalacija se prostire na nekoliko CDova. DrakX zna da li "
-"je\n"
-"neki paket smješten na drugom CDu i on će izbaciti trenutni CD i zamoliti "
-"vas\n"
-"da ubacite neki drugi po potrebi."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
-msgstr "Kada je ukljuÄeno, vlasnik i grupa se ne mogu promijeniti"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "Bugarska"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
-msgstr "Utorak"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "Procesori"
+"Sada možete navesti opcije za modul %s. Opcije su u formatu ``ime=vrijednost "
+"ime2=vrijednost2 ...''.\n"
+"Na primjer, ``io=0x300 irq=7''"
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "Svalbard and Jan Mayen ostrva"
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "Opcije modula"
-#: ../../standalone/drakTermServ:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "No NIC selected!"
-msgstr "Nije izabran nijedan NIC!"
+msgid "Which %s driver should I try?"
+msgstr "Koji %s drajver ću pokušati?"
-#: ../../network/netconnect.pm:1
+#: ../../any.pm_.c:703
#, 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."
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
-"Došlo je do problema prilikom podešavanja.\n"
-"Provjerite vašu konekciju pomoću net_monitor ili mcc. Ako vaša konekcija ne "
-"radi, možete ponovo pokrenuti podešavanje"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "particija %s je od sada poznata kao %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Other files..."
-msgstr "Backup-uj ostale datoteke..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
-msgstr "Kongo (Kinshasa)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "SMB server IP"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Tabela particija za uređaj %s će biti zapisana na disk!"
+"U nekim sluÄajevima, %s drajver treba imati dodatne informacije za\n"
+"ispravan rad, iako on obiÄno radi dobro i bez njih. Želite li navesti neke\n"
+"ekstra opcije za njega ili dozvoliti drajveru da ispita vaÅ¡ raÄunar za sve\n"
+"informacije koje mu trebaju? Povremeno, ispitivanje može zaglaviti raÄunar,\n"
+"ali ne bi trebalo izazvati nikakvu štetu."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing HPOJ package..."
-msgstr "Instaliram HPOJ pakete..."
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
+msgstr "Ispitivanje"
-#: ../../any.pm:1
-#, 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"
-msgstr ""
-"Vlastita boot disketa vam omogućuje da pokrenete Linux pri Äemu ne ovisite\n"
-"od bootloader programa. Ovo je korisno ako ne želite instalirati LILO (ili "
-"grub) na\n"
-"vaš sistem, ako neki drugi operativni sistem uklanja LILO ili ako LILO ne "
-"radi\n"
-"na vašoj trenutnoj konfiguraciji. Vlastiti bootdisk se može takođe koristiti "
-"sa\n"
-"Mandrake rescue image, pri Äemu je mnogo lakÅ¡e ispraviti neke ozbiljne\n"
-"sistemske kvarove. Želite li napraviti boot disketu za vaš sistem?\n"
-"%s"
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "Navedi opcije"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:719
#, c-format
msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
-"\n"
-" DrakBackup Izvještaj o demonima\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latvian"
-msgstr "Latvijska"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr "mjeseÄno"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Retry"
-msgstr "Vrati"
+"UÄitavanje modula %s nije uspjelo.\n"
+"Želite li probati opet sa drugim parametrima?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr "Naziv modula"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
+msgstr "pristup X programima"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Start at boot"
-msgstr "Pokreni na bootu"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
+msgstr "pristup rpm alatima"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Koristi inkrementalni backup"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
+msgstr "dozvoli \"su\""
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "Prvi sektor diska (MBR)"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
+msgstr "pristup administrativnim datotekama"
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "El Salvador"
+#: ../../any.pm_.c:738
+#, fuzzy
+msgid "access to network tools"
+msgstr "pristup rpm alatima"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
-msgstr "Joystick"
+#: ../../any.pm_.c:739
+#, fuzzy
+msgid "access to compilation tools"
+msgstr "pristup rpm alatima"
-#: ../../standalone/harddrake2:1
+#: ../../any.pm_.c:744
#, c-format
-msgid "DVD"
-msgstr "DVD"
+msgid "(already added %s)"
+msgstr "(već dodan %s)"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
-msgstr "Podrazumijeva se Unicode"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "Ova šifra je previše jednostavna"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "modul Linux kernela koji upravlja uređajem"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
+msgstr "Molimo navedite korisniÄko ime"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Hardverski sat podešen na GMT"
+#: ../../any.pm_.c:751
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr "KorisniÄko ime smije sadržati samo mala slova, brojeve, `-' i `_'"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "Pokušavam da spasim tabelu particija"
+#: ../../any.pm_.c:752
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Ovo korisniÄko ime je već dodano"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Opcija %s mora biti cijeli broj!"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "Ovo korisniÄko ime je već dodano"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
-msgstr "Koristi Å¡ifru da provjeriÅ¡ autentiÄnost korisnika"
+#: ../../any.pm_.c:757
+msgid "Add user"
+msgstr "Dodaj korisnika"
-#: ../../interactive/stdio.pm:1
+#: ../../any.pm_.c:758
#, c-format
msgid ""
-"Entries you'll have to fill:\n"
+"Enter a user\n"
"%s"
msgstr ""
-"Stavke koje morate popuniti:\n"
+"Unesite korisnika\n"
"%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-"Za backup na druge medije, datoteke će biti napravljene na hard disku, a "
-"zatim prebaÄene na taj medij. UkljuÄivanjem ove opcije, tar datoteke koje "
-"su napravljene na hard disku će biti pobrisane nakon backupa."
-
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Ne mogu da pokrenem live upgrade !!!\n"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "Ime: "
+#: ../../any.pm_.c:759
+msgid "Accept user"
+msgstr "Prihvati korisnika"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
-msgstr ""
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "Pravo ime"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 miliona boja (24 bita)"
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "KorisniÄko ime"
-#: ../../any.pm:1
-#, c-format
-msgid "Allow all users"
-msgstr "Dozvoli svim korisnicima"
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "Shell"
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr "Oficijelna MandrakeSoft prodavnica"
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "Ikona"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "Mijenjam veliÄinu"
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "Autologin"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:804
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
-"Unesite maksimalnu veliÄinu\n"
-" dozvoljenu za Draxbackup (MB)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Cable connection"
-msgstr "Kablovska konekcija"
-
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, c-format
-msgid "User"
-msgstr "Korisnik"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Izvrši novi backup prije vraćanja (samo za inkrementalni backup.)"
+"Mogu podesiti vaÅ¡ raÄunar da automatski prijavi jednog korisnika.\n"
+"Želite li koristiti ovu mogućnost?"
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "mkraid nije uspio"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Name"
-msgstr "Ime"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Emulacija 3 dugmeta"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
-msgstr "Provjeri dodavanje/brisanje sgid datoteka"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files..."
-msgstr "Å aljem datoteke..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "Izraelska (fonetska)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
-msgstr "pristup rpm alatima"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Morate izabrati ili unijeti Å¡tampaÄ / ureÄ‘aj!"
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "Izaberite default korisnika:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Problem sa privilegijama tokom pristupa na CD."
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
+msgstr "Izaberite window manager koji će se pokretati:"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "Broj telefona"
+#: ../../any.pm_.c:824
+msgid "Please choose a language to use."
+msgstr "Molimo izaberite jezik koji ćete koristiti."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr "GreÅ¡ka: Drajver \"%s\" za vaÅ¡u zvuÄnu karticu nije na listi"
+#: ../../any.pm_.c:826
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
+msgstr "Možete izabrati i druge jezike koji će biti dostupni nakon instalacije"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Naziv Å¡tampaÄa, opis, lokacija"
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "Svi"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
-msgstr "USA (broadcast)"
+#: ../../any.pm_.c:961
+msgid "Allow all users"
+msgstr "Dozvoli svim korisnicima"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Koristi Xinerama ekstenziju"
+#: ../../any.pm_.c:961
+msgid "No sharing"
+msgstr "Bez dijeljenja"
-#: ../../diskdrake/interactive.pm:1
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
#, c-format
-msgid "Loopback"
-msgstr "Loopback"
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr "Paket %s treba biti instaliran. Da li ga želite instalirati?"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "West Europe"
-msgstr "Zapadna Evropa"
+#: ../../any.pm_.c:973
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
+msgstr "Možete eksportovati koristeći NFS ili Sambu. Koji želite"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
-msgid "On CD-R"
-msgstr "na CDROMu"
+msgid "Mandatory package %s is missing"
+msgstr "Nedostaje obavezan paket %s"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../any.pm_.c:987
msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
+"Would you like to allow users to share some of their directories?\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror "
+"and nautilus.\n"
"\n"
-"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"
+"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-"[OPTIONS] [PROGRAM_NAME]\n"
-"\n"
-"OPCIJE:\n"
-" --help - ispisuje ovu pomoć.\n"
-" --report - program treba biti neki od mandrake alata\n"
-" --incident - program treba biti neki od mandrake alata"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake2 version %s"
-msgstr "Harddrake2 verzija %s"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
+msgstr "Pokreni userdrake"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Preferences"
-msgstr "Opcije"
+#: ../../any.pm_.c:1003
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
+msgstr ""
+"Dijeljenje po-korisniku koristi grupu \"fileshare\". \n"
+"Možete dodavati korisnike u ovu grupu pomoću userdrake-a."
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr "Svazilend"
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
+msgstr "Dobrodošli u Crackers"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "Dominikanska Republika"
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Loš"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr "Kopiram %s"
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
+msgstr "Standard"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Choose color"
-msgstr "Izaberite boju"
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Visok"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac"
-msgstr "Sirijska"
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+msgid "Higher"
+msgstr "Viši"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "ParanoiÄan"
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1061
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!"
+"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 ""
-"Izaberite hard disk koji želite obrisati kako biste instalirali vašu novu\n"
-"Mandrake Linux particiju. Budite pažljivi, svi podaci koji se nalaze na\n"
-"njemu će biti izgubljeni i neće se moći vratiti!"
-
-#. -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
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Koristite tipke %c i %c za izbor jedne od opcija."
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Opšti miš sa 2 dugmeta"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "UkljuÄite \"%s\" da izvrÅ¡ite datoteku"
-
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr "Najprije ukloni logiÄke volumene\n"
-
-#. -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
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Osvjetljene stavke će biti bootane automatski za %d sekundi."
+"Ovaj nivo treba koristiti pažljivo. On Äini vaÅ¡ sistem lakÅ¡im za upotrebu,\n"
+"ali vrlo osjetljivim: ne smije biti koriÅ¡ten za raÄunar koji je spojen na\n"
+"druge ili na Internet. Nema pristupa šifrom."
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../any.pm_.c:1064
msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
-"Ne mogu pisati u /etc/sysconfig/bootsplash\n"
-"Datoteka nije pronađena."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet access"
-msgstr "Pristup Internetu"
+"Å ifra je sada aktivirana, ali koriÅ¡tenje za mrežni raÄunar joÅ¡ nije "
+"preporuÄeno."
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../any.pm_.c:1065
msgid ""
-"y coordinate of text box\n"
-"in number of characters"
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
-"y koordinata tekst polja\n"
-"u broju znakova"
+"Ovo je standardna sigurnost koja je preporuÄena za raÄunar koji će biti "
+"korišten za spajanje na Internet kao klijent."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1066
msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
-"Za listu opcija koje su dostupne za trenutni Å¡tampaÄ kliknite na dugme "
-"\"Lista opcija za štampu\"."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr "UkljuÄujem servere..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Å tampam testnu stranicu..."
+"Već postoje odreÄ‘ena ograniÄenja, a viÅ¡e automatskih provjera se pokreće "
+"svaku noć."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1067
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."
+"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 ""
-"Transfer uspješan\n"
-"Možda je potrebno da provjerite da li se možete prijaviti na server sa:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"bez pitanja o šifri."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Već postoji particija sa taÄkom montiranja %s\n"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
-msgstr "UkljuÄi/iskljuÄi msec provjeru svakog sata."
+"Sa ovim sigurnosnim nivoom, postaje moguće koristiti ovaj sistem kao "
+"server.\n"
+"Sigurnost je sada dovoljno visoka za upotrebu sistema kao servera koji "
+"prima\n"
+"konekcije sa mnogo klijenata. Napomena: ako je vaÅ¡ raÄunar samo klijent na "
+"Internetu, možda je bolje da izaberete niži nivo."
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1070
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''."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-"Na ovom mjestu trebate izabrati gdje želite instalirati Mandrake Linux\n"
-"operativni sistem na vašem hard disku. Ako je disk prazan ili ako postojeći\n"
-"operativni sistem koristi sav prostor na njemu, potrebno je da ga\n"
-"particionirate. U biti, particioniranje hard diska predstavlja logiÄko\n"
-"organiziranje kako bi se stvorio prostor za instaliranje vašeg novog\n"
-"Mandrake Linux sistema.\n"
-"\n"
-"PoÅ¡to su efekti particioniranja obiÄno nepovratni, i mogu voditi do gubitka\n"
-"podataka na eventualnom postojećem operativnom sistemu, particioniranje\n"
-"može biti zastrašujuće i stresno ako ste neiskusan korisnik. Srećom, "
-"postoji\n"
-"Äarobnjak koji pojednostavljuje taj proces. Prije zapoÄinjanja, molim\n"
-"proÄitajte pažljivo ovaj tekst i, prije svega, nemojte žuriti.\n"
-"\n"
-"Ovisno o konfiguraciji vašeg hard diska, može biti dostupno nekoliko\n"
-"mogućnosti:\n"
-"\n"
-" * \"%s\": ova opcija vodi na automatsko particioniranje vašeg praznog\n"
-"diska (diskova). Ako izaberete ovu opciju, neće biti postavljana\n"
-"nikakva daljnja pitanja.\n"
-"\n"
-" * \"%s\": Äarobnjak je detektovao jednu ili viÅ¡e postojećih\n"
-"Linux particija na vašem hard disku. Ako ih želite zadržati, izaberite ovu\n"
-"opciju. U tom sluÄaju, bićete upitani da izaberete taÄke montiranja koje\n"
-"odgovaraju svakoj od ovih particija. Automatski će biti predložene ranije\n"
-"taÄke montiranja, i najÄešće je pametno zadržati ih.\n"
-"\n"
-" * \"%s\": ako je na vašem hard\n"
-"disku instaliran Microsoft Windows koji je zauzeo sav slobodan prostor,\n"
-"moraćete napraviti neÅ¡to slobodnog prostora za Linux. To možete uÄiniti\n"
-"brišući vašu Microsoft Windows particiju zajedno sa podacima (vidi opciju\n"
-"``ObriÅ¡i Äitav disk'' ispod) ili možete promijeniti veliÄinu vaÅ¡e Microsoft\n"
-"Windows FAT particije. Promjena veliÄine se može izvrÅ¡iti bez gubitka\n"
-"podataka, pod uslovom da prethodno defragmentirate Windows particiju\n"
-"i da ona koristi FAT format. Backupovanje vaših podataka je strogo\n"
-"preporuÄeno. Ova mogućnost je preporuÄena ako namjeravate koristiti i\n"
-"Mandrake Linux i Microsoft Windows na istom raÄunaru.\n"
-"\n"
-" Prije izbora ove opcije, molim da imate na umu da će, nakon ove\n"
-"procedure, veliÄina vaÅ¡e Microsoft Windows particije biti manja nego\n"
-"trenutno. To znaÄi da će Microsoft Windows prijavljivati da imate manje\n"
-"prostora za smještaj podataka ili instaliranje novog softwarea.\n"
-"\n"
-" * \"%s\": ako želite da obrišete sve podatke i sve particije koje su\n"
-"prisutne na vašem hard disku i umjesto njih postavite vaš novi Mandrake\n"
-"Linux sistem, možete izabrati ovu opciju. Budite oprezni sa ovom\n"
-"mogućnošću, jer nećete moći poništiti vaš izbor nakon potvrde.\n"
-"\n"
-" !! Ako izaberete ovu opciju, svi podaci na vašem disku će biti "
-"izgubljeni. !!\n"
-"\n"
-" * \"%s\": ovo će jednostavno pobrisati sve na disku i poÄeti od\n"
-"poÄetka, particionirajući ga. Svi podaci na vaÅ¡em disku će biti\n"
-"izgubljeni.\n"
-"\n"
-" !! Ako izaberete ovu opciju, svi podaci na vašem disku će biti "
-"izgubljeni. !!\n"
-"\n"
-" * \"%s\": ako želite da ruÄno particionirate vaÅ¡ hard disk,\n"
-"izaberite ovu opciju. Budite oprezni -- to je moćan, ali i opasan izbor. "
-"Vrlo\n"
-"lako možete izgubiti sve vaÅ¡e podatke. Zato ovu opciju ne preporuÄujemo,\n"
-"osim ako ste nešto ovakvo već radili i imate nekog iskustva. Više uputstava\n"
-"za koriÅ¡tenje DiskDrake alata možete naći u ``VodiÄu za poÄetnike'', "
-"odjeljak\n"
-"``Upravljanje vašim particijama''."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
-msgstr "Ukrajina"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Application:"
-msgstr "Aplikacija:"
+"Baziran na prethodnom nivou, ali sada je sistem potpuno zatvoren.\n"
+"Sigurnosne osobine na maksimumu."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "External ISDN modem"
-msgstr "Vanjski ISDN modem"
+#: ../../any.pm_.c:1076
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Opcije"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr "ako je postavljeno na da, prijavljuje rezultate provjere mailom."
+#: ../../any.pm_.c:1077
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Izaberite nivo sigurnosti"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Vaš izbor? (podrazumjevano %s)"
+#: ../../any.pm_.c:1080
+msgid "Security level"
+msgstr "Nivo sigurnosti"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr "Kako ukloniti problem?"
+#: ../../any.pm_.c:1082
+msgid "Use libsafe for servers"
+msgstr "Koristi libsafe za servere"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1083
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"
+"A library which defends against buffer overflow and format string attacks."
msgstr ""
-"Testna stranica je poslana Å¡tampaÄu.\n"
-"Može potrajati odreÄ‘eno vrijeme dok Å¡tampaÄ krene.\n"
-"Status štampanja:\n"
-"%s\n"
-"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
-msgstr "dnevno"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and one unknown printer"
-msgstr "i jedan nepoznat Å¡tampaÄ"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Ireland"
-msgstr "Irska"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Restore Configuration "
-msgstr " Vrati konfiguraciju "
+"Biblioteka koja brani od napada \"buffer overflow\" i \"format string\"."
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Da li je ovo ispravno?"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1166
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."
+"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 ""
-"Sada ćete podesiti vašu Internet/mrežnu konekciju. Ako želite spojiti\n"
-"vaÅ¡ raÄunar na Internet ili lokalnu mrežu, kliknite na \"%s\". Mandrake\n"
-"Linux će pokušati prepoznati mrežne uređaje i modeme.\n"
-"Ako prepoznavanje ne uspije, iskljuÄite opciju \"%s\".\n"
-"Možete takođe izabrati da ne podešavate mrežu ili da to uradite kasnije,\n"
-"u kojem sluÄaju vas klik na dugme \"%s\" vodi na idući korak.\n"
-"\n"
-"Kada podešavate mrežu, dostupne opcije su: tradicionalni modem, ISDN\n"
-"modem, ADSL konekcija, kablovski modem i konaÄno obiÄna LAN veza\n"
-"(Ethernet).\n"
-"\n"
-"Nećemo dati detalje o svakoj od konfiguracijskih opcija - samo provjerite\n"
-"da li ste dobili sve parametre, kao što je IP adresa, default gateway, DNS\n"
-"serveri, itd. od svog Internet Service Providera ili sistemskog "
-"administratora.\n"
-"\n"
-"Možete pogledati poglavlje ''VodiÄa za poÄetnike'' o Internet konekcijama\n"
-"za detalje o podeÅ¡avanju, ili jednostavno saÄekajte da vaÅ¡ sistem bude\n"
-"instaliran i koristite program koji je tamo opisan za podešavanje vaše veze."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Čarobnjak za podešavanje"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Autoprobe"
-msgstr "Ispitivanje"
-#: ../../security/help.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, c-format
msgid ""
-"if set to yes, check for :\n"
-"\n"
-"- empty passwords,\n"
+"Welcome to %s the operating system chooser!\n"
"\n"
-"- no password in /etc/shadow\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
"\n"
-"- for users with the 0 id other than root."
msgstr ""
-"ako je postavljeno na da, provjerava:\n"
-"\n"
-"- prazne šifre,\n"
+"Dobro došli u %s izbornik operativnog sistema!\n"
"\n"
-"- nedostatak šifre u /etc/shadow\n"
+"Izaberite operativni sistem na listi gore ili\n"
+"saÄekajte %d sekundi do default boota.\n"
"\n"
-"- korisnike sa id-om 0 koji nisu root."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files..."
-msgstr "Backup-uj sistemske datoteke..."
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Dobro došli u GRUB izbornik operativnog sistema!"
-#: ../../any.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:986
#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Ne mogu koristiti broadcast bez NIS domene"
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Koristite tipke %c i %c za izbor jedne od stavki."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Uklanjam Å¡tampaÄ \"%s\" ..."
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Pritisnite enter za bootanje izabranog OSa, 'e' za editovanje"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell history size"
-msgstr "VeliÄina historije shell-a"
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "komandi prije bootanja, ili 'c' za komandnu liniju."
-#: ../../standalone/drakfloppy:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:995
#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Osvjetljene stavke će biti bootane automatski za %d sekundi."
-#: ../../standalone/drakpxe:1
-#, 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"
-msgstr ""
-"Molim navedite gdje se nalazi datoteka auto_install.cfg.\n"
-"\n"
-"Ostavite ovo praznim ako ne želite podesiti režim automatske instalacije.\n"
-"\n"
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
+msgstr "nema dovoljno prostora u /boot"
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on other machines"
-msgstr "PodeÅ¡eno na ostalim raÄunarima"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "Desktop"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "nivo informacija koje se mogu dobiti cpuid instrukcijom"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "Start Menu"
-#: ../../lang.pm:1
+#: ../../bootloader.pm_.c:1120
#, c-format
-msgid "Peru"
-msgstr "Peru"
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "Ne možete instalirati bootloader na %s particiju\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " on device: %s"
-msgstr "na uređaju: %s"
+#: ../../bootlook.pm_.c:53
+msgid "Boot Style Configuration"
+msgstr "Konfiguracija stila boota"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "Ukloni Windows(TM)"
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
+msgstr "/_Datoteka"
-#: ../../services.pm:1
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Pokreće X Font Server (ovo je nužno da bi XFree radio)."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
+msgstr "/Datoteka/_Izlaz"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"Većinu ovih vrijednosti uzimam iz\n"
-"vašeg aktivnog sistema.\n"
-"Možete ih izmijeniti po potrebi."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
+msgstr "<control>Q"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Izaberite font datoteku ili direktorij i kliknite na 'Dodaj'"
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
+msgstr "NewStyle Categorizing Monitor"
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "Madagaskar"
+#: ../../bootlook.pm_.c:83
+msgid "NewStyle Monitor"
+msgstr "NewStyle Monitor"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
+#: ../../bootlook.pm_.c:84
+msgid "Traditional Monitor"
+msgstr "Tradicionalni Monitor"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
-msgstr "Kron još uvijek nije dostupan kao ne-root"
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
+msgstr "Tradicionalni Gtk+ Monitor"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "System"
-msgstr "Sistem"
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
+msgstr "Pokreni Aurora-u prilikom boota"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Da li želite koristiti ovu mogućnost?"
+#: ../../bootlook.pm_.c:89
+msgid "Lilo/grub mode"
+msgstr "Lilo/grub mod"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr "Arapska"
+#: ../../bootlook.pm_.c:89
+msgid "Yaboot mode"
+msgstr "Yaboot mod"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:138
+#, fuzzy
+msgid "Install themes"
+msgstr "Sistem instalacije"
+
+#: ../../bootlook.pm_.c:139
msgid ""
-"\n"
-"- Options:\n"
+"Display theme\n"
+"under console"
msgstr ""
-"\n"
-"- Opcije:\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Password required"
-msgstr "Potrebna šifra"
-#: ../../common.pm:1
-#, c-format
-msgid "%d minutes"
-msgstr "%d minuta"
+#: ../../bootlook.pm_.c:140
+#, fuzzy
+msgid "Create new theme"
+msgstr "Napravi novu particiju"
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: ../../bootlook.pm_.c:184
#, c-format
-msgid "Graphics card: %s"
-msgstr "GrafiÄka karta: %s"
+msgid "Backup %s to %s.old"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV transfer failed!"
-msgstr "WebDAV transfer nije uspio!"
+#: ../../bootlook.pm_.c:187
+#, fuzzy, c-format
+msgid "Copy %s to %s"
+msgstr "Kopiram %s"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "XFree konfiguracija"
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+msgstr "Greška"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Choose action"
-msgstr "Izaberi akciju"
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "French Polynesia"
-msgstr "Francuska Polinezija"
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"ObiÄno DrakX nema problema da odredi broj dugmadi na vaÅ¡em miÅ¡u.\n"
-"Ako ima, pretpostaviće da imate miš sa dva dugmeta i podesiće simulaciju\n"
-"trećeg dugmeta. Treće dugme se može ''pritisnuti'' na mišu sa dva dugmeta\n"
-"istovremenim klikom na lijevo i desno dugme miša. DrakX će automatski\n"
-"znati da li miš koristi PS/2, serijski ili USB interfejs.\n"
-"\n"
-"Ako iz nekog razloga želite navesti drugaÄiji tip miÅ¡a, izaberite ga sa\n"
-"ponuđene liste.\n"
-"\n"
-"Ako izaberete miÅ¡ razliÄit od ponuÄ‘enog, biće prikazan testni ekran.\n"
-"Koristite miÅ¡ i toÄkić da potvrdite da su postavke taÄne i da miÅ¡ radi\n"
-"ispravno. Ako miš ne radi kako treba, pritisnite tipku space ili Enter\n"
-"da prekinete test i vratite se na listu izbora.\n"
-"\n"
-"MiÅ¡evi sa toÄkićem Äesto nisu prepoznati automatski, stoga trebate izabrati\n"
-"miš na listi. Pazite da izaberete odgovarajući port na koji je vaš miš\n"
-"prikljuÄen. Nakon izbora miÅ¡a i pritiska na dugme \"%s\", na ekranu će\n"
-"biti prikazana slika miÅ¡a. Pomjerajte toÄkić miÅ¡a kako biste provjerili da "
-"li\n"
-"ispravno funkcioniÅ¡e. Kada vidite da se toÄkić na ekranu pomjera onako\n"
-"kako vi vrtite stvarni toÄkić, provjerite dugmad i provjerite da li se "
-"pokazivaÄ\n"
-"na ekranu pomjera onako kako vi pomjerate miš."
-
-#: ../../services.pm:1
-#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "PodrÅ¡ka za OKI 4w i kompatibilne 'winprinter' Å¡tampaÄe."
+#: ../../bootlook.pm_.c:222
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:224
msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-"Datoteke i wild-cards navedene u datoteci .backupignore na vrhu stabla "
-"direktorija neće biti backupovane."
-#: ../../services.pm:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Pokreće ALSA zvuÄni sistem (Advanced Linux Sound Architecture)"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
+#: ../../bootlook.pm_.c:238
#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instaliram drajver za %s karticu %s"
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:244
msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-"Prebacili ste vaÅ¡ bivÅ¡i podrazumjevani Å¡tampaÄ (\"%s\"),Da li će to takoÄ‘er "
-"biti podrazumjevani Å¡tampaÄ podnovim sistemom Å¡tampe %s?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Enable Server"
-msgstr "Omogući server"
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ukrainian"
-msgstr "Ukrajinska"
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+#, fuzzy
+msgid "Notice"
+msgstr "NoVideo"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-"Mrežni pristup nije aktivan i nije mogao biti pokrenut. Molim provjerite "
-"vašu konfiguraciju i vaš hardware. Onda ponovo pokušajte podesiti udaljeni "
-"Å¡tampaÄ."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Omogući \"%s\" da piše u datoteku"
+#: ../../bootlook.pm_.c:251
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Izaberite klasu instalacije"
-#: ../../install_steps_interactive.pm:1
+#: ../../bootlook.pm_.c:259
#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Molim ubacite boot disketu koju ste koristili u jedinicu %s"
+msgid ""
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
+msgstr ""
+"Trenutno koristite %s kao boot manager.\n"
+"Kliknite na KonfiguriÅ¡i kako bi se pokrenuo Äarobnjak za podeÅ¡avanje."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local network(s)"
-msgstr "Lokalna mreža (mreže)"
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
+msgstr "Konfiguriši"
-#: ../../help.pm:1
-#, c-format
-msgid "Remove Windows"
-msgstr "Ukloni Windows"
+#: ../../bootlook.pm_.c:268
+#, fuzzy
+msgid "Splash selection"
+msgstr "Spasi izbor paketa"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
+#: ../../bootlook.pm_.c:271
+msgid "Themes"
msgstr ""
-"Vaš %s je podešen.\n"
-"Sada možete skenirati dokumente koristeći \"XSane\" koji se nalazi u meniju "
-"Aplikacije/Multimedija/Grafika."
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Firewire controllers"
-msgstr "Firewire kontroleri"
-#: ../../help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:273
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 ""
-"Nakon što podesite opšte parametre bootloadera, dobićete listu opcija\n"
-"koja će biti prikazana prilikom svakog boot-a.\n"
-"\n"
-"Ako na vaÅ¡em raÄunaru postoje neki drugi operativni sistemi, oni će biti\n"
-"dodani na tu listu. Možete fino podesiti postojeće opcije klikajući na\n"
-"dugme \"%s\" da biste dodali novu opciju; izborom postojeće opcije i "
-"klikanjem\n"
-"na \"%s\" ili \"%s\" da biste je izmijenili ili uklonili. \"%s\" potvrđuje\n"
-"vaše izmjene.\n"
-"\n"
-"Takođe možda ne želite dati pristup na ove druge operativne sisteme bilo\n"
-"kome ko sjedne za raÄunar i restartuje ga. Možete obrisati pojedine stavke "
-"iz\n"
-"boot menija, ali odgovarajuće operativne sisteme više nećete moći pokrenuti\n"
-"bez boot diskete!"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "System mode"
-msgstr "Sistemske opcije"
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
msgstr ""
-"Da biste Å¡tampali na NetWare Å¡tampaÄ, trebate dati naziv NetWare print "
-"servera (Pažnja! Ono može biti razliÄito od njegovog TCP/IP imena!) kao i "
-"naziv reda za Å¡tampu na Å¡tampaÄu kojem želite pristupiti i eventualno "
-"korisniÄko ime i Å¡ifru."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Netmask:"
-msgstr "Netmask:"
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
+msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
-msgstr "Uradi kasnije"
+#: ../../bootlook.pm_.c:316
+msgid "System mode"
+msgstr "Sistem mod"
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "Append"
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
+msgstr "Pokreni X-Window sistem na startu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Osvježi listu Å¡tampaÄa (kako bi bili prikazani svi dostupni CUPS Å¡tampaÄi)"
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
+msgstr "Ne, ne želim da se autologiram"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Kada je upaljena ova opcija, prilikom svakog pokretanja CUPSa biće "
-"provjereno da\n"
-"\n"
-"- je instaliran LPD/LPRng, CUPS neće prepisati /etc/printcap\n"
-"\n"
-"- postoji /etc/cups/cupsd.conf, ako ne onda će biti napravljen\n"
-"\n"
-"- informacije o Å¡tampaÄu ne sadrže \"localhost\" kao ime servera prilikom "
-"broadcasta.\n"
-"\n"
-"Ako vam neke od ovih mjera stvaraju probleme, možete iskljuÄiti ovu opciju, "
-"ali onda se morate sami brinuti da su navedeni uslovi ispunjeni."
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "Da, želim da se autologiram sa ovim (korisnik, desktop)"
+
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
+msgstr "U redu"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Ova auto instalacija može biti potpuno automatizovana ako želite,\n"
-"u kojem sluÄaju će ona preuzeti hard disk!!\n"
-"(ovo je namjenjeno za instaliranje na drugi raÄunar).\n"
-"\n"
-"Možda ćete radije željeti ponoviti instalaciju.\n"
+#: ../../common.pm_.c:107
+msgid "GB"
+msgstr "GB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Mrežni Å¡tampaÄ \"%s\", port %s"
+#: ../../common.pm_.c:107
+msgid "KB"
+msgstr "KB"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Molim izaberite koji mrežni adapter će biti spojen na vašu Lokalnu mrežu."
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "MB"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
-msgstr "OK za vraćanje ostalih datoteka."
+#: ../../common.pm_.c:115
+msgid "TB"
+msgstr "TB"
-#: ../../install_steps_interactive.pm:1
+#: ../../common.pm_.c:123
#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Molim izaberite izgled vaše tastature."
+msgid "%d minutes"
+msgstr "%d minuta"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "URI ureÄ‘aja Å¡tampaÄa"
+#: ../../common.pm_.c:125
+msgid "1 minute"
+msgstr "1 minuta"
-#: ../../standalone/drakbackup:1
+#: ../../common.pm_.c:127
#, c-format
-msgid "Not erasable media!"
-msgstr "Medij nije izbrisiv!"
+msgid "%d seconds"
+msgstr "%d sekundi"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "Terminal"
+#: ../../common.pm_.c:172
+msgid "Can't make screenshots before partitioning"
+msgstr "Ne mogu napraviti screenshot prije particioniranja"
-#: ../../security/help.pm:1
+#: ../../common.pm_.c:179
#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr "UkljuÄi/iskljuÄi zaÅ¡titu od lažiranja IP adrese."
+msgid "Screenshots will be available after install in %s"
+msgstr "Screenshotovi će biti dostupni nakon što instalirate u %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Instaliram sistem za štampu na sigurnosnom nivou: %s"
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+msgid "France"
+msgstr "Francuska"
-#: ../../any.pm:1
-#, c-format
-msgid "The user name is too long"
-msgstr "KorisniÄko ime je predugaÄko"
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
+msgstr "Kostarika"
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "Ostali OSi (Windows...)"
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+msgid "Belgium"
+msgstr "Belgija"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr "Udaljeni WebDAV sajt je već sinhroniziran!"
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
+msgstr "Češka"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
-msgstr "ÄŒitam bazu podataka o Å¡tampaÄima ..."
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+msgid "Germany"
+msgstr "NjemaÄka"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Napravi autoinstalacijsku disketu"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+msgid "Greece"
+msgstr "GrÄka"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t korisniÄko ime: %s\n"
-"\t\t u direktoriju: %s \n"
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+msgid "Norway"
+msgstr "Norveška"
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr "Somalija"
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+msgid "Sweden"
+msgstr "Å vedska"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr "Nema open source drajver"
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
+msgstr "Nizozemska"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
-msgstr "Def."
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+msgid "Italy"
+msgstr "Italija"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+msgid "Austria"
+msgstr "Austrija"
+
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
+msgstr "SAD"
+
+#: ../../diskdrake/dav.pm_.c:19
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"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 ""
-"Baziran na prethodnom nivou, ali sada je sistem potpuno zatvoren.\n"
-"Sigurnosne osobine na maksimumu."
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "Nikaragva"
+#: ../../diskdrake/dav.pm_.c:27
+#, fuzzy
+msgid "New"
+msgstr "novi"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "Nova Kaledonija"
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Demontiraj"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Evropski protokol (EDSS1)"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Montiraj"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Delete"
-msgstr "/_Izbriši"
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
+msgstr "Server"
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "Video mod"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "TaÄka montiranja"
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
-msgstr "Oman"
+#: ../../diskdrake/dav.pm_.c:85
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Molim unesite brzinu cd pisaÄa"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Molim unesite vašu email adresu ispod"
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Network Monitoring"
-msgstr "Nadzor mreže"
+#: ../../diskdrake/dav.pm_.c:109
+#, fuzzy
+msgid "Server: "
+msgstr "Server"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "SunOS"
-msgstr "SunOS"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
+msgstr "TaÄka montiranja: "
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "New size in MB: "
-msgstr "Nova veliÄina u MB: "
+msgid "Options: %s"
+msgstr "Opcije: %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Tip tabele particija: %s\n"
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
+msgstr "Molimo najprije napravite backup vaših podataka"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication Windows Domain"
-msgstr "Autentikacijska Windows domena"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "ProÄitajte pažljivo!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "US tastatura"
+#: ../../diskdrake/hd_gtk.pm_.c:100
+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 ""
+"Ako planirate koristiti aboot, budite pažljivi i ostavite slobodnog prostora "
+"(2048 sektora je dovoljno)\n"
+"na poÄetku diska"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr "Emulacija dugmeta"
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "ÄŒarobnjak"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", mrežni Å¡tampaÄ \"%s\", port %s"
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
+msgstr "Izaberi akciju"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
-"\n"
-"Drakbackup aktivnosti putem trake:\n"
-"\n"
+"Imate jednu veliku FAT particiju\n"
+"(koju najvjerovatnije koristi MicroSoft Dos/Windows).\n"
+"Predlažem da najprije promjenite veliÄinu te particije\n"
+"(kliknite na nju, zatim na \"Promjeni veliÄinu\")"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-" Problem sa FTP konekcijom: Nije bilo moguće poslati vaše backup datoteke "
-"putem FTPa.\n"
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "Molimo kliknite na particiju"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Sending Speed:"
-msgstr "Brzina slanja:"
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "Detalji"
-#: ../../harddrake/sound.pm:1
-#, 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"
+#: ../../diskdrake/hd_gtk.pm_.c:254
+#, fuzzy
+msgid "No hard drives found"
msgstr ""
-"KlasiÄni naÄin utvrÄ‘ivanja bugova u zvuÄnom sistemu je izvrÅ¡avanje\n"
-"sljedećih naredbi:\n"
+"Nije pronaÄ‘en nijedan lokalni Å¡tampaÄ!\n"
"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" će vam reći koji drajver inaÄe koristi\n"
-"vaša kartica\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" će vam reći koji drajver je\n"
-"trenutno u upotrebi\n"
-"\n"
-"- sa \"/sbin/lsmod\" možete provjeriti da li je modul (drajver) uÄitan\n"
-"ili ne\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" i \"/sbin/chkconfig --list alsa\" vam\n"
-"govore da li su servisi sound i alsa podešeni da se pokreću na\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" će vam reći da li je zvuk utišan (muted) ili ne\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" vam govori koji program koristi zvuÄnu "
-"karticu.\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
-msgstr "Halt bug"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Podešavanje Mail obavijesti"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "FAT"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr "Tokelau"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Matching"
-msgstr "Odgovara"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Journalised FS"
+msgstr "Journalised FS"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bosnian"
-msgstr "Bosanska"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Release: "
-msgstr "Izdanje:"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "Swap"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection speed"
-msgstr "Brzina konekcije"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "Prazno"
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr "Namibija"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "Ostalo"
-#: ../../services.pm:1
-#, c-format
-msgid "Database Server"
-msgstr "Server baze podataka"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "Tipovi file sistema:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr "posebne mogućnosti drajvera (mogućnost prženja i/ili podrška za DVD)"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "Kreiraj"
+
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "Tip"
-#: ../../raid.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Ne mogu dodati particiju na _formatiran_ RAID md%d"
+msgid "Use ``%s'' instead"
+msgstr "Koristite ``%s'' umjesto toga"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Network Time Protocol"
-msgstr "Mrežni interface"
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "Obriši"
+
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
+msgstr "Najprije koristite ``Demontiraj''"
-#: ../../Xconfig/card.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, 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."
+"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-"Vaša kartica može imati podršku za 3D hardversko ubrzanje sa XFree %s,\n"
-"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR.\n"
-"Vašu karticu takođe podržava XFree %s koji može imati bolju podršku za 2D."
+"Nakon promjene tipa particije %s, svi podaci na ovoj particiji će biti "
+"izgubljeni"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Molim saÄekajte, podeÅ¡avam sigurnosne opcije..."
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose a partition"
+msgstr "Izaberi particiju"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "Nepoznat|CPH05X (bt878) [razni proizvoÄ‘aÄi]"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose another partition"
+msgstr "Izaberi drugu particiju"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Pokreni X-Window sistem na startu"
+#: ../../diskdrake/interactive.pm_.c:202
+msgid "Exit"
+msgstr "Izlaz"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr "svakog sata"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
+msgstr "Prebaci u ekspertni mod"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
-msgstr "Desna Shift tipka"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
+msgstr "Prebaci u normalni mod"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " uspješno spašeni na %s "
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "Poništi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Omogućujem pristup Å¡tampaÄu putem CUPSa..."
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "Svejedno nastavljate?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr "Antigua i Barbuda"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "Izlaz bez spašavanja"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! Određuje šifru u sistemskoj bazi podataka koja se razlikuje\n"
-"od one u bazi podataka Terminal Servera.\n"
-"Obrišite i ponovo dodajte korisnika u Terminal Server da biste omogućili "
-"pristup."
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "Izlazite bez pisanja tabele particija?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "Å panska"
+#: ../../diskdrake/interactive.pm_.c:257
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "Želite li spasiti izmjene /etc/fstab"
-#: ../../services.pm:1
-#, c-format
-msgid "Start"
-msgstr "Start"
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "Obriši sve"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
-msgstr "Direktna root prijava"
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
+msgstr "Auto alokacija"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring applications..."
-msgstr "Podešavam aplikacije..."
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+msgid "More"
+msgstr "Još"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"Dobro doÅ¡li u ÄŒarobnjak za podeÅ¡avanje Å¡tampaÄa\n"
-"\n"
-"Ovaj Äarobnjak će vam pomoći da instalirate Å¡tampaÄe spojene na ovaj "
-"raÄunar, na mrežu ili na udaljeni Windows raÄunar.\n"
-"\n"
-"Ako imate Å¡tampaÄ spojen na ovaj raÄunar, molim prikljuÄite ga na raÄunar i "
-"upalite ga kako bi bio automatski prepoznat. TakoÄ‘e mrežni Å¡tampaÄi i "
-"Windows raÄunari moraju biti povezani i upaljeni.\n"
-"\n"
-"Obratite pažnju da automatsko prepoznavanje mrežnih Å¡tampaÄa traje duže nego "
-"prepoznavanje Å¡tampaÄa spojenih na ovaj raÄunar. Stoga ugasite prepoznavanje "
-"mrežnih Å¡tampaÄa i/ili Windows Å¡tampaÄa ako vam ona nije potrebna.\n"
-"\n"
-" Kliknite na \"Dalje\" kada budete spremni, ili na \"Odustani\" ako ne "
-"želite podesiti Å¡tampaÄ sada."
+#: ../../diskdrake/interactive.pm_.c:278
+msgid "Hard drive information"
+msgstr "Informacije o hard disku"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
-msgstr "Normalna modemska konekcija"
+#: ../../diskdrake/interactive.pm_.c:310
+msgid "All primary partitions are used"
+msgstr "Sve primarne particije su u upotrebi"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "File Selection"
-msgstr "Izbor datoteka"
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "Ne mogu dodati više particija"
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
+#: ../../diskdrake/interactive.pm_.c:312
+msgid ""
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
+msgstr ""
+"Da biste imali još particija, molimo pobrišite jednu kako bi se mogla "
+"kreirati extended particija"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Obriši traku prije backupa"
+#: ../../diskdrake/interactive.pm_.c:322
+msgid "Save partition table"
+msgstr "Snimi tabelu particija"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
-msgstr "Pokreni alat za podešavanje"
+#: ../../diskdrake/interactive.pm_.c:323
+msgid "Restore partition table"
+msgstr "Vrati tabelu particija"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "Instalacija bootloadera"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
+msgstr "Spasi tabelu particija"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "VeliÄina root particije u MB:"
+#: ../../diskdrake/interactive.pm_.c:326
+msgid "Reload partition table"
+msgstr "Ponovo uÄitaj tabelu particija"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Ovo je obavezan paket, ne može biti iskljuÄen"
+#: ../../diskdrake/interactive.pm_.c:331
+msgid "Removable media automounting"
+msgstr "Automatsko montiranje izmjenjivog medija"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "Izaberite datoteku"
+
+#: ../../diskdrake/interactive.pm_.c:347
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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"The backup partition table has not the same size\n"
+"Still continue?"
msgstr ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or "
-"a boot floppy\n"
-" \tor CD to 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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"Backup tabela particija nema istu veliÄinu\n"
+"Ipak nastavljate?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "Etherboot ISO image je %s"
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "Upozorenje"
-#: ../../services.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:362
msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
-"named (BIND) je Domain Name Server (DNS) koji se koristi za određivanje IP "
-"adrese iz imena raÄunara."
+"Ubacite disketu u jedinicu\n"
+"Svi podaci na toj disketi će biti izgubljeni"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr "Saint Lucia"
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
+msgstr "Pokušavam da spasim tabelu particija"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "Novembar"
+#: ../../diskdrake/interactive.pm_.c:379
+msgid "Detailed information"
+msgstr "Detaljne informacije"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
-msgstr "Prekini konekciju..."
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "Promjeni veliÄinu"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Report"
-msgstr "Izvještaj"
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "Premještanje"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr "Palau"
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "Formatiraj"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "nivo"
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "Dodaj na RAID"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr ""
-"Sve incidente će pratiti jedan kvalificiran MandrakeSoft tehniÄki eksper."
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "Dodaj na LVM"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "Izbor grupe paketa"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "Ukloni sa RAIDa"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Omogući lokalno podešavanje\n"
-"hardvera."
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "Ukloni sa LVMa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Restore putem mrežnog protokola: %s"
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "Modificiraj RAID"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr "Ovdje možete podesiti svaki parametar modula."
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
+msgstr "Koristi za loopback"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Izaberite rezoluciju i broj boja"
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "Napravi novu particiju"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
-msgstr "Emuliraj treće dugme?"
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "PoÄetni sektor: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "VeliÄina u MB: "
+
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "Tip datoteÄnog sistema: "
+
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Preference: "
+
+#: ../../diskdrake/interactive.pm_.c:481
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 ""
-"Ne možete napraviti novu particiju\n"
-"(pošto ste dosegli maksimalan broj primarnih particija).\n"
-"Najprije uklonite primarnu particiju i napravite extended (proširenu) "
-"particiju."
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr "Montiraj"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Pravim autoinstalacijsku disketu"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Install updates"
-msgstr "Instaliraj update"
+#: ../../diskdrake/interactive.pm_.c:511
+msgid "Remove the loopback file?"
+msgstr "Ukloniti loopback datoteku?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
-msgstr "visina tekst polja"
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "Izmjena tipa particije"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "State"
-msgstr "Status"
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+msgid "Which filesystem do you want?"
+msgstr "Koji datoteÄni sistem želite?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Provjerite da li je ubaÄena disketa za ovaj ureÄ‘aj %s"
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
+msgstr "Prebacujem sa ext2 na ext3"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Enable multiple profiles"
-msgstr "Omogući više profila"
+msgid "Where do you want to mount loopback file %s?"
+msgstr "Gdje želite montirati loopback datoteku %s?"
-#: ../../fs.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr "Nemoj interpretirati karakter ili blok ureÄ‘aje na datoteÄnom sistemu."
+msgid "Where do you want to mount device %s?"
+msgstr "Gdje želite montirati uređaj %s?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
-"Ove opcije mogu spasiti ili vratiti sve datoteke u vašem /etc direktoriju.\n"
+"Ne mogu izmjeniti taÄku montiranja jer se ova particija koristi za "
+"loopback.\n"
+"Najprije uklonite loopback"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Local printer"
-msgstr "Lokalni Å¡tampaÄ"
+#: ../../diskdrake/interactive.pm_.c:606
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Gdje želite montirati uređaj %s?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Files Restored..."
-msgstr "Vraćene datoteke..."
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "IzraÄunavam granice FAT filesistema"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
-msgstr "Izbor paketa"
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "Mijenjam veliÄinu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritania"
-msgstr "Mauritanija"
+#: ../../diskdrake/interactive.pm_.c:662
+msgid "This partition is not resizeable"
+msgstr "Ovoj particiji ne možete mijenjati veliÄinu"
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
-"Mogu zadržati trenutnu konfiguraciju i pretpostaviti da ste već podesili "
-"DHCP server; u tom sluÄaju molim provjerite da li sam ispravno proÄitao "
-"Mrežnu adresu koju ćete koristiti na lokalnoj mreži; neću je ponovo podesiti "
-"i neću mijenjati vaše postavke DHCP servera.\n"
-"\n"
-"Predložena DNS postavka je Caching nameserver koji je podešen na firewallu. "
-"Možete je zamijeniti npr. IP adresom DNS servera vašeg ISPa.\n"
-"\t\t \n"
-"Ako ne, mogu ponovo podesiti vaš interfejs i podesiti DHCP server za vas.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
+msgstr "Svi podaci na toj particiji bi trebali biti backupovani"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:669
#, 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 "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-"Nije pronaÄ‘en nijedan lokalni Å¡tampaÄ! Ako želite ruÄno instalirati Å¡tampaÄ, "
-"unesite ime uređaja / ime datoteke na ulaznu liniju (Paralelni portovi: /dev/"
-"lp0, /dev/lp1, ..., ekvivalentno LPT1:, LPT2:, ..., prvi USB Å¡tampaÄ: /dev/"
-"usb/lp0, drugi USB Å¡tampaÄ: /dev/usb/lp1, ...)."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All primary partitions are used"
-msgstr "Sve primarne particije su u upotrebi"
+"Nakon promjene veliÄine particije %s, svi podaci na njoj će biti izgubljeni"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "na LPD serveru \"%s\", Å¡tampaÄ \"%s\""
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "Izaberite novu veliÄinu"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Nakon Å¡to je to gotovo, preporuÄujemo da restartujete vaÅ¡ X\n"
-"okoliÅ¡ kako bi se izbjegao problem sa promjenom naziva raÄunara."
+#: ../../diskdrake/interactive.pm_.c:675
+msgid "New size in MB: "
+msgstr "Nova veliÄina u MB: "
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Automatsko prepoznavanje i podešavanje hardware-a tokom boota."
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "Na koji disk je želite premjestiti?"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation Server Configuration"
-msgstr "Podešavanje instalacionog servera"
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "Sektor"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "Podešavam IDE"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "Na koji sektor je želite premjestiti?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Mrežna funkcionalnost nije podešena"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "Premještam"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Configure module"
-msgstr "Podesi modul"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "Premještam particiju..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "Kokosova ostrva"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr "Izaberite postojeći RAID na koji ćete dodati"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr ""
-"Biće potrebno da rebootate prije nego što izmjene mogu stupiti na snagu"
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "novi"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
-msgstr "Broj telefona provajdera"
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
+msgstr "Izaberite postojeći LVM na koji ćete dodati"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Host %s"
-msgstr "RaÄunar %s"
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
+msgstr "Naziv LVMa?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
-msgstr "Fidži"
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
+msgstr "Ova particija se ne može koristiti za loopback"
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
-msgstr "Armenija"
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
+msgstr "Loopback"
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "Druga disketna jedinica"
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
+msgstr "Naziv loopback datoteke: "
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
-msgstr "O Harddrake-u"
+#: ../../diskdrake/interactive.pm_.c:831
+msgid "Give a file name"
+msgstr "Dajte naziv datoteke"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
-msgstr "Autorizuj TCP konekcije na X Window"
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
+msgstr "Datoteku već koristi drugi loopback, izaberite drugo ime"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr "Kapacitet uređaja"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
+msgstr "Datoteka već postoji. Želite li je koristiti?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Ubacite disketu u jedinicu\n"
-"Svi podaci na toj disketi će biti izgubljeni"
+#: ../../diskdrake/interactive.pm_.c:858
+msgid "Mount options"
+msgstr "Opcije montiranja"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "VeliÄina: %s"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
+msgstr "Razni"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Control i Shift tipka istovremeno"
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "Uređaj"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "secondary"
-msgstr "sekundarni"
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "nivo"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Pogledaj postavke backupa."
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "veliÄina chunka"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr "ako je postavljeno na da, prijavljuje rezultate provjere u syslog."
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
+msgstr "Budite oprezni: ova operacija je opasna"
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "Bez šifre"
+#: ../../diskdrake/interactive.pm_.c:962
+msgid "What type of partitioning?"
+msgstr "Koju vrstu particioniranja?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nigeria"
-msgstr "Nigerija"
+#: ../../diskdrake/interactive.pm_.c:978
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Paket %s treba biti instaliran. Da li ga želite instalirati?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s zahtijeva ime raÄunara...\n"
+#: ../../diskdrake/interactive.pm_.c:992
+msgid ""
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
+msgstr ""
+"Žalim, ali ipak neću prihvatiti kreiranje /boot particije ovdje (na cilindru "
+">1024).\n"
+"Ili ćete koristiti LILO i stvar neće raditi, ili nećete koristiti LILO pa "
+"vam ne treba ni /boot"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "Nema nijedne postojeće particije za upotrebu"
+#: ../../diskdrake/interactive.pm_.c:996
+msgid ""
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
+msgstr ""
+"Particija koju ste izabrali da dodate kao root (/) je fiziÄki locirana "
+"iznad\n"
+"1024og cilindra hard diska, tako da nemate /boot particiju.\n"
+"Ako planirate koristiti LILO boot manager, pazite da dodate /boot particiju"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1002
msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
msgstr ""
-"Sljedeći skeneri\n"
-"\n"
-"%s\n"
-"su dostupni na vašem sistemu.\n"
+"Izabrali ste softversku RAID particiju kao root (/).\n"
+"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
+"Pazite da dodate /boot particiju"
-#: ../../printer/main.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Višenamjenski uređaj na paralelnom portu #%s"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "Tabela particija za uređaj %s će biti zapisana na disk!"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
msgstr ""
-"Da biste Å¡tampali na TCP ili socket Å¡tampaÄ, morate dati hostname ili IP "
-"adresu Å¡tampaÄa i opcionalno broj porta (podrazumjeva se 9100). Na HP "
-"JetDirect serverima broj porta je obiÄno 9100, na ostalim serverima on može "
-"varirati. Pogledajte priruÄnik vaÅ¡eg hardware-a."
+"Biće potrebno da rebootate prije nego što izmjene mogu stupiti na snagu"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1037
#, c-format
-msgid "Hard drive information"
-msgstr "Informacije o hard disku"
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr ""
+"Nakon formatiranja particije %s, svi podaci na toj particiji će biti "
+"izgubljeni"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian"
-msgstr "Ruska"
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "Formatiram"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Jordan"
-msgstr "Jordan"
+msgid "Formatting loopback file %s"
+msgstr "Formatiram loopback datoteku %s"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
+msgid "Formatting partition %s"
+msgstr "Formatiram particiju %s"
+
+#: ../../diskdrake/interactive.pm_.c:1052
msgid "Hide files"
msgstr "Sakrij datoteke"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Automatski prepoznaj Å¡tampaÄe spojene na ovaj raÄunar"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "Žao mi je, nema disketne jedinice"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bolivia"
-msgstr "Bolivija"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Move files to the new partition"
+msgstr "Prebaci datoteke na novu particiju"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1053
#, c-format
msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-"Podesite vaÅ¡ Windows server tako da je Å¡tampaÄ dostupan putem IPP protokola "
-"i podesite štampanje sa ove mašine koristeći \"%s\" tip konekcije u "
-"Printerdrake-u.\n"
-"\n"
+"Direktorij %s već sadrži neke podatke\n"
+"(%s)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "Neispravan paket"
+#: ../../diskdrake/interactive.pm_.c:1064
+msgid "Moving files to the new partition"
+msgstr "Premještam datoteke na novu particiju"
-#: ../advertising/07-server.pl:1
+#: ../../diskdrake/interactive.pm_.c:1068
#, 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!"
-msgstr ""
-"Pretvorite vaÅ¡ raÄunar u moćan Linux server: Web server, email, firewall, "
-"file i print server (itd.) su udaljeni samo nekoliko klikova mišem!"
+msgid "Copying %s"
+msgstr "Kopiram %s"
-#: ../../security/level.pm:1
+#: ../../diskdrake/interactive.pm_.c:1072
#, c-format
-msgid "DrakSec Basic Options"
-msgstr "DrakSec osnovne opcije"
+msgid "Removing %s"
+msgstr "Uklanjam %s"
-#: ../../standalone/draksound:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Napomena: ako imate ISA PnP zvuÄnu karticu, moraćete koristiti sndconfig "
-"program. Samo ukucajte \"sndconfig\" na konzoli."
+msgid "partition %s is now known as %s"
+msgstr "particija %s je od sada poznata kao %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Romania"
-msgstr "Rumunija"
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "Uređaj: "
-#: ../../standalone/drakperm:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "Group"
-msgstr "Grupa"
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "DOS slovo uređaja: %s (pretpostavka)\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Canada"
-msgstr "Kanada"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "Tip: "
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "choose device"
-msgstr "izaberite uređaj"
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "Ime: "
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "Remove from LVM"
-msgstr "Ukloni sa LVMa"
+msgid "Start: sector %s\n"
+msgstr "PoÄetak: sector %s\n"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "Timezone"
-msgstr "Vremenska zona"
+msgid "Size: %s"
+msgstr "VeliÄina: %s"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid "German"
-msgstr "NjemaÄka"
+msgid ", %s sectors"
+msgstr ", %s sektora"
-#: ../../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
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
-msgid "Next ->"
-msgstr "Dalje ->"
+msgid "Cylinder %d to %d\n"
+msgstr "Cilindar %d do %d\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in japanese language. Only "
-"use this function if you really want to print text in japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Ako ovo ukljuÄite, moći ćete Å¡tampati obiÄne tekstualne datoteke na "
-"japanskom jeziku. Koristite ovu funkciju samo ako zaista želite štampati "
-"japanski tekst, jer kada je aktivirana, više ne možete štampati znakove sa "
-"akcentima u latiniÄnim fontovima (npr. naÅ¡a slova). TakoÄ‘e nećete moći "
-"prilagoditi margine, veliÄine znakova, itd. Ova postavka će utjecati samo na "
-"Å¡tampaÄe koji su definisani na ovom raÄunaru. Ako želite Å¡tampati japanski "
-"tekst na udaljenom raÄunaru, trebate aktivirati ovu funkciju na tom raÄunaru."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Postoji mogućnost da je ova\n"
-"particija Driver particija. Vjerovatno\n"
-"biste je trebali ostaviti na miru.\n"
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "Formatirana\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
-msgstr "Gvineja Bisau"
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "Nije formatirana\n"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Brzina horizontalnog osvježavanja"
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
+msgstr "Montirana\n"
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Edit"
-msgstr "Izmijeni"
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, c-format
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+"Loopback file(s):\n"
+" %s\n"
msgstr ""
-"Ne mogu izmjeniti taÄku montiranja jer se ova particija koristi za "
-"loopback.\n"
-"Najprije uklonite loopback"
+"Loopback datoteka(e):\n"
+" %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1132
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\""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"Podešavanje mreže koje je napravljeno tokom instalacije sada ne može biti "
-"pokrenuto. Molim provjerite da li će mreža postati dostupna nakon bootanja "
-"sistema i popravite podešenja koristeći Mandrake Kontrolni centar, sekcija "
-"\"Mreža i Internet\"/\"Konekcija\", a zatim podesite Å¡tampaÄ, ponovo "
-"koristeći Mandrake Kontrolni centar, sekcija \"Hardver\"/\"Å tampaÄ\""
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "USB controllers"
-msgstr "USB kontroleri"
+"Particija koja se boota po defaultu\n"
+" (za MS-DOS boot, ne za lilo)\n"
-#: ../../Xconfig/various.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "What norm is your TV using?"
-msgstr "Koji standard koristi vaš TV?"
+msgid "Level %s\n"
+msgstr "Nivo %s\n"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "Type:"
-msgstr "Tip:"
+msgid "Chunk size %s\n"
+msgstr "VeliÄina chunka %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Share name"
-msgstr "Share naziv"
+msgid "RAID-disks %s\n"
+msgstr "RAID-diskovi %s\n"
-#: ../../standalone/drakgw:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "enable"
-msgstr "ukljuÄi"
+msgid "Loopback file name: %s"
+msgstr "Naziv loopback datoteke: %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-"Kontaktiram Mandrake Linux web stranicu da bih saznao listu dostupnih "
-"mirrora..."
+"\n"
+"Postoji mogućnost da je ova\n"
+"particija Driver particija, vjerovatno\n"
+"biste je trebali ostaviti na miru.\n"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"Došlo je do problema prilikom restartovanja mreže:\n"
"\n"
-"%s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove the loopback file?"
-msgstr "Ukloniti loopback datoteku?"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Izabrana veliÄina je veća od slobodnog prostora"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP server name missing!"
-msgstr "NCP naziv servera nedostaje!"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose your country."
-msgstr "Molim izaberite vašu zemlju."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Datoteke backup-a hard diska..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Laotian"
-msgstr "Laoska"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Samoa"
-msgstr "Samoa"
+"Ova posebna Bootstrap\n"
+"particija je za\n"
+"dvojni boot vašeg sistema.\n"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
msgstr ""
-"Rstat protokol omogućava korisnicima na mreži da dobave\n"
-"mjeru performansi za svaki raÄunar na toj mreži"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Re-generating list of configured scanners ..."
-msgstr "Regeneriram listu podešenih skenera ..."
-#: ../../modules/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid "Module configuration"
-msgstr "Podešavanje modula"
+msgid "Size: %s\n"
+msgstr "VeliÄina: %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "Scanner"
-msgstr "Skener"
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Geometrija: %s cilindara, %s glava, %s sektora\n"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Upozorenje: testiranje ove grafiÄke karte može zalediti raÄunar"
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
+msgstr "Info: "
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "KorisniÄko ime smije sadržati samo mala slova, brojeve, `-' i `_'"
+msgid "LVM-disks %s\n"
+msgstr "LVM-diskovi %s\n"
-#: ../../standalone/drakbug:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
+msgid "Partition table type: %s\n"
+msgstr "Tip tabele particija: %s\n"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "Dobrodošli u Crackers"
+#: ../../diskdrake/interactive.pm_.c:1169
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
+msgstr "na busu %d id %d\n"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "Opcije modula"
+#: ../../diskdrake/interactive.pm_.c:1199
+msgid "Filesystem encryption key"
+msgstr "KljuÄ za kodiranje datoteÄnog sistema"
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
-msgstr "Zaštitite vašu mrežu uz Multi Network Firewall"
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
+msgstr "Izaberite vaÅ¡ kljuÄ za kodiranje datoteÄnog sistema"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1203
#, c-format
-msgid "Go on without configuring the network"
-msgstr "Nastavi bez podešavanja mreže"
+msgid "This encryption key is too simple (must be at least %d characters long)"
+msgstr ""
+"Ova šifra je previše jednostavna (mora biti duga najmanje %d karaktera)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Abort"
-msgstr "Prekid"
+#: ../../diskdrake/interactive.pm_.c:1204
+msgid "The encryption keys do not match"
+msgstr "Å ifre se ne poklapaju"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "Nema upita za šifru na %s na portu %s"
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
+msgstr "Å ifra"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse sa simulacijom toÄkića"
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
+msgstr "Šifra (još jednom)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Upotreba udaljenih skenera"
+#: ../../diskdrake/removable.pm_.c:47
+msgid "Change type"
+msgstr "Promjeni tip"
-#: ../../install_interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, 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 "Can't login using username %s (bad password?)"
msgstr ""
-"Vaša Windows particija je previše fragmentirana. Molim restartujte vaš "
-"raÄunar pod Windows-om, pokrenite ``defrag'' alat, zatim pokrenite Mandrake "
-"Linux instalaciju."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norveška)"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autentikacija"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Napredak backup-a hard diska..."
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Ne mogu izvrsiti fork: %s"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "KorisniÄko ime"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "Tip: "
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Izmijeni klijent"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+#, fuzzy
+msgid "Username"
+msgstr "KorisniÄko ime"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "no fonts found"
-msgstr "nije pronađen nijedan font"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS domen"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Mouse"
-msgstr "Miš"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+msgid "Search servers"
+msgstr "Traži servere"
-#: ../../bootloader.pm:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "not enough room in /boot"
-msgstr "nema dovoljno prostora u /boot"
+msgid "%s formatting of %s failed"
+msgstr "%s formatiranje %s nije uspjelo"
-#: ../../install_steps_gtk.pm:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "trying to promote %s"
-msgstr ""
+msgid "I don't know how to format %s in type %s"
+msgstr "Ne znam kako formatirati %s tipa %s"
-#: ../../lang.pm:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "Liechtenstein"
-msgstr "Lihtenštajn"
+msgid "mounting partition %s in directory %s failed"
+msgstr "montiranje particije %s u direktoriju %s nije uspjelo"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid "Host name"
-msgstr "Host name"
+msgid "error unmounting %s: %s"
+msgstr "greška u demontiranju %s: %s"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the color of the progress bar"
-msgstr "boja progresne trake"
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "jednostavno"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Onemogući datoteke fontova"
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
+msgstr "sa /usr"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to RAID"
-msgstr "Dodaj na RAID"
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "server"
-#: ../../help.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
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"
+"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"
-" * 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."
+"Do you agree to loose all the partitions?\n"
msgstr ""
-"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"
+"Ne mogu proÄitati vaÅ¡u tabelu particija, previÅ¡e je oÅ¡tećena za mene :(\n"
+"Mogu pokušati da pobrišem loše particije (SVI PODACI će biti izgubljeni!).\n"
+"Drugo rješenje je da onemogućim DrakX da mijenja tabelu particija.\n"
+"(greška je %s)\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."
+"Slažete li se sa gubitkom svih particija?\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr "Å tampaÄ \"%s\" je uspjeÅ¡no dodan u Star Office/OpenOffice.org/GIMP."
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr "Ne možete koristiti JFS za particije manje od 16MB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Nema pogodne disketne jedinice!"
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "Ne možete koristiti ReiserFS za particije manje od 32MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"Za listu opcija koje su dostupne za trenutni Å¡tampaÄ ili proÄitajte listu "
-"koja je data ispod ili kliknite na dugme \"Lista opcija za štampu\".%s%s%s\n"
-"\n"
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
+msgstr "TaÄke montiranja moraju poÄinjati sa /"
-#: ../../lang.pm:1
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "Saudi Arabia"
-msgstr "Saudijska Arabija"
+msgid "There is already a partition with mount point %s\n"
+msgstr "Već postoji particija sa taÄkom montiranja %s\n"
-#: ../../services.pm:1
+#: ../../fsedit.pm_.c:526
#, c-format
-msgid "Internet"
-msgstr "Internet"
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr "Ne možete koristiti LVM logiÄki volumen za taÄku montiranja %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "Svejedno nastavljate?"
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
+msgstr "Ovaj direktorij treba ostati unutar korijenskog file sistema"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:530
+#, fuzzy
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Ako Å¡tampaÄ nije naveden, izaberite kompatibilan (pogledajte uputstva za "
-"Å¡tampaÄ) ili sliÄan."
+"Potreban vam je pravi file sistem (ext2, reiserfs) za ovu taÄku montiranja\n"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:532
#, c-format
-msgid "Printer"
-msgstr "Å tampaÄ"
+msgid "You can't use an encrypted file system for mount point %s"
+msgstr "Ne možete koristiti kriptovani datoteÄni sistem za taÄku montiranja %s"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices were added:\n"
-msgstr "Dodani su neki uređaji:\n"
+#: ../../fsedit.pm_.c:599
+msgid "Not enough free space for auto-allocating"
+msgstr "Nema dovoljno prostora za auto-alokaciju"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometrija: %s cilindara, %s glava, %s sektora\n"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
+msgstr "Nemam šta da radim"
-#: ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:694
#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Å tampam na Å¡tampaÄ \"%s\""
+msgid "Error opening %s for writing: %s"
+msgstr "Greška u otvaranju %s za pisanje: %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr "/etc/hosts.allow i /etc/hosts.deny su već podešeni - bez izmjene"
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Tape"
-msgstr "Vrati sa trake"
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
+msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../harddrake/sound.pm_.c:171
#, 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's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-"Da prijavite bug, kliknite na dugme Prijavi, koje će u vašem web browseru\n"
-"otvoriti Anthill, gdje ćete moći poslati gore prikazane informacije kao "
-"prijavu buga."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the profile to configure"
-msgstr "Izaberite profil za podešavanje"
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "Sound configuration"
+msgstr "Podešavanje CUPSa"
-#: ../../security/l10n.pm:1
+#: ../../harddrake/sound.pm_.c:174
#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
-msgstr "Minimalna dužina šifre i broj cifara i velikih slova"
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
+msgstr ""
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../harddrake/sound.pm_.c:176
#, c-format
msgid ""
"\n"
"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
-msgstr ""
-"\n"
-"\n"
-"Unesite Zeroconf ime raÄunara bez taÄaka ako ne želite\n"
-"da koristite ponuÄ‘eno ime raÄunara."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Backup-uj sada iz konfiguracijske datoteke"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr "TaÄka montiranja se treba sastojati samo od brojeva i slova"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Restartujem sistem za štampu ..."
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "You can only run with no CDROM support"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "Pogledaj hardware info"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
-msgstr "Dan"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr "Prvi sektor boot particije"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "ProizvoÄ‘aÄ Å¡tampaÄa, model"
+#: ../../harddrake/sound.pm_.c:178
+#, fuzzy
+msgid "Driver:"
+msgstr "Drajver"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+msgid "Help"
+msgstr "Pomoć"
-#: ../../standalone.pm:1
-#, 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)"
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
msgstr ""
-"[OPTIONS]...\n"
-"Podešavanje Mandrake Terminal Servera\n"
-"--enable : omogući MTS\n"
-"--disable : onemogući MTS\n"
-"--start : pokreni MTS\n"
-"--stop : zaustavi MTS\n"
-"--adduser : dodaj postojećeg sistemskog korisnika MTSu (potrebno je "
-"korisniÄko ime)\n"
-"--deluser : obriši postojećeg sistemskog korisnika sa MTSa (potrebno "
-"je korisniÄko ime)\n"
-"--addclient : dodaj klijentski raÄunar MTSu (potrebna je MAC adresa, "
-"IP, nbi image ime)\n"
-"--delclient : obriÅ¡i klijentski raÄunar sa MTSa (potrebna je MAC "
-"adresa, IP, nbi image ime)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Subnet mask:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Set password expiration and account inactivation delays"
-msgstr "Izaberite istek Å¡ifre i pauze prije deaktivacije raÄuna"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Opterećenje"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
+#: ../../harddrake/sound.pm_.c:186
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"
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Dva kritiÄna parametra su brzina vertikalnog osvježenja, Å¡to je brzina\n"
-"kojom se cijeli ekran osvježava, i brzina horizontalne\n"
-"sinhronizacije, što je brzina kojm se prikazuju skan-linije.\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
-"VEOMA JE VAŽNO da ne izaberete tip monitora Äiji je sinhronizacioni\n"
-"raspon izvan mogućnosti vašeg monitora: time možete oštetiti monitor.\n"
-" Ako niste sigurni, izaberite najmanju opciju."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
-msgstr "Izmijeni"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"It also provides a much higher API than OSS.\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"
+"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 ""
-"\n"
-"Komande \"%s\" i \"%s\" takoÄ‘er omogućavaju izmjenu opcija za pojedinaÄni "
-"zadatak štampe. Jednostavno dodajte željena podešenja na komandnu liniju, "
-"npr. \"%s <datoteka>\".\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Potrebno ime raÄunara, korisniÄko ime i Å¡ifra!"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Insert floppy"
-msgstr "Ubacite disketu"
-
-#: ../../diskdrake/dav.pm:1
+#: ../../harddrake/sound.pm_.c:202
#, 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\"."
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-"WebDAV je protokol koji vam omogućuje da direktorij web servera\n"
-"montirate lokalno i da ga tretirate kao lokalni direktorij (pod uslovom da\n"
-"je web server podešen kao WebDAV server). Ako želite dodati WebDAV\n"
-"taÄke montiranja, izaberite \"Novi\"."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
-msgstr "novi"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable syslog reports to console 12"
-msgstr "UkljuÄi/iskljuÄi syslog izvjeÅ¡taje na konzoli 12"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Želite li ponovo pokušati?"
-
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "ÄŒarobnjak"
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+msgid "Please Wait... Applying the configuration"
+msgstr "Molimo saÄekajte... Primjenjujem konfiguraciju"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected server"
-msgstr "Izmijeni izabrani server"
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "Molimo saÄekajte"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Molim izaberite gdje želite backupovati"
+#: ../../harddrake/sound.pm_.c:210
+#, fuzzy
+msgid "No known driver"
+msgstr "X drajver"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Moraćete rebootati da bi izmjene tabele particija stupile na snagu"
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Ne ukljuÄuj spremnik web preglednika"
+#: ../../harddrake/sound.pm_.c:214
+#, fuzzy
+msgid "Unkown driver"
+msgstr "Nepoznat model"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, c-format
msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-"Nisam uspio provjeriti datoteÄni sistem %s. Želite li popraviti greÅ¡ke? "
-"(pažnja, možete izgubiti podatke)"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Molim izaberite izgled vaše tastature."
-
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "Standard"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Molim izaberite vrstu vašeg miša."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
-msgstr "Konektuj se..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Nisam uspio podesiti Å¡tampaÄ \"%s\"!"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "not configured"
-msgstr "nije podešeno"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "About"
-msgstr "O programu"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "Konfiguracija proxija"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "PoÄetak: sector %s\n"
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Koristi auto prepoznavanje"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Mask"
-msgstr "Bez maske"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Opšti"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface already configured"
-msgstr "Mrežni interfejs je već podešen"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
-msgstr "Ne mogu pristupiti disketi!"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-"Upozorenje: Slobodan softver ne mora obavezno biti slobodan od patenata\n"
-"i neki elementi slobodnog softvera mogu biti obuhvaćeni patentima u vašoj\n"
-"zemlji. Npr. MP3 dekoderi koji su ukljuÄeni možda zahtijevaju licencu za "
-"daljnje\n"
-"korištenje (za više detalja, pogledajte http://www.mp3licensing.com). Ako "
-"niste\n"
-"sigurni da li se patent odnosi na vas, provjerite vaše lokalne zakone."
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Mail Server"
-msgstr "Mail server"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "Kliknite na particiju"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Višenamjenski uređaj na HP JetDirect"
-
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
-msgstr "Have a nice day!"
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
+"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 ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Upgrade %s"
-msgstr "Unaprijedi %s"
+#: ../../harddrake/v4l.pm_.c:227
+#, fuzzy
+msgid "Card model:"
+msgstr "Memorija kartice (DMA)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Izaberi konekciju Å¡tampaÄa"
+#: ../../harddrake/v4l.pm_.c:228
+#, fuzzy
+msgid "Tuner type:"
+msgstr "Promjeni tip"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
-msgstr "Pretraga TV kanala je u toku ..."
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
msgstr ""
-"Greška tokom slanja datoteke preko FTPa.\n"
-" Molim ispravite vašu FTP konfiguraciju."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr "PoÄetak IP raspona:"
+#: ../../harddrake/v4l.pm_.c:231
+#, fuzzy
+msgid "PLL setting:"
+msgstr "postavka opterećenja"
-#: ../../services.pm:1
-#, 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."
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
msgstr ""
-"Internet superserver (obiÄno nazvan inetd) pokreće razne druge Internet\n"
-"servise po potrebi. Odgovoran je za pokretanje mnogih servisa, kao što su\n"
-"telnet, ftp, rsh i rlogin. IskljuÄivanje inetd-a iskljuÄuje sve servise za "
-"koje je\n"
-"on nadležan."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
-msgstr "visina progresne trake"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more. But unlike \"root\", which is the administrator, the users\n"
+"you will add here will not be entitled to change anything except their own\n"
+"files and their own configuration. You will have to create at least one\n"
+"regular user for yourself. That account is where you should log in for\n"
+"routine use. Although it is very practical to log in as \"root\" everyday,\n"
+"it may also be very dangerous! The slightest mistake could mean that your\n"
+"system would not work any more. If you make a serious mistake as a regular\n"
+"user, you may only lose some information, but not the entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
+"as you can actually enter whatever you want. DrakX will then take the first\n"
+"word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as \"root\"' one\n"
+"from a security point of view, but that is no reason to neglect it: after\n"
+"all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of your friends: your father or your sister, for\n"
+"example. When you finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default)."
+
+#: ../../help.pm_.c:48
+msgid ""
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
"\n"
-"- Spasi pomoću %s na raÄunaru: %s\n"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "Argentina"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Domain Name Server"
-msgstr "DNS server"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Level:"
-msgstr "Nivo sigurnosti:"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr "TaÄke montiranja moraju poÄinjati sa /"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Izaberite vaš CD/DVD uređaj"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "CUPS server"
-msgstr "DNS server"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Postfix mail server"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "Izlaz bez spašavanja"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "Jemen"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
+"\"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 ""
-"Ovaj proizvod je dostupan na web stranici MandrakeStore (Mandrake "
-"prodavnica)."
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Postoji mnogo stvari od kojih možete izabrati (%s).\n"
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a partition for \"/home\"\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
+#: ../../help.pm_.c:79
+msgid ""
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
+"Mandrake Linux instalacija se prostire na nekoliko CDova. DrakX zna da li "
+"je\n"
+"neki paket smješten na drugom CDu i on će izbaciti trenutni CD i zamoliti "
+"vas\n"
+"da ubacite neki drugi po potrebi."
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../help.pm_.c:84
msgid ""
-"An error occurred:\n"
+"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"
+"you are not supposed to know them all by heart.\n"
"\n"
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
"\n"
-"%s\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
+"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
-"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"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
"\n"
-"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."
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
+"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
+"\n"
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
+"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"
+"you are not supposed to know them all by heart.\n"
+"\n"
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
+"\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
+"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
+"\n"
+" * \"Development\": if the machine is to be used for programming, choose "
+"the\n"
+"desired group(s);\n"
+"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
+"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you deselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the fewer packages possible to have a working\n"
+"graphical desktop;\n"
+"\n"
+" * \"With basic documentation\" Installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server.\n"
+"\n"
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful for repairing or\n"
+"updating an existing system."
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "Prepoznavanje hard diska"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../help.pm_.c:135
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
msgstr ""
-"Niste izabrali nijednu grupu paketa\n"
-"Molim izaberite minimalnu instalaciju koju želite:"
+"Finally, depending on whether or not you selected individual packages, you\n"
+"will be presented a tree containing all packages classified by groups and\n"
+"subgroups. While browsing the tree, you can select entire groups,\n"
+"subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An estimate of the time it will take to\n"
+"install everything is displayed on the screen, to help you gauge if there\n"
+"is sufficient time to enjoy a cup of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of last step on how to create such\n"
+"a floppy."
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../help.pm_.c:171
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."
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-"Potreban vam je Alcatel mikrokod.\n"
-"Možete ga sada potražiti na disketi ili vašoj Windows particiji,\n"
-"ili preskoÄiti ovaj korak i zavrÅ¡iti ga kasnije."
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "Molim unesite URL WebDAV servera"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "Tadžikistan"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "Prihvati"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "Opis"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter summary text."
-msgstr "Molimo unesite tekst sažetka."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Greška u otvaranju %s za pisanje: %s"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Vrsta miša: %s\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Vaša kartica može imati podršku za 3D hardversko ubrzanje sa XFree %s."
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "Izaberite monitor"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "Prazna oznaka nije dozvoljena"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
-msgstr "Malteška (UK)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "Ne mogu dodati više particija"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "VeliÄina u MB: "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "Udaljeni Å¡tampaÄ"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
-msgstr "Molim izaberite jezik koji ćete koristiti."
+"You are now proposed to set up your Internet/network connection. If you\n"
+"wishto connect your computer to the Internet or to a local network, click\n"
+"\"OK\". The autodetection of network devices and modem will be launched. If\n"
+"this detection fails, uncheck the \"Use auto detection\" box next time. You\n"
+"may also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"administrator.\n"
+"\n"
+"You can consult the ``User Guide'' chapter about Internet connections for\n"
+"details about the configuration, or simply wait until your system is\n"
+"installed and use the program described there to configure your connection.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
-#: ../../network/network.pm:1
-#, c-format
+#: ../../help.pm_.c:193
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."
+"You may now choose which services you wish to start at boot time.\n"
+"\n"
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
+"\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
-"UPOZORENJE: Ovaj uređaj je prethodno podešen za konekciju na Internet.\n"
-"Samo prihvatite kako bi ovaj uređaj ostao podešen.\n"
-"Izmjena polja ispod će prepisati ovu konfiguraciju."
-
-#: ../../any.pm:1
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
-msgstr "Mogu podesiti vaÅ¡ raÄunar da automatski prijavi jednog korisnika."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Floppy format"
-msgstr "Format diskete"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Generic Printers"
-msgstr "Razni Å¡tampaÄi"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+"Sada možete izabrati koje servise želite pokretati prilikom boota.\n"
+"\n"
+"Ovdje su predstavljeni svi servisi koji su dostupni u trenutnoj\n"
+"instalaciji. Pregledajte ih pažljivo i iskljuÄite sve one koji nisu "
+"potrebni\n"
+"prilikom boota.\n"
+"\n"
+"Kada izaberete servis dobićete kratki tekst koji objašnjava taj servis\n"
+"Ipak, ako niste sigurni da li je servis koristan ili ne, sigurnije je da ne\n"
+"mijenjate predloženi izbor.\n"
+"\n"
+"!! Budite vrlo pažljivi sa ovim korakom ako namjeravate koristiti vaš "
+"raÄunar\n"
+"kao server: vjerovatno ne želite da pokrenete neke servise koji vam ne\n"
+"trebaju. Molimo vas da zapamtite da pojedini servisi mogu biti opasni\n"
+"ako su aktivni na serveru. Općenito, izaberite samo one servise koji vam\n"
+"stvarno trebaju. !!"
+
+#: ../../help.pm_.c:210
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
+msgstr ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by deselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working internet connection for this feature to function. It\n"
+"will actually install on your machine a time server that can be optionally\n"
+"used by other machines on your local network."
+
+#: ../../help.pm_.c:224
msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
+"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.\n"
+"\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-"Molim izaberite Å¡tampaÄ kojem želite slati zadatke Å¡tampe ili unesite naziv "
-"uređaja / naziv datoteke na ulaznoj liniji"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr "Skeneri na ovom raÄunari su dostupni drugim raÄunarima"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of the root partition"
-msgstr "Prvi sektor root particije"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Alternative drivers"
-msgstr "Alternativni drajveri"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+"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. In this section, DrakX\n"
+"will try to configure X automatically.\n"
+"\n"
+"It is extremely rare for it to fail, unless the hardware is very old (or\n"
+"very new). If it succeeds, it will start X automatically with the best\n"
+"resolution possible, depending on the size of the monitor. A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen."
+
+#: ../../help.pm_.c:246
+msgid ""
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
+msgstr ""
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
+
+#: ../../help.pm_.c:253
+#, fuzzy
msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
+msgstr ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the boot loader, DrakX will rewrite the boot sector "
+"(MBR)\n"
+"of your main disk (unless you are using another boot manager) so that you\n"
+"can start up with either Windows or GNU/Linux (assuming you have Windows in\n"
+"your system). If you need to reinstall Windows, the Microsoft install\n"
+"process will rewrite the boot sector, and then you will not be able to\n"
+"start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"When you click on this step, you will be asked to enter a disk inside the\n"
+"drive. The floppy disk you will insert must be empty or contain data which\n"
+"you do not need. You will not have to format it since DrakX will rewrite\n"
+"the whole disk."
+
+#: ../../help.pm_.c:277
+msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-"Please check all options that you need.\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
+"\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
msgstr ""
+"Na ovom mjestu trebate izabrati gdje želite instalirati Linux Mandrake\n"
+"operativni sistem na vašem hard disku. Ako je disk prazan ili ako postojeći\n"
+"operativni sistem koristi sav prostor na njemu, potrebno je da ga\n"
+"particionirate. U biti, particioniranje hard diska predstavlja logiÄko\n"
+"organiziranje kako bi se stvorio prostor za instaliranje vašeg novog\n"
+"Mandrake Linux sistema.\n"
"\n"
-"Molim ukljuÄite sve potrebne opcije.\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
-msgstr "Zelenortska ostrva"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "da li ovaj CPU ima Cyrix 6x86 Coma bug"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr "UÄitavam konfiguraciju Å¡tampaÄa... Molim saÄekajte"
+"PoÅ¡to su efekti particioniranja obiÄno nepovratni, particioniranje može\n"
+"biti zastrašujuće i stresno ako ste neiskusan korisnik. Srećom, postoji\n"
+"Äarobnjak koji pojednostavljuje taj proces. Prije zapoÄinjanja, molimo\n"
+"konsultirajte priruÄnik i nemojte žuriti.\n"
+"\n"
+"Ako instalirate koristeći Ekspertni mod, ući ćete u DiskDrake, Mandrake\n"
+"Linux alat za particioniranje, koji vam omogućava da fino podesite vaše\n"
+"particije. Pogledajte priruÄnik, poglavlje o DiskDrake-u. Na instalacionom\n"
+"suÄelju možete koristiti Äarobnjake kao Å¡to je opisano tamo, klikajući na\n"
+"dugme ÄŒarobnjak.\n"
+"\n"
+"Ako su particije već definirane (tokom neke ranije instalacije ili pomoću\n"
+"nekog drugog alata za particioniranje), sve što trebate jeste da ih "
+"izaberete\n"
+"za instalaciju vašeg Linux sistema.\n"
+"\n"
+"Ako particije nisu već definirane, trebate ih kreirati koristeći Äarobnjak.\n"
+"Ovisno o konfiguraciji vašeg hard diska, može biti dostupno nekoliko\n"
+"mogućnosti:\n"
+"\n"
+" * Koristi slobodan prostor: jednostavno vodi na automatsko particioniranje\n"
+"vašeg praznog diska (diskova). Neće biti postavljana nikakva daljnja "
+"pitanja.\n"
+"\n"
+" * Koristi postojeću particiju: Äarobnjak je detektovao jednu ili viÅ¡e "
+"postojećih\n"
+"Linux particija na vašem hard disku. Ako ih želite zadržati, izaberite ovu\n"
+"opciju.\n"
+"\n"
+" * Koristi slobodan prostor na Windows particiji: ako je na vašem hard\n"
+"disku instaliran Microsoft Windows koji je zauzeo sav slobodan prostor,\n"
+"moraćete napraviti neÅ¡to slobodnog prostora za Linux. To možete uÄiniti\n"
+"brišući vašu Microsoft Windows particiju zajedno sa podacima (vidi opcije\n"
+"\"PobriÅ¡i Äitav disk\" ili \"Ekspertni mod\") ili možete promjeniti veliÄinu "
+"vaše\n"
+"Microsoft Windows particije. Promjena veliÄine se može izvrÅ¡iti bez gubitka\n"
+"podataka. Ova mogućnost je preporuÄena ako namjeravate koristiti i Linux\n"
+"Mandrake i Microsoft Windows na istom raÄunaru.\n"
+"\n"
+" Prije izbora ove opcije, molimo da imate na umu da će veliÄina vaÅ¡e\n"
+"Microsoft Windows particije biti manja nego trenutno. To znaÄi da će "
+"Microsoft\n"
+"Windows prijavljivati da imate manje prostora za smještaj podataka ili "
+"instaliranje\n"
+"novog softwarea.\n"
+"\n"
+" * PobriÅ¡i Äitav disk: ako želite da obriÅ¡ete sve podatke i sve particije\n"
+"koje su prisutne na vašem hard disku i umjesto njih postavite vaš novi "
+"Linux\n"
+"Mandrake sistem, možete izabrati ovu opciju. Budite oprezni sa ovom\n"
+"mogućnošću, jer nećete moći poništiti vaš izbor nakon potvrde.\n"
+"\n"
+" !! Ako izaberete ovu opciju, svi podaci na vašem disku će biti "
+"izgubljeni. !!\n"
+"\n"
+" * Ukloni Windows: ovo će jednostavno pobrisati sve na disku i poÄeti od\n"
+"poÄetka, particionirajući ga. Svi podatci na vaÅ¡em disku će biti "
+"izgubljeni.\n"
+"\n"
+" !! Ako izaberete ovu opciju, svi podaci na vašem disku će biti "
+"izgubljeni. !!\n"
+"\n"
+" * Ekspertni mod: ako želite da ruÄno particionirate vaÅ¡ hard disk, "
+"izaberite ovu\n"
+"opciju. Budite oprezni - to je moćan, ali i opasan izbor. Vrlo lako možete\n"
+"izgubiti sve vaše podatke. Zato nemojte birati ovu opciju sem ako ste "
+"sigurni\n"
+"šta radite."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
+#: ../../help.pm_.c:347
+msgid ""
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-"rani Pentium procesori imaju bug koji izaziva smrzavanje sistema prilikom "
-"dekodiranja F00F bytecode-a"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr "Guam"
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated install as the partitioning\n"
+"step (and only this one) remains interactive.\n"
+"\n"
+" * \"Automated\". Fully automated install: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section at our web site.\n"
+"\n"
+" * \"Save packages selection\"(*): saves the packages selection as made\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the driver and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:378
msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-"Molim izaberite port na koji je vaÅ¡ Å¡tampaÄ povezan ili unesite naziv "
-"uređaja / naziv datoteke na ulaznoj liniji"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/Opcije/Test"
+"Sve particije koje su upravo definisane moraju biti formatirane kako bi se\n"
+"mogle koristiti (formatiranje znaÄi kreiranje datoteÄnog sistema). \n"
+"\n"
+"U ovom trenutku možda ćete poželjeti da reformatirate neke već postojeće\n"
+"particije kako biste pobrisali podatke koje sadrže. Ako želite to uÄiniti, "
+"molim\n"
+"takođe izaberite te particije koje želite da formatirate.\n"
+"\n"
+"Molim obratite pažnju da nije neophodno formatirati sve postojeće "
+"particije.\n"
+"Morate reformatirati particije koje sadrže operativni sistem (kao što su\n"
+"\"/\", \"/usr\" ili \"var\") ali ne morate reformatirati particije koje "
+"sadrže\n"
+"podatke koje želite zadržati (tipiÄno /home).\n"
+"\n"
+"Molimo da pažljivo izaberete particije. Nakon formatiranja, svi podaci na\n"
+"odabranim particijama će biti pobrisani i nećete biti u mogućnosti da ih\n"
+"povratite.\n"
+"\n"
+"Kliknite na OK kada budete spremni za formatiranje particija.\n"
+"\n"
+"Kliknite na Odustani ako želite da izaberete druge particije za instalaciju\n"
+"vašeg novog Linux-Mandrake operativnog sistema.\n"
+"\n"
+"Kliknite na Napredno da izaberete particije koje želite provjeriti radi\n"
+"loših blokova."
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:404
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."
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
+"\n"
+"Please be patient."
msgstr ""
-"Ovaj nivo treba koristiti pažljivo. On Äini vaÅ¡ sistem lakÅ¡im za upotrebu,\n"
-"ali vrlo osjetljivim: ne smije biti koriÅ¡ten za raÄunar koji je spojen na\n"
-"druge ili na Internet. Nema pristupa šifrom."
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mounting partition %s"
-msgstr "Montiram particiju %s"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "KorisniÄko ime"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Koju particiju želite koristiti za Linux4Win?"
-
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "due to missing %s"
-msgstr "nedostaje kdesu"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Test pages"
-msgstr "Testna stranica"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Logical volume name "
-msgstr "Naziv logiÄkog volumena "
+"Vaš novi Linux-Mandrake operativni sistem se trenutno intalira. Ovisno o\n"
+"broju paketa koje želite instalirati i brzini vaÅ¡eg raÄunara, ova operacija\n"
+"bi mogla trajati nekoliko minuta ali i znaÄajno duže.\n"
+"\n"
+"Molim da imate strpljenja."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:412
msgid ""
-"List of data to restore:\n"
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-"Lista podataka za vraćanje:\n"
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bug-fixes may\n"
+"have been fixed, and security issues solved. To allow you to benefit from\n"
+"this updates you are now proposed to download them from the internet.\n"
+"Choose \"Yes\" if you have a working internet connection, or \"No\" if you\n"
+"prefer to install updated packages later.\n"
"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearer to you. Then a packages selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package or \"Cancel\" to abort."
-#: ../../fs.pm:1
-#, c-format
-msgid "Checking %s"
-msgstr "Provjeravam %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/socket opcije Å¡tampaÄa"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Memorija kartice (DMA)"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Prekidam vezu na Internet "
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "Francuska"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
-msgstr "pregledaj"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
-msgstr "Provjeravam instalirani software..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Ime udaljenog Å¡tampaÄa nedostaje!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Da li želite da omogućite Å¡tampanje na Å¡tampaÄima u lokalnoj mreži?\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "Turska"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Number of buttons"
-msgstr "Broj dugmadi"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vijetnamska \"red brojeva\" QWERTY"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Module"
-msgstr "Modul"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:425
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
msgstr ""
-"Pored toga, redovi koji nisu kreirani ovim programom ili sa \"foomatic-"
-"configure\" ne mogu biti premješteni."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
-msgstr "Hardware"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl i Alt tipke istovremeno"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "SAD"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "User umask"
-msgstr "KorisniÄki umask"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "Podrazumjevani OS?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "Å vicarska (njemaÄki izgled)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Konfiguriši sve glave odvojeno"
+"Prije nego Å¡to nastavimo, trebate pažljivo proÄitati uvjete licence. Ona\n"
+"pokriva cijelu Mandrake Linux distribuciju, pa ako se ne slažete sa svim\n"
+"uvjetima u njoj, kliknite na dugme Odbij, što će automatski završiti "
+"instalaciju.\n"
+"Da biste nastavili sa instalacijom, kliknite na dugme Prihvati."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:432
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\"."
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
msgstr ""
-"Molim odaberite Å¡tampaÄ koji želite podesiti. PodeÅ¡avanje Å¡tampaÄa će raditi "
-"potpuno automatski. Ako vaÅ¡ Å¡tampaÄ nije ispravno prepoznat ili ako želite "
-"sami podesiti Å¡tampaÄ, ukljuÄite \"RuÄno podeÅ¡avanje\"."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "NTP server"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Sulogin(8) in single user level"
-msgstr "Sulogin(8) na jednokorisniÄkom nivou"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Load/Save on floppy"
-msgstr "UÄitaj/snimi na disketu"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
-msgstr "Ova tema još nema bootsplash u %s !"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "fino"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Napuštam za %d sekundi"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Molim izaberite na koji serijski port je nakaÄen vaÅ¡ modem."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Property"
-msgstr "Osobina"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr "Podešavanje LANa"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "Gana"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
-msgstr "Potrebna je staza ili modul"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Advanced Options"
-msgstr "Napredne opcije"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Configuration"
-msgstr "Pogledaj konfiguraciju"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
-msgstr "Coma bug"
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"easiness of use. Refer to the \"msec\" chapter of the ``Reference Manual''\n"
+"to get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:442
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"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -5201,2105 +3468,1451 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"Sada trebate izabrati koje particije želite koristiti za instalaciju vašeg\n"
-"Mandrake Linux sistema. Ako su particije već definisane, iz prijašnje\n"
-"GNU/Linux instalacije ili nekim drugim alatom za particioniranje, možete\n"
-"koristiti postojeće particije. U suprotnom, sada morate definisati\n"
-"particije vašeg hard diska.\n"
-"\n"
-"Da biste napravili particije, najprije morate izabrati hard disk. Možete\n"
-"izabrati disk za particioniranje klikom na ''hda'' za prvi IDE disk, "
-"''hdb''\n"
-"za drugi, ''sda'' za prvi SCSI disk i sliÄno.\n"
+"At this point, you need to choose what partition(s) will be used for the\n"
+"installation of your Mandrake Linux system. If partitions have been already\n"
+"defined, either from a previous installation of GNU/Linux or from another\n"
+"partitioning tool, you can use existing partitions. Otherwise hard drive\n"
+"partitions must be defined.\n"
"\n"
-"Pri particioniranju hard diska, možete koristiti sljedeće opcije:\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"
-" * \"%s\": ova opcija briše sve particije na izabranom hard disku\n"
+"To partition the selected hard drive, you can use these options:\n"
"\n"
-" * \"%s\": ova opcija vam omogućuje da automatski napravite ext3\n"
-"i swap particije u slobodnom prostoru vašeg hard diska\n"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"drive.\n"
"\n"
-"\"%s\" omogućuje pristup dodatnim mogućnostima:\n"
+" * \"Auto allocate\": this option allows you to automatically create Ext2\n"
+"and swap partitions in free space of your hard drive.\n"
"\n"
-" * \"%s\": snima tabelu particija na disketu. Ovo je korisno za\n"
-"kasnije vraćanje tabele particija, ako je potrebno. Strogo je preporuÄeno\n"
-"da izvršite ovaj korak.\n"
+" * \"More\": gives access to additional features:\n"
"\n"
-" * \"%s\": omogućuje vam da vratite ranije snimljenu tabelu\n"
-"particija sa diskete.\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step.\n"
"\n"
-" * \"%s\": ako je vaša tabela particija oštećena, možete je pokušati\n"
-"obnoviti koristeći ovu opciju. Molim budite pažljivi i zapamtite da\n"
-"ova opcija ne uspijeva svaki put.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from floppy disk.\n"
"\n"
-" * \"%s\": poniÅ¡tava sve promjene i ponovo uÄitava originalnu tabelu\n"
-"particija sa hard diska.\n"
+" * \"Rescue partition table\": if your partition table is damaged, you "
+"can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail.\n"
"\n"
-" * \"%s\": iskljuÄivanjem ove opcije ćete prisiliti korisnike da ruÄno\n"
-"montiraju i demontiraju izmjenjive medije kao što su diskete i\n"
-"CD-ROMovi.\n"
+" * \"Reload partition table\": discards all changes and load your "
+"initial\n"
+"partitions table.\n"
"\n"
-" * \"%s\": koristite ovu opciju ako želite koristiti Äarobnjak za\n"
-"particioniranje vaÅ¡eg hard diska. Ovo je preporuÄeno ako nemate\n"
-"izraženo razumijevanje particioniranja.\n"
+" * \"removable media automounting\": unchecking this option will force "
+"users\n"
+"to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%s\": koristite ovu opciju da poništite vaše izmjene.\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition "
+"your\n"
+"hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning.\n"
"\n"
-" * \"%s\": omogućuje dodatne akcije na particijama (tip, opcije,\n"
-"formatiranje) i daje više informacija o hard disku.\n"
+" * \"Undo\": use this option to cancel your changes.\n"
"\n"
-" * \"%s\": kada završite particioniranje diska, ovo će zapisati\n"
-"vaše izmjene na disk.\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on "
+"partitions\n"
+"(Type, options, format) and gives more information.\n"
"\n"
-"Prilikom definisanja veliÄine particije, možete fino podeÅ¡avati veliÄinu\n"
-"particije koristeći dugmad sa strjelicama na vašoj tastaturi.\n"
+" * \"Done\": when you have finished partitioning your hard drive, this will\n"
+"save your changes back to disc.\n"
"\n"
-"Napomena: svaku opciju možete postići tastaturom. Između particija\n"
-"se krećete koristeći dugme [Tab] i strjelice [Gore/Dolje].\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
-"Kada izaberete particiju, možete koristiti:\n"
+"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-C da napravite novu particiju (ako ste izabrali prazan prostor)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-D da obrišete particiju\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-M da podesite taÄku montiranja\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"Da biste dobili informacije o raznim tipovima datoteÄnog sistema koji\n"
-"su dostupni, proÄitajte poglavlje o ext2FS iz ''Referentnog priruÄnika''.\n"
+"To get information about the different filesystem types available, please\n"
+"read the chapter ext2fs from the ``Reference Manual''.\n"
"\n"
-"Ako instalirate na PPC raÄunar, trebate napraviti malu HFS ''bootstrap''\n"
-"particiju od najmanje 1 MB koju će koristiti yaboot bootloader. Ako se\n"
-"odluÄite da ovu particiju uÄinite neÅ¡to većom, npr. 50 MB, primjetićete\n"
-"da je ona korisno mjesto za Äuvanje rezervnog kernela ili ramdisk slika\n"
-"za hitne sluÄajeve."
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"\"bootstrap\" partition of at least 1MB which will be used by the yaboot\n"
+"boot loader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:513
msgid ""
-"Graphic Card\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-" 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"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\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 ""
-"GrafiÄka kartica\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-" Instalacija obiÄno automatski prepoznaje i podeÅ¡ava grafiÄku karticu\n"
-"koja je instalirana na raÄunar. Ako se ovo nije desilo, možete izabrati\n"
-"sa liste karticu koja je ugraÄ‘ena u vaÅ¡ raÄunar.\n"
+"\"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"
-" U sluÄaju da postoji viÅ¡e dostupnih servera za vaÅ¡u karticu, sa ili bez\n"
-"3D ubrzanja, biće vam predložen izbor servera koji najbolje odgovara\n"
-"vašim potrebama."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Došlo je do greške kod instaliranja paketa:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Podešavanje Lexmark inkjet-a"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "Poništi"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Save partition table"
-msgstr "Snimi tabelu particija"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "Finska"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "Makedonija"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
-msgstr ""
-"Dijeljenje na nivou korisnika koristi grupu \"fileshare\". \n"
-"Možete dodavati korisnike u ovu grupu pomoću userdrake-a."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "SlovenaÄka"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Authorize:\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-"- only local ones if set to \"LOCAL\"\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"
-"- none if set to \"NONE\".\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"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
msgstr ""
-"Autorizuj:\n"
+"More than one Microsoft Windows partition has been detected on your hard\n"
+"drive. Please choose the one you want to resize in order to install your\n"
+"new Mandrake Linux operating system.\n"
"\n"
-"- sve servise koje kontrolišu tcp_wrapperi (vidi hosts.deny(5) man "
-"stranicu), ako je podešeno na \"SVE\",\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
"\n"
-"- samo lokalne servise, ako je podešeno na \"LOKAL\",\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"- nijedan, ako je podešeno na \"NIŠTA\".\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"
-"Da biste autorizovali servise koji su vam potrebni, koristite /etc/hosts."
-"allow (vidi hosts.allow(5))."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr "Libija"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Podešavam skripte, instaliram software, pokrećem servere..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Å tampaÄ na paralelnom portu #%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
"\n"
-"- Burn to CD"
-msgstr ""
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-"- Prži na CD"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "Tabela"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Ne znam kako formatirati %s kao tip %s"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Model"
-msgstr "Model"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "USB printer #%s"
-msgstr "USB Å¡tampaÄ #%s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Stop Server"
-msgstr "Zaustavi server"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-"Izaberite temu za\n"
-"lilo i boot ekran,\n"
-"možete ih odvojeno\n"
-"izabrati"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Modem"
-msgstr "Modem"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr "Tuvalu"
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr "Koristi auto prepoznavanje"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
-msgstr ""
-"GPM dodaje podršku za miša tekstualnim aplikacijama kao što je\n"
-"Midnight Commander. On također omogućuje konzolne isjeci/umetni operacije\n"
-"pomoću miÅ¡a i ukljuÄuje podrÅ¡ku za pop-up menije na konzoli."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr "Pokrenut na bootu"
-
-#: ../advertising/12-mdkexpert.pl:1
-#, 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:"
-msgstr ""
-"Pridružite se MandrakeSoftovom support teamu i Linux zajednici na Internetu, "
-"podijelite vaše znanje i pomozite drugima i tako postanite priznat Expert na "
-"našem online tech support sajtu:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "No password aging for"
-msgstr "Bez starenja šifre za"
-
-#: ../../standalone/draksec:1
-#, 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"
-msgstr ""
-"Možete podesiti sljedeće opcije kako biste prilagodili sigurnost vašeg "
-"sistema. Ako vam je potrebno objašnjenje, pogledajte pomoć u tooltipu.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Automatski pronaÄ‘i dostupne Å¡tampaÄe na udaljenim raÄunarima"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr "IstoÄni Timor"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
-msgstr "na Kasetnom uređaju"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- Save to Tape on device: %s"
-msgstr ""
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
"\n"
-"- Spasi na traku na uređaju: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Login name"
-msgstr "KorisniÄko ime"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
-msgstr "Prijavi datoteke bez vlasnika"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr "Briši profil..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Instaliram Foomatic..."
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Molim izvršite logout i zatim koristitite Ctrl-Alt-BackSpace"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected"
-msgstr "detektovan"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "Potrebno je restartovati mrežu. Želite li je restartovati?"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package: "
-msgstr "Paket:"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr "Ne mogu pisati u /etc/sysconfig/bootsplash."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "SIGURNOSNO UPOZORENJE!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
-msgstr "Ne, ne želim da se automatski prijavim"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Alat za Windows migraciju"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr "Svi jezici"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "Uklanjam %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s nije pronađen...\n"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Testing your connection..."
-msgstr "Probavam vašu konekciju..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cache size"
-msgstr "VeliÄina cache-a"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
msgstr ""
-"Å ifra je sada aktivirana, ali koriÅ¡tenje za mrežni raÄunar joÅ¡ nije "
-"preporuÄeno."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr "PoÄetni sektor: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr "Kongo (Brazzaville)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Read"
-msgstr "ÄŒitaj"
+"Molimo da imate strpljenja. Ova operacija može potrajati nekoliko minuta."
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Paket %s treba biti instaliran. Da li ga želite instalirati?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
-msgstr "Sejšelska ostrva"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:547
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"
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
"\n"
-"For your printer Printerdrake has found:\n"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
-"%s"
-msgstr ""
-"Printerdrake je uporedi ime modela koje je dobijeno od automatskog "
-"prepoznavanja Å¡tampaÄa sa modelima koji su navedeni u njegovoj bazi podataka "
-"kako bi naÅ¡ao najbliži. Ovaj izbor možda nije taÄan, pogotovo ako vaÅ¡ "
-"Å¡tampaÄ uopÅ¡te nije naveden u bazi. Stoga provjerite da li je izbor ispravan "
-"i ako je tako kliknite \"Model je ispravan\", u suprotnom kliknite "
-"\"Izaberite model ruÄno\" kako biste ruÄno izabrali vaÅ¡ model Å¡tampaÄa na "
-"sljedećem ekranu.\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
"\n"
-"Za vaÅ¡ Å¡tampaÄ Printerdrake je naÅ¡ao:\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Bad password on %s"
-msgstr "Pogrešna šifra na %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
"\n"
-"Na vaÅ¡ sistem je direktno spojen jedan nepoznat Å¡tampaÄ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Control key"
-msgstr "Desna Control tipka"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"Ubacite FAT formatiranu disketu u jedinicu %s sa %s u root direktoriju i "
-"pritisnite %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "Zambija"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr "Sigurnosni administrator (login ili email)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr "Žalim, podržavamo samo 2.4 kernele."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr "Rumunska (qwerty)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
-msgstr "U izradi ... molim saÄekajte."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "Egipat"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "Češka"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "ZvuÄna kartica"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Import Fonts"
-msgstr "Uvoz fontova"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, 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\")"
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
+"\n"
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
msgstr ""
-"Imate jednu veliku Microsoft Windows particiju.\n"
-"Predlažem da najprije promijenite veliÄinu te particije\n"
-"(kliknite na nju, zatim na \"Promijeni veliÄinu\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Onemogući privremene datoteke"
+"DrakX sada mora znati da li želite obaviti podrazumjevanu instalaciju\n"
+"(\"PreporuÄeno\") ili želite da imate veću kontrolu (\"Ekspert\"). TakoÄ‘e\n"
+"imate izbor između instalacije novog ili unaprijeđenja postojećeg\n"
+"Mandrake Linux sistema. \n"
+"\n"
+" * \"Instaliraj\" Potpuno briše raniji sistem. U stvari, ovisno o tome\n"
+"Å¡ta trenutno sadrži vaÅ¡ raÄunar, možda ćete moći zadržati neke stare\n"
+"particije (Linux i druge) bez ikakvih izmjena.\n"
+"\n"
+" * \"Unaprijedi\" Ova klasa instalacije vam omogućuje da jednostavno\n"
+"unaprijedite pakete trenutno instalirane na vašem Mandrake Linux sistemu.\n"
+"Ona zadržava trenutne particije vaših hard diskova kao i postavke "
+"korisnika.\n"
+"Svi drugi koraci instalacije ostaju dostupni kao i u obiÄnoj instalaciji.\n"
+"\n"
+" * \"Unaprijedi samo pakete\" Ova potpuno nova klasa vam omogućuje da\n"
+"unaprijedite postojeći Mandrake Linux sistem pri Äemu ćete saÄuvati svu\n"
+"sistemsku konfiguraciju bez izmjena. Dodavanje novih paketa trenutnoj\n"
+"instalaciji je također moguće.\n"
+"\n"
+"UnaprijeÄ‘enja bi trebala raditi fino za Mandrake Linux sisteme poÄevÅ¡i\n"
+"od verzije \"8.1\".\n"
+"\n"
+"Ovisno o vašem poznavnaju GNU/Linuxa, molim izaberite jedan od sljedećih\n"
+"naÄina za instalaciju ili update vaÅ¡eg Mandrake Linux operativnog sistema:\n"
+"\n"
+" * PreporuÄeno: ako nikada niste instalirali GNU/Linux operativni sistem,\n"
+"izaberite ovo. Instalacija će biti veoma jednostavna i biće vam postavljeno\n"
+"svega par pitanja.\n"
+"\n"
+" * Ekspert: ako imate dobro znanje GNU/Linuxa, možete odabrati ovu klasu\n"
+"instalacije. Ekspertna instalacija vam omogućuje da obavite visoko "
+"prilagođenu\n"
+"instalaciju. Odgovor na neka pitanja može biti vrlo težak ako nemate dobro\n"
+"poznavanje GNU/Linuxa, zato nemojte birati ovo sem ako znate šta radite."
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../help.pm_.c:582
msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
+"Click on the \"More\" 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, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
msgstr ""
-"Čestitamo, podešavanje mreže i Interneta je završeno.\n"
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen) and you will not even see this step. However, you\n"
+"might not have a keyboard that corresponds exactly to your language: for\n"
+"example, if you are an English speaking Swiss person, you may still want\n"
+"your keyboard to be a Swiss keyboard. Or if you speak English but are\n"
+"located in Quebec, you may find yourself in the same situation. In both\n"
+"cases, you will have to go back to this installation step and select an\n"
+"appropriate keyboard from the list.\n"
"\n"
+"Click on the \"More\" button to be presented with the complete list of\n"
+"supported keyboards."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "Izmjena tipa particije"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:598
msgid ""
-"Resolution\n"
+"The first step is to choose your preferred language.\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."
+"Please choose your preferred language for installation and system usage.\n"
+"\n"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
+"\n"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
-"Rezolucija\n"
+"Please choose your preferred language for installation and system usage.\n"
"\n"
-" Ovdje možete izabrati rezoluciju i broj boja među vrijednostima koje su\n"
-"moguće na vašem hardveru. Izaberite one vrijednosti koje vam najbolje\n"
-"odgovaraju (moći ćete ih promijeniti nakon instalacije). Primjer izabrane\n"
-"konfiguracije je prikazan na monitoru."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Network Options"
-msgstr "Mrežne opcije"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable msec hourly security check"
-msgstr "UkljuÄi msec provjeru svakog sata"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you will host users from Spain on your\n"
+"machine, select English as the main language in the tree view and in the\n"
+"Advanced section click on the grey star corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales click the \"OK\" button to continue."
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../help.pm_.c:617
msgid ""
-"Display theme\n"
-"under console"
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
+"\n"
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
+"\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
msgstr ""
-"Tema prikaza\n"
-"pod konzolom"
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr "(na %s)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
+"By default, DrakX assumes you have a two-button mouse and will set it up\n"
+"for third-button emulation. DrakX will automatically know whether it is a\n"
+"PS/2, serial or USB mouse.\n"
+"\n"
+"If you wish to specify a different type of mouse select the appropriate\n"
+"type from the list provided.\n"
+"\n"
+"If you choose a mouse other than the default you will be presented with a\n"
+"mouse test screen. Use the buttons and wheel to verify that the settings\n"
+"are good. If the mouse is not working correctly press the space bar or\n"
+"[Return] to \"Cancel\" and choose again."
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:638
msgid ""
-"A library which defends against buffer overflow and format string attacks."
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"Biblioteka koja brani od napada \"buffer overflow\" i \"format string\"."
+"Molimo izaberite ispravan port. Na primjer, \"COM1\" port pod MS\n"
+"Windowsom se zove \"ttyS0\" pod GNU/Linuxom."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr "prosjek"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "New printer name"
-msgstr "Novo ime Å¡tampaÄa"
-
-#: ../../fs.pm:1
-#, c-format
+#: ../../help.pm_.c:642
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 )."
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
+"\n"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
+"\n"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
+"\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
+"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
msgstr ""
-"Omogući obiÄnom korisniku da montira datoteÄni sistem.\n"
-"Ime korisnika će biti zapisano u mtab tako da on može i demontirati\n"
-"datoteÄni sistem. Ova opcija podrazumijeva opcije noexec, nosuid i\n"
-"nodev (osim ako to ne izmijenite kasnijim opcijama, kao u sluÄaju\n"
-"linije user,exec,dev,suid )."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr "Ekvatorijalna Gvineja"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup System"
-msgstr "Backup sistema"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Build Backup"
-msgstr "Izgradi backup"
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you have to enter the \"root\" password. \"root\" is the system\n"
+"administrator and is the only one authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That is why you must choose a password that is difficult to\n"
+"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
+"not to enter a password, but we strongly advise you against this if onlynfor "
+"one reason: do not think that because you booted GNU/Linux that your\n"
+"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
+"all limitations and unintentionally erase all data on partitions by\n"
+"carelessly accessing the partitions themselves, it is important for it to\n"
+"be difficult to become \"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password it makes it too\n"
+"easy to compromise a system.\n"
+"\n"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
+"\n"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
+"\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
+"\n"
+"If your network uses the LDAP (or NIS) protocol for authentication, select\n"
+"\"LDAP\" (or \"NIS\") as authentication. If you do not know, ask your\n"
+"network administrator.\n"
+"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:678
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, 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 in doubt, DrakX will display a dialog with various options.\n"
+"\n"
+" * \"Bootloader to use\": you have three choices:\n"
+"\n"
+" * \"GRUB\": if you prefer grub (text menu);\n"
+"\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\n"
+"\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
+"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
+"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
+"\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\n"
+"\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
msgstr ""
-"Za štampanje datoteke sa komandne linije (terminalski prozor) koristite "
-"komandu \"%s <datoteka>\" ili \"%s <datoteka>\".\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Trenutno nije dostupna nijedna alternativa"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwertz)"
-msgstr "Rumunska (qwertz)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Write Config"
-msgstr "Zapiši konfiguraciju"
+"LILO and grub are boot loaders for GNU/Linux. This stage, normally, is\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds here:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, 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 in doubt, DrakX will display a dialog with various options.\n"
+"\n"
+" * \"Boot loader to use\": you have three choices:\n"
+"\n"
+" * \"GRUB\": if you prefer grub (text menu).\n"
+"\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface.\n"
+"\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu "
+"interface.\n"
+"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the boot loader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\").\n"
+"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose - in the boot loader menu,\n"
+"another boot entry than the default one.\n"
+"\n"
+"!! Beware that if you choose not to install a boot loader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also be sure you know what you do before changing any of the\n"
+"options. !!\n"
+"\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved to the expert user.\n"
+"\n"
+"After you have configured the general boot-loader parameters, you are\n"
+"presented the list of boot options that will be available at boot time.\n"
+"\n"
+"If there is another operating system installed on your machine, it will be\n"
+"automatically added to the boot menu. Here, you can choose to fine-tune the\n"
+"existing options. Select an entry and click \"Modify\" to modify or remove\n"
+"it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
+"installation step."
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:718
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."
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"Routed demon omogućuje da se automatska IP tabela rutiranja podešava\n"
-"preko RIP protokola. Mada se RIP Äesto koristi na malim mrežama, "
-"kompleksniji\n"
-"protokoli rutiranja su potrebni za složene mreže."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr "Kiribati"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech Mouse (serijski, stari C7 tip) sa simulacijom toÄkića"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Drugi (ne drakbackup) kljuÄevi su već na mjestu"
+"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful to choose the correct parameters.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
+
+#: ../../help.pm_.c:732
+msgid ""
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\n"
+"\n"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
+msgstr ""
+"Morate navesti gdje želite smjestiti informacije koje su potrebne za\n"
+"bootanje GNU/Linuxa.\n"
+"\n"
+"Izaberite \"Prvi sektor na disku (MBR)\" sem ako znate taÄno Å¡ta radite."
+
+#: ../../help.pm_.c:739
+msgid ""
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
+"\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
+"\n"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
+msgstr ""
+"Here, we select a printing system for your computer. Other OSs may offer\n"
+"you one, but Mandrake Linux offers three.\n"
+"\n"
+" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
+"direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control "
+"Centernand clicking the expert button.\n"
+"\n"
+" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
+"your\n"
+"local printer and also halfway-around the planet. It is simple and can act\n"
+"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
+"is compatible with the systems that went before. It can do many tricks, but\n"
+"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
+"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options.\n"
+"\n"
+" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+"approximately the same things the others can do, but it will print to\n"
+"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
+"and it can print directly to shell commands. If you have need of Novell or\n"
+"printing to commands without using a separate pipe construct, use lprNG.\n"
+"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
+"networks."
+
+#: ../../help.pm_.c:759
+msgid ""
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
+"\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
+msgstr ""
+"DrakX sada pronalazi sve IDE ureÄ‘aje prisutne na vaÅ¡em raÄunaru. TakoÄ‘er\n"
+"će pretražiti sistem za jednu ili više PCI SCSI kartica. Ako SCSI kartica "
+"bude\n"
+"pronađena, DrakX će automatski instalirati odgovarajući drajver.\n"
+"\n"
+"Budući da pronalaženje hardware-a ponekad ne uspjeva pronaći neki dio\n"
+"hardware-a, DrakX će pitati za potvrdu da li imate SCSI karticu ili ne.\n"
+"Kliknite Da ako znate da postoji SCSI kartica instalirana na vašem "
+"raÄunaru.\n"
+"Biće vam predstavljena lista SCSI kartica koje možete izabrati. Kliknite Ne\n"
+"ako nemate nikakav SCSI hardware. Ako niste sigurni, možete pregledati "
+"listu\n"
+"hardware u vaÅ¡em raÄunaru tako Å¡to ćete izabrati \"Vidi hardware info\" i "
+"kliknuti\n"
+"na OK. Pretražite listu hardware-a i zatim kliknite na dugme OK kako bi se\n"
+"vratili na pitanje o SCSI-ju.\n"
+"\n"
+"Ako morate ruÄno odabrati adapter, DrakX će vas pitati da li želite navesti\n"
+"neke opcije za njega. Trebate dopustiti DrakXu da ispita hardware za\n"
+"neke opcije specifiÄne za tu karticu. Ovo obiÄno radi dobro.\n"
+"\n"
+"Ako DrakX ne može ispitati opcije koje trebaju biti proslijeđene, moraćete\n"
+"ruÄno navesti opcije za drajver. Molimo pogledajte PriruÄnik za koriÅ¡tenje\n"
+"/User Guide/ (poglavlje 3, sekcija \"Prikupljanje informacija o vašem "
+"hardveru\")\n"
+"za napomene o pribavljanju ovih informacija iz hardverske dokumentacije,\n"
+"sa web stranice proizvoÄ‘aÄa (ako imate internet pristup) ili iz Microsoft\n"
+"Windowsa (ako ga imate na vašem sistemu)."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:781
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"
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
"\n"
-"You will be presented with a list of different parameters to change to get\n"
-"an optimal graphical display: Graphic Card\n"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\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"
+"For Linux, there are a few possible options:\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"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
"\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
"\n"
-"Monitor\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
"\n"
-" 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"
+" 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"
-"Resolution\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
"\n"
-" 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"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
"\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support;\n"
"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
+msgstr ""
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
"\n"
-"Test\n"
+"For other OSs, the entry consists only of a label and the root partition.\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"
+"For Linux, there are a few possible options:\n"
"\n"
+" * Label: this is simply the name you will have to type at the yaboot "
+"prompt\n"
+"to select this boot option;\n"
"\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
"\n"
-"Options\n"
+" * Root: the \"root\" device or \"/\" for your Linux installation.\n"
"\n"
-" Here you can choose whether you want to have your machine automatically\n"
-"switch to a graphical interface at boot. Obviously, you want to check\n"
-"\"%s\" if your machine is to act as a server, or if you were not successful\n"
-"in getting the display configured."
-msgstr ""
-"X (skraćeno od X Window System) je srce GNU/Linux grafiÄkog interfejsa\n"
-"o kojem ovise sve grafiÄke okoline (KDE, GNOME, AfterStep,\n"
-"WindowMaker itd.) ukljuÄene u Mandrake Linux.\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
"\n"
-"Biće vam predstavljena lista razliÄitih parametara koje možete promijeniti\n"
-"da biste dobili optimalan grafiÄki prikaz: GrafiÄka kartica\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+"hda=autotune\n"
"\n"
-" Instalacija obiÄno automatski prepoznaje i podeÅ¡ava grafiÄku karticu\n"
-"koja je instalirana na raÄunar. Ako se ovo nije desilo, možete izabrati\n"
-"sa liste karticu koja je ugraÄ‘ena u vaÅ¡ raÄunar.\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
-" U sluÄaju da postoji viÅ¡e dostupnih servera za vaÅ¡u karticu, sa ili bez\n"
-"3D ubrzanja, biće vam predložen izbor servera koji najbolje odgovara\n"
-"vašim potrebama.\n"
+" * Initrd: this option can be used either to load initial modules, before\n"
+"the boot device is available, or to load a ramdisk image for an emergency\n"
+"boot situation;\n"
"\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
"\n"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a file system check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
"\n"
-"Monitor\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"
-" Instalacioni program obiÄno može prepoznati i podesiti monitor koji\n"
-"je povezan na vaÅ¡ raÄunar. Ako se ovo ne desi, možete odabrati neki\n"
-"monitor sa ove liste.\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
+
+#: ../../help.pm_.c:828
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
"\n"
+"Yaboot's main options are:\n"
"\n"
+" * Init Message: a simple text message displayed before the boot prompt;\n"
"\n"
-"Rezolucija\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"
-" Ovdje možete izabrati rezoluciju i broj boja među vrijednostima koje su\n"
-"moguće na vašem hardveru. Izaberite one vrijednosti koje vam najbolje\n"
-"odgovaraju (moći ćete ih promijeniti nakon instalacije). Primjer izabrane\n"
-"konfiguracije je prikazan na monitoru.\n"
+" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+"yaboot. The first delay is measured in seconds and at this point, you can\n"
+"choose between CD, OF boot, MacOS or Linux;\n"
"\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\n"
"\n"
-"Test\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
-" Sistem će pokuÅ¡ati prikazati grafiÄki ekran na željenoj rezoluciji.\n"
-"Ako možete vidjeti poruku tokom testa i odgovorite sa \"%s\", DrakX\n"
-"će produžiti na idući korak. Ako ne možete vidjeti poruku, to znaÄi\n"
-"da je neki dio automatski prepoznate konfiguracije bio pogrešan.\n"
-"Test će automatski zavrÅ¡iti nakon 12 sekundi, Äime ćete biti vraćeni na\n"
-"meni. Mijenjajte postavke dok ne dobijete ispravan grafiÄki prikaz.\n"
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
+msgstr ""
+"Yaboot is a boot loader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful as\n"
+"to choose the correct parameters.\n"
"\n"
+"Yaboot's main options are:\n"
"\n"
+" * Init Message: a simple text message that is displayed before the boot\n"
+"prompt.\n"
"\n"
-"Opcije\n"
+" * Boot Device: indicate where you want to place the information required "
+"to\n"
+"boot to GNU/Linux. Generally, you setup a bootstrap partition earlier to\n"
+"hold this information.\n"
"\n"
-" Ovdje možete izabrati da li želite da vaÅ¡ raÄunar automatski preÄ‘e na\n"
-"grafiÄki interfejs nakon ukljuÄivanja. OÄito, trebate odgovoriti \"%s\" ako\n"
-"će vaÅ¡ raÄunar imati ulogu servera ili ako imate problema sa\n"
-"podešavanjem ekrana."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr "Pregledaj"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr "CDROM"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Da li se želite pokušati spojiti na Internet sada?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "Belgijska"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Imate li ISA zvuÄnu karticu?"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Nije pronađen ethernet mrežni adapter na vašem sistemu.\n"
-"Ne mogu podesiti ovu vrstu konekcije."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Windows"
-msgstr "Windows"
-
-#: ../../common.pm:1
-#, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "Ne mogu napraviti snimak ekrana prije particioniranja"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Name"
-msgstr "Ime raÄunara"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/_Datoteka/SaÄuvaj K_ao"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"Da biste pristupili Å¡tampaÄima na udaljenim CUPS serverima u vaÅ¡oj lokalnoj "
-"mreži, sve Å¡to treba je da ukljuÄite opciju \"Automatski pronaÄ‘i dostupne "
-"Å¡tampaÄe na udaljenim raÄunarima\"; CUPS serveri će automatski informisati "
-"vaÅ¡ raÄunar o svojim Å¡tampaÄima. Svi Å¡tampaÄi koji su poznati vaÅ¡em raÄunaru "
-"su navedeni u sekciji \"Udaljeni Å¡tampaÄi\" glavnog Printerdrake prozora. "
-"Ako vaš CUPS server nije u lokalnoj mreži, morate ovdje unijeti njegovu IP "
-"adresu i eventualno broj porta kako biste dobili informacije od servera."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr "%s nije u bazi skenera, želite li ga ruÄno podesiti?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "ÄŒekanje prije bootanja default image-a"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Restrict command line options"
-msgstr "OgraniÄi opcije komandne linije"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "East Europe"
-msgstr "IstoÄna Evropa"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "Koristi slobodan prostor"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "koristi dhcp"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr "Mail obavijest"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Internet configuration"
-msgstr "Internet konfiguracija"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected %s"
-msgstr "Detektovan %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Automatski prepoznaj Å¡tam_paÄe"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "Kraj"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Automatski prikaži izabrane pakete"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr "Togo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "CPU flagovi koje je prijavio kernel"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Nešto je pogrešno! - Da li je instaliran mkisofs?"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "Molim pokušajte ponovo"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The model is correct"
-msgstr "Model je ispravan"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Smanjivanje FAT particije nije uspjelo: %s"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr "Izbor pojedinaÄnih paketa"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr "Ovoj particiji ne možete mijenjati veliÄinu"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr "Lokacija"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "USA (cable-hrc)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "Gvatemala"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr "Journalised FS"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr "Provjera promiskuitetnog režima Ethernet kartica"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
-msgstr "Na ovom raÄunaru"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS slovo uređaja: %s (pretpostavka)\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr "Bahrein"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Izaberite datoteke ili direktorije i kliknite na 'U redu'"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit scsi modules"
-msgstr "izostavi scsi module"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "familija CPUa (npr: 6 za i686 generaciju)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Pošto radite mrežnu instalaciju, vaša mreža je već podešena.\n"
-"Kliknite na U redu da zadržite tu konfiguraciju ili Odustani za podešavanje "
-"vaše Internet & Mrežne konekcije.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
-msgstr "Izvršavaj dnevne sigurnosne provjere"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Raspored tastature: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"Ovdje možete izabrati da li Å¡tampaÄi spojeni na ovaj raÄunar trebaju biti "
-"dostupni drugim raÄunarima i kojim drugim raÄunarima."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr "Malteška (US)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "Pravljenje boot diskete je uspješno završeno \n"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Montira i demontira sve Network File System (NFS), SMB (Lan\n"
-"Manager/Windows) i NCP (NetWare) taÄke montiranja."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Launch the wizard"
-msgstr "Pokreni Äarobnjak"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Tvcard"
-msgstr "TV kartica"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "PrekidaÄ normalnog/ekspertnog moda"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr "VeliÄina"
-
-#: ../../help.pm:1
-#, c-format
-msgid "GRUB"
-msgstr "GRUB"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr "Grenland"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "ÄŒetvrtak"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Neispravna oznaka trake. Oznaka je %s."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\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"
-"What would you like to do?"
-msgstr ""
-"Dijeljenje Internet konekcije je već podešeno. Trenutno je\n"
-"aktivno.\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected.\n"
"\n"
-"Šta želite uraditi?"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Obriši sve NBIje"
+" * Enable CD Boot?: checking this option allows you to choose \"C\" for CD\n"
+"at the first boot prompt.\n"
+"\n"
+" * Enable OF Boot?: checking this option allows you to choose \"N\" for "
+"Open\n"
+"Firmware at the first boot prompt.\n"
+"\n"
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:860
+#, fuzzy
msgid ""
-"This dialog allows you to fine tune your bootloader:\n"
-"\n"
-" * \"%s\": there are three choices for your bootloader:\n"
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
"\n"
-" * \"%s\": if you prefer grub (text menu).\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
"\n"
-" * \"%s\": if you prefer LILO with its text menu interface.\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
"\n"
-" * \"%s\": if you prefer LILO with its graphical interface.\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
-" * \"%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"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\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"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\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"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\n"
"\n"
-"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
-"are normally reserved for the expert user."
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
msgstr ""
-"Ovaj dijalog vam omogućuje da fino podesite vaš bootloader:\n"
-"\n"
-" * \"%s\": ovdje su tri izbora za vaš bootloader:\n"
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
-" * \"%s\": ako preferirate grub (tekstualni meni),\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-" * \"%s\": ako preferirate LILO sa njegovim tekstualnim interfejsom.\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary.\n"
"\n"
-" * \"%s\": ako preferirate LILO sa njegovim grafiÄkim interfejsom.\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the "
+"language\n"
+"you have chosen. But here again, as for the choice of a keyboard, you may\n"
+"not be in the country for which the chosen language should correspond.\n"
+"Hence, you may need to click on the \"Timezone\" button in order to\n"
+"configure the clock according to the time zone you are in.\n"
"\n"
-" * \"%s\": u većini sluÄajeva nije potrebno da mijenjate\n"
-"ponuđenu vrijednost (\"%s\"), ali ako to želite, bootloader\n"
-"može biti instaliran na drugi hard disk (\"%s\") ili Äak na\n"
-"disketu (\"%s\");\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard.\n"
"\n"
-" * \"%s\": nakon boota ili reboota\n"
-"raÄunara, ovo je vrijeme koje je dato korisniku za raÄunarom da izabere\n"
-"neku opciju iz boot menija koja se razlikuje od izabrane.\n"
+" * \"Sound card\": if a sound card is detected on your system, it is\n"
+"displayed here. No modification possible at installation time.\n"
"\n"
-"!! Pazite da ako odaberete da ne želite instalirati bootloader (klikanjem\n"
-"na \"%s\"), morate se pobrinuti da imate neki naÄin za pokretanje\n"
-"vašeg Mandrake Linux sistema! Budite sigurni da znate šta hoćete prije\n"
-"nego što promijenite neku od ovih opcija. !!\n"
+" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+"here. No modification possible at installation time.\n"
"\n"
-"Klik na dugme \"%s\" u ovom dijalogu vam pruža napredne opcije\n"
-"rezervisane za ekspertnog korisnika."
+" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../help.pm_.c:891
msgid ""
-"if set, send the mail report to this email address else send it to root."
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
-"ako je ukljuÄeno, Å¡alje mail izvjeÅ¡taj na ovu email adresu, inaÄe ga Å¡alje "
-"root-u."
+"Izaberite hard disk koji želite obrisati kako biste instalirali vašu novu "
+"Mandrake\n"
+"Linux particiju. Budite pažljivi, svi podaci koji se nalaze na njemu će "
+"biti\n"
+"izgubljeni i neće se moći vratiti!"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Koju konfiguraciju XFree želite imati?"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "More"
-msgstr "Još"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:896
msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"Ovdje koristite istu sintaksu kao program 'cdrecord' za komandnu liniju. "
-"'cdrecord --scanbus' će vam takođe pokazati broj uređaja."
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
-#: ../../security/level.pm:1
+#: ../../install2.pm_.c:111
#, 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."
+"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 ""
-"Sa ovim sigurnosnim nivoom, postaje moguće koristiti ovaj sistem kao "
-"server.\n"
-"Sigurnost je sada dovoljno visoka za upotrebu sistema kao servera koji "
-"prima\n"
-"konekcije sa mnogo klijenata. Napomena: ako je vaÅ¡ raÄunar samo klijent na "
-"Internetu, možda je bolje da izaberete niži nivo."
-#: ../../standalone/printerdrake:1
+#: ../../install2.pm_.c:167
#, c-format
-msgid "Server Name"
-msgstr "Ime servera"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Password"
-msgstr "Å ifra naloga"
-
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
-msgstr ""
-"Ne mogu prikazati %s.\n"
-"Nema Pomoći pod ovim imenom\n"
+msgid "You must also format %s"
+msgstr "Morate također formatirati i %s"
-#: ../../any.pm:1
+#: ../../install_any.pm_.c:423
#, 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"
+"You have selected the following server(s): %s\n"
"\n"
-"On which drive are you booting?"
-msgstr ""
-"OdluÄili ste da na particiju instalirate bootloader.\n"
-"Ovo podrazumijeva da već imate bootloader na hard disku sa kojeg bootate "
-"(npr: System Commander).\n"
"\n"
-"Sa kojeg diska vršite boot?"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"WARNING!\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\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 ""
-"UPOZORENJE!\n"
"\n"
-"DrakX će sada promijeniti veliÄinu vaÅ¡e Windows particije. Budite pažljivi,\n"
-"ova operacija je opasna. Ako to već niste uradili, najprije napustite\n"
-"instalaciju, izvršite naredbu \"chkdsk c:\" iz Command Prompt-a pod\n"
-"Windowsom (obratite pažnju da izvrÅ¡avanje grafiÄkog programa \"scandisk\"\n"
-"nije dovoljno, trebate koristiti \"chkdsk\" u komandnom upitu!), opcionalno\n"
-"pokrenite \"defrag\", zatim ponovo pokrenite instalaciju. Također biste\n"
-"trebali spasiti sve podatke.\n"
-"Kada ste sigurni, kliknite na \"U redu\"."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tajik keyboard"
-msgstr "TadžiÄka tastatura"
-
-#: ../../printer/printerdrake.pm:1
-#, 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"
+"Do you really want to install these servers?\n"
msgstr ""
-"Možete kopirati konfiguraciju Å¡tampaÄa koju ste napravili za spooler %s u % "
-"s, vaÅ¡ trenutni spooler. Svi podaci o konfiguraciji (naziv Å¡tampaÄa, opis, "
-"lokacija, tip konekcije kao i podrazumjevane opcije) će biti preuzeti, ali "
-"zadaci Å¡tampe neće biti prebaÄeni.\n"
-"Svi redovi ne mogu biti prebaÄeni zbog sljedećih razloga:\n"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Font List"
-msgstr "Lista fontova"
+"Izabrali ste sljedeći server (servere): %s\n"
+"\n"
+"\n"
+"Ovi serveri su aktivirani automatski. Oni nemaju nikakvih poznatih "
+"sigurnosnih\n"
+"problema, ali možda će biti pronaÄ‘eni neki novi. U tom sluÄaju, morate ih\n"
+"unaprijediti što prije bude moguće.\n"
+"\n"
+"\n"
+"Da li zaista želite instalirati ove servere?\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_any.pm_.c:441
#, 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."
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-"Možda ćete trebati promijeniti vaš Open Firmware boot uređaj\n"
-" da biste aktivirali bootloader. Ako ne vidite upit bootloadera\n"
-" prilikom bootanja, držite Command-Option-O-F prilikom boota\n"
-" i unesite:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Zatim kucajte: shut-down\n"
-"Prilikom idućeg boota biste trebali vidjeti upit bootloadera."
-#: ../../install_steps_interactive.pm:1
-#, 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"
-msgstr ""
-"Izgleda da imate OldWorld ili Unknown raÄunar,\n"
-" yaboot bootloader neće raditi kod vas.\n"
-"Instalacija će se nastaviti, ali ćete\n"
-" morati koristiti BootX za bootanje vaÅ¡eg raÄunara"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
+msgstr "Ne mogu koristiti broadcast bez NIS domene"
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_any.pm_.c:879
#, c-format
-msgid "Select file"
-msgstr "Izaberite datoteku"
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Ubacite FAT formatiranu disketu u jedinicu %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr "Izaberite mrežu ili raÄunar Äijim Å¡tampaÄima treba omogućiti pristup."
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
+msgstr "Ova disketa nije FAT (DOS/Windows) formatirana"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_any.pm_.c:895
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"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-"Ove komande možete također koristiti u polju \"Komanda za štampu\" u "
-"dijalozima za štampu mnogih aplikacija, ali ovdje ne morate navesti ime "
-"datoteke jer tu datoteku obezbjeđuje sama aplikacija.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "Japan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print option list"
-msgstr "Lista opcija za štampu"
-
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "Izmjena je napravljena, ali da bi stupila na snagu morate se odjaviti"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
-msgstr "Zemlja"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search servers"
-msgstr "Traži servere"
+"Da koristite ovaj izbor spašenih paketa, bootajte instalaciju sa ``linux "
+"defcfg=floppy''"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, c-format
-msgid "NCP queue name missing!"
-msgstr "NCP naziv reda nedostaje!"
+msgid "Error reading file %s"
+msgstr "GreÅ¡ka u Äitanju datoteke %s"
-#: ../../standalone/net_monitor:1
-#, c-format
+#: ../../install_any.pm_.c:1040
msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
+"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 ""
-"Upozorenje, otkrivena je druga Internet konekcija, možda preko vaše mreže"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM pod oznakom \"%s\""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr "CDRW medij"
+"Došlo je do greške - nije pronađen nijedan ispravan uređaj na kojem se mogu "
+"kreirati novi file sistemi. Molimo provjerite vaš hardware i pronađite uzrok "
+"greške"
-#: ../../services.pm:1
+#: ../../install_interactive.pm_.c:21
#, c-format
msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"Snima i uÄitava sistemski spremnik entropije za veću kvalitetu\n"
-"generisanja sluÄajnih brojeva."
-
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr "Pretvorite vaÅ¡ raÄunar u pouzdan server"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr "Provjeri prazne šifre u /etc/shadow"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid " (driver %s)"
-msgstr " (drajver %s)"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
-msgstr "Pokreni po potrebi"
+"Neki dio hardware-a na vaÅ¡em raÄunaru zahtjeva ``posjedovane'' drajvere za "
+"rad.\n"
+"Možete naći više podataka o njima na: %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:56
msgid ""
-"Loopback file(s):\n"
-" %s\n"
+"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 ""
-"Loopback datoteka(e):\n"
-" %s\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr "Ne znam"
+"Morate imati root particiju.\n"
+"Za ovo, kreirajte particiju (ili kliknite na neku od postojećih).\n"
+"Zatim izaberite ``TaÄka montiranja'' i postavite ga na `/'"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP host \"%s\", port %s"
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
+msgstr "Morate imati swap particiju"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../install_interactive.pm_.c:62
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"
+"You don't have a swap partition.\n"
"\n"
-"Do you want to continue?"
+"Continue anyway?"
msgstr ""
-"Sada ćete podesiti autoinstalacijsku disketu. Ova opcija je pomalo opasna i "
-"mora biti korištena uz pažnju.\n"
-"\n"
-"Sa ovom opcijom bićete u mogućnosti da ponovite instalaciju koju ste obavili "
-"na ovom raÄunaru, pri ćemu ćete biti interaktivno upitani za neke korake "
-"kako biste promijenili njihove vrijednosti.\n"
-"\n"
-"Zbog maksimalne sigurnosti, particioniranje i formatiranje nikad neće biti "
-"obavljeno automatski, bez obzira šta izaberete tokom instalacije na ovaj "
-"raÄunar.\n"
+"Nemate nijednu swap particiju\n"
"\n"
-"Da li želite nastaviti?"
+"Svejedno nastavi?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Telugu"
-msgstr "Telugu"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Morate imati FAT particiju montiranu na /boot/efi"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
-msgstr ""
-"\n"
-"\n"
-"VaÅ¡a kartica trenutno koristi %s \"%s\" drajver (uobiÄajeni drajver za vaÅ¡u "
-"karticu je \"%s\")"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
+msgstr "Koristi slobodan prostor"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Uninstall"
-msgstr "Post Uninstall"
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
+msgstr "Nema dovoljno slobodnog prostora za pravljenje novih particija"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Spajam se na Internet "
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
+msgstr "Koristi postojeću particiju"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
-msgstr " ("
+#: ../../install_interactive.pm_.c:102
+msgid "There is no existing partition to use"
+msgstr "Nema nijedne postojeće particije za upotrebu"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid level"
-msgstr "Nivo cpuid-a"
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
+msgstr "Koristi Windows particiju za loopback"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Novell server \"%s\", Å¡tampaÄ \"%s\""
+#: ../../install_interactive.pm_.c:112
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Koju particiju želite koristiti za Linux4Win?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "Mongolska (ćirilica)"
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
+msgstr "Izaberite veliÄine"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Add a module"
-msgstr "Dodaj modul"
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
+msgstr "VeliÄina root particije u MB:"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr "Profil za brisanje:"
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr "VeliÄina swap particije u MB:"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Local measure"
-msgstr "Lokalne mjere"
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
+msgstr "Koristi slobodan prostor na Windows particiji"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
-msgstr "Upozorenje: IP adresa %s je obiÄno rezervisana !"
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
+msgstr "Kojoj particiji želite promjeniti veliÄinu?"
-#: ../../mouse.pm:1
-#, c-format
-msgid "busmouse"
-msgstr "busmouse"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "IzraÄunavam granice Windows datoteÄnog sistema"
-#: ../../standalone/drakTermServ:1
+#: ../../install_interactive.pm_.c:134
#, 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."
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
-"be created.\n"
-" \tmkinitrd-net does much of this work and drakTermServ is just a "
-"graphical \n"
-" \tinterface to help manage/customize these images. To create the "
-"file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Login naloga (korisniÄko ime)"
+"FAT resizer ne može izmjeniti vašu particiju, \n"
+"došlo je do sljedeće greške: %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
-msgstr "Fdiv bug"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
+msgstr ""
+"Vaša Windows particija je previše fragmentirana, molimo prvo pokrenite "
+"``defrag'' "
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:138
msgid ""
-"drakfirewall configurator\n"
+"WARNING!\n"
"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-"drakfirewall podeÅ¡ivaÄ\n"
+"UPOZORENJE!\n"
"\n"
-"Prije nego što nastavite, provjerite da li ste ispravno podesili pristup\n"
-"mreži/Internetu pomoću alata drakconnect."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr "Prihvati broadcast ICMP eho"
+"DrakX će sada promjeniti veliÄinu vaÅ¡e Windows particije. Budite pažljivi, "
+"ova\n"
+"operacija je opasna. Ako to već niste uradili, najprije napustite "
+"instalaciju,\n"
+"pokrenite scandisk pod Windowsom (opcionalno pokrenite defrag), zatim\n"
+"ponovo pokrenite instalaciju. Također biste trebali spasiti sve podatke.\n"
+"Kada ste sigurni, kliknite na Ok."
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr "Urugvaj"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Koju veliÄinu želite da saÄuvate za windows na"
-#: ../../lang.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Benin"
-msgstr "Benin"
+msgid "partition %s"
+msgstr "particiji %s"
-#: ../../printer/main.pm:1
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "SMB/Windows server \"%s\", share \"%s\""
+msgid "FAT resizing failed: %s"
+msgstr "FAT promjena veliÄine nije uspjela: %s"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path selection"
-msgstr "Izbor staze"
+#: ../../install_interactive.pm_.c:171
+msgid ""
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Ne postoji nijedna FAT particija za promjenu veliÄine ili upotrebu za "
+"loopback (ili nije ostalo dovoljno prostora)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Name/IP address of host:"
-msgstr "Ime/IP adresa raÄunara:"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr "PobriÅ¡i Äitav disk"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr "Ukloni Windows(TM)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom & system settings"
-msgstr "Vlastito i sistemske postavke"
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Imate više od jednog hard diska, na koji želite instalirati linux?"
-#: ../../partition_table/raw.pm:1
+#: ../../install_interactive.pm_.c:183
#, 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 "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-"Nešto loše se dešava na vašem disku. \n"
-"Test integriteta podataka nije uspio. \n"
-"To znaÄi će da pisanje bilo Äega na disk rezultirati smećem."
+"SVE postojeće particije i podaci na njima će biti izgubljeni na disku %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Nedostaje hostname Å¡tampaÄa ili IP adresa!"
+#: ../../install_interactive.pm_.c:191
+msgid "Custom disk partitioning"
+msgstr "RuÄno particioniranje diska"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Molim izaberite sve korisnike koje želite ukljuÄiti u vaÅ¡ backup."
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr "Koristi fdisk"
-#: ../../standalone/scannerdrake:1
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-"%s se mora podesiti iz printerdrake-a.\n"
-"Možete pokrenuti printerdrake iz Mandrake Kontrolnog centra u odjeljku "
-"Hardware."
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Key isn't writable"
-msgstr "XawTV nije instaliran!"
+"Sada možete particionirati %s.\n"
+"Kada završite, ne zaboravite spasiti sa `w'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bangladesh"
-msgstr "Bangladeš"
+#: ../../install_interactive.pm_.c:227
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Nemate dovoljno slobodnog prostora na vašoj Windows particiji"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
-msgstr "Japan (kablovska)"
+#: ../../install_interactive.pm_.c:243
+msgid "I can't find any room for installing"
+msgstr "Ne mogu naći dovoljno prostora za instalaciju"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Initial tests"
-msgstr "Probni inicijali"
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "DrakX Particioni Äarobnjak je naÅ¡ao sljedeća rjeÅ¡enja:"
-#: ../../network/isdn.pm:1
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid "Continue"
-msgstr "Nastavak"
+msgid "Partitioning failed: %s"
+msgstr "Particioniranje nije uspjelo: %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom Restore"
-msgstr "RuÄno vraćanje"
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr "Pokrećem mrežu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Saturday"
-msgstr "Subota"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr "Zaustavljam mrežu"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps.pm_.c:76
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."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"\"%s\": ako je na vaÅ¡em sistemu otkrivena zvuÄna kartica, ona će\n"
-"biti prikazana ovdje. Ako primijetite da prikazana zvuÄna kartica nije ona\n"
-"koja je ustvari dio vašeg sistema, možete kliknuti na dugme i odabrati neki\n"
-"drugi drajver."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the root umask."
-msgstr "Postavlja root-ov umask."
-
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "GreÅ¡ka u Äitanju datoteke %s"
+"Došlo je do greške, ali ne znam kako da je riješim fino.\n"
+"Nastavite na vlastiti rizik."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "Script-based"
-msgstr "Skripta"
+msgid "Duplicate mount point %s"
+msgstr "Dvostruka taÄka montiranja %s"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "PLL setting:"
-msgstr "PLL postavka:"
+#: ../../install_steps.pm_.c:380
+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 ""
+"Neki bitni paketi nisu ispravno instalirani.\n"
+"Ili je neispravan vaš cdrom uređaj ili vaš cdrom medij.\n"
+"Provjerite cdrom na instaliranom raÄunaru koristeći \"rpm -qpl Mandrake/RPMS/"
+"*.rpm\"\n"
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Morate imati FAT particiju montiranu na /boot/efi"
+msgid "Welcome to %s"
+msgstr "Dobro došli u %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
-msgstr " na "
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr "Nema pogodne disketne jedinice"
-#: ../../diskdrake/dav.pm:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "The URL must begin with http:// or https://"
-msgstr "URL mora poÄinjati sa http:// ili https://"
+msgid "Entering step `%s'\n"
+msgstr "Prelazim na korak `%s'\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:146
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."
+"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 ""
-"Možete dati direktno URI za pristup Å¡tampaÄu. URI mora zadovoljavati ili "
-"CUPS ili Foomatic specifikacije. Obratite pažnju da nisu svi tipovi URIja "
-"podržani od svih spoolera."
+"Vaš sistem ima nizak nivo resursa. Možda imate neki problem sa instalacijom\n"
+"Mandrake Linuxa. Ako se ovo desi, možete pokušati tekstualnu instalaciju. Za "
+"ovo,\n"
+"pritisnite `F1' prilikom bootanja na CDROMu, zatim unesite `text'."
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "Ostali OSi (SunOS...)"
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr "Klasa instalacije"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Install/Upgrade"
-msgstr "Instaliraj/Unaprijedi"
+#: ../../install_steps_gtk.pm_.c:160
+msgid "Please choose one of the following classes of installation:"
+msgstr "Molimo izaberite jednu od sljedećih klasa instalacije:"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d packages"
-msgstr "%d paketa"
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
+msgstr "Izbor grupe paketa"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Costa Rica"
-msgstr "Kostarika"
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
+msgstr "Izbor pojedinaÄnih paketa"
-#: ../../standalone.pm:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Backup and Restore application\n"
-"\n"
-"--default : save default directories.\n"
-"--debug : show all debug messages.\n"
-"--show-conf : list of files or directories to backup.\n"
-"--config-info : explain configuration file options (for non-X "
-"users).\n"
-"--daemon : use daemon configuration. \n"
-"--help : show this message.\n"
-"--version : show version number.\n"
-msgstr ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Aplikacija za backup and restore\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 "Total size: %d / %d MB"
+msgstr "Ukupna veliÄina: %d / %d MB"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain Authentication Required"
-msgstr "Potrebna je autentikacija na domeni"
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
+msgstr "Neispravan paket"
-#: ../../security/level.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "Use libsafe for servers"
-msgstr "Koristi libsafe za servere"
+msgid "Name: %s\n"
+msgstr "Ime: %s\n"
-#: ../../keyboard.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid "Icelandic"
-msgstr "Islandska"
+msgid "Version: %s\n"
+msgstr "Verzija: %s\n"
-#: ../../standalone.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
-msgstr ""
-"\n"
-"Upotreba: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+msgid "Size: %d KB\n"
+msgstr "VeliÄina: %d KB\n"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
+msgid "Importance: %s\n"
+msgstr "ZnaÄaj: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:360
msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
-msgstr ""
-"Unesite maksimalnu veliÄinu\n"
-" dozvoljenu za Draxbackup (MB)"
+"You can't select this package as there is not enough space left to install it"
+msgstr "Ne možete izabrati ovaj paket jer nema dovoljno prostora za njega"
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Kružno montiranje %s\n"
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
+msgstr "Sljedeći paketi će biti instalirani"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo/grub mode"
-msgstr "LILO/grub opcije"
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
+msgstr "Sljedeći paketi će biti uklonjeni"
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "Martinik"
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
+msgstr "Ne možete izabrati/iskljuÄiti ovaj paket"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "HardDrive / NFS"
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Ovo je obavezan paket, ne može biti iskljuÄen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Old user list:\n"
-msgstr "Stara lista korisnika:\n"
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
+msgstr "Ne možete iskljuÄiti ovaj paket. On je već instaliran"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
-msgstr "Pretraži backupe"
+#: ../../install_steps_gtk.pm_.c:395
+msgid ""
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
+msgstr ""
+"Ovaj paket mora biti unaprijeđen\n"
+"Jeste li sigurni da ga želite iskljuÄiti?"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "a number"
-msgstr "broj"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "Ne možete iskljuÄiti ovaj paket. On mora biti unaprijeÄ‘en"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "Å vedska"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
+msgstr "Automatski prikaži izabrane pakete"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Koji %s drajver ću pokušati?"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr "Instalacija"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr "Primićete obavještenje ako neki od izabranih servisa prestane raditi"
+#: ../../install_steps_gtk.pm_.c:407
+msgid "Load/Save on floppy"
+msgstr "UÄitaj/Spasi na disketu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Weekday"
-msgstr "Dan u sedmici"
+#: ../../install_steps_gtk.pm_.c:408
+msgid "Updating package selection"
+msgstr "Osvježavam izbor paketa"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Filesystem types:"
-msgstr "Tipovi file sistema:"
+#: ../../install_steps_gtk.pm_.c:413
+msgid "Minimal install"
+msgstr "Minimalna instalacija"
-#: ../../lang.pm:1
-#, c-format
-msgid "Northern Mariana Islands"
-msgstr "Sjeverna Marijanska ostrva"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
+msgstr "Izaberite pakete koje želite instalirati"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", višenamjenski uređaj na HP JetDirect"
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr "Instaliram"
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "nijedan"
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr "Procjenjujem"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Naziv profila koji će biti kreiran (novi profil je kreiran kao kopija "
-"postojećeg) :"
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr "Preostalo vremena "
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Floppy"
-msgstr "Disketa"
+#: ../../install_steps_gtk.pm_.c:469
+msgid "Please wait, preparing installation..."
+msgstr "Molimo saÄekajte, pripremam instalaciju"
-#: ../../standalone/drakfont:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid "Ghostscript referencing"
-msgstr "Ghostscript referenciranje"
+msgid "%d packages"
+msgstr "%d paketa"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "Bootloader"
-msgstr "Bootloader"
+msgid "Installing package %s"
+msgstr "Instaliram paket %s"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
-msgstr "Autorizuj sve servise koje kontrolišu tcp_wrapperi"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "Prihvati"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "Premještanje"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
+msgstr "Odbij"
-#: ../../any.pm:1 ../../help.pm:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
-msgid "Bootloader to use"
-msgstr "Bootloader koji ćete koristiti"
+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 ""
+"Promjenite vaš CD-ROM!\n"
+"\n"
+"Molimo ubacite CD oznaÄen sa \"%s\" u vaÅ¡ CD-ROM ureÄ‘aj i pritisnite Ok kad "
+"ste spremni.\n"
+"Ako ga nemate, pritisnite Odustani da biste izbjegli instaliranje sa ovog CD-"
+"ROMa."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "SMB server ime"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
+msgstr "Svejedno nastavi?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Name Servers:"
-msgstr "DNS serveri:"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
+msgstr "DoÅ¡lo je do greÅ¡ke pri naruÄivanju paketa:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Minute"
-msgstr "Minuta"
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
+msgstr "Došlo je do greške kod instaliranja paketa:"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:10
msgid ""
"\n"
"Warning\n"
@@ -7331,16 +4944,12 @@ msgid ""
"copyright laws applicable to software programs.\n"
msgstr ""
"\n"
-"Pažnja\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"
-"Molim proÄitajte pažljivo uslove licence ispod. Ako se ne slažete sa bilo\n"
-"kojim dijelom, nije vam dozvoljeno da instalirate naredni CD medij. "
-"Pritisnite\n"
-"dugme 'odbij' da biste nastavili sa instalacijom bez korištenja ovog "
-"medija.\n"
-"Budući da prevodilac ovog teksta nije u mogućnosti da osigura pravnu\n"
-"provjeru prevedenog teksta, tekst je ostavljen u originalnom (engleskom)\n"
-"obliku.\n"
"\n"
"Some components contained in the next CD media are not governed\n"
"by the GPL License or similar agreements. Each such component is then\n"
@@ -7363,4531 +4972,3251 @@ msgstr ""
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Expert mode"
-msgstr "/_Ekspertni mod"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Ukloni ovaj Å¡tampaÄ iz Star/Open Offica"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtuelni Server, koristi se za izgradnju servera visokih performansi\n"
-"i dostupnosti (clusteri servera)."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr "Micronesia"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 milijarde boja (32 bita)"
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
+msgstr "Došlo je do greške"
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
-msgstr "Licenca"
+#: ../../install_steps_interactive.pm_.c:85
+msgid "Do you really want to leave the installation?"
+msgstr "Da li zaista želite napustiti instalaciju?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "Možda će trebati par trenutaka da se generiÅ¡u kljuÄevi."
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
+msgstr "Licencni ugovor"
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
+"Introduction\n"
"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
-"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"
+"1. License Agreement\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"
+"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"
-"<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"
+"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"
-"<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"
+"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"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
"\n"
+"3. The GPL License and Related Licenses\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"
+"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"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-"Ovdje možete podesiti nivo sigurnosti i administratora ovog raÄunara.\n"
+"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"
-"Sigurnosni administrator je onaj koji će dobijati sigurnosna upozorenja\n"
-"ako je aktivna opcija 'Sigurnosna upoyorenja'. Ovo može biti korisniÄko\n"
-"ime ili e-mail.\n"
"\n"
+"5. Governing Laws \n"
"\n"
-"Meni Nivo sigurnosti vam omogućuje da izaberete jedan od šest gotovih\n"
-"nivoa sigurnosti koje pruža msec. Ovi nivoi imaju raspon od slabe\n"
-"sigurnosti i jednostavnog korištenja, do paranoidnih postavki, prikladnih "
-"za\n"
-"vrlo osjetljive serverske aplikacije:\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 ""
+"Introduction\n"
"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
-"<span foreground=\"royalblue3\">Slab</span>: Ovo je potpuno neupotrebljiv\n"
-"nivo sigurnosti, ali lagan za upotrebu. Treba ga koristiti samo na "
-"raÄunarima\n"
-"koji nisu spojeni na mrežu i koji nisu dostupni svakome.\n"
"\n"
+"1. License Agreement\n"
"\n"
-"<span foreground=\"royalblue3\">Standardan</span>: Ovo je standardna\n"
-"sigurnost koja se preporuÄuje za raÄunar koji će biti koriÅ¡ten za spajanje\n"
-"na Internet kao klijent.\n"
+"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"
-"<span foreground=\"royalblue3\">Visok</span>: Postoje već neka\n"
-"ograniÄenja, a automatizovane provjere se vrÅ¡e svake noći.\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"
-"<span foreground=\"royalblue3\">Viši</span>: Sigurnost je sada dovoljno\n"
-"visoka da bi se sistem mogao koristiti kao server koji prihvata konekcije\n"
-"od mnogih klijenata. Ako je vaÅ¡ raÄunar samo klijent na Internetu, trebali\n"
-"biste izabrati niži nivo.\n"
+"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"
-"<span foreground=\"royalblue3\">ParanoiÄan</span>: Ovo je sliÄno kao\n"
-"prethodni nivo, ali je sistem potpuno zatvoren i sigurnosne mogućnosti\n"
-"su na maksimumu."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr "Automatsko prepoznavanje Å¡tampaÄa (lokalni, TCP/Socket i SMB Å¡tampaÄi)"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr "Sagem (koristeći pppoa) usb"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"Došlo je do greške - nije pronađen nijedan ispravan uređaj na kojem se mogu "
-"kreirati novi file sistemi. Molim provjerite vaš hardware i pronađite uzrok "
-"greške"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Pokrećem sistem za štampu tokom boota"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Da li želite pokrenuti konekciju prilikom boota?"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr "ID procesora"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr "Rješavanje problema sa zvukom"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "Poljska (qwerty)"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Dodaj Å¡tampaÄ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
"\n"
-"Drakbackup activities via CD:\n"
+"3. The GPL License and Related Licenses\n"
"\n"
-msgstr ""
+"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"
-"Drakbackup aktivnosti putem CDa:\n"
"\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
+"4. Intellectual Property Rights\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"
+"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"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Sada ćete instalirati sistem za štampu %s na sistemu koji je na sigurnosnom "
-"nivou % s.\n"
"\n"
-"Ovaj sistem za Å¡tampu pokreće demon (pozadinski proces) koji Äeka zadatke "
-"Å¡tampe i rjeÅ¡ava ih. Ovom demonu takoÄ‘e mogu pristupiti drugi raÄunari putem "
-"mreže, tako da je to moguća taÄka napada. Stoga se tek rijetki od odabranih "
-"demona pokreću na ovom sigurnosnom nivou.\n"
+"5. Governing Laws \n"
"\n"
-"Da li zaista želite podesiti Å¡tampanje na ovom raÄunaru?"
+"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"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Host \"%s\", port %s"
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "Ova particija se ne može koristiti za loopback"
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "Tastatura"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr "Datoteka već postoji. Želite li je koristiti?"
+#: ../../install_steps_interactive.pm_.c:218
+msgid "Please choose your keyboard layout."
+msgstr "Molimo izaberite izgled vaše tastature."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
-msgstr "primljeno:"
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
+msgstr "Ovdje je puna lista svih dostupnih tastatura"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr "Desna Alt tipka"
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
+msgstr "Koju klasu instalacije želite?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "spisak alternativnih drajvera za ovu zvuÄnu karticu"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
+msgstr "Instaliraj/Unaprijedi"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Gateway"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
+msgstr "Da li je ovo instalacija ili update?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr "Tonga"
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr "PreporuÄeno"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "Tunis"
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Ekspert"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing"
-msgstr "Dijeljenje skenera"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade"
+msgstr "Unaprijedi"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile: "
-msgstr "Profil:"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade packages only"
+msgstr "Unaprijedi samo pakete"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr "Kliknite na uređaj u drvetu lijevo da dobijete informacije o njemu."
+#: ../../install_steps_interactive.pm_.c:282
+msgid "Please choose the type of your mouse."
+msgstr "Molimo izaberite vrstu vašeg miša."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr "Dozvoli/zabrani autologin."
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr "Port miša"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
-msgstr "XawTV nije instaliran!"
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
+msgstr "Molimo izaberite na kojem serijskom portu je spojen vaš miš."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "ZaobiÄ‘i kritiÄne datoteke (passwd, group, fstab)"
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
+msgstr "Emulacija tipki"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "staro statiÄko ime ureÄ‘aja koje koristi dev paket"
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
+msgstr "Emulacija 2 dugmeta"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
-msgstr "UkljuÄi logovanje Äudnih IPv4 paketa"
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
+msgstr "Emulacija 3 dugmeta"
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
-msgstr "Ova oznaka je već u upotrebi"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr "Podešavam PCMCIA kartice..."
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"Dobro doÅ¡li u ÄŒarobnjak za podeÅ¡avanje Å¡tampaÄa\n"
-"\n"
-"Ovaj Äarobnjak će vam pomoći da instalirate Å¡tampaÄe spojene na ovaj raÄunar "
-"ili spojene na mrežu.\n"
-"\n"
-"Ako imate Å¡tampaÄ spojen na ovaj raÄunar, molim prikljuÄite ga na raÄunar i "
-"upalite ga kako bi bio auto-prepoznat. TakoÄ‘e mrežni Å¡tampaÄi moraju biti "
-"spojeni i upaljeni.\n"
-"\n"
-"Obratite pažnju da detekcija mrežnih Å¡tampaÄa traje duže nego detekcija "
-"Å¡tampaÄa spojenih na ovaj raÄunar. Stoga ugasite detekciju mrežnih Å¡tampaÄa "
-"ako vam ona nije potrebna.\n"
-"\n"
-"Kliknite na \"Dalje\" kada budete spremni, ili na \"Odustani\" ako ne želite "
-"podesiti Å¡tampaÄ sada."
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
-msgstr "GrÄki (politonski)"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr "Podešavam IDE"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"Nakon formatiranja particije %s, svi podaci na toj particiji će biti "
-"izgubljeni"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection Time: "
-msgstr "Vrijeme konekcije: "
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr "nema dostupnih particija"
-#: ../../standalone/livedrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
+msgstr "Pretražujem particije da naÄ‘em taÄke montiranja"
+
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr "Izaberite taÄke montiranja"
+
+#: ../../install_steps_interactive.pm_.c:386
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."
+"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 ""
-"Molim ubacite Instalacioni CD u vaš CD-ROM uređaj i pritisnite U redu kad "
-"ste spremni.\n"
-"Ako ga nemate, pritisnite Odustani da bi se izbjegao live upgrade."
+"Nema dovoljno slobodnog prostora za 1 MB bootstrap! Instalacija će "
+"nastaviti, ali da biste bootali vaš sistem, morate kreirati bootstrap "
+"particiju u DiskDrake-u"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use group id for execution"
-msgstr "Koristi id grupe za izvršavanje"
+#: ../../install_steps_interactive.pm_.c:395
+msgid "No root partition found to perform an upgrade"
+msgstr "Nije pronađena nijedna root particija radi unaprjeđivanja"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "Izaberite default korisnika:"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr "Root particija"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "Gabon"
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr "Šta je root particija (/) vašeg sistema?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Ovdje ne morate podeÅ¡avati Å¡tampaÄe na udaljenim CUPS serverima; ovi "
-"Å¡tampaÄi će biti automatski prepoznati."
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr "Moraćete rebootati da bi izmjene tabele particija stupile na snagu"
-#: ../../any.pm:1
-#, 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."
-msgstr ""
-"Mandrake Linux podržava više jezika. Izaberite jezike koje\n"
-"želite instalirati. Oni će biti dostupni kada se završi vaša\n"
-"instalacija i restartujete vaš sistem."
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr "Izaberite particije koje želite formatirati"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr "Direktorij (ili modul) za smjeÅ¡taj backupa na ovom raÄunaru."
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
+msgstr "Provjeri loše blokove?"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain"
-msgstr "Domena"
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr "Formatiram particije"
-#: ../../any.pm:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Precizna veliÄina RAMa ako je potrebno (pronaÄ‘eno %d MB)"
+msgid "Creating and formatting file %s"
+msgstr "Kreiram i formatiram datoteku %s"
-#: ../../help.pm:1
+#: ../../install_steps_interactive.pm_.c:470
#, 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."
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-"LILO i grub su Linux bootloader-i. Ova faza je obiÄno automatizovana.\n"
-"DrakX će analizirati boot sektor diska i postupati u skladu s onim što\n"
-"zatekne tamo:\n"
-"\n"
-" * ako pronađe Windows boot sektor, biće zamijenjen sa grub/LILO boot\n"
-"sektorom. Na ovaj naÄin bićete u mogućnosti da uÄitate ili GNU/Linux ili\n"
-"neki drugi OS.\n"
-"\n"
-" * ako pronađe grub ili LILO boot sektor, zamijeniće ga novim.\n"
-"\n"
-"Ako ne može donijeti odluku, DrakX će vas pitati gdje da postavi\n"
-"bootloader."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "Provider dns 2 (opcionalno)"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "Boot uređaj"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Kojoj particiji želite promijeniti veliÄinu?"
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+"Nemam dovoljno swap prostora da dovršim instalaciju, molimo dodajte još"
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr "United States Minor Outlying Islands"
+#: ../../install_steps_interactive.pm_.c:479
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Tražim dostupne pakete"
-#: ../../lang.pm:1
-#, c-format
-msgid "Djibouti"
-msgstr "Džibuti"
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr "Tražim dostupne pakete"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Alat za pregled vaših logova"
+#: ../../install_steps_interactive.pm_.c:483
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Ne možete iskljuÄiti ovaj paket. On je već instaliran"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected on port %s"
-msgstr "detektovan na portu %s"
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr "Pronalazim pakete za unaprjeđenje"
-#: ../../printer/data.pm:1
+#: ../../install_steps_interactive.pm_.c:505
#, c-format
-msgid "LPD"
-msgstr "LPD"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
+msgstr ""
+"Vaš sistem nema dovoljno preostalog prostora za instalaciju ili unaprjeđenje "
+"(%d > %d)"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "GrafiÄka karta: %s\n"
+#: ../../install_steps_interactive.pm_.c:541
+msgid ""
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
+msgstr ""
+"Molimo izaberite uÄitaj ili spasi izbor paketa na disketu.\n"
+"Format je isti kao i diskete koje generiše auto_install"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Postavi kao _Podrazumijevano"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Load from floppy"
+msgstr "Vrati sa diskete"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
-msgstr "Prihvati ICMP eho"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr "Spasi na disketu"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Loading from floppy"
+msgstr "Vraćam sa diskete"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Series sa simulacijom toÄkića"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Package selection"
+msgstr "Izbor paketa"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "Extended particije nisu podržane na ovoj platformi"
+#: ../../install_steps_interactive.pm_.c:552
+msgid "Insert a floppy containing package selection"
+msgstr "Ubacite disketu koja sadrži izbor paketa"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Splash selection"
-msgstr "Izbor splash-a"
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
+msgstr "Izabrana veliÄina je veća od slobodnog prostora"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Podešavanje ISDNa"
+#: ../../install_steps_interactive.pm_.c:649
+msgid "Type of install"
+msgstr "Vrsta instalacije"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "high"
-msgstr "visok"
+#: ../../install_steps_interactive.pm_.c:650
+#, fuzzy
+msgid ""
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Niste izabrali nijednu grupu paketa\n"
+"Molimo izaberite minimalnu instalaciju koju želite"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Dijeljenje Internet konekcije"
+#: ../../install_steps_interactive.pm_.c:653
+msgid "With X"
+msgstr "Sa X-om"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Choose file"
-msgstr "Izaberi datoteku"
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
+msgstr "Sa osnovnom dokumentacijom (preporuÄeno)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Summary: "
-msgstr "Ukratko: "
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Stvarno minimalna instalacija (posebno bez urpmi)"
-#: ../../network/shorewall.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:741
msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
+"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 ""
-"Upozorenje! Pronađena je postojeća konfiguracija firewalla. Možda će biti "
-"potrebno neko ruÄno podeÅ¡avanje nakon instalacije."
+"Ako imate sve CDe na listi, kliknite na Ok.\n"
+"Ako nemate nijedan od ovih CDova, kliknite na Odustani.\n"
+"Ako nedostaju samo neki CDovi, iskljuÄite ih, zatim kliknite na Ok."
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:746
#, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Å tampam/pristupam foto kartici na \"%s\""
+msgid "Cd-Rom labeled \"%s\""
+msgstr "CD-ROM pod oznakom \"%s\""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
-msgstr "Dnevna sigurnosna provjera"
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr "Pripremam instalaciju"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:776
#, c-format
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"Installing package %s\n"
+"%d%%"
msgstr ""
-"Želite li omogućiti Å¡tampanje na Å¡tampaÄima navedenim gore ili na Å¡tampaÄima "
-"u lokalnoj mreži?\n"
+"Instaliram paket %s\n"
+"%d%%"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer default settings"
-msgstr "Podrazumjevane postavke Å¡tampaÄa"
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
+msgstr "Post-instalacijsko podešavanje"
-#: ../../mouse.pm:1
+#: ../../install_steps_interactive.pm_.c:828
#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "OpÅ¡ti PS2 MiÅ¡ sa toÄkićem"
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Molimo ubacite boot disketu koja je upotrebljena u jedinicu %s"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm_.c:834
#, c-format
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "Molimo ubacite disketu Update Modula u jedinicu %s"
+
+#: ../../install_steps_interactive.pm_.c:861
+#, fuzzy
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)"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates ?"
msgstr ""
-"WP flag u CR0 registru CPUa prisiljava zaštitu od pisanja na nivou "
-"memorijske stranice, Äime je ukljuÄeno sprjeÄavanje od neprovjerenih "
-"pristupa kernela u korisniÄku memoriju (drugim rijeÄima, ovo je zaÅ¡tita od "
-"bugova)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Uklanjam stari Å¡tampaÄ \"%s\" ..."
+"Sada imate mogućnost da dobavite sa interneta unaprijeđene pakete koji\n"
+"su izašli nakon što je distribucija objavljena.\n"
+"\n"
+"Dobićete sigurnosne ispravke ili ispravke bugova, ali prethodno je potrebno\n"
+"da podesite Internet konekciju.\n"
+"\n"
+"Da li želite instalirati unaprjeđenja ?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Select a device !"
-msgstr "Izaberite uređaj !"
+#: ../../install_steps_interactive.pm_.c:876
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgstr ""
+"Kontaktiram Mandrake Linux web stranicu da bih saznao listu dostupnih mirrora"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected server"
-msgstr "Ukloni izabrani server"
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
+msgstr "Izaberite mirror sa kojeg će biti dobavljeni paketi"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using dhcp) usb"
-msgstr "Sagem (koristeći dhcp) usb"
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Kontaktiram mirror da bih saznao listu dostupnih paketa"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Southern Territories"
-msgstr "Francuske Južne Teritorije"
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr "Koja je vaša vremenska zona?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "naziv proizvoÄ‘aÄa procesora"
+#: ../../install_steps_interactive.pm_.c:923
+msgid "Hardware clock set to GMT"
+msgstr "Hardverski sat podešen na GMT"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - ÄŒuvaj %s:\n"
-" \t\tDa bi se korisnici mogli prijaviti na sistem sa klijenta bez "
-"diska, njihova stavka u\n"
-" \t\t/etc/shadow se mora kopirati u %s. drakTermServ pomaže\n"
-" \t\tu ovome tako što dodaje i briše sistemske korisnike iz ove "
-"datoteke."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr "Svi podaci na ovoj particiji bi trebali biti backupovani"
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "Instaliram paket %s"
+#: ../../install_steps_interactive.pm_.c:931
+msgid "NTP Server"
+msgstr "NTP server"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr "Provjeravam uređaj i podešavam HPOJ..."
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
+msgstr "Udaljeni CUPS server"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Da biste imali još particija, molim pobrišite jednu kako bi se mogla "
-"kreirati extended particija"
+#: ../../install_steps_interactive.pm_.c:966
+msgid "No printer"
+msgstr "Nema Å¡tampaÄa"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"VaÅ¡ Å¡tampaÄ je podeÅ¡en automatski kako bi vam dao pristup memoriji foto "
-"kartice sa PCa. Sada možete pristupiti vašim foto karticama koristeći "
-"grafiÄki program \"MToolsFM\" (Meni: \"Aplikacije\" -> \"DatoteÄni alati\" -"
-"> \"MTools File Manager\") ili alat komandne linije \"mtools\" (kucajte "
-"\"man mtools\" na komandnoj liniji za viÅ¡e informacija). DatoteÄni sistem "
-"vaše kartice ćete naći pod slovom \"p:\", ili pod narednim slovima ako imate "
-"viÅ¡e od jednog HP Å¡tampaÄa sa jedinicom za foto kartice. U \"MToolsFM\" "
-"promijeniti slovo drajva koristeći polje u gornjem desnom uglu liste "
-"datoteka."
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "Izaberite pakete za instalaciju"
+#: ../../install_steps_interactive.pm_.c:982
+msgid "Do you have an ISA sound card?"
+msgstr "Imate li ISA zvuÄnu karticu?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-"SVE postojeće particije i podaci na njima će biti izgubljeni na disku %s"
+"Pokrenite \"sndconfig\" poslije instalacije kako biste podesili vaÅ¡u zvuÄnu "
+"karticu"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-"Vaš sistem nema dovoljno preostalog prostora za instalaciju ili unaprjeđenje "
-"(%d > %d)"
+"Nije otkrivena zvuÄna kartica. Probajte \"harddrake\" poslije instalacije"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Svakom Å¡tampaÄu treba dati ime (npr. \"stampac\"). Polja Opis i Lokacija "
-"nije potrebno popuniti. Oni su komentari za korisnike."
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
+msgstr "Ukratko"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"\"%s\": klikanjem na dugme \"%s\" otvorićete Äarobnjak za\n"
-"podeÅ¡avanje Å¡tampaÄa. Konsultujte odgovarajuće poglavlje \"VodiÄa za\n"
-"poÄetnike\" za viÅ¡e informacija o tome kako podesiti novi Å¡tampaÄ.\n"
-"Interfejs koji je tamo prikazan je vrlo sliÄan onom koji se koristi\n"
-"prilikom instalacije."
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
+msgstr "Miš"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr "Butan"
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
+msgstr "Vremenska zona"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "Mrežni interface"
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "Å tampaÄ"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Prekid veze sa Internetom nije uspio."
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
+msgstr "ISDN kartica"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
-msgstr "ÄŒitam podatke o Å¡tampaÄu..."
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
+msgstr "ZvuÄna kartica"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "Korejanska tastatura"
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
+msgstr "TV kartica"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Not connected"
-msgstr "Nije konektovan"
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
+msgstr "LDAP"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "Podešavanje Internet konekcije"
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+msgid "NIS"
+msgstr "NIS"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
-msgstr "GrÄka"
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Preuzmi fontove iz Windowsa"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts and Nevis"
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+msgid "Local files"
+msgstr "Lokalne datoteke"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "OpÅ¡ti miÅ¡ sa 3 dugmeta sa simulacijom toÄkića"
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr "Podesite root šifru"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
-msgstr "Omogući boot sa OFa?"
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr "Bez šifre"
-#: ../../fsedit.pm:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Ne možete koristiti JFS za particije manje od 16MB"
+msgid "This password is too short (it must be at least %d characters long)"
+msgstr ""
+"Ova šifra je previše jednostavna (mora biti duga najmanje %d karaktera)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Obrišite vaš RW medij (prva sesija)"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "Autentikacija"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Monitor VertRefresh: %s\n"
+#: ../../install_steps_interactive.pm_.c:1088
+msgid "Authentication LDAP"
+msgstr "Autentikacijski LDAP"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "TaÄka montiranja"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
+msgstr "LDAP Base dn"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"Došlo je do greške:\n"
-"%s\n"
-"Probajte promijeniti neke parametre"
+#: ../../install_steps_interactive.pm_.c:1090
+msgid "LDAP Server"
+msgstr "LDAP Server"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "TCP/IP host \"%s\", port %s"
+#: ../../install_steps_interactive.pm_.c:1096
+msgid "Authentication NIS"
+msgstr "Autentifikacija NIS"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "User :"
-msgstr "Korisnik :"
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "NIS domen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore system"
-msgstr "Vrati sistem"
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr "NIS server"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1104
msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr "Ovo su raÄunari kojima treba dozvoliti koriÅ¡tenje lokalnog skenera:"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
-msgstr "Krajnja DHCP adresa"
+"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 ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Another one"
-msgstr "Još jedan"
+#: ../../install_steps_interactive.pm_.c:1106
+#, fuzzy
+msgid "Authentication Windows Domain"
+msgstr "Autentikacijski LDAP"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
+#: ../../install_steps_interactive.pm_.c:1108
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Ime domena"
-#: ../../lang.pm:1
-#, c-format
-msgid "Colombia"
-msgstr "Kolumbija"
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1144
msgid ""
-"Current configuration of `%s':\n"
+"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"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
msgstr ""
-"Trenutna konfiguracija `%s':\n"
+"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"
-"Mreža: %s\n"
-"IP adresa: %s\n"
-"IP atributi: %s\n"
-"Drajver: %s"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n Play"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr "Reunion"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "Detalji"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Iz sigurnosnih razloga, sada će biti odspojen."
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Synchronization tool"
-msgstr "Alat za sinhroniziranje"
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr "Prva disketna jedinica"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking your system..."
-msgstr "Proveravam vaš sistem..."
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "Druga disketna jedinica"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print"
-msgstr "Å tampaj"
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "PreskoÄi"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1167
+#, fuzzy, c-format
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+"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"
msgstr ""
-"Ubacite traku sa oznakom %s u kasetni\n"
-"uređaj %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "Mongolija"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
-msgstr "Montirana\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS"
-msgstr "Podešavanje CUPSa"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Interface"
-msgstr "GrafiÄki interfejs"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Users"
-msgstr "Vrati korisnike"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Encryption key for %s"
-msgstr "KljuÄ enkripcije za %s"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to recover your system?"
-msgstr "Da li želite obnoviti vaš sistem?"
+"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?"
-#: ../../services.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1173
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."
+"\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)."
msgstr ""
-"Portmapper upravlja RPC konekcijama, koje koriste protokoli kao što\n"
-"su NFS i NIS. Portmap server mora raditi na raÄunarima koje služe kao\n"
-"serveri za protokole koji koriste RPC mehanizam."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detected hardware"
-msgstr "Detektovani hardver"
+"\n"
+"\n"
+"(PAŽNJA! Vi koristite XFS za vašu root particiju,\n"
+"pravljenje boot diskete na 1.44 Mb disketi vjerovatno neće\n"
+"raditi, pošto XFS traži veoma velik drajver)."
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr "Mauricijus"
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "Žao mi je, nema dostupne disketne jedinice"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
-msgstr "Mjanmarska (Burmanska)"
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr ""
+"Izaberite disketnu jedinicu koju želite koristiti da napravite boot disketu"
-#: ../../fs.pm:1
+#: ../../install_steps_interactive.pm_.c:1189
#, c-format
-msgid "Enabling swap partition %s"
-msgstr "UkljuÄujem swap particiju %s"
+msgid "Insert a floppy in %s"
+msgstr "Ubacite disketu u %s"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"Ne postoji nijedna FAT particija za upotrebu kao loopback (ili nije ostalo "
-"dovoljno prostora)"
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr "Pravim boot disketu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr "Armenska (stara)"
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr "Pripremam bootloader"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1210
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."
+"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 to boot your machine"
msgstr ""
-"Å tampaÄ pod imenom \"%s\" već postoji pod %s: \n"
-"Kliknite na \"Prebaci\" da to prepišete.\n"
-"Možete takoÄ‘er unijeti novo ime ili preskoÄiti ovaj Å¡tampaÄ."
+"Izgleda da imate OldWorld ili Unknown raÄunar,\n"
+" yaboot bootloader neće raditi kod vas.\n"
+"Instalacija će se nastaviti, ali ćete\n"
+" morati koristiti BootX za bootanje vaÅ¡eg raÄunara"
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
+msgstr "Da li želite koristiti aboot?"
+
+#: ../../install_steps_interactive.pm_.c:1219
msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
-"Pronađite rješenja za vaše probleme putem MandrakeSoft-ove online podrške."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", host \"%s\", port %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Monaco"
-msgstr "Monako"
+"Greška u instaliranju aboota, \n"
+"da li da pokuÅ¡am nasilnu instalaciju Äak i ako to uniÅ¡ti prvu particiju?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Particioniranje nije uspjelo: %s"
+#: ../../install_steps_interactive.pm_.c:1226
+msgid "Installing bootloader"
+msgstr "Instaliram bootloadera"
-#: ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formatiranje %s nije uspjelo"
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Instalacija bootloadera nije uspjela. Došlo je do sljedeće greške:"
-#: ../../standalone/drakxtv:1
+#: ../../install_steps_interactive.pm_.c:1240
#, c-format
-msgid "Canada (cable)"
-msgstr "Kanada (kablovska)"
+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 ""
+"Možda ćete trebati promjeniti vaš Open Firmware boot uređaj\n"
+" da biste aktivirali bootloader. Ako ne vidite upit bootloadera\n"
+" prilikom bootanja, držite Command-Option-O-F prilikom boota\n"
+" i unesite:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+" Zatim kucajte: shut-down\n"
+"Prilikom idućeg boota biste trebali vidjeti upit bootloadera."
-#: ../../standalone/drakfloppy:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "Floppy creation completed"
-msgstr "Pravljenje floppy-ja završeno"
+msgid "Insert a blank floppy in drive %s"
+msgstr "Ubacite praznu disketu u jedinicu %s"
-#: ../../help.pm:1
-#, c-format
-msgid "Upgrade"
-msgstr "Unaprijedi"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
+msgstr "Pravim auto instalacijsku disketu"
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
-msgstr "Radna stanica"
+#: ../../install_steps_interactive.pm_.c:1289
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Neki koraci nisu dovršeni.\n"
+"\n"
+"Da li zaista želite izaći sada?"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:1300
#, c-format
msgid ""
-"Installing package %s\n"
-"%d%%"
+"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 ""
-"Instaliram paket %s\n"
-"%d%%"
+"Čestitamo, instalacija je završena.\n"
+"Uklonite boot medij i pritisnite return za reboot.\n"
+"\n"
+"\n"
+"Za informacije o ispravkama koje su dostupne za ovu verziju Mandrake "
+"Linuxa,\n"
+"pogledajte Errata koja je dostupna na:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Informacije o podešavanju vašeg sistema su dostupne u poglavlju\n"
+"\"nakon instalacije\" vaÅ¡eg ZvaniÄnog Mandrake Linux priruÄnika za upotrebu."
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
-msgstr "Kirgistan"
+#: ../../install_steps_interactive.pm_.c:1313
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "Višenamjenski uređaj na USBu"
+#: ../../install_steps_interactive.pm_.c:1318
+msgid "Generate auto install floppy"
+msgstr "Napravi auto instalacijsku disketu"
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1320
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"
+"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 also proceed without an USB key - you'll still be\n"
-"able to use Mandrake Move as a normal live Mandrake\n"
-"Operating System."
+"You may prefer to replay the installation.\n"
msgstr ""
+"Ova auto instalacija može biti potpuno automatizovana ako želite,\n"
+"u kojem sluÄaju će preuzeti hard disk!!\n"
+"(ovo je namjenjeno za instaliranje na drugi raÄunar).\n"
+"\n"
+"Možda ćete željeti radije ponoviti instalaciju.\n"
-#: ../../help.pm:1
-#, c-format
-msgid "With basic documentation"
-msgstr "Sa osnovnom dokumentacijom"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
+msgstr "Automatizovano"
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr "Anacron je periodiÄni izvrÅ¡itelj programa."
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Replay"
+msgstr "Ponovi"
+
+#: ../../install_steps_interactive.pm_.c:1328
+msgid "Save packages selection"
+msgstr "Spasi izbor paketa"
-#: ../../install_interactive.pm:1
+#: ../../install_steps_newt.pm_.c:20
#, c-format
+msgid "Mandrake Linux Installation %s"
+msgstr "Mandrake Linux instalacija %s"
+
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
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 `/'"
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-"Morate imati root particiju.\n"
-"Za ovo, napravite jednu particiju (ili kliknite na neku od postojećih).\n"
-"Zatim izaberite opciju ``TaÄka montiranja'' i postavite je na `/'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "Zapadna Sahara"
+" <Tab>/<Alt-Tab> između elemenata | <Space> vrši izbor | <F12> idući ekran "
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Proxy treba biti http://..."
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
+msgstr "kdesu nedostaje"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr "Južna Afrika"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
+msgstr "nedostaje consolehelper"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Izbaci traku nakon backupa"
+#: ../../interactive.pm_.c:152
+msgid "Choose a file"
+msgstr "Izaberi datoteku"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot Floppy/ISO"
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
+msgstr "Napredno"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Izmjeni konfiguraciju Å¡tampaÄa"
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
+msgstr "Osnovno"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
-msgstr "Izaberi particiju"
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
+msgstr "<- Prethodni"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Edit current rule"
-msgstr "Izmijeni trenutno pravilo"
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+msgid "Next"
+msgstr "Sljedeći"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
-msgstr "%s"
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr "Pogrešan izbor, pokušajte ponovo\n"
-#: ../../mouse.pm:1
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "Please test the mouse"
-msgstr "Molim testirajte miš"
+msgid "Your choice? (default %s) "
+msgstr "Vaš izbor? (podrazumjevano %s)"
-#: ../../fs.pm:1
+#: ../../interactive/stdio.pm_.c:54
#, 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)."
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-"Ne ažuriraj vrijeme pristupa inode-u na ovom sistemu\n"
-"(npr. radi bržeg pristupa spool-u na news serverima)."
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3 dugmeta sa simulacijom toÄkića"
+"Stavke koje morate popuniti:\n"
+"%s"
-#: ../../standalone/drakperm:1
+#: ../../interactive/stdio.pm_.c:70
#, c-format
-msgid "Sticky-bit"
-msgstr "Sticky-bit"
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Vaš izbor? (0/1, podrazumjevano %s)"
-#: ../../standalone/drakbackup:1
+#: ../../interactive/stdio.pm_.c:95
#, c-format
-msgid "Other Media"
-msgstr "Drugi medij"
+msgid "Button `%s': %s"
+msgstr "Dugme '%s': %s"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
+#: ../../interactive/stdio.pm_.c:96
+msgid "Do you want to click on this button?"
+msgstr "Da li želite kliknuti na ovo dugme?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files"
-msgstr "Backup sistemskih datoteka"
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../interactive/stdio.pm_.c:105
#, c-format
-msgid "Sector"
-msgstr "Sektor"
+msgid "Your choice? (default `%s'%s) "
+msgstr "Vaš izbor? (podrazumjevano '%s' %s)"
-#: ../../lang.pm:1
+#: ../../interactive/stdio.pm_.c:123
#, c-format
-msgid "Qatar"
-msgstr "Katar"
+msgid "=> There are many things to choose from (%s).\n"
+msgstr "=> Postoji mnogo stvari od kojih možete izabrati (%s).\n"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Base dn"
-msgstr "LDAP Base dn"
+#: ../../interactive/stdio.pm_.c:126
+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 ""
+"Molimo unesite prvi broj od deset koji želite izmjeniti,\n"
+"ili samo pritisnite Enter za nastavak.\n"
+"Vaš izbor?"
-#: ../../install_steps_gtk.pm:1
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "Ne možete izabrati ovaj paket jer nema dovoljno prostora za njega"
+"=> Notice, a label changed:\n"
+"%s"
+msgstr ""
+"=> Primjetite, label je promjenjena:\n"
+"%s"
-#: ../../help.pm:1
-#, c-format
-msgid "generate auto-install floppy"
-msgstr "napravi auto-instalacijsku disketu"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
+msgstr "Ponovo pošalji"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr "NaÄin biranja broja"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "Češka (QWERTZ)"
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr "Dijeljenje datoteka"
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "NjemaÄka"
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "OÄisti /tmp prilikom svakog boota"
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Dvorak"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malawi"
-msgstr "Malavi"
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "Å panska"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: false"
-msgstr "lokalne datoteke: ne"
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "Finska"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "System settings"
-msgstr "Sistemske postavke"
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "Francuska"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Molim izaberite vrstu vašeg miša."
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "Norveška"
-#: ../../services.pm:1
-#, c-format
-msgid "running"
-msgstr "aktivan"
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "Poljska"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "class of hardware device"
-msgstr "klasa hardverskog uređaja"
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "Ruska"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr "Ovo su raÄunari i mreže Äiji lokalni Å¡tampaÄi trebaju biti dostupni:"
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
+msgstr "Å vedska"
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "Ujedinjeno Kraljevstvo"
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "UK tastatura"
-#: ../../lang.pm:1
-#, c-format
-msgid "Indonesia"
-msgstr "Indonezija"
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "US tastatura"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "uobiÄajeno"
+#: ../../keyboard.pm_.c:167
+msgid "Albanian"
+msgstr "Albanska"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "France [SECAM]"
-msgstr "Francuska [SECAM]"
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
+msgstr "Armenska (stara)"
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "ograniÄi"
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
+msgstr "Armenska (pisaća mašina)"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "must have"
-msgstr "obavezno"
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
+msgstr "Armenska (fonetska)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS ne podržava Å¡tampaÄe na Novell serverima ili Å¡tampaÄekoji Å¡alju podatke "
-"u komandama slobodnog oblika.\n"
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
+msgstr "Azerbejdžanska (latinica)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Senegal"
-msgstr "Senegal"
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "Belgijska"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Command line"
-msgstr "Komandna linija"
+#: ../../keyboard.pm_.c:178
+#, fuzzy
+msgid "Bengali"
+msgstr "ukljuÄi"
-#: ../advertising/08-store.pl:1
-#, 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:"
-msgstr ""
-"Čitav raspon Linux rješenja, kao i posebne ponude za proizvode i "
-"\"potrepštine\", dostupni su u našoj online radnji:"
+#: ../../keyboard.pm_.c:179
+msgid "Bulgarian (phonetic)"
+msgstr "Bugarska (fonetska)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "March"
-msgstr "Mart"
+#: ../../keyboard.pm_.c:180
+msgid "Bulgarian (BDS)"
+msgstr "Bugarska (BDS)"
-#: ../../any.pm:1
-#, c-format
-msgid "access to administrative files"
-msgstr "pristup administrativnim datotekama"
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
+msgstr "Brazilska (ABNT-2)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
-msgstr ""
-"Greška tokom sendmaila.\n"
-" Vaš mail izvještaj nije poslan.\n"
-" Molim podesite sendmail"
+#: ../../keyboard.pm_.c:184
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estonska"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Do not allow set-user-identifier or set-group-identifier\n"
-"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
-"have suidperl(1) installed.)"
-msgstr ""
-"Ne dozvoli bitima set-user-identifier i set-group-identifier\n"
-"da stupe na snagu. (Ovo se Äini kao sigurno, ali je ustvari priliÄno\n"
-"nesigurno ako ste instalirali suidperl(1).)"
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
+msgstr "Bjeloruska"
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
-msgstr "Montserrat"
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "Å vicarska (NjemaÄki izgled)"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Automatske ovisnosti"
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "Å vicarska (Francuski izgled)"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "Swap"
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "Češka (QWERTY)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom settings"
-msgstr "Vlastite postavke"
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr "NjemaÄka (bez mrtvih tipki)"
-#: ../../../move/move.pm:1
-#, 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."
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Other"
-msgstr "Vrati ostalo"
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "Danska"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "TV kartica"
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Dvorak (US)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Å tampaÄ na SMB/Windows 95/98/NT serveru"
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Norveška)"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_Podešavanje CUPSa"
+#: ../../keyboard.pm_.c:196
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (Å vedska)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
-msgstr ", "
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "Estonska"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
-msgstr "Pošalji lspci"
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Gruzijska (\"Ruski\" izgled)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Ukloni izabrani raÄunar/mrežu"
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Gruzijska (\"LatiniÄni\" izgled)"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix je Mail Transport Agent, tj. program koji šalje poštu sa jednog "
-"raÄunara na drugi."
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "GrÄka"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "UzbeÄka (ćirilica)"
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
+msgstr ""
-#: ../../keyboard.pm:1
-#, 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)"
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
msgstr ""
-"Ovdje možete izabrati tipku ili kombinaciju tipki koja će\n"
-"izvršiti prebacivanje između raznih rasporeda tastature\n"
-"(npr: latiniÄni i ne-latiniÄni)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Network Hotplugging"
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "Mađarska"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr "ako je postavljeno na da, prijavljuje rezultate provjere na tty."
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "Hrvatska"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From CD"
-msgstr "Vrati sa CDa"
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
+msgstr "Izraelska"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Sada ćete konfigurisati vaÅ¡ raÄunar za dijeljenje Internet konekcije.\n"
-"Sa ovom opcijom, ostali raÄunari na vaÅ¡oj lokalnoj mreži će moći koristiti "
-"Internet konekciju ovog raÄunara. \n"
-"\n"
-"Prije nego što nastavite, provjerite da li ste podesili vaš mrežni/internet "
-"pristup koristeći drakconnect.\n"
-"\n"
-"Napomena: potreban vam je poseban Mrežni adapter da biste podesili Lokalnu "
-"mrežu (LAN)."
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr "Izraelska (Fonetska)"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr ""
-"Molim izaberite koji mrežni adapter želite koristiti za spajanje na Internet"
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr "Iranska"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-"Pristup foto memorijskoj kartici na vašem HP multifunkcionalnom uređaju"
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr "Islandska"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
-msgstr ""
-"Unaprijedite performanse vaÅ¡eg raÄunara uz pomoć naÅ¡ih odabranih partnera "
-"koji pružaju profesionalna rješenja kompatibilna sa Mandrake Linuxom"
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "Italijanska"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
-msgstr "Autori: "
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Dijeljenje Internet konekcije je sada iskljuÄeno."
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
+msgstr "Japanska 106 tipki"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr "ako je postavljeno na da, provjerava checksum suid/sgid datoteka."
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
+msgstr "Korejanska tastatura"
-#: ../../keyboard.pm:1
-#, c-format
+#: ../../keyboard.pm_.c:218
msgid "Latin American"
msgstr "Latino-AmeriÄka"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Japanski režim štampanja"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Old device file"
-msgstr "Stara datoteka uređaja"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "Info: "
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Dugme '%s': %s"
-
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Molim saÄekajte"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
+#: ../../keyboard.pm_.c:219
+#, fuzzy
+msgid "Laotian"
+msgstr "Latvijska"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "None"
-msgstr "Ništa"
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
+msgstr "Litvanska AZERTY (stara)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Unesena IP adresa nije ispravna.\n"
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
+msgstr "Litvanska AYERTY (nova)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Molim budite sigurni da je cron demon aktiviran u vašim servisima."
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Litvanska \"red brojeva\" QWERTY"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
-msgstr "Ethernet kartica"
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Litvanska \"fonetska\" QWERTY"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete selected printer"
-msgstr "ObriÅ¡i izabrani Å¡tampaÄ"
+#: ../../keyboard.pm_.c:225
+msgid "Latvian"
+msgstr "Latvijska"
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "Info"
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "Instalacija"
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
+msgstr "Makedonska"
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
msgstr ""
-"Kliknite na \"%s\" ako želite obrisati sve podatke i particije koje\n"
-"su prisutne na ovom hard disku. Budite oprezni, jer nakon klikanja na\n"
-"\"%s\" nećete moći vratiti podatke i particije koji se trenutno nalaze\n"
-"na ovom hard disku, ukljuÄujući i sve Windows podatke.\n"
-"\n"
-"Kliknite na \"%s\" da obustavite ovu operaciju bez gubitka\n"
-"podataka i particija na ovom hard disku."
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "Napusti instalaciju"
+#: ../../keyboard.pm_.c:229
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Srpska (ćirilica)"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
msgstr ""
-#: ../../standalone/drakgw:1
-#, 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)."
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
msgstr ""
-"Sve je konfigurisano.\n"
-"Sada možete dijeliti Internet konekciju sa ostalim raÄunarima na vaÅ¡oj "
-"lokalnoj mreži, koristeći automatsku mrežnu konfiguraciju (DHCP)."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Udaljeni CUPS server"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - Mouse"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Trenutno je samo jedan mrežni adapter podešen na vašem sistemu:\n"
-"\n"
-"%s\n"
-"\n"
-"Sada ću podesiti vašu Lokalnu mrežu sa ovim adapterom."
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
+msgstr "Holandska"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
-msgstr "Pošalji cpuinfo"
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
+msgstr "Poljska (qwerty)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Minimal install"
-msgstr "Minimalna instalacija"
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
+msgstr "Poljska (qwertz)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "Etiopija"
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
+msgstr "Portugalska"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
-msgstr "DA"
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr "Kanadska (Kvebek)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
-msgstr "Omogući korisnicima da koriste \"crontab\" i \"at\""
+#: ../../keyboard.pm_.c:239
+msgid "Romanian (qwertz)"
+msgstr "Rumunska (qwertz)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr "Devanagari"
+#: ../../keyboard.pm_.c:240
+msgid "Romanian (qwerty)"
+msgstr "Rumunska (qwerty)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- pci devices: ovo daje PCI slot, uređaj i funkciju ove kartice\n"
-"- eide devices: uređaj može biti master ili slave\n"
-"- scsi devices: SCSI id-ovi za: bus i device"
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "Ruska (Yawerty)"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Ukupna veliÄina: %d / %d MB"
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
+msgstr "SlovenaÄka"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "disabled"
-msgstr "iskljuÄen"
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "SlovaÄka (QWERTZ)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Search for new scanners"
-msgstr "Traženje novih skenera"
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "SlovaÄka (QWERTY)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Disabling servers..."
-msgstr "IskljuÄujem servere..."
+#: ../../keyboard.pm_.c:248
+msgid "Serbian (cyrillic)"
+msgstr "Srpska (ćirilica)"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Instalacija %sa nije uspjela. Javila se sljedeća greška:"
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
+msgstr "Tamilska (Unicode)"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr "Ne mogu izvršiti mkinitrd -f /boot/initrd-%s.img %s."
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
+msgstr "Tamilska (TSCII)"
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"Izabrali ste sljedeći server (servere): %s\n"
-"\n"
-"\n"
-"Ovi serveri su aktivirani automatski. Oni nemaju nikakvih poznatih "
-"sigurnosnih\n"
-"problema, ali možda će biti pronađeni u budućnosti. Ako se to desi, morate "
-"ih\n"
-"upgrade-ovati što prije bude moguće.\n"
-"\n"
-"\n"
-"Da li zaista želite instalirati ove servere?\n"
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr "Tajlandska tastatura"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Mrežni Å¡tampaÄ (TCP/Socket)"
+#: ../../keyboard.pm_.c:254
+msgid "Tajik keyboard"
+msgstr "TadžiÄka tastatura"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup User files..."
-msgstr "Backup-uj korisniÄke datoteke..."
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Turska (tradicionalni \"F\" model)"
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "Instalacija sistema"
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Turska (moderni \"Q\" model)"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Prvi DNS server (opcionalno)"
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr "Ukrajinska"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-"Alternativno, možete nasvesti naziv uređaja / naziv datoteke na ulaznoj "
-"liniji"
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "US tastatura (međunarodna)"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
-"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
-"symlink /etc/security/msec/server to point to\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
-"add a service if it is present in the file during the installation of\n"
-"packages."
-msgstr ""
-"Ako je SERVER_LEVEL (ili, ako ovaj ne postoji, SECURE_LEVEL)\n"
-"veći od 3 u /etc/security/msec/security.conf, pravi simboliÄki link\n"
-"/etc/security/msec/server koji pokazuje na /etc/security/msec/server."
-"<SERVER_LEVEL>.\n"
-"/etc/security/msec/server koristi chkconfig --add da odluÄi da li\n"
-"da doda servis ako je prisutan u datoteci tokom instalacije paketa."
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vjetnamska \"red brojeva\" QWERTY"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "Ruska (fonetska)"
+#: ../../keyboard.pm_.c:263
+msgid "Yugoslavian (latin)"
+msgstr "Jugoslavenska (latiniÄno)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Config..."
-msgstr "dhcpd podešavanje..."
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
+msgstr "Desna Alt tipka"
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "LILO/grub instalacija"
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
+msgstr "Obje Shift tipke istovremeno"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "Izraelska"
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
+msgstr "Control i Shift tipka istovremeno"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Å tampaÄ \"%s\" na serveru \"%s\""
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
+msgstr "CapsLock tipka"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Sada možete izvaditi disketu"
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
+msgstr "Ctrl i Alt tipke istovremeno"
-#: ../../help.pm:1
-#, c-format
-msgid "Truly minimal install"
-msgstr "Stvarno minimalna instalacija"
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
+msgstr "Alt i Shift tipke istovremeno"
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "Danska"
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
+msgstr "\"Meni\" tipka"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "Premještam particiju..."
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr "Lijeva \"Windows\" tipka"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "(This) DHCP Server IP"
-msgstr "IP adresa (ovog) DHCP servera"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
+msgstr "Desna \"Windows\" tipka"
-#: ../../Xconfig/test.pm:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid "Test of the configuration"
-msgstr "Testiranje konfiguracije"
+msgid "Circular mounts %s\n"
+msgstr "Kružno montiranje %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing %s ..."
-msgstr "Instaliram %s..."
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
+msgstr "Najprije ukloni logiÄke volumene\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../modules.pm_.c:290
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 ""
-"Ako ste naveli da želite individualno izabrati pakete, biće vam prikazano\n"
-"stablo koje sadrži sve pakete klasifikovane po grupama i podgrupama.\n"
-"Pregledajući stablo, možete izabrati Äitave grupe, podgrupe ili\n"
-"individualne pakete.\n"
-"\n"
-"Kad god izaberete paket na stablu, desno od njega se pojavljuje opis koji\n"
-"vam objašnjava svrhu paketa.\n"
-"\n"
-"!! Ako izaberete neki serverski paket, zato Å¡to ste specifiÄno izabrali taj\n"
-"paket ili zato što je on dio grupe paketa, bićete zamoljeni da potvrdite da\n"
-"zaista želite da taj server bude instaliran. Mandrake Linux obiÄno\n"
-"automatski pokreće sve instalirane servise prilikom pokretanja sistema.\n"
-"ÄŒak i ako su sigurni i nemaju poznatih problema u trenutku pakovanja\n"
-"distribucije, sasvim je moguće da su neke sigurnosne rupe otkrivene\n"
-"nakon što je dovršena ova verzija Mandrake Linuxa. Ako niste sigurni\n"
-"Äemu taÄno služi taj paket ili zaÅ¡to ga treba instalirati, kliknite na \"%s"
-"\".\n"
-"Klikom na \"%s\" instalirate navedene servise i oni će biti automatski\n"
-"pokrenuti tokom pokretanja sistema. !!\n"
-"\n"
-"Opcija \"%s\" se koristi da bi se iskljuÄio dijalog upozorenja\n"
-"koji se pojavljuje svaki put kada instalacioni program automatski izabere\n"
-"neki paket kako bi razriješio neku zavisnost. Pojedini paketi imaju\n"
-"zavisnost jedan od drugog u smislu da instalacija jednog paketa traži\n"
-"da bude instaliran i drugi. Instalacioni program može odrediti koji paketi\n"
-"su potrebni da bi se zadovoljila zavisnost i uspješno završila instalacija.\n"
-"\n"
-"Mala ikona sa disketom na dnu liste vam omogućuje da uÄitate listu paketa\n"
-"koja je napravljena tokom neke ranije instalacije. Ovo je korisno ako "
-"želite\n"
-"da imate nekoliko raÄunara koji su identiÄno podeÅ¡eni. Nakon klika na ovu\n"
-"ikonu bićete zamoljeni da u disketnu jedinicu stavite disketu napravljenu\n"
-"tokom ranije instalacije. Pogledajte drugi savjet na zadnjem koraku da "
-"biste\n"
-"saznali kako se pravi ova disketa."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr "Izaberite vaÅ¡ kljuÄ za kodiranje datoteÄnog sistema"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+msgstr ""
+"PCMCIA podrška za 2.2 kernele više ne postoji. Molim koristite 2.4 kernel."
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
-msgstr "Bocvana"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Andorra"
-msgstr "Andora"
+#: ../../modules/parameters.pm_.c:18
+#, fuzzy
+msgid "modinfo is not available"
+msgstr "Nema pogodne disketne jedinice"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "(default value: %s)"
-msgstr " (default vrijednost: %s)"
+#: ../../modules/parameters.pm_.c:50
+#, fuzzy
+msgid "a number"
+msgstr "Broj telefona"
-#: ../../security/help.pm:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
+msgid "%d comma separated numbers"
msgstr ""
-"Podesi starenje šifre na \"max\" dana, a pauzu izmjene na \"inactive\"."
-#: ../../printer/printerdrake.pm:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Alternativna testna strana (Letter)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-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"
+msgid "%d comma separated strings"
msgstr ""
-"Podešavanje DHCP servera.\n"
-"\n"
-"Ovdje možete izabrati razliÄite opcije za podeÅ¡avanje DHCP servera.\n"
-"Ako ne znate znaÄenje neke opcije, jednostavno je ostavite kako jeste.\n"
-"\n"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Choose an X server"
-msgstr "Izaberite X server"
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "VeliÄina swap particije u MB:"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No changes to backup!"
-msgstr "Nema izmjena na backupu!"
+#: ../../modules/parameters.pm_.c:54
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formatiranje particija"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "Formatirana\n"
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - Mouse"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Type of install"
-msgstr "Vrsta instalacije"
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Å tampaÄ \"%s\" na SMB/Windows serveru \"%s\""
+#: ../../mouse.pm_.c:33
+msgid "Generic PS2 Wheel Mouse"
+msgstr "OpÅ¡ti PS2 MiÅ¡ sa kotaÄem"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d brojeva razdvojenih zarezom"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Rusers protokol omogućava korisnicima na mreži da identificiraju\n"
-"ko je prijavljen na ostalim raÄunarima."
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Automatska konfiguracija koraka"
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "Barbados"
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
-msgstr ""
-"Želite li saznati viÅ¡e i doprinijeti Open Source zajednici? UkljuÄite se u "
-"svijet Slobodnog softvera!"
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Molim izaberite podatke za backup..."
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
+msgstr "1 dugme"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
-msgstr ""
-"Konekcija nije uspjela.\n"
-"Provjerite konfiguraciju u Mandrake Kontrolnom centru."
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "Opšti miš sa 2 dugmeta"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
-msgstr "primljeno"
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "KotaÄ"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr "Omogući su samo za Älanove wheel grupe ili za bilo kojeg korisnika"
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "serijski"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
-msgstr "/Datoteka/_Nova"
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "Opšti miš sa 3 dugmeta"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DNS Server IP"
-msgstr "IP adresa DNS servera"
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range End:"
-msgstr "Kraj IP raspona:"
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
-msgstr "Visok"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Dodaj Å¡tampaÄ na sistem"
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr "NoVideo"
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
-msgstr "ovo polje opisuje uređaj"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "MM Series"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Dodajem Å¡tampaÄ u Star Office/OpenOffice.org/GIMP"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printers"
-msgstr "Lokalni Å¡tampaÄi"
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (serijski, stari C7 tip)"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation image directory"
-msgstr "Direktorij instalacionog image-a"
+#: ../../mouse.pm_.c:68
+msgid "busmouse"
+msgstr "busmouse"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "NIS server"
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "2 dugmeta"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Port: %s"
-msgstr "Port: %s"
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "3 dugmeta"
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "Å panija"
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "nijedan"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
-msgstr "lokalni konfig: %s"
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "Bez miša"
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "Ovo korisniÄko ime je već dodano"
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
+msgstr "Molimo testirajte miš"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
-msgstr "Izaberi datoteku"
+#: ../../mouse.pm_.c:491
+msgid "To activate the mouse,"
+msgstr "Da biste aktivirali miša,"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr "Primjeni"
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr "POMJERITE VAŠ KOTAČ!"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Auto prepoznavaj dostupne portove"
+#: ../../my_gtk.pm_.c:65
+#, fuzzy
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr "San Marino"
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
+msgstr "Kraj"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Dijeljenje Internet konekcije je trenutno neaktivno"
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
+msgstr "Sljedeći ->"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Belgium"
-msgstr "Belgija"
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "Da li je ovo ispravno?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
-msgstr "Kuvajt"
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "Info"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "Izaberite window manager koji će se pokretati:"
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
+msgstr "Proširi stablo"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
-msgstr "Decembar"
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
+msgstr "Smanji stablo"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "podgeneracija procesora"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr "PrekidaÄ izmeÄ‘u ravnog i grupnog sortiranja"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
-msgstr "ÄŒarobnjak za prvo pokretanje"
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "koristi pppoe"
-#: ../../lang.pm:1
-#, c-format
-msgid "Taiwan"
-msgstr "Tajvan"
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
+msgstr "koristi pptp"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "Pakistan"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
+msgstr "koristi dhcp"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "molim saÄekajte, parsiram datoteku: %s"
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
+msgstr "Alcatel speedtouch usb"
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
msgstr ""
-"Došlo je do greške, ali ne znam kako da je riješim fino.\n"
-"Nastavite na vlastiti rizik."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Importance: "
-msgstr "ZnaÄaj: "
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
+msgstr "Spoji se na Internet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:30
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."
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-"Da biste mogli štampati sa vašim Lexmark inkjetom na ovoj konfiguraciji, "
-"potrebni su vam inkjet drajveri za štampu koje obezbjeđuje Lexmark (http://"
-"www.lexmark.com/). Kliknite na link \"Drivers\". Zatim izaberite vaš model a "
-"zatim \"Linux\" kao operativni sistem. Drajveri dolaze u vidu RPM paketa ili "
-"shell skripte sa interaktivnom grafiÄkom instalacijom. Ne morate obaviti ovu "
-"konfiguraciju na grafiÄkom interfejsu. Odustanite odmah nakon licencnog "
-"ugovora. Zatim odštampajte stranice za poravnavanje glava sa "
-"\"lexmarkmaintain\" i podesite opcije poravnanja glave pomoću ovog programa."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Permissions"
-msgstr "Privilegije"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Naziv provajdera (npr. provajder.net)"
+"NajÄešći naÄin za konekciju sa adsl-om je pppoe.\n"
+"Neke konekcije koriste pptp, a vrlo rijetke koriste dhcp.\n"
+"Ako ne znate, izaberite 'koristi pppoe'"
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:166
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'."
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-"Vašem sistemu ponestaje resursa. Možda imate neki problem sa instalacijom\n"
-"Mandrake Linuxa. Ako se ovo desi, možete pokušati tekstualnu instalaciju. Za "
-"ovo,\n"
-"pritisnite `F1' prilikom bootanja CDROMa, zatim unesite `text'."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "Koristi Windows particiju za loopback"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
-msgstr "Armenska (pisaća mašina)"
-
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection type: "
-msgstr "Tip konekcije: "
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Graphical interface"
-msgstr "GrafiÄki interfejs"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "ÄŒad"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "Indija"
-
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s sa 3D hardverskim ubrzanjem"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr "SlovaÄka"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "Singapur"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "Kambođa"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Server"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Monitor HorizSync: %s\n"
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Ime domena"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr "Staza"
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Server baze podataka"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
-msgstr "NIJE PRONAÄEN"
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "LDAP Server"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-"Ovdje možete navesti bilo koju komandnu liniju kojoj će biti prosljeđen "
-"zadatak umjesto direktnog slanja na Å¡tampaÄ."
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "nije pronađena mrežna kartica"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
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"
+"drakfirewall configurator\n"
"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"Sistem za Å¡tampu (%s) se neće pokrenuti automatski prilikom boota raÄunara.\n"
-"\n"
-"Moguće je da je automatsko pokretanje iskljuÄeno prilikom promjene na viÅ¡i "
-"nivo sigurnosni, poÅ¡to je sistem za Å¡tampu moguća taÄka napada.\n"
+"tinyfirewall podeÅ¡avaÄ\n"
"\n"
-"Da li želite da ponovo ukljuÄite automatsko pokretanje sistema za Å¡tampu?"
+"On podeÅ¡ava liÄni firewall za ovaj Mandrake Linux raÄunar.\n"
+"Za moćnu soluciju posebnog firewalla, molimo pogledajte\n"
+"specijaliziranu MandrakeSecurity Firewall distribuciju."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:135
msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
+"drakfirewall configurator\n"
+"\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-"Å tampaÄ %s\n"
-"Å ta želite da izmjenite na ovom Å¡tampaÄu?"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add host"
-msgstr "Dodaj raÄunar"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"If you really think that you know which driver is the right one for your "
-"card\n"
-"you can pick one in the above list.\n"
-"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
msgstr ""
-"Ako stvarno mislite da znate koji drajver je odgovarajući za vašu karticu\n"
-"možete odabrati jedan sa gornje liste.\n"
-"\n"
-"Trenutni drajver za vaÅ¡u \"%s\" zvuÄnu karticu je \"%s\""
-#: ../../any.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:153
msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-"Želite li dozvoliti korisnicima da dijele (share) neke od njihovih "
-"direktorija?\n"
-"Ako ukljuÄite ovu opciju, korisnici će moći jednostavno kliknuti na opciju "
-"\"Share\" u\n"
-"Konqueroru ili Nautilusu.\n"
-"\n"
-"\"Izaberi korisnike\" vam omogućuje da podesite ovu opciju zasebno za svakog "
-"korisnika.\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-"Molim izaberite uÄitaj ili spasi izbor paketa na disketu.\n"
-"Format je isti kao i diskete koje generiše auto_install."
-
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "No CDROM support"
-msgstr "Podrška za radio:"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "China (broadcast)"
-msgstr "Kina (broadcast)"
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use quota for backup files."
-msgstr "Koristi quotu za backup datoteke."
+#: ../../network/drakfirewall.pm_.c:169
+#, fuzzy
+msgid "Other ports"
+msgstr "Testiraj portove"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "PodeÅ¡avam Å¡tampaÄ \"%s\"..."
+#: ../../network/ethernet.pm_.c:37
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
+msgstr ""
+"Koji dhcp klijent želite koristiti?\n"
+"Podrazumjevani je dhcp-client"
-#: ../../fs.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:88
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."
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-"Ne dozvoli izvršenje binarnih datoteka na montiranom\n"
-"datoteÄnom sistemu. Ova opcija bi mogla biti korisna za server\n"
-"koji ima datoteÄne sisteme koji sadrže programe za druge arhitekture."
+"Nije pronađen ethernet mrežni adapter na vašem sistemu.\n"
+"Ne mogu podesiti ovu vrstu konekcije."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection"
-msgstr "Internet konekcija"
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
+msgstr "Izaberite mrežni interface"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:93
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
+"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
-"UÄitavanje modula %s nije uspjelo.\n"
-"Želite li probati opet sa drugim parametrima?"
+"Molimo izaberite koji mrežni adapter želite koristiti za spajanje na Internet"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr "Dobro došli u svijet otvorenog izvornog koda."
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "nije pronađena mrežna kartica"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr "Bosna i Hercegovina"
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "Podešavam mrežu"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:201
msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
-"Potreban vam je pravi file sistem (ext2/ext3, reiserfs, xfs ili jfs) za ovu "
-"taÄku montiranja\n"
+"Molimo unesite naziv vaÅ¡eg raÄunara ako ga znate.\n"
+"Neki DHCP serveri traže hostname kako bi radili.\n"
+"Naziv vaÅ¡eg raÄunara bi trebao biti puno-kvalifikovani naziv,\n"
+"kao što je ``mojcomp.mojlab.mojafirma.com''."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Morate unijeti ime raÄunara ili IP.\n"
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "Host name"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "Nizozemska"
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+msgid "Network Configuration Wizard"
+msgstr "Čarobnjak za podešavanje mreže"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Å aljem datoteke putem FTPa"
+#: ../../network/isdn.pm_.c:22
+msgid "External ISDN modem"
+msgstr "Vanjski ISDN modem"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
msgstr "Interna ISDN kartica"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
+msgstr "Koje je vrste vaša ISDN konekcija?"
+
+#: ../../network/isdn.pm_.c:45
msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
msgstr ""
-"Nema nijedan poznat OSS/ALSA alternativni drajver za vaÅ¡u zvuÄnu karticu (%"
-"s) koja trenutno koristi \"%s\""
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Title"
-msgstr "Naslov"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Instaliraj i konvertuj fontove"
+"Koju ISDN konfiguraciju želite?\n"
+"\n"
+"* Stara konfiguracija koristi isdn4net. On sadrži moćne alate,\n"
+" ali ga je teško podesiti i nije standardiziran.\n"
+"\n"
+"* Novu konfiguraciju je lakše razumjeti, standardnija je,\n"
+" ali ima manje alata.\n"
+"\n"
+"PreporuÄujemo light konfiguraciju.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
-msgstr "UPOZORENJE"
+#: ../../network/isdn.pm_.c:54
+msgid "New configuration (isdn-light)"
+msgstr "Nova konfiguracija (isdn-light)"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
-msgstr "Instaliram bootloader"
+#: ../../network/isdn.pm_.c:54
+msgid "Old configuration (isdn4net)"
+msgstr "Stara konfiguracija (isdn4net)"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "replay"
-msgstr "ponovi"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
-msgstr "detektovan %s"
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "Podešavanje ISDNa"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/isdn.pm_.c:166
msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
-"Expect je proširenje Tcl skripting jezika koje omogućuje interaktivne sesije "
-"bez intervencije korisnika."
+"Izaberite vašeg providera.\n"
+" Ako nije na listi, izaberite Nije na listi"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr "DjeviÄanska ostrva (SAD)"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol"
+msgstr "Evropski protokol"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "Loša backup datoteka"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol (EDSS1)"
+msgstr "Evropski protokol (EDSS1)"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/isdn.pm_.c:181
+msgid "Protocol for the rest of the world"
+msgstr "Protokol za ostatak svijeta"
+
+#: ../../network/isdn.pm_.c:181
msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
-"Dijeljenje Internet konekcije je već podešeno. Trenutno je\n"
-"neaktivno (iskljuÄeno).\n"
-"\n"
-"Šta želite uraditi?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr "Unesite IP adresu i port raÄunara Äije Å¡tampaÄe želite koristiti."
+"Protokol za ostatak svijeta \n"
+" bez D-kanala (iznajmljene linije)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Pipe into command"
-msgstr "Spoji (pipe) na komandu"
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
+msgstr "Koji protokol želite koristiti?"
-#: ../../install_interactive.pm:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
+msgid "Found \"%s\" interface do you want to use it ?"
msgstr ""
-"Neki dio hardware-a na vaÅ¡em raÄunaru zahtjeva ``vlasniÄke'' drajvere za "
-"rad.\n"
-"Možete naći više podataka o njima na: %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "Haiti"
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
+msgstr "Koju vrstu kartice imate?"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "Prepoznajem uređaje..."
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
+msgstr "Ne znam"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"Vlastito vam omogućuje da navedete vaš vlastiti datum i vrijeme. Ostale "
-"opcije koriste run-parts u /etc/crontab."
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../network/isdn.pm_.c:210
msgid ""
-"Description of the fields:\n"
"\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
-"Opis polja:\n"
"\n"
+"Ako imate ISA karticu, vrijednosti na idućem ekranu bi trebale biti "
+"ispravne.\n"
+"\n"
+"Ako imate PCMCIA karticu, moraćete znati IRQ i IO vaše kartice.\n"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Basic options"
-msgstr "Osnovne opcije"
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "Prekid"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
-msgstr "naziv procesora"
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
+msgstr "Nastavak"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr "Prihvati neispravne IPv4 poruke o grešci"
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
+msgstr "Koja je vaša ISDN kartica ?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Osvježavam podatke o Å¡tampaÄu..."
+#: ../../network/isdn.pm_.c:239
+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 ""
+"Otkrio sam neku ISDN PCI karticu, ali ne znam tip. Molimo izaberite neku PCI "
+"karticu na idućem ekranu."
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr "Morate takođe formatirati i %s"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+"Nije pronađena nijedna ISDN PCI kartica. Molimo izaberite jednu na idućem "
+"ekranu."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "Budite oprezni: ova operacija je opasna."
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Molimo izaberite na koji serijski port je nakaÄen vaÅ¡ modem."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "Ubacite disketu koja sadrži izbor paketa"
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "Opcije dialupa"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server: "
-msgstr "Server:"
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr "Naziv konekcije"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Alerts:"
-msgstr "Sigurnosna upozorenja:"
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
+msgstr "Broj telefona"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
-msgstr "Å vedska"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "Login ID"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Koristi Expect za SSH"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr "CHAP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "Poljska"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Other ports"
-msgstr "Ostali portovi"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "Skripta"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "broj capture buffera za mmap-ovani capture"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "Terminal"
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid " - detected"
-msgstr "detektovan"
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "Ime domena"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr "SMBus kontroleri"
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+msgid "First DNS Server (optional)"
+msgstr "Prvi DNS server (opcionalno)"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Timeout konekcije (u sek.)"
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+msgid "Second DNS Server (optional)"
+msgstr "Drugi DNS server (opcionalno)"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/modem.pm_.c:95
msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-"Neki rani i486DX-100 chipovi se ne mogu pouzdano vratiti u radni naÄin nakon "
-"korištenja instrukcije \"halt\""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Croatian"
-msgstr "Hrvatska"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Use existing partition"
-msgstr "Koristi postojeću particiju"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Ne mogu pristupiti mirroru %s"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Pomoć/_O programu..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "PobriÅ¡i korisniÄke direktorije prije vraćanja."
-#: ../../printer/printerdrake.pm:1
+#: ../../network/modem.pm_.c:97
#, 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?"
+"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
-"Sada ćete podesiti udaljeni Å¡tampaÄ. Ovo zahtjeva aktivan pristup mreži, ali "
-"vaša mreža još uvijek nije podešena. Ako želite nastaviti bez podešavanja "
-"mreže, nećete moći koristiti Å¡tampaÄ koji sada podeÅ¡avate. Kako želite da "
-"nastavimo?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "PodeÅ¡avanje CUPS Å¡tampaÄa"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr "ne mogu naći nijedan font na montiranim particijama"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
-msgstr "F00F bug"
-
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Domain Name:"
-msgstr "Ime domena:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Root umask"
-msgstr "Root umask"
-
-#: ../../any.pm:1
-#, c-format
-msgid "On Floppy"
-msgstr "Na disketi"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reboot by the console user"
-msgstr "Restartovanje za korisnika na konzoli"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Do nothing"
+msgstr "but not matching"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore"
-msgstr "Vrati"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Install rpm"
+msgstr "Instalacija"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Server:"
-msgstr "Server:"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Title"
+msgstr "Tabela"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
+#: ../../network/netconnect.pm_.c:29
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-"ako je postavljeno na da, provjerava da li su mrežni uređaji u "
-"promiskuitetnom modu."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Tražim dostupne pakete..."
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Molim saÄekajre, podeÅ¡avam nivo sigurnosti..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
-msgstr "Init poruka"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "Spasi tabelu particija"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "Kipar"
+"\n"
+"Možete se diskonektovati ili prekonfigurisati vašu konekciju."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection complete."
-msgstr "Konekcija završena."
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr ""
+"\n"
+"Možete prekonfigurisati vašu konekciju."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "Ukloni sa RAIDa"
+#: ../../network/netconnect.pm_.c:29
+msgid "You are currently connected to internet."
+msgstr "Trenutno ste spojeni na Internet."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
+#: ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
msgstr ""
-"Ovaj kljuÄ enkripcije je previÅ¡e jednostavan (mora imati najmanje %d "
-"karaktera)"
+"\n"
+"Možete se spojiti na Internet ili prekonfigurisati vašu konekciju."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Čarobnjaci za podešavanje"
+#: ../../network/netconnect.pm_.c:32
+msgid "You are not currently connected to Internet."
+msgstr "Trenutno niste konektovani na Internet."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN konekcija"
+#: ../../network/netconnect.pm_.c:36
+msgid "Connect"
+msgstr "Konektuj me"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CDROM / DVDROM"
+#: ../../network/netconnect.pm_.c:37
+msgid "Disconnect"
+msgstr "Prekini konekciju"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
-msgstr "primarni"
+#: ../../network/netconnect.pm_.c:38
+msgid "Configure the connection"
+msgstr "Podesi konekciju"
-#: ../../printer/main.pm:1
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
+msgstr "Internet konekcija & podešavanje"
+
+#: ../../network/netconnect.pm_.c:94
#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr "na SMB/Windows serveru \"%s\", share \"%s\""
+msgid "We are now going to configure the %s connection."
+msgstr "Sada ćemo podesiti konekciju %s."
-#: ../../help.pm:1
+#: ../../network/netconnect.pm_.c:103
#, 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"
-"!!"
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press OK to continue."
msgstr ""
-"Ovim dijalogom možete izabrati koje servise želite pokretati prilikom "
-"boota.\n"
"\n"
-"Ovdje su predstavljeni svi servisi koji su dostupni u trenutnoj\n"
-"instalaciji. Pregledajte ih pažljivo i iskljuÄite sve one koji nisu\n"
-"potrebni prilikom boota.\n"
"\n"
-"Kada izaberete servis dobićete kratki tekst koji objašnjava taj servis.\n"
-"Ipak, ako niste sigurni da li je servis koristan ili ne, sigurnije je da ne\n"
-"mijenjate predloženi izbor.\n"
"\n"
-"!! Budite vrlo pažljivi sa ovim korakom ako namjeravate koristiti vaš\n"
-"raÄunar kao server: vjerovatno ne želite da pokrenete neke servise koji\n"
-"vam ne trebaju. Molim vas da zapamtite da pojedini servisi mogu biti\n"
-"opasni ako su aktivni na serveru. Općenito, izaberite samo one servise\n"
-"koji vam stvarno trebaju.\n"
-"!!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niue"
-msgstr "Niue"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "PreskoÄi"
+"Sada ćemo podesiti konekciju %s.\n"
+"\n"
+"\n"
+"Pritisnite OK za nastavak."
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Aktivira/deaktivira sve mrežne interfejse koji su konfigurisani\n"
-"za pokretanje tokom boota."
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr "Podešavanje mreže"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/netconnect.pm_.c:133
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)"
+"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 ""
-"frekvencija CPUa u MHz (Megaherc je jedinica koja se može približno "
-"usporediti sa brojem instrukcija koje CPU izvršava u sekundi)"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "important"
-msgstr "važno"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "Alat za menadžement Å¡tampaÄa za Mandrake Linux"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
-msgstr "Ukupan napredak"
+"Pošto radite mrežnu instalaciju, vaša mreža je već podešena.\n"
+"Kliknite na Ok da zadržite tu konfiguraciju ili Odustani za podešavanje vaše "
+"Internet & Mrežne konekcije.\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:157
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"
+"Welcome to The Network Configuration Wizard.\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."
+"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 ""
-"DrakX će najprije potražiti sve IDE ureÄ‘aje prisutne na vaÅ¡em raÄunaru.\n"
-"Također će pretražiti sistem za jednu ili više PCI SCSI kartica. Ako\n"
-"SCSI kartica bude pronađena, DrakX će automatski instalirati odgovarajući\n"
-"drajver.\n"
-"\n"
-"Budući da pronalaženje hardware-a nikad nije savršeno, DrakX možda neće\n"
-"pronaći vaÅ¡e hard diskove. Ako se to desi, moraćete ih navesti ruÄno.\n"
-"\n"
-"Ako je potrebno da ruÄno odaberete PCI SCSI adapter, DrakX će vas pitati\n"
-"da li želite navesti neke opcije za njega. Trebate dopustiti DrakXu da\n"
-"ispita hardware za neke opcije specifiÄne za tu karticu. ObiÄno DrakX "
-"prolazi\n"
-"kroz ovaj korak bez problema.\n"
+"Dobro došli u Čarobnjak za podešavanje mreže\n"
"\n"
-"Ako DrakX ne može ispitati opcije koje trebaju biti proslijeđene, moraćete\n"
-"ruÄno navesti opcije za drajver."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr "Aruba"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "Korisnici"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Pripremam bootloader..."
+"Sada ćemo podesiti vašu internet/mrežnu konekciju.\n"
+"Ako ne želite da koristite automatsko prepoznavanje, iskljuÄite opciju.\n"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
+#: ../../network/netconnect.pm_.c:163
+msgid "Choose the profile to configure"
+msgstr "Izaberite profil za podešavanje"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Gateway (tj. %s)"
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
+msgstr "Koristi auto prepoznavanje"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
-msgstr "Å ifre se ne poklapaju"
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
+msgstr "Ekspertni mod"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Primjeri ispravnih IPa:\n"
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
+msgstr "Prepoznajem uređaje..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "Molim izaberite medij za backup."
+#: ../../network/netconnect.pm_.c:214
+msgid "Normal modem connection"
+msgstr "Normalna modemska konekcija"
-#: ../../standalone/harddrake2:1
+#: ../../network/netconnect.pm_.c:214
#, c-format
-msgid "Frequency (MHz)"
-msgstr "Frekvencija (MHz)"
+msgid "detected on port %s"
+msgstr "detektovan na portu %s"
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Da koristite ovaj izbor spašenih paketa, bootajte instalaciju sa ``linux "
-"defcfg=floppy''"
+#: ../../network/netconnect.pm_.c:215
+#, fuzzy
+msgid "Winmodem connection"
+msgstr "Normalna modemska konekcija"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of the processor"
-msgstr "broj procesora"
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "detected"
+msgstr "detektovan %s"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Hardverski sat podešen na GMT"
+#: ../../network/netconnect.pm_.c:216
+msgid "ISDN connection"
+msgstr "ISDN konekcija"
-#: ../../network/isdn.pm:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "Želite li pokrenuti novu konfiguraciju ?"
+msgid "detected %s"
+msgstr "detektovan %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Give a file name"
-msgstr "Dajte naziv datoteke"
+#: ../../network/netconnect.pm_.c:217
+msgid "ADSL connection"
+msgstr "ADSL konekcija"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Molim izaberite na koji port je prikljuÄen vaÅ¡ Å¡tampaÄ."
+#: ../../network/netconnect.pm_.c:218
+msgid "Cable connection"
+msgstr "Kablovska konekcija"
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "Promijenite CD-ROM"
+#: ../../network/netconnect.pm_.c:218
+msgid "cable connection detected"
+msgstr "otkrivena kablovska konekcija"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "Paragvaj"
+#: ../../network/netconnect.pm_.c:219
+msgid "LAN connection"
+msgstr "LAN konekcija"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "Podešavanje je završeno, želite li primijeniti postavke?"
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
+msgstr "prepoznata ethernet kartica(e)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr ""
-"Koristi inkrementalni/diferencijalni backup (nemoj prebrisati stare backupe)"
+#: ../../network/netconnect.pm_.c:222
+msgid "Choose the connection you want to configure"
+msgstr "Izaberite konekciju koju želite podesiti"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../network/netconnect.pm_.c:246
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:"
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. drakTermServ helps "
-"create/remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
+"Podesili ste nekoliko naÄina za konekciju na Internet.\n"
+"Izaberite jedan od njih koji ćete koristiti.\n"
+"\n"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr "Nema poznatih drajvera za vaÅ¡u zvuÄnu karticu (%s)"
+#: ../../network/netconnect.pm_.c:247
+msgid "Internet connection"
+msgstr "Internet konekcija"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "force"
-msgstr "prisili"
+#: ../../network/netconnect.pm_.c:253
+msgid "Do you want to start the connection at boot?"
+msgstr "Da li želite pokrenuti konekciju prilikom boota?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Exit"
-msgstr "Izlaz"
+#: ../../network/netconnect.pm_.c:267
+msgid "Network configuration"
+msgstr "Podešavanje mreže"
+
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
+msgstr "Potrebno je restartovati mrežu"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/netconnect.pm_.c:272
#, c-format
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
msgstr ""
-"NAPOMENA: Ovisno o modelu Å¡tampaÄa i sistemu Å¡tampe, biće instalirano do %d "
-"MB dodatnog softvera."
+"Došlo je do problema prilikom restartovanja mreže:\n"
+"\n"
+"%s"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../network/netconnect.pm_.c:282
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
-"Nemate nijedan podešen interfejs.\n"
-"Podesite ih prvo klikajući na 'Podesi'"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "Estonska"
+"Čestitamo, podešavanje mreže i interneta je završeno.\n"
+"\n"
+"Sada će ova konfiguracija biti primjenjena na vaš sistem.\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:286
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
-"Apache je World Wide Web server. Koristi se za posluživanje HTML\n"
-"datoteka i CGI skripti."
+"Nakon Å¡to je to gotovo, preporuÄujemo da restartujete vaÅ¡ X\n"
+"okoliÅ¡ kako bi se izbjegao problem sa promjenom naziva raÄunara."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/netconnect.pm_.c:287
msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
+"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 ""
-"Unesite naziv uređaja vašeg CD Writera\n"
-" npr: 0,1,0"
+"Došlo je do problema prilikom podešavanja.\n"
+"Provjerite vašu konekciju pomoću net_monitor ili mcc. Ako vaša konekcija ne "
+"radi, možete ponovo pokrenuti podešavanje"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ALL"
-msgstr "SVE"
+#: ../../network/network.pm_.c:278
+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 ""
+"UPOZORENJE: Ovaj uređaj je prethodno podešen za konekciju na Internet.\n"
+"Samo prihvatite kako bi ovaj uređaj ostao podešen.\n"
+"Izmjena polja ispod će prepisati ovu konfiguraciju."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Dodaj/obriši klijente"
+#: ../../network/network.pm_.c:283
+msgid ""
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
+msgstr ""
+"Molimo unesite IP konfiguraciju za ovaj raÄunar.\n"
+"Svaka stavka bi trebala biti unesena kao IP adresa u decimalnoj notaciji\n"
+"razdvojenoj taÄkama (npr. 1.2.3.4)."
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "Choose the network interface"
-msgstr "Izaberite mrežni interface"
+msgid "Configuring network device %s"
+msgstr "Podešavam mrežni uređaj %s"
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../network/network.pm_.c:294
#, c-format
-msgid "Unknown Model"
-msgstr "Nepoznat model"
+msgid " (driver %s)"
+msgstr " (drajver %s)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
-msgstr "CD/DVD pržilica"
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "IP adresa"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Particija koja se boota po defaultu\n"
-" (za MS-DOS boot, ne za lilo)\n"
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr "Netmask"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Omogući \"%s\" da Äita datoteku"
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image"
-msgstr "izaberite image"
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "Automatska IP"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Otkrivena konfiguracija firewalla!"
+#: ../../network/network.pm_.c:299
+#, fuzzy
+msgid "Start at boot"
+msgstr "Pokrenut na bootu"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "Naziv konekcije"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP adresa treba biti u formatu 1.2.3.4"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../network/network.pm_.c:326
msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-"x koordinata tekst polja\n"
-"u broju znakova"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/network.pm_.c:330
msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
msgstr ""
-"Možda nećete biti u mogućnosti instalirati lilo (pošto lilo ne može rukovati "
-"LVom ili sa više PVa)"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Updating package selection"
-msgstr "Osvježavam izbor paketa"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "Gdje želite montirati loopback datoteku %s?"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../network/network.pm_.c:350
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"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 ""
-"Disketa je uspješno napravljena.\n"
-"Sada možete ponoviti vašu instalaciju."
+"Molimo unesite naziv vaÅ¡eg raÄunara ako ga znate.\n"
+"Naziv vaÅ¡eg raÄunara bi trebao biti puno-kvalifikovani naziv,\n"
+"kao što je ``mojcomp.mojlab.mojafirma.com''.\n"
+"Možete također unijeti IP adresu gateway-a ako ga imate"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Koristi CD/DVDROM za backup"
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "DNS server"
-#: ../../standalone/harddrake2:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "broj dugmadi koje ima miš"
+msgid "Gateway (e.g. %s)"
+msgstr "Gateway (tj. %s)"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
-msgstr "Ponovi"
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "Gateway uređaj"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup other files"
-msgstr "Backup ostalih datoteka"
+#: ../../network/network.pm_.c:363
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP adresa treba biti u formatu 1.2.3.4"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "Nema pogodne disketne jedinice"
+#: ../../network/network.pm_.c:367
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP adresa treba biti u formatu 1.2.3.4"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Backup datoteke su oštećene"
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
+msgstr "Konfiguracija proxija"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
-msgstr "TV standard :"
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr "Cpuid familija"
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "FTP proxy"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
+msgstr "Otkrij id mrežne karte (korisno za laptope)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: thin"
-msgstr "tip: tanki"
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
+msgstr "Proxy treba biti http://..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "Litvanska AZERTY (nova)"
+#: ../../network/network.pm_.c:388
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Url treba poÄinjati sa 'http:'"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr "da znaÄi da aritmetiÄki koprocesor ima prikljuÄen exception vector"
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
+msgstr "Otkrivena konfiguracija firewalla!"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/shorewall.pm_.c:27
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"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
-"Izabrali ste softversku RAID particiju kao root (/).\n"
-"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
-"Molim kasnije dodajte /boot particiju"
+"Upozorenje! Pronađena je postojeća konfiguracija firewalla. Možda će biti "
+"potrebno neko ruÄno podeÅ¡avanje nakon instalacije."
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "Ostali OSi (MacOS...)"
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
+msgstr "Internet konfiguracija"
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Da aktivirate miša,"
+#: ../../network/tools.pm_.c:58
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Da li se želite pokušati spojiti na Internet sada?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "Pokrećem mrežu"
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+msgid "Testing your connection..."
+msgstr "Probavam vašu konekciju..."
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Snimanje ekrana će biti dostupno nakon što instalirate u %s"
+#: ../../network/tools.pm_.c:70
+msgid "The system is now connected to Internet."
+msgstr "Sistem je sada spojen na Internet."
-#: ../../help.pm:1
-#, c-format
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
+msgstr "Iz sigurnosnih razloga, sada će biti odspojen."
+
+#: ../../network/tools.pm_.c:72
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:\")."
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-"Na vašem hard disku ustanovljeno je više od jedne Microsoft particije.\n"
-"Molim izaberite onu koju želite smanjiti kako biste instalirali vaš\n"
-"Mandrake Linux operativni sistem.\n"
-"\n"
-"Svaka particija je navedena ovako: \"Linux ime\", \"Windows ime\",\n"
-"\"Kapacitet\".\n"
-"\n"
-"\"Linux ime\" se sastoji od: \"vrste hard diska\", \"broja hard diska\",\n"
-"\"broja particije\" (na primjer, \"hda1\").\n"
-"\n"
-"\"Vrsta hard diska\" je \"hd\" ako je vaš hard disk IDE, a \"sd\" ako je\n"
-"u pitanju SCSI hard disk.\n"
-"\n"
-"\"Broj hard diska\" je uvijek slovo nakon \"hd\" ili \"sd\". Kod IDE hard\n"
-"diskova:\n"
-"\n"
-" * \"a\" znaÄi \"master hard disk na primarnom IDE kontroleru\";\n"
-"\n"
-" * \"b\" znaÄi \"slave hard disk na primarnom IDE kontroleru\";\n"
-"\n"
-" * \"c\" znaÄi \"master hard disk na sekundarnom IDE kontroleru\";\n"
-"\n"
-" * \"d\" znaÄi \"slave hard disk na sekundarnom IDE kontroleru\";\n"
-"\n"
-"Kod SCSI hard diskova, \"a\" je \"disk sa najnižim SCSI IDom\", \"b\"\n"
-"je \"drugi najniži SCSI ID\", itd.\n"
-"\n"
-"\"Windows ime\" je slovo kojim je vaÅ¡ hard disk oznaÄen pod Windowsom\n"
-"(prva particija prvog diska se zove \"C:\")."
+"Izgleda da sistem nije spojen na Internet.\n"
+"Probajte promjeniti postavke vaše konekcije."
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
-msgstr "Tanzanija"
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
+msgstr "Podešavanje konekcije"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "IzraÄunavam granice FAT filesistema"
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
+msgstr "Molimo ispunite ili provjerite polje ispod"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Izvori backup-a: \n"
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr "IRQ kartice"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "custom"
-msgstr "ruÄno izaberi"
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "Memorija kartice (DMA)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Content of the file"
-msgstr "Sadržaj datoteke"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "IO kartice"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
-msgstr "Autentikacijski LDAP"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "IO_0 kartice"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
-msgstr ""
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "IO_1 kartice"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
-msgstr "Dozvoli da sam odaberem drajver"
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
+msgstr "VaÅ¡ liÄni broj telefona"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
-msgstr "poslano"
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
+msgstr "Naziv provajdera (npr. provajder.net)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palestine"
-msgstr "Palestina"
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
+msgstr "Broj telefona provajdera"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+msgid "Provider dns 1 (optional)"
+msgstr "Provider dns 1 (opcionalno)"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d stringova razdvojenih zarezom"
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+msgid "Provider dns 2 (optional)"
+msgstr "Provider dns 2 (opcionalno)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " isdn"
-msgstr " ISDN"
+#: ../../network/tools.pm_.c:109
+msgid "Choose your country"
+msgstr "Izaberite vašu državu"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "Ovdje je puna lista svih dostupnih tastatura"
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
+msgstr "NaÄin biranja broja"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Theme name"
-msgstr "Naziv teme"
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+msgid "Connection speed"
+msgstr "Brzina konekcije"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/_Pomoć"
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+msgid "Connection timeout (in sec)"
+msgstr "Timeout konekcije (u sek.)"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitrary driver"
-msgstr "Slobodan izbor drajvera"
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
+msgstr "Login naloga (korisniÄko ime)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "Cook ostrva"
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
+msgstr "Å ifra naloga"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
+msgstr "montiranje nije uspjelo: "
+
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
+msgstr "Extended particije nisu podržane na ovoj platformi"
+
+#: ../../partition_table.pm_.c:685
msgid ""
-"Here you can choose whether the scanners connected to this machine should be "
-"accessable by remote machines and by which remote machines."
+"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 ""
-"Ovdje možete izabrati da li skeneri spojeni na ovaj raÄunar trebaju biti "
-"dostupni udaljenim raÄunarima i kojim raÄunarima."
+"Imate rupu u vašoj tabeli particija li je ja ne mogu upotrijebiti.\n"
+"Jedino rješenje je da pomjerite vaše primarne particija kako bi rupa bila "
+"pored extended particija"
-#: ../../standalone/draksplash:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "the width of the progress bar"
-msgstr "širina progresne trake"
+msgid "Restoring from file %s failed: %s"
+msgstr "Povratak iz datoteke %s nije uspio: %s"
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formatiram particiju %s"
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
+msgstr "Loša backup datoteka"
-#: ../../standalone/drakbackup:1
+#: ../../partition_table.pm_.c:796
#, c-format
-msgid "Hostname required"
-msgstr "Potrebno ime raÄunara"
+msgid "Error writing to file %s"
+msgstr "Greška u pisanju datoteke: %s"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "IskljuÄi instalirane fontove"
+#: ../../partition_table/raw.pm_.c:192
+msgid ""
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
+msgstr ""
+"Nešto loše se dešava na vašem disku. \n"
+"Test integriteta podataka nije uspio. \n"
+"To znaÄi će da pisanje bilo Äeka na disk rezultirati smećem"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Sa toÄkićem"
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr "obavezno"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit kernel version"
-msgstr "Pošalji verziju kernela"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Cancel"
-msgstr "Odustani"
+#: ../../pkgs.pm_.c:27
+msgid "important"
+msgstr "važno"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for configured scanners ..."
-msgstr "Tražim podešene skenere ..."
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr "vrlo fino"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Videocard"
-msgstr "Video kartica"
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr "fino"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tBackupi koriste tar i bzip2\n"
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr "možda"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Remove Selected"
-msgstr "Ukloni izabrano"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
+msgstr "PDQ - Print, Don't Queue"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Automatski prepoznaj _modeme"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
+msgstr "PDQ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove printer"
-msgstr "Ukloni Å¡tampaÄ"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
+msgstr "LPD - Line Printer Daemon"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Last Log"
-msgstr "Pogledaj zadnji log"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
+msgstr "LPD"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "Kojim servisima želite dozvoliti pristup sa Interneta?"
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
+msgstr "LPRng - LPR New Generation"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Connection Type"
-msgstr "Vrsta konekcije"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
+msgstr "LPRng"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Dobro došli u aplikaciju za podešavanje maila.\n"
-"\n"
-"Ovdje možete podesiti sistem obavještavanja.\n"
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
+msgstr "CUPS - Common Unix Printing System"
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Other"
-msgstr "Ostalo"
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
+msgstr "CUPS"
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
-msgstr "Default"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Nepoznat model"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Emulacija 2 dugmeta"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "Lokalni Å¡tampaÄ"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter a package name."
-msgstr "Molim navedite ime paketa."
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
+msgstr "Udaljeni Å¡tampaÄ"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run chkrootkit checks"
-msgstr "Izvrši chkrootkit provjere"
+#: ../../printer/main.pm_.c:28
+msgid "Printer on remote CUPS server"
+msgstr "Å tampaÄ na udaljenom CUPS serveru"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "type1inst building"
-msgstr "type1inst kreiranje"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+msgid "Printer on remote lpd server"
+msgstr "Å tampaÄ na udaljenom lpd serveru"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
+#: ../../printer/main.pm_.c:30
+msgid "Network printer (TCP/Socket)"
+msgstr "Mrežni Å¡tampaÄ (TCP/Socket)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image file"
-msgstr "izaberite image datoteku"
+#: ../../printer/main.pm_.c:31
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "Å tampaÄ na SMB/Windows 95/98/NT serveru"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "X server"
-msgstr "X server"
+#: ../../printer/main.pm_.c:32
+msgid "Printer on NetWare server"
+msgstr "Å tampaÄ na NetWare serveru"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin User Name"
-msgstr "KorisniÄko ime domenskog administratora"
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+msgid "Enter a printer device URI"
+msgstr "Unesite URI ureÄ‘aja Å¡tampaÄa"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Došlo je do greške kod pretrage TV kanala"
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
+msgstr "Spoji zadatak na komandu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
-msgstr "US tastatura (međunarodna)"
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
+msgstr "Nepoznat model"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Not installed"
-msgstr "Nije instaliran"
+#: ../../printer/main.pm_.c:317
+msgid "Local Printers"
+msgstr "Lokalni Å¡tampaÄi"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Obje Alt tipke istovremeno"
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+msgid "Remote Printers"
+msgstr "Udaljeni Å¡tampaÄi"
-#: ../../network/netconnect.pm:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid "LAN connection"
-msgstr "LAN konekcija"
+msgid " on parallel port \\/*%s"
+msgstr " na paralelnom portu \\/*%s"
-#: ../../standalone/logdrake:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid "/File/-"
-msgstr "/Datoteka/-"
+msgid ", USB printer \\/*%s"
+msgstr ", USB Å¡tampaÄ \\/*%s"
-#: ../../keyboard.pm:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid "Italian"
-msgstr "Italijanska"
+msgid ", multi-function device on parallel port \\/*%s"
+msgstr ", višenamjenski uređaj na paralelnom portu \\/*%s"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Basic"
-msgstr "Manje opcija"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
+msgstr ", višenamjenski uređaj na USBu"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
+msgstr ", višenamjenski uređaj na HP JetDirect"
-#: ../../lang.pm:1
-#, c-format
-msgid "Honduras"
-msgstr "Honduras"
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
+msgstr ", višenamjenski uređaj"
-#: ../../help.pm:1
+#: ../../printer/main.pm_.c:344
#, c-format
-msgid "pdq"
-msgstr "pdq"
+msgid ", printing to %s"
+msgstr ", štampa u %s"
+
+#: ../../printer/main.pm_.c:346
+#, fuzzy, c-format
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr "na LPD serveru \"%s\", Å¡tampaÄ \"%s\""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../printer/main.pm_.c:348
#, c-format
-msgid "Card IO"
-msgstr "IO kartice"
+msgid ", TCP/IP host \"%s\", port %s"
+msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../network/drakfirewall.pm:1
+#: ../../printer/main.pm_.c:352
#, fuzzy, c-format
-msgid "Samba server"
-msgstr "Samba server"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr "na Windows serveru \"%s\", share \"%s\""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Ova posebna Bootstrap\n"
-"particija je za\n"
-"dvojni boot vašeg sistema.\n"
+#: ../../printer/main.pm_.c:356
+#, fuzzy, c-format
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr "na Novell serveru \"%s\", Å¡tampaÄ \"%s\""
-#: ../../standalone/drakautoinst:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Molim izaberite za svaki korak da li ćete ga ponoviti kao i u vašoj "
-"instalaciji ili će se obaviti ruÄno"
+msgid ", using command %s"
+msgstr ", koristeći komandu %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"Ovdje takoÄ‘e trebate odluÄiti da li ovaj raÄunar treba koristiti skenere na "
-"udaljenim raÄunarima."
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
+msgstr "Sirovo štampanje (Bez drajvera)"
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:647
#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Mrežu preko FTPa.\n"
+msgid "(on %s)"
+msgstr "(na %s)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reports check result to tty"
-msgstr "Prijavi rezultate provjere na tty"
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
+msgstr "(na ovom raÄunaru)"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:674
#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Morate unijeti naziv uređaja ili datoteke!"
+msgid "On CUPS server \"%s\""
+msgstr "Na CUPS serveru \"%s\""
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Quit"
-msgstr "/_Izlaz"
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
+msgstr " (Default)"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "GrafiÄka memorija: %s kB\n"
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
+msgstr "Izaberi konekciju Å¡tampaÄa"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
+msgstr "Kako je Å¡tampaÄ povezan na raÄunar?"
+
+#: ../../printer/printerdrake.pm_.c:30
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"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
msgstr ""
-"This program is free software; you can redistribute it and/or modify\n"
-"it under the terms of the GNU General Public License as published by\n"
-"the Free Software Foundation; either version 2, or (at your option)\n"
-"any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful,\n"
-"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-"GNU General Public License for more details.\n"
"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Ovdje ne morate podeÅ¡avati Å¡tampaÄe na udaljenim CUPS serverima;\n"
+"ovi Å¡tampaÄi će biti automatski prepoznati."
-#: ../../any.pm:1
-#, c-format
-msgid "access to compilation tools"
-msgstr "pristup alatima za kompajliranje"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Global statistics"
-msgstr "Statistika"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+msgid "CUPS configuration"
+msgstr "Podešavanje CUPSa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Molim izaberite podatke za vraćanje..."
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+msgid "Specify CUPS server"
+msgstr "Navedite CUPS server"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:83
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 ""
-"Ako planirate koristiti aboot, budite pažljivi i ostavite slobodnog prostora "
-"(2048 sektora je dovoljno)\n"
-"na poÄetku diska"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Standard test page"
-msgstr "Standardna testna strana"
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
+msgstr ""
+"Da biste dobili pristup Å¡tampaÄima na udaljenim CUPS serverima u vaÅ¡oj "
+"lokalnoj mreži, ne morate podešavati ništa; CUPS serveri automatski "
+"informiÅ¡u vaÅ¡ raÄunar o svojim Å¡tampaÄima. Svi Å¡tampaÄi koji su trenutno "
+"poznati vaÅ¡em raÄunaru su izlistani u odjeljku \"Udaljeni Å¡tampaÄi\" glavnog "
+"prozora Printerdrake-a. Ako vaš CUPS server nije u lokalnoj mrežu, morate "
+"unijeti IP adresu CUPS servera i eventualno broj porta kako biste dobili "
+"informacije o Å¡tampaÄima sa servera, inaÄe ostavite ova polja praznim."
+
+#: ../../printer/printerdrake.pm_.c:84
+msgid ""
+"\n"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
+msgstr ""
+"\n"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
+
+#: ../../printer/printerdrake.pm_.c:88
+msgid "The IP address should look like 192.168.1.20"
+msgstr "IP adresa treba biti u formatu 192.168.1.20"
+
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
+msgstr "Broj porta treba biti cijeli broj!"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Time Zone"
-msgstr "Vremenska zona"
+#: ../../printer/printerdrake.pm_.c:99
+msgid "CUPS server IP"
+msgstr "IP CUPS servera"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create"
-msgstr "Kreiraj"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
+msgstr "Port"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "What"
-msgstr "Å ta"
+#: ../../printer/printerdrake.pm_.c:102
+msgid "Automatic CUPS configuration"
+msgstr "Automatska konfiguracija CUPSa"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "DoÅ¡lo je do greÅ¡ke pri naruÄivanju paketa:"
+#: ../../printer/printerdrake.pm_.c:159
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Restartujem sistem za štampu ..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "Bugarska (BDS)"
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+msgid "Printerdrake"
+msgstr "Printerdrake"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Server"
-msgstr "Onemogući server"
+#: ../../printer/printerdrake.pm_.c:167
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem encryption key"
-msgstr "KljuÄ za kodiranje datoteÄnog sistema"
+#: ../../printer/printerdrake.pm_.c:179
+#, fuzzy
+msgid ""
+"The following printers\n"
+"\n"
+msgstr "Sljedeći paketi će biti uklonjeni"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
-msgstr "Gujarati"
+#: ../../printer/printerdrake.pm_.c:180
+#, fuzzy
+msgid ""
+"The following printer\n"
+"\n"
+msgstr "Sljedeći paketi će biti uklonjeni"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:182
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."
+"\n"
+"and one unknown printer are "
msgstr ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by drakTermServ. Clients can "
-"either be 'thin'\n"
-" or 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, %s is\n"
-" written for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-" modified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-" using xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-" subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by drakTermServ. "
-"Clients can either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-#: ../../interactive/stdio.pm:1
+#: ../../printer/printerdrake.pm_.c:184
#, 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? "
+"\n"
+"and %d unknown printers are "
msgstr ""
-"Molim unesite prvi broj od deset koji želite izmjeniti,\n"
-"ili samo pritisnite Enter za nastavak.\n"
-"Vaš izbor?"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:187
msgid ""
"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
+"are "
msgstr ""
-"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Save theme"
-msgstr "Snimi temu"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "Brazil"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install"
-msgstr "Auto instalacija"
-
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration Wizard"
-msgstr "Čarobnjak za podešavanje mreže"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
-msgstr "Automatsko montiranje izmjenjivog medija"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"is "
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Printing"
-msgstr "Å tampa"
+#: ../../printer/printerdrake.pm_.c:189
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Kopiraj fontove na sistem"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save:"
-msgstr "Unesite direktorij za spasiti:"
+#: ../../printer/printerdrake.pm_.c:192
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:194
#, c-format
msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "Nema Å¡tampaÄa koji su direktno povezani na ovaj raÄunar"
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "Napravi novu particiju"
+#: ../../printer/printerdrake.pm_.c:200
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Molimo izaberite na koji port je prikljuÄen vaÅ¡ Å¡tampaÄ."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Driver:"
-msgstr "Drajver:"
+#: ../../printer/printerdrake.pm_.c:214
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
-msgstr "nepoznat"
+#: ../../printer/printerdrake.pm_.c:215
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Da li želite da podesite ovaj Å¡tampaÄ (\"%s\")\n"
+"kao podrazumjevani Å¡tampaÄ?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "Koristi fdisk"
+#: ../../printer/printerdrake.pm_.c:217
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Da li želite pokrenuti konekciju prilikom boota?"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "POMJERITE VAŠ TOČKIĆ!"
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
-#: ../../standalone/net_monitor:1
+#: ../../printer/printerdrake.pm_.c:219
#, c-format
-msgid "sent: "
-msgstr "poslano:"
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "Automatska IP"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+msgid "Add a new printer"
+msgstr "Dodaj novi Å¡tampaÄ"
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:259
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"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" Note that two different options are available after clicking the button:\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"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
+"It asks you for all necessary information to set up the printer and gives "
+"you access to all available printer drivers, driver options, and printer "
+"connection types."
+msgstr ""
"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
+"Dobro doÅ¡li u ÄŒarobnjak za podeÅ¡avanje Å¡tampaÄa\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"
+"Ovaj Äarobnjak vam omogućuje da instalirate lokalne ili udaljene Å¡tampaÄe "
+"koji će biti koriÅ¡teni sa ovog raÄunara, a takoÄ‘er i sa drugih raÄunara na "
+"mreži.\n"
"\n"
-" * \"%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"
+"On će od vas tražiti sve potrebne informacije kako bi Å¡tampaÄ bio podeÅ¡en, a "
+"vama omogućen pristup svim dostupnim drajverima, opcijama drajvera i vrstama "
+"konekcije Å¡tampaÄa."
+
+#: ../../printer/printerdrake.pm_.c:272
+msgid ""
"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"To je to. Instalacija je sada završena i vaš GNU/Linux sistem je spreman\n"
-"za upotrebu. Samo kliknite na \"%s\" da restartujete sistem. Prva stvar\n"
-"koju ćete ugledati nakon Å¡to raÄunar zavrÅ¡i hardverske provjere je meni\n"
-"bootloadera, koji vam nudi izbor operativnog sistema koji želite pokrenuti.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"Dugme \"%s\" će vam ponuditi još dva dugmeta za:\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"
-" * \"%s\": da biste napravili instalacionu\n"
-"disketu koja će automatski izvršiti cijelu instalaciju bez intervencije\n"
-"operatora, sliÄnu instalaciji koju ste upravo konfigurisali.\n"
+"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) and you Windows machines must be connected and "
+"turned on.\n"
"\n"
-" Obratite pažnju na dvije razliÄite opcije koje su dostupne nakon\n"
-"klikanja na ovo dugme:\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"
-" * \"%s\". Ovo je djelomiÄno automatizirana instalacija. Korak\n"
-"particioniranja je jedini interaktivni dio.\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
+msgid ""
"\n"
-" * \"%s\". Potpuno automatska instalacija: hard disk je\n"
-"potpuno prepisan, svi podaci su izgubljeni.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" Ova mogućnost je vrlo prikladna kada instalirate nekoliko sliÄnih\n"
-"raÄunara. Pogledajte odjeljak Automatska instalacija na naÅ¡oj web stranici\n"
-"za više informacija.\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
"\n"
-" * \"%s\" (*): snima listu paketa koje ste izabrali u ovoj\n"
-"instalaciji. Da biste upotrijebili ovaj izbor sa drugom instalacijom,\n"
-"ubacite disketu i zapoÄnite instalaciju. Na upitu, pritisnite tipku [F1]\n"
-"i ukucajte >>linux defcfg=\"floppy\" <<.\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"
-"(*) Potrebna vam je FAT-formatirana disketa (da biste je napravili pod\n"
-"GNU/Linuxom, kucajte \"mformat a:\")"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Moldova"
-msgstr "Moldova"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuration of a remote printer"
-msgstr "PodeÅ¡avanje udaljenog Å¡tampaÄa"
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
-msgstr "Online platforma koja odgovara potrebama vašeg preduzeća za podrškom."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URL treba poÄinjati sa 'ftp:' ili 'http:'"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Oriya"
-msgstr "Oriya"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Dodaj novo pravilo na kraj"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr "Uspješna instalacija LiLo i Boot tema"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"TakoÄ‘e možete odluÄiti da li Å¡tampaÄi na udaljenim raÄunarima trebaju biti "
-"automatski dostupni sa ovog raÄunara."
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:289
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''"
+"\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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Sada možete navesti opcije za modul %s. Opcije su u formatu ``ime=vrijednost "
-"ime2=vrijednost2 ...''.\n"
-"Na primjer, ``io=0x300 irq=7''"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "Izlazite bez pisanja tabele particija?"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Hard Drive"
-msgstr "na hard disk"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "Installing packages..."
-msgstr "Instaliram pakete..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dutch"
-msgstr "Holandska"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Angola"
-msgstr "Angola"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "Sljedeći paketi trebaju biti instalirani:\n"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "service setting"
-msgstr "postavke servisa"
-
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "Izaberi korisnike"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
-msgstr "Latvija"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr "Datoteku već koristi drugi loopback, izaberite neku drugu"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr "Samo za Äitanje"
+#: ../../printer/printerdrake.pm_.c:307
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
+msgstr "Automatski prepoznaj Å¡tampaÄe"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-"UkljuÄi/iskljuÄi zaÅ¡titu od lažiranja rezolviranja imena. Ako\n"
-"je aktivna opcija \"alert\", takođe prijavljuje u syslog."
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
-msgstr "Nema nijedan poznat drajver"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-"Ako to nije onaj koji želite podesiti, uneiste naziv uređaja / naziv "
-"datoteke u ulaznu liniju"
-#: ../../standalone/draksound:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:329
msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
"\n"
+"Congratulations, your printer is now installed and configured!\n"
"\n"
-"You can visit our hardware database at:\n"
-"\n"
+"You can print using the \"Print\" command of your application (usually in "
+"the \"File\" menu).\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"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 ""
-"Nije pronaÄ‘ena nijedna zvuÄna kartica na vaÅ¡oj maÅ¡ini. Molim provjerite da "
-"li je ispravno spojena zvuÄna kartica koja je podržana pod Linuxom.\n"
"\n"
+"ÄŒestitamo, vaÅ¡ Å¡tampaÄ je sada instaliran i podeÅ¡en!\n"
"\n"
-"Možete posjetiti našu bazu hardvera na:\n"
-"\n"
+"Možete Å¡tampati koristeći komandu \"Å tampaj\" u vaÅ¡oj aplikaciji (obiÄno se "
+"nalazi u meniju \"Datoteka).\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Podesi Lokalnu mrežu..."
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
+"Ako želite dodati, ukloniti ili promjeniti ime Å¡tampaÄa, ili ako želite "
+"promjeniti neke podrazumjevane postavke (ulazni put papira, kvaliteta "
+"Å¡tampe...), izaberite opciju \"Å tampaÄ\" u \"Hardware\" sekciji Mandrake "
+"Kontrolnog centra."
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr "Pokreće zvuÄni sistem na vaÅ¡em raÄunaru"
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+#, fuzzy
+msgid "Printer auto-detection"
+msgstr "Koristi auto prepoznavanje"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
-msgstr "Provjeri checksum suid/sgid datoteka"
+#: ../../printer/printerdrake.pm_.c:385
+#, fuzzy, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run some checks against the rpm database"
-msgstr "Izvrši neke provjere rpm baze podataka"
+#: ../../printer/printerdrake.pm_.c:387
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Å tampaÄ na SMB/Windows 95/98/NT serveru"
-#: ../../standalone/drakperm:1
+#: ../../printer/printerdrake.pm_.c:391
#, c-format
-msgid "Execute"
-msgstr "Izvrši"
+msgid "Detected %s"
+msgstr "Detektovan %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "Preparing printer database..."
-msgstr "Pripremam bazu podataka o Å¡tampaÄima..."
+msgid "Printer on parallel port \\/*%s"
+msgstr "Å tampaÄ na paralelnom portu \\/*%s"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "Information"
-msgstr "Informacije"
+msgid "USB printer \\/*%s"
+msgstr "USB Å¡tampaÄ \\/*%s"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "No network card"
-msgstr "Nema mrežne kartice"
+#: ../../printer/printerdrake.pm_.c:399
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Mrežni Å¡tampaÄ (TCP/Socket)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "3 dugmeta"
+#: ../../printer/printerdrake.pm_.c:401
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Å tampaÄ na SMB/Windows 95/98/NT serveru"
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Which filesystem do you want?"
-msgstr "Koji datoteÄni sistem želite?"
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+msgid "Local Printer"
+msgstr "Lokalni Å¡tampaÄ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malta"
-msgstr "Malta"
+#: ../../printer/printerdrake.pm_.c:526
+msgid ""
+"No local printer found! To manually install a printer enter a device name/"
+"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
+"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
+"printer: /dev/usb/lp1, ...)."
+msgstr ""
+"Nije pronaÄ‘en nijedan lokalni Å¡tampaÄ! Ako želite ruÄno instalirati Å¡tampaÄ, "
+"unesite ime uređaja / ime datoteke na ulaznu liniju (Paralelni portovi: /dev/"
+"lp0, /dev/lp1, ..., ekvivalentno LPT1:, LPT2:, ..., prvi USB Å¡tampaÄ: /dev/"
+"usb/lp0, drugi USB Å¡tampaÄ: /dev/usb/lp1, ...)."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Detailed information"
-msgstr "Detaljne informacije"
+#: ../../printer/printerdrake.pm_.c:530
+msgid "You must enter a device or file name!"
+msgstr "Morate unijeti naziv uređaja ili datoteke!"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../printer/printerdrake.pm_.c:539
+#, fuzzy
+msgid "No printer found!"
msgstr ""
-"Podrazumjevane opcije Å¡tampaÄa\n"
+"Nije pronaÄ‘en nijedan lokalni Å¡tampaÄ!\n"
"\n"
-"Trebate provjeriti da su veliÄina papira i tip tinte (ako je dostupno) "
-"ispravno podešeni. Obratite pažnju da za voma veliku kvalitetu / rezoluciju "
-"štampa može postati znatno sporija."
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
-msgstr "Ova disketa nije FAT formatirana"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "Podešavam mrežu"
+#: ../../printer/printerdrake.pm_.c:548
+#, fuzzy
+msgid "Available printers"
+msgstr "Lokalni Å¡tampaÄ"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:552
msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
msgstr ""
-"Ova opcija će zapisati datoteke koje su promijenjene. TaÄno ponaÅ¡anje ovisi "
-"o tome da li je izabran inkrementalni ili diferencijalni režim."
+"Sljedeći Å¡tampaÄ je prepoznat automatski: ako to nije onaj koji želite "
+"podesiti, uneiste naziv uređaja / naziv datoteke u ulaznu liniju"
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Graphic Card"
-msgstr "GrafiÄka karta"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing Windows partition"
-msgstr "Smanjujem Windows particiju"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "Kamerun"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "Provider dns 1 (opcionalno)"
-
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:553
msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
msgstr ""
-"Sada možete particionirati %s.\n"
-"Kada završite, ne zaboravite spasiti sa `w'"
+"Ovo je lista svih automatski prepoznatih Å¡tampaÄa. Molimo izaberite Å¡tampaÄ "
+"koji želite podesiti ili unesite naziv uređaja / naziv datoteke na ulaznu "
+"liniju"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finnish)"
-msgstr "Saami (švedski/finski)"
+#: ../../printer/printerdrake.pm_.c:555
+msgid ""
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
+msgstr ""
+"Sljedeći Å¡tampaÄ je prepoznat automatski. PodeÅ¡avanje Å¡tampaÄa će raditi "
+"potpuno automatski. Ako vaÅ¡ Å¡tampaÄ nije ispravno prepoznat ili ako želite "
+"sami podesiti Å¡tampaÄ, ukljuÄite \"RuÄno podeÅ¡avanje\"."
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Close"
-msgstr "Zatvori"
+#: ../../printer/printerdrake.pm_.c:556
+msgid ""
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
+msgstr ""
+"Ovo je lista svih automatski prepoznatih Å¡tampaÄa. Molim odaberite Å¡tampaÄ "
+"koji želite podesiti. PodeÅ¡avanje Å¡tampaÄa će raditi potpuno automatski. Ako "
+"vaÅ¡ Å¡tampaÄ nije ispravno prepoznat ili ako želite sami podesiti Å¡tampaÄ, "
+"ukljuÄite \"RuÄno podeÅ¡avanje\"."
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:558
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."
+"Please choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-"\"%s\": provjerite trenutni izbor države. Ako se ne nalazite ovdje,\n"
-"kliknite na dugme \"%s\" i izaberite neku drugu državu. Ako se vaša\n"
-"zemlja ne nalazi na listi, kliknite na dugme \"%s\" kako biste dobili\n"
-"listu svih država."
+"Molimo izaberite port na koji je vaÅ¡ Å¡tampaÄ povezan ili unesite naziv "
+"uređaja / naziv datoteke na ulaznoj liniji"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Calendar"
-msgstr "Kalendar"
+#: ../../printer/printerdrake.pm_.c:559
+msgid "Please choose the port where your printer is connected to."
+msgstr "Molimo izaberite na koji port je prikljuÄen vaÅ¡ Å¡tampaÄ."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:561
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-"Vrati izabrane\n"
-"stavke katologa"
+" (Paralelni portovi: /dev/lp0, /dev/lp1, ..., ekvivalentno sa LPT1:, "
+"LPT2:, ..., prvi USB Å¡tampaÄ: /dev/usb/lp0, drugi USB Å¡tampaÄ: /dev/usb/"
+"lp1, ...)."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:565
+msgid "You must choose/enter a printer/device!"
+msgstr "Morate izabrati ili unijeti Å¡tampaÄ / ureÄ‘aj!"
+
+#: ../../printer/printerdrake.pm_.c:584
+msgid "Manual configuration"
+msgstr "RuÄno podeÅ¡avanje"
+
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
+msgstr "Opcije udaljenog lpd Å¡tampaÄa"
+
+#: ../../printer/printerdrake.pm_.c:634
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -11895,1168 +8224,818 @@ msgstr ""
"Da biste koristili udaljeni lpd Å¡tampaÄ, morate dati ime raÄunara za printer "
"server i ime Å¡tampaÄa na tom serveru."
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
-msgstr "Island"
+#: ../../printer/printerdrake.pm_.c:635
+msgid "Remote host name"
+msgstr "Ime udaljenog raÄunara"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Podešavanje mreže i Interneta"
+#: ../../printer/printerdrake.pm_.c:636
+msgid "Remote printer name"
+msgstr "Ime udaljenog Å¡tampaÄa"
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
-msgstr "nedostaje consolehelper"
+#: ../../printer/printerdrake.pm_.c:639
+msgid "Remote host name missing!"
+msgstr "Ime udaljenog raÄunara nedostaje!"
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr "zaustavljen"
+#: ../../printer/printerdrake.pm_.c:643
+msgid "Remote printer name missing!"
+msgstr "Ime udaljenog Å¡tampaÄa nedostaje!"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "Da li FPU ima IRQ vektor"
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "Detektovan %s"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Ext2"
-msgstr "Ext2"
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Pokrećem mrežu..."
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr "Proširi stablo"
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
+#, fuzzy, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr "na Windows serveru \"%s\", share \"%s\""
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Å tampam na Å¡tampaÄ \"%s\""
+
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "Opcije SMB (Windows 9x/NT) Å¡tampaÄa"
+
+#: ../../printer/printerdrake.pm_.c:796
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
-"\n"
-"It has been reported to oops the kernel on unloading.\n"
-"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+"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 ""
-"Stari \"%s\" drajver je na crnoj listi.\n"
-"\n"
-"Prijavljeno je da ovaj drajver prilikom deinstalacije izaziva oops kernela.\n"
-"\n"
-"Stoga će novi drajver \"%s\" biti korišten tek nakon idućeg pokretanja "
-"sistema."
+"Da biste Å¡tampali na SMB Å¡tampaÄ, morate dati ime SMB raÄunara (Pažnja! Ono "
+"može biti razliÄito od TCP/IP imena!) i eventualno IP adresu print servera, "
+"kao i share naziv Å¡tampaÄa kojem želite pristupiti i korisniÄko ime, Å¡ifru i "
+"informacije o radnoj grupi."
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Expert Mode"
-msgstr "Ekspertni mod"
+#: ../../printer/printerdrake.pm_.c:797
+msgid ""
+" If the desired printer was auto-detected, simply choose it from the list "
+"and then add user name, password, and/or workgroup if needed."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "Opcije Å¡tampaÄa"
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
+msgstr "SMB server ime"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Local Network adress"
-msgstr "Lokalna mrežna adresa"
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr "SMB server IP"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Backup sistemskih datoteka. (/etc direktorij)"
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr "Share naziv"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the user umask."
-msgstr "PodeÅ¡ava korisniÄki umask."
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "Radna grupa"
+
+#: ../../printer/printerdrake.pm_.c:806
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Koristi auto prepoznavanje"
+
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
+msgstr "Treba biti dato ili ime servera ili IP adresa servera!"
+
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
+msgstr "Naziv samba share-a nedostaje!"
+
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:827
#, 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"
+"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"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\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"
-"Do you want to install the updates ?"
-msgstr ""
-"Sada imate mogućnost da dobavite sa Interneta nove verzije paketa koji\n"
-"su izašli nakon što je distribucija objavljena. Među njima su sigurnosne "
-"zakrpe\n"
-"i ispravke bugova.\n"
+"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"
-"Da biste izvršili download, potrebno je da podesite Internet konekciju.\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"
-"Da li želite instalirati update-ovane pakete ?"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Samba Server"
-msgstr "Samba server"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Australijska Optus kablovska TV"
+msgstr ""
-#: ../../install_steps_newt.pm:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+"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 ""
-" <Tab>/<Alt-Tab> između elemenata | <Space> vrši izbor | <F12> idući ekran "
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet:"
-msgstr "Subnet:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zimbabwe"
-msgstr "Zimbabve"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "When"
-msgstr "Kada"
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:840
msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
+"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 ""
-"Potreban vam je Alcatel-ov mikrokod.\n"
-"Možete ga downloadovati na\n"
-"%s\n"
-"zatim kopirajte mgmt.o u /usr/share/speedtouch"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hour"
-msgstr "Sat"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Drugi DNS server (opcionalno)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Finland"
-msgstr "Finska"
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
+msgstr "Opcije NetWare Å¡tampaÄa"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Broj boja: %s\n"
+#: ../../printer/printerdrake.pm_.c:912
+msgid ""
+"To print on a NetWare printer, you need to provide the NetWare print server "
+"name (Note! it may be different from its TCP/IP hostname!) as well as the "
+"print queue name for the printer you wish to access and any applicable user "
+"name and password."
+msgstr ""
+"Da biste Å¡tampali na NetWare Å¡tampaÄ, trebate dati naziv NetWare print "
+"servera (Pažnja! Ono može biti razliÄito od njegovog TCP/IP imena!) kao i "
+"naziv reda za Å¡tampu na Å¡tampaÄu kojem želite pristupiti i eventualno "
+"korisniÄko ime i Å¡ifru."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Ne možete iskljuÄiti ovaj paket. On mora biti unaprijeÄ‘en"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr "Printer Server"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "UÄitavam sa diskete"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
+msgstr "Naziv reda za štampu"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
+msgstr "NCP naziv servera nedostaje!"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
-msgstr "UkljuÄi/iskljuÄi logiranje Äudnih IPv4 paketa."
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
+msgstr "NCP naziv reda nedostaje!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr "Slovenija"
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
+#, fuzzy, c-format
+msgid ", host \"%s\", port %s"
+msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse test"
-msgstr "Testiranje miša"
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
+#, fuzzy, c-format
+msgid "Host \"%s\", port %s"
+msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../standalone/drakperm:1
-#, 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."
-msgstr ""
-"Drakperm se koristi da pregledate datoteke koje se koriste radi promjene "
-"privilegija, vlasnika i grupa putem msec-a.\n"
-"Možete također stvoriti vaša vlastita pravila koja će prepisati ranije "
-"podešena pravila."
+#: ../../printer/printerdrake.pm_.c:1030
+msgid "TCP/Socket Printer Options"
+msgstr "TCP/socket opcije Å¡tampaÄa"
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1032
msgid ""
-"Enter a user\n"
-"%s"
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-"Unesite korisnika\n"
-"%s"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1033
+#, fuzzy
msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"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 ""
-"- PCI i USB uređaji: ovo će izlistati PCI/USB id-ove za; vendor, device, "
-"subvendor i subdevice"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "ProgressBar color selection"
-msgstr "Izbor boje trake napretka"
+"Da biste Å¡tampali na TCP ili socket Å¡tampaÄ, morate dati hostname Å¡tampaÄa i "
+"opcionalno broj porta. Na HP JetDirect serverima broj porta je obiÄno 9100, "
+"na ostalim serverima on može varirati. Pogledajte priruÄnik vaÅ¡eg hardware-a."
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
-msgstr ""
-"Ovo su trenutne opcije u vašem boot meniju.\n"
-"Možete dodati nove ili promijeniti postojeće."
+#: ../../printer/printerdrake.pm_.c:1037
+#, fuzzy
+msgid "Printer host name or IP missing!"
+msgstr "Hostname Å¡tampaÄa nedostaje!"
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
+#: ../../printer/printerdrake.pm_.c:1059
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Hostname Å¡tampaÄa"
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
+msgstr "URI ureÄ‘aja Å¡tampaÄa"
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1108
msgid ""
-"Application Name\n"
-"or Full Path:"
+"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 ""
-"Ime aplikacije\n"
-"ili puni put:"
+"Možete dati direktno URI za pristup Å¡tampaÄu. URI mora zadovoljavati ili "
+"CUPS ili Foomatic specifikacije. Obratite pažnju da nisu svi tipovi URIja "
+"podržani od svih spoolera."
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
+msgstr "Trebate unijeti ispravan URI!"
+
+#: ../../printer/printerdrake.pm_.c:1463
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."
+"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 ""
-"Izvršava naredbe zakazane putem at komande u zadato vrijeme,\n"
-"te pokreće programe u pozadini kada je raÄunar neopterećen."
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
-msgstr "Podrška za radio:"
+"Svakom Å¡tampaÄu treba dati ime (npr. \"stampac\"). Polja Opis i Lokacija "
+"nije potrebno popuniti. Oni su komentari za korisnike."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "Instaliram SANE pakete..."
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr "Naziv Å¡tampaÄa"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
-msgstr "LDAP"
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
+msgstr "Opis"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
-msgstr "SILO"
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
+msgstr "Lokacija"
-#: ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Change type"
-msgstr "Promijeni tip"
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+msgid "Reading printer database..."
+msgstr "ÄŒitam bazu podataka o Å¡tampaÄima ..."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", USB Å¡tampaÄ #%s"
+#: ../../printer/printerdrake.pm_.c:1482
+msgid "Preparing printer database..."
+msgstr "Pripremam bazu podataka o Å¡tampaÄima..."
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "SILO instalacija"
+#: ../../printer/printerdrake.pm_.c:1578
+msgid "Your printer model"
+msgstr "Model vaÅ¡eg Å¡tampaÄa"
-#: ../../install_messages.pm:1
+#: ../../printer/printerdrake.pm_.c:1579
#, 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"
+"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"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
+"%s"
msgstr ""
-"Čestitamo, instalacija je završena.\n"
-"Uklonite boot medij i pritisnite Enter da restartujete raÄunar.\n"
-"\n"
-"\n"
-"Za informacije o ispravkama koje su dostupne za ovu verziju Mandrake "
-"Linuxa,\n"
-"pogledajte Errata koja je dostupna na:\n"
-"\n"
-"\n"
-"%s\n"
+"Printerdrake je uporedi ime modela koje je dobijeno od automatskog "
+"prepoznavanja Å¡tampaÄa sa modelima koji su navedeni u njegovoj bazi podataka "
+"kako bi naÅ¡ao najbliži. Ovaj izbor možda nije taÄan, pogotovo ako vaÅ¡ "
+"Å¡tampaÄ uopÅ¡te nije naveden u bazi. Stoga provjerite da li je izbor ispravan "
+"i ako je tako kliknite \"Model je ispravan\", u suprotnom kliknite "
+"\"Izaberite model ruÄno\" kako biste ruÄno izabrali vaÅ¡ model Å¡tampaÄa na "
+"sljedećem ekranu.\n"
"\n"
+"Za vaÅ¡ Å¡tampaÄ Printerdrake je naÅ¡ao:\n"
"\n"
-"Informacije o podešavanju vašeg sistema su dostupne u poglavlju\n"
-"\"Nakon instalacije\" vaÅ¡eg zvaniÄnog Mandrake Linux PriruÄnika za upotrebu."
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Restore putem mrežnog protokola: %s"
+"%s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "paranoid"
-msgstr "paranoiÄan"
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+msgid "The model is correct"
+msgstr "Model je ispravan"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "Ne šalji mailove kada nije potrebno"
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+msgid "Select model manually"
+msgstr "Izaberite model ruÄno"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "Vaši skeneri neće biti dostupni putem mreže."
+#: ../../printer/printerdrake.pm_.c:1606
+msgid "Printer model selection"
+msgstr "Izbor modela Å¡tampaÄa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Pošalji mail izvještaj nakon svakog backupa na :"
+#: ../../printer/printerdrake.pm_.c:1607
+msgid "Which printer model do you have?"
+msgstr "Koji model Å¡tampaÄa imate?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1608
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"
+"\n"
+"\n"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-"Ovu komandu također možete koristiti u polju \"Komanda za štampu\" u "
-"dijalozima za štampu mnogih aplikacija. Ovdje nije potrebno navesti naziv "
-"datoteke jer tudatoteku obezbjeđuje sama aplikacija.\n"
-
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolution"
-msgstr "Rezolucija"
+"\n"
+"\n"
+"Molim provjerite da li je Printerdrake izvršio ispravno automatsko "
+"prepoznavanje modela vaÅ¡eg Å¡tampaÄa. Potražite ispravan model na listi ako "
+"kursor stoji na pogreÅ¡nom modelu ili na \"Raw Å¡tampaÄ\"."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1611
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."
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
-"Da biste Å¡tampali na SMB Å¡tampaÄ, morate dati ime SMB raÄunara (Pažnja! Ono "
-"može biti razliÄito od TCP/IP imena!) i eventualno IP adresu print servera, "
-"kao i share naziv Å¡tampaÄa kojem želite pristupiti i korisniÄko ime, Å¡ifru i "
-"informacije o radnoj grupi."
+"Ako Å¡tampaÄ nije naveden, izaberite kompatibilan (pogledajte uputstva za "
+"Å¡tampaÄ) ili sliÄan."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1697
+msgid "OKI winprinter configuration"
+msgstr "Podešavanje OKI winprinter-a"
+
+#: ../../printer/printerdrake.pm_.c:1698
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"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 ""
-" Omogući su samo Älanovima wheel grupe ili dozvoli su svakom korisniku."
+"Sada podeÅ¡avate OK laserski winprinter. Ovi Å¡tampaÄi\n"
+"koriste jedan poseban komunikacijski protokol i stoga rade samo kada su "
+"spojeni na prvom paralelnom portu. Ako je vaÅ¡ Å¡tampaÄ spojen na neki drugi "
+"port ili na print server molimo spojite Å¡tampaÄ na prvi paralelni port prije "
+"nego Å¡to odÅ¡tampate testnu stranicu. InaÄe Å¡tampaÄ neće raditi. Drajver će "
+"ignorisati vaše podešenje tipa konekcije."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
-msgstr "rekonfiguriši"
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+msgid "Lexmark inkjet configuration"
+msgstr "Podešavanje Lexmark inkjet-a"
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1719
msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+"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 ""
-"Vaša kartica može imati podršku za 3D hardversko ubrzanje sa XFree %s,\n"
-"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell timeout"
-msgstr "Istek vremena shella"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Xinetd Service"
-msgstr "Xinetd servis"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to network tools"
-msgstr "pristup mrežnim alatima"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "Upload firmware-a za HP LaserJet 1000"
+"Inkjet drajveri za štampu koje obezbjeđuje Lexmark podržavaju samo lokalne "
+"Å¡tampaÄe, a ne i Å¡tampaÄe na udaljenim raÄunarima ili print serverima. "
+"Molimo spojite vaÅ¡ Å¡tampaÄ na lokalni port ili ga podesite na raÄunaru na "
+"koji je spojen."
-#: ../advertising/03-software.pl:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1746
+#, fuzzy
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."
+"To be able to print with your Lexmark inkjet and this configuration, you "
+"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
-"I naravno da potjerate vaÅ¡ multimedijalni raÄunar do krajnjih granica! "
-"Koristite najnoviji softver za slušanje muzike i audio datoteka, mijenjajte "
-"i organizujte vaše slike i fotografije."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Ovdje je lista svih automatski prepoznatih Å¡tampaÄa."
+"Da biste mogli štampati sa vašim Lexmark inkjetom na ovoj konfiguraciji, "
+"potrebni su vam inkjet drajveri za štampu koje obezbjeđuje Lexmark (http://"
+"www.lexmark.com/). Idite na US stranicu i kliknite na dugme \"Drivers\". "
+"Zatim izaberite vaš model a zatim \"Linux\" kao operativni sistem. Drajveri "
+"dolaze u vidu RPM paketa ili shell skripte sa interaktivnom grafiÄkom "
+"instalacijom. Ne morate obaviti ovu konfiguraciju na grafiÄkom interfejsu. "
+"Odustanite odmah nakon licencnog ugovora. Zatim odštampaje stranice za "
+"poravnavanje glava sa \"lexmarkmaintain\" i podesite opcije poravnanja glave "
+"pomoću ovog programa."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
msgstr ""
-"Greška u instaliranju aboota, \n"
-"da li da pokuÅ¡am nasilnu instalaciju Äak i ako to uniÅ¡ti prvu particiju?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1750
msgid ""
-"Restore Selected\n"
-"Files"
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-"Vrati izabrane\n"
-"datoteke"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1972
msgid ""
-"%s exists, delete?\n"
+"Printer default settings\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."
+"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 ""
-"%s već postoji, da ga obrišem?\n"
+"Podrazumjevane opcije Å¡tampaÄa\n"
"\n"
-"Upozorenje: Ako ste već jednom obavili ovaj proces, vjerovatno\n"
-"trebate oÄistiti unos iz liste autoriziranih kljuÄeva na serveru."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Molim ispunite ili provjerite polje ispod"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Želite li spasiti izmjene u /etc/fstab ?"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
-msgstr "Boot protokol"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-diskovi %s\n"
-
-#: ../../services.pm:1
-#, c-format
-msgid "On boot"
-msgstr "Prilikom boota"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "Potreban je paket %s. Da li ga želite instalirati?"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus identification"
-msgstr "Identifikacija sabirnice (busa)"
+"Trebate provjeriti da su veliÄina papira i tip tinte (ako je dostupno) "
+"ispravno podešeni. Obratite pažnju da za voma veliku kvalitetu / rezoluciju "
+"štampa može postati znatno sporija."
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid "Vatican"
-msgstr "Vatikan"
+msgid "Option %s must be an integer number!"
+msgstr "Opcija %s mora biti cijeli broj!"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "Please make a backup of your data first"
-msgstr "Predlažemo da najprije napravite backup vaših podataka"
+msgid "Option %s must be a number!"
+msgstr "Opcija %s mora biti broj!"
-#: ../../harddrake/data.pm:1
+#: ../../printer/printerdrake.pm_.c:1989
#, c-format
-msgid "ADSL adapters"
-msgstr ""
+msgid "Option %s out of range!"
+msgstr "Opcija %s izvan raspona!"
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2028
#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
+msgid ""
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
-"Imate više od jednog hard diska. Na koji od njih želite instalirati Linux?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Eritrea"
-msgstr "Eritreja"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot ISO"
-msgstr "Boot ISO"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Firmware needed"
-msgstr "Potreban je firmware"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove List"
-msgstr "Pobriši listu"
-
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
-msgstr "Prilagodljiva okolina"
+"Da li želite da podesite ovaj Å¡tampaÄ (\"%s\")\n"
+"kao podrazumjevani Å¡tampaÄ?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
-msgstr "Inuktitut"
+#: ../../printer/printerdrake.pm_.c:2051
+msgid "Test pages"
+msgstr "Testna stranica"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2052
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."
+"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 ""
-"Neki protokoli, kao što je rsync, se mogu podesiti na serverskom kraju. "
-"Umjesto korištenja puta direktorija, možete koristiti ime 'modula' za put "
-"servisa."
+"Molimo izaberite testne stranice koje ćete štampati.\n"
+"Pažnja: foto testna stranica može tražiti dosta vremena za štampu a na "
+"laserskim Å¡tampaÄima sa malo memorije možda neće nikad ni izaći. U većini "
+"sluÄajeva dovoljno je odÅ¡tampati standardnu testnu stranicu."
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "Maroko"
+#: ../../printer/printerdrake.pm_.c:2056
+msgid "No test pages"
+msgstr "Nijedna testna strana"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Koji model Å¡tampaÄa imate?"
+#: ../../printer/printerdrake.pm_.c:2057
+msgid "Print"
+msgstr "Å tampaj"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add a new printer"
-msgstr "Dodaj novi Å¡tampaÄ"
+#: ../../printer/printerdrake.pm_.c:2114
+msgid "Standard test page"
+msgstr "Standardna testna strana"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " All of your selected data have been "
-msgstr " Svi vaši izabrani podaci su "
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
+msgstr "Alternativna testna strana (Letter)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "Nepal"
+#: ../../printer/printerdrake.pm_.c:2120
+msgid "Alternative test page (A4)"
+msgstr "Alternativna testna strana (A4)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Obriši"
+#: ../../printer/printerdrake.pm_.c:2122
+msgid "Photo test page"
+msgstr "Foto testna strana"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
-msgstr "cpu # "
+#: ../../printer/printerdrake.pm_.c:2126
+msgid "Do not print any test page"
+msgstr "Nemoj štampati testnu stranicu"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "chunk size"
-msgstr "veliÄina chunka"
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
+msgstr "Å tampam testnu stranicu..."
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2159
#, 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"
+"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"
-"Else only /etc/issue is allowed."
msgstr ""
-"Ako je postavljeno \"SVE\", dozvoljeno je postojanje /etc/issue i /etc/issue."
-"net.\n"
-"\n"
-"Ako je postavljeno na NIÅ TA, datoteke nisu dozvoljene.\n"
+"Testna stranica je poslana Å¡tampaÄu.\n"
+"Može potrajati odreÄ‘eno vrijeme dok Å¡tampaÄ krene.\n"
+"Status štampanja:\n"
+"%s\n"
"\n"
-"InaÄe, dozvoljen je samo /etc/issue."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr " UkljuÄi/iskljuÄi sulogin(8) na jednokorisniÄkom nivou."
-#. -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
-#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "opcija prije bootanja, ili 'c' za komandnu liniju."
-
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problemi tokom instaliranja paketa %s"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
+#: ../../printer/printerdrake.pm_.c:2163
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
msgstr ""
-"Primićete upozorenje ako je opterećenje (system load) veće od ove vrijednosti"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
-msgstr "RuÄno dodaj skener"
+"Testna stranica je poslana Å¡tampaÄu.\n"
+"Može potrajati odreÄ‘eno vrijeme dok Å¡tampaÄ krene.\n"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh"
-msgstr "Osvježi"
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
+msgstr "Da li je radilo ispravno?"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Reload partition table"
-msgstr "Ponovo uÄitaj tabelu particija"
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+msgid "Raw printer"
+msgstr "Sirovi Å¡tampaÄ"
-#: ../../standalone/drakboot:1
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
+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 ""
-"Da, želim da se automatski prijavim sa ovim vrijednostima (korisnik, desktop)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Selected"
-msgstr "Vrati izabrano"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Pretraži fontove na listi instaliranih"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Lokalna mreža se ne završava sa `.0', izlazim."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Boot"
-msgstr "Boot"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " a CD je u pogonskoj jedinici"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Tuner type:"
-msgstr "Vrsta tunera:"
+"Za štampanje datoteke sa komandne linije (terminalski prozor) možete "
+"koristiti ili komandu \"%s <datoteka>\" ili grafiÄki alat za Å¡tampu: \"xpp "
+"<datoteka>\" ili \"kprinter <datoteka>\". GrafiÄki alati vam omogućuju da "
+"jednostavno odaberete Å¡tampaÄ i izmjenite podeÅ¡enja opcija.\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2218
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 ""
-"Sada je vrijeme da izaberete sistem Å¡tampe za vaÅ¡ raÄunar. Drugi OSi\n"
-"vam možda nude jedan, ali Mandrake Linux nudi dva. Svaki od ovih sistema\n"
-"je najbolji za određenu vrstu konfiguracije.\n"
-"\n"
-"* \"%s\" -- skraćeno za ''štampaj i nemoj stavljati u red'' (print, don't\n"
-"queue) je najbolji izbor ako imate direktnu vezu na Å¡tampaÄ, želite izlaz\n"
-"za paniku u sluÄajevima zaglavljivanja papira i nemate mrežne Å¡tampaÄe.\n"
-"(\"%s\" može rijeÅ¡iti samo vrlo jednostavne mrežne sluÄajeve i pomalo je\n"
-"spor kada se koristi sa mrežama.) PreporuÄujemo da koristite \"pdq\" ako\n"
-"je ovo vaše prvo iskustvo sa GNU/Linuxom.\n"
-"\n"
-"* \"%s\" - ''Common Unix Printing System'' (uobiÄajeni UNIX sistem Å¡tampe)\n"
-"je odliÄan izbor za Å¡tampanje na Å¡tampaÄ koji se nalazi lokalno ili s druge\n"
-"strane planete. Vrlo ga je jednostavno podesiti i može služiti kao server "
-"ili\n"
-"klijent za prastari \"lpd\" sistem štampe, tako da je kompatibilan sa "
-"starijim\n"
-"operativnim sistemima kojima možda još trebaju usluge štampanja. Mada je\n"
-"vrlo moćan, osnovno podešavanje je skoro jednako lagano kao za \"pdq\".\n"
-"Ako želite simulirati \"lpd\" server, provjerite da li ste pokrenuli \"cups-"
-"lpd\"\n"
-"servis. \"%s\" ukljuÄuje grafiÄke alate za Å¡tampanje ili izbor opcija "
-"Å¡tampaÄa,\n"
-"te za upravljanje Å¡tampaÄem.\n"
-"\n"
-"Ako sada napravite izbor, pa kasnije zakljuÄite da vam se ne sviÄ‘a izabrani\n"
-"sistem štampe, možete ga promijeniti pokretanjem PrinterDrake iz Mandrake\n"
-"Kontrolnog centra i klikanjem na dugme Ekspert."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
-msgstr "\"Meni\" tipka"
+"These commands you can also use in the \"Printing command\" field of the "
+"printing dialogs of many applications, but here do not supply the file name "
+"because the file to print is provided by the application.\n"
+msgstr ""
+"Ove komande možete također koristiti u polju \"Komanda za štampu\" u "
+"dijalozima za štampu mnogih aplikacija, ali ovdje ne morate navesti ime "
+"datoteke jer tu datoteku obezbjeđuje sama aplikacija.\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, c-format
msgid ""
"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
+"The \"%s\" command also allows to modify the option settings for a "
+"particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\". "
msgstr ""
"\n"
-"\n"
-"Molim provjerite da li je Printerdrake izvršio ispravno automatsko "
-"prepoznavanje modela vaÅ¡eg Å¡tampaÄa. Potražite ispravan model na listi ako "
-"kursor stoji na pogreÅ¡nom modelu ili na \"Raw Å¡tampaÄ\"."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Administrator:"
-msgstr "Sigurnosni administrator:"
+"Komanda \"%s\" takoÄ‘er omogućava izmjenu opcija za pojedinaÄni zadatak "
+"štampe. Jednostavno dodajte željena podešenja na komandnu liniju, npr. \"%s "
+"<datoteka>\". "
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
+#, fuzzy, c-format
+msgid ""
+"To know about the options available for the current printer read either the "
+"list shown below or click on the \"Print option list\" button.%s%s\n"
+"\n"
msgstr ""
-"Postavlja istek vremena shella. Vrijednost nula znaÄi bez isteka vremena."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "Kopiranje firmware-a uspjelo"
+"Za listu opcija koje su dostupne za trenutni Å¡tampaÄ ili proÄitajte listu "
+"koja je data ispod ili kliknite na dugme \"Lista opcija za štampu\".%s\n"
+"\n"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2228
msgid ""
-"You can't use another CDROM when the following programs are running: \n"
-"%s"
+"Here is a list of the available printing options for the current printer:\n"
+"\n"
msgstr ""
+"Ovo je lista mogućih opcija za Å¡tampu za trenutni Å¡tampaÄ:\n"
+"\n"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
msgstr ""
-"ako je postavljeno na da, provjerava privilegije datoteka u korisniÄkom home-"
-"u."
+"Za štampanje datoteke sa komandne linije (terminalski prozor) koristite "
+"komandu \"%s <datoteka>\".\n"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
+"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 ""
-"Nemate nijednu Internet konekciju.\n"
-"Napravite jednu klikajući na 'Podesi'"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Fonts copy"
-msgstr "Kopiranje fontova"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
-msgstr "Automatizovano"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Želite li testirati konfiguraciju?"
+"Ovu komandu također možete koristiti u polju \"Komanda za štampu\" u "
+"dijalozima za štampu mnogih aplikacija. Ovdje nije potrebno navesti naziv "
+"datoteke jer tudatoteku obezbjeđuje sama aplikacija.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
-msgstr "Å tampaÄ \"%s\" je uspjeÅ¡no uklonjen iz Star/Open Offica."
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save packages selection"
-msgstr "Spasi izbor paketa"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Actions"
-msgstr "/_Akcije"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Remove the last item"
-msgstr "Ukloniti zadnju stavku"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
msgstr ""
-"Lista korisnika za vraćanje (samo najsvježiji datum po korisniku je znaÄajan)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
-msgstr "Nije napravljena boot image!"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "koristi pptp"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Izaberite koji servisi se trebaju pokretati automatski prilikom boota"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check files/directories writable by everybody"
-msgstr "Provjeri datoteke/direktorije koje svako može pisati"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Saznaj kako koristiti ovaj Å¡tampaÄ"
+"Za listu opcija koje su dostupne za trenutni Å¡tampaÄ kliknite na dugme "
+"\"Lista opcija za štampu\"."
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2253
#, c-format
-msgid "Configure the network now"
-msgstr "Sada podesite mrežu"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
+msgstr ""
+"Za štampanje datoteke sa komandne linije (terminalski prozor) koristite "
+"komandu \"%s <datoteka>\" ili \"%s <datoteka>\".\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Izaberite mirror sa kojeg će biti dobavljeni paketi"
+#: ../../printer/printerdrake.pm_.c:2257
+msgid ""
+"You can also use the graphical interface \"xpdq\" for setting options and "
+"handling printing jobs.\n"
+"If you are using KDE as desktop environment you have a \"panic button\", an "
+"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
+"jobs immediately when you click it. This is for example useful for paper "
+"jams.\n"
+msgstr ""
+"Možete takoÄ‘er koristiti grafiÄki interfejs \"xpdq\" za podeÅ¡avanje opcija i "
+"upravljanje zadacima štampe.\n"
+"Ako koristite KDE okruženje radne površine imate \"dugme za paniku\". To je "
+"ikona na radnoj povrÅ¡ini Äiji je naziv \"ZAUSTAVI Å¡tampaÄ!\", koja "
+"zaustavlja sve zadatke štampe odmah kada kliknete na nju. Ovo je korisno "
+"npr. u sluÄaju zaglavljivanja papira.\n"
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2261
#, c-format
msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
+"\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 ""
-"FAT resizer ne može izmijeniti vašu particiju, \n"
-"došlo je do sljedeće greške: %s"
+"\n"
+"Komande \"%s\" i \"%s\" takoÄ‘er omogućavaju izmjenu opcija za pojedinaÄni "
+"zadatak štampe. Jednostavno dodajte željena podešenja na komandnu liniju, "
+"npr. \"%s <datoteka>\".\n"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Size: "
-msgstr "VeliÄina: "
+#: ../../printer/printerdrake.pm_.c:2271
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Å tampam/skeniram na \"%s\""
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2272
#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "Na koji sektor je želite premjestiti?"
+msgid "Printing/Scanning on \"%s\""
+msgstr "Å tampam/skeniram na \"%s\""
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahamas"
-msgstr "Bahami"
+#: ../../printer/printerdrake.pm_.c:2274
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Å tampam/skeniram na \"%s\""
-#: ../../interactive/stdio.pm:1
+#: ../../printer/printerdrake.pm_.c:2275
#, c-format
-msgid "Do you want to click on this button?"
-msgstr "Da li želite kliknuti na ovo dugme?"
+msgid "Printing on the printer \"%s\""
+msgstr "Å tampam na Å¡tampaÄ \"%s\""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Manual configuration"
-msgstr "RuÄno podeÅ¡avanje"
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+msgid "Close"
+msgstr "Zatvori"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "search"
-msgstr "pretraživanje"
+#: ../../printer/printerdrake.pm_.c:2281
+msgid "Print option list"
+msgstr "Lista opcija za štampu"
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2301
+#, fuzzy, 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."
+"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 ""
-"Ovaj paket uÄitava izabranu mapu tastature kao Å¡to je podeÅ¡eno u\n"
-"/etc/sysconfig/keyboard, što se može podesiti korištenjem kbdconfig\n"
-"programa. Ovaj servis biste trebali ostaviti ukljuÄenim na većini raÄunara."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (installation display driver)"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "Zeroconf ime raÄunara ne smije sadržavati ."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr " Prihvati/odbij ICMP eho."
+"Vaš HP višenamjenski uređaj je automatski konfigurisan kako bi mogao "
+"skenirati. Sada možete skenirati sa komandne linije pomoću komande "
+"\"scanimage\" (\"scanimage -d hp:%s\" kako biste naveli scanner ako imate "
+"viÅ¡e od jednog) ili koristeći grafiÄke okoline \"xscanimage\" ili \"xsane\". "
+"Ako koristite GIMP, možete također skenirati koristeći odgovarajuću stavku u "
+"meniju \"File\"/\"Acquire\". Za više informacija, pogledajte još i \"man "
+"scanimage\" i \"man sane-hp\" na komandnoj liniji.\n"
+"\n"
+"Nemojte koristiti \"scannerdrake\" za ovaj uređaj!"
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2322
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."
+"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 ""
-"Syslog je sistem pomoću kojeg mnogi servisi zapisuju poruke\n"
-"u razne sistemske dnevnike (logove). Pametno je uvijek imati pokrenuti "
-"syslog."
-
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown/Others"
-msgstr "Nepoznat/Ostali"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
-msgstr "Nije detektovana TV kartica!"
-
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Options"
-msgstr "Opcije"
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+msgid "Reading printer data..."
+msgstr "ÄŒitam podatke o Å¡tampaÄu..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Å tampaÄ \"%s\" je sada podeÅ¡en kao podrazumjevani Å¡tampaÄ."
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+msgid "Transfer printer configuration"
+msgstr "PremjeÅ¡tanje konfiguracije Å¡tamapÄa"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2365
#, 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."
+"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 ""
-"Sada podeÅ¡avate OK laserski winprinter. Ovi Å¡tampaÄi\n"
-"koriste jedan poseban komunikacijski protokol i stoga rade samo kada su "
-"spojeni na prvom paralelnom portu. Ako je vaÅ¡ Å¡tampaÄ spojen na neki drugi "
-"port ili na print server molim spojite Å¡tampaÄ na prvi paralelni port prije "
-"nego Å¡to odÅ¡tampate testnu stranicu. InaÄe Å¡tampaÄ neće raditi. Drajver će "
-"ignorisati vaše podešenje tipa konekcije."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr "generacija procesora (npr: 8 za PentiumIII, ...)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detected"
-msgstr "Auto prepoznat"
+"Možete kopirati konfiguraciju Å¡tampaÄa koju ste napravili za spooler %s u % "
+"s, vaÅ¡ trenutni spooler. Svi podaci o konfiguraciji (naziv Å¡tampaÄa, opis, "
+"lokacija, tip konekcije kao i podrazumjevane opcije) će biti preuzeti, ali "
+"zadaci Å¡tampe neće biti prebaÄeni.\n"
+"Svi redovi ne mogu biti prebaÄeni zbog sljedećih razloga:\n"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2368
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)."
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
msgstr ""
-"Sada ćete podesiti instalacioni server, koji se sastoji od PXE servera (DHCP "
-"servera) i TFTP servera.\n"
-"Sa ovom opcijom, moći ćete instalirati Mandrake Linux na druge raÄunare na "
-"vaÅ¡oj lokalnoj mreži koristećiovaj raÄunar kao izvor.\n"
-"\n"
-"Prije nego što nastavite, provjerite da li ste podesili mrežni/internet "
-"pristup koristeći drakconnect.\n"
-"\n"
-"Napomena: potreban vam je poseban Mrežni adapter da biste podesili Lokalnu "
-"mrežu (LAN)."
+"CUPS ne podržava Å¡tampaÄe na Novell serverima ili Å¡tampaÄekoji Å¡alju podatke "
+"u komandama slobodnog oblika.\n"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2370
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"
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
msgstr ""
-"OSS (Open Sound System) je bio prvi API za zvuk. To je API neovisan od "
-"operativnog sistema (dostupan je na većini UNIX(tm) sistema), ali je vrlo "
-"elementaran i ograniÄen.\n"
-"Pored toga, svi OSS drajveri ponovo izmiÅ¡ljaju toÄak.\n"
-"\n"
-"ALSA (Advanced Linux Sound Architecture) je modularizovana arhitektura koja\n"
-"podržava priliÄno velik broj ISA, USB i PCI kartica.\n"
-"\n"
-"Ona takođe pruža mnogo viši API nego OSS.\n"
-"\n"
-"Da biste koristili ALSA, možete koristiti:\n"
-"- stari API kompatibilan sa OSSom\n"
-"- novi ALSA API koji pruža mnoge napredne mogućnosti, ali zahtijeva upotrebu "
-"ALSA biblioteke.\n"
+"PDQ podržava samo lokalne Å¡tampaÄe, udaljene LPD Å¡tampaÄei Socket/TCP "
+"Å¡tampaÄe.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr "LPD i LPRng ne podržavaju IPP Å¡tampaÄe.\n"
+
+#: ../../printer/printerdrake.pm_.c:2374
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"
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
msgstr ""
-"Nema dovoljno slobodnog prostora za 1 MB bootstrap! Instalacija će "
-"nastaviti, ali da biste bootali vaš sistem, morate kreirati bootstrap "
-"particiju u DiskDrake-u"
+"Pored toga, redovi koji nisu kreirani ovim programom ili sa \"foomatic-"
+"configure\" ne mogu biti premješteni."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2375
msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
msgstr ""
-"Molim izaberite Å¡tampaÄ koji želite podesiti ili unesite naziv ureÄ‘aja / "
-"naziv datoteke na ulaznoj liniji"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
-msgstr "Odbij"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
-msgstr "LOCAL"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
-msgstr "HFS"
+"\n"
+"TakoÄ‘er Å¡tampaÄi konfigurisani sa PPD datotekama koje su osigurali njihovi "
+"proizvoÄ‘aÄi ili sa vlastitim CUPS drajverima ne mogu biti prebaÄeni."
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2376
msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
msgstr ""
-"HardDrake ispituje hardware i eventualno podešava novi ili\n"
-"izmjenjeni hardware."
+"\n"
+"OznaÄite Å¡tampaÄe koje ćete prebacivati i kliknite na \n"
+"\"Prebaci\"."
-#: ../../fs.pm:1
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Kreiram i formatiram datoteku %s"
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
+msgstr "Nemoj prebacivati Å¡tampaÄe"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
-msgstr "ako je postavljeno na da, provjerava dodavanje/brisanje sgid datoteka."
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
+msgstr "Prebaci"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2392
#, 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"
-msgstr ""
-"Za Å¡tampaÄ HP LaserJet 1000 potrebno je da uploadujete firmwer prilikom "
-"paljenja. Potrebno je da skinete Windows drajvere sa HPove web stranice "
-"(firmware koji se nalazi na CDu koji je doÅ¡ao uz Å¡tampaÄ ne radi) i izvadite "
-"firmware datoteku. Ovo ćete uraditi tako što ćete raspakovati "
-"samoraspakujuću '.exe' datoteku koristeći 'unzip' alat, te potražiti "
-"datoteku 'sihp1000.img'. Kopirajte ovu datoteku u direktorij '/etc/printer'. "
-"Ovdje će je automatski pronaći uploader skripta i poslati Å¡tampaÄu svaki put "
-"kada Å¡tampaÄ bude spojen i upaljen.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "Izaberite postojeći LVM na koji ćete dodati"
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
+msgstr ""
+"Å tampaÄ pod imenom \"%s\" već postoji pod %s: \n"
+"Kliknite na \"Prebaci\" da to prepišete.\n"
+"Možete takoÄ‘er unijeti novo ime ili preskoÄiti ovaj Å¡tampaÄ."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "xfs restart"
-msgstr "restart xfs-a"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr "Naziv Å¡tampaÄa bi se trebao sastojati od slova, brojeva i donje linije"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -13065,7901 +9044,5637 @@ msgstr ""
"Å tampaÄ \"%s\" već postoji,\n"
"da li sigurno želite prepisati ovu konfiguraciju?"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Koristi skenere na raÄunaru:"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
-msgstr "Ništa izabrano"
+#: ../../printer/printerdrake.pm_.c:2413
+msgid "New printer name"
+msgstr "Novo ime Å¡tampaÄa"
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "No partition available"
-msgstr "Nema dostupnih particija"
+msgid "Transferring %s..."
+msgstr "Prebacujem %s ..."
-#: ../../standalone/printerdrake:1
+#: ../../printer/printerdrake.pm_.c:2427
#, c-format
-msgid "Printer Management \n"
-msgstr "Upravljanje Å¡tampaÄima \n"
+msgid ""
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
+msgstr ""
+"Prebacili ste vaÅ¡ bivÅ¡i podrazumjevani Å¡tampaÄ (\"%s\"),Da li će to takoÄ‘er "
+"biti podrazumjevani Å¡tampaÄ podnovim sistemom Å¡tampe %s?"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Domain Name Resolver"
+#: ../../printer/printerdrake.pm_.c:2437
+msgid "Refreshing printer data..."
+msgstr "Osvježavam podatke o Å¡tampaÄu..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
-msgstr "KljuÄ enkripcije (joÅ¡ jednom)"
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+msgid "Configuration of a remote printer"
+msgstr "PodeÅ¡avanje udaljenog Å¡tampaÄa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Naziv samba share-a nedostaje!"
+#: ../../printer/printerdrake.pm_.c:2446
+msgid "Starting network..."
+msgstr "Pokrećem mrežu..."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
-msgstr "Završena True Type instalacija"
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+msgid "Configure the network now"
+msgstr "Sada podesite mrežu"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detection in progress"
-msgstr "Detekcija u toku"
+#: ../../printer/printerdrake.pm_.c:2480
+msgid "Network functionality not configured"
+msgstr "Mrežna funkcionalnost nije podešena"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Izgradi cijeli kernel -->"
+#: ../../printer/printerdrake.pm_.c:2481
+msgid ""
+"You are going to configure a remote printer. This needs working network "
+"access, but your network is not configured yet. If you go on without network "
+"configuration, you will not be able to use the printer which you are "
+"configuring now. How do you want to proceed?"
+msgstr ""
+"Sada ćete podesiti udaljeni Å¡tampaÄ. Ovo zahtjeva aktivan pristup mreži, ali "
+"vaša mreža još uvijek nije podešena. Ako želite nastaviti bez podešavanja "
+"mreže, nećete moći koristiti Å¡tampaÄ koji sada podeÅ¡avate. Kako želite da "
+"nastavimo?"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "modem"
-msgstr "modem"
+#: ../../printer/printerdrake.pm_.c:2484
+msgid "Go on without configuring the network"
+msgstr "Nastavi bez podešavanja mreže"
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "Dobro došli u %s"
+#: ../../printer/printerdrake.pm_.c:2518
+msgid ""
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
+"Podešavanje mreže koje je napravljeno tokom instalacije sada ne može biti "
+"pokrenuto. Molim provjerite da li će mreža postati dostupna nakon bootanja "
+"sistema i popravite podešenja koristeći Mandrake Kontrolni centar, sekcija "
+"\"Mreža i Internet\"/\"Konekcija\", a zatim podesite Å¡tampaÄ, ponovo "
+"koristeći Mandrake Kontrolni centar, sekcija \"Hardver\"/\"Å tampaÄ\""
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2519
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"
+"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 ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003 MandrakeSoft.\n"
-"Ovo je slobodan softver i može se distribuirati pod uslovima GNU GPLa.\n"
-"\n"
-"Upotreba: \n"
+"Mrežni pristup nije aktivan i nije mogao biti pokrenut. Molimo provjerite "
+"vašu konfiguraciju i vaš hardware. Onda ponovo pokušajte podesiti udaljeni "
+"Å¡tampaÄ."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Molim ubacite disketu Update Modula u jedinicu %s"
+#: ../../printer/printerdrake.pm_.c:2529
+msgid "Restarting printing system..."
+msgstr "Restartujem sistem za štampu ..."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
-msgstr "Boot ekran"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "high"
+msgstr "visok"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-"Sljedeći Å¡tampaÄ\n"
-"\n"
-"%s%s\n"
-"je direktno spojen na vaš sistem"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "paranoid"
+msgstr "paranoiÄan"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Dijeljenje Å¡tampaÄa na raÄunarima/mrežama:"
+msgid "Installing a printing system in the %s security level"
+msgstr "Instaliram sistem za štampu na sigurnosnom nivou: %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2570
#, c-format
msgid ""
+"You are about to install the printing system %s on a system running in the %"
+"s security level.\n"
"\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 ""
+"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"
-"Komanda \"%s\" takoÄ‘er omogućava izmjenu opcija za pojedinaÄni zadatak "
-"štampe. Jednostavno dodajte željena podešenja na komandnu liniju, npr. \"%s "
-"<datoteka>\". "
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "DrakClock"
-msgstr "Drakbackup"
-
-#: ../../modules/interactive.pm:1
-#, 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."
+"Do you really want to configure printing on this machine?"
msgstr ""
-"U nekim sluÄajevima, %s drajver treba imati dodatne informacije za\n"
-"ispravan rad, iako on obiÄno radi dobro i bez njih. Želite li navesti neke\n"
-"ekstra opcije za njega ili dozvoliti drajveru da ispita vaÅ¡ raÄunar za sve\n"
-"informacije koje mu trebaju? Povremeno, ispitivanje može zaglaviti raÄunar,\n"
-"ali ne bi trebalo izazvati nikakvu štetu."
+"Sada ćete instalirati sistem za štampu %s na sistemu koji je na sigurnosnom "
+"nivou % s.\n"
+"\n"
+"Ovaj sistem za Å¡tampu pokreće demon (pozadinski proces) koji Äeka zadatke "
+"Å¡tampe i rjeÅ¡ava ih. Ovom demonu takoÄ‘e mogu pristupiti drugi raÄunari putem "
+"mreže, tako da je to moguća taÄka napada. Stoga se tek rijetki od odabranih "
+"demona pokreću na ovom sigurnosnom nivou.\n"
+"\n"
+"Da li zaista želite podesiti Å¡tampanje na ovom raÄunaru?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "Neispravna oznaka CDa. Oznaka diska je %s."
+#: ../../printer/printerdrake.pm_.c:2604
+msgid "Starting the printing system at boot time"
+msgstr "Pokrećem sistem za štampu tokom boota"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2605
#, 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"
-"- Daemon, %s via:\n"
+"Do you want to have the automatic starting of the printing system turned on "
+"again?"
msgstr ""
+"Sistem za Å¡tampu (%s) se neće pokrenuti automatski prilikom boota raÄunara.\n"
+"\n"
+"Moguće je da je automatsko pokretanje iskljuÄeno prilikom promjene na viÅ¡i "
+"nivo sigurnosni, poÅ¡to je sistem za Å¡tampu moguća taÄka napada.\n"
"\n"
-"- Demon (%s) preko:\n"
+"Da li želite da ponovo ukljuÄite automatsko pokretanje sistema za Å¡tampu?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "Kuba"
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
+msgstr "Provjeravam instalirani software..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr "Oktobar"
+#: ../../printer/printerdrake.pm_.c:2630
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "Uklanjam %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Belize"
-msgstr "Belize"
+#: ../../printer/printerdrake.pm_.c:2636
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "Instaliram pakete..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Tražim nove Å¡tampaÄe..."
+#: ../../printer/printerdrake.pm_.c:2685
+msgid "Select Printer Spooler"
+msgstr "Izaberite spooler Å¡tampaÄa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
-msgstr " (više sesija)"
+#: ../../printer/printerdrake.pm_.c:2686
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Koji sistem štampanja (spooler) želite koristiti?"
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
-msgstr "Vrijeme za boot kernela"
+#: ../../printer/printerdrake.pm_.c:2720
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
+msgstr "PodeÅ¡avam Å¡tampaÄ \"%s\"..."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
-"Your card is supported by XFree %s which may have a better support in 2D."
-msgstr ""
-"Vaša kartica može imati podršku za 3D hardversko ubrzanje ali samo sa\n"
-"XFree %s. Vašu karticu takođe podržava XFree %s koji može imati bolju "
-"podršku za 2D."
+#: ../../printer/printerdrake.pm_.c:2731
+msgid "Installing Foomatic..."
+msgstr "Instaliram Foomatic..."
-#: ../../security/help.pm:1
-#, c-format
-msgid " Activate/Disable daily security check."
-msgstr " Aktiviraj/iskljuÄi dnevnu sigurnosnu provjeru."
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr "Opcije Å¡tampaÄa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-R.\n"
+#: ../../printer/printerdrake.pm_.c:2810
+#, fuzzy
+msgid "Preparing Printerdrake..."
+msgstr "Pripremam PrinterDrake..."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
-msgstr "UkljuÄi libsafe ako libsafe postoji na vaÅ¡em sistemu"
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+msgid "Configuring applications..."
+msgstr "Podešavam aplikacije..."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX Particioni Äarobnjak je naÅ¡ao sljedeća rjeÅ¡enja:"
+#: ../../printer/printerdrake.pm_.c:2845
+msgid "Would you like to configure printing?"
+msgstr "Da li želite podesiti štampanje?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "Mađarska"
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
+msgstr "Sistem štampe: "
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2915
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
-"Izaberite vašeg providera.\n"
-" Ako nije na listi, izaberite Nije na listi"
+"Sljedeći Å¡tampaÄi su podeÅ¡eni. Dvokliknite na Å¡tampaÄ da promjenite njegove "
+"postavke; da ga uÄinite podrazumjevanim Å¡tampaÄem; da vidite informacije o "
+"njemu; ili da uÄinite Å¡tampaÄ na udaljenom CUPS serveru upotrebljivim iz "
+"Star Office/OpenOffice.org/GIMP-a."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
+#: ../../printer/printerdrake.pm_.c:2916
+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 ""
+"Sljedeli Å¡tampaÄi su podeÅ¡eni. Kliknite dva puta na neki od njih za izmjenu "
+"postavki; ako ga želite uÄiniti podrazumjevanim Å¡tampaÄem; ili da biste "
+"vidjeli informacije o njemu."
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Koristi moju Windows particiju"
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
+msgstr ""
+"Osvježi listu Å¡tampaÄa (kako bi bili prikazani svi dostupni CUPS Å¡tampaÄi)"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
+#: ../../printer/printerdrake.pm_.c:2960
+msgid "Change the printing system"
+msgstr "Promjenite sistem štampe"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Server"
-msgstr "LDAP Server"
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+msgid "Normal Mode"
+msgstr "Normalni mod"
-#: ../../services.pm:1
-#, 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."
-msgstr ""
-"PCMCIA podrška služi za ispravan rad uređaja kao što su mrežne\n"
-"kartice i modemi, prikljuÄenih na PCMCIA port (obiÄno na laptopima).\n"
-"Neće se pokrenuti sve dok nije ispravno konfigurisan, tako da je\n"
-"sigurno imati ga instaliranog i na raÄunarima kojima nije potreban."
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+msgid "Do you want to configure another printer?"
+msgstr "Želite li podesiti joÅ¡ jedan Å¡tampaÄ?"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Choose your country"
-msgstr "Izaberite vašu državu"
+#: ../../printer/printerdrake.pm_.c:3211
+msgid "Modify printer configuration"
+msgstr "Izmjeni konfiguraciju Å¡tampaÄa"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:3213
#, c-format
msgid ""
-"\n"
-"- System Files:\n"
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
-"\n"
-"- sistemske datoteke:\n"
+"Å tampaÄ %s\n"
+"Å ta želite da izmjenite na ovom Å¡tampaÄu?"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
-msgstr "Samostalni alati"
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
+msgstr "Uradi!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Where"
-msgstr "Gdje"
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+msgid "Printer connection type"
+msgstr "Tip konekcije Å¡tampaÄa"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "but not matching"
-msgstr "but not matching"
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+msgid "Printer name, description, location"
+msgstr "Naziv Å¡tampaÄa, opis, lokacija"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
-msgstr ""
-"Ovdje možete izabrati alternativni drajver (ili OSS ili ALSA) za vaÅ¡u zvuÄnu "
-"karticu (%s)."
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
+msgstr "ProizvoÄ‘aÄ Å¡tampaÄa, model, drajver"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Podešavam PCMCIA kartice..."
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
+msgstr "ProizvoÄ‘aÄ Å¡tampaÄa, model"
-#: ../../common.pm:1
-#, c-format
-msgid "kdesu missing"
-msgstr "nedostaje kdesu"
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
+msgstr "Podesi Å¡tampaÄ kao podrazumjevani"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s traži korisniÄko ime...\n"
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Dodaj ovaj Å¡tampaÄ u Star Office/OpenOffice.org/GIMP"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
-msgstr "KljuÄ enkripcije"
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Ukloni ovaj Å¡tampaÄ iz Star/Open Offica"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+msgid "Print test pages"
+msgstr "Å tampaj testnu stranicu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
-msgstr ""
-"Ova postavka će biti aktivirana nakon instalacije.\n"
-"Tokom instalacije, trebate koristiti desnu Control\n"
-"tipku da prebacujete između raznih rasporeda tastature."
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+msgid "Know how to use this printer"
+msgstr "Saznaj kako koristiti ovaj Å¡tampaÄ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "Uskršnje ostrvo"
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+msgid "Remove printer"
+msgstr "Ukloni Å¡tampaÄ"
-#: ../../mouse.pm:1
+#: ../../printer/printerdrake.pm_.c:3282
#, fuzzy, c-format
-msgid "Automatic"
-msgstr "Automatska IP"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Instalacija bootloadera nije uspjela. Došlo je do sljedeće greške:"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "EIDE/SCSI channel"
+msgid "Removing old printer \"%s\"..."
+msgstr "Uklanjam stari Å¡tampaÄ \"%s\" ..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Podesi Å¡tampaÄ kao podrazumjevani"
+#: ../../printer/printerdrake.pm_.c:3307
+msgid "Default printer"
+msgstr "Podrazumjevani Å¡tampaÄ"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:3308
#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Provjerite da li je %s ispravan put?"
+msgid "The printer \"%s\" is set as the default printer now."
+msgstr "Å tampaÄ \"%s\" je sada podeÅ¡en kao podrazumjevani Å¡tampaÄ."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "particiji %s"
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Dodajem Å¡tampaÄ u Star Office/OpenOffice.org/GIMP"
-#: ../../security/level.pm:1
+#: ../../printer/printerdrake.pm_.c:3312
#, c-format
-msgid "Paranoid"
-msgstr "ParanoiÄan"
+msgid ""
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+msgstr "Å tampaÄ \"%s\" je uspjeÅ¡no dodan u Star Office/OpenOffice.org/GIMP."
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:3313
#, c-format
-msgid "NIS"
-msgstr "NIS"
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgstr "Nisam uspio dodati Å¡tampaÄ \"%s\" u Star Office/OpenOffice.org/GIMP."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- Obriši korisnika"
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Uklanjam Å¡tampaÄ iz Star/Open Offica"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:3317
#, c-format
-msgid "Location on the bus"
-msgstr "Lokacija na sabirnici"
+msgid ""
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
+msgstr "Å tampaÄ \"%s\" je uspjeÅ¡no uklonjen iz Star/Open Offica."
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
-msgid "No printer found!"
-msgstr "Nije pronaÄ‘en nijedan Å¡tampaÄ!"
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+msgstr "Nisam uspio ukloniti Å¡tampaÄ \"%s\" iz Star/Open Offica."
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:3325
#, c-format
-msgid "the vendor name of the device"
-msgstr "naziv proizvoÄ‘aÄa ureÄ‘aja"
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Da li želite da uklonite Å¡tampaÄ \"%s\"?"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Erase entire disk"
-msgstr "PobriÅ¡i Äitav disk"
+#: ../../printer/printerdrake.pm_.c:3329
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
+msgstr "Uklanjam Å¡tampaÄ \"%s\" ..."
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
+#: ../../raid.pm_.c:35
#, c-format
-msgid " (Default)"
-msgstr " (Default)"
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "Ne mogu dodati particiju na _formatiran_ RAID md%d"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Automatic reconfiguration"
-msgstr "Automatsko ponovno podešavanje"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
+msgstr "mkraid nije uspio"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Receiving Speed:"
-msgstr "Brzina prijema:"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid nije uspio (možda nedostaju raidtools?)"
-#: ../../lang.pm:1
+#: ../../raid.pm_.c:153
#, c-format
-msgid "Turks and Caicos Islands"
-msgstr "Turks i Caicos ostrva"
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "Nema dovoljno particija za RAID nivo %d\n"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Ip"
-msgstr "Bez IP"
+#: ../../security/main.pm_.c:36
+msgid ""
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
+"\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
+"\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\n"
+"\n"
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
+"\n"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
+msgstr ""
-#: ../../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
-#, c-format
-msgid "<- Previous"
-msgstr "<- Nazad"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Nivo sigurnosti"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Transfer Now"
-msgstr "Prebaci odmah"
+#: ../../security/main.pm_.c:77
+#, fuzzy, c-format
+msgid " (default value: %s)"
+msgstr " (Default)"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password and network authentication methods"
-msgstr "Podesi root šifru i metodu mrežne autentikacije"
+#: ../../security/main.pm_.c:113
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Nivo sigurnosti"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "Ravno / složeno po grupama"
+#: ../../security/main.pm_.c:115
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Udaljena administracija"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Themes"
-msgstr "Teme"
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "Network Options"
+msgstr "Više opcija"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "Opcije: %s"
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "System Options"
+msgstr "Više opcija"
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
msgstr ""
-"Trenutno koristite %s kao boot manager.\n"
-"Kliknite na Podesi kako bi se pokrenuo Äarobnjak za podeÅ¡avanje."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "Podešavanje OKI winprinter-a"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
-msgstr "Saint Helena"
+#: ../../security/main.pm_.c:191
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Podešavanje nivoa sigurnosti"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Paralelni port #%s"
+#: ../../security/main.pm_.c:197
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Molimo saÄekajte, pripremam instalaciju"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Security Level"
-msgstr "Sigurnosni nivo"
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr "Pokreni ALSA zvuÄni sistem (Advanced Linux Sound Architecture)"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
+msgstr "Anacron periodiÄni pokretaÄ komandi."
+
+#: ../../services.pm_.c:21
msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-"Neki koraci nisu dovršeni.\n"
-"\n"
-"Da li zaista želite izaći sada?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "Sudan"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "Poljska (qwertz)"
+"apmd se koristi za nadgledanje statusa baterija i logovanje preko\n"
+"sysloga. TakoÄ‘er se može koristiti za gaÅ¡enje raÄunara kada su baterije "
+"potrošene."
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
-msgstr "Sirija"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:23
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?"
+"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 ""
-"Da li je vaÅ¡ Å¡tampaÄ multifunkcijski ureÄ‘aj od HPa ili Sony-ja (OfficeJet, "
-"PSC, LaserJet 1100/1200/1220/3200/3300 sa skenerom, DeskJet 450, Sony IJP-"
-"V100), ili HP PhotoSmart ili HP LaserJet 2200?"
+"Pokreće komande zakazane putem at komande u vrijeme koje je zadato\n"
+"prilikom pokretanja at-a, te pokreće pozadinske komande kada je nizak "
+"prosjeÄni nivo opterećenja."
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
-#, c-format
+#: ../../services.pm_.c:25
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"
+"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 ""
-"Dobro došli u %s izbornik operativnog sistema!\n"
-"\n"
-"Izaberite operativni sistem na listi gore ili\n"
-"saÄekajte %d sekundi do pokretanja podrazumjevanog OSa.\n"
-"\n"
+"cron je standardan UNIX program koji pokreće programe koje zada korisnik\n"
+"u periodiÄnim terminima. vixie cron dodaje veći broj mogućnosti osnovnom\n"
+"UNIX cronu, ukljuÄujući bolju sigurnost i moćnije opcije za podeÅ¡avanje."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "Portugalska"
+#: ../../services.pm_.c:28
+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 ""
+"GPM dodaje podršku za miša tekst-baziranim aplikacijama kao što je\n"
+"Midnight Commander. On također omogućuje konzolne isjeci/zaljepi operacije\n"
+"pomoću miÅ¡a i ukljuÄuje podrÅ¡ku za pop-up menije na konzoli."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
-msgstr "Naziv loopback datoteke: "
+#: ../../services.pm_.c:31
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
+msgstr ""
+"HardDrake pokreće probavanje hardware-a i opcionalno konfiguriše\n"
+"novi/izmjenjeni hardware."
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "Adresa DNS servera treba biti u formatu 1.2.3.4"
+#: ../../services.pm_.c:33
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+msgstr ""
+"Apache je World Wide Web server. Koristi se za posluživanje HTML\n"
+"datoteka i CGI."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Control key"
-msgstr "Lijeva Control tipka"
+#: ../../services.pm_.c:34
+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 ""
+"Demon za nadgledanje Interneta (obiÄno nazvan inetd) pokreće\n"
+"raznolike druge Internet servise po potrebi. Odgovoran je za pokretanje\n"
+"raznih servisa, kao Å¡to su telnet, ftp, rsh i rlogin. IskljuÄivanje inetd-a\n"
+"iskljuÄuje sve servise za koje je on nadležan."
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
-msgstr "Srbija"
+#: ../../services.pm_.c:38
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
+"Pokrenite filtriranje paketa za Linux kernel seriju 2.2 kako\n"
+"biste postavili firewall i zaÅ¡titili vaÅ¡ raÄunar od mrežnih napada."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Newzealand"
-msgstr "Novi Zeland"
+#: ../../services.pm_.c:40
+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 ""
+"Ovaj paket uÄitava izabranu mapu tastature kao Å¡to je podeÅ¡eno u\n"
+"/etc/sysconfig/keyboarc. Ovo može biti izabrano korištenjem kbdconfig\n"
+"programa. Možete ovo ostaviti ukljuÄenim na većini raÄunara."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
-msgstr "Ovaj direktorij treba ostati unutar korijenskog file sistema"
+#: ../../services.pm_.c:43
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
+msgstr ""
+"Automatsko regenerisanje kernel zaglavlja u /boot za\n"
+"/usr/include/linux/{autoconf,version}.h"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
-msgstr "preko mreže"
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr "Automatsko prepoznavanje i podešavanje hardware-a tokom boota."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
-msgstr "CapsLock tipka"
+#: ../../services.pm_.c:46
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
+msgstr ""
+"Linuxconf će ponekad obaviti raznolike zadatke tokom boota\n"
+"kako bi se održala sistemska konfiguracija."
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "Instalacija bootloadera"
+#: ../../services.pm_.c:48
+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 ""
+"lpd je demon za štampu koji je potreban da bi lpr radio ispravno.\n"
+"To je u osnovi server koji dodjeljuje zadatke Å¡tampe Å¡tampaÄu/ima."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Izaberite veliÄinu memorije vaÅ¡e grafiÄke karte"
+#: ../../services.pm_.c:50
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
+"Linux Virtuelni Server, koristi se za izgradnju servera visokih performansi\n"
+"i dostupnosti."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../services.pm_.c:52
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))."
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
msgstr ""
-"UkljuÄi/iskljuÄi crontab i at za korisnike.\n"
-"\n"
-"Stavi korisnicima kojima je to dozvoljeno u /etc/cron.allow i /etc/at.allow "
-"(vidi man stranice at(1) i crontab(1))."
+"named (BIND) je Domain Name Server (DNS) koji se koristi za pretvaranje "
+"imena raÄunara u IP adrese."
-#: ../../standalone.pm:1
-#, c-format
+#: ../../services.pm_.c:53
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."
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
-"[OPTIONS]\n"
-"Aplikacija za povezivanje na mrežu/Internet i nadzor veze\n"
-"\n"
-"--defaultintf interface : podesi podrazumijevani interfejs\n"
-"--connect : spoji se na Inernet, ako nisi već spojen\n"
-"--disconnect : prekini vezu s Internetom, ako si spojen\n"
-"--force : koristi se sa (dis)connect : prinudi operaciju.\n"
-"--status : vraća 1 ako je spojen, u suprotnom 0.\n"
-"--quiet : bez interaktivnosti. Koristi se sa (dis)connect."
+"Montira i demontira sve Network File System (NFS), SMB (Lan\n"
+"Manager/Windows) i NCP (NetWare) taÄke montiranja."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
-msgstr "Raspon dinamiÄkih IP adresa:"
+#: ../../services.pm_.c:55
+msgid ""
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
+msgstr ""
+"Aktivira/deaktivira sve mrežne interfejse koji su konfigurisani\n"
+"za pokretanje tokom boota."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "Naziv LVMa?"
+#: ../../services.pm_.c:57
+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 ""
+"NFS je popularan protokol za dijeljenje datoteka preko TCP/IP mreža.\n"
+"Ovaj servis omogućuje funkcionalnost NFS servera, koji je podešen putem\n"
+"/etc/exports datoteke."
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "Uklonjeni su neki uređaji u \"%s\" klasi hardvera:\n"
+#: ../../services.pm_.c:60
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
+msgstr ""
+"NFS je popularan protokol za dijeljenje datoteka preko TCP/IP mreža.\n"
+"Ovaj servis omogućuje NFS funkcionalnost zakljuÄavanja datoteka."
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Pronađeno %s %s interfejsa"
+#: ../../services.pm_.c:62
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+"Automatski ukljuÄuje numlock bravu tipaka pod konzolom i\n"
+"XFree tokom boota."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Install"
-msgstr "Post Install"
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr "PodrÅ¡ka za OK 4w i kompatibilne windows Å¡tampaÄe"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The internal domain name"
-msgstr "Interno domensko ime"
+#: ../../services.pm_.c:65
+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 ""
+"PCMCIA podrÅ¡ka je obiÄno za podržavanje stvari kao Å¡to je\n"
+"ethernet i modemi u laptopima. Neće se pokrenuti dok se ne\n"
+"konfiguriÅ¡e tako da je sigurno imati ga instaliranog na raÄunarima\n"
+"kojima nije potreban."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ kartice"
+#: ../../services.pm_.c:68
+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 ""
+"Portmapper upravlja RPC konekcijama, koje koriste protokoli kao što\n"
+"su NFS i NIS. Portmap server mora raditi na raÄunarima koje služe kao\n"
+"serveri za protokole koji koriste RPC mehanizam."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "logdrake"
+#: ../../services.pm_.c:71
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
+msgstr ""
+"Postfix je Mail Transport Agent, tj. program koji šalje poštu sa jednog "
+"raÄunara na drugu."
-#: ../../standalone.pm:1
-#, c-format
+#: ../../services.pm_.c:72
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."
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
msgstr ""
-"Aplikacija za uvoz i nadzor fontova \n"
-"--windows_import : uvezi sa dostupnih windows particija.\n"
-"--xls_fonts : prikaži sve postojeće fontove koje prijavljuje xls\n"
-"--strong : jaka provjera fonta.\n"
-"--install : instaliraj bilo koji font ili direktorij.\n"
-"--uninstall : deinstaliraj bilo koji font ili direktorij.\n"
-"--replace : zamijeni font ako vec postoji\n"
-"--application : 0 bez aplikacija.\n"
-" : 1 podrška za sve poznate aplikacije.\n"
-" : ime_aplikacije kao so za staroffice \n"
-" : i gs za ghostscript za samo tu aplikaciju."
-
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+"Spašava i vraća sistemski raspon entropije za veću kvalitetu\n"
+"generisanja sluÄajnih brojeva."
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
msgstr ""
-"Izaberite disketnu jedinicu koju želite koristiti da napravite boot disketu"
+"Dodjeljuje sirove uređaje blokovskim urećajima (kao što su\n"
+"particije hard diska) za upotrebu aplikacijama kao što je Oracle"
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr "LILO sa tekstualnim menijem"
+#: ../../services.pm_.c:76
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
+msgstr ""
+"Routed demon omogućuje da se automatska IP tabela rutiranja podešava\n"
+"preko RIP protokola. Mada se RIP Äesto koristi na malim mrežama, "
+"kompleksniji\n"
+"protokoli rutiranja su potrebni za složene mreže."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
+#: ../../services.pm_.c:79
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
msgstr ""
+"rstat protokol omogućava korisnicima na mreži da dobave\n"
+"mjeru performansi za svaki raÄunar na toj mreži"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Sve (bez firewalla)"
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"rusers protokol omogućava korisnicima na mreži da identificiraju\n"
+"ko je prijavljen na ostalim raÄunarima."
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
-msgstr "Morate navesti image kernela"
+#: ../../services.pm_.c:83
+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 ""
+"rwho protokol omogućava udaljenim korisnicima da dobiju listu svih\n"
+"korisnika prijavljenih na raÄunar na kojem radi rwho demon (sliÄno fingeru)."
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", višenamjenski uređaj na USBu"
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
+msgstr "Pokreće zvuÄni sistem na vaÅ¡em raÄunaru"
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Do"
-msgstr "Uradi"
+#: ../../services.pm_.c:86
+msgid ""
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
+msgstr ""
+"Syslog je pogodnost pomoću koje mnogi demoni zapisuju poruke\n"
+"u razne sistemske dnevnike. Dobra ideja je uvijek imati pokrenuti syslog."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Kontaktiram mirror da bih saznao listu dostupnih paketa..."
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr "Pokreće drajvere za vaše usb uređaje."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "Litvanska AZERTY (stara)"
+#: ../../services.pm_.c:89
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+msgstr "Pokreće X Font Server (ovo je nužno da bi XFree radio)."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "Brazilska (ABNT-2)"
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Izaberite koji servisi se trebaju pokretati automatski prilikom boota"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
-msgstr "IP adresa raÄunara/mreže:"
+#: ../../services.pm_.c:127
+msgid "Printing"
+msgstr "Å tampa"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-"koordinate progresne trake y\n"
-"tj. njenog lijevog ugla"
+#: ../../services.pm_.c:128
+msgid "Internet"
+msgstr "Internet"
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System installation"
-msgstr "Instalacija sistema"
+#: ../../services.pm_.c:131
+msgid "File sharing"
+msgstr "Dijeljenje datoteka"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint Vincent and the Grenadines"
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+msgid "System"
+msgstr "Sistem"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid reboot by the console user."
-msgstr "Dozvoli/zabrani restartovanje raÄunara iz konzole."
+#: ../../services.pm_.c:138
+msgid "Remote Administration"
+msgstr "Udaljena administracija"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Open"
-msgstr "/Datoteka/_Otvori"
+#: ../../services.pm_.c:146
+msgid "Database Server"
+msgstr "Server baze podataka"
-#: ../../standalone/drakpxe:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "Lokacija datoteke auto_install.cfg"
+msgid "Services: %d activated for %d registered"
+msgstr "Servisi: %d aktiviran za %d registrovan"
-#: ../../any.pm:1
-#, c-format
-msgid "Open Firmware Delay"
-msgstr "ÄŒekanje na Open Firmware"
+#: ../../services.pm_.c:191
+msgid "Services"
+msgstr "Servisi"
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
-msgstr "Mađarska"
+#: ../../services.pm_.c:203
+msgid "running"
+msgstr "aktivan"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Zealand"
-msgstr "Novi Zeland"
+#: ../../services.pm_.c:203
+msgid "stopped"
+msgstr "zaustavljen"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Color configuration"
-msgstr "Podešavanje boje"
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
+msgstr "Servisi i demoni"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../services.pm_.c:222
msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
+"No additional information\n"
+"about this service, sorry."
msgstr ""
-"Već postoje odreÄ‘ena ograniÄenja, a viÅ¡e automatskih provjera se pokreće "
-"svaku noć."
+"Nema dodatnih informacija\n"
+"o ovom servisu, izvinite."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "please choose the date to restore"
-msgstr "molim izaberite datum za vraćanje"
+#: ../../services.pm_.c:229
+msgid "On boot"
+msgstr "Prilikom boota"
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
-msgstr "Nizozemski Antili"
+#: ../../services.pm_.c:241
+msgid "Start"
+msgstr "Start"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr "Prebacujem sa ext2 na ext3"
+#: ../../services.pm_.c:241
+msgid "Stop"
+msgstr "Stop"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Hvala vam što ste odabrali Mandrake Linux 9.0"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Browse to new restore repository."
+#: ../../share/advertising/01-thanks.pl_.c:10
+#, fuzzy
+msgid "Welcome to the Open Source world"
+msgstr "Dobro došli u svijet otvorenog izvornog koda"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/01-thanks.pl_.c:11
+#, fuzzy
msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
msgstr ""
-"\n"
-"Dobro doÅ¡li u ÄŒarobnjak za podeÅ¡avanje Å¡tampaÄa\n"
-"\n"
-"Ovaj Äarobnjak vam omogućuje da instalirate lokalne ili udaljene Å¡tampaÄe "
-"koji će biti koriÅ¡teni sa ovog raÄunara, a takoÄ‘er i sa drugih raÄunara na "
-"mreži.\n"
-"\n"
-"On će od vas tražiti sve potrebne informacije kako bi Å¡tampaÄ bio podeÅ¡en, a "
-"vama omogućen pristup svim dostupnim drajverima, opcijama drajvera i vrstama "
-"konekcije Å¡tampaÄa."
+"Uspjeh MandrakeSofta je baziran na principima Slobodnog softvera. Vaš novi "
+"operativni sistem je rezultat zajedniÄkog rada dijela Linux zajednice Å¡irom "
+"svijeta"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and %d unknown printers"
-msgstr "i %d nepoznatih Å¡tampaÄa"
+#: ../../share/advertising/02-community.pl_.c:9
+#, fuzzy
+msgid "Get involved in the Free Software world"
+msgstr "Pridružite se svijetu Slobodnog softvera"
-#: ../../standalone/harddrake2:1
-#, 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)"
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
msgstr ""
-"Rani Intel Pentium procesori imaju bug u numeriÄkom koprocesoru koji ne "
-"postiže potrebnu preciznost prilikom izvršavanja dijeljenja sa tekućim "
-"zarezom (FDIV)"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../share/advertising/02-community.pl_.c:11
+#, fuzzy
msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-"Backup kvota je prekoraÄena!\n"
-"Iskorišteno je %d MB od alociranih %d MB."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
msgstr ""
-"Nije pronađena nijedna ISDN PCI kartica. Molim izaberite jednu na idućem "
-"ekranu."
-
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
-msgstr "GB"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
-msgstr "Molim navedite korisniÄko ime"
+"Upoznajte Open Source zajednicu i postanite njen Älan. UÄite, poduÄavajte i "
+"pomozite drugima tako što ćete pristupiti mnogim forumima za diskusiju koje "
+"ćete naći na našim \"Community\" stranicama"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
-msgstr "Omogući boot sa CDa?"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Spoji se na Internet"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Simply reboot"
+#: ../../share/advertising/03-internet.pl_.c:10
+#, fuzzy
+msgid ""
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
+"Mandrake Linux 8.2 pruža najbolji softver za pristup svemu što Internet "
+"pruža: Pretražujte web i pregledajte animacije pomoću Mozilla-e i "
+"Konquerora, razmjenjujte email i organizirajte vaÅ¡e liÄne podatke pomoću "
+"Evolution i KMail-a, i mnogo drugog"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid " enter `void' for void entry"
-msgstr " unesite `void' za prazan unos"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
msgstr ""
-"Backupi na mediju koji se ne može montirati - Koristite Katalog za vraćanje"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
-msgstr "Januar"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password history length"
-msgstr "Dužina historije šifara"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Winmodem connection"
-msgstr "Winmodem konekcija"
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/04-multimedia.pl_.c:11
+#, fuzzy
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."
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-"\n"
-"ÄŒestitamo, vaÅ¡ Å¡tampaÄ je sada instaliran i podeÅ¡en!\n"
-"\n"
-"Možete Å¡tampati koristeći komandu \"Å tampaj\" u vaÅ¡oj aplikaciji (obiÄno se "
-"nalazi u meniju \"Datoteka).\n"
-"\n"
-"Ako želite dodati, ukloniti ili promijeniti ime Å¡tampaÄa, ili ako želite "
-"promijeniti neke podrazumjevane postavke (ulazni put papira, kvaliteta "
-"Å¡tampe...), izaberite opciju \"Å tampaÄ\" u \"Hardware\" sekciji Mandrake "
-"Kontrolnog centra."
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "Sada možete pokrenuti xawtv (pod X Window sistemom!) !\n"
+"Mandrake Linux 8.2 vam omogućuje da potjerate vaÅ¡ multimedijalni raÄunar do "
+"krajnjih granica! Koristite najnoviji softver za slušanje muzike i audio "
+"datoteka, mijenjajte i organizujte vaše slike i fotografije, gledajte TV i "
+"video-snimke i mnogo drugog"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Nemam dovoljno swap prostora da dovršim instalaciju, molim dodajte još"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Igre"
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "%s on %s"
-msgstr "%s na %s"
+#: ../../share/advertising/05-games.pl_.c:10
+#, fuzzy
+msgid ""
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
+msgstr ""
+"Mandrake Linux 8.2 pruža najbolje Open Source igre - arkadne, akcione, "
+"karte, sportovi, strategije, ..."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid remote root login."
-msgstr "Dozvoli/zabrani prijavu kao root sa udaljenog raÄunara"
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+msgid "Mandrake Control Center"
+msgstr "Mandrake Kontrolni centar"
-#: ../../help.pm:1
-#, c-format
+#: ../../share/advertising/06-mcc.pl_.c:10
+#, fuzzy
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 ""
-"GNU/Linux koristi vrijeme u GMT (Greenwich Mean Time) obliku i prevodi ga\n"
-"u lokalno vrijeme u skladu sa vremenskom zonom koju ste izabrali. Ako je\n"
-"sat na vaÅ¡oj matiÄnoj ploÄi podeÅ¡en na lokalno vrijeme, možete iskljuÄiti "
-"ovu\n"
-"opciju iskljuÄujući \"%s\", Å¡to će saopÅ¡titi\n"
-"GNU/Linuxu da su sistemski sat i hardverski sat u istoj vremenskoj zoni.\n"
-"Ovo je korisno kada se na raÄunaru takoÄ‘e nalazi i drugi operativni sistem\n"
-"kao što je Windows.\n"
-"\n"
-"Opcija \"%s\" će automatski regulisati sat\n"
-"spajajući se na udaljeni time server na Internetu. Kako bi ova mogućnost\n"
-"radila, morate imati ispravnu Internet konekciju. Najbolje je izabrati time\n"
-"server negdje u vašoj blizini. Ova opcija će ustvari instalirati time "
-"server\n"
-"koji mogu koristiti i drugi raÄunari u vaÅ¡oj lokalnoj mreži."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
-msgstr "Ne mogu napraviti log datoteku!"
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
+msgstr ""
+"Mandrake Linux 8.2 Kontrolni centar je jedinstvena lokacija za puno "
+"prilagođavanje i podešavanje vašeg Mandrake sistema"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Koja je vaša vremenska zona?"
+#: ../../share/advertising/07-desktop.pl_.c:9
+msgid "User interfaces"
+msgstr "KorisniÄki okoliÅ¡"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Koristi .backupignore datoteke"
+#: ../../share/advertising/07-desktop.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
-msgstr "Gvineja"
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Programiranje"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Sistem je sada spojen na Internet."
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "South Georgia i South Sandwich ostrva"
+#: ../../share/advertising/08-development.pl_.c:11
+#, fuzzy
+msgid ""
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
+msgstr ""
+"Mandrake Linux 8.2 je najbolja platforma za razvoj aplikacija. Otkrijte moć "
+"GNU gcc kompajlera kao i najboljih razvojnih okolina koje su Open Source"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Japan (broadcast)"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../share/advertising/09-server.pl_.c:10
+#, fuzzy
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."
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
-"Monitor\n"
-"\n"
-" Instalacioni program obiÄno može prepoznati i podesiti monitor koji\n"
-"je povezan na vaÅ¡ raÄunar. Ako se ovo ne desi, možete odabrati sa ove\n"
-"liste monitor koji je ustvari povezan na vaÅ¡ raÄunar."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "Mozambik"
+"Pretvorite vaÅ¡ raÄunar u moćan server sa svega nekoliko klikova miÅ¡em: Web "
+"server, email, firewall, file i print server, ..."
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "Ikona"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Kill those programs"
-msgstr "pristup X programima"
+#: ../../share/advertising/10-mnf.pl_.c:10
+msgid ""
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Molim izaberite šta želite backupovati"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
+msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 boja (8 bita)"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "Čitaj-piši"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "VeliÄina: %s\n"
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+#, fuzzy
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
+msgstr ""
+"Čitav raspon Linux rješenja, kao i posebne ponude za proizvode i "
+"'potrepštine', dostupni su u našoj online radnji"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Hostname: "
-msgstr "Hostname: "
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a rule"
-msgstr "Dodaj pravilo"
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "VeliÄina chunka %s\n"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
-msgstr "Izgradite budućnost Linuxa!"
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
+msgid ""
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printer"
-msgstr "Lokalni Å¡tampaÄ"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Greška pri pristupu disketi, ne mogu montirati uređaj %s"
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr "[--file=mojfajl] [--word=mojarijec] [--explain=regexp] [--alert]"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "MandrakeExpert"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL konekcija"
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Bez podešavanja, molim kliknite na Čarobnjak ili Više opcija.\n"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+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 ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Error!"
-msgstr "Greška!"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "cable connection detected"
-msgstr "otkrivena kablovska konekcija"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "Pristup odbijen pri prenosu %s na %s"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Prijavi grešku"
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
-msgstr "Dominika"
+#: ../../share/advertising/17-mdkclub.pl_.c:10
+msgid ""
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "Smanji"
+#: ../../standalone.pm_.c:21
+#, fuzzy
+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 ""
+" 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."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Rezolucija: %s\n"
+#: ../../standalone.pm_.c:40
+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 name.\n"
+msgstr ""
-#: ../../install2.pm:1
-#, c-format
+#: ../../standalone.pm_.c:51
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)"
+"[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 ""
-"Ne mogu pristupiti kernelskim modulima koji odgovaraju vašem kernelu "
-"(nedostaje datoteka %s), Å¡to obiÄno znaÄi da je vaÅ¡a boot disketa zastarjela "
-"u odnosu na instalacioni medij (napravite noviju boot disketu)"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone.pm_.c:57
msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+"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 ""
-"Molim izaberite ispravan port. Na primjer, \"COM1\" port pod Windows\n"
-"operativnim sistemom, pod GNU/Linuxom se zove \"ttyS0\" ."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Sljedeći paketi će biti uklonjeni"
+#: ../../standalone.pm_.c:68
+msgid ""
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
+msgstr ""
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr "Spoji se na Internet"
+#: ../../standalone.pm_.c:70
+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)"
+msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
-msgstr "Koristi postojeću particiju"
+#: ../../standalone.pm_.c:82
+#, fuzzy
+msgid "[keyboard]"
+msgstr "Tastatura"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "Kanadska (Kvebek)"
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Uređaj miša: %s\n"
+#: ../../standalone.pm_.c:84
+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 ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Ponovo izaberi ispravne fontove"
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone.pm_.c:94
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."
+"[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 ""
-"Opcije\n"
-"\n"
-" Ovdje možete izabrati da li želite da vaÅ¡ raÄunar automatski preÄ‘e na\n"
-"grafiÄki interfejs nakon ukljuÄivanja. OÄito, trebate odgovoriti \"%s\" ako\n"
-"će vaÅ¡ raÄunar imati ulogu servera ili ako imate problema sa\n"
-"podešavanjem ekrana."
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert Corporate"
+#: ../../standalone.pm_.c:99
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
+msgstr ""
-#: ../../standalone.pm:1
-#, c-format
+#: ../../standalone.pm_.c:100
msgid ""
" [everything]\n"
" XFdrake [--noauto] monitor\n"
" XFdrake resolution"
msgstr ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake rezolucija"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Write protection"
-msgstr "Zaštita od pisanja"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "You've not selected any font"
-msgstr "Niste izabrali nijedan font"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Language"
-msgstr "Jezik"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer model selection"
-msgstr "Izbor modela Å¡tampaÄa"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone.pm_.c:114
#, c-format
msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
-"Nakon promjene tipa particije %s, svi podaci na toj particiji će biti "
-"izgubljeni"
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "ISDN adapters"
-msgstr "ISDN kartica"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekundi"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Ubacite praznu disketu u jedinicu %s"
+#: ../../standalone.pm_.c:168
+msgid "Installing packages..."
+msgstr "Instaliram pakete..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Trebate unijeti ispravan URI!"
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Molimo izvršite logout i zatim koristitite Ctrl-Alt-BackSpace"
-#: ../../network/isdn.pm:1
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr "Pronašao sam interfejs \"%s\". Želite li ga koristiti ?"
+msgid "Please relog into %s to activate the changes"
+msgstr "Molimo ponovo se prijavite na %s radi aktiviranja izmjena"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
-msgstr "Ponovo podesi interfejs i DHCP server"
+#: ../../standalone/drakTermServ_.c:239
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "PremjeÅ¡tanje konfiguracije Å¡tamapÄa"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound configuration"
-msgstr "Podešavanje zvuka"
+#: ../../standalone/drakTermServ_.c:253
+#, fuzzy
+msgid "Enable Server"
+msgstr "Server baze podataka"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
-msgstr "Foto testna strana"
+#: ../../standalone/drakTermServ_.c:260
+#, fuzzy
+msgid "Disable Server"
+msgstr "Server baze podataka"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "RuÄno particioniranje diska"
+#: ../../standalone/drakTermServ_.c:268
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS server"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Unesite ime Å¡tampaÄa i komentare"
+#: ../../standalone/drakTermServ_.c:275
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS server"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
+#: ../../standalone/drakTermServ_.c:283
+msgid "Etherboot Floppy/ISO"
msgstr ""
-"Sljedeći Å¡tampaÄi\n"
-"\n"
-"%s%s\n"
-"su direktno spojeni na vaš sistem"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "You don't have any winmodem"
-msgstr "Nemate winmodem"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: %s"
-msgstr "tip: %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "SlovaÄka (QWERTY)"
-#: ../../standalone/drakbackup:1
-#, 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."
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
msgstr ""
-"Ovo bi trebala biti lista lokalnih korisnika razdvojenih zarezom ili email "
-"adresa kojima želite poslati rezultate backupa. Biće vam potreban ispravno "
-"podešen mail transfer agent na vašem sistemu."
-
-#: ../../standalone/draksound:1
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Nije izabrana zvuÄna kartica!"
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "Port miša"
+#: ../../standalone/drakTermServ_.c:294
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Dodaj korisnika"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
-msgstr "Provjeri neupotrijebljene raÄune"
+#: ../../standalone/drakTermServ_.c:299
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP klijent"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:328
msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
+"\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
+"\n"
msgstr ""
-"Morate restartovati Display Manager da bi izmjene stupile na snagu. \n"
-"(na konzoli restartujte dm servis)"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Ftp Server"
-msgstr "FTP server"
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr "Uganda"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
-msgstr "konverzija %s fontova"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "vrsta sabirnice na koju je spojen miš"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:332
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"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
-" * \"%s\": here you'll be able to fine control which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
msgstr ""
-"DrakX će vam pružiti sažetak raznih informacija koje su prikupljene\n"
-"o vašem sistemu. Ovisno o instaliranom hardveru, vjerovatno imate\n"
-"neke ili sve od navedenih stavki. PojedinaÄna stavka se sastoji od\n"
-"onoga Å¡to je potrebno podesiti, nakon Äega slijedi kraći sažetak trenutne\n"
-"konfiguracije. Da biste ovo izmijenili, kliknite na odgovarajuće dugme \"%s"
-"\".\n"
-"\n"
-"* \"%s\": provjerite trenutnu mapu tastature i izmijenite je ako je\n"
-"potrebno.\n"
-"\n"
-"* \"%s\": provjerite trenutno izabranu državu. Ako se nalazite negdje\n"
-"drugo, kliknite na dugme \"%s\" i izaberite neku drugu. Ako se vaša\n"
-"zemlja ne nalazi na prikazanoj listi, kliknite na dugme \"%s\" da biste\n"
-"dobili cjelokupnu listu zemalja.\n"
-"\n"
-"* \"%s\": DrakX automatski određuje vašu vremensku zonu\n"
-"na osnovu države koju ste izabrali. Možete kliknuti na dugme \"%s\"\n"
-"ako ovo nije ispravno.\n"
-"\n"
-"* \"%s\": provjerite trenutnu konfiguraciju miša i klinite na dugme da je\n"
-"promijenite ako je to potrebno.\"\n"
-"\n"
-"* \"%s\": klikanjem na dugme \"%s\" otvoriće se Äarobnjak za\n"
-"podeÅ¡avanje Å¡tampaÄa. Pogledajte odgovarajuće poglavlje ''VodiÄa za\n"
-"poÄetnike'' za viÅ¡e informacija o podeÅ¡avanju novog Å¡tampaÄa. Interfejs\n"
-"koji je tamo prikazan je sliÄan onom koji će biti koriÅ¡ten tokom "
-"instalacije.\n"
-"\n"
-"* \"%s\": ako je na vaÅ¡em sistemu otkrivena zvuÄna kartica, ona će\n"
-"biti prikazana ovdje. Ako primjetite da prikazana zvuÄna kartica nije ona\n"
-"koja je ustvari dio vašeg sistema, možete kliknuti na dugme i odabrati neki\n"
-"drugi drajver.\n"
-"\n"
-"* \"%s\": DrakX će podesiti vaÅ¡ grafiÄki interfejs za rad na\n"
-"rezoluciji \"800x600\" ili \"1024x768\". Ako vam to ne odgovara, kliknite\n"
-"na dugme \"%s\" kako biste drugaÄije podesili vaÅ¡ interfejs.\n"
+
+#: ../../standalone/drakTermServ_.c:365
+msgid ""
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\n"
"\n"
-"* \"%s\": ako je na vašem sistemu prepoznata TV kartica, biće\n"
-"prikazana ovdje. Ako imate TV karticu koja nije prepoznata, kliknite na\n"
-"dugme \"%s\" kako biste pokuÅ¡ali podesiti je ruÄno.\n"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
"\n"
-"* \"%s\": ako je na vašem sistemu otkrivena ISDN kartica, ona\n"
-"će biti prikazana ovdje. Možete kliknuti na dugme \"%s\" da promijenite\n"
-"parametre vezane za nju.\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\n"
"\n"
-"* \"%s\": ako želite, možete podesiti vaš Internet pristup ili pristup\n"
-"lokalnoj mreži.\n"
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
"\n"
-"* \"%s\": ovdje možete promijeniti nivo sigurnosti sistema koji\n"
-"je podešen ranije.\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
"\n"
-"* \"%s\": ako planirate povezati vaÅ¡ raÄunar na Internet, pametno je\n"
-"zaštititi ga od upada postavljanjem firewalla. Pogledajte odgovarajuće\n"
-"poglavlje ''VodiÄa za poÄetnike'' za detalje o podeÅ¡avanju firewalla.\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
"\n"
-"* \"%s\": ako želite promijeniti postavke bootloadera, kliknite na to\n"
-"dugme. Ovo bi trebalo biti rezervisano za napredne korisnike.\n"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \n"
"\n"
-"* \"%s\": ovdje možete fino podešavati koji servisi će biti pokrenuti\n"
-"na vaÅ¡em raÄunaru. Ako planirate koristiti ovaj raÄunar kao server,\n"
-"dobra je ideja još jednom pregledati ove postavke."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr "Komori"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "May"
-msgstr "Maj"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yaboot mode"
-msgstr "Yaboot mod"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Opšti miš sa 3 dugmeta"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
-msgstr "USA (kablovska)"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
msgstr ""
-"Ne mogu pokrenuti LiLo!\n"
-"Izvršite \"lilo\" kao root u komandnoj liniji da dovršite instalaciju LiLo "
-"teme."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Izaberite drugi medij za vraćanje"
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Software Manager"
-msgstr "Upravljanje programima"
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
+msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
-msgstr "Ponovo pošalji"
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD in place - continue."
-msgstr "CD na mjestu - nastavljam."
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
+msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "KB"
-msgstr "KB"
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Network & Internet"
-msgstr "Mreža i Internet"
+#: ../../standalone/drakTermServ_.c:587
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nije konektovan"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Litvanska \"fonetska\" QWERTY"
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Net Boot Images"
-msgstr "Net Boot Images"
+#: ../../standalone/drakTermServ_.c:604
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Obriši"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Dijeljenje lokalnih skenera"
+#: ../../standalone/drakTermServ_.c:611
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Sve izabrano"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
+#: ../../standalone/drakTermServ_.c:668
+msgid ""
+"!!! Indicates the password in the system database is different than\n"
+" the one in the Terminal Server database.\n"
+"Delete/re-add the user to the Terminal Server to enable login."
msgstr ""
-"Plug'n'Play probanje nije uspjelo. Molim izaberite odgovarajući monitor"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Detect again USB key"
+#: ../../standalone/drakTermServ_.c:673
+#, fuzzy
+msgid "Add User -->"
+msgstr "Dodaj korisnika"
+
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Services and deamons"
-msgstr "Servisi i demoni"
+#: ../../standalone/drakTermServ_.c:720
+#, fuzzy, c-format
+msgid "type: %s"
+msgstr "Tip: "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Ime udaljenog raÄunara nedostaje!"
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "with /usr"
-msgstr "sa /usr"
+#: ../../standalone/drakTermServ_.c:773
+#, fuzzy
+msgid "Thin Client"
+msgstr "DHCP klijent"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Network"
-msgstr "Mreža"
+#: ../../standalone/drakTermServ_.c:775
+#, fuzzy
+msgid "Allow Thin Clients"
+msgstr "DHCP klijent"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr "Automatski prepoznaj Å¡tampaÄe spojene na Microsoft Windows raÄunare"
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "Ova šifra je previše jednostavna"
+#: ../../standalone/drakTermServ_.c:821
+#, fuzzy
+msgid "<-- Edit Client"
+msgstr "DHCP klijent"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "Chkconfig poštuje msec pravila"
+#: ../../standalone/drakTermServ_.c:837
+#, fuzzy
+msgid "Delete Client"
+msgstr "DHCP klijent"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "SlovaÄka (QWERTZ)"
+#: ../../standalone/drakTermServ_.c:843
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Podešavam..."
-#: ../advertising/06-development.pl:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:876
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."
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
msgstr ""
-"Pisanje i izmjena programa u raznim jezicima kao što su Perl, Python, C i C+"
-"+ nikad nije bilo lakše, zahvaljujući GNU gcc 3 i najboljim Open Source "
-"razvojnim okolinama."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No devices found"
-msgstr "Nije pronađen nijedan uređaj"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Stvarno minimalna instalacija (posebno bez urpmi)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use daemon"
-msgstr "Koristi demon"
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
+msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "Baza korisnika"
+#: ../../standalone/drakTermServ_.c:901
+#, fuzzy
+msgid "Netmask:"
+msgstr "Netmask"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Dodaj ovaj Å¡tampaÄ u Star Office/OpenOffice.org/GIMP"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Dodatni CUP serveri:"
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
msgstr ""
-"Izaberite jedan od automatski prepoznatih Å¡tampaÄa sa liste ili unesite ime "
-"raÄunara ili IP i opcionalno broj porta (podrazumjeva se 9100) u polja za "
-"unos."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr "Gdje želite montirati uređaj %s?"
+#: ../../standalone/drakTermServ_.c:929
+#, fuzzy
+msgid "Domain Name:"
+msgstr "Ime domena"
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "Alžir"
+#: ../../standalone/drakTermServ_.c:937
+#, fuzzy
+msgid "Name Servers:"
+msgstr "NIS server"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network"
-msgstr "Vrati putem mreže"
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd-veliÄina"
+#: ../../standalone/drakTermServ_.c:1001
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Napredno podešavanje"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:1002
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."
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-"U sluÄaju da postoji viÅ¡e raznih servera za vaÅ¡u karticu, sa ili bez 3D\n"
-"ubrzanja, traži se da izaberete server koji najbolje odgovara vašim\n"
-"potrebama."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tBackupi koriste tar i gzip\n"
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
+msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set as default"
-msgstr "Postavi kao podrazumijevano"
+#: ../../standalone/drakTermServ_.c:1018
+#, fuzzy
+msgid "Write Config"
+msgstr "rekonfiguriši"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
+#: ../../standalone/drakTermServ_.c:1120
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Molimo ubacite boot disketu koja je upotrebljena u jedinicu %s"
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on this machine"
-msgstr "PodeÅ¡eno na ovom raÄunaru"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Obje Control tipke istovremeno"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
+msgstr ""
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - prikazuje ovu pomoć \n"
+#: ../../standalone/drakTermServ_.c:1129
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Nema pogodne disketne jedinice"
-#: ../../standalone.pm:1
+#: ../../standalone/drakTermServ_.c:1138
#, 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 "Etherboot ISO image is %s"
msgstr ""
-"[OPTION]...\n"
-" --no-confirmation ne postavljaj prvo pitanje u MandrakeUpdate modu\n"
-" --no-verify-rpm ne provjeravaj potpise paketa\n"
-" --changelog-first prikaži changelog prije filelist u opisnom prozoru\n"
-" --merge-all-rpmnew predloži merge svih pronađenih .rpmnew/.rpmsave "
-"datoteka"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Postavljam podrazumjevani Å¡tampaÄ..."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Interfejs %s (koristeći modul %s)"
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Generating preview ..."
-msgstr "Generišem pregled..."
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
-#: ../../network/network.pm:1
-#, 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)."
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
-"Frekvencija bi trebala imati završetak k, M ili G (na primjer, \"2.46G\" za "
-"frekvenciju 2.46 GHz) ili dodajte odgovarajući broj nula (0)."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ignore"
-msgstr "ignoriši"
+#: ../../standalone/drakautoinst_.c:40
+msgid "Error!"
+msgstr "Greška!"
-#: ../../security/help.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, c-format
+msgid "I can't find needed image file `%s'."
+msgstr "Ne mogu pronaći potrebnu image datoteku '%s'"
+
+#: ../../standalone/drakautoinst_.c:43
+msgid "Auto Install Configurator"
+msgstr "Podešavanje auto instalacije"
+
+#: ../../standalone/drakautoinst_.c:44
msgid ""
-"Allow/Forbid X connections:\n"
+"You are about to configure an Auto Install floppy. This feature is somewhat "
+"dangerous and must be used circumspectly.\n"
"\n"
-"- ALL (all connections are allowed),\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"
-"- LOCAL (only connection from local machine),\n"
+"For maximum safety, the partitioning and formatting will never be performed "
+"automatically, whatever you chose during the install of this computer.\n"
"\n"
-"- NONE (no connection)."
+"Do you want to continue?"
msgstr ""
-"Dozvoli/zabrani X konekcije:\n"
+"Sada ćete podesiti Auto Instalacijsku disketu. Ova opcija je pomalo opasna i "
+"mora biti korištena uz pažnju.\n"
"\n"
-"- SVE (sve konekcije su dozvoljene),\n"
+"Sa ovom opcijom bićete u mogućnosti da ponovite instalaciju koju ste obavili "
+"na ovom raÄunaru, pri ćemu ćete biti interaktivno upitani za neke korake, "
+"kako biste promjenili njihove vrijednosti.\n"
"\n"
-"- LOKAL (samo konekcije sa lokalne mašine),\n"
+"Za maksimalnu sigurnost, particioniranje i formatiranje nikad neće biti "
+"obavljeno automatski, bez obzira šta izaberete tokom instalacije na ovaj "
+"raÄunar.\n"
"\n"
-"- NIÅ TA (nisu dozvoljene konekcije)."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", višenamjenski uređaj na paralelnom portu #%s"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "serijski"
+"Da li želite nastaviti?"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
-msgstr "DVD-ROM"
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Gruzijska (\"latiniÄni\" izgled)"
+#: ../../standalone/drakautoinst_.c:62
+#, fuzzy
+msgid "replay"
+msgstr "Ponovi"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
-msgstr "Nabavite najbolje proizvode kod strateških partnera Mandrake Linuxa"
+#: ../../standalone/drakautoinst_.c:66
+msgid "Automatic Steps Configuration"
+msgstr "Automatska konfiguracija koraka"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:67
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
msgstr ""
-"Sada možete navesti opcije za modul %s.\n"
-"Obratite pažnju da adrese trebate unositi sa prefiksom 0x kao npr. '0x123'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "Kenija"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Najprije koristite ``Demontiraj''"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing mtools packages..."
-msgstr "Instaliram mtools pakete..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a root partition"
-msgstr "Morate navesti root particiju"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "first step creation"
-msgstr "kreiranje prvog koraka"
+"Molimo izaberite za svaki korak da li ćete ga ponoviti kao i u vašoj "
+"instalaciji ili će se obaviti ruÄno"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Obje Shift tipke istovremeno"
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Pravim auto instalacijsku disketu"
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:139
msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
+"\n"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-" --id <id_label> - uÄitaj HTML help stranicu koja se odnosi na "
-"id_label\n"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select a scanner model"
-msgstr "Izaberite model skenera"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
-msgstr "Prihvati/odbij neispravne IPv4 poruke o grešci."
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Podešavanje Drakbackup-a"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr "SaÄuvaj kao..."
+"\n"
+"Dobro došli.\n"
+"\n"
+"Parametri automatske instalacije su dostupni u odjeljcima lijevo"
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr "Koreja (Sjeverna)"
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
+msgstr "ÄŒestitamo!"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:235
msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
msgstr ""
-"Interfejs još nije podešen.\n"
-"Pokrenite Äarobnjak za podeÅ¡avanje u glavnom prozoru"
+"Disketa je uspješno napravljena.\n"
+"Sada možete ponoviti vašu instalaciju."
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System configuration"
-msgstr "Podešavanje sistema"
+#: ../../standalone/drakautoinst_.c:273
+msgid "Auto Install"
+msgstr "Auto instalacija"
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "Autologin"
+#: ../../standalone/drakautoinst_.c:343
+msgid "Add an item"
+msgstr "Dodaj stavku"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin Password"
-msgstr "Administratorska šifra domena"
+#: ../../standalone/drakautoinst_.c:350
+msgid "Remove the last item"
+msgstr "Ukloniti zadnju stavku"
-#: ../advertising/05-desktop.pl:1
-#, 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, ..."
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
msgstr ""
-"Prilagodite savrÅ¡eno svoj raÄunar vaÅ¡im potrebama pomoću 11 dosupnih "
-"Mandrake Linux korisniÄkih okolina koje se mogu potpuno prilagoditi: KDE "
-"3.1, GNOME 2.2, Window Maker, ..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer ..."
-msgstr "PodeÅ¡avam Å¡tampaÄ ..."
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, 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)"
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
msgstr ""
-"Da bi se osigurao integritet podataka nakon promjene veliÄine, \n"
-"prilikom idućeg pokretanja Windows(TM) biće izvrÅ¡ena provjera datoteÄnog "
-"sistema"
-
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "MB"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
-msgstr "ako je postavljeno na da, izvršava neke provjere rpm baze podataka."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr "DjeviÄanska ostrva (Britanska)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bermuda"
-msgstr "Bermuda"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
-msgstr "kliknite ovdje ako ste sigurni."
+#: ../../standalone/drakbackup_.c:691
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
msgstr ""
-"Nije pronađena konfiguraciona datoteka \n"
-"molim kliknite na Čarobnjak ili Više opcija."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:704
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"
+" DrakBackup Report \n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
+msgstr ""
"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+" DrakBackup Izvještaj \n"
"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+
+#: ../../standalone/drakbackup_.c:705
+msgid ""
"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+" DrakBackup Daemon Report\n"
"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
msgstr ""
-"Ovdje su navedene Linux particije koje već postoje na vašem hard disku.\n"
-"Možete zadržati izbore koje je napravio Äarobnjak, poÅ¡to su oni dobri za\n"
-"uobiÄajene instalacije. Ako napravite neke izmjene, morate, ako niÅ¡ta\n"
-"drugo, definisati root particiju (\"/\"). Nemojte izabrati premalu "
-"particiju\n"
-"ili nećete moći instalirati dovoljno softvera. Ako želite držati vaše "
-"podatke\n"
-"na zasebnoj particiji, trebate takođe napraviti \"/home\" particiju (što je\n"
-"moguće samo ako imate više od jedne Linux particije na raspolaganju).\n"
-"\n"
-"Svaka particija je navedena ovako: \"Ime\", \"Kapacitet\".\n"
"\n"
-"\"Ime\" se sastoji od: \"vrsta hard diska\", \"broj hard diska\", \"broj\n"
-"particije\" (na primjer, \"hda1\").\n"
+" DrakBackup Izvještaj o demonima\n"
"\n"
"\n"
-"\"Vrsta hard diska\" je \"hd\" ako je vaš hard disk IDE, a \"sd\" ako je\n"
-"u pitanju SCSI hard disk.\n"
+
+#: ../../standalone/drakbackup_.c:709
+msgid ""
"\n"
-"\"Broj hard diska\" je uvijek slovo nakon \"hd\" ili \"sd\". Kod IDE hard\n"
-"diskova:\n"
+" DrakBackup Report Details\n"
"\n"
-" * \"a\" znaÄi \"master hard disk na primarnom IDE kontroleru\";\n"
"\n"
-" * \"b\" znaÄi \"slave hard disk na primarnom IDE kontroleru\";\n"
+msgstr ""
"\n"
-" * \"c\" znaÄi \"master hard disk na sekundarnom IDE kontroleru\";\n"
+" DrakBackup Detalji izvještaja\n"
"\n"
-" * \"d\" znaÄi \"slave hard disk na sekundarnom IDE kontroleru\";\n"
"\n"
-"Kod SCSI hard diskova, \"a\" je \"disk sa najnižim SCSI IDom\", \"b\"\n"
-"je \"drugi najniži SCSI ID\", itd."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Remove"
-msgstr "Pobriši"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr "Lesoto"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr "utopia 25"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Spoji zadatak na komandu"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "Ukloniti loopback datoteku?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "Obala SlonovaÄe"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "novo dinamiÄko ime ureÄ‘aja koje generiÅ¡e kernelov devfs"
-
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "Da"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Koji protokol želite koristiti?"
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+#, fuzzy
+msgid "Total progess"
+msgstr "ukupno napredak"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:785
#, c-format
-msgid "Restore Progress"
-msgstr "Napredak vraćanja"
+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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
-msgstr "Estonija"
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
+msgstr ""
-#: ../../partition_table.pm:1
+#: ../../standalone/drakbackup_.c:801
#, 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 "ERROR: Cannot spawn %s."
msgstr ""
-"Imate rupu u vašoj tabeli particija, ali je ja ne mogu upotrijebiti.\n"
-"Jedino rješenje je da pomjerite vaše primarne particije, kako bi se rupa "
-"našla pored extended particija"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr "Izaberite raÄunar kojem treba omogućiti pristup lokalnim skenerima:"
+msgid "No password prompt on %s at port %s"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Channel"
-msgstr "Kanal"
+#: ../../standalone/drakbackup_.c:819
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Bez šifre"
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "Add"
-msgstr "Dodaj"
+msgid "Permission denied transferring %s to %s"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr " Greška tokom slanja pošte. \n"
+#: ../../standalone/drakbackup_.c:821
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Ne mogu otvoriti %s: %s\n"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid "Keyboard"
-msgstr "Tastatura"
+msgid "%s not responding"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:828
#, c-format
msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
msgstr ""
-"Ubacite CD sa oznakom %s u CD\n"
-"jedinicu pod taÄkom montiranja /mnt/cdrom"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
msgstr ""
-"Brzina bi trebala imati završetak k, M ili G (na primjer, \"11M\" za 11M) "
-"ili dodajte odgovarajući broj nula (0)."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Izaberite konekciju koju želite podesiti"
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
+msgstr ""
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Molim saÄekajre, podeÅ¡avam nivo sigurnosti..."
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Podešavam mrežni uređaj %s"
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
-msgstr "aktiviran"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
+msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
msgstr ""
-"Molim izaberite koji mrežni interfejs želite koristiti za spajanje na DHCP "
-"server."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Pronalazim pakete za unaprjeđenje..."
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
+msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup_.c:1060
#, c-format
-msgid "Mount point: "
-msgstr "TaÄka montiranja: "
+msgid "No tape in %s!"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
-msgstr "obradi sve fontove"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
+msgstr "Backup-uj sistemske datoteke..."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid direct root login."
-msgstr "Dozvoli/zabrani direktan root login."
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+msgid "Hard Disk Backup files..."
+msgstr "Datoteke backup-a hard diska..."
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr " Dozvoli/zabrani broadcast-ovani ICMP eho."
+#: ../../standalone/drakbackup_.c:1236
+msgid "Backup User files..."
+msgstr "Backup-uj korisniÄke datoteke..."
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
-msgstr "Sa X-om"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
+msgstr "Napredak backup-a hard diska..."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Multi-head konfiguracija"
+#: ../../standalone/drakbackup_.c:1290
+msgid "Backup Other files..."
+msgstr "Backup-uj ostale datoteke..."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "No browser available! Please install one"
-msgstr "Nemate nijedan browser! Molim instalirajte neki browser"
+#: ../../standalone/drakbackup_.c:1296
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Koristi traku za backup"
-#: ../../Xconfig/main.pm:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, c-format
msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
"\n"
-"%s"
-msgstr ""
-"Zadržati izmjene?\n"
-"Trenutna konfiguracija je:\n"
+"Drakbackup activities via %s:\n"
"\n"
-"%s"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Ne možete koristiti ReiserFS za particije manje od 32MB"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1319
+#, fuzzy, 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)."
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-"Rwho protokol omogućava udaljenim korisnicima da dobiju listu svih\n"
-"korisnika prijavljenih na raÄunar na kojem radi rwho demon (sliÄno fingeru)."
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "Ime domena"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Dijeljenje lokalnih Å¡tampaÄa"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
-msgstr "UkljuÄi/iskljuÄi libsafe ako je libsafe pronaÄ‘en na sistemu."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Available printers"
-msgstr "Dostupni Å¡tampaÄi"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "NO"
-msgstr "NE"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "Prazno"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
-msgstr "širina teksta"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Gdje želite montirati uređaj %s?"
+"lista datoteka poslana putem FTPa: %s\n"
+" "
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Podrazumjevani lease (u sekundama)"
+#: ../../standalone/drakbackup_.c:1322
+#, fuzzy
+msgid ""
+"\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
+msgstr ""
+"\n"
+"(!) problem sa FTP konekcijom: Nije bilo moguće poslati vaše backup datoteke "
+"putem FTPa.\n"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1340
msgid ""
-"We are now going to configure the %s connection.\n"
"\n"
+"Drakbackup activities via CD:\n"
"\n"
-"Press \"%s\" to continue."
msgstr ""
-"Sada ćemo podesiti konekciju %s.\n"
+
+#: ../../standalone/drakbackup_.c:1345
+msgid ""
"\n"
+"Drakbackup activities via tape:\n"
"\n"
-"Pritisnite \"%s\" za nastavak."
+msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Interfejs \"%s\""
+#: ../../standalone/drakbackup_.c:1354
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "(!) Greška tokom slanja pošte. \n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Sa osnovnom dokumentacijom (preporuÄeno)"
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr "1 dugme"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+msgid "File Selection"
+msgstr "Izbor datoteka"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
+msgstr "Izaberite datoteke ili direktorije i kliknite na 'Dodaj'"
+
+#: ../../standalone/drakbackup_.c:1573
msgid ""
"\n"
-"There are %d unknown printers directly connected to your system"
+"Please check all options that you need.\n"
msgstr ""
"\n"
-"Na vaÅ¡ sistem je spojeno %d nepoznatih Å¡tampaÄa"
+"Molimo ukljuÄite sve potrebne opcije.\n"
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Test"
-msgstr "Test"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea"
-msgstr "Koreja"
+#: ../../standalone/drakbackup_.c:1574
+msgid ""
+"These options can backup and restore all files in your /etc directory.\n"
+msgstr ""
+"Ove opcije mogu spasiti ili vratiti sve datoteke u vašem /etc direktoriju.\n"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Vaš izbor? (podrazumjevano '%s' %s)"
+#: ../../standalone/drakbackup_.c:1575
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Backup sistemskih datoteka. ( /etc direktorij )"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer"
-msgstr "Sirovi Å¡tampaÄ"
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
+msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "zvaniÄno ime proizvoÄ‘aÄa procesora"
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
+msgstr "ZaobiÄ‘i kritiÄne datoteke (passwd, group, fstab)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
-msgstr "Beskorisno bez Terminal servera"
+#: ../../standalone/drakbackup_.c:1578
+msgid ""
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
+msgstr ""
+"Sa ovom opcijom bićete u mogućnosti da vratite bilo koju\n"
+" verziju vašeg /etc direktorija."
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Vendor"
-msgstr "ProizvoÄ‘aÄ"
+#: ../../standalone/drakbackup_.c:1595
+msgid "Please check all users that you want to include in your backup."
+msgstr "Molimo izaberite sve korisnike koje želite ukljuÄiti u vaÅ¡ backup."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s"
-msgstr "Interfejs %s"
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
+msgstr "Ne ukljuÄuj spremnik web preglednika"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "Podešavanje miša"
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
+msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
-msgstr "Izaberite taÄke montiranja"
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+msgid "Remove Selected"
+msgstr "Ukloni izabrano"
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr "U redu"
+#: ../../standalone/drakbackup_.c:1679
+msgid "Windows (FAT32)"
+msgstr "Windows (FAT32)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslavenska (latiniÄno)"
+#: ../../standalone/drakbackup_.c:1714
+msgid "Users"
+msgstr "Korisnici"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "Instaliram"
+#: ../../standalone/drakbackup_.c:1740
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Koristi FTP vezu za backup"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan sa simulacijom toÄkića"
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
-msgstr "Pokreni userdrake"
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Da li je ovo instalacija ili unaprjeđenje?"
+#: ../../standalone/drakbackup_.c:1747
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "ISDN card"
-msgstr "ISDN kartica"
+#: ../../standalone/drakbackup_.c:1748
+#, fuzzy
+msgid ""
+" Transfer \n"
+"Now"
+msgstr "Prebaci"
-#: ../advertising/02-community.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1749
msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-"Podijelite vaše znanje i pomozite izgradnju Linux softvera, pridružite se "
-"diskusijskim grupama na našim \"Community\" stranicama."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-Hard disk.\n"
+#: ../../standalone/drakbackup_.c:1753
+msgid "Please enter the host name or IP."
+msgstr "Molimo unesite ime raÄunara ili IP."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1758
+#, fuzzy
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."
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-"Ovaj korak se aktivira samo ako je na vaÅ¡em raÄunaru pronaÄ‘ena postojeća\n"
-"GNU/Linux particija.\n"
-"\n"
-"DrakX sada treba znati da li želite izvršiti novu instalaciju ili\n"
-"nadogradnju postojećeg Mandrake Linux sistema:\n"
-"\n"
-" * \"%s\": NajÄešće ovo će u potpunosti obrisati stari sistem. Ako želite\n"
-"promijeniti particioniranje starog hard diska ili promijeniti datoteÄni\n"
-"sistem, trebate koristiti ovu opciju. Ali, ovisno o vašoj šemi "
-"particioniranja,\n"
-"možete sprijeÄiti da neki od vaÅ¡ih postojećih podataka budu prepisani.\n"
-"\n"
-" * \"%s\": Ova vrsta instalacije vam omogućuje da updatujete pakete\n"
-"koji su trenutno instalirani na vašem Mandrake Linux sistemu. Vaša trenutna\n"
-"Å¡ema particioniranja i korisniÄki podaci neće biti izmijenjeni. Većina\n"
-"ostalih koraka konfiguracije ostaju kao Å¡to jesu, sliÄno obiÄnoj "
-"instalaciji.\n"
-"\n"
-"Opcija ''Nadogradi'' bi trebala raditi ispravno na Mandrake Linux sistemima\n"
-"koji koriste verziju \"8.1\" ili kasniju. Obavljanje nadogradnje na ranijim\n"
-"verzijama Mandrake Linuxa, prije verzije \"8.1\", nije preporuÄeno."
+"Molimo unesite direktorij za\n"
+" smjeÅ¡taj backupa na ovom raÄunaru."
-#: ../../standalone/drakfont:1
-#, 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"
+#: ../../standalone/drakbackup_.c:1763
+msgid "Please enter your login"
+msgstr "Molimo unesite vaš login"
+
+#: ../../standalone/drakbackup_.c:1768
+msgid "Please enter your password"
+msgstr "Molimo unesite vašu šifru"
+
+#: ../../standalone/drakbackup_.c:1774
+msgid "Remember this password"
+msgstr "Zapamti ovu šifru"
+
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
msgstr ""
-"\n"
-" Copyright (C) 2001-2002 by MandrakeSoft \n"
-"\tDUPONT 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"
-" Hvala:\n"
-" - pfm2afm: \n"
-"\t autor: Ken Borgendale:\n"
-"\t Konvertuje Windows .pfm datoteke u .afm (Adobe Font Metrics)\n"
-" - type1inst:\n"
-"\t autor: James Macnicol: \n"
-"\t Generiše datoteke fonts.dir fonts.scale & Fontmap.\n"
-" - ttf2pt1: \n"
-"\t autor: Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Konvertuje ttf font datoteke u afm i pfb fontove\n"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Å tampaÄ na udaljenom CUPS serveru"
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
+msgstr "Koristi CD/DVDROM za backup"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1882
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
-msgstr "Nisam uspio ukloniti Å¡tampaÄ \"%s\" iz Star/Open Offica."
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
-msgstr "ovdje ako ne."
+#: ../../standalone/drakbackup_.c:1887
+#, fuzzy
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Molimo izaberite vaš CD prostor"
-#: ../../network/network.pm:1
-#, c-format
-msgid "DHCP host name"
-msgstr "DHCP ime raÄunara"
+#: ../../standalone/drakbackup_.c:1893
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Molim ukljuÄite ako koristite CDRW medij"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Maksimalni lease (u sekundama)"
+#: ../../standalone/drakbackup_.c:1899
+msgid "Please check if you are using CDRW media"
+msgstr "Molim ukljuÄite ako koristite CDRW medij"
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Molim izaberite na kojem serijskom portu je spojen vaš miš."
+#: ../../standalone/drakbackup_.c:1905
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Molim ukljuÄite ako želite obrisati vaÅ¡ CDRW prije"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
-msgstr "Da li je radilo ispravno?"
+#: ../../standalone/drakbackup_.c:1906
+#, fuzzy
+msgid " Erase Now "
+msgstr "Prebaci"
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
-msgstr "Montiraj datoteÄni sistem samo za Äitanje."
+#: ../../standalone/drakbackup_.c:1912
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Molim ukljuÄite ako koristite CDRW medij"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "Loš"
+#: ../../standalone/drakbackup_.c:1918
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Molim ukljuÄite ako koristite CDRW medij"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result by mail"
-msgstr "Prijavi rezultate provjere mailom"
+#: ../../standalone/drakbackup_.c:1931
+msgid ""
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
+msgstr ""
+"Molim unesite naziv uređaja vašeg CD Writera\n"
+" npr: 0,1,0"
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
-msgstr "Grenada"
+#: ../../standalone/drakbackup_.c:1964
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Izaberite datoteku"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
-msgstr "PoÄetak DHCP raspona"
+#: ../../standalone/drakbackup_.c:2012
+msgid "Use tape to backup"
+msgstr "Koristi traku za backup"
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "Nesigurno"
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
+msgstr "Molim unesite ime uređaja kojeg ćete koristiti za backup"
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "SSH server"
-msgstr "SSH server"
+#: ../../standalone/drakbackup_.c:2021
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Molim ukljuÄite ako želite obrisati vaÅ¡ CDRW prije"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektora"
+#: ../../standalone/drakbackup_.c:2027
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Molim ukljuÄite ako želite obrisati vaÅ¡ CDRW prije"
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "Ne"
+#: ../../standalone/drakbackup_.c:2033
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Molim ukljuÄite ako želite obrisati vaÅ¡ CDRW prije"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "Gvadalupe"
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
+msgid ""
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
+msgstr ""
+"Molim unesite maksimalnu veliÄinu\n"
+" dozvoljenu za Draxbackup"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Kannada"
-msgstr "Kannada"
+#: ../../standalone/drakbackup_.c:2103
+#, fuzzy
+msgid "Please enter the directory to save to:"
+msgstr "Molimo unesite direktorij za spasiti:"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
-msgstr "ne mogu naći nijedan font.\n"
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+msgid "Use quota for backup files."
+msgstr "Koristi quotu za backup datoteke."
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Želite li da BackSpace vrati Delete u konzoli?"
+#: ../../standalone/drakbackup_.c:2180
+msgid "Network"
+msgstr "Mreža"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Brzina vertikalnog osvježavanja"
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
+msgstr ""
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Prelazim na korak `%s'\n"
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
+msgstr "HardDrive / NFS"
-#: ../../lang.pm:1
-#, c-format
-msgid "Niger"
-msgstr "Niger"
+#: ../../standalone/drakbackup_.c:2195
+#, fuzzy
+msgid "Tape"
+msgstr "Tip"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
+msgstr "svakog sata"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing %s ..."
-msgstr "Uklanjam %s..."
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
+msgstr "dnevno"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No printer"
-msgstr "Nema Å¡tampaÄa"
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
+msgstr "sedmiÄno"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "alert configuration"
-msgstr "postavka upozorenja"
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
+msgstr "mjeseÄno"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "Opcije NetWare Å¡tampaÄa"
+#: ../../standalone/drakbackup_.c:2229
+msgid "Use daemon"
+msgstr "Koristi demon"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "%s BootSplash (%s) preview"
-msgstr "%s BootSplash (%s) pregled"
+#: ../../standalone/drakbackup_.c:2234
+msgid ""
+"Please choose the time \n"
+"interval between each backup"
+msgstr ""
+"Izaberite vremenski interval\n"
+"između svakog backupa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "February"
-msgstr "Februar"
+#: ../../standalone/drakbackup_.c:2240
+msgid ""
+"Please choose the\n"
+"media for backup."
+msgstr ""
+"Molim izaberite medij\n"
+"za backup."
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
-msgstr "Općenito"
+#: ../../standalone/drakbackup_.c:2247
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
+msgstr "Molim budite sigurni da je cron demon aktiviran u vašim servisima."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
-msgstr "/etc/issue* postoji"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
+msgstr "Pošalji mail izvještaj nakon svakog backupa na :"
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "Dodavanje korisnika"
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Podešavanje mreže (%d adaptera)"
+#: ../../standalone/drakbackup_.c:2324
+msgid "What"
+msgstr "Å ta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "April"
-msgstr "April"
+#: ../../standalone/drakbackup_.c:2329
+msgid "Where"
+msgstr "Gdje"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Deactivate now"
-msgstr "Zaustavi sada"
+#: ../../standalone/drakbackup_.c:2334
+msgid "When"
+msgstr "Kada"
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Nedostaje obavezan paket %s"
+#: ../../standalone/drakbackup_.c:2339
+msgid "More Options"
+msgstr "Više opcija"
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Filipini"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "U redu"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+msgid "Drakbackup Configuration"
+msgstr "Podešavanje Drakbackup-a"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "drakTermServ Overview"
-msgstr "drakTermServ pregled"
+#: ../../standalone/drakbackup_.c:2376
+msgid "Please choose where you want to backup"
+msgstr "Molimo izaberite gdje želite backupovati"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
-msgstr "Naziv reda za štampu"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
+msgstr "na hard disk"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Da li želite koristiti aboot?"
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
+msgstr "preko mreže"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belarusian"
-msgstr "Bjeloruska"
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+#: ../../standalone/drakbackup_.c:2406
+msgid "on Tape Device"
msgstr ""
-"PDQ podržava samo lokalne Å¡tampaÄe, udaljene LPD Å¡tampaÄei Socket/TCP "
-"Å¡tampaÄe.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move files to the new partition"
-msgstr "Prebaci datoteke na novu particiju"
+#: ../../standalone/drakbackup_.c:2449
+msgid "Please choose what you want to backup"
+msgstr "Molim izaberite šta želite backupovati"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2450
+msgid "Backup system"
+msgstr "Backup sistema"
+
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
+msgstr "Backup korisnika"
+
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
+msgstr "RuÄno izaberite korisnika"
+
+#: ../../standalone/drakbackup_.c:2537
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."
+"\n"
+"Backup Sources: \n"
msgstr ""
-"Ovdje dodajte CUPS servere Äije Å¡tampaÄe želite koristiti. Ovo trebate "
-"raditi samo ako serveri ne broadcast-uju informacije o njihovim Å¡tampaÄima "
-"cijeloj lokalnoj mreži."
+"\n"
+"Izvori backup-a: \n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2538
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"
+"- System Files:\n"
+msgstr ""
"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
+"- sistemske datoteke:\n"
+
+#: ../../standalone/drakbackup_.c:2540
+msgid ""
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
+"- User Files:\n"
msgstr ""
"\n"
-"Dobro doÅ¡li u ÄŒarobnjak za podeÅ¡avanje Å¡tampaÄa\n"
-"\n"
-"Ovaj Äarobnjak će vam pomoći da instalirate Å¡tampaÄe spojene na ovaj "
-"raÄunar.\n"
+"- korisniÄke datoteke:\n"
+
+#: ../../standalone/drakbackup_.c:2542
+msgid ""
"\n"
-"Ako imate Å¡tampaÄ spojen na ovaj raÄunar, molim prikljuÄite ga na raÄunar i "
-"upalite ga kako bi bio automatski prepoznat.\n"
+"- Other Files:\n"
+msgstr ""
"\n"
-" Kliknite na \"Dalje\" kada budete spremni, ili na \"Odustani\" ako ne "
-"želite podesiti Å¡tampaÄ sada."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Vrati iz kataloga"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "IDE"
-msgstr "IDE"
+"- ostale datoteke:\n"
-#: ../../fs.pm:1
+#: ../../standalone/drakbackup_.c:2544
#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "montiranje particije %s u direktoriju %s nije uspjelo"
+msgid ""
+"\n"
+"- Save on Hard drive on path: %s\n"
+msgstr ""
+"\n"
+"- spasi na hard disku u direktoriju: %s\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
-msgstr "Lilo ekran"
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO sa grafiÄkim menijem"
+#: ../../standalone/drakbackup_.c:2553
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "Procjenjujem"
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
-msgstr "Ne možete iskljuÄiti ovaj paket. On je već instaliran"
+#: ../../standalone/drakbackup_.c:2555
+#, fuzzy, c-format
+msgid " on device: %s"
+msgstr "Uređaj miša: %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", Å¡tampaÄ \"%s\" na SMB/Windows serveru \"%s\""
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
+msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "Svejedno nastavi?"
+#: ../../standalone/drakbackup_.c:2557
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device: %s"
+msgstr ""
+"\n"
+"- spasi na FTPu na raÄunaru: %s\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Tražim dostupne pakete i izgrađujem rpm bazu podataka..."
+msgid "\t\tErase=%s"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2561
+#, fuzzy, c-format
msgid ""
"\n"
-" DrakBackup Report \n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
-" DrakBackup Izvještaj \n"
+"- spasi na FTPu na raÄunaru: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:2562
#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Izgleda da na ovaj medij nije moguće snimati!"
+msgid ""
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
+msgstr ""
+"\t\t korisniÄko ime: %s\n"
+"\t\t u direktoriju: %s \n"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "Navedi opcije"
+#: ../../standalone/drakbackup_.c:2563
+msgid ""
+"\n"
+"- Options:\n"
+msgstr ""
+"\n"
+"- Opcije:\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
+msgstr "\tNe ukljuÄuj sistemske datoteke\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "New user list:\n"
-msgstr "Nova lista korisnika:\n"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
+msgstr "\tBackupi koriste tar i bzip2\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Treba biti dato ili ime servera ili IP adresa servera!"
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
+msgstr "\tBackupi koriste tar i gzip\n"
-#: ../../any.pm:1
+#: ../../standalone/drakbackup_.c:2572
#, 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\"."
+"- Daemon (%s) include:\n"
msgstr ""
-"Vlastita boot disketa vam omogućuje da pokrenete Linux pri Äemu ne ovisite\n"
-"od bootloader programa. Ovo je korisno ako ne želite instalirati SILO na\n"
-"vaš sistem, ako neki drugi operativni sistem uklanja SILO ili ako SILO ne "
-"radi\n"
-"na vašoj trenutnoj konfiguraciji. Vlastiti bootdisk se može takođe koristiti "
-"sa\n"
-"Mandrake rescue image, pri Äemu je mnogo lakÅ¡e ispraviti neke ozbiljne\n"
-"sistemske kvarove.\n"
"\n"
-"Ako želite napraviti boot disketu za vaš sistem, stavite neku disketu u "
-"vašu\n"
-"prvu jedinicu i pritisnite \"U redu\"."
+"- Demon (%s) ukljuÄuje :\n"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Ne možete koristiti Å¡ifrovani datoteÄni sistem za taÄku montiranja %s"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
+msgstr "\t-Hard disk.\n"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password history length to prevent password reuse."
-msgstr ""
-"Podesi dužinu historije Å¡ifara kojom se sprjeÄava ponovno koriÅ¡tenje Å¡ifara."
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
+msgstr "\t-CDROM.\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
-msgstr "Norfolk ostrvo"
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Theme installation failed!"
-msgstr "Instalacija teme nije uspjela!"
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
+msgstr "\t-Mrežu preko FTPa.\n"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
-msgstr "Nemam šta da radim"
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
+msgstr "\t-Mrežu preko SSH.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "Koristi za loopback"
+#: ../../standalone/drakbackup_.c:2578
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Mrežu preko FTPa.\n"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr "Mandrake alat za prijavu bugova"
+#: ../../standalone/drakbackup_.c:2579
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Mrežu preko FTPa.\n"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
-msgstr "Primijeni filter"
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
+msgstr "Bez podešavanja, molim kliknite na Čarobnjak ili Napredno.\n"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pppoe"
-msgstr "koristi pppoe"
+#: ../../standalone/drakbackup_.c:2587
+msgid ""
+"List of data to restore:\n"
+"\n"
+msgstr ""
+"Lista podataka za vraćanje:\n"
+"\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving files to the new partition"
-msgstr "Premještam datoteke na novu particiju"
+#: ../../standalone/drakbackup_.c:2754
+msgid ""
+"List of data corrupted:\n"
+"\n"
+msgstr ""
+"Lista oštećenih podataka:\n"
+"\n"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s sa EKSPERIMENTALNIM 3D hardverskim ubrzanjem"
+#: ../../standalone/drakbackup_.c:2756
+msgid "Please uncheck or remove it on next time."
+msgstr "Molimo iskljuÄite ili pobriÅ¡ite ga idući put."
-#: ../../help.pm:1 ../../interactive.pm:1
-#, c-format
-msgid "Advanced"
-msgstr "Više opcija"
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
+msgstr "Backup datoteke su oštećene"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer"
-msgstr "Prebaci"
+#: ../../standalone/drakbackup_.c:2787
+#, fuzzy
+msgid " All of your selected data have been "
+msgstr " Svi vaši izabrani podaci su "
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Å vedska)"
+msgid " Successfuly Restored on %s "
+msgstr " uspješno spašeni na %s "
-#: ../../lang.pm:1
-#, c-format
-msgid "Afghanistan"
-msgstr "Afganistan"
+#: ../../standalone/drakbackup_.c:2906
+msgid " Restore Configuration "
+msgstr " Vrati konfiguraciju "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "More Options"
-msgstr "Više opcija"
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
+msgstr "OK za vraćanje ostalih datoteka."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr "Obriši tar datoteke sa diska nakon backupa na drugi medij."
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
+msgstr ""
+"Lista korisnika za vraćanje (samo najsvježiji datum po korisniku je znaÄajan)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "Burundi"
+#: ../../standalone/drakbackup_.c:3019
+msgid "Backup the system files before:"
+msgstr "Vrati sistemske datoteke prije:"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"Cron je standardan UNIX program koji periodiÄno pokreće programe koje\n"
-"zada korisnik. Vixie cron dodaje veći broj mogućnosti osnovnom\n"
-"UNIX cronu, ukljuÄujući bolju sigurnost i moćnije opcije za podeÅ¡avanje."
+#: ../../standalone/drakbackup_.c:3021
+msgid "please choose the date to restore"
+msgstr "molim izaberite datum za vraćanje"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr "Dodaj klijenta -->"
+#: ../../standalone/drakbackup_.c:3057
+msgid "Use Hard Disk to backup"
+msgstr "Koristi hard disk za backup"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "ProÄitajte pažljivo!"
+#: ../../standalone/drakbackup_.c:3060
+msgid "Please enter the directory to save:"
+msgstr "Molimo unesite direktorij za spasiti:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
-msgstr "RW"
+#: ../../standalone/drakbackup_.c:3103
+msgid "FTP Connection"
+msgstr "FTP konekcija"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Molim,\n"
-"unesite vaš tv standard i državu"
+#: ../../standalone/drakbackup_.c:3110
+msgid "Secure Connection"
+msgstr "Sigurna konekcija"
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "Port"
+#: ../../standalone/drakbackup_.c:3134
+msgid "Restore from Hard Disk."
+msgstr "Vrati sa hard diska"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
-msgstr "Ne (samo eksperti)"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
+msgstr "Molim unesite direktorij gdje su smješteni backupi"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-msgstr "Nije izabran kernel!"
+#: ../../standalone/drakbackup_.c:3204
+msgid "Select another media to restore from"
+msgstr "Izaberite drugi medij za vraćanje"
-#. -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
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Pritisnite enter za bootanje izabranog OSa, 'e' za editovanje"
+#: ../../standalone/drakbackup_.c:3206
+msgid "Other Media"
+msgstr "Drugi medij"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
+#: ../../standalone/drakbackup_.c:3211
+msgid "Restore system"
+msgstr "Vrati sistem"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The encryption keys do not match"
-msgstr "KljuÄevi enkripcije se ne poklapaju"
+#: ../../standalone/drakbackup_.c:3212
+msgid "Restore Users"
+msgstr "Vrati korisnike"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
-"Za višesesijski CD, samo će prva sesija obrisati CDRW. U suprotnom, CDRW se "
-"briše prije svakog backupa."
+#: ../../standalone/drakbackup_.c:3213
+msgid "Restore Other"
+msgstr "Vrati ostalo"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "USB printer"
-msgstr "USB Å¡tampaÄ"
+#: ../../standalone/drakbackup_.c:3215
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "izaberite stazu za vraćanje (umjesto / )"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Desna \"Windows\" tipka"
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
+msgstr "Izvrši novi backup prije vraćanja (samo za inkrementalni backup.)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr "ako je postavljeno na da, provjerava prazne šifre u /etc/shadow."
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
+msgstr "PobriÅ¡i korisniÄke direktorije prije vraćanja."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3334
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."
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-"Prije nego Å¡to nastavimo, trebate pažljivo proÄitati uvjete licence. Ona\n"
-"pokriva cijelu Mandrake Linux distribuciju. Ako se slažete sa svim\n"
-"uvjetima u njoj, izaberite opciju \"%s\". Ako ne, samo ugasite\n"
-"vaÅ¡ raÄunar."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3344
+#, fuzzy
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Ovo je lista mogućih opcija za Å¡tampu za trenutni Å¡tampaÄ:\n"
-"\n"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "Rezolucije"
+"Restore Selected\n"
+"Files"
+msgstr "Ukloni izabrano"
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3361
+#, fuzzy
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."
-msgstr ""
-"drakfirewall podešavanje\n"
-"\n"
-"Podesite liÄni firewall na ovom Mandrake Linux raÄunaru.\n"
-"Ako želite moćnu soluciju posebnog firewalla, molim pogledajte\n"
-"specijaliziranu MandrakeSecurity Firewall distribuciju."
+"Change\n"
+"Restore Path"
+msgstr "Vrati ostalo"
+
+#: ../../standalone/drakbackup_.c:3427
+#, fuzzy, c-format
+msgid "Backup files not found at %s."
+msgstr "Backup datoteke su oštećene"
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../standalone/drakbackup_.c:3440
#, c-format
msgid ""
-"Please enter your username, password and domain name to access this host."
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-"Molim unesite vaÅ¡e korisniÄko ime, Å¡ifru i domen da biste pristupili ovom "
-"raÄunaru."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Remove selected host"
-msgstr "Ukloni izabrani raÄunar"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network configuration"
-msgstr "Podešavanje mreže"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Automatski prepoznaj _jaz uređaje"
+#: ../../standalone/drakbackup_.c:3440
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Vrati sa hard diska"
-#: ../../any.pm:1
+#: ../../standalone/drakbackup_.c:3442
#, c-format
-msgid "No sharing"
-msgstr "Bez dijeljenja"
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakbackup_.c:3452
#, c-format
-msgid "Move selected rule down one level"
-msgstr "Pomjeri izabrano pravilo dole za jedan nivo"
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "TB"
-msgstr "TB"
+#: ../../standalone/drakbackup_.c:3452
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Vrati tabelu particija"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:3454
#, c-format
-msgid "FATAL"
-msgstr "FATALNO"
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh the list"
-msgstr "Osvježi listu"
+#: ../../standalone/drakbackup_.c:3474
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Vrati korisnike"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Per client %s:\n"
-" \tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tdrakTermServ will help create these files."
-
-#: ../../standalone/drakpxe:1
+#: ../../standalone/drakbackup_.c:3474
#, 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"
+msgid "Restore Via Network Protocol: %s"
msgstr ""
-"DHCP server omogućuje pokretanje drugih raÄunara koristeći PXE u zadatom "
-"rasponu adresa.\n"
-"\n"
-"Mrežna adresa je %s koristeći netmasku %s.\n"
-"\n"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete"
-msgstr "Obriši"
+#: ../../standalone/drakbackup_.c:3475
+#, fuzzy
+msgid "Host Name"
+msgstr "Host name"
-#: ../../Xconfig/various.pm:1
-#, 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?"
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
msgstr ""
-"Mogu podesiti vaÅ¡ raÄunar da automatski pokrene grafiÄki interfejs (XFree) "
-"pri pokretanju raÄunara.\n"
-"Želite li da se XFree automatski pokreće?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
-msgstr "Napravi disk"
+#: ../../standalone/drakbackup_.c:3483
+#, fuzzy
+msgid "Password required"
+msgstr "Å ifra"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnect %s"
-msgstr "Prekini konekciju na %s"
+#: ../../standalone/drakbackup_.c:3489
+#, fuzzy
+msgid "Username required"
+msgstr "KorisniÄko ime"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
-msgstr "Status:"
+#: ../../standalone/drakbackup_.c:3492
+#, fuzzy
+msgid "Hostname required"
+msgstr "Hostname: "
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "SSH Server"
-msgstr "SSH server"
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-Mrežu preko rsync-a.\n"
+#: ../../standalone/drakbackup_.c:3513
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Vrati ostalo"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
-msgstr "Evropski protokol"
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
+msgstr "Vrati sve backupe"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", Å¡tampaÄ \"%s\" na serveru \"%s\""
+#: ../../standalone/drakbackup_.c:3760
+msgid "Custom Restore"
+msgstr "RuÄno vraćanje"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
-msgstr "Obratite pažnju da trenutno svi 'net' mediji takođe koriste hard disk."
-
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
-#, c-format
-msgid "Error"
-msgstr "Greška"
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
-msgstr "dozvoli \"su\""
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
+msgstr ""
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Australia"
-msgstr "Australija"
+#: ../../standalone/drakbackup_.c:3813
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Vrati tabelu particija"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "molim saÄekajte tokom ttmkfdir..."
+#: ../../standalone/drakbackup_.c:3841
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Vrati korisnike"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Podesi samo karticu \"%s\"%s"
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+msgid "Previous"
+msgstr "Prethodni"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Level"
-msgstr "Nivo"
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+msgid "Save"
+msgstr "Spasi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Change the printing system"
-msgstr "Promijenite sistem štampe"
+#: ../../standalone/drakbackup_.c:3946
+msgid "Build Backup"
+msgstr "Izgradi backup"
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+msgid "Restore"
+msgstr "Vrati"
+
+#: ../../standalone/drakbackup_.c:4189
+#, fuzzy
msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
msgstr ""
-"Vaš sistem podržava konfiguraciju više glava.\n"
-"Å ta želite uÄiniti?"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr "montiranje nije uspjelo: "
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "Podešavanje servisa"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Broadcast adresa:"
+"Greška tokom sendmaila\n"
+" vaš mail izvještaj nije poslan\n"
+" Molim podesite sendmail"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4195
+#, fuzzy
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."
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
msgstr ""
-"GNU/Linux kernel mora izvrÅ¡iti proraÄunsku petlju prilikom boot-a kako bi "
-"inicijalizirao tajmer. Rezultat rada te petlje se prikazuje u vidu "
-"bogomipsa, kao jedan neprecizan pokazatelj brzine CPUa."
+"Greška tokom slanja datoteke preko FTPa.\n"
+" Molimo ispravite vašu FTP konfiguraciju."
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "Image"
+#: ../../standalone/drakbackup_.c:4209
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Sljedeći paketi će biti instalirani"
-#: ../../services.pm:1
-#, c-format
-msgid "Remote Administration"
-msgstr "Udaljena administracija"
+#: ../../standalone/drakbackup_.c:4232
+msgid "Please select data to restore..."
+msgstr "Molim izaberite podatke za vraćanje..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-msgstr "Nisam uspio dodati Å¡tampaÄ \"%s\" u Star Office/OpenOffice.org/GIMP."
+#: ../../standalone/drakbackup_.c:4267
+msgid "Please select media for backup..."
+msgstr "Molim izaberite medij za backup..."
-#: ../../modules.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4275
+msgid "Please select data to backup..."
+msgstr "Molim izaberite podatke za backup..."
+
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-"PCMCIA podrška za 2.2 kernele više ne postoji. Molim koristite 2.4 kernel."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Selected All"
-msgstr "Sve izabrano"
+"Nije pronađena konfiguraciona datoteka \n"
+"molim kliknite na ÄŒarobnjak ili Napredno."
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
+msgstr "U izradi ... molim saÄekajte."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Webmin Service"
-msgstr "Webmin servis"
+#: ../../standalone/drakbackup_.c:4382
+msgid "Backup system files"
+msgstr "Backup sistemskih datoteka"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
-msgstr "uređaj"
+#: ../../standalone/drakbackup_.c:4384
+msgid "Backup user files"
+msgstr "Backup korisniÄkih datoteka"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Unesite direktorij u koji želite spasiti:"
+#: ../../standalone/drakbackup_.c:4386
+msgid "Backup other files"
+msgstr "Backup ostalih datoteka"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
-msgstr "GrÄka"
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
+msgstr "Ukupan napredak"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "Svi"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
+msgstr "slanje datoteka putem FTPa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Koji sistem štampanja (spooler) želite koristiti?"
+#: ../../standalone/drakbackup_.c:4416
+msgid "Sending files..."
+msgstr "Å aljem datoteke..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
-msgstr "Juli"
+#: ../../standalone/drakbackup_.c:4500
+msgid "Backup Now from configuration file"
+msgstr "Backup-uj sada iz konfiguracijske datoteke"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Prints into %s"
-msgstr "Å tampa u %s"
+#: ../../standalone/drakbackup_.c:4505
+msgid "View Backup Configuration."
+msgstr "Pogledaj postavke backupa."
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "Došlo je do greške"
+#: ../../standalone/drakbackup_.c:4526
+msgid "Wizard Configuration"
+msgstr "Čarobnjak za podešavanje"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Ovaj paket mora biti unaprijeđen\n"
-"Jeste li sigurni da ga želite iskljuÄiti?"
+#: ../../standalone/drakbackup_.c:4531
+msgid "Advanced Configuration"
+msgstr "Napredno podešavanje"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "Tamilska (pisaća mašina)"
+#: ../../standalone/drakbackup_.c:4536
+msgid "Backup Now"
+msgstr "Backup-uj sada"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
-msgstr "Koristi Å¡ifru za provjeru autentiÄnosti korisnika."
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
+msgstr "Drakbackup"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4624
+#, fuzzy
msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
+"options description:\n"
+"\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
msgstr ""
-"Dozvoli/zabrani listu korisnika sistema na display manager-ima (kdm i gdm)."
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
-msgstr "ruÄno"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
-msgstr "Tekst u imenu datoteke koji se traži:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "ProizvoÄ‘aÄ Å¡tampaÄa, model, drajver"
+"options description:\n"
+"\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time ( about 1000% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4654
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-"Nema medija ili je zabranjeno pisanje na medij za uređaj %s.\n"
-"Molim ubacite neki medij."
+"\n"
+" Neke greške prilikom slanja poruka može izazvati \n"
+" loše podešen postfix. Ovo možete riješiti tako što ćete\n"
+" podesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
+"\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4662
msgid ""
-"Directory %s already contains data\n"
-"(%s)"
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
msgstr ""
-"Direktorij %s već sadrži neke podatke\n"
-"(%s)"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Å tampaÄ na NetWare serveru"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Navedite veliÄinu rama u MB"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr "Petak"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Prekid veze sa Internetom završen."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "Pravo ime"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "done"
-msgstr "gotovo"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Molim iskljuÄite ili pobriÅ¡ite ga idući put."
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Higher"
-msgstr "Viši"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Izaberite particije koje želite formatirati"
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4701
+#, fuzzy
msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
"\n"
-"You can visit our hardware database at:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Na vaÅ¡em raÄunaru nije detektovana TV kartica. Molim provjerite da li je "
-"ispravno prikljuÄena Video/TV kartica koja je podržana pod Linuxom.\n"
+"restore description:\n"
+" \n"
+"Only the most recent date will be used ,because with incremental \n"
+"backups it is necesarry to restore one by one each older backups.\n"
"\n"
+"So if you don't like to restore a user please unselect all his\n"
+"check box.\n"
+"\n"
+"Otherwise, you are able to select only one of this\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use backup, this option allow you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed after.\n"
+"\tSo you will be able during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this options all\n"
+"\told backups are deleted before each backup. \n"
"\n"
-"Možete posjetiti našu bazu hardvera na:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't find %s on %s"
-msgstr "Ne mogu pronaći %s na %s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "Japanska 106 tipki"
+#: ../../standalone/drakbackup_.c:4727
+#, fuzzy
+msgid ""
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
+msgstr ""
+" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
-msgstr "Ne mogu instalirati pakete koji su potrebni za dijeljenje skenera."
+#: ../../standalone/drakbackup_.c:4729
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Ovo će potrajati par minuta."
+#: ../../standalone/drakbackup_.c:4732
+#, fuzzy
+msgid ""
+"Description:\n"
+"\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
+"\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
+"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
+"\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
+"\n"
+"\n"
+msgstr ""
+"Description:\n"
+"\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
+"\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
+"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
+"\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
+"\n"
+"\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
+#: ../../standalone/drakbackup_.c:4769
+msgid ""
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
+msgstr ""
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "June"
-msgstr "Juni"
+#: ../../standalone/drakbackup_.c:4778
+msgid ""
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
+msgstr ""
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Koristi skenere na udaljenim raÄunarima"
+msgid "Installation of %s failed. The following error occured:"
+msgstr "Instalacija %sa nije uspjela. Javila se sljedeća greška:"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Delete selected rule"
-msgstr "Obriši izabrano pravilo"
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Pristupam Å¡tampaÄima na udaljenim CUPS serverima"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Ubacite disketu u %s"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
-msgstr "Maldivi"
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Alati za konzolu"
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "kompaktno"
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "na hard disk"
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
-msgstr "1 minuta"
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: fat"
-msgstr "tip: fat"
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "on channel %d id %d\n"
-msgstr "na kanalu %d id %d\n"
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Miš"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
-msgstr ", višenamjenski uređaj"
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Udaljeni Å¡tampaÄ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr "Laos"
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Share naziv"
-#: ../advertising/04-configuration.pl:1
-#, 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!"
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
msgstr ""
-"Mandrake Linux 9.2 vam pruža Mandrake Kontrolni centar, moćan alata koji "
-"potpuno prilagoÄ‘uje vaÅ¡ raÄunar namjeni koju ste odredili za njega. Podesite "
-"i prilagodite elemente kao što je nivo sigurnosti,periferni uređaji (ekran, "
-"miš, tastatura...), Internet konekciju i mnoge druge stvari!"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
-msgstr "Aktiviraj/iskljuÄi provjeru promiskuitetnog moda Ethernet kartica."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
msgstr ""
-"Ne postoji nijedna FAT particija za promjenu veliÄine (ili nije ostalo "
-"dovoljno prostora)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr "Gore"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
-msgstr "Firewall"
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr "Oblast :"
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Čarobnjak za podešavanje mreže"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr "(E)IDE/ATA kontroleri"
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Application:"
+msgstr "Autentikacija"
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
-msgstr "Sav U/I na datoteÄni sistem se treba izvrÅ¡avati sinhrono."
+#: ../../standalone/drakbug_.c:76
+#, fuzzy
+msgid "Package: "
+msgstr "Izbor paketa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "Printer Server"
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Custom configuration"
-msgstr "Vlastita konfiguracija"
+#: ../../standalone/drakbug_.c:78
+#, fuzzy
+msgid "Release: "
+msgstr "Molimo saÄekajte"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbug_.c:93
msgid ""
-"Please indicate where the installation image will be available.\n"
-"\n"
-"If you do not have an existing directory, please copy the CD or DVD "
-"contents.\n"
"\n"
-msgstr ""
-"Molim navedite gdje se nalazi instalaciona slika.\n"
"\n"
-"Ako nemate postojeći direktorij, molim kopirajte sadržaj CDa ili DVDa.\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
"\n"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint Pierre and Miquelon"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
-msgstr "Septembar"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "snimam Bootsplash temu..."
+#: ../../standalone/drakbug_.c:112
+#, fuzzy
+msgid "Report"
+msgstr "port"
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
-msgstr "Portugal"
+#: ../../standalone/drakbug_.c:148
+#, fuzzy
+msgid "Not installed"
+msgstr "Post Uninstall"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "Imate li neki drugi?"
+#: ../../standalone/drakbug_.c:160
+#, fuzzy
+msgid "Package not installed"
+msgstr "Post Uninstall"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", printing to %s"
-msgstr ", štampa u %s"
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Odredi ime raÄunara iz DHCP adrese"
+#: ../../standalone/drakbug_.c:180
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Screenshotovi će biti dostupni nakon što instalirate u %s"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakconnect_.c:75
#, c-format
-msgid "Toggle to normal mode"
-msgstr "Prebaci u normalni mod"
+msgid "Network configuration (%d adapters)"
+msgstr "Podešavanje mreže (%d adaptera)"
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
-msgstr "Opšti"
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+msgid "Profile: "
+msgstr "Profil:"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Cilindar %d do %d\n"
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
+msgstr "Briši profil..."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
-msgstr "VAÅ  TEKST OVDJE"
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
+msgstr "Profil za brisanje:"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakconnect_.c:125
msgid "New profile..."
msgstr "Novi profil..."
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
-#, c-format
-msgid "NONE"
-msgstr "NIÅ TA"
+#: ../../standalone/drakconnect_.c:131
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Naziv profila koji će biti kreiran (novi profil je kreiran kao kopija "
+"postojećeg) :"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "Na koji disk je želite premjestiti?"
+#: ../../standalone/drakconnect_.c:157
+msgid "Hostname: "
+msgstr "Hostname: "
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Display logo on Console"
-msgstr "Prikaži logo na konzoli"
+#: ../../standalone/drakconnect_.c:164
+msgid "Internet access"
+msgstr "Pristup Internetu"
-#: ../../any.pm:1
-#, c-format
-msgid "Windows Domain"
-msgstr "Windows domena"
+#: ../../standalone/drakconnect_.c:177
+msgid "Type:"
+msgstr "Tip:"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (norwegian)"
-msgstr "Saami (norveška)"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "Gateway:"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Interface %s (on network %s)"
-msgstr "Interfejs %s (na mreži %s)"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Interface:"
+msgstr "Interfejs:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
-msgstr "INFO"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
+msgstr "Status:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
-msgstr "Wallis i Futuna"
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
+msgstr "Molim saÄekajte"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Najprije treba napraviti /etc/dhcpd.conf !"
+#: ../../standalone/drakconnect_.c:216
+msgid "Configure Internet Access..."
+msgstr "Podesi Internet pristup..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
-msgstr "Da li postoji FPU"
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+msgid "LAN configuration"
+msgstr "Podešavanje LANa"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Nema dodatnih informacija\n"
-"o ovom servisu, žalim."
+#: ../../standalone/drakconnect_.c:228
+msgid "Driver"
+msgstr "Drajver"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "Nisam pronašao nijedan skener na vašem sistemu.\n"
+#: ../../standalone/drakconnect_.c:228
+msgid "Interface"
+msgstr "Interfejs"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Izgradi jedan NIC -->"
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
+msgstr "Protokol"
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "Maršalova ostrva"
+#: ../../standalone/drakconnect_.c:228
+msgid "State"
+msgstr "Status"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "Da li je ovo ispravno?"
+#: ../../standalone/drakconnect_.c:240
+msgid "Configure Local Area Network..."
+msgstr "Podesi Lokalnu mrežu..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
+msgstr "Kliknite ovdje za pokretanje Äarobnjaka ->"
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr "Root šifra"
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "ÄŒarobnjak..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Izgradi sve kernele -->"
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
+msgstr "Primjeni"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVDRAM device"
-msgstr "DVDRAM uređaj"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Connected"
+msgstr "Konektovan"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
-msgstr "ako je postavljeno na da, prijavljuje datoteke bez vlasnika."
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Not connected"
+msgstr "Nije konektovan"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
+msgstr "Konektuj se..."
+
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
+msgstr "Prekini konekciju..."
+
+#: ../../standalone/drakconnect_.c:400
msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Nemate nijednu swap particiju\n"
-"\n"
-"Svejedno nastavi?"
+"Upozorenje, otkrivena je druga Internet konekcija, možda preko vaše mreže"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Version: "
-msgstr "Verzija: "
+#: ../../standalone/drakconnect_.c:427
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Nemate nijedan podešen interfejs.\n"
+"Podesite ih prvo klikajući na 'Podesi'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Server IP missing!"
-msgstr "Nedostaje IP adresa servera!"
+#: ../../standalone/drakconnect_.c:449
+msgid "LAN Configuration"
+msgstr "Podešavanje LANa"
-#: ../../lang.pm:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Suriname"
-msgstr "Surinam"
+msgid "Adapter %s: %s"
+msgstr "Adapter %s: %s"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use a floppy"
-msgstr "Koristi disketu"
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
+msgstr "Boot protokol"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
-msgstr "UkljuÄi ACPI"
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
+msgstr "Pokrenut na bootu"
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
-msgstr "Daj dozvolu za pisanje obiÄnim korisnicima"
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
+msgstr "DHCP klijent"
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
-msgstr "GrafiÄko okruženje"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "activate now"
+msgstr "pokreni sada"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
-msgstr "Gibraltar"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "deactivate now"
+msgstr "zaustavi sada"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Do nothing"
-msgstr "Nemoj raditi ništa"
+#: ../../standalone/drakconnect_.c:499
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Interfejs još nije podešen.\n"
+"Pokrenite Äarobnjak za podeÅ¡avanje u glavnom prozoru"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete Client"
-msgstr "Obriši klijent"
+#: ../../standalone/drakconnect_.c:556
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Nemate nijednu Internet konekciju.\n"
+"Napravite jednu klikajući na 'Podesi'"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "Tip datoteÄnog sistema: "
+#: ../../standalone/drakconnect_.c:580
+msgid "Internet connection configuration"
+msgstr "Podešavanje Internet konekcije"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting network..."
-msgstr "Pokrećem mrežu..."
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet Connection Configuration"
+msgstr "Podešavanje Internet konekcije"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
-msgstr "Vijetnam"
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+msgid "Connection type: "
+msgstr "Tip konekcije: "
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Opis polja"
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
+msgstr "Parametri"
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr "Optimizirajte vašu sigurnost koristeći Mandrake Linux"
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Gateway"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-" Hvala:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
+msgstr "Ethernet kartica"
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Help"
-msgstr "Pomoć"
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
+msgstr "DHCP klijent"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
-msgstr "Provjeri da li su mrežni uređaji u promiskuitetnom modu"
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Your personal phone number"
-msgstr "VaÅ¡ liÄni broj telefona"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Module name"
+msgstr "Naziv modula"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which size do you want to keep for Windows on"
-msgstr "Koju veliÄinu želite da saÄuvate za Windows na"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Size"
+msgstr "VeliÄina"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Testna stranica je poslana Å¡tampaÄu.\n"
-"Može potrajati odreÄ‘eno vrijeme dok Å¡tampaÄ krene.\n"
+#: ../../standalone/drakfloppy_.c:45
+msgid "drakfloppy"
+msgstr "drakfloppy"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Username required"
-msgstr "Potrebno korisniÄko ime"
+#: ../../standalone/drakfloppy_.c:63
+msgid "boot disk creation"
+msgstr "Kreiranje boot diskete"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Device"
-msgstr "Uređaj"
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr "Podrazumijevano"
-#: ../../help.pm:1
+#: ../../standalone/drakfloppy_.c:87
#, 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."
-msgstr ""
-"Ovisno o osnovnom jeziku koji izaberete u Sekciji \"Jezik\", DrakX će\n"
-"automatski izabrati određeni tip tastature. Ipak, možda nemate tastaturu\n"
-"koja taÄno odgovara vaÅ¡em jeziku: npr. ako ste Å vajcarac koji govori\n"
-"engleski, možda imate švajcarsku tastaturu. Ili ako govorite engleski ali\n"
-"se nalazite u Kvibeku, možda ćete se naći u situaciji gdje se vaš jezik i\n"
-"tastatura ne poklapaju. U svakom sluÄaju, ovaj korak instalacije vam\n"
-"omogućava da izaberete odgovarajuću tastaturu sa liste.\n"
-"\n"
-"Kliknite na dugme \"%s\" kako bi vam bila predstavljena potpuna lista\n"
-"podržanih tastatura.\n"
-"\n"
-"Ako izaberete raspored tipaka koji je baziran na ne-latiniÄnoj abecedi,\n"
-"sljedeći dijalog će vam ponuditi da izaberete tipke pomoću kojih možete\n"
-"prebaciti tastaturu izmeÄ‘u latiniÄnog i ne-latiniÄnog rasporeda."
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy greška: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Opcije SMB (Windows 9x/NT) Å¡tampaÄa"
+#: ../../standalone/drakfloppy_.c:98
+msgid "kernel version"
+msgstr "Kernel verzija"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
+#: ../../standalone/drakfloppy_.c:104
+msgid "General"
+msgstr "Općenito"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr ""
-"Lista ispravnih korisnika izmijenjena, prepisujem konfiguracionu datoteku."
+#: ../../standalone/drakfloppy_.c:109
+msgid "Expert Area"
+msgstr "Ekspert podruÄje"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakfloppy_.c:112
msgid "mkinitrd optional arguments"
msgstr "mkinitrd opcionalni argumenti"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
-msgstr ""
-"Surfajte koristeći Mozillu ili Konqueror, Äitajte vaÅ¡u poÅ¡tu sa Evolution "
-"ili KMail, pravite vaše dokumente sa OpenOffice.org."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protokol za ostatak svijeta"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print test pages"
-msgstr "Å tampaj testnu stranicu"
+#: ../../standalone/drakfloppy_.c:113
+msgid "Add a module"
+msgstr "Dodaj modul"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Activate now"
-msgstr "Pokreni sada"
+#: ../../standalone/drakfloppy_.c:133
+msgid "force"
+msgstr "prisili"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
-msgstr "64 MB ili više"
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
+msgstr "ako je potrebno"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Molim izaberite testne stranice koje ćete štampati.\n"
-"Pažnja: foto testna stranica može tražiti dosta vremena za štampu a na "
-"laserskim Å¡tampaÄima sa malo memorije možda neće nikad ni izaći. U većini "
-"sluÄajeva dovoljno je odÅ¡tampati standardnu testnu stranicu."
+#: ../../standalone/drakfloppy_.c:135
+msgid "omit scsi modules"
+msgstr "izostavi scsi module"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Molim izaberite ureÄ‘aj gdje je prikljuÄen vaÅ¡ %s"
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
+msgstr "izostavi raid module"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Not formatted\n"
-msgstr "Nije formatirana\n"
+#: ../../standalone/drakfloppy_.c:172
+msgid "Remove a module"
+msgstr "Ukloni modul"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Periodic Checks"
-msgstr "PeriodiÄne provjere"
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
+msgstr "Ispis"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "PXE Server Configuration"
-msgstr "Podešavanje PXE servera"
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
+msgstr "Napravi disk"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "Backup the system files before:"
-msgstr "Vrati sistemske datoteke prije:"
+msgid "Be sure a media is present for the device %s"
+msgstr "Provjeri da li je medij prisutan za ovaj uredjaj %s"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../standalone/drakfloppy_.c:341
+#, fuzzy, c-format
msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
-"Ovo je standardna sigurnost koja je preporuÄena za raÄunar koji će biti "
-"korišten za spajanje na Internet kao klijent."
+"Nema medija za ovaj uredjaj %s.\n"
+"Molim ubacite ga."
-#: ../../any.pm:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "First floppy drive"
-msgstr "Prva disketna jedinica"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Datoteka/_Izlaz"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose the new size"
-msgstr "Izaberite novu veliÄinu"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Media class"
-msgstr "Klasa medija"
+msgid "Unable to fork: %s"
+msgstr "Ne mogu izvrsiti fork: %s"
-#: ../../standalone/XFdrake:1
+#: ../../standalone/drakfloppy_.c:349
#, c-format
-msgid "You need to log out and back in again for changes to take effect"
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
msgstr ""
-"Trebate se odjaviti i ponovo prijaviti na sistem kako bi izmjene stupile na "
-"snagu"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
-msgstr "Ova verzija Scannerdrake programa ne poznaje %s."
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Faroe Islands"
-msgstr "Farska ostrva"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
+msgstr "Pretraži instalirane fontove"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Restart XFS"
-msgstr "Restartuj XFS"
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
+msgstr "IskljuÄi instalirane fontove"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
-msgstr "Dodaj raÄunar/mrežu"
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
+msgstr "obradi sve fontove"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Sada će biti pokrenut Scannerdrake."
+#: ../../standalone/drakfont_.c:242
+msgid "no fonts found"
+msgstr "nije pronađen nijedan font"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model name"
-msgstr "Naziv modela"
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+msgid "done"
+msgstr "gotovo"
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
-msgstr "Albanija"
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
+msgstr "ne mogu naći nijedan font na montiranim particijama"
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr "Britansko-Indijska morska teritorija"
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
+msgstr "Ponovo izaberi ispravne fontove"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Normal Mode"
-msgstr "Normalni mod"
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
+msgstr "ne mogu naći nijedan font.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "Nema CDR/DVDR u drajvu!"
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
+msgstr "Pretraži fontove na listi instaliranih"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer connection type"
-msgstr "Tip konekcije Å¡tampaÄa"
+#: ../../standalone/drakfont_.c:359
+msgid "Fonts copy"
+msgstr "Kopiranje fontova"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
-msgstr "Nema mrežnog adaptera na vašem sistemu!"
+#: ../../standalone/drakfont_.c:363
+msgid "True Type fonts installation"
+msgstr "Instalacija True Type fontova"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network %s"
-msgstr "Mreža %s"
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
+msgstr "molimo saÄekajte tokom ttmkfdir..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
-msgstr "Malayalam"
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
+msgstr "Završena True Type instalacija"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Opcija %s izvan raspona!"
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
+msgstr "Konverzija fontova"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connect %s"
-msgstr "Konektuj se na %s"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
+msgstr "type1inst kreiranje"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "Restartujem CUPS..."
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
+msgstr "Ghostscript referenciranje"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Å tampam/skeniram/foto kartica na \"%s\""
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
+msgstr "ttf fonts konverzija"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
-msgstr ""
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
+msgstr "pfm fonts konverzija"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Dvostruka taÄka montiranja %s"
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
+msgstr "Onemogući privremene datoteke"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
-msgstr "ako je postavljeno na da, izvršava chkrootkit provjere."
+#: ../../standalone/drakfont_.c:459
+msgid "Restart XFS"
+msgstr "Restartuj XFS"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "Podešavanje konekcije"
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
+msgstr "Onemogući datoteke fontova"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|Generic"
-msgstr "Nepoznat|Opšti"
+#: ../../standalone/drakfont_.c:528
+msgid "xfs restart"
+msgstr "restart xfs-a"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
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 ""
-"Prilikom instalacije Mandrake Linuxa, moguće je da su neki paketi\n"
-"ažurirani od zadnjeg izdanja. Moguće je da su ispravljeni bugovi ili\n"
-"rješena neka sigurnosna pitanja. Ako želite iskoristiti ova unaprjeđenja,\n"
-"možete ih sada dobaviti sa Interneta. Izaberite \"%s\" ako imate ispravnu\n"
-"Internet vezu, ili \"%s\" ako ćete radije instalirati ažurirane pakete\n"
-"kasnije.\n"
-"\n"
-"Ako izaberete \"%s\" dobićete listu mjesta sa kojih se mogu skinuti\n"
-"novi paketi. Izaberite ono najbliže vama. Pojaviće se stablo za izbor\n"
-"paketa: pregledajte izabrano i pritisnite \"%s\" da dobavite i\n"
-"instalirate izabrane pakete, ili \"%s\" za prekid."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-msgstr "Myanmar"
-
-#: ../../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
-#, c-format
-msgid "Quit"
-msgstr "Izlaz"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "Auto alokacija"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Provjeri loše blokove?"
+"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 using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
+msgstr ""
+"Prije instaliranja fontova, provjerite da li imate dozvole da ih koristite i "
+"instalirate na va[em sistemu.\n"
+"\n"
+"-Možete instalirati fontove koristeći uobiÄajen naÄin. U rijetkim "
+"sluÄajevima, neispravni fontovi mogu zaglaviti vaÅ¡ X Server."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Other MultiMedia devices"
-msgstr "Drugi multimedijalni uređaj"
+#: ../../standalone/drakfont_.c:621
+msgid "Fonts Importation"
+msgstr "Uvoz fontova"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "burner"
-msgstr "pržilica"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
+msgstr "Preuzmi fontove iz Windowsa"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Bug Description/System Information"
-msgstr "Opis buga/Sistemske informacije"
+#: ../../standalone/drakfont_.c:658
+msgid "Uninstall Fonts"
+msgstr "Deinstaliraj fontove"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (Default is all users)"
-msgstr " (Podrazumijevaju se svi korisnici)"
+#: ../../standalone/drakfont_.c:669
+msgid "Advanced Options"
+msgstr "Napredne opcije"
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "No remote machines"
-msgstr "Nema udaljenih raÄunara"
+#: ../../standalone/drakfont_.c:677
+msgid "Font List"
+msgstr "Lista fontova"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:737
+#, fuzzy
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@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."
-msgstr ""
+" 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"
-"Dobro doÅ¡li u ÄŒarobnjak za podeÅ¡avanje Å¡tampaÄa\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"
"\n"
-"Ovaj Äarobnjak će vam pomoći da instalirate Å¡tampaÄe spojene na ovaj "
-"raÄunar.\n"
"\n"
-"Ako imate Å¡tampaÄ spojen na ovaj raÄunar, molim prikljuÄite ga na raÄunar i "
-"upalite ga kako bi bio auto-prepoznat.\n"
+msgstr ""
+" This program is free software; you can redistribute it and/or modify\n"
+" it under the terms of the GNU General Public License as published by\n"
+" the Free Software Foundation; either version 2, or (at your option)\n"
+" any later version.\n"
"\n"
-"Kliknite na \"Dalje\" kada budete spremni, ili na \"Odustani\" ako ne želite "
-"podesiti Å¡tampaÄ sada."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "Autentifikacija NIS"
+" 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."
+
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:862
+msgid "Choose the applications that will support the fonts:"
+msgstr "Izaberite aplikacije koje će podržavati fontove :"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Opcija ``OgraniÄi opcije komandne linije'' je beskorisna bez Å¡ifre"
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
+msgstr "Ghostscript"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Dijeljenje Internet konekcije je trenutno aktivno"
+#: ../../standalone/drakfont_.c:877
+msgid "StarOffice"
+msgstr "StarOffice"
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "Ujedinjeni Arapski Emirati"
+#: ../../standalone/drakfont_.c:884
+msgid "Abiword"
+msgstr "Abiword"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "IO_0 kartice"
+#: ../../standalone/drakfont_.c:891
+msgid "Generic Printers"
+msgstr "Razni Å¡tampaÄi"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
-msgstr "Onemogući lokalnu konfiguraciju"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
+msgstr "Izaberite font datoteku ili direktorij i kliknite na 'Dodaj'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "Tajland"
+#: ../../standalone/drakfont_.c:1005
+msgid "Install List"
+msgstr "Lista instalacije"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "IO_1 kartice"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
+msgstr "kliknite ovdje ako ste sigurni."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
-msgstr "Pretraga:"
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
+msgstr "ovdje ako ne."
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "Kazahstan"
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
+msgstr "Ništa izabrano"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
-msgstr "Routeri:"
+#: ../../standalone/drakfont_.c:1116
+msgid "Selected All"
+msgstr "Sve izabrano"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Write"
-msgstr "Zapiši"
+#: ../../standalone/drakfont_.c:1120
+msgid "Remove List"
+msgstr "Pobriši listu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Prikaži sve dostupne CUPS Å¡tampaÄe"
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+msgid "Initials tests"
+msgstr "Probni inicijali"
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux instalacija %s"
+#: ../../standalone/drakfont_.c:1145
+msgid "Copy fonts on your system"
+msgstr "Kopiraj fontove na sistem"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
-msgstr "Nepoznat drajver"
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
+msgstr "Instaliraj i konvertuj fontove"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "Tajlandska tastatura"
+#: ../../standalone/drakfont_.c:1153
+msgid "Post Install"
+msgstr "Post Install"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr "Ostrvo Bouvet"
+#: ../../standalone/drakfont_.c:1178
+msgid "Remove fonts on your system"
+msgstr "Pobriši fontove sa mog sistema"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "Opcije dialupa"
+#: ../../standalone/drakfont_.c:1182
+msgid "Post Uninstall"
+msgstr "Post Uninstall"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "Ako nije naveden port, podrazumijevaće se 631."
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
+msgstr "Dijeljenje Internet konekcije"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Per client system configuration files:\n"
-" \tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-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."
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-"Promijenite vaš CD-ROM!\n"
-"\n"
-"Molim ubacite CD oznaÄen sa \"%s\" u vaÅ¡ CD-ROM ureÄ‘aj i pritisnite \"U redu"
-"\" kad ste spremni.\n"
-"Ako ga nemate, pritisnite \"Odustani\" da preskoÄite instalaciju sa tog CD-"
-"ROMa."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "Poljska"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Online"
-msgstr "Mandrake Online"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
-msgstr "\t-Mrežu preko webdav-a.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", višenamjenski uređaj na paralelnom portu"
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Dijeljenje Internet konekcije je trenutno aktivno"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakgw_.c:126
msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"Na vašem sistemu nije pronađen nijedan ethernet mrežni adapter. Molim "
-"pokrenite alat za podešavanje hardware-a."
-
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "Netmask"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "No hard drives found"
-msgstr "Nije pronađen nijedan hard disk"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "2 dugmeta"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "Koje je vrste vaša ISDN konekcija?"
+"Dijeljenje Internet konekcije je već podešeno. Trenutno je\n"
+"aktivno.\n"
+"\n"
+"Šta želite uraditi?"
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "Oznaka"
+#: ../../standalone/drakgw_.c:130
+msgid "disable"
+msgstr "iskljuÄi"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "Spasi na disketu"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
+msgstr "otkaži"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check open ports"
-msgstr "Provjeri otvorene portove"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "reconfigure"
+msgstr "rekonfiguriši"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Edit selected printer"
-msgstr "Izmijeni izabrani Å¡tampaÄ"
+#: ../../standalone/drakgw_.c:133
+msgid "Disabling servers..."
+msgstr "IskljuÄujem servere..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Auto prepoznavanje Å¡tampaÄa"
+#: ../../standalone/drakgw_.c:142
+msgid "Internet connection sharing is now disabled."
+msgstr "Dijeljenje Internet konekcije je sada iskljuÄeno."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Koja od navedenih je vaša ISDN kartica?"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Dijeljenje Internet konekcije je trenutno neaktivno"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:150
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."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"NFS je popularan protokol za dijeljenje datoteka preko TCP/IP mreža.\n"
-"Ovaj servis omogućuje funkcionalnost NFS servera, kojeg podešavate\n"
-"putem /etc/exports datoteke."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Msec"
-msgstr "Msec"
+"Dijeljenje Internet konekcije je već podešeno. Trenutno je\n"
+"neaktivno.\n"
+"\n"
+"Šta želite uraditi?"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Primjetite, label je promijenjena:\n"
-"%s"
+#: ../../standalone/drakgw_.c:154
+msgid "enable"
+msgstr "ukljuÄi"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
-msgstr "Broj capture buffera:"
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
+msgstr "UkljuÄujem servere..."
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Vaš izbor? (0/1, podrazumjevano %s)"
+#: ../../standalone/drakgw_.c:166
+msgid "Internet connection sharing is now enabled."
+msgstr "Dijeljenje Internet konekcije je sada ukljuÄeno."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:183
+#, fuzzy
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"
+"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"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
"\n"
-"Click on \"%s\" if you wish to select partitions that will be checked for\n"
-"bad blocks on the disk."
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
-"Sve particije koje su upravo definisane moraju biti formatirane kako bi se\n"
-"mogle koristiti (formatiranje znaÄi kreiranje datoteÄnog sistema). \n"
-"\n"
-"U ovom trenutku možda ćete poželjeti da reformatirate neke već postojeće\n"
-"particije kako biste pobrisali podatke koje sadrže. Ako želite to uÄiniti,\n"
-"molim takođe izaberite i te particije.\n"
-"\n"
-"Molim obratite pažnju da nije neophodno formatirati sve postojeće\n"
-"particije. Morate reformatirati particije koje sadrže operativni sistem\n"
-"(kao što su \"/\", \"/usr\" ili \"var\") ali ne morate reformatirati "
-"particije\n"
-"koje sadrže podatke koje želite zadržati (tipiÄno /home).\n"
-"\n"
-"Molim da pažljivo izaberete particije. Nakon formatiranja, svi podaci na\n"
-"odabranim particijama će biti pobrisani i nećete biti u mogućnosti da ih\n"
-"povratite.\n"
-"\n"
-"Kliknite na \"%s\" kada budete spremni za formatiranje particija.\n"
-"\n"
-"Kliknite na \"%s\" ako želite da izaberete druge particije za instalaciju\n"
-"vašeg novog Linux-Mandrake operativnog sistema.\n"
+"Sada ćete konfigurisati vaÅ¡ raÄunar za dijeljenje Internet konekcije.\n"
+"Sa ovom opcijom, ostali raÄunari na vaÅ¡oj lokalnoj mreži će moći koristiti "
+"Internet konekciju ovog raÄunara. \n"
"\n"
-"Kliknite na \"%s\" da izaberete particije koje želite provjeriti radi\n"
-"loših blokova."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "French"
-msgstr "Francuska"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTY)"
-msgstr "Češka (QWERTY)"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow X Window connections"
-msgstr "Dozvoli X Window konekcije"
+"Napomena: potreban vam je poseban Mrežni adapter da biste podesili Lokalnu "
+"mrežu (LAN)."
-#: ../../standalone/service_harddrake:1
+#: ../../standalone/drakgw_.c:211
#, c-format
-msgid "Hardware probing in progress"
-msgstr "Hardversko probanje u toku"
+msgid "Interface %s (using module %s)"
+msgstr "Interfejs %s (koristeći modul %s)"
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
+#: ../../standalone/drakgw_.c:212
#, c-format
-msgid "Net Device"
-msgstr "Mrežni uređaj"
+msgid "Interface %s"
+msgstr "Interfejs %s"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "Ukratko"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr "Nema mrežnog adaptera na vašem sistemu!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:221
msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
msgstr ""
-" (Paralelni portovi: /dev/lp0, /dev/lp1, ..., ekvivalentno sa LPT1:, "
-"LPT2:, ..., prvi USB Å¡tampaÄ: /dev/usb/lp0, drugi USB Å¡tampaÄ: /dev/usb/"
-"lp1, ...)."
-
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Next"
-msgstr "Sljedeći"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Ne možete instalirati bootloader na %s particiju\n"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
-msgstr "Portoriko"
+"Na vašem sistemu nije pronađen nijedan ethernet mrežni adapter. Molimo "
+"pokrenite alat za podešavanje hardware-a."
-#: ../../network/network.pm:1
-#, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp/zeroconf)"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr "Mrežni interface"
-#: ../../standalone/drakautoinst:1
+#: ../../standalone/drakgw_.c:228
#, c-format
msgid ""
+"There is only one configured network adapter on your system:\n"
"\n"
-"Welcome.\n"
+"%s\n"
"\n"
-"The parameters of the auto-install are available in the sections on the left"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
+"Trenutno je samo jedan mrežni adapter podešen na vašem sistemu:\n"
"\n"
-"Dobro došli.\n"
+"%s\n"
"\n"
-"Parametri automatske instalacije su dostupni u odjeljcima lijevo"
+"Sada ću podesiti vašu Lokalnu mrežu sa ovim adapterom."
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/drakgw_.c:235
msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
msgstr ""
-"za dovršavanje podešavanja potreban je paket 'ImageMagick'.\n"
-"Kliknite na \"U redu\" da instalirate 'ImageMagick' ili \"Odustani\" za izlaz"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Telnet server"
-msgstr "X server"
+"Molimo izaberite koji mrežni adapter će biti spojen na vašu Lokalnu mrežu."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Litvanska \"red brojeva\" QWERTY"
+#: ../../standalone/drakgw_.c:261
+msgid "Network interface already configured"
+msgstr "Mrežni interfejs je već podešen"
-#: ../../install_any.pm:1
+#: ../../standalone/drakgw_.c:262
#, c-format
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
+"Warning, the network adapter (%s) is already configured.\n"
"\n"
+"Do you want an automatic re-configuration?\n"
"\n"
-"Do you really want to remove these packages?\n"
+"You can do it manually but you need to know what you're doing."
msgstr ""
-"Da bi se omogućilo unaprjeđenje vašeg sistema, biće uklonjeni sljedeći "
-"paketi: %s\n"
+"Upozorenje, mrežni adapter (%s) je već podešen.\n"
"\n"
+"Da li želite automatsko ponovno podešavanje?\n"
"\n"
-"Želite li zaista deinstalirati ove pakete?\n"
+"To možete obaviti ruÄno, ali morate znati Å¡ta radite."
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
-msgstr "Anguilla"
+#: ../../standalone/drakgw_.c:267
+msgid "Automatic reconfiguration"
+msgstr "Automatsko ponovno podešavanje"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "NIS domen"
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "Antarktik"
+#: ../../standalone/drakgw_.c:268
+msgid "Show current interface configuration"
+msgstr "Prikaži postavke trenutnog interfejsa"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:269
+#, fuzzy
+msgid "Current interface configuration"
+msgstr "Prikaži postavke trenutnog interfejsa"
+
+#: ../../standalone/drakgw_.c:270
#, c-format
msgid ""
+"Current configuration of `%s':\n"
"\n"
-"- User Files:\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
msgstr ""
+"Trenutna konfiguracija `%s':\n"
"\n"
-"- korisniÄke datoteke:\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
-msgstr "Opcije montiranja"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Jamaica"
-msgstr "Jamajka"
+"Mreža: %s\n"
+"IP adresa: %s\n"
+"IP atributi: %s\n"
+"Drajver: %s"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:283
+#, fuzzy
msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
+"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"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
+"\n"
msgstr ""
-"Dodjeljuje raw uređaje blokovskim uređajima (kao što su\n"
-"particije hard diska), za potrebu aplikacija kao što je Oracle ili DVD "
-"playeri"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Molim saÄekajte, pripremam instalaciju..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "Češka (QWERTZ)"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Otkrij id mrežne karte (korisno za laptope)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Broj porta treba biti cijeli broj!"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "You must choose an image file first!"
-msgstr "Morate izabrati image datoteku!"
+"Mogu zadržati trenutnu konfiguraciju i pretpostaviti da ste već podesili "
+"DHCP server; u tom sluÄaju molim provjerite da li sam ispravno proÄitao "
+"mrežu C klase koju ćete koristiti na lokalnoj mreži; neću je ponovo podesiti "
+"i neću mijenjati vaše postavke DHCP servera.\n"
+"\n"
+"Ako ne, mogu ponovo podesiti vaš interfejs i podesiti DHCP server za vas.\n"
+"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Vrati sa hard diska"
+#: ../../standalone/drakgw_.c:290
+#, fuzzy
+msgid "Local Network adress"
+msgstr "Lokalna mreža C klase"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "Dodaj na LVM"
+#: ../../standalone/drakgw_.c:294
+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 ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "DNS server"
+#: ../../standalone/drakgw_.c:300
+msgid "(This) DHCP Server IP"
+msgstr "IP adresa (ovog) DHCP servera"
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr "Trinidad i Tobago"
+#: ../../standalone/drakgw_.c:301
+#, fuzzy
+msgid "The DNS Server IP"
+msgstr "IP adresa (ovog) DHCP servera"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD i LPRng ne podržavaju IPP Å¡tampaÄe.\n"
+#: ../../standalone/drakgw_.c:302
+#, fuzzy
+msgid "The internal domain name"
+msgstr "Novo ime Å¡tampaÄa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host name or IP."
-msgstr "Ime raÄunara ili IP."
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
+msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Edit"
-msgstr "/_Edituj"
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "jednostavno"
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
+msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "Obriši sve"
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No test pages"
-msgstr "Nijedna testna strana"
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
+msgstr "Ponovo podesi interfejs i DHCP server"
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falklandsko otoÄje"
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
+msgstr "Lokalna mreža se ne završava sa `.0', izlazim."
-#: ../../standalone/drakconnect:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
+msgid "Potential LAN address conflict found in current config of %s!\n"
+msgstr ""
+"Potencijalan konflikt LAN adresa pronađen u trenutnoj konfiguraciji %s!\n"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Boot disk creation"
-msgstr "Pravljenje boot diskete"
+#: ../../standalone/drakgw_.c:335
+msgid "Configuring..."
+msgstr "Podešavam..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
-msgstr "Ponedjeljak"
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "Podešavam skripte, instaliram software, pokrećem servere..."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:372
#, c-format
-msgid "Unknown model"
-msgstr "Nepoznat model"
+msgid "Problems installing package %s"
+msgstr "Problemi tokom instaliranja paketa %s"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
+#: ../../standalone/drakgw_.c:505
+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 ""
-"ako je postavljeno na da, provjerava datoteke/direktorije koje svako može "
-"pisati."
+"Sve je konfigurisano.\n"
+"Sada možete dijeliti Internet konekciju sa ostalim raÄunarima na vaÅ¡oj "
+"lokalnoj mreži, koristeći automatsku mrežnu konfiguraciju (DHCP)."
-#: ../../help.pm:1
-#, c-format
-msgid "authentication"
-msgstr "provjera autentiÄnosti"
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
+msgstr "PodeÅ¡avanje je već zavrÅ¡eno, ali je trenutno iskljuÄeno."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now"
-msgstr "Backup-uj sada"
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
+msgstr "PodeÅ¡avanje je već zavrÅ¡eno i trenutno je ukljuÄeno."
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/_Datoteka"
+#: ../../standalone/drakgw_.c:525
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Dijeljenje Internet konekcije nije nikad podešeno."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Uklanjam Å¡tampaÄ iz Star/Open Offica"
+#: ../../standalone/drakgw_.c:531
+msgid "Internet connection sharing configuration"
+msgstr "Podešavanje dijeljenja Internet konekcije"
-#: ../../services.pm:1
+#: ../../standalone/drakgw_.c:539
#, 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."
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"Pokreće filtriranje paketa za Linux kernele serije 2.2 kako\n"
-"bi se aktivirao firewall i zaÅ¡titio vaÅ¡ raÄunar od mrežnih napada."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Editable"
-msgstr "Izmjenljivo"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
-msgstr "Koji DHCP klijent želite koristiti? (podrazumijeva se dhcp-client)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr "Tamilska (ISCII)"
+"Dobrodošli u alat za Dijeljenje Internet konekcije!\n"
+"\n"
+"%s\n"
+"\n"
+"Kliknite na Podesi da pokrenete Äarobnjak."
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
-msgstr "Mayotte"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "group"
+msgstr "Radna grupa"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
+#: ../../standalone/drakperm_.c:36
+msgid "path"
msgstr ""
-"Podesi veliÄinu historije naredbi shella. Vrijednost -1 znaÄi neograniÄeno."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d KB\n"
-msgstr "%d KB\n"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "permissions"
+msgstr "particiji %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Pravim auto instalacijsku disketu..."
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "user"
+msgstr "Korisnik"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for scanners ..."
-msgstr "Tražim skenere ..."
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
-msgstr "Rusija"
+#: ../../standalone/drakperm_.c:44
+#, fuzzy
+msgid "delete"
+msgstr "Obriši"
-#: ../../steps.pm:1
-#, c-format
-msgid "Partitioning"
-msgstr "Particioniranje"
+#: ../../standalone/drakperm_.c:45
+msgid "edit"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
-msgstr "prepoznata ethernet kartica(e)"
+#: ../../standalone/drakperm_.c:46
+#, fuzzy
+msgid "Down"
+msgstr "Gotovo"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
-msgstr "Syslog"
+#: ../../standalone/drakperm_.c:47
+#, fuzzy
+msgid "add a rule"
+msgstr "Dodaj modul"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create catalog!"
-msgstr "Ne mogu napraviti katalog!"
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
+msgstr ""
-#: ../advertising/11-mnf.pl:1
-#, c-format
+#: ../../standalone/drakperm_.c:51
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."
+"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 ""
-"Zaokružite vaš sigurnosni sistem ovim vrlo jednostavnim softverom koji spaja "
-"komponente visokih performansi, kao što je firewall, VPN server i klijent, "
-"sistem za detekciju upada (intrusion detection system) inadzor saobraćaja."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
-msgstr "Nema dovoljno prostora za auto-alokaciju"
+#: ../../standalone/drakperm_.c:56
+#, fuzzy
+msgid "Add a new rule at the end"
+msgstr "Dodaj novi Å¡tampaÄ"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "Podesite administratorsku (root) šifru"
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable IP spoofing protection"
-msgstr "UkljuÄi zaÅ¡titu od lažiranja IP adrese"
+#: ../../standalone/drakperm_.c:58
+#, fuzzy
+msgid "Up selected rule one level"
+msgstr "Ništa izabrano"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
msgstr ""
-"Nema slobodnih drajvera za vaÅ¡u zvuÄnu karticu (%s), ali postoji vlasniÄki "
-"drajver na \"%s\"."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group :"
-msgstr "Grupa :"
+#: ../../standalone/drakperm_.c:60
+#, fuzzy
+msgid "Delete selected rule"
+msgstr "Ukloni izabrano"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
msgstr ""
-"Nakon promjene veliÄine particije %s, svi podaci na njoj će biti izgubljeni"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Podešavanje Internet konekcije"
+#: ../../standalone/drakperm_.c:231
+#, fuzzy
+msgid "Current user"
+msgstr "Prihvati korisnika"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
-msgstr "Dodaj ime kao izuzetak od upravljanja starenjem šifara putem msec-a."
+#: ../../standalone/drakperm_.c:236
+#, fuzzy
+msgid "Permissions"
+msgstr "Verzija: %s\n"
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "USB"
-msgstr "LSB"
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
+msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "Tražim TV kanale"
+#: ../../standalone/drakperm_.c:238
+#, fuzzy
+msgid "Property"
+msgstr "Port"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
-msgstr "Kernel:"
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
+msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_About..."
-msgstr "/_O programu..."
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
-msgstr "Bengalska"
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
-msgstr "Preference: "
+#: ../../standalone/drakperm_.c:296
+msgid ""
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
+msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Servisi: %d aktiviran za %d registrovan"
+#: ../../standalone/drakperm_.c:297
+#, fuzzy
+msgid "Use owner id for execution"
+msgstr "Koristi auto prepoznavanje"
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "Napravite boot disketu"
+#: ../../standalone/drakperm_.c:298
+#, fuzzy
+msgid "Use group id for execution"
+msgstr "Koristi auto prepoznavanje"
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "Solomonska ostrva"
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
+msgstr ""
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Molim testirajte miš:"
+#: ../../standalone/drakperm_.c:304
+#, fuzzy
+msgid "Path selection"
+msgstr "Spasi izbor paketa"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
+#: ../../standalone/drakperm_.c:350
+#, fuzzy
+msgid "user :"
+msgstr "Korisnik"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
+#: ../../standalone/drakperm_.c:352
+#, fuzzy
+msgid "group :"
msgstr "Radna grupa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Hostname Å¡tampaÄa ili IP adresa"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "down"
-msgstr "gotovo"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Path or Module"
-msgstr "Staza ili modul raÄunara"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Naziv Å¡tampaÄa bi se trebao sastojati od slova, brojeva i donje linije"
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Nije konektovan"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Show current interface configuration"
-msgstr "Prikaži postavke trenutnog interfejsa"
+#: ../../standalone/draksound_.c:47
+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/printerdrake:1
-#, c-format
-msgid "Add Printer"
-msgstr "Dodaj Å¡tampaÄ"
+#: ../../standalone/draksound_.c:54
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:21
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."
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-"Ovaj argument određuje da li su klijenti autorizovani za\n"
-"povezivanje na X server putem mreže na TCP portu 6000."
-#: ../../help.pm:1
-#, c-format
-msgid "Development"
-msgstr "Programiranje"
+#: ../../standalone/draksplash_.c:67
+#, fuzzy
+msgid "first step creation"
+msgstr "Kreiranje boot diskete"
-#: ../../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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Done"
-msgstr "Gotovo"
+#: ../../standalone/draksplash_.c:70
+#, fuzzy
+msgid "final resolution"
+msgstr "Rezolucija"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Web Server"
-msgstr "Web server"
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+#, fuzzy
+msgid "choose image file"
+msgstr "Izaberi datoteku"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "ÄŒile"
+#: ../../standalone/draksplash_.c:72
+#, fuzzy
+msgid "Theme name"
+msgstr "Share naziv"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tNe ukljuÄuj sistemske datoteke\n"
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
+#, fuzzy
+msgid "Configure bootsplash picture"
+msgstr "Podešavanje servisa"
+
+#: ../../standalone/draksplash_.c:90
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."
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
-"Inkjet drajveri za štampu koje obezbjeđuje Lexmark podržavaju samo lokalne "
-"Å¡tampaÄe, a ne i Å¡tampaÄe na udaljenim raÄunarima ili print serverima. Molim "
-"spojite vaÅ¡ Å¡tampaÄ na lokalni port ili ga podesite na raÄunaru na koji je "
-"spojen."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:91
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!"
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
-"Vaš višenamjenski uređaj je automatski konfigurisan kako bi mogao skenirati. "
-"Sada možete skenirati sa komandne linije pomoću komande \"scanimage"
-"\" (\"scanimage -d hp:%s\" kako biste naveli scanner ako imate više od "
-"jednog) ili koristeći grafiÄke okoline \"xscanimage\" ili \"xsane\". Ako "
-"koristite GIMP, možete također skenirati koristeći odgovarajuću stavku u "
-"meniju \"File\"/\"Acquire\". Za više informacija, pogledajte još i \"man "
-"scanimage\" na komandnoj liniji (\"#scanimage\" u Konqueroru).\n"
-"\n"
-"Nemojte koristiti \"scannerdrake\" za ovaj uređaj!"
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "(već dodan %s)"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation in progress"
-msgstr "Instalacija bootloadera u toku"
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
-msgstr ", koristeći komandu %s"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt i Shift tipke istovremeno"
+#: ../../standalone/draksplash_.c:95
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
-msgstr "Flagovi"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Users"
-msgstr "Dodaj/obriši korisnike"
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Nedostaje IP adresa raÄunara/mreže."
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
-msgstr "sedmiÄno"
+#: ../../standalone/draksplash_.c:113
+#, fuzzy
+msgid "Preview"
+msgstr "Uređaj"
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "Podešavanja"
+#: ../../standalone/draksplash_.c:115
+#, fuzzy
+msgid "Save theme"
+msgstr "Sistem instalacije"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "Unesena IP adresa raÄunara/mreže nije ispravna.\n"
+#: ../../standalone/draksplash_.c:116
+#, fuzzy
+msgid "Choose color"
+msgstr "Izaberite monitor"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "Napravi/premjesti backup kljuÄeve za SSH"
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr "Ovdje je puna lista svih dostupnih država"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Alternativna testna strana (A4)"
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, 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."
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
msgstr ""
-"Ako imate sve CDe na listi, kliknite na U redu.\n"
-"Ako nemate nijedan od ovih CDova, kliknite na Odustani.\n"
-"Ako nedostaju samo neki CDovi, iskljuÄite ih, zatim kliknite na U redu."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
-msgstr "Molim saÄekajte"
+#: ../../standalone/draksplash_.c:428
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Izbor modela Å¡tampaÄa"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP"
+#: ../../standalone/draksplash_.c:449
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Morate izabrati ili unijeti Å¡tampaÄ / ureÄ‘aj!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup user files"
-msgstr "Backup korisniÄkih datoteka"
+#: ../../standalone/draksplash_.c:458
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Prepoznajem uređaje ..."
-#: ../../diskdrake/dav.pm:1
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
#, c-format
-msgid "New"
-msgstr "Novi"
+msgid "%s BootSplash (%s) preview"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:46
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"
+"XawTV isn't installed!\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"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
"\n"
-"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 ""
-"Ovo je najvažnija odluka za sigurnost vašeg GNU/Linux sistema: trebate\n"
-"unijeti \"root\" šifru, \"Root\" je sistemski administrator i jedini\n"
-"korisnik kojem je dozvoljeno da updatuje sistem, dodaje druge korisnike,\n"
-"mijenja konfiguraciju sistema itd. Ukratko, \"root\" može raditi sve! Stoga\n"
-"trebate izabrati šifru koju je teško pogoditi - DrakX će vam reći da li je "
-"šifra\n"
-"koju ste odabrali prelagana. Kao što možete vidjeti, niste prisiljeni da\n"
-"unesete šifru, ali vam savjetujemo da to uradite. GNU/Linux je podložan\n"
-"operatorskim greškama kao i bilo koji drugi operativni sistem. Pošto\n"
-"\"root\" može prevazići sva ograniÄenja i nenamjerno pobrisati sve podatke\n"
-"na particijama neoprezno im pristupajući, važno je da je teško postati \"root"
-"\".\n"
-"\n"
-"Å ifra treba biti kombinacija alfanumeriÄkih znakova i biti barem 8 znakova\n"
-"duga. Nikad ne zapisujte \"root\" šifru -- time vaš sistem postaje lagano\n"
-"kompromitovati.\n"
-"\n"
-"Jedan izuzetak -- ne dozvolite da šifra bude preduga ili prekomplikovana\n"
-"pošto ćete je morati zapamtiti!\n"
-"\n"
-"Šifra neće biti prikazana na ekranu dok je unosite. Da bismo smanjili\n"
-"mogućnost greške zbog kucanja naslijepo, moraćete unijeti šifru dva puta.\n"
-"Ako nekim sluÄajem ponovite istu greÅ¡ku dva puta, ovu ''neispravnu'' Å¡ifru\n"
-"trebate koristiti prilikom prve prijave.\n"
-"\n"
-"Ako želite da pristup ovom raÄunaru bude kontroliran pomoću servera za\n"
-"autentikaciju, kliknite na dugme \"%s\".\n"
-"\n"
-"Ako vaša mreža koristi LDAP, NIS ili PDC Windows domen autentikacione\n"
-"servise, izaberite odgovarajući kao \"%s\". Ako ne znate koji\n"
-"koristiti, pitajte vašeg mrežnog administratora.\n"
-"\n"
-"Ako imate problema sa pamćenjem šifara, možete izabrati opciju \"%s\",\n"
-"pod uslovom da vaÅ¡ raÄunar neće biti spojen na Internet i da\n"
-"vjerujete svakome ko mu ima fiziÄki pristup."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
-msgstr "Zaštita od lažiranja rezolucije imena"
-
-#: ../../help.pm:1
-#, 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."
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-"Na ovom mjestu, DrakX vam omogućuje da izaberete sigurnosni nivo\n"
-"koji želite imati na ovom raÄunaru. Kao pravilo, sigurnosni nivo treba biti\n"
-"tim viÅ¡i Å¡to su važniji podaci na raÄunaru, a pogotovo ako će raÄunar biti\n"
-"direktno izložen Internetu. Većim nivoom sigurnosti obiÄno gubite na\n"
-"jednostavnosti korištenja.\n"
-"\n"
-"Ako ne znate šta izabrati, zadržite ponuđenu opciju."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "UÄitaj sa diskete"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Sljedeći Å¡tampaÄ je prepoznat automatski."
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Uses command %s"
-msgstr "Koristi naredbu %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
-msgstr "Boot disketa"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "Norveška"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for new scanners ..."
-msgstr "Tražim nove skenere ..."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Apache World Wide Web Server"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "stepping procesora (broj pod-modela / generacije)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "select path to restore (instead of /)"
-msgstr "izaberite stazu za vraćanje (umjesto / )"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Configure bootsplash picture"
-msgstr "Podesite bootsplash sliku"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr "Gruzija"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "Kina"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "(Provjerite da li su svi Å¡tampaÄi spojeni i upaljeni).\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "ÄŒitam podatke instaliranih Å¡tampaÄa..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
-msgstr " Obriši odmah "
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "server"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Ubacite FAT formatiranu disketu u jedinicu %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "da znaÄi da procesor ima aritmetiÄki koprocesor"
-
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Molim saÄekajte... Primjenjujem konfiguraciju"
+#: ../../standalone/drakxtv_.c:63
+msgid "Canada (cable)"
+msgstr "Kanada (kablovska)"
-#. -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
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Dobro došli u GRUB izbornik operativnog sistema!"
+#: ../../standalone/drakxtv_.c:63
+#, fuzzy
+msgid "USA (broadcast)"
+msgstr "USA (bcast)"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "Grub"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
+msgstr "USA (kablovska)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
-msgstr "SCSI kontroleri"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
+msgstr "USA (cable-hrc)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr "na LPD serveru \"%s\", Å¡tampaÄ \"%s\""
+#: ../../standalone/drakxtv_.c:64
+#, fuzzy
+msgid "China (broadcast)"
+msgstr "Kina (bcast)"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Izbor display managera"
+#: ../../standalone/drakxtv_.c:64
+#, fuzzy
+msgid "Japan (broadcast)"
+msgstr "Japan (bcast)"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Zeroconf Ime raÄunara"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
+msgstr "Japan (kablovska)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
-msgstr "Vlastito podešavanje/crontab unos:"
+#: ../../standalone/drakxtv_.c:65
+msgid "East Europe"
+msgstr "IstoÄna Evropa"
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP adresa treba biti u formatu 1.2.3.4"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Francuska"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Podesite CUPS sistem štampe"
+#: ../../standalone/drakxtv_.c:65
+msgid "Ireland"
+msgstr "Irska"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "Ekvador"
+#: ../../standalone/drakxtv_.c:65
+msgid "West Europe"
+msgstr "Zapadna Evropa"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Add an item"
-msgstr "Dodaj stavku"
+#: ../../standalone/drakxtv_.c:66
+msgid "Australia"
+msgstr "Australija"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Å tampaÄi na ovom raÄunaru su dostupni drugim raÄunarima"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
+msgstr "Novi Zeland"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "China (Hong Kong)"
-msgstr "Hong Kong"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
+msgstr "Južna Afrika"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Ne mogu pronaći potrebnu image datoteku '%s'"
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
+msgstr "Argentina"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
msgstr ""
-"Nije otkrivena zvuÄna kartica. Probajte \"harddrake\" poslije instalacije"
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:102
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"Please,\n"
+"type in your tv norm and country"
msgstr ""
-"Zadan je neispravan port: %s.\n"
-"Odgovarajući format je \"port/tcp\" ili \"port/udp\", \n"
-"gdje je \"port\" cijeli broj između 1 i 65535."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome i Principe"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
-msgstr "Ne mogu se prijaviti koristeći korisniÄko ime %s (pogreÅ¡na Å¡ifa?)"
+"Molim,\n"
+"unesite vaš tv standard i državu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbejdžanska (latinica)"
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
+msgstr "TV standard :"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package not installed"
-msgstr "Paket nije instaliran"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
+msgstr "Oblast :"
-#: ../../lang.pm:1
-#, c-format
-msgid "American Samoa"
-msgstr "AmeriÄka Samoa"
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
+msgstr "Pretraga TV kanala je u toku ..."
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Become a MandrakeExpert"
-msgstr "Postanite MandrakeExpert"
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
+msgstr "Tražim TV kanale"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Protocol"
-msgstr "Protokol"
+#: ../../standalone/drakxtv_.c:120
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Došlo je do greške kod instaliranja paketa:"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Kopiraj fontove na sistem"
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
-msgstr "Harddrake pomoć"
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Podešavanje Mandrake Terminal servera"
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakxtv_.c:148
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"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
"\n"
-" DrakBackup Detalji izvještaja\n"
+"You can visit our hardware database at:\n"
"\n"
"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
-msgstr "Vrati sve backupe"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
-msgstr " na paralelnom portu #%s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Podesite minimalnu dužinu šifre, minimalan broj cifara i minimalan broj "
-"velikih slova."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr "ako je postavljeno na da, provjerava otvorene portove."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Potrebno je par trenutaka da se obriše medij."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "Ne možete izabrati/iskljuÄiti ovaj paket"
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "Upozorenje"
+#: ../../standalone/harddrake2_.c:17
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Alternativna testna strana (A4)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
msgstr ""
-"\n"
-"- ostale datoteke:\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name"
-msgstr "Ime udaljenog raÄunara"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr "pristup X programima"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "IzraÄunavam veliÄinu Windows particije"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Osvježi"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Italy"
-msgstr "Italija"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
-msgstr "Kajmanska ostrva"
-
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "greška u demontiranju %s: %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "Naziv Å¡tampaÄa"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
-msgstr "iskljuÄi"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do it!"
-msgstr "Uradi!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
-msgstr "%s ne odgovara"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select model manually"
-msgstr "Izaberite model ruÄno"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Format"
-msgstr "Formatiraj"
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
+msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:21
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'"
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-"NajÄešći naÄin za konekciju sa adsl-om je pppoe.\n"
-"Neke konekcije koriste pptp, a vrlo rijetke koriste dhcp.\n"
-"Ako ne znate, izaberite 'koristi pppoe'"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
-msgstr "Razno"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
-msgstr "Zip"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
-msgstr "Lijeva Alt tipka"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Load setting"
-msgstr "Podešavanje opterećenja"
+#: ../../standalone/harddrake2_.c:22
+#, fuzzy
+msgid "Channel"
+msgstr "Odustani"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
msgstr ""
-"\n"
-"\n"
-"Printerdrake nije mogao odrediti model vaÅ¡eg %s Å¡tampaÄa. Molim izaberite "
-"odgovarajući model na listi."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Podesi izabrani Å¡tampaÄ kao podrazumjevani"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:23
msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
msgstr ""
-"\n"
-"OznaÄite Å¡tampaÄe koje ćete prebacivati i kliknite na \n"
-"\"Prebaci\"."
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
-msgstr "Albanska"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "Litvanija"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "Kompaktno"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Detektovani model: %s %s"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
-msgstr "MandrakeSoft je izabrao najbolji softver za vas"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Local files"
-msgstr "Lokalne datoteke"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "možda"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
-msgstr "Panama"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Can't open %s!"
-msgstr "Ne mogu otvoriti %s!"
+#: ../../standalone/harddrake2_.c:26
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autentikacija"
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:27
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?"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-"Izgleda da vaÅ¡a grafiÄka kartica ima TV-OUT konektor.\n"
-"On se može podesiti da radi koristeći frame-buffer.\n"
-"\n"
-"Za ovo je potrebno da ukljuÄite grafiÄku karticu u TV prije nego Å¡to upalite "
-"raÄunar.\n"
-"Zatim u meniju bootloadera izaberite opciju \"TVout\"\n"
-"\n"
-"Imate li ovu mogućnost?"
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "Monitor"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:30
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"
+"- 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 ""
-"Upravo ćete podesiti Å¡tampanje na Windows raÄun zaÅ¡tićen Å¡ifrom. Zbog "
-"propusta u arhitekturi Samba klijentskog softvera, šifra je stavljena u "
-"obiÄnom tekstu u komandnu liniju Samba klijenta prilikom slanja zadatka "
-"štampe Windows serveru. Stoga je moguće da drugi korisnici ovog istog "
-"raÄunara prikažu Å¡ifru na ekranu koristeći komandu kao Å¡to je \"ps auxwww"
-"\".\n"
-"\n"
-"PreporuÄujemo koriÅ¡tenje jedne od sljedećih alternativa (u svakom sluÄaju "
-"pobrinite se da samo raÄunari na vaÅ¡oj lokalnoj mreži imaju pristup Windows "
-"serveru, na primjer koristeći firewall):\n"
-"\n"
-"Koristite raÄun bez Å¡ifre na Windows serveru, kao Å¡to je \"GUEST\" raÄun ili "
-"poseban raÄun posvećen Å¡tampanju. Nemojte ukloniti zaÅ¡titu Å¡ifrom sa vaÅ¡eg "
-"liÄnog raÄuna ili administratorskog raÄuna.\n"
-"\n"
-"Podesite vaÅ¡ Windows server tako da je Å¡tampaÄ dostupan pod LPD protokolom. "
-"Zatim podesite Å¡tampanje na ovom raÄunaru uz konekciju tipa \"%s\" u "
-"Printerdrake-u.\n"
-"\n"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 hiljada boja (16 bita)"
+#: ../../standalone/harddrake2_.c:33
+#, fuzzy
+msgid "Cache size"
+msgstr "veliÄina chunka"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
msgstr ""
-"\n"
-"- spasi na hard disku u direktoriju: %s\n"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Pobriši fontove sa mog sistema"
-#: ../../standalone/drakgw:1
-#, 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."
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
msgstr ""
-"Upozorenje, mrežni adapter (%s) je već podešen.\n"
-"\n"
-"Da li želite automatsko ponovno podešavanje?\n"
-"\n"
-"To možete obaviti ruÄno, ali morate znati Å¡ta radite."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "GrafiÄki interfejs pri pokretanju"
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
-msgstr " ADSL"
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
+msgstr ""
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Nema dovoljno particija za RAID nivo %d\n"
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "format disketa koje podržava jedinica"
+#: ../../standalone/harddrake2_.c:36
+#, fuzzy
+msgid "Cpuid level"
+msgstr "Nivo sigurnosti"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "Kopiranje firmware-a nije uspjelo, datoteka %s nije pronađena"
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: true"
-msgstr "lokalni config: da"
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:37
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."
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
msgstr ""
-"Sljedeći Å¡tampaÄi su podeÅ¡eni. Kliknite dva puta na neki od njih za izmjenu "
-"postavki; ako ga želite uÄiniti podrazumijevanim Å¡tampaÄem; ili da biste "
-"vidjeli informacije o njemu."
-
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connected"
-msgstr "Konektovan"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
-msgstr "Makedonska"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "Mali"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
-msgstr "Mostovi (bridges) i sistemski kontroleri"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "/Datoteka/_SaÄuvaj"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "No details"
-msgstr "Sakrij detalje"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "vrlo fino"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Preview"
-msgstr "Pregled"
+#: ../../standalone/harddrake2_.c:38
+msgid "This field describes the device"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Remote Control"
-msgstr "Udaljena kontrola"
+#: ../../standalone/harddrake2_.c:39
+#, fuzzy
+msgid "Old device file"
+msgstr "Izaberite datoteku"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select media for backup..."
-msgstr "Molim izaberite medij za backup..."
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
-msgstr "Pogrešan e-mail"
+#: ../../standalone/harddrake2_.c:41
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway uređaj"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 server: %s\n"
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "Omogući thin klijente"
+#: ../../standalone/harddrake2_.c:43
+#, fuzzy
+msgid "Module"
+msgstr "Miš"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Gruzijska (\"ruski\" izgled)"
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_Opcije"
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Your printer model"
-msgstr "Model vaÅ¡eg Å¡tampaÄa"
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
+msgstr ""
-#: ../../any.pm:1
-#, 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)."
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
msgstr ""
-"\n"
-"\n"
-"(PAŽNJA! Vi koristite XFS za vašu root particiju,\n"
-"pravljenje boot diskete na 1.44 Mb disketi vjerovatno neće\n"
-"raditi, pošto XFS traži veoma velik drajver)."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/harddrake2_.c:46
msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-"\n"
-"- Obriši tar datoteke sa diska nakon backupa.\n"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
msgstr ""
-"Nije pronađena nijedna CD ili DVD slika, molim kopirajte instalacioni "
-"program i rpm datoteke."
-#: ../advertising/04-configuration.pl:1
-#, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "Mandrake višenamjenski alat za podešavanje"
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
+msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Save"
-msgstr "Spasi"
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
-msgstr "%s nije podržan"
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr "Pokreće drajvere za vaše USB uređaje."
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Disk"
-msgstr "Disk"
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
+msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Unesite URI ureÄ‘aja Å¡tampaÄa"
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
+msgstr ""
-#: ../advertising/01-thanks.pl:1
-#, c-format
+#: ../../standalone/harddrake2_.c:53
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."
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-"Uspjeh MandrakeSofta je baziran na principima Slobodnog softvera. Vaš novi "
-"operativni sistem je rezultat zajedniÄkog rada Linux zajednice Å¡irom svijeta."
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "Izrael"
+#: ../../standalone/harddrake2_.c:55
+#, fuzzy
+msgid "Floppy format"
+msgstr "Formatiraj"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "Francuska Gvajana"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "default:LTR"
+#: ../../standalone/harddrake2_.c:56
+#, fuzzy
+msgid "Level"
+msgstr "nivo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
-msgstr "Trebate unijeti komandnu liniju!"
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
-msgstr "RuÄno izaberite korisnika"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "PremjeÅ¡tanje konfiguracije Å¡tamapÄa"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Da li želite omogućiti Å¡tampanje na gore navedenim Å¡tampaÄima?\n"
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+#, fuzzy
+msgid "Model"
+msgstr "Miš"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of suid root files"
-msgstr "Provjeri dodavanje/brisanje suid root datoteka"
+#: ../../standalone/harddrake2_.c:58
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memorija kartice (DMA)"
-#: ../../any.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
msgstr ""
-"Da bi ovo radilo sa W2K PDCom, vjerovatno će biti potrebno da admin izvrši:\n"
-" C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /add\n"
-"i restartuje server. TakoÄ‘e će vam trebati korisniÄko ime i Å¡ifra "
-"administratora domena da biste pridružili raÄunar Windows(tm) domenu.\n"
-"Ako mreža još nije aktivirana, DrakX će pokušati pristupanje domenu tek "
-"nakon što prođete kroz korak podešavanja mreže.\n"
-"Ako ovo podešavanje iz nekog razloga ne uspije i prijava na domen ne bude "
-"izvršena, izvršite naredbu 'smbpasswd -j DOMAIN -U USER%%PASSWORD' koristeći "
-"vaÅ¡u Windows(tm) domenu, kao i administratorovo korisniÄko ime i Å¡ifru nakon "
-"pokretanja sistema.\n"
-"Naredba 'wbinfo -t' će provjeriti da li su vaši podaci ispravni."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Port %s)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Koristi mrežnu konekciju za backup"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Kernel version"
-msgstr "Kernel verzija"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Model name"
+msgstr "Naziv modula"
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:60
+msgid "Official vendor name of the cpu"
msgstr ""
-"Sada je vrijeme da izaberete koje programe želite instalirati na vaš\n"
-"sistem. Za Mandrake Linux su dostupne hiljade paketa, pa da bi\n"
-"njihovo upravljanje bilo lakÅ¡e, organizovani su u grupe sliÄne\n"
-"primjene.\n"
-"\n"
-"Paketi su sortirani u grupe ovisno o tipiÄnoj namjeni vaÅ¡eg raÄunara.\n"
-"Mandrake Linux sadrži Äetiri predefinisane instalacije. Ove klase\n"
-"instalacije možete zamisliti kao kontejnere za razne pakete. Možete\n"
-"miješati i poklapati aplikacije iz raznih grupa, pa tako instalacija "
-"''Radna\n"
-"stanica'' može sadržavati aplikacije iz grupe ''Programiranje''.\n"
-"\n"
-" * \"%s\": ako planirate da koristite vaÅ¡ raÄunar kao radnu stanicu, "
-"izaberite\n"
-"jednu ili više aplikacija koje se nalaze u ovoj grupi.\n"
-"\n"
-" * \"%s\": ako planirate koristiti vaÅ¡ raÄunar za programiranje, izaberite\n"
-"odgovarajuće pakete iz ove grupe.\n"
-"\n"
-" * \"%s\": ako je vaÅ¡ raÄunar zamiÅ¡ljen kao server, izaberite koje od\n"
-"uobiÄajenih servisa želite instalirati na vaÅ¡ raÄunar.\n"
-"\n"
-" * \"%s\": ovdje možete izabrati vaÅ¡u preferiranu grafiÄku okolinu. Barem\n"
-"jedna od njih mora biti izabrana ako želite da imate grafiÄki interfejs.\n"
-"\n"
-"Držanjem kursora miša iznad imena grupe će nakratko prikazati kratko\n"
-"objaÅ¡njenje o pojedinoj grupi. Ako iskljuÄite sve grupe prilikom obavljanja\n"
-"obiÄne instalacije (a ne upgrade), iskoÄiće dijalog koji vam nudi razne\n"
-"opcije za minimalnu instalaciju:\n"
-"\n"
-" * \"%s\": instalira minimalan mogući broj paketa potrebnih da imate\n"
-"funkcionalan grafiÄki desktop.\n"
-"\n"
-" * \"%s\": instalira bazni sistem plus osnovne alate i njihovu\n"
-"dokumentaciju.\n"
-" Ova instalacija je prikladna za podešavanje servera.\n"
-"\n"
-" * \"%s\": ovo će instalirati apsolutni minimum paketa potrebnih da imate\n"
-"funkcionalan Linux sitsem. Sa ovom instalacijom imaćete samo komandnu\n"
-"liniju. Ukupna veliÄina ove instalacije je oko 65 megabajta.\n"
-"\n"
-"Možete aktivirati opciju \"%s\", koja je zgodna ako se upoznati sa "
-"ponuđenim\n"
-"paketima ili ako želite imati potpunu kontrolu nad onim što će se "
-"instalirati.\n"
-"\n"
-"Ako ste zapoÄeli instalaciju u \"%s\" režimu, možete iskljuÄiti sve grupe\n"
-"kako biste izbjegli instalaciju bilo kojeg novog paketa. Ovo je pogodno za\n"
-"popravljanje ili unaprjeđenje postojećeg sistema."
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "Prihvati korisnika"
+#: ../../standalone/harddrake2_.c:61
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 dugmeta"
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
-msgstr "Server"
+#: ../../standalone/harddrake2_.c:62
+#, fuzzy
+msgid "Name"
+msgstr "Ime: "
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
-msgstr "Lijeva Shift tipka"
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "network printer port"
+msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " local network"
-msgstr " lokalna mreža"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
+msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "Pogrešan izbor, pokušajte ponovo\n"
+#: ../../standalone/harddrake2_.c:64
+msgid "the number of the processor"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
-msgstr "Syslog izvještaji na konzoli 12"
+#: ../../standalone/harddrake2_.c:65
+#, fuzzy
+msgid "Model stepping"
+msgstr "postavka opterećenja"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search new servers"
-msgstr "Traži nove servere"
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
-msgstr "Heard ostrvo i McDonaldova ostrva"
+#: ../../standalone/harddrake2_.c:66
+#, fuzzy
+msgid "The type of bus on which the mouse is connected"
+msgstr "Molimo izaberite na kojem serijskom portu je spojen vaš miš."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
-msgstr "Nema alternativnog drajvera"
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "Prebaci u ekspertni mod"
+#: ../../standalone/harddrake2_.c:68
+msgid "the vendor name of the processor"
+msgstr ""
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
-msgstr "(na ovom raÄunaru)"
+#: ../../standalone/harddrake2_.c:82
+#, fuzzy
+msgid "/_Quit"
+msgstr "Izlaz"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Gateway adresa treba biti u formatu 1.2.3.4"
+#: ../../standalone/harddrake2_.c:83
+#, fuzzy
+msgid "/Autodetect _printers"
+msgstr "Koristi auto prepoznavanje"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
-msgstr ""
-"Otkrio sam winmodem baziran na \"%s\" chipsetu, želite li instalirati "
-"odgovarajući software ?"
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
+msgstr "/_Opcije"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Tražim već instalirane pakete..."
+#: ../../standalone/harddrake2_.c:85
+#, fuzzy
+msgid "/Autodetect _modems"
+msgstr "Koristi auto prepoznavanje"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Koristi diferencijalni backup"
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
+msgstr "/_Pomoć"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Driver"
-msgstr "Drajver"
+#: ../../standalone/harddrake2_.c:89
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Pomoć"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
msgstr ""
-"Linuxconf će ponekad obaviti raznolike zadatke tokom boota\n"
-"kako bi se održala sistemska konfiguracija."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVD-R device"
-msgstr "DVDR uređaj"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Å tampaÄ na udaljenom lpd serveru"
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/harddrake2_.c:93
msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
+"Description of the fields:\n"
"\n"
-"-You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
msgstr ""
-"Prije instaliranja fontova, provjerite da li imate dozvole da ih koristite i "
-"instalirate na va[em sistemu.\n"
-"\n"
-"-Možete instalirati fontove koristeći uobiÄajen naÄin. U rijetkim "
-"sluÄajevima, neispravni fontovi mogu zaglaviti vaÅ¡ X Server."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:96
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."
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
msgstr ""
-"Yaboot is a bootloader for NewWorld Macintosh hardware and can be used to\n"
-"boot GNU/Linux, MacOS or MacOSX. Normally, MacOS and MacOSX are correctly\n"
-"detected and installed in the bootloader menu. If this is not the case, you\n"
-"can add an entry by hand in this screen. 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."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
-msgstr "Srijeda"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "NjemaÄka"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
-msgstr "Austrija"
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "Bez miša"
+#: ../../standalone/harddrake2_.c:96
+#, fuzzy
+msgid "Select a device !"
+msgstr "Izaberite skener"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "Izaberite veliÄinu vaÅ¡eg CD/DVD medija (MB)"
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
+msgstr "/_Prijavi grešku"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check permissions of files in the users' home"
-msgstr "Provjeri privilegije datoteka u korisniÄkom home-u."
+#: ../../standalone/harddrake2_.c:102
+#, fuzzy
+msgid "/_About..."
+msgstr "/Pomoć/_O programu..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
msgstr ""
-"Pokrenite \"sndconfig\" poslije instalacije kako biste podesili vaÅ¡u zvuÄnu "
-"karticu"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "Smanji stablo"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Podešavanje auto instalacije"
+#: ../../standalone/harddrake2_.c:105
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "Podešavanje mreže"
+#: ../../standalone/harddrake2_.c:106
+#, fuzzy
+msgid "Author:"
+msgstr "Ispitivanje"
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "Gdje želite smjestiti bootloader?"
+#: ../../standalone/harddrake2_.c:113
+#, fuzzy
+msgid "Detection in progress"
+msgstr "detektovan na portu %s"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Vaš izbor preferiranog jezika će se odraziti na jezik dokumentacije,\n"
-"instalacione procedure i generalno sistema. Najprije izaberite oblast u\n"
-"kojoj se nalazite, a zatim jezik kojim govorite.\n"
-"\n"
-"Klikanjem na dugme \"%s\" možete izabrati druge jezike koje\n"
-"želite instalirati na vašu radnu stanicu, time instalirajući sistemsku\n"
-"dokumentaciju i aplikacije za svaki od izabranih jezika. Na primjer, ako\n"
-"će vaÅ¡ raÄunar koristiti osobe iz Å¡panije, izaberite Engleski kao osnovni\n"
-"jezik na listi, a \"%s\" u oblasti Više opcija.\n"
-"\n"
-"Obratite pažnju da niste ograniÄeni na samo jedan dodatni jezik. Možete\n"
-"ih izabrati nekoliko ili Äak ih instalirati sve klikom na polje \"%s\".\n"
-"VaÅ¡ izbor podrÅ¡ke za neki jezik oznaÄava da će biti instaliran prijevod,\n"
-"fontovi, pravila za provjeru pravopisa itd. za taj jezik. Pored toga,\n"
-"opcija \"%s\" će prisiliti upotrebu Unicode-a (UTF-8) na cijelom\n"
-"sistemu. No, obratite pažnju da je ovo eksperimentalna mogućnost. Ako\n"
-"izaberete nekoliko jezika koji zahtijevaju razliÄito kodiranje, Unicode će\n"
-"svejedno biti instaliran.\n"
-"\n"
-"Da biste izabrali između raznih jezika instaliranih na vašem sistemu, "
-"možete\n"
-"pokrenuti kao \"root\" naredbu \"/usr/sbin/localedrake\", Äime mijenjate\n"
-"jezik koji koristi Äitav sistem. IzvrÅ¡avanjem te naredbe kao obiÄan\n"
-"korisnik mijenjate jeziÄke postavke samo za tog konkretnog korisnika."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr "Ova verzija Mandrake Linuxa ne podržava %s,"
+#: ../../standalone/harddrake2_.c:119
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Prepoznavanje hard diska"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "tape"
-msgstr "traka"
+#: ../../standalone/harddrake2_.c:126
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Pogledaj hardware info"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr "DHCP klijent"
+#: ../../standalone/harddrake2_.c:129
+#, fuzzy
+msgid "Information"
+msgstr "Prikaži informacije"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Izlistaj korisnike na display manager-ima (kdm i gdm)"
+#: ../../standalone/harddrake2_.c:131
+#, fuzzy
+msgid "Configure module"
+msgstr "Podešavanje miša"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (serijski, stari C7 tip)"
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
+msgstr ""
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Povratak iz datoteke %s nije uspio: %s"
+#: ../../standalone/harddrake2_.c:143
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Uklanjam Å¡tampaÄ \"%s\" ..."
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:159
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"
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-"Ne mogu proÄitati tabelu particija na ureÄ‘aju %s, previÅ¡e je oÅ¡tećena za "
-"mene :(\n"
-"Mogu pokušati da pobrišem loše particije (SVI PODACI će biti izgubljeni!).\n"
-"Drugo rješenje je da onemogućim DrakX da mijenja tabelu particija.\n"
-"(greška je %s)\n"
-"\n"
-"Slažete li se sa gubitkom svih particija?\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Find Package"
-msgstr "Nađi paket"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Sigurno želite podesiti Å¡tampanje na ovom raÄunaru?\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "New devfs device"
-msgstr "Novi devfs uređaj"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
-msgstr "GREÅ KA: Ne mogu pokrenuti %s."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Boot Style Configuration"
-msgstr "Konfiguracija stila boota"
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Automatska sinhronizacija vremena"
+#: ../../standalone/harddrake2_.c:231
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekundi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "Backup datoteke nisu pronađene na %s."
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect modems"
+msgstr "Koristi auto prepoznavanje"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "Armenska (fonetska)"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect printers"
+msgstr "Koristi auto prepoznavanje"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Card model:"
-msgstr "Model kartice:"
+#: ../../standalone/harddrake2_.c:261
+#, fuzzy
+msgid "/Options"
+msgstr "/_Opcije"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
-msgstr "Thin klijenti"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "Molimo izaberite izgled vaše tastature."
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
-msgstr "Hvala vam što ste odabrali Mandrake Linux 9.2"
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr "Želite li da BackSpace vrati Delete u konzoli?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Start Server"
-msgstr "Pokreni server"
+#: ../../standalone/livedrake_.c:18
+msgid "Change Cd-Rom"
+msgstr "Promjenite CD-ROM"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
+#: ../../standalone/livedrake_.c:19
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"Molimo ubacite Instalacioni CD u vaš CD-ROM uređaj i pritisnite Ok kad ste "
+"spremni.\n"
+"Ako ga nemate, pritisnite Odustani da bi se izbjegao live upgrade."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "All remote machines"
-msgstr "Svi udaljeni raÄunari"
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Ne mogu da pokrenem live upgrade !!!\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Install themes"
-msgstr "Instaliraj teme"
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
+msgstr "Izmjena je napravljena, ali da bi stupila na snagu morate se odjaviti"
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
-msgstr "Espanol"
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
+msgstr "logdrake"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "Pripremam instalaciju"
+#: ../../standalone/logdrake_.c:68
+msgid "Show only for the selected day"
+msgstr "Prikaži samo za izabrani dan"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Izmijeni izabrani raÄunar/mrežu"
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
+msgstr "/Datoteka/_Nova"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add User -->"
-msgstr "Dodaj korisnika -->"
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
+msgstr "<control>N"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "Nauru"
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
+msgstr "/Datoteka/_Otvori"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Instalacija True Type fontova"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
+msgstr "<control>O"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Automatski prepoznaj Å¡tampaÄe spojene direktno na lokalnu mrežu"
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr "/Datoteka/_SaÄuvaj"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN configuration"
-msgstr "Podešavanje LANa"
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
+msgstr "<control>S"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "hard disk model"
-msgstr "model hard diska"
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
+msgstr "/_Datoteka/SaÄuvaj K_ao"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Maintain /etc/exports:\n"
-" \tClusternfs allows export of the root filesystem to diskless "
-"clients. drakTermServ\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr "/Datoteka/-"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Ne možete koristiti LVM logiÄki volumen za taÄku montiranja %s"
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
+msgstr "/Opcije/Test"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "Preuzmi fontove iz Windowsa"
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
+msgstr "/Pomoć/_O programu..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
+#: ../../standalone/logdrake_.c:145
+msgid "User"
+msgstr "Korisnik"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
+#: ../../standalone/logdrake_.c:146
+msgid "Messages"
+msgstr "Poruke"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "Iranska"
+#: ../../standalone/logdrake_.c:147
+msgid "Syslog"
+msgstr "Syslog"
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
-msgstr "Hrvatska"
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
+msgstr "Objašnjenja Mandrake alata"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "Gateway:"
+#: ../../standalone/logdrake_.c:151
+msgid "search"
+msgstr "pretraživanje"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add server"
-msgstr "Dodaj server"
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
+msgstr "Alat za pregled vaših logova"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name"
-msgstr "Ime udaljenog Å¡tampaÄa"
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
+msgstr "Podešavanja"
-#: ../advertising/10-security.pl:1
-#, 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."
-msgstr ""
-"MandrakeSoft je dizajnirao ekskluzivne alate koji rezultiraju do sada "
-"najsigurnijom verzijom Linuxa: Draksec, alat za upravljanje sistemskom "
-"sigurnošću, kao i moćan firewall su udruženi kako bi drastiÄnosmanjili rizik "
-"od provale u sistem."
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
+msgstr "matching"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "Uređaj: "
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
+msgstr "but not matching"
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
+msgstr "Izaberi datoteku"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "Licencni ugovor"
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
+msgstr "Kalendar"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "System Options"
-msgstr "Sistemske opcije"
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
+msgstr "Sadržaj datoteke"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Please choose the desired security level"
-msgstr "Molim izaberite nivo sigurnosti"
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+#, fuzzy
+msgid "Mail alert"
+msgstr "Mail/SMS obavijest"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/logdrake_.c:245
#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "Ovaj raÄunar je već na listi, ne možete ga ponovo dodati.\n"
+msgid "please wait, parsing file: %s"
+msgstr "molim saÄekajte, parsiram datoteku: %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", USB printer"
-msgstr ", USB Å¡tampaÄ"
+#: ../../standalone/logdrake_.c:392
+#, fuzzy
+msgid "Mail alert configuration"
+msgstr "Podešavanje Mail/SMS obavijesti"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/logdrake_.c:393
+#, fuzzy
msgid ""
-"Unable to properly close mkbootdisk:\n"
+"Welcome to the mail configuration utility.\n"
"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Ne mogu ispravno zatvoriti mkbootdisk:\n"
+"Dobro došli u aplikaciju za podešavanje mail/SMSa.\n"
"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+"Ovdje možete podesiti sistem obavještavanja.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
msgstr ""
-"Inkrementalni backupi snimaju samo datoteke koje su promijenjene ili nove od "
-"zadnjeg backupa."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Izaberite aplikacije koje će podržavati fontove :"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "Podešavanje X"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hd"
-msgstr "hd"
+#: ../../standalone/logdrake_.c:401
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Ime domena"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turska (tradicionalni \"F\" model)"
+#: ../../standalone/logdrake_.c:402
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS server"
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "ÄŒestitamo!"
+#: ../../standalone/logdrake_.c:403
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix mail server, Inn news server"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Koristi id vlasnika za izvršavanje"
+#: ../../standalone/logdrake_.c:404
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS server"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow remote root login"
-msgstr "Dozvoli prijavu kao root putem mreže"
+#: ../../standalone/logdrake_.c:405
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS server"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Down"
-msgstr "Dolje"
+#: ../../standalone/logdrake_.c:406
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Servisi"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Sirovo štampanje (Bez drajvera)"
+#: ../../standalone/logdrake_.c:407
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Printer Server"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Install rpm"
-msgstr "Instaliraj RPM"
+#: ../../standalone/logdrake_.c:414
+msgid "service setting"
+msgstr "postavke servisa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/logdrake_.c:415
+#, fuzzy
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"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
-"Za štampanje datoteke sa komandne linije (terminalski prozor) možete "
-"koristiti ili komandu \"%s <datoteka>\" ili grafiÄki alat za Å¡tampu: \"xpp "
-"<datoteka>\" ili \"kprinter <datoteka>\". GrafiÄki alati vam omogućuju da "
-"jednostavno odaberete Å¡tampaÄ i izmjenite podeÅ¡enja opcija.\n"
+"Možete primiti obavještenje ako neki od izabranih servisa prestane raditi"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "Preostalo vremena "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "UK tastatura"
+#: ../../standalone/logdrake_.c:428
+msgid "load setting"
+msgstr "postavka opterećenja"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "Demontiraj"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
+msgstr ""
+"Primićete upozorenje ako je opterećenje (system load) veće od ove vrijednosti"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
+#: ../../standalone/logdrake_.c:444
+msgid "alert configuration"
+msgstr "postavka upozorenja"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "Deinstaliraj fontove"
+#: ../../standalone/logdrake_.c:445
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Molimo unesite vašu šifru"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Molim saÄekajre, podeÅ¡avam nivo sigurnosti..."
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
+msgstr "SaÄuvaj kao..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "NjemaÄka (bez mrtvih tipki)"
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "Molimo izaberite vrstu vašeg miša."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tÅ alji mail na %s\n"
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
+msgstr "Emuliraj treće dugme?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
-msgstr "Prebacujem %s ..."
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Podešavanje mreže"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 hiljada boja (15 bita)"
+#: ../../standalone/net_monitor_.c:96
+#, fuzzy
+msgid "Profile "
+msgstr "Profil:"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
msgstr ""
-"Možete eksportovati koristeći NFS ili Sambu. Molim izaberite koji želite "
-"koristiti."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "Gambija"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Mandrake Kontrolni centar"
+#: ../../standalone/net_monitor_.c:103
+#, fuzzy
+msgid "Sending Speed:"
+msgstr "Å aljem datoteke..."
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Reboot"
-msgstr "Restartuj"
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device"
-msgstr "Višenamjenski uređaj"
+#: ../../standalone/net_monitor_.c:106
+#, fuzzy
+msgid "Connection Time: "
+msgstr "Tip konekcije: "
-#: ../../network/drakfirewall.pm:1
-#, 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."
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
msgstr ""
-"Ovdje možete unijeti razne portove. \n"
-"Primjeri ispravno unesenih portova su: 139/tcp 139/udp.\n"
-"Pogledajte datoteku /etc/services za više informacija."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Traka \n"
+#: ../../standalone/net_monitor_.c:147
+#, fuzzy
+msgid "Wait please, testing your connection..."
+msgstr "Probavam vašu konekciju..."
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
-msgstr ""
-"Nemate nijedan browser instaliran na vašem sistemu. Molim instalirajte jedan "
-"ako želite pristupiti sistemu pomoći"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Spoji se na Internet"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remember this password"
-msgstr "Zapamti ovu šifru"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Spoji se na Internet"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Dijeljenje Internet konekcije je sada ukljuÄeno."
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Mrežu preko SSH.\n"
+#: ../../standalone/net_monitor_.c:225
+#, fuzzy
+msgid "Connection complete."
+msgstr "Brzina konekcije"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:226
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."
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-"Ako je željeni Å¡tampaÄ automatski prepoznat, jednostavno ga izaberite sa "
-"liste i dodajte korisniÄko ime, Å¡ifru i/ili radnu grupu ako je to potrebno."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " cable"
-msgstr " kabl"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
-msgstr "Koristi slobodan prostor na Windows particiji"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s je pronađen na %s, da ga podesim automatski?"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 drajver: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr "Ovaj raÄunar/mreža je već na listi, ne možete ga ponovo dodati.\n"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Izaberite pakete koje želite instalirati"
+#: ../../standalone/net_monitor_.c:330
+#, fuzzy
+msgid "Color configuration"
+msgstr "postavka upozorenja"
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
-msgstr "Papua Nova Gvineja"
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Višenamjenski uređaj na paralelnom portu"
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
+msgstr ""
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Busy files"
-msgstr "Backup sistemskih datoteka"
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "Srpska (ćirilica)"
+#: ../../standalone/net_monitor_.c:400
+#, fuzzy
+msgid "Local measure"
+msgstr "Lokalne datoteke"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Unesite direktorij gdje su smješteni backupi"
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
-msgstr "Kernel poruke podrazumijevano tihe"
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:453
+#, fuzzy
msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
+"Warning, another internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Da li želite da podesite ovaj Å¡tampaÄ (\"%s\")\n"
-"kao podrazumjevani Å¡tampaÄ?"
+"Upozorenje, otkrivena je druga Internet konekcija, možda preko vaše mreže"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
-msgstr "Kraj DHCP raspona"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "Konektuj me"
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "Pravim boot disketu..."
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Disconnect %s"
+msgstr "Prekini konekciju"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Molim saÄekajte, probavam vaÅ¡u konekciju..."
+#: ../../standalone/printerdrake_.c:47
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "ÄŒitam podatke o Å¡tampaÄu..."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "Zaustavljam mrežu"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Detecting devices ..."
+msgstr "Prepoznajem uređaje ..."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "Login ID"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
+msgstr "Testiraj portove"
-#: ../../services.pm:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, 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 %s is not supported by this version of Mandrake Linux."
msgstr ""
-"NFS je popularan protokol za dijeljenje datoteka preko TCP/IP mreža.\n"
-"Ovaj servis omogućuje NFS funkcionalnost zakljuÄavanja datoteka."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
-msgstr "DHCP klijent"
+#: ../../standalone/scannerdrake_.c:54
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "%s je pronađen na %s, podesi ga ?"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/scannerdrake_.c:57
#, 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 "%s is not in the scanner database, configure it manually?"
msgstr ""
-"Ovo je HardDrake, Mandrake-ov alat za podešavanje hardvera.\n"
-"<span foreground=\"royalblue3\">Verzija:</span> %s\n"
-"<span foreground=\"royalblue3\">Autor:</span> Thierry Vignaud &lt;"
-"tvignaud@mandrakesoft.com&gt;\n"
-"\n"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
-msgstr "otkaži"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Å tampam/skeniram na \"%s\""
+#: ../../standalone/scannerdrake_.c:63
+msgid "Select a scanner"
+msgstr "Izaberite skener"
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/scannerdrake_.c:91
#, c-format
-msgid "omit raid modules"
-msgstr "izostavi raid module"
+msgid "This %s scanner is unsupported"
+msgstr "Ovaj %s skener nije podržan"
-#: ../../services.pm:1
+#: ../../standalone/scannerdrake_.c:105
#, 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)."
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
msgstr ""
-"lpd je demon za štampu koji je potreban da bi lpr sistem štampe radio "
-"ispravno.\n"
-"To je u osnovi server koji dodjeljuje zadatke Å¡tampe Å¡tampaÄu/ima."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
-msgstr "Irski"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sunday"
-msgstr "Nedjelja"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Podešavanje Internet konekcije"
-
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
-msgstr "brojevi razdvojeni zarezom"
+#: ../../standalone/scannerdrake_.c:107
+#, fuzzy
+msgid "choose device"
+msgstr "Boot uređaj"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/scannerdrake_.c:113
#, 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\")"
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
msgstr ""
-"Nakon što izaberete uređaj, moći ćete vidjeti informacije o uređaju u "
-"poljima u desnom okviru (\"Informacije\")"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Pomjeri izabrano pravilo za jedan nivo gore"
+"Ovaj %s skener se mora podesiti iz printerdrake-a.\n"
+"Možete pokrenuti printerdrake iz Mandrake Kontrolnog centra u odjeljku "
+"Hardware."
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:118
#, c-format
msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
msgstr ""
-"Sljedeći skener\n"
-"\n"
-"%s\n"
-"je dostupan na vašem sistemu.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Da li želite da uklonite Å¡tampaÄ \"%s\"?"
-#: ../../install_interactive.pm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "I can't find any room for installing"
-msgstr "Ne mogu naći dovoljno prostora za instalaciju"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Default printer"
-msgstr "Podrazumjevani Å¡tampaÄ"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-"Podesili ste nekoliko naÄina za konekciju na Internet.\n"
-"Izaberite jedan od njih koji ćete koristiti.\n"
-"\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Modify RAID"
-msgstr "Modificiraj RAID"
-
-#: ../../network/isdn.pm:1
-#, 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."
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
-"Otkrio sam neku ISDN PCI karticu, ali ne znam tip. Molim izaberite neku PCI "
-"karticu na idućem ekranu."
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr "Dodaj korisnika"
+#: ../../standalone/service_harddrake_.c:64
+#, fuzzy
+msgid "Hardware probing in progress"
+msgstr "detektovan na portu %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-diskovi %s\n"
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "Izaberite svoj jezik"
-#: ../../lang.pm:1
-#, c-format
-msgid "Liberia"
-msgstr "Liberija"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "Izaberite klasu instalacije"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-"Ne mogu instalirati pakete koji su potrebni za podešavanje skenera pomoću "
-"Scannerdrake-a."
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
+msgstr "Prepoznavanje hard diska"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-"Molim unesite naziv interfejsa spojenog na Internet.\n"
-"\n"
-"Primjeri:\n"
-"\t\tppp+ za modemsku ili DSL konekciju, \n"
-"\t\teth0, ili eth1 za mrežnu konekciju, \n"
-"\t\tippp+ za isdn konekciju.\n"
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "Podešavanje miša"
-#: ../../steps.pm:1
-#, c-format
+#: ../../steps.pm_.c:18
msgid "Choose your keyboard"
msgstr "Izaberite vašu tastaturu"
-#: ../../steps.pm:1
-#, c-format
-msgid "Format partitions"
-msgstr "Formatiranje particija"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Automatska ispravka konfiguracije CUPSa"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Running \"%s\" ..."
-msgstr "Izvršavam \"%s\" ..."
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "enable radio support"
-msgstr "ukljuÄi radio podrÅ¡ku"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Dijeljenje skenera za raÄunare:"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Naziv loopback datoteke: %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Molim izaberite Å¡tampaÄ kojem želite slati zadatke Å¡tampe."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not transfer printers"
-msgstr "Nemoj prebacivati Å¡tampaÄe"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Delay before booting the default image"
-msgstr "ÄŒekanje prije bootanja default image-a"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Hard Disk to backup"
-msgstr "Koristi hard disk za backup"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Configure"
-msgstr "Podesi"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake"
-msgstr "Scannerdrake"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Upozorenje, otkrivena je druga Internet konekcija, možda preko vaše mreže"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
-msgstr "Backup korisnika"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Molim unesite naziv vaÅ¡eg raÄunara ako ga znate.\n"
-"Naziv vaÅ¡eg raÄunara bi trebao biti puno-kvalifikovani naziv,\n"
-"kao što je ``mojcomp.mojlab.mojafirma.com''.\n"
-"Možete također unijeti IP adresu gateway-a ako ga imate"
+#: ../../steps.pm_.c:19
+msgid "Security"
+msgstr "Sigurnost"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Izaberite spooler Å¡tampaÄa"
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "PodeÅ¡avanje datoteÄnih sistema"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Create new theme"
-msgstr "Napravi novu temu"
+#: ../../steps.pm_.c:21
+msgid "Format partitions"
+msgstr "Formatiranje particija"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
-msgstr "Objašnjenja Mandrake alata"
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "Izaberite pakete za instalaciju"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "No image found"
-msgstr "Nije pronađen nijedan image"
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "Sistem instalacije"
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
-"Neki bitni paketi nisu ispravno instalirani.\n"
-"Ili je neispravan vaš cdrom uređaj ili vaš cdrom medij.\n"
-"Provjerite cdrom na instaliranom raÄunaru koristeći \"rpm -qpl Mandrake/RPMS/"
-"*.rpm\"\n"
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "Dodajte korisnika"
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
-msgstr "Mandrake Linux 9.2: vrhunska razvojna platforma"
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "Podešavanje mreže"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Detected model: %s"
-msgstr "Detektovan model: %s"
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "Podešavanje servisa"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
-msgstr "\"%s\" nije ispravan email!"
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "Instalacija bootloadera"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"X11 Display Manager vam omogućuje da se grafiÄki prijavite na vaÅ¡ sistem uz "
-"pokretanje X Window Systema, a podržava i nekoliko razliÄitih X sesija na "
-"vaÅ¡em lokalnom raÄunaru u isto vrijeme."
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "Napravite boot disketu"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr "ako je postavljeno na da, izvršava dnevne sigurnosne provjere."
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "Podešavanje X"
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
-msgstr "Azerbejdžan"
+#: ../../steps.pm_.c:34
+msgid "Install system updates"
+msgstr "Instaliraj sistemske update"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Ime uređaja kojeg ćete koristiti za backup"
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "Napusti instalaciju"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
-msgstr "Nema trake u %s!"
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
msgstr ""
-" --doc <link> - link na drugu web stranicu ( za WM pozdravni "
-"ekran)\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "Web/FTP"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-"ovo je fiziÄka sabirnica na koju je ureÄ‘aj prikljuÄen (npr: PCI, USB, ...)"
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
+msgstr "Mrežni raÄunar (klijent)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Kako je Å¡tampaÄ povezan na raÄunar?"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS server, SMB server, Proxy server, ssh server"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security level"
-msgstr "Nivo sigurnosti"
+#: ../../share/compssUsers:999
+msgid "Office"
+msgstr "Ured"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "final resolution"
-msgstr "krajnja rezolucija"
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Gnome Radna stanica"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
-msgstr "Servisi"
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Alati za vaš Palm Pilot ili Visor"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Auto configuration"
-msgstr "Vlastita konfiguracija"
+#: ../../share/compssUsers:999
+msgid "Workstation"
+msgstr "Radna stanica"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Firewall/Router"
#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Uredska radna stanica"
+msgid "Domain Name and Network Information Server"
+msgstr "Domain Name i Network Information Server"
#: ../../share/compssUsers:999
msgid ""
@@ -20970,69 +14685,76 @@ msgstr ""
"gnumeric), pdf preglednici itd."
#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Stanica za igru"
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "Alati vezani za zvuk: mp3 ili midi playeri, mixeri itd."
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Zabavni programi: arkadne igre, stolne igre, strategije itd."
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimedijalna stanica"
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Knjige i Howto-i na temu Linuxa i Slobodnog Software-a"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Programi za pregled i editovanje zvuka i videa"
+msgid "KDE Workstation"
+msgstr "KDE Radna stanica"
#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internet stanica"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, itd."
#: ../../share/compssUsers:999
-#, fuzzy
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Skup alata za Äitanje i slanje poÅ¡te i news-a (pine, mutt, tin...) i "
-"pregledanje Weba"
+msgid "Multimedia - Video"
+msgstr "Multimedija - Video"
#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Mrežni raÄunar (klijent)"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr "Skup alata za mail, news, web, prenos datoteka i chat"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Klijenti za razne protokole ukljuÄujući ssh"
+msgid "Database"
+msgstr "Baze podataka"
#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Podešavanje"
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL ili MySQL baza podataka"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
msgstr "Alati za lakÅ¡e podeÅ¡avanje raÄunara"
#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Znanstvena radna stanica"
+msgid "Multimedia - Sound"
+msgstr "Multimedija - Zvuk"
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
-msgstr "NauÄne aplikacije kao npr. GnuPlot"
+msgid "Documentation"
+msgstr "Dokumentacija"
#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr "Alati za konzolu"
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editori, shellovi, alati za datoteke, terminali"
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix mail server, Inn news server"
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE radna stanica"
+msgid "Internet station"
+msgstr "Internet stanica"
+
+#: ../../share/compssUsers:999
+msgid "Multimedia station"
+msgstr "Multimedijalna stanica"
+
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Podešavanje"
+
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "Druge grafiÄke okoline (Gnome, IceWM)"
#: ../../share/compssUsers:999
msgid ""
@@ -21042,573 +14764,381 @@ msgstr ""
"K Desktop Environment, osnovno grafiÄko okruženje sa izborom pratećih alata"
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "GNOME radna stanica"
+msgid "Graphical Environment"
+msgstr "GrafiÄko okruženje"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"GrafiÄki okoliÅ¡ sa skupom korisniÄki orjentisanih aplikacija i alata za "
-"radnu površinu"
+msgid "Development"
+msgstr "Programiranje"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Ostale grafiÄke okoline"
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, itd."
+msgid "Tools to create and burn CD's"
+msgstr "Alati za pravljenje i prženje CDova"
+
+#: ../../share/compssUsers:999
+msgid "Office Workstation"
+msgstr "Uredska radna stanica"
+
+#: ../../share/compssUsers:999
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, itd."
+
+#: ../../share/compssUsers:999
+msgid "Graphics programs such as The Gimp"
+msgstr "GrafiÄki programi kao Å¡to je Gimp"
+
+#: ../../share/compssUsers:999
+msgid "DNS/NIS "
+msgstr "DNS/NIS "
#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
-msgstr "C i C++ biblioteke, programi i include datoteke"
+msgstr "C i C++ razvojne biblioteke, programi i include datoteke"
#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentacija"
+msgid "Network Computer server"
+msgstr "Network Computer server"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Knjige i howto-i na temu Linuxa i slobodnog softvera"
+msgid "Mail/Groupware/News"
+msgstr "Mail/Groupware/News"
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr "LSB"
+msgid "Game station"
+msgstr "Stanica za igru"
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Linux Standard Base. Podrška za aplikacije trećih lica"
+msgid "Video players and editors"
+msgstr "Video playeri i editori"
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
+msgid "Multimedia - Graphics"
+msgstr "Multimedija - Grafika"
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Zabavni programi: arkadne igre, igre za tablu, strategije itd."
#: ../../share/compssUsers:999
-msgid "Mail"
-msgstr "Mail"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"Skup alata za Äitanje i slanje poÅ¡te i news-a (pine, mutt, tin...) i "
+"pregledanje Weba"
#: ../../share/compssUsers:999
-msgid "Postfix mail server"
-msgstr "Postfix mail server"
+msgid "Personal Finance"
+msgstr "LiÄne finansije"
#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Baze podataka"
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"GrafiÄki okoliÅ¡ sa skupom korisniÄki orjentisanih aplikacija i alata za "
+"radnu površinu"
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL ili MySQL baza podataka"
+msgid "Clients for different protocols including ssh"
+msgstr "Klijenti za razne protokole ukljuÄujući ssh"
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Firewall/Router"
+msgid "LSB"
+msgstr ""
#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Internet gateway"
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
+msgid "Sound and video playing/editing programs"
+msgstr "Programi za pregled i editovanje zvuka i videa"
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Domain Name i Network Information Server"
+msgid "Other Graphical Desktops"
+msgstr "Ostale grafiÄke okoline"
#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Network Computer server"
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editori, ljuske, datoteÄni alati, terminali"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS server, SMB server, Proxy server, ssh server"
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "Programi za upravljanje vašim finansijama, kao što je gnucash"
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
-msgstr "Skup alata za Äitanje i slanje poÅ¡te i news-a i pregledanje weba"
+msgid "Personal Information Management"
+msgstr "Upravljanje liÄnim informacijama"
-#~ msgid "The setup has already been done, and it's currently enabled."
-#~ msgstr "PodeÅ¡avanje je već zavrÅ¡eno i trenutno je ukljuÄeno."
+#: ../../share/compssUsers:999
+msgid "Multimedia - CD Burning"
+msgstr "Multimedija - Prženje CDa"
-#~ msgid "Logs"
-#~ msgstr "Dnevnici"
+#: ../../share/compssUsers:999
+msgid "Scientific Workstation"
+msgstr "Znanstvena radna stanica"
-#~ msgid "The setup has already been done, but it's currently disabled."
-#~ msgstr "PodeÅ¡avanje je već zavrÅ¡eno, ali je trenutno iskljuÄeno."
+#~ msgid "can not open /etc/inittab for reading: %s"
+#~ msgstr "ne mogu otvoriti /etc/inittab za Äitanje: %s"
-#~ msgid "Profile "
-#~ msgstr "Profil"
+#, fuzzy
+#~ msgid "cpu number "
+#~ msgstr "Broj telefona"
#~ msgid ""
-#~ "Welcome to the Internet Connection Sharing utility!\n"
+#~ "You now have the opportunity to download encryption software.\n"
#~ "\n"
-#~ "%s\n"
+#~ "WARNING:\n"
#~ "\n"
-#~ "Click on Configure to launch the setup wizard."
-#~ msgstr ""
-#~ "Dobrodošli u alat za Dijeljenje Internet konekcije!\n"
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
#~ "\n"
-#~ "%s\n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
#~ "\n"
-#~ "Kliknite na Podesi da pokrenete Äarobnjak."
-
-#~ msgid "Internet Connection Sharing configuration"
-#~ msgstr "Podešavanje dijeljenja Internet konekcije"
-
-#~ msgid "No Internet Connection Sharing has ever been configured."
-#~ msgstr "Dijeljenje Internet konekcije do sada nije podešeno."
-
-#~ msgid "when checked, owner and group won't be changed"
-#~ msgstr "kada je ukljuÄeno, vlasnik i grupa se ne mogu promijeniti"
-
-#~ msgid ""
-#~ "XawTV isn't installed!\n"
+#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
#~ "\n"
#~ "\n"
-#~ "If you do have a TV card but DrakX has neither detected it (no bttv nor "
-#~ "saa7134\n"
-#~ "module in \"/etc/modules\") nor installed xawtv, please send the\n"
-#~ "results of \"lspcidrake -v -f\" to \"install@mandrakesoft.com\"\n"
-#~ "with subject \"undetected TV card\".\n"
+#~ "For any queries relating to these agreement, please contact \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
+#~ msgstr ""
+#~ "You now have the opportunity to download encryption software.\n"
#~ "\n"
+#~ "WARNING:\n"
#~ "\n"
-#~ "You can install it by typing \"urpmi xawtv\" as root, in a console."
-#~ msgstr ""
-#~ "XawTV nije instaliran!\n"
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
#~ "\n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
#~ "\n"
-#~ "Ako imate TV karticu ali je DrakX nije prepoznao (ni bttv ni saa7134 "
-#~ "modul se ne\n"
-#~ "nalaze u \"/etc/modules\") niti je instalirao XawTV, molim pošaljite "
-#~ "rezultate naredbe\n"
-#~ "\"lspcidrake -v -f\" na \"install@mandrakesoft.com\" sa naslovom "
-#~ "\"undetected\n"
-#~ "TV card\".\n"
+#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
#~ "\n"
#~ "\n"
-#~ "Možete instalirati XawTV kucajući \"urpmi xawtv\" na konzoli kao root."
+#~ "For any queries relating to these agreement, please contact \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
-#~ msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-
-#~ msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
-
-#~ msgid "Error while parsing \"MODULES\" line from %s"
-#~ msgstr "Greška pri obradi \"MODULES\" linije iz %s"
-
-#, fuzzy
-#~ msgid "Hostname configuration"
-#~ msgstr "Podešavanje sistema"
-
-#, fuzzy
-#~ msgid "Hostname"
-#~ msgstr "Host name"
-
-#~ msgid "Remote Printers"
-#~ msgstr "Udaljeni Å¡tampaÄi"
-
-#~ msgid "Printing system: "
-#~ msgstr "Sistem štampe: "
-
-#, fuzzy
-#~ msgid "Level 1"
-#~ msgstr "Nivo"
-
-#, fuzzy
-#~ msgid "Level 2"
-#~ msgstr "Nivo"
-
-#, fuzzy
-#~ msgid "Level 3"
-#~ msgstr "Nivo"
-
-#, fuzzy
-#~ msgid "Level 4"
-#~ msgstr "Nivo"
-
-#, fuzzy
-#~ msgid "Level 5"
-#~ msgstr "Nivo"
-
-#, fuzzy
-#~ msgid "Insert floppy and press %s"
-#~ msgstr "Ubacite disketu u %s"
-
-#, fuzzy
-#~ msgid "Load"
-#~ msgstr "Poljska"
-
-#, fuzzy
-#~ msgid "Bad Ip"
-#~ msgstr "IO kartice"
-
-#~ msgid "Output"
-#~ msgstr "Ispis"
-
-#~ msgid "Please relog into %s to activate the changes"
-#~ msgstr "Molimo ponovo se prijavite na %s radi aktiviranja izmjena"
-
-#~ msgid "Please check if you want to use the non-rewinding device."
-#~ msgstr "Molim ukljuÄite ako želite koristiti non-rewinding ureÄ‘aj."
-
-#~ msgid "Please enter your password"
-#~ msgstr "Molimo unesite vašu šifru"
+#~ msgid "Proxy configuration"
+#~ msgstr "Podešavanje proxija"
#~ msgid ""
+#~ "Welcome to the proxy configuration utility.\n"
#~ "\n"
-#~ " Some errors during sendmail are caused by \n"
-#~ " a bad configuration of postfix. To solve it you have to\n"
-#~ " set myhostname or mydomain in /etc/postfix/main.cf\n"
-#~ "\n"
+#~ "Here, you'll be able to set up your http and ftp proxies\n"
+#~ "with or without login and password\n"
#~ msgstr ""
-#~ "\n"
-#~ " Neke greške prilikom slanja poruka može izazvati \n"
-#~ " loše podešen postfix. Ovo možete riješiti tako što ćete\n"
-#~ " podesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
-#~ "\n"
+#~ "Dobro došli u alat za podešavanje proxija.\n"
+#~ "qn Ovdje ćete biti u prilici da podesite vaše http i ftp proxije\n"
+#~ "sa ili bez logina i šifre\n"
#~ msgid ""
-#~ "Please choose your CD/DVD device\n"
-#~ "(Press Enter to propogate settings to other fields.\n"
-#~ "This field isn't necessary, only a tool to fill in the form.)"
+#~ "Please fill in the http proxy informations\n"
+#~ "Leave it blank if you don't want an http proxy"
#~ msgstr ""
-#~ "Molim izaberite vaš CD/DVD uređaj\n"
-#~ "(Pritisnite Enter za propagaciju postavki na ostala polja. \n"
-#~ "Ovo polje nije obavezno, ono je samo alat za popunjavanje formulara.)"
+#~ "Molimo popunite informacije o http proxiju\n"
+#~ "Ostavite polja praznim ako ne želite http proxy"
-#~ msgid "Please check if you want to eject your tape after the backup."
-#~ msgstr "Molim ukljuÄite ako želite izbaciti traku nakon backupa."
+#~ msgid "URL"
+#~ msgstr "URL"
-#~ msgid "Please check if you want to erase your tape before the backup."
-#~ msgstr "Molim ukljuÄite ako želite obrisati traku prije backupa."
+#~ msgid "port"
+#~ msgstr "port"
-#~ msgid "Please enter the host name or IP."
-#~ msgstr "Molimo unesite ime raÄunara ili IP."
+#~ msgid "Url should begin with 'http:'"
+#~ msgstr "Url treba poÄinjati sa 'http:'"
-#~ msgid ""
-#~ " Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s@epita."
-#~ "fr>"
-#~ msgstr ""
-#~ " Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s@epita."
-#~ "fr>"
+#~ msgid "The port part should be numeric"
+#~ msgstr "Port treba biti broj"
#~ msgid ""
-#~ "\n"
-#~ "Restore Backup Problems:\n"
-#~ "\n"
-#~ "During the restore step, Drakbackup will verify all your\n"
-#~ "backup files before restoring them.\n"
-#~ "Before the restore, Drakbackup will remove \n"
-#~ "your original directory, and you will loose all your \n"
-#~ "data. It is important to be careful and not modify the \n"
-#~ "backup data files by hand.\n"
+#~ "Please fill in the ftp proxy informations\n"
+#~ "Leave it blank if you don't want an ftp proxy"
#~ msgstr ""
-#~ "\n"
-#~ "Restore Backup Problems:\n"
-#~ "\n"
-#~ "During the restore step, Drakbackup will verify all your\n"
-#~ "backup files before restoring them.\n"
-#~ "Before the restore, Drakbackup will remove \n"
-#~ "your original directory, and you will loose all your \n"
-#~ "data. It is important to be careful and not modify the \n"
-#~ "backup data files by hand.\n"
-
-#~ msgid ""
-#~ " updates 2002 MandrakeSoft by Stew Benedict <sbenedict@mandrakesoft.com>"
-#~ msgstr ""
-#~ " updates 2002 MandrakeSoft by Stew Benedict <sbenedict@mandrakesoft.com>"
-
-#~ msgid ""
-#~ "Arguments: (arg, expr='*.*', dev='tty12')\n"
-#~ "\n"
-#~ "Enable/Disable syslog reports to console 12. \\fIexpr\\fP is the\n"
-#~ "expression describing what to log (see syslog.conf(5) for more details) "
-#~ "and\n"
-#~ "dev the device to report the log."
-#~ msgstr ""
-#~ "Arguments: (arg, expr='*.*', dev='tty12')\n"
-#~ "\n"
-#~ "Enable/Disable syslog reports to console 12. \\fIexpr\\fP is the\n"
-#~ "expression describing what to log (see syslog.conf(5) for more details) "
-#~ "and\n"
-#~ "dev the device to report the log."
-
-#~ msgid "edit"
-#~ msgstr "izmijeni"
+#~ "Molimo popunite informacije o ftp proxiju\n"
+#~ "Ostavite polja praznim ako ne želite ftp proxy"
#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ " Accept/Refuse broadcasted icmp echo."
+#~ "Please enter proxy login and password, if any.\n"
+#~ "Leave it blank if you don't want login/passwd"
#~ msgstr ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ " Accept/Refuse broadcasted icmp echo."
+#~ "Molimo unesite login i šifru za proxy, ako su potrebni.\n"
+#~ "Ostavite polja praznim ako ne želite login/šifru"
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable libsafe if libsafe is found on the system."
-#~ msgstr ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable libsafe if libsafe is found on the system."
+#~ msgid "login"
+#~ msgstr "login"
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Allow/Forbid remote root login."
-#~ msgstr ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Allow/Forbid remote root login."
+#~ msgid "password"
+#~ msgstr "šifra"
-#~ msgid "select perm file to see/edit"
-#~ msgstr "izaberi perm datoteku za pregled/izmjenu"
+#~ msgid "re-type password"
+#~ msgstr "ponovo unesite šifru"
-#~ msgid "path"
-#~ msgstr "staza"
+#~ msgid "The passwords don't match. Try again!"
+#~ msgstr "Šifre se ne poklapaju. Pokušajte opet!"
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable the logging of IPv4 strange packets."
-#~ msgstr ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable the logging of IPv4 strange packets."
+#~ msgid "Can't write file %s"
+#~ msgstr "Ne mogu pisati datoteku %s"
-#~ msgid ""
-#~ "Arguments: (arg, alert=1)\n"
-#~ "\n"
-#~ "Enable/Disable IP spoofing protection."
-#~ msgstr ""
-#~ "Arguments: (arg, alert=1)\n"
-#~ "\n"
-#~ "Enable/Disable IP spoofing protection."
+#~ msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-#~ msgid "permissions"
-#~ msgstr "privilegije"
+#~ msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#, fuzzy
#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable msec hourly security check."
+#~ "Warning, another internet connexion has been detected, maybe using your "
+#~ "network"
#~ msgstr ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable msec hourly security check."
+#~ "Upozorenje, otkrivena je druga Internet konekcija, možda preko vaše mreže"
-#~ msgid "delete"
-#~ msgstr "obriši"
+#~ msgid "no help implemented yet.\n"
+#~ msgstr "pomoć još nije implementirana.\n"
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Accept/Refuse bogus IPv4 error messages."
-#~ msgstr ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Accept/Refuse bogus IPv4 error messages."
+#~ msgid "Please click on a medium"
+#~ msgstr "Molimo kliknite na medij"
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Use password to authenticate users."
-#~ msgstr ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Use password to authenticate users."
+#~ msgid "Removing LPRng..."
+#~ msgstr "Uklanjam LPRng..."
-#~ msgid "user"
-#~ msgstr "korisnik"
+#~ msgid "Removing LPD..."
+#~ msgstr "Uklanjam LPD..."
#~ msgid ""
-#~ "Standard: This is the standard security recommended for a computer that "
-#~ "will be used to connect\n"
-#~ " to the Internet as a client.\n"
+#~ "Description:\n"
#~ "\n"
-#~ "High: There are already some restrictions, and more automatic "
-#~ "checks are run every night.\n"
+#~ " Drakbackup is used to backup your system.\n"
+#~ " During the configuration you can select \n"
+#~ "\t- System files, \n"
+#~ "\t- Users files, \n"
+#~ "\t- Other files.\n"
+#~ "\tor All your system ... and Other (like Windows Partitions)\n"
#~ "\n"
-#~ "Higher: The security is now high enough to use the system as a server "
-#~ "which can accept\n"
-#~ " connections from many clients. If your machine is only a "
-#~ "client on the Internet, you\n"
-#~ " should choose a lower level.\n"
+#~ " Drakbackup allows you to backup your system on:\n"
+#~ "\t- Harddrive.\n"
+#~ "\t- NFS.\n"
+#~ "\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+#~ "\t- FTP.\n"
+#~ "\t- Rsync.\n"
+#~ "\t- Webdav.\n"
+#~ "\t- Tape.\n"
#~ "\n"
-#~ "Paranoid: This is similar to the previous level, but the system is "
-#~ "entirely closed and security\n"
-#~ " features are at their maximum\n"
+#~ " Drakbackup allows you to restore your system to\n"
+#~ " a user selected directory.\n"
#~ "\n"
-#~ "Security Administrator:\n"
-#~ " If the 'Security Alerts' option is set, security alerts "
-#~ "will be sent to this user (username or\n"
-#~ " email)"
-#~ msgstr ""
-#~ "Standardan: Ovo je standardna sigurnost koja se preporuÄuje za raÄunar "
-#~ "koji će biti korišten za\n"
-#~ " spajanje na Internet kao klijent.\n"
-#~ "\n"
-#~ "Visok: Postoje već neka ograniÄenja, a automatizovane provjere "
-#~ "se vrše svake noći.\n"
-#~ "\n"
-#~ "Viši: Sigurnost je sada dovoljno visoka da bi se sistem "
-#~ "mogao koristiti kao server koji\n"
-#~ " prihvata konekcije od mnogih klijenata. Ako je vaš "
-#~ "raÄunar jedini klijent na Internetu,\n"
-#~ " trebali biste izabrati niži nivo.\n"
-#~ "\n"
-#~ "ParanoiÄan: Ovo je sliÄno kao prethodni nivo, ali je sistem potpuno "
-#~ "zatvoren i sigurnosne\n"
-#~ " mogućnosti su na maksimumu.\n"
-#~ "\n"
-#~ "Sigurnosni administrator:\n"
-#~ " Ako je postavljena opcija 'Sigurnosna upozorenja', ova "
-#~ "upozorenja će biti slana ovom\n"
-#~ " korisniku (korisniÄko ime ili email)."
-
-#~ msgid "Expert Area"
-#~ msgstr "Ekspert podruÄje"
-
-#~ msgid "Wizard..."
-#~ msgstr "ÄŒarobnjak..."
-
-#~ msgid "Country"
-#~ msgstr "Zemlja"
-
-#~ msgid "Previous"
-#~ msgstr "Prethodni"
-
-#~ msgid "Please check if you are using CDRW media"
-#~ msgstr "Molim ukljuÄite ako koristite CDRW medij"
-
-#~ msgid "Please check if you are using a DVDRAM device"
-#~ msgstr "Molim ukljuÄite ako koristite DVDRAM ureÄ‘aj"
-
-#~ msgid "Please check if you are using a DVDR device"
-#~ msgstr "Molim ukljuÄite ako koristite DVDR ureÄ‘aj"
-
-#~ msgid "Please check for multisession CD"
-#~ msgstr "Molim ukljuÄite ako koristite multisesijski CD"
-
-#~ msgid "We are now going to configure the %s connection."
-#~ msgstr "Sada ćemo podesiti konekciju %s."
-
-#~ msgid "Name: %s\n"
-#~ msgstr "Ime: %s\n"
-
-#~ msgid ""
-#~ "Which ISDN configuration do you prefer?\n"
+#~ " Per default all backup will be stored on your\n"
+#~ " /var/lib/drakbackup directory\n"
#~ "\n"
-#~ "* The Old configuration uses isdn4net. It contains powerful\n"
-#~ " tools, but is tricky to configure, and not standard.\n"
+#~ " Configuration file:\n"
+#~ "\t/etc/drakconf/drakbackup/drakbakup.conf\n"
#~ "\n"
-#~ "* The New configuration is easier to understand, more\n"
-#~ " standard, but with less tools.\n"
+#~ "Restore Step:\n"
+#~ " \n"
+#~ " During the restore step, Drakbackup will remove\n"
+#~ " your original directory and verify that all\n"
+#~ " backup files are not corrupted. It is recommended\n"
+#~ " you do a last backup before restoring.\n"
+#~ " \n"
#~ "\n"
-#~ "We recommand the light configuration.\n"
#~ msgstr ""
-#~ "Koju ISDN konfiguraciju želite?\n"
+#~ "Description:\n"
#~ "\n"
-#~ "* Stara konfiguracija koristi isdn4net. On sadrži moćne alate,\n"
-#~ " ali ga je teško podesiti i nije standardiziran.\n"
+#~ " Drakbackup is used to backup your system.\n"
+#~ " During the configuration you can select \n"
+#~ "\t- System files, \n"
+#~ "\t- Users files, \n"
+#~ "\t- Other files.\n"
+#~ "\tor All your system ... and Other (like Windows Partitions)\n"
#~ "\n"
-#~ "* Novu konfiguraciju je lakše razumjeti, standardnija je,\n"
-#~ " ali ima manje alata.\n"
+#~ " Drakbackup allows you to backup your system on:\n"
+#~ "\t- Harddrive.\n"
+#~ "\t- NFS.\n"
+#~ "\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+#~ "\t- FTP.\n"
+#~ "\t- Rsync.\n"
+#~ "\t- Webdav.\n"
+#~ "\t- Tape.\n"
#~ "\n"
-#~ "PreporuÄujemo light konfiguraciju.\n"
-
-#~ msgid "New configuration (isdn-light)"
-#~ msgstr "Nova konfiguracija (isdn-light)"
-
-#~ msgid "Old configuration (isdn4net)"
-#~ msgstr "Stara konfiguracija (isdn4net)"
-
-#~ msgid "Internet connection & configuration"
-#~ msgstr "Internet konekcija & podešavanje"
-
-#~ msgid "Disconnect"
-#~ msgstr "Prekini konekciju"
-
-#~ msgid "Connect"
-#~ msgstr "Konektuj me"
-
-#~ msgid ""
+#~ " Drakbackup allows you to restore your system to\n"
+#~ " a user selected directory.\n"
#~ "\n"
-#~ "You can reconfigure your connection."
-#~ msgstr ""
+#~ " Per default all backup will be stored on your\n"
+#~ " /var/lib/drakbackup directory\n"
#~ "\n"
-#~ "Možete prekonfigurisati vašu konekciju."
-
-#~ msgid ""
+#~ " Configuration file:\n"
+#~ "\t/etc/drakconf/drakbackup/drakbakup.conf\n"
#~ "\n"
-#~ "You can connect to the Internet or reconfigure your connection."
-#~ msgstr ""
+#~ "Restore Step:\n"
+#~ " \n"
+#~ " During the restore step, Drakbackup will remove\n"
+#~ " your original directory and verify that all\n"
+#~ " backup files are not corrupted. It is recommended\n"
+#~ " you do a last backup before restoring.\n"
+#~ " \n"
#~ "\n"
-#~ "Možete se spojiti na Internet ili prekonfigurisati vašu konekciju."
-#~ msgid "You are not currently connected to the Internet."
-#~ msgstr "Trenutno niste konektovani na Internet."
+#~ msgid "usage: drakfloppy\n"
+#~ msgstr "koristi: drakfloppy\n"
+#, fuzzy
#~ msgid ""
#~ "\n"
-#~ "You can disconnect or reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "Možete se diskonektovati ili prekonfigurisati vašu konekciju."
-
-#~ msgid "You are currently connected to the Internet."
-#~ msgstr "Trenutno ste spojeni na Internet."
-
-#~ msgid "files sending by FTP"
-#~ msgstr "slanje datoteka putem FTPa"
-
-#~ msgid "Use incremental backup (do not replace old backups)"
-#~ msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-
-#~ msgid "Relaunch 'lilo'"
-#~ msgstr "Pokrećem 'lilo'"
-
-#~ msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#~ msgstr "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-
-#~ msgid "Copy %s to %s"
-#~ msgstr "Kopiraj %s u %s"
-
-#~ msgid "Backup %s to %s.old"
-#~ msgstr "Backupujem %s u %s.old"
-
-#~ msgid "ttf fonts conversion"
-#~ msgstr "ttf fonts konverzija"
-
-#~ msgid "Fonts conversion"
-#~ msgstr "Konverzija fontova"
-
-#~ msgid "Author:"
-#~ msgstr "Autor:"
-
-#~ msgid "Audio station"
-#~ msgstr "Audio stanica"
-
-#~ msgid "Sound playing/editing programs"
-#~ msgstr "Programi za slušanje i editovanje zvuka"
-
-#~ msgid "Video station"
-#~ msgstr "Video stanica"
-
-#~ msgid "Video playing programs"
-#~ msgstr "Programi za pregled video datoteka"
+#~ "Usage: harddrake [-h|--help] [--test]\n"
+#~ msgstr "upotreba: keyboarddrake [--expert] [keyboard]\n"
-#~ msgid "Graphic station"
-#~ msgstr "GrafiÄka stanica"
+#~ msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+#~ msgstr "upotreba: keyboarddrake [--expert] [keyboard]\n"
-#~ msgid "Graphics programs"
-#~ msgstr "GrafiÄki programi"
+#~ msgid "detected on interface %s"
+#~ msgstr "detektovan na interfejsu %s"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index d6b3194a4..dbff49f17 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -1,3412 +1,1912 @@
-# translation of DrakX-ca.po to Catalan
# drakbootdisk translation to Catalan.
-# Copyright (C) 2000, 2003 Free Software Foundation, Inc.
-# Softcatala, softcatala.org, 2000-2003
-# Albert Astals Cid <astals11@terra.es>, 2003.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Softcatala, softcatala.org, 2000-2002
#
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX-ca\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
-"PO-Revision-Date: 2003-12-02 15:56+0100\n"
-"Last-Translator: Albert Astals Cid <astals11@terra.es>\n"
-"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"PO-Revision-Date: 2002-10-10 3:34+0200\n"
+"Last-Translator: Raül Cambeiro <rulet@menta.net>\n"
+"Language-Team: Catalan <traddrake@softcatala.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-1\n"
+"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.2\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "S'estan explorant les particions per trobar els punts de muntatge"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr "si és \"sí\", comprova addicions/eliminacions dels fitxers arrel suid."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s necessita: el nom de l'ordinador, adreça MAC, IP, image-nbi, 0/1 per "
-"a THIN_CLIENT, 0/1 per a la configuració local...\n"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr "La configuració ha canviat; voleu reiniciar el clúster nfs/dhcpd?"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tEsborra=%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Les copies de seguretat diferencials només guarden els fitxers que han "
-"canviat o que són nous a partir de la còpia de seguretat original."
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "network printer port"
-msgstr "port d'impressora de la xarxa"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Si us plau, inseriu un disquet:"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr "DrakTermServ"
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"La còpia de seguretat de la taula de particions no té la mateixa mida\n"
-"Voleu continuar igualment?"
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Which username"
-msgstr "Quin nom d'usuari?"
+#
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "Quin tipus d'entrada voleu afegir?"
+#
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
#
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Restore partition table"
-msgstr "Restaura la taula de particions"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB o més"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure hostname..."
-msgstr "Configura el nom de l'ordinador..."
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "Escolliu un servidor X"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "en servidor CUPS \"%s\""
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "Servidor X"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Post-install configuration"
-msgstr "Configuració posterior a la instal·lació"
+#: ../../Xconfig/card.pm_.c:230
+msgid "Multi-head configuration"
+msgstr "Configuració Multi-head"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-"El nivell de seguretat actual és %s\n"
-"Esculli els permissos a veure/editar"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Utilitzeu \"%s\" al seu lloc"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Type"
-msgstr "Tipus"
+"El vostre sistema permet l'ús d'una configuració de múltiples capçals.\n"
+"Què voleu fer?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Tampoc poden transferir-se les impressores configurades amb els fitxers PPD "
-"proporcionats pels seus fabricants o amb controladors nadius per a CUPS."
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
+msgstr "Seleccioneu la mida de la memòria de la vostra targeta gràfica"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "Configuració de l'XFree"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"La impressora\n"
-"\n"
-"%s%s\n"
-"està connectada directament al vostre sistema"
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Quina configuració de l'XFree voleu tenir?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
-msgstr "República Centrefricana"
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
+msgstr "Configura tots els capçals independentment"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "Dispositiu de la passarel·la"
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
+msgstr "Utilitza l'extensió Xinerama"
-#: ../../standalone/drakfloppy:1
+#: ../../Xconfig/card.pm_.c:389
#, c-format
-msgid "Advanced preferences"
-msgstr "Opcions avançades"
+msgid "Configure only card \"%s\"%s"
+msgstr "Configura només la targeta \"%s\"%s"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Net Method:"
-msgstr "Mètode de xarxa:"
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Ethernetcard"
-msgstr "Targeta Ethernet"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "Xfree %s amb acceleració 3D de maquinari"
-#: ../../security/l10n.pm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-"si es defineix, envia l'informe de correu a aquesta adreça electrònica; si "
-"no, envia'l al root"
-
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr "Paràmetres"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "no"
-msgstr "no"
-
-#
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Auto-detect"
-msgstr "Detecció automàtica"
+"La vostra targeta pot tenir acceleració 3D de maquinari, però només amb "
+"l'Xfree %s.\n"
+"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-#: ../../standalone/drakconnect:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid "Interface:"
-msgstr "Intefície:"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+"La vostra targeta pot tenir acceleració 3D de maquinari amb l'Xfree %s."
-#: ../../steps.pm:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid "Select installation class"
-msgstr "Tipus d'instal·lació"
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s amb acceleració 3D de maquinari EXPERIMENTAL"
-#: ../../network/tools.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
+"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."
msgstr ""
-"No sembla que el sistema estigui connectat a Internet.\n"
-"Intenteu tornar a configurar la connexió."
+"La vostra targeta pot tenir acceleració 3D de maquinari, però només amb "
+"l'Xfree %s,\n"
+"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
+"PENJAR.\n"
+"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"Connecteu la impressora a un servidor Linux i feu que els ordinadors Windows "
-"s'hi connectin com clients.\n"
-"\n"
-"Realment voleu continuar configurant aquesta impressora tal com s'està fent "
-"ara?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belarus"
-msgstr "Bielorrússia"
+"La vostra targeta pot tenir acceleració 3D de maquinari amb l'Xfree %s,\n"
+"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
+"PENJAR."
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Error writing to file %s"
-msgstr "S'ha produït un error en escriure al fitxer %s"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (instal·lació del controlador de pantalla)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result to syslog"
-msgstr "Informa del resultat de la comprovació al registre del sistema"
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "Personalitzada"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
-msgstr ""
-"L'apmd s'utilitza per monitoritzar l'estat de la bateria i registrar-lo "
-"mitjançant el registre del sistema (syslog).\n"
-"També es pot utilitzar per apagar l'ordinador quan queda poca bateria."
+#: ../../Xconfig/main.pm_.c:102
+msgid "Graphic Card"
+msgstr "Targeta gràfica"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tape to backup"
-msgstr "Utilitza una cinta per fer la còpia de seguretat"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "Monitor"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Ara s'instal·laran els paquets següents"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "Resolució"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS configuration"
-msgstr "Configuració de CUPS"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
+msgstr "Test"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total progress"
-msgstr "Progrés total"
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Opcions"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "No hi ha prou espai lliure per assignar noves particions"
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "D'acord"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "S'està movent"
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "Surt"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
"\n"
-"Drakbackup activities via %s:\n"
-"\n"
+"%s"
msgstr ""
+"Voleu conservar els canvis?\n"
+"La configuració actual és:\n"
"\n"
-"Activitats del Drakbackup a través de %s:\n"
-"\n"
+"%s"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "yes"
-msgstr "sí"
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "Escolliu un monitor"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr "("
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
+msgstr "Plug'n'Play"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "Genèric"
+
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+msgid "Vendor"
+msgstr "Venedor"
+
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr "L'exploració Plug'n'Play ha fallat. Especifiqueu un monitor"
+
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
-"Welcome to The Network Configuration Wizard.\n"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"We are about to configure your internet/network connection.\n"
-"If you don't want to use the auto detection, deselect the checkbox.\n"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
-"Benvingut a l'auxiliar de configuració de xarxa\n"
+"Els dos paràmetres més importants son la velocitat de refresc vertical, que\n"
+"és la velocitat a què es refresca tota la pantalla, i el més important, la\n"
+"velocitat de sincronització horitzontal, que és la velocitat a què es\n"
+"visualitzen les línies d'exploració.\n"
"\n"
-"Ara es configurarà la connexió a Internet/xarxa.\n"
-"Si no voleu utilitzar la detecció automàtica, desactiveu el quadre de "
-"verificació.\n"
+"És MOLT IMPORTANT que no especifiqueu un tipus de monitor amb un rang\n"
+"de sincronització superior a les possibilitats del vostre monitor, perquè\n"
+"el podríeu fer malbé.\n"
+"En cas de dubte, sigueu conservador amb aquest paràmetre."
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ")"
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "Velocitat de refresc horitzontal"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "Líban"
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "Velocitat de refresc vertical"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 colors (8 bits)"
-#
-#: ../../services.pm:1
-#, c-format
-msgid "Stop"
-msgstr "Atura"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32.768 colors (15 bits)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Edit selected host"
-msgstr "Edita l'ordinador seleccionat"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65.536 colors (16 bits)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD device defined!"
-msgstr "No s'ha definit cap dispositiu de CD!"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milions de colors (24 bits)"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the "
-"internet. \n"
-" \n"
-"Examples:\n"
-" ppp+ for modem or DSL connections, \n"
-" eth0, or eth1 for cable connection, \n"
-" ippp+ for a isdn connection.\n"
-msgstr ""
-"Si us plau, introduïu el nom de la interfície connectada a "
-"internet. \n"
-" \n"
-"Exemples:\n"
-" ppp+ per a mòdem o connexions DSL, \n"
-" eth0, o eth1 per a connexions de cable, \n"
-" ippp+ per a connexions XDSI.\n"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4.294 milions de colors (32 bits)"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tUsa els fitxers .backupignore\n"
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "Resolucions"
-#
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "Búlgar (fonètic)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "Escolliu la resolució i la profunditat de color"
-#: ../../standalone/drakpxe:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "The DHCP start ip"
-msgstr "La IP inicial del DHCP"
+msgid "Graphics card: %s"
+msgstr "Targeta gràfica: %s"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "256 kB"
-msgstr "256 kB"
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr "Cancel·la"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Don't rewind tape after backup"
-msgstr "No rebobonis la cinta després de la còpia de seguretat"
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "Comprova la configuració"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "Opcions principals del carregador de l'arrencada"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "Voleu comprovar la configuració?"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
-
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Tape"
-msgstr "Cinta"
+"Avís: la comprovació d'aquesta targeta gràfica pot penjar-vos l'ordinador"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid "Malaysia"
-msgstr "Malàisia"
+msgid "Keyboard layout: %s\n"
+msgstr "Disposició del teclat: %s\n"
-#
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid "Scanning network..."
-msgstr "S'està escanejant la xarxa..."
+msgid "Mouse type: %s\n"
+msgstr "Tipus de ratolí: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Amb aquesta opció podreu restaurar qualsevol versió\n"
-" del directori /etc."
+msgid "Mouse device: %s\n"
+msgstr "Dispositiu del ratolí: %s\n"
-#: ../../standalone/drakedm:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr "S'ha fet el canvi, voleu reiniciar el servei dm?"
+msgid "Monitor: %s\n"
+msgstr "Monitor: %s\n"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Swiss (French layout)"
-msgstr "Suís (disposició francesa)"
+msgid "Monitor HorizSync: %s\n"
+msgstr "Sincronització horitzontal del monitor: %s\n"
-#: ../../raid.pm:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "L'mkraid ha fallat (potser manquen les eines del RAID (raidtools)?)"
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Refresc vertical del monitor: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid "August"
-msgstr "Agost"
+msgid "Graphics card: %s\n"
+msgstr "Targeta gràfica: %s\n"
-#
-#: ../../network/drakfirewall.pm:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid "FTP server"
-msgstr "Servidor FTP"
+msgid "Graphics memory: %s kB\n"
+msgstr "Memòria gràfica: %s kB\n"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid "Webcam"
-msgstr "Webcam"
+msgid "Color depth: %s\n"
+msgstr "Profunditat del color: %s\n"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "mida de la memòria cau de la CPU (segon nivell)"
+msgid "Resolution: %s\n"
+msgstr "Resolució: %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Soundcard"
-msgstr "Targeta de so"
+msgid "XFree86 server: %s\n"
+msgstr "Servidor XFree86: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Month"
-msgstr "Mes"
+msgid "XFree86 driver: %s\n"
+msgstr "Controlador de l'XFree86: %s\n"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search for files to restore"
-msgstr "Busca fitxers a restaurar"
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "Interfície gràfica a l'inici"
-#: ../../lang.pm:1
-#, c-format
-msgid "Luxembourg"
-msgstr "Luxemburg"
+#: ../../Xconfig/various.pm_.c:62
+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?"
+msgstr ""
+"Puc configurar el vostre ordinador de manera que executi automàticament la "
+"interfície gràfica durant l'arrencada.\n"
+"Voleu que XFree s'iniciï quan torneu a arrencar l'ordinador?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:73
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
msgstr ""
-"Per imprimir un fitxer des de la línia d'ordres (finestra de terminal) useu "
-"l'ordre \"%s <fitxer>\".\n"
+"Sembla que la vostra targeta gràfica té un connector TV-OUT.\n"
+"Pot configurar-se de manera que faci servir memòria d'imatge.\n"
+"\n"
+"A tal efecte, heu de connectar la targeta gràfica al televisor abans "
+"d'arrencar l'ordinador.\n"
+"Llavors, escolliu l'opció \"TVout\" en el carregador de l'arrencada\n"
+"\n"
+"Teniu aquesta característica?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Level %s\n"
-msgstr "Nivell %s\n"
+#: ../../Xconfig/various.pm_.c:85
+msgid "What norm is your TV using?"
+msgstr "Quina norma segueix el vostre televisor?"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Syriac (phonetic)"
-msgstr "Armeni (fonètic)"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
+msgstr "Primer sector de la partició d'arrencada"
-#: ../../lang.pm:1
-#, c-format
-msgid "Iran"
-msgstr "Iran"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
+msgstr "Primer sector de la unitat (MBR)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus"
-msgstr "Bus"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "Instal·lació del SILO"
-#: ../../lang.pm:1
-#, c-format
-msgid "Iraq"
-msgstr "Iraq"
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
+msgstr "On voleu instal·lar el carregador de l'arrencada?"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "connecting to %s ..."
-msgstr "s'està connectant a %s ..."
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "Instal·lació del LILO/grub"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"S'ha trobat un conflicte potencial d'adreça LAN en la configuració actual de "
-"%s!\n"
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
+msgstr "SILO"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring..."
-msgstr "S'està configurant..."
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
+msgstr "LILO amb menú de text"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
-msgstr ""
-"Per a les targetes de TV més modernes, el mòdul bttv del nucli GNU/Linux "
-"detecta automàticament els paràmetres correctes.\n"
-"Si la vostra targeta no és detectada, podeu forçar el tipus de sintonitzador "
-"i de targeta aquí. Simplement seleccioneu els paràmetres necessaris per a la "
-"vostra targeta de TV"
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
+msgstr "LILO amb menú gràfic"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Password (again)"
-msgstr "Contrasenya (un altre cop)"
+#: ../../any.pm_.c:142
+msgid "Grub"
+msgstr "Grub"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search installed fonts"
-msgstr "Cerca les fonts instal·lades"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "Arrencada des de DOS/Windows (loadlin)"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default desktop"
-msgstr "Escriptori predeterminat"
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
-msgstr ""
-"Per trametre un informe d'error de programació, feu clic al botó 'Informa'.\n"
-"S'obrirà una finestra del navegador web amb la pàgina %s\n"
-"on trobareu un formulari per omplir. La informació que es mostra més amunt "
-"s'enviarà al servidor."
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "Opcions principals del carregador de l'arrencada"
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr "Veneçuela"
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
+msgstr "Carregador de l'arrencada a utilitzar"
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "IP address"
-msgstr "Adreça IP"
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "Instal·lació del carregador de l'arrencada"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "Escolliu les mides"
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "Dispositiu d'arrencada"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Llista de dades corrompudes:\n"
-"\n"
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "Compacte"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
-msgstr ""
-"Només es pot muntar explícitament (p. ex.,\n"
-"l'opció -a no farà que el sistema de fitxers es munti)."
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "compacte"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"El sistema mo admet el vostre mòdem.\n"
-"Doneu un cop d'ull a http://www.linmodems.org"
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "Mode de vídeo"
-#
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose another partition"
-msgstr "Trieu una altra partició"
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
+msgstr "Demora abans d'arrencar la imatge predeterminada"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Current user"
-msgstr "Usuari actual"
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
+msgid "Password"
+msgstr "Contrasenya"
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
-msgstr "Nom d'usuari"
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "Contrasenya (un altre cop)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Tecla de \"Windows\" Esquerra"
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "Limita les opcions de la línia d'ordres"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "Guyana"
+#: ../../any.pm_.c:171
+msgid "restrict"
+msgstr "limita"
-#
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Configuració del servidor dhcpd"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "Buida /tmp en cada arrencada"
-#: ../../standalone/drakperm:1
+#: ../../any.pm_.c:174
#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Usat per al directori:\n"
-" només el propietari del directori o del fitxer en aquest directori poden "
-"suprimir-lo"
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Mida exacta de la RAM, si cal (s'han trobat %d MB)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " en servidor Novell \"%s\", impressora \"%s\""
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
+msgstr "Habilita perfils múltiples"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Name"
-msgstr "Nom de la impressora"
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "Introduïu la mida de la RAM en MB"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
+#: ../../any.pm_.c:182
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
+"L'opció \"Limita les opcions de la línia d'ordres\" no té cap utilitat sense "
+"una contrasenya"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
-msgstr "Elimina un mòdul"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "Si us plau, torneu-ho a intentar"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Password"
-msgstr "Contrasenya"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "Les contrasenyes no coincideixen"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Configuració avançada"
+#: ../../any.pm_.c:191
+msgid "Init Message"
+msgstr "Missatge d'inicialització"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr "S'està explorant el dipositiu HP multifunció"
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
+msgstr "Demora per al firmware obert"
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "Arrel"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
+msgstr "Temps màxim d'arrencada del nucli"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "Escolliu un RAID existent al qual afegir-ho"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
+msgstr "Voleu habilitar l'arrencada des de CD?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turc (modern, model \"Q\")"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
+msgstr "Voleu habilitar l'arrencada des d'OF?"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo message not found"
-msgstr "No s'ha trobat el missatge de LILO"
+#: ../../any.pm_.c:197
+msgid "Default OS?"
+msgstr "SO per defecte?"
-#: ../../services.pm:1
-#, c-format
+#: ../../any.pm_.c:231
msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
+"\n"
+"On which drive are you booting?"
msgstr ""
-"Regeneració automàtica del capçal de nucli a /boot per\n"
-"/usr/include/linux/{autoconf,versió}.h"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
-msgstr "si cal"
+"Heu decidit instal·lar el gestor de l'arrencada en una partició.\n"
+"Això implica que ja teniu un gestor d'arrencada en el disc des del qual "
+"arrenqueu (p.ex.: System Commander).\n"
+"\n"
+"En quina unitat arrenqueu?"
-#: ../../standalone/drakclock:1
-#, c-format
+#: ../../any.pm_.c:247
msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
+"Aquestes són les diferents entrades en el menú d'arrencada.\n"
+"Podeu afegir-ne més o canviar-ne les existents."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Failed..."
-msgstr "La restauració ha fallat..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr ""
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "Afegeix"
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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 ""
-"Introducció\n"
-"\n"
-"D'ara endavant, hom es referirà al sistema operatiu i als diferents\n"
-"components disponibles en la distribució Mandrake Linux com als\n"
-"\"Productes de programari\". Els Productes de programari inclouen,\n"
-"però no estan restringits a, el conjunt de programes, mètodes, regles\n"
-"i documentació relativa al sistema operatiu i els diferents\n"
-"components de la distribució Mandrake Linux.\n"
-"\n"
-"\n"
-"1. Acord de llicència\n"
-"\n"
-"Si us plau, llegiu atentament aquest document. Aquest document és un\n"
-"acord de llicència entre la vostra persona i MandrakeSoft S.A., que\n"
-"s'aplica als Productes de programari. Pel fet d'instal·lar, duplicar\n"
-"o utilitzar els Productes de programari en qualsevol forma esteu\n"
-"acceptant explícitament, i expressant el vostre acord a avenir-vos a\n"
-"les clàusules i condicions d'aquesta Llicència. Si no esteu d'acord\n"
-"amb qualsevol part de la Llicència, no esteu autoritzat a instal·lar,\n"
-"duplicar o utilitzar els Productes de programari. Qualsevol intent\n"
-"d'instal·lar, duplicar o utilitzar els Productes de programari en una\n"
-"forma que no s'adapti a les clàusules i condicions d'aquesta\n"
-"Llicència, és nul i finalitzarà els vostres drets sobre la mateixa.\n"
-"En finalitzar-se la Llicència, heu de destruir immediatament totes\n"
-"les còpies dels Productes de programari.\n"
-"\n"
-"\n"
-"2. Garantia limitada\n"
-"\n"
-"Els Productes de programari i documentació adjunta es subministren\n"
-"\"tal com són\", sense cap garantia, fins al punt permés per la llei.\n"
-"MandrakeSoft S.A. no serà, sota cap circumstància, i fins al punt\n"
-"permés per la llei, responsable de cap dany especial, incidental ni\n"
-"directe (incloent, sense limitar-se a, els danys per pèrdua de\n"
-"negocis, interrupció de negocis, pèrdues financeres, multes i costes\n"
-"judicials, o qualsevol altre dany que resultin d'un judici, o\n"
-"qualsevol altre pèrdua d'importància) que resulti de l'ús o de la\n"
-"impossibilitat d'utilitzar els Productes de programari, fins i tot si\n"
-"MandrakeSoft S.A. ha estat avisat de la possibilitat que\n"
-"s'esdevinguin aquests danys.\n"
-"\n"
-"RESPONSABILITAT LIMITADA RELATIVA A LA POSSESSIÓ O UTILITZACIÓ DE PROGRAMARI "
-"PROHIBIT EN ALGUNS PAÏSOS\n"
-"\n"
-"Fins al punt permés per la llei, MandrakeSoft S.A. o els seus\n"
-"distribuïdors no seran, sota cap circumstància, responsables de cap\n"
-"dany especial, incidental ni directe (incloent, sense limitar-se a,\n"
-"els danys per pèrdua de negocis, interrupció de negocis, pèrdues\n"
-"financeres, multes i costes judicials, o qualsevol altre dany que\n"
-"resultin d'un judici, o qualsevol altre pèrdua d'importància) que\n"
-"resulti de la possessió i utilització dels components de programari o\n"
-"de la seva descàrrega des d'un dels llocs de Mandrake Linux, que\n"
-"estiguin prohibides o restringides en alguns països per les lleis\n"
-"locals. Aquesta responsabilitat limitada s'aplica, però no hi està\n"
-"restringida, als potents components criptogràfics inclosos als\n"
-"Productes de programari.\n"
-"\n"
-"\n"
-"3. la llicència GPL i llicències relacionades\n"
-"\n"
-"Els Productes de programari consisteixen en components creats per\n"
-"diferents persones o entitats. La majoria d'aquests components es\n"
-"regeixen per les clàusules i condicions de la Llicència General\n"
-"Pública de GNU, a la qual d'ara endavant hom s'hi referirà com a\n"
-"\"GPL\", o de llicències similars. la majoria d'aquestes llicències\n"
-"us permeten duplicar, adaptar o redistribuir els components que\n"
-"cobreixen. Si us plau, llegiu atentament les clàusules i condicions\n"
-"de l'acord de llicència de cada component abans d'utilitzar-lo.\n"
-"Qualsevol pregunta sobre la lllicència d'un component s'ha d'adreçar\n"
-"al seu autor i no a MandrakeSoft.\n"
-"Els programes desenvolupats per MandrakeSoft S.A. es regeixen per la\n"
-"llicència GPL.La documentació escrita per MandrakeSoft S.A. està regida per "
-"una\n"
-"llicència específica; consulteu la documentació per a més\n"
-"informació.\n"
-"\n"
-"\n"
-"4. Drets sobre la propietat intel·lectual\n"
-"\n"
-"Tots els drets sobre els components dels Productes de programari\n"
-"pertanyen als seus autors respectius i estan protegits per les lleis\n"
-"de propietat intel·lectual i de copyright aplicables als programes\n"
-"informàtics.\n"
-"MandrakeSoft S.A. es reserva els drets de modificar o adaptar els\n"
-"Productes de programari, totalment o parcialment, per tots els\n"
-"mitjans i amb totes les finalitats.\n"
-"\"Mandrake\", \"Mandrake Linux\" i els logotips associats son marques\n"
-"registrades de MandrakeSoft S.A.\n"
-"\n"
-"\n"
-"5. Lleis rectores \n"
-"\n"
-"Si qualsevol part d'aquest acord és declarat nul, il·legal o\n"
-"inaplicable per un tribunal, aquesta part s'exclourà del contracte.\n"
-"Seguiu obligat, però, per les altres seccions aplicables de\n"
-"l'acord.\n"
-"Les clàusules i condicions d'aquesta Llicència es regeixen per les\n"
-"lleis de França.\n"
-"Tots els litigis sobre les clàusules d'aquesta llicència es dirimiran\n"
-"preferiblement fora dels tribunals. Com a últim recurs, el litigi es\n"
-"portarà als tribunals competents de París, França.\n"
-"Per a qualsevol tema relacionat amb aquest document, poseu-vos en\n"
-"contacte amb MandrakeSoft S.A.\n"
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "Fet"
#
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default user"
-msgstr "Usuari predeterminat"
+#: ../../any.pm_.c:257
+msgid "Modify"
+msgstr "Modifica"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"coordenada x de la cantonada superior\n"
-"esquerra de la barra de progrés"
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "Quin tipus d'entrada voleu afegir?"
-#
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Current interface configuration"
-msgstr "Configuració actual de la interfície"
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "Linux"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "Un altre SO (SunOS...)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"Si teniu una targeta ISA, els valors de la pantalla següent haurien de ser "
-"correctes.\n"
-"\n"
-"Si teniu una targeta PCMCIA, cal que en sapigueu l'\"irq\" i l'\"io\".\n"
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "Un altre SO (MacOS...)"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not print any test page"
-msgstr "No imprimeixis cap pàgina de prova"
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "Un altre SO (Windows...)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr "Gurmukhi"
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "Imatge"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s ja és en ús\n"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "Arrel"
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
-msgstr "Imposa No APIC"
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
+msgstr "Afegeix"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr ""
-"Aquesta contrasenya és massa curta (ha de tenir com a mínim %d caràcters)"
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../standalone.pm:1
-#, c-format
-msgid "[keyboard]"
-msgstr "[teclat]"
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "Lectura-escriptura"
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "Intermediari per a FTP"
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "Taula"
-#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install List"
-msgstr "Llista d'instal·lació"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "No segur"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Change\n"
-"Restore Path"
-msgstr ""
-"Canvia el camí\n"
-"on restaurar"
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "Etiqueta"
-#
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Mostrar-ho només per al dia seleccionat"
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "Predeterminat"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr ""
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
+msgstr "Initrd-size"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 kB"
+#: ../../any.pm_.c:318
+msgid "NoVideo"
+msgstr "NoVideo"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Nota: els ports paral·lel no es poden detectar automàticament)"
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "Elimina l'entrada"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "No es permet una etiqueta buida"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Quin tipus de targeta teniu?"
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
+msgstr "Heu d'especificar una imatge del nucli"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
+#
+#: ../../any.pm_.c:330
+msgid "You must specify a root partition"
+msgstr "Heu d'especificar una partició arrel"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Security"
-msgstr "Seguretat"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "Aquesta etiqueta ja està en ús"
-#: ../../printer/printerdrake.pm:1
+# #msgid "Found %s %s interfaces"
+# #msgstr "S'han trobat interfícies %2$s %1$s"
+#: ../../any.pm_.c:640
#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"També podeu emprar la interfície gràfica \"xpdq\" per configurar opcions i "
-"gestionar treballs d'impressió.\n"
-"Si esteu utilitzant KDE com a entorn gràfic teniu un \"botó d'emergència\", "
-"una icona a l'escriptori, etiquetada amb \"ATURA la impressora!\", que atura "
-"tots el treballs d'impressió immediatament en fer-hi clic. Això és útil, per "
-"exemple, quan se us enganxa el paper en la impressora.\n"
+msgid "Found %s %s interfaces"
+msgstr "S'han trobat interfícies %s %s"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "En teniu una altra?"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:642
#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "No s'han pogut trobar les dades per restaurar...\n"
+msgid "Do you have any %s interfaces?"
+msgstr "Teniu alguna interfície %s?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown"
-msgstr "Desconegut"
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "No"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "Aquest servidor ja és a la llista, no es pot tornar a afegir.\n"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "Sí"
+
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "Mira la informació del maquinari"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Network Configuration"
-msgstr "Configuració de xarxa"
+msgid "Installing driver for %s card %s"
+msgstr "S'està instal·lant el controlador per a la targeta de %s %s"
-#: ../../standalone/logdrake:1
+#: ../../any.pm_.c:663
#, c-format
-msgid "<control>S"
-msgstr "<control>S"
+msgid "(module %s)"
+msgstr "(mòdul %s)"
-#
-#: ../../network/isdn.pm:1
+#: ../../any.pm_.c:674
#, c-format
msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-"Protocol per a la resta del món\n"
-"Cap canal D (línies punt a punt)"
+"Ara podeu subministrar les opcions per al mòdul %s.\n"
+"Tingueu en compte que qualsevol adreça s'ha de prefixar amb 0x, com '0x123'"
-#: ../../standalone/drakTermServ:1
+#: ../../any.pm_.c:680
#, 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."
+"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 ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\tEl drakTermServ configurarà aquest fitxer per funcionar "
-"conjuntament amb les imatges creades per\n"
-" \t\tmkinitrd-net, i les entrades de /etc/dhcpd.conf, per servir la "
-"imatge d'arrencada a cada client sense \n"
-" \t\tdisc.\n"
-"\n"
-" \t\tUn fitxer de configuració tftp típic té aquest aspecte:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \t\tLes diferències respecte a la instal•lació per defecte són el "
-"canvi del senyalador de\n"
-" \t\tinhabilitació a 'no' i el canvi de camí de directori a /var/lib/"
-"tftpboot, on mkinitrd-net\n"
-" \t\tposa les seves imatges."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "L'opció %s ha de ser un número!"
+"Ara podeu proporcionar les opcions per al mòdul %s.\n"
+"Les opcions estan en el format \"nom=valor nom2=valor2 ...\".\n"
+"Per exemple, \"io=0x300 irq=7\""
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, c-format
-msgid "Notice"
-msgstr "Avís"
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "Opcions del mòdul:"
-#: ../../install_steps_interactive.pm:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "No heu configurat X. Segur que ho voleu així?"
+msgid "Which %s driver should I try?"
+msgstr "Quin controlador de %s he de provar?"
-#: ../../printer/printerdrake.pm:1
+#: ../../any.pm_.c:703
#, 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\"."
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
-"La configuració de la impressora es farà automàticament. Si la vostra "
-"impressora no ha estat correctament detectada, o si preferiu personalitzar-"
-"ne la configuració, habiliteu \"Configuració manual\"."
+"En alguns casos, el controlador de %s necessita informació addicional\n"
+"per funcionar correctament, tot i que normalment funciona bé sense ella.\n"
+"Voleu especificar opcions addicionals o deixar que el controlador\n"
+"cerqui al vostre ordinador la informació que necessita? Aquesta recerca\n"
+"podria penjar l'ordinador, però això no causaria cap dany."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "What type of partitioning?"
-msgstr "Quin tipus de particionament voleu?"
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
+msgstr "Exploració automàtica"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "Especifica les opcions"
+
+#: ../../any.pm_.c:719
#, c-format
msgid ""
-"file list sent by FTP: %s\n"
-" "
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
-"llista de fitxers enviada per FTP: %s\n"
-" "
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface"
-msgstr "Interfície"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Multisession CD"
-msgstr "CD de multisessió"
-
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated strings"
-msgstr "cadenes separades per coma"
+"Ha fallat la càrrega del mòdul %s.\n"
+"Voleu tornar-ho a intentar amb altres paràmetres?"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "Les màquines des de les quals s'han d'utilitzar els escàners son:"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
+msgstr "accés a programes X"
-#
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Messages"
-msgstr "Missatges"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
+msgstr "accés a les eines rpm"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Desconegut|CPH06X (bt878) [molts venedors]"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
+msgstr "permet \"su\""
-#
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "Servidor POP i IMAP"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
+msgstr "accés a fitxers administratius"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mexico"
-msgstr "Mèxic"
+#: ../../any.pm_.c:738
+msgid "access to network tools"
+msgstr "accés a les eines de xarxa"
-#
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model stepping"
-msgstr "Pas a pas del model"
+#: ../../any.pm_.c:739
+msgid "access to compilation tools"
+msgstr "accés a les eines de compilació"
-#: ../../lang.pm:1
+#: ../../any.pm_.c:744
#, c-format
-msgid "Rwanda"
-msgstr "Rwanda"
+msgid "(already added %s)"
+msgstr "(ja s'ha afegit %s)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Switzerland"
-msgstr "Suïssa"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "Aquesta contrasenya és massa senzilla"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr "Brunei"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
+msgstr "Si us plau, introduïu un nom d'usuari"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Teniu alguna interfície %s?"
+#: ../../any.pm_.c:751
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr ""
+"El nom d'usuari només pot contenir lletres en minúscula, números, '-' i '_'"
-#
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "Us cal ser root per poder llegir el fitxer de configuració. \n"
+#: ../../any.pm_.c:752
+msgid "The user name is too long"
+msgstr "El nom d'usuari és massa llarg"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Opcions de la impressora lpd remota"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"El GNU/Linux és un sistema multiusuari; això vol dir que cada usuari pot\n"
-"tenir les seves pròpies preferències, els seus propis fitxers, etc. Podeu "
-"llegir\n"
-"la ``Guia d'iniciació\" per aprendre més coses sobre els sistemes\n"
-"multiusuari. Però, a diferència del \"root\", que és l'administrador del "
-"sistema,\n"
-"als usuaris que afegiu aquí no se'ls permetrà modificar res tret dels seus "
-"propis\n"
-"fitxers i configuracions, protegint així el sistema de canvis, intencionats "
-"o no, \n"
-" que tenen efecte sobre tot el sistema . Cal que us creeu, com a mínim, un "
-"usuari\n"
-"normal, i és aquest compte el que heu d'utilitzar per a l'ús quotidià. Tot i "
-"que\n"
-"és molt fàcil entrar com a \"root\" per a tot, també pot ser molt perillós: "
-"la més\n"
-"petita errada podria significar que el sistema deixés de funcionar. Si "
-"cometeu\n"
-"una errada greu com a usuari normal el pitjor que pot passar és que perdeu\n"
-"algunes dades, però sense afectar a tot el sistema.\n"
-"\n"
-"Primer, heu d'introduir el vostre nom real. Per suposat, això no és "
-"obligatori,\n"
-"ja que podeu introduir el que vulgueu. El DrakX agafarà la primera paraula\n"
-"que heu introduït en aquest camp i la copiarà en el camp \"%s\", que serà "
-"el\n"
-"nom que utilitzarà aquest usuari per entrar al sistema (ho podeu canviar si\n"
-"voleu). Després cal que introduïu una contrasenya. Des del punt de vista de\n"
-"la seguretat, una contrasenya d'un usuari no privilegiat (habitual) no és "
-"tan\n"
-"important com la del \"root\" des del punt de vista de la seguretat, però no "
-"hi\n"
-"ha cap raó per menystenir-la, deixant-la en blanc o fent-la massa senzilla: "
-"al\n"
-"cap i a la fi, els vostres fitxers poden estar en joc. \n"
-"\n"
-"Un cop hagueu fet clic a \"%s\" podreu afegir altres usuaris. Afegiu-ne un\n"
-"per a tothom que hagi de fer servir l'ordinador. Feu clic a \"%s\" quan "
-"hagueu\n"
-"acabat d'afegir-ne. \n"
-"\n"
-"Feu clic al botó \"%s\" per canviar l'intèrpret d'ordres (\"shell\") per "
-"defecte\n"
-"(bash) de l'usuari seleccionat. \n"
-"\n"
-"Quan hagueu acabat d'afegir usuaris, se us proposarà decidir quin usuari\n"
-"entrarà automàticament en el sistema en arrencar l'ordinador. Si us\n"
-"interessa aquesta característica (i no us importa gaire la seguretat "
-"local), \n"
-"trieu l'usuari i el gestor de finestres desitjat i feu clic a \"%s\".\n"
-"Si no hi esteu interessat, desactiveu el quadre \"%s\"."
+#: ../../any.pm_.c:757
+msgid "Add user"
+msgstr "Afegeix un usuari"
-#: ../../standalone/drakconnect:1
+#: ../../any.pm_.c:758
#, c-format
-msgid "Configure Internet Access..."
-msgstr "Configura l'accés a Internet..."
+msgid ""
+"Enter a user\n"
+"%s"
+msgstr ""
+"Introduïu un usuari\n"
+"%s"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Si us plau, escolliu l'interval de temps entre cada còpia de seguretat"
+#: ../../any.pm_.c:759
+msgid "Accept user"
+msgstr "Accepta l'usuari"
-#
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Norway"
-msgstr "Noruega"
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "Nom real"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Delete profile"
-msgstr "Suprimeix el perfil"
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "Nom d'usuari"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Danish"
-msgstr "Danès"
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "Shell"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Engega automàticament a l'arrencada la tecla de fixació del \n"
-"teclat numèric a la consola i sota XFree."
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "Icona"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Si us plau, introduïu la configuració IP d'aquest ordinador.\n"
-"S'ha d'introduir cada element com una adreça IP en notació decimal amb\n"
-"punts (per exemple, 1.2.3.4)."
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "Entrada automàtica"
-#: ../../help.pm:1
-#, c-format
+#
+#: ../../any.pm_.c:804
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."
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
-"La instal·lació del Mandrake Linux està repartida en diversos CD-ROM. El\n"
-"DrakX sap si un paquet seleccionat es troba a un altre CD-ROM, així que,\n"
-"quan calgui, expulsarà el CD actual i us demanarà que n'inseriu un altre."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
-msgstr "Si ho marqueu, no es canviaran ni el propietari ni el grup"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "Bulgària"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
-msgstr "Dimarts"
+"Puc configurar el vostre ordinador de manera que entri automàticament amb un "
+"nom d'usuari.\n"
+"Voleu activar aquesta característica?"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "Processadors"
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "Escolliu l'usuari per defecte:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "Illes Svalbard i Jan Mayen"
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
+msgstr "Escolliu el gestor de finestres per executar:"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No NIC selected!"
-msgstr "No s'ha seleccionat cap NIC!"
+#
+#: ../../any.pm_.c:824
+msgid "Please choose a language to use."
+msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../any.pm_.c:826
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."
+"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 ""
-"Hi ha hagut problemes durant la configuració.\n"
-"Proveu la connexió via net_monitor o mcc. Si la connexió no funciona "
-"correctament, torneu a executar la configuració."
+"Mandrake Linux pot utilitzar múltiples idiomes. Seleccioneu\n"
+"els llenguatges que volgueu instal·lar. Estaran disponibles\n"
+"quan reinicieu el sistema, després que la instal·lació s'hagi completat."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "la partició %s ara és %s"
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "Tots"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Other files..."
-msgstr "Fes una còpia de seguretat d'altres fitxers..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
-msgstr "Congo (Kinshasa)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "IP del servidor SMB"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "La taula de particions de la unitat %s s'escriurà al disc!"
+#: ../../any.pm_.c:961
+msgid "Allow all users"
+msgstr "Permet tots els usuaris"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing HPOJ package..."
-msgstr "S'està instal·lant el paquet HPOJ..."
+#: ../../any.pm_.c:961
+msgid "No sharing"
+msgstr "No es comparteix"
-#: ../../any.pm:1
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
#, c-format
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr "Cal instal·lar el paquet %s. Voleu instal·lar-lo?"
+
+#: ../../any.pm_.c:973
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"
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-"Un disc d'arrencada personalitzat proporciona una manera d'arrencar el "
-"vostre\n"
-"sistema Linux sense dependre del carregador d'arrencada normal. Això és "
-"útil\n"
-"si no voleu instal·lar el LILO (o el grub) al sistema, o si un altre sistema "
-"operatiu\n"
-"elimina el LILO, o si el LILO no funciona amb la vostra configuració de\n"
-"maquinari. Un disc d'arrencada personalitzat també es pot utilitzar amb la\n"
-"imatge de rescat del Mandrake, facilitant molt la recuperació de fallides\n"
-"serioses del sistema. Voleu crear un disc d'arrencada per al vostre "
-"sistema?\n"
-"%s"
+"Podeu exportar utilitzant NFS o Samba. Seleccioneu quin voleu utilitzar."
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
+msgid "Mandatory package %s is missing"
+msgstr "El paquet %s necessari falta"
+
+#: ../../any.pm_.c:987
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 ""
+"Voleu permetre als usuaris compartir alguns dels seus directoris?\n"
+"Fer això permetrà al usuaris fer un simple clic a \"Comparteix\" en el "
+"konqueror i el nautilus.\n"
"\n"
-" Informe del Dimoni DrakBackup\n"
-
-#
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latvian"
-msgstr "Letó"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr "mensual"
-
-#
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Retry"
-msgstr "Reintenta"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr "Nom del mòdul"
-
-#
-#: ../../network/network.pm:1
-#, c-format
-msgid "Start at boot"
-msgstr "Inicia en l'arrencada"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Utilitza les còpies de seguretat incrementals"
+"\"Personalitzat\" permet configurar cada usuari per separat.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "Primer sector de la unitat (MBR)"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
+msgstr "Executa userdrake"
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "El Salvador"
+#: ../../any.pm_.c:1003
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
+msgstr ""
+"La compartició per usuari utilitza el grup \"fileshare\".\n"
+"Podeu utilitzar userdrake per a afegir un usuari a aquest grup."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
-msgstr "Palanca de jocs"
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
+msgstr "Benvinguts, crackers"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "DVD"
-msgstr "DVD"
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Pobre"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
-msgstr "Utilitza Unicode per defecte"
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
+msgstr "Estàndard"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "el mòdul del nucli GNU/Linux que gestiona aquest dispositiu"
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Alt"
#
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Està el rellotge del vostre ordinador establert en GTM?"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "S'està intentant recuperar la taula de particions"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "L'opció %s ha de ser un número enter!"
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+msgid "Higher"
+msgstr "Més Alt"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
-msgstr "Utilitza una contrasenya per autenticar usuaris."
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "Paranoic"
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../any.pm_.c:1061
msgid ""
-"Entries you'll have to fill:\n"
-"%s"
+"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 ""
-"Entrades que heu d'emplenar:\n"
-"%s"
+"Aquest nivell s'ha d'utilitzar amb cura. Fa el vostre sistema molt més "
+"fàcil\n"
+"d'utilitzar, però també molt sensible: no s'ha d'utilitzar en un ordinador\n"
+"connectat a d'altres o a Internet. No cal contrasenya per accedir-hi."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1064
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."
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
+"Ara, la contrasenya està habilitada, però l'ús com a ordinador de xarxa "
+"segueix sense ser recomanable."
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
-msgstr "No es pot iniciar l'actualització en directe!!!\n"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "Nom: "
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
+#
+#: ../../any.pm_.c:1065
+msgid ""
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
+"Aquesta és la seguretat estàndard recomanada per a un ordinador que "
+"s'utilitzarà per connectar-se a Internet com a client. Ara hi ha "
+"comprovacions de seguretat."
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 milions de colors (24 bits)"
+#: ../../any.pm_.c:1066
+msgid ""
+"There are already some restrictions, and more automatic checks are run every "
+"night."
+msgstr ""
+"Hi ha ja algunes restriccions, i a la nit es fan més comprovacions "
+"automàtiques."
#
-#: ../../any.pm:1
-#, c-format
-msgid "Allow all users"
-msgstr "Permet tots els usuaris"
-
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr "La botiga oficial de MandrakeSoft"
-
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "S'està canviant la mida"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1067
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+"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 ""
-"Especifiqueu la mida màxima\n"
-" permesa per a Drakbackup (MB)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Cable connection"
-msgstr "Connexió per cable"
+"Amb aquest nivell de seguretat, la utilització d'aquest sistema com a "
+"servidor esdevé possible.\n"
+"La seguretat és ara prou alta com per utilitzar el sistema com a servidor\n"
+"que accepti connexions de molts clients. Nota: si la vostra màquina és només "
+"un client d'Internet, seria millor escollir un nivell més baix."
#
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, c-format
-msgid "User"
-msgstr "Usuari"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
+#: ../../any.pm_.c:1070
+msgid ""
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-"Fes una nova còpia de seguretat abans de restaurar (només per les còpies "
-"incrementals.)"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "L'mkraid ha fallat"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Name"
-msgstr "Nom"
+"Aquest és similar al nivell anterior, però el sistema està completament "
+"tancat i les característiques de seguretat estan al màxim."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Emulació del botó 3"
+#: ../../any.pm_.c:1076
+msgid "DrakSec Basic Options"
+msgstr "Opcions bàsiques del DrakSec"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
-msgstr "Comprova les addicions/supressions dels fitxers sgid."
+#: ../../any.pm_.c:1077
+msgid "Please choose the desired security level"
+msgstr "Escolliu el nivell de seguretat desitjat"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files..."
-msgstr "S'estan enviant els fitxers..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "Israelià (fonètic)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
-msgstr "accés a les eines rpm"
+#: ../../any.pm_.c:1080
+msgid "Security level"
+msgstr "Nivell de seguretat"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Heu d'escollir/introduir una impressora/dispositiu!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Hi ha hagut un problema de permisos en accedir al CD."
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "Número de telèfon"
+#: ../../any.pm_.c:1082
+msgid "Use libsafe for servers"
+msgstr "Empra libsafe per als servidors"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
+#: ../../any.pm_.c:1083
+msgid ""
+"A library which defends against buffer overflow and format string attacks."
msgstr ""
-"Error: el programa de control \"%s\" per a la vostra targeta de so no és a "
-"la llista"
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Nom de la impressora, descripció, ubicació"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
-msgstr "EUA (difusió)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Utilitza l'extensió Xinerama"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback"
-msgstr "Loopback"
+"Una llibreria que defensa contra els atacs de 'buffer overflow' i de 'format "
+"string'."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "West Europe"
-msgstr "Europa de l'Oest"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
+msgstr "Administrador de seguretat (login o email)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On CD-R"
-msgstr "en CDROM"
+#: ../../any.pm_.c:1166
+msgid ""
+"Here you can choose the key or key combination that will \n"
+"allow switching between the different keyboard layouts\n"
+"(eg: latin and non latin)"
+msgstr ""
+"Aquí podeu triar la tecla o la combinació de tecles que \n"
+"permetran canviar entre diferents disposicions de teclat\n"
+"(p.ex.: llatina i no llatina)"
-#: ../../standalone.pm:1
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, c-format
msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
"\n"
-"OPTIONS:\n"
-" --help - print this help message.\n"
-" --report - program should be one of mandrake tools\n"
-" --incident - program should be one of mandrake tools"
msgstr ""
-"[OPCIONS] [NOM_DEL_PROGRAMA]\n"
+"Benvingut al %s, el selector de sistema operatiu!\n"
+"\n"
+"Trieu un sistema operatiu de la lista superior, o espereu\n"
+"%d segons per arrencar en el sistema operatiu predeterminat.\n"
"\n"
-"OPCIONS:\n"
-" --help - imprimeix aquest missatge d'ajuda.\n"
-" --report - el programa ha de ser una de les eines de Mandrake\n"
-" --incident - el programa ha de ser una de les eines de Mandrake"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake2 version %s"
-msgstr "Versió del Harddrake2 %s"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Preferences"
-msgstr "Preferències"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr "Swazilàndia"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "República Dominicana"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr "S'està copiant %s"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Choose color"
-msgstr "Escolliu un color"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Syriac"
-msgstr "Surinam"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
-#: ../../help.pm:1
-#, 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!"
-msgstr ""
-"Escolliu el disc dur que voleu buidar per instal·lar la nova partició Linux\n"
-"Mandrake. Aneu amb compte, totes les dades actuals es perdran i no\n"
-"es podran recuperar!"
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Benvingut al GRUB, el selector de sistema operatiu!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
+#: ../../bootloader.pm_.c:986
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
"Utilitzeu les tecles %c i %c per seleccionar quina entrada esta ressaltada."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Ratolí genèric de 2 botons"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr ""
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Premeu Retorn per arrencar el SO seleccionat, 'e' per editar les"
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr "Elimineu primer els volums lògics\n"
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "ordres abans de l'arrencada, o 'c' per obtenir una linia d'ordres."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
+#: ../../bootloader.pm_.c:995
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "L'entrada ressaltada arrencara automaticament en %d segons."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
-msgstr ""
-"No s'ha pogut escriure /etc/sysconfig/bootsplash\n"
-"No s'ha trobat el fitxer."
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
+msgstr "no hi ha prou espai a /boot"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet access"
-msgstr "Accés a Internet"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "Escriptori"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"y coordinate of text box\n"
-"in number of characters"
-msgstr ""
-"coordenada y de la caixa de text\n"
-"en nombre de caràcters"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "Menú Inici"
-#: ../../printer/printerdrake.pm:1
+#: ../../bootloader.pm_.c:1120
#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Per veure una llista de les opcions disponibles per a la impressora actual "
-"feu clic sobre el botó \"Imprimeix la llista d'opcions\"."
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "No podeu instal·lar el carregador de l'arrencada a una partició %s\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr "S'estan habilitant els servidors..."
+#: ../../bootlook.pm_.c:53
+msgid "Boot Style Configuration"
+msgstr "Configuració del tipus d'arrencada"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "S'esta(n) imprimint la(es) pàgina(es) de prova..."
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
+msgstr "/_Fitxer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-"La transferència s'ha completat amb èxit\n"
-"Comproveu que podeu entrar al servidor amb:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"sense que se us demani una contrasenya."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
+msgstr "/Fitxer/_Surt"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Ja hi ha una partició amb el punt de muntatge %s\n"
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
+msgstr "<control>Q"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
-msgstr "Habilita/Inhabilita la comprovació de seguretat msec horària."
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
+msgstr "Monitor de categorització NewStyle"
-#: ../../help.pm:1
-#, 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''."
-msgstr ""
-"Ara és quan heu de decidir en quin lloc del vostre disc dur voleu instal•lar\n"
-"el sistema operatiu Mandrake Linux. Si el disc és buit, o si un sistema\n"
-"operatiu existent n'utilitza tot l'espai disponible, us caldrà particionar-"
-"lo.\n"
-"Bàsicament, particionar un disc dur consisteix a dividir-lo de manera\n"
-"lògica per crear espai on instal•lar el nou sistema Mandrake Linux.\n"
-"\n"
-"Atès que els efectes d'aquest procés solen ser irreversibles i poden "
-"implicar\n"
-"pèrdua de dades si ja teniu un sistema operatiu instal•lat, el "
-"particionament\n"
-"us pot espantar si sou un usuari sense experiència. Per sort, el DrakX "
-"inclou\n"
-"un auxiliar que simplifica aquest procés. Abans de continuar, però, llegiu "
-"la\n"
-"resta d'aquesta secció i, sobre tot, preneu-vos el temps que calgui. \n"
-"\n"
-"Segons la configuració del vostre disc dur, hi ha diverses opcions "
-"possibles:\n"
-" * \"%s\": aquesta opció particionarà automàticament les unitats buides. "
-"Amb\n"
-"aquesta opció no se us preguntarà res més.\n"
-"\n"
-" * \"%s\": l'auxiliar ha detectat una o més particions de Linux al vostre "
-"disc\n"
-"dur. Si voleu utilitzar-les, escolliu aquesta opció. Se us demanarà que "
-"trieu\n"
-"els punts de muntatge associats a cadascuna de les particions. Els punts de\n"
-"muntatge existents se seleccionen per defecte, i en la majoria dels casos "
-"és\n"
-"bona idea conservar-los.\n"
-" \n"
-" * \"%s\" Si teniu el Microsoft Windows instal•lat al disc dur i n'ocupa tot\n"
-"l'espai diponible, caldrà crear-hi espai lliure per al Linux. Per fer-ho, "
-"podeu\n"
-"suprimir la partició i les dades del Windows (consulteu la solució "
-"``Esborrar\n"
-"completament el disc\") o canviar la mida de la partició FAT del Windows.\n"
-"Aquest canvi de mida es pot dur a terme sense cap pèrdua de dades, sempre\n"
-"que la partició de Windows utilitzi el format FAT i que la desfragmenteu\n"
-"prèviament. És molt recomenable, però, fer una còpia de seguretat de les "
-"dades.\n"
-"Aquesta opció és la més recomanable si voleu utilitzar tant el Mandrake "
-"Linux\n"
-"com el Microsoft Windows al mateix ordinador.\n"
-"\n"
-" Abans de decidir-vos per aquesta opció, penseu que la partició del "
-"Microsoft\n"
-"Windows serà més petita que ara. Això vol dir que tindreu menys espai "
-"lliure\n"
-"per emmagatzemar-hi dades o instal•lar-hi més programari.\n"
-"\n"
-" *\"%s\": si voleu suprimir totes les dades i particions que teniu al disc "
-"dur i\n"
-"substituir-les pel sistema Mandrake Linux, podeu escollir aquesta opció. "
-"Aneu\n"
-"amb compte, però, perquè, un cop la confirmeu, no podreu fer-vos enrere.\n"
-"\n"
-" ¡¡ Si trieu aquesta opció, totes les dades del disc s'esborraran !!.\n"
-"\n"
-" *\"%s\": aquesta opció simplement esborra tot el contingut del disc i "
-"comença\n"
-"de nou, particionant des de zero. Totes les dades del disc es perdran.\n"
-"\n"
-" ¡¡ Si trieu aquesta opció, totes les dades del disc s'esborraran !!.\n"
-"\n"
-" * \"%s\": si voleu particionar el disc dur manualment, podeu triar aquesta "
-"opció.\n"
-"Aneu amb compte: és una opció molt potent però també perillosa, ja que "
-"podeu\n"
-"perdre fàcilment totes les dades. Per tant, aquesta opció només és "
-"recomenable si\n"
-"heu fet abans alguna cosa similar i teniu una mica d'experiència. Trobareu "
-"més\n"
-"instruccions sobre la utilitat DiskDrake a la secció ``Gestió de les "
-"particions\" de\n"
-" la ``Guia d'iniciació\"."
+#: ../../bootlook.pm_.c:83
+msgid "NewStyle Monitor"
+msgstr "Monitor NewStyle"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
-msgstr "Ucraïna"
+#: ../../bootlook.pm_.c:84
+msgid "Traditional Monitor"
+msgstr "Monitor tradicional"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Application:"
-msgstr "Aplicació:"
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
+msgstr "Monitor Gtk+ tradicional"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "External ISDN modem"
-msgstr "Mòdem XDSI extern"
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
+msgstr "Executa l'Aurora durant l'arrencada"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr "si és \"sí\", l'informa comprova el resultat per correu."
+#: ../../bootlook.pm_.c:89
+msgid "Lilo/grub mode"
+msgstr "Mode LILO/Grub"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Quina és la vostra elecció? (predeterminat %s)"
+#: ../../bootlook.pm_.c:89
+msgid "Yaboot mode"
+msgstr "Mode Yaboot"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr "Resolució de problemes"
+#: ../../bootlook.pm_.c:138
+msgid "Install themes"
+msgstr "Instal·la els temes"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:139
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"
+"Display theme\n"
+"under console"
msgstr ""
-"La(es) pàgina(es) de prova s'ha(n) enviat a la impressora.\n"
-"Pot passar un cert temps abans no comenci la impressió.\n"
-"Estat de la impressió:\n"
-"%s\n"
-"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
-msgstr "diària"
+"Mostra el tema\n"
+"sota la consola"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and one unknown printer"
-msgstr "i una impressora desconeguda"
+#: ../../bootlook.pm_.c:140
+msgid "Create new theme"
+msgstr "Crea un nou tema"
-#
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#: ../../bootlook.pm_.c:184
#, c-format
-msgid "Ireland"
-msgstr "Irlanda"
+msgid "Backup %s to %s.old"
+msgstr "Fes una còpia de seguretat de %s en %s.old"
-#
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:187
#, c-format
-msgid " Restore Configuration "
-msgstr " Configuració de restauració "
+msgid "Copy %s to %s"
+msgstr "S'està copiant %s a %s"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "És aquest el paràmetre correcte?"
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+msgstr "Error"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Ara configurareu la connexió a Internet/xarxa. Si voleu connectar\n"
-"l'ordinador a Internet o a una xarxa local, feu clic a \"%s\".\n"
-"El Linux Mandrake intentarà detectar automàticament els dipositius\n"
-"de xarxa i els mòdems. Si aquesta detecció falla, desactiveu la\n"
-"casella \"%s\". També podeu decidir no configurar la xarxa, o\n"
-"fer-ho més endavant; en aquest cas feu clic al botó \"%s\" per\n"
-"passar al pas següent.\n"
-"\n"
-"En configurar la xarxa, les opcions de connexió disponibles són:\n"
-"mòdem tradicional, mòdem XDSI, connexió ADSL, mòdem de cable, i\n"
-"finalment una connexió LAN senzilla (Ethernet).\n"
-"\n"
-"No explicarem cada opció de configuració; només cal que us assegureu\n"
-"que el vostre proveïdor d'Internet o administrador del sistema us ha\n"
-"facilitat tots els paràmetres, com ara l'adreça IP, la passarel·la\n"
-"per defecte, els servidors DNS, etc.\n"
-"\n"
-"Podeu consultar el capítol sobre connexions a Internet de la ``Guia\n"
-"d'iniciació'' per conèixer els detalls de la configuració, o\n"
-"simplement espereu fins que el sistema estigui instal·lat i\n"
-"utilitzeu el programa que s'hi indica per configurar la connexió."
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
+msgstr "No s'ha trobat el missatge de LILO"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Auxiliar de configuració"
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr "No s'ha pogut escriure /etc/sysconfig/bootsplash."
-#: ../../modules/interactive.pm:1
+#: ../../bootlook.pm_.c:222
#, c-format
-msgid "Autoprobe"
-msgstr "Exploració automàtica"
+msgid "Write %s"
+msgstr "Escriu %s"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:224
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."
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-"si és \"sí\", comprova :\n"
-"\n"
-" - les contrasenyes buides, \n"
-"\n"
-" - les que no hi són a /etc/shadow\n"
-"\n"
-" - usuaris amb l'identificador 0 que no sigui root."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files..."
-msgstr "Fes una còpia de seguretat dels fitxers del sistema..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr "No es pot utilitzar la difusió sense un domini NIS"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "S'està suprimint la impressora \"%s\"..."
+"No s'ha pogut escriure /etc/sysconfig/bootsplash\n"
+"No s'ha trobat el fitxer."
-#: ../../security/l10n.pm:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Shell history size"
-msgstr ""
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr "No s'ha pogut executar mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../standalone/drakfloppy:1
+#: ../../bootlook.pm_.c:238
#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr "Fes que initrd sigui 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../bootlook.pm_.c:244
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"
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-"Si us plau, indiqueu on està ubicat el fitxer auto_install.cfg.\n"
-"\n"
-"Deixeu-ho en blanc si no voleu configurar el mode d'instal·lació "
-"automàtica.\n"
-"\n"
-
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on other machines"
-msgstr "Configurat a d'altres ordinadors"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "nivell d'informació que es pot obtenir mitjançant la instrucció cpuid"
+"No s'ha pogut tornar a executar LILO!\n"
+"Executa \"lilo\" com a root a la línia d'ordres per completar la "
+"instal·lació del tema del LILO."
-#: ../../lang.pm:1
-#, c-format
-msgid "Peru"
-msgstr "Perú"
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
+msgstr "Torna a executar 'lilo'"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " on device: %s"
-msgstr " en el dispositiu: %s"
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+msgid "Notice"
+msgstr "Avís"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "Elimina el Windows(TM)"
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr "Els temes de LILO i de Bootsplash s'han instal·lat amb èxit"
-#
-#: ../../services.pm:1
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Inicia l'X Font Server (això és necessari perquè l'XFree funcioni)."
+#: ../../bootlook.pm_.c:251
+msgid "Theme installation failed!"
+msgstr "La instal·lació dels temes ha fallat!"
-#: ../../standalone/drakTermServ:1
+#: ../../bootlook.pm_.c:259
#, c-format
msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"La majoria d'aquests valors s'han obtingut\n"
-"del vostre sistema actual.\n"
-"Podeu modificar-los si cal."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Seleccioneu el fitxer o directori de fonts i feu clic a 'Afegeix'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "Madagascar"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
-msgstr "El cron encara no és disponible per a usuaris que no siguin root"
+"Actualment utilitzeu %s com a gestor de l'arrencada\n"
+"Feu clic a 'Configura' per executar l'auxiliar de configuració."
-#
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "System"
-msgstr "Sistema"
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
+msgstr "Configura"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Voleu utilitzar aquesta característica?"
+#: ../../bootlook.pm_.c:268
+msgid "Splash selection"
+msgstr "Selecció de pantalla de presentació"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr "Àrab"
+#: ../../bootlook.pm_.c:271
+msgid "Themes"
+msgstr "Temes"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:273
msgid ""
"\n"
-"- Options:\n"
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
msgstr ""
"\n"
-"- Opcions:\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Password required"
-msgstr "La contrasenya és necessària"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d minutes"
-msgstr "%d minuts"
+"Seleccioneu un tema per a\n"
+"lilo i bootsplash, \n"
+"podeu triar-los\n"
+"per separat"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Targeta gràfica: %s"
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
+msgstr "Pantalla del LILO"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV transfer failed!"
-msgstr "La transferència WebDAV ha fallat!"
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
+msgstr "Bootsplash"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "Configuració de l'XFree"
+#: ../../bootlook.pm_.c:316
+msgid "System mode"
+msgstr "Mode de sistema"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Choose action"
-msgstr "Trieu una acció"
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
+msgstr "Executa la interfície gràfica en iniciar el sistema"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Polynesia"
-msgstr "Polinèsia francesa"
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
+msgstr "No, no vull l'entrada automàtica"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"El DrakX generalment detecta el nombre de botons que té el vostre ratolí. "
-"Si\n"
-"no pot, assumeix que teniu un ratolí de dos botons i el configurarà per "
-"emular\n"
-"el tercer botó. Es pot ``prèmer' ' el tercer botó d'un ratolí de dos botons "
-"fent clic\n"
-"simultàniament als botons dret i esquerre. El DrakX detectarà "
-"automàticament\n"
-"si el ratolí utilitza la interfície PS/2, sèrie o USB.\n"
-"\n"
-"Si per alguna raó voleu especificar un altre tipus de ratolí, seleccioneu-"
-"lo\n"
-"a la llista.\n"
-"\n"
-"Si escolliu un ratolí diferent del ratolí per defecte, es mostrarà una "
-"pantalla\n"
-"de prova. Utilitzeu els botons i la roda per verificar que la configuració "
-"és\n"
-"correcta i que el ratolí funciona bé. Si el ratolí no funciona bé, premeu "
-"la\n"
-"barra d'espai o la tecla [Intro] per cancel·lar la prova tornar a la "
-"llista.\n"
-"\n"
-"De vegades, la roda del ratolí no es detecta automàticament. En aquest cas,\n"
-"haureu de seleccionar-lo a la llista. Assegureu-vos de triar el que "
-"correspon al\n"
-"port a què esta connectat el ratolí. Després de seleccionar un ratolí i "
-"prèmer\n"
-"el botó \"%s\", a la pantalla apareixerà un ratolí. Mogueu la roda del "
-"ratolí per\n"
-"assegurar-vos que s'ha activat correctament, comprovant que es mou també\n"
-"a la pantalla; després comproveu els botons i que el cursor de la pantalla "
-"es\n"
-"mou quan moveu el ratolí."
-
-#: ../../services.pm:1
-#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Funciona amb OKI 4w i winprinters compatibles."
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "Sí, vull l'entrada automàtica amb aquest (usuari, escriptori)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
+msgstr "D'acord"
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Executa el sistema de so ALSA (Advanced Linux Sound Architecture)"
+#: ../../common.pm_.c:107
+msgid "GB"
+msgstr "GB"
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "S'està instal·lant el controlador per a la targeta de %s %s"
+#: ../../common.pm_.c:107
+msgid "KB"
+msgstr "kB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Heu tranferit la vostra impressora predeterminada anterior (\"%s\"). Voleu "
-"que també sigui la impressora predeterminada en el nou sistema d'impressió %"
-"s?"
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "MB"
-#
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Enable Server"
-msgstr "Habilita el servidor"
+#: ../../common.pm_.c:115
+msgid "TB"
+msgstr "TB"
-#: ../../keyboard.pm:1
+#: ../../common.pm_.c:123
#, c-format
-msgid "Ukrainian"
-msgstr "Ucraïnès"
+msgid "%d minutes"
+msgstr "%d minuts"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"L'accés a la xarxa no ha funcionat i no s'ha pogut iniciar. Comproveu la "
-"configuració i el maquinari. Després proveu de configurar la impressora "
-"remota una altra vegada."
+#: ../../common.pm_.c:125
+msgid "1 minute"
+msgstr "1 minut"
-#: ../../standalone/drakperm:1
+#: ../../common.pm_.c:127
#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr ""
+msgid "%d seconds"
+msgstr "%d segons"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Inseriu el disquet d'arrencada utilitzat a la unitat %s"
+#
+#: ../../common.pm_.c:172
+msgid "Can't make screenshots before partitioning"
+msgstr "No es poden fer captures de pantalla abans de fer les particions"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: ../../common.pm_.c:179
#, c-format
-msgid "Local network(s)"
-msgstr "Xarxa(es) local(s)"
+msgid "Screenshots will be available after install in %s"
+msgstr "Les captures estaran disponibles després d'instal·lar a %s"
-#: ../../help.pm:1
-#, c-format
-msgid "Remove Windows"
-msgstr "Elimina el Windows"
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+msgid "France"
+msgstr "França"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-"El vostre %s ha estat configurat.\n"
-"Ara podeu escanejar documents utilitzant \"XSane\" des de Multimèdia/Gràfics "
-"en el menú d'aplicacions."
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
+msgstr "Costa Rica"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Firewire controllers"
-msgstr "Controladors Firewire"
+#
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+msgid "Belgium"
+msgstr "Bèlgica"
-#: ../../help.pm:1
-#, 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!"
-msgstr ""
-"Un cop configurats els paràmetres generals del carregador de l'arrencada, \n"
-"es mostrarà la llista d'opcions de càrrega que es veurà en arrencar la "
-"màquina.\n"
-"\n"
-"Si hi ha algun altre sistema operatiu instal·lat en el vostre ordinador, "
-"s'afegirà\n"
-"automàticament al menú d'arrencada. Podeu ajustar les opcions existents "
-"fent\n"
-"clic a \"%s\" per crear una nova entrada, i seleccionant una entrada i fent "
-"clic\n"
-"a \"%s\" o a \"%s\" per modificar-la o eliminar-la. \"%s\" valida els "
-"canvis.\n"
-"\n"
-"També és possible que no vulgueu permetre l'accés a aquests sistemes "
-"operatius\n"
-"a qualsevol que vagi a la consola i reiniciï l'ordinador; en aquest cas, "
-"podeu suprimir\n"
-"les entrades corresponents a aquests sistemes operatius per eliminar-los del "
-"menú\n"
-"del carregador d'arrencada, però aleshores us caldrà un disc d'arrencada per "
-"poder-los\n"
-"arrencar!"
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
+msgstr "República Txeca"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "System mode"
-msgstr "Mode de sistema"
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+msgid "Germany"
+msgstr "Alemanya"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Per poder imprimir a una impressora NetWare, heu de proporcionar el nom del\n"
-"servidor d'impressió NetWare (tingueu en compte que pot ser diferent del "
-"nom\n"
-"TCP/IP de l'ordinador), així com el nom de la cua d'impressió de\n"
-"la impressora a la qual voleu accedir i el nom d'usuari i contrasenya si "
-"són\n"
-"necessaris."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Netmask:"
-msgstr "Màscara de xarxa:"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+msgid "Greece"
+msgstr "Grècia"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
-msgstr ""
+#
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+msgid "Norway"
+msgstr "Noruega"
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "Afegeix"
+#
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+msgid "Sweden"
+msgstr "Suècia"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Refresca la llista d'impressores (per veure totes les impressores CUPS "
-"remotes disponibles)"
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
+msgstr "Països Baixos"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Quan s'activa aquesta opció, cada vegada que el CUPS s'inciï s'assegurarà "
-"que\n"
-"\n"
-"- si LPD/LPRng està instal·lat, /etc/printcap no sigui sobreeescrit pel "
-"CUPS\n"
-"\n"
-"- si /etc/cups/cupsd.conf no hi és, es creï\n"
-"\n"
-"- quan es difongui la informació de la impressora, no contingui \"localhost"
-"\" com a nom de servidor.\n"
-"\n"
-"Si alguna d'aquestes mesures us porta problemes desactiveu aquesta opció, "
-"però us caldrà anar amb compte amb aquest punts."
+#
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+msgid "Italy"
+msgstr "Itàlia"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Si ho desitgeu, la instal·lació automàtica es pot\n"
-"automatitzar completament, però en aquest cas\n"
-"prendrà el control del disc dur!\n"
-"(Això està pensat per a la instal·lació en un altre ordinador.)\n"
-"\n"
-"Potser preferireu repetir la instal·lació.\n"
+#
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+msgid "Austria"
+msgstr "Àustria"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Impressora de xarxa \"%s\", port %s"
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
+msgstr "Estats Units"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../diskdrake/dav.pm_.c:19
msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
+"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 ""
-"Si us plau, escolliu l'adaptador de xarxa que es connectarà a la vostra "
-"xarxa d'àrea local."
+"WebDAV és un protocol que permet muntar un directori d'un servidor web\n"
+"localment, i tractar-lo com si fos un sistema de fitxers local (amb el "
+"benentès\n"
+"que el servidor web està configurat com a servidor WebDAV). Si voleu afegir\n"
+"punts de muntatge WebDAV, seleccioneu \"Nou\"."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
-msgstr "'D'acord' per restaurar els altres fitxers."
+#: ../../diskdrake/dav.pm_.c:27
+msgid "New"
+msgstr "Nou"
-#
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Si us plau, seleccioneu la disposició del vostre teclat."
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Desmunta"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "Dispositiu URI d'impressora"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Munta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not erasable media!"
-msgstr "Aquest suport no es pot esborrar!"
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
+msgstr "Servidor"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "Basat en terminal"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Punt de muntatge"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr "Habilita/Inhabilita la protecció contra falsejament de la IP."
+#
+#: ../../diskdrake/dav.pm_.c:85
+msgid "Please enter the WebDAV server URL"
+msgstr "Si us plau introduïu l'URL del servidor WebDAV"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
-"S'està instal·lant un sistema d'impressió amb el nivell de seguretat %s"
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
+msgstr "L'URL ha de començar per http:// o https://"
-#: ../../any.pm:1
-#, c-format
-msgid "The user name is too long"
-msgstr "El nom d'usuari és massa llarg"
+#: ../../diskdrake/dav.pm_.c:109
+msgid "Server: "
+msgstr "Servidor: "
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "Un altre SO (Windows...)"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
+msgstr "Punt de muntatge: "
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr "El lloc remot WebDAV ja està sincronitzat!"
+msgid "Options: %s"
+msgstr "Opcions: %s"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
-msgstr "S'està llegint la base de dades d'impressores..."
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
+msgstr "Si us plau, feu primer una còpia de seguretat de les vostres dades"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Genera un disquet per a la instal·lació automàtica"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "Llegiu-ho atentament!"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:100
msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
+"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 ""
-"\t\t nom d'usuari: %s\n"
-"\t\t en el camí: %s \n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr "Somàlia"
+"Si penseu utilitzar aboot, assegureu-vos de deixar espai lliure (amb 2048\n"
+"sectors n'hi ha prou) al començament del disc"
-#
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr "No hi ha cap programa de control de codi obert"
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "Auxiliar"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
+msgstr "Trieu una acció"
-#
-#: ../../security/level.pm:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
-"Aquest és similar al nivell anterior, però el sistema està completament "
-"tancat i les característiques de seguretat estan al màxim."
+"Teniu una partició FAT gran\n"
+"(utilitzada normalment pel DOS/Windows de Microsoft).\n"
+"Suggereixo que primer en canvieu la mida\n"
+"(feu-hi clic i després feu clic a \"Canvia la mida\")"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "Nicaragua"
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "Si us plau, feu clic a una partició "
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "Nova Caledònia"
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "Detalls"
#
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Protocol europeu (EDSS1)"
+#: ../../diskdrake/hd_gtk.pm_.c:254
+msgid "No hard drives found"
+msgstr "No s'ha trobat cap disc dur!"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Delete"
-msgstr "/_Esborra"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "Mode de vídeo"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "FAT"
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
-msgstr "Oman"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
#
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Si us plau, entreu la vostra adreça electrònica"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Network Monitoring"
-msgstr "Monitorització de la xarxa"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Journalised FS"
+msgstr "Journalised FS"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:325
msgid "SunOS"
msgstr "SunOS"
-#
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "New size in MB: "
-msgstr "Nova mida en MB: "
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "Intercanvi"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Tipus de taula de particions: %s\n"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "Buit"
-#
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication Windows Domain"
-msgstr "Autenticació en el domini de Windows"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "Altres"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "Teclat Estats Units"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "Tipus de sistema de fitxers:"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr "Emulació dels botons"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "Crea"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", impressora de xarxa \"%s\", port %s"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "Tipus"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-"\n"
-"Activitats del Drakbackup a travès de cinta:\n"
-"\n"
+msgid "Use ``%s'' instead"
+msgstr "Utilitzeu \"%s\" al seu lloc"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-" Hi ha hagut un problema en la connexió FTP: No ha estat possible enviar els "
-"fitxers de la còpia de seguretat per FTP.\n"
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "Suprimeix"
-#
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Sending Speed:"
-msgstr "Velocitat d'enviament:"
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
+msgstr "Utilitzeu primer \"Unmount\""
-#: ../../harddrake/sound.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, 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"
+"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-"El comprovador de sons d'error clàssic pot executar les ordres següents:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" us dirà el programa de control que la\n"
-"vostra targeta utilitza per defecte\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" us dirà el programa de control\n"
-"que està utilitzant actualment\n"
-"\n"
-"- \"/sbin/lsmod\" us permetrà comprovar si el seu mòdul (programa de\n"
-"control) està carregat o no\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" i \"/sbin/chkconfig --list alsa\" us\n"
-"diran si els serveis de so i alsa estan configurats per executar-se en\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" us dirà si el so està silenciat o no\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" us dirà quin programa utilitza la targeta de "
-"so.\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
-msgstr "Error d'aturada"
+"Després de canviar el tipus de la partició %s, se'n perdran totes les dades"
#
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Configuració de l'alerta de correu"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr "Tokelau"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Matching"
-msgstr "que coincideixin amb"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bosnian"
-msgstr "Bosnià"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Release: "
-msgstr "Llançament: "
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose a partition"
+msgstr "Trieu una partició"
#
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection speed"
-msgstr "Velocitat de la connexió"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr "Namíbia"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose another partition"
+msgstr "Trieu una altra partició"
#
-#: ../../services.pm:1
-#, c-format
-msgid "Database Server"
-msgstr "Servidor de base de dades"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
-"funcions especials del programa de control (capacitat per enregistrar CD o "
-"preparat per a DVD)"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "No es pot afegir una partició a un RAID _formatat_ md%d"
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Network Time Protocol"
-msgstr "Interfície de la xarxa"
-
-#: ../../Xconfig/card.pm:1
-#, 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."
-msgstr ""
-"La vostra targeta pot tenir acceleració 3D de maquinari, però només amb "
-"l'Xfree %s,\n"
-"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
-"PENJAR.\n"
-"La vostra targeta està suportada per XFree %s que pot tenir un suport millor "
-"en 2D."
+#: ../../diskdrake/interactive.pm_.c:202
+msgid "Exit"
+msgstr "Surt"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Espereu si us plau, s'estan configurant les opcions de seguretat..."
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
+msgstr "Canvia al mode expert"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "Desconegut|CPH05X (bt878) [molts venedors]"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
+msgstr "Canvia al mode normal"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Executa la interfície gràfica en iniciar el sistema"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "Desfés"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr "cada hora"
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "Voleu continuar igualment?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
-msgstr "Tecla Maj dreta"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "Surt sense desar"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " restaurades amb èxit en %s "
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "Voleu sortir sense escriure la taula de particions?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "S'està posant a disposició del CUPS el port d'impressora..."
+#
+#: ../../diskdrake/interactive.pm_.c:257
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "Voleu desar les modificacions a /etc/fstab"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr "Antigua i Barbuda"
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "Buida-ho tot"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! Indica que la contrasenya de la base de dades del sistema és diferent a\n"
-" la de la base de dades del servidor de terminal.\n"
-"Suprimiu o torneu a afegir l'usuari al servidor de terminal per habilitar "
-"l'entrada."
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
+msgstr "Assigna automàticament"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "Espanyol"
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+msgid "More"
+msgstr "Més"
#
-#: ../../services.pm:1
-#, c-format
-msgid "Start"
-msgstr "Inicia"
+#: ../../diskdrake/interactive.pm_.c:278
+msgid "Hard drive information"
+msgstr "Informació del disc dur"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
-msgstr "Entrada directa com a superusuari"
+#: ../../diskdrake/interactive.pm_.c:310
+msgid "All primary partitions are used"
+msgstr "S'utilitzen totes les particions primàries"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring applications..."
-msgstr "S'estan configurant les aplicacions..."
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "No es pot afegir cap més partició"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:312
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."
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
msgstr ""
-"\n"
-"Benvingut a l'auxiliar de configuració de la impressora\n"
-"\n"
-"Aquest auxiliar us ajudarà a instal·lar la o les impressores connectades a "
-"l'ordinador, directament a la xarxa, o a una màquina Windows remota.\n"
-"\n"
-"Si teniu impressores connectades a aquesta màquina, endolleu-les i engegueu-"
-"les per tal de poder-les detectar automàticament. Engegueu també les "
-"impressores de xarxa i les màquines Windows.\n"
-"\n"
-"Tingueu en compte que la detecció automàtica d'impressores de la xarxa triga "
-"més que la detecció d'impressores connectades directament a la màquina. Per "
-"tant, desactiveu la detecció automàtica d'impressores en xarxa o en màquina "
-"Windows si no la necessiteu.\n"
-"\n"
-"Feu clic a \"Següent\" quan estigueu a punt, o a \"Cancel·la\" si no voleu "
-"configurar ara les impressores."
+"Si voleu tenir més particions, suprimiu-ne una per poder crear una partició "
+"ampliada"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
-msgstr "Connexió normal per mòdem"
+#
+#: ../../diskdrake/interactive.pm_.c:322
+msgid "Save partition table"
+msgstr "Escriu la taula de particions"
#
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "File Selection"
-msgstr "Selecció de fitxers"
+#: ../../diskdrake/interactive.pm_.c:323
+msgid "Restore partition table"
+msgstr "Restaura la taula de particions"
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
+msgstr "Recupera la taula de particions"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Esborra la cinta abans de fer la còpia de seguretat"
+#: ../../diskdrake/interactive.pm_.c:326
+msgid "Reload partition table"
+msgstr "Torna a carregar la taula de particions"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
-msgstr "Executa l'eina de configuració"
+#
+#: ../../diskdrake/interactive.pm_.c:331
+msgid "Removable media automounting"
+msgstr "Muntatge automàtic dels dispositius extraïbles"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "Instal·lació del carregador de l'arrencada"
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "Seleccioneu el fitxer"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Mida de la partició arrel en MB: "
+#: ../../diskdrake/interactive.pm_.c:347
+msgid ""
+"The backup partition table has not the same size\n"
+"Still continue?"
+msgstr ""
+"La còpia de seguretat de la taula de particions no té la mateixa mida\n"
+"Voleu continuar igualment?"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Aquest paquet és obligatori; no es pot desseleccionar"
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "Advertència"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:362
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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
-" - Crea disquets/CD Etherboot:\n"
-" \tLes màquines client sense disc necessiten imatge ROM al NIC, o bé "
-"un disquet o CD\n"
-" \td'arrencada per iniciar la seqüència d'arrencada. El drakTermServ "
-"ajudarà a generar\n"
-" \taquestes imatges, basades en el NIC de la màquina client.\n"
-" \t\t\n"
-" \tUn exemple senzill de la creació manual d'un disquet d'arrencada "
-"des d'un 3Com 3c509:\n"
-" \t\t\n"
-" \tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
+msgstr ""
+"Inseriu un disquet a la unitat\n"
+"Se'n perdran totes les dades"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "La imatge ISO per a Etherboot és %s"
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
+msgstr "S'està intentant recuperar la taula de particions"
#
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) és un servidor de noms de domini (DNS) que s'utilitza per "
-"convertir noms d'ordinadors centrals en adreces IP."
+#: ../../diskdrake/interactive.pm_.c:379
+msgid "Detailed information"
+msgstr "Informació detallada"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr "Saint Lucia"
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "Canvia la mida"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "Novembre"
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "Mou"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
-msgstr "Desconnecta..."
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "Formata"
-#
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Report"
-msgstr "Informa"
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "Afegeix al RAID"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr "Palau"
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "Afegeix a l'LVM"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "nivell"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "Elimina del RAID"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr ""
-"Cada incident serà investigat per un expert tècnic qualificat de "
-"MandrakeSoft."
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "Elimina de l'LVM"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "Selecció del grup de paquets"
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "Modifica el RAID"
-#
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Permet la configuració del\n"
-"maquinari local."
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
+msgstr "Utilitza per a loopback"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Restaura mitjançant el protocol de xarxa: %s"
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "Crea una nova partició"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr "Ara podeu configurar cada paràmetre del mòdul."
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "Sector d'inici: "
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Escolliu la resolució i la profunditat de color"
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "Mida en MB: "
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
-msgstr "Voleu emular el tercer botó?"
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "Tipus de sistema de fitxers: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Preferència: "
+
+#: ../../diskdrake/interactive.pm_.c:481
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
@@ -3416,1955 +1916,1830 @@ msgstr ""
"(perquè heu arribat al màxim nombre de particions primàries).\n"
"Esborreu primer una partició primària i creeu una partició ampliada."
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr "Munta"
-
-#
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "S'està creant el disquet d'instal·lació automàtica"
-
#
-#: ../../steps.pm:1
-#, c-format
-msgid "Install updates"
-msgstr "Instal·la les actualitzacions"
+#: ../../diskdrake/interactive.pm_.c:511
+msgid "Remove the loopback file?"
+msgstr "Voleu suprimir el fitxer de loopback?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
-msgstr "alçària de la caixa de text"
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "Canvia el tipus de partició"
-#
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "State"
-msgstr "Estat"
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+msgid "Which filesystem do you want?"
+msgstr "Quin sistema de fitxers voleu?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Assegureu-vos que hi ha un suport al dispositiu %s"
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
+msgstr "S'està canviant de ext2 a ext3"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Enable multiple profiles"
-msgstr "Habilita perfils múltiples"
+msgid "Where do you want to mount loopback file %s?"
+msgstr "On voleu muntar el fitxer de loopback %s?"
-#: ../../fs.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr ""
-"No interpretis el caràcter o bloquis dispositius especials en el sistema de "
-"fitxers."
+msgid "Where do you want to mount device %s?"
+msgstr "On voleu muntar el dispositiu %s?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
-"Aquestes opcions poden fer còpia de seguretat i restaurar tots els fitxers "
-"del directory /etc.\n"
+"No es pot anul·lar el punt de muntatge, perquè aquesta partició\n"
+"s'utilitza per al loopback. Elimineu primer el loopback"
-#: ../../printer/main.pm:1
+#: ../../diskdrake/interactive.pm_.c:606
#, c-format
-msgid "Local printer"
-msgstr "Impressora local"
+msgid "Where do you want to mount %s?"
+msgstr "On voleu muntar %s?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Files Restored..."
-msgstr "S'han restaurat els fitxers..."
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "S'estan calculant els límits del sistema de fitxers de la FAT"
-#
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
-msgstr "Selecció de paquets"
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "S'està canviant la mida"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritania"
-msgstr "Mauritània"
+#: ../../diskdrake/interactive.pm_.c:662
+msgid "This partition is not resizeable"
+msgstr "No es pot canviar la mida d'aquesta partició"
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
-"Podeu conservar la configuració actual i assumir que ja heu definit un "
-"servidor DHCP. En aquest cas, verifiqueu que s'ha llegit correctament la "
-"Xarxa que utilitzeu per a la vostra xarxa local. No es reconfigurarà ni es "
-"modificarà la configuració del servidor DHCP.\n"
-"\n"
-"L'entrada DNS per defecte és el servidor de noms amb memòria cau que s'ha "
-"configurat al tallafoc. Podeu substituir-lo, per exemple, per la IP del DNS "
-"del vostre proveïdor d'accés.\n"
-"\n"
-"Si no, podeu reconfigurar la interfície i (re)configurar un servidor DHCP "
-"per al vostre ús.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
+msgstr "Cal fer una còpia de seguretat de totes les dades d'aquesta partició"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:669
#, 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 "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-"No s'ha trobat cap impressora! Per instal·lar-ne una manualment entreu el "
-"dispositiu/fitxer a la línia d'entrada (Ports Paral·lel: /dev/lp0, /dev/lp1, "
-"etc., equivalents a LPT1:, LPT2:, etc.; 1a impresora USB: /dev/usb/lp0, 2a "
-"impressora USB: /dev/usb/lp1, etc.)."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All primary partitions are used"
-msgstr "S'utilitzen totes les particions primàries"
+"Després de canviar la mida de la partició %s, se'n perdran totes les dades"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "Servidor LPD \"%s\", impressora \"%s\""
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "Escolliu la nova mida"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Després d'això, és recomanable que reinicieu l'entorn X per\n"
-"evitar problemes deguts al canvi de nom de l'ordinador."
+#
+#: ../../diskdrake/interactive.pm_.c:675
+msgid "New size in MB: "
+msgstr "Nova mida en MB: "
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-"Detecció i configuració automàtica de maquinari en iniciar l'ordinador."
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "A quin disc ho voleu moure?"
-#
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation Server Configuration"
-msgstr "Configuració del servidor d'instal·lació"
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "Sector"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "S'està configurant l'IDE"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "A quin sector ho voleu moure?"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network functionality not configured"
-msgstr "La funcionalitat de xarxa no ha estat configurada"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "S'està movent"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Configure module"
-msgstr "Configura el mòdul"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "S'està movent la partició..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "Illes Cocos (Keeling)"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr "Escolliu un RAID existent al qual afegir-ho"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr ""
-"Us caldrà tornar a arrencar per tal que les modificacions tinguin efecte"
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "nou"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
-msgstr "Número de telèfon del proveïdor"
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
+msgstr "Escolliu un LVM existent al qual afegir-ho"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Host %s"
-msgstr "Ordinador %s"
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
+msgstr "Nom LVM?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
-msgstr "Fiji"
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
+msgstr "Aquesta partició no es pot utilitzar per al loopback"
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
-msgstr "Armènia"
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
+msgstr "Loopback"
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "Segona unitat de disquet"
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
+msgstr "Nom del fitxer de loopback: "
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
-msgstr "Quant al Harddrake"
+#
+#: ../../diskdrake/interactive.pm_.c:831
+msgid "Give a file name"
+msgstr "Proporcioneu un nom de fitxer"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
msgstr ""
+"Un altre loopback ja està utilitzant el fitxer, escolliu-ne un de diferent"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr "Capacitat de la unitat"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
+msgstr "El fitxer ja existeix. El voleu utilitzar?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Inseriu un disquet a la unitat\n"
-"Se'n perdran totes les dades"
+#
+#: ../../diskdrake/interactive.pm_.c:858
+msgid "Mount options"
+msgstr "Opcions de muntatge"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "Mida: %s"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
+msgstr "Diversos"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Tecles de Control i de Majúscules simultàniament"
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "dispositiu"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "secondary"
-msgstr "secundari"
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "nivell"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Visualitza la configuració de la còpia de seguretat"
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "mida del fragment"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr ""
-"si és \"sí\", informa del resultat de la comprovació al registre del sistema."
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
+msgstr "Aneu amb compte: aquesta operació és perillosa."
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "Sense contrasenya"
+#: ../../diskdrake/interactive.pm_.c:962
+msgid "What type of partitioning?"
+msgstr "Quin tipus de particionament voleu?"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:978
#, c-format
-msgid "Nigeria"
-msgstr "Nigèria"
+msgid "The package %s is needed. Install it?"
+msgstr "Cal instal·lar el paquet %s. Voleu instal·lar-lo?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s necessita un nom d'ordinador...\n"
+#: ../../diskdrake/interactive.pm_.c:992
+msgid ""
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
+msgstr ""
+"Fins al moment no puc acceptar crear el /boot a la unitat (a un cilindre > "
+"1024).\n"
+"O esteu utilitzant LILO, i no funcionarà, o no l'esteu utilitzant i no "
+"necessiteu el /boot"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "No hi ha cap partició que es pugui utilitzar"
+#: ../../diskdrake/interactive.pm_.c:996
+msgid ""
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
+msgstr ""
+"La partició que heu seleccionat per afegir com a arrel (/) està ubicada "
+"físicament més enllà del cilindre 1024 del disc dur, i no teniu cap "
+"partició /boot.\n"
+"Si teniu previst utilitzar el gestor d'arrencada LILO, penseu d'afegir una "
+"partició /boot"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1002
msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
msgstr ""
-"Els escàners\n"
-"\n"
-"%s\n"
-"estan disponibles al sistema.\n"
+"Heu seleccionat una partició de programari RAID com a arrel (/).\n"
+"Això no ho pot gestionar cap carregador d'arrencada sense una partició /"
+"boot.\n"
+"Per tant, assegureu-vos d'afegir una partició /boot"
-#: ../../printer/main.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Dispositiu multifunció en port paral·lel #%s"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "La taula de particions de la unitat %s s'escriurà al disc!"
-#
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
msgstr ""
-"Per imprimir a una impressora TCP o Socket, heu d'indicar el nom de xarxa o "
-"la IP de la impressora i, opcionalment, el número de port. En els servidors "
-"HP JetDirect el número del port normalment és el 9100, en els altres pot "
-"variar. Mireu el manual del vostre maquinari."
+"Us caldrà tornar a arrencar per tal que les modificacions tinguin efecte"
-#
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1037
#, c-format
-msgid "Hard drive information"
-msgstr "Informació del disc dur"
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr "Després de formatar la partició %s, se'n perdran totes les dades"
+
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "S'està formatant"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Russian"
-msgstr "Rus"
+msgid "Formatting loopback file %s"
+msgstr "S'està formatant el fitxer de loopback %s"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "Jordan"
-msgstr "Jordània"
+msgid "Formatting partition %s"
+msgstr "S'està formatant la partició %s"
#
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1052
msgid "Hide files"
msgstr "Fitxers ocults"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Detecta automàticament les impressores connectades a aquesta màquina"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "No hi ha cap unitat de disquet disponible"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bolivia"
-msgstr "Bolívia"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Move files to the new partition"
+msgstr "Mou els fitxers a la nova partició"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1053
#, c-format
msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-"Configureu el vostre servidor Windows per tal que la impressora estigui "
-"disponible sota el protocol IPP i configureu la impressió en aquest "
-"ordinador amb el tipus de connexió \"%s\" en el Printerdrake.\n"
-"\n"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "Paquet incorrecte"
+"El directori %s encara conté dades\n"
+"(%s)"
-#: ../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!"
-msgstr ""
-"Transformeu el vostre ordinador en un potent servidor Linux amb només uns "
-"quants clics del ratolí: servidor Web, correu electrònic, tallafoc, "
-"encaminador, servidor de fitxers i d'impressió..."
+#
+#: ../../diskdrake/interactive.pm_.c:1064
+msgid "Moving files to the new partition"
+msgstr "S'estan movent els fitxers a la nova partició"
-#: ../../security/level.pm:1
+#: ../../diskdrake/interactive.pm_.c:1068
#, c-format
-msgid "DrakSec Basic Options"
-msgstr "Opcions bàsiques del DrakSec"
+msgid "Copying %s"
+msgstr "S'està copiant %s"
-#: ../../standalone/draksound:1
+#: ../../diskdrake/interactive.pm_.c:1072
#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Nota: si teniu una targeta de so ISA PnP, haureu de fer servir el programa "
-"sndconfig. Només cal que teclegeu \"sndconfig\" a la consola."
+msgid "Removing %s"
+msgstr "S'està esborrant %s"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid "Romania"
-msgstr "Romania"
+msgid "partition %s is now known as %s"
+msgstr "la partició %s ara és %s"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group"
-msgstr "Grup"
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "Dispositiu: "
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "Canada"
-msgstr "Canadà"
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "Lletra d'unitat de DOS: %s (només és una suposició)\n"
-#
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "choose device"
-msgstr "escolliu un dispositiu"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "Tipus: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from LVM"
-msgstr "Elimina de l'LVM"
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "Nom: "
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "Timezone"
-msgstr "Fus horari"
+msgid "Start: sector %s\n"
+msgstr "Inici: sector %s\n"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "German"
-msgstr "Alemany"
+msgid "Size: %s"
+msgstr "Mida: %s"
-#: ../../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
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid "Next ->"
-msgstr "Següent ->"
+msgid ", %s sectors"
+msgstr ", %s sectors"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
-msgid ""
-"Turning on this allows to print plain text files in japanese language. Only "
-"use this function if you really want to print text in japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Si ho activeu podreu imprimir fitxers de text en japonès. Utilitzeu aquest "
-"funció només si heu d'imprimir textos en japonès, ja que si és activada ja "
-"no podreu imprimir caràcters accentuats en tipus de lletra llatins ni podreu "
-"ajustar els marges, la mida del caràcter, etc. Aquest paràmetre només afecta "
-"a les impressores definides en aquesta màquina; si voleu imprimir text en "
-"japonès en una impressora configurada en una màquina remota, caldrà que hi "
-"activeu aquesta funció."
+msgid "Cylinder %d to %d\n"
+msgstr "Cilindre %d a %d\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"És possible que aquesta partició sigui\n"
-"una partició de programes de control. Potser\n"
-"és millor que no la toqueu.\n"
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "Formatat\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
-msgstr "Guinea Bissau"
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "Sense formatar\n"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Velocitat de refresc horitzontal"
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
+msgstr "Muntat\n"
-#
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Edit"
-msgstr "Edita"
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, c-format
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+"Loopback file(s):\n"
+" %s\n"
msgstr ""
-"No es pot anul·lar el punt de muntatge, perquè aquesta partició\n"
-"s'utilitza per al loopback. Elimineu primer el loopback"
+"Fitxer(s) de loopback:\n"
+" %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1132
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\""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"La configuració de xarxa feta durant la instal·lació no s'ha pogut iniciar "
-"ara. Comproveu si la xarxa es torna accessible després de reiniciar el "
-"sistema i corregiu la configuració utilitzant el Centre de Control Mandrake, "
-"a la secció \"Xarxa & Internet\"/\"Connexió\", i després configureu la "
-"impressora, també usant el Centre de Control Mandrake, secció \"Maquinari\"/"
-"\"Impressores\""
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "USB controllers"
-msgstr "Controladors USB"
+"Partició arrencada per defecte\n"
+" (per a l'arrencada de l'MS-DOS, no per a LILO)\n"
-#: ../../Xconfig/various.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "What norm is your TV using?"
-msgstr "Quina norma segueix el vostre televisor?"
+msgid "Level %s\n"
+msgstr "Nivell %s\n"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "Type:"
-msgstr "Tipus:"
+msgid "Chunk size %s\n"
+msgstr "Mida del fragment %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Share name"
-msgstr "Nom de compartició"
+msgid "RAID-disks %s\n"
+msgstr "Discs RAID %s\n"
-#: ../../standalone/drakgw:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "enable"
-msgstr "habilita"
+msgid "Loopback file name: %s"
+msgstr "Nom del fitxer de loopback: %s"
-#
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-"S'està contactant amb el servidor Mandrake Linux per obtenir la llista de "
-"rèpliques disponibles..."
+"\n"
+"És possible que aquesta partició sigui\n"
+"una partició de Controladors;\n"
+"és millor que no la toqueu.\n"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"S'ha produït un problema en reiniciar la xarxa: \n"
"\n"
-"%s"
-
-#
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove the loopback file?"
-msgstr "Voleu suprimir el fitxer de loopback?"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "La mida seleccionada és superior a la disponible"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP server name missing!"
-msgstr "Falta el nom del Servidor NCP!"
+"Aquesta partició especial\n"
+"Bootstrap és per arrencar\n"
+"el vostre sistema en dual.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose your country."
-msgstr "Si us plau, seleccioneu el vostre país."
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
+msgstr "Només lectura"
-#
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Còpies de seguretat del disc dur..."
+msgid "Size: %s\n"
+msgstr "Mida: %s\n"
-#
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "Laotian"
-msgstr "Laosià"
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Geometria: %s cilindres, %s capçals, %s sectors\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Samoa"
-msgstr "Samoa"
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
+msgstr "Informació: "
-#: ../../services.pm:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"El protocol rstat permet que els usuaris d'una xarxa recuperin\n"
-"mesures de rendiment de qualsevol ordinador de la mateixa."
+msgid "LVM-disks %s\n"
+msgstr "Discs LVM %s\n"
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid "Re-generating list of configured scanners ..."
-msgstr "S'està tornant a generar la llista dels escàners configurats..."
+msgid "Partition table type: %s\n"
+msgstr "Tipus de taula de particions: %s\n"
-#
-#: ../../modules/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1169
#, c-format
-msgid "Module configuration"
-msgstr "Configuració dels mòduls"
+msgid "on channel %d id %d\n"
+msgstr "al canal %d amb id %d\n"
#
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Scanner"
-msgstr "Escàner"
+#: ../../diskdrake/interactive.pm_.c:1199
+msgid "Filesystem encryption key"
+msgstr "Clau de xifratge del sistema de fitxers: "
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Avís: la comprovació d'aquesta targeta gràfica pot penjar-vos l'ordinador"
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
+msgstr "Escolliu la clau de xifratge del sistema de fitxers"
-#: ../../any.pm:1
+# c-format
+#: ../../diskdrake/interactive.pm_.c:1203
#, c-format
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-"El nom d'usuari només pot contenir lletres en minúscula, números, '-' i '_'"
+"Aquesta clau de xifratge és massa senzilla (ha de tenir com a mínim %d "
+"caràcters)"
#
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "Benvinguts, crackers"
+#: ../../diskdrake/interactive.pm_.c:1204
+msgid "The encryption keys do not match"
+msgstr "Les claus de xifratge no coincideixen"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "Opcions del mòdul:"
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
+msgstr "Clau de xifratge"
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
-msgstr "Assegureu les vostres xarxes amb el tallafocs Multi Network"
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
+msgstr "Clau de xifratge (un altre cop)"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Continua sense configurar la xarxa"
+#: ../../diskdrake/removable.pm_.c:47
+msgid "Change type"
+msgstr "Canvia el tipus"
-#: ../../network/isdn.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "Abort"
-msgstr "Abandona"
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+"No es pot entrar amb el nom d'usuari %s (potser la contrasenya és "
+"incorrecta?)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "No es demana cap contrasenya a %s en el port %s"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Cal l'autenticació de domini"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse amb emulació de rodeta"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Un altre"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Utilització d'escàners remots"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Quin nom d'usuari?"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
+"Please enter your username, password and domain name to access this host."
msgstr ""
-"La partició de Windows està massa fragmentada. Si us plau, reinicieu "
-"l'ordinador sota Windows i executeu l'eina \"defrag\". Llavors, torneu a "
-"començar la instal·lació del Mandrake Linux."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Noruec)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Progrés de la còpia de seguretat del disc dur..."
-
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "No es pot bifurcar: %s"
+"Introduïu el vostre nom d'usuari, la contrasenya i el nom de domini per "
+"accedir a aquesta màquina."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "Tipus: "
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+msgid "Username"
+msgstr "Nom d'usuari"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Edita un client"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Domini"
#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "no fonts found"
-msgstr "no s'han trobat fonts"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Mouse"
-msgstr "Ratolí"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "not enough room in /boot"
-msgstr "no hi ha prou espai a /boot"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "trying to promote %s"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+msgid "Search servers"
+msgstr "Cerca servidors"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "Host name"
-msgstr "Nom de l'ordinador"
+msgid "%s formatting of %s failed"
+msgstr "%s formatació de %s ha fallat"
-#: ../../standalone/draksplash:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "the color of the progress bar"
-msgstr "el color de la barra de progrés"
+msgid "I don't know how to format %s in type %s"
+msgstr "No sé com formatar %s amb el tipus %s"
-#: ../../standalone/drakfont:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Suprimeix els fitxers de fonts"
+msgid "mounting partition %s in directory %s failed"
+msgstr "El muntatge de la partició %s en el directori %s ha fallat"
-#: ../../diskdrake/interactive.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid "Add to RAID"
-msgstr "Afegeix al RAID"
+msgid "error unmounting %s: %s"
+msgstr "s'ha produït un error en desmuntar %s: %s"
-#: ../../help.pm:1
-#, c-format
-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 ""
-"Podeu afegir entrades addicionals per al yaboot, ja sigui per a altres\n"
-"sistemes operatius, nuclis alternatius, o per a una imatge per a arrencades\n"
-"d'emergència.\n"
-"\n"
-"Per a altres SO, l'entrada només consta d'una etiqueta i de la partició "
-"arrel.\n"
-"\n"
-"Per al Linux, hi ha unes quantes opcions possibles: \n"
-"\n"
-" * Etiqueta: el nom a escriure en l'indicador del yaboot per\n"
-"seleccionar aquesta opció d'arrencada.\n"
-"\n"
-" * Imatge: el nom del nucli a arrencar. Normalment, vmlinux o una\n"
-"variació de vmlinux amb una extensió.\n"
-"\n"
-" * Arrel: el dispositiu arrel o '/' per a la instal·lació del Linux.\n"
-"\n"
-" * Addició: en maquinari Apple, l'opció d'addició de nuclis s'utilitza\n"
-"força sovint per auxiliar en la inicialització de maquinari de vídeo o per\n"
-"habilitar l'emulació del botó del ratolí de teclat per als 2n i 3r botons,\n"
-"que sovint no existeixen en un ratolí Apple convencional. Alguns exemples\n"
-"d'això són:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: aquesta opció es pot utilitzar per carregar els mòduls inicials,\n"
-"abans que el dispostiu d'arrencada estigui disponible, o per carregar\n"
-"una imatge de disc RAM en una situació d'arrencada d'emergència.\n"
-"\n"
-" * Initrd-size: la mida per defecte del disc RAM sol ser de 4096 kB.\n"
-"Si necessiteu assignar un disc RAM gran, podeu utilitzar aquesta opció\n"
-"per indicar un disc RAM més gran que el predeterminat.\n"
-"\n"
-" * Lectura-Escriptura: normalment, la partició arrel es munta inicialment "
-"com de\n"
-"només lectura per permetre una comprovació del sistema de fitxers abans que "
-"el\n"
-"sistema esdevingui \"viu\". Podeu substituir el valor per defecte amb "
-"aquesta opció.\n"
-"\n"
-" * Sense Vídeo: en cas que el maquinari de vídeo d'Apple resulti "
-"especialment\n"
-"problemàtic, podeu seleccionar aquesta opció per arrencar en mode 'no-"
-"vídeo',\n"
-"amb el suport nadiu per a memòria intermèdia de marcs.\n"
-"\n"
-" * Per defecte: seleccioneu aquesta entrada com a selecció per defecte del\n"
-"Linux; se selecciona prement simplement Retorn a l'indicador del yaboot.\n"
-"Aquesta entrada també es ressaltarà amb un ``*'' si premeu Tab per veure "
-"les\n"
-"seleccions d'arrencada."
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "senzill"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr ""
-"S'ha afegit correctament la impressora \"%s\" a Star Office/OpenOffice.org/"
-"GIMP."
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
+msgstr "amb /usr"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No floppy drive available!"
-msgstr "No s'ha trobat cap unitat de disquet!"
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "servidor"
-#: ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:240
#, 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"
+"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 loose all the partitions?\n"
msgstr ""
-"Per conèixer les opcions disponibles de la impressora actual, llegiu la "
-"llista de sota o feu clic al botó \"Imprimeix la llista d'opcions\".%s%s%s\n"
+"No es pot llegir la taula de particions del dispositiu %s, està massa "
+"malmesa :(\n"
+"Es pot mirar de continuar, suprimint les particions incorrectes (es perdran "
+"TOTES LES DADES!).\n"
+"L'altra solució és impedir al DrakX que modifiqui la taula de particions.\n"
+"(l'error és %s)\n"
"\n"
+"Esteu d'acord en perdre totes les particions?\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saudi Arabia"
-msgstr "Aràbia Saudita"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Internet"
-msgstr "Internet"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "Voleu continuar igualment?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Si la vostra impressora no és a la llista, escolliu-ne una de compatible "
-"(mireu el manual de la impressora) o una de similar."
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr "No podeu utilitzar el JFS per a particions inferiors a 16 MB"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer"
-msgstr "Impressora"
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "No podeu utilitzar el ReiserFS per a particions inferiors a 32 MB"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices were added:\n"
-msgstr "S'han afegit alguns dispositius:\n"
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
+msgstr "Els punts de muntatge han de començar amb una /"
-#: ../../diskdrake/interactive.pm:1
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometria: %s cilindres, %s capçals, %s sectors\n"
+msgid "There is already a partition with mount point %s\n"
+msgstr "Ja hi ha una partició amb el punt de muntatge %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:526
#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "S'està imprimint en la impressora \"%s\""
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr "No podeu utilitzar un volum lògic LVM per al punt de muntatge %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr "/etc/hosts.allow i /etc/hosts.deny ja estan configurats - no canviats"
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
+msgstr "Aquest directori s'ha de mantenir dins del sistema de fitxers arrel"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Tape"
-msgstr "Restaura des de cinta"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
+#: ../../fsedit.pm_.c:530
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 ""
-"Per trametre un informe d'error de programació, feu clic al botó 'Informa'.\n"
-"S'obrirà una finestra del navegador web amb la pàgina %s\n"
-"on trobareu un formulari per omplir. La informació que es mostra més amunt "
-"s'enviarà al servidor."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the profile to configure"
-msgstr "Escolliu el perfil a configurar"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Longitud mínima de la contrasenya i el nombre de dígits i lletres en "
-"majúscules"
+"Necessiteu un sistema de fitxers real (ext2/ext3, reiserfs, xfs o jfs) per a "
+"aquest punt de muntatge\n"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../fsedit.pm_.c:532
#, c-format
-msgid ""
-"\n"
-"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
+msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-"\n"
-"\n"
-"Introduïu un nom d'ordinador Zeroconf sense cap punt si no\n"
-"voleu utilitzar el nom d'ordinador per defecte."
+"No podeu utilitzar un sistema d'arxius xifrat per al punt de muntatge %s"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Fes la còpia de seguretat des del fitxer de configuració"
+#: ../../fsedit.pm_.c:599
+msgid "Not enough free space for auto-allocating"
+msgstr "No hi ha prou espai per a l'assignació automàtica"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr "Els punts de muntatge només poden contenir caràcters alfanumèrics"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
+msgstr "Res a fer"
-#
-#: ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:694
#, c-format
-msgid "Restarting printing system..."
-msgstr "S'està reiniciant el sistema d'impressió..."
+msgid "Error opening %s for writing: %s"
+msgstr "S'ha produït un error en obrir %s per escriure: %s"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "You can only run with no CDROM support"
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "Mira la informació del maquinari"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
-msgstr "Dia"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr "Primer sector de la partició d'arrencada"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Fabricant de la impressora, model"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
+msgstr "No hi ha cap controlador alternatiu"
-#: ../../standalone.pm:1
+#: ../../harddrake/sound.pm_.c:171
#, 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)"
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-"[OPCIONS]...\n"
-"Configurador del servidor de terminal de Mandrake (MTS)\n"
-"--enable : habilita l'MTS\n"
-"--disable : inhabilita l'MTS\n"
-"--start : inicia l'MTS\n"
-"--stop : atura l'MTS\n"
-"--adduser : afegeix a l'MTS un usuari existent al sistema (cal un nom "
-"d'usuari)\n"
-"--deluser : suprimeix de l'MTS un usuari existent al sistema (cal un "
-"nom d'usuari)\n"
-"--addclient : afegeix a l'MTS una màquina client (cal una adreça MAC, "
-"IP, nom d'imatge nbi)\n"
-"--delclient : suprimeix de l'MTS una màquina client (cal una adreça "
-"MAC, IP, nom d'imatge nbi)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Màscara de la subxarxa:"
+"No hi ha cap controlador OSS/ALSA alternatiu conegut per a la vostra targeta "
+"de so (%s), que actualment fa servir \"%s\""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Set password expiration and account inactivation delays"
-msgstr ""
+#
+#: ../../harddrake/sound.pm_.c:173
+msgid "Sound configuration"
+msgstr "Configuració de so"
-#: ../../standalone/logdrake:1
+#: ../../harddrake/sound.pm_.c:174
#, c-format
msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
msgstr ""
+"Aquí podeu seleccionar un controlador alternatiu (tant OSS com ALSA) per ala "
+"targeta de so (%s)"
-#: ../../Xconfig/monitor.pm:1
+#: ../../harddrake/sound.pm_.c:176
#, c-format
msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-"Els dos paràmetres més importants son la velocitat de refresc vertical, que\n"
-"és la velocitat a què es refresca tota la pantalla, i el més important, la\n"
-"velocitat de sincronització horitzontal, que és la velocitat a què es\n"
-"visualitzen les línies d'exploració.\n"
"\n"
-"És MOLT IMPORTANT que no especifiqueu un tipus de monitor amb un rang\n"
-"de sincronització superior a les possibilitats del vostre monitor, perquè\n"
-"el podríeu fer malbé.\n"
-"En cas de dubte, sigueu conservador amb aquest paràmetre."
+"\n"
+"La vostra targeta fa servir actualment el controlador %s \"%s\" (el "
+"controlador per defecte per a aquesta targeta és \"%s\")"
+
+#: ../../harddrake/sound.pm_.c:178
+msgid "Driver:"
+msgstr "Controlador:"
#
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
-msgstr "Modifica"
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+msgid "Help"
+msgstr "Ajuda"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
+msgstr "Ajuda sobre el canvi entre ALSA i OSS"
+
+#: ../../harddrake/sound.pm_.c:186
msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"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"
+"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 ""
+"L'OSS (Sistema de So Obert) va ser la primera API de so. És una API "
+"independent del sistema operatiu (disponible en molts sistemes UNIX) però és "
+"molt bàsica i limitada.\n"
+"Encara més, tots els controladors OSS reinventen la roda...\n"
"\n"
-"Les ordres \"%s\" i \"%s\" també permeten modificar els paràmetres per a un "
-"treball d'impressió concret. Simplement afegiu els paràmetres que vulgueu a "
-"la línia d'ordres, p.ex. \"%s <fitxer>\".\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Cal introduir el nom de l'ordinador, el nom d'usuari i la contrasenya!"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Insert floppy"
-msgstr "Inseriu un disquet"
+"L'ALSA (Arquitectura Avançada de So per a Linux) és una arquitectura modular "
+"que\n"
+"funciona amb una àmplia varietat de targetes ISA, USB i PCI.\n"
+"\n"
+"També proporciona una API molt més funcional que la d'OSS.\n"
+"\n"
+"Per utilitzar ALSA, es pot triar entre:\n"
+"- l'antiga API compatible d'OSS\n"
+"- la nova API d'ALSA que proporciona moltes característiques millorades però "
+"que necessita fer servir la lliberia ALSA.\n"
-#: ../../diskdrake/dav.pm:1
+#: ../../harddrake/sound.pm_.c:202
#, c-format
msgid ""
-"WebDAV is a protocol that allows you to mount a web server's directory\n"
-"locally, and treat it like a local filesystem (provided the web server is\n"
-"configured as a WebDAV server). If you would like to add WebDAV mount\n"
-"points, select \"New\"."
-msgstr ""
-"WebDAV és un protocol que permet muntar un directori d'un servidor web\n"
-"localment, i tractar-lo com si fos un sistema de fitxers local (amb el "
-"benentès\n"
-"que el servidor web està configurat com a servidor WebDAV). Si voleu afegir\n"
-"punts de muntatge WebDAV, seleccioneu \"Nou\"."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
-msgstr "nou"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable syslog reports to console 12"
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
+"L'antic controlador \"%s\" ha estat desaprovat.\n"
+"\n"
+"S'ha vist que causa problemes al nucli en descarregar-se.\n"
+"\n"
+"El nou controlador \"%s\" només s'usarà en la següent arrencada."
-#
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Voleu tornar-ho a provar?"
-
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "Auxiliar"
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+msgid "Please Wait... Applying the configuration"
+msgstr "Espereu si us plau... s'està aplicant la configuració"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected server"
-msgstr "Edita el servidor seleccionat"
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "Espereu si us plau"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Si us plau, escolliu on voleu fer la còpia de seguretat"
+#: ../../harddrake/sound.pm_.c:210
+msgid "No known driver"
+msgstr "No hi ha cap controlador conegut"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Us caldrà tornar a arrencar per tal que les modificacions de la taula de "
-"particions tinguin efecte"
+msgid "There's no known driver for your sound card (%s)"
+msgstr "No hi ha cap controlador conegut per a la vostra targeta de so (%s)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "No incloguis la memòria cau del navegador"
+#: ../../harddrake/sound.pm_.c:214
+msgid "Unkown driver"
+msgstr "Controlador desconegut"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, c-format
msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-"És impossible de comprovar el sistema de fitxers %s. Voleu reparar els "
-"errors? (Vigileu, podríeu perdre dades.)"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Si us plau, seleccioneu la disposició del vostre teclat."
-
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "Estàndard"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Si us plau, seleccioneu el tipus del vostre ratolí."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
-msgstr "Connecta..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "No s'ha pogut configurar la impressora \"%s\"!"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "not configured"
-msgstr "no configurat(da)"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "About"
-msgstr "Quant a"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "Configuració dels servidors intermediaris (proxies)"
+"El controlador \"%s\" per a la targeta de so no és a la llista\n"
+"\n"
+"Si us plau, envieu la sortida de l'ordre \"lspcidrake -v\" a\n"
+"<install arrova mandrakesoft punt com>\n"
+"amb l'assumpte: unlisted sound driver \"%s\""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Inici: sector %s\n"
+#
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+msgid "Auto-detect"
+msgstr "Detecció automàtica"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Mask"
-msgstr "Sense màscara"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+msgid "Unknown|Generic"
+msgstr "Desconegut|Genèric"
-#
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface already configured"
-msgstr "La intefície de xarxa ja està configurada"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Desconegut|CPH05X (bt878) [molts venedors]"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
-msgstr "No s'ha pogut accedir al disquet!"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Desconegut|CPH06X (bt878) [molts venedors]"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
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."
+"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 ""
+"Per a les targetes de TV més modernes, el mòdul bttv del nucli GNU/Linux "
+"detecta automàticament els paràmetres correctes.\n"
+"Si la vostra targeta no és detectada, podeu forçar el tipus de sintonitzador "
+"i de targeta aquí. Simplement seleccioneu els paràmetres necessaris per a la "
+"vostra targeta de TV"
-#
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Mail Server"
-msgstr "Servidor de correu"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "Si us plau, feu clic a una partició "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Dispositiu multifunció en HP JetDirect"
-
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
-msgstr "Tingueu un bon dia!"
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
+#: ../../harddrake/v4l.pm_.c:227
+msgid "Card model:"
+msgstr "Model de la targeta:"
#
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Upgrade %s"
-msgstr "Actualitza %s"
+#: ../../harddrake/v4l.pm_.c:228
+msgid "Tuner type:"
+msgstr "Tipus de sintonitzador:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Seleccioneu la connexió de la impressora"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
+msgstr "Nombre de memòries intermèdies de captura:"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
-msgstr "La cerca de canals de TV està en progrés..."
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "nombre de memòries intermèdies per a captures amb MMAP"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"S'ha produït un error en enviar el fitxer a través d'FTP.\n"
-" Si us plau, corregiu la configuració de l'FTP."
+#
+#: ../../harddrake/v4l.pm_.c:231
+msgid "PLL setting:"
+msgstr "Configuració del PLL:"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr "Inici de l'abast de la IP:"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
+msgstr "Permet l'ús de la ràdio:"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"El dimoni superservidor d'Internet (conegut normalment com 'inetd') inicia\n"
-"altres serveis d'Internet a mesura que es van necessitant. És el "
-"responsable\n"
-"d'iniciar molts serveis, incloent el telnet, l'ftp, l'rsh i l'rlogin. Si\n"
-"s'inhabilita l'inetd, s'inhabiliten tots els serveis de què és responsable."
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
+msgstr "habilita l'ús de la ràdio"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
-msgstr "l'alçària de la barra de progrés"
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+"GNU/Linux és un sistema multiusuari, i això vol dir que cada usuari pot "
+"tenir\n"
+"les seves preferències, els seus fitxers, etc. Podeu llegir la \"Guia de "
+"l'Usuari\"\n"
+"per aprendre més coses. A diferència del \"root\", que és l'administrador, \n"
+"als usuaris que afegiu aquí no se'ls permetrà modificar res tret dels seus\n"
+"fitxers i la seva configuració. Cal que tingueu com a mínim un usuari "
+"normal.\n"
+"Aquest compte és en el que hauríeu d'entrar per a un ús habitual. Tot i que "
+"és\n"
+"molt pràctic entrar en el sistema com a \"root\" cada dia, també pot ser "
+"molt\n"
+"perillós. La més petita errada podría significar que el sistema deixés de "
+"funcionar.\n"
+"Si cometeu una gran errada com a usuari normal, podeu perdre algunes dades, "
+"però no\n"
+"tot el sistema.\n"
+"\n"
+"Primer, heu d'introduir el vostre nom real. Per suposat, això no és "
+"necessari, ja que\n"
+"podeu introduir el que volgueu. El DrakX agafarà la primera paraula que heu "
+"entrat\n"
+"en la casella i la copiarà en el \"Nom d'usuari\". Aquest és el nom que "
+"utilitzarà\n"
+"aquest usuari per entrar en el sistema. El podeu canviar si voleu. Després "
+"cal que\n"
+"introduïu una contrasenya. Una contrasenya d'un usuari no privilegiat "
+"(habitual) \n"
+"no és tant important com la del \"root\" des del punt de vista de la "
+"seguretat, \n"
+"però no hi ha cap raó per menystenir-ho: al cap i a la fi, els vostres "
+"fitxers\n"
+"estan en joc.\n"
+"\n"
+"Si cliqueu a \"Accepta l'usuari\", després en podreu afegir tants com "
+"volgueu. Afegiu\n"
+"un usuari per tothom qui hagi de fer servir l'ordinador. Quan hagueu acabat "
+"d'afegir\n"
+"tants usuaris com volgueu, seleccioneu \"Fet\".\n"
+"\n"
+"Si feu clic al botó \"Avançat\" podreu canviar l'intèrpret d'ordres (\"shell"
+"\") \n"
+"predeterminat de l'usuari seleccionat (bash per defecte).\n"
+"\n"
+"Un cop hagueu acabat d'afegir usuaris, se us proposarà triar quin usuari "
+"entrarà\n"
+"automàticament en el sistema en arrencar l'ordinador. Si us interessa "
+"aquesta \n"
+"característica (i no us importa gaire la seguretat local), trieu l'usuari i "
+"el\n"
+"gestor de finestres desitjat i feu clic a \"Sí\".\n"
+"Si no us interessa aquesta característica, pitgeu \"No\"."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:48
msgid ""
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
"\n"
-"- Desa-ho a través de %s en l'ordinador %s\n"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "Argentina"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Domain Name Server"
-msgstr "Servidor de Noms de Domini (DNS)"
-
-#
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Level:"
-msgstr "Nivell de seguretat:"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr "Els punts de muntatge han de començar amb una /"
-
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Escolliu el vostre dispositiu CD/DVD"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "CUPS server"
-msgstr "Servidor CUPS"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Servidor de correu Postfix"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "Surt sense desar"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "Iemen"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
-msgstr "Aquest producte es troba disponible al lloc web de MandrakeStore"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Hi ha moltes coses per escollir de (%s).\n"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
-msgstr ""
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred:\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"
-"%s\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"
-"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"
+" * \"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"
-"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."
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
msgstr ""
+"Aquestes són les particions de Linux existents que s'han detectat a la\n"
+"vostra unitat de disc dur. Podeu conservar les eleccions fetes per "
+"l'auxiliar, \n"
+"són adequades per a un ús normal. Si feu algun canvi, com a mínim heu de "
+"definir\n"
+"una partició arrel (\"/\"). No escolliu una partició massa petita, o no "
+"podreu\n"
+"instal·lar prou programari. Si voleu emmagatzemar les dades en una altra "
+"partició, també haureu de seleccionar una \"/home\" (només si teniu més "
+"d'una partició de\n"
+"Linux disponible).\n"
+"\n"
+"Per a la vostra informació, cada partició està identificada d'aquesta "
+"manera: \"Nom\", \"Capacitat\".\n"
+"\n"
+"\"Nom\" es compon de: \"tipus d'unitat de disc\", \"número d'unitat de disc"
+"\",\n"
+"\"número de la partició\" (per exemple, \"hda1\").\n"
+"\n"
+"El \"Tipus d'unitat de disc\" és \"hd\" si la vostre unitat de disc és IDE i "
+"\"sd\" si és SCSI.\n"
+"\n"
+"El \"Número de la unitat de disc\" és sempre una lletra després d'\"hd\" o "
+"\"sd\".\n"
+"Amb unitats de disc IDE:\n"
+"\n"
+" * \"a\" significa \"unitat de disc mestra en el controlador IDE primari\",\n"
+"\n"
+" * \"b\" significa \"unitat de disc esclava en el controlador IDE primari"
+"\",\n"
+"\n"
+" * \"c\" significa \"unitat de disc mestra en el controlador IDE secundari"
+"\",\n"
+"\n"
+" * \"d\" significa \"unitat de disc esclava en el controlador IDE secundari"
+"\".\n"
+"\n"
+"Amb les unitats de disc SCSI, una \"a\" significa \"unitat primària de disc"
+"\",\n"
+"una \"b\" significa \"unitat secundària de disc\", etc."
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "Detecció del disc dur"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../help.pm_.c:79
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
-"No heu seleccionat cap grup de paquets.\n"
-"Escolliu la instal·lació mínima que voleu:"
+"La instal·lació del Mandrake Linux està repartida en diversos CD-ROM. El "
+"DrakX\n"
+"sap si un paquet seleccionat es troba a un altre CD-ROM i expulsarà el CD "
+"actual\n"
+"i us demanarà que n'inseriu un altre a mesura que ho necessiti."
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../help.pm_.c:84
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 ""
-
-#
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "Si us plau introduïu l'URL del servidor WebDAV"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "Tadjikistan"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "Accepta"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "Descripció"
-
-#
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter summary text."
-msgstr "Si us plau, introduïu el resum."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "S'ha produït un error en obrir %s per escriure: %s"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Tipus de ratolí: %s\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
+"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"
+"you are not supposed to know them all by heart.\n"
+"\n"
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
+"\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
+"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
+"\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
+"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
+"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
+"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
+"\n"
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
-"La vostra targeta pot tenir acceleració 3D de maquinari amb l'Xfree %s."
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "Escolliu un monitor"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "No es permet una etiqueta buida"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
-msgstr "Maltès (Regne Unit)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "No es pot afegir cap més partició"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "Mida en MB: "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "Impressora remota"
-
-#
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
-msgstr "Si us plau, trieu un idioma per utilitzar."
+"Ha arribat el moment d'especificar quins programes voleu instal·lar en el\n"
+"sistema. Hi ha milers de paquets en el Mandrake Linux, i no se suposa que\n"
+"els conegueu tots de memòria.\n"
+"\n"
+"Si esteu fent una instal·lació estàndar des del CD-ROM, primer se us "
+"demanarà\n"
+"que especifiqueu els CD que teniu (només en mode Expert). Comproveu les "
+"etiquetes\n"
+"dels CD i marqueu els quadres corresponents als CD que teniu per fer la\n"
+"instal·lació. Cliqueu \"D'acord\" quan vulgueu continuar.\n"
+"\n"
+"Els paquets estan ordenats en grups que corresponen a un ús particular de "
+"la\n"
+"màquina. Els grups també estan ordenats en quatre seccions:\n"
+"\n"
+" * \"Estació de treball\": si voleu utilitzar l'ordinador com a estació de \n"
+"treball, seleccioneu un o més grups dels corresponents;\n"
+"\n"
+" * \"Desenvolupament\": si la vostra màquina s'ha d'utilitzar per "
+"programar,\n"
+"escolliu el(s) grup(s) desitjat(s);\n"
+"\n"
+" * \"Servidor\": si l'ordinador s'ha d'utilitzar com a servidor, serà "
+"possible\n"
+"de seleccionar els serveis més habituals que voleu instal·lar en la vostra\n"
+"màquina;\n"
+"\n"
+" * \"Entorn Gràfic\": finalment, aquí és on escollireu quin és el vostre\n"
+"entorn gràfic preferit. Heu de seleccionar com a mínim un entorn gràfic si\n"
+"voleu tenir una estació de treball gràfica.\n"
+"\n"
+"Moure el cursor per sobre d'un nom de grup farà que es mostri una breu "
+"explicació\n"
+"d'aquest grup. Si desmarqueu tots els grups quan estigueu fent una "
+"instal·lació\n"
+"des de zero (en contraposició a una actualització), se us presentarà un "
+"diàleg \n"
+"proposant-vos diferents opcions per a una instal·lació mínima:\n"
+"\n"
+" * \"Amb X\": instal·lar els mínims paquets necessaris per tenir un entorn "
+"gràfic\n"
+"funcional;\n"
+"\n"
+" * \"Amb Documentació Bàsica\": instal·lar el sistema base i les utilitats "
+"bàsiques\n"
+"amb la seva documentació. Aquesta instal·lació és adequada per configurar un "
+"sistema\n"
+"servidor;\n"
+"\n"
+" * \"Instal·lació Realment Mínima\": s'instal·larà el mínim necessari per "
+"tenir un\n"
+"sistema Linux operatiu, només amb línia d'ordres. Aquesta instal·lació "
+"ocupa\n"
+"uns 65MB.\n"
+"\n"
+"Podeu marcar la casella de \"Selecció individual de paquets\", que és força "
+"útil si\n"
+"coneixeu els diversos paquets que s'ofereixen per instal·lar o si voleu "
+"tenir\n"
+"control total sobre el que s'instal·larà.\n"
+"\n"
+"Si heu començat la instal·lació en el mode \"Actualització\", podeu "
+"desmarcar \n"
+"tots els grups si voleu evitar que s'instal·li cap paquet nou. Això és "
+"útil \n"
+"per reparar o actualitzar un sistema existent."
-#: ../../network/network.pm:1
-#, c-format
+#: ../../help.pm_.c:135
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."
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
+msgstr ""
+"Finalment, depenent de si heu seleccionat poder triar els paquets "
+"individuals\n"
+"o no, se us presentarà un arbre amb tots els paquets classificats per grups "
+"i\n"
+"subgrups. Mentre navegueu per l'arbre, podeu seleccionar grups complets,\n"
+"subgrups o paquets individuals.\n"
+"\n"
+"Cada cop que seleccioneu un paquet de l'arbre, apareix una descripció a la\n"
+"dreta. Quan hagueu acabat la selecció de paquets, cliqueu a \"Instal·la\",\n"
+"que iniciarà el procés d'instal·lació. Depenent de la velocitat del vostre \n"
+"maquinari i del número de paquets que necessitin ser instal·lats, el procés\n"
+"pot trigar una bona estona en acabar. A la pantalla es mostrarà una "
+"estimació\n"
+"del temps que durarà la instal·lació de tots els paquets, per tal ajudar-"
+"vos\n"
+"a decidir si teniu prou temps per gaudir d'una tassa de cafè.\n"
+"\n"
+"Si heu seleccionat un paquet de servidor, intencionadament o perquè formava\n"
+"part d'un grup, se us demanarà que confirmeu si realment voleu instal·lar\n"
+"aquests servidors. Sota Mandrake Linux, qualsevol servidor instal·lat "
+"s'inicia\n"
+"per defecte quan el sistema arrenca. Tot i que fossin segurs i no "
+"tinguessin\n"
+"cap problema quan es va fer la distribució, podria ser que es descobrissin\n"
+"forats de seguretat després que aquesta versió de Mandrake Linux es "
+"completés.\n"
+"Si no sabeu què se suposa que fa un servei en particular o per què s'està\n"
+"instal·lant, aleshores feu clic a \"No\". Si pitgeu \"Sí\" s'instal·laran\n"
+"els serveis llistats i s'iniciaran automàticament per defecte.\n"
+"\n"
+"L'opció de \"Dependències automàtiques\" només deshabilita el diàleg "
+"d'advertència\n"
+"que apareix quan l'instal·lador selecciona automàticament un paquet. Això\n"
+"passa perquè s'ha determinat que es necessita safisfer una dependència d'un\n"
+"altre paquet per tal que la instal·lació es completi amb èxit.\n"
+"\n"
+"La icona petita d'un disquet al final de la llista permet carregar una "
+"llista\n"
+"de paquets escollits en una instal·lació anterior. Fent clic en aquesta "
+"icona\n"
+"el sistema us demanarà que inseriu un disquet creat prèviament al final "
+"d'una\n"
+"altra instal·lació. Mireu el segon suggeriment de l'últim pas per saber com "
+"crear\n"
+"aquest tipus de disquet."
+
+#: ../../help.pm_.c:171
+msgid ""
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-"ATENCIÓ: Aquest dispositiu ja es va configurar per connectar-se a Internet.\n"
-"Només cal que accepteu per mantenir-lo configurat.\n"
-"Si modifiqueu els camps inferiors, sobreescriureu aquesta configuració."
-
-#
-#: ../../any.pm:1
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
+"Ara podeu configurar la vostra connexió de xarxa/Internet. Si voleu\n"
+"connectar l'ordinador a Internet o a una xarxa local, feu clic a \"D'acord"
+"\".\n"
+"S'iniciarà la detecció automàtica de dispositius de xarxa i mòdems. Si la\n"
+"detecció fallés, desmarqueu la casella \"Usa la detecció automàtica\" la \n"
+"pròxima vegada. Podeu triar també no configurar la xarxa, o fer-ho més "
+"tard;\n"
+"en aquest cas, simplement feu clic al botó \"Cancel·la\".\n"
+"\n"
+"Les connexions disponibles són: mòdem tradicional, mòdem XDSI, connexió "
+"ADSL,\n"
+"mòdem de cable, i finalment una connexió de xarxa local (Ethernet).\n"
+"\n"
+"No detallarem aquí cada configuració. Simplement assegureu-vos que teniu\n"
+"tots els paràmetres del vostre proveïdor d'accés a Internet o de "
+"l'administrador\n"
+"del sistema.\n"
+"\n"
+"Podeu consultar el capítol de la \"Guia de l'Usuari\" dedicat a les "
+"connexions\n"
+"a Internet per obtenir detalls sobre la configuració, o simplement esperar "
+"fins\n"
+"que el vostre sistema estigui instal·lat i usar el programa descrit per "
+"configurar\n"
+"la vostra connexió.\n"
+"\n"
+"Si voleu configurar la xarxa més tard després de la instal·lació, o si ja \n"
+"heu acabat de configurar la connexió de xarxa, feu clic a \"Cancel·la\"."
+
+#: ../../help.pm_.c:193
+msgid ""
+"You may now choose which services you wish to start at boot time.\n"
+"\n"
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
+"\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
-"Puc configurar el vostre ordinador de manera que entri automàticament amb un "
-"nom d'usuari."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Floppy format"
-msgstr "Format del disquet"
-
-#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Generic Printers"
-msgstr "Impressores genèriques"
+"Ara podeu triar quins serveis voleu que s'iniciïn durant l'arrencada.\n"
+"\n"
+"Aquí es llisten tots els serveis disponibles amb la instal·lació actual.\n"
+"Reviseu-los amb cura i desmarqueu aquells que no seran necessaris sempre\n"
+"durant l'arrencada.\n"
+"\n"
+"Podeu obtenir una explicació breu sobre un servei si el seleccioneu. Si no\n"
+"esteu segur de la utilitat d'un servei, el més segur és deixar el "
+"comportament\n"
+"per defecte.\n"
+"\n"
+"Aneu especialment amb cura en aquest pas si penseu utilitzar l'ordinador "
+"com\n"
+"a servidor: segurament no us interessarà iniciar serveis que no necessiteu.\n"
+"Recordeu que hi ha diversos serveis que poden ser perillosos si s'habiliten\n"
+"en un servidor. En general, seleccioneu només els serveis que realment "
+"necessiteu."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:210
msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-"Si us plau, escolliu la impressora a què s'han d'enviar les tasques "
-"d'impressió o introduïu un nom de dispositiu/nom de fitxer en la línia "
-"d'entrada"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
msgstr ""
-"Els escàners d'aquesta màquina estan disponibles per a altres ordinadors"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of the root partition"
-msgstr "Primer sector de la partició de root"
-
-#
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Alternative drivers"
-msgstr "Controladors alternatius"
+"El GNU/Linux gestiona el temps en GMT (Greenwich Mean Time) i el tradueix a\n"
+"temps local d'acord amb el fus horari seleccionat. De tota manera és "
+"possible\n"
+"desactivar-ho desmarcant \"Rellotge del maquinari en GMT\" de manera que el\n"
+"rellotge de la màquina és el mateix que el rellotge del sistema. Això és\n"
+"convenient quan la màquina també té instal·lat un altre sistema operatiu "
+"com \n"
+"Windows.\n"
+"\n"
+"L'opció de \"Sincronització automàtica de l'hora\" regularà automàticament\n"
+"l'hora connectant-se a un servidor horari remot d'Internet. En la llista\n"
+"que es presenta, escolliu un servidor ubicat a prop vostre. Necessiteu una\n"
+"connexió a Internet operativa perquè aquesta característica funcioni. El "
+"que\n"
+"farà realment és instal·lar en la vostra màquina un servidor horari, que "
+"poden\n"
+"usar opcionalment els altres ordinadors de la xarxa local."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:224
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.\n"
+"\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
+msgstr ""
+"L'X (per Sistema de finestres X) és el cor de la interfície gràfica del GNU/"
+"Linux\n"
+"i sobre ell funcionen tots els entorns gràfics (KDE, GNOME, AfterStep, "
+"WindowMaker,\n"
+"etc.) empaquetats amb el Mandrake Linux.\n"
"\n"
-"Please check all options that you need.\n"
-msgstr ""
+"Se us mostrarà una llista amb les resolucions de pantalla i les "
+"profunditats\n"
+"de color que permet el vostre maquinari. Trieu aquella que millor satisfaci "
+"les\n"
+"vostres necessitats (tot i que podreu canviar-la després de la "
+"instal·lació).\n"
+"Quan la mostra que apareix al monitor us complagui, feu clic a \"D'acord\".\n"
+"Aleshores apareixerà una finestra i us preguntarà si la podeu veure.\n"
+"\n"
+"Si esteu fent una instal·lació \"Experta\", entrareu en l'auxiliar de\n"
+"configuració de l'X. Mireu la secció del manual corresponent per a més\n"
+"informació sobre l'auxiliar.\n"
+"\n"
+"Si podeu veure el missatge durant el test, i responeu \"Sí\", aleshores el "
+"DrakX\n"
+"seguirà amb el següent pas. Si no podeu veure el missatge, voldrà dir que "
+"la\n"
+"configuració és errònia i el test finalitzarà automàticament passats 10 "
+"segons,\n"
+"i es restaurarà la pantalla. Consulteu la secció de configuració del vídeo "
+"de\n"
+"la guia d'usuari per obtenir més informació sobre com configurar la pantalla."
+
+#: ../../help.pm_.c:246
+msgid ""
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
+msgstr ""
+"Finalment, se us demanarà si voleu veure una interfície gràfica en "
+"arrencar.\n"
+"Noteu que aquesta pregunta se us farà encara que no hàgiu fet el test de la\n"
+"configuració. Òbviament, respondreu \"No\" si l'ordinador ha de ser un\n"
+"servidor, o si no heu pogut completar la configuració de la pantalla amb "
+"èxit."
+
+#: ../../help.pm_.c:253
+msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
+msgstr ""
+"El CD-ROM del Mandrake Linux té un mode de rescat. Hi podeu accedir "
+"arrencant\n"
+"des del CD-ROM, prement la tecla F1 en arrencar i teclejant \"rescue\"\n"
+"a la línia d'ordres. Però en cas que l'ordinador no pugui arrencar des del\n"
+"CD-ROM, haureu de tornar a aquest pas per obtenir ajuda en, com a mínim,\n"
+"dues situacions:\n"
+"\n"
+" * quan s'instal·la el carregador de l'arrencada, el DrakX reescriu el "
+"sector\n"
+"d'arrencada (MBR) del disc dur principal (si no és que utilitzeu un altre "
+"gestor\n"
+"de l'arrencada), amb l'objectiu de permetre-us arrencar el Windows o el GNU/"
+"Linux\n"
+"(assumint que teniu Windows en l'ordinador). Si heu de reinstal·lar "
+"Windows,\n"
+"el procés d'instal·lació de Microsoft reescriurà el sector d'arrencada, i no "
+"sereu\n"
+"capaç d'arrencar el GNU/Linux!\n"
+"\n"
+" * si apareix un problema i no podeu arrencar el GNU/Linux des del disc "
+"dur,\n"
+"aquest disquet serà l'única manera d'arrencar el GNU/Linux. El disquet "
+"conté\n"
+"un conjunt d'eines per restaurar el sistema, que ha fallat degut a "
+"problemes\n"
+"d'alimentació, un error desafortunat en teclejar alguna cosa, un error en "
+"teclejar\n"
+"una contrasenya o qualsevol altra raó.\n"
+"\n"
+"Si feu clic a \"Sí\", el sistema us demanarà que introduïu un disquet a la\n"
+"unitat de disquets. El disquet que introduïu ha d'estar buit o contenir "
+"dades\n"
+"que no necessiteu. No cal que el formateu perquè el DrakX reescriurà tot el "
+"disc."
+
+#: ../../help.pm_.c:277
+msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-"Si us plau, marqueu totes les opcions que us calguin.\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
-msgstr "Cap Verd"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "si aquesta CPU té o no l'error Coma Cyrix 6x86"
-
-#
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr ""
-"S'està carregant la configuració de la impressora... Si us plau, espereu"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
+"\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
msgstr ""
-"els primers pentiums eren plens d'errors i es penjaven en decodificar el "
-"codi de byte F00F "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr "Guam"
+"Ara és quan heu de decidir en quin lloc del vostre disc dur voleu "
+"instal·lar\n"
+"el sistema operatiu Mandrake Linux. Si el disc és buit, o si un sistema\n"
+"operatiu existent n'utilitza tot l'espai disponible, us caldrà particionar-"
+"lo.\n"
+"Bàsicament, particionar un disc dur consisteix a dividir-lo de manera\n"
+"lògica per crear espai on instal·lar el nou sistema Mandrake Linux.\n"
+"\n"
+"Atès que els efectes d'aquest procés solen ser irreversibles, el "
+"particionament\n"
+"us pot espantar si sou un usuari sense experiència. Aquest auxiliar "
+"simplifica\n"
+"aquest procés. Abans de començar però, consulteu el manual i preneu-vos el "
+"temps\n"
+"que calgui.\n"
+"\n"
+"Si esteu executant la instal·lació en mode expert, entrareu al DiskDrake,\n"
+"l'eina de particionament de Mandrake Linux, que us permetrà modificar les\n"
+"particions. Llegiu la secció sobre el DiskDrake de la \"Guia d'Iniciació\".\n"
+"Des de la interfície d'instal·lació, podeu usar els auxiliars com s'explica "
+"aquí\n"
+"prement el botó \"Auxiliar\" del quadre de diàleg.\n"
+"\n"
+"Necessiteu com a mínim dues particions: una per al sistema operatiu en\n"
+"si i l'altra per a la memòria virtual (anomenada també \"Intercanvi\").\n"
+"\n"
+"Si les particions ja s'han definit (en una instal·lació anterior o "
+"mitjançant\n"
+"una altra eina de particionament), només caldrà que seleccioneu les que "
+"voleu\n"
+"utilitzar per instal·lar el sistema Linux.\n"
+"\n"
+"Si les particions encara no s'han definit, les heu de crear mitjançant\n"
+"l'auxiliar. Segons la configuració del vostre disc dur, hi ha diverses\n"
+"solucions possibles:\n"
+"\n"
+" * \"Usa l'espai lliure\": aquesta opció particionarà automàticament les\n"
+"unitats buides. No se us preguntarà res més.\n"
+"\n"
+" * \"Usa una partició existent\": l'auxiliar ha detectat al vostre disc\n"
+"dur una o més particions de Linux existents. Si voleu conservar-les,\n"
+"escolliu aquesta opció. Se us demanarà que trieu els punts de muntatge\n"
+"associats a cadascuna de les particions. Els punts de muntatge bàsics \n"
+"són seleccionats per defecte, i en general els hauríeu de mantenir.\n"
+"\n"
+" * \"Usa l'espai lliure de la partició de Windows\": si teniu el Microsoft\n"
+"Windows instal·lat al disc dur i n'ocupa tot l'espai diponible, caldrà \n"
+"crear-hi espai lliure per a les dades del Linux. Per fer-ho, podeu suprimir "
+"la\n"
+"partició i les dades del Windows (consulteu les opcions \"Esborrar "
+"completament\n"
+"el disc\" o \"Mode expert\") o canviar la mida de la partició del Windows.\n"
+"Aquest canvi de mida es pot dur a terme sense cap pèrdua de dades, tenint "
+"en\n"
+"compte que la partició de Windows s'ha de defragmentar prèviament. Aquesta\n"
+"opció és la més recomanable si voleu utilitzar tant el Mandrake Linux com "
+"el\n"
+"Microsoft Windows al mateix ordinador.\n"
+"\n"
+" Abans de decidir-vos per aquesta opció, tingueu en compte que la mida\n"
+"de la partició del Microsoft Windows serà més petita que ara. Això "
+"significa\n"
+"que tindreu menys espai lliure per emmagatzemar-hi dades o instal·lar-hi "
+"més\n"
+"programari.\n"
+"\n"
+" * \"Esborra completament el disc\": si voleu suprimir totes les dades i\n"
+"particions que teniu al disc dur i substituir-les pel sistema Mandrake "
+"Linux,\n"
+"podeu escollir aquesta opció. Aneu amb compte, però, perquè, un cop la "
+"confirmeu,\n"
+"no podreu fer-vos enrere.\n"
+"\n"
+" Si trieu aquesta opció es perdran totes les dades del disc.\n"
+"\n"
+" * \"Esborra el Windows\": aquesta opció esborrarà tot el contingut del disc "
+"i\n"
+"començarà de nou, particionant des de zero. Es perdran totes les dades del "
+"disc.\n"
+"\n"
+" Si trieu aquesta opció es perdran totes les dades del disc.\n"
+"\n"
+" * \"Mode expert\": si voleu particionar el disc dur manualment, podeu "
+"triar\n"
+"aquesta opció. Aneu amb compte: és una opció molt potent però també "
+"perillosa.\n"
+"Podeu perdre fàcilment totes les dades. Per tant, no trieu aquesta opció "
+"tret\n"
+"que sapigueu exactament què esteu fent. Per saber com usar la utilitat "
+"DiskDrake\n"
+"que s'executarà en aquest mode, consulteu la secció \"Gestió de les "
+"particions\"\n"
+"de la \"Guia d'Iniciació\"."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:347
msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-"Escolliu el port al qual està connectada la impressora o escriviu el nom de "
-"dispositiu/nom de fitxer en la línia d'entrada"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/Opcions/Prova"
+"Ja ho teniu. S'ha completat la instal·lació i el vostre sistema GNU/Linux "
+"està\n"
+"preparat per fer-lo servir. Simplement premeu \"D'acord\" per reiniciar el "
+"sistema.\n"
+"Podeu iniciar GNU/Linux o Windows, el que volgueu (si teniu doble "
+"arrencada), així\n"
+"que l'ordinador s'hagi reiniciat.\n"
+"\n"
+"El botó \"Avançat\" (només en mode expert) mostra dos botons més:\n"
+"\n"
+" * \"Genera un disquet d'instal·lació automàtica\": per crear un disquet \n"
+"d'instal·lació que permetrà fer una instal·lació completa sense l'ajuda "
+"d'un\n"
+"operador, semblant a la instal·lació que acabeu de configurar.\n"
+"\n"
+" Cal remarcar que es poden triar dues opcions diferents:\n"
+"\n"
+" * \"Repetició\". Aquesta és una instal·lació parcialment automatitzada "
+"ja que\n"
+"el pas de particionar (i només aquest) es manté interactiu;\n"
+"\n"
+" * \"Automatitzada\". Instal·lació completament automatitzada: el disc "
+"dur es\n"
+"reescriu completament i totes les dades es perden.\n"
+"\n"
+" Aquesta característica és força útil quan es fan instal·lacions a un bon "
+"grapat\n"
+"d'ordinadors similars. Mireu la secció d'instal·lació automàtica en la "
+"nostra web.\n"
+"\n"
+" * \"Desa la selecció de paquets\"(*): desa la selecció de paquets tal com\n"
+"s'han seleccionat abans en aquesta instal·lació. Aleshores, quan feu una "
+"altra\n"
+"instal·lació, inseriu el disquet a la unitat lectora i executeu la "
+"instal·lació.\n"
+"Aneu a la pantalla d'ajuda prement la tecla F1, i teclegeu 'linux defcfg="
+"\"floppy\"'.\n"
+"\n"
+"(*) Necessiteu un disquet formatat en FAT (per crear-ne un sota GNU/Linux, "
+"escriviu\n"
+"\"mformat a:\")"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:378
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."
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-"Aquest nivell s'ha d'utilitzar amb cura. Fa el vostre sistema molt més "
-"fàcil\n"
-"d'utilitzar, però també molt sensible: no s'ha d'utilitzar en un ordinador\n"
-"connectat a d'altres o a Internet. No cal contrasenya per accedir-hi."
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mounting partition %s"
-msgstr "S'està muntant la partició %s"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "Nom d'usuari"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Quina partició voleu utilitzar per al Linux4Win?"
-
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "due to missing %s"
-msgstr "El kdesu no hi és"
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Test pages"
-msgstr "Pàgines de prova"
-
-#
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Logical volume name "
-msgstr "Nom del volum lògic"
+"Per poder-les utilitzar, cal formatar les particions que s'acaben de "
+"definir\n"
+"(la formatació consisteix a crear-hi un sistema de fitxers).\n"
+"\n"
+"En aquest punt, potser voldreu tornar a formatar algunes de les particions\n"
+"existents per eliminar les dades que contenen. Si és així, seleccioneu "
+"també\n"
+"aquestes particions.\n"
+"\n"
+"Tingueu en compte que no cal tornar a formatar totes les particions que ja\n"
+"existien; heu de tornar a formatar les particions que contenen el sistema\n"
+"operatiu (com ara \"/\", \"/usr\" o \"/var\"), però no les que contenen "
+"dades\n"
+"que voleu conservar (habitualment, \"/home\").\n"
+"\n"
+"Aneu amb compte en seleccionar les particions; després de la formatació, "
+"totes\n"
+"les dades s'hauran suprimit i no en podreu recuperar cap.\n"
+"\n"
+"Feu clic a \"D'acord\" quan estigueu a punt per formatar les particions.\n"
+"\n"
+"Feu clic a \"Cancel·la\" si voleu seleccionar una altra partició per "
+"instal·lar\n"
+"el nou sistema Mandrake Linux.\n"
+"\n"
+"Feu clic a \"Avançat\" si voleu que es busquin sectors defectuosos del disc "
+"en\n"
+"alguna de les particions."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:404
msgid ""
-"List of data to restore:\n"
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
"\n"
+"Please be patient."
msgstr ""
-"Llista de dades per restaurar:\n"
+"El nou sistema operatiu Mandrake Linux s'està instal·lant. Segons la "
+"quantitat\n"
+"de paquets que heu triat instal·lar i la velocitat de la vostra màquina, \n"
+"aquesta operació pot trigar des d'uns pocs minuts fins a un temps "
+"considerable.\n"
"\n"
+"Si us plau, tingueu paciència."
-#: ../../fs.pm:1
-#, c-format
-msgid "Checking %s"
-msgstr "S'està comprovant %s"
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "Opcions de la impressora per a TCP/Socket"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Targeta de memòria (DMA)"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "S'està desconnectant d'Internet "
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "França"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
-msgstr "navega"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
-msgstr "S'està comprovant el programari instal·lat..."
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Falta el nom de la impressora remota!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Voleu habilitar la impressió a les impressores de la xarxa local?\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "Turquia"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel Speedtouch USB"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Number of buttons"
-msgstr "Nombre de botons"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamita \"fila numèrica\" QWERTY"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Module"
-msgstr "Mòdul"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:412
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"A més, les cues que no han estat creades amb aquest programa o amb "
-"\"foomatic-configure\" no es poden transferir."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
-msgstr "Maquinari"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Tecles de Control i d'Alternativa simultàniament"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "Estats Units"
-
-#
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "User umask"
-msgstr "Umask d'usuari"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "SO per defecte?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "Suís (disposició alemanya)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Configura tots els capçals independentment"
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
+"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
+msgstr ""
+"Ara esteu instal·lant el Mandrake Linux, però és probable que alguns "
+"paquets\n"
+"hagin estat actualitzats desde la data de llançament. Alguns errors poden "
+"haver\n"
+"estat resolts, i altres problemes de seguretat poden estar ja corregits. "
+"Per\n"
+"beneficiar-vos d'aquestes actualitzacions, us proposem de baixar-les "
+"d'Internet.\n"
+"Trieu \"Sí\" si teniu una connexió a Internet operativa, o \"No\" si voleu\n"
+"instal·lar-les més tard.\n"
+"\n"
+"Si trieu \"Sí\" apareixerà una llista de llocs des d'on podeu baixar-vos "
+"les\n"
+"actualitzacions. Escolliu la ubicació més propera. Aleshores, apareixerà "
+"un \n"
+"arbre de selecció de paquets: comproveu la selecció i premeu \"Instal·la\" "
+"per\n"
+"baixar i instal·lar els paquets seleccionats, o \"Cancel·la\" per abandonar."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:425
msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
-msgstr ""
-"Si us plau, escolliu la impressora que voleu configurar. La configuració de "
-"la impressora es farà automàticament. Si la vostra impressora no s'ha "
-"detectat correctament o si preferiu personalitzar-ne la configuració, "
-"activeu \"Configuració manual\"."
-
-#
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "Servidor NTP"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Sulogin(8) in single user level"
-msgstr "Sulogin(8) en nivell monousuari"
-
-#
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Load/Save on floppy"
-msgstr "Carrega/Desa al disquet"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
msgstr ""
-"Aquest tema encara no té cap pantalla de presentació de l'arrencada en %s!"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "bonic"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Se sortirà en %d segons"
+"Abans de continuar, hauríeu de llegir amb deteniment les clàusules de la \n"
+"llicència. Aquesta cobreix la totalitat de la distribució Mandrake Linux.\n"
+"Si no esteu d'acord amb tots els termes de la llicència, feu clic al botó\n"
+"\"Refusa\" i la instal·lació terminarà immediatament. Per continuar amb la\n"
+"instal·lació, feu clic al botó \"Accepta\"."
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
+#: ../../help.pm_.c:432
+msgid ""
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
msgstr ""
-"Si us plau, seleccioneu el port sèrie al qual teniu connectat el mòdem."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Property"
-msgstr "Propietat"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr "Configuració de la LAN"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "Ghana"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
-msgstr "El camí o el mòdul són necessaris"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Advanced Options"
-msgstr "Opcions avançades"
-
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Configuration"
-msgstr "Consulta la configuració"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
-msgstr "Error Coma"
+"Ara és el moment de triar el nivell de seguretat desitjat per a la màquina.\n"
+"Com a norma general, com més s'exposa un ordinador i com més vitals són les\n"
+"dades que s'hi emmagatzemen, més alt ha de ser el nivell de seguretat.\n"
+"Tanmateix, un nivell alt de seguretat sovint comporta una disminució de la\n"
+"facilitat d'ús. Consulteu el capítol \"msec\" del \"Manual de Referència\"\n"
+"per obtenir més informació sobre el significat dels nivells de seguretat.\n"
+"\n"
+"Si no sabeu quin escollir, deixeu l'opció per defecte."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:442
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"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -5374,2174 +3749,1553 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
"Ara és quan heu de decidir quina(es) partició(ns) voleu utilitzar per\n"
-"instal•lar el sistema Mandrake Linux. Si ja s'han definit les particions\n"
-"(en una instal•lació anterior de GNU/Linux o mitjançant una altra eina de\n"
+"instal·lar el sistema Mandrake Linux. Si ja s'han definit les particions\n"
+"(en una instal·lació anterior de GNU/Linux o mitjançant una altra eina de\n"
"particionament), podeu utilitzar les particions existents. En cas contrari,\n"
"s'han de definir particions al disc dur.\n"
"\n"
"Per crear particions, primer heu de seleccionar un disc dur. Podeu "
"seleccionar\n"
-"el disc que s'ha de particionar fent clic a ``hda'' per a la primera unitat\n"
-"IDE, ``hdb'' per a la segona, ``sda'' per a la primera unitat SCSI, etc.\n"
+"el disc que s'ha de particionar fent clic a \"hda\" per a la primera unitat\n"
+"IDE, \"hdb\" per a la segona o \"sda\" per a la primera unitat SCSI, etc.\n"
"\n"
"Per particionar el disc dur seleccionat, podeu utilitzar aquestes opcions:\n"
"\n"
-" * \"%s\": aquesta opció suprimeix totes les particions que hi ha al\n"
-"disc dur seleccionat.\n"
+" * \"Buida-ho tot\": aquesta opció suprimeix totes les particions que hi "
+"ha\n"
+"al disc dur seleccionat.\n"
"\n"
-" * \"%s\": aquesta opció us permet crear automàticament les particions\n"
-"ext3 i d'intercanvi en l'espai lliure del disc dur.\n"
+" * \"Assignació automàtica\": aquesta opció us permet crear automàticament "
+"les\n"
+"particions \"Ext2\" i Intercanvi en l'espai lliure del disc dur.\n"
"\n"
-"\"%s\": dóna accés a funcions addicionals:\n"
+"\"Més\": dóna accés a funcions addicionals:\n"
"\n"
-" * \"%s\": desa la taula de particions en un disquet. És útil per a una\n"
-"recuperació posterior de la taula de particions si fos necessari. És molt\n"
-"recomanable que efectueu aquesta operació.\n"
+" * \"Desa la taula de particions\": desa la taula de particions en un "
+"disquet.\n"
+"És útil per a una posterior recuperació de la taula de particions si fos "
+"necessari.\n"
+"Es recomana que efectueu aquesta operació.\n"
"\n"
-" * \"%s\": permet restaurar d'un disquet una taula de particions que hi\n"
-"hagueu desat prèviament.\n"
+" * \"Restaura la taula de la particions\": permet restaurar una taula de "
+"particions\n"
+"que hagueu desat prèviament en un disquet.\n"
"\n"
-" * \"%s\": si la taula de particions està malmesa, podeu provar de\n"
-"recuperar-la utilitzant aquesta opció. Aneu amb compte i recordeu que no\n"
-"sempre funciona.\n"
+" * \"Recupera la taula de particions\": si la taula de particions està "
+"malmesa, podeu\n"
+"provar de recuperar-la utilitzant aquesta opció. Tingueu cura i recordeu que "
+"pot fallar.\n"
"\n"
-" * \"%s\": descarta tots els canvis fets i torna a carregar la taula\n"
-"de particions original.\n"
+" * \"Recarrega la taula de particions\": descarta tots els canvis fets i "
+"torna a \n"
+"carregar la taula de particions inicial.\n"
"\n"
-" * \"%s\": si desseleccioneu aquesta opció fareu que els usuaris hagin\n"
-"de muntar i desmuntar manualment les unitats de suports extraïbles, com ara\n"
-"els disquets i els CD-ROM.\n"
+" * \"Muntatge automàtic de suports extraïbles\": si desseleccioneu "
+"aquesta opció fareu\n"
+"que els usuaris hagin de muntar i desmuntar les unitats de suports "
+"extraïbles com els \n"
+"disquets i els CD-ROM.\n"
"\n"
-" * \"%s\": utilitzeu aquesta opció si voleu utilitzar un auxiliar per\n"
-"particionar el vostre disc dur. Es recomana que l'utilitzeu si no teniu\n"
-"sòlids coneixements sobre particionament.\n"
+" * \"Auxiliar\": utilitzeu aquesta opció si voleu usar un auxiliar per "
+"particionar el \n"
+"vostre disc dur. Es recomana que l'utilitzeu si no teniu un bon coneixement "
+"sobre el\n"
+"particionament.\n"
"\n"
-" * \"%s\": utilitzeu aquesta opció per cancel•lar els canvis.\n"
+" * \"Desfés\": utilitzeu aquesta opció per cancel·lar els canvis.\n"
"\n"
-" * \"%s\": permet accions addicionals en les particions (tipus,\n"
-"opcions, format) i dóna més informació sobre el disc dur.\n"
+" * \"Canvia entre mode normal/expert\": permet accions addicionals en les "
+"particions\n"
+"(tipus, opcions, format) i dóna més informació.\n"
"\n"
-" * \"%s\": quan hagueu acabat de particionar el disc dur, aquesta opció\n"
+" * \"Fet\": quan hagueu acabat de particionar el vostre disc dur, aquesta "
+"opció\n"
"desarà els canvis al disc.\n"
"\n"
-"En definir la mida d'una partició, podeu acabar d'afinar-la mitjançant\n"
-"les tecles de fletxa del teclat.\n"
-" \n"
"Nota: podeu accedir a qualsevol opció mitjançant el teclat. Moveu-vos per "
"les\n"
"particions amb les tecles Tab i Fletxa amunt/Fletxa avall.\n"
"\n"
"Quan seleccioneu una partició, podeu utilitzar:\n"
"\n"
-" * Ctrl+c per crear una nova partició (quan se n'ha seleccionat una de "
+" * Ctrl+C per crear una nova partició (quan se n'ha seleccionat una de "
"buida)\n"
"\n"
-" * Ctrl+d per suprimir una partició\n"
+" * Ctrl+D per suprimir una partició\n"
"\n"
-" * Ctrl+m per definir el punt de muntatge\n"
+" * Ctrl+M per definir el punt de muntatge\n"
"\n"
"Per a més informació sobre els diferents sistemes de fitxers disponibles, "
"llegiu\n"
-"el capítol sobre ext2FS del ``Manual de Referència''.\n"
+"el capítol sobre ext2FS del \"Manual de Referència\".\n"
"\n"
-"Si esteu fent la instal•lació en un ordinador PPC, potser voldreu crear una\n"
-"petita partició ``bootstrap'' HFS d'un mínim d'1 MB per a ús del carregador\n"
+"Si esteu fent la instal·lació en un ordinador PPC, potser voldreu crear una\n"
+"petita partició \"bootstrap\" HFS d'un mínim d'1 MB per a ús del carregador\n"
"d'arrencada yaboot. Si decidiu fer-la una mica més gran, per exemple de\n"
-"50 MB, us serà d'utilitat per emmagatzemar un nucli de recanvi i imatges\n"
+"50 MB, us serà d'utilitat per emmagatzemar un nucli de recanvi i una imatge\n"
"del disc RAM per a situacions d'emergència durant l'arrencada."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:513
msgid ""
-"Graphic Card\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-" 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"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\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 ""
-"Targeta gràfica\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-" Normalment, l'instal·lador detectarà automàticament i configurarà la\n"
-"targeta gràfica que tingueu instal·lada a l'ordinador. Si no fos així, la\n"
-"podeu seleccionar d'aquesta llista.\n"
+"\"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"
-" Cas que hi hagi diferents servidors per a la targeta, amb o sense\n"
-"acceleració 3D, se us demanarà que trieu el servidor que us sigui\n"
-"més convenient."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "S'ha produït un error en instal·lar els paquets:"
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Configuració de la Lexmark inkjet"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "Desfés"
-
-#
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Save partition table"
-msgstr "Escriu la taula de particions"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "Finès"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "Macedònia"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
-msgstr ""
-"La compartició per usuari utilitza el grup \"fileshare\".\n"
-"Podeu utilitzar userdrake per a afegir un usuari a aquest grup."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "Eslovè"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Authorize:\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-"- only local ones if set to \"LOCAL\"\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"
-"- none if set to \"NONE\".\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
msgstr ""
-"Autoritza:\n"
+"S'ha detectat més d'una partició de Microsoft Windows en la unitat de disc.\n"
+"Si us plau, trieu quina d'elles voleu redimensionar per instal·lar el nou\n"
+"sistema operatiu Mandrake Linux.\n"
"\n"
-"- tots els serveis controlats per tcp_wrappers (vegeu hosts.deny(5)) si "
-"s'estableix a \"ALL\",\n"
+"Cada partició està identificada d'aquesta manera:\n"
+"\"Nom Linux\", \"Nom Windows\" \"Capacitat\".\n"
"\n"
-"- només els fitxers locals si s'estabeix a \"LOCAL\"\n"
+"\"Nom Linux\" es compon de: \"tipus d'unitat de disc\", \"número d'unitat "
+"de \n"
+"disc\", \"número de la partició\" (per exemple, \"hda1\").\n"
"\n"
-"- cap si s'estableix a \"NONE\".\n"
+"\"Tipus d'unitat de disc\" és \"hd\" si la vostre unitat de disc és IDE i \n"
+"\"sd\" si és SCSI.\n"
"\n"
-"Per autoritzar els serveis que us calguin, utilitzeu /etc/hosts.allow\n"
-"(vegeu hosts.allow(5))."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr "Líbia"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"S'estan configurant les seqüències, instal·lant el programari, iniciant els "
-"servidors..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Impressora en el port paral·lel #%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"\"Número de la unitat de disc\" és sempre una lletra després de \"hd\" o \"sd"
+"\".\n"
+"Amb unitats de disc IDE:\n"
"\n"
-"- Burn to CD"
-msgstr ""
+" * \"a\" significa \"unitat de disc mestra en el controlador IDE primari\",\n"
"\n"
-"- Crema a un CD"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "Taula"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "No sé com formatar %s amb el tipus %s"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Model"
-msgstr "Model"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "USB printer #%s"
-msgstr "Impressora USB #%s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Stop Server"
-msgstr "Atura el servidor"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
+" * \"b\" significa \"unitat de disc esclava en el controlador IDE primari"
+"\",\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
+" * \"c\" significa \"unitat de disc mestra en el controlador IDE secundari"
+"\",\n"
"\n"
-"Seleccioneu un tema per a\n"
-"lilo i bootsplash, \n"
-"podeu triar-los\n"
-"per separat"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Modem"
-msgstr "Mòdem"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr "Tuvalu"
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr "Utilitza la detecció automàtica"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
-msgstr ""
-"El GPM afegeix suport de ratolí a aplicacions Linux basades en text, com ara "
-"el Midnight Commander. També permet operacions de tallar i enganxar amb el "
-"ratolí, i inclou suport de menús desplegables a la consola."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr "Iniciat en l'arrencada"
-
-#: ../advertising/12-mdkexpert.pl:1
-#, 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:"
-msgstr ""
-"Uniu-vos als grups de suport de MandrakeSoft i a la Comunitat Linux en línia "
-"per compartir els vostres coneixements i ajudar els altres esdevenint un "
-"expert reconegut al lloc web de suport tècnic en línia:"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "No password aging for"
-msgstr "Sense contrasenya"
-
-#: ../../standalone/draksec:1
-#, 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"
-msgstr ""
-"Les opcions següents es poden establir per personalitzar la seguretat\n"
-"del vostre sistema. Si necessiteu una explicació, mireu el rètol d'ajuda.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Cerca automàticament impressores disponibles en màquines remotes"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr "Timor Oriental"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
-msgstr "en un dispositiu de cinta"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+" * \"d\" significa \"unitat de disc esclava en el controlador IDE secundari"
+"\".\n"
"\n"
-"- Save to Tape on device: %s"
-msgstr ""
+"Amb les unitats de disc SCSI, una \"a\" significa \"unitat primària de disc"
+"\",\n"
+"una \"b\" significa \"unitat secundària de disc\", etc.\n"
"\n"
-"- Desa-ho a una cinta en el dispositiu: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Login name"
-msgstr "Nom d'accés"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
-msgstr "Informa dels fitxers sense propietari"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr "Suprimeix el perfil..."
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "S'està instal·lant el Foomatic..."
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-tecla de retrocés"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected"
-msgstr "s'ha detectat"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "Cal reiniciar la xarxa. La voleu reiniciar?"
-
-#
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package: "
-msgstr "Paquet: "
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr "No s'ha pogut escriure /etc/sysconfig/bootsplash."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "AVÍS DE SEGURETAT!"
-
-#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
-msgstr "No, no vull l'entrada automàtica"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Eina de migració des de Windows"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr "Tots els idiomes"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "S'està esborrant %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s not found...\n"
-msgstr "No s'ha trobat %s...\n"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Testing your connection..."
-msgstr "S'està comprovant la vostra connexió..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cache size"
-msgstr "Mida de la memòria cau"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Ara, la contrasenya està habilitada, però l'ús com a ordinador de xarxa "
-"segueix sense ser recomanable."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr "Sector d'inici: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr "Congo (Brazzaville)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Read"
-msgstr "Lectura"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Cal instal·lar el paquet %s. Voleu instal·lar-lo?"
+"\"Nom Windows\" és la lletra de la vostra unitat de disc sota Windows (el "
+"primer\n"
+"disc o partició s'anomena \"C:\")."
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
-msgstr "Seychelles"
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
+msgstr "Si us plau, tingueu paciència. Aquesta operació pot trigar uns minuts."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:547
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"
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
"\n"
-"For your printer Printerdrake has found:\n"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
-"%s"
-msgstr ""
-"Printerdrake ha comparat el nom del model resultant de la detecció "
-"automàtica d'impressores amb els models llistats en la seva base de dades "
-"d'impressores per trobar el millor resultat. L'elecció pot ser dolenta, "
-"especialment si la vostra impressora no es troba a la base de dades. Per "
-"tant, mireu si l'elecció és correcta i feu clic a \"El model és correcte\" "
-"si ho és, o a \"Selecciona el model manualment\" per tal d'escollir "
-"manualment el model d'impressora en la pantalla següent.\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
"\n"
-"Per la vostra impressora el Printerdrake ha trobat:\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Bad password on %s"
-msgstr "Contrasenya incorrecta a %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
"\n"
-"Hi ha una impressora desconeguda connectada directament a l'ordinador."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Control key"
-msgstr "Tecla Control dret"
-
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr "Inseriu un disquet formatat amb FAT a la unitat %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "Zàmbia"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr "Administrador de seguretat (login o email)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr "Només s'accepten nuclis de la sèrie 2.4."
-
-#
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr "Romanès (qwerty)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
-msgstr "Sota desenvolupament ... espereu si us plau."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "Egipte"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "República Txeca"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "Targeta de so"
-
-#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Import Fonts"
-msgstr "Importació de fonts"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, 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\")"
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
+"\n"
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
msgstr ""
-"Teniu una partició de Microsoft Windows gran\n"
-"Suggereixo que primer en canvieu la mida\n"
-"(feu-hi clic i després feu clic a \"Canvia la mida\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Suprimeix els fitxers temporals"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+"DrakX necessita saber si voleu una instal·lació per defecte (\"Recomanada"
+"\")\n"
+"o si voleu tenir més control sobre la instal·lació (\"Expert\"). També "
+"podeu\n"
+"escollir fer una instal·lació nova o una actualització d'un sistema \n"
+"Mandrake Linux ja existent:\n"
"\n"
-msgstr "Felicitats, la configuració de xarxa i d'Internet ha finalitzat.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "Canvia el tipus de partició"
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Resolution\n"
+" * \"Instal·la\": esborra completament l'antic sistema operatiu. De fet,\n"
+"depenent del que tingueu instal·lat en la vostra màquina, es podran "
+"mantenir\n"
+"algunes antigues particions (Linux o altres) sense modificar.\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 ""
-"Resolució\n"
+" * \"Actualitza\": aquesta mena d'instal·lació permet actualitzar els "
+"paquets\n"
+"que hi ha instal·lats en el sistema Mandrake Linux. Manté les particions\n"
+"dels discs durs i també les configuracions de l'usuari. Tota la resta de "
+"passos\n"
+"de configuració es mantenen accessibles com a la instal·lació per defecte.\n"
"\n"
-" Aquí podeu triar les resolucions i profunditats de color disponibles per\n"
-"al vostre maquinari. Trieu la que us vagi més bé (tot i que podreu canviar-"
-"la\n"
-"després de la instal·lació). Al monitor veureu una mostra de la "
-"configuració\n"
-"triada."
-
-#
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Network Options"
-msgstr "Opcions de xarxa"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable msec hourly security check"
-msgstr "Habilitala la comprovació de seguretat msec horària"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"Mostra el tema\n"
-"sota la consola"
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr "(en %s)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
+" * \"Només actualitza paquets\": aquest nou tipus d'instal·lació permet \n"
+"actualitzar un sistema Mandrake Linux tot mantenint les configuracions del\n"
+"sistema sense modificar. És possible també afegir nous paquets a la nova\n"
+"instal·lació.\n"
+"\n"
+"Les actualitzacions harien de funcionar bé per a sistemes Mandrake Linux "
+"versió\n"
+"\"8.1\" i posteriors.\n"
+"\n"
+"Segons els vostres coneixements de GNU/Linux, trieu una de les següents "
+"opcions:\n"
+"\n"
+" * Recomanada: si mai no heu instal·lat un sistema operatiu GNU/Linux, "
+"trieu\n"
+"aquesta opció. La instal·lació serà molt fàcil i només se us faran unes "
+"poques\n"
+"preguntes.\n"
+"\n"
+" * Expert: si domineu el GNU/Linux, potser voldreu una instal·lació molt\n"
+"personalitzable. Algunes de les decisions que haureu de prendre poden "
+"resultar\n"
+"difícils si no teniu coneixements sòlids de GNU/Linux. Per tant, no escolliu "
+"aquest\n"
+"tipus d'instal·lació tret que sapigueu què esteu fent."
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:582
msgid ""
-"A library which defends against buffer overflow and format string attacks."
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
+"\n"
+"Click on the \"More\" 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, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
msgstr ""
-"Una llibreria que defensa contra els atacs de 'buffer overflow' i de 'format "
-"string'."
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr "mitjana"
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "New printer name"
-msgstr "Nou nom d'impressora"
+"Normalment, el DrakX selecciona el teclat correcte (segons l'idioma que\n"
+"hagueu escollit). Tanmateix, podríeu tenir un teclat que no correspongués "
+"exactament\n"
+"al vostre idioma, per exemple: si sou un suís que parla anglès, encara "
+"voldreu\n"
+"que el teclat sigui suís. O si parleu anglès però viviu al Quebec, us "
+"podeu \n"
+"trobar en la mateixa situació. En tots dos casos, haureu de tornar a aquest "
+"pas\n"
+"de la instal·lació i seleccionar un teclat adequat de la llista.\n"
+"\n"
+"Feu clic al botó \"Més\" per veure la llista completa de teclats disponibles."
-#: ../../fs.pm:1
-#, c-format
+#: ../../help.pm_.c:598
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 )."
+"The first step is to choose your preferred language.\n"
+"\n"
+"Please choose your preferred language for installation and system usage.\n"
+"\n"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
+"\n"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
-"Permet que un usuari normal munti el sistema de fitxers. El nom de l'usuari\n"
-"que munta s'escriu a mtab de manera que pugui tornar a desmuntar el\n"
-"sistema de fitxers. Aquesta opció implica les opcions noexec, nosuid i\n"
-"nodev (tret que quedin sobreescrites per opcions subsegüents, com en\n"
-"la línia d'opcions user,exec,dev,suid)."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr "Guinea Equatorial"
-
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup System"
-msgstr "Còpia de seguretat del sistema"
-
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Build Backup"
-msgstr "Construeix la còpia de seguretat"
+"El primer pas és triar l'idioma que voleu.\n"
+"\n"
+"Escolliu l'idioma que vulgueu per a la instal·lació i per al sistema.\n"
+"\n"
+"Si feu clic al botó \"Avançat\" podreu seleccionar altres idiomes que "
+"vulgueu\n"
+"instal·lar a la vostra estació de treball. S'instal·laran els fitxers "
+"d'idioma\n"
+"especifics de la documentació i de les aplicacions. Per exemple, si tindreu\n"
+"usuaris anglesos a la vostra màquina, podeu triar el català com a idioma "
+"principal\n"
+"des de l'arbre i, a la secció \"Avançat\", marcar la casella \"Anglès|Regne "
+"Unit\".\n"
+"\n"
+"Cal remarcar que es poden instal·lar múltiples idiomes. Un cop hagueu "
+"seleccionat\n"
+"tots els idiomes que vulgueu , feu clic sobre el botó \"D'acord\" per "
+"continuar.\n"
+"\n"
+"Per canviar d'un idioma a un altre, podeu executar com a root l'ordre \n"
+"\"/usr/sbin/localedrake\" per canviar l'idioma de tot el sistema, o com a "
+"simple\n"
+"usuari per canviar només l'idioma per defecte d'aquest usuari."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:617
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
+"\n"
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
+"\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
msgstr ""
-"Per imprimir un fitxer des de la línia d'ordres (finestra de terminal) "
-"utilitzeu l'ordre \"%s <fitxer>\" o \"%s <fitxer>\".\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Actualment no ha hi disponible cap possibilitat alternativa"
-
-#
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwertz)"
-msgstr "Romanès (qwertz)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Write Config"
-msgstr "Escriu la configuració"
+"El DrakX generalment detecta el nombre de botons que té el vostre ratolí. "
+"Si\n"
+"no pot, assumeix que teniu un ratolí de dos botons i el configurarà per "
+"emular\n"
+"el tercer botó. El DrakX detectarà automàticament si el ratolí és PS/2, "
+"sèrie o\n"
+"USB.\n"
+"\n"
+"Si voleu especificar un tipus diferent de ratoli seleccioneu el tipus \n"
+"apropiat de la llista.\n"
+"\n"
+"Si escolliu un ratolí diferent del ratolí per defecte, es mostrarà una "
+"pantalla\n"
+"de test. Proveu els botons i la roda per verificar que la configuració és\n"
+"correcta. Si el ratolí no funciona bé, premeu la barra espaiadora o la \n"
+"tecla de retorn per cancel·lar i triar de nou.\n"
+"\n"
+"De vegades, la roda del ratolí no es detecta automàticament. En aquest cas,\n"
+"haureu de seleccionar-ho a la llista. Assegureu-vos de triar aquell que es\n"
+"correspongui amb el port on teniu connectat el ratolí. Quan premeu \"D'acord"
+"\"\n"
+"apareixerà la imatge d'un ratolí perquè proveu tots els botons i els "
+"moviments."
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:638
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."
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"El dimoni 'routed' permet que la taula d'encaminadors IP automàtics\n"
-"s'actualitzi mitjançant el protocol RIP. Mentre que el RIP s'utilitza\n"
-"àmpliament en xarxes petites, les xarxes complexes necessiten protocols\n"
-"d'encaminament més complexos."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr "Kiribati"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech Mouse (sèrie, tipus C7 antic) amb emulació de rodeta"
+"Si us plau, seleccioneu el port correcte. Per exemple, el port \"COM1\" en\n"
+"Windows s'anomena \"ttyS0\" en GNU/Linux."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Other (not drakbackup) keys in place already"
+#: ../../help.pm_.c:642
+msgid ""
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
+"\n"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
+"\n"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
+"\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
+"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
msgstr ""
-"Ja hi ha les claus d'un altre programa\n"
-"(diferent del Drakbackup)"
+"Aquesta és la decisió més important quant a la seguretat del vostre sistema\n"
+"GNU/Linux: heu d'introduir la contrasenya de l'usuari \"root\". El \"root\" "
+"és\n"
+"l'administrador del sistema i és l'únic autoritzat a fer actualitzacions,\n"
+"afegir usuaris, canviar la configuració del tot el sistema, etc. De fet,\n"
+"el \"root\" pot fer de tot! Per això heu d'escollir una contrasenya que "
+"sigui\n"
+"dificil d'endevinar. DrakX us avisarà si és massa fàcil. Com veieu, podeu \n"
+"optar per no introduir cap contrasenya, però no és gens prudent per una\n"
+"única raó: el fet d'arrencar GNU/Linux no fa que els vostres altres "
+"\"sistemes\n"
+"operatius\" estiguin lliures d'errors. Com que l'usuari \"root\" pot "
+"superar\n"
+"totes les limitacions i esborrar accidentalment totes les dades de "
+"qualsevol\n"
+"partició com a conseqüència d'accedir sense precaucions a les particions en "
+"si,\n"
+"és molt important que sigui difícil esdevenir \"root\".\n"
+"\n"
+"La contrasenya hauria de ser una mescla de caràcters alfanumèrics i, com a \n"
+"mínim, de 8 caràcters de longitud. No escrigueu mai la contrasenya de \"root"
+"\"\n"
+"ja que és molt fàcil comprometre el sistema si ho feu.\n"
+"\n"
+"De totes maneres, no feu la contrasenya massa llarga o complicada perquè\n"
+"heu de ser capaços de recordar-la sense gaire esforç.\n"
+"\n"
+"La contrasenya no es mostrarà per pantalla quan la teclegeu. Per tant, \n"
+"haureu d'escriure-la dues vegades per reduir la probabilitat d'errors\n"
+"en l'escriptura. Si, malauradament, feu el mateix error dues vegades, "
+"haureu\n"
+"d'usar aquesta contrasenya \"incorrecta\" el primer cop que us connecteu.\n"
+"\n"
+"En el mode Expert, se us preguntarà si us voleu connectar a un servidor\n"
+"d'autentificació, com ara NIS o LDAP.\n"
+"\n"
+"Si la vostra xarxa usa LDAP, NIS o l'autenticació de domini Windows PDC,\n"
+"seleccioneu l'opció corresponent com a autenticació. Si no ho sabeu, "
+"pregunteu\n"
+"al vostre administrador de la xarxa.\n"
+"\n"
+"Si el vostre ordinador no es connecta a cap xarxa administrada, haureu \n"
+"d'escollir \"Fitxers Locals\" per a l'autenticació."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:678
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"
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\n"
"\n"
-"You will be presented with a list of different parameters to change to get\n"
-"an optimal graphical display: Graphic Card\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
+"OS;\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"
+" * if a grub or LILO boot sector is found, it will replace it with a new\n"
+"one.\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"
+"if in doubt, DrakX will display a dialog with various options.\n"
"\n"
+" * \"Bootloader to use\": you have three choices:\n"
"\n"
+" * \"GRUB\": if you prefer grub (text menu);\n"
"\n"
-"Monitor\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\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"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
"\n"
-"Resolution\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\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"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
+msgstr ""
+"El LILO i el grub són carregadors de l'arrencada de GNU/Linux. Normalment,\n"
+"aquesta etapa és totalment automàtica. De fet, el DrakX analitza el \n"
+"sector d'arrencada i actua d'acord amb el que hi troba:\n"
"\n"
+" * si troba un sector d'arrencada de Windows, el reemplaçarà amb un sector\n"
+"d'arrencada de grub/LILO. Per tant, sereu capaç de carregar el GNU/Linux\n"
+"o un altre sistema operatiu.\n"
"\n"
+" * si es troba un sector d'arrencada del grub o del LILO, el reemplaçarà\n"
+"amb un de nou.\n"
"\n"
-"Test\n"
+"Si té algun dubte, el DrakX us presentarà un diàleg amb diverses opcions:\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"
+" * \"Carregador de l'arrencada\": teniu tres opcions:\n"
"\n"
+" * \"GRUB\": si preferiu el grub (menú de text).\n"
"\n"
+" * \"LILO amb menú gràfic\": si preferiu el LILO amb una interfície\n"
+"gràfica.\n"
"\n"
-"Options\n"
+" * \"LILO amb menú de text\": si preferiu el LILO amb el seu menú de\n"
+"text.\n"
"\n"
-" Here you can choose whether you want to have your machine automatically\n"
-"switch to a graphical interface at boot. Obviously, you want to check\n"
-"\"%s\" if your machine is to act as a server, or if you were not successful\n"
-"in getting the display configured."
-msgstr ""
-"L'X (per \"sistema X Window\") és el cor de la interfície gràfica del GNU/"
-"Linux\n"
-"de què depenen tots els entorns gràfics (KDE, GNOME, AfterStep, "
-"WindowMaker,\n"
-"etc.) que venen amb el Linux Mandrake.\n"
+" * \"Dispositiu d'arrencada\": en la majoria de casos, no heu de canviar "
+"l'opció\n"
+"per defecte (\"/dev/hda\"), però si ho preferiu, el carregador de "
+"l'arrencada\n"
+"pot instal·lar-se en el segon disc dur (\"/dev/hdb\"), o fins i tot en un \n"
+"disquet (\"/dev/fd0\").\n"
"\n"
-"Veureu una relació de diferents paràmetres que podeu canviar per aconseguir\n"
-"una visualització gràfica òptima: Targeta gràfica\n"
+" * \"Temps d'espera abans de carregar la imatge per defecte\": quan es "
+"reinicia\n"
+"l'ordinador, aquest és el temps de què disposa l'usuari per escollir una "
+"entrada\n"
+"diferent de l'entrada per defecte en el menú d'arrencada.\n"
"\n"
-" Normalment, l'instal•lador detectarà i configurarà automàticament la "
-"targeta\n"
-"gràfica instal•lada a l'ordinador. Si no fos així, podeu escollir de la "
-"llista\n"
-"la targeta que realment tingueu instal•lada.\n"
+"Teniu en compte que si escolliu no instal·lar un carregador de l'arrencada \n"
+"(seleccionant \"Cancel·la\" aquí), heu d'estar segurs que teniu alguna "
+"manera\n"
+"d'arrencar el vostre sistema Mandrake Linux! Encara més, estigueu segurs de\n"
+"saber què feu abans de canviar alguna de les opcions.\n"
"\n"
-" En cas que hi hagi diferents servidors disponibles per a la vostra "
-"targeta,\n"
-"amb o sense acceleració 3D, se us demanarà que escolliu el que més us "
-"convingui.\n"
+"Si feu clic al botó \"Avançat\" d'aquest diàleg podreu modificar algunes\n"
+"opcions avançades, reservades als usuaris experts."
+
+#: ../../help.pm_.c:718
+msgid ""
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
+msgstr ""
+"Un cop configurats els paràmetres generals del carregador de l'arrencada, \n"
+"es mostrarà la llista d'opcions de càrrega que es veurà en arrencar la "
+"màquina.\n"
"\n"
-"Monitor\n"
+"Si hi ha algun altre sistema operatiu instal·lat en el vostre ordinador, \n"
+"s'inclourà automàticament al menú del carregador. Aquí podeu modificar les\n"
+"entrades del menú d'arrencada. Seleccioneu una entrada i feu clic a \n"
+"\"Modifica\" per modificar-la o esborrar-la. \"Afegeix\" crea una nova "
+"entrada,\n"
+"i \"Fet\" avança cap al següent pas de la instal·lació.\n"
+"També és possible que no vulgueu permetre a ningú l'accés a aquests "
+"sistemes\n"
+"operatius. En aquest cas, podeu suprimir les entrades corresponents, però\n"
+"aleshores us caldrà un disc d'arrencada per poder-los arrencar!"
+
+#: ../../help.pm_.c:732
+msgid ""
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\n"
+"\n"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
+msgstr ""
+"Heu d'indicar on voleu situar la informació necessària per\n"
+"arrencar el GNU/Linux.\n"
+"\n"
+"Tret que sapigueu exactament què esteu fent, escolliu \"Primer sector\n"
+"de la unitat (MBR)\"."
+
+#: ../../help.pm_.c:739
+msgid ""
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
+"\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
+"\n"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
+msgstr ""
+"Aquí se seleccionarà el sistema d'impressió per al vostre ordinador. Altres\n"
+"sistemes operatius us n'oferiran un, però el Mandrake Linux n'ofereix dos.\n"
+"\n"
+" * \"pdq\" que vol dir \"print, don't queue\" (imprimeix, no facis cua), és\n"
+"l'opció escollida si teniu una connexió directa amb la impressora i voleu\n"
+"evitar aquelles cues d'impressió interminables, i no teniu impressores de \n"
+"xarxa. Només funcionarà sobre xarxes molt senzilles i és bastant lent per a\n"
+"xarxes en general. Escolliu \"pdq\" si és la vostra primera incursió en GNU/"
+"Linux.\n"
+"Podeu canviar la vostra elecció després de la instal·lació executant el \n"
+"PrinterDrake des del Centre de Control Mandrake, fent clic al botó \"Expert"
+"\".\n"
"\n"
-" Normalment, l'instal•lador detectarà i configurarà automàticament el\n"
-"monitor que teniu connectat a l'ordinador. Si no és correcte, podreu triar\n"
-"d'aquesta llista el monitor que realment teniu connectat a l'ordinador.\n"
+" * \"CUPS\" vol dir \"Common Unix Printing System\" (Sistema d'impressió "
+"comú\n"
+"de Unix), és el millor a l'hora d'imprimir a la vostra impressora local i a "
+"la\n"
+"meitat del planeta. És senzill i pot actuar com a servidor o client per a "
+"l'antic\n"
+"sistema d'impressió \"lpd\". Per tant, és compatible amb els sistemes "
+"anteriors.\n"
+"Pot fer moltes coses, però la configuració bàsica es tant senzilla com la de "
+"\"pdq\".\n"
+"Si necessiteu CUPS per emular un servidor \"lpd\", heu d'habilitar el "
+"dimoni\n"
+"\"cups-lpd\". Té una interfície gràfica per imprimir i escollir les "
+"opcions \n"
+"d'impressió."
+
+#: ../../help.pm_.c:759
+msgid ""
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
"\n"
+"Because hardware detection does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
+"\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
+msgstr ""
+"El DrakX detectarà qualsevol dispositiu IDE en l'ordinador. Així mateix, \n"
+"intentarà trobar un o més adaptadors SCSI PCI. Si troba un adaptador SCSI,\n"
+"el DrakX instal·larà automàticament el controlador adequat.\n"
+"\n"
+"Com que la detecció de maquinari no sempre troba tots els dispositius,\n"
+"el DrakX us demanarà que confirmeu si hi ha un adaptador SCSI PCI. Feu clic\n"
+"a \"Sí\" si sabeu segur que n'hi ha un instal·lat en l'ordinador. "
+"Apareixerà\n"
+"una llista de targetes SCSI perquè n'escolliu una. Feu clic a \"No\" si no "
+"en\n"
+"teniu cap. Si no n'esteu segurs, podeu mirar la llista de maquinari\n"
+"detectat en el vostre ordinador seleccionant \"Veure informació del "
+"maquinari\"\n"
+"i fent clic a \"D'acord\". Examineu la llista de maquinari i feu clic sobre\n"
+"el botó \"D'acord\" per tornar a la pregunta sobre l'interfície SCSI.\n"
+"\n"
+"Si heu de seleccionar l'adaptador manualment, el DrakX us preguntarà si\n"
+"voleu confifurar-ne les opcions. Convé que deixeu que el DrakX comprovi\n"
+"el maquinari per inicialitzar les opcions especifiques d'algunes targetes.\n"
+"Això sol funcionar bé.\n"
+"\n"
+"Si el DrakX no pot comprovar les opcions que se li han de passar al "
+"controlador,\n"
+"us caldrà proporcionar les opcions al controlador manualment. Consulteu la\n"
+"Guia de l'usuari (capítol 3, en la secció \"Informació obtinguda del "
+"maquinari\")\n"
+"per saber com treure aquesta informació de la documentació del maquinari,\n"
+"del lloc web del fabricant (si teniu accés a Internet) o del Microsoft "
+"Windows\n"
+"(si el teniu al sistema)."
+
+#: ../../help.pm_.c:781
+msgid ""
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
+"\n"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\n"
"\n"
-"Resolució\n"
+"For Linux, there are a few possible options:\n"
"\n"
-" Aquí podeu triar les resolucions i profunditats de color disponibles per\n"
-"al vostre maquinari. Trieu la que us vagi més bé (tot i que podreu canviar-"
-"la\n"
-"després de la instal•lació). Al monitor veureu una mostra de la configuració\n"
-"triada.\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
"\n"
-"Test\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
"\n"
-" el sistema intentarà obrir una pantalla gràfica amb la resolució "
-"desitjada.\n"
-"Si podeu veure el missatge durant la prova i responeu \"%s\", el DrakX "
-"passarà\n"
-"al pas següent. Si no el podeu veure, vol dir que la configuració detectada\n"
-"automàticament no era del tot correcta i la prova finalitzarà automàticament "
-"al\n"
-"cap de 12 segons, portant-vos de nou al menú. Canvieu els paràmetres fins "
-"que\n"
-"obtingueu una pantalla gràfica correcta.\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
"\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"hda=autotune\n"
"\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
-"Opcions\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"
-" Aquí podeu decidir si voleu que l'ordinador canviï automàticament a una\n"
-"interfície gràfica en arrencar. Òbviament, voldreu activar \"%s\" si "
-"l'ordinador\n"
-"ha d'actuar com a servidor, o si no heu aconseguit configurar la pantalla."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr "Navega"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr "CD-ROM"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Voleu intentar connectar-vos a Internet ara?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "Belga"
-
-#
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Teniu una targeta de so ISA?"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"No s'ha detectat cap adaptador de xarxa ethernet al sistema.\n"
-"No puc configurar aquest tipus de connexió."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Windows"
-msgstr "Windows"
-
-#
-#: ../../common.pm:1
-#, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "No es poden fer captures de pantalla abans de fer les particions"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Name"
-msgstr "Nom de l'ordinador"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Fitxer/_Anomena i desa"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"Per obtenir accés a les impressores en servidors CUPS remots de la vostra "
-"xarxa local només cal que activeu l'opció \"Cerca automàticament les "
-"impressores disponibles en màquines remotes\"; els servidors CUPS informen "
-"automàticament a la vostra màquina de les impressores que tenen. Totes les "
-"impressores conegudes per la vostra màquina són a la secció \"Impressores "
-"remotes\" de la finestra principal del Printerdrake. Si el vostre servidor o "
-"servidors CUPS no són a la vostra xarxa local, per obtenir del servidor la "
-"informació de la impressora us caldrà introduir aquí la o les adreces IP i "
-"opcionalment el o els números de port."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
-"%s no és a la base de dades de l'escàner, voleu configurar-lo manualment?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "Demora abans d'arrencar la imatge predeterminada"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Restrict command line options"
-msgstr "Limita les opcions de la línia d'ordres"
-
-#
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "East Europe"
-msgstr "Europa de l'Est"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "Utilitza l'espai lliure"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "utilitza dhcp"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr "Alerta de correu"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Internet configuration"
-msgstr "Configuració d'Internet"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected %s"
-msgstr "S'ha detectat %s"
-
-#
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Detecta les im_pressores automàticament"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "Fi"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Mostra automàticament els paquets seleccionats"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr "Togo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "Senyaladors de la CPU informats pel nucli."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Alguna cosa ha anat malament! Teniu instal·lat l'mkisofs?"
-
-#
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "Si us plau, torneu-ho a intentar"
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The model is correct"
-msgstr "El model és correcte"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Ha fallat el redimensionament de la FAT: %s"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr "Selecció individual de paquets"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr "No es pot canviar la mida d'aquesta partició"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr "Ubicació"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "EUA (cable-hrc)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr "Journalised FS"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr "Comprovació de promiscuïtat de les targetes Ethernet"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
-msgstr "Aquesta màquina"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Lletra d'unitat de DOS: %s (només és una suposició)\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr "Bahrain"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Seleccioneu els fitxers o directoris i feu clic a 'D'acord'"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit scsi modules"
-msgstr "omet els mòduls SCSI"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "família de la CPU (p.ex. 6 per a la classe i686)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Atès que esteu realitzant una instal·lació des de xarxa, ja teniu la xarxa "
-"configurada.\n"
-"Feu clic a 'D'acord' per conservar la configuració, o a 'Cancel·la' per "
-"tornar a configurar la connexió a Internet i a la xarxa local.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
-msgstr "Executa les comprovacions diàries de seguretat"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Disposició del teclat: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"Aquí podeu decidir si s'ha de poder accedir a les impressores connectades a "
-"aquesta màquina des de màquines remotes, i des de quines d'elles."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr "Maltès (Estats Units)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "La creació del disc d'arrencada s'ha completat amb èxit \n"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Munta i desmunta tots els punts de muntatge dels sistemes de fitxers\n"
-"de xarxa (NFS), SMB (gestor de xarxes d'àrea local/Windows) i NCP (NetWare)."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Launch the wizard"
-msgstr "Executa l'auxiliar"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Tvcard"
-msgstr "Targeta de TV"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Commuta entre els modes normal i expert"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr "Mida"
-
-#: ../../help.pm:1
-#, c-format
-msgid "GRUB"
-msgstr "GRUB"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr "Groenlàndia"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "Dijous"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
-"L'etiqueta de la cinta no és correcta. L'etiqueta d'aquesta cinta és %s."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
"\n"
-"What would you like to do?"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
+"\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support;\n"
+"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
msgstr ""
-"La configuració de la connexió compartida a Internet ja s'ha dut a terme.\n"
-"Ara està habilitada.\n"
+"Podeu afegir entrades addicionals per al yaboot, ja sigui per a altres\n"
+"sistemes operatius, nuclis alternatius, o per a una imatge per a arrencades\n"
+"d'emergència.\n"
"\n"
-"Què voleu fer?"
-
-#
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Suprimeix tots els NBI"
+"Per a altres SO, l'entrada només consta d'una etiqueta i de la partició "
+"arrel.\n"
+"\n"
+"Per al Linux, hi ha unes quantes opcions possibles: \n"
+"\n"
+" * Etiqueta: és només el nom a entrar en l'indicador del yaboot per\n"
+"seleccionar aquesta opció d'arrencada.\n"
+"\n"
+" * Imatge: el nom del nucli a arrencar. Normalment, vmlinux o una\n"
+"variació de vmlinux amb una extensió.\n"
+"\n"
+" * Arrel: el dispositiu arrel o '/' per a la instal·lació del Linux.\n"
+"\n"
+" * Addició: en maquinari Apple, l'opció d'addició de nuclis s'utilitza\n"
+"força sovint per auxiliar en la inicialització de maquinari de vídeo o per\n"
+"habilitar l'emulació del botó del ratolí de teclat per als 2n i 3r botons,\n"
+"que sovint no existeixen en un ratolí Apple convencional. Alguns exemples\n"
+"d'això són:\n"
+"\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"hda=autotune\n"
+"\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
+"\n"
+" * Initrd: aquesta opció es pot utilitzar per carregar els mòduls inicials,\n"
+"abans que el dispostiu d'arrencada estigui disponible, o per carregar\n"
+"una imatge de disc RAM en una situació d'arrencada d'emergència.\n"
+"\n"
+" * Mida de l'Initrd: la mida per defecte del disc RAM sol ser de 4096 "
+"bytes.\n"
+"Si necessiteu assignar un disc RAM gran, podeu utilitzar aquesta opció.\n"
+"\n"
+" * Lectura-Escriptura: normalment, la partició arrel '/' es tracta "
+"inicialment com\n"
+"de només lectura per permetre una comprovació del sistema de fitxers abans\n"
+"que el sistema esdevingui \"viu\". Podeu substituir aquesta opció aquí.\n"
+"\n"
+" * Sense Vídeo: en cas que el maquinari de vídeo d'Apple resulti "
+"especialment\n"
+"problemàtic, podeu seleccionar aquesta opció per arrencar en mode 'no-"
+"vídeo',\n"
+"amb el suport nadiu per a frame buffer.\n"
+"\n"
+" * Per defecte: seleccioneu aquesta entrada com a selecció per defecte del\n"
+"Linux; se selecciona prement simplement Retorn a l'indicador del yaboot.\n"
+"Aquesta opció també es ressaltarà amb un '*' si premeu Tab per veure les\n"
+"seleccions d'arrencada."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:828
msgid ""
-"This dialog allows you to fine tune your bootloader:\n"
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
"\n"
-" * \"%s\": there are three choices for your bootloader:\n"
+"Yaboot's main options are:\n"
"\n"
-" * \"%s\": if you prefer grub (text menu).\n"
+" * Init Message: a simple text message displayed before the boot prompt;\n"
"\n"
-" * \"%s\": if you prefer LILO with its text menu interface.\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"
-" * \"%s\": if you prefer LILO with its graphical interface.\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"
-" * \"%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"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
-" * \"%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"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\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"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
-"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
-"are normally reserved for the expert user."
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
msgstr ""
-"Aquest diàleg us permet ajustar el carregador d'arrencada:\n"
+"El Yaboot és un carregador d'arrencada per a maquinari NewWorld MacIntosh.\n"
+"Pot arrencar tant el GNU/Linux com el MacOS o el MacOSX, si és que els "
+"teniu\n"
+"a l'ordinador. Normalment, aquests altres sistemes operatius es detecten i\n"
+"instal·len correctament; si no és així, però, en aquesta pantalla podeu\n"
+"afegir una entrada manualment. Aneu amb compte de triar els paràmetres\n"
+"correctes.\n"
"\n"
-" * \"%s\": hi ha tres opcions per al carregador d'arrencada:\n"
+"Les opcions principals del Yaboot són:\n"
"\n"
-" * \"%s\": si preferiu el grub (menú de text).\n"
+" * Missatge d'inicialització: un senzill missatge de text que apareix abans\n"
+"de l'indicador d'arrencada.\n"
"\n"
-" * \"%s\": si preferiu el LILO amb la seva interfície de menús de text.\n"
+" * Dispositiu d'arrencada: indica on voleu situar la informació necessària\n"
+"per arrencar el GNU/Linux. Normalment, haureu configurat abans una partició\n"
+"bootstrap que contindrà aquesta informació.\n"
"\n"
-" * \"%s\": si preferiu el LILO amb la seva interfície gràfica.\n"
+" * Demora de l'Open Firmware: a diferència del LILO, amb el Yaboot hi ha\n"
+"dues demores disponibles. La primera d'elles es mesura en segons i, en "
+"aquest\n"
+"punt, podeu triar entre CD, arrencada OF, MacOS o Linux.\n"
"\n"
-" * \"%s\": en la majoria de casos, no heu de canviar l'opció\n"
-"per defecte (\"%s\"), però,si ho preferiu, el carregador d'arrencada\n"
-"pot instal•lar-se en el segon disc dur (\"%s\"), o fins i tot en un \n"
-"disquet (\"%s\").\n"
+" * Temps màxim d'arrencada del nucli: aquest temps màxim és similar a la\n"
+"demora d'arrencada del LILO. Després de seleccionar el Linux tindreu aquest\n"
+"temps (en dècimes de segon) abans que se seleccioni la descripció per "
+"defecte\n"
+"del nucli.\n"
"\n"
-" * \"%s\": quan s'arrenca o es torna a arrencar l'ordinador, aquest\n"
-"és el temps de què disposa l'usuari per escollir una entrada diferent\n"
-"de l'entrada per defecte en el menú d'arrencada.\n"
+" * Habilita l'arrencada des de CD: si activeu aquesta opció podreu triar\n"
+"'C' per a CD al primer indicador de l'arrencada.\n"
"\n"
-"!! Tingueu en compte que si escolliu no instal•lar un carregador "
-"d'arrencada \n"
-"(seleccionant \"%s\"), heu d'estar segurs que teniu alguna manera\n"
-"d'arrencar el vostre sistema Linux Mandrake! Assegureu-vos de\n"
-"saber què feu abans de canviar alguna de les opcions!!\n"
+" * Habilitar l'arrencada OF: si activeu aquesta opció podreu triar 'N' per\n"
+"Open Firmware al primer indicador de l'arrencada.\n"
"\n"
-"Si feu clic al botó \"%s\" d'aquest diàleg accedireu a algunes opcions\n"
-"avançades, reservades normalment als usuaris experts."
+" * SO per defecte: podeu seleccionar amb quin SO, per defecte, s'arrencarà\n"
+"quan la demora de l'Open Firmware venci."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../help.pm_.c:860
+#, fuzzy
msgid ""
-"if set, send the mail report to this email address else send it to root."
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
+"\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
+"\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
+"\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\n"
+"\n"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\n"
+"\n"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\n"
+"\n"
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
msgstr ""
-"si es defineix, envia l'informe de correu a aquesta adreça electrònica; si "
-"no, envia'l al root."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Quina configuració de l'XFree voleu tenir?"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "More"
-msgstr "Més"
+"Ara us presentem diversos paràmetres de la vostra màquina. Depenent del\n"
+"maquinari instal·lat, podreu veure o no les següents entrades:\n"
+"\n"
+" * \"Ratolí\": comproveu la configuració actual del ratolí i feu clic al "
+"botó\n"
+"per canviar-la si fos necessari.\n"
+"\n"
+" * \"Teclat\": comproveu la configuració actual del mapa de teclat i feu "
+"clic\n"
+"al botó per canviar-la si fos necessari.\n"
+"\n"
+" * \"Fus horari\": el DrakX, per defecte, endevina la vostra zona horària\n"
+"basant-se en l'idioma que heu triat. Però, de la mateixa manera que en el "
+"cas\n"
+"del teclat, pot ser que visqueu en un país diferent al de l'idioma "
+"escollit.\n"
+"Per tant, podríeu haver de fer clic sobre el botó \"Fus horari\" per tal de\n"
+"configurar el rellotge d'acord amb la zona horària en la qual esteu.\n"
+"\n"
+" * \"Impressora\": si feu clic al botó \"Cap Impressora\" s'obrirà "
+"l'auxiliar\n"
+"de configuració de la impressora.\n"
+"\n"
+" * \"Targeta de so\": si s'ha detectat una targeta de so en el sistema, "
+"apareixerà\n"
+"aquí. No es pot fer cap modificació durant la instal·lació.\n"
+"\n"
+" * \"Targeta TV\": si s'ha detectat una targeta de TV en el sistema, "
+"apareixerà\n"
+"aquí. No es pot fer cap modificació durant la instal·lació.\n"
+"\n"
+" * \"Targeta XDSI\": si s'ha detectat una targeta XDSI en el sistema, "
+"apareixerà\n"
+"aquí. Podeu fer clic sobre el botó per canviar els paràmetres associats amb "
+"la\n"
+"targeta."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:891
msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
+"Escolliu el disc dur que voleu buidar per instal·lar la nova partició Linux\n"
+"Mandrake. Aneu amb compte, se'n perdran totes les dades i no es podran\n"
+"recuperar!"
-#
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:896
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."
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"Amb aquest nivell de seguretat, la utilització d'aquest sistema com a "
-"servidor esdevé possible.\n"
-"La seguretat és ara prou alta com per utilitzar el sistema com a servidor\n"
-"que accepti connexions de molts clients. Nota: si la vostra màquina és només "
-"un client d'Internet, seria millor escollir un nivell més baix."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Server Name"
-msgstr "Nom del servidor"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Password"
-msgstr "Contrasenya del compte"
+"Feu clic a \"D'acord\" si voleu suprimir totes les dades i particions\n"
+"que hi ha en aquesta unitat de disc. Aneu amb compte perquè, un cop\n"
+"hagueu fet clic a \"D'acord\", no podreu recuperar cap dada ni partició\n"
+"del disc, incloent les dades de Windows.\n"
+"\n"
+"Feu clic a \"Cancel·la\" per anul·lar aquesta operació sense perdre cap "
+"dada\n"
+"ni partició d'aquest disc."
-#: ../../standalone/drakhelp:1
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
+"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 ""
+"No es pot accedir als mòduls del nucli corresponents al vostre nucli (no "
+"s'ha trobat el fitxer %s). Això generalment vol dir que el vostre disquet "
+"d'arrencada no està sincronitzat amb el suport d'instal·lació (si us plau, "
+"creeu un nou disquet d'arrencada)"
-#: ../../any.pm:1
+#: ../../install2.pm_.c:167
+#, c-format
+msgid "You must also format %s"
+msgstr "També heu de formatar %s"
+
+#: ../../install_any.pm_.c:423
#, 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"
+"You have selected the following server(s): %s\n"
"\n"
-"On which drive are you booting?"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
msgstr ""
-"Heu decidit instal·lar el gestor de l'arrencada en una partició.\n"
-"Això implica que ja teniu un gestor d'arrencada en el disc des del qual "
-"arrenqueu (p.ex.: System Commander).\n"
+"Heu seleccionat el(s) següent(s) servidor(s): %s\n"
"\n"
-"En quina unitat arrenqueu?"
+"\n"
+"Aquests servidors estan activats per defecte. No tenen cap problema de "
+"seguretat\n"
+"conegut, però se'n podrien trobar de nous. Si fos així, haureu d'actualitzar-"
+"los\n"
+"el més aviat possible.\n"
+"\n"
+"\n"
+"Voleu realment instal·lar aquests servidors?\n"
-#
-#: ../../install_interactive.pm:1
+#: ../../install_any.pm_.c:441
#, c-format
msgid ""
-"WARNING!\n"
+"The following packages will be removed to allow upgrading your system: %s\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."
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-"ATENCIÓ!\n"
+"Se suprimiran els següents paquets per poder actualitzar el sistema: %s\n"
"\n"
-"Tot seguit, el DrakX canviarà la mida de la vostra partició de Windows. "
-"Aneu\n"
-"amb compte: aquesta operació és perillosa. Si encara no ho heu fet, sortiu "
-"de\n"
-"la instal·lació, executeu \"chkdsk c:\" a la línia de comandes sota Windows\n"
-"(atenció el programa gràfic\"scandisk\" no és suficient, assegura't d'usar\n"
-"\"chkdsk\" en una línia de comandes), opcionalment executeu defrag, després\n"
-"torneu a començar la instal·lació. També haurieu de fer una còpia de "
-"seguretat\n"
-"de les vostres dades.\n"
-"Quan estigueu segur, premeu D'acord."
+"\n"
+"Voleu realment suprimir aquests paquets?\n"
-#
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tajik keyboard"
-msgstr "Teclat tadjik"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
+msgstr "No es pot utilitzar la difusió sense un domini NIS"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:879
#, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Inseriu un disquet formatat amb FAT a la unitat %s"
+
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
+msgstr "Aquest disquet no està formatat amb FAT"
+
+#: ../../install_any.pm_.c:895
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"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-"Podeu copiar la configuració d'impressió que he fet per la cua %s a la %s, "
-"la cua d'impressió actual. Totes les dades de configuració (nom "
-"d'impressora, descripció, ubicació, tipus de connexió i paràmetres per "
-"defecte) se sobreescriuran, però els treballs d'impressió no seran "
-"transferits.\n"
-"No totes les cues d'impressió poden ser transferides degut a les raons "
-"següents:\n"
+"Per utilitzar aquesta selecció de paquets que heu desat, arrenqueu la "
+"instal·lació amb \"linux defcfg=floppy\""
-#
-#: ../../standalone/drakfont:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, c-format
-msgid "Font List"
-msgstr "Llista de fonts"
+msgid "Error reading file %s"
+msgstr "S'ha produït un error en llegir el fitxer %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_any.pm_.c:1040
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."
+"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 ""
-"Potser us caldrà canviar el dispositiu d'arrencada Open Firware per\n"
-"habilitar el carregador de l'arrencada. Si no veieu l'indicador del\n"
-"carregador de l'arrencada en tornar a arrencar, premeu\n"
-"Command-Option-O-F en tornar a arrencar i introduïu:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Després, escriviu: shut-down\n"
-"En l'arrencada següent heu de veure l'indicador del carregador de "
-"l'arrencada."
+"S'ha produït un error: no s'han trobat dispositius vàlids on crear nous "
+"sistemes de fitxers. Si us plau, comproveu el vostre maquinari per trobar el "
+"problema"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_interactive.pm_.c:21
#, 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"
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"Sembla que teniu unr OldWorld o una màquina\n"
-"desconeguda; el carregador d'arrencada yaboot no us funcionarà.\n"
-"La instal·lació continuarà, però us caldrà utilitzar el BootX\n"
-"o algun altre mètode per arrencar l'ordinador"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Select file"
-msgstr "Seleccioneu el fitxer"
+"Part del maquinari del vostre ordinador necessita controladors\n"
+"\"registrats\" per poder funcionar. Podeu trobar-ne informació a: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:56
msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
+"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 ""
-"Trieu la xara o ordinadors en què les impressores locals han d'estar "
-"disponibles:"
+"Heu de tenir una partició arrel.\n"
+"Per fer-ho, creeu una partició (o feu clic a una d'existent).\n"
+"Després, trieu l'acció \"Punt de muntatge\" i doneu-li el valor '/'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
+msgstr "Heu de tenir una partició d'intercanvi"
+
+#: ../../install_interactive.pm_.c:62
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"
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"Podeu utilitzar aquestes ordres en el camp \"Ordre d'impressió\" dels "
-"diàlegs d'impressió de moltes aplicacions, però ara no heu de subministrar "
-"el fitxer perquè el fitxer per imprimir ja el proporciona l'aplicació.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "Japó"
+"No teniu cap partició d'intercanvi.\n"
+"\n"
+"Voleu continuar igualment?"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print option list"
-msgstr "Imprimeix la llista d'opcions"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Heu de tenir una partició FAT muntada en /boot/efi"
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-"El canvi està fet, però perquè sigui efectiu heu de sortir de la sessió "
-"actual"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
+msgstr "Utilitza l'espai lliure"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
-msgstr "País / Regió"
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
+msgstr "No hi ha prou espai lliure per assignar noves particions"
-#
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search servers"
-msgstr "Cerca servidors"
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
+msgstr "Utilitza les particions existents"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "Falta el nom de la cua NCP!"
+#: ../../install_interactive.pm_.c:102
+msgid "There is no existing partition to use"
+msgstr "No hi ha cap partició que es pugui utilitzar"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Avís: s'ha detectat una altra connexió a Internet, potser utilitzant la "
-"vostra xarxa"
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
+msgstr "Utilitza la particio Windows per al loopback"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM etiquetat com \"%s\""
+#: ../../install_interactive.pm_.c:112
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Quina partició voleu utilitzar per al Linux4Win?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr "Suports CD-RW"
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
+msgstr "Escolliu les mides"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Desa i recupera el generador d'entropia del sistema per a\n"
-"la generació de nombres aleatoris d'una qualitat més alta."
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
+msgstr "Mida de la partició arrel en MB: "
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr "Convertiu la vostra màquina en un servidor fiable"
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr "Mida de la partició d'intercanvi en MB: "
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr "Comprova la contrasenya buida a /etc/shadow"
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
+msgstr "Utilitza l'espai lliure de la partició de Windows"
-#: ../../network/network.pm:1
-#, c-format
-msgid " (driver %s)"
-msgstr " (controlador %s)"
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
+msgstr "A quina partició voleu canviar-li la mida?"
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
-msgstr ""
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "S'està redimensionant la partició de Windows"
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
-"Loopback file(s):\n"
-" %s\n"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-"Fitxer(s) de loopback:\n"
-" %s\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr "No ho sé"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", host TCP/IP \"%s\", port %s"
+"El redimensionador de la FAT no pot gestionar la vostra partició. \n"
+"S'ha produït l'error següent: %s"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../install_interactive.pm_.c:137
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?"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-"Ara es configurarà un disquet d'instal·lació automàtica. Aquesta "
-"característica és perillosa i s'ha d'utilitzar amb molta cura.\n"
-"\n"
-"Amb aquesta característica, sereu capaç de repetir la instal·lació que ja "
-"heu fet en aquest ordinador, tot i que se us consultarà en alguns passos, "
-"perquè pugueu canviar els valors.\n"
-"\n"
-"Per màxima seguretat, el particionament i la formatació mai seran executats "
-"automàticament, independentment del que trieu durant la instal·lació "
-"d'aquest ordinador.\n"
-"\n"
-"Voleu continuar?"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Telugu"
-msgstr "Tokelau"
+"La partició de Windows està massa fragmentada. Si us plau, reinicieu "
+"l'ordinador sota Windows i executeu l'eina \"defrag\". Llavors, torneu a "
+"començar la instal·lació del Mandrake Linux."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#
+#: ../../install_interactive.pm_.c:138
msgid ""
+"WARNING!\n"
"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
+"ATENCIÓ!\n"
"\n"
-"\n"
-"La vostra targeta fa servir actualment el controlador %s \"%s\" (el "
-"controlador per defecte per a aquesta targeta és \"%s\")"
-
-#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Uninstall"
-msgstr "Post-desinstal·lació"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connecting to Internet "
-msgstr "S'està connectant a Internet "
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
-msgstr " ("
+"Tot seguit, el DrakX canviarà la mida de la vostra partició de Windows. Aneu "
+"amb\n"
+"compte: aquesta operació és perillosa. Si encara no ho heu fet, sortiu de "
+"la\n"
+"instal·lació, executeu l'Scandisk sota Windows (i potser també el defrag) i\n"
+"torneu a començar la instal·lació. Feu també una còpia de seguretat de les\n"
+"vostres dades.\n"
+"Quan estigueu segur, premeu \"D'acord\"."
-#
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid level"
-msgstr "Nivell cpuid"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Quina mida voleu deixar per a la partició de Windows?"
-#: ../../printer/main.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Servidor Novell \"%s\", impressora \"%s\""
+msgid "partition %s"
+msgstr "partició %s"
-#
-#: ../../keyboard.pm:1
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "Mongol (ciríl·lic)"
+msgid "FAT resizing failed: %s"
+msgstr "Ha fallat el redimensionament de la FAT: %s"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Add a module"
-msgstr "Afegeix un mòdul"
+#: ../../install_interactive.pm_.c:171
+msgid ""
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"No hi ha cap partició FAT a la qual canviar la mida o que es pugui utilitzar "
+"com a loopback (o no hi queda prou espai)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr "Perfil a suprimir:"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr "Esborra tot el disc"
-#
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Local measure"
-msgstr "Mesura local"
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr "Elimina el Windows(TM)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
-msgstr "Atenció: l'adreça IP %s està reservada, normalment!"
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Teniu més d'un disc dur; en quin voleu instal·lar el Linux?"
-#: ../../mouse.pm:1
+#: ../../install_interactive.pm_.c:183
#, c-format
-msgid "busmouse"
-msgstr "busmouse"
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+"Es perdran TOTES les particions, i les dades que contenen, de la unitat %s"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Crea imatges d'arrencada habilitades per a l'Etherboot:\n"
-" \tPer arrencar un nucli mitjançant Etherboot cal crear una imatge "
-"kernel/initrd especial.\n"
-" \tL'mkinitrd-net fa molta d'aquesta feina i el drakTermServ és només "
-"una interfície gràfica\n"
-" \tper ajudar a gestionar/personalitzar aquestes imatges. Per crear "
-"el fitxer \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include, que s'integra com a "
-"inclusió en \n"
-" \tdhcpd.conf, heu de crear les imatges Etherboot per a un nucli "
-"complet com a mínim."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Entrada del compte (nom d'usuari)"
+#: ../../install_interactive.pm_.c:191
+msgid "Custom disk partitioning"
+msgstr "Particionament personalitzat de disc"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
-msgstr "Error Fdiv"
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr "Utilitza l'fdisk"
-#: ../../network/drakfirewall.pm:1
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-"Configuració del drakfirewall\n"
-"\n"
-"Assegureu-vos d'haver configurat l'accés a la xarxa local/Internet\n"
-"amb el drakconnect abans de continuar."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr "Accepta l'eco icmp broadcast"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr "Uruguai"
+"Ara podeu fer les particions a %s.\n"
+"Quan acabeu, no oblideu desar-les utiltzant 'w'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Benin"
-msgstr "Benín"
+#: ../../install_interactive.pm_.c:227
+msgid "You don't have enough free space on your Windows partition"
+msgstr "No teniu prou espai lliure a la partició de Windows"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "Servidor SMB/Windows \"%s\", recurs compartit \"%s\""
+#: ../../install_interactive.pm_.c:243
+msgid "I can't find any room for installing"
+msgstr "No es pot trobar espai per a la instal·lació"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path selection"
-msgstr "Selecció del camí"
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+"L'auxiliar de particionament del DrakX ha trobat les solucions següents:"
-#: ../../standalone/scannerdrake:1
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid "Name/IP address of host:"
-msgstr "Nom/Adreça IP de l'ordinador:"
+msgid "Partitioning failed: %s"
+msgstr "Ha fallat el particionament: %s"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr "S'està activant la xarxa"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom & system settings"
-msgstr "Arranjament personalitzat del sistema"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr "S'està desactivant la xarxa"
-#: ../../partition_table/raw.pm:1
-#, c-format
+#: ../../install_steps.pm_.c:76
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."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"Alguna cosa no va bé en la vostra unitat. \n"
-"Ha fallat una comprovació de la integritat de les dades. \n"
-"Això vol dir que qualsevol cosa que s'escrigui al disc acabarà amb dates "
-"aleatòries i malmeses."
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Falta el nom o la IP de l'ordinador de la impressora!"
+"S'ha produït un error, però no sé com gestionar-lo correctament.\n"
+"Si continueu, és sota la vostra responsabilitat."
-#
-#: ../../standalone/drakbackup:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr ""
-"Si us plau, escolliu tots els usuaris que voleu incloure en la còpia de "
-"seguretat."
+msgid "Duplicate mount point %s"
+msgstr "Duplica el punt de muntatge %s"
-# Com que no se sap si %s serà masc. o fem., ja que es parla del printerdrake s'assumeix que es tracta d'una impressora i per tant poso "la".
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps.pm_.c:380
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+"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 ""
-"La %s s'ha de configurar amb el printerdrake.\n"
-"Podeu executar el printerdrake des del Centre de Control Mandrake en la "
-"secció Maquinari."
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Key isn't writable"
-msgstr "No teniu instal·lat XawTV!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bangladesh"
-msgstr "Bangla Desh"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
-msgstr "Japó (cable)"
-
-#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Initial tests"
-msgstr "Comprovacions inicials"
+"Alguns paquets importants no s'han instal·lat correctament.\n"
+"La vostra unitat de CD-ROM, o bé el CD-ROM, són defectuosos.\n"
+"Comproveu el CD-ROM en un ordinador instal·lat mitjançant \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
-#: ../../network/isdn.pm:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "Continue"
-msgstr "Continua"
+msgid "Welcome to %s"
+msgstr "Benvingut a %s"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom Restore"
-msgstr "Restauració personalitzada"
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "Saturday"
-msgstr "Dissabte"
+msgid "Entering step `%s'\n"
+msgstr "S'està entrant en el pas '%s'\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:146
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."
+"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 ""
-"\"%s\": si es detecta una targeta de so al vostre sistema, es mostra aquí.\n"
-"Si veieu que la targeta de so que es mostra no és la que realment teniu al\n"
-"sistema, podeu fer clic al botó i seleccionar un altre programa de control."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the root umask."
-msgstr "Defineix umask de root."
-
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "S'ha produït un error en llegir el fitxer %s"
+"El vostre sistema està baix de recursos; podeu tenir algun problema en\n"
+"instal·lar el Mandrake Linux. Si això passa, podeu provar d'instal·lar-lo "
+"en\n"
+"mode text. Per fer-ho, premeu 'F1' en arrencar des del CD-ROM i escriviu "
+"'text'."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr "Basat en script"
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr "Tipus d'instal·lació"
#
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "PLL setting:"
-msgstr "Configuració del PLL:"
+#: ../../install_steps_gtk.pm_.c:160
+msgid "Please choose one of the following classes of installation:"
+msgstr "Si us plau, trieu un dels tipus d'instal·lació següents:"
-#
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Heu de tenir una partició FAT muntada en /boot/efi"
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
+msgstr "Selecció del grup de paquets"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
-msgstr " en"
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
+msgstr "Selecció individual de paquets"
-#: ../../diskdrake/dav.pm:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid "The URL must begin with http:// or https://"
-msgstr "L'URL ha de començar per http:// o https://"
+msgid "Total size: %d / %d MB"
+msgstr "Mida total: %d / %d MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Podeu especificar directament l'URI per accedir a la impressora. L'URI ha de "
-"complir les especificacions CUPS o Foomatic. Cal remarcar que alguns gestors "
-"de cues no accepten tots els tipus d'URI."
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
+msgstr "Paquet incorrecte"
-#: ../../any.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "Un altre SO (SunOS...)"
+msgid "Name: %s\n"
+msgstr "Nom: %s\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid "Install/Upgrade"
-msgstr "Instal·la/Actualitza"
+msgid "Version: %s\n"
+msgstr "Versió: %s\n"
-#: ../../install_steps_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid "%d packages"
-msgstr "%d paquets"
+msgid "Size: %d KB\n"
+msgstr "Mida: %d kB\n"
-#: ../../crypto.pm:1 ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
-msgid "Costa Rica"
-msgstr "Costa Rica"
+msgid "Importance: %s\n"
+msgstr "Importància: %s\n"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:360
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"
+"You can't select this package as there is not enough space left to install it"
msgstr ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Aplicació per fer i recuperar còpies de seguretat\n"
-"\n"
-"--default : desa els directoris per defecte.\n"
-"--debug : mostra tots els missatges de depuració.\n"
-"--show-conf : llista de fitxers o directoris dels quals\n"
-" s'ha de fer la còpia de seguretat.\n"
-"--config-info : explica les opcions del fitxer de\n"
-" configuració (per a no-usuaris d'X).\n"
-"--daemon : utilitza la configuració del dimoni. \n"
-"--help : mostra aquest missatge.\n"
-"--version : mostra el número de versió.\n"
+"No podeu seleccionar aquest paquet perquè no queda prou espai per instal·lar-"
+"lo"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain Authentication Required"
-msgstr "Cal l'autenticació de domini"
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
+msgstr "Ara s'instal·laran els paquets següents"
-#
-#: ../../security/level.pm:1
-#, c-format
-msgid "Use libsafe for servers"
-msgstr "Empra libsafe per als servidors"
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
+msgstr "Ara s'eliminaran els paquets següents"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Icelandic"
-msgstr "Islandès"
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
+msgstr "No podeu seleccionar/desseleccionar aquest paquet"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
-msgstr ""
-"\n"
-"Sintaxi: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Aquest paquet és obligatori; no es pot desseleccionar"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
+msgstr "No podeu desseleccionar aquest paquet; ja està instal·lat"
+
+#: ../../install_steps_gtk.pm_.c:395
msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
-"Mida màxima\n"
-" permesa per a Drakbackup (MB)"
+"Aquest paquet s'ha d'actualitzar.\n"
+"Esteu segur que voleu desseleccionar-lo?"
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Muntatges circulars %s\n"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "No podeu desseleccionar aquest paquet; s'ha d'actualitzar"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo/grub mode"
-msgstr "Mode LILO/Grub"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
+msgstr "Mostra automàticament els paquets seleccionats"
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "Martinica"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr "Instal·la"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Disc Dur / NFS"
+#
+#: ../../install_steps_gtk.pm_.c:407
+msgid "Load/Save on floppy"
+msgstr "Carrega/Desa al disquet"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Old user list:\n"
-msgstr ""
-"\n"
-"- Fitxers d'usuari:\n"
+#
+#: ../../install_steps_gtk.pm_.c:408
+msgid "Updating package selection"
+msgstr "S'està actualitzant la selecció de paquets"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
-msgstr ""
+#
+#: ../../install_steps_gtk.pm_.c:413
+msgid "Minimal install"
+msgstr "Instal·lació mínima"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "a number"
-msgstr "un número"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
+msgstr "Escolliu els paquets que voleu instal·lar"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "Suec"
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr "S'està instal·lant"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Quin controlador de %s he de provar?"
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr "S'està estimant"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr "Rebreu un avís si algun dels serveis seleccionats ja no funciona"
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr "Temps restant "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Weekday"
-msgstr "Dia de la setmana"
+#: ../../install_steps_gtk.pm_.c:469
+msgid "Please wait, preparing installation..."
+msgstr "Espereu si us plau, s'està preparant la instal·lació..."
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid "Filesystem types:"
-msgstr "Tipus de sistema de fitxers:"
+msgid "%d packages"
+msgstr "%d paquets"
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "Northern Mariana Islands"
-msgstr "Illes Marianes del Nord"
+msgid "Installing package %s"
+msgstr "S'està instal·lant el paquet %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", dispositiu multifunció en HP JetDirect"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "Accepta"
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "cap"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
+msgstr "Rebutja"
-#: ../../standalone/drakconnect:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Nom del perfil a crear (el nou perfil es crea com una còpia de l'actual):"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Floppy"
-msgstr "Disquet"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "referenciat Ghostscript"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Bootloader"
-msgstr "Carregador d'arrencada"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
+"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 ""
+"Canvieu el CD-ROM!\n"
+"\n"
+"Si us plau, inseriu el CD-ROM etiquetat com \"%s\" a la unitat i després\n"
+"premeu D'acord.\n"
+"Si no el teniu, premeu Cancel·la per no fer la instal·lació des d'aquest CD-"
+"ROM."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "Mou"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Bootloader to use"
-msgstr "Carregador de l'arrencada a utilitzar"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "Ordinadordel servidor SMB"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
+msgstr "Voleu seguir igualment?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Name Servers:"
-msgstr "Servidors de noms:"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
+msgstr "S'ha produït un error en ordenar els paquets:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Minute"
-msgstr "Minut"
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
+msgstr "S'ha produït un error en instal·lar els paquets:"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:10
msgid ""
"\n"
"Warning\n"
@@ -7605,685 +5359,427 @@ msgstr ""
"propietat intel·lectual i de copyright aplicables als programes\n"
"informàtics.\n"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Expert mode"
-msgstr "/Mode _expert"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Suprimeix aquesta impressora de Star Office/OpenOffice.org/GIMP"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"El Servidor Virtual de Linux (LVS) s'usa per construir un servidor de \n"
-"gran capacitat i robustesa."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr "Micronèsia"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4.294 milions de colors (32 bits)"
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
+msgstr "S'ha produït un error"
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
-msgstr "Llicència"
+#
+#: ../../install_steps_interactive.pm_.c:85
+msgid "Do you really want to leave the installation?"
+msgstr "Realment voleu deixar la instal·lació?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "La generació de les claus pot trigar una estona."
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
+msgstr "Acord de llicència"
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:113
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"
+"Introduction\n"
"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
-"<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"
+"1. License Agreement\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"
+"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"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\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"
-"<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"
+"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"
-"<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 ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr "Detecció automàtica de la impressora (local, TCP/Socket i SMB)"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr "USB Sagem (utilitzant el pppoa)"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"S'ha produït un error: no s'han trobat dispositius vàlids on crear nous "
-"sistemes de fitxers. Si us plau, comproveu el vostre maquinari per trobar el "
-"problema"
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "S'està iniciant el sistema d'impressió en arrencar l'ordinador"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Voleu iniciar la connexió en arrencar?"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr "ID del processador"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr "Resolució de problemes amb el so"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "Polonès (disposició qwerty)"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Afegeix impressora"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
"\n"
-"Drakbackup activities via CD:\n"
+"3. The GPL License and Related Licenses\n"
"\n"
-msgstr ""
+"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"
-"Activitats del Drakbackup a través del CD:\n"
"\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
+"4. Intellectual Property Rights\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"
+"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"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Ara s'instal·larà el sistema d'impressió %s en un sistema que s'executa en "
-"el nivell de seguretat %s.\n"
"\n"
-"Aquest sistema d'impressió executa un dimoni (procés en segon pla) que "
-"espera els treballs d'impressió i els gestiona. Aquest dimoni és accessible "
-"per ordinadors remots connectats a la xarxa i, per tant, és un possible punt "
-"d'atac. Per tant, només s'arrenquen per defecte uns pocs dimonis triats en "
-"aquest nivell de seguretat.\n"
+"5. Governing Laws \n"
"\n"
-"Realment voleu configurar la impressió en aquest ordinador?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Ordinador \"%s\", port %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "Aquesta partició no es pot utilitzar per al loopback"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr "El fitxer ja existeix. El voleu utilitzar?"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
-msgstr "rebut:"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr "Tecla d'Alternativa Gràfica"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "la llista de controladors alternatius per a aquesta targeta de so"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Passarel·la"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr "Tonga"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "Tunísia"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing"
-msgstr "Compartició d'escàners"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile: "
-msgstr "Perfil: "
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
+"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 ""
-"Feu clic a un dispositiu de l'arbre de l'esquerra per veure'n aquí la "
-"informació."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr "Permet/Impedeix l'entrada automàtica."
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
-msgstr "No teniu instal·lat XawTV!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "No incloguis fitxers crítics (passwd, group, fstab)"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "nom antic de dispositiu estàtic, usat en el paquet de desenvolupament"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
-msgstr "Habilita el registre de paquets IPv4 estranys"
-
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
-msgstr "Aquesta etiqueta ja està en ús"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"Introducció\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
+"D'ara endavant, hom es referirà al sistema operatiu i als diferents\n"
+"components disponibles en la distribució Mandrake Linux com als\n"
+"\"Productes de programari\". Els Productes de programari inclouen,\n"
+"però no estan restringits a, el conjunt de programes, mètodes, regles\n"
+"i documentació relativa al sistema operatiu i els diferents\n"
+"components de la distribució Mandrake Linux.\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"
+"1. Acord de llicència\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"
+"Si us plau, llegiu atentament aquest document. Aquest document és un\n"
+"acord de llicència entre la vostra persona i MandrakeSoft S.A., que\n"
+"s'aplica als Productes de programari. Pel fet d'instal·lar, duplicar\n"
+"o utilitzar els Productes de programari en qualsevol forma esteu\n"
+"acceptant explícitament, i expressant el vostre acord a avenir-vos a\n"
+"les clàusules i condicions d'aquesta Llicència. Si no esteu d'acord\n"
+"amb qualsevol part de la Llicència, no esteu autoritzat a instal·lar,\n"
+"duplicar o utilitzar els Productes de programari. Qualsevol intent\n"
+"d'instal·lar, duplicar o utilitzar els Productes de programari en una\n"
+"forma que no s'adapti a les clàusules i condicions d'aquesta\n"
+"Llicència, és nul i finalitzarà els vostres drets sobre la mateixa.\n"
+"En finalitzar-se la Llicència, heu de destruir immediatament totes\n"
+"les còpies dels Productes de programari.\n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
"\n"
-"Benvingut a l'auxiliar de configuració de la impressora\n"
+"2. Garantia limitada\n"
"\n"
-"Aquest auxiliar us ajudarà a instal·lar la o les impressores connectades a "
-"aquest ordinador o connectades directament a la xarxa.\n"
+"Els Productes de programari i documentació adjunta es subministren\n"
+"\"tal com són\", sense cap garantia, fins al punt permés per la llei.\n"
+"MandrakeSoft S.A. no serà, sota cap circumstància, i fins al punt\n"
+"permés per la llei, responsable de cap dany especial, incidental ni\n"
+"directe (incloent, sense limitar-se a, els danys per pèrdua de\n"
+"negocis, interrupció de negocis, pèrdues financeres, multes i costes\n"
+"judicials, o qualsevol altre dany que resultin d'un judici, o\n"
+"qualsevol altre pèrdua d'importància) que resulti de l'ús o de la\n"
+"impossibilitat d'utilitzar els Productes de programari, fins i tot si\n"
+"MandrakeSoft S.A. ha estat avisat de la possibilitat que\n"
+"s'esdevinguin aquests danys.\n"
"\n"
-"Si teniu impressores connectades a aquesta màquina, endolleu-les i engegueu-"
-"les per tal de poder-les detectar automàticament. Engegueu també les "
-"impressores de la xarxa.\n"
+"RESPONSABILITAT LIMITADA RELATIVA A LA POSSESSIÓ O UTILITZACIÓ DE PROGRAMARI "
+"PROHIBIT EN ALGUNS PAÏSOS\n"
"\n"
-"Tingueu en compte que la detecció automàtica d'impressores de la xarxa local "
-"triga més que la detecció d'impressores connectades directament a la "
-"màquina. Per tant, desactiveu la detecció automàtica d'impressores de xarxa "
-"si no la necessiteu.\n"
+"Fins al punt permés per la llei, MandrakeSoft S.A. o els seus\n"
+"distribuïdors no seran, sota cap circumstància, responsables de cap\n"
+"dany especial, incidental ni directe (incloent, sense limitar-se a,\n"
+"els danys per pèrdua de negocis, interrupció de negocis, pèrdues\n"
+"financeres, multes i costes judicials, o qualsevol altre dany que\n"
+"resultin d'un judici, o qualsevol altre pèrdua d'importància) que\n"
+"resulti de la possessió i utilització dels components de programari o\n"
+"de la seva descàrrega des d'un dels llocs de Mandrake Linux, que\n"
+"estiguin prohibides o restringides en alguns països per les lleis\n"
+"locals. Aquesta responsabilitat limitada s'aplica, però no hi està\n"
+"restringida, als potents components criptogràfics inclosos als\n"
+"Productes de programari.\n"
"\n"
-"Feu clic a \"Següent\" quan estigueu a punt, o a \"Cancel·la\" si no voleu "
-"configurar ara les impressores."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Després de formatar la partició %s, se'n perdran totes les dades"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection Time: "
-msgstr "Temps de connexió: "
-
-#: ../../standalone/livedrake:1
-#, 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."
-msgstr ""
-"Si us plau, inseriu el CD-ROM d'instal·lació a la unitat i premeu "
-"'D'acord'.\n"
-"Si no el teniu, premeu 'Cancel·la' per evitar l'actualització en directe."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use group id for execution"
-msgstr "Usa l'identificador del grup (GID) per a l'execució"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "Escolliu l'usuari per defecte:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "Gabon"
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
+"3. la llicència GPL i llicències relacionades\n"
"\n"
-"No cal configurar aquí les impressores de servidors CUPS remots; aquestes "
-"impressores es detectaran automàticament."
-
-#: ../../any.pm:1
-#, 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."
-msgstr ""
-"Mandrake Linux pot utilitzar múltiples idiomes. Seleccioneu\n"
-"els llenguatges que volgueu instal·lar. Estaran disponibles\n"
-"quan reinicieu el sistema, després que la instal·lació s'hagi completat."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
-"Directori (o mòdul) d'aquest ordinador on voleu desar la còpia de seguretat."
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain"
-msgstr "Domini"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Mida exacta de la RAM, si cal (s'han trobat %d MB)"
-
-#: ../../help.pm:1
-#, 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"
+"Els Productes de programari consisteixen en components creats per\n"
+"diferents persones o entitats. La majoria d'aquests components es\n"
+"regeixen per les clàusules i condicions de la Llicència General\n"
+"Pública de GNU, a la qual d'ara endavant hom s'hi referirà com a\n"
+"\"GPL\", o de llicències similars. la majoria d'aquestes llicències\n"
+"us permeten duplicar, adaptar o redistribuir els components que\n"
+"cobreixen. Si us plau, llegiu atentament les clàusules i condicions\n"
+"de l'acord de llicència de cada component abans d'utilitzar-lo.\n"
+"Qualsevol pregunta sobre la lllicència d'un component s'ha d'adreçar\n"
+"al seu autor i no a MandrakeSoft.\n"
+"Els programes desenvolupats per MandrakeSoft S.A. es regeixen per la\n"
+"llicència GPL.La documentació escrita per MandrakeSoft S.A. està regida per "
+"una\n"
+"llicència específica; consulteu la documentació per a més\n"
+"informació.\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"
+"4. Drets sobre la propietat intel·lectual\n"
"\n"
-"If it cannot make a determination, DrakX will ask you where to place the\n"
-"bootloader."
-msgstr ""
-"El LILO i el grub són carregadors d'arrencada del GNU/Linux. Normalment,\n"
-"aquesta fase es realitza de manera totalment automàtica. El DrakX "
-"analitzarà\n"
-"el sector d'arrencada del disc i acturà conforme al que hi trobi:\n"
+"Tots els drets sobre els components dels Productes de programari\n"
+"pertanyen als seus autors respectius i estan protegits per les lleis\n"
+"de propietat intel·lectual i de copyright aplicables als programes\n"
+"informàtics.\n"
+"MandrakeSoft S.A. es reserva els drets de modificar o adaptar els\n"
+"Productes de programari, totalment o parcialment, per tots els\n"
+"mitjans i amb totes les finalitats.\n"
+"\"Mandrake\", \"Mandrake Linux\" i els logotips associats son marques\n"
+"registrades de MandrakeSoft S.A.\n"
"\n"
-" * si troba un sector d'arrencada del Windows, el reemplaçarà amb un sector\n"
-"d'arrencada del grub/LILO. D'aquesta manera podreu carregar el GNU/Linux\n"
-"o un altre SO.\n"
"\n"
-" * si troba un sector d'arrencada grub o LILO, el reemplaçarà amb un de "
-"nou.\n"
+"5. Lleis rectores \n"
"\n"
-"Si no pot prendre una decisió, el DrakX us preguntarà on ha de col·locar el\n"
-"carregador d'arrencada."
+"Si qualsevol part d'aquest acord és declarat nul, il·legal o\n"
+"inaplicable per un tribunal, aquesta part s'exclourà del contracte.\n"
+"Seguiu obligat, però, per les altres seccions aplicables de\n"
+"l'acord.\n"
+"Les clàusules i condicions d'aquesta Llicència es regeixen per les\n"
+"lleis de França.\n"
+"Tots els litigis sobre les clàusules d'aquesta llicència es dirimiran\n"
+"preferiblement fora dels tribunals. Com a últim recurs, el litigi es\n"
+"portarà als tribunals competents de París, França.\n"
+"Per a qualsevol tema relacionat amb aquest document, poseu-vos en\n"
+"contacte amb MandrakeSoft S.A.\n"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "DNS 2 del proveïdor (opcional)"
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
+msgstr "Esteu segur que voleu rebutjar la llicència?"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "Dispositiu d'arrencada"
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "Teclat"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "A quina partició voleu canviar-li la mida?"
+#
+#: ../../install_steps_interactive.pm_.c:218
+msgid "Please choose your keyboard layout."
+msgstr "Si us plau, seleccioneu la disposició del vostre teclat."
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr "Illes Perifèriques Menors dels EUA"
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
+msgstr "Aquesta és la llista completa de teclats disponibles"
-#: ../../lang.pm:1
-#, c-format
-msgid "Djibouti"
-msgstr "Djibouti"
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
+msgstr "Quin tipus d'instal·lació voleu?"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Eina per veure els registres"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
+msgstr "Instal·la/Actualitza"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected on port %s"
-msgstr "detectat al port %s"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
+msgstr "Es tracta d'una instal·lació o d'una actualització?"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD"
-msgstr "LPD"
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr "Recomanada"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Targeta gràfica: %s\n"
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Expert"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Estableix com a _predeterminada"
+#
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade"
+msgstr "Actualitza"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
-msgstr ""
+#
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade packages only"
+msgstr "Només actualitza paquets"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
+#
+#: ../../install_steps_interactive.pm_.c:282
+msgid "Please choose the type of your mouse."
+msgstr "Si us plau, seleccioneu el tipus del vostre ratolí."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Series amb emulació de rodeta"
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr "Port del ratolí"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "Aquesta plataforma no suporta particions ampliades"
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
+msgstr "Si us plau, seleccioneu el port sèrie a què està connectat el ratolí."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Splash selection"
-msgstr "Selecció de pantalla de presentació"
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
+msgstr "Emulació dels botons"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Configuració de l'XDSI"
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
+msgstr "Emulació del botó 2"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "high"
-msgstr "alt"
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
+msgstr "Emulació del botó 3"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Connexió a Internet compartida"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr "S'estan configurant les targetes PCMCIA..."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Choose file"
-msgstr "Escolliu el fitxer"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Summary: "
-msgstr "Resum: "
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr "S'està configurant l'IDE"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-"Atenció! S'ha detectat una configuració existent del tallafoc. Potser us "
-"caldrà fer algun ajustament manual després de la instal·lació."
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "S'està imprimint o llegint una targeta de fotos en \"%s\""
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr "No hi ha particions disponibles"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
+msgstr "S'estan explorant les particions per trobar els punts de muntatge"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr "Escolliu els punts de muntatge"
+
+#: ../../install_steps_interactive.pm_.c:386
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-"Voleu habilitar la impressió a les impressores anteriors o a les impressores "
-"de la xarxa local?\n"
+"No hi ha prou espai lliure per un 1MB de bootstrap! La instal·lació "
+"continuarà, però per iniciar el sistema necessitareu crear la partició de "
+"bootstrap amb el DiskDrake"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer default settings"
-msgstr "Paràmetres per defecte de la impressora"
+#: ../../install_steps_interactive.pm_.c:395
+msgid "No root partition found to perform an upgrade"
+msgstr "No s'ha trobat cap partició arrel per realitzar una actualització"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Ratolí PS2 genèric amb rodeta"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr "Partició arrel"
-#: ../../standalone/harddrake2:1
-#, 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)"
-msgstr ""
-"el senyalador WP del registre CR0 de la CPU reforça la protecció contra "
-"escriptura a nivell de la pàgina de memòria, permetent que el processador "
-"eviti accessos del nucli no comprovats a la memòria de l'usuari (és a dir, "
-"que és un control contra errors)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "S'està suprimint la impressora antiga \"%s\"..."
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr "Quina és la partició arrel (/) del vostre sistema?"
-#
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Select a device !"
-msgstr "Seleccioneu un dispositiu!"
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+"Us caldrà tornar a arrencar per tal que les modificacions de la taula de "
+"particions tinguin efecte"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected server"
-msgstr "Elimina el servidor seleccionat"
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr "Escolliu les particions que voleu formatar"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using dhcp) usb"
-msgstr "USB Sagem (utilitzant el dhcp)"
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
+msgstr "Voleu comprovar els blocs incorrectes?"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Southern Territories"
-msgstr "Territoris francesos del Sud"
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr "S'estan formatant les particions"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid "the vendor name of the processor"
-msgstr "el nom del distribuïdor del processador"
+msgid "Creating and formatting file %s"
+msgstr "S'està creant i formatant el fitxer %s"
-#: ../../standalone/drakTermServ:1
+#: ../../install_steps_interactive.pm_.c:470
#, 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."
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-" - Manté %s:\n"
-" \t\tPer tal que els usuaris puguin entrar al sistema des d'un client "
-"sense disc, cal que la seva entrada a\n"
-" \t\t/etc/shadow estigui duplicada a %s. El drakTermServ hi ajuda "
-"afegint\n"
-" \t\to eliminant, d'aquest fitxer, usuaris del sistema."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr "Cal fer una còpia de seguretat de totes les dades d'aquesta partició"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "S'està instal·lant el paquet %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr "S'està comprovant el dispositiu i configurant l'HPOJ..."
+"És impossible de comprovar el sistema de fitxers %s. Voleu reparar els "
+"errors? (Vigileu, podríeu perdre dades.)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-"Si voleu tenir més particions, suprimiu-ne una per poder crear una partició "
-"ampliada"
+"No hi ha prou espai d'intercanvi per completar la instal·lació; si us plau, "
+"afegiu-ne"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:479
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
-"La impressora ha estat configurada automàticament per permetre-us l'accés "
-"als dispositius de targetes de fotos del vostre PC. Ara podeu accedir a les "
-"targetes de fotos emprant l'eina gràfica \"MtoolsFM\" (menú \"Aplicacions\" -"
-"> \"Eines d'arxivament\" -> \"Gestor de fitxers MTools\") o les utilitats de "
-"la línia d'ordres \"mtools\" (introduïu \"man mtools\" a la línia d'ordres "
-"per a més informació). Trobareu el sistema de fitxers de la targeta sota la "
-"lletra d'unitat \"p:\", o a les lletres següents si teniu més d'una "
-"impressora HP amb unitats de targetes de fotos. Al \"MToolsFM\" podeu "
-"explorar les diferents lletres d'unitat amb el camp que es troba a la "
-"cantonada superior dreta de les llistes de fitxers."
+"S'estan cercant els paquets disponibles i reconstruint la base de dades "
+"d'rpm..."
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "Paquets a instal·lar"
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr "S'estan cercant els paquets disponibles..."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"Es perdran TOTES les particions, i les dades que contenen, de la unitat %s"
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Looking at packages already installed..."
+msgstr "S'estan cercant els paquets ja instal·lats..."
+
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr "S'estan cercant els paquets a actualitzar"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:505
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -8292,4363 +5788,3029 @@ msgstr ""
"Al vostre sistema no li queda prou espai per a la instal·lació o "
"actualització (%d > %d)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:541
msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Cada impressora necessita un nom (per exemple \"impressora\"). Els camps de "
-"Descripció i Ubicació no són necessaris. Són comentaris per als usuaris."
-
-#: ../../help.pm:1
-#, 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."
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
msgstr ""
-"\"%s\": feu clic al botó \"%s\" per obrir l'auxiliar de configuració de la "
-"impressora.\n"
-"Consulteu el capítol corresponent de la ``Guia d'iniciació'' per tenir més "
-"informació\n"
-"sobre la configuració de noves impressores. La interfície que apareix és "
-"similar a la\n"
-"que s'utilitza durant la instal·lació."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr "Bhutan"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "Interfície de la xarxa"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "La desconnexió d'Internet ha fallat."
+"Si us plau, carregueu o deseu la selecció de paquets en el disquet.\n"
+"El format és el mateix que en els disquets generats d'instal·lació "
+"automàtica."
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
-msgstr "S'estan llegint dades de la impressora..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "Teclat coreà"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Load from floppy"
+msgstr "Carrega des del disquet"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Not connected"
-msgstr "Sense connexió"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr "Desa al disquet"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "Configuració de la connexió a Internet"
+#
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Loading from floppy"
+msgstr "S'està carregant des del disquet"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
-msgstr "Grec"
+#
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Package selection"
+msgstr "Selecció de paquets"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Christopher i Nevis"
+#
+#: ../../install_steps_interactive.pm_.c:552
+msgid "Insert a floppy containing package selection"
+msgstr "Inseriu un disquet amb la selecció de paquets"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Ratolí genèric de 3 botons amb emulació de rodeta"
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
+msgstr "La mida seleccionada és superior a la disponible"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
-msgstr "Voleu habilitar l'arrencada des d'OF?"
+#
+#: ../../install_steps_interactive.pm_.c:649
+msgid "Type of install"
+msgstr "Tipus d'instal·lació"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "No podeu utilitzar el JFS per a particions inferiors a 16 MB"
+#: ../../install_steps_interactive.pm_.c:650
+msgid ""
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"No heu seleccionat cap grup de paquets.\n"
+"Escolliu la instal·lació mínima que voleu:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Esborra el suport RW (1a sessió)"
+#
+#: ../../install_steps_interactive.pm_.c:653
+msgid "With X"
+msgstr "Amb X"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Refresc vertical del monitor: %s\n"
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
+msgstr "Amb la documentació bàsica (recomanat!)"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "Punt de muntatge"
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Instal·lació realment mínima (especialment no urpmi)"
-#: ../../Xconfig/test.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:741
msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
+"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 ""
-"S'ha produït un error:\n"
-"%s\n"
-"Intenteu canviar alguns paràmetres"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "Host TCP/IP \"%s\", port %s"
+"Si teniu tots els CD de la llista de sota, feu clic a 'D'acord'.\n"
+"Si no teniu cap d'aquests CD, feu clic a 'Cancel·la'.\n"
+"Si només falten alguns CD, desseleccioneu-los i feu clic a 'D'acord'."
-#
-#: ../../standalone/drakperm:1
+#: ../../install_steps_interactive.pm_.c:746
#, c-format
-msgid "User :"
-msgstr "Usuari :"
+msgid "Cd-Rom labeled \"%s\""
+msgstr "CD-ROM etiquetat com \"%s\""
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore system"
-msgstr "Restaura el sistema"
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr "S'està preparant la instal·lació"
-#: ../../standalone/scannerdrake:1
+#: ../../install_steps_interactive.pm_.c:776
#, c-format
msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
+"Installing package %s\n"
+"%d%%"
msgstr ""
-"Aquestes són les màquines en què l'escàner o escàners connectats localment "
-"han d'estar disponibles:"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
-msgstr "IP final del DHCP"
+"S'està instal·lant el paquet %s\n"
+"%d%%"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Another one"
-msgstr "Un altre"
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
+msgstr "Configuració posterior a la instal·lació"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:828
#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Inseriu el disquet d'arrencada utilitzat a la unitat %s"
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:834
#, c-format
-msgid "Colombia"
-msgstr "Colòmbia"
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "Inseriu el disquet d'Actualització de Mòduls a la unitat %s"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:861
msgid ""
-"Current configuration of `%s':\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates ?"
msgstr ""
-"Configuració actual de '%s':\n"
+"Ara teniu l'oportunitat de baixar paquets actualitzats. Aquests paquets\n"
+"han estat publicats després del llançament de la distribució. Poden "
+"contenir\n"
+"actualitzacions de seguretat o correccions d'errors.\n"
"\n"
-"Xarxa: %s\n"
-"Adreça IP: %s\n"
-"Atribució IP: %s\n"
-"Controlador: %s"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n'Play"
+"Per baixar aquests paquets, necessitareu tenir una connexió a Internet\n"
+"operativa.\n"
+"\n"
+"Voleu instal·lar aquestes actualitzacions?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr "Reunion"
+#
+#: ../../install_steps_interactive.pm_.c:876
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgstr ""
+"S'està contactant amb el servidor Mandrake Linux per obtenir la llista de "
+"rèpliques disponibles..."
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "Detalls"
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
+msgstr "Escolliu una rèplica des de la qual aconseguir els paquets"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Per raons de seguretat, ara es desconnectarà."
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"S'està contactant amb la rèplica per obtenir la llista dels paquets "
+"disponibles..."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Synchronization tool"
-msgstr "Eina de sincronització"
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr "En quina zona horària us trobeu?"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking your system..."
-msgstr "S'està comprovant el vostre sistema..."
+#: ../../install_steps_interactive.pm_.c:923
+msgid "Hardware clock set to GMT"
+msgstr "El rellotge del vostre ordinador està regulat per GMT"
+
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Sincronització automàtica de la hora (usant NTP)"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print"
-msgstr "Imprimeix"
+#: ../../install_steps_interactive.pm_.c:931
+msgid "NTP Server"
+msgstr "Servidor NTP"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-"Inseriu la cinta amb l'etiqueta de volum %s\n"
-" al dispositiu de cinta %s"
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
+msgstr "Servidor CUPS remot"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "Mongòlia"
+#: ../../install_steps_interactive.pm_.c:966
+msgid "No printer"
+msgstr "Cap impressora"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
-msgstr "Muntat\n"
+#
+#: ../../install_steps_interactive.pm_.c:982
+msgid "Do you have an ISA sound card?"
+msgstr "Teniu una targeta de so ISA?"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS"
-msgstr "Configura CUPS"
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
+msgstr ""
+"Executeu \"sndconfig\" després de la instal·lació per configurar la targeta "
+"de so"
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Interface"
-msgstr "Interfície gràfica"
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"No s'ha detectat cap targeta de so. Proveu amb \"harddrake\" després de la "
+"instal·lació"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Users"
-msgstr "Restaura els usuaris"
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
+msgstr "Resum"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Clau de xifratge per a %s"
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
+msgstr "Ratolí"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to recover your system?"
-msgstr "Voleu recuperar el vostre sistema?"
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
+msgstr "Fus horari"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"El mapador de ports (portmapper) gestiona les connexions RPC, que s'usen "
-"per\n"
-"protocols com ara l'NFS i el NIS. El servidor portmap s'ha d'estar\n"
-"executant en ordinadors que actuen com a servidors per a protocols que\n"
-"utilitzen el mecanisme RPC."
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "Impressora"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detected hardware"
-msgstr "S'ha detectat el següent maquinari"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
+msgstr "Targeta XDSI"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr "Maurici"
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
+msgstr "Targeta de so"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
-msgstr "Myanmar (Burmese)"
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
+msgstr "Targeta de TV"
-#: ../../fs.pm:1
-#, c-format
-msgid "Enabling swap partition %s"
-msgstr "S'està habilitant la partició d'intercanvi %s"
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
+msgstr "LDAP"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"No hi ha cap partició FAT per utilitzar com a loopback (o no queda prou "
-"espai)"
+#
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+msgid "NIS"
+msgstr "NIS"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr "Armeni (antic)"
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+msgid "Windows Domain"
+msgstr "Domini de Windows"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Ja existeix una impressora amb nom \"%s\" en %s. \n"
-"Feu clic a \"Transfereix\" per sobreescriure-la.\n"
-"També podeu escriure un nom nou o ometre aquesta impressora."
+#
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+msgid "Local files"
+msgstr "Fitxers locals"
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
-msgstr ""
-"Cerqueu les solucions als vostres problemes a través de la nostra plataforma "
-"de suport en línia"
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr "Estableix la contrasenya de root"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", ordinador \"%s\", port %s"
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr "Sense contrasenya"
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "Monaco"
-msgstr "Mònaco"
+msgid "This password is too short (it must be at least %d characters long)"
+msgstr ""
+"Aquesta contrasenya és massa curta (ha de tenir com a mínim %d caràcters)"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Ha fallat el particionament: %s"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "Autenticació"
-#: ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formatació de %s ha fallat"
+#
+#: ../../install_steps_interactive.pm_.c:1088
+msgid "Authentication LDAP"
+msgstr "Autenticació LDAP"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Canada (cable)"
-msgstr "Canadà (cable)"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
+msgstr "LDAP Base dn"
#
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Floppy creation completed"
-msgstr "Creació del disquet completa"
+#: ../../install_steps_interactive.pm_.c:1090
+msgid "LDAP Server"
+msgstr "Servidor LDAP"
#
-#: ../../help.pm:1
-#, c-format
-msgid "Upgrade"
-msgstr "Actualitza"
+#: ../../install_steps_interactive.pm_.c:1096
+msgid "Authentication NIS"
+msgstr "Autenticació NIS"
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
-msgstr "Estació de treball"
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "Domini del NIS"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr "Servidor NIS"
+
+#: ../../install_steps_interactive.pm_.c:1104
msgid ""
-"Installing package %s\n"
-"%d%%"
+"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 ""
-"S'està instal·lant el paquet %s\n"
-"%d%%"
+"Per tal que funcioni en un W2K PDC, segurament haureu de fer que "
+"l'administrador executi \"C:\\>net localgroup 'Accés compatible amb vesions "
+"anteriors a Windows 2000' everyone /add\" i que reiniciï el servidor.\n"
+"També necessitareu el nom d'usuari i la contrasenya de l'administrador del "
+"domini per poder connectar la màquina al domini de Windows(TM).\n"
+"Si la xarxa encara no està operativa, el DrakX provarà de connectar-se al "
+"domini després del pas de configuració de la xarxa.\n"
+"Si aquesta configuració fallés per algun motiu i l'autenticació no "
+"funcionés, executeu 'smbpasswd -j DOMINI -U USUARI%CONTRASENYA' passant com "
+"a paràmetres el domini Windows en qüestió i el nom d'usuari i la contrasenya "
+"de l'administrador, després que arrenqui el sistema.\n"
+"L'ordre 'wbinfo -t' comprovarà si els secrets de l'autenticació són prou "
+"bons."
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
-msgstr "Kirguizistan"
+#
+#: ../../install_steps_interactive.pm_.c:1106
+msgid "Authentication Windows Domain"
+msgstr "Autenticació en el domini de Windows"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "Dispositiu multifunció en USB"
+#: ../../install_steps_interactive.pm_.c:1108
+msgid "Domain Admin User Name"
+msgstr "Nom d'usuari de l'administrador del domini"
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
+msgstr "Contrasenya de l'administrador del domini"
+
+#: ../../install_steps_interactive.pm_.c:1144
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"
+"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"
-"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."
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
msgstr ""
+"Un disc d'arrencada personalitzat proporciona una manera d'arrencar el "
+"vostre\n"
+"sistema Linux sense dependre del carregador d'arrencada normal. Això és "
+"útil\n"
+"si no voleu instal·lar el SILO al sistema, o si un altre sistema operatiu\n"
+"elimina el SILO, o si el SILO no funciona amb la vostra configuració de\n"
+"maquinari. Un disc d'arrencada personalitzat també es pot utilitzar amb la\n"
+"imatge de rescat del Mandrake, facilitant molt la recuperació de fallides\n"
+"serioses del sistema.\n"
+"\n"
+"Si voleu crear un disc d'arrencada per al vostre sistema, inseriu un disquet "
+"a la primera unitat i premeu \"D'acord\"."
-#: ../../help.pm:1
-#, c-format
-msgid "With basic documentation"
-msgstr "Amb la documentació bàsica"
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr "Primera unitat de disquet"
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr "Anacron, un programador d'ordres periòdiques."
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "Segona unitat de disquet"
+
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "Omet"
-#: ../../install_interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:1167
#, 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 `/'"
+"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"
msgstr ""
-"Heu de tenir una partició arrel.\n"
-"Per fer-ho, creeu una partició (o feu clic a una d'existent).\n"
-"Després, trieu l'acció \"Punt de muntatge\" i doneu-li el valor '/'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "Sàhara Occidental"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "El servidor intermediari ha de ser http://..."
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr "Sud-àfrica"
-
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Explusa la cinta després de fer la còpia de seguretat"
+"Un disc d'arrencada personalitzat proporciona una manera d'arrencar el "
+"vostre\n"
+"sistema Linux sense dependre del carregador d'arrencada normal. Això és "
+"útil\n"
+"si no voleu instal·lar el LILO (o el grub) al sistema, o si un altre sistema "
+"operatiu\n"
+"elimina el LILO, o si el LILO no funciona amb la vostra configuració de\n"
+"maquinari. Un disc d'arrencada personalitzat també es pot utilitzar amb la\n"
+"imatge de rescat del Mandrake, facilitant molt la recuperació de fallides\n"
+"serioses del sistema. Voleu crear un disc d'arrencada per al vostre "
+"sistema?\n"
+"%s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Disquet/ISO per a Etherboot"
+#: ../../install_steps_interactive.pm_.c:1173
+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)."
+msgstr ""
+"\n"
+"\n"
+"(COMPTE! Esteu utilitzant XFS per la vostra partició arrel,\n"
+"la creació d'un disquet d'arrencada amb un de 1.44 MB molt probablement "
+"fallarà,\n"
+"perquè XFS necessita una unitat molt gran)."
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Modifica la configuració de la impressora"
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "No hi ha cap unitat de disquet disponible"
-#
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
-msgstr "Trieu una partició"
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr ""
+"Escolliu la unitat de disquet que voleu utilitzar per crear el disc "
+"d'arrencada"
-#: ../../standalone/drakperm:1
+#: ../../install_steps_interactive.pm_.c:1189
#, c-format
-msgid "Edit current rule"
-msgstr "Edita la regla actual"
+msgid "Insert a floppy in %s"
+msgstr "Inseriu un disquet a la unitat %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
-msgstr "%s"
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr "S'està creant el disc d'arrencada..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Please test the mouse"
-msgstr "Si us plau proveu el ratolí."
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr "S'està preparant el carregador de l'arrencada..."
-#: ../../fs.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1210
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 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 to boot your machine"
msgstr ""
-"No actualitzeu els temps d'accés a inode en aquest sistema de fitxers (p.ex. "
-"per a un accés\n"
-"més ràpid a l'\"spool\" de grups de discussió per accelerar els servidor de "
-"grups de discussió)."
+"Sembla que teniu un ordinador OldWorld o una màquina \n"
+"desconeguda; el carregador d'arrencada yaboot no funcionarà.\n"
+"La instal·lació continuarà, però haureu d'utilitzar el BootX\n"
+"per arrencar l'ordinador"
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3·butons amb emulació de rodeta"
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
+msgstr "Voleu utilitzar l'aboot?"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Sticky-bit"
-msgstr "Sticky-bit"
+#: ../../install_steps_interactive.pm_.c:1219
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"S'ha produït un error en instal·lar l'aboot. \n"
+"Voleu intentar igualment la instal·lació encara que això destrueixi la "
+"primera partició?"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other Media"
-msgstr "Altres suports"
+#: ../../install_steps_interactive.pm_.c:1226
+msgid "Installing bootloader"
+msgstr "S'està instal·lant el carregador de l'arrencada"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr ""
+"Ha fallat la instal·lació del carregador de l'arrencada. S'ha produït "
+"l'error següent:"
-#
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:1240
#, c-format
-msgid "Backup system files"
-msgstr "Còpia de seguretat dels fitxers de sistema"
+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 ""
+"Potser us caldrà canviar el dispositiu d'arrencada Open Firware per\n"
+"habilitar el carregador de l'arrencada. Si no veieu l'indicador del\n"
+"carregador de l'arrencada en tornar a arrencar, premeu\n"
+"Command-Option-O-F en tornar a arrencar i introduïu:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+" Després, escriviu: shut-down\n"
+"En l'arrencada següent heu de veure l'indicador del carregador de "
+"l'arrencada."
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "Sector"
-msgstr "Sector"
+msgid "Insert a blank floppy in drive %s"
+msgstr "Inseriu un disquet en blanc a la unitat %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Qatar"
-msgstr "Qatar"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
+msgstr "S'està creant el diquet d'instal·lació automàtica"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Base dn"
-msgstr "LDAP Base dn"
+#: ../../install_steps_interactive.pm_.c:1289
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Alguns passos no s'han completat.\n"
+"\n"
+"Segur que voleu sortir ara?"
-#: ../../install_steps_gtk.pm:1
+#: ../../install_steps_interactive.pm_.c:1300
#, c-format
msgid ""
-"You can't select this package as there is not enough space left to install it"
+"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 ""
-"No podeu seleccionar aquest paquet perquè no queda prou espai per instal·lar-"
-"lo"
+"Felicitats! La instal·lació ha acabat.\n"
+"Traieu el suport d'arrencada i premeu Retorn per tornar a arrencar.\n"
+"\n"
+"\n"
+"Trobareu la solució als problemes coneguts d'aquesta versió del\n"
+"Mandrake Linux a la fe d'errates que hi ha a \n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"La informació sobre com configurar el vostre sistema està disponible a\n"
+"l'últim capítol d'instal·lació de la Guia Oficial de l'Usuari del\n"
+"Mandrake Linux."
-#: ../../help.pm:1
-#, c-format
-msgid "generate auto-install floppy"
-msgstr "genera un disquet per a la instal·lació automàtica"
+#: ../../install_steps_interactive.pm_.c:1313
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr "Mode de marcatge"
+#: ../../install_steps_interactive.pm_.c:1318
+msgid "Generate auto install floppy"
+msgstr "Genera un disquet per a la instal·lació automàtica"
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr "Compartició de fitxers"
+#: ../../install_steps_interactive.pm_.c:1320
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Si ho desitgeu, la instal·lació automàtica es pot\n"
+"automatitzar completament, però en aquest cas\n"
+"prendrà el control del disc dur!\n"
+"(Això està pensat per a la instal·lació en un altre ordinador.)\n"
+"\n"
+"Potser preferireu repetir la instal·lació.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "Buida /tmp en cada arrencada"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
+msgstr "Automàtica"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malawi"
-msgstr "Malawi"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Replay"
+msgstr "Repeteix"
-#
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: false"
-msgstr "configuraci´p local: fals"
+#: ../../install_steps_interactive.pm_.c:1328
+msgid "Save packages selection"
+msgstr "Desa la selecció de paquets"
-#: ../../standalone/drakperm:1
+#: ../../install_steps_newt.pm_.c:20
#, c-format
-msgid "System settings"
-msgstr "Configuració del sistema"
+msgid "Mandrake Linux Installation %s"
+msgstr "Instal·lació del Mandrake Linux %s"
-#
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Si us plau, seleccioneu el tipus del vostre ratolí."
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
+msgid ""
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr ""
+" <Tab>/<Alt-Tab> entre elements | <Espai> selecciona | <F12> pant. següent"
-#: ../../services.pm:1
-#, c-format
-msgid "running"
-msgstr "s'està executant"
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
+msgstr "El kdesu no hi és"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "class of hardware device"
-msgstr "tipus de dispositiu de maquinari"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
+msgstr "El consolehelper no hi és"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-"Aquestes són les màquines i xarxes en què la impressora o impressores "
-"connectades localment han d'estar disponibles:"
+#
+#: ../../interactive.pm_.c:152
+msgid "Choose a file"
+msgstr "Trieu un fitxer"
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "Regne Unit"
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
+msgstr "Avançat"
-#: ../../lang.pm:1
-#, c-format
-msgid "Indonesia"
-msgstr "Indonèsia"
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
+msgstr "Bàsic"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "predeterminat"
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
+msgstr "<- Anterior"
#
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "France [SECAM]"
-msgstr "França [SECAM]"
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+msgid "Next"
+msgstr "Següent"
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "limita"
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr "Elecció incorrecta, torneu-ho a intentar\n"
-#: ../../pkgs.pm:1
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "must have"
-msgstr "s'ha de tenir"
+msgid "Your choice? (default %s) "
+msgstr "Quina és la vostra elecció? (predeterminat %s)"
-#: ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-"CUPS no permet l'ús d'impressores en servidors Novell ni que les impressores "
-"enviïn les dades dins d'una ordre formada arbitràriament.\n"
+"Entrades que heu d'emplenar:\n"
+"%s"
-#: ../../lang.pm:1
+#: ../../interactive/stdio.pm_.c:70
#, c-format
-msgid "Senegal"
-msgstr "Senegal"
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Quina és la vostra elecció? (0/1, predeterminat '%s')"
-#: ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm_.c:95
#, c-format
-msgid "Command line"
-msgstr "Línia d'ordres"
+msgid "Button `%s': %s"
+msgstr "Botó '%s': %s"
-#: ../advertising/08-store.pl:1
-#, 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:"
-msgstr ""
-"Trobareu tot el conjunt de solucions Linux, així com ofertes especials en "
-"productes i altres avantatges, a la nostra botiga en línia:"
+#
+#: ../../interactive/stdio.pm_.c:96
+msgid "Do you want to click on this button?"
+msgstr "Voleu fer clic en aquest botó?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "March"
-msgstr "Març"
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
+msgstr " entreu 'void' per entrada buida"
-#: ../../any.pm:1
+#: ../../interactive/stdio.pm_.c:105
#, c-format
-msgid "access to administrative files"
-msgstr "accés a fitxers administratius"
+msgid "Your choice? (default `%s'%s) "
+msgstr "Quina és la vostra elecció? (predeterminat '%s'%s)"
-#: ../../standalone/drakbackup:1
+#: ../../interactive/stdio.pm_.c:123
#, c-format
+msgid "=> There are many things to choose from (%s).\n"
+msgstr "=> Hi ha moltes coses per escollir de (%s).\n"
+
+#: ../../interactive/stdio.pm_.c:126
msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
msgstr ""
-"S'ha produït un error en enviar el correu.\n"
-" El vostre informe no ha estat enviat.\n"
-" Si us plau configureu el sendmail"
+"Si us plau, escolliu el primer número del rang 10 que voleu editar,\n"
+"o premeu Retorn per continuar.\n"
+"Què trieu? "
-#: ../../fs.pm:1
+#: ../../interactive/stdio.pm_.c:139
#, 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.)"
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
-"No permetis que els bits defineix-identificador-usuari o\n"
-"defineix-identificador-grup tinguin efecte (sembla segur,\n"
-"però de fet és força insegur si es té el suidperl(1) instal·lat)."
+"=> Avís, una etiqueta ha canviat:\n"
+"%s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
-msgstr "Montserrat"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
+msgstr "Torna a enviar"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Dependències automàtiques"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "Txec (QWERTZ)"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "Intercanvi"
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "Alemany"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom settings"
-msgstr "Arranjament personalitzat"
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Dvorak"
-#: ../../../move/move.pm:1
-#, 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."
-msgstr ""
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "Espanyol"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Other"
-msgstr "Restaura altres"
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "Finès"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "Targeta de TV"
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "Francès"
-#
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Impressora en servidor SMB/Windows 95/98/NT"
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "Noruec"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_Configura CUPS"
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "Polonès"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
-msgstr ", "
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "Rus"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
-msgstr "Envia lspci"
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
+msgstr "Suec"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Elimina l'ordinador/xarxa seleccionada"
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "Teclat Regne Unit"
-#
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"El Postfix és un Agent de Transport de Correu, que és el programa que passa "
-"el correu d'un ordinador a un altre."
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "Teclat Estats Units"
#
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "Serbi (ciríl·lic)"
+#: ../../keyboard.pm_.c:167
+msgid "Albanian"
+msgstr "Albanès"
-#: ../../keyboard.pm:1
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Aquí podeu triar la tecla o la combinació de tecles que \n"
-"permetran canviar entre diferents disposicions de teclat\n"
-"(p.ex., llatina i no llatina)"
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
+msgstr "Armeni (antic)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Network Hotplugging"
-msgstr "\"Hotplugging\" de xarxa"
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
+msgstr "Armeni (màquina d'escriure)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr "si és \"sí\", informa dels resultats de la comprovació a tty."
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
+msgstr "Armeni (fonètic)"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From CD"
-msgstr "Restaura des de CD"
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
+msgstr "Azerbaidjanès (llatí)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Ara es configurarà l'ordinador per tal que comparteixi la connexió a "
-"Internet.\n"
-"Amb aquesta característica, altres ordinadors de la vostra xarxa local\n"
-"podran utilitzar la connexió a Internet d'aquest ordinador.\n"
-"\n"
-"Assegureu-vos d'haver configurat l'accés a Internet i a la xarxa local amb "
-"el drakconnect abans de continuar.\n"
-"Nota: per configurar una xarxa d'àrea local (LAN), us cal un adaptador de "
-"xarxa dedicat."
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "Belga"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr ""
-"Si us plau, seleccioneu quin adaptador de xarxa voleu utilitzar per\n"
-"connectar-vos a Internet."
+#: ../../keyboard.pm_.c:178
+msgid "Bengali"
+msgstr "Bengalí"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-"Accés a la targeta de memòria per a fotografies en el vostre dispositiu "
-"multifunció HP"
+#
+#: ../../keyboard.pm_.c:179
+msgid "Bulgarian (phonetic)"
+msgstr "Búlgar (fonètic)"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
-msgstr ""
-"Milloreu el rendiment del vostre ordinador amb l'ajuda d'una selecció "
-"d'empreses que ofereixen solucions professionals compatibles amb el Linux "
-"Mandrake"
+#
+#: ../../keyboard.pm_.c:180
+msgid "Bulgarian (BDS)"
+msgstr "Búlgar (BDS)"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
-msgstr "Autors: "
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
+msgstr "Brasiler (ABNT-2)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Ara, la compartició de la connexió a Internet està inhabilitada."
+#: ../../keyboard.pm_.c:184
+msgid "Bosnian"
+msgstr "Bosnià"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr "si és \"sí\", comprova la suma de control dels fitxers suid/sgid."
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
+msgstr "Bielorrús"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latin American"
-msgstr "Espanyol sud-americà"
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "Suís (disposició alemanya)"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Mode d'impressió de text en japonès"
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "Suís (disposició francesa)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Old device file"
-msgstr "Fitxer de dispositiu antic"
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "Txec (QWERTY)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "Informació: "
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr "Alemany (sense tecles inoperatives)"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Botó '%s': %s"
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
+msgstr "Devanagari"
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Espereu si us plau"
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "Danès"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Dvorak (Estats Units)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "None"
-msgstr "Cap"
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Noruec)"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "La IP introduïda no és correcta.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-"Si us plau assegureu-vos que el dimoni cron està inclòs en els serveis."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
-msgstr "Targeta Ethernet"
+#: ../../keyboard.pm_.c:196
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (Suec)"
-#
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete selected printer"
-msgstr "Elimina la impressora seleccionada"
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "Estonià"
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "Informació"
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Georgià (disposició \"russa\")"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "Instal·la"
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Georgià (disposició \"llatina\")"
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Feu clic a \"%s\" si voleu suprimir totes les dades i particions\n"
-"que hi ha en aquest disc dur. Aneu amb compte perquè, un cop\n"
-"hagueu fet clic a \"%s\", no podreu recuperar cap dada ni partició\n"
-"del disc, incloent les dades del Windows.\n"
-"\n"
-"Feu clic a \"%s\" per aturar aquesta operació sense perdre cap dada\n"
-"ni partició d'aquest disc."
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "Grec"
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "Surt de la instal·lació"
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
+msgstr "Gujarati"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
-msgstr ""
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
+msgstr "Gurmukhi"
-#: ../../standalone/drakgw:1
-#, 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)."
-msgstr ""
-"Ja està tot configurat.\n"
-"Ara podeu compartir la connexió a Internet amb altres ordinadors de la "
-"vostra xarxa d'àrea local utilitzant la configuració automàtica de xarxa "
-"(DHCP)."
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "Hongarès"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Servidor CUPS remot"
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "Croata"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Ratolí de Sun"
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
+msgstr "Israelià"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Només teniu un adaptador de xarxa configurat al sistema:\n"
-"\n"
-"%s\n"
-"\n"
-"Ara es configurarà la vostra xarxa d'àrea local amb aquest adaptador."
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr "Israelià (fonètic)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
-msgstr "Envia cpuinfo"
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr "Iranià"
-#
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Minimal install"
-msgstr "Instal·lació mínima"
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr "Islandès"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "Etiòpia"
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "Italià"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
-msgstr "SÍ"
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
+msgstr "Inuktitut"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
-msgstr "Habilita \"crontab\" i \"at\" pels usuaris"
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
+msgstr "Japonès de 106 tecles"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr "Devanagari"
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
+msgstr "Teclat coreà"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- dispositius PCI: dóna la ranura PCI, el dispositiu i la funció d'aquesta "
-"targeta\n"
-"- dispositius EIDE: diu si el dispositiu ésta configurat com a mestre o com "
-"a esclau\n"
-"- dispositius SCSI: dóna el bus SCSI i els identificadors SCSI del dispositiu"
+#: ../../keyboard.pm_.c:218
+msgid "Latin American"
+msgstr "Espanyol sud-americà"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Mida total: %d / %d MB"
+#
+#: ../../keyboard.pm_.c:219
+msgid "Laotian"
+msgstr "Laosí"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "disabled"
-msgstr "inhabilita"
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
+msgstr "Lituà AZERTY (antic)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Search for new scanners"
-msgstr "Cerca escàners nous"
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
+msgstr "Lituà AZERTY (nou)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Disabling servers..."
-msgstr "S'estan inhabilitant els servidors..."
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Lituà \"fila de números\" QWERTY"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Ha fallat la instal·lació de %s. S'ha produït l'error següent:"
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Lituà \"fonètic\" QWERTY"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr "No s'ha pogut executar mkinitrd -f /boot/initrd-%s.img %s."
+#
+#: ../../keyboard.pm_.c:225
+msgid "Latvian"
+msgstr "Letó"
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
msgstr ""
-"Heu seleccionat el(s) servidor(s) següent(s): %s\n"
-"\n"
-"\n"
-"Aquests servidors estan activats per defecte. No tenen cap problema de "
-"seguretat\n"
-"conegut, però se'n podrien trobar de nous. Si fos així, caldrà que els "
-"actualitzeu\n"
-"tan aviat com sigui possible.\n"
-"\n"
-"\n"
-"Voleu realment instal·lar aquests servidors?\n"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Impressora de xarxa (TCP/Socket)"
-
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup User files..."
-msgstr "Fes una còpia de seguretat dels fitxers d'usuari..."
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
+msgstr "Macedoni"
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "Instal·la el sistema"
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
+msgstr "Myanmar (Burmese)"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Primer servidor DNS (opcional)"
+#
+#: ../../keyboard.pm_.c:229
+msgid "Mongolian (cyrillic)"
+msgstr "Mongol (ciríl·lic)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-"Alternativament, podeu indicar el nom de dispositiu/nom de fitxer en la "
-"línia d'entrada"
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
+msgstr "Maltès (Regne Unit)"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
-"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
-"symlink /etc/security/msec/server to point to\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
-"add a service if it is present in the file during the installation of\n"
-"packages."
-msgstr ""
-"Si SERVER_LEVEL (o SECURE_LEVEL si no hi és) és més gran que 3\n"
-"a /etc/security/msec/security.conf, crea l'enllaç simbòlic /etc/security/"
-"msec/server\n"
-"per apuntar a /etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-" El /etc/security/msec/server és utilitzat per chkconfig --add per decidir\n"
-"afegir un servei si és present al fitxer durant la instal·lació dels paquets."
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
+msgstr "Maltès (Estats Units)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "Rus (fonètic)"
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
+msgstr "Holandès"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Config..."
-msgstr "Configuració del dhcpd..."
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
+msgstr "Polonès (disposició qwerty)"
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "Instal·lació del LILO/grub"
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
+msgstr "Polonès (disposició qwertz)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "Israelià"
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
+msgstr "Portuguès"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Impressora \"%s\" en el servidor \"%s\""
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr "Canadenc (Quebec)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Ja podeu extreure el disquet"
+#
+#: ../../keyboard.pm_.c:239
+msgid "Romanian (qwertz)"
+msgstr "Romanès (qwertz)"
#
-#: ../../help.pm:1
-#, c-format
-msgid "Truly minimal install"
-msgstr "Instal·lació mínima real"
+#: ../../keyboard.pm_.c:240
+msgid "Romanian (qwerty)"
+msgstr "Romanès (qwerty)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "Dinamarca"
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "Rus (Yawerty)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "S'està movent la partició..."
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
+msgstr "Eslovè"
-#
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "(This) DHCP Server IP"
-msgstr "IP d'aquest servidor DHCP"
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "Eslovac (QWERTZ)"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Test of the configuration"
-msgstr "Comprova la configuració"
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "Eslovac (QWERTY)"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing %s ..."
-msgstr "S'està instal·lant %s..."
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Si heu dit a l'instal•lador que voleu seleccionar els paquets individualment\n"
-"se us presentarà un arbre amb tots els paquets classificats per grups i\n"
-"subgrups. Mentre navegueu per l'arbre, podeu seleccionar grups complets,\n"
-"subgrups o paquets individuals.\n"
-"\n"
-"Cada cop que seleccioneu un paquet de l'arbre, apareixerà una descripció a "
-"la\n"
-"Dreta que us informarà de la finalitat del paquet\n"
-"AVÍS: Si heu seleccionat un paquet de servidor, intencionadament o perquè "
-"formava\n"
-"part d'un grup, se us demanarà que confirmeu si realment voleu instal•lar\n"
-"aquests servidors. Per defecte, Linux Mandrake iniciarà i instal•larà "
-"automàticament\n"
-"qualsevol servidor durant l'arrencada. Tot i que són segurs i no tenen cap "
-"problema\n"
-"conegut quan es publica la distribució, és totalment possible que es "
-"descobreixin\n"
-"forats de seguretat després que aquesta versió de Mandrake Linux quedi "
-"finalitzada.\n"
-"Si no sabeu què se suposa que fa un servei en particular, o per què s'està\n"
-"instal•lant, feu clic a \"%s\". Per defecte, si feu clic a \"%s\"\n"
-"els serveis llistats s'instal•laran i s'iniciaran automàticament durant "
-"l'arrencada.\n"
-"\n"
-"L'opció \"%s\" s'utilitza per inhabilitar el diàleg d'advertència que "
-"apareix\n"
-"quan l'instal•lador selecciona automàticament un paquet per resoldre un tema "
-"de\n"
-"dependències. Alguns paquets estan relacionats els uns amb els altres, de "
-"manera\n"
-"que la instal•lació d'un paquet fa que calgui instal•lar també algun altre "
-"programa.\n"
-"L'instal•lador pot determinar quins paquets calen per satisfer una "
-"dependència\n"
-"i completar la instal•lació satisfactòriament.\n"
-"\n"
-"La diminuta icona d'un disquet al peu de la llista us permet carregar una "
-"llista\n"
-"de paquets creada en una instal•lació anterior. Això és útil si teniu un "
-"cert\n"
-"nombre d'ordinadors que voleu configurar de manera idèntica. Si feu clic a\n"
-"aquesta icona se us demanarà que inseriu un disquet creat anteriorment al\n"
-"final d'una altra instal•lació. Vegeu el segon suggeriment de l'últim pas "
-"per\n"
-"saber com crear aquest disquet."
+#: ../../keyboard.pm_.c:248
+msgid "Serbian (cyrillic)"
+msgstr "Serbi (ciríl·lic)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr "Escolliu la clau de xifratge del sistema de fitxers"
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
+msgstr "Tamil (Unicode)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
+msgstr "Tamil (TSCII)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
-msgstr "Botswana"
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr "Teclat tai"
-#: ../../lang.pm:1
-#, c-format
-msgid "Andorra"
-msgstr "Andorra"
+#
+#: ../../keyboard.pm_.c:254
+msgid "Tajik keyboard"
+msgstr "Teclat tadjik"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "(default value: %s)"
-msgstr " (valor per defecte: %s)"
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Turc (tradicional, model \"F\")"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
-msgstr ""
-"Definiu l'antiguitat de la contrasenya a \"max\" dies i temps en canviar a "
-"\"inactive\"."
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Turc (modern, model \"Q\")"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Pàgina de prova alternativa (Carta)"
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr "Ucraïnès"
-#: ../../standalone/drakgw:1
-#, c-format
-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 ""
-"Configuració del servidor DHCP.\n"
-"\n"
-"Aquí podreu seleccionar diverses opcions per a la configuració del servidor "
-"DHCP.\n"
-"Si no sabeu el significat d'una opció, deixeu-la com està.\n"
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "Teclat Estats Units (internacional)"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Choose an X server"
-msgstr "Escolliu un servidor X"
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vietnamita \"fila numèrica\" QWERTY"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr ""
+#
+#: ../../keyboard.pm_.c:263
+msgid "Yugoslavian (latin)"
+msgstr "Iugoslau (llatí)"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Mida de la partició d'intercanvi en MB: "
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
+msgstr "Tecla d'Alternativa Gràfica"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No changes to backup!"
-msgstr "No s'ha fet cap canvi a la còpia de seguretat"
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
+msgstr "Les dues tecles de Majúscules simultàniament"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "Formatat\n"
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
+msgstr "Tecles de Control i de Majúscules simultàniament"
-#
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Type of install"
-msgstr "Tipus d'instal·lació"
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
+msgstr "Tecla de Fixació de Majúscules"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Impressora \"%s\" en servidor SMB/Windows \"%s\""
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
+msgstr "Tecles de Control i d'Alternativa simultàniament"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d nombres separats per coma"
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
+msgstr "Tecles d'Alternativa i de Majúscules simultàniament"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"El protocol rusers permet que els usuaris d'una xarxa identifiquin\n"
-"qui està connectat en altres ordinadors de la mateixa."
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
+msgstr "tecla de \"Menú\""
-#
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Configuració automatitzada dels passos"
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr "Tecla de \"Windows\" Esquerra"
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "Barbados"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
+msgstr "Tecla de \"Windows\" Dreta"
-#: ../advertising/02-community.pl:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
-msgstr ""
-"Voleu saber més coses de la comunitat del Codi Font Obert? Uniu-vos al món "
-"del Codi Font Obert"
+msgid "Circular mounts %s\n"
+msgstr "Muntatges circulars %s\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Seleccioneu les dades de les quals voleu fer la còpia..."
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
+msgstr "Elimineu primer els volums lògics\n"
-#: ../../standalone/net_monitor:1
-#, c-format
+#: ../../modules.pm_.c:290
msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-"La connexió ha fallat.\n"
-"Comproveu la vostra configuració al Centre de control de Mandrake."
+"El suport per a PCMCIA ja no existeix en els nuclis 2.2. Utilitzeu un nucli "
+"2.4."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
-msgstr "rebuts"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
+msgstr "Ara podeu configurar cada paràmetre del mòdul."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr "Habilita su només per a membres del grup wheel o per qualsevol usuari"
+#: ../../modules/parameters.pm_.c:18
+#, fuzzy
+msgid "modinfo is not available"
+msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
-msgstr "/Fitxer/_Nou"
+#: ../../modules/parameters.pm_.c:50
+msgid "a number"
+msgstr "un número"
-#
-#: ../../standalone/drakgw:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "The DNS Server IP"
-msgstr "IP del Servidor DNS"
+msgid "%d comma separated numbers"
+msgstr "%d nombres separats per coma"
-#: ../../standalone/drakTermServ:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "IP Range End:"
-msgstr "Final de l'abast de la IP:"
+msgid "%d comma separated strings"
+msgstr "%d cadenes separades per coma"
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
-msgstr "Alt"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
+msgstr "nombres separats per coma"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Afegeix una nova impressora al sistema"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated strings"
+msgstr "cadenes separades per coma"
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr "NoVideo"
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Ratolí de Sun"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
-msgstr "aquest camp descriu el dispositiu"
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr "S'està afegint la impressora a Star Office/OpenOffice.org/GIMP"
+#: ../../mouse.pm_.c:33
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Ratolí PS2 genèric amb rodeta"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printers"
-msgstr "Impressores locals"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation image directory"
-msgstr "Directori de la imatge de la instal·lació"
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "Servidor NIS"
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Port: %s"
-msgstr "Port: %s"
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "Espanya"
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+msgid "Microsoft Explorer"
+msgstr "Microsoft Explorer"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
-msgstr "configuració local:: %s"
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
+msgstr "1 botó"
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "Aquest nom d'usuari ja s'ha afegit"
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "Ratolí genèric de 2 botons"
-#
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
-msgstr "Trieu un fitxer"
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "Rodeta"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr "Aplica"
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "sèrie"
-#
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Detecta automàticament els ports disponibles"
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "Ratolí genèric de 3 botons"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr "San Marino"
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "La connexió a Internet compartida està inhabilitada"
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
-#
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Belgium"
-msgstr "Bèlgica"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
-msgstr "Kuwait"
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "Escolliu el gestor de finestres per executar:"
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
-msgstr "Desembre"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "MM Series"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "generació del sub de la CPU"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
-msgstr "Auxiliar per a la primera vegada"
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (sèrie, tipus C7 antic)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Taiwan"
-msgstr "Taiwan"
+#: ../../mouse.pm_.c:68
+msgid "busmouse"
+msgstr "busmouse"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "Pakistan"
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "2 botons"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "espereu si us plau, s'està analitzant el fitxer: %s"
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "3 botons"
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"S'ha produït un error, però no sé com gestionar-lo correctament.\n"
-"Si continueu, és sota la vostra responsabilitat."
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "cap"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Importance: "
-msgstr "Importància:"
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "Cap ratolí"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-"Per poder imprimir amb la Lexmark inkjet i amb aquesta configuració, "
-"necessiteu els controladors de la impressora inkjet proporcionats per "
-"Lexmark (http://www.lexmark.com/). Dins de la web de Lexmark, feu clic al "
-"botó \"Controladors\" i trieu la secció d'impressores. Aleshores escolliu el "
-"vostre model i després \"Linux\" com a sistema operatiu. Els controladors "
-"vénen en paquets RPM o en seqüències per a l'intèrpret d'ordres amb una "
-"instal·lació gràfica interactiva. No necessiteu fer aquesta configuració amb "
-"la interfície gràfica. Cancel·leu directament després de l'acord de "
-"llicència. Llavors imprimiu pàgines d'alineació dels capçals d'impressió amb "
-"l'ordre \"lexmarkmaintain\" i ajusteu l'alineació dels capçals amb aquest "
-"programa."
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
+msgstr "Si us plau, comproveu el ratolí."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Permissions"
-msgstr "Permisos"
+#: ../../mouse.pm_.c:491
+msgid "To activate the mouse,"
+msgstr "Per activar el ratolí,"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Nom del proveïdor (p.ex. proveidor.net)"
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr "MOVEU LA RODA!"
-#: ../../install_steps_gtk.pm:1
-#, 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'."
-msgstr ""
-"El vostre sistema està baix de recursos; podeu tenir algun problema en\n"
-"instal·lar el Mandrake Linux. Si això passa, podeu provar d'instal·lar-lo "
-"en\n"
-"mode text. Per fer-ho, premeu 'F1' en arrencar des del CD-ROM i escriviu "
-"'text'."
+#: ../../my_gtk.pm_.c:65
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "Utilitza la particio Windows per al loopback"
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
+msgstr "Fi"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
-msgstr "Armeni (màquina d'escriure)"
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
+msgstr "Següent ->"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection type: "
-msgstr "Tipus de connexió: "
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "Això és correcte?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Graphical interface"
-msgstr "Interfície gràfica"
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "Informació"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "Txad"
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
+msgstr "Expandeix l'arbre"
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "Índia"
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
+msgstr "Redueix l'arbre"
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "Xfree %s amb acceleració 3D de maquinari"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr "Commuta entre pla i ordenat per grups"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr "Eslovàquia"
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "utilitza pppoe"
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "Singapur"
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
+msgstr "utilitza pptp"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "Cambodja"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
+msgstr "utilitza dhcp"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Sincronització horitzontal del monitor: %s\n"
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
+msgstr "Alcatel Speedtouch USB"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr "Camí"
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
-msgstr "NO S'HA TROBAT"
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
+msgstr "Connecta't a Internet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:30
msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-"Aquí podeu indicar qualsevol línia d'ordres arbitrària a la cual s'ha de "
-"conduir la tasca en comptes d'enviar-se directaemnt a la impressora."
+"La manera més habitual de connectar amb ADSL és pppoe.\n"
+"Algunes connexions utilitzen pptp, unes poques utilitzen dhcp.\n"
+"Si no ho sabeu, escolliu 'utilitza pppoe'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:166
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?"
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-"El sistema d'impressió (%s) no s'arrencarà automàticament quan l'ordinador "
-"s'iniciï.\n"
-"\n"
-"És possible que l'arrencada automàtica fos inhabilitada en canviar a un "
-"nivell de seguretat més alt, perquè el sistema d'impressió és un punt d'atac "
-"potencial.\n"
-"\n"
-"Voleu tornar a habilitar l'arrencada automàtica del sistema d'impressió?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Impressora %s\n"
-"Quines modificacions voleu fer en aquesta impressora?"
+#: ../../network/drakfirewall.pm_.c:12
+msgid "Web Server"
+msgstr "Servidor Web"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add host"
-msgstr "Afegeix un ordinador"
+#: ../../network/drakfirewall.pm_.c:17
+msgid "Domain Name Server"
+msgstr "Servidor de Noms de Domini (DNS)"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#
+#: ../../network/drakfirewall.pm_.c:32
+msgid "Mail Server"
+msgstr "Servidor de correu"
+
+#
+#: ../../network/drakfirewall.pm_.c:37
+msgid "POP and IMAP Server"
+msgstr "Servidor POP i IMAP"
+
+#: ../../network/drakfirewall.pm_.c:111
+msgid "No network card"
+msgstr "No s'ha trobat cap targeta de xarxa"
+
+#: ../../network/drakfirewall.pm_.c:129
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"
+"drakfirewall configurator\n"
"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"Si esteu segur de saber quin és el programa de control correcte per a la\n"
-"vostra targeta, en podeu seleccionar un de la llista superior.\n"
+"Configuració del drakfirewall\n"
"\n"
-"El programa de control actual per a la vostra targeta \"%s\" és \"%s\" "
+"Aquí es configura un tallafocs personal per a aquest ordinador Linux "
+"Mandrake.\n"
+"Per a una potent solució de tallafocs dedicada, consulteu si us plau la \n"
+"distribució especialitzada MandrakeSecurity Firewall."
-#: ../../any.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:135
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"
+"drakfirewall configurator\n"
"\n"
-"\"Custom\" permit a per-user granularity.\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-"Voleu permetre als usuaris compartir alguns dels seus directoris?\n"
-"Fer això permetrà al usuaris fer un simple clic a \"Comparteix\" en el "
-"konqueror i el nautilus.\n"
+"Configuració del drakfirewall\n"
"\n"
-"\"Personalitzat\" permet configurar cada usuari per separat.\n"
+"Assegureu-vos d'haver configurat l'accés a la xarxa local/Internet\n"
+"amb el drakconnect abans de continuar."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr "A quins serveis voleu permetre la connexió des d'Internet?"
+
+#: ../../network/drakfirewall.pm_.c:153
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-"Si us plau, carregueu o deseu la selecció de paquets en el disquet.\n"
-"El format és el mateix que en els disquets generats d'instal·lació "
-"automàtica."
-
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "No CDROM support"
-msgstr "Permet l'ús de la ràdio:"
+"Podeu introduir diferents ports.\n"
+"Són exemples vàlids: 139/tcp 139/udp.\n"
+"Cerqueu informació a /etc/services"
-#: ../../standalone/drakxtv:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
-msgid "China (broadcast)"
-msgstr "Xina (difusió)"
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+"El port introduït no és vàlid: %s.\n"
+"El format correcte és \"port/tcp\" o \"port/udp\", \n"
+"on el port es troba entre 1 i 65535."
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use quota for backup files."
-msgstr "Usa la quota de disc per als fitxers de còpia de seguretat."
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
+msgstr "Tot (sense tallafoc)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "S'està configurant la impressora \"%s\"..."
+#: ../../network/drakfirewall.pm_.c:169
+msgid "Other ports"
+msgstr "Altres ports"
-#: ../../fs.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:37
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."
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
msgstr ""
-"No permetis que s'executi cap binari en el sistema de fitxers\n"
-"muntat. Aquesta opció pot ser útil per a un servidor que tingui\n"
-"sistemes de fitxers amb binaris d'arquitectures diferents a la pròpia."
+"Quin client dhcp voleu utilitzar?\n"
+"El predeterminat és dhcp-client"
-#
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection"
-msgstr "Connexió a Internet"
+#: ../../network/ethernet.pm_.c:88
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+"No s'ha detectat cap adaptador de xarxa ethernet al sistema.\n"
+"No puc configurar aquest tipus de connexió."
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
+msgstr "Escolliu la interfície de xarxa"
+
+#: ../../network/ethernet.pm_.c:93
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
+"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
-"Ha fallat la càrrega del mòdul %s.\n"
-"Voleu tornar-ho a intentar amb altres paràmetres?"
+"Si us plau, seleccioneu quin adaptador de xarxa voleu utilitzar per\n"
+"connectar-vos a Internet."
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr "Benvingut al món del Codi Font Obert"
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "no s'ha trobat cap targeta de xarxa"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr "Bòsnia i Hercegovina"
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "S'està configurant la xarxa"
-#
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:201
msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
-"Necessiteu un sistema de fitxers real (ext2/ext3, reiserfs, xfs o jfs) per a "
-"aquest punt de muntatge\n"
+"Si us plau, introduïu el nom del vostre servidor central, si el sabeu.\n"
+"Alguns servidors DHCP necessiten que el nom de l'ordinador central sigui "
+"operatiu.\n"
+"El nom ha de ser complet,\n"
+"com ara \"mybox.mylab.myco.com\"."
-#
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Heu d'introduir un nom d'ordinador o una adreça IP.\n"
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "Nom de l'ordinador central"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "Països Baixos"
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+msgid "Network Configuration Wizard"
+msgstr "Auxiliar de configuració de xarxa"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files by FTP"
-msgstr "S'estan enviant els fitxers per FTP"
+#: ../../network/isdn.pm_.c:22
+msgid "External ISDN modem"
+msgstr "Mòdem XDSI extern"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
msgstr "Targeta XDSI interna"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
+msgstr "Quin tipus de connexió XDSI teniu?"
+
+#: ../../network/isdn.pm_.c:45
msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
msgstr ""
-"No hi ha cap controlador OSS/ALSA alternatiu conegut per a la vostra targeta "
-"de so (%s), que actualment fa servir \"%s\""
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Title"
-msgstr "Títol"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Instal·la i converteix les Fonts"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
-msgstr "AVÍS"
+"Quina configuració XDSI preferiu?\n"
+"\n"
+"* La configuració antiga usa isdn4net. Conté eines molt\n"
+" potents, però és difícil de configurar, i no és estàndard.\n"
+"\n"
+"* La nova configuració és més fàcil d'entendre, més\n"
+" estàndard, però té menys eines.\n"
+"\n"
+"Nosaltres recomanen la nova configuració senzilla (isdn-light).\n"
#
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
-msgstr "S'està instal·lant el carregador de l'arrencada"
+#: ../../network/isdn.pm_.c:54
+msgid "New configuration (isdn-light)"
+msgstr "Nova configuració (isdn-light)!"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "replay"
-msgstr "respon"
+#
+#: ../../network/isdn.pm_.c:54
+msgid "Old configuration (isdn4net)"
+msgstr "Configuració antiga (isdn4net)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
-msgstr "s'ha detectat %s"
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "Configuració de l'XDSI"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/isdn.pm_.c:166
msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
+"Seleccioneu el vostre proveïdor.\n"
+"Si no és a la llista, seleccioneu \"No és a la llista\""
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr "Illes Verge Americanes"
+#
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol"
+msgstr "Protocol europeu"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "Fitxer de còpia de seguretat incorrecte"
+#
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol (EDSS1)"
+msgstr "Protocol europeu (EDSS1)"
-#: ../../standalone/drakgw:1
-#, c-format
+#
+#: ../../network/isdn.pm_.c:181
+msgid "Protocol for the rest of the world"
+msgstr "Protocol per a la resta del món"
+
+#
+#: ../../network/isdn.pm_.c:181
msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
-"La configuració de la connexió compartida a Internet ja s'ha dut a terme.\n"
-"Ara està inhabilitada.\n"
-"\n"
-"Què voleu fer?"
+"Protocol per a la resta del món\n"
+"Cap canal D (línies punt a punt)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-"Introduïu l'adreça IP i port de l'ordinador les impressores del qual voleu "
-"utilitzar."
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
+msgstr "Quin protocol voleu utilitzar?"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid "Pipe into command"
-msgstr "Condueix cap a una ordre"
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr "S'ha trobat la interfície \"%s\". Voleu utilitzar-la?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Part del maquinari del vostre ordinador necessita controladors\n"
-"\"registrats\" per poder funcionar. Podeu trobar-ne informació a: %s"
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
+msgstr "Quin tipus de targeta teniu?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "Haití"
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
+msgstr "No ho sé"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "S'estan detectant els dispositius..."
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/isdn.pm_.c:210
msgid ""
-"Description of the fields:\n"
"\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
-"Descripció dels camps:\n"
"\n"
+"Si teniu una targeta ISA, els valors de la pantalla següent haurien de ser "
+"correctes.\n"
+"\n"
+"Si teniu una targeta PCMCIA, cal que en sapigueu l'\"irq\" i l'\"io\".\n"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Basic options"
-msgstr "Opcions bàsiques"
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "Abandona"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
-msgstr "nom de la CPU"
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
+msgstr "Continua"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr "Accepta els missatges d'error IPv4 falsos."
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
+msgstr "Quina targeta XDSI teniu?"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "S'estan refrescant les dades de les impressores..."
+#: ../../network/isdn.pm_.c:239
+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 ""
+"S'ha detectat una targeta PCI XDSI, però no es reconeix el tipus. Si us "
+"plau, seleccioneu una targeta PCI a la pantalla següent."
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr "També heu de formatar %s"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+"No s'ha trobat cap targeta PCI XDSI. Si us plau, seleccioneu-ne una a la "
+"pantalla següent."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "Aneu amb compte: aquesta operació és perillosa."
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
+msgstr ""
+"Si us plau, seleccioneu el port sèrie al qual teniu connectat el mòdem."
-#
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "Inseriu un disquet amb la selecció de paquets"
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "Opcions de marcatge"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server: "
-msgstr "Servidor: "
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr "Nom de la connexió"
-#
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Alerts:"
-msgstr "Alarmes de seguretat:"
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
+msgstr "Número de telèfon"
-#
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
-msgstr "Suècia"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "ID d'entrada"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Usa Expect en l'SSH"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr "CHAP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "Polònia"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Other ports"
-msgstr "Altres ports"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "Basat en script"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "nombre de memòries intermèdies per a captures amb MMAP"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "Basat en terminal"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid " - detected"
-msgstr " - s'ha detectat"
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "Nom de domini"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr "Controladors SMBus"
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+msgid "First DNS Server (optional)"
+msgstr "Primer servidor DNS (opcional)"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Temps màxim per connectar (en seg)"
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+msgid "Second DNS Server (optional)"
+msgstr "Segon servidor DNS (opcional)"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/modem.pm_.c:95
msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-"Alguns del primers xips i486DX-100 no poden tornar amb fiabilitat al mode "
-"d'operació després que s'hagi utilitzat la instrucció \"halt\""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Croatian"
-msgstr "Croata"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Use existing partition"
-msgstr "Utilitza la partició existent"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "No es pot contactar amb la rèplica: %s"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Ajuda/_Quant a.."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Esborra els directoris d'usuari abans de restaurar."
-
-#: ../../printer/printerdrake.pm:1
+#: ../../network/modem.pm_.c:97
#, 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?"
+"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
-"Esteu a punt de configurar una impressora remota. Això necessita una "
-"connexió de xarxa operativa, però la vostra xarxa encara no està "
-"configurada. Si continueu sense configurar la xarxa, no podreu utilitzar la "
-"impressora que esteu configurant ara. Què voleu fer?"
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "Configuració de la impressora CUPS"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr "no s'ha pogut trobar cap font en les particions muntades"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
-msgstr "Error F00f"
-
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Domain Name:"
-msgstr "Nom de domini:"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Do nothing"
+msgstr "però que no coincideixin amb"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Root umask"
-msgstr "Umask de root"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Install rpm"
+msgstr "Instal·la"
-#: ../../any.pm:1
-#, c-format
-msgid "On Floppy"
-msgstr "En el disquet"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Title"
+msgstr "Taula"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reboot by the console user"
+#: ../../network/netconnect.pm_.c:29
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
+"\n"
+"Podeu desconnectar-vos o tornar a configurar la connexió."
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore"
-msgstr "Restaura"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Server:"
-msgstr "Servidor:"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can reconfigure your connection."
msgstr ""
-"si és \"sí\", comprova si els dispositius de xarxa són en mode promiscu."
+"\n"
+"Podeu tornar a configurar la connexió."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "S'estan cercant els paquets disponibles..."
+#: ../../network/netconnect.pm_.c:29
+msgid "You are currently connected to internet."
+msgstr "Ara mateix esteu connectat a Internet."
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Espereu si us plau, s'està configurant el nivell de seguretat..."
+#: ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr ""
+"\n"
+"Podeu connectar-vos a Internet o tornar a configurar la connexió."
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
-msgstr "Missatge d'inicialització"
+#: ../../network/netconnect.pm_.c:32
+msgid "You are not currently connected to Internet."
+msgstr "Ara mateix no esteu connectat a Internet."
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "Recupera la taula de particions"
+#: ../../network/netconnect.pm_.c:36
+msgid "Connect"
+msgstr "Connecta"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "Xipre"
+#: ../../network/netconnect.pm_.c:37
+msgid "Disconnect"
+msgstr "Desconnecta"
#
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection complete."
-msgstr "Connexió completa."
+#: ../../network/netconnect.pm_.c:38
+msgid "Configure the connection"
+msgstr "Configura la connexió"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "Elimina del RAID"
-
-# c-format
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Aquesta clau de xifratge és massa senzilla (ha de tenir com a mínim %d "
-"caràcters)"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Auxiliars de configuració"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ISDN connection"
-msgstr "Connexió XDSI"
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
+msgstr "Connexió i configuració d'Internet"
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm_.c:94
#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CDROM / DVDROM"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
-msgstr "primari"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr " en servidor SMB/Windows \"%s\", recurs compartit \"%s\""
+msgid "We are now going to configure the %s connection."
+msgstr "Ara es configurarà la connexió %s."
-#: ../../help.pm:1
+#: ../../network/netconnect.pm_.c:103
#, 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"
-"!!"
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press OK to continue."
msgstr ""
-"En aquest diàleg escollireu els serveis que voleu que s'iniciïn durant "
-"l'arrencada.\n"
"\n"
-"El DrakX farà una llista de tots els serveis disponibles en la instal•lació "
-"actual.\n"
-"Reviseu-los amb cura i desmarqueu aquells que no siguin necessaris durant "
-"l'arrencada.\n"
"\n"
-"Podeu obtenir una explicació breu sobre un servei si el seleccioneu. Si no\n"
-"esteu segur de la utilitat d'un servei, el més segur és deixar el "
-"comportament\n"
-"per defecte.\n"
"\n"
-"AVÍS: Aneu especialment amb cura en aquest pas si penseu utilitzar "
-"l'ordinador com\n"
-"a servidor: segurament no voldreu iniciar serveis que no necessiteu.\n"
-"Recordeu que hi ha diversos serveis que poden ser perillosos si s'habiliten\n"
-"en un servidor. En general, seleccioneu només els serveis que realment "
-"necessiteu."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niue"
-msgstr "Niue"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "Omet"
+"Ara es configurarà la connexió %s.\n"
+"\n"
+"\n"
+"Premeu D'acord per continuar."
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Activa/Desactiva totes les interfícies de xarxa configurades per\n"
-"iniciar-se durant l'arrencada."
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr "Configuració de xarxa"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/netconnect.pm_.c:133
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)"
+"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 ""
-"freqüència en MHz (megahertz) de la CPU (que, en una primera aproximació "
-"grollera, es pot considerar com el nombre d'instruccions per segon que la "
-"CPU pot executar)"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "important"
-msgstr "important"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "Eina de gestió d'impressores de Mandrake Linux"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
-msgstr "Progrés total"
+"Atès que esteu realitzant una instal·lació des de xarxa, ja teniu la xarxa "
+"configurada.\n"
+"Feu clic a 'D'acord' per conservar la configuració, o a 'Cancel·la' per "
+"tornar a configurar la connexió a Internet i a la xarxa local.\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:157
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"
+"Welcome to The Network Configuration Wizard.\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."
+"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 ""
-"Primer, el DrakX detectarà qualsevol dispositiu IDE en l'ordinador. També\n"
-"cercarà una o més targetes SCSI PCI. Si troba una targeta SCSI, el DrakX\n"
-"instal•larà automàticament el controlador adequat.\n"
-"\n"
-"Com que la detecció de maquinari no és infal•lible, pot ser que el DrakX no "
-"trobi\n"
-"els discos durs; si és així, caldrà que indiqueu el vostre maquinari "
-"manualment.\n"
-"\n"
-"Si heu de seleccionar l'adaptador SCSI PCI manualment, el DrakX us "
-"preguntarà si\n"
-"voleu configurar-ne les opcions. Convé que deixeu que el DrakX comprovi\n"
-"el maquinari per saber les opcions específiques de la targeta que calen per "
-"inicialitzar\n"
-"l'adaptador. La majoria de vegades, el DrakX realitzarà aquest pas sense "
-"problemes.\n"
+"Benvingut a l'auxiliar de configuració de xarxa\n"
"\n"
-"Si el DrakX no pot comprovar les opcions per determinar automàticament els "
-"paràmetres\n"
-"que s'han de passar al maquinari, us caldrà configurar el controlador "
-"manualment."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr "Aruba"
+"Ara es configurarà la connexió a Internet/xarxa.\n"
+"Si no voleu utilitzar la detecció automàtica, desactiveu el quadre de "
+"verificació.\n"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "Usuaris"
+#: ../../network/netconnect.pm_.c:163
+msgid "Choose the profile to configure"
+msgstr "Escolliu el perfil a configurar"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "S'està preparant el carregador de l'arrencada..."
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
+msgstr "Utilitza la detecció automàtica"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
+msgstr "Mode expert"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Passarel·la (e.g. %s)"
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
+msgstr "S'estan detectant els dispositius..."
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
-msgstr "Les contrasenyes no coincideixen"
+#: ../../network/netconnect.pm_.c:214
+msgid "Normal modem connection"
+msgstr "Connexió normal per mòdem"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/netconnect.pm_.c:214
#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Exemples d'IP correctes:\n"
+msgid "detected on port %s"
+msgstr "detectat al port %s"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "Si us plau, trieu el suport per a la còpia."
+#: ../../network/netconnect.pm_.c:215
+#, fuzzy
+msgid "Winmodem connection"
+msgstr "Connexió normal per mòdem"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Freqüència (MHz)"
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "detected"
+msgstr "s'ha detectat %s"
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Per utilitzar aquesta selecció de paquets que heu desat, arrenqueu la "
-"instal·lació amb \"linux defcfg=floppy\""
+#: ../../network/netconnect.pm_.c:216
+msgid "ISDN connection"
+msgstr "Connexió XDSI"
-#: ../../standalone/harddrake2:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid "the number of the processor"
-msgstr "número del processador"
+msgid "detected %s"
+msgstr "s'ha detectat %s"
#
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "El rellotge del vostre ordinador està regulat per GMT"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "Voleu iniciar una nova configuració?"
+#: ../../network/netconnect.pm_.c:217
+msgid "ADSL connection"
+msgstr "Connexió ADSL"
-#
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Give a file name"
-msgstr "Proporcioneu un nom de fitxer"
+#: ../../network/netconnect.pm_.c:218
+msgid "Cable connection"
+msgstr "Connexió per cable"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr ""
-"Si us plau, seleccioneu el port al qual teniu connectada la impressora."
+#: ../../network/netconnect.pm_.c:218
+msgid "cable connection detected"
+msgstr "s'ha detectat la connexió per cable"
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "Canvieu el CD-ROM"
+#: ../../network/netconnect.pm_.c:219
+msgid "LAN connection"
+msgstr "Connexió LAN"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "Paraguai"
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
+msgstr "s'han detectat una o diverses targetes Ethernet"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "La configuració és completa, voleu aplicar els paràmetres?"
+#
+#: ../../network/netconnect.pm_.c:222
+msgid "Choose the connection you want to configure"
+msgstr "Escolliu la connexió que voleu configurar"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
+#: ../../network/netconnect.pm_.c:246
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
-"Utilitza les còpies de seguretat incrementals/diferencials (no reemplacis "
-"les còpies antigues)"
+"Heu configurat múltiples maneres de conectar-se a Internet.\n"
+"Escolliu la que voleu utilitzar.\n"
+"\n"
-#: ../../standalone/drakTermServ:1
-#, 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:"
-msgstr ""
-" - Manté /etc/dhcpd.conf:\n"
-" \t\tPer arrencar clients desde la xarxa, cada client necessita una "
-"entrada dhcpd.conf, assignant a la màquina\n"
-" \t\t una adreça IP i imatges d'arrencada de xarxa. El drakTermServ "
-"ajuda a crear/eliminar aquestes entrades.\n"
-"\t\t\t\n"
-" \t\t(Les targetes PCI poden ometre la imatge; l'Etherboot en "
-"demanarà la correcta. Heu de\n"
-" \t\tconsiderar també que, quan l'Etherboot cerca imatges, espera "
-"noms com ara\n"
-" \t\tboot-3c59x.nbi, i no com boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tUna secció dhcpd.conf típica que permeti l'ús d'un client sense "
-"disc té aquest aspecte:"
+#
+#: ../../network/netconnect.pm_.c:247
+msgid "Internet connection"
+msgstr "Connexió a Internet"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr "No hi ha cap controlador conegut per a la vostra targeta de so (%s)"
+#: ../../network/netconnect.pm_.c:253
+msgid "Do you want to start the connection at boot?"
+msgstr "Voleu iniciar la connexió en arrencar?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "force"
-msgstr "imposa"
+#: ../../network/netconnect.pm_.c:267
+msgid "Network configuration"
+msgstr "Configuració de xarxa"
-#
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Exit"
-msgstr "Surt"
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
+msgstr "La xarxa necessita reiniciar-se"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/netconnect.pm_.c:272
#, c-format
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
msgstr ""
-"NOTA: Segons el model de la impressora i el sistema d'impressió, "
-"s'instal·laran fins a %d MB de programari addicional."
+"S'ha produït un problema en reiniciar la xarxa: \n"
+"\n"
+"%s"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../network/netconnect.pm_.c:282
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
-"No teniu cap interfície configurada.\n"
-"Configureu-la primer fent clic a 'Configura'"
+"Felicitats, la configuració de xarxa i Internet ha finalitzat.\n"
+"Ara s'aplicarà la configuració al sistema.\n"
+"\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "Estonià"
+#: ../../network/netconnect.pm_.c:286
+msgid ""
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
+msgstr ""
+"Després d'això, és recomanable que reinicieu l'entorn X per\n"
+"evitar problemes deguts al canvi de nom de l'ordinador central."
-#: ../../services.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:287
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+"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 ""
-"L'Apache és un servidor de World Wide Web. S'utilitza per servir fitxers\n"
-"HTML i CGI."
+"Hi ha hagut problemes durant la configuració.\n"
+"Proveu la connexió via net_monitor o mcc. Si la connexió no funciona "
+"correctament, torneu a executar la configuració."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/network.pm_.c:278
msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
+"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 ""
-"Entreu el nom de dispositiu de l'enregistradora de CD\n"
-" ex: 0,1,0"
+"ATENCIÓ: Aquest dispositiu ja es va configurar per connectar-se a Internet.\n"
+"Només cal que accepteu per mantenir-lo configurat.\n"
+"Si modifiqueu els camps inferiors, sobreescriureu aquesta configuració."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ALL"
-msgstr "TOT"
+#: ../../network/network.pm_.c:283
+msgid ""
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
+msgstr ""
+"Si us plau, introduïu la configuració IP d'aquest ordinador.\n"
+"S'ha d'introduir cada element com una adreça IP en notació decimal amb\n"
+"punts (per exemple, 1.2.3.4)."
-#: ../../standalone/drakTermServ:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "Add/Del Clients"
-msgstr "Afegeix/Suprimeix clients"
+msgid "Configuring network device %s"
+msgstr "S'està configurant el dispositiu de xarxa %s"
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
+#: ../../network/network.pm_.c:294
#, c-format
-msgid "Choose the network interface"
-msgstr "Escolliu la interfície de xarxa"
+msgid " (driver %s)"
+msgstr " (controlador %s)"
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown Model"
-msgstr "Model desconegut"
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "Adreça IP"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
-msgstr "Gravadors de CD/DVD"
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr "Submàscara de xarxa"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Partició arrencada per defecte\n"
-" (per a l'arrencada de l'MS-DOS, no per a LILO)\n"
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr ""
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "IP automàtica"
#
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image"
-msgstr "escolliu una imatge"
-
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "S'ha detectat la configuració del tallafoc!"
+#: ../../network/network.pm_.c:299
+msgid "Start at boot"
+msgstr "Inicia en l'arrencada"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "Nom de la connexió"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
+msgstr "L'adreça IP ha d'estar en format 1.2.3.4"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../network/network.pm_.c:326
msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-"coordenada x de la caixa de text\n"
-"en nombre de caràcters"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/network.pm_.c:330
msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
msgstr ""
-#
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Updating package selection"
-msgstr "S'està actualitzant la selecció de paquets"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "On voleu muntar el fitxer de loopback %s?"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../network/network.pm_.c:350
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"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 ""
-"El disquet s'ha creat correctament.\n"
-"Ara podeu repetir la vostra instal·lació."
+"Si us plau, introduïu el nom del vostre ordinador central.\n"
+"Aquest nom ha de ser complet, com ara \"mybox.mylab.myco.com\".\n"
+"També podeu introduir l'adreça IP de la passarel·la, si en teniu una."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Utilitzar CD/DVDROM per fer la còpia de seguretat"
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "Servidor DNS"
-#: ../../standalone/harddrake2:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "el nombre de botons que té el ratolí"
+msgid "Gateway (e.g. %s)"
+msgstr "Passarel·la (e.g. %s)"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
-msgstr "Repeteix"
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "Dispositiu de la passarel·la"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup other files"
-msgstr "Còpia de seguretat d'altres fitxers"
+#: ../../network/network.pm_.c:363
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "L'adreça del servidor DNS ha d'estar en format 1.2.3.4"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "No hi ha cap unitat de disquet disponible"
+#: ../../network/network.pm_.c:367
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "L'adreça de la passarel·la ha d'estar en format 1.2.3.4"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Els fitxers de la còpia de seguretat estan corromputs"
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
+msgstr "Configuració dels servidors intermediaris (proxies)"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
-msgstr "Normativa de TV:"
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "Intermediari per a HTTP"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr "Família cpuid"
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "Intermediari per a FTP"
-#
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
+msgstr ""
+"Fes el seguiment de l'identificador de la targeta de xarxa (d'utilitat per a "
+"portàtils)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: thin"
-msgstr "tipus: prim"
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
+msgstr "El servidor intermediari ha de ser http://..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lituà AZERTY (nou)"
+#
+#: ../../network/network.pm_.c:388
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "L'URL ha de començar amb 'ftp:' o 'http:'"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
-"\"sí\" significa que el coprocessador matemàtic te un vector d'excepció "
-"adjunt"
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
+msgstr "S'ha detectat la configuració del tallafoc!"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/shorewall.pm_.c:27
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"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
-"Heu seleccionat una partició RAID de programari com a arrel (/).\n"
-"Això no ho pot gestionar cap carregador d'arrencada sense una partició /"
-"boot.\n"
-"Si us plau, assegureu-vos d'afegir una partició /boot"
+"Atenció! S'ha detectat una configuració existent del tallafoc. Potser us "
+"caldrà fer algun ajustament manual després de la instal·lació."
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "Un altre SO (MacOS...)"
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
+msgstr "Configuració d'Internet"
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Per activar el ratolí,"
+#: ../../network/tools.pm_.c:58
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Voleu intentar connectar-vos a Internet ara?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "S'està activant la xarxa"
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+msgid "Testing your connection..."
+msgstr "S'està comprovant la vostra connexió..."
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Les captures estaran disponibles després d'instal·lar a %s"
+#: ../../network/tools.pm_.c:70
+msgid "The system is now connected to Internet."
+msgstr "Ara, el sistema està connectat a Internet."
-#: ../../help.pm:1
-#, c-format
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
+msgstr "Per raons de seguretat, ara es desconnectarà."
+
+#: ../../network/tools.pm_.c:72
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:\")."
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-"S'ha detectat més d'una partició de Microsoft Windows en la unitat de disc.\n"
-"Si us plau, trieu quina d'elles voleu redimensionar per instal•lar el nou\n"
-"sistema operatiu Linux Mandrake.\n"
-"\n"
-"Cada partició està identificada d'aquesta manera:\n"
-"\"Nom Linux\", \"Nom Windows\" \"Capacitat\".\n"
-"\n"
-"\"Nom Linux\" es compon de: \"tipus d'unitat de disc dur\", \"número "
-"d'unitat de \n"
-"disc dur\", \"número de la partició\" (per exemple, \"hda1\").\n"
-"\n"
-"\"Tipus d'unitat de disc dur\" és \"hd\" si la vostre unitat de disc dur és "
-"IDE i \n"
-"\"sd\" si és SCSI.\n"
-"\n"
-"\"Número de la unitat de disc dur\" és sempre una lletra després d'\"hd\" o "
-"\"sd\".\n"
-"Amb unitats de disc IDE:\n"
-"\n"
-" * \"a\" significa \"unitat de disc mestra en el controlador IDE primari\",\n"
-"\n"
-" * \"b\" significa \"unitat de disc esclava en el controlador IDE primari"
-"\",\n"
-"\n"
-" * \"c\" significa \"unitat de disc mestra en el controlador IDE secundari"
-"\",\n"
-"\n"
-" * \"d\" significa \"unitat de disc esclava en el controlador IDE secundari"
-"\".\n"
-"\n"
-"Amb les unitats de disc SCSI, una \"a\" significa \"ID SCSI més baixa\",\n"
-"una \"b\" significa \"segona ID SCSI més baixa\", etc.\n"
-"\n"
-"\"Nom Windows\" és la lletra de la vostra unitat de disc sota Windows (el "
-"primer\n"
-"disc o partició s'anomena \"C:\")."
+"No sembla que el sistema estigui connectat a Internet.\n"
+"Intenteu tornar a configurar la connexió."
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
-msgstr "Tanzània"
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
+msgstr "Configuració de la connexió"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "S'estan calculant els límits del sistema de fitxers de la FAT"
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
+msgstr "Si us plau, ompliu o marqueu el camp inferior"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Fonts de la còpia: \n"
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr "IRQ de la targeta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "custom"
-msgstr "a mida"
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "Targeta de memòria (DMA)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Content of the file"
-msgstr "Contingut del fitxer"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "E/S de la Targeta"
-#
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
-msgstr "Autenticació LDAP"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "E/S_0 de la Targeta"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
-msgstr ""
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "E/S_1 de la Targeta"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
-msgstr "Deixa'm agafar qualsevol programa de control"
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
+msgstr "El vostre telèfon particular"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
-msgstr "transmitits"
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
+msgstr "Nom del proveïdor (p.ex. proveidor.net)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palestine"
-msgstr "Palestina"
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
+msgstr "Número de telèfon del proveïdor"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+msgid "Provider dns 1 (optional)"
+msgstr "DNS 1 del proveïdor (opcional)"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d cadenes separades per coma"
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+msgid "Provider dns 2 (optional)"
+msgstr "DNS 2 del proveïdor (opcional)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " isdn"
-msgstr " xdsi"
+#
+#: ../../network/tools.pm_.c:109
+msgid "Choose your country"
+msgstr "Escolliu el vostre país"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "Aquesta és la llista completa de teclats disponibles"
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
+msgstr "Mode de marcatge"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Theme name"
-msgstr "Nom del tema"
+#
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+msgid "Connection speed"
+msgstr "Velocitat de la connexió"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/_Ajuda"
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+msgid "Connection timeout (in sec)"
+msgstr "Temps màxim per connectar (en seg)"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitrary driver"
-msgstr "Selecció d'un programa de control arbitrari"
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
+msgstr "Entrada del compte (nom d'usuari)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "Illes Cook"
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
+msgstr "Contrasenya del compte"
-#: ../../standalone/scannerdrake:1
-#, 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."
-msgstr ""
-"Aquí podeu decidir si màquines remotes, i quines d'elles, han de poder "
-"accedir als escàners connectats a aquesta màquina."
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
+msgstr "Regne Unit"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the width of the progress bar"
-msgstr "l'amplada de la barra de progrés"
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
+msgstr "ha fallat el muntatge: "
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "S'està formatant la partició %s"
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
+msgstr "Aquesta plataforma no suporta particions ampliades"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hostname required"
-msgstr "El nom de l'ordinador és necessari"
+#: ../../partition_table.pm_.c:685
+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 ""
+"Hi ha un forat a la vostra taula de particions, però no puc utilitzar-lo.\n"
+"L'única solució és moure les particions primàries per fer que el forat quedi "
+"contigu a les particions ampliades"
-#: ../../standalone/drakfont:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "Unselect fonts installed"
-msgstr "Desselecciona les fonts instal·lades"
+msgid "Restoring from file %s failed: %s"
+msgstr "Ha fallat la restauració des del fitxer %s: %s"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Rodeta"
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
+msgstr "Fitxer de còpia de seguretat incorrecte"
-#: ../../standalone/drakbug:1
+#: ../../partition_table.pm_.c:796
#, c-format
-msgid "Submit kernel version"
-msgstr "Envia la versió del nucli"
+msgid "Error writing to file %s"
+msgstr "S'ha produït un error en escriure al fitxer %s"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Cancel"
-msgstr "Cancel·la"
+#: ../../partition_table/raw.pm_.c:192
+msgid ""
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
+msgstr ""
+"Alguna cosa no va bé en la vostra unitat. \n"
+"Ha fallat una comprovació de la integritat de les dades. \n"
+"Això vol dir que qualsevol cosa que s'escrigui al disc acabarà feta malbé."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for configured scanners ..."
-msgstr "S'estan cercant els escàners configurats..."
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr "s'ha de tenir"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Videocard"
-msgstr "Targeta de vídeo"
+#: ../../pkgs.pm_.c:27
+msgid "important"
+msgstr "important"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tLes còpies de seguretat utilitzen tar i bzip2\n"
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr "molt bonic"
-#
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Remove Selected"
-msgstr "Elimina la selecció"
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr "bonic"
-#
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Detecta els _mòdems automàticament"
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr "potser"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove printer"
-msgstr "Suprimeix la impressora"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
+msgstr "PDQ - Print, Don't Queue"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Last Log"
-msgstr ""
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
+msgstr "PDQ"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "A quins serveis voleu permetre la connexió des d'Internet?"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
+msgstr "LPD - Line Printer Daemon"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Connection Type"
-msgstr "Tipus de connexió"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
+msgstr "LPD"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Benvingut a la utilitat de configuració del correu.\n"
-"\n"
-"Aquí podreu configurar el sistema d'alerta.\n"
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
+msgstr "LPRng - LPR New Generation"
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Other"
-msgstr "Altres"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
+msgstr "LPRng"
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
-msgstr "Predeterminat"
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
+msgstr "CUPS - Common Unix Printing System"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Emulació del botó 2"
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
+msgstr "CUPS"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter a package name."
-msgstr "Si us plau, introduïu un nom de paquet"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+msgid "Unknown Model"
+msgstr "Model desconegut"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run chkrootkit checks"
-msgstr "Executa les comprovacions chkrootkit"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "Impressora local"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "type1inst building"
-msgstr "construcció de type1inst"
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
+msgstr "Impressora remota"
#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
+#: ../../printer/main.pm_.c:28
+msgid "Printer on remote CUPS server"
+msgstr "Impressora en servidor CUPS remot"
#
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image file"
-msgstr "trieu un fitxer d'imatge"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "X server"
-msgstr "Servidor X"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+msgid "Printer on remote lpd server"
+msgstr "Impressora en servidor lpd remot"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin User Name"
-msgstr "Nom d'usuari de l'administrador del domini"
+#: ../../printer/main.pm_.c:30
+msgid "Network printer (TCP/Socket)"
+msgstr "Impressora de xarxa (TCP/Socket)"
#
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "S'ha produït un error en cercar els canals de TV"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
-msgstr "Teclat Estats Units (internacional)"
+#: ../../printer/main.pm_.c:31
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "Impressora en servidor SMB/Windows 95/98/NT"
#
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Not installed"
-msgstr "No instal·lat"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Les dues tecles Alt simultàniament"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "LAN connection"
-msgstr "Connexió LAN"
+#: ../../printer/main.pm_.c:32
+msgid "Printer on NetWare server"
+msgstr "Impressora en servidor NetWare"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/-"
-msgstr "/Fitxer/-"
+#
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+msgid "Enter a printer device URI"
+msgstr "Entreu un dispositiu URI d'impressora"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Italian"
-msgstr "Italià"
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
+msgstr "Redirecciona el treball cap a una ordre"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Basic"
-msgstr "Bàsic"
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
+msgstr "Model desconegut"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/90errata.php3"
+#
+#: ../../printer/main.pm_.c:317
+msgid "Local Printers"
+msgstr "Impressores locals"
-#: ../../lang.pm:1
-#, c-format
-msgid "Honduras"
-msgstr "Hondures"
+#
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+msgid "Remote Printers"
+msgstr "Impressores remotes"
-#: ../../help.pm:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid "pdq"
-msgstr "pdq"
+msgid " on parallel port \\/*%s"
+msgstr " en port paral·lel \\/*%s"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid "Card IO"
-msgstr "E/S de la Targeta"
+msgid ", USB printer \\/*%s"
+msgstr ", impressora USB \\/*%s"
-#: ../../network/drakfirewall.pm:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid "Samba server"
-msgstr "Servidor Samba"
+msgid ", multi-function device on parallel port \\/*%s"
+msgstr ", dispositiu multifunció en port paral·lel \\/*%s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Aquesta partició especial\n"
-"Bootstrap és per arrencar\n"
-"el vostre sistema en dual.\n"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
+msgstr ", dispositiu multifunció en USB"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Si us plau, escolliu per cada pas si es repetirà la vostra instal·lació o si "
-"serà manual"
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
+msgstr ", dispositiu multifunció en HP JetDirect"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"També podeu decidir aquí si aquesta màquina ha de poder accedir als escàners "
-"de màquines remotes."
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
+msgstr ", dispositiu multifunció"
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:344
#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Xarxa per FTP.\n"
+msgid ", printing to %s"
+msgstr ", imprimint a %s"
-#: ../../security/l10n.pm:1
+#: ../../printer/main.pm_.c:346
#, c-format
-msgid "Reports check result to tty"
-msgstr "Informa dels resultats de la comprovació a tty"
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr " en servidor LPD \"%s\", impressora \"%s\""
-#
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:348
#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Heu d'entrar un nom de dispositiu o de fitxer!"
+msgid ", TCP/IP host \"%s\", port %s"
+msgstr ", host TCP/IP \"%s\", port %s"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid "/_Quit"
-msgstr "/_Surt"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr " en servidor SMB/Windows \"%s\", recurs compartit \"%s\""
-#: ../../Xconfig/various.pm:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Memòria gràfica: %s kB\n"
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr " en servidor Novell \"%s\", impressora \"%s\""
-#: ../../standalone.pm:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-"it under the terms of the GNU General Public License as published by\n"
-"the Free Software Foundation; either version 2, or (at your option)\n"
-"any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful,\n"
-"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-"GNU General Public License for more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
-msgstr ""
-"Aquest programa és programari lliure; el podeu redistribuir i/o modificar\n"
-"sota els termes de la Llicència General Pública de GNU tal com l'ha\n"
-"publicada la Free Software Foundation, ja sigui la versió 2 com (a elecció\n"
-"vostra) qualsevol versió posterior.\n"
-"\n"
-"Aquest programa és distribueix amb l'esperança que serà útil, però\n"
-"SENSE CAP GARANTIA; sense ni tant sols la garantia implícita de\n"
-"MERCANTIBILITAT o ADEQUACIÓ A UNA FINALITAT DETERMINADA.\n"
-"En trobareu més detalls a la Llicència General Pública de GNU.\n"
-"\n"
-"Heu d'haver rebut una còpia de la Llicència General Pública de GNU\n"
-"amb aquest programa; si no és així, escriviu a la Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, EUA.\n"
+msgid ", using command %s"
+msgstr ", utilitzant l'ordre %s"
-#: ../../any.pm:1
-#, c-format
-msgid "access to compilation tools"
-msgstr "accés a les eines de compilació"
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
+msgstr "Impressora en cru (raw) (Cap controlador)"
-#: ../../standalone/net_monitor:1
+#: ../../printer/main.pm_.c:647
#, c-format
-msgid "Global statistics"
-msgstr "Estadístiques globals"
+msgid "(on %s)"
+msgstr "(en %s)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Si us plau, seleccioneu les dades per restaurar..."
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
+msgstr "(en aquest ordinador)"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/main.pm_.c:674
#, 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"
-msgstr ""
-"Si penseu utilitzar aboot, assegureu-vos de deixar espai lliure (amb 2048\n"
-"sectors n'hi ha prou) al començament del disc"
+msgid "On CUPS server \"%s\""
+msgstr "en servidor CUPS \"%s\""
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Standard test page"
-msgstr "Pàgina de prova estàndard"
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
+msgstr " (Predeterminat)"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Time Zone"
-msgstr "Fus horari"
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
+msgstr "Seleccioneu la connexió de la impressora"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create"
-msgstr "Crea"
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
+msgstr "Com està connectada la impressora?"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "What"
-msgstr "Què"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "S'ha produït un error en ordenar els paquets:"
+#: ../../printer/printerdrake.pm_.c:30
+msgid ""
+"\n"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
+msgstr ""
+"\n"
+"Amb un servidor CUPS remot, aquí no us cal configurar cap\n"
+"impressora; les impressores es detectaran automàticament."
-#
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "Búlgar (BDS)"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr "Detecció automàtica de la impressora (local, TCP/Socket i SMB)"
#
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Server"
-msgstr "Inhabilita el servidor"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+msgid "CUPS configuration"
+msgstr "Configuració de CUPS"
#
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem encryption key"
-msgstr "Clau de xifratge del sistema de fitxers: "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
-msgstr "Gujarati"
-
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-"\t\t\tTot i que podeu utilitzar un conjunt d'adreces IP i no configurar una "
-"entrada específica per a una\n"
-"\t\t\tmàquina client, la utilització d'un esquema d'adreça fixa facilita la "
-"utilització de la funcionalitat\n"
-"\t\t\tdels fitxers de configuració específics del client que proporciona el "
-"ClusterNFS.\n"
-"\t\t\t\n"
-"\t\t\tNota: l'entrada \"#type\" només és utilitzada pel drakTermServ. Els "
-"clients poden ser 'prims'\n"
-"\t\t\t o bé 'grassos'. Els clients prims executen la majoria del programari "
-"en el servidor mitjançant\n"
-"\t\t\t l'xdmcp, mentre que els grassos executen la majoria del programari en "
-"la màquina client. S'ha\n"
-"\t\t\t escrit un inittab especial, %s per a clients prims. Els fitxers de\n"
-"\t\t\t configuració del sistema xdm-config, kdmrc i gdm.conf es modifiquen "
-"si s'utilitzen clients prims\n"
-"\t\t\t per habilitar l'xdmcp. Atès que la utilització de l'xdmcp té a veure "
-"amb temes de seguretat,\n"
-"\t\t\t hosts.deny i hosts.allow es modifiquen per limitar l'accés a la "
-"subxarxa local.\n"
-"\t\t\t\n"
-"\t\t\tNota: l'entrada \"#hdw_config\" també és utilitzada només pel "
-"drakTermServ. Els clients poden ser\n"
-"\t\t\t'certs' o 'falsos'. 'Cert' habilita l'entrada de root a la màquina "
-"client i permet una configuració local\n"
-"\t\t\tde maquinari de so, ratolí i X, utilitzant les eines ‘drak'. Això "
-"s'habilita creant fitxers de configuració\n"
-"\t\t\tseparats associats amb l'adreça IP del client i creant punts de "
-"muntatge de lectura/escriptura per\n"
-"\t\t\tpermetre que el client modifiqui el fitxer. Quan estigueu satisfet amb "
-"la configuració, podeu eliminar\n"
-"\t\t\tels privilegis d'entrada de root del client.\n"
-"\t\t\t\n"
-"\t\t\tNota: heu d'aturar/iniciar el servidor després d'afegir o canviar "
-"clients."
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+msgid "Specify CUPS server"
+msgstr "Especifiqueu el servidor CUPS"
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:83
msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-"Si us plau, escolliu el primer número del rang 10 que voleu editar,\n"
-"o premeu Retorn per continuar.\n"
-"Què trieu? "
+"Per tenir accés a les impressores en servidors CUPS remots dins la vostra "
+"xarxa no heu de configurar res; els servidors CUPS informen els vostres "
+"ordinadors automàticament sobre les seves impressores. Totes les impressores "
+"conegudes al vostre ordinador estan llistades en la secció \"Impressores "
+"Remotes\" en la pantalla principal de Printerdrake. Quan el servidor CUPS no "
+"està en la vostra xarxa local, heu de especificar l'adreça IP del servidor "
+"CUPS i opcionalment el número del port per obtenir informació de les "
+"impressores del servidor; si el servidor CUPS es troba a la xarxa local, "
+"deixeu aquests camps en blanc."
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:84
msgid ""
"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
"\n"
-" Copyright (C) 2002 per MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
+"Normalment, CUPS es configura automàticament d'acord amb l'entorn de la "
+"vostra xarxa, per tal que pugueu accedir a les impressores en el servidor "
+"CUPS a la xarxa local. Si això no funciona, deshabiliteu \"Configuració "
+"Automàtica de CUPS\" i editeu manualment el fitxer /etc/cups/cupsd.conf. No "
+"oblideu de reiniciar el CUPS (ordre: \"service cups restart\")."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Save theme"
-msgstr "Desa el tema"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "Brasil"
+#
+#: ../../printer/printerdrake.pm_.c:88
+msgid "The IP address should look like 192.168.1.20"
+msgstr "L'adreça IP ha d'estar en el format 192.168.1.20"
#
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install"
-msgstr "Instal·la automàticament"
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
+msgstr "El número de port ha de ser enter!"
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration Wizard"
-msgstr "Auxiliar de configuració de xarxa"
+#: ../../printer/printerdrake.pm_.c:99
+msgid "CUPS server IP"
+msgstr "IP del servidor CUPS"
-#
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
-msgstr "Muntatge automàtic dels dispositius extraïbles"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
+msgstr "Port"
#
-#: ../../services.pm:1
-#, c-format
-msgid "Printing"
-msgstr "Impressió"
+#: ../../printer/printerdrake.pm_.c:102
+msgid "Automatic CUPS configuration"
+msgstr "Configuració automàtica de CUPS"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save:"
-msgstr "Introduïu el directori a desar:"
+#: ../../printer/printerdrake.pm_.c:159
+msgid "Checking your system..."
+msgstr "S'està comprovant el vostre sistema..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printer/printerdrake.pm_.c:167
msgid ""
"There are no printers found which are directly connected to your machine"
msgstr "No s'ha trobat cap impressora connectada directament a l'ordinador"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "Crea una nova partició"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Driver:"
-msgstr "Controlador:"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
-msgstr "desconegut"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "Utilitza l'fdisk"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "MOVEU LA RODETA!"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "sent: "
-msgstr "enviats:"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "IP automàtica"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:179
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"
+"The following printers\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"
+msgstr ""
+"Les impressores següents\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"
+
+#: ../../printer/printerdrake.pm_.c:180
+msgid ""
+"The following printer\n"
"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
msgstr ""
-"Ja ho teniu. S'ha completat la instal•lació i el vostre sistema GNU/Linux "
-"està\n"
-"preparat per fer-lo servir. Simplement premeu \"%s\" per reiniciar el "
-"sistema.\n"
-"La primera cosa que veureu, després que l'ordinador hagi finalitzat les "
-"comprovacions\n"
-"de maquinari, és el menú del carregador d'arrencada, que us deixa triar el "
-"sistema\n"
-"operatiu amb què voleu iniciar.\n"
-"\n"
-"El botó \"%s\" mostra dos botons més:\n"
+"La impressora següent\n"
"\n"
-" * \"%s\": per crear un disquet d'instal•lació que realitzarà automàticament "
-"una\n"
-"instal•lació completa sense l'ajuda d'un operador, semblant a la instal•lació "
-"que\n"
-"acabeu de configurar.\n"
+
+#: ../../printer/printerdrake.pm_.c:182
+msgid ""
"\n"
-" Tingueu en compte que hi ha dues opcions diferents després de fer clic al "
-"botó:\n"
+"and one unknown printer are "
+msgstr ""
"\n"
-" * \"%s\". Aquesta és una instal•lació parcialment automatitzada; el pas "
-"de\n"
-"particionament és l'únic procediment interactiu.\n"
+"i una impressora desconeguda estan "
+
+#: ../../printer/printerdrake.pm_.c:184
+#, c-format
+msgid ""
"\n"
-" * \"%s\". Instal•lació completament automatitzada: el disc dur es\n"
-"reescriu completament i totes les dades es perden.\n"
+"and %d unknown printers are "
+msgstr ""
"\n"
-" Aquesta característica és força útil quan es fa una instal•lació a un "
-"cert\n"
-"nombre d'ordinadors similars. En trobareu més informació a la secció "
-"d'instal•lació\n"
-"automàtica del nostre lloc web.\n"
+"i %d impressores desconegudes estan "
+
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
"\n"
-" * \"%s\"(*): desa una llista dels paquets seleccionats en aquesta "
-"instal•lació. Per\n"
-"utilitzar aquesta selecció en una altra instal•lació inseriu el disquet i "
-"inicieu la\n"
-"instal•lació. A l'indicador, premeu la tecla F1, i escriviu >>linux defcfg="
-"\"floppy\"\n"
-"<<.\n"
+"are "
+msgstr ""
"\n"
-"(*) Necessiteu un disquet formatat en FAT (per crear-ne un sota GNU/Linux, "
-"escriviu\n"
-"\"mformat a:\")"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Moldova"
-msgstr "Moldàvia"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuration of a remote printer"
-msgstr "Configuració d'una impressora remota"
+"estan "
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"is "
msgstr ""
-"Una plataforma en línia per respondre a les necessitats de suport especials "
-"de les empreses"
-
-#
-#: ../../network/network.pm:1
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "L'URL ha de començar amb 'ftp:' o 'http:'"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Oriya"
-msgstr "Surinam"
+"\n"
+"està "
#
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Afegeix una regla nova al final"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr "Els temes de LILO i de Bootsplash s'han instal·lat amb èxit"
+#: ../../printer/printerdrake.pm_.c:189
+msgid "directly connected to your system"
+msgstr "connectada(es) directament a l'ordinador"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:192
msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
+"\n"
+"There is one unknown printer directly connected to your system"
msgstr ""
-"També podeu decidir aquí si aquesta màquina ha de poder accedir "
-"automàticament a les impressores de màquines remotes."
+"\n"
+"Hi ha una impressora desconeguda connectada directament a l'ordinador."
-#: ../../modules/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:194
#, 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''"
+"\n"
+"There are %d unknown printers directly connected to your system"
msgstr ""
-"Ara podeu proporcionar les opcions per al mòdul %s.\n"
-"Les opcions estan en el format \"nom=valor nom2=valor2 ...\".\n"
-"Per exemple, \"io=0x300 irq=7\""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "Voleu sortir sense escriure la taula de particions?"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Hard Drive"
-msgstr "en el disc dur"
-
-#
-#: ../../standalone.pm:1
-#, c-format
-msgid "Installing packages..."
-msgstr "S'estan instal·lant els paquets..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dutch"
-msgstr "Holandès"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Angola"
-msgstr "Angola"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "Cal instal·lar els paquets següents:\n"
+"\n"
+"Hi ha %d impressores desconegudes connectades directament a l'ordinador."
#
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "service setting"
-msgstr "paràmetre de servei"
+#: ../../printer/printerdrake.pm_.c:200
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr ""
+" (Assegureu-vos que totes les impressores estan connectades i engegades.)\n"
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "Personalitzada"
+#: ../../printer/printerdrake.pm_.c:214
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+"Voleu habilitar la impressió a les impressores anteriors o a les impressores "
+"de la xarxa local?\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
-msgstr "Letònia"
+#: ../../printer/printerdrake.pm_.c:215
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Voleu habilitar la impressió a les impressores de la xarxa local?\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr "Un altre loopback ja està utilitzant el fitxer, escolliu-ne un altre"
+#: ../../printer/printerdrake.pm_.c:217
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Voleu habilitar la impressió a les impressores anteriors?\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr "Només lectura"
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr "Esteu segur que voleu habilitar la impressió en aquesta màquina?\n"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:219
#, c-format
msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
msgstr ""
-"Habilita/Deshabilita la protecció contra falsejament de resolució de noms. "
-"Si\n"
-"\"alert\" és cert, informa també al registre del sistema."
+"NOTA: Segons el model de la impressora i el sistema d'impressió, "
+"s'instal·laran fins a %d MB de programari addicional."
#
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
-msgstr "No hi ha cap controlador conegut"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+msgid "Add a new printer"
+msgstr "Afegiu una impressora"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:259
msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
+"\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 ""
-"Si no és el que voleu configurar, introduïu un nom de dispositiu/nom de "
-"fitxer en la línia d'entrada"
+"\n"
+"Benvingut a l'auxiliar de configuració de la impressora\n"
+"\n"
+"Aquest auxiliar us permetrà instal·lar impressores locals o remotes per usar-"
+"les en aquest ordinador i també des d'altres ordinadors de la xarxa.\n"
+"\n"
+"Us demanarà la informació necessària per definir impressores i us "
+"proporcionarà accés als controladors disponibles de les impressores, les "
+"seves opcions i els tipus de connexions d'impressores."
-#: ../../standalone/draksound:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:272
msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
"\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"You can visit our hardware database at:\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"
+"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) and you Windows machines must be connected and "
+"turned on.\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"No s'ha detectat cap targeta de so en el vostre ordinador. Si us plau, "
-"verifiqueu que teniu correctament inserida una targeta de so compatible amb "
-"Linux.\n"
"\n"
+"Benvingut a l'auxiliar de configuració de la impressora\n"
"\n"
-"Podeu visitar la nostra base de dades de maquinari a:\n"
+"Aquest auxiliar us ajudarà a instal·lar les impressores connectades "
+"directament a l'ordinador, o a la xarxa, o a una màquina Windows remota.\n"
"\n"
+"Si teniu impressores connectades a aquesta màquina, endolleu-les i engegueu-"
+"les per tal de poder-les detectar automàticament. Engegueu també les "
+"impressores de xarxa i les màquines Windows que tenen impressores "
+"connectades.\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Configura la xarxa d'àrea local..."
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-
-#
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr "Executa el sistema de so en el vostre ordinador"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
-msgstr "Comprova la suma de control dels fitxers suid/sgid"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run some checks against the rpm database"
-msgstr "Executa determinades comprovacions de la base de dades rpm"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Execute"
-msgstr "Executa"
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Preparing printer database..."
-msgstr "S'està preparant la base de dades d'impressores..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Information"
-msgstr "Informació"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "No network card"
-msgstr "No s'ha trobat cap targeta de xarxa"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "3 botons"
-
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Which filesystem do you want?"
-msgstr "Quin sistema de fitxers voleu?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Malta"
-msgstr "Malta"
-
-#
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Detailed information"
-msgstr "Informació detallada"
+"Noteu que la detecció automàtica d'impressores de la xarxa local triga més "
+"que la detecció d'impressores connectades directament a la màquina. Seria "
+"millor que desactivéssiu la detecció automàtica d'impressores en xarxa o en "
+"màquina Windows si no la necessiteu.\n"
+"\n"
+"Feu clic a \"Següent\" quan estigueu preparat, o a \"Cancel·la\" si no voleu "
+"configurar ara les impressores."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
msgid ""
-"Printer default settings\n"
"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"Paràmetres predeterminats de la impressora\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"Us hauríeu d'assegurar que la mida de pàgina, el tipus de tinta i el mode "
-"d'impressió (si estan disponibles) i també la configuració del maquinari de "
-"les impressores làser (memòria, unitat dúplex, safates extra) són correctes. "
-"Cal remarcar que amb una qualitat d'impressió o una resolució molt altes la "
-"impressió pot ser molt lenta."
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
-msgstr "Aquest disquet no està formatat amb FAT"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "S'està configurant la xarxa"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Graphic Card"
-msgstr "Targeta gràfica"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing Windows partition"
-msgstr "S'està redimensionant la partició de Windows"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "Camerun"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "DNS 1 del proveïdor (opcional)"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Ara podeu fer les particions a %s.\n"
-"Quan acabeu, no oblideu desar-les utiltzant 'w'"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finnish)"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Close"
-msgstr "Tanca"
-
-#: ../../help.pm:1
-#, 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 ""
-"\"%s\": comproveu que la selecció del país és correcta. Si no sou a\n"
-"aquest país, feu clic al botó \"%s\" i seleccioneu-ne un altre.\n"
-"Si el vostre país no és a la primera llista, feu clic al botó \"%s\" per\n"
-"obtenir una llista de països completa."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Calendar"
-msgstr "Calendari"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
-"Restaura l'entrada\n"
-"del catàleg seleccionada"
-
-#
-#: ../../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."
+"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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Per poder utilitzar una impressora lpd remota, cal que proporcioneu el nom "
-"de l'ordinador que té el servidor de la impressora i el nom de la impressora "
-"en aquell servidor."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
-msgstr "Islàndia"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Configuració de xarxa i internet"
-
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
-msgstr "El consolehelper no hi és"
-
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr "aturat"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "Si l'FPU té o no un vector irq"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr "Expandeix l'arbre"
+"\n"
+"Benvingut a l'auxiliar de configuració de la impressora\n"
+"\n"
+"Aquest auxiliar us ajudarà a instal·lar les impressores connectades a aquest "
+"ordinador.\n"
+"\n"
+"Si teniu impressores connectades a aquesta màquina, endolleu-les i engegueu-"
+"les per tal de poder-les detectar automàticament.\n"
+"\n"
+"Feu clic a \"Següent\" quan estigueu preparat, o a \"Cancel·la\" si no voleu "
+"configurar ara les impressores."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:289
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
"\n"
-"It has been reported to oops the kernel on unloading.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+"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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"L'antic controlador \"%s\" ha estat desaprovat.\n"
"\n"
-"S'ha vist que causa problemes al nucli en descarregar-se.\n"
+"Benvingut a l'auxiliar de configuració de la impressora\n"
"\n"
-"El nou controlador \"%s\" només s'usarà en la següent arrencada."
-
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Expert Mode"
-msgstr "Mode expert"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "Opcions de la impressora"
+"Aquest auxiliar us ajudarà a instal·lar les impressores connectades a aquest "
+"ordinador o connectades directament a la xarxa local.\n"
+"\n"
+"Si teniu impressores connectades a aquesta màquina, endolleu-les i engegueu-"
+"les per tal de poder-les detectar automàticament. Engegueu també les "
+"impressores de la xarxa local.\n"
+"\n"
+"Noteu que la detecció automàtica d'impressores de la xarxa local triga més "
+"que la detecció d'impressores connectades directament a la màquina. Seria "
+"millor que desactivéssiu la detecció automàtica d'impressores en xarxa si no "
+"la necessiteu.\n"
+"\n"
+"Feu clic a \"Següent\" quan estigueu preparat, o a \"Cancel·la\" si no voleu "
+"configurar ara les impressores."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Local Network adress"
-msgstr "Adreça de la xarxa local"
+#
+#: ../../printer/printerdrake.pm_.c:307
+msgid "Auto-detect printers connected to this machine"
+msgstr "Detecta automàticament les impressores connectades a aquesta màquina"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Fes una còpia de seguretat dels fitxers del sistema (directori /etc)."
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+"Detecta automàticament les impressores connectades directament a la xarxa "
+"local"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the user umask."
-msgstr "Defineix la umask de l'usuari."
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+"Detecta automàticament les impressores connectades a màquines amb Microsoft "
+"Windows"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:329
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"
+"Congratulations, your printer is now installed and configured!\n"
"\n"
-"Do you want to install the updates ?"
+"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 ""
-"Ara teniu l'oportunitat de baixar paquets actualitzats. Aquests paquets\n"
-"han estat actualitzats després de la publicació de la distribució. Poden "
-"contenir\n"
-"actualitzacions de seguretat o correccions d'errors.\n"
"\n"
-"Per baixar aquests paquets necessitareu tenir una connexió a Internet\n"
-"operativa.\n"
+"Felicitats, la impressora s'ha instal·lat i configurat correctament!\n"
"\n"
-"Voleu instal·lar les actualitzacions?"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Samba Server"
-msgstr "Servidor Samba"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "TV per cable australiana Optus"
-
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> entre elements | <Espai> selecciona | <F12> pant. següent"
+"Podeu imprimir utilitzant l'ordre \"Imprimeix\" de les aplicacions "
+"(normalment en el menú \"Fitxer\").\n"
+"\n"
+"Si voleu afegir, esborrar o canviar el nom a una impressora, o si voleu "
+"canviar les opcions per defecte (safata d'entrada, qualitat impressió...), "
+"seleccioneu \"Impressora\" en la secció \"Maquinari\" del Centre de Control "
+"Mandrake."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet:"
-msgstr "Subxarxa:"
+#
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Printer auto-detection"
+msgstr "Detecció automàtica d'impressores"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:385
#, c-format
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+msgid ", network printer \"%s\", port %s"
+msgstr ", impressora de xarxa \"%s\", port %s"
#
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:387
#, c-format
-msgid "When"
-msgstr "Quan"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
-msgstr ""
-"Us cal el microcodi alcatel.\n"
-"Baixeu-lo des de\n"
-"%s\n"
-"i copieu l'mgmt.o que és a /usr/share/speedtouch"
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr ", impressora \"%s\" en servidor SMB/Windows \"%s\""
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:391
#, c-format
-msgid "Hour"
-msgstr "Hora"
+msgid "Detected %s"
+msgstr "S'ha detectat %s"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Segon servidor DNS (opcional)"
+msgid "Printer on parallel port \\/*%s"
+msgstr "Impressora en el port paral·lel \\/*%s"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "Finland"
-msgstr "Finlàndia"
+msgid "USB printer \\/*%s"
+msgstr "Impressora USB \\/*%s"
-#: ../../Xconfig/various.pm:1
+#: ../../printer/printerdrake.pm_.c:399
#, c-format
-msgid "Color depth: %s\n"
-msgstr "Profunditat del color: %s\n"
+msgid "Network printer \"%s\", port %s"
+msgstr "Impressora de xarxa \"%s\", port %s"
-#: ../../install_steps_gtk.pm:1
+#
+#: ../../printer/printerdrake.pm_.c:401
#, c-format
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "No podeu desseleccionar aquest paquet; s'ha d'actualitzar"
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Impressora \"%s\" en servidor SMB/Windows \"%s\""
#
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "S'està carregant des del disquet"
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+msgid "Local Printer"
+msgstr "Impressora local"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Timezone - DrakClock"
+#: ../../printer/printerdrake.pm_.c:526
+msgid ""
+"No local printer found! To manually install a printer enter a device name/"
+"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
+"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
+"printer: /dev/usb/lp1, ...)."
msgstr ""
+"No s'ha trobat cap impressora! Per instal·lar-ne una manualment entreu el "
+"dispositiu/fitxer a la línia d'entrada (Ports Paral·lel: /dev/lp0, /dev/lp1, "
+"etc., equivalents a LPT1:, LPT2:, etc.; 1a impresora USB: /dev/usb/lp0, 2a "
+"impressora USB: /dev/usb/lp1, etc.)."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
-msgstr "Habilita/Inhabilita el registre de paquets IPv4 estranys."
+#
+#: ../../printer/printerdrake.pm_.c:530
+msgid "You must enter a device or file name!"
+msgstr "Heu d'entrar un nom de dispositiu o de fitxer!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr "Eslovènia"
+#
+#: ../../printer/printerdrake.pm_.c:539
+msgid "No printer found!"
+msgstr "No s'ha trobat cap impressora!"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse test"
-msgstr "Prova del ratolí"
+#: ../../printer/printerdrake.pm_.c:548
+msgid "Available printers"
+msgstr "Impressores disponibles"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:552
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."
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
msgstr ""
-"El Drakperm s'usa per veure els fitxers que es faran servir per ajustar els "
-"permisos, propietaris i grups a través de l'msec.\n"
-"També podeu editar les vostres pròpies regles, que sobreescriuran les regles "
-"predeterminades."
+"S'ha detectat automàticament la següent impressora, si no és la que voleu "
+"configurar, escriviu un nom de dispositiu/nom de fitxer en la línia d'entrada"
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:553
msgid ""
-"Enter a user\n"
-"%s"
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
msgstr ""
-"Introduïu un usuari\n"
-"%s"
+"Aquí teniu una llista de les impressores que s'han detectat. Escolliu la "
+"impressora que voleu configurar o escriviu el nom de dispositiu/nom de "
+"fitxer en la línia d'entrada"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:555
msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
msgstr ""
-"- Dispositius PCI i USB: es llisten els identificadors PCI/USB del "
-"distribuïdor, del dispositiu, del subdistribuïdor i del subdispositiu"
+"S'ha detectat la següent impressora. La configuració de la impressora es "
+"farà automàticament. Si la vostra impressora no ha estat correctament "
+"detectada o si preferiu personalitzar la seva configuració, habiliteu "
+"\"Configuració manual\"."
-#
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "ProgressBar color selection"
-msgstr "Selecció del color de la barra de progrés"
-
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:556
msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-"Aquestes són les diferents entrades en el menú d'arrencada.\n"
-"Podeu afegir-ne més o canviar-ne les existents."
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
+"Aquí teniu una llista de les impressores que s'han detectat. Escolliu la "
+"impressora que voleu configurar. La configuració de la impressora es farà "
+"automàticament. Si la vostra impressora no ha estat correctament detectada o "
+"si preferiu personalitzar la seva configuració, habiliteu \"Configuració "
+"manual\"."
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
-
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:558
msgid ""
-"Application Name\n"
-"or Full Path:"
+"Please choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
+"Escolliu el port al qual està connectada la impressora o escriviu el nom de "
+"dispositiu/nom de fitxer en la línia d'entrada"
-#: ../../services.pm:1
-#, 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."
+#
+#: ../../printer/printerdrake.pm_.c:559
+msgid "Please choose the port where your printer is connected to."
msgstr ""
-"Executa les ordres programades per l'ordre 'at' a l'hora que es va\n"
-"especificar en executar 'at', i executa les ordres automàtiques quan la\n"
-"mitjana de càrrega és prou baixa."
+"Si us plau, seleccioneu el port al qual teniu connectada la impressora."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
-msgstr "Permet l'ús de la ràdio:"
+#: ../../printer/printerdrake.pm_.c:561
+msgid ""
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+msgstr ""
+" (Ports Paral·lel: /dev/lp0, /dev/lp1, etc., equivalents a LPT1:, LPT2:, "
+"etc.; 1a impressora USB: /dev/usb/lp0, 2a impressora USB: /dev/usb/lp1, "
+"etc.)."
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "S'estan instal·lant els paquets SANE..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
-msgstr "SILO"
+#: ../../printer/printerdrake.pm_.c:565
+msgid "You must choose/enter a printer/device!"
+msgstr "Heu d'escollir/introduir una impressora/dispositiu!"
#
-#: ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Change type"
-msgstr "Canvia el tipus"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", impressora USB #%s"
+#: ../../printer/printerdrake.pm_.c:584
+msgid "Manual configuration"
+msgstr "Configuració manual"
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "Instal·lació del SILO"
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
+msgstr "Opcions de la impressora lpd remota"
-#: ../../install_messages.pm:1
-#, c-format
+#
+#: ../../printer/printerdrake.pm_.c:634
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."
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
-"Felicitats! La instal·lació ha acabat.\n"
-"Traieu el suport d'arrencada i premeu Retorn per tornar a arrencar.\n"
-"\n"
-"\n"
-"Trobareu la solució als problemes coneguts d'aquesta versió del\n"
-"Mandrake Linux a la fe d'errates que hi ha a \n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"La informació sobre com configurar el vostre sistema està disponible a\n"
-"l'últim capítol d'instal·lació de la Guia Oficial de l'Usuari del\n"
-"Mandrake Linux."
+"Per poder utilitzar una impressora lpd remota, cal que proporcioneu el nom "
+"de l'ordinador central que té el servidor de la impressora i el nom de la "
+"impressora en aquell servidor."
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Restaura mitjançant el protocol de xarxa: %s"
+#
+#: ../../printer/printerdrake.pm_.c:635
+msgid "Remote host name"
+msgstr "Nom de l'ordinador central remot"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "paranoid"
-msgstr "paranoic"
+#: ../../printer/printerdrake.pm_.c:636
+msgid "Remote printer name"
+msgstr "Nom de la impressora remota"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Do not send mails when unneeded"
-msgstr ""
+#
+#: ../../printer/printerdrake.pm_.c:639
+msgid "Remote host name missing!"
+msgstr "Falta el nom de l'ordinador central remot!"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr ""
+#
+#: ../../printer/printerdrake.pm_.c:643
+msgid "Remote printer name missing!"
+msgstr "Falta el nom de la impressora remota!"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Envia un informe per correu electrònic després de cada còpia a:"
+msgid "Detected model: %s %s"
+msgstr "Model detectat: %s %s"
-#: ../../printer/printerdrake.pm:1
+#
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Scanning network..."
+msgstr "S'està escanejant la xarxa..."
+
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"També podeu utilitzar aquesta ordre en el camp \"Ordre d'impressió\" dels "
-"diàlegs d'impressió de moltes aplicacions. Però ara no heu de subministrar "
-"el fitxer perquè el fitxer per imprimir ja el proporciona l'aplicació.\n"
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ", impressora \"%s\", en el servidor \"%s\""
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
#, c-format
-msgid "Resolution"
-msgstr "Resolució"
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Impressora \"%s\" en el servidor \"%s\""
+
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "Opcions de la impressora SMB (Windows 9x/NT)"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:796
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 "
@@ -12656,639 +8818,335 @@ msgid ""
"access and any applicable user name, password, and workgroup information."
msgstr ""
"Per poder imprimir a una impressora SMB, heu d'indicar el nom de\n"
-"l'ordinador SMB (tingueu en compte que pot ser diferent del seu nom\n"
+"l'ordinador central SMB (tingueu en compte que pot ser diferent del seu nom\n"
"TCP/IP) i possiblement l'adreça IP del servidor d'impressió, així com el nom "
"de compartició de la impressora a què voleu accedir i el nom d'usuari,\n"
"contrasenya i informació de grup si són necessaris."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:797
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+" 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 ""
-" S'està habilitant su només per a membres del grup wheel o permet su des de "
-"qualsevol usuari."
+"Si la impressora desitjada ha estat detectada automàticament, només cal que "
+"la seleccioneu a la llista i que hi afegiu el nom d'usuari, la contrasenya i "
+"el grup de treball, si són necessaris."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
-msgstr "torna a configurar"
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
+msgstr "Ordinador central del servidor SMB"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"La vostra targeta pot tenir acceleració 3D de maquinari amb l'Xfree %s,\n"
-"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
-"PENJAR."
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr "IP del servidor SMB"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell timeout"
-msgstr "Temps màxim d'espera per a l'intèrpret d'ordres"
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr "Nom de compartició"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Xinetd Service"
-msgstr "Servei Xinetd"
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "Grup de treball"
-#: ../../any.pm:1
-#, c-format
-msgid "access to network tools"
-msgstr "accés a les eines de xarxa"
+#
+#: ../../printer/printerdrake.pm_.c:806
+msgid "Auto-detected"
+msgstr "Detectada automàticament"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "Penjada de microprogramari per a l'HP LaserJet 1000"
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
+msgstr "Cal que subministreu o bé el nom del servidor o bé la seva IP!"
-#: ../advertising/03-software.pl:1
-#, 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."
-msgstr ""
-"Mandrake Linux 9.2 us permet utilitzar el programari més actual per "
-"reproduir fitxers d'àudio, editar i organitzar les vostres imatges i fotos, "
-"i reproduir vídeos"
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
+msgstr "Falta el nom de compartició de Samba!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Aquesta és la llista d'impressores que es detecten automàticament."
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
+msgstr "AVÍS DE SEGURETAT!"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:827
#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"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 ""
-"S'ha produït un error en instal·lar l'aboot. \n"
-"Voleu intentar igualment la instal·lació encara que això destrueixi la "
-"primera partició?"
+"Ara es configurarà la impressió cap a un usuari de Windows amb contrasenya. "
+"Degut a una fallada en l'arquitectura del programari del client Samba la "
+"contrasenya es mostra en text clar en la línia d'ordres que el client Samba "
+"utilitza per transmetre i imprimir un treball en el Servidor Windows. Per "
+"tant, és possible per qualsevol usuari d'aquell ordinador de veure la "
+"contrasenya en la pantalla simplement escrivint ordres tals com \"ps auxwww"
+"\".\n"
+"\n"
+"Us recomanem que utilitzeu alguna de les següents alternatives (en tots el "
+"casos heu d'estar segur que només els ordinadors de la vostra xarxa local "
+"tenen accés al vostre Servidor Windows, per exemple utilitzant un "
+"tallafoc):\n"
+"\n"
+"Utilitzeu un compte sense contrasenya en el Servidor Windows, tal com \"GUEST"
+"\" o un compte especial dedicat a la impressió. No tragueu la protecció de "
+"la contrasenya d'un compte personal o del compte de l'administrador.\n"
+"\n"
+"Configureu el vostre Servidor Windows fent que la impressora estigui "
+"disponible a través del protocol LPD. Aleshores, definiu en el Printerdrake "
+"la impressió en aquest ordinador amb el tipus de connexió \"%s\".\n"
+"\n"
-#
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
msgid ""
-"Restore Selected\n"
-"Files"
+"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 ""
-"Restaura els fitxers\n"
-"seleccionats"
+"Configureu el vostre servidor Windows per tal que la impressora estigui "
+"disponible sota el protocol IPP i configureu la impressió en aquest "
+"ordinador amb el tipus de connexió \"%s\" en el Printerdrake.\n"
+"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:840
msgid ""
-"%s exists, delete?\n"
+"Connect your printer to a Linux server and let your Windows machine(s) "
+"connect to it as a client.\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."
+"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-"S'ha trobat %s, voleu suprimir-lo?\n"
-"Avís: Si ja heu seguit aquest procés, probablement us calgui\n"
-"purgar l'entrada del paràmetre 'authorized_keys' en el servidor."
+"Connecteu la impressora a un servidor Linux i feu que els ordinadors Windows "
+"s'hi connectin com clients.\n"
+"\n"
+"Realment voleu continuar configurant aquesta impressora tal com s'està fent "
+"ara?"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Si us plau, ompliu o marqueu el camp inferior"
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
+msgstr "Opcions de la impressora NetWare"
#
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Voleu desar les modificacions a /etc/fstab"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
-msgstr "Protocol d'arrencada"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "Discs LVM %s\n"
-
-#: ../../services.pm:1
-#, c-format
-msgid "On boot"
-msgstr "En arrencar"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "Cal instal·lar el paquet %s. Voleu instal·lar-lo?"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus identification"
-msgstr "Identificació del bus"
+#: ../../printer/printerdrake.pm_.c:912
+msgid ""
+"To print on a NetWare printer, you need to provide the NetWare print server "
+"name (Note! it may be different from its TCP/IP hostname!) as well as the "
+"print queue name for the printer you wish to access and any applicable user "
+"name and password."
+msgstr ""
+"Per poder imprimir a una impressora NetWare, heu de proporcionar el nom del\n"
+"servidor d'impressió NetWare (tingueu en compte que pot ser diferent del "
+"nom\n"
+"TCP/IP del seu ordinador central), així com el nom de la cua d'impressió de\n"
+"la impressora a la qual voleu accedir i el nom d'usuari i contrasenya si "
+"són\n"
+"necessaris."
-#
-#: ../../lang.pm:1
-#, c-format
-msgid "Vatican"
-msgstr "Vaticà"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr "Servidor de la impressora"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please make a backup of your data first"
-msgstr "Si us plau, feu primer una còpia de seguretat de les vostres dades"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
+msgstr "Nom de la cua d'impressió"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ADSL adapters"
-msgstr "Adaptadors ADSL"
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
+msgstr "Falta el nom del Servidor NCP!"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Teniu més d'un disc dur; en quin voleu instal·lar el Linux?"
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
+msgstr "Falta el nom de la cua NCP!"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, c-format
-msgid "Eritrea"
-msgstr "Eritrea"
+msgid ", host \"%s\", port %s"
+msgstr ", ordinador central \"%s\", port %s"
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
-msgid "Boot ISO"
-msgstr "ISO d'arrencada"
-
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid "Firmware needed"
-msgstr "si cal"
+msgid "Host \"%s\", port %s"
+msgstr "Ordinador central \"%s\", port %s"
#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove List"
-msgstr "Esborra la llista"
-
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
-msgstr "Entorn personalitzable"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
-msgstr "Inuktitut"
+#: ../../printer/printerdrake.pm_.c:1030
+msgid "TCP/Socket Printer Options"
+msgstr "Opcions de la impressora per a TCP/Socket"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1032
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."
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "Marroc"
+"Trieu una de les impressores detectades de la llista, o introduïu el nom de "
+"l'ordinador central o la IP i opcionalment el número de port (per defecte és "
+"el 9100) en els quadres de text."
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Quin és el model de la vostra impressora?"
+#: ../../printer/printerdrake.pm_.c:1033
+msgid ""
+"To print to a TCP or socket printer, you need to provide the host name or IP "
+"of the printer and optionally the port number (default is 9100). On HP "
+"JetDirect servers the port number is usually 9100, on other servers it can "
+"vary. See the manual of your hardware."
+msgstr ""
+"Per imprimir a una impressora TCP o Socket, heu d'indicar el nom de xarxa o "
+"la IP de la impressora i, opcionalment, el número de port. En els servidors "
+"HP JetDirect el número del port normalment és el 9100, en els altres pot "
+"variar. Mireu el manual del vostre maquinari."
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add a new printer"
-msgstr "Afegiu una impressora"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " All of your selected data have been "
-msgstr " Totes les dades seleccionades han estat "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "Nepal"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Suprimeix"
+#: ../../printer/printerdrake.pm_.c:1037
+msgid "Printer host name or IP missing!"
+msgstr "Falta el nom o la IP de l'ordinador central de la impressora!"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
-msgstr "CPU #"
+#
+#: ../../printer/printerdrake.pm_.c:1059
+msgid "Printer host name or IP"
+msgstr "Nom o IP de l'ordinador central de la impressora"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "chunk size"
-msgstr "mida del fragment"
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
+msgstr "Dispositiu URI d'impressora"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1108
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."
+"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 ""
-"Si s'estableix a \"ALL\" permet que /etc/issue i /etc/issue.net existeixin.\n"
-"\n"
-"Si s'estableix a \"NONE\" no espermet cap\n"
-"\n"
-"Altrament només es permet /etc/issue."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr " Habilita/Deshabilita sulogin(8) en nivell monousuari."
+"Podeu especificar directament l'URI per accedir a la impressora. L'URI ha de "
+"complir les especificacions CUPS o Foomatic. Cal remarcar que alguns gestors "
+"de cues no accepten tots els tipus d'URI."
-#. -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
-#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "ordres abans de l'arrencada, o 'c' per obtenir una linia d'ordres."
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
+msgstr "Heu d'entrar un URI vàlid!"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Hi ha hagut problemes en instal·lar el paquet %s"
+#: ../../printer/printerdrake.pm_.c:1463
+msgid ""
+"Every printer needs a name (for example \"printer\"). The Description and "
+"Location fields do not need to be filled in. They are comments for the users."
+msgstr ""
+"Cada impressora necessita un nom (per exemple \"impressora\"). Els camps de "
+"Descripció i Ubicació no són necessaris. Són comentaris per als usuaris."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Rebreu un avís si la càrrega és més gran que aquest valor"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr "Nom de la impressora"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Afegiu un escàner manualment"
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
+msgstr "Descripció"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh"
-msgstr "Refresca"
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
+msgstr "Ubicació"
#
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Reload partition table"
-msgstr "Torna a carregar la taula de particions"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Sí, vull l'entrada automàtica amb aquest (usuari, escriptori)"
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+msgid "Reading printer database..."
+msgstr "S'està llegint la base de dades d'impressores..."
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Selected"
-msgstr "Restaura els seleccionats"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Cerca les fonts en la llista de les instal·lades"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "La xarxa local no finalitza amb '.0', ho deixem córrer."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Boot"
-msgstr "Arrencada"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " i el CD és a la unitat"
+#: ../../printer/printerdrake.pm_.c:1482
+msgid "Preparing printer database..."
+msgstr "S'està preparant la base de dades d'impressores..."
#
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Tuner type:"
-msgstr "Tipus de sintonitzador:"
-
-#: ../../help.pm:1
-#, 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"
-"\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 ""
-"Ara cal seleccionar el sistema d'impressió del vostre ordinador. Altres\n"
-"sistemes operatius us poden oferir un, però el Linux Mandrake n'ofereix\n"
-"dos. Cada sistema d'impressió és el més convenient per a un tipus de\n"
-"configuració determinat.\n"
-"\n"
-" * \"%s\", acrònim de \"print, don't queue\" (imprimeix, no facis cua), és "
-"la\n"
-"millor opció si teniu una connexió directa amb la impressora i voleu evitar\n"
-"els embussos a l'hora d'imprimir, i no teniu impressores de xarxa. (\"%s\"\n"
-"només gestionarà xarxes molt senzilles i és una mica lenta quan s'usa en\n"
-"xarxa.) Escolliu \"pdq\" si és la vostra primera incursió en GNU/Linux.\n"
-"\n"
-" * \"%s\" (\"Common Unix Printing System\", Sistema d'impressió comú de "
-"Unix),\n"
-"és una elecció excel•lent tant si voleu imprimir a la vostra impressora "
-"local\n"
-"com a l'altra punta del món. És senzilla de configurar i pot actuar com a "
-"servidor\n"
-"o client per a l'antic sistema d'impressió \"lpd\" i, per tant, és "
-"compatible\n"
-"amb sistemes operatius antics que encara necessitin serveis d'impressió. És "
-"força\n"
-"potent, però la configuració bàsica és gairebé tan senzilla com la de \"pdq"
-"\". Si\n"
-"necessiteu emular un servidor \"lpd\", heu d'habilitar el dimoni \"cups-lpd"
-"\". \"%s\"\n"
-"inclou frontals gràfics per a la impressió o per escollir les opcions "
-"d'impressió\n"
-"i per gestionar la impressora.\n"
-"\n"
-"Si ara feu una tria, i després veieu que el sistema d'impressió no us "
-"agrada, podeu\n"
-"canviar-lo executant el PrinterDrake des del Centre de control de Mandrake i "
-"fent\n"
-"clic al botó Expert."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
-msgstr "tecla de \"Menú\""
+#: ../../printer/printerdrake.pm_.c:1578
+msgid "Your printer model"
+msgstr "El model de la vostra impressora"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:1579
#, 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"
-"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."
+"%s"
msgstr ""
+"Printerdrake ha comparat el nom del model resultant de la detecció "
+"automàtica d'impressores amb els models llistats en la seva base de dades "
+"d'impressores per trobar el millor resultat. L'elecció pot ser dolenta, "
+"especialment si la vostra impressora no es troba a la base de dades. Per "
+"tant, mireu si l'elecció és correcta i feu clic a \"El model és correcte\" "
+"si ho és, o a \"Selecciona el model manualment\" per tal d'escollir "
+"manualment el model d'impressora en la pantalla següent.\n"
"\n"
+"Per la vostra impressora el Printerdrake ha trobat:\n"
"\n"
-"Si us plau, comproveu si el Printerdrake ha detectat correctament el model "
-"de la impressora. Cerqueu el model correcte a la llista quan estigui "
-"ressaltat un model erroni o bé \"Impressora bàsica\"."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Administrator:"
-msgstr "Administrador de seguretat:"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
-msgstr ""
-"Defineix el temps màxim d'espera per a l'intèrpret d'ordres. El valor zero "
-"indica 'sense temps màxim'."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr ""
-
-#: ../../../move/tree/mdk_totem:1
-#, 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."
-msgstr "si és \"sí\", comprova els permisos dels fitxers a casa dels usuaris"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"No teniu cap connexió a Internet.\n"
-"Creeu-ne una fent clic a 'Configura'"
-
-#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Fonts copy"
-msgstr "Còpia de fonts"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
-msgstr "Automàtica"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Voleu comprovar la configuració?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
-msgstr ""
-"La impressora \"%s\" ha estat suprimida d'Star Office/OpenOffice.org/GIMP "
-"amb èxit."
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save packages selection"
-msgstr "Desa la selecció de paquets"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Actions"
-msgstr "/_Accions"
-
-#
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Remove the last item"
-msgstr "Esborra l'últim element"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Llista d'usuaris per restaurar (només és important la data més recent per "
-"usuari)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
-msgstr "No s'ha creat cap imatge d'arrencada des de xarxa"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "utilitza pptp"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-"Escolliu els serveis que s'han d'iniciar automàticament durant l'arrencada"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check files/directories writable by everybody"
-msgstr "Comprova els fitxers/directoris que tothom pot escriure"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Aprengueu a utilitzar la impressora"
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+msgid "The model is correct"
+msgstr "El model és correcte"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configure the network now"
-msgstr "Configureu la xarxa ara"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Escolliu una rèplica des de la qual aconseguir els paquets"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"El redimensionador de la FAT no pot gestionar la vostra partició. \n"
-"S'ha produït l'error següent: %s"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Size: "
-msgstr "Mida:"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "A quin sector ho voleu moure?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahamas"
-msgstr "Bahames"
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+msgid "Select model manually"
+msgstr "Selecciona el model manualment"
#
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Do you want to click on this button?"
-msgstr "Voleu fer clic en aquest botó?"
+#: ../../printer/printerdrake.pm_.c:1606
+msgid "Printer model selection"
+msgstr "Selecció del model d'impressora"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Manual configuration"
-msgstr "Configuració manual"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "search"
-msgstr "cerca"
+#: ../../printer/printerdrake.pm_.c:1607
+msgid "Which printer model do you have?"
+msgstr "Quin és el model de la vostra impressora?"
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1608
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."
+"\n"
+"\n"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-"Aquest paquet carrega el mapa de teclat seleccionat segons s'ha definit\n"
-"a /etc/sysconfig/keyboard. Es pot seleccionar mitjançant la utilitat\n"
-"kbdconfig.\n"
-"Per a la majoria d'ordinadors, s'ha de deixar habilitat."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (instal·lació del controlador de pantalla)"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "El nom de l'ordinador del Zeroconf no ha de contenir cap ."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr " Accepta/Rebutja l'eco icmp."
+"\n"
+"\n"
+"Si us plau, comproveu que Printerdrake ha detectat el model de la impressora "
+"correctament. Busqueu el model correcte a la llista quan el cursor estigui "
+"en un model erroni o en \"Impressora en cru (raw)\"."
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1611
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."
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
-"El syslog és el sistema que utilitzen molts dimonis per registrar\n"
-"missatges en diversos fitxers de registre del sistema. És aconsellable\n"
-"executar-lo sempre."
-
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown/Others"
-msgstr "Desconegut/Altres"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
-msgstr "No s'ha detectat cap targeta de TV!"
-
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Options"
-msgstr "Opcions"
+"Si la vostra impressora no és a la llista, escolliu-ne una de compatible "
+"(mireu el manual de la impressora) o una de similar."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "La impressora \"%s\" és ara la impressora per defecte."
+#
+#: ../../printer/printerdrake.pm_.c:1697
+msgid "OKI winprinter configuration"
+msgstr "Configuració de la \"winprinter\" OKI"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1698
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -13304,273 +9162,248 @@ msgstr ""
"paral·lel abans d'imprimir la pàgina de prova. Si no ho feu, la impressora "
"no funcionarà. El controlador de la impressora ignorarà el tipus de connexió."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr "generació de la CPU (p.ex., 8 per al Pentium III, etc.)"
-
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detected"
-msgstr "Detectada automàticament"
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+msgid "Lexmark inkjet configuration"
+msgstr "Configuració de la Lexmark inkjet"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1719
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)."
+"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 ""
-"Ara configurareu l'ordinador per instal·lar un servidor PXE com a servidor "
-"DHCP\n"
-"i un servidor TFTP per construir un servidor d'instal·lació.\n"
-"Amb aquesta característica, altres ordinadors de la vostra xarxa local es "
-"podran instal·lar\n"
-"prenent aquest ordinador com a font.\n"
-"\n"
-"Assegureu-vos d'haver configurat l'accés a xarxes/Internet amb el "
-"drakconnect abans de continuar.\n"
-"\n"
-"Nota: per configurar una xarxa d'àrea local (LAN), us cal un adaptador de "
-"xarxa dedicat."
+"Els controladors per a la inkjet proporcionats per Lexmark només funcionen "
+"amb impressores locals, i no amb impressores en ordinadors remots o "
+"servidors d'impressió. Si us plau, connecteu la vostra impressora a un port "
+"local o configureu-la en l'ordinador on està connectada."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1746
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"
+"To be able to print with your Lexmark inkjet and this configuration, you "
+"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+"Per poder imprimir amb la Lexmark inkjet i amb aquesta configuració, "
+"necessiteu els controladors de la impressora inkjet proporcionats per "
+"Lexmark (http://www.lexmark.com/). Dins de la web de Lexmark, feu clic al "
+"botó \"Controladors\" i trieu la secció d'impressores. Aleshores escolliu el "
+"vostre model i després \"Linux\" com a sistema operatiu. Els controladors "
+"vénen en paquets RPM o en seqüències per a l'intèrpret d'ordres amb una "
+"instal·lació gràfica interactiva. No necessiteu fer aquesta configuració amb "
+"la interfície gràfica. Cancel·leu directament després de l'acord de "
+"llicència. Llavors imprimiu pàgines d'alineació dels capçals d'impressió amb "
+"l'ordre \"lexmarkmaintain\" i ajusteu l'alineació dels capçals amb aquest "
+"programa."
+
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr "Impressora làser GDI que empra el format Zenographics ZJ-Stream"
+
+#: ../../printer/printerdrake.pm_.c:1750
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\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"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
"\n"
-"It also provides a much higher API than OSS.\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\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"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-"L'OSS (Sistema de So Obert) va ser la primera API de so. És una API "
-"independent del sistema operatiu (disponible en molts sistemes UNIX(tm)) "
-"però és molt bàsica i limitada.\n"
-"Encara més, tots els controladors OSS reinventen la roda.\n"
+"La vostra impressora pertany al grup d'impressores làser GDI (winprinters: "
+"orientades principalment a Windows) distribuïdes per diversos fabricants, i "
+"fa servir el format de trama Zenographics ZJ-stream per a les dades enviades "
+"a la impressora. El controlador per a aquest tipus d'impressores encara es "
+"troba en una etapa inicial de desenvolupament i, per tant, és possible que "
+"no sempre funcioni de manera correcta. En concret, és molt possible que la "
+"impressora només funcioni si trieu com a mida de paper l'A4.\n"
"\n"
-"L'ALSA (Arquitectura Avançada de So per a Linux) és una arquitectura modular "
-"que\n"
-"funciona amb una àmplia varietat de targetes ISA, USB i PCI.\n"
+"Alguna d'aquestes impressores, com l'HP Laserjet 1000, per a la qual es va "
+"crear aquest controlador en un principi, necessiten que els carregueu el "
+"microprogramari (firmware) després d'engegar-les. En el cas de l'HP Laserjet "
+"1000, haureu de cercar el fitxer \"sihp1000.img\" en el CD de controladors "
+"d'impressora de Windows o a la partició Windows, i carregar-lo a la "
+"impressora amb una de les ordres següents:\n"
"\n"
-"També proporciona una API molt més funcional que la d'OSS.\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
"\n"
-"Per utilitzar alsa, es pot triar entre:\n"
-"- l'antiga API compatible d'OSS\n"
-"- la nova API d'ALSA que proporciona moltes característiques millorades però "
-"que necessita fer servir la lliberia ALSA.\n"
+"La primera d'elles la pot introduir qualsevol usuari, mentre que la segona "
+"s'ha d'executar com a root. Un cop fet això, podreu imprimir amb "
+"normalitat.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"No hi ha prou espai lliure per un 1MB de bootstrap! La instal·lació "
-"continuarà, però per iniciar el sistema necessitareu crear la partició de "
-"bootstrap amb el DiskDrake"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1972
msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
+"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 ""
-"Si us plau, escolliu la impressora que voleu configurar o introduïu un nom "
-"de dispositiu/nom de fitxer en la línia d'entrada"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
-msgstr "Rebutja"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
-msgstr "LOCAL"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
-msgstr "HFS"
+"Paràmetres predeterminats de la impressora\n"
+"\n"
+"Us hauríeu d'assegurar que la mida de pàgina, el tipus de tinta i el mode "
+"d'impressió (si estan disponibles) i també la configuració del maquinari de "
+"les impressores làser (memòria, unitat dúplex, safates extra) són correctes. "
+"Cal remarcar que amb una qualitat d'impressió o una resolució molt altes la "
+"impressió pot ser molt lenta."
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"El HardDrake fa una prova del maquinari, i opcionalment configura\n"
-"el maquinari nou/canviat."
+msgid "Option %s must be an integer number!"
+msgstr "L'opció %s ha de ser un número enter!"
-#: ../../fs.pm:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "Creating and formatting file %s"
-msgstr "S'està creant i formatant el fitxer %s"
+msgid "Option %s must be a number!"
+msgstr "L'opció %s ha de ser un número!"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:1989
#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
-msgstr "si és \"sí\", comprova les addicions/supressions dels fitxers sgid."
+msgid "Option %s out of range!"
+msgstr "L'opció %s està fora de rang!"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2028
#, 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"
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
-"Cal penjar el microprogramari de l'HP LaserJet 1000 després d'activar-la. "
-"Baixeu el paquet de programes de control per a Windows des del lloc web d'HP "
-"(el microprogramari que hi ha al CD de la impressora no funciona) i extraieu-"
-"ne el fitxer de microprogramari descomprimint el fitxer '.exe' autoextraïble "
-"amb la utilitat 'unzip' i cercant el fitxer 'sihp1000.img'. Copieu aquest "
-"fitxer al directori '/etc/printer', on la seqüència penjadora el trobarà, el "
-"penjarà i l'activarà allà on la impressora estigui connectada.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "Escolliu un LVM existent al qual afegir-ho"
+"Voleu definir la impressora (\"%s\")\n"
+"com a impressora predeterminada?"
#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "xfs restart"
-msgstr "reinicialització de l'xfs"
+#: ../../printer/printerdrake.pm_.c:2051
+msgid "Test pages"
+msgstr "Pàgines de prova"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2052
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"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 ""
-"La impressora \"%s\" ja existeix,\n"
-"realment voleu sobreescriure la seva configuració?"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Utilitza els escàners dels ordinadors centrals:"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
-msgstr "Desselecciona-ho tot"
-
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "No hi ha particions disponibles"
+"Escolliu les pàgines de prova que voleu imprimir.\n"
+"Nota: la pàgina de prova de fotografia pot ser molt lenta d'imprimir i en "
+"impressores làser amb poca memòria podria no acabar d'imprimir-se. "
+"Normalment n'hi ha prou d'imprimir la pàgina de prova estàndard."
#
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Management \n"
-msgstr "Gestió d'impressores \n"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Sistema de resolució de nom de domini"
+#: ../../printer/printerdrake.pm_.c:2056
+msgid "No test pages"
+msgstr "Cap pàgina de prova"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
-msgstr "Clau de xifratge (un altre cop)"
+#
+#: ../../printer/printerdrake.pm_.c:2057
+msgid "Print"
+msgstr "Imprimeix"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Falta el nom de compartició de Samba!"
+#
+#: ../../printer/printerdrake.pm_.c:2114
+msgid "Standard test page"
+msgstr "Pàgina de prova estàndard"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
-msgstr "Instal·lació de True Type feta"
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
+msgstr "Pàgina de prova alternativa (Carta)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detection in progress"
-msgstr "Detecció en procés"
+#
+#: ../../printer/printerdrake.pm_.c:2120
+msgid "Alternative test page (A4)"
+msgstr "Pàgina de prova alternativa (A4)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Munta tot el nucli -->"
+#
+#: ../../printer/printerdrake.pm_.c:2122
+msgid "Photo test page"
+msgstr "Pàgina de prova de fotografia"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "modem"
-msgstr "mòdem"
+#
+#: ../../printer/printerdrake.pm_.c:2126
+msgid "Do not print any test page"
+msgstr "No imprimeixis cap pàgina de prova"
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "Benvingut a %s"
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
+msgstr "S'esta(n) imprimint la(es) pàgina(es) de prova..."
-#: ../../standalone/drakhelp:1
+#: ../../printer/printerdrake.pm_.c:2159
#, 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"
+"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"
-"Usage: \n"
msgstr ""
+"La(es) pàgina(es) de prova s'ha(n) enviat a la impressora.\n"
+"Pot passar un cert temps abans no comenci la impressió.\n"
+"Estat de la impressió:\n"
+"%s\n"
+"\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Inseriu el disquet d'Actualització de Mòduls a la unitat %s"
+#
+#: ../../printer/printerdrake.pm_.c:2163
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+msgstr ""
+"La(es) pàgina(es) de prova s'ha(n) enviat a la impressora.\n"
+"Pot passar un cert temps abans no comenci la impressió.\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
-msgstr "Bootsplash"
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
+msgstr "Ha funcionat correctament?"
-#: ../../printer/printerdrake.pm:1
+#
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+msgid "Raw printer"
+msgstr "Impressora en cru (raw)"
+
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
+"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 ""
-"La impressora\n"
-"\n"
-"%s%s\n"
-"està connectada directament al vostre sistema"
+"Per imprimir un fitxer des de la línia d'ordres (finestra de terminal) podeu "
+"utilitzar la comanda \"%s <fitxer>\" o una eina d'impressió gràfica: \"xpp "
+"<fitxer>\" o \"kprinter <fitxer>\". Les eines gràfiques us permeten escollir "
+"la impressora i modificar-ne els paràmetres fàcilment.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Compartició d'impressores a ordinadors centrals/xarxes:"
+#: ../../printer/printerdrake.pm_.c:2218
+msgid ""
+"These commands you can also use in the \"Printing command\" field of the "
+"printing dialogs of many applications, but here do not supply the file name "
+"because the file to print is provided by the application.\n"
+msgstr ""
+"Podeu utilitzar aquestes ordres en el camp \"Ordre d'impressió\" dels "
+"diàlegs d'impressió de moltes aplicacions, però ara no heu de subministrar "
+"el fitxer perquè el fitxer per imprimir ja el proporciona l'aplicació.\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, c-format
msgid ""
"\n"
@@ -13583,8097 +9416,6195 @@ msgstr ""
"d'impressió concret. Simplement afegiu els paràmetres desitjats a la línia "
"d'ordres, p.ex.: \"%s <fitxer>\". "
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "DrakClock"
-msgstr "DrakClock"
-
-#: ../../modules/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
#, 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."
+"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\n"
+"\n"
msgstr ""
-"En alguns casos, el controlador de %s necessita informació addicional\n"
-"per funcionar correctament, tot i que normalment funciona bé sense ella.\n"
-"Voleu especificar opcions addicionals o deixar que el controlador\n"
-"cerqui al vostre ordinador la informació que necessita? Aquesta recerca\n"
-"podria penjar l'ordinador, però això no causaria cap dany."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "L'etiqueta del CD no és correcta. L'etiqueta d'aquest disc és %s."
+"Per conèixer les opcions disponibles per a la impressora actual, llegiu la "
+"llista de sota o feu clic al botó \"Imprimeix la llista d'opcions\".%s%s\n"
+"\n"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:2228
msgid ""
+"Here is a list of the available printing options for the current printer:\n"
"\n"
-"- Daemon, %s via:\n"
msgstr ""
+"Aquí teniu una llista de les opcions d'impressió disponibles per a la "
+"impressora actual:\n"
"\n"
-"- Dimoni (%s) inclou:\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "Cuba"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr "Octubre"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belize"
-msgstr "Belize"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Searching for new printers..."
-msgstr "S'estan cercant noves impressores..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
-msgstr " (multisessió)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
-msgstr "Temps màxim d'arrencada del nucli"
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, 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."
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
msgstr ""
-"La vostra targeta pot tenir acceleració 3D de maquinari, però només amb "
-"l'Xfree %s.\n"
-"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Activate/Disable daily security check."
-msgstr " Activa/Inhabilita la comprovació diària de seguretat."
+"Per imprimir un fitxer des de la línia d'ordres (finestra de terminal) useu "
+"l'ordre \"%s <fitxer>\".\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-R.\n"
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
+msgid ""
+"This command you can also use in the \"Printing command\" field of the "
+"printing dialogs of many applications. But here do not supply the file name "
+"because the file to print is provided by the application.\n"
+msgstr ""
+"També podeu utilitzar aquesta ordre en el camp \"Ordre d'impressió\" dels "
+"diàlegs d'impressió de moltes aplicacions. Però ara no heu de subministrar "
+"el fitxer perquè el fitxer per imprimir ja el proporciona l'aplicació.\n"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
-msgstr "Habilita/Inhabilita el libsafe si és que es troba al sistema."
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
+msgid ""
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
+msgstr ""
+"Per veure una llista de les opcions disponibles per a la impressora actual "
+"feu clic sobre el botó \"Imprimeix la llista d'opcions\"."
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2253
#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
msgstr ""
-"L'auxiliar de particionament del DrakX ha trobat les solucions següents:"
+"Per imprimir un fitxer des de la línia d'ordres (finestra de terminal) "
+"utilitzeu l'ordre \"%s <fitxer>\" o \"%s <fitxer>\".\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "Hongarès"
+#: ../../printer/printerdrake.pm_.c:2257
+msgid ""
+"You can also use the graphical interface \"xpdq\" for setting options and "
+"handling printing jobs.\n"
+"If you are using KDE as desktop environment you have a \"panic button\", an "
+"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
+"jobs immediately when you click it. This is for example useful for paper "
+"jams.\n"
+msgstr ""
+"També podeu emprar la interfície gràfica \"xpdq\" per configurar opcions i "
+"gestionar treballs d'impressió.\n"
+"Si esteu utilitzant KDE com a entorn gràfic per defecte, teniu un \"botó "
+"d'emergència\", una icona a l'escriptori, etiquetada amb \"ATURA la "
+"impressora!\", que atura tots el treballs d'impressió immediatament en fer-"
+"hi clic. Això és útil, per exemple, quan se us enganxa el paper en la "
+"impressora.\n"
-#: ../../network/isdn.pm:1
+#: ../../printer/printerdrake.pm_.c:2261
#, c-format
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"\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 ""
-"Seleccioneu el vostre proveïdor.\n"
-"Si no és a la llista, seleccioneu \"No és a la llista\""
+"\n"
+"Les ordres \"%s\" i \"%s\" també permeten modificar els paràmetres per a un "
+"treball d'impressió concret. Simplement afegiu els paràmetres que vulgueu a "
+"la línia d'ordres, p.ex. \"%s <fitxer>\".\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2271
#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Sincronització automàtica de la hora (usant NTP)"
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "S'està imprimint/escanejant/llegint targetes de fotos en \"%s\""
-#: ../../network/adsl.pm:1
+#: ../../printer/printerdrake.pm_.c:2272
#, c-format
-msgid "Use my Windows partition"
-msgstr "Usa la meva partició de Windows"
+msgid "Printing/Scanning on \"%s\""
+msgstr "S'està imprimint/escanejant en \"%s\""
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm_.c:2274
#, c-format
-msgid "8 MB"
-msgstr "8 MB"
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "S'està imprimint o llegint una targeta de fotos en \"%s\""
-#
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:2275
#, c-format
-msgid "LDAP Server"
-msgstr "Servidor LDAP"
+msgid "Printing on the printer \"%s\""
+msgstr "S'està imprimint en la impressora \"%s\""
-#: ../../services.pm:1
-#, 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."
-msgstr ""
-"El suport PCMCIA serveix normalment per funcionar amb coses com ara "
-"l'ethernet\n"
-"i els mòdems en portàtils. No s'iniciarà tret que es configuri, de manera\n"
-"que no hi ha problema per instal·lar-lo en ordinadors que no el necessiten."
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+msgid "Close"
+msgstr "Tanca"
#
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Choose your country"
-msgstr "Escolliu el vostre país"
+#: ../../printer/printerdrake.pm_.c:2281
+msgid "Print option list"
+msgstr "Imprimeix la llista d'opcions"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2301
#, 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"
-"- System Files:\n"
+"Do not use \"scannerdrake\" for this device!"
msgstr ""
+"El vostre dispositiu multifunció ha estat configurat automàticament per "
+"poder escanejar. Ara podeu escanejar amb \"scanimage\" (\"scanimage -d hp:%s"
+"\" per especificar l'escàner si n'hi ha més d'un) des de la línia d'ordres o "
+"amb les interfícies gràfiques \"xscanimage\" o \"xsane\". Si esteu "
+"utilitzant el GIMP, també podeu escanejar escollint el punt apropiat en el "
+"menú \"Fitxer\"/\"Adquireix\". Executeu \"man scanimage\" a la línia "
+"d'ordres per a més informació.\n"
"\n"
-"- Fitxers de sistema:\n"
+"No utilitzeu \"scannerdrake\" amb aquest dispositiu!"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
-msgstr "Eines autònomes"
+#: ../../printer/printerdrake.pm_.c:2322
+msgid ""
+"Your printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
+msgstr ""
+"La impressora ha estat configurada automàticament per permetre-us l'accés "
+"als dispositius de targetes de fotos del vostre PC. Ara podeu accedir a les "
+"targetes de fotos emprant l'eina gràfica \"MtoolsFM\" (menú \"Aplicacions\" -"
+"> \"Eines d'arxivament\" -> \"Gestor de fitxers MTools\") o les utilitats de "
+"la línia d'ordres \"mtools\" (introduïu \"man mtools\" a la línia d'ordres "
+"per a més informació). Trobareu el sistema de fitxers de la targeta sota la "
+"lletra d'unitat \"p:\", o a les lletres següents si teniu més d'una "
+"impressora HP amb unitats de targetes de fotos. Al \"MToolsFM\" podeu "
+"explorar les diferents lletres d'unitat amb el camp que es troba a la "
+"cantonada superior dreta de les llistes de fitxers."
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Where"
-msgstr "On"
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+msgid "Reading printer data..."
+msgstr "S'estan llegint dades de la impressora..."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "but not matching"
-msgstr "però que no coincideixin amb"
+#
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+msgid "Transfer printer configuration"
+msgstr "Configuració de la transferència de la impressió"
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm_.c:2365
#, c-format
msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
+"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 ""
-"Aquí podeu seleccionar un controlador alternatiu (tant OSS com ALSA) per ala "
-"targeta de so (%s)"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "S'estan configurant les targetes PCMCIA..."
-
-#: ../../common.pm:1
-#, c-format
-msgid "kdesu missing"
-msgstr "El kdesu no hi és"
+"Podeu copiar la configuració d'impressió que he fet per la cua %s a la %s, "
+"la cua d'impressió actual. Totes les dades de configuració (nom "
+"d'impressora, descripció, ubicació, tipus de connexió i paràmetres per "
+"defecte) se sobreescriuran, però els treballs d'impressió no seran "
+"transferits.\n"
+"No totes les cues d'impressió poden ser transferides degut a les raons "
+"següents:\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s requereix un nom d'usuari...\n"
+#: ../../printer/printerdrake.pm_.c:2368
+msgid ""
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
+msgstr ""
+"CUPS no permet l'ús d'impressores en servidors Novell ni que les impressores "
+"enviïn les dades dins d'una ordre formada arbitràriament.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
-msgstr "Clau de xifratge"
+#: ../../printer/printerdrake.pm_.c:2370
+msgid ""
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
+msgstr ""
+"PDQ només funciona amb impressores locals, impressores LPD remotes, i "
+"impressores de Socket/TCP.\n"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr "LPD i LPRng no funcionen amb impressores IPP.\n"
-#: ../../keyboard.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2374
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."
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
msgstr ""
+"A més, les cues que no han estat creades amb aquest programa o amb "
+"\"foomatic-configure\" no es poden transferir."
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "Illa Christmas"
-
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Automatic"
-msgstr "IP automàtica"
+#: ../../printer/printerdrake.pm_.c:2375
+msgid ""
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
+msgstr ""
+"\n"
+"Tampoc poden transferir-se les impressores configurades amb els fitxers PPD "
+"proporcionats pels seus fabricants o amb controladors nadius per a CUPS."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
+#: ../../printer/printerdrake.pm_.c:2376
+msgid ""
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
msgstr ""
-"Ha fallat la instal·lació del carregador de l'arrencada. S'ha produït "
-"l'error següent:"
+"\n"
+"Marqueu les impressores que voleu transferir i feu clic a \n"
+"\"Transfereix\"."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "Canal EIDE/SCSI"
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
+msgstr "No transfereixis cap impressora"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Fes que aquesta sigui la impressora predeterminada"
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
+msgstr "Transfereix"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2392
#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Comproveu que %s és la ruta correcte"
+msgid ""
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
+msgstr ""
+"Ja existeix una impressora amb nom \"%s\" en %s. \n"
+"Feu clic a \"Transfereix\" per sobreescriure-la.\n"
+"També podeu escriure un nom nou o ometre aquesta impressora."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "partició %s"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr ""
+"El nom de la impressora només pot constar de lletres, números i el caràcter "
+"de subratllat"
-#: ../../security/level.pm:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
-msgid "Paranoid"
-msgstr "Paranoic"
+msgid ""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
+msgstr ""
+"La impressora \"%s\" ja existeix,\n"
+"realment voleu sobreescriure la seva configuració?"
#
-#: ../../any.pm:1
-#, c-format
-msgid "NIS"
-msgstr "NIS"
+#: ../../printer/printerdrake.pm_.c:2413
+msgid "New printer name"
+msgstr "Nou nom d'impressora"
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "<-- Del User"
-msgstr "<-- Suprimeix un usuari"
+msgid "Transferring %s..."
+msgstr "S'està transferint %s..."
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:2427
#, c-format
-msgid "Location on the bus"
-msgstr "Ubicació en el bus"
+msgid ""
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
+msgstr ""
+"Heu tranferit la vostra impressora predeterminada anterior (\"%s\"). Voleu "
+"que també sigui la impressora predeterminada en el nou sistema d'impressió %"
+"s?"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No printer found!"
-msgstr "No s'ha trobat cap impressora!"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
-msgstr "el nom del venedor del dispositiu"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Erase entire disk"
-msgstr "Esborra tot el disc"
-
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Default)"
-msgstr " (Predeterminat)"
+#: ../../printer/printerdrake.pm_.c:2437
+msgid "Refreshing printer data..."
+msgstr "S'estan refrescant les dades de les impressores..."
#
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Automatic reconfiguration"
-msgstr "Reconfiguració automàtica"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Receiving Speed:"
-msgstr "Velocitat de recepció:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
-msgstr "Illes Turks i Caicos"
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+msgid "Configuration of a remote printer"
+msgstr "Configuració d'una impressora remota"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Ip"
-msgstr "Cap IP"
+#
+#: ../../printer/printerdrake.pm_.c:2446
+msgid "Starting network..."
+msgstr "S'està arrencant la xarxa..."
-#: ../../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
-#, c-format
-msgid "<- Previous"
-msgstr "<- Anterior"
+#
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+msgid "Configure the network now"
+msgstr "Configureu la xarxa ara"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Transfer Now"
-msgstr "Transfereix-ho ara"
+#
+#: ../../printer/printerdrake.pm_.c:2480
+msgid "Network functionality not configured"
+msgstr "La funcionalitat de xarxa no ha estat configurada"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Set root password and network authentication methods"
+#: ../../printer/printerdrake.pm_.c:2481
+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 ""
-"Arguments: (arg)\n"
-"\n"
-"Utilitza una contrasenya per autenticar usuaris."
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "Commuta entre pla i ordenat per grups"
+"Esteu a punt de configurar una impressora remota. Això necessita una "
+"connexió de xarxa operativa, però la vostra xarxa encara no està "
+"configurada. Si continueu sense configurar la xarxa, no podreu utilitzar la "
+"impressora que esteu configurant ara. Què voleu fer?"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Themes"
-msgstr "Temes"
+#
+#: ../../printer/printerdrake.pm_.c:2484
+msgid "Go on without configuring the network"
+msgstr "Continua sense configurar la xarxa"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "Opcions: %s"
+#: ../../printer/printerdrake.pm_.c:2518
+msgid ""
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
+"La configuració de xarxa feta durant la instal·lació no s'ha pogut iniciar "
+"ara. Comproveu si la xarxa es torna accessible després de reiniciar el "
+"sistema i corregiu la configuració utilitzant el Centre de Control Mandrake, "
+"a la secció \"Xarxa & Internet\"/\"Connexió\", i després configureu la "
+"impressora, també usant el Centre de Control Mandrake, secció \"Maquinari\"/"
+"\"Impressores\""
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2519
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
+"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 ""
-"Actualment utilitzeu %s com a gestor de l'arrencada\n"
-"Feu clic a 'Configura' per executar l'auxiliar de configuració."
+"L'accés a la xarxa no ha funcionat i no s'ha pogut iniciar. Comproveu la "
+"configuració i el maquinari. Després proveu de configurar la impressora "
+"remota una altra vegada."
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "Configuració de la \"winprinter\" OKI"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
-msgstr "Saint Helena"
+#: ../../printer/printerdrake.pm_.c:2529
+msgid "Restarting printing system..."
+msgstr "S'està reiniciant el sistema d'impressió..."
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Port paral·lel #%s"
+#
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "high"
+msgstr "alt"
#
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Security Level"
-msgstr "Nivell de seguretat:"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "paranoid"
+msgstr "paranoic"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+msgid "Installing a printing system in the %s security level"
msgstr ""
-"Alguns passos no s'han completat.\n"
-"\n"
-"Segur que voleu sortir ara?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "Sudan"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "Polonès (disposició qwertz)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
-msgstr "Síria"
+"S'està instal·lant un sistema d'impressió amb el nivell de seguretat %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2570
#, 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?"
+"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 ""
-"La vostra impressora és un dispositiu multifunció d'HP o de Sony (OfficeJet, "
-"PSC, LaserJet 1100/1200/1220/3200/3300 amb escàner, DeskJet 450, Sony IJP-"
-"V100), una HP PhotoSmart or una HP LaserJet 2200?"
+"Ara s'instal·larà el sistema d'impressió %s en un sistema que s'executa en "
+"el nivell de seguretat %s.\n"
+"\n"
+"Aquest sistema d'impressió executa un dimoni (procés en segon pla) que "
+"espera els treballs d'impressió i els gestiona. Aquest dimoni és accessible "
+"per ordinadors remots connectats a la xarxa i, per tant, és un possible punt "
+"d'atac. Per tant, només s'arrenquen per defecte uns pocs dimonis triats en "
+"aquest nivell de seguretat.\n"
+"\n"
+"Realment voleu configurar la impressió en aquest ordinador?"
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
+#: ../../printer/printerdrake.pm_.c:2604
+msgid "Starting the printing system at boot time"
+msgstr "S'està iniciant el sistema d'impressió en arrencar l'ordinador"
+
+#: ../../printer/printerdrake.pm_.c:2605
#, c-format
msgid ""
-"Welcome to %s the operating system chooser!\n"
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\n"
"\n"
-"Choose an operating system from the list above or\n"
-"wait %d seconds for default boot.\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 ""
-"Benvingut al %s, el selector de sistema operatiu!\n"
+"El sistema d'impressió (%s) no s'arrencarà automàticament quan l'ordinador "
+"s'iniciï.\n"
"\n"
-"Trieu un sistema operatiu de la lista superior, o espereu\n"
-"%d segons per arrencar en el sistema operatiu predeterminat.\n"
+"És possible que l'arrencada automàtica fos deshabilitada en canviar a un "
+"nivell de seguretat més alt, perquè el sistema d'impressió és un punt d'atac "
+"potencial.\n"
"\n"
+"Voleu tornar a habilitar l'arrencada automàtica del sistema d'impressió?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "Portuguès"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
-msgstr "Nom del fitxer de loopback: "
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "L'adreça del servidor DNS ha d'estar en format 1.2.3.4"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Control key"
-msgstr "Tecla de control esquerra"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
-msgstr "Sèrbia"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Newzealand"
-msgstr "Nova Zelanda"
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
+msgstr "S'està comprovant el programari instal·lat..."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
-msgstr "Aquest directori s'ha de mantenir dins del sistema de fitxers arrel"
+#: ../../printer/printerdrake.pm_.c:2630
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "S'està esborrant %s"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
-msgstr "a la xarxa"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
-msgstr "Tecla de Fixació de Majúscules"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "Instal·la el carregador de l'arrencada"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Seleccioneu la mida de la memòria de la vostra targeta gràfica"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Enable/Disable crontab and at for users.\n"
-"\n"
-"Put allowed users in /etc/cron.allow and /etc/at.allow (see man at(1)\n"
-"and crontab(1))."
-msgstr ""
-"Habilita/Inhabilita crontab i at per als usuaris.\n"
-"\n"
-"Posa els usuaris autoritzats a /etc/cron.allow i /etc/at.allow\n"
-"(vegeu man at(1) i crontab(1))."
+#: ../../printer/printerdrake.pm_.c:2636
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "S'estan instal·lant els paquets..."
-#: ../../standalone.pm:1
-#, 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."
-msgstr ""
-"[OPTIONS]\n"
-"Aplicació de connexió a xarxes i Internet i de monitorització\n"
-"\n"
-"--defaultintf interface : per defecte, mostra aquesta interfície\n"
-"--connect : connecta a Internet si no ho està ja\n"
-"--disconnect : desconnecta d'Internet si està connectat\n"
-"--force : utilitzat amb (dis)connect : imposa la (des)connexió.\n"
-"--status : torna 1 si està connectat, 0 si no, i després surt.\n"
-"--quiet : no siguis interactiu. Per utilitzar amb (dis)connect."
+#
+#: ../../printer/printerdrake.pm_.c:2685
+msgid "Select Printer Spooler"
+msgstr "Seleccioneu la cua d'impressió"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
-msgstr "Conjunt d'adreces IP dinàmiques:"
+#
+#: ../../printer/printerdrake.pm_.c:2686
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Quin sistema d'impressió (cua) voleu utilitzar?"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2720
#, c-format
-msgid "LVM name?"
-msgstr "Nom LVM?"
+msgid "Configuring printer \"%s\"..."
+msgstr "S'està configurant la impressora \"%s\"..."
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "S'han suprimit alguns dispositius en la classe \"%s\" de maquinari:\n"
+#
+#: ../../printer/printerdrake.pm_.c:2731
+msgid "Installing Foomatic..."
+msgstr "S'està instal·lant el Foomatic..."
-# #msgid "Found %s %s interfaces"
-# #msgstr "S'han trobat interfícies %2$s %1$s"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "S'han trobat interfícies %s %s"
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr "Opcions de la impressora"
#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Install"
-msgstr "Post-instal·lació"
+#: ../../printer/printerdrake.pm_.c:2810
+msgid "Preparing Printerdrake..."
+msgstr "S'està preparant el PrinterDrake..."
#
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The internal domain name"
-msgstr "Nom intern de domini"
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+msgid "Configuring applications..."
+msgstr "S'estan configurant les aplicacions..."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ de la targeta"
+#
+#: ../../printer/printerdrake.pm_.c:2845
+msgid "Would you like to configure printing?"
+msgstr "Voleu configurar la impressió?"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "logdrake"
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
+msgstr "Sistema d'impressió: "
-#: ../../standalone.pm:1
-#, c-format
+#
+#: ../../printer/printerdrake.pm_.c:2915
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."
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
-"Aplicació d'importació de tipus de lletra i de "
-"monitorització \n"
-"--windows_import : importa des de totes les particions de Windows "
-"disponibles.\n"
-"--xls_fonts : mostra tots els tipus de lletra que ja són a l'xls\n"
-"--strong : verificació forta del tipus de lletra.\n"
-"--install : accepta qualsevol fitxer de tipus de lletra i qualsevol "
-"directori.\n"
-"--uninstall : desinstal·la qualsevol tipus de lletra o qualsevol "
-"directori de tipus de lletra.\n"
-"--replace : reemplaça qualsevol tipus de lletra si ja existeix\n"
-"--application : 0 cap aplicació.\n"
-" : 1 totes les aplicacions compatibles disponibles.\n"
-" : nom_de_l'aplicació, com ara so per a l'StarOffice \n"
-" : i gs per al ghostscript per utilitzar només aquesta."
-
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+"Les impressores següents estan configurades. Feu doble clic en una "
+"impressora per modificar-ne els paràmetres, per fer-la la impressora per "
+"defecte, per veure'n la informació o per fer que una impressora en un "
+"servidor remot CUPS estigui disponible per a Star Office/OpenOffice.org/GIMP."
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
+#
+#: ../../printer/printerdrake.pm_.c:2916
+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 ""
-"Escolliu la unitat de disquet que voleu utilitzar per crear el disc "
-"d'arrencada"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr "LILO amb menú de text"
+"Les impressores següents estan configurades. Feu doble clic en una "
+"impressora per modificar-ne els paràmetres, per fer-la la impressora per "
+"defecte o per veure la informació de la impressora."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
+"Refresca la llista d'impressores (per veure totes les impressores CUPS "
+"remotes disponibles)"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Tot (sense tallafoc)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
-msgstr "Heu d'especificar una imatge del nucli"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", dispositiu multifunció en USB"
-
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Do"
-msgstr "Fes"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr ""
-"S'està contactant amb la rèplica per obtenir la llista dels paquets "
-"disponibles..."
+#
+#: ../../printer/printerdrake.pm_.c:2960
+msgid "Change the printing system"
+msgstr "Modifica el sistema d'impressió"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lituà AZERTY (antic)"
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+msgid "Normal Mode"
+msgstr "Mode normal"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasiler (ABNT-2)"
+#
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+msgid "Do you want to configure another printer?"
+msgstr "Voleu configurar una altra impressora?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
-msgstr "Adreça IP de l'ordinador/xarxa:"
+#
+#: ../../printer/printerdrake.pm_.c:3211
+msgid "Modify printer configuration"
+msgstr "Modifica la configuració de la impressora"
-#: ../../standalone/draksplash:1
+#: ../../printer/printerdrake.pm_.c:3213
#, c-format
msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
-"coordenada y de la cantonada superior\n"
-"esquerra de la barra de progrés"
+"Impressora %s\n"
+"Quines modificacions voleu fer en aquesta impressora?"
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System installation"
-msgstr "Instal·lació del sistema"
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
+msgstr "Fes-ho!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint Vincent i les Grenadines"
+#
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+msgid "Printer connection type"
+msgstr "Tipus de connexió de la impressora"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid reboot by the console user."
-msgstr "Permet/Impedeix tornar a arrencar per l'usuari de la consola."
+#
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+msgid "Printer name, description, location"
+msgstr "Nom de la impressora, descripció, ubicació"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Open"
-msgstr "/Fitxer/_Obre"
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
+msgstr "Fabricant de la impressora, model, controlador"
-#
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "Ubicació del fitxer auto_install.cfg"
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
+msgstr "Fabricant de la impressora, model"
-#: ../../any.pm:1
-#, c-format
-msgid "Open Firmware Delay"
-msgstr "Demora per al firmware obert"
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
+msgstr "Fes que aquesta sigui la impressora predeterminada"
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
-msgstr "Hongria"
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Afegeix aquesta impressora a Star Office/OpenOffice.org/GIMP"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Zealand"
-msgstr "Nova Zelanda"
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Suprimeix aquesta impressora de Star Office/OpenOffice.org/GIMP"
#
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Color configuration"
-msgstr "Configuració de color"
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+msgid "Print test pages"
+msgstr "Imprimeix la(es) pàgina(es) de prova"
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Hi ha ja algunes restriccions, i a la nit es fan més comprovacions "
-"automàtiques."
+#
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+msgid "Know how to use this printer"
+msgstr "Apreneu a utilitzar aquesta impressora"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "please choose the date to restore"
-msgstr "Si us plau, seleccioneu la data a restaurar"
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+msgid "Remove printer"
+msgstr "Suprimeix la impressora"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:3282
#, c-format
-msgid "Netherlands Antilles"
-msgstr "Antilles Holandeses"
+msgid "Removing old printer \"%s\"..."
+msgstr "S'està suprimint la impressora antiga \"%s\"..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr "S'està canviant de ext2 a ext3"
+#
+#: ../../printer/printerdrake.pm_.c:3307
+msgid "Default printer"
+msgstr "Impressora predeterminada"
-#: ../../printer/data.pm:1
+#: ../../printer/printerdrake.pm_.c:3308
#, c-format
-msgid "LPRng"
-msgstr "LPRng"
+msgid "The printer \"%s\" is set as the default printer now."
+msgstr "La impressora \"%s\" és ara la impressora per defecte."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Navega per trobar un nou dipòsit de restauració"
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "S'està afegint la impressora a Star Office/OpenOffice.org/GIMP"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3312
#, c-format
msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"\n"
-"Benvingut a l'auxiliar de configuració de la impressora\n"
-"\n"
-"Aquest auxiliar us permetrà instal·lar impressores locals o remotes per usar-"
-"les en aquest ordinador i també des d'altres ordinadors de la xarxa.\n"
-"\n"
-"Us demanarà la informació necessària per definir impressores i us "
-"proporcionarà accés als controladors disponibles de les impressores, les "
-"seves opcions i els tipus de connexions d'impressores."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and %d unknown printers"
-msgstr "i %d impressores desconegudes"
+"S'ha afegit correctament la impressora \"%s\" a Star Office/OpenOffice.org/"
+"GIMP."
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:3313
#, 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 "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Els primers xips Pentium d'Intel fabricats tenen un defecte en el seu "
-"processador de punt flotant que no els permet aconseguir la precisió "
-"necessària en realitzar una divisió de punt flotant (FDIV)"
+"És impossible d'afegir la impressora \"%s\" a Star Office/OpenOffice.org/"
+"GIMP."
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "S'està suprimint la impressora d'Star Office/OpenOffice.org/GIMP"
+
+#: ../../printer/printerdrake.pm_.c:3317
#, c-format
msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
+"La impressora \"%s\" ha estat suprimida d'Star Office/OpenOffice.org/GIMP "
+"amb èxit."
-#: ../../network/isdn.pm:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-"No s'ha trobat cap targeta PCI XDSI. Si us plau, seleccioneu-ne una a la "
-"pantalla següent."
-
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
-msgstr "GB"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
-msgstr "Si us plau, introduïu un nom d'usuari"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
-msgstr "Voleu habilitar l'arrencada des de CD?"
+"És impossible de suprimir la impressora \"%s\" d'Star Office/OpenOffice.org/"
+"GIMP."
-#: ../../../move/move.pm:1
+#: ../../printer/printerdrake.pm_.c:3325
#, c-format
-msgid "Simply reboot"
-msgstr ""
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Voleu realment suprimir la impressora \"%s\"?"
-#: ../../interactive/stdio.pm:1
+#: ../../printer/printerdrake.pm_.c:3329
#, c-format
-msgid " enter `void' for void entry"
-msgstr " entreu 'void' per entrada buida"
+msgid "Removing printer \"%s\"..."
+msgstr "S'està suprimint la impressora \"%s\"..."
-#: ../../standalone/drakbackup:1
+#: ../../raid.pm_.c:35
#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr ""
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "No es pot afegir una partició a un RAID _formatat_ md%d"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
-msgstr "Gener"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
+msgstr "L'mkraid ha fallat"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password history length"
-msgstr "Longitud de la història de contrasenyes"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "L'mkraid ha fallat (potser manquen les eines del RAID (raidtools)?)"
-#: ../../network/netconnect.pm:1
+#: ../../raid.pm_.c:153
#, c-format
-msgid "Winmodem connection"
-msgstr "Connexió Winmodem"
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "No hi ha prou particions per al nivell RAID %d\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../security/main.pm_.c:36
msgid ""
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
"\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"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\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 ""
-"\n"
-"Felicitats, la impressora s'ha instal·lat i configurat correctament!\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\n"
"\n"
-"Podeu imprimir utilitzant l'ordre \"Imprimeix\" de les aplicacions "
-"(normalment en el menú \"Fitxer\").\n"
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
"\n"
-"Si voleu afegir, esborrar o canviar el nom a una impressora, o si voleu "
-"canviar les opcions per defecte (safata d'entrada, qualitat impressió...), "
-"seleccioneu \"Impressora\" en la secció \"Maquinari\" del Centre de Control "
-"Mandrake."
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "Ara, podeu executar xawtv (sota X Window!) !\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
-"No hi ha prou espai d'intercanvi per completar la instal·lació; si us plau, "
-"afegiu-ne"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "%s on %s"
-msgstr "%s a %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid remote root login."
-msgstr "Permet/Impedeix l'entrada de root remota."
-
-#: ../../help.pm:1
-#, 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"
+"Estàndard: Aquesta és la seguretat estàndard recomanada per a un ordinador "
+"que es connectarà a Internet com a client.\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 ""
-"El GNU/Linux gestiona l'hora en GMT (Greenwich Mean Time) i el tradueix a\n"
-"l'hora local d'acord amb la zona horària seleccionada. Si el rellotge de la "
-"placa\n"
-"base indica l'hora local, podeu desactivar-ho desseleccionant \"%s\", i "
-"això\n"
-"informarà al GNU/Linux que el rellotge del sistema i el rellotge del "
-"maquinari són\n"
-"a la mateixa zona horària. Això és convenient quan la màquina també té "
-"instal·lat\n"
-"un altre sistema operatiu, com ara el Windows.\n"
+"Alta: Hi ha algunes restriccions, i cada nit s'executen més tests que "
+"al nivell estàndard.\n"
"\n"
-"L'opció \"%s\" regularà automàticament l'hora connectant-se a un servidor "
-"horari\n"
-"remot d'Internet (per activar aquesta funció us caldrà tenir connexió a "
-"Internet). És\n"
-"millor triar un servidor que estigui ubicat a prop vostre. De fet, aquesta "
-"opció instal·la\n"
-"un servidor d'hora que altres màquines de la vostra xarxa local també podran "
-"utilitzar."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
-msgstr "No s'ha pogut crear el registre!"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "En quina zona horària us trobeu?"
-
-#
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use .backupignore files"
-msgstr "Usa la quota de disc per als fitxers de còpia de seguretat."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
-msgstr "Guinea"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Ara, el sistema està connectat a Internet."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Illes Geòrgia del Sud i Sandwich del Sud"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Japó (difusió)"
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Monitor\n"
+"Més alta: La seguretat és prou elevada perquè el sistema funcioni com a "
+"servidor que pugui acceptar connexions de diversos clients. Si aquesta "
+"màquina només serà un client a Internet, hauríeu de triar un nivell més "
+"baix.\n"
"\n"
-" The installer will normally automatically detect and configure the\n"
-"monitor connected to your machine. If it is incorrect, you can choose from\n"
-"this list the monitor you actually have connected to your computer."
-msgstr ""
-"Monitor\n"
+"Paranoic: Similar al nivell anterior, però el sistema es tanca completament "
+"i les característiques de seguretat estan al màxim\n"
"\n"
-" Normalment, l'instal·lador detectarà i configurarà automàticament el\n"
-"monitor que teniu connectat a l'ordinador. Si no és correcte, podreu triar\n"
-"d'aquesta llista el monitor que realment teniu connectat a l'ordinador."
+"Administrador de seguretat:\n"
+" Si les \"Alarmes de seguretat\" estan activades, s'enviaran a "
+"aquest usuari (nom d'usuari o adreça electrònica)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "Moçambic"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "Icona"
+#
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Nivell de seguretat:"
-#: ../../../move/tree/mdk_totem:1
+#: ../../security/main.pm_.c:77
#, fuzzy, c-format
-msgid "Kill those programs"
-msgstr "accés a programes X"
+msgid " (default value: %s)"
+msgstr " (per defecte: %s)"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Si us plau, escolliu de què voleu fer la còpia de seguretat"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 colors (8 bits)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "Lectura-escriptura"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "Mida: %s\n"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Hostname: "
-msgstr "Nom de l'ordinador: "
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a rule"
-msgstr "Afegeix una regla"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Mida del fragment %s\n"
+#: ../../security/main.pm_.c:113
+msgid "Security Alerts:"
+msgstr "Alarmes de seguretat:"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
-msgstr "Construïu el futur del Linux!"
+#: ../../security/main.pm_.c:115
+msgid "Security Administrator:"
+msgstr "Administrador de seguretat:"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printer"
-msgstr "Impressora local"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Error d'accés al disquet, no s'ha pogut muntar el dispositiu %s"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+#: ../../security/main.pm_.c:128
+msgid "Network Options"
+msgstr "Opcions de xarxa"
#
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ADSL connection"
-msgstr "Connexió ADSL"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Cap configuració, si us plau feu clic a 'Auxiliar' o a 'Avançat'.\n"
+#: ../../security/main.pm_.c:128
+msgid "System Options"
+msgstr "Opcions de sistema"
-#
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Error!"
-msgstr "S'ha produït un error!"
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+"Les opcions següents es poden modificar per personalitzar la seguretat\n"
+"del vostre sistema. Feu clic a \"Ajuda\" si voleu més informació.\n"
-#
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "cable connection detected"
-msgstr "s'ha detectat la connexió per cable"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
+msgstr "Comprovacions periòdiques"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "S'ha denegat el permís per transferir %s a %s"
+#: ../../security/main.pm_.c:191
+msgid "Please wait, setting security level..."
+msgstr "Espereu si us plau, s'està configurant el nivell de seguretat..."
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Informeu d'un error"
+#: ../../security/main.pm_.c:197
+msgid "Please wait, setting security options..."
+msgstr "Espereu si us plau, s'estan configurant les opcions de seguretat..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
-msgstr "Dominica"
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr "Executa el sistema de so ALSA (Advanced Linux Sound Architecture)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "Canvia la mida"
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
+msgstr "Anacron, un programador d'ordres periòdiques."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Resolució: %s\n"
+#: ../../services.pm_.c:21
+msgid ""
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
+msgstr ""
+"L'apmd s'utilitza per monitoritzar l'estat de la bateria i registrar-lo "
+"mitjançant el registre del sistema (syslog).\n"
+"També es pot utilitzar per apagar l'ordinador quan queda poca bateria."
-#: ../../install2.pm:1
-#, c-format
+#: ../../services.pm_.c:23
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)"
+"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 ""
-"No es pot accedir als mòduls del nucli corresponents al vostre nucli (no "
-"s'ha trobat el fitxer %s). Això generalment vol dir que el vostre disquet "
-"d'arrencada no està sincronitzat amb el suport d'instal·lació (si us plau, "
-"creeu un nou disquet d'arrencada)"
+"Executa les ordres programades per l'ordre 'at' a l'hora que es va\n"
+"especificar en executar 'at', i executa les ordres automàtiques quan la\n"
+"mitjana de càrrega és prou baixa."
-#: ../../help.pm:1
-#, c-format
+#: ../../services.pm_.c:25
msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+"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 ""
-"Si us plau, seleccioneu el port correcte. Per exemple, el port \"COM1\" en\n"
-"Windows s'anomena \"ttyS0\" en GNU/Linux."
+"El cron és un programa UNIX estàndard que executa programes determinats\n"
+"per l'usuari en hores programades. El vixie cron afegeix un cert nombre de\n"
+"característiques al cron bàsic, incloent seguretat millorada i opcions\n"
+"de configuració més potents."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Ara s'eliminaran els paquets següents"
+#: ../../services.pm_.c:28
+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 ""
+"El GPM afegeix suport de ratolí a aplicacions Linux basades en text, com ara "
+"el Midnight Commander. També permet operacions de tallar i enganxar amb el "
+"ratolí, i inclou suport de menús desplegables a la consola."
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr "Connecta't a Internet"
+#: ../../services.pm_.c:31
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
+msgstr ""
+"El HardDrake fa una prova del maquinari, i opcionalment configura\n"
+"el maquinari nou/canviat."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
-msgstr "Utilitza les particions existents"
+#: ../../services.pm_.c:33
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+msgstr ""
+"L'Apache és un servidor de World Wide Web. S'utilitza per servir fitxers\n"
+"HTML i CGI."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "Canadenc (Quebec)"
+#: ../../services.pm_.c:34
+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 ""
+"El dimoni superservidor d'Internet (conegut normalment com 'inetd') inicia\n"
+"altres serveis d'Internet a mesura que es van necessitant. És el "
+"responsable\n"
+"d'iniciar molts serveis, incloent el telnet, l'ftp, l'rsh i l'rlogin. Si\n"
+"s'inhabilita l'inetd, s'inhabiliten tots els serveis de què és responsable."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Dispositiu del ratolí: %s\n"
+#: ../../services.pm_.c:38
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
+"Executa el filtratge de paquets per als nuclis Linux 2.2, per instal·lar\n"
+"un tallafoc que protegeixi el vostre ordinador d'atacs des de la xarxa."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Torna a seleccionar les fonts correctes"
+#: ../../services.pm_.c:40
+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 ""
+"Aquest paquet carrega el mapa de teclat seleccionat segons s'ha definit\n"
+"a /etc/sysconfig/keyboard. Es pot seleccionar mitjançant la utilitat\n"
+"kbdconfig.\n"
+"Per a la majoria d'ordinadors, s'ha de deixar habilitat."
-#: ../../help.pm:1
-#, c-format
+#: ../../services.pm_.c:43
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."
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
msgstr ""
-"Opcions\n"
-"\n"
-" Aquí podeu decidir si voleu que l'ordinador canviï automàticament a una "
-"interfície\n"
-"gràfica en arrencar. Òbviament, activareu \"%s\" si l'ordinador ha de ser un "
-"servidor,\n"
-"o si no heu pogut configurar la pantalla."
+"Regeneració automàtica del capçal de nucli a /boot per\n"
+"/usr/include/linux/{autoconf,versió}.h"
-#
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "Grup corporatiu MandrakeExpert"
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr ""
+"Detecció i configuració automàtica de maquinari en iniciar l'ordinador."
-#: ../../standalone.pm:1
-#, c-format
+#: ../../services.pm_.c:46
msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
msgstr ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolució"
-
-#
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Write protection"
-msgstr "Protecció contra escriptura"
+"De vegades, el Linuxconf determinarà que s'han de fer algunes tasques\n"
+"en iniciar l'ordinador per mantenir la configuració del sistema."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "You've not selected any font"
-msgstr "No heu seleccionat cap tipus de lletra"
+#: ../../services.pm_.c:48
+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 ""
+"L'lpd és el dimoni d'impressió necessari perquè l'lpr funcioni\n"
+"correctament. Bàsicament, es tracta d'un servidor que assigna les\n"
+"tasques d'impressió a la(es) impressora(es)."
-#: ../../steps.pm:1
-#, c-format
-msgid "Language"
-msgstr "Escolliu el vostre idioma"
+#: ../../services.pm_.c:50
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
+"El Servidor Virtual de Linux (LVS) s'usa per construir un servidor de \n"
+"gran capacitat i robustesa."
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer model selection"
-msgstr "Selecció del model d'impressora"
+#: ../../services.pm_.c:52
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
+msgstr ""
+"named (BIND) és un servidor de noms de domini (DNS) que s'utilitza per "
+"convertir noms d'ordinadors centrals en adreces IP."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:53
msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
-"Després de canviar el tipus de la partició %s, se'n perdran totes les dades"
+"Munta i desmunta tots els punts de muntatge dels sistemes de fitxers\n"
+"de xarxa (NFS), SMB (gestor de xarxes d'àrea local/Windows) i NCP (NetWare)."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ISDN adapters"
-msgstr "Adaptadors XDSI"
+#: ../../services.pm_.c:55
+msgid ""
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
+msgstr ""
+"Activa/Desactiva totes les interfícies de xarxa configurades per\n"
+"iniciar-se durant l'arrencada."
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d segons"
+#: ../../services.pm_.c:57
+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 ""
+"L'NFS és un protocol popular de compartició de fitxers en xarxes TCP/IP.\n"
+"Aquest servei proporciona la funcionalitat del servidor NFS, que es\n"
+"configura mitjançant el fitxer /etc/exports."
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Inseriu un disquet en blanc a la unitat %s"
+#: ../../services.pm_.c:60
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
+msgstr ""
+"L'NFS és un protocol popular de compartició de fitxers en xarxes TCP/IP\n"
+"Aquest servei proporciona la funcionalitat de blocatge de fitxer NFS."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Heu d'entrar un URI vàlid!"
+#: ../../services.pm_.c:62
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+"Engega automàticament a l'arrencada la tecla de fixació del \n"
+"teclat numèric a la consola i sota XFree."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr "S'ha trobat la interfície \"%s\". Voleu utilitzar-la?"
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr "Funciona amb OKI 4w i winprinters compatibles."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
-msgstr "Torna a configurar la interfície i el servidor DHCP"
+#: ../../services.pm_.c:65
+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 ""
+"El suport PCMCIA serveix normalment per funcionar amb coses com ara "
+"l'ethernet\n"
+"i els mòdems en portàtils. No s'iniciarà tret que es configuri, de manera\n"
+"que no hi ha problema per instal·lar-lo en ordinadors que no el necessiten."
-#
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound configuration"
-msgstr "Configuració de so"
+#: ../../services.pm_.c:68
+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 ""
+"El mapador de ports (portmapper) gestiona les connexions RPC, que s'usen "
+"per\n"
+"protocols com ara l'NFS i el NIS. El servidor portmap s'ha d'estar\n"
+"executant en ordinadors que actuen com a servidors per a protocols que\n"
+"utilitzen el mecanisme RPC."
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
-msgstr "Pàgina de prova de fotografia"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Particionament personalitzat de disc"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Introduïu el nom de la impressora i comentaris"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:71
msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
msgstr ""
-"Les impressores\n"
-"\n"
-"%s%s\n"
-"estan connectades directament al vostre sistema"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "You don't have any winmodem"
-msgstr "No tens cap winmodem"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: %s"
-msgstr "tipus: %s "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "Eslovac (QWERTY)"
+"El Postfix és un Agent de Transport de Correu, que és el programa que passa "
+"el correu d'un ordinador a un altre."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:72
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."
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
msgstr ""
+"Desa i recupera el generador d'entropia del sistema per a\n"
+"la generació de nombres aleatoris d'una qualitat més alta."
-#: ../../standalone/draksound:1
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "No s'ha detectat cap targeta de so!"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "Port del ratolí"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
msgstr ""
+"Assigna els dispositius en cru (raw) a dispositius de blocs (tals com les "
+"particions de\n"
+"disc dur), perquè siguin utilitzats per aplicacions com ara Oracle"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../services.pm_.c:76
msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
+"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 ""
-"Cal reiniciar el Gestor de pantalla per tal que tots els canvis tinguin "
-"efecte. \n"
-"(\"service dm restart\" a la consola)"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Ftp Server"
-msgstr "Servidor FTP"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr "Uganda"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
-msgstr "conversió de tipus de lletra %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "tipus de bus a què està connectat el ratolí."
+"El dimoni 'routed' permet que la taula d'encaminadors IP automàtics\n"
+"s'actualitzi mitjançant el protocol RIP. Mentre que el RIP s'utilitza\n"
+"àmpliament en xarxes petites, les xarxes complexes necessiten protocols\n"
+"d'encaminament més complexos."
-#: ../../help.pm:1
-#, c-format
+#: ../../services.pm_.c:79
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."
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
msgstr ""
-"Com a revisió, el DrakX presentarà un resum de la informació que\n"
-"té sobre el vostre sistema. Segons el maquinari instal•lat, podeu\n"
-"tenir algunes o totes les entrades següents. Cada entrada consta\n"
-"de l'element de configuració que cal configurar, seguit d'un breu\n"
-"resum de la configuració actual.\n"
-"Feu clic al botó \"%s\" corresponent per canviar-ho.\n"
-"\n"
-" * \"%s\": comproveu la configuració actual del mapa de teclat i\n"
-"canvieu-la si és necessari.\n"
-"\n"
-" * \"%s\": comproveu la selecció actual de país. Si no sou a aquest\n"
-"país, feu clic al botó \"%s\" i escolliu-ne un altre. Si el vostre\n"
-"país no és a la primera llista que es mostra, feu clic al botó \"%s\"\n"
-"per obtenir una llista de països completa.\n"
-"\n"
-" * \"%s\": per defecte, el DrakX dedueix la vostra zona horària en\n"
-"funció del país que hagueu escollit. Aquí podeu fer clic al botó \"%s\"\n"
-"si no fos correcta.\n"
-"\n"
-" * \"%s\": comproveu la configuració actual del ratolí i feu clic al\n"
-"botó per canviar-la si fos necessari.\n"
-"\n"
-" * \"%s\": feu clic al botó \"%s\" per obrir l'auxiliar de configuració\n"
-"de la impressora. Consulteu el capítol corresponent de la ``Guia d'\n"
-"iniciació'' per tenir més informació sobre la configuració d'una nova\n"
-"impressora. Aquesta interfície és similar a la utilitzada durant la\n"
-"instal•lació.\n"
-"\n"
-" * \"%s\": si es detecta una targeta de so al vostre sistema, es\n"
-"mostra aquí. Si veieu que que no és la que realment teniu al sistema,\n"
-"podeu fer clic al botó per triar un altre programa de control.\n"
-"\n"
-" * \"%s\": per defecte, el DrakX configura la vostra interfície\n"
-"gràfica a una resolució de \"800x600\" or \"1024x768\". Si no us\n"
-"va bé, feu clic a \"%s\" per reconfigurar la interfície gràfica.\n"
-"\n"
-" * \"%s\": si es detecta una targeta de TV al sistema, es mostra\n"
-"aquí. Si en teniu una però no és detectada, feu clic a \"%s\" per\n"
-"intentar configurar-la manualment.\n"
-"\n"
-" * \"%s\": si es detecta una targeta XDSI al sistema, es mostra\n"
-"aquí. Podeu fer clic a \"%s\" per canviar els paràmetres associats\n"
-"amb la targeta.\n"
-"\n"
-" * \"%s\": si voleu configurar ara l'accés a Internet a la xarxa local.\n"
-"\n"
-" * \"%s\": aquesta entrada un permet redefinir el nivel de seguretat\n"
-"definit en un pas anterior ().\n"
-"\n"
-" * \"%s\": si teniu previst connectar-vos a Internet, és bona idea\n"
-"protegir-vos d'intrusions instal•lant un tallafocs. Consulteu-ne\n"
-"els detalls a la secció corresponent de la ``Guia d'iniciació''.\n"
-"\n"
-" * \"%s\": si voleu canviar la configuració del carregador d'arrencada,\n"
-"feu clic a aquest botó. Es recomana que això només ho facin els usuaris\n"
-"avançats.\n"
-"\n"
-" * \"%s\": aquí podreu acabar d'ajustar els serveis que s'executaran\n"
-"en el vostre ordinador. Si teniu previst utilitzar aquesta màquina com\n"
-"a servidor, és aconsellable que reviseu aquesta configuració."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr "Comores"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "May"
-msgstr "Maig"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yaboot mode"
-msgstr "Mode Yaboot"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Ratolí genèric de 3 botons"
+"El protocol rstat permet que els usuaris d'una xarxa recuperin\n"
+"mesures de rendiment de qualsevol ordinador de la mateixa."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
-msgstr "EUA (cable)"
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"El protocol rusers permet que els usuaris d'una xarxa identifiquin\n"
+"qui està connectat en altres ordinadors de la mateixa."
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../services.pm_.c:83
msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+"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 ""
-"No s'ha pogut tornar a executar LILO!\n"
-"Executa \"lilo\" com a root a la línia d'ordres per completar la "
-"instal·lació del tema del LILO."
+"El protocol rwho permet que els usuaris remots obtinguin una llista\n"
+"de tots els usuaris que estan connectats a un ordinador que està\n"
+"executant el dimoni rwho (similar al finger)."
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Seleccioneu un altre suport des del qual restaurar"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Software Manager"
-msgstr "Gestor de programari"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
-msgstr "Torna a enviar"
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
+msgstr "Executa el sistema de so en el vostre ordinador"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD in place - continue."
-msgstr "El CD és a lloc - continua."
+#: ../../services.pm_.c:86
+msgid ""
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
+msgstr ""
+"El syslog és el sistema que utilitzen molts dimonis per registrar\n"
+"missatges en diversos fitxers de registre del sistema. És aconsellable\n"
+"executar-lo sempre."
-#: ../../common.pm:1
-#, c-format
-msgid "KB"
-msgstr "kB"
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr "Carrega els controladors per a dispositius USB."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Network & Internet"
-msgstr "Xarxa i Internet"
+#
+#: ../../services.pm_.c:89
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+msgstr "Inicia l'X Font Server (això és necessari perquè l'XFree funcioni)."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituà \"fonètic\" QWERTY"
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
+msgstr ""
+"Escolliu els serveis que s'han d'iniciar automàticament durant l'arrencada"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Net Boot Images"
-msgstr "Imatges d'arrencada de la xarxa"
+#
+#: ../../services.pm_.c:127
+msgid "Printing"
+msgstr "Impressió"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Compartició d'escàners locals"
+#: ../../services.pm_.c:128
+msgid "Internet"
+msgstr "Internet"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "L'exploració Plug'n'Play ha fallat. Especifiqueu un monitor"
+#: ../../services.pm_.c:131
+msgid "File sharing"
+msgstr "Compartició de fitxers"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Detect again USB key"
-msgstr ""
+#
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+msgid "System"
+msgstr "Sistema"
-#: ../../services.pm:1
-#, c-format
-msgid "Services and deamons"
-msgstr "Serveis i dimonis"
+#
+#: ../../services.pm_.c:138
+msgid "Remote Administration"
+msgstr "Administració remota"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Falta el nom de l'ordinador remot!"
+#: ../../services.pm_.c:146
+msgid "Database Server"
+msgstr "Servidor de base de dades"
-#: ../../fsedit.pm:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "with /usr"
-msgstr "amb /usr"
+msgid "Services: %d activated for %d registered"
+msgstr "Serveis: %d activats per %d registrats"
#
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Network"
-msgstr "Xarxa"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
-"Detecta automàticament les impressores connectades a màquines amb Microsoft "
-"Windows"
+#: ../../services.pm_.c:191
+msgid "Services"
+msgstr "Serveis"
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "Aquesta contrasenya és massa senzilla"
+#: ../../services.pm_.c:203
+msgid "running"
+msgstr "s'està executant"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "Chkconfig obeeix les regles msec"
+#: ../../services.pm_.c:203
+msgid "stopped"
+msgstr "aturat"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "Eslovac (QWERTZ)"
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
+msgstr "Serveis i dimonis"
-#: ../advertising/06-development.pl:1
-#, c-format
+#: ../../services.pm_.c:222
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."
+"No additional information\n"
+"about this service, sorry."
msgstr ""
-"Gràcies al gcc 3 de GNU i als millors entorns de desenvolupament de codi "
-"obert, modificar i crear en diferents llenguatges, com ara Perl, Python, C+ "
-"i C++, mai no ha estat tan fàcil."
-
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No devices found"
-msgstr "No s'ha trobat cap dispositiu"
+"Malauradament no hi ha més informació\n"
+"sobre aquest servei."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Instal·lació realment mínima (especialment no urpmi)"
+#: ../../services.pm_.c:229
+msgid "On boot"
+msgstr "En arrencar"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use daemon"
-msgstr "Utilitza dimoni"
+#: ../../services.pm_.c:241
+msgid "Start"
+msgstr "Inicia"
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "Autenticació"
+#
+#: ../../services.pm_.c:241
+msgid "Stop"
+msgstr "Atura"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Afegeix aquesta impressora a Star Office/OpenOffice.org/GIMP"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Gràcies per triar Mandrake Linux 9.0"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Servidors CUPS addicionals:"
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
+msgstr "Benvingut al món del Codi Font Obert"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/01-thanks.pl_.c:11
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."
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
msgstr ""
-"Trieu una de les impressores detectades de la llista, o introduïu el nom de "
-"l'ordinador o la IP i opcionalment el número de port (per defecte és el "
-"9100) en els quadres de text."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr "On voleu muntar %s?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "Algèria"
-
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network"
-msgstr "Restaura a través de la xarxa"
+"L'èxit de MandrakeSoft es basa en els principis del Codi Font Obert. El "
+"vostre nou sistema operatiu és el resultat del treball en col·laboració de "
+"la Comunitat Linux de tot el món"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
-msgstr "Usa tar i bzip2 (en comptes de tar i gzip)"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
+msgstr "Uniu-vos al món del Codi Font Obert"
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd-size"
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr "Voleu saber més coses de la comunitat del Codi Font Obert?"
-#: ../../help.pm:1
-#, c-format
+#: ../../share/advertising/02-community.pl_.c:11
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."
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
msgstr ""
-"En cas que hi hagi diferents servidors disponibles per a la vostra\n"
-"targeta, amb o sense acceleració 3D, se us demanarà que escoliu\n"
-"el servidor que més us convingui."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tLes còpies de seguretat utilitzen tar i gzip\n"
+"Per compartir el vostre coneixement i ajudar a construir eines per a Linux, "
+"apunteu-vos als fòrums de discussió que trobareu a les nostres pàgines de la "
+"\"Comunitat\""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set as default"
-msgstr "Estableix com a predeterminat"
+#: ../../share/advertising/03-internet.pl_.c:9
+msgid "Get the most from the Internet"
+msgstr "Extragueu-li el suc a Internet"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
+#: ../../share/advertising/03-internet.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
+msgstr ""
+"Mandrake Linux 9.0 us ha triat el millor programari. Navegueu per la Web i "
+"veieu animacions amb Mozilla i Konqueror, o envieu missatges i organitzeu-"
+"vos la informació personal amb Evolution i Kmail"
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on this machine"
-msgstr "Configurat en aquest ordinador"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr "Descobriu les eines gràfiques i multimèdia més modernes!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Les dues tecles Ctrl simultàniament"
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr "Porteu el multimèdia fins al límit!"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid " --help - display this help \n"
+#: ../../share/advertising/04-multimedia.pl_.c:11
+msgid ""
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
+"Mandrake Linux 9.0 us permet utilitzar el programari més actual per "
+"reproduir fitxers d'àudio, editar i organitzar les vostres imatges i fotos, "
+"i reproduir vídeos"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Jocs"
+
+#: ../../share/advertising/05-games.pl_.c:10
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"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
msgstr ""
-"[OPCIÓ]...\n"
-" --no-confirmation no facis la primera pregunta de confirmació en el "
-"mode MandrakeUpdate\n"
-" --no-verify-rpm no comprovis les signatures dels paquets\n"
-" --changelog-first mostra el registre de canvis abans de la llista de "
-"fitxers en la finestra de descripció\n"
-" --merge-all-rpmnew proposa fusionar tots els fitxers .rpmnew/.rpmsave "
-"trobats"
+"Mandrake Linux 9.0 proporciona els millors jocs de codi obert: arcade, "
+"acció, estratègia..."
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Establint la impressora per defecte..."
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+msgid "Mandrake Control Center"
+msgstr "Centre de Control Mandrake"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Interfície %s (utilitzant el mòdul %s)"
+#: ../../share/advertising/06-mcc.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
+msgstr ""
+"Mandrake Linux 9.0 proporciona una eina potent per personalitzar i "
+"configurar completament la vostra màquina"
#
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Generating preview ..."
-msgstr "S'està generant la vista prèvia..."
+#: ../../share/advertising/07-desktop.pl_.c:9
+msgid "User interfaces"
+msgstr "Interfícies d'usuari"
-#: ../../network/network.pm:1
-#, c-format
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
-"La freqüència ha de tenir el sufix k, M o G (per exemple, \"2,46G\" per a la "
-"freqüència de 2,46 GHz), or afegir prou '0' (zeros)."
+"Mandrake Linux 9.0 us proporciona onze interfícies d'usuari totalment "
+"modificables: KDE 3, Gnome 2, WindowMaker..."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ignore"
-msgstr "ignora"
+#: ../../share/advertising/08-development.pl_.c:9
+msgid "Development simplified"
+msgstr "Desenvolupament simplificat"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr "Mandrake Linux 9.0 és l'últim en plataformes de desenvolupament"
+
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Allow/Forbid X connections:\n"
-"\n"
-"- ALL (all connections are allowed),\n"
-"\n"
-"- LOCAL (only connection from local machine),\n"
-"\n"
-"- NONE (no connection)."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-"Permet/Impedeix connexions X:\n"
-"\n"
-"- ALL (es permeten totes les connexions),\n"
-"\n"
-"- LOCAL (només connexió des de la màquina local),\n"
-"\n"
-"- NONE (cap connexió)."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", dispositiu multifunció en port paral·lel #%s"
+"Useu tota la capacitat del compilador GNU gcc 3, així com els millors "
+"entorns de desenvolupament de codi font obert"
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "sèrie"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr "Convertiu la vostra màquina en un servidor fiable"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
-msgstr "DVD-ROM"
+#: ../../share/advertising/09-server.pl_.c:10
+msgid ""
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
+msgstr ""
+"Transformeu el vostre ordinador en un potent servidor Linux amb només uns "
+"quants clics del ratolí: servidor Web, correu electrònic, tallafoc, "
+"encaminador, servidor de fitxers i d'impressió..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgià (disposició \"llatina\")"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr "Optimitzeu la vostra seguretat"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
+#: ../../share/advertising/10-mnf.pl_.c:10
+msgid ""
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-"Aconseguiu els millors articles amb els socis estratègics de Linux Mandrake "
+"L'abast de MandrakeSecurity inclou l'aplicació Multi Network Firewall (MNF), "
+"el tallafoc per a xarxes múltiples"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
msgstr ""
-"Ara podeu subministrar les opcions per al mòdul %s.\n"
-"Tingueu en compte que qualsevol adreça s'ha de prefixar amb 0x, com '0x123'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "Kenya"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Utilitzeu primer \"Unmount\""
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing mtools packages..."
-msgstr "S'estan instal·lant els paquets mtools..."
-
-#
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a root partition"
-msgstr "Heu d'especificar una partició arrel"
+"Aquest tallafoc inclou les característiques de xarxa que us permetran "
+"satisfer tots els vostres requeriments de seguretat"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "first step creation"
-msgstr "creació del primer pas"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr "Aquest producte es troba disponible al lloc web de MandrakeStore"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Les dues tecles de Majúscules simultàniament"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr "La botiga oficial de MandrakeSoft"
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
+"Trobareu tot el conjunt de solucions Linux, així com ofertes especials en "
+"productes i altres avantatges, a la nostra botiga en línia:"
-#
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select a scanner model"
-msgstr "Seleccioneu un model d'escàner"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
-msgstr "Accepta/Rebutja els missatges d'error IPv4 falsos."
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr "Socis estratègics"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
+msgstr ""
+"MandrakeSoft treballa al costat d'un conjunt d'empreses que ofereixen "
+"solucions professionals compatibles amb el Mandrake Linux. Trobareu una "
+"llista d'aquests socis al MandrakeStore"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Configuració del Drakbackup"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr "Descobriu el catàleg d'aprenentatge de MandrakeSoft: el Linux-Campus"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr "Anomena i desa..."
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
+msgid ""
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
+msgstr ""
+"El programa d'aprenentatge s'ha creat per respondre a la demanda tant "
+"d'usuaris com d'experts (administradors de xarxa i de sistemes)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr "Corea (Nord)"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr "Qualifiqueu-vos en Linux"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-"Aquesta interfície encara no s'ha configurat.\n"
-"Executeu l'auxiliar de configuració en la finestra principal"
+"Tant si trieu aprendre en línia o mitjançant la xarxa d'aprenentatge dels "
+"nostres socis, el catàleg Linux-Campus us prepara per al reconegut programa "
+"de certificació LPI (certificació tècnica i professional a tot el món)"
#
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System configuration"
-msgstr "Configuració del sistema"
-
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "Entrada automàtica"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin Password"
-msgstr "Contrasenya de l'administrador del domini"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+msgid "Become a MandrakeExpert"
+msgstr "Esdeveniu un MandrakeExpert"
-#: ../advertising/05-desktop.pl:1
-#, c-format
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
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, ..."
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"Adapteu totalment el vostre ordinador a les vostres necessitats gràcies a "
-"les 11 interfícies d'usuari de Linux Mandrake que es poden modificar per "
-"complet: KDE 3.1, Gnome 2.2, Window Maker..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer ..."
-msgstr "S'està configurant la impressora..."
+"Cerqueu les solucions als vostres problemes a través de la nostra plataforma "
+"de suport en línia"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"To ensure data integrity after resizing the partition(s), \n"
-"filesystem checks will be run on your next boot into Windows(TM)"
+"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 ""
-"Per assegurar la integritat de les dades després de canviar la mida de la o "
-"les particions,\n"
-"les comprovacions del sistema de fitxers es realitzaran el proper cop que "
-"arrenqueu en Windows(TM)"
+"Uniu-vos als grups de suport de MandrakeSoft i a la Comunitat Linux en línia "
+"per compartir els vostres coneixements i ajudar els altres esdevenint un "
+"expert reconegut al lloc web de suport tècnic en línia:"
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "MB"
+#
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+msgid "MandrakeExpert Corporate"
+msgstr "Grup corporatiu MandrakeExpert"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-"si és \"sí\", executa determinades comprovacions de la base de dades rpm."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr "Illes Verge Britàniques"
+"Una plataforma en línia per respondre a les necessitats de suport especials "
+"de les empreses"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bermuda"
-msgstr "Bermuda"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+"Cada incident serà investigat per un expert tècnic qualificat de "
+"MandrakeSoft."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
-msgstr "feu clic aquí si ho teniu clar."
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
+msgstr "Descobriu el MandrakeClub i el Club Corporatiu de Mandrake"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../share/advertising/17-mdkclub.pl_.c:10
msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
msgstr ""
-"No s'ha trobat el fitxer de configuració \n"
-"si us plau, feu clic a 'Auxiliar' o a 'Avançat'."
+"El MandrakeClub i el Club Corporatiu Mandrake es van crear per a empreses i "
+"usuaris privats de Mandrake Linux que volen participar directament de la "
+"seva distribució Linux preferida, i rebre alguns privilegis especials. Si "
+"gaudiu dels nostres productes, si la vostra empresa es beneficia dels "
+"nostres productes per guanyar competitivitat, si voleu recolzar el "
+"desenvolupament de Mandrake Linux, uniu-vos al MandrakeClub!"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone.pm_.c:21
+#, fuzzy
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"
+"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"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\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"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
+"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 ""
-"Aquestes són les particions de Linux existents que s'han detectat al disc "
-"dur.\n"
-"Podeu conservar les decisions preses per l'auxiliar, atès que són les "
-"adequades\n"
-"per a les instal•lacions més habituals. Si hi feu algun canvi, com a mínim "
-"heu\n"
-"de definir una partició arrel (\"/\"). No trieu una partició massa petita "
-"perquè\n"
-"no podríeu instal•lar-hi prou programari. Si voleu emmagatzemar les dades en "
-"una\n"
-"altra partició, us caldrà crear una partició \"/home\" (això només serà "
-"possible\n"
-"si hi ha més d'una partició de Linux disponible).\n"
-"\n"
-"Cada partició està identificada d'aquesta manera: \"Nom\", \"Capacitat\".\n"
-"\n"
-"\"Nom\" es compon de: \"tipus d'unitat de disc\", \"número d'unitat de disc"
-"\",\n"
-"\"número de la partició\" (per exemple, \"hda1\").\n"
-"\n"
-"El \"Tipus d'unitat de disc\" és \"hd\" si la vostre unitat de disc és IDE i "
-"\"sd\" si és SCSI.\n"
-"\n"
-"El \"Número de la unitat de disc\" és sempre una lletra després d'\"hd\" o "
-"\"sd\".\n"
-"Per a unitats de disc IDE:\n"
-"\n"
-" * \"a\" significa \"unitat de disc mestra en el controlador IDE primari\",\n"
-"\n"
-" * \"b\" significa \"unitat de disc esclava en el controlador IDE primari"
-"\",\n"
-"\n"
-" * \"c\" significa \"unitat de disc mestra en el controlador IDE secundari"
-"\",\n"
+" Aquest programa és programari lliure; el podeu redistribuir i/o modificar\n"
+" sota els termes de la 'GNU General Public License' publicada per\n"
+" la Free Software Foundation; tant la versió 2 com (si voleu)\n"
+" qualsevol versió posterior.\n"
"\n"
-" * \"d\" significa \"unitat de disc esclava en el controlador IDE secundari"
-"\".\n"
+" Aquest programa és distribueix amb l'esperança que serà útil,\n"
+" però SENSE CAP GARANTIA; sense ni tant sols la garantia implícita de\n"
+" MERCANTIBILITAT o CAPACITAT DE REALITZAR UN DETERMINAT PROPÒSIT. Mireu la\n"
+" 'GNU General Public License' per a més detalls.\n"
"\n"
-"Amb unitats de disc SCSI, una \"a\" significa \"ID SCSI més baixa\",\n"
-"una \"b\" significa \"segona ID SCSI més baixa\", etc."
-
-#
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Remove"
-msgstr "Elimina"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr "utopia 25"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Redirecciona el treball cap a una ordre"
-
-#
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "Voleu suprimir el fitxer de loopback?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "Costa d'Ivori"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "nou nom de dispositiu dinàmic generat pel devfs intern del nucli"
-
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "Sí"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Quin protocol voleu utilitzar?"
-
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Progress"
-msgstr "Progrés de la restauració"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
-msgstr "Estònia"
+" Hauríeu d'haver rebut una còpia de la 'GNU General Public License'\n"
+" amb el programa; si no és així, escriviu a la Free Software\n"
+" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../partition_table.pm:1
-#, c-format
+#: ../../standalone.pm_.c:40
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."
+"[--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 name.\n"
msgstr ""
-"Hi ha un forat a la vostra taula de particions, però no puc utilitzar-lo.\n"
-"L'única solució és moure les particions primàries per fer que el forat quedi "
-"contigu a les particions ampliades"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr "Escolliu l'ordinador on els escàners locals han d'estar disponibles:"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Channel"
-msgstr "Canal"
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Add"
-msgstr "Afegeix"
-
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr " S'ha produït un error en enviar el correu electrònic. \n"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "Teclat"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone.pm_.c:51
msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
+"[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 ""
-"Inseriu el CD amb l'etiqueta de volum %s\n"
-" a la unitat de CD sota el punt de muntatge /mnt/cdrom"
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone.pm_.c:57
msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
+"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 ""
-"La velocitat ha de tenir el sufix k, M o G (per exemple, \"11M\" per a 11M), "
-"o afegir prou '0' (zeros)."
-
-#
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Escolliu la connexió que voleu configurar"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Espereu si us plau, s'està configurant el nivell de seguretat..."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "S'està configurant el dispositiu de xarxa %s"
-
-#
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
-msgstr "activat"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
+#: ../../standalone.pm_.c:68
+msgid ""
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
msgstr ""
-"Si us plau, escolliu la interfície de xarxa que s'utilitzarà per al servidor "
-"dhcp."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "S'estan cercant els paquets a actualitzar"
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
-msgstr "Punt de muntatge: "
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
-msgstr "analitza totes les fonts"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid direct root login."
-msgstr "Permet/Impedeix l'entrada directa de root."
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr " Accepta/Refusa l'eco icmp broadcast."
-
-#
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
-msgstr "Amb X"
+#: ../../standalone.pm_.c:70
+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)"
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Configuració Multi-head"
+#: ../../standalone.pm_.c:82
+#, fuzzy
+msgid "[keyboard]"
+msgstr "Teclat"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "No browser available! Please install one"
-msgstr "No hi ha cap navegador disponible! Si us plau, instal·leu-ne un"
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
+msgstr ""
-#: ../../Xconfig/main.pm:1
-#, c-format
+#: ../../standalone.pm_.c:84
msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
+"[OPTIONS]\n"
+"Network & Internet connection and monitoring application\n"
"\n"
-"%s"
+"--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 ""
-"Voleu conservar els canvis?\n"
-"La configuració actual és:\n"
-"\n"
-"%s"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "No podeu utilitzar el ReiserFS per a particions inferiors a 32 MB"
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone.pm_.c:94
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)."
+"[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 ""
-"El protocol rwho permet que els usuaris remots obtinguin una llista\n"
-"de tots els usuaris que estan connectats a un ordinador que està\n"
-"executant el dimoni rwho (similar al finger)."
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "Nom de domini"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Compartició d'impressores locals"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
-msgstr "Habilita/Inhabilita el libsafe si és que es troba al sistema."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Available printers"
-msgstr "Impressores disponibles"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "NO"
-msgstr "NO"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "Buit"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
-msgstr "amplada del text"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "On voleu muntar el dispositiu %s?"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Lísing per defecte (en segons)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../standalone.pm_.c:99
msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
msgstr ""
-"Ara es configurarà la connexió %s.\n"
-"\n"
-"\n"
-"Premeu \"%s\" per continuar."
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Interfície \"%s\""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Amb la documentació bàsica (recomanat!)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr "1 botó"
+#: ../../standalone.pm_.c:100
+msgid ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone.pm_.c:114
#, c-format
msgid ""
"\n"
-"There are %d unknown printers directly connected to your system"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
-"\n"
-"Hi ha %d impressores desconegudes connectades directament a l'ordinador."
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Test"
-msgstr "Test"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea"
-msgstr "Corea"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Quina és la vostra elecció? (predeterminat '%s'%s)"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer"
-msgstr "Impressora en cru (raw)"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "nom oficial del distribuïdor de la cpu"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
-msgstr "Inútil sense el servidor de terminal"
-
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Vendor"
-msgstr "Venedor"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s"
-msgstr "Interfície %s"
+#: ../../standalone.pm_.c:168
+msgid "Installing packages..."
+msgstr "S'estan instal·lant els paquets..."
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "Configura el ratolí"
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-tecla de retrocés"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "Choose the mount points"
-msgstr "Escolliu els punts de muntatge"
+msgid "Please relog into %s to activate the changes"
+msgstr "Si us plau, torneu a entrar a %s per activar els canvis"
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr "D'acord"
+#
+#: ../../standalone/drakTermServ_.c:239
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Configuració del Servidor de Terminal de Mandrake"
#
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "Iugoslau (llatí)"
+#: ../../standalone/drakTermServ_.c:253
+msgid "Enable Server"
+msgstr "Habilita el servidor"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "S'està instal·lant"
+#
+#: ../../standalone/drakTermServ_.c:260
+msgid "Disable Server"
+msgstr "Inhabilita el servidor"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan amb emulació de rodeta"
+#: ../../standalone/drakTermServ_.c:268
+msgid "Start Server"
+msgstr "Inicia el servidor"
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
-msgstr "Executa userdrake"
+#: ../../standalone/drakTermServ_.c:275
+msgid "Stop Server"
+msgstr "Atura el servidor"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Es tracta d'una instal·lació o d'una actualització?"
+#: ../../standalone/drakTermServ_.c:283
+msgid "Etherboot Floppy/ISO"
+msgstr "Disquet/ISO per a Etherboot"
-#: ../../help.pm:1
-#, c-format
-msgid "ISDN card"
-msgstr "Targeta XDSI"
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
+msgstr "Imatges d'arrencada de la xarxa"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
-msgstr ""
-"Per compartir el vostre coneixement i ajudar a construir eines per a Linux, "
-"apunteu-vos als fòrums de discussió que trobareu a les nostres pàgines de la "
-"\"Comunitat\""
+#: ../../standalone/drakTermServ_.c:294
+msgid "Add/Del Users"
+msgstr "Afegeix/Suprimeix usuaris"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-Disc dur.\n"
+#: ../../standalone/drakTermServ_.c:299
+msgid "Add/Del Clients"
+msgstr "Afegeix/Suprimeix clients"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:328
+#, fuzzy
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"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\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 ""
-"Aquest pas només s'activa si s'ha trobat una partició GNU/Linux antiga a\n"
-"l'ordinador.\n"
-"\n"
-"Ara, el DrakX necessita saber si voleu realitzar una instal•lació nova o\n"
-"una actualització d'un sistema Linux Mandrake existent:\n"
+" actualitzacions 2002 MandrakeSoft per Stew Benedict <sbenedict"
+"\\@mandrakesoft.com>"
+
+#: ../../standalone/drakTermServ_.c:332
+msgid ""
"\n"
-" * \"%s\": aquesta opció destrueix gairebé del tot el sistema antic. Si\n"
-"voleu canviar les particions dels discs durs, o el sistema de fitxers,\n"
-"heu d'utilitzar aquesta opció. No obstant això, i depenent de l'esquema de\n"
-"particionament que tingueu, podeu evitar que part de les dades existents se\n"
-"sobreescriguin.\n"
"\n"
-" * \"%s\": aquest tipus d'instal•lació us permet actualitzar els paquets que\n"
-"ja estan instal•lats al sistema Linux Mandrake. L'esquema de particionament\n"
-"actual i les dades d'usuari no queden afectades. La majoria de les altres\n"
-"fases de configuració queden disponibles, de manera similar a una "
-"instal•lació\n"
-"estàndard.\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
-"L'opció ``Actualitza'' ha de funcionar correctament en sistemes Linux "
-"Mandrake\n"
-"amb la versió \"8.1\" o posteriors. No es recomana realitzar una "
-"actualització\n"
-"en versions de Linux Mandrake anteriors a la \"8.1\"."
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:365
msgid ""
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\n"
"\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"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\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"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\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 ""
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
"\n"
-" Copyright (C) 2001-2002 per MandrakeSoft \n"
-" DUPONT Sébastien (versió original)\n"
-" CHAUMETTE Damien <dchaumette@mandrakesoft.com>\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
"\n"
-" Aquest programa és programari lliure; el podeu redistribuir i/o modificar\n"
-" sota els termes de la Llicència General Pública de GNU publicada per la\n"
-" Free Software Foundation, tant la versió 2 com qualsevol versió posterior,\n"
-" a elecció vostra.\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
"\n"
-" Aquest programa és distribueix amb l'esperança que serà útil,\n"
-" però SENSE CAP GARANTIA; sense ni tant sols la garantia implícita de\n"
-" MERCANTIBILITAT o ADEQUACIÓ A UNA FINALITAT DETERMINADA. Consulteu la\n"
-" Llicència General Pública de GNU per a més informació.\n"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \n"
"\n"
-" Heu d'haver rebut una còpia de la Llicència General Pública de GNU\n"
-" amb el programa; si no és així, escriviu a la Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
-" Gràcies:\n"
-" - pfm2afm: \n"
-"\t per Ken Borgendale:\n"
-"\t Converteix un fitxer .pfm de Windows a un .afm (Adobe Font Metrics)\n"
-" - type1inst:\n"
-"\t per James Macnicol: \n"
-"\t El type1inst genera fitxers fonts.dir, fonts.scale i Fontmap.\n"
-" - ttf2pt1: \n"
-"\t per Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Converteix fitxers de tipus de lletra ttf a afm i pfb\n"
-
-#
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Impressora en servidor CUPS remot"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-"És impossible de suprimir la impressora \"%s\" d'Star Office/OpenOffice.org/"
-"GIMP."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
-msgstr "aquí si no."
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
+msgstr "Disquet d'arrencada"
-#: ../../network/network.pm:1
-#, c-format
-msgid "DHCP host name"
-msgstr "Nom DHCP de l'ordinador"
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
+msgstr "ISO d'arrencada"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Lísing màxim (en segons)"
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
+msgstr "Munta tot el nucli -->"
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Si us plau, seleccioneu el port sèrie a què està connectat el ratolí."
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
+msgstr "Això trigarà uns minuts."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
-msgstr "Ha funcionat correctament?"
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
+msgstr "No heu seleccionat cap nucli!"
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
-msgstr "Munta el sistema de fitxers només de lectura."
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
+msgstr "Munta un NIC senzill -->"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "Pobre"
+#: ../../standalone/drakTermServ_.c:587
+msgid "No nic selected!"
+msgstr "No heu seleccionat cap NIC!"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result by mail"
-msgstr "Informa el resultat de la comprovació per correu"
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
+msgstr "Munta tots els nuclis -->"
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
-msgstr "Grenada"
+#: ../../standalone/drakTermServ_.c:604
+msgid "<-- Delete"
+msgstr "<-- Suprimeix"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
-msgstr "L'adreça inicial del rang del DHCP"
+#
+#: ../../standalone/drakTermServ_.c:611
+msgid "Delete All NBIs"
+msgstr "Suprimeix tots els NBI"
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "No segur"
+#: ../../standalone/drakTermServ_.c:668
+msgid ""
+"!!! Indicates the password in the system database is different than\n"
+" the one in the Terminal Server database.\n"
+"Delete/re-add the user to the Terminal Server to enable login."
+msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "SSH server"
-msgstr "Servidor SSH"
+#: ../../standalone/drakTermServ_.c:673
+msgid "Add User -->"
+msgstr "Afegeix un usuari -->"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sectors"
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
+msgstr "<-- Suprimeix un usuari"
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "No"
+#: ../../standalone/drakTermServ_.c:720
+#, fuzzy, c-format
+msgid "type: %s"
+msgstr "Tipus: "
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "Guadalupe"
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
+msgstr "No s'ha creat cap imatge d'arrencada des de xarxa"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Kannada"
-msgstr "Canadà"
+#: ../../standalone/drakTermServ_.c:773
+#, fuzzy
+msgid "Thin Client"
+msgstr "Client DHCP"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
-msgstr "no s'ha trobat cap font.\n"
+#: ../../standalone/drakTermServ_.c:775
+#, fuzzy
+msgid "Allow Thin Clients"
+msgstr "Afegeix/Suprimeix clients"
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Voleu que la tecla Enrere efectuï un Suprimeix en la consola?"
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
+msgstr "Afegeix un client -->"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Velocitat de refresc vertical"
+#: ../../standalone/drakTermServ_.c:821
+#, fuzzy
+msgid "<-- Edit Client"
+msgstr "<-- Suprimeix un client"
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "S'està entrant en el pas '%s'\n"
+#: ../../standalone/drakTermServ_.c:837
+#, fuzzy
+msgid "Delete Client"
+msgstr "<-- Suprimeix un client"
-#: ../../lang.pm:1
-#, c-format
-msgid "Niger"
-msgstr "Níger"
+#: ../../standalone/drakTermServ_.c:843
+msgid "dhcpd Config..."
+msgstr "Configuració del dhcpd..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
+#: ../../standalone/drakTermServ_.c:876
+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
-#, c-format
-msgid "Removing %s ..."
-msgstr "S'està eliminant %s"
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No printer"
-msgstr "Cap impressora"
+#: ../../standalone/drakTermServ_.c:901
+#, fuzzy
+msgid "Netmask:"
+msgstr "Submàscara de xarxa"
-#
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "alert configuration"
-msgstr "Configuració de l'avís"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "Opcions de la impressora NetWare"
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "%s BootSplash (%s) preview"
-msgstr "Vista prèvia del BootSplash %s (%s)"
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "February"
-msgstr "Febrer"
+#: ../../standalone/drakTermServ_.c:929
+#, fuzzy
+msgid "Domain Name:"
+msgstr "Nom de domini"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
-msgstr "General"
+#: ../../standalone/drakTermServ_.c:937
+#, fuzzy
+msgid "Name Servers:"
+msgstr "Servidor Samba"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "Afegeix un usuari"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuració de xarxa (%d adaptadors)"
+#
+#: ../../standalone/drakTermServ_.c:1001
+msgid "dhcpd Server Configuration"
+msgstr "Configuració del servidor dhcpd"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "April"
-msgstr "Abril"
+#: ../../standalone/drakTermServ_.c:1002
+#, fuzzy
+msgid ""
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
+msgstr ""
+"La majoria d'aquests valors s'han obtingut\n"
+"del vostre sistema actual. Podeu modificar-los si cal."
-#
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Deactivate now"
-msgstr "Desactiva'l ara"
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
+msgstr ""
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "El paquet %s necessari falta"
+#: ../../standalone/drakTermServ_.c:1018
+msgid "Write Config"
+msgstr "Escriu la configuració"
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Filipines"
+#: ../../standalone/drakTermServ_.c:1120
+msgid "Please insert floppy disk:"
+msgstr "Si us plau, inseriu un disquet:"
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "D'acord"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
+msgstr "No s'ha pogut accedir al disquet!"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "drakTermServ Overview"
-msgstr "Visió general del drakTermServ"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
+msgstr "Ja podeu extreure el disquet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
-msgstr "Nom de la cua d'impressió"
+#: ../../standalone/drakTermServ_.c:1129
+msgid "No floppy drive available!"
+msgstr "No s'ha trobat cap unitat de disquet!"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakTermServ_.c:1138
#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Voleu utilitzar l'aboot?"
+msgid "Etherboot ISO image is %s"
+msgstr "La imatge ISO per a Etherboot és %s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belarusian"
-msgstr "Bielorrús"
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Alguna cosa ha anat malament! Teniu instal·lat l'mkisofs?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "Abans cal crear /etc/dhcpd.conf!"
+
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
-"PDQ només funciona amb impressores locals, impressores LPD remotes, i "
-"impressores de Socket/TCP.\n"
#
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move files to the new partition"
-msgstr "Mou els fitxers a la nova partició"
+#: ../../standalone/drakautoinst_.c:40
+msgid "Error!"
+msgstr "S'ha produït un error!"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
-"Afegiu aquí els servidors CUPS les impressores dels quals voleu utilitzar. "
-"Només us cal fer això si els servidors no difonen la informació de les seves "
-"impressores en la xarxa local."
+msgid "I can't find needed image file `%s'."
+msgstr "No he trobat el fitxer d'imatge necessari `%s'."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#
+#: ../../standalone/drakautoinst_.c:43
+msgid "Auto Install Configurator"
+msgstr "Configuració de la instal·lació automàtica"
+
+#: ../../standalone/drakautoinst_.c:44
msgid ""
+"You are about to configure an Auto Install floppy. This feature is somewhat "
+"dangerous and must be used circumspectly.\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\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"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
+"For maximum safety, the partitioning and formatting will never be performed "
+"automatically, whatever you chose during the install of this computer.\n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
+"Do you want to continue?"
msgstr ""
+"Ara es configurarà un disquet d'instal·lació automàtica. Aquesta "
+"característica és perillosa i s'ha d'utilitzar amb molta cura.\n"
"\n"
-"Benvingut a l'auxiliar de configuració de la impressora\n"
-"\n"
-"Aquest auxiliar us ajudarà a instal·lar la o les impressores connectades a "
-"aquest ordinador.\n"
+"Amb aquesta característica, sereu capaç de repetir la instal·lació que ja "
+"heu fet en aquest ordinador, tot i que se us consultarà en alguns passos, "
+"perquè pugueu canviar els valors.\n"
"\n"
-"Si teniu impressores connectades a aquesta màquina, endolleu-les i engegueu-"
-"les per tal de poder-les detectar automàticament.\n"
+"Per màxima seguretat, el particionament i la formatació mai seran executats "
+"automàticament, independentment del que trieu durant la instal·lació "
+"d'aquest ordinador.\n"
"\n"
-"Feu clic a \"Següent\" quan estigueu a punt, o a \"Cancel·la\" si no voleu "
-"configurar ara les impressores."
+"Voleu continuar?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
-msgstr "Pitcairn"
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
+msgstr ""
+
+#: ../../standalone/drakautoinst_.c:62
+#, fuzzy
+msgid "replay"
+msgstr "Repeteix"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Restaura des de catàleg"
+#: ../../standalone/drakautoinst_.c:66
+msgid "Automatic Steps Configuration"
+msgstr "Configuració automatitzada dels passos"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "IDE"
-msgstr "IDE"
+#: ../../standalone/drakautoinst_.c:67
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
+msgstr ""
+"Si us plau, escolliu per cada pas si es repetirà la vostra instal·lació o si "
+"serà manual"
-#: ../../fs.pm:1
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "El muntatge de la partició %s en el directori %s ha fallat"
+#
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+msgid "Creating auto install floppy"
+msgstr "S'està creant el disquet d'instal·lació automàtica"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
-msgstr "Pantalla del LILO"
+#: ../../standalone/drakautoinst_.c:139
+msgid ""
+"\n"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
+msgstr ""
+"\n"
+"Benvingut.\n"
+"\n"
+"Els paràmetres de la instal·lació automàtica estan disponibles en les "
+"seccions de l'esquerra"
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO amb menú gràfic"
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
+msgstr "Felicitats!"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "S'està estimant"
+#: ../../standalone/drakautoinst_.c:235
+msgid ""
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
+msgstr ""
+"El disquet s'ha creat correctament.\n"
+"Ara podeu repetir la vostra instal·lació."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
-msgstr "No podeu desseleccionar aquest paquet; ja està instal·lat"
+#
+#: ../../standalone/drakautoinst_.c:273
+msgid "Auto Install"
+msgstr "Instal·la automàticament"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", impressora \"%s\" en servidor SMB/Windows \"%s\""
+#: ../../standalone/drakautoinst_.c:343
+msgid "Add an item"
+msgstr "Afegeix un element"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "Voleu seguir igualment?"
+#
+#: ../../standalone/drakautoinst_.c:350
+msgid "Remove the last item"
+msgstr "Esborra l'últim element"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr ""
-"S'estan cercant els paquets disponibles i reconstruint la base de dades "
-"d'rpm..."
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
+msgstr "El cron encara no és disponible per a usuaris que no siguin root"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
+msgstr "AVÍS"
+
+#: ../../standalone/drakbackup_.c:691
+msgid "FATAL"
+msgstr "FATAL"
+
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
+msgstr "INFORMACIÓ"
+
+#: ../../standalone/drakbackup_.c:704
msgid ""
"\n"
" DrakBackup Report \n"
+"\n"
msgstr ""
"\n"
" Informe del DrakBackup \n"
+"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Sembla que el suport no és enregistrable!"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "Especifica les opcions"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "New user list:\n"
+#: ../../standalone/drakbackup_.c:705
+msgid ""
+"\n"
+" DrakBackup Daemon Report\n"
+"\n"
+"\n"
msgstr ""
"\n"
-"- Fitxers d'usuari:\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Cal que subministreu o bé el nom del servidor o bé la seva IP!"
+" Informe del Dimoni DrakBackup\n"
+"\n"
+"\n"
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:709
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\"."
+" DrakBackup Report Details\n"
+"\n"
+"\n"
msgstr ""
-"Un disc d'arrencada personalitzat proporciona una manera d'arrencar el "
-"vostre\n"
-"sistema Linux sense dependre del carregador d'arrencada normal. Això és "
-"útil\n"
-"si no voleu instal·lar el SILO al sistema, o si un altre sistema operatiu\n"
-"elimina el SILO, o si el SILO no funciona amb la vostra configuració de\n"
-"maquinari. Un disc d'arrencada personalitzat també es pot utilitzar amb la\n"
-"imatge de rescat del Mandrake, facilitant molt la recuperació de fallides\n"
-"serioses del sistema.\n"
"\n"
-"Si voleu crear un disc d'arrencada per al vostre sistema, inseriu un disquet "
-"a la primera unitat i premeu \"D'acord\"."
+" Detalls de l'Informe del DrakBackup\n"
+"\n"
+"\n"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr ""
-"No podeu utilitzar un sistema d'arxius xifrat per al punt de muntatge %s"
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+msgid "Total progess"
+msgstr "Progrés total"
-#: ../../security/help.pm:1
+#: ../../standalone/drakbackup_.c:785
#, c-format
-msgid "Set the password history length to prevent password reuse."
+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 ""
-"Defineix la llargària de l'historial de contrasenyes per prevenir la "
-"reutilització de contrasenyes."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
-msgstr "Illa Norfolk"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Theme installation failed!"
-msgstr "La instal·lació dels temes ha fallat!"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
-msgstr "Res a fer"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "Utilitza per a loopback"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr "Eina per a la comunicació d'errors de programació (bugs) de Mandrake"
+"S'ha trobat %s, voleu suprimir-lo?\n"
+"Avís: Si ja heu seguit aquest procés, probablement us calgui\n"
+"purgar l'entrada del paràmetre 'authorized_keys' en el servidor."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
-msgstr "Aplica el filtre"
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
+msgstr "La generació de les claus pot trigar una estona."
-#: ../../network/adsl.pm:1
+#: ../../standalone/drakbackup_.c:801
#, c-format
-msgid "use pppoe"
-msgstr "utilitza pppoe"
+msgid "ERROR: Cannot spawn %s."
+msgstr "S'ha produït un error: no s'ha pogut engendrar %s."
-#
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid "Moving files to the new partition"
-msgstr "S'estan movent els fitxers a la nova partició"
+msgid "No password prompt on %s at port %s"
+msgstr "No es demana cap contrasenya a %s en el port %s"
-#: ../../Xconfig/card.pm:1
+#: ../../standalone/drakbackup_.c:819
#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s amb acceleració 3D de maquinari EXPERIMENTAL"
+msgid "Bad password on %s"
+msgstr "Contrasenya incorrecta a %s"
-#: ../../help.pm:1 ../../interactive.pm:1
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "Advanced"
-msgstr "Avançat"
+msgid "Permission denied transferring %s to %s"
+msgstr "S'ha denegat el permís per transferir %s a %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:821
#, c-format
-msgid "Transfer"
-msgstr "Transfereix"
+msgid "Can't find %s on %s"
+msgstr "No s'ha trobat %s a %s"
-#
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Suec)"
+msgid "%s not responding"
+msgstr "%s no respon"
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup_.c:828
#, c-format
-msgid "Afghanistan"
-msgstr "Afganistan"
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+"La transferència s'ha completat amb èxit\n"
+"Comproveu que podeu entrar al servidor amb:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"sense que se us demani una contrasenya."
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "More Options"
-msgstr "Més opcions"
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
+msgstr "El lloc remot WebDAV ja està sincronitzat!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
-"Suprimeix els arxius tar del disc dur després de fer una còpia de seguretat "
-"en un altre suport."
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
+msgstr "La transferència WebDAV ha fallat!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "Burundi"
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
+msgstr "No s'ha trobat cap unitat de CDR/DVDR!"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"El cron és un programa UNIX estàndard que executa programes determinats\n"
-"per l'usuari en hores programades. El vixie cron afegeix un cert nombre de\n"
-"característiques al cron bàsic, incloent seguretat millorada i opcions\n"
-"de configuració més potents."
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
+msgstr "Sembla que el suport no és enregistrable!"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr "Afegeix un client -->"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
+msgstr "Aquest suport no es pot esborrar!"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "Llegiu-ho atentament!"
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
+msgstr "Esborrar el suport pot trigar una estona."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
-msgstr "RW"
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
+msgstr "Hi ha hagut un problema de permisos en accedir al CD."
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakbackup_.c:1060
#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Si us plau,\n"
-"entreu la vostra normativa de tv i el país"
+msgid "No tape in %s!"
+msgstr "No s'ha trobat cap cinta a %s"
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "Port"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
+msgstr "Fes una còpia de seguretat dels fitxers del sistema..."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
-msgstr "No (només experts)"
+#
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+msgid "Hard Disk Backup files..."
+msgstr "Còpies de seguretat del disc dur..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-msgstr "No heu seleccionat cap nucli!"
+#
+#: ../../standalone/drakbackup_.c:1236
+msgid "Backup User files..."
+msgstr "Fes una còpia de seguretat dels fitxers d'usuari..."
-#. -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
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Premeu Retorn per arrencar el SO seleccionat, 'e' per editar les"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
+msgstr "Progrés de la còpia de seguretat del disc dur..."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
+#
+#: ../../standalone/drakbackup_.c:1290
+msgid "Backup Other files..."
+msgstr "Fes una còpia de seguretat d'altres fitxers..."
#
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The encryption keys do not match"
-msgstr "Les claus de xifratge no coincideixen"
+#: ../../standalone/drakbackup_.c:1296
+msgid "No changes to backup!"
+msgstr "No s'ha fet cap canvi a la còpia de seguretat"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, c-format
msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
+"\n"
+"Activitats del Drakbackup a través de %s:\n"
+"\n"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "USB printer"
-msgstr "Impressora USB"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Tecla de \"Windows\" Dreta"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr "si és \"sí\", comprova la contrasenya buida a /etc/shadow."
-
-#: ../../help.pm:1
+#: ../../standalone/drakbackup_.c:1319
#, 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."
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-"Abans de continuar, llegiur atentament les clàusules de la llicència, que "
-"cobreix\n"
-"tota la distribució Linux Mandrake. Si esteu d'acord amb tots els termes de "
-"la\n"
-"llicència, feu clic al quadre \"%s\"; si no, només cal que apagueu "
-"l'ordinador."
+"llista de fitxers enviada per FTP: %s\n"
+" "
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1322
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
"\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
msgstr ""
-"Aquí teniu una llista de les opcions d'impressió disponibles per a la "
-"impressora actual:\n"
"\n"
+" Hi ha hagut un problema en la connexió FTP: No ha estat possible enviar els "
+"fitxers de la còpia de seguretat per FTP.\n"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "Resolucions"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1340
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."
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-"Configuració del drakfirewall\n"
"\n"
-"Aquí es configura un tallafocs personal per a aquest ordinador Linux "
-"Mandrake.\n"
-"Per a una potent solució de tallafocs dedicada, consulteu si us plau la \n"
-"distribució especialitzada MandrakeSecurity Firewall."
+"Activitats del Drakbackup a través del CD:\n"
+"\n"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1345
msgid ""
-"Please enter your username, password and domain name to access this host."
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-"Introduïu el vostre nom d'usuari, la contrasenya i el nom de domini per "
-"accedir a aquesta màquina."
+"\n"
+"Activitats del Drakbackup a travès de cinta:\n"
+"\n"
#
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Remove selected host"
-msgstr "Elimina l'ordinador seleccionat"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network configuration"
-msgstr "Configuració de xarxa"
+#: ../../standalone/drakbackup_.c:1354
+msgid " Error during mail sending. \n"
+msgstr " S'ha produït un error en enviar el correu electrònic. \n"
-#
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Detecta automàticament les unitats _jaz"
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
+msgstr "No s'ha pogut crear el catàleg!"
#
-#: ../../any.pm:1
-#, c-format
-msgid "No sharing"
-msgstr "No es comparteix"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Baixa la regla actual un nivell"
-
-#: ../../common.pm:1
-#, c-format
-msgid "TB"
-msgstr "TB"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "FATAL"
-msgstr "FATAL"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh the list"
-msgstr "Actualitza la llista"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+msgid "File Selection"
+msgstr "Selecció de fitxers"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Per client %s:\n"
-" \t\tMitjançant clusternfs, cada client sense disc pot tenir els seus "
-"propis fitxers de configuració únics\n"
-" \t\ten el sistema de fitxers root del servidor. Permetent una "
-"configuració de maquinari de client local, \n"
-" \t\tel drakTermServ ajudarà a crear aquests fitxers."
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
+msgstr "Seleccioneu els fitxers i directoris i feu clic a 'Afegeix'"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1573
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"
+"Please check all options that you need.\n"
msgstr ""
-"El servidor DHCP permetrà que altres ordinadors arrenquin utilitzant PXE en "
-"l'interval d'adreces indicat.\n"
"\n"
-"L'adreça de xarxa és %s utilitzant una màscara de xarxa de %s.\n"
-"\n"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete"
-msgstr "Suprimeix"
+"Si us plau, marqueu totes les opcions que us calguin.\n"
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1574
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?"
+"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-"Puc configurar el vostre ordinador de manera que executi automàticament la "
-"interfície gràfica durant l'arrencada.\n"
-"Voleu que XFree s'iniciï quan torneu a arrencar l'ordinador?"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
-msgstr "Munta el disc"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnect %s"
-msgstr "Desconnecta %s"
+"Aquestes opcions poden fer còpia de seguretat i restaurar tots els fitxers "
+"del directory /etc.\n"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
-msgstr "Estat:"
+#: ../../standalone/drakbackup_.c:1575
+msgid "Backup your System files. (/etc directory)"
+msgstr "Fes una còpia de seguretat dels fitxers del sistema (directori /etc)."
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "Intermediari per a HTTP"
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
+msgstr ""
+"Usa la còpia de seguretat incremental (no reemplacis les còpies antigues)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "SSH Server"
-msgstr "Servidor SSH"
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
+msgstr "No incloguis fitxers crítics (passwd, group, fstab)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-Xarxa per rsync.\n"
+#: ../../standalone/drakbackup_.c:1578
+msgid ""
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
+msgstr ""
+"Amb aquesta opció podreu restaurar qualsevol versió\n"
+" del directori /etc."
#
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
-msgstr "Protocol europeu"
+#: ../../standalone/drakbackup_.c:1595
+msgid "Please check all users that you want to include in your backup."
+msgstr ""
+"Si us plau, escolliu tots els usuaris que voleu incloure en la còpia de "
+"seguretat."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", impressora \"%s\", en el servidor \"%s\""
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
+msgstr "No incloguis la memòria cau del navegador"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-"Noteu que ara mateix tots els suports de xarxa també fan servir el disc dur."
+"Usa les còpies de seguretat incrementals (no reemplacis les còpies antigues)"
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
-#, c-format
-msgid "Error"
-msgstr "Error"
-
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
-msgstr "permet \"su\""
+#
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+msgid "Remove Selected"
+msgstr "Elimina la selecció"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Australia"
-msgstr "Austràlia"
+#
+#: ../../standalone/drakbackup_.c:1679
+msgid "Windows (FAT32)"
+msgstr "Windows (FAT32)"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "espereu si us plau durant ttmkfdir..."
+#
+#: ../../standalone/drakbackup_.c:1714
+msgid "Users"
+msgstr "Usuaris"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Configura només la targeta \"%s\"%s"
+#: ../../standalone/drakbackup_.c:1740
+msgid "Use network connection to backup"
+msgstr "Empra la connexió de xarxa per fer la còpia de seguretat"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Level"
-msgstr "Nivell"
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
+msgstr "Mètode de xarxa:"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Change the printing system"
-msgstr "Modifica el sistema d'impressió"
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
+msgstr "Usa Expect en l'SSH"
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1747
msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-"El vostre sistema permet l'ús d'una configuració de múltiples capçals.\n"
-"Què voleu fer?"
+"Crea/Transfereix\n"
+"la còpia de seguretat de les claus per a SSH"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr "ha fallat el muntatge: "
+#: ../../standalone/drakbackup_.c:1748
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+" Transfereix-ho \n"
+"ara"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "Configura els serveis"
+#: ../../standalone/drakbackup_.c:1749
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
+msgstr ""
+"Ja hi ha les claus d'un altre programa\n"
+"(diferent del Drakbackup)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Adreça de difusió:"
+#
+#: ../../standalone/drakbackup_.c:1753
+msgid "Please enter the host name or IP."
+msgstr "Si us plau, introduïu el nom de l'ordinador o la IP."
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1758
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."
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-"el nucli GNU/Linux necessita executar un bucle de càlcul durant l'arrencada "
-"per iniciar un comptador de temps. El seu resultat s'emmagatzema com a "
-"bogomips com a manera d'\"avaluar\" la CPU."
+"Si us plau, entreu el directori (o mòdul) d'aquest\n"
+"ordinador central on voleu desar la còpia de seguretat."
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "Imatge"
+#
+#: ../../standalone/drakbackup_.c:1763
+msgid "Please enter your login"
+msgstr "Si us plau, introduïu la vostra identificació (login)"
#
-#: ../../services.pm:1
-#, c-format
-msgid "Remote Administration"
-msgstr "Administració remota"
+#: ../../standalone/drakbackup_.c:1768
+msgid "Please enter your password"
+msgstr "Si us plau, introduïu la contrasenya"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+#
+#: ../../standalone/drakbackup_.c:1774
+msgid "Remember this password"
+msgstr "Recorda aquesta contrasenya"
+
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
msgstr ""
-"És impossible d'afegir la impressora \"%s\" a Star Office/OpenOffice.org/"
-"GIMP."
+"Cal introduir el nom de l'ordinador central, el nom d'usuari i la "
+"contrasenya!"
-#: ../../modules.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
+msgstr "Utilitzar CD/DVDROM per fer la còpia de seguretat"
+
+#: ../../standalone/drakbackup_.c:1882
msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-"El suport per a PCMCIA ja no existeix en els nuclis 2.2. Utilitzeu un nucli "
-"2.4."
+"Seleccioneu el vostre dispositiu de CD/DVD\n"
+"(Premeu Retorn perquè aquestes opcions es propaguin a d'altres camps.\n"
+"Aquest camp no és necessari, només és una eina per omplir el formulari.)"
#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Selected All"
-msgstr "Selecciona-ho tot"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
+#: ../../standalone/drakbackup_.c:1887
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Si us plau, escolliu l'espai disponible en el CD/DVD (en MB)"
#
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Webmin Service"
-msgstr "Servei Webmin"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
-msgstr "dispositiu"
+#: ../../standalone/drakbackup_.c:1893
+msgid "Please check for multisession CD"
+msgstr "Marqueu aquesta opció si voleu un CD multisessió"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Introduïu el directori on desar::"
+#: ../../standalone/drakbackup_.c:1899
+msgid "Please check if you are using CDRW media"
+msgstr "Marqueu aquesta opció si feu servir un suport CDRW"
-#
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
-msgstr "Grècia"
+#: ../../standalone/drakbackup_.c:1905
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Marqueu aquesta opció si voleu esborrar el suport RW (1a sessió)"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "Tots"
+#: ../../standalone/drakbackup_.c:1906
+msgid " Erase Now "
+msgstr " Esborra'l ara"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Quin sistema d'impressió (cua) voleu utilitzar?"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
-msgstr "Juliol"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Prints into %s"
-msgstr "Imprimeix a %s"
+#: ../../standalone/drakbackup_.c:1912
+msgid "Please check if you are using a DVDR device"
+msgstr "Marqueu aquesta opció si feu servir un dispositiu DVDR"
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "S'ha produït un error"
+#
+#: ../../standalone/drakbackup_.c:1918
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Marqueu aquesta opció si feu servir un dispositiu DVDRAM"
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1931
msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-"Aquest paquet s'ha d'actualitzar.\n"
-"Esteu segur que voleu desseleccionar-lo?"
+"Si us plau, entreu el nom de dispositiu de l'enregistradora de CD\n"
+" ex: 0,1,0"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "Tàmil (disposició de màquina d'escriure)"
+#: ../../standalone/drakbackup_.c:1964
+msgid "No CD device defined!"
+msgstr "No s'ha definit cap dispositiu de CD!"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
-msgstr "Utilitza una contrasenya per autenticar usuaris."
+#
+#: ../../standalone/drakbackup_.c:2012
+msgid "Use tape to backup"
+msgstr "Utilitza una cinta per fer la còpia de seguretat"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
msgstr ""
-"Permet/Impedeix la llista d'usuaris del sistema en els gestors de pantalla "
-"(kdm i gdm)."
+"Si us plau, introduïu el nom del dispositiu a utilitzar per fer la còpia"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
-msgstr "manual"
+#: ../../standalone/drakbackup_.c:2021
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Marqueu aquesta opció si voleu emprar el dispositiu no rebobinable."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
+#: ../../standalone/drakbackup_.c:2027
+msgid "Please check if you want to erase your tape before the backup."
msgstr ""
+"Marqueu aquesta opció si voleu esborrar la cinta abans de fer la còpia de "
+"seguretat."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Fabricant de la impressora, model, controlador"
+#: ../../standalone/drakbackup_.c:2033
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Marqueu aquesta opció si voleu expulsar la cinta en acabar."
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
msgstr ""
-"No hi ha cap suport al dispositiu %s o està protegit contra escriptura.\n"
-"Si us plau, inseriu-ne un."
+"Si us plau, especifiqueu la mida màxima\n"
+" permesa per a Drakbackup"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Directory %s already contains data\n"
-"(%s)"
-msgstr ""
-"El directori %s encara conté dades\n"
-"(%s)"
+#
+#: ../../standalone/drakbackup_.c:2103
+msgid "Please enter the directory to save to:"
+msgstr "Introduïu el directori on desar la còpia de seguretat:"
#
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Impressora en servidor NetWare"
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+msgid "Use quota for backup files."
+msgstr "Usa la quota de disc per als fitxers de còpia de seguretat."
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Introduïu la mida de la RAM en MB"
+#
+#: ../../standalone/drakbackup_.c:2180
+msgid "Network"
+msgstr "Xarxa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr "Divendres"
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
+msgstr "CDROM / DVDROM"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "S'ha completat la desconnexió d'Internet."
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
+msgstr "Disc Dur / NFS"
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "Nom real"
+#: ../../standalone/drakbackup_.c:2195
+msgid "Tape"
+msgstr "Cinta"
-#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "done"
-msgstr "fet"
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
+msgstr "cada hora"
+
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
+msgstr "diària"
+
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
+msgstr "setmanal"
+
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
+msgstr "mensual"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Si us plau, desseleccioneu-ho o esborreu-ho la pròxima vegada."
+#: ../../standalone/drakbackup_.c:2229
+msgid "Use daemon"
+msgstr "Utilitza dimoni"
#
-#: ../../security/level.pm:1
-#, c-format
-msgid "Higher"
-msgstr "Més Alt"
+#: ../../standalone/drakbackup_.c:2234
+msgid ""
+"Please choose the time \n"
+"interval between each backup"
+msgstr ""
+"Si us plau, escolliu l'interval \n"
+"de temps entre cada còpia de seguretat"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Escolliu les particions que voleu formatar"
+#
+#: ../../standalone/drakbackup_.c:2240
+msgid ""
+"Please choose the\n"
+"media for backup."
+msgstr ""
+"Si us plau, trieu el\n"
+"suport per a la còpia."
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2247
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"
+"Please be sure that the cron daemon is included in your services. \n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-"No s'ha detectat cap targeta de TV en el vostre ordinador. Si us plau "
-"verifiqueu que teniu correctament inserida una targeta de Vídeo/TV "
-"compatible amb Linux.\n"
+"Si us plau assegureu-vos que el dimoni cron està inclòs en els serveis. \n"
"\n"
-"\n"
-"Podeu visitar la nostra base de dades de maquinari a:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't find %s on %s"
-msgstr "No s'ha trobat %s a %s"
+"Noteu que ara mateix tots els suports de xarxa també fan servir el disc dur."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "Japonès de 106 tecles"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
+msgstr "Envia un informe per correu electrònic després de cada còpia a:"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-"No s'ha pogut instal·lar els paquets necessaris per compartir els vostres "
-"escàner(s)."
+"Suprimeix els arxius tar del disc dur després de fer una còpia de seguretat "
+"en un altre suport."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Això trigarà uns minuts."
+#
+#: ../../standalone/drakbackup_.c:2324
+msgid "What"
+msgstr "Què"
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
+#
+#: ../../standalone/drakbackup_.c:2329
+msgid "Where"
+msgstr "On"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "June"
-msgstr "Juny"
+#
+#: ../../standalone/drakbackup_.c:2334
+msgid "When"
+msgstr "Quan"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Utilitza els escàners d'ordinadors remots"
+#
+#: ../../standalone/drakbackup_.c:2339
+msgid "More Options"
+msgstr "Més opcions"
#
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Delete selected rule"
-msgstr "Elimina la regla seleccionada"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+msgid "Drakbackup Configuration"
+msgstr "Configuració del Drakbackup"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Accés a les impressores en servidor CUPS remots"
+#: ../../standalone/drakbackup_.c:2376
+msgid "Please choose where you want to backup"
+msgstr "Si us plau, escolliu on voleu fer la còpia de seguretat"
-#: ../../any.pm:1
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Inseriu un disquet a la unitat %s"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
+msgstr "en el disc dur"
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
-msgstr "Maldives"
+#
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
+msgstr "a la xarxa"
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "compacte"
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
+msgstr "en CDROM"
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
-msgstr "1 minut"
+#: ../../standalone/drakbackup_.c:2406
+msgid "on Tape Device"
+msgstr "en un dispositiu de cinta"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: fat"
-msgstr "tipus: gras"
+#
+#: ../../standalone/drakbackup_.c:2449
+msgid "Please choose what you want to backup"
+msgstr "Si us plau, escolliu de què voleu fer la còpia de seguretat"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "on channel %d id %d\n"
-msgstr "al canal %d amb id %d\n"
+#
+#: ../../standalone/drakbackup_.c:2450
+msgid "Backup system"
+msgstr "Còpia de seguretat del sistema"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
-msgstr ", dispositiu multifunció"
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
+msgstr "Còpia de seguretat dels usuaris"
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr "Laos"
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
+msgstr "Seleccioneu l'usuari manualment"
-#: ../advertising/04-configuration.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2537
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!"
+"\n"
+"Backup Sources: \n"
msgstr ""
-"El Mandrake Linux 9.2 us ofereix el Centre de Control Mandrake, una potent "
-"eina per adaptar completament el vostre ordinador a l'ús que en feu. "
-"Configureu i personalitzeu elements com ara el nivell de seguretat, els "
-"perifèrics (la pantalla, el ratolí, el teclat...), la connexió a Internet i "
-"moltes coses més!"
+"\n"
+"Fonts de la còpia: \n"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
+#: ../../standalone/drakbackup_.c:2538
+msgid ""
+"\n"
+"- System Files:\n"
msgstr ""
-"Activa/Inhabilita la comprovació de promiscuïtat de les targetes Ethernet."
+"\n"
+"- Fitxers de sistema:\n"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
+#: ../../standalone/drakbackup_.c:2540
+msgid ""
+"\n"
+"- User Files:\n"
msgstr ""
-"No hi ha cap partició FAT a la qual canviar la mida (o no queda prou espai)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr "Puja"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
-msgstr "Tallafoc"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr "Àrea:"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr "Controladors (E)IDE/ATA"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
-msgstr "Totes les E/S del sistema de fitxers s'han de fer sincronitzadament."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "Servidor de la impressora"
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Custom configuration"
-msgstr "Configuració personalitzada"
+"\n"
+"- Fitxers d'usuari:\n"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2542
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"
+"- Other Files:\n"
msgstr ""
-"Si us plau, indiqueu on estarà disponible la imatge de la instal·lació.\n"
"\n"
-"Si no teniu cap directori existent, copieu el contingut del CD o DVD.\n"
-"\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint Pierre i Miquelon"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
-msgstr "Setembre"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "s'està desant el tema Bootsplash..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
-msgstr "Portugal"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "En teniu una altra?"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", printing to %s"
-msgstr ", imprimint a %s"
-
-#
-#: ../../network/network.pm:1
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Assigna un nom d'ordinador a partir de l'adreça DHCP"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to normal mode"
-msgstr "Canvia al mode normal"
-
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
-msgstr "Genèric"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Cilindre %d a %d\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
-msgstr "EL TEU TEXT AQUÍ"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "New profile..."
-msgstr "Perfil nou..."
-
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
-#, c-format
-msgid "NONE"
-msgstr "CAP"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "A quin disc ho voleu moure?"
+"- Altres fitxers:\n"
-#: ../../standalone/draksplash:1
+#: ../../standalone/drakbackup_.c:2544
#, c-format
-msgid "Display logo on Console"
-msgstr "Mostra el logotip a la consola"
+msgid ""
+"\n"
+"- Save on Hard drive on path: %s\n"
+msgstr ""
+"\n"
+"- Desa-ho en el disc dur en el camí: %s\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Windows Domain"
-msgstr "Domini de Windows"
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+"\n"
+"- Suprimeix el arxius tar del disc dur en acabar.\n"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Saami (norwegian)"
-msgstr "Dvorak (Noruec)"
+#: ../../standalone/drakbackup_.c:2553
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+"\n"
+"- Crema a un CD"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Interface %s (on network %s)"
-msgstr "Interfície %s (en la xarxa %s)"
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
+msgstr "RW"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:2555
#, c-format
-msgid "INFO"
-msgstr "INFORMACIÓ"
+msgid " on device: %s"
+msgstr " en el dispositiu: %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
-msgstr "Wallis i Futuna"
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
+msgstr " (multisessió)"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup_.c:2557
#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Abans cal crear /etc/dhcpd.conf!"
+msgid ""
+"\n"
+"- Save to Tape on device: %s"
+msgstr ""
+"\n"
+"- Desa-ho a una cinta en el dispositiu: %s"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "Is FPU present"
-msgstr "FPU és present"
+msgid "\t\tErase=%s"
+msgstr "\t\tEsborra=%s"
-#: ../../services.pm:1
+#: ../../standalone/drakbackup_.c:2561
#, c-format
msgid ""
-"No additional information\n"
-"about this service, sorry."
+"\n"
+"- Save via %s on host: %s\n"
msgstr ""
-"Malauradament no hi ha més informació\n"
-"sobre aquest servei."
+"\n"
+"- Desa-ho a través de %s en l'ordinador central: %s\n"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakbackup_.c:2562
#, c-format
-msgid "There are no scanners found which are available on your system.\n"
+msgid ""
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
msgstr ""
-"No s'ha trobat cap escàner que estigui disponible en el vostre sistema.\n"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Munta un NIC senzill -->"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "Illes Marshall"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "Això és correcte?"
+"\t\t nom d'usuari: %s\n"
+"\t\t en el camí: %s \n"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr "Contrasenya de root"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Munta tots els nuclis -->"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVDRAM device"
-msgstr "Dispositiu DVDRAM"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
-msgstr "si és \"sí\", informa dels fitxers sense propietari"
-
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2563
msgid ""
-"You don't have a swap partition.\n"
"\n"
-"Continue anyway?"
+"- Options:\n"
msgstr ""
-"No teniu cap partició d'intercanvi.\n"
"\n"
-"Voleu continuar igualment?"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Version: "
-msgstr "Versió: "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Server IP missing!"
-msgstr "El servidor IP no hi és!"
+"- Opcions:\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Suriname"
-msgstr "Surinam"
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
+msgstr "\tNo incloguis els fitxers de sistema\n"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use a floppy"
-msgstr "Usa un disquet"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
+msgstr "\tLes còpies de seguretat utilitzen tar i bzip2\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
-msgstr "Habilita l'ACPI"
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
+msgstr "\tLes còpies de seguretat utilitzen tar i gzip\n"
-#: ../../fs.pm:1
+#: ../../standalone/drakbackup_.c:2572
#, c-format
-msgid "Give write access to ordinary users"
+msgid ""
+"\n"
+"- Daemon (%s) include:\n"
msgstr ""
+"\n"
+"- Dimoni (%s) inclou:\n"
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
-msgstr "Entorn gràfic"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
-msgstr "Gibraltar"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
+msgstr "\t-Disc dur.\n"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Do nothing"
-msgstr "No facis res"
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
+msgstr "\t-CDROM.\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete Client"
-msgstr "Suprimeix el client"
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
+msgstr "\t-Cinta \n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "Tipus de sistema de fitxers: "
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
+msgstr "\t-Xarxa per FTP.\n"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting network..."
-msgstr "S'està arrencant la xarxa..."
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
+msgstr "\t-Xarxa per SSH.\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
-msgstr "Vietnam"
+#: ../../standalone/drakbackup_.c:2578
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Xarxa per rsync.\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_Fields description"
-msgstr "/Descripció de _camps"
+#: ../../standalone/drakbackup_.c:2579
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Xarxa per webdav.\n"
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr "Optimitzeu la vostra seguretat"
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
+msgstr "Cap configuració, si us plau feu clic a 'Auxiliar' o a 'Avançat'.\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2587
msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
+"List of data to restore:\n"
"\n"
msgstr ""
+"Llista de dades per restaurar:\n"
"\n"
+
+#: ../../standalone/drakbackup_.c:2754
+msgid ""
+"List of data corrupted:\n"
"\n"
-" Gràcies a:\n"
-"\t- Projecte LTSP http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
+msgstr ""
+"Llista de dades corrompudes:\n"
"\n"
#
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Help"
-msgstr "Ajuda"
+#: ../../standalone/drakbackup_.c:2756
+msgid "Please uncheck or remove it on next time."
+msgstr "Si us plau, desseleccioneu-ho o esborreu-ho la pròxima vegada."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
-msgstr "Comprova si els dispositius de xarxa són en mode promiscu"
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
+msgstr "Els fitxers de la còpia de seguretat estan corromputs"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Your personal phone number"
-msgstr "El vostre telèfon particular"
+#: ../../standalone/drakbackup_.c:2787
+msgid " All of your selected data have been "
+msgstr " Totes les dades seleccionades han estat "
-#: ../../install_interactive.pm:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "Which size do you want to keep for Windows on"
-msgstr "Quina mida voleu deixar per a la partició de Windows?"
+msgid " Successfuly Restored on %s "
+msgstr " restaurades amb èxit en %s "
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"La(es) pàgina(es) de prova s'ha(n) enviat a la impressora.\n"
-"Pot passar un cert temps abans no comenci la impressió.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Username required"
-msgstr "El nom d'usuari és necessari"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Device"
-msgstr "Dispositiu"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"El DrakX seleccionarà automàticament la configuració de teclat correcta\n"
-"segons l'idioma que hagueu escollit a Secció). Tanmateix, pot ser que\n"
-"tingueu un teclat que no correspongués exactament al vostre idioma: per\n"
-"exemple, si sou un suís que parla anglès, potser teniu un teclat suís. O,\n"
-"si parleu anglès però viviu al Quebec, us podeu trobar en la mateixa\n"
-"situació i el vostre teclat no coincidirà amb el vostre idioma. En tots\n"
-"dos casos, aquesta fase de la instal•lació us permetrà triar un teclat\n"
-"adequat d'una llista.\n"
-"\n"
-"Feu clic al botó \"%s\" per veure la llista completa de teclats "
-"disponibles.\n"
-"Si trieu una disposició de teclat basada en un alfabet no llatí, el diàleg\n"
-"següent us permetrà escollir la tecla que servirà per canviar entre les\n"
-"configuracions llatina i no llatina."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Opcions de la impressora SMB (Windows 9x/NT)"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr ""
+#: ../../standalone/drakbackup_.c:2906
+msgid " Restore Configuration "
+msgstr " Configuració de restauració "
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "mkinitrd optional arguments"
-msgstr "Arguments opcionals de l'mkinitrd"
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
+msgstr "'D'acord' per restaurar els altres fitxers."
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-"Navegueu pel web amb el Mozilla o el Konqueror, llegiu el correu amb "
-"l'Evolution o el Kmail, creeu documents amb l'OpenOffice.org."
+"Llista d'usuaris per restaurar (només és important la data més recent per "
+"usuari)"
#
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protocol per a la resta del món"
+#: ../../standalone/drakbackup_.c:3019
+msgid "Backup the system files before:"
+msgstr "Fes primer la còpia de seguretat dels fitxers de sistema:"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print test pages"
-msgstr "Imprimeix la(es) pàgina(es) de prova"
+#: ../../standalone/drakbackup_.c:3021
+msgid "please choose the date to restore"
+msgstr "Si us plau, seleccioneu la data a restaurar"
#
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Activate now"
-msgstr "Activa'l ara"
+#: ../../standalone/drakbackup_.c:3057
+msgid "Use Hard Disk to backup"
+msgstr "Usa el disc dur per fer la còpia de seguretat"
#
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
-msgstr "64 MB o més"
+#: ../../standalone/drakbackup_.c:3060
+msgid "Please enter the directory to save:"
+msgstr "Si us plau, introduïu el directori on voleu desar-ho:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Escolliu les pàgines de prova que voleu imprimir.\n"
-"Nota: la pàgina de prova de fotografia pot ser molt lenta d'imprimir i en "
-"impressores làser amb poca memòria podria no acabar d'imprimir-se. "
-"Normalment n'hi ha prou d'imprimir la pàgina de prova estàndard."
+#
+#: ../../standalone/drakbackup_.c:3103
+msgid "FTP Connection"
+msgstr "Connexió FTP"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Si us plau seleccioneu el dispositiu al qual teniu connectat el %s"
+#
+#: ../../standalone/drakbackup_.c:3110
+msgid "Secure Connection"
+msgstr "Connexió segura"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Not formatted\n"
-msgstr "Sense formatar\n"
+#
+#: ../../standalone/drakbackup_.c:3134
+msgid "Restore from Hard Disk."
+msgstr "Restaura des del disc dur."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Periodic Checks"
-msgstr "Comprovacions periòdiques"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
+msgstr "Si us plau, entreu el directori on es guarden les còpies de seguretat"
#
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "PXE Server Configuration"
-msgstr "Configuració del servidor PXE"
+#: ../../standalone/drakbackup_.c:3204
+msgid "Select another media to restore from"
+msgstr "Seleccioneu un altre suport des del qual restaurar"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup the system files before:"
-msgstr "Fes primer la còpia de seguretat dels fitxers de sistema:"
+#: ../../standalone/drakbackup_.c:3206
+msgid "Other Media"
+msgstr "Altres suports"
#
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Aquesta és la seguretat estàndard recomanada per a un ordinador que "
-"s'utilitzarà per connectar-se a Internet com a client. Ara hi ha "
-"comprovacions de seguretat."
-
-#: ../../any.pm:1
-#, c-format
-msgid "First floppy drive"
-msgstr "Primera unitat de disquet"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Fitxer/_Surt"
+#: ../../standalone/drakbackup_.c:3211
+msgid "Restore system"
+msgstr "Restaura el sistema"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak"
-msgstr "Dvorak"
+#
+#: ../../standalone/drakbackup_.c:3212
+msgid "Restore Users"
+msgstr "Restaura els usuaris"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose the new size"
-msgstr "Escolliu la nova mida"
+#: ../../standalone/drakbackup_.c:3213
+msgid "Restore Other"
+msgstr "Restaura altres"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Media class"
-msgstr "Tipus de mitjà"
+#: ../../standalone/drakbackup_.c:3215
+msgid "select path to restore (instead of /)"
+msgstr "seleccioneu el camí al qual restaurar (en comptes de /)"
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
+"Fes una nova còpia de seguretat abans de restaurar (només per les còpies "
+"incrementals.)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
-msgstr "Aquesta versió de l'Scannerdrake no coneix el %s."
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
+msgstr "Esborra els directoris d'usuari abans de restaurar."
-#: ../../lang.pm:1
-#, c-format
-msgid "Faroe Islands"
-msgstr "Illes Fèroe"
+#: ../../standalone/drakbackup_.c:3334
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+"Restaura l'entrada\n"
+"del catàleg seleccionada"
#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Restart XFS"
-msgstr "Reinicia l'XFS"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
-msgstr "Afegeix ordinador/xarxa"
+#: ../../standalone/drakbackup_.c:3344
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr ""
+"Restaura els fitxers\n"
+"seleccionats"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake will not be started now."
+#: ../../standalone/drakbackup_.c:3361
+msgid ""
+"Change\n"
+"Restore Path"
msgstr ""
+"Canvia el camí\n"
+"on restaurar"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakbackup_.c:3427
#, c-format
-msgid "Model name"
-msgstr "Nom del model"
+msgid "Backup files not found at %s."
+msgstr "No s'han trobat els fitxers de còpia de seguretat a %s"
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup_.c:3440
#, c-format
-msgid "Albania"
-msgstr "Albània"
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+"Inseriu el CD amb l'etiqueta de volum %s\n"
+" a la unitat de CD sota el punt de muntatge /mnt/cdrom"
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr "Territori Britànic de l'Oceà Índic"
+#
+#: ../../standalone/drakbackup_.c:3440
+msgid "Restore From CD"
+msgstr "Restaura des de CD"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:3442
#, c-format
-msgid "Normal Mode"
-msgstr "Mode normal"
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr "L'etiqueta del CD no és correcta. L'etiqueta d'aquest disc és %s."
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:3452
#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "No s'ha trobat cap unitat de CDR/DVDR!"
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+"Inseriu la cinta amb l'etiqueta de volum %s\n"
+" al dispositiu de cinta %s"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer connection type"
-msgstr "Tipus de connexió de la impressora"
+#: ../../standalone/drakbackup_.c:3452
+msgid "Restore From Tape"
+msgstr "Restaura des de cinta"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
+#: ../../standalone/drakbackup_.c:3454
#, c-format
-msgid "No network adapter on your system!"
-msgstr "No teniu cap adaptador de xarxa al sistema!"
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr ""
+"L'etiqueta de la cinta no és correcta. L'etiqueta d'aquesta cinta és %s."
#
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network %s"
-msgstr "Xarxa %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
-msgstr "Malaialam"
+#: ../../standalone/drakbackup_.c:3474
+msgid "Restore Via Network"
+msgstr "Restaura a través de la xarxa"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:3474
#, c-format
-msgid "Option %s out of range!"
-msgstr "L'opció %s està fora de rang!"
+msgid "Restore Via Network Protocol: %s"
+msgstr "Restaura mitjançant el protocol de xarxa: %s"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connect %s"
-msgstr "Connecta %s"
+#: ../../standalone/drakbackup_.c:3475
+msgid "Host Name"
+msgstr "Nom de l'ordinador central"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "S'està reiniciant el CUPS"
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
+msgstr "Camí de l'ordinador central o mòdul"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "S'està imprimint/escanejant/llegint targetes de fotos en \"%s\""
+#: ../../standalone/drakbackup_.c:3483
+msgid "Password required"
+msgstr "La contrasenya és necessària"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3489
+msgid "Username required"
+msgstr "El nom d'usuari és necessari"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Duplica el punt de muntatge %s"
+#: ../../standalone/drakbackup_.c:3492
+msgid "Hostname required"
+msgstr "El nom de l'ordinador central (host) és necessari"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
-msgstr "si és \"sí\", executa les comprovacions chkrootkit."
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
+msgstr "El camí o el mòdul són necessaris"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "Configuració de la connexió"
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
+msgstr "S'han restaurat els fitxers..."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|Generic"
-msgstr "Desconegut|Genèric"
+#: ../../standalone/drakbackup_.c:3513
+msgid "Restore Failed..."
+msgstr "La restauració ha fallat..."
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Ara esteu instal·lant el Linux Mandrake, però és probable que alguns "
-"paquets\n"
-"hagin estat actualitzats desde la data de llançament. Alguns errors poden "
-"haver\n"
-"estat resolts, i altres problemes de seguretat poden estar ja corregits. "
-"Per\n"
-"beneficiar-vos d'aquestes actualitzacions, les podeu baixar d'Internet.\n"
-"Trieu \"%s\" si teniu una connexió a Internet operativa, o \"%s\" si "
-"preferiu\n"
-"instal·lar-les més tard.\n"
-"\n"
-"Si trieu \"%s\" apareixerà una llista de llocs des d'on podeu baixar les\n"
-"actualitzacions. Escolliu la ubicació més propera. Aleshores, apareixerà "
-"un \n"
-"arbre de selecció de paquets: comproveu la selecció i premeu \"%s\" per\n"
-"baixar i instal·lar els paquets seleccionats, o \"%s\" per abandonar."
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
+msgstr "Restaura totes les còpies de seguretat"
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-msgstr "Myanmar"
+#
+#: ../../standalone/drakbackup_.c:3760
+msgid "Custom Restore"
+msgstr "Restauració personalitzada"
-#: ../../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
-#, c-format
-msgid "Quit"
-msgstr "Surt"
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
+msgstr "El CD és a lloc. Continua."
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "Assigna automàticament"
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
+msgstr "Navega per trobar un nou dipòsit de restauració"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Voleu comprovar els blocs incorrectes?"
+#
+#: ../../standalone/drakbackup_.c:3813
+msgid "Restore From Catalog"
+msgstr "Restaura des de catàleg"
#
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Other MultiMedia devices"
-msgstr "Altres sispositius multimèdia"
+#: ../../standalone/drakbackup_.c:3841
+msgid "Restore Progress"
+msgstr "Progrés de la restauració"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "burner"
-msgstr "gravador"
+#
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+msgid "Previous"
+msgstr "Anterior"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Bug Description/System Information"
-msgstr ""
+#
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+msgid "Save"
+msgstr "Desa"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (Default is all users)"
-msgstr " (El valor per defecte és tots els usuaris)"
+#: ../../standalone/drakbackup_.c:3946
+msgid "Build Backup"
+msgstr "Construeix la còpia de seguretat"
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "No remote machines"
-msgstr "Cap màquina remota"
+#
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+msgid "Restore"
+msgstr "Restaura"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4189
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."
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
msgstr ""
-"\n"
-"Benvingut a l'auxiliar de configuració de la impressora\n"
-"\n"
-"Aquest auxiliar us ajudarà a instal·lar la o les impressores connectades a "
-"aquest ordinador.\n"
-"\n"
-"Si teniu impressores connectades a aquesta màquina, endolleu-les i engegueu-"
-"les per tal de poder-les detectar automàticament.\n"
-"\n"
-"Feu clic a \"Següent\" quan estigueu a punt, o a \"Cancel·la\" si no voleu "
-"configurar ara les impressores."
+"S'ha produït un error en enviar el correu.\n"
+" El vostre informe no ha estat enviat.\n"
+" Si us plau configureu el sendmail"
-#
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "Autenticació NIS"
+#: ../../standalone/drakbackup_.c:4195
+msgid ""
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
+msgstr ""
+"S'ha produït un error en enviar el fitxer a través d'FTP.\n"
+" Si us plau, corregiu la configuració de l'FTP."
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4209
msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
msgstr ""
-"L'opció \"Limita les opcions de la línia d'ordres\" no té cap utilitat sense "
-"una contrasenya"
+"Cal instal·lar els paquets següents:\n"
+" @list_of_rpm_to_install"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "La connexió a Internet compartida està habilitada"
+#: ../../standalone/drakbackup_.c:4232
+msgid "Please select data to restore..."
+msgstr "Si us plau, seleccioneu les dades per restaurar..."
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "Unió dels Emirats Àrabs"
+#: ../../standalone/drakbackup_.c:4267
+msgid "Please select media for backup..."
+msgstr "Si us plau seleccioneu el suport per a la còpia..."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "E/S_0 de la Targeta"
+#: ../../standalone/drakbackup_.c:4275
+msgid "Please select data to backup..."
+msgstr "Seleccioneu les dades de les quals voleu fer la còpia..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
-msgstr "Inhabilita la configuració local"
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
+msgid ""
+"No configuration file found \n"
+"please click Wizard or Advanced."
+msgstr ""
+"No s'ha trobat el fitxer de configuració \n"
+"si us plau, feu clic a 'Auxiliar' o a 'Avançat'."
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "Tailàndia"
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
+msgstr "Sota desenvolupament ... espereu si us plau."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "E/S_1 de la Targeta"
+#
+#: ../../standalone/drakbackup_.c:4382
+msgid "Backup system files"
+msgstr "Còpia de seguretat dels fitxers de sistema"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
-msgstr "Cerca:"
+#
+#: ../../standalone/drakbackup_.c:4384
+msgid "Backup user files"
+msgstr "Còpia de seguretat dels fitxers d'usuari"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "Kazakhstan"
+#
+#: ../../standalone/drakbackup_.c:4386
+msgid "Backup other files"
+msgstr "Còpia de seguretat d'altres fitxers"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
-msgstr "Encaminadors:"
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
+msgstr "Progrés total"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Write"
-msgstr "Escriptura"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
+msgstr "fitxers que s'estan enviant per FTP"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Mostra totes les impressores CUPS remotes disponibles"
+#
+#: ../../standalone/drakbackup_.c:4416
+msgid "Sending files..."
+msgstr "S'estan enviant els fitxers..."
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Instal·lació del Mandrake Linux %s"
+#
+#: ../../standalone/drakbackup_.c:4500
+msgid "Backup Now from configuration file"
+msgstr "Fes la còpia de seguretat des del fitxer de configuració"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
-msgstr "Controlador desconegut"
+#
+#: ../../standalone/drakbackup_.c:4505
+msgid "View Backup Configuration."
+msgstr "Visualitza la configuració de la còpia de seguretat"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "Teclat tai"
+#
+#: ../../standalone/drakbackup_.c:4526
+msgid "Wizard Configuration"
+msgstr "Auxiliar de configuració"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr "Illa Bouvet"
+#
+#: ../../standalone/drakbackup_.c:4531
+msgid "Advanced Configuration"
+msgstr "Configuració avançada"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "Opcions de marcatge"
+#
+#: ../../standalone/drakbackup_.c:4536
+msgid "Backup Now"
+msgstr "Fes la còpia de seguretat"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "Si no s'indica cap port, per defecte s'agafarà el 631."
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
+msgstr "Drakbackup"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:4624
msgid ""
-" - Per client system configuration files:\n"
-" \tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-msgstr ""
-" - Per fitxers de configuració del sistema del client:\n"
-" \t\tMitjançant clusternfs, cada client sense disc pot tenir els seus "
-"propis fitxers de configuració únics \n"
-" \t\t en el sistema de fitxers root del servidor. Permetent una "
-"configuració de maquinari de client local, \n"
-"\t\t\t\tels clients poden personalitzar fitxers com ara /etc/modules.conf, /"
-"etc/sysconfig/mouse, \n"
-" \t\t/etc/sysconfig/keyboard segons el client.\n"
-"\n"
-" Nota: l'habilitació de la configuració del maquinari de client local "
-"habilita l'entrada de root al servidor \n"
-" de terminal en cada màquina client que tingui habilitada aquesta "
-"funció. La configuració local es pot tornar\n"
-" a desactivar, mantenint els fitxers de configuració, quan la màquina "
-"client estigui configurada."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
+"options description:\n"
+"\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
+msgstr ""
+"descripció de les opcions:\n"
+"\n"
+" En aquest pas, el Drakbackup us permet modificar:\n"
+"\n"
+" - El mode de compressió:\n"
+" \n"
+" Si seleccioneu compressió bzip2, comprimireu\n"
+" les dades millor que amb gzip (una millora entre 2-10 %).\n"
+" Aquesta opció no està activada per defecte perquè\n"
+" necessita molt més temps (deu vegades més).\n"
+" \n"
+" - El mode d'actualització:\n"
+"\n"
+" Aquesta opció us permet actualitzar una còpia de seguretat,\n"
+" però no és gaire útil perquè s'han de descomprimir les\n"
+" dades copiades abans de poder-les actualitzar.\n"
+" \n"
+" - El mode .backupignore:\n"
+"\n"
+" Igual que el cvs, el Drakbackup ignorarà totes les referències\n"
+" incloses en els fitxers .backupignore de cada directori.\n"
+" P.ex.: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
+
+#: ../../standalone/drakbackup_.c:4654
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."
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-"Canvieu el CD-ROM!\n"
"\n"
-"Si us plau, inseriu el CD-ROM etiquetat com \"%s\" a la unitat i després\n"
-"premeu D'acord.\n"
-"Si no el teniu, premeu Cancel·la per no fer la instal·lació des d'aquest CD-"
-"ROM."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "Polonès"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Online"
-msgstr "Mandrake Online"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
-msgstr "\t-Xarxa per webdav.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", dispositiu multifunció en un port paral·lel"
+" Alguns errors durant el procés de sendmail són causats per \n"
+" una configuració dolenta de postfix. Per resoldre-ho hauríeu de\n"
+" definir myhostname o mydomain en /etc/postfix/main.cf\n"
+"\n"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4662
msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
msgstr ""
-"No s'ha detectat cap adaptador de xarxa ethernet al sistema. Si us plau, "
-"executeu l'eina de configuració de maquinari."
-
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "Submàscara de xarxa"
-
-#
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "No hard drives found"
-msgstr "No s'ha trobat cap disc dur!"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "2 botons"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "Quin tipus de connexió XDSI teniu?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "Etiqueta"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "Desa al disquet"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check open ports"
-msgstr "Comprova els ports oberts"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Edit selected printer"
-msgstr "Edita la impressora seleccionada"
-
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Detecció automàtica d'impressores"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Quina d'aquestes targetes XDSI teniu?"
+"descripció de les opcions:\n"
+"\n"
+" - Còpia de seguretat dels fitxers de sistema:\n"
+" \n"
+"\tAquesta opció us permet fer còpies del directori /etc,\n"
+"\tque conté tots els fitxers de configuració. Tingueu\n"
+"\tcura durant el pas de restauració de no sobreescriure:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Còpia de seguretat dels fitxers d'usuari: \n"
+"\n"
+"\tAquesta opció permet seleccionar els usuaris dels quals voleu \n"
+"\tfer còpia de seguretat.\n"
+"\tPer preservar espai de disc, es recomanable que no inclogueu \n"
+"\tla memòria cau del navegador.\n"
+"\n"
+" - Còpia de seguretat d'altres fitxers: \n"
+"\n"
+"\tAquesta opció us permet afegir més dades per desar.\n"
+"\tAmb aquesta opció de còpia encara no és possible activar\n"
+"\tl'opció de còpia incremental.\t\t\n"
+" \n"
+" - Còpia de seguretat incremental:\n"
+"\n"
+"\tLa còpia incremental és l'opció més potent a l'hora de fer \n"
+"\tcòpies de seguretat. Aquesta opció us permet fer una còpia \n"
+"\tde seguretat de totes les dades la primera vegada, i \n"
+"\tnomés de les dades canviades després.\n"
+"\tMés tard, sereu capaç, durant el procés de restauració, \n"
+"\tde restaurar les dades d'una data determinada.\n"
+"\tSi no s'activa aquesta opció totes les còpies de \n"
+"\tseguretat antigues s'esborren abans de cada nova còpia. \n"
+"\n"
+"\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4701
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."
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
+"\n"
msgstr ""
-"L'NFS és un protocol popular de compartició de fitxers en xarxes TCP/IP.\n"
-"Aquest servei proporciona la funcionalitat del servidor NFS, que es\n"
-"configura mitjançant el fitxer /etc/exports."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Msec"
-msgstr "Msec"
+"descripció de la restauració:\n"
+" \n"
+"Només s'utilitzarà la data més recent, perquè les còpies incrementals\n"
+"necessiten restaurar una a una totes les còpies antigues.\n"
+"\n"
+"Per tant, si no voleu restaurar un usuari deactiveu tots els seus\n"
+"quadres de verificació.\n"
+"\n"
+"D'altra banda, només podeu seleccionar aquesta opció\n"
+"\n"
+" - Còpia de seguretat incremental:\n"
+"\n"
+"\tLa còpia incremental és l'opció més potent a l'hora de fer \n"
+"\tcòpies de seguretat. Aquesta opció us permet fer una còpia \n"
+"\tde seguretat de totes les dades la primera vegada, i \n"
+"\tnomés de les dades canviades després.\n"
+"\tMés tard, sereu capaç, durant el procés de restauració, \n"
+"\tde restaurar les dades d'una data determinada.\n"
+"\tSi no s'activa aquesta opció totes les còpies de \n"
+"\tseguretat antigues s'esborren abans de cada nova còpia. \n"
+"\n"
+"\n"
+"\n"
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4727
+#, fuzzy
msgid ""
-"=> Notice, a label changed:\n"
-"%s"
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
-"=> Avís, una etiqueta ha canviat:\n"
-"%s"
+" Copyright (C) 2001 MandrakeSoft per DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
-msgstr "Nombre de memòries intermèdies de captura:"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Quina és la vostra elecció? (0/1, predeterminat '%s')"
+#: ../../standalone/drakbackup_.c:4729
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+" actualitzacions 2002 MandrakeSoft per Stew Benedict <sbenedict"
+"\\@mandrakesoft.com>"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4732
+#, fuzzy
msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a file system).\n"
+"Description:\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"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\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"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\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"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
"\n"
-"Click on \"%s\" when you are ready to format partitions.\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\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 ""
-"Per poder-les utilitzar, cal formatar les particions que s'acaben de "
-"definir\n"
-"(la formatació consisteix a crear-hi un sistema de fitxers).\n"
+"Descripció:\n"
"\n"
-"En aquest punt, potser voldreu tornar a formatar algunes de les particions\n"
-"existents per eliminar les dades que contenen. Si és així, seleccioneu "
-"també\n"
-"aquestes particions.\n"
+" El Drakbackup s'usa per fer còpies de seguretat del sistema.\n"
+" Durant la configuració podeu seleccionar: \n"
+"\t- Fitxers de sistema\n"
+"\t- Fitxers d'usuari\n"
+"\t- Altres fitxers\n"
+"\to Tot el Sistema... i Altres (com les Particions de Windows)\n"
"\n"
-"Tingueu en compte que no cal tornar a formatar totes les particions que ja\n"
-"existien; heu de tornar a formatar les particions que continguin el sistema\n"
-"operatiu (com ara \"/\", \"/usr\" o \"/var\"), però no les que contenen "
-"dades\n"
-"que voleu conservar (habitualment, \"/home\").\n"
+" El Drakbackup us permet fer còpies de seguretat del sistema en:\n"
+"\t- Disc dur\n"
+"\t- NFS\n"
+"\t- CDROM (CDRW), DVDROM (amb arrencada automàtica, rescat i instal·lació "
+"automàtica)\n"
+"\t- FTP\n"
+"\t- Rsync\n"
+"\t- Webdav\n"
+"\t- Cinta\n"
+"\n"
+" El Drakbackup us permet restaurar el sistema a\n"
+" un directori seleccionat d'usuari.\n"
+"\n"
+" Per defecte totes les còpies de seguretat es guarden en\n"
+" el directori /var/lib/drakbackup\n"
+"\n"
+" Fitxer de Configuració:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
"\n"
-"Aneu amb compte en seleccionar les particions; després de la formatació, "
-"totes\n"
-"les dades s'hauran suprimit i no en podreu recuperar cap.\n"
"\n"
-"Feu clic a \"%s\" quan estigueu a punt per formatar les particions.\n"
+"El pas de restauració:\n"
+" \n"
+" Durant el pas de restauració, el DrakBackup esborrarà \n"
+" els directoris originals i verificarà que cap de \n"
+" les còpies de seguretat no està malmesa. És recomanable que \n"
+" feu una última còpia de seguretat abans de restaurar.\n"
"\n"
-"Feu clic a \"%s\" si voleu seleccionar una altra partició per instal•lar\n"
-"el nou sistema Linux Mandrake.\n"
"\n"
-"Feu clic a \"%s\" si voleu seleccionar particions on cercar-hi blocs "
-"defectuosos."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "French"
-msgstr "Francès"
+#: ../../standalone/drakbackup_.c:4769
+msgid ""
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
+msgstr ""
+"descripció de les opcions:\n"
+"\n"
+"Si us plau, aneu amb compte quan feu còpies de seguretat amb FTP, \n"
+"perquè només s'envien al servidor les còpies creades correctament.\n"
+"Per tant, ara necessiteu construir la còpia de seguretat en el vostre disc \n"
+"dur abans d'enviar-la al servidor.\n"
+"\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTY)"
-msgstr "Txec (QWERTY)"
+#: ../../standalone/drakbackup_.c:4778
+msgid ""
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
+msgstr ""
+"\n"
+"Problemes durant la restauració de còpies de seguretat:\n"
+"\n"
+"Durant el pas de restauració, el Drakbackup verificarà tots\n"
+"els fitxers de les còpies de seguretat abans de restaurar-los.\n"
+"Abans de la restauració, el Drakbackup esborrarà \n"
+"els directoris originals, i perdreu totes les vostres \n"
+"dades. És important de tenir cura i no modificar a mà els \n"
+"fitxers de còpia de seguretat.\n"
-#: ../../security/l10n.pm:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Allow X Window connections"
-msgstr "Permet connexions X Windows"
+msgid "Installation of %s failed. The following error occured:"
+msgstr "Ha fallat la instal·lació de %s. S'ha produït l'error següent:"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "Comprovació de maquinari en curs"
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
+msgstr "Eina per a la comunicació d'errors de programació (bugs) de Mandrake"
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
-#, c-format
-msgid "Net Device"
-msgstr "Dispositiu de xarxa"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Auxiliar per a la primera vegada"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "Resum"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Eina de sincronització"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Ports Paral·lel: /dev/lp0, /dev/lp1, etc., equivalents a LPT1:, LPT2:, "
-"etc.; 1a impressora USB: /dev/usb/lp0, 2a impressora USB: /dev/usb/lp1, "
-"etc.)."
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+msgid "Standalone Tools"
+msgstr "Eines autònomes"
-#
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Next"
-msgstr "Següent"
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "No podeu instal·lar el carregador de l'arrencada a una partició %s\n"
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
+#
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msec"
-#: ../../network/network.pm:1
-#, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp/zeroconf)"
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Control Remot"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Benvingut.\n"
-"\n"
-"Els paràmetres de la instal·lació automàtica estan disponibles en les "
-"seccions de l'esquerra"
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Gestor de programari"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
-msgstr ""
-"el paquet 'ImageMagick' és necessari per a un correcte funcionament.\n"
-"Feu clic a \"D'acord\" per intal·lar-lo o a \"Cancel·la\" per sortir"
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Telnet server"
-msgstr "Servidor telnet"
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Eina de migració des de Windows"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lituà \"fila de números\" QWERTY"
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-"Se suprimiran els següents paquets per poder actualitzar el sistema: %s\n"
-"\n"
-"\n"
-"Voleu realment suprimir aquests paquets?\n"
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Auxiliars de configuració"
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
-msgstr "Anguilla"
+#: ../../standalone/drakbug_.c:75
+msgid "Application:"
+msgstr "Aplicació:"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "Domini del NIS"
+#
+#: ../../standalone/drakbug_.c:76
+msgid "Package: "
+msgstr "Paquet: "
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "Antàrtida"
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
+msgstr "Nucli: "
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbug_.c:78
+msgid "Release: "
+msgstr "Llançament: "
+
+#: ../../standalone/drakbug_.c:93
msgid ""
"\n"
-"- User Files:\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
msgstr ""
"\n"
-"- Fitxers d'usuari:\n"
+"\n"
+"Per trametre un informe d'error de programació, feu clic al botó 'Informa'.\n"
+"S'obrirà una finestra del navegador web amb la pàgina https://drakbug."
+"mandrakesoft.com\n"
+"on trobareu un formulari per omplir. La informació que es mostra més amunt "
+"s'enviarà al servidor.\n"
+"\n"
#
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
-msgstr "Opcions de muntatge"
+#: ../../standalone/drakbug_.c:112
+msgid "Report"
+msgstr "Informa"
-#: ../../lang.pm:1
-#, c-format
-msgid "Jamaica"
-msgstr "Jamaica"
+#
+#: ../../standalone/drakbug_.c:148
+msgid "Not installed"
+msgstr "No instal·lat"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
-msgstr ""
-"Assigna els dispositius en cru a dispositius de blocs (com ara les "
-"particions de\n"
-"disc dur), perquè siguin utilitzats per aplicacions com ara Oracle o "
-"reproductors DVD"
+#
+#: ../../standalone/drakbug_.c:160
+#, fuzzy
+msgid "Package not installed"
+msgstr "No instal·lat"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Espereu si us plau, s'està preparant la instal·lació..."
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
+msgstr "s'està connectant amb l'auxiliar de Bugzilla..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "Txec (QWERTZ)"
+#: ../../standalone/drakbug_.c:180
+msgid "No browser available! Please install one"
+msgstr "No hi ha cap navegador disponible! Si us plau, instal·leu-ne un"
-#: ../../network/network.pm:1
+#: ../../standalone/drakconnect_.c:75
#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr ""
-"Fes el seguiment de l'identificador de la targeta de xarxa (d'utilitat per a "
-"portàtils)"
+msgid "Network configuration (%d adapters)"
+msgstr "Configuració de xarxa (%d adaptadors)"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "El número de port ha de ser enter!"
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+msgid "Profile: "
+msgstr "Perfil: "
-#
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "You must choose an image file first!"
-msgstr "Abans heu de triar un fitxer d'imatge!"
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
+msgstr "Suprimeix el perfil..."
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Restaura des del disc dur."
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
+msgstr "Perfil a suprimir:"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "Afegeix a l'LVM"
+#: ../../standalone/drakconnect_.c:125
+msgid "New profile..."
+msgstr "Perfil nou..."
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "Servidor DNS"
+#: ../../standalone/drakconnect_.c:131
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Nom del perfil a crear (el nou perfil es crea com una còpia de l'actual):"
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr "Trinitat i Tobago"
+#: ../../standalone/drakconnect_.c:157
+msgid "Hostname: "
+msgstr "Nom de l'ordinador central: "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD i LPRng no funcionen amb impressores IPP.\n"
+#: ../../standalone/drakconnect_.c:164
+msgid "Internet access"
+msgstr "Accés a Internet"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host name or IP."
-msgstr "Nom de l'ordinador o IP"
+#: ../../standalone/drakconnect_.c:177
+msgid "Type:"
+msgstr "Tipus:"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Edit"
-msgstr "/_Edita"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "Passarel·la:"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "senzill"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Interface:"
+msgstr "Intefície:"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "Buida-ho tot"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
+msgstr "Estat:"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No test pages"
-msgstr "Cap pàgina de prova"
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
+msgstr "Espereu si us plau"
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr "Illes Malvines (Falkland)"
+#: ../../standalone/drakconnect_.c:216
+msgid "Configure Internet Access..."
+msgstr "Configura l'accés a Internet..."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptador %s: %s"
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+msgid "LAN configuration"
+msgstr "Configuració de la LAN"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Boot disk creation"
-msgstr "Creació del disc d'arrencada"
+#: ../../standalone/drakconnect_.c:228
+msgid "Driver"
+msgstr "Controlador"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
-msgstr "Dilluns"
+#: ../../standalone/drakconnect_.c:228
+msgid "Interface"
+msgstr "Interfície"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown model"
-msgstr "Model desconegut"
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
+msgstr "Protocol"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
-msgstr "si és \"sí\", comprova els fitxers/directoris que tothom pot escriure."
+#
+#: ../../standalone/drakconnect_.c:228
+msgid "State"
+msgstr "Estat"
-#: ../../help.pm:1
-#, c-format
-msgid "authentication"
-msgstr "autenticació"
+#: ../../standalone/drakconnect_.c:240
+msgid "Configure Local Area Network..."
+msgstr "Configura la xarxa d'àrea local..."
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now"
-msgstr "Fes la còpia de seguretat"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
+msgstr "Feu clic aquí per executar l'auxiliar ->"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/_Fitxer"
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "Auxiliar..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr "S'està suprimint la impressora d'Star Office/OpenOffice.org/GIMP"
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
+msgstr "Aplica"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Executa el filtratge de paquets per als nuclis Linux 2.2, per instal·lar\n"
-"un tallafoc que protegeixi el vostre ordinador d'atacs des de la xarxa."
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Connected"
+msgstr "Connectat"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Editable"
-msgstr "Editable"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Not connected"
+msgstr "Sense connexió"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
-msgstr "Quin client dhcp voleu utilitzar? (el predeterminat és dhcp-client)"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
+msgstr "Connecta..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr "Tàmil (disposició ISCII)"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
+msgstr "Desconnecta..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
-msgstr "Mayotte"
+#: ../../standalone/drakconnect_.c:400
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Avís: s'ha detectat una altra connexió a Internet, podria estar utilitzant "
+"la vostra xarxa"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
+#: ../../standalone/drakconnect_.c:427
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
msgstr ""
-"Defineix la mida de l'historial d'ordres de l'intèrpret d'ordres. El valor -"
-"1 indica il·limitada."
+"No teniu cap interfície configurada.\n"
+"Configureu-la primer fent clic a 'Configura'"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d KB\n"
-msgstr "%d kB\n"
+#: ../../standalone/drakconnect_.c:449
+msgid "LAN Configuration"
+msgstr "Configuració de la LAN"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Creating auto install floppy..."
-msgstr "S'està creant el diquet d'instal·lació automàtica"
+msgid "Adapter %s: %s"
+msgstr "Adaptador %s: %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for scanners ..."
-msgstr "S'e4stan cercant els escàners"
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
+msgstr "Protocol d'arrencada"
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
-msgstr "Rússia"
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
+msgstr "Iniciat en l'arrencada"
-#
-#: ../../steps.pm:1
-#, c-format
-msgid "Partitioning"
-msgstr "Particionament"
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
+msgstr "Client DHCP"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
-msgstr "s'han detectat una o diverses targetes Ethernet"
+#
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "activate now"
+msgstr "Activa'l ara"
#
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
-msgstr "Syslog"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "deactivate now"
+msgstr "Desactiva'l ara"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create catalog!"
-msgstr "No s'ha pogut crear el catàleg!"
+#: ../../standalone/drakconnect_.c:499
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Aquesta interfície encara no s'ha configurat.\n"
+"Executeu l'auxiliar de configuració en la finestra principal"
-#: ../advertising/11-mnf.pl:1
-#, c-format
+#: ../../standalone/drakconnect_.c:556
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."
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
msgstr ""
-"Completeu la vostra configuració de seguretat amb aquest programari, molt "
-"fàcil d'utilitzar, que combina diversos components d'alt rendiment, com ara "
-"un tallafocs, un servidor i client de xarxa privada virtual (VPN), un "
-"sistema de detecció d'intrusions i un gestor de trànsit."
+"No teniu cap connexió a Internet.\n"
+"Creeu-ne una fent clic a 'Configura'"
-#
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
-msgstr "No hi ha prou espai per a l'assignació automàtica"
+#: ../../standalone/drakconnect_.c:580
+msgid "Internet connection configuration"
+msgstr "Configuració de la connexió a Internet"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "Estableix la contrasenya de root"
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet Connection Configuration"
+msgstr "Configuració de la connexió a Internet"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable IP spoofing protection"
-msgstr "Habilita la protecció contra falsejament de la IP."
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+msgid "Connection type: "
+msgstr "Tipus de connexió: "
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
-msgstr ""
-"No hi ha cap programa de control gratuït per a la vostra targeta de so (%s), "
-"però n'hi ha un de propietat a \"%s\"."
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
+msgstr "Paràmetres"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group :"
-msgstr "Grup :"
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Passarel·la"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Després de canviar la mida de la partició %s, se'n perdran totes les dades"
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
+msgstr "Targeta Ethernet"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Configuració de la connexió a Internet"
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
+msgstr "Client DHCP"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
-msgstr ""
-"Afegiu el nom com a excepció al maneig, per part de l'msec, de l'antiguitat "
-"de contrasenyes."
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "USB"
-msgstr "USB"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Module name"
+msgstr "Nom del mòdul"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "S'estan cercant canals de TV"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Size"
+msgstr "Mida"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
-msgstr "Nucli:"
+#: ../../standalone/drakfloppy_.c:45
+msgid "drakfloppy"
+msgstr "drakfloppy"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_About..."
-msgstr "/_Quant a..."
+#: ../../standalone/drakfloppy_.c:63
+msgid "boot disk creation"
+msgstr "creació de discs d'arrencada"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
-msgstr "Bengalí"
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr "predeterminat"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakfloppy_.c:87
#, c-format
-msgid "Preference: "
-msgstr "Preferència: "
+msgid "DrakFloppy Error: %s"
+msgstr "Error del DrakFloppy: %s"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Serveis: %d activats per %d registrats"
+#: ../../standalone/drakfloppy_.c:98
+msgid "kernel version"
+msgstr "versió del nucli"
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "Crea un disc d'arrencada"
+#: ../../standalone/drakfloppy_.c:104
+msgid "General"
+msgstr "General"
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "Illes Salomó"
+#: ../../standalone/drakfloppy_.c:109
+msgid "Expert Area"
+msgstr "Àrea d'experts"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Si us plau, comproveu el ratolí:"
+#: ../../standalone/drakfloppy_.c:112
+msgid "mkinitrd optional arguments"
+msgstr "Arguments opcionals de l'mkinitrd"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(mòdul %s)"
+#: ../../standalone/drakfloppy_.c:113
+msgid "Add a module"
+msgstr "Afegeix un mòdul"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
-msgstr "Grup de treball"
+#: ../../standalone/drakfloppy_.c:133
+msgid "force"
+msgstr "imposa"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Nom o IP de l'ordinador de la impressora"
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
+msgstr "si cal"
-#
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "down"
-msgstr "fet"
+#: ../../standalone/drakfloppy_.c:135
+msgid "omit scsi modules"
+msgstr "omet els mòduls SCSI"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Path or Module"
-msgstr "Camí de l'ordinador central o mòdul"
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
+msgstr "omet els mòduls RAID"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"El nom de la impressora només pot constar de lletres, números i el caràcter "
-"de subratllat"
+#: ../../standalone/drakfloppy_.c:172
+msgid "Remove a module"
+msgstr "Elimina un mòdul"
-#
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Show current interface configuration"
-msgstr "Mostra la configuració actual de la interfície"
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
+msgstr "Sortida"
+
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
+msgstr "Munta el disc"
-#: ../../standalone/printerdrake:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "Add Printer"
-msgstr "Afegeix impressora"
+msgid "Be sure a media is present for the device %s"
+msgstr "Assegureu-vos que hi ha un suport al dispositiu %s"
-#: ../../security/help.pm:1
+#: ../../standalone/drakfloppy_.c:341
#, 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."
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
-"L'argument indica si els clients estan autoritzar a connectar\n"
-"al servidor X des de la xarxa en el port tcp 6000 o no."
+"No hi ha cap suport al dispositiu %s o està protegit contra escriptura.\n"
+"Si us plau, inseriu-ne un."
-#: ../../help.pm:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "Development"
-msgstr "Desenvolupament"
+msgid "Unable to fork: %s"
+msgstr "No es pot bifurcar: %s"
-#: ../../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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakfloppy_.c:349
#, c-format
-msgid "Done"
-msgstr "Fet"
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"No es pot tancar l'mkbootdisk correctament: \n"
+" %s \n"
+" %s"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Web Server"
-msgstr "Servidor Web"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
+msgstr "Cerca les fonts instal·lades"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "Xile"
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
+msgstr "Desselecciona les fonts instal·lades"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tNo incloguis els fitxers de sistema\n"
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
+msgstr "analitza totes les fonts"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Els controladors per a la inkjet proporcionats per Lexmark només funcionen "
-"amb impressores locals, i no amb impressores en ordinadors remots o "
-"servidors d'impressió. Si us plau, connecteu la vostra impressora a un port "
-"local o configureu-la en l'ordinador on està connectada."
+#
+#: ../../standalone/drakfont_.c:242
+msgid "no fonts found"
+msgstr "no s'han trobat fonts"
-#: ../../printer/printerdrake.pm:1
-#, 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!"
-msgstr ""
-"El vostre dispositiu multifunció ha estat configurat automàticament per "
-"poder escanejar. Ara podeu escanejar amb \"scanimage\" (\"scanimage -d hp:%s"
-"\" per especificar l'escàner si n'hi ha més d'un) des de la línia d'ordres o "
-"amb les interfícies gràfiques \"xscanimage\" o \"xsane\". Si esteu "
-"utilitzant el GIMP, també podeu escanejar escollint el punt apropiat en el "
-"menú \"Fitxer\"/\"Adquireix\". Executeu \"man scanimage\" a la línia "
-"d'ordres per a més informació.\n"
-"\n"
-"No utilitzeu \"scannerdrake\" amb aquest dispositiu!"
+#
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+msgid "done"
+msgstr "fet"
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "(ja s'ha afegit %s)"
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
+msgstr "no s'ha pogut trobar cap font en les particions muntades"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation in progress"
-msgstr "Instal·lació del carregador de l'arrencada en curs"
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
+msgstr "Torna a seleccionar les fonts correctes"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
-msgstr ", utilitzant l'ordre %s"
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
+msgstr "no s'ha trobat cap font.\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Tecles d'Alternativa i de Majúscules simultàniament"
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
+msgstr "Cerca les fonts en la llista de les instal·lades"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
-msgstr "Senyaladors"
+#
+#: ../../standalone/drakfont_.c:359
+msgid "Fonts copy"
+msgstr "Còpia de fonts"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Users"
-msgstr "Afegeix/Suprimeix usuaris"
+#
+#: ../../standalone/drakfont_.c:363
+msgid "True Type fonts installation"
+msgstr "Instal·lació de les fonts True Type"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "L'adreça IP de l'ordinador/xarxa no hi és."
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
+msgstr "espereu si us plau durant ttmkfdir..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
-msgstr "setmanal"
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
+msgstr "Instal·lació de True Type feta"
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "Paràmetres"
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
+msgstr "Conversió de fonts"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "La IP de l'ordinador/xarxa no és correcta.\n"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
+msgstr "construcció de type1inst"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "Crea/Transfereix la còpia de seguretat de les claus per a SSH"
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
+msgstr "referenciat Ghostscript"
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr "Aquesta és la llista completa de països"
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
+msgstr "convesió de fonts ttf"
+
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
+msgstr "conversió de fonts pfm"
+
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
+msgstr "Suprimeix els fitxers temporals"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Pàgina de prova alternativa (A4)"
+#: ../../standalone/drakfont_.c:459
+msgid "Restart XFS"
+msgstr "Reinicia l'XFS"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
+msgstr "Suprimeix els fitxers de fonts"
+
+#
+#: ../../standalone/drakfont_.c:528
+msgid "xfs restart"
+msgstr "reinicialització de l'xfs"
+
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
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."
+"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 using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
msgstr ""
-"Si teniu tots els CD de la llista de sota, feu clic a 'D'acord'.\n"
-"Si no teniu cap d'aquests CD, feu clic a 'Cancel·la'.\n"
-"Si només falten alguns CD, desseleccioneu-los i feu clic a 'D'acord'."
+"Abans d'instal·lar cap font, assegureu-vos que teniu el dret a usar-les i "
+"instal·lar-les en el vostre sistema.\n"
+"\n"
+"Podeu instal·lar les fonts de la manera habitual. En casos estranys, fonts "
+"amb errors poden penjar el vostre servidor X."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
-msgstr "Espereu si us plau"
+#
+#: ../../standalone/drakfont_.c:621
+msgid "Fonts Importation"
+msgstr "Importació de fonts"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
+msgstr "Aconsegueix les fonts de Windows"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup user files"
-msgstr "Còpia de seguretat dels fitxers d'usuari"
+#: ../../standalone/drakfont_.c:658
+msgid "Uninstall Fonts"
+msgstr "Desinstal·la fonts"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "New"
-msgstr "Nou"
+#: ../../standalone/drakfont_.c:669
+msgid "Advanced Options"
+msgstr "Opcions avançades"
-#: ../../help.pm:1
-#, c-format
+#
+#: ../../standalone/drakfont_.c:677
+msgid "Font List"
+msgstr "Llista de fonts"
+
+#: ../../standalone/drakfont_.c:737
+#, fuzzy
msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only 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"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@mandrakesoft.com\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"
+" 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 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 ""
-"Aquesta és la decisió més important quant a la seguretat del vostre sistema\n"
-"GNU/Linux: heu d'introduir la contrasenya de l'usuari \"root\". El \"root\"\n"
-"és l'administrador del sistema i és l'únic autoritzat a fer "
-"actualitzacions,\n"
-"afegir usuaris, canviar la configuració del tot el sistema, etc. En poques\n"
-"paraules, el \"root\" ho pot fer tot! És per això que heu d'escollir una\n"
-"contrasenya que sigui dificil d'endevinar; el DrakX us avisarà si és massa\n"
-"fàcil. Com veieu, podeu optar per no introduir cap contrasenya, però us\n"
-"aconsellem vivament que no ho feu. El GNU/Linux és tan vulnerable als "
-"errors\n"
-"de l'operador com qualsevol altre sistema operatiu. Com que l'usuari \"root"
-"\"\n"
-"pot superar totes les limitacions i esborrar accidentalment totes les dades "
-"de\n"
-"qualsevol partició com a conseqüència d'accedir-hi sense precaucions, és "
-"molt\n"
-"important que sigui difícil esdevenir \"root\".\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"
-"La contrasenya ha de ser una mescla de caràcters alfanumèrics i, com a "
-"mínim,\n"
-"de 8 caràcters de longitud. No apunteu enlloc la contrasenya de \"root\" ja "
-"que\n"
-"és molt fàcil comprometre el sistema si ho feu.\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"
-"Tot i això, no feu la contrasenya massa llarga o complicada perquè heu de "
-"poder\n"
-"recordar-la!\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"
"\n"
-"La contrasenya no es mostrarà per pantalla quan la teclegeu. Per tant, "
-"haureu\n"
-"d'escriure-la dues vegades per reduir la probabilitat d'errors en "
-"l'escriptura.\n"
-"Si, malauradament, feu el mateix error dues vegades, haureu d'usar aquesta\n"
-"contrasenya ``incorrecta'' el primer cop que us connecteu.\n"
"\n"
-"Si voleu que aquest ordinador sigui controlat per un servidor "
-"d'autenticació, feu\n"
-"clic al botó \"%s\".\n"
+msgstr ""
+" Aquest programa és programari lliure; el podeu redistribuir i/o modificar\n"
+" sota els termes de la 'GNU General Public License' publicada per\n"
+" la Free Software Foundation; tant la versió 2 com (si voleu)\n"
+" qualsevol versió posterior.\n"
"\n"
-"Si la vostra xarxa usa els serveis d'autenticació LDAP, NIS o PDC Windows "
-"Domain,\n"
-"seleccioneu l'adient per a \"%s\" . Si no sabeu quin utilitzar, pregunteu-ho "
-"al\n"
-"vostre administrador de xarxa.\n"
+" Aquest programa és distribueix amb l'esperança que serà útil,\n"
+" però SENSE CAP GARANTIA; sense ni tant sols la garantia implícita de\n"
+" MERCANTIBILITAT o CAPACITAT DE REALITZAR UN DETERMINAT PROPÒSIT. Mireu la\n"
+" 'GNU General Public License' per a més detalls.\n"
"\n"
-"Si teniu problemes per recordar les contrasenyes, si l'ordinador mai no es "
-"connectarà\n"
-"a Internet o si confieu absolutament en tothom que utilitza l'ordinador, "
-"podeu triar\n"
-"tenir \"%s\"."
+" Hauríeu d'haver rebut una còpia de la 'GNU General Public License'\n"
+" amb el programa; si no és així, escriviu a la Free Software\n"
+" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
+
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#
+#: ../../standalone/drakfont_.c:862
+msgid "Choose the applications that will support the fonts:"
+msgstr "Escolliu les aplicacions que suportaran les fonts:"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
-msgstr ""
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
+msgstr "Ghostscript"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Ara és el moment de triar el nivell de seguretat desitjat per a la màquina.\n"
-"Com a norma general, el nivell de seguretat ha de ser més alt si la màquina\n"
-"conté dades importants, o si està connectada directament a Internet.\n"
-"Tanmateix, un nivell alt de seguretat sovint comporta una disminució de la\n"
-"facilitat d'ús. Consulteu el capítol \"msec\" del \"Manual de Referència\"\n"
-"per obtenir més informació sobre el significat dels nivells de seguretat.\n"
-"\n"
-"Si no sabeu quin escollir, deixeu l'opció per defecte."
+#
+#: ../../standalone/drakfont_.c:877
+msgid "StarOffice"
+msgstr "StarOffice"
#
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "Carrega des del disquet"
+#: ../../standalone/drakfont_.c:884
+msgid "Abiword"
+msgstr "Abiword"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "La impressora següent s'ha detectat automàticament."
+#
+#: ../../standalone/drakfont_.c:891
+msgid "Generic Printers"
+msgstr "Impressores genèriques"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Uses command %s"
-msgstr ", utilitzant l'ordre %s"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
+msgstr "Seleccioneu el fitxer o directori de fonts i feu clic a 'Afegeix'"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
-msgstr "Disquet d'arrencada"
+#
+#: ../../standalone/drakfont_.c:1005
+msgid "Install List"
+msgstr "Llista d'instal·lació"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "Noruec"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
+msgstr "feu clic aquí si ho teniu clar."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for new scanners ..."
-msgstr "S'estan cercant escàners nous..."
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
+msgstr "aquí si no."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Servidor World Wide Web Apache"
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
+msgstr "Desselecciona-ho tot"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "seguiemnt de la CPU (número de submodel (generació))"
+#
+#: ../../standalone/drakfont_.c:1116
+msgid "Selected All"
+msgstr "Selecciona-ho tot"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "select path to restore (instead of /)"
-msgstr "seleccioneu el camí al qual restaurar (en comptes de /)"
+#
+#: ../../standalone/drakfont_.c:1120
+msgid "Remove List"
+msgstr "Esborra la llista"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Configure bootsplash picture"
-msgstr "Configura la imatge de presentació de l'arrencada"
+#
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+msgid "Initials tests"
+msgstr "Comprovacions inicials"
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr "Geòrgia"
+#
+#: ../../standalone/drakfont_.c:1145
+msgid "Copy fonts on your system"
+msgstr "Copiar les fonts en el vostre sistema"
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "Xina"
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
+msgstr "Instal·la i converteix les Fonts"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr ""
-" (Assegureu-vos que totes les impressores estan connectades i engegades.)\n"
+#: ../../standalone/drakfont_.c:1153
+msgid "Post Install"
+msgstr "Post-instal·lació"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "S'estan llegint dades de les impressores instal·lades..."
+#
+#: ../../standalone/drakfont_.c:1178
+msgid "Remove fonts on your system"
+msgstr "Esborra fonts del sistema"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
-msgstr " Esborra'l ara"
+#
+#: ../../standalone/drakfont_.c:1182
+msgid "Post Uninstall"
+msgstr "Post-desinstal·lació"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "servidor"
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
+msgstr "Connexió a Internet compartida"
-#: ../../install_any.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Inseriu un disquet formatat amb FAT a la unitat %s"
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Només s'accepten nuclis de la sèrie 2.4."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "\"sí\" indica que el processador té un coprocessador aritmètic"
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr "La connexió a Internet compartida està habilitada"
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Espereu si us plau... s'està aplicant la configuració"
+#: ../../standalone/drakgw_.c:126
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+"La configuració de la connexió compartida a Internet ja s'ha dut a terme.\n"
+"Ara està habilitada.\n"
+"\n"
+"Què voleu fer?"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Benvingut al GRUB, el selector de sistema operatiu!"
+#: ../../standalone/drakgw_.c:130
+msgid "disable"
+msgstr "inhabilita"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "Grub"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
+msgstr "deixa-ho córrer"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
-msgstr "Controladors SCSI"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "reconfigure"
+msgstr "torna a configurar"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr " en servidor LPD \"%s\", impressora \"%s\""
+#: ../../standalone/drakgw_.c:133
+msgid "Disabling servers..."
+msgstr "S'estan inhabilitant els servidors..."
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Elecció d'un gestor de pantalla"
+#: ../../standalone/drakgw_.c:142
+msgid "Internet connection sharing is now disabled."
+msgstr "Ara, la compartició de la connexió a Internet està inhabilitada."
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Nom Zeroconf de l'ordinador"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
+msgstr "La connexió a Internet compartida està inhabilitada"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
+#: ../../standalone/drakgw_.c:150
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
+"La configuració de la connexió compartida a Internet ja s'ha dut a terme.\n"
+"Ara està inhabilitada.\n"
+"\n"
+"Què voleu fer?"
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "L'adreça IP ha d'estar en format 1.2.3.4"
-
-#
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Configura el sistema d'impressió CUPS"
+#: ../../standalone/drakgw_.c:154
+msgid "enable"
+msgstr "habilita"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "Equador"
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
+msgstr "S'estan habilitant els servidors..."
-#
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Add an item"
-msgstr "Afegeix un element"
+#: ../../standalone/drakgw_.c:166
+msgid "Internet connection sharing is now enabled."
+msgstr "Ara, la connexió compartida a Internet està habilitada."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Les impressores d'aquesta màquina són accessibles a altres ordinadors"
+#: ../../standalone/drakgw_.c:183
+msgid ""
+"You are about to configure your computer to share its Internet connection.\n"
+"With that feature, other computers on your local network will be able to use "
+"this computer's Internet connection.\n"
+"\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
+msgstr ""
+"Ara es configurarà l'ordinador per tal que comparteixi la connexió a "
+"Internet.\n"
+"Amb aquesta característica, altres ordinadors de la vostra xarxa local\n"
+"podran utilitzar la connexió a Internet d'aquest ordinador.\n"
+"\n"
+"Assegureu-vos d'haver configurat l'accés a Internet i a la xarxa local amb "
+"el drakconnect abans de continuar.\n"
+"Nota: per configurar una xarxa d'àrea local (LAN), us cal un adaptador de "
+"xarxa dedicat."
-#: ../../lang.pm:1
+#: ../../standalone/drakgw_.c:211
#, c-format
-msgid "China (Hong Kong)"
-msgstr "Xina (Hong Kong)"
+msgid "Interface %s (using module %s)"
+msgstr "Interfície %s (utilitzant el mòdul %s)"
-#: ../../standalone/drakautoinst:1
+#: ../../standalone/drakgw_.c:212
#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "No he trobat el fitxer d'imatge necessari `%s'."
+msgid "Interface %s"
+msgstr "Interfície %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"No s'ha detectat cap targeta de so. Proveu amb \"harddrake\" després de la "
-"instal·lació"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr "No teniu cap adaptador de xarxa al sistema!"
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:221
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
msgstr ""
-"El port introduït no és vàlid: %s.\n"
-"El format correcte és \"port/tcp\" o \"port/udp\", \n"
-"on el port es troba entre 1 i 65535."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome i Príncipe"
+"No s'ha detectat cap adaptador de xarxa ethernet al sistema. Si us plau, "
+"executeu l'eina de configuració de maquinari."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr "Interfície de la xarxa"
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../standalone/drakgw_.c:228
#, c-format
-msgid "Can't login using username %s (bad password?)"
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"%s\n"
+"\n"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
-"No es pot entrar amb el nom d'usuari %s (potser la contrasenya és "
-"incorrecta?)"
+"Només teniu un adaptador de xarxa configurat al sistema:\n"
+"\n"
+"%s\n"
+"\n"
+"Ara es configurarà la vostra xarxa d'àrea local amb aquest adaptador."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaidjanès (llatí)"
+#: ../../standalone/drakgw_.c:235
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+"Si us plau, escolliu l'adaptador de xarxa que es connectarà a la vostra "
+"xarxa d'àrea local."
#
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package not installed"
-msgstr "El paquet no està instal·lat"
+#: ../../standalone/drakgw_.c:261
+msgid "Network interface already configured"
+msgstr "La intefície de xarxa ja està configurada"
-#: ../../lang.pm:1
+#: ../../standalone/drakgw_.c:262
#, c-format
-msgid "American Samoa"
-msgstr "Samoa Americana"
+msgid ""
+"Warning, the network adapter (%s) is already configured.\n"
+"\n"
+"Do you want an automatic re-configuration?\n"
+"\n"
+"You can do it manually but you need to know what you're doing."
+msgstr ""
+"Avís: l'adaptador de xarxa (%s) ja està configurat.\n"
+"\n"
+"Voleu fer una reconfiguració automàtica?\n"
+"\n"
+"Ho podeu fer manualment però heu de saber què feu."
#
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Become a MandrakeExpert"
-msgstr "Esdeveniu un MandrakeExpert"
+#: ../../standalone/drakgw_.c:267
+msgid "Automatic reconfiguration"
+msgstr "Reconfiguració automàtica"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Protocol"
-msgstr "Protocol"
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
+msgstr ""
#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Copiar les fonts en el vostre sistema"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
-msgstr "Ajuda del Harddrake"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
+#: ../../standalone/drakgw_.c:268
+msgid "Show current interface configuration"
+msgstr "Mostra la configuració actual de la interfície"
#
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Configuració del Servidor de Terminal de Mandrake"
+#: ../../standalone/drakgw_.c:269
+#, fuzzy
+msgid "Current interface configuration"
+msgstr "Mostra la configuració actual de la interfície"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:270
#, c-format
msgid ""
+"Current configuration of `%s':\n"
"\n"
-" DrakBackup Report Details\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
+msgstr ""
+"Configuració actual de '%s':\n"
+"\n"
+"Xarxa: %s\n"
+"Adreça IP: %s\n"
+"Atribució IP: %s\n"
+"Controlador: %s"
+
+#: ../../standalone/drakgw_.c:283
+#, fuzzy
+msgid ""
+"I can keep your current configuration and assume you already set up a DHCP "
+"server; in that case please verify I correctly read the Network that you use "
+"for your local network; I will not reconfigure it and I will not touch your "
+"DHCP server configuration.\n"
"\n"
+"The default DNS entry is the Caching Nameserver configured on the firewall. "
+"You can replace that with your ISP DNS IP, for example.\n"
+"\t\t \n"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
"\n"
msgstr ""
+"Podeu conservar la configuració actual i assumir que ja heu definit un "
+"servidor DHCP. En aquest cas, verifiqueu que s'ha llegit correctament la "
+"xarxa de classe C que utilitzeu per a la vostra xarxa local. No es "
+"reconfigurarà ni es modificarà la configuració del servidor DHCP.\n"
"\n"
-" Detalls de l'Informe del DrakBackup\n"
+"L'entrada DNS per defecte és el servidor de noms amb memòria cau que s'ha "
+"configurat al tallafoc. Podeu substituir-lo, per exemple, per la IP del DNS "
+"del vostre proveïdor d'accés.\n"
"\n"
+"Alternativament, podeu reconfigurar la interfície i (re)configurar un "
+"servidor DHCP per a ús propi.\n"
"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
-msgstr "Restaura totes les còpies de seguretat"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
-msgstr " en port paral·lel #%s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
-msgstr ""
-"Defineix la llargada mínima de la contrasenya i el nombre mínim de xifres i "
-"de lletres en majúscules."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr "si és \"sí\", comprova els ports oberts"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Esborrar el suport pot trigar una estona."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "No podeu seleccionar/desseleccionar aquest paquet"
-
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "Advertència"
+#: ../../standalone/drakgw_.c:290
+msgid "Local Network adress"
+msgstr "Adreça de la xarxa local"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakgw_.c:294
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"
-"- Other Files:\n"
msgstr ""
+"Configuració del servidor DHCP.\n"
"\n"
-"- Altres fitxers:\n"
+"Aquí podreu seleccionar diverses opcions per a la configuració del servidor "
+"DHCP.\n"
+"Si no sabeu el significat d'una opció, deixeu-la com està.\n"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name"
-msgstr "Nom de l'ordinador remot"
+#: ../../standalone/drakgw_.c:300
+msgid "(This) DHCP Server IP"
+msgstr "IP d'aquest servidor DHCP"
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr "accés a programes X"
+#
+#: ../../standalone/drakgw_.c:301
+msgid "The DNS Server IP"
+msgstr "IP del Servidor DNS"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "S'està calculant la mida de la partició de Windows"
+#
+#: ../../standalone/drakgw_.c:302
+msgid "The internal domain name"
+msgstr "Nom intern de domini"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Refresca"
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
+msgstr "L'adreça inicial del rang del DHCP"
-#
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Italy"
-msgstr "Itàlia"
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
+msgstr "L'adreça final del rang del DHCP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
-msgstr "Illes Caiman"
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
+msgstr "Lísing per defecte (en segons)"
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "s'ha produït un error en desmuntar %s: %s"
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
+msgstr "Lísing màxim (en segons)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "Nom de la impressora"
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
+msgstr "Torna a configurar la interfície i el servidor DHCP"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
-msgstr "inhabilita"
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
+msgstr "La xarxa local no finalitza amb '.0', ho deixem córrer."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid "Do it!"
-msgstr "Fes-ho!"
+msgid "Potential LAN address conflict found in current config of %s!\n"
+msgstr ""
+"S'ha trobat un conflicte potencial d'adreça LAN en la configuració actual de "
+"%s!\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
-msgstr "%s no respon"
+#: ../../standalone/drakgw_.c:335
+msgid "Configuring..."
+msgstr "S'està configurant..."
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select model manually"
-msgstr "Selecciona el model manualment"
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+"S'estan configurant les seqüències, instal·lant el programari, iniciant els "
+"servidors..."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakgw_.c:372
#, c-format
-msgid "Format"
-msgstr "Formata"
+msgid "Problems installing package %s"
+msgstr "Hi ha hagut problemes en instal·lar el paquet %s"
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:505
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'"
+"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 ""
-"La manera més habitual de connectar amb ADSL és pppoe.\n"
-"Algunes connexions utilitzen pptp, unes poques utilitzen dhcp.\n"
-"Si no ho sabeu, escolliu 'utilitza pppoe'"
+"Ja està tot configurat.\n"
+"Ara podeu compartir la connexió a Internet amb altres ordinadors de la "
+"vostra xarxa d'àrea local utilitzant la configuració automàtica de xarxa "
+"(DHCP)."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
-msgstr "Diversos"
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
+msgstr "La configuració ja s'ha realitzat, però ara està inhabilitada."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
-msgstr "Zip"
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
+msgstr "La configuració ja s'ha realitzat i ara està habilitada."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
-msgstr "Tecla Alt esquerra"
+#: ../../standalone/drakgw_.c:525
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "No s'ha configurat mai cap connexió compartida a Internet."
-#
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Load setting"
-msgstr "paràmetre de càrrega"
+#: ../../standalone/drakgw_.c:531
+msgid "Internet connection sharing configuration"
+msgstr "Configuració de la compartició de la connexió a Internet"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:539
#, c-format
msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
"\n"
+"%s\n"
"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
+"Click on Configure to launch the setup wizard."
msgstr ""
+"Benvingut a la utilitat de compartició de la connexió a Internet!\n"
"\n"
+"%s\n"
"\n"
-"El Printerdrake no ha pogut determinar de quin model és la impressora %s. Si "
-"us plau, escolliu el model correcte de la llista."
+"Feu clic a 'Configura' per executar l'auxiliar de configuració."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Estaleix la impressora seleccionada com la predeterminada"
+#: ../../standalone/drakperm_.c:36
+msgid "group"
+msgstr "grup"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:36
+msgid "path"
+msgstr "camí"
+
+#: ../../standalone/drakperm_.c:36
+msgid "permissions"
+msgstr "permisos"
+
+#
+#: ../../standalone/drakperm_.c:36
+msgid "user"
+msgstr "usuari"
+
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
+msgstr "Puja"
+
+#: ../../standalone/drakperm_.c:44
+msgid "delete"
+msgstr "suprimeix"
+
+#: ../../standalone/drakperm_.c:45
+msgid "edit"
+msgstr "edita"
+
+#: ../../standalone/drakperm_.c:46
+msgid "Down"
+msgstr "Baixa"
+
+#: ../../standalone/drakperm_.c:47
+msgid "add a rule"
+msgstr "afegeix una regla"
+
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
+msgstr "seleccioneu el fitxer perm que voleu veure/editar"
+
+#: ../../standalone/drakperm_.c:51
msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+"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 ""
-"\n"
-"Marqueu les impressores que voleu transferir i feu clic a \n"
-"\"Transfereix\"."
+"El Drakperm s'usa per veure els fitxers que es faran servir per ajustar els "
+"permisos, propietaris i grups a través de l'msec.\n"
+"També podeu editar les vostres pròpies regles, que sobreescriuran les regles "
+"predeterminades."
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
+#
+#: ../../standalone/drakperm_.c:56
+msgid "Add a new rule at the end"
+msgstr "Afegeix una regla nova al final"
+
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
+msgstr "Edita la regla actual"
+
+#: ../../standalone/drakperm_.c:58
+msgid "Up selected rule one level"
+msgstr "Puja la regla actual un nivell"
+
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
+msgstr "Baixa la regla actual un nivell"
#
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
-msgstr "Albanès"
+#: ../../standalone/drakperm_.c:60
+msgid "Delete selected rule"
+msgstr "Elimina la regla seleccionada"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "Lituània"
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
+msgstr "navega"
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "Compacte"
+#: ../../standalone/drakperm_.c:231
+msgid "Current user"
+msgstr "Usuari actual"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Model detectat: %s %s"
+#: ../../standalone/drakperm_.c:236
+msgid "Permissions"
+msgstr "Permisos"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
-msgstr "MandrakeSoft us ha seleccionat el millor programari"
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
+msgstr "Camí"
-#
-#: ../../any.pm:1
-#, c-format
-msgid "Local files"
-msgstr "Fitxers locals"
+#: ../../standalone/drakperm_.c:238
+msgid "Property"
+msgstr "Propietat"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "potser"
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
+msgstr "sticky-bit"
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
-msgstr "Panamà"
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
+msgstr "Set-UID"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Can't open %s!"
-msgstr "No es pot obrir %s!"
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
+msgstr "Set-GID"
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:296
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?"
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
msgstr ""
-"Sembla que la vostra targeta gràfica té un connector TV-OUT.\n"
-"Pot configurar-se de manera que faci servir memòria d'imatge.\n"
-"\n"
-"A tal efecte, heu de connectar la targeta gràfica al televisor abans "
-"d'arrencar l'ordinador.\n"
-"Llavors, escolliu l'opció \"TVout\" en el carregador de l'arrencada\n"
-"\n"
-"Teniu aquesta característica?"
+"Usat per al directori:\n"
+" només el propietari del directori o del fitxer en aquest directori poden "
+"suprimir-lo"
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "Monitor"
+#: ../../standalone/drakperm_.c:297
+msgid "Use owner id for execution"
+msgstr "Usa l'identificador del propietari (UID) per a l'execució"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:298
+msgid "Use group id for execution"
+msgstr "Usa l'identificador del grup (GID) per a l'execució"
+
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
+msgstr "si ho marqueu, no es canviaran ni el propietari ni el grup"
+
+#: ../../standalone/drakperm_.c:304
+msgid "Path selection"
+msgstr "Selecció del camí"
+
+#
+#: ../../standalone/drakperm_.c:350
+msgid "user :"
+msgstr "usuari :"
+
+#: ../../standalone/drakperm_.c:352
+msgid "group :"
+msgstr "grup :"
+
+#: ../../standalone/draksound_.c:46
+msgid "No Sound Card detected!"
+msgstr "No s'ha detectat cap targeta de so!"
+
+#: ../../standalone/draksound_.c:47
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"
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Ara es configurarà la impressió cap a un usuari de Windows amb contrasenya. "
-"Degut a una fallada en l'arquitectura del programari del client Samba la "
-"contrasenya es mostra en text clar en la línia d'ordres que el client Samba "
-"utilitza per transmetre i imprimir un treball en el Servidor Windows. Per "
-"tant, és possible per qualsevol usuari d'aquell ordinador de veure la "
-"contrasenya en la pantalla simplement escrivint ordres tals com \"ps auxwww"
-"\".\n"
+"No s'ha detectat cap targeta de so en el vostre ordinador. Si us plau, "
+"verifiqueu que teniu correctament inserida una targeta de so compatible amb "
+"Linux.\n"
"\n"
-"Us recomanem que utilitzeu alguna de les següents alternatives (en tots el "
-"casos heu d'estar segur que només els ordinadors de la vostra xarxa local "
-"tenen accés al vostre Servidor Windows, per exemple utilitzant un "
-"tallafoc):\n"
"\n"
-"Utilitzeu un compte sense contrasenya en el Servidor Windows, tal com \"GUEST"
-"\" o un compte especial dedicat a la impressió. No tragueu la protecció de "
-"la contrasenya d'un compte personal o del compte de l'administrador.\n"
+"Podeu visitar la nostra base de dades de maquinari a:\n"
"\n"
-"Configureu el vostre Servidor Windows fent que la impressora estigui "
-"disponible a través del protocol LPD. Aleshores, definiu en el Printerdrake "
-"la impressió en aquest ordinador amb el tipus de connexió \"%s\".\n"
"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65.536 colors (16 bits)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/draksound_.c:54
msgid ""
"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-"\n"
-"- Desa-ho en el disc dur en el camí: %s\n"
-
-#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Esborra fonts del sistema"
-
-#: ../../standalone/drakgw:1
-#, 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."
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-"Avís: l'adaptador de xarxa (%s) ja està configurat.\n"
"\n"
-"Voleu fer una reconfiguració automàtica?\n"
"\n"
-"Ho podeu fer manualment però heu de saber què feu."
+"\n"
+"Nota: si teniu una targeta de so ISA PnP, haureu de fer servir el programa "
+"sndconfig. Només cal que teclegeu \"sndconfig\" a la consola."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "Interfície gràfica a l'inici"
+#: ../../standalone/draksplash_.c:21
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr ""
+"el paquet 'ImageMagick' és necessari per a un correcte funcionament.\n"
+"Feu clic a \"D'acord\" per intal·lar-lo o a \"Cancel·la\" per sortir"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
-msgstr " adsl"
+#: ../../standalone/draksplash_.c:67
+msgid "first step creation"
+msgstr "creació del primer pas"
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "No hi ha prou particions per al nivell RAID %d\n"
+#: ../../standalone/draksplash_.c:70
+msgid "final resolution"
+msgstr "resolució definitiva"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "format dels disquets que es poden utilitzar en la unitat"
+#
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+msgid "choose image file"
+msgstr "trieu un fitxer d'imatge"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr ""
+#: ../../standalone/draksplash_.c:72
+msgid "Theme name"
+msgstr "Nom del tema"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: true"
-msgstr "configuració local: cert"
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
+msgstr "Navega"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
+msgid "Configure bootsplash picture"
+msgstr "Configura la imatge de presentació de l'arrencada"
+
+#: ../../standalone/draksplash_.c:90
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."
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
-"Les impressores següents estan configurades. Feu doble clic en una "
-"impressora per modificar-ne els paràmetres, per fer-la la impressora per "
-"defecte o per veure la informació de la impressora."
+"coordenada x de la caixa de text\n"
+"en nombre de caràcters"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connected"
-msgstr "Connectat"
+#: ../../standalone/draksplash_.c:91
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr ""
+"coordenada y de la caixa de text\n"
+"en nombre de caràcters"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
-msgstr "Macedoni"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
+msgstr "amplada del text"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "Mali"
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
+msgstr "alçària de la caixa de text"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
-msgstr "Ponts i controladors del sistema"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
+"coordenada x de la cantonada superior\n"
+"esquerra de la barra de progrés"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "/Fitxer/De_sa"
+#: ../../standalone/draksplash_.c:95
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
+"coordenada y de la cantonada superior\n"
+"esquerra de la barra de progrés"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "No details"
-msgstr "Sense detalls"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
+msgstr "l'amplada de la barra de progrés"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "molt bonic"
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
+msgstr "l'alçària de la barra de progrés"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
+msgstr "el color de la barra de progrés"
+
+#: ../../standalone/draksplash_.c:113
msgid "Preview"
msgstr "Vista prèvia"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Remote Control"
-msgstr "Control Remot"
+#: ../../standalone/draksplash_.c:115
+msgid "Save theme"
+msgstr "Desa el tema"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select media for backup..."
-msgstr "Si us plau seleccioneu el suport per a la còpia..."
+#: ../../standalone/draksplash_.c:116
+msgid "Choose color"
+msgstr "Escolliu un color"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
-msgstr "Adreça de correu electrònic incorrecta"
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
+msgstr "Mostra el logotip a la consola"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Servidor XFree86: %s\n"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
+msgstr "Fes que, per defecte, no apareguin els missatges del nucli"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, c-format
-msgid "Allow Thin Clients"
-msgstr "Permet clients prims"
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
+"Aquest tema encara no té cap pantalla de presentació de l'arrencada en %s!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgià (disposició \"russa\")"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
+msgstr "s'està desant el tema Bootsplash..."
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_Opcions"
+#
+#: ../../standalone/draksplash_.c:428
+msgid "ProgressBar color selection"
+msgstr "Selecció del color de la barra de progrés"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Your printer model"
-msgstr "El model de la vostra impressora"
+#: ../../standalone/draksplash_.c:449
+msgid "You must choose an image file first!"
+msgstr "Abans heu de triar un fitxer d'imatge!"
-#: ../../any.pm:1
+#
+#: ../../standalone/draksplash_.c:458
+msgid "Generating preview ..."
+msgstr "S'està generant la vista prèvia..."
+
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Vista prèvia del BootSplash %s (%s)"
+
+#: ../../standalone/drakxtv_.c:46
msgid ""
+"XawTV isn't installed!\n"
"\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)."
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
+"No teniu instal·lat el XawTV!\n"
"\n"
"\n"
-"(COMPTE! Esteu utilitzant XFS per la vostra partició arrel,\n"
-"la creació d'un disquet d'arrencada amb un de 1.44 MB molt probablement "
-"fallarà,\n"
-"perquè XFS necessita una unitat molt gran)."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"Si teniu una targeta de TV però el DrakX no l'ha detectada (no hi ha el "
+"mòdul\n"
+"bttv o el saa7134 a \"/etc/modules\") o no heu instal·lat xawtv,\n"
+"si us plau envieu els resultats de \"lspcidrake -v -f\"\n"
+"a \"install\\@mandrakesoft.com\" amb l'assumpte \"undetected TV card\".\n"
"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
"\n"
-"- Suprimeix el arxius tar del disc dur en acabar.\n"
+"El podeu instal·lar teclejant \"urpmi xawtv\" com a root, en la consola."
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
-msgstr ""
-"No s'ha trobat cap imatge en CD o DVD; si us plau, copieu els programes "
-"d'instal·lació i els fitxers rpm."
+#: ../../standalone/drakxtv_.c:63
+msgid "Canada (cable)"
+msgstr "Canadà (cable)"
-#
-#: ../advertising/04-configuration.pl:1
-#, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "Eina de configuració multiús de Mandrake"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
+msgstr "EUA (difusió)"
-#
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Save"
-msgstr "Desa"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
+msgstr "EUA (cable)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
-msgstr "No es permet l'ús de %s"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
+msgstr "EUA (cable-hrc)"
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr "Carrega els controladors per a dispositius USB."
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
+msgstr "Xina (difusió)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Disk"
-msgstr "Disc"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
+msgstr "Japó (difusió)"
-#
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Entreu un dispositiu URI d'impressora"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
+msgstr "Japó (cable)"
-#: ../advertising/01-thanks.pl:1
-#, 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."
-msgstr ""
-"L'èxit de MandrakeSoft es basa en els principis del Codi Font Obert. El "
-"vostre nou sistema operatiu és el resultat del treball en col·laboració de "
-"la Comunitat Linux de tot el món"
+#
+#: ../../standalone/drakxtv_.c:65
+msgid "East Europe"
+msgstr "Europa de l'Est"
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "Israel"
+#
+#: ../../standalone/drakxtv_.c:65
+msgid "France [SECAM]"
+msgstr "França [SECAM]"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "Guaiana Francesa"
+#
+#: ../../standalone/drakxtv_.c:65
+msgid "Ireland"
+msgstr "Irlanda"
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "default:LTR"
+#: ../../standalone/drakxtv_.c:65
+msgid "West Europe"
+msgstr "Europa de l'Oest"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
-msgstr "S'ha d'introduir una línia d'ordres!"
+#: ../../standalone/drakxtv_.c:66
+msgid "Australia"
+msgstr "Austràlia"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
-msgstr "Seleccioneu els usuaris manualment"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
+msgstr "Nova Zelanda"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Configuració de la transferència de la impressió"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
+msgstr "Sud-àfrica"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Voleu habilitar la impressió a les impressores anteriors?\n"
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
+msgstr "Argentina"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of suid root files"
-msgstr "Comprova addicions/eliminacions de fitxers suid root."
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
+msgstr "TV per cable australiana Optus"
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:102
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."
+"Please,\n"
+"type in your tv norm and country"
msgstr ""
-"Per tal que funcioni en un W2K PDC, segurament haureu de fer que "
-"l'administrador executi C:\\>net localgroup \"Accés compatible amb versions "
-"anteriors a Windows 2000\" everyone /add\" i que reiniciï el servidor.\n"
-"També necessitareu el nom d'usuari i la contrasenya d'un administrador del "
-"domini per poder connectar la màquina al domini de Windows(TM).\n"
-"Si la xarxa encara no està habilitada, el DrakX provarà de connectar-se al "
-"domini després del pas de configuració de la xarxa.\n"
-"Si aquesta configuració fallés per algun motiu i l'autenticació no "
-"funcionés, executeu 'smbpasswd -j DOMINI -U USUARI%%CONTRASENYA' passant com "
-"a paràmetres el domini Windows en qüestió i el nom d'usuari i la contrasenya "
-"de l'administrador, després que arrenqui el sistema.\n"
-"L'ordre 'wbinfo -t' comprovarà si els secrets d'autenticació són bons."
+"Si us plau,\n"
+"entreu la vostra normativa de tv i el país"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Port %s)"
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
+msgstr "Normativa de TV:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Empra la connexió de xarxa per fer la còpia de seguretat"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
+msgstr "Àrea:"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Kernel version"
-msgstr "Versió del nucli"
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
+msgstr "La cerca de canals de TV està en progrés..."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
+msgstr "S'estan cercant canals de TV"
+
+#
+#: ../../standalone/drakxtv_.c:120
+msgid "There was an error while scanning for TV channels"
+msgstr "S'ha produït un error en cercar els canals de TV"
+
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
+msgstr "No teniu instal·lat XawTV!"
+
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
+msgstr "Tingueu un bon dia!"
+
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Ara, podeu executar xawtv (sota X Window!) !\n"
+
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
+msgstr "No s'ha detectat cap targeta de TV!"
+
+#: ../../standalone/drakxtv_.c:148
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"
+"No TV Card has been detected on your machine. Please verify that a Linux-"
+"supported Video/TV Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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."
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Ha arribat el moment d'indicar els programes que voleu instal•lar en el\n"
-"sistema. El Linux Mandrake té milers de paquets, i per facilitar-ne la\n"
-"gestió s'han distribuït en grups d'aplicacions similars.\n"
-"\n"
-"Els paquets s'agrupen segons l'ús que vulgueu donar a l'ordinador. El\n"
-"Linux Mandrake disposa de quatre instal•lacions predefinides; hi podeu\n"
-"pensar com en contenidors amb diversos paquets. Podeu mesclar i fer\n"
-"coincidir aplicacions de grups diversos, de manera que una instal•lació\n"
-"d'``Estació de treball'' pot perfectament tenir uinstal•lades aplicacions\n"
-"del grup ``Desenvolupament'' \n"
-" * \"%s\": si voleu utilitzar l'ordinador com a estació de treball,\n"
-"seleccioneu una o més de les aplicacions d'aquest grup.\n"
-"\n"
-" * \"%s\": si penseu utilitzar-lo per programar, escolliu els paquets\n"
-"adients d'aquest grup.\n"
-"\n"
-" * \"%s\": si l'ordinador s'ha d'utilitzar com a servidor, seleccioneu\n"
-"quins dels serveis més habituals voleu instal•lar\n"
-"\n"
-" * \"%s\": aquí és on escollireu quin és el vostre entorn gràfic\n"
-"preferit. Heu de seleccionar-ne un com a mínim si voleu tenir una\n"
-"interfície gràfica.\n"
-"\n"
-"Si moveu el cursor per sobre d'un nom de grup veureu una breu explicació\n"
-"d'aquest grup. Si desseleccioneu tots els grups quan estigueu fent una "
-"instal•lació\n"
-"normal (i no una actualització), se us presentarà un diàleg \n"
-"proposant-vos diferents opcions per a una instal•lació mínima:\n"
-"\n"
-" * \"%s\": instal•la els mínims paquets necessaris per tenir un entorn "
-"gràfic\n"
-"funcional\n"
-"\n"
-" * \"%s\": instal•la el sistema base i les utilitats bàsiques amb la seva\n"
-"documentació. Aquesta instal•lació és adequada per configurar un servidor;\n"
-"\n"
-" * \"%s\": instal•la el nombre mínim de paquets necessari per aconseguir un\n"
-"sistema Linux operatiu, només amb una interfície de línia d'ordres. Aquesta\n"
-"instal•lació ocupa un total de 65 MB.\n"
-"\n"
-"Podeu marcar la casella \"%s\", que és útil si esteu familiaritzat amb els\n"
-"diversos paquets o si voleu tenir un control total sobre el que "
-"s'instal•larà.\n"
-"\n"
-"Si heu començat la instal•lació en el mode \"%s\", podeu desseleccionar \n"
-"tots els grups si voleu evitar que s'instal•li cap paquet nou. Això és útil \n"
-"per reparar o actualitzar un sistema existent. * \"Desenvolupament\": si la "
-"vostra màquina s'ha d'utilitzar per programar,\n"
-"escolliu el(s) grup(s) desitjat(s);\n"
-"\n"
-" * \"Servidor\": si l'ordinador s'ha d'utilitzar com a servidor, serà "
-"possible\n"
-"de seleccionar els serveis més habituals que voleu instal·lar en la vostra\n"
-"màquina;\n"
-"\n"
-" * \"Entorn Gràfic\": finalment, aquí és on escollireu quin és el vostre\n"
-"entorn gràfic preferit. Heu de seleccionar com a mínim un entorn gràfic si\n"
-"voleu tenir una estació de treball gràfica.\n"
-"\n"
-"Moure el cursor per sobre d'un nom de grup farà que es mostri una breu "
-"explicació\n"
-"d'aquest grup. Si desmarqueu tots els grups quan estigueu fent una "
-"instal·lació\n"
-"des de zero (en contraposició a una actualització), se us presentarà un "
-"diàleg \n"
-"proposant-vos diferents opcions per a una instal·lació mínima:\n"
+"No s'ha detectat cap targeta de TV en el vostre ordinador. Si us plau "
+"verifiqueu que teniu correctament inserida una targeta de Vídeo/TV "
+"compatible amb Linux.\n"
"\n"
-" * \"Amb X\": instal·lar els mínims paquets necessaris per tenir un entorn "
-"gràfic\n"
-"funcional;\n"
"\n"
-" * \"Amb Documentació Bàsica\": instal·lar el sistema base i les utilitats "
-"bàsiques\n"
-"amb la seva documentació. Aquesta instal·lació és adequada per configurar un "
-"sistema\n"
-"servidor;\n"
-"\n"
-" * \"Instal·lació Realment Mínima\": s'instal·larà el mínim necessari per "
-"tenir un\n"
-"sistema Linux operatiu, només amb línia d'ordres. Aquesta instal·lació "
-"ocupa\n"
-"uns 65MB.\n"
+"Podeu visitar la nostra base de dades de maquinari a:\n"
"\n"
-"Podeu marcar la casella de \"Selecció individual de paquets\", que és força "
-"útil si\n"
-"coneixeu els diversos paquets que s'ofereixen per instal·lar o si voleu "
-"tenir\n"
-"control total sobre el que s'instal·larà.\n"
"\n"
-"Si heu començat la instal·lació en el mode \"Actualització\", podeu "
-"desmarcar \n"
-"tots els grups si voleu evitar que s'instal·li cap paquet nou. Això és "
-"útil \n"
-"per reparar o actualitzar un sistema existent."
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "Accepta l'usuari"
-
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
-msgstr "Servidor"
+"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
-msgstr "Tecla Maj Esquerra"
+#
+#: ../../standalone/harddrake2_.c:17
+msgid "Alternative drivers"
+msgstr "Controladors alternatius"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " local network"
-msgstr " xarxa local"
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
+msgstr "la llista de controladors alternatius per a aquesta targeta de so"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "Elecció incorrecta, torneu-ho a intentar\n"
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
+msgstr "Bus"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
+#: ../../standalone/harddrake2_.c:21
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
+"aquest és el bus físic al qual el dispositiu està connectat (p.ex.: PCI, "
+"USB...)"
-#
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search new servers"
-msgstr "Cerca nous servidors"
+#: ../../standalone/harddrake2_.c:22
+msgid "Channel"
+msgstr "Canal"
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
-msgstr "Illa Heard i Illes McDonald"
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
+msgstr "Canal EIDE/SCSI"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
-msgstr "No hi ha cap controlador alternatiu"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "Canvia al mode expert"
+#: ../../standalone/harddrake2_.c:23
+msgid ""
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
+msgstr ""
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
-msgstr "(en aquest ordinador)"
+#: ../../standalone/harddrake2_.c:26
+msgid "Bus identification"
+msgstr "Identificació del bus"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "L'adreça de la passarel·la ha d'estar en format 1.2.3.4"
+#: ../../standalone/harddrake2_.c:27
+msgid ""
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
+msgstr ""
+"- Dispositius PCI i USB: es llisten els identificadors PCI/USB del venedor, "
+"del dispositiu, del subvenedor i del subdispositiu"
-#: ../../network/modem.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
+msgstr "Ubicació en el bus"
+
+#: ../../standalone/harddrake2_.c:30
msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
+"- 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 ""
-"S'ha detectat un winmodem basat en\"%s\", voleu instal·lar el programari "
-"necessari?"
+"- dispositius PCI: dóna la ranura PCI, el dispositiu i la funció d'aquesta "
+"targeta\n"
+"- dispositius EIDE: diu si el dispositiu ésta configurat com a mestre o com "
+"a esclau\n"
+"- dispositius SCSI: dóna el bus SCSI i els identificadors SCSI del dispositiu"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "S'estan cercant els paquets ja instal·lats..."
+#: ../../standalone/harddrake2_.c:33
+#, fuzzy
+msgid "Cache size"
+msgstr "mida del fragment"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Utilitza còpia de seguretat diferencials"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Driver"
-msgstr "Controlador"
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
msgstr ""
-"De vegades, el Linuxconf determinarà que s'han de fer algunes tasques\n"
-"en iniciar l'ordinador per mantenir la configuració del sistema."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVD-R device"
-msgstr "Dispositiu DVDR"
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
+msgstr ""
+
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
+msgstr ""
#
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Impressora en servidor lpd remot"
+#: ../../standalone/harddrake2_.c:36
+#, fuzzy
+msgid "Cpuid level"
+msgstr "Nivell de seguretat"
-#: ../../standalone/drakfont:1
-#, 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."
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
msgstr ""
-"Abans d'instal·lar cap font, assegureu-vos que teniu el dret a usar-les i "
-"instal·lar-les en el vostre sistema.\n"
-"\n"
-"Podeu instal·lar les fonts de la manera habitual. En casos estranys, fonts "
-"amb errors poden penjar el vostre servidor X."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
+msgstr ""
+
+#: ../../standalone/harddrake2_.c:37
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."
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
msgstr ""
-"El Yaboot és un carregador d'arrencada per a maquinari Macintosh NewWorld.\n"
-"Pot arrencar tant el GNU/Linux com el MacOS o el MacOSX. Normalment, el\n"
-"MacOS i el MacOSX es detecten i instal•len correctament en el menú del\n"
-"carregador d'arrencada; si no és així, però, en aquesta pantalla podeu\n"
-"afegir una entrada manualment. Aneu amb compte de triar els paràmetres\n"
-"correctes.\n"
-"\n"
-"Les opcions principals del Yaboot són:\n"
-"\n"
-" * Missatge d'inicialització: un senzill missatge de text que apareix abans\n"
-"de l'indicador d'arrencada.\n"
-"\n"
-" * Dispositiu d'arrencada: indica on voleu situar la informació necessària\n"
-"per arrencar el GNU/Linux. Normalment, haureu configurat abans una partició\n"
-"bootstrap que contindrà aquesta informació.\n"
-"\n"
-" * Demora de l'Open Firmware: a diferència del LILO, amb el Yaboot hi ha\n"
-"dues demores disponibles. La primera d'elles es mesura en segons i, en "
-"aquest\n"
-"punt, podeu triar entre CD, arrencada OF, MacOS o Linux.\n"
-"\n"
-" * Temps màxim d'arrencada del nucli: aquest temps màxim és similar a la\n"
-"demora d'arrencada del LILO. Després de seleccionar el Linux tindreu aquest\n"
-"temps en increments de 0,1 segons abans que se seleccioni la descripció per\n"
-"defecte del nucli.\n"
-"\n"
-" * Habilita l'arrencada des de CD: si activeu aquesta opció podreu triar\n"
-"``C'' per a CD al primer indicador de l'arrencada.\n"
-"\n"
-" * Habilita l'arrencada OF: si activeu aquesta opció podreu triar ``N`` per\n"
-"a Open Firmware al primer indicador de l'arrencada.\n"
-"\n"
-" * SO per defecte: podeu seleccionar amb quin SO, per defecte, s'arrencarà\n"
-"quan la demora de l'Open Firmware venci."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
-msgstr "Dimecres"
+#: ../../standalone/harddrake2_.c:38
+#, fuzzy
+msgid "This field describes the device"
+msgstr "aquest camp descriu el dispositiu"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "Alemanya"
+#: ../../standalone/harddrake2_.c:39
+msgid "Old device file"
+msgstr "Fitxer de dispositiu antic"
-#
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
-msgstr "Àustria"
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
+msgstr "nom antic de dispositiu estàtic, usat en el paquet de desenvolupament"
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "Cap ratolí"
+#: ../../standalone/harddrake2_.c:41
+msgid "New devfs device"
+msgstr "Nou dispositiu devfs"
-#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "Escolliu la mida del CD/DVD (en MB)"
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr "nou nom de dispositiu dinàmic generat pel devfs intern del nucli"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check permissions of files in the users' home"
-msgstr "Comprova els permisos dels fitxers al home dels usuaris"
+#: ../../standalone/harddrake2_.c:43
+msgid "Module"
+msgstr "Mòdul"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr "el mòdul del nucli GNU/Linux que gestiona aquest dispositiu"
+
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
msgstr ""
-"Executeu \"sndconfig\" després de la instal·lació per configurar la targeta "
-"de so"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "Redueix l'arbre"
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
+msgstr ""
-#
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Configuració de la instal·lació automàtica"
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "Configura la xarxa"
+#: ../../standalone/harddrake2_.c:46
+msgid ""
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "On voleu instal·lar el carregador de l'arrencada?"
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
+msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
msgstr ""
-"L'idioma preferit que trieu afectarà a l'idioma de la documentació,\n"
-"l'instal•lador i a tot el sistema en general. Seleccioneu primer la\n"
-"regió on us trobeu i després l'idioma que parleu.\n"
-"\n"
-"Si feu clic al botó \"%s\" podreu seleccionar altres idiomes que vulgueu\n"
-"instal•lar a la vostra estació de treball. S'instal•laran els fitxers "
-"d'idioma\n"
-"especifics de la documentació i de les aplicacions. Per exemple, si heu de "
-"tenir\n"
-"usuaris espanyols a l'ordinador, podeu triar l'anglès com a idioma per "
-"defecte\n"
-"a la vista d'arbre i marcar \"%s\" a la secció Avançat.\n"
-"\n"
-"Podeu triar diversos idiomes addicionals, i fins i tot instal•lar-los tots "
-"activant\n"
-"la casella \"%s\". Si habiliteu un idioma esteu habilitant les traduccions, "
-"els tipus\n"
-"de lletra, els verificadors ortogràfics, etc. d'aquest idioma. A més, el "
-"quadre de\n"
-"verificació \"%s\" us permet obligar al sistema a utilitzar Unicode (UTF-8); "
-"això,\n"
-"tanmateix, és una funció experimental. Si seleccioneu diferents idiomes que "
-"requereixin\n"
-"codificacions diferents, el Unicode s'instal•larà igualment.\n"
-"Per passar d'un dels idiomes a un altre, podeu executar com a \"root\" "
-"l'ordre\n"
-"\"/usr/sbin/localedrake\" per canviar l'idioma de tot el sistema. Si "
-"l'executeu\n"
-"com a usuari normal, només es canviarà l'idioma d'aquest usuari concret."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr "El %s no és compatible amb aquesta versió de Mandrake Linux."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "tape"
-msgstr "cinta"
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr "Client DHCP"
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Llista els usuaris en el sistema en gestors de pantalla (kdm i gdm)"
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (sèrie, tipus C7 antic)"
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
+msgstr ""
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Ha fallat la restauració des del fitxer %s: %s"
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:53
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"
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-"No es pot llegir la taula de particions del dispositiu %s, està massa "
-"malmesa :(\n"
-"Es pot mirar de continuar, suprimint les particions incorrectes (es perdran "
-"TOTES LES DADES!).\n"
-"L'altra solució és impedir al DrakX que modifiqui la taula de particions.\n"
-"(l'error és %s)\n"
-"\n"
-"Esteu d'acord en perdre totes les particions?\n"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Find Package"
-msgstr "Cerca el paquet"
+#: ../../standalone/harddrake2_.c:55
+#, fuzzy
+msgid "Floppy format"
+msgstr "Formata"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Esteu segur que voleu habilitar la impressió en aquesta màquina?\n"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "New devfs device"
-msgstr "Nou dispositiu devfs"
+#: ../../standalone/harddrake2_.c:56
+#, fuzzy
+msgid "Level"
+msgstr "nivell"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
-msgstr "S'ha produït un error: no s'ha pogut engendrar %s."
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Boot Style Configuration"
-msgstr "Configuració del tipus d'arrencada"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
+msgstr "Tipus de mitjà"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Sincronització automàtica de la hora"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
+msgstr "tipus de dispositiu de maquinari"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "No s'han trobat els fitxers de còpia de seguretat a %s"
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+msgid "Model"
+msgstr "Model"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "Armeni (fonètic)"
+#: ../../standalone/harddrake2_.c:58
+msgid "hard disk model"
+msgstr "model de disc dur"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Card model:"
-msgstr "Model de la targeta:"
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
-msgstr "Client prim"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Model name"
+msgstr "Nom del mòdul"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
-msgstr "Gràcies per triar Mandrake Linux 9.2"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Official vendor name of the cpu"
+msgstr "el nom del venedor del dispositiu"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Start Server"
-msgstr "Inicia el servidor"
+#: ../../standalone/harddrake2_.c:61
+msgid "Number of buttons"
+msgstr "Nombre de botons"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
+#: ../../standalone/harddrake2_.c:62
+#, fuzzy
+msgid "Name"
+msgstr "Nom: "
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "All remote machines"
-msgstr "Totes les màquines remotes"
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "network printer port"
+msgstr ", impressora de xarxa \"%s\", port %s"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Install themes"
-msgstr "Instal·la els temes"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
-msgstr "Espanyol"
+#: ../../standalone/harddrake2_.c:64
+#, fuzzy
+msgid "the number of the processor"
+msgstr "el color de la barra de progrés"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "S'està preparant la instal·lació"
+#
+#: ../../standalone/harddrake2_.c:65
+#, fuzzy
+msgid "Model stepping"
+msgstr "paràmetre de càrrega"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Edita l'ordinador/xarxa seleccionada"
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add User -->"
-msgstr "Afegeix un usuari -->"
+#: ../../standalone/harddrake2_.c:66
+#, fuzzy
+msgid "The type of bus on which the mouse is connected"
+msgstr "Si us plau, seleccioneu el port sèrie a què està connectat el ratolí."
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "Nauru"
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
+msgstr "el nom del venedor del dispositiu"
+
+#: ../../standalone/harddrake2_.c:68
+#, fuzzy
+msgid "the vendor name of the processor"
+msgstr "el nom del venedor del dispositiu"
+
+#: ../../standalone/harddrake2_.c:82
+msgid "/_Quit"
+msgstr "/_Surt"
#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Instal·lació de les fonts True Type"
+#: ../../standalone/harddrake2_.c:83
+#, fuzzy
+msgid "/Autodetect _printers"
+msgstr "Detectada automàticament"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr ""
-"Detecta automàticament les impressores connectades directament a la xarxa "
-"local"
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
+msgstr "/_Opcions"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN configuration"
-msgstr "Configuració de la LAN"
+#
+#: ../../standalone/harddrake2_.c:85
+#, fuzzy
+msgid "/Autodetect _modems"
+msgstr "Detectada automàticament"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "hard disk model"
-msgstr "model de disc dur"
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
+msgstr "/_Ajuda"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/harddrake2_.c:89
+msgid "/_Help..."
+msgstr "/_Ajuda..."
+
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
+msgstr "Ajuda del Harddrake"
+
+#: ../../standalone/harddrake2_.c:93
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"
+"Description of the fields:\n"
"\n"
-" \tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
msgstr ""
-" - Manté /etc/exports:\n"
-" \t\tEl Clusternfs permet l'exportació del sistema de fitxers root a "
-"clients sense disc. El drakTermServ\n"
-" \t\tconfigura l'entrada correcta per permetre un accés anònim al "
-"sistema de fitxers root des de\n"
-" \t\tclients sense disc.\n"
+"Descripció dels camps:\n"
"\n"
-" \t\tUna entrada d'exportació típica per al clusternfs és:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tsent SUBNET/MASK definida per la vostra xarxa."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "No podeu utilitzar un volum lògic LVM per al punt de muntatge %s"
+#: ../../standalone/harddrake2_.c:96
+msgid ""
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "Aconsegueix les fonts de Windows"
+#
+#: ../../standalone/harddrake2_.c:96
+#, fuzzy
+msgid "Select a device !"
+msgstr "Seleccioneu un escàner"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
+msgstr "/_Informeu d'un error"
-#: ../../standalone/drakclock:1
-#, c-format
+#: ../../standalone/harddrake2_.c:102
+msgid "/_About..."
+msgstr "_Quant a..."
+
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
+msgstr "Quant al Harddrake"
+
+#: ../../standalone/harddrake2_.c:105
msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
msgstr ""
+"Aquest és el HardDrake, l'eina de configuració de maquinari de Mandrake.\n"
+"Versió:"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "Iranià"
+#: ../../standalone/harddrake2_.c:106
+msgid "Author:"
+msgstr "Autor:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
-msgstr "Croàcia"
+#: ../../standalone/harddrake2_.c:113
+msgid "Detection in progress"
+msgstr "Detecció en procés"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "Passarel·la:"
+#: ../../standalone/harddrake2_.c:119
+msgid "Harddrake2 version "
+msgstr "Versió del Harddrake2 "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add server"
-msgstr "Afegeix un servidor"
+#: ../../standalone/harddrake2_.c:126
+msgid "Detected hardware"
+msgstr "S'ha detectat el següent maquinari"
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name"
-msgstr "Nom de la impressora remota"
+#: ../../standalone/harddrake2_.c:129
+msgid "Information"
+msgstr "Informació"
+
+#: ../../standalone/harddrake2_.c:131
+msgid "Configure module"
+msgstr "Configura el mòdul"
+
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
+msgstr "Executa l'eina de configuració"
-#: ../advertising/10-security.pl:1
+#: ../../standalone/harddrake2_.c:143
#, c-format
+msgid "Running \"%s\" ..."
+msgstr "S'està executant \"%s\"..."
+
+#: ../../standalone/harddrake2_.c:159
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."
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-"MandrakeSoft ha dissenyat eines exclusives per crear la versió de Linux més "
-"segura que ha existit mai: el Draksec, una eina de gestió de la seguretat i "
-"un potent tallafocs formen un equip per reduir enormement els riscos de "
-"hacking."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "Dispositiu: "
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
+msgstr "primari"
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
+#: ../../standalone/harddrake2_.c:231
+msgid "secondary"
+msgstr "secundari"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "Acord de llicència"
+#
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect modems"
+msgstr "Detectada automàticament"
#
-#: ../../standalone/draksec:1
-#, c-format
-msgid "System Options"
-msgstr "Opcions de sistema"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect printers"
+msgstr "Detectada automàticament"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Please choose the desired security level"
-msgstr "Escolliu el nivell de seguretat desitjat"
+#: ../../standalone/harddrake2_.c:261
+#, fuzzy
+msgid "/Options"
+msgstr "/_Opcions"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "Aquest ordinador ja és a la llista, no es pot tornar a afegir.\n"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "Si us plau, seleccioneu la disposició del vostre teclat."
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", USB printer"
-msgstr ", impressora USB"
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr "Voleu que la tecla Enrere efectuï un Suprimeix en la consola?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-"No es pot tancar l'mkbootdisk correctament: \n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+#: ../../standalone/livedrake_.c:18
+msgid "Change Cd-Rom"
+msgstr "Canvieu el CD-ROM"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/livedrake_.c:19
msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
+"Si us plau, inseriu el CD-ROM d'instal·lació a la unitat i premeu "
+"'D'acord'.\n"
+"Si no el teniu, premeu 'Cancel·la' per evitar l'actualització en directe."
-#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Escolliu les aplicacions que suportaran les fonts:"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "Configura l'X"
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
+msgstr "No es pot iniciar l'actualització en directe!!!\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hd"
-msgstr "hd"
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
+msgstr ""
+"El canvi està fet, però perquè sigui efectiu heu de sortir de la sessió "
+"actual"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turc (tradicional, model \"F\")"
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
+msgstr "logdrake"
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "Felicitats!"
+#
+#: ../../standalone/logdrake_.c:68
+msgid "Show only for the selected day"
+msgstr "Mostrar-ho només per al dia seleccionat"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Usa l'identificador del propietari (UID) per a l'execució"
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
+msgstr "/Fitxer/_Nou"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow remote root login"
-msgstr "Permet l'entrada de root remota"
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
+msgstr "<control>N"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Down"
-msgstr "Baixa"
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
+msgstr "/Fitxer/_Obre"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Impressora en cru (raw) (Cap controlador)"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
+msgstr "<control>O"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Install rpm"
-msgstr "Instal·la l'rpm"
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr "/Fitxer/De_sa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Per imprimir un fitxer des de la línia d'ordres (finestra de terminal) podeu "
-"utilitzar la comanda \"%s <fitxer>\" o una eina d'impressió gràfica: \"xpp "
-"<fitxer>\" o \"kprinter <fitxer>\". Les eines gràfiques us permeten escollir "
-"la impressora i modificar-ne els paràmetres fàcilment.\n"
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
+msgstr "<control>S"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "Temps restant "
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
+msgstr "/Fitxer/_Anomena i desa"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "Teclat Regne Unit"
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr "/Fitxer/-"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "Desmunta"
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
+msgstr "/Opcions/Prova"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
+msgstr "/Ajuda/_Quant a.."
#
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "Desinstal·la fonts"
+#: ../../standalone/logdrake_.c:145
+msgid "User"
+msgstr "Usuari"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Espereu si us plau, s'està detectant i configurant els dispositius..."
+#
+#: ../../standalone/logdrake_.c:146
+msgid "Messages"
+msgstr "Missatges"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "Alemany (sense tecles inoperatives)"
+#
+#: ../../standalone/logdrake_.c:147
+msgid "Syslog"
+msgstr "Syslog"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tEnvia correu a %s\n"
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
+msgstr "Explicació d'Eines Mandrake"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
-msgstr "S'està transferint %s..."
+#: ../../standalone/logdrake_.c:151
+msgid "search"
+msgstr "cerca"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32.768 colors (15 bits)"
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
+msgstr "Eina per veure els registres"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
-msgstr ""
-"Podeu exportar utilitzant NFS o Samba. Seleccioneu quin voleu utilitzar."
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
+msgstr "Paràmetres"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "Gàmbia"
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
+msgstr "que coincideixin amb"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Centre de Control Mandrake"
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
+msgstr "però que no coincideixin amb"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Reboot"
-msgstr "Reinicia"
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
+msgstr "Escolliu el fitxer"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device"
-msgstr "Dispositiu multifunció"
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
+msgstr "Calendari"
-#: ../../network/drakfirewall.pm:1
-#, 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."
-msgstr ""
-"Podeu introduir diferents ports.\n"
-"Són exemples vàlids: 139/tcp 139/udp.\n"
-"Cerqueu informació a /etc/services"
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
+msgstr "Contingut del fitxer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Cinta \n"
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+msgid "Mail alert"
+msgstr "Alerta de correu"
-#: ../../standalone/drakhelp:1
+#: ../../standalone/logdrake_.c:245
#, c-format
-msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
-msgstr ""
-"No teniu cap navegador instal·lat al sistema. Si us plau, instal·leu-ne un "
-"si voleu navegar pel sistema d'ajuda"
+msgid "please wait, parsing file: %s"
+msgstr "espereu si us plau, s'està analitzant el fitxer: %s"
#
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remember this password"
-msgstr "Recorda aquesta contrasenya"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Ara, la connexió compartida a Internet està habilitada."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Xarxa per SSH.\n"
+#: ../../standalone/logdrake_.c:392
+msgid "Mail alert configuration"
+msgstr "Configuració de l'alerta de correu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/logdrake_.c:393
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."
+"Welcome to the mail configuration utility.\n"
+"\n"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Si la impressora desitjada ha estat detectada automàticament, només cal que "
-"la seleccioneu a la llista i que hi afegiu el nom d'usuari, la contrasenya i "
-"el grup de treball, si són necessaris."
+"Benvingut a la utilitat de configuració del correu.\n"
+"\n"
+"Aquí podreu configurar el sistema d'alerta.\n"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " cable"
-msgstr " cable"
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
+msgstr "Servidor World Wide Web Apache"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
-msgstr "Utilitza l'espai lliure de la partició de Windows"
+#: ../../standalone/logdrake_.c:401
+msgid "Domain Name Resolver"
+msgstr "Sistema de resolució de nom de domini"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "S'ha trobat %s en %s, voleu configurar-lo automàticament?"
+#: ../../standalone/logdrake_.c:402
+msgid "Ftp Server"
+msgstr "Servidor FTP"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Controlador de l'XFree86: %s\n"
+#: ../../standalone/logdrake_.c:403
+msgid "Postfix Mail Server"
+msgstr "Servidor de correu Postfix"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr "Aquest ordinador/xarxa ja és a la llista, no es pot tornar a afegir.\n"
+#: ../../standalone/logdrake_.c:404
+msgid "Samba Server"
+msgstr "Servidor Samba"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Escolliu els paquets que voleu instal·lar"
+#: ../../standalone/logdrake_.c:405
+msgid "SSH Server"
+msgstr "Servidor SSH"
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
-msgstr "Papua Nova Guinea"
+#
+#: ../../standalone/logdrake_.c:406
+msgid "Webmin Service"
+msgstr "Servei Webmin"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Dispositiu multifunció en un port paral·lel"
+#: ../../standalone/logdrake_.c:407
+msgid "Xinetd Service"
+msgstr "Servei Xinetd"
#
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Busy files"
-msgstr "Còpia de seguretat dels fitxers de sistema"
+#: ../../standalone/logdrake_.c:414
+msgid "service setting"
+msgstr "paràmetre de servei"
+
+#: ../../standalone/logdrake_.c:415
+msgid ""
+"You will receive an alert if one of the selected services is no more running"
+msgstr "Rebreu un avís si algun dels serveis seleccionats deixa de funcionar"
#
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "Serbi (ciríl·lic)"
+#: ../../standalone/logdrake_.c:428
+msgid "load setting"
+msgstr "paràmetre de càrrega"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Entreu el directori on es guarden les còpies de seguretat"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
+msgstr "Rebreu un avís si la càrrega és més gran que aquest valor"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
-msgstr "Fes que, per defecte, no apareguin els missatges del nucli"
+#
+#: ../../standalone/logdrake_.c:444
+msgid "alert configuration"
+msgstr "Configuració de l'avís"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Voleu definir la impressora (\"%s\")\n"
-"com a impressora predeterminada?"
+#
+#: ../../standalone/logdrake_.c:445
+msgid "Please enter your email address below "
+msgstr "Si us plau, entreu la vostra adreça electrònica"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
-msgstr "L'adreça final del rang del DHCP"
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
+msgstr "Anomena i desa..."
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "S'està creant el disc d'arrencada..."
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "Si us plau, seleccioneu el tipus del vostre ratolí."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Espereu, si us plau, s'està comprovant la vostra connexió..."
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
+msgstr "Voleu emular el tercer botó?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "S'està desactivant la xarxa"
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Configuració de xarxa"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "ID d'entrada"
+#: ../../standalone/net_monitor_.c:96
+#, fuzzy
+msgid "Profile "
+msgstr "Perfil: "
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
msgstr ""
-"L'NFS és un protocol popular de compartició de fitxers en xarxes TCP/IP\n"
-"Aquest servei proporciona la funcionalitat de blocatge de fitxer NFS."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
-msgstr "Client DHCP"
+#
+#: ../../standalone/net_monitor_.c:103
+#, fuzzy
+msgid "Sending Speed:"
+msgstr "S'estan enviant els fitxers..."
-#: ../../standalone/harddrake2:1
-#, 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"
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
msgstr ""
-"Aquest és el HardDrake, l'eina de configuració de maquinari de Mandrake.\n"
-"<span foreground=\"royalblue3\">Versió:</span> %s\n"
-"<span foreground=\"royalblue3\">Autor:</span> Thierry Vignaud &lt;"
-"tvignaud@mandrakesoft.com&gt;\n"
-"\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
-msgstr "deixa-ho córrer"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "S'està imprimint/escanejant en \"%s\""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit raid modules"
-msgstr "omet els mòduls RAID"
+#: ../../standalone/net_monitor_.c:106
+#, fuzzy
+msgid "Connection Time: "
+msgstr "Tipus de connexió: "
-#: ../../services.pm:1
-#, 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)."
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
msgstr ""
-"L'lpd és el dimoni d'impressió necessari perquè l'lpr funcioni\n"
-"correctament. Bàsicament, es tracta d'un servidor que assigna les\n"
-"tasques d'impressió a la(es) impressora(es)."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
-msgstr "Irlandès"
+#: ../../standalone/net_monitor_.c:147
+#, fuzzy
+msgid "Wait please, testing your connection..."
+msgstr "S'està comprovant la vostra connexió..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sunday"
-msgstr "Diumenge"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Connecta't a Internet"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Configuració de la connexió a Internet"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Connecta't a Internet"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
-msgstr "nombres separats per coma"
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, 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\")"
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
msgstr ""
-"Quan hagueu seleccionat un dispositiu podreu veure'n la informació en els "
-"camps del marc dret (\"Informació\")"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Puja la regla actual un nivell"
+#
+#: ../../standalone/net_monitor_.c:225
+#, fuzzy
+msgid "Connection complete."
+msgstr "Velocitat de la connexió"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../standalone/net_monitor_.c:226
msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-"L'escàner\n"
-"\n"
-"%s\n"
-"està disponible al sistema.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Voleu realment suprimir la impressora \"%s\"?"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "I can't find any room for installing"
-msgstr "No es pot trobar espai per a la instal·lació"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Default printer"
-msgstr "Impressora predeterminada"
+#: ../../standalone/net_monitor_.c:330
+#, fuzzy
+msgid "Color configuration"
+msgstr "Configuració de l'avís"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
msgstr ""
-"Heu configurat múltiples maneres de conectar-se a Internet.\n"
-"Escolliu la que voleu utilitzar.\n"
-"\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Modify RAID"
-msgstr "Modifica el RAID"
-
-#: ../../network/isdn.pm:1
-#, 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."
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
msgstr ""
-"S'ha detectat una targeta PCI XDSI, però no es reconeix el tipus. Si us "
-"plau, seleccioneu una targeta PCI a la pantalla següent."
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr "Afegeix un usuari"
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "Discs RAID %s\n"
+#
+#: ../../standalone/net_monitor_.c:400
+#, fuzzy
+msgid "Local measure"
+msgstr "Fitxers locals"
-#: ../../lang.pm:1
-#, c-format
-msgid "Liberia"
-msgstr "Libèria"
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
msgstr ""
-"No s'han pogut instal·lar els paquets necessaris per configurar l'escàner "
-"amb Scannerdrake."
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../standalone/net_monitor_.c:453
+#, fuzzy
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"
+"Warning, another internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Si us plau, introduïu el nom de la interfície connectada a Internet.\n"
-"\n"
-"Exemples:\n"
-"\t\tppp+ per a mòdem o connexions DSL, \n"
-"\t\teth0, o eth1 per a connexions de cable, \n"
-"\t\tippp+ per a connexions XDSI.\n"
+"Avís: s'ha detectat una altra connexió a Internet, podria estar utilitzant "
+"la vostra xarxa"
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Escolliu el vostre teclat"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "Connecta"
-#: ../../steps.pm:1
-#, c-format
-msgid "Format partitions"
-msgstr "Formata les particions"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Disconnect %s"
+msgstr "Desconnecta"
#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Correcció automàtiva de la configuració CUPS"
+#: ../../standalone/printerdrake_.c:47
+msgid "Reading printer data ..."
+msgstr "S'estan llegint les dades d'impressió..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Running \"%s\" ..."
-msgstr "S'està executant \"%s\"..."
+#
+#: ../../standalone/scannerdrake_.c:39
+msgid "Detecting devices ..."
+msgstr "S'estan detectant els dispositius..."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "enable radio support"
-msgstr "habilita l'ús de la ràdio"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
+msgstr "Comprova els ports"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Compartició d'escàners amb els ordinadors centrals:"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr "El %s no és compatible amb aquesta versió de Mandrake Linux."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/scannerdrake_.c:54
#, c-format
-msgid "Loopback file name: %s"
-msgstr "Nom del fitxer de loopback: %s"
+msgid "%s found on %s, configure it?"
+msgstr "S'ha trobat %s en %s, voleu configurar-lo?"
-#
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/scannerdrake_.c:57
#, c-format
-msgid "Please choose the printer to which the print jobs should go."
+msgid "%s is not in the scanner database, configure it manually?"
msgstr ""
-"Si us plau, seleccioneu la impressora on han d'anar les tasques d'impressió."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not transfer printers"
-msgstr "No transfereixis cap impressora"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Delay before booting the default image"
-msgstr "Demora abans d'arrencar la imatge predeterminada"
+"%s no és a la base de dades de l'escàner, voleu configurar-lo manualment?"
#
-#: ../../standalone/drakbackup:1
+#: ../../standalone/scannerdrake_.c:63
+msgid "Select a scanner"
+msgstr "Seleccioneu un escàner"
+
+#: ../../standalone/scannerdrake_.c:91
#, c-format
-msgid "Use Hard Disk to backup"
-msgstr "Usa el disc dur per fer la còpia de seguretat"
+msgid "This %s scanner is unsupported"
+msgstr "Aquest escàner %s no és suportat"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
+#: ../../standalone/scannerdrake_.c:105
#, c-format
-msgid "Configure"
-msgstr "Configura"
+msgid ""
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
+msgstr ""
+"Scannerdrake no ha pogut detectar el vostre escàner %s.\n"
+"Si us plau seleccioneu el dispositiu al qual teniu connectat l'escàner"
#
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake"
-msgstr "Scannerdrake"
+#: ../../standalone/scannerdrake_.c:107
+msgid "choose device"
+msgstr "escolliu un dispositiu"
-#: ../../standalone/drakconnect:1
+#: ../../standalone/scannerdrake_.c:113
#, c-format
msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
msgstr ""
-"Avís: s'ha detectat una altra connexió a Internet, podria estar utilitzant "
-"la vostra xarxa"
+"Aquest escàner %s s'ha de configurar amb printerdrake.\n"
+"Podeu executar printerdrake des del Centre de Control Mandrake en la secció "
+"de Maquinari."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
-msgstr "Còpia de seguretat dels usuaris"
-
-#: ../../network/network.pm:1
+#: ../../standalone/scannerdrake_.c:118
#, 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."
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
msgstr ""
-"Si us plau, introduïu el nom del vostre ordinador.\n"
-"Aquest nom ha de ser complet, com ara \"mybox.mylab.myco.com\".\n"
-"També podeu introduir l'adreça IP de la passarel·la, si en teniu una."
+"El vostre escàner %s ha estat configurat.\n"
+"Ara podeu escanejar documents utilitzant \"XSane\" des de Multimèdia/Gràfics "
+"en el menú d'aplicacions."
-#
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "Select Printer Spooler"
-msgstr "Seleccioneu la cua d'impressió"
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "S'han suprimit alguns dispositius en la classe \"%s\" de maquinari:\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Create new theme"
-msgstr "Crea un nou tema"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
+msgstr "S'han afegit alguns dispositius:\n"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
-msgstr "Explicació d'Eines Mandrake"
+#: ../../standalone/service_harddrake_.c:64
+#, fuzzy
+msgid "Hardware probing in progress"
+msgstr "Detecció en procés"
-#
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "No image found"
-msgstr "No s'ha trobat cap imatge"
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "Escolliu el vostre idioma"
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
-"Alguns paquets importants no s'han instal·lat correctament.\n"
-"La vostra unitat de CD-ROM, o bé el CD-ROM, són defectuosos.\n"
-"Comproveu el CD-ROM en un ordinador instal·lat mitjançant \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "Tipus d'instal·lació"
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
-msgstr "Mandrake Linux 9.2 és l'últim en plataformes de desenvolupament"
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
+msgstr "Detecció del disc dur"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Detected model: %s"
-msgstr "Model detectat: %s"
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "Configura el ratolí"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
-msgstr "\"%s\" no és una adreça de correu electrònic vàlida!"
+#: ../../steps.pm_.c:18
+msgid "Choose your keyboard"
+msgstr "Escolliu el vostre teclat"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"El gestor de pantalla X11 us permet entrar al sistema de manera\n"
-"gràfica amb el sistema X Window executant-se, i permet l'execució\n"
-"simunltània de diverses sessions X a la màquina local."
+#: ../../steps.pm_.c:19
+msgid "Security"
+msgstr "Seguretat"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr "si és \"sí\", executa les comprovacions diàries de seguretat."
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "Sistemes de fitxers"
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
-msgstr "Azerbaitjan"
+#: ../../steps.pm_.c:21
+msgid "Format partitions"
+msgstr "Formata les particions"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Nom del dispositiu a utilitzar per fer la còpia"
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "Paquets a instal·lar"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
-msgstr "No s'ha trobat cap cinta a %s"
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "Instal·la el sistema"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "Afegeix un usuari"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Dvorak (Estats Units)"
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "Configura la xarxa"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-"aquest és el bus físic al qual el dispositiu està connectat (p.ex.: PCI, "
-"USB...)"
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "Configura els serveis"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Com està connectada la impressora?"
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "Instal·la el carregador de l'arrencada"
-#
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security level"
-msgstr "Nivell de seguretat"
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "Crea un disc d'arrencada"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "final resolution"
-msgstr "resolució definitiva"
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "Configura l'X"
#
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
-msgstr "Serveis"
+#: ../../steps.pm_.c:34
+msgid "Install system updates"
+msgstr "Instal·la actualitzacions del sistema"
-#
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Auto configuration"
-msgstr "Configuració automàtica"
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "Surt de la instal·lació"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Estació de treball d'oficina"
+msgid "Web/FTP"
+msgstr "Web/FTP"
+
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
+msgstr "Ordinador de xarxa (client)"
+
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Servidor NFS, Servidor SMB, Servidor Proxy, Servidor SSH"
+
+#: ../../share/compssUsers:999
+msgid "Office"
+msgstr "Oficina"
+
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Estació de treball GNOME"
+
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Eines per al Palm Pilot o per al Visor"
+
+#: ../../share/compssUsers:999
+msgid "Workstation"
+msgstr "Estació de treball"
+
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Tallafoc/Encaminador"
+
+#: ../../share/compssUsers:999
+msgid "Domain Name and Network Information Server"
+msgstr "Servidor de Noms de Domini i d'Informació de la Xarxa (DNS/NIS)"
#: ../../share/compssUsers:999
msgid ""
@@ -21684,69 +15615,78 @@ msgstr ""
"càlcul (kspread, gnumeric), visualitzadors pdf, etc."
#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Estació de jocs"
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "Eines d'àudio: reproductors d'mp3 o midi, mescladors, etc."
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Programes d'entreteniment: acció, jocs de taula, estratègia, etc."
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Base Estàndard de Linux (LSB). Suport a aplicacions de tercers"
#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Estació multimèdia"
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Llibres i Com es fa... sobre el Linux i el programari lliure"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Programes de reproducció/edició de so i vídeo"
+msgid "KDE Workstation"
+msgstr "Estació de treball KDE"
#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Estació d'Internet"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Conjunt d'eines per llegir i enviar correu i notícies (mutt, tin...) i per "
-"navegar pel Web"
+msgid "Multimedia - Video"
+msgstr "Multimèdia - Vídeo"
#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Ordinador de xarxa (client)"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+"Conjunt d'eines per al correu, notícies, web, transferència de fitxers i xat"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Clients per a diferents protocols, incloent l'ssh"
+msgid "Database"
+msgstr "Base de dades"
-#
#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Configuració"
+msgid "PostgreSQL or MySQL database server"
+msgstr "Servidor de bases de dades PostgreSQL o MySQL"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
msgstr "Eines per facilitar la configuració de l'ordinador"
#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Estació de treball científica"
+msgid "Multimedia - Sound"
+msgstr "Multimèdia - So"
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
-msgstr "Aplicacions científiques com ara el gnuplot"
+msgid "Documentation"
+msgstr "Documentació"
#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr "Eines de consola"
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editors, intèrprets d'ordres, eines de fitxer, terminals"
+msgid "Postfix mail server, Inn news server"
+msgstr "Servidor de correu Postfix, servidor de Notícies Inn"
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "Estació de treball KDE"
+msgid "Internet station"
+msgstr "Estació d'Internet"
+
+#: ../../share/compssUsers:999
+msgid "Multimedia station"
+msgstr "Estació multimèdia"
+
+#
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Configuració"
+
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "Més escriptoris gràfics (Gnome, IceWM)"
#: ../../share/compssUsers:999
msgid ""
@@ -21757,72 +15697,92 @@ msgstr ""
"eines"
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Estació de treball GNOME"
+msgid "Graphical Environment"
+msgstr "Entorn gràfic"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Entorn gràfic amb un conjunt d'aplicacions i eines d'escriptori fàcil "
-"d'utilitzar"
+msgid "Development"
+msgstr "Desenvolupament"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Altres escriptoris gràfics"
+msgid "Apache, Pro-ftpd"
+msgstr "Apache i Pro-ftpd"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgid "Tools to create and burn CD's"
+msgstr "Eines per crear i enregistrar CD"
+
+#: ../../share/compssUsers:999
+msgid "Office Workstation"
+msgstr "Estació de treball d'oficina"
+
+#: ../../share/compssUsers:999
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc."
+
+#: ../../share/compssUsers:999
+msgid "Graphics programs such as The Gimp"
+msgstr "Programes gràfics com El Gimp"
+
+#: ../../share/compssUsers:999
+msgid "DNS/NIS "
+msgstr "DNS/NIS "
#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr "Biblioteques de desenvolupament C i C++, programes i fitxers include"
#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Documentació"
+msgid "Network Computer server"
+msgstr "Servidor d'ordinador de xarxa"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Llibres i Com es fa... sobre el Linux i el programari lliure"
+msgid "Mail/Groupware/News"
+msgstr "Correu/Programari de grup/Notícies"
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr "LSB"
+msgid "Game station"
+msgstr "Estació de jocs"
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Base Estàndard de Linux (LSB). Suport a aplicacions de tercers"
+msgid "Video players and editors"
+msgstr "Reproductors i editors de vídeo"
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
+msgid "Multimedia - Graphics"
+msgstr "Multimèdia - Gràfics"
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache i Pro-ftpd"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Programes d'entreteniment: acció, jocs de taula, estratègia, etc."
#: ../../share/compssUsers:999
-msgid "Mail"
-msgstr "Correu"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"Conjunt d'eines per llegir i enviar correu i notícies (pine, mutt, tin...) i "
+"per navegar pel Web"
#: ../../share/compssUsers:999
-msgid "Postfix mail server"
-msgstr "Servidor de correu Postfix"
+msgid "Personal Finance"
+msgstr "Comptabilitat personal"
#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Base de dades"
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Entorn gràfic amb un conjunt d'aplicacions i eines d'escriptori fàcil "
+"d'utilitzar"
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "Servidor de bases de dades PostgreSQL o MySQL"
+msgid "Clients for different protocols including ssh"
+msgstr "Clients per a diferents protocols, incloent l'ssh"
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Tallafoc/Encaminador"
+msgid "LSB"
+msgstr "LSB"
#
#: ../../share/compssUsers:999
@@ -21830,56 +15790,336 @@ msgid "Internet gateway"
msgstr "Passarel·la a Internet"
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
+msgid "Sound and video playing/editing programs"
+msgstr "Programes de reproducció/edició de so i vídeo"
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Servidor de Noms de Domini i d'Informació de la Xarxa (DNS/NIS)"
+msgid "Other Graphical Desktops"
+msgstr "Altres escriptoris gràfics"
#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Servidor d'ordinador de xarxa"
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editors, intèrprets d'ordres, eines de fitxer, terminals"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "Servidor NFS, Servidor SMB, Servidor Proxy, Servidor SSH"
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "Programes per gestionar els vostres comptes, com ara el gnucash"
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
-msgstr ""
-"Conjunt d'eines per llegir i enviar correu i notícies i per navegar pel Web"
+msgid "Personal Information Management"
+msgstr "Gestió d'informació personal"
+
+#: ../../share/compssUsers:999
+msgid "Multimedia - CD Burning"
+msgstr "Multimèdia - Enregistrament de CD"
+
+#: ../../share/compssUsers:999
+msgid "Scientific Workstation"
+msgstr "Estació de treball científica"
+
+#~ msgid "can not open /etc/inittab for reading: %s"
+#~ msgstr "no s'ha pogut obrir /etc/inittab per a lectura: %s"
+
+#, fuzzy
+#~ msgid "cpu number "
+#~ msgstr "un número"
+
+#~ msgid ""
+#~ "You now have the opportunity to download encryption software.\n"
+#~ "\n"
+#~ "WARNING:\n"
+#~ "\n"
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
+#~ "\n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
+#~ "\n"
+#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
+#~ "\n"
+#~ "\n"
+#~ "For any queries relating to these agreement, please contact \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
+#~ msgstr ""
+#~ "Ara teniu la possibilitat de descarregar programari destinat al "
+#~ "xifratge.\n"
+#~ "\n"
+#~ "AVÍS:\n"
+#~ "Degut a diversos requeriments generals aplicables a aquest programari, i\n"
+#~ "imposats per diverses jurisdiccions, el client i/o l'usuari final "
+#~ "d'aquest\n"
+#~ "programari s'ha(n) d'assegurar que les lleis de la(es) seva(es)\n"
+#~ "jurisdicció(ns) li(els) permeten descarregar-lo, emmagatzemar-lo i/o\n"
+#~ "utilitzar-lo.\n"
+#~ "\n"
+#~ "A mes, el client i/o l'usuari final ha(n) de tenir especialment en "
+#~ "compte\n"
+#~ "que no ha(n) d'infrigir les lleis de la(es) seva(es) jurisdicció(ns). Si\n"
+#~ "el client i/o l'usuari final no respecta(en) les disposicions d'aquestes\n"
+#~ "lleis, pot(den) ser severament sancionat(s).\n"
+#~ "\n"
+#~ "Mandrakesoft i els seus fabricants i/o proveïdors no seran en cap cas\n"
+#~ "responsables de cap dany especial, indirecte o incidental (incloent,\n"
+#~ "però sense limitar-se a, la pèrdua de beneficis, interrupció del negoci,\n"
+#~ "pèrdua de dades comercials i altres pèrdues econòmiques, i eventuals\n"
+#~ "responsabilitats i idemnitzacions que s'hagin de pagar per sentència\n"
+#~ "judicial) derivat de l'ús, la possessió o la simple descàrrega d'aquest\n"
+#~ "programari, al qual el client i/o l'usuari final pugui(n), eventualment,\n"
+#~ "tenir accés després d'haver signat el present acord.\n"
+#~ "\n"
+#~ "Per a qualsevol consulta relativa a aquest acord, podeu adreçar-vos a \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
-#~ msgid "The setup has already been done, and it's currently enabled."
-#~ msgstr "La configuració ja s'ha realitzat i ara està habilitada."
+#
+#~ msgid "Proxy configuration"
+#~ msgstr "Configuració del servidor intermediari"
+
+#~ msgid ""
+#~ "Welcome to the proxy configuration utility.\n"
+#~ "\n"
+#~ "Here, you'll be able to set up your http and ftp proxies\n"
+#~ "with or without login and password\n"
+#~ msgstr ""
+#~ "Benvingut a la utilitat de configuració del servidor intermediari "
+#~ "(proxy).\n"
+#~ "\n"
+#~ "Aquí, podreu definir i configurar els vostres servidors intermediaris \n"
+#~ "d'HTTP i FTP, amb o sense entrada i contrasenya\n"
+
+#~ msgid ""
+#~ "Please fill in the http proxy informations\n"
+#~ "Leave it blank if you don't want an http proxy"
+#~ msgstr ""
+#~ "Si us plau, completeu les dades del servidor intermediari d'http\n"
+#~ "Deixeu-ho en blanc si no voleu cap servidor intermediari d'HTTP"
+
+#~ msgid "URL"
+#~ msgstr "URL"
+
+#
+#~ msgid "port"
+#~ msgstr "Port"
+
+#
+#~ msgid "Url should begin with 'http:'"
+#~ msgstr "L'URL ha de començar amb 'http:'"
+
+#
+#~ msgid "The port part should be numeric"
+#~ msgstr "El port ha de ser numèric"
+
+#~ msgid ""
+#~ "Please fill in the ftp proxy informations\n"
+#~ "Leave it blank if you don't want an ftp proxy"
+#~ msgstr ""
+#~ "Si us plau, completeu les dades del servidor intermediari d'FTP\n"
+#~ "Deixeu-ho en blanc si no voleu un servidor intermediari d'FTP"
+
+#~ msgid ""
+#~ "Please enter proxy login and password, if any.\n"
+#~ "Leave it blank if you don't want login/passwd"
+#~ msgstr ""
+#~ "Introduïu el nom d'entrada i la contrasenya per al servidor intermediari, "
+#~ "si en voleu.\n"
+#~ "Deixeu-ho en blanc si no voleu entrada/contrasenya"
+
+#
+#~ msgid "login"
+#~ msgstr "entrada"
+
+#
+#~ msgid "password"
+#~ msgstr "contrasenya"
+
+#
+#~ msgid "re-type password"
+#~ msgstr "contrasenya (un altre cop)"
+
+#
+#~ msgid "The passwords don't match. Try again!"
+#~ msgstr "Les contrasenyes no coincideixen. Proveu-ho un altre cop!"
+
+#~ msgid "Can't write file %s"
+#~ msgstr "No es pot escriure el fitxer %s"
+
+#~ msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+
+#~ msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+
+#, fuzzy
+#~ msgid ""
+#~ "Warning, another internet connexion has been detected, maybe using your "
+#~ "network"
+#~ msgstr ""
+#~ "Avís: s'ha detectat una altra connexió a Internet, podria estar "
+#~ "utilitzant la vostra xarxa"
+
+#~ msgid "no help implemented yet.\n"
+#~ msgstr "encara no s'ha implementat cap ajuda.\n"
+
+#
+#~ msgid "Please click on a medium"
+#~ msgstr "Si us plau, feu clic a un suport físic"
-#~ msgid "Logs"
-#~ msgstr "Registres"
+#~ msgid "Removing LPRng..."
+#~ msgstr "S'està suprimint l'LPRng..."
-#~ msgid "The setup has already been done, but it's currently disabled."
-#~ msgstr "La configuració ja s'ha realitzat, però ara està inhabilitada."
+#~ msgid "Removing LPD..."
+#~ msgstr "S'està suprimint l'LPD..."
-#~ msgid "Profile "
-#~ msgstr "Perfil"
+#~ msgid ""
+#~ "Description:\n"
+#~ "\n"
+#~ " Drakbackup is used to backup your system.\n"
+#~ " During the configuration you can select \n"
+#~ "\t- System files, \n"
+#~ "\t- Users files, \n"
+#~ "\t- Other files.\n"
+#~ "\tor All your system ... and Other (like Windows Partitions)\n"
+#~ "\n"
+#~ " Drakbackup allows you to backup your system on:\n"
+#~ "\t- Harddrive.\n"
+#~ "\t- NFS.\n"
+#~ "\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+#~ "\t- FTP.\n"
+#~ "\t- Rsync.\n"
+#~ "\t- Webdav.\n"
+#~ "\t- Tape.\n"
+#~ "\n"
+#~ " Drakbackup allows you to restore your system to\n"
+#~ " a user selected directory.\n"
+#~ "\n"
+#~ " Per default all backup will be stored on your\n"
+#~ " /var/lib/drakbackup directory\n"
+#~ "\n"
+#~ " Configuration file:\n"
+#~ "\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+#~ "\n"
+#~ "Restore Step:\n"
+#~ " \n"
+#~ " During the restore step, Drakbackup will remove\n"
+#~ " your original directory and verify that all\n"
+#~ " backup files are not corrupted. It is recommended\n"
+#~ " you do a last backup before restoring.\n"
+#~ " \n"
+#~ "\n"
+#~ msgstr ""
+#~ "Descripció:\n"
+#~ "\n"
+#~ " El Drakbackup s'usa per fer còpies de seguretat del sistema.\n"
+#~ " Durant la configuració podeu seleccionar: \n"
+#~ "\t- Fitxers de sistema\n"
+#~ "\t- Fitxers d'usuari\n"
+#~ "\t- Altres fitxers\n"
+#~ "\to Tot el Sistema... i Altres (com les particions de Windows)\n"
+#~ "\n"
+#~ " El Drakbackup us permet fer còpies de seguretat del sistema en:\n"
+#~ "\t- Disc dur\n"
+#~ "\t- NFS\n"
+#~ "\t- CDROM (CDRW), DVDROM (amb arrencada automàtica, rescat i instal·lació "
+#~ "automàtica)\n"
+#~ "\t- FTP\n"
+#~ "\t- Rsync\n"
+#~ "\t- Webdav\n"
+#~ "\t- Cinta\n"
+#~ "\n"
+#~ " El Drakbackup us permet restaurar el sistema a\n"
+#~ " un directori seleccionat d'usuari.\n"
+#~ "\n"
+#~ " Per defecte totes les còpies de seguretat es guarden en\n"
+#~ " el directori /var/lib/drakbackup\n"
+#~ "\n"
+#~ " Fitxer de Configuració:\n"
+#~ "\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+#~ "\n"
+#~ "\n"
+#~ "El pas de restauració:\n"
+#~ " \n"
+#~ " Durant el pas de restauració, el DrakBackup esborrarà \n"
+#~ " els directoris originals i verificarà que cap de \n"
+#~ " les còpies de seguretat no està malmesa. És recomanable que \n"
+#~ " feu una última còpia de seguretat abans de restaurar.\n"
+#~ " \n"
+#~ "\n"
#~ msgid ""
-#~ "Welcome to the Internet Connection Sharing utility!\n"
+#~ "drakbug version %s\n"
+#~ "Copyright (C) 2002 MandrakeSoft.\n"
+#~ "This is free software and may be redistributed under the terms of the GNU "
+#~ "GPL.\n"
#~ "\n"
-#~ "%s\n"
+#~ "usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
#~ "\n"
-#~ "Click on Configure to launch the setup wizard."
+#~ "OPTIONS:\n"
#~ msgstr ""
-#~ "Benvingut a la utilitat de compartició de la connexió a Internet!\n"
+#~ "drakbug versió %s\n"
+#~ "Copyright (C) 2002 MandrakeSoft.\n"
+#~ "Aquest programa és programari lliure i pot redistribuir-se sota els "
+#~ "termes de la GNU GPL.\n"
#~ "\n"
-#~ "%s\n"
+#~ "sintaxi: drakbug [OPCIONS] [NOM_PROGRAMA]\n"
#~ "\n"
-#~ "Feu clic a 'Configura' per executar l'auxiliar de configuració."
+#~ "OPCIONS:\n"
+
+#~ msgid " --help - print this help message.\n"
+#~ msgstr " --help - mostra aquest missatge d'ajuda.\n"
+
+#~ msgid " --report - program should be one of mandrake tools\n"
+#~ msgstr ""
+#~ " --report - presenta una interfície gràfica per informar d'un "
+#~ "error de programació\n"
+
+#~ msgid " --incident - program should be one of mandrake tools\n"
+#~ msgstr ""
+#~ " --incident - presenta una interfície gràfica per informar d'un "
+#~ "error de programació\n"
+
+#~ msgid "usage: drakfloppy\n"
+#~ msgstr "sintaxi: drakfloppy\n"
+
+#~ msgid ""
+#~ "\n"
+#~ "Usage: harddrake [-h|--help] [--test]\n"
+#~ msgstr ""
+#~ "\n"
+#~ "Sintaxi: harddrake [-h|--help] [--test]\n"
+
+#~ msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+#~ msgstr "sintaxi: keyboarddrake [--expert] [teclat]\n"
-#~ msgid "Internet Connection Sharing configuration"
-#~ msgstr "Configuració de la compartició de la connexió a Internet"
+#~ msgid "Probing %s class\n"
+#~ msgstr "S'està sondejant la classe %s\n"
-#~ msgid "No Internet Connection Sharing has ever been configured."
-#~ msgstr "No s'ha configurat mai cap connexió compartida a Internet."
+#~ msgid "detected on interface %s"
+#~ msgstr "detectat a la interfície %s"
-#~ msgid "when checked, owner and group won't be changed"
-#~ msgstr "si ho marqueu, no es canviaran ni el propietari ni el grup"
+#~ msgid "Periodic Checks 2"
+#~ msgstr "Comprovacions periòdiques 2"
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index 414e20601..e8ab62de7 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -1,1903 +1,1147 @@
-# Translation of DrakX-cs.po to Czech
-# Copyright (C) 1999,2003 Free Software Foundation, Inc.
-# Radek Vybiral <Radek.Vybiral@vsb.cz>, 2000, 2001-2003.
-# Michal Bukovjan <bukm@centrum.cz>, 2002-2003.
+# Czech messages for drakbootdisk.
+# Copyright (C) 1999 Free Software Foundation, Inc.
+# Radek Vybiral <Radek.Vybiral@vsb.cz>, 2000, 2001.
+# Michal Bukovjan <michal.bukovjan@openone.cz>, 2002
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX-cs\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
-"PO-Revision-Date: 2003-11-11 23:19GMT\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"PO-Revision-Date: 2002-09-25 09:59GMT\n"
"Last-Translator: Michal Bukovjan <bukm@centrum.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.2\n"
+"X-Generator: KBabel 0.9.5\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Hledám oddíly, které lze připojit"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr ""
-"pokud je nastaveno, kontroluje přidávání/odebírání souborů se suid root."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s vyžaduje název poÄítaÄe, MAC adresu, IP, nbi-image, 0/1 pro "
-"THIN_CLIENT, 0/1 pro lokální konfiguraci...\n"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr "Změnilo se nastavení - restartovat clusternfs/dhcpd?"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tErase=%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Rozdílové zálohování zálohuje pouze ty soubory, které se změnily nebo jsou "
-"nové oproti 'základní' záloze."
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "network printer port"
-msgstr "port síťové tiskárny"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Prosím vložte disketu:"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr "DrakTermServ"
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Záložní tabulka oddílů nemá stejnou velikost\n"
-"Chcete pÅ™esto pokraÄovat?"
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Which username"
-msgstr "Které uživatelské jméno"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "Jaký typ záznamu chcete přidat?"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Restore partition table"
-msgstr "Obnovit tabulku oddílů"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB nebo více"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure hostname..."
-msgstr "Nastavit název poÄítaÄe..."
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "Zvolte X server"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Na serveru CUPS \"%s\""
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "X server"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Post-install configuration"
-msgstr "Probíhá nastavování po instalaci"
+#: ../../Xconfig/card.pm_.c:230
+msgid "Multi-head configuration"
+msgstr "Konfigurace dvou monitorù"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-"Aktuální úroveň zabezpeÄení je %s\n"
-"Vyberte si práva pro zobrazení/editaci"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Místo toho použijte ''%s''"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Type"
-msgstr "Změnit typ"
+"Vá¹ systém podporuje zobrazení na dvou monitorech.\n"
+"Co chcete dìlat?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Také tiskárny používající PPD soubory od jejich výrobců nebo tiskárny s "
-"nativními ovladaÄi pro CUPS nelze pÅ™enést."
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
+msgstr "Kolik pamìti je na va¹í grafické kartì ?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "Srí Lanka"
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "Nastavení XFree"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Následující tiskárny\n"
-"\n"
-"%s %s\n"
-"jsou přímo pÅ™ipojeny k vaÅ¡emu poÄítaÄi"
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Které XFree by jste chtìli pou¾ít?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
-msgstr "Centrální africká republika"
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
+msgstr "Konfigurovat v¹echny monitory nezávisle"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "Zařízení brány (gateway)"
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
+msgstr "Pou¾ít roz¹íøení Xinerama"
-#: ../../standalone/drakfloppy:1
+#: ../../Xconfig/card.pm_.c:389
#, c-format
-msgid "Advanced preferences"
-msgstr "Rozšířené volby"
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfigurovat pouze kartu \"%s\"%s"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Net Method:"
-msgstr "Síťová metoda:"
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Ethernetcard"
-msgstr "Ethernetová karta"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s s hardwarovou 3D akcelerací"
-#: ../../security/l10n.pm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-"Pokud je nastaveno, odesílá report na daný email nebo přímo uživateli root"
-
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr "Parametry"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "no"
-msgstr "ne"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Auto-detect"
-msgstr "Autodetekce"
+"Va¹e karta podporuje 3D akceleraci, ale pouze s XFree %s.\n"
+"Pokud pou¾ijete XFree %s, mù¾ete na druhou stranu dosáhnout lep¹ích výsledkù "
+"ve 2D."
-#: ../../standalone/drakconnect:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid "Interface:"
-msgstr "Rozhraní:"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "S XFree %s mù¾e va¹e karta vyu¾ít 3D hardwarové akcelerace."
-#: ../../steps.pm:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid "Select installation class"
-msgstr "Volba typu instalace"
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s s EXPERIMENTÁLNÍ 3D hardwarovou akcelerací"
-#: ../../network/tools.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
+"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."
msgstr ""
-"Nepodařilo se připojit k Internetu.\n"
-"Pokuste se překonfigurovat dané připojení."
+"Va¹e karta podporuje 3D akceleraci, ale pouze s XFree %s,\n"
+"TOTO JE POUZE EXPERIMENTÁLNÍ VERZE, A MÙ®E VÉST K NESTABILITÌ SYSTÉMU.\n"
+"Va¹e karta je podporována i v XFree %s, kde mù¾e mít lep¹í podporu pro 2D."
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"PÅ™ipojit tiskárnu k Linux serveru a nechat poÄítaÄ(e) s Windows pracovat "
-"jako klienty.\n"
-"\n"
-"Chcete opravdu pokraÄovat v nastavení tiskárny tímto způsobem?"
+"S XFree %s mù¾e va¹e karta vyu¾ít 3D hardwarové akcelerace.\n"
+" TOTO JE POUZE EXPERIMENTÁLNÍ VERZE, A MÙ®E VÉST K NESTABILITÌ SYSTÉMU."
-#: ../../lang.pm:1
-#, c-format
-msgid "Belarus"
-msgstr "Bělorusko"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Chyba při zapisování do souboru %s"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (instalaèní ovladaè pro obrazovku)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result to syslog"
-msgstr "Poslat výstup kontroly do syslogu"
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "Vlastní"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
-msgstr ""
-"apmd je používán pro sledování stavu baterie a zaznamenávání přes syslog.\n"
-"Může také být použit pro vypnutí poÄítaÄe pÅ™i vybité baterii."
+#: ../../Xconfig/main.pm_.c:102
+msgid "Graphic Card"
+msgstr "Grafická karta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tape to backup"
-msgstr "Použít páskovou jednotku"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "Monitor"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Budou instalovány tyto balíÄky"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "Rozli¹ení"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS configuration"
-msgstr "Nastavení CUPS"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
+msgstr "Test"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total progress"
-msgstr "Celkový průběh"
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Volby"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Není dostatek místa pro vytvoření nového diskového oddílu"
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "Ok"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "Přesouvám"
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "Konec"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
"\n"
-"Drakbackup activities via %s:\n"
-"\n"
+"%s"
msgstr ""
+"Zachovat zmìny?\n"
+"Aktuální konfigurace je:\n"
"\n"
-"Aktivity programu DrakBackup skrze %s:\n"
-"\n"
+"%s"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "yes"
-msgstr "ano"
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "Zvolte typ monitoru"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr "("
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
+msgstr "Plug'n Play"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "Obecná"
+
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+msgid "Vendor"
+msgstr "Dodavatel"
+
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr "Plag'n Play detekce selhala. Vyberte prosím pøesný monitor"
+
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
-"Welcome to The Network Configuration Wizard.\n"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"We are about to configure your internet/network connection.\n"
-"If you don't want to use the auto detection, deselect the checkbox.\n"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
-"Vítá vás průvodce připojením k síti\n"
+"Dva rozhodující parametry jsou: vertikální synchronizaèní frekvence, co¾ je\n"
+"frekvence, kterou je obnovována celá obrazovka, a frekvence øádkové\n"
+" synchronizace (horiz. sync. rate), co¾ je frekvence jakou jsou zobrazovány\n"
+"jednotlivé mikroøádky (scanline).\n"
"\n"
-"Nyní lze nastavit připojení k síti nebo internetu.\n"
-"Pokud nechcete použít automatickou detekci, odznaÄte políÄko.\n"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "Libanon"
+"Je VELMI DÙLE®ITÉ abyste nezvolili typ monitoru se schopnostmi vy¹¹ími ne¾ "
+"má\n"
+"vá¹ monitor, proto¾e byste si ho tím mohli po¹kodit. Jestli¾e si nejste "
+"jistí\n"
+"zvolte radìji typ s ni¾¹ími schopnostmi."
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "Horizontální(øádková) synchronizace"
-#: ../../services.pm:1
-#, c-format
-msgid "Stop"
-msgstr "Stop"
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "Vertikální(obrazovková) synchronizace"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Edit selected host"
-msgstr "Upravit vybraný poÄítaÄ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 barev (8 bitù)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD device defined!"
-msgstr "Není definováno žádné CD zařízení!"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tisíc barev (15 bitù)"
-#: ../../network/shorewall.pm:1
-#, fuzzy, c-format
-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 ""
-"Zadejte prosím název rozhraní, které je připojeno k Internetu.\n"
-"\n"
-"Příklady:\n"
-"\t\tppp+ pro modem nebo pro DSL připojení,\n"
-"\t\teth0 nebo eth1 pro připojení přes kabel,\n"
-"\t\tippp+ pro isdn připojení.\n"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tisíc barev (16 bitù)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tPoužít .backupignore soubory\n"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miliónù barev (24 bitù)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "Bulharské (foneticky)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miliardy barev (32 bitù)"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP start ip"
-msgstr "PoÄátek rozsahu DHCP adres"
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "Rozli¹ení"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "256 kB"
-msgstr "256 kB"
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "Vyberte si rozli¹ení a barevnou hloubku"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "Don't rewind tape after backup"
-msgstr "Po provedení zálohy nepřevinout pásku"
+msgid "Graphics card: %s"
+msgstr "Grafická karta: %s"
+
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr "Zru¹it"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "Základní nastavení zaváděcího programu"
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "Vyzkou¹et nastavení"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
-msgstr ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "Chcete si vyzkou¹et nastavení?"
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Tape"
-msgstr "Páska"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Varování: test na této grafické kartì mù¾e zpùsobit zatuhnutí poèítaèe"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid "Malaysia"
-msgstr "Malajsie"
+msgid "Keyboard layout: %s\n"
+msgstr "Rozlo¾ení klávesnice: %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid "Scanning network..."
-msgstr "Zkoumám síť...."
+msgid "Mouse type: %s\n"
+msgstr "Typ my¹i: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr "Tato volba dovolí obnovit různé verze adresáře /etc."
+msgid "Mouse device: %s\n"
+msgstr "Pøípojení my¹i: %s\n"
-#: ../../standalone/drakedm:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr "Změny provedeny, chcete restartovat službu dm ?"
+msgid "Monitor: %s\n"
+msgstr "Monitor: %s\n"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Swiss (French layout)"
-msgstr "Švýcarské (Francouzský styl)"
+msgid "Monitor HorizSync: %s\n"
+msgstr "Horizontální frekvence monitoru: %s\n"
-#: ../../raid.pm:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid neuspěl (je možné, že chybí raidtools?)"
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Vertikální frekvence monitoru: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid "August"
-msgstr "Srpen"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "FTP server"
-msgstr "NTP Server"
+msgid "Graphics card: %s\n"
+msgstr "Grafická karta: %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid "Webcam"
-msgstr "Webová kamera"
+msgid "Graphics memory: %s kB\n"
+msgstr "Pamì» na gr. kartì: %s kB\n"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "Velikost cache (druhá úroveň) na cpu"
+msgid "Color depth: %s\n"
+msgstr "Barevná hloubka: %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid "Soundcard"
-msgstr "Zvuková karta"
+msgid "Resolution: %s\n"
+msgstr "Rozli¹ení: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Month"
-msgstr "Měsíc"
+msgid "XFree86 server: %s\n"
+msgstr "XFree86 server: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Search for files to restore"
-msgstr "Vyhledat soubory, které se budou obnovovat"
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 ovladaè: %s\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Luxembourg"
-msgstr "Lucembursko"
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "Spou¹tí se X"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:62
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
-"Pro vytištění souboru z příkazové řádky (v terminálovém okně) použijte "
-"příkaz \"%s <soubor>\".\n"
+"Mù¾u nastavit vá¹ poèítaè tak, aby automaticky spustil X pøi startu.\n"
+"Chcete aby poèítaè po zapnutí spustil grafický re¾im?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Level %s\n"
-msgstr "Úroveň %s\n"
+#: ../../Xconfig/various.pm_.c:73
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+"Va¹e grafická karta zøejmì disponuje konektorem pro TV-OUT.\n"
+"Tento konektor mù¾e být zprovoznìn pou¾itím tzv. frame bufferu.\n"
+"\n"
+"Aby to bylo mo¾né, budete muset napojit svou grafickou kartu na televizní "
+"pøijímaè, a to je¹tì ne¾ zapnete vá¹ poèítaè.\n"
+"Poté vyberte ve va¹em zavadìèi polo¾ku \"TV out\".\n"
+"\n"
+"Má va¹e karta tuto vlastnost?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac (phonetic)"
-msgstr "Syrské (foneticky)"
+#: ../../Xconfig/various.pm_.c:85
+msgid "What norm is your TV using?"
+msgstr "Jakou normu vá¹ televizor pou¾ívá?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Iran"
-msgstr "Ãrán"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
+msgstr "První sektor zavádìcího diskového oddílu"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus"
-msgstr "Sběrnice"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
+msgstr "První sektor disku (MBR)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Iraq"
-msgstr "Irák"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "Instalace SILO"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "connecting to %s ..."
-msgstr "připojuji se k %s ..."
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
+msgstr "Kam chcete nainstalovat zavádìcí program?"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "NaÅ¡el jsem možný konflikt v souÄasném nastavení LAN adresy pro %s!\n"
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "Instalace LILO/Grub"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring..."
-msgstr "Nastavuji..."
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
+msgstr "SILO"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
-msgstr ""
-"Modul bttv jádra operaÄního systému GNU/Linux nalezne správné parametry "
-"automaticky pro většinu moderních TV karet.\n"
-"Je-li vaÅ¡e karta Å¡patnÄ› detekována, lze zde ruÄnÄ› nastavit správný typ karty "
-"a tuneru. Pokud je to potřeba, vyberte také parametry vaší TV karty."
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
+msgstr "LILO s textovou nabídkou"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Password (again)"
-msgstr "Heslo (podruhé)"
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
+msgstr "LILO s grafickou nabídkou"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search installed fonts"
-msgstr "Hledám instalované fonty"
+#: ../../any.pm_.c:142
+msgid "Grub"
+msgstr "Grub"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default desktop"
-msgstr "Výchozí pracovní plocha"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "Spu¹tìní s DOS/Windows (loadlin)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
-msgstr ""
-"Chcete-li poslat hlášení o chybÄ›, klepnÄ›te na tlaÄítko pro nahlášení chyby.\n"
-"OtevÅ™e se okno prohlížeÄe sítÄ› Internet na adrese %s,\n"
-"kde najdete formulář k vyplnění. Výše zobrazené informace budou na tento "
-"server\n"
-"rovněž přeneseny."
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr "Venezuela"
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "Základní nastavení zavádìcího programu"
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "IP address"
-msgstr "IP adresa"
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
+msgstr "Zavádìcí program"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "Zvolte velikosti"
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "Instalace zavádìcího programu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Seznam poškozených dat:\n"
-"\n"
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "Startovací zaøízení"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
-msgstr ""
-"Lze připojit pouze explicitně (tj. volba -a\n"
-"způsobí, že souborový systém nebu připojen)."
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "Kompaktní"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"Váš modem není systémem podporován.\n"
-"Podívejte se na stránky http://www.linmodems.org"
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "kompaktní"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose another partition"
-msgstr "Vyberte jiný oddíl"
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "Textový re¾im"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Current user"
-msgstr "Aktuální uživatel"
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
+msgstr "Prodleva pøed automatickým spu¹tìním"
+
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
+msgid "Password"
+msgstr "Heslo"
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
-msgstr "Uživatelské jméno"
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "Heslo (podruhé)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Levá klávesa \"Windows\""
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "Omezení nastavení z pøíkazové øádky"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "Guyana"
+#: ../../any.pm_.c:171
+msgid "restrict"
+msgstr "omezení"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Nastavení serveru dhcpd"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "Vyèistit /tmp pøi ka¾dém startu"
-#: ../../standalone/drakperm:1
+#: ../../any.pm_.c:174
#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Použito pro adresář:\n"
-" pouze vlastník adresáře nebo souboru v tomto adresáři jej může smazat"
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Pokud je tøeba, upøesnìte velikost pamìti (nalezeno %d MB)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " na serveru Novell \"%s\", tiskárna \"%s\""
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
+msgstr "Povolit více profilù"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Name"
-msgstr "Název tiskárny"
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "Zadejte velikost pamìti v MB"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
+#: ../../any.pm_.c:182
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
+"Volba ''Omezení nastavení z pøíkazové øádky'' je bezpøedmìtné bez hesla"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
-msgstr "Odebrat modul"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "Zkuste to znovu, prosím"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Password"
-msgstr "Heslo"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "Hesla nejsou shodná"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Rozšířená konfigurace"
+#: ../../any.pm_.c:191
+msgid "Init Message"
+msgstr "Úvodní zpráva"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr "Vyhledávám multifunkÄní zařízení od HP"
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
+msgstr "Prodleva pro firmware"
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "Kořenový(root)"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
+msgstr "Prodleva pøi spu¹tìní"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "Zvolte existující RAID pro přidání"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
+msgstr "Povolit spu¹tìní z CD?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turecké (moderní model \"Q\")"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
+msgstr "Povolit zavadìè OF?"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo message not found"
-msgstr "Zpráva Lilo nebyla nalezena"
+#: ../../any.pm_.c:197
+msgid "Default OS?"
+msgstr "Výchozí OS?"
-#: ../../services.pm:1
-#, c-format
+#: ../../any.pm_.c:231
msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
+"\n"
+"On which drive are you booting?"
msgstr ""
-"Automatická generace hlaviÄky jádra v adresáři /boot\n"
-"pro soubory /usr/include/linux/{autoconf,version}.h"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
-msgstr "pokud je potřeba"
+"Rozhodli jste se nainstalovat zavadìè systému na oddíl.\n"
+"To znamená, ¾e ji¾ zavadìè na disku, ze kterého spou¹títe systém nìjaký je "
+"(napø. System Commander).\n"
+"\n"
+"Ze kterého disku spou¹títe systém?"
-#: ../../standalone/drakclock:1
-#, c-format
+#: ../../any.pm_.c:247
msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
+"Tady jsou v¹echny záznamy.\n"
+"Mù¾ete pøidat dal¹í nebo zmìnit stávající."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Failed..."
-msgstr "Obnova selhala..."
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "Pøidat"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "Uloží heslo pro tento systém v konfiguraci aplikace drakbackup."
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "Hotovo"
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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 ""
-"Úvod\n"
-"\n"
-"OperaÄní systém a různé Äásti dostupné v distribuci Mandrake Linux jsou "
-"nazývány \"Softwarové produkty\" (\"Software Products\"). Softwarové "
-"produkty zahrnují, ale nejsou omezeny, na programy, metody, pravidla a "
-"dokumentaci, vztahující se k operaÄnímu systému a dalším komponentám "
-"distribuce Mandrake Linux.\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"
+#: ../../any.pm_.c:257
+msgid "Modify"
+msgstr "Zmìnit"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default user"
-msgstr "Výchozí uživatel"
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "Jaký typ záznamu chcete pøidat?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"umístění x souřadnice pro\n"
-"levý horní roh lišty s průběhem"
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "Linux"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Current interface configuration"
-msgstr "Aktuální nastavení rozhraní"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "Jiný systém (SunOs...)"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Démon pro tiskárny"
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "Jiný systém (MacOs...)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"Jestli máte ISA kartu, měly by být hodnoty na následující obrazovce "
-"správné.\n"
-"\n"
-"Jestli máte PCMCIA kartu, musíte znát její IRQ a IO.\n"
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "Jiný systém (Windows...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not print any test page"
-msgstr "Netisknout testovací stránku"
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "Obraz(image)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr "Gurmutské"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "Koøenový(root)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s je již používán\n"
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
+msgstr "Pøipojit"
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
-msgstr "Vnutit volbu No APIC"
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr "Toto heslo je příliš jednoduché (musí být alespoň %d znaků dlouhé)"
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "Pro ètení i zápis"
-#: ../../standalone.pm:1
-#, c-format
-msgid "[keyboard]"
-msgstr "[klávesnice]"
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "Tabulka"
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP proxy"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "Nejistý"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install List"
-msgstr "Instalovat seznam"
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "Znaèka"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Change\n"
-"Restore Path"
-msgstr ""
-"Změnit adresář\n"
-"pro obnovu"
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "Výchozí"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Zobrazit pouze pro vybraný den"
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
+msgstr "Initrd-velikost"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tNastavit limit pro místo na disku na %s MB\n"
+#: ../../any.pm_.c:318
+msgid "NoVideo"
+msgstr "Bez Videa"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 kB"
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "Odstranit záznam"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Pozn: Paralelní porty nepoužívají autodetekci)"
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "Prázdná znaèka není povolena"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
+msgstr "Musíte zadat soubor s jádrem"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Jaký typ karty máte?"
+#: ../../any.pm_.c:330
+msgid "You must specify a root partition"
+msgstr "Musíte zadat koøenový oddíl"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "Tato znaèka se ji¾ pou¾ívá"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Security"
-msgstr "BezpeÄnost"
+msgid "Found %s %s interfaces"
+msgstr "Na¹el jsem %s %s rozhraní"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Pro nastavení možností a ke správě tiskových úloh lze také použít grafické "
-"rozhraní \"xpdq\" .\n"
-"Pokud používáte grafické prostředí KDE, máte na pracovní ploše ikonu "
-"pojmenovanou \"STOP Printer!\", která po klepnutí ihned zastaví všechny "
-"tiskové úlohy. To je vhodné třeba pro případy uvíznutí papíru.\n"
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "Máte je¹tì nìjaké jiné?"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
+#: ../../any.pm_.c:642
#, c-format
-msgid "<control>Q"
-msgstr "<control>K"
+msgid "Do you have any %s interfaces?"
+msgstr "Máte nìjaké %s rozhraní?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Nelze najít data ze zálohy pro obnovu...\n"
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "Ne"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown"
-msgstr "Neznámý"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "Ano"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "Tento server je již na seznamu, nelze jej tedy opět přidat.\n"
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "Ukázat informace o hardware"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Network Configuration"
-msgstr "Nastavení sítě"
+msgid "Installing driver for %s card %s"
+msgstr "Instaluji ovladaè pro %s kartu %s"
-#: ../../standalone/logdrake:1
+#: ../../any.pm_.c:663
#, c-format
-msgid "<control>S"
-msgstr "<control>U"
+msgid "(module %s)"
+msgstr "(modul %s)"
-#: ../../network/isdn.pm:1
+#: ../../any.pm_.c:674
#, c-format
msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-"Protokol použitý ve zbytku světa \n"
-" žádný D-kanál (leased lines)"
+"Nyní lze zadat volby pro modul %s.\n"
+"Pozn.: ka¾dá adresa by mìla být ve tvaru 0x napø. '0x123'"
-#: ../../standalone/drakTermServ:1
+#: ../../any.pm_.c:680
#, 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."
+"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 ""
-" - /etc/xinetd.d/tftp:\n"
-" \tdrakTermServ nastaví tento soubor tak, aby pracoval v souladu s "
-"obrazy vytvořenými pomocí\n"
-" \tmkinitrd-net a záznamy v /etc/dhcpd.conf tak, aby byl každému "
-"bezdiskovému klientu poskytnut\n"
-" \todpovídající zaváděcí obraz.\n"
-"\n"
-" \tTypický soubor s nastavením tftp vypadá takto:\n"
-" \t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \t\tZměny oproti výchozí instalaci zahrnují změnu příznaku disable "
-"na\n"
-" \t\t'no' a změnu cesty adresáře na /var/lib/tftpboot, kam ukládá\n"
-" \t\tmkinitrd-net své obrazy."
+"Nyní mù¾ete poskytnout modulu %s dal¹í parametry.\n"
+"Volby se zadávají ve tvaru ''název=hodnota název2=hodnota2 ...''.\n"
+"Napøíklad, ''io=0x300 irq=7''"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Hodnota %s musí být Äíslo!"
-
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, c-format
-msgid "Notice"
-msgstr "Poznámka"
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "Volby modulu:"
-#: ../../install_steps_interactive.pm:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr ""
-"Nemáte nastaveno prostÅ™edí X. Chcete jej skuteÄnÄ› ponechat nenastavené?"
+msgid "Which %s driver should I try?"
+msgstr "Který %s ovladaè mám zkusit?"
-#: ../../printer/printerdrake.pm:1
+#: ../../any.pm_.c:703
#, 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\"."
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
-"Konfigurace této tiskárny je plně automatická. Pokud nebyla tiskárna správně "
-"detekována nebo preferujete vlastní nastavení tisku, zvolte \"RuÄní "
-"konfigurace\"."
+"V nìkterých pøípadech potøebuje ovladaè %s pro svoji správnou funkci dal¹í\n"
+"informace, pøesto¾e normálnì funguje i bez nich. Chtìli byste zadat\n"
+"nìjaké doplòující mo¾nosti, nebo radìji necháte ovladaè samostatnì "
+"prozkoumat\n"
+"hardware va¹eho poèítaèe, aby získal informace které potøebuje? Zkoumání\n"
+"hardware mù¾e ve výjimeèných pøípadech zpùsobit zamrznutí poèítaèe, ale "
+"nemìlo\n"
+"by v ¾ádném pøípadì zpùsobit jiné ¹kody."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "What type of partitioning?"
-msgstr "Jaký typ diskového oddílu?"
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
+msgstr "Automatické prozkoumání"
+
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "Zadejte mo¾nosti"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:719
#, c-format
msgid ""
-"file list sent by FTP: %s\n"
-" "
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
-"seznam souborů poslaný přes FTP: %s\n"
-" "
+"Spu¹tìní modulu %s selhalo.\n"
+"Chcete to zkusit s jinými parametry?"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface"
-msgstr "Rozhraní"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
+msgstr "pøístup k programùm v X prostøedí"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Multisession CD"
-msgstr "Multisession CD"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
+msgstr "pøístup k rpm nástrojùm"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated strings"
-msgstr "Äárkou oddÄ›lené znakové Å™etÄ›zce"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
+msgstr "povolit \"su\""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "Zde je seznam poÄítaÄů, ze kterých je možné využít skenery: "
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
+msgstr "pøístup k administrativním souborùm"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Messages"
-msgstr "Zprávy"
+#: ../../any.pm_.c:738
+msgid "access to network tools"
+msgstr "pøístup k sí»ovým nástrojùm"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Neznámá|CPH06X (bt878) [více dodavatelů]"
+#: ../../any.pm_.c:739
+msgid "access to compilation tools"
+msgstr "pøístup k nástrojùm pro kompilaci"
-#: ../../network/drakfirewall.pm:1
+#: ../../any.pm_.c:744
#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP a IMAP server"
+msgid "(already added %s)"
+msgstr "(u¾ byl pøidán %s)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mexico"
-msgstr "Mexiko"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "Toto heslo je pøíli¹ jednoduché"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model stepping"
-msgstr "Číslování modelu"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
+msgstr "Prosím zadejte u¾ivatelské jméno"
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
-msgstr "Rwanda"
+#: ../../any.pm_.c:751
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr "U¾ivatelské jméno mù¾e obsahovat pouze malá písmena, èísla, '-' a '_'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Switzerland"
-msgstr "Švýcarsko"
+#: ../../any.pm_.c:752
+msgid "The user name is too long"
+msgstr "Toto u¾ivatelské jméno je pøíli¹ dlouhé"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "Toto u¾ivatelské jméno u¾ bylo pøidáno"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Máte nějaké %s rozhraní?"
+#: ../../any.pm_.c:757
+msgid "Add user"
+msgstr "Pøidat u¾ivatele"
-#: ../../standalone/drakTermServ:1
+#: ../../any.pm_.c:758
#, c-format
-msgid "You must be root to read configuration file. \n"
+msgid ""
+"Enter a user\n"
+"%s"
msgstr ""
-"Pro Ätení konfiguraÄního souboru musíte být pÅ™ihlášen jako uživatel root.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Možnosti vzdálené lpd tiskárny"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"GNU/Linux je víceuživatelský systém, což znamená, že každý uživatel může\n"
-"mít své vlastní nastavení, soubory atd. Více se doÄtete v příruÄce \"ZaÄínáme"
-"\".\n"
-"Na rozdíl od uživatele root, který je správcem poÄítaÄe, uživatelé, kteří "
-"jsou\n"
-"zde vytvořeni, nemají oprávnění měnit nic kromě svých vlastních souborů a\n"
-"nastavení. DoporuÄuje se vytvoÅ™it úÄet pro minimálnÄ› jednoho běžného "
-"uživatele.\n"
-"Tento úÄet se používá na vÅ¡echny běžné úkoly. AÄkoliv je velmi praktické\n"
-"pÅ™ihlaÅ¡ovat se každý den jako uživatel root, je to také velmi nebezpeÄné!\n"
-"Jedna malá chyba může způsobit, že celý operaÄní systém již nebude funkÄní.\n"
-"Pokud uděláte chybu jako normální uživatel, můžete přijít pouze o své "
-"informace,\n"
-"ale nepoškodí se celý systém.\n"
-"\n"
-"Jako první zadejte vaÅ¡e skuteÄné jméno. To není samozÅ™ejmÄ› povinné - můžete\n"
-"zadat co chcete. Aplikace DrakX použije první slovo jako uživatelské jméno,\n"
-"pod kterým se bude uživatel hlásit do systému, a pÅ™edvyplní jej do políÄka\n"
-"\"%s\". To je možné následně změnit.\n"
-"Dále se zadává heslo pro uživatele. Volba hesla pro normální uživatele sice "
-"není\n"
-"z hlediska bezpeÄnosti tak kritická jako v případÄ› správce, ale i tak se "
-"doporuÄuje\n"
-"ji nepodceňovat; koneckonců, jde o zabezpeÄení souborů tohoto uživatele.\n"
-"\n"
-"Pokud klepnete na \"%s\", můžete přidávat uživatelů, kolik\n"
-"potÅ™ebujete, napÅ™. své přátele, úÄet pro otce Äi sestru. Pokud máte vÅ¡echny\n"
-"uživatele vytvoÅ™eny, klepnÄ›te na tlaÄítko \"%s\". \n"
-"\n"
-"Klepnutím na tlaÄítko \"%s\" můžete pro nový úÄet zmÄ›nit shell, který\n"
-"bude uživatel používat (výchozí je bash).\n"
-"\n"
-"Až dokonÄíte pÅ™idávání uživatelů, budete dotázáni na to, jaký uživatel má "
-"být\n"
-"zvolen pro automatické přihlášení do systému po jeho spuštění. Pokud chcete\n"
-"tuto možnost využít (a neobáváte se o bezpeÄnost), vyberte požadovaného\n"
-"uživatele a správce oken a klepněte na \"%s\".\n"
-"Pokud tuto možnost nechcete využít, odÅ¡krtnÄ›te políÄko \"%s\"."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Internet Access..."
-msgstr "Nastavit přístup na Internet..."
+"Zadejte u¾ivatele\n"
+"%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Vyberte si interval mezi jednotlivými zálohami"
+#: ../../any.pm_.c:759
+msgid "Accept user"
+msgstr "Vytvoøit u¾ivatele"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Norway"
-msgstr "Norsko"
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "Skuteèné jméno"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Delete profile"
-msgstr "Smazat profil"
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "U¾ivatelské jméno"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Danish"
-msgstr "Dánské"
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "Shell"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Automaticky nastaví podporu numerické klávesnice v konzoli\n"
-"a v XFree při startu."
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "Ikona"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Prosím zadejte nastavení IP protokolu pro tento poÄítaÄ.\n"
-"Každá položka musí být zadána jako IP adresa v 'desetinné' formě\n"
-"(například 1.2.3.4)."
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "Automatické pøihlá¹ení"
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:804
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."
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
-"Distribuce Mandrake Linux je složena z nÄ›kolika CD. InstalaÄní program ví,\n"
-"na kterém disku je umístěn jaký soubor a v případě potřeby vysune CD a "
-"vyžádá\n"
-"si výměnu CD za požadované."
+"Mù¾u nastavit vá¹ poèítaè tak, aby automaticky pøihlásil vybraného "
+"u¾ivatele.\n"
+"Chcete pou¾ít tuto mo¾nost?"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
-msgstr "Pokud je zaškrtnuto, vlastník a skupina nebudou změněny"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "Bulharsko"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
-msgstr "Úterý"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "Procesory"
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "Zvolte standardního u¾ivatele :"
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "Svalbard a ostrovy Jan Mayen"
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
+msgstr "Vyberte si, který správce oken má být spou¹tìn:"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No NIC selected!"
-msgstr "Není vybrána žádná síťová karta!"
+#: ../../any.pm_.c:824
+msgid "Please choose a language to use."
+msgstr "Prosím zvolte si jazyk, který chcete pou¾ívat."
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../any.pm_.c:826
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 ""
-"Vyskytl se problém během konfigurace.\n"
-"Otestujte připojení k Internetu pomocí net_monitor nebo mcc. Pokud není "
-"spojení funkÄní, bude potÅ™eba asi znovu naÄíst konfiguraci"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "oddíl %s je nyní rozpoznán jako %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Other files..."
-msgstr "Zálohovat další soubory..."
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
+msgstr "Mù¾ete si zvolit dal¹í jazyky, které budou dostupné po instalaci"
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
-msgstr "Kongo (Kinshasa)"
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "V¹echno"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "IP adresa SMB serveru"
+#: ../../any.pm_.c:961
+msgid "Allow all users"
+msgstr "Povolit v¹em u¾ivatelùm"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Bude zapsána nová tabulka oddílů na disku %s!"
+#: ../../any.pm_.c:961
+msgid "No sharing"
+msgstr "Nesdílet"
-#: ../../printer/printerdrake.pm:1
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
#, c-format
-msgid "Installing HPOJ package..."
-msgstr "Instaluji balíÄek HPOJ..."
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr "Balíèek %s musí být nainstalován. Chcete ho nainstalovat?"
-#: ../../any.pm:1
-#, c-format
+#: ../../any.pm_.c:973
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"
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-"Pomocí startovací diskety můžete spustit Linux bez použití normálního\n"
-"zavádÄ›cího programu (bootloader). To je užiteÄné pokud nechcete instalovat\n"
-"LILO (nebo Grub), nebo jiný operaÄní systém odstraní LILO, nebo LILO\n"
-"na vaÅ¡em poÄítaÄi nefunguje. Vlastní startovací disketa také může být\n"
-"použita spolu s \"Mandrake záchranným diskem\" (rescue image), což "
-"poskytuje\n"
-"úÄinnou pomoc pÅ™i havárii systému. Chcete vytvoÅ™it startovací disketu?\n"
-"%s"
+"Nyní lze provést export pøes protokol NFS nebo Samba. Vyberte prosím, který "
+"chcete pou¾ít."
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
+msgid "Mandatory package %s is missing"
+msgstr "Chybí potøebný balíèek %s"
+
+#: ../../any.pm_.c:987
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 ""
+"Chcete povolit u¾ivatelùm, aby si mohli sdílet adresáøe ve svém domovském "
+"adresáøi?\n"
+"Pokud to povolíte, u¾ivatelùm staèí pouze kliknout na \"Sdílet\" v "
+"aplikacích Konqueror a Nautilus.\n"
"\n"
-" Report démonu pro DrackBackup\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latvian"
-msgstr "Litevské"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr "každý měsíc"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Retry"
-msgstr "Obnovit"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr "Název modulu"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Start at boot"
-msgstr "Spustit při startu"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Použít přírůstkovou zálohu"
+"Lze také provést \"Vlastní\" povolení pro jednotlivé u¾ivatele.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "První sektor disku (MBR)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "El Salvador"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
-msgstr "Joystick"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
+msgstr "Spustit UserDrake"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "DVD"
-msgstr "DVD"
+#: ../../any.pm_.c:1003
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
+msgstr ""
+"Sdílení mezi u¾ivateli pou¾ívá skupinu \"fileshare\". \n"
+"U¾ivatele lze do této skupiny pøidat pomocí nástroje UserDrake."
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
-msgstr "Použít Unicode jako výchozí"
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
+msgstr "Dveøe dokoøán"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "modul jádra systému GNU/Linux, který ovládá toto zařízení"
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Slabá"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Hardwarové hodiny nastaveny na GMT"
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
+msgstr "Standardní"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "Pokouším se obnovit tabulku oddílů"
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Vysoká"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Hodnota %s musí být celé Äíslo!"
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+msgid "Higher"
+msgstr "Vy¹¹í"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
-msgstr "Použije heslo pro autentizaci uživatelů"
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "Paranoidní"
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../any.pm_.c:1061
msgid ""
-"Entries you'll have to fill:\n"
-"%s"
+"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 ""
-"Položky, které je potřeba vyplnit:\n"
-"%s"
+"Tato úroveò musí být pou¾ita s rozmyslem. Sice mù¾ete snadnìji pou¾ívat "
+"svùj\n"
+"systém, ale na druhou stranu je velmi citlivý: Nesmí být pou¾it pro\n"
+"poèítaè pøipojený k Internetu. Pro pøihlá¹ení není zapotøebí ¾ádné heslo."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1064
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."
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
-"Pro zálohu na jiná média budou nejdříve soubry vytvořeny na disku a potom "
-"přesunuty na jiné médium. Zvolením této volby se po záloze smažou pomocné "
-"tar soubory z disku."
-
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Nelze spustit aktualizaci na běžící systém !!!\n"
+"Hesla jsou nyní aktivní, ale stále nedoporuèuji pou¾ít tento poèítaè na síti."
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "Jméno: "
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
+#: ../../any.pm_.c:1065
+msgid ""
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
+"Toto je standardní úroveò zabezpeèení pro poèítaè, který je pou¾íván jako "
+"klient pro pøipojení k internetu."
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 miliónů barev (24 bitů)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Allow all users"
-msgstr "Povolit všem uživatelům"
-
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr "Oficiální obchod spoleÄnosti MandrakeSoft"
-
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "Měním velikost"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1066
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
-"Zadejte maximální velikost\n"
-" povolenou pro DrakBackup (MB)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Cable connection"
-msgstr "Kabelové připojení"
-
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, c-format
-msgid "User"
-msgstr "Uživatel"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Provést novou zálohu před obnovou (pouze pro přírůstkovou zálohu)"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "mkraid neuspěl"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Name"
-msgstr "Název"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Emulace 3 tlaÄítka"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
-msgstr "Kontrola přidaných/odebraných sgid souborů."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files..."
-msgstr "Posílám soubory..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "Izraelské (foneticky)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
-msgstr "přístup k rpm nástrojům"
+"Existují zde nìkterá omezení a ka¾dou noc jsou spu¹tìny automatické testy."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Musíte vybrat/zadat tiskárnu/zařízení!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Problémy s právy při přístupu na CD."
+#: ../../any.pm_.c:1067
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
+"connections from many clients. Note: if your machine is only a client on the "
+"Internet, you should choose a lower level."
+msgstr ""
+"S touto bezpeènostní úrovní je mo¾né pou¾ívat systém jako server.\n"
+"Bezpeènost je nyní dostateènì vysoká, aby bylo mo¾né pou¾ívat systém jako "
+"server, ke kterému\n"
+"je mo¾né pøipojit mnoho klientù. Poznámka: pokud je poèítaè pou¾íván pouze "
+"jako klient pro pøipojení k Internetu, je lep¹í zvolit ni¾¹í úroveò."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "Telefonní Äíslo"
+#: ../../any.pm_.c:1070
+msgid ""
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
+msgstr ""
+"Tato úroveò má vlastnosti pøedchozí úrovnì, ale systém je úplnì uzavøen.\n"
+"Zabezpeèení je nastaveno na maximum."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr "Chyba: OvladaÄ \"%s\" pro vaÅ¡i zvukovou kartu není na seznamu"
+#: ../../any.pm_.c:1076
+msgid "DrakSec Basic Options"
+msgstr "Základní volby programu DrakSec"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Název tiskárny, popis, umístění"
+#: ../../any.pm_.c:1077
+msgid "Please choose the desired security level"
+msgstr "Vyberte prosím po¾adovanou úroveò zabezpeèení"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
-msgstr "USA (broadcast)"
+#: ../../any.pm_.c:1080
+msgid "Security level"
+msgstr "Úroveò zabezpeèení"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Použít rozšíření Xinerama"
+#: ../../any.pm_.c:1082
+msgid "Use libsafe for servers"
+msgstr "Pou¾ít libsafe pro servery"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback"
-msgstr "Loopback"
+#: ../../any.pm_.c:1083
+msgid ""
+"A library which defends against buffer overflow and format string attacks."
+msgstr ""
+"Knihovna, které zabraòuje útokùm proti pøeteèení bufferu nebo proti ¹patnému "
+"formátování øetìzcù."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "West Europe"
-msgstr "Západní Evropa"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
+msgstr "Administrátor bezpeènosti (pøihla¹ovací jméno nebo email)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On CD-R"
-msgstr "na CDROM"
+#: ../../any.pm_.c:1166
+msgid ""
+"Here you can choose the key or key combination that will \n"
+"allow switching between the different keyboard layouts\n"
+"(eg: latin and non latin)"
+msgstr ""
+"Zde mù¾ete vybrat klávesu nebo kombinaci kláves, kterou\n"
+"budete moci pøepínat rozlo¾ení znakù va¹í klávesnice.\n"
+"(napø. mezi èeským a americkým)"
-#: ../../standalone.pm:1
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, c-format
msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\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 ""
-"[VOLBY] [NAZEV_PROGRAMU]\n"
+"Vita Vas %s, program pro start operacniho systemu!\n"
+"\n"
+"Vyberte si ze seznamu operacnich systemu nize nebo\n"
+"pockejte %d vterin pro automaticky start.\n"
"\n"
-"[VOLBY]:\n"
-" --help - vypíše tuto nápovědu.\n"
-" --report - program může být libovolný mandrake nástroj\n"
-" --incident - program může být libovolný mandrake nástroj"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake2 version %s"
-msgstr "Harddrake2 verze %s"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Preferences"
-msgstr "Předvolby"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr "Svazijsko"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "Dominikánská republika"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr "Kopíruji %s"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Choose color"
-msgstr "Výběr barvy"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac"
-msgstr "Syrské"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
-#: ../../help.pm:1
-#, 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!"
-msgstr ""
-"Vyberte disk, který chcete smazat pro instalaci oddílu Mandrake Linux.\n"
-"Pamatujte na to, že všechna data budou ztracena a nelze je již obnovit!"
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Vita Vas GRUB, program pro vyber operacniho systemu"
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -1908,3256 +1152,2415 @@ 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
+#: ../../bootloader.pm_.c:986
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Pro vyber polozek pouzijte klavesy %c a %c."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Standardní dvoutlaÄítková myÅ¡"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Povolit \"%s\" spouštět soubory"
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Stisknete ENTER pro start vybraného OS, 'e' pro upravu"
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr "Odeberte nejdříve logické disky\n"
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "spoustecich parametru, nebo 'c' pro prikazovou radku."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
+#: ../../bootloader.pm_.c:995
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Vybrana polozka bude automaticky spustena za %d sekund."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
-msgstr ""
-"Nelze zapsat soubor /etc/sysconfig/bootsplash\n"
-"Soubor nebyl nalezen."
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
+msgstr "není dost místa v adresáøi /boot"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet access"
-msgstr "Přístup na Internet"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "Pracovní plocha"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"y coordinate of text box\n"
-"in number of characters"
-msgstr ""
-"hodnota pro y souřadnici\n"
-"pro textový box v poÄtu znaků"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "Nabídka Start"
-#: ../../printer/printerdrake.pm:1
+#: ../../bootloader.pm_.c:1120
#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"VÅ¡echny možnosti tisku pro souÄasnou tiskárnu jsou zobrazeny níže, nebo "
-"klepnÄ›te na tlaÄítko \"Možnosti tiskárny\"."
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "Zavádìcí program nelze nainstalovat na oddíl %s\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr "Povoluji servery..."
+#: ../../bootlook.pm_.c:53
+msgid "Boot Style Configuration"
+msgstr "Nastavení stylu zavádìní"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Tisknu testovací stránku(y)..."
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
+msgstr "/_Soubor"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-"Přenos úspěšný!\n"
-"Možná budete chtít zkontrolovat, zda se můžete přihlásit na server:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"bez dotazu na heslo."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
+msgstr "/Soubor/U_konèit"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Oddíl s přípojným bodem %s už existuje\n"
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
+msgstr "<control>K"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
-msgstr "Povolí/zakáže bezpeÄnostní kontrolu pravidelnÄ› každou hodinu."
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
+msgstr "Novìj¹í zatøídìný monitor "
-#: ../../help.pm:1
-#, 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''."
-msgstr ""
-"V tomto bodě si musíte rozhodnout, na které diskové oddíly budete\n"
-"instalovat nový operaÄní systém Mandrake Linux. Pokud je disk prázdný\n"
-"nebo existující operaÄní systém používá celý disk, je nutné ho rozdÄ›lit.\n"
-"RozdÄ›lení disku spoÄívá ve vytvoÅ™ení volného prostoru pro instalaci\n"
-"systému Mandrake Linux.\n"
-"\n"
-"Protože rozdÄ›lení disku je nenávratná operace, je to velmi nebezpeÄná\n"
-"akce pro ty uživatele, kteří nemají žádné zkušenosti.\n"
-"Pro tyto uživatele je dobrý průvodce, který zjednoduší daný proces.\n"
-"JeÅ¡tÄ› pÅ™ed zapoÄetím rozdÄ›lování disku si proÄtÄ›te manuál.\n"
-"\n"
-"Na základě vaší stávající konfigurace nabídne průvodce několik řešení:\n"
-"\n"
-" * \"%s\": takto se jednoduše automaticky disk(y) rozdělí\n"
-"a již se o nic nemusíte starat.\n"
-"\n"
-" * \"%s\": průvodce detekoval jeden nebo více existujících\n"
-"Linuxových oddílů a ty nabídne pro instalaci. Budete muset definovat ke "
-"každému\n"
-"oddílu přípojný bod. Původní přípojné body jsou předvyplněny a obvykle by\n"
-"jste je měli ponechat.\n"
-"\n"
-" * \"%s\": pokud máte na disku nainstalovány Microsoft Windows a tyto\n"
-"zabírají celý disk, je možné tento prostor zmenšit a použít ho pro "
-"instalaci.\n"
-"Oddíl lze a data lze také vymazat (viz volba \"Smazat celý disk\") nebo\n"
-"změnit velikost FAT oddílu s Microsoft Windows. Změna velikosti oddílu je\n"
-"provedena bez ztráty dat a je možná, pokud jste předtím tento oddíl ve\n"
-"Windows defragmentovali. Je doporuÄeno zazálohovat vaÅ¡e data. Tento postup\n"
-"je doporuÄený, pokud chcete na disku provozovat souÄasnÄ› systém\n"
-"Mandrake Linux i Microsoft Windows.\n"
-"\n"
-" Před výběrem této volby si prosím uvědomte, že velikost oddílu s "
-"Microsoft\n"
-"Windows bude menší než je nyní. To znamená, že budete mít méně místa pro\n"
-"uložení dat nebo instalaci programů do Microsoft Windows.\n"
-"\n"
-" * \"%s\": pokud chcete smazat veškerá data a všechny oddíly na disku\n"
-"a použít je pro instalaci systému Mandrake Linux, vyberte toto řešení.\n"
-"Zde postupujte opatrně, po výběru již není možné vzít volbu zpět.\n"
-"\n"
-" !! Pokud zvolíte tuto možnost, všechna data na disku budou ztracena.!!\n"
-"\n"
-" * \"%s\": takto se jednoduše smaže celý disk a bude se instalovat\n"
-"na celý disk. Všechna data tak budou ztracena.\n"
-"\n"
-" !! Pokud vyberete tuto volbu, veškerá data budou ztracena. !!\n"
-"\n"
-" * \"%s\": pokud chcete disk rozdÄ›lit ruÄnÄ›. PÅ™ed touto volbou buÄte "
-"opatrní,\n"
-"je sice mocná, ale nebezpeÄná. Velmi jednoduÅ¡e zde můžete pÅ™ijít o svá "
-"data.\n"
-"NedoporuÄuje se tÄ›m, kteří pÅ™esnÄ› nevÄ›dí, co dÄ›lají. Chcete-li se dozvÄ›dÄ›t\n"
-"více o nástroji DiskDrake, který se v tomto případě používá, prostudujte "
-"sekci\n"
-"\"Správa vaÅ¡ich oddílů\" v příruÄce \"ZaÄínáme\"."
+#: ../../bootlook.pm_.c:83
+msgid "NewStyle Monitor"
+msgstr "Novìj¹í monitor"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
-msgstr "Ukrajina"
+#: ../../bootlook.pm_.c:84
+msgid "Traditional Monitor"
+msgstr "Tradièní monitor"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Application:"
-msgstr "Aplikace:"
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
+msgstr "Tradièní GTK+ monitor"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "External ISDN modem"
-msgstr "Externí ISDN modem"
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
+msgstr "Spustit Auroru pøi startu"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr "pokud je nastaveno, odesílá výsledek kontroly mailem."
+#: ../../bootlook.pm_.c:89
+msgid "Lilo/grub mode"
+msgstr "Re¾im Lilo/Grub"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Vaše volba? (výchozí %s) "
+#: ../../bootlook.pm_.c:89
+msgid "Yaboot mode"
+msgstr "Re¾im Yaboot"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr "Řešení problémů"
+#: ../../bootlook.pm_.c:138
+msgid "Install themes"
+msgstr "Instalovat témata"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:139
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"
+"Display theme\n"
+"under console"
msgstr ""
-"Zkušební stránka(y) byla(y) poslána(y) na tiskárnu.\n"
-"Může chvilku trvat než zaÄne tisk.\n"
-"Stav tisku:\n"
-"%s\n"
-"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
-msgstr "každý den"
+"Zobrazit téma\n"
+"na konzoli"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and one unknown printer"
-msgstr "a jedna neznámá tiskárna"
+#: ../../bootlook.pm_.c:140
+msgid "Create new theme"
+msgstr "Vytvoøit nové téma"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#: ../../bootlook.pm_.c:184
#, c-format
-msgid "Ireland"
-msgstr "Irsko"
+msgid "Backup %s to %s.old"
+msgstr "Zálohuji %s do %s.old"
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:187
#, c-format
-msgid " Restore Configuration "
-msgstr " Obnovit nastavení "
+msgid "Copy %s to %s"
+msgstr "Kopíruji %s do %s"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Je toto správné nastavení?"
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+msgstr "Chyba"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"V tomto kroku se provede nastavení připojení k Internetu/síti. Pokud chcete\n"
-"pÅ™ipojit svůj poÄítaÄ k místní síti nebo k Internetu, klepnÄ›te na \"%s\"\n"
-"a spustí se automatická detekce síťové karty nebo modemu. Pokud tato\n"
-"detekce selže, odÅ¡krtnÄ›te pÅ™i dalším pokusu políÄko \"%s\". Pokud nechcete\n"
-"síť nastavit nebo to chcete provést pozdÄ›ji, jednoduÅ¡e klepnÄ›te na tlaÄítko\n"
-"\"%s\".\n"
-"\n"
-"Možné způsoby pÅ™ipojení jsou: tradiÄní modem, ISDN modem, pÅ™ipojení ADSL,\n"
-"kabelový modem, a koneÄnÄ› pÅ™ipojení do sítÄ› LAN (Ethernet).\n"
-"\n"
-"V této chvíli nebudeme rozebírat podrobnosti jednotlivých nastavení. "
-"Ujistěte se ale,\n"
-"že máte všechny dostupné informace, jako je IP adresa, výchozí brána, DNS\n"
-"servery, pro připojení od svého poskytovatele připojení nebo od správce "
-"sítě. \n"
-"\n"
-"Více informací naleznete v příslušné kapitole o připojení k Internetu v "
-"\"Uživatelské\n"
-"příruÄce\", nebo můžete poÄkat, systém nyní jednoduÅ¡e nainstalovat a "
-"použít \n"
-"programy pro nastavení připojení později."
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
+msgstr "Zpráva LiLo nebyla nalezena"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Průvodce konfigurací"
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr "Nelze zapsat soubor /etc/sysconfig/bootsplash."
-#: ../../modules/interactive.pm:1
+#: ../../bootlook.pm_.c:222
#, c-format
-msgid "Autoprobe"
-msgstr "Automatické prozkoumání"
+msgid "Write %s"
+msgstr "Zapsat %s"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:224
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."
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-"pokud je nastaveno, kontroluje se:\n"
-"\n"
-" - zda není heslo prázdné,\n"
-"\n"
-"- zda v /etc/shadow nějaké heslo je\n"
-"\n"
-"- zda existují uživatelé, kteří mají id 0 kromě uživatele root."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files..."
-msgstr "Zálohovat systémové soubory..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Nelze použít všesměrové vysílání bez NIS domény"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Odebírám tiskárnu \"%s\"..."
+"Nelze zapsat soubor /etc/sysconfig/bootsplash\n"
+"Soubor nebyl nalezen."
-#: ../../security/l10n.pm:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Shell history size"
-msgstr "Velikost historie pro shell"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr "Nelze spustit mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../standalone/drakfloppy:1
+#: ../../bootlook.pm_.c:238
#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr "Provést initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../bootlook.pm_.c:244
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"
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-"UrÄete, kde je umístÄ›n soubor auto_install.cfg.\n"
-"\n"
-"Ponechte prázdné, pokud nechcete použít režim automatické instalace.\n"
-"\n"
-
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on other machines"
-msgstr "Nastaveno na jiném poÄítaÄi"
+"Nelze znovu spustit LiLo!\n"
+"Chcete-li dokonèit instalaci tématu pro LiLo, spus»te na pøíkazové øádce "
+"\"lilo\" jako u¾ivatel root."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "Úroveň informací, které lze získat po provedení instrukce cpuid"
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
+msgstr "Znovu spustit 'lilo'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Peru"
-msgstr "Peru"
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+msgid "Notice"
+msgstr "Poznámka"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " on device: %s"
-msgstr " na zařízení: %s"
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr "Instalace témat pro LiLo a Bootsplash provedena úspì¹nì!"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "Odstranit Windows(TM)"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Startuje X Font Server (to je nezbytné pro běh XFree)."
+#: ../../bootlook.pm_.c:251
+msgid "Theme installation failed!"
+msgstr "Instalace témata selhala!"
-#: ../../standalone/drakTermServ:1
+#: ../../bootlook.pm_.c:259
#, c-format
msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"Většina těchto údajů byla získána z vašeho\n"
-"běžícího systému. Můžete je upravit dle potřeby"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Vyberte soubor s fontem nebo adresář a klepněte na 'Přidat'"
+"Jako správce zavádìní nyní pou¾íváte %s.\n"
+"Pokud chcete spustit prùvodce nastavením, klepnìte na Nastavit."
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "Madagaskar"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
-msgstr "Služby cronu nejsou zatím pro běžné uživatele dostupné."
-
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "System"
-msgstr "Systém"
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
+msgstr "Nastavit"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Chcete použít tuto vlastnost?"
+#: ../../bootlook.pm_.c:268
+msgid "Splash selection"
+msgstr "Výbìr zavádìcího obrázku"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr "Arabské"
+#: ../../bootlook.pm_.c:271
+msgid "Themes"
+msgstr "Témata"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:273
msgid ""
"\n"
-"- Options:\n"
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
msgstr ""
"\n"
-"- Volby:\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Password required"
-msgstr "Vyžadováno heslo"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d minutes"
-msgstr "%d minut(y)"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Grafická karta: %s"
+"Vyberte téma pro\n"
+"LiLo a Bootsplash,\n"
+"mù¾ete je vybrat\n"
+"ka¾dé zvlá¹»"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV transfer failed!"
-msgstr "Přenos protokolem WebDAV selhal!"
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
+msgstr "Obrazovka LiLo"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "Nastavení XFree"
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
+msgstr "Bootsplash"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Choose action"
-msgstr "Volba akce"
+#: ../../bootlook.pm_.c:316
+msgid "System mode"
+msgstr "Systémový re¾im"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Polynesia"
-msgstr "Francouzská Polynésie"
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
+msgstr "Spustit grafické prostøedí pøi startu systému"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Aplikace DrakX obvykle zjistí poÄet tlaÄítek na vaší myÅ¡i. Pokud ne, "
-"předpokládá,\n"
-"že máte dvoutlaÄítkovou myÅ¡ a nastaví emulaci pro tÅ™etí tlaÄítko myÅ¡i. "
-"Emulace\n"
-"tÅ™etího tlaÄítka se provádí souÄasným stiskem levého i pravého tlaÄítka.\n"
-"Aplikace také umí rozpoznat, zda se jedná o myš PS/2, USB nebo sériovou.\n"
-"\n"
-"Pokud chcete zadat jiný typ myši, vyberte odpovídající typ se seznamu.\n"
-"\n"
-"Pokud vyberete jinou myš než ta, která byla detekována, zobrazí se "
-"testovací\n"
-"obrazovka. Zde otestujte jak tlaÄítka tak i koleÄko a ověřte, zda je "
-"nastavení\n"
-"správné. Pokud myš nepracuje správně, stiskněte mezerník nebo klávesu Enter\n"
-"a vyberte jiný typ.\n"
-"\n"
-"MyÅ¡i s koleÄkem nejsou v nÄ›kterých případech automaticky rozpoznány. Budete\n"
-"je muset vybrat ze seznamu. Ujistěte se, že vyberete myš s odpovídajícím "
-"typem\n"
-"portu, ke kterému je pÅ™ipojená. Poté, co stisknete tlaÄítko \"%s\", \n"
-"zobrazí se obrázek s myší. Aby se správnÄ› koleÄko aktivovalo, musíte "
-"pohybovat\n"
-"koleÄkem vaší myÅ¡i. Poté ověřte, zda-li se správnÄ› myÅ¡ pohybuje na obrazovce."
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
+msgstr "Ne, nechci automatické pøihlá¹ení"
-#: ../../services.pm:1
-#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Podpora pro OKI 4w a kompatibilní wintiskárny."
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "Ano, chci automatické pøihlá¹ení s tímto (u¾ivatelem, desktopem)"
+
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
+msgstr "OK"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr "Soubory zapsané do souboru .backupignore nebudou zálohovány."
+#: ../../common.pm_.c:107
+msgid "GB"
+msgstr "GB"
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Spustit zvukový systém ALSA (Advanced Linux Sound Architecture)"
+#: ../../common.pm_.c:107
+msgid "KB"
+msgstr "KB"
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instaluji ovladaÄ pro %s kartu %s"
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Byla přenesena výchozí tiskárna (\"%s\"). Má se nastavit jako výchozí také "
-"na vzdáleném tiskovém systému %s?"
+#: ../../common.pm_.c:115
+msgid "TB"
+msgstr "TB"
-#: ../../standalone/drakTermServ:1
+#: ../../common.pm_.c:123
#, c-format
-msgid "Enable Server"
-msgstr "Povolit server"
+msgid "%d minutes"
+msgstr "%d minut(y)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ukrainian"
-msgstr "Ukrajinské"
+#: ../../common.pm_.c:125
+msgid "1 minute"
+msgstr "1 minuta"
-#: ../../printer/printerdrake.pm:1
+#: ../../common.pm_.c:127
#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Síť nefunguje a nelze ji spustit. Prosím zkontrolujte nastavení hardware. "
-"Pak se opět pokuste provést nastavení vzdálené tiskárny."
+msgid "%d seconds"
+msgstr "%d sekund"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Povolit \"%s\" zapisovat do souboru"
+#: ../../common.pm_.c:172
+msgid "Can't make screenshots before partitioning"
+msgstr "Nelze provést sejmutí obrazovky pøed rozdìlením diskù"
-#: ../../install_steps_interactive.pm:1
+#: ../../common.pm_.c:179
#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Vložte prosím spouštěcí disketu do %s"
+msgid "Screenshots will be available after install in %s"
+msgstr "Sejmuté obrazovky budou dostupné po instalaci v adresáøi %s"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local network(s)"
-msgstr "Lokální síť(ě)"
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+msgid "France"
+msgstr "Francie"
-#: ../../help.pm:1
-#, c-format
-msgid "Remove Windows"
-msgstr "Odstranit Windows"
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
+msgstr "Costa Rica"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-"Váš skener %s byl nastaven.\n"
-"Nyní lze skenovat dokumenty pomocí aplikace \"XSane\" z nabídky aplikací "
-"Multimédia/Grafika."
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+msgid "Belgium"
+msgstr "Belgie"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Firewire controllers"
-msgstr "Firewire kontroléry"
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
+msgstr "Èeská republika"
-#: ../../help.pm:1
-#, 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!"
-msgstr ""
-"Po nastavení obecných parametrů zavadÄ›Äe systému bude k dispozici\n"
-"seznam voleb pro zavádění, který se zobrazí při zavádění systému.\n"
-"\n"
-"Pokud již máte na poÄítaÄi jiný operaÄní systém, automaticky bude zaÅ™azen\n"
-"do nabídky pro spouštění. Zde je možné dále doladit volby, které se "
-"předávají\n"
-"tím, že na danou nabídkou vyberete a klepnete na tlaÄítko \"%s\", pokud\n"
-"jej chcete upravit, \"%s\" použijte pro odebrání a \"%s\" použijte pokud "
-"chcete\n"
-"vytvořit novou položku.\n"
-"K dalšímu kroku se dostanete klepnutím na tlaÄítko \"%s\".\n"
-"\n"
-"Pokud nechcete umožnit přístup k tÄ›mto operaÄním systémům komukoliv, můžete\n"
-"je z nabídky odstranit smazáním odpovídajících položek.. V tom případě ale\n"
-"musíte mít spouÅ¡tÄ›cí disketu, ze které je možné tento operaÄní systém "
-"spustit!"
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+msgid "Germany"
+msgstr "Nìmecko"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "System mode"
-msgstr "Systémový režim"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+msgid "Greece"
+msgstr "Øecko"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Abyste mohli tisknout na NetWare tiskárně, musíte zadat název NetWare "
-"serveru (Pozor! To může být odlišné od jeho názvu pro TCP/IP!), název "
-"tiskové fronty tiskárny, kterou chcete používat, uživatelské jméno a heslo."
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+msgid "Norway"
+msgstr "Norsko"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Netmask:"
-msgstr "Maska sítě:"
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+msgid "Sweden"
+msgstr "©védsko"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
-msgstr "Nechat na později"
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
+msgstr "Nizozemí"
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "Připojit"
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+msgid "Italy"
+msgstr "Itálie"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr "Obnovit seznam tiskáren (pro získání všech vzdálených CUPS tiskáren)"
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+msgid "Austria"
+msgstr "Rakousko"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Pokud je tato volba zvolena, pak je při každém startu CUPS démona "
-"automaticky zajištěno že\n"
-"\n"
-"- pokud je nainstalován LPD/LPRng, nebude CUPS přepisovat /etc/printcap\n"
-"\n"
-"- pokud chybí soubor /etc/cups/cupsd.conf, tak bude vytvořen\n"
-"\n"
-"- pokud jsou rozesílány informace do sítě, nebudou obsahovat v názvu serveru "
-"\"localhost\".\n"
-"\n"
-"Pokud některá volba způsobuje problémy, vypněte tuto volbu, ale potom si na "
-"tyto zmíněné body musíte dávat pozor."
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
+msgstr "Spojené státy americké"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../diskdrake/dav.pm_.c:19
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"
+"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 ""
-"Instalace může být v případě potřeby plně automatická,\n"
-"ale použije se celý disk!!!\n"
-"(v případÄ› instalace na druhý poÄítaÄ)\n"
-"\n"
-"Takto lze jednoduše zopakovat instalaci.\n"
+"WebDAV je protokol, který umo¾òuje pøipojit webový adresáø jako lokální, "
+"který\n"
+"se potom tváøí jako lokální souborový systém (takový webový server musí "
+"být)\n"
+"nastaven jako WebDAV server). Pokud chcete pøidat WebDAV pøipojení, vyberte\n"
+"polo¾ku \"Nový\"."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Síťová tiskárna \"%s\", port %s"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "Prosím zvolte si, ke kterému síťovému adaptéru bude připojena LAN."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
-msgstr "Obnovit také ostatní soubory."
+#: ../../diskdrake/dav.pm_.c:27
+msgid "New"
+msgstr "Nový"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Vyberte si rozložení vaší klávesnice."
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Odpojit"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "URI Tiskového Zařízení"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Pøipojit"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not erasable media!"
-msgstr "Toto není přepisovatelné médium!"
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
+msgstr "Server"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "Pomocí terminálu"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Pøípojný bod"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr "Povolí/zakáže ochranu před IP spoofingem."
+#: ../../diskdrake/dav.pm_.c:85
+msgid "Please enter the WebDAV server URL"
+msgstr "Zadejte prosím URL serveru WebDAV"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Instaluji tiskový systém v bezpeÄnostní úrovni %s"
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
+msgstr "URL musí zaèínat znaky http:// nebo https://"
-#: ../../any.pm:1
-#, c-format
-msgid "The user name is too long"
-msgstr "Toto uživatelské jméno je příliš dlouhé"
+#: ../../diskdrake/dav.pm_.c:109
+msgid "Server: "
+msgstr "Server: "
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "Jiný systém (Windows...)"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
+msgstr "Adresáø pøipojení (mount point): "
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr "Vzdálená místo je již protokolem WebDAV synchronizováno!"
+msgid "Options: %s"
+msgstr "Volby: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
-msgstr "NaÄítám databázi tiskáren ..."
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
+msgstr "Zálohujte si nejdøív svá data, prosím"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Vytvořit disketu pro automatickou instalaci"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "Ètìte pozornì!"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:100
msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
+"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 ""
-"\t\t uživatelské jméno: %s\n"
-"\t\t cesta: %s \n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr "Somálsko"
+"Jestli¾e chcete pou¾ívat aboot, musíte nechat volné místo na zaèátku disku\n"
+"(2048 sektorù staèí)"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr "Není dostupný žádný open source ovladaÄ"
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "Prùvodce"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
-msgstr "Vých."
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
+msgstr "Co udìláte ?"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
-"Tato úroveň má vlastnosti předchozí úrovně, ale systém je úplně uzavřen.\n"
-"ZabezpeÄení je nastaveno na maximum."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "Nikaragua"
+"Máte jeden veliký oddíl FAT\n"
+"(vìt¹inou pou¾ívaný Microsoft DOS/Windows).\n"
+"Doporuèuji vám nejprve zmen¹it tento oddíl\n"
+"(klepnìte na nìj a potom na\n"
+"\"Zmìnit velikost\")"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "Nová Kaledonie"
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "Prosím klepnìte na oddíl"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Evropský protokol (EDSS1)"
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "Detaily"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Delete"
-msgstr "/O_dstranit"
+#: ../../diskdrake/hd_gtk.pm_.c:254
+msgid "No hard drives found"
+msgstr "Nenalezeny ¾ádné pevné disky!"
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "Textový režim"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
-msgstr "Omán"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "FAT"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Zadejte prosím níže svou poštovní adresu "
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Network Monitoring"
-msgstr "Monitorování sítě"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Journalised FS"
+msgstr "®urnálovací FS"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:325
msgid "SunOS"
msgstr "SunOs"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "New size in MB: "
-msgstr "Nová velikost v MB: "
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "Odkládací (swap)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Typ tabulky oddílů: %s\n"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "Prázdný"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication Windows Domain"
-msgstr "Doména Windows pro ověření"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "Dal¹í"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "US-Americké"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "Souborové systémy:"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr "Emulace tlaÄítek"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "Vytvoøit"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", síťová tiskárna \"%s\", port %s"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "Zmìnit typ"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-"\n"
-"Aktivity programu DrakBackup skrze pásku:\n"
-"\n"
+msgid "Use ``%s'' instead"
+msgstr "Místo toho pou¾ijte ``%s''"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-" Problémy FTP spojení: Nebylo možné poslat vaše soubory se zálohou přes "
-"FTP.\n"
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "Smazat"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Sending Speed:"
-msgstr "Odchozí rychlost:"
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
+msgstr "Nejprve pou¾ijte ``Odpojit''"
-#: ../../harddrake/sound.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
-"currently uses\n"
-"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services're configured to be run on\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Klasický postup při řešení problémů se zvukem je pomocí těchto příkazů:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" vám Å™ekne, jaký ovladaÄ je výchozí pro\n"
-"danou zvukovou kartu\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" vám Å™ekne, který ovladaÄ se nyní\n"
-"používá\n"
-"\n"
-"- \"/sbin/lsmod\" provede kontrolu toho, zda modul (ovladaÄ) je nahrán nebo "
-"ne\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" a \"/sbin/chkconfig --list alsa\" vám "
-"sdělí\n"
-"zda je pro initlevel nastaveny služby alsa a sound\n"
-"\n"
-"- \"aumix -q\" vám řekne, zda je zvuk ztlumen nebo ne\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" vám řekne, který program používá zvukovou "
-"kartu.\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
-msgstr "Halt chyba"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Nastavení zasílání varovných zpráv e-mailem"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr "Tokelau"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Matching"
-msgstr "Shodných"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bosnian"
-msgstr "Bosenské"
+"After changing type of partition %s, all data on this partition will be lost"
+msgstr "Tím ¾e zmìníte typ oddílu %s pøijdete o v¹echna jeho data"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Release: "
-msgstr "Verze: "
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose a partition"
+msgstr "Vyberte oddíl"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection speed"
-msgstr "Rychlost připojení"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose another partition"
+msgstr "Vyberte jiný oddíl"
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr "Namibie"
+#: ../../diskdrake/interactive.pm_.c:202
+msgid "Exit"
+msgstr "Konec"
-#: ../../services.pm:1
-#, c-format
-msgid "Database Server"
-msgstr "Databázové servery"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
+msgstr "Pøepnout se do módu 'expert'"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
-"speciální schopnosti zařízení (schopnost vypalování a/nebo podpora DVD)"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
+msgstr "Pøepnout se do módu 'normální'"
-#: ../../raid.pm:1
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Nemůžu přidat oddíl do _naformátovaného_ RAID md%d"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "Zpìt"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Network Time Protocol"
-msgstr "Síťové rozhraní"
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "Pøesto chcete pokraèovat?"
-#: ../../Xconfig/card.pm:1
-#, 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."
-msgstr ""
-"Vaše karta podporuje 3D akceleraci, ale pouze s XFree %s,\n"
-"TOTO JE POUZE EXPERIMENTÃLNà VERZE, A MŮŽE VÉST K NESTABILITÄš SYSTÉMU.\n"
-"Vaše karta je podporována i v XFree %s, kde může mít lepší podporu pro 2D."
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "Konec bez ulo¾ení"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "ÄŒekejte prosím, nastavuji volby zabezpeÄení..."
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "Chcete skonèit bez zapsání do tabulky oddílù?"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "Neznámá|CPH05X (bt878) [více dodavatelů]"
+#: ../../diskdrake/interactive.pm_.c:257
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "Chcete ulo¾it úpravy souboru /etc/fstab?"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Spustit grafické prostředí při startu systému"
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "V¹e smazat"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr "každou hodinu"
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
+msgstr "Automaticky rozmístit"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
-msgstr "Pravá klávesa Shift"
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+msgid "More"
+msgstr "Více"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " úspěšně obnovena na %s "
+#: ../../diskdrake/interactive.pm_.c:278
+msgid "Hard drive information"
+msgstr "Informace o pevném disku"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Nastavuji tiskový port využitelný pro CUPS..."
+#: ../../diskdrake/interactive.pm_.c:310
+msgid "All primary partitions are used"
+msgstr "V¹echny primární oddíly (partitions) jsou pou¾ívány"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr "Antigua a Barbuda"
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "Nemù¾u pøidat ¾ádný dal¹í oddíl"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:312
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."
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
msgstr ""
-"!!! Signalizuje, že heslo v databázi je jiné než které má v databázi\n"
-"Terminal Server.\n"
-"Smažte/znovu přidejte uživatele pro povolení přihlášení na Terminal Server."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "Španělské"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Start"
-msgstr "Start"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
-msgstr "Přímé přihlášení uživatele root"
+"Abyste mohli mít více oddílù, musíte smazat jeden existující a na jeho "
+"místì\n"
+"vytvoøit roz¹íøený (extended) oddíl"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring applications..."
-msgstr "Nastavování aplikací..."
+#: ../../diskdrake/interactive.pm_.c:322
+msgid "Save partition table"
+msgstr "Ulo¾it tabulku oddílù"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"Vítejte v Průvodci nastavením tiskárny\n"
-"\n"
-"Tento průvodce vám pomůže nainstalovat vaši tiskárnu nebo tiskárny připojené "
-"k tomuto poÄítaÄi, přímo k síti, nebo sdílené na poÄítaÄi s Windows.\n"
-"\n"
-"Pokud máte tiskárnu nebo tiskárny pÅ™ipojené k tomuto poÄítaÄi, zapojte je "
-"prosím a zapněte je; pak mohou být automaticky nalezeny. Vaše síťové "
-"tiskárny nebo tiskárny sdílené poÄítaÄi s Windows musí být rovněž zapnuty a "
-"připojené k síti, mají-li být automaticky nalezeny.\n"
-"\n"
-"Automatická detekce tiskáren připojených k síti probíhá podstatně déle než "
-"automatická detekce tiskáren pouze lokálnÄ› pÅ™ipojených k tomuto poÄítaÄi. "
-"Pokud nepotřebujete automatickou detekci tiskáren na síti, nebo tiskáren "
-"sdílených poÄítaÄi s Windows, pak tuto autodetekci vypnÄ›te.\n"
-"\n"
-"Pokud jste pÅ™ipraveni, klepnÄ›te na tlaÄítko \"Dále\", nebo klepnÄ›te na "
-"tlaÄítko \"ZruÅ¡it\" pokud nechcete v tuto chvíli tiskárny nastavovat."
+#: ../../diskdrake/interactive.pm_.c:323
+msgid "Restore partition table"
+msgstr "Obnovit tabulku oddílù"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
-msgstr "Modemové připojení"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
+msgstr "Záchrana tabulky oddílù"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "File Selection"
-msgstr "Výběr souboru"
+#: ../../diskdrake/interactive.pm_.c:326
+msgid "Reload partition table"
+msgstr "Znovu naèíst tabulku oddílù"
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
+#: ../../diskdrake/interactive.pm_.c:331
+msgid "Removable media automounting"
+msgstr "Automatické pøipojování pro vyjímatelná média"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Před zálohování pásku vymazat"
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "Zvolit soubor"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
-msgstr "Spustit nástroj pro nastavení"
+#: ../../diskdrake/interactive.pm_.c:347
+msgid ""
+"The backup partition table has not the same size\n"
+"Still continue?"
+msgstr ""
+"Zálo¾ní tabulka oddílù nemá stejnou velikost\n"
+"Chcete pøesto chcete pokraèovat?"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "Instalace zaváděcího programu"
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "Varování"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Velikost kořenového oddílu v MB:"
+#: ../../diskdrake/interactive.pm_.c:362
+msgid ""
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
+msgstr ""
+"Vlo¾te disketu do mechaniky\n"
+"V¹echna data na této disketì budou smazána"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Toto je nepostradatelný balíÄek, nemůže být odstranÄ›n"
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
+msgstr "Pokou¹ím se obnovit tabulku oddílù"
-#: ../../standalone/drakTermServ:1
-#, 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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
-" - Vytváří diskety a CD etherboot:\n"
-" \tBezdiskové klientské poÄítaÄe potÅ™ebují buÄ obrazy ROM na NIC, "
-"nebo zaváděcí disketu\n"
-" \tnebo CD, aby mohly spustit zaváděcí sekvenci. drakTermServ pomůže "
-"tyto zaváděcí obrazy generovat,\n"
-" \tv závislosti na NIC na klientském stroji.\n"
-" \t\n"
-" \tZákladní příklad ruÄního vytvoÅ™ení zavádÄ›cího obrazu diskety pro "
-"kartu 3Com 3c509:\n"
-" \t\n"
-" \tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "ISO image pro Etherboot je %s"
+#: ../../diskdrake/interactive.pm_.c:379
+msgid "Detailed information"
+msgstr "Podrobné informace"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) je doménový (DNS) server, který překládá hostitelská jména na "
-"IP adresy."
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "Zmìnit velikost"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr "Svatá Lucie"
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "Pøesunout"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "Listopad"
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "Formátovat"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
-msgstr "Odpojit..."
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "Pøidat do RAIDu"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Report"
-msgstr "Hlášení"
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "Pøidat do LVMu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr "Palau"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "Odebrat z RAIDu"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "úroveň"
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "Odebrat z LVMu"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr ""
-"Všechny incidenty budou sledovány vyhrazeným kvalifikovaným technickým "
-"expertem spoleÄnosti MandrakeSoft."
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "Zmìnit RAID"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "VýbÄ›r skupiny balíÄků"
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
+msgstr "Pou¾ít loopback"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Povolit konfiguraci\n"
-"lokálního hardware."
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "Vytvoøit nový oddíl"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Obnovit přes síť pomocí protokolu: %s"
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "Poèáteèní sektor: "
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr "Zde můžete nastavit každý z parametrů modulu."
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "Velikost v MB: "
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Vyberte si rozlišení a barevnou hloubku"
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "Souborový systém: "
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
-msgstr "Emulovat tÅ™etí tlaÄítko?"
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Nastavení: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:481
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 ""
-"Nemůžete vytvořit nový oddíl\n"
-"(protože jste již dosáhli maximálního poÄtu primárních oddílů).\n"
-"Nejprve odstraňte některý primární oddíl a vytvořte oddíl rozšířený."
+"Nemù¾ete vytvoøit nový oddíl\n"
+"(proto¾e jste ji¾ dosáhli maximálního poètu primárních oddílù).\n"
+"Nejprve odstraòte nìkterý primární oddíl a vytvoøte oddíl roz¹íøený."
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr "Připojit"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Vytvářím disketu pro automatickou instalaci"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Install updates"
-msgstr "Aktualizace systému"
+#: ../../diskdrake/interactive.pm_.c:511
+msgid "Remove the loopback file?"
+msgstr "Odstranit soubor loopbacku?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
-msgstr "výška textového boxu"
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "Zmìnit typ oddílu"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "State"
-msgstr "Stav"
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+msgid "Which filesystem do you want?"
+msgstr "Který souborový systém chcete pou¾ít?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Zkontrolujte, zda v je zařízení %s vloženo médium"
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
+msgstr "Pøepínám z ext2 na ext3"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Enable multiple profiles"
-msgstr "Povolit více profilů"
+msgid "Where do you want to mount loopback file %s?"
+msgstr "Kam chcete pøipojit loopback %s?"
-#: ../../fs.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr ""
-"Neinterpretovat speciální znaková Äi bloková zařízení na souborovém systému."
+msgid "Where do you want to mount device %s?"
+msgstr "Kam chcete pøipojit zaøízení %s?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr "Tato volba zazálohuje a obnoví všechny soubory v adresáři /etc.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Local printer"
-msgstr "Místní tiskárna"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Files Restored..."
-msgstr "Soubory obnoveny..."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
-msgstr "VýbÄ›r balíÄků"
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
+msgstr ""
+"Nemù¾u smazat pøípojný bod, proto¾e tento oddíl je pou¾íván pro loopback.\n"
+"Odstraòte nejprve loopback"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:606
#, c-format
-msgid "Mauritania"
-msgstr "Mauretánie"
+msgid "Where do you want to mount %s?"
+msgstr "Kam chcete pøipojit %s?"
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
-"Mohu zachovat souÄasné nastavení a pÅ™edpokládat, že máte již nastavený DHCP "
-"server; v takovém případě ověřte, že je správně převzato nastavení sítě "
-"odpovídající vaší lokální síti; nebude v něm provedena žádná změna a nebude "
-"ani změněno nastavení DHCP serveru.\n"
-"\n"
-"Výchozí záznam DNS je vyrovnávací jmenný server (caching nameserver) "
-"nastavený na vašem firewallu. Tento záznam lze nahradit například IP adresou "
-"vašeho poskytovatele připojení k Internetu.\n"
-"\n"
-"Jinak mohu změnit jak rozhraní, tak také přenastavit DHCP server podle "
-"potřeby.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "Poèítám hranice souborového systému fat"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Lokální tiskárna nenalezena! Pro ruÄní instalaci tiskárny zadejte název "
-"zařízení/souboru do políÄka (Paralelní porty: /dev/lp0, /dev/lp1,... jsou "
-"ekvivalentní LPT1:, LPT2:, ...,první USB tiskárna: /dev/usb/lp0, druhá USB "
-"tiskárna: /dev/usb/lp1,...)."
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "Mìním velikost"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All primary partitions are used"
-msgstr "Všechny primární oddíly (partitions) jsou používány"
+#: ../../diskdrake/interactive.pm_.c:662
+msgid "This partition is not resizeable"
+msgstr "Na tomto diskovém oddílu nelze mìnit velikost"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "LPD server \"%s\", tiskárna \"%s\""
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
+msgstr "V¹echna data z tohoto oddílu by mìla být zálohována"
-#: ../../network/netconnect.pm:1
+#: ../../diskdrake/interactive.pm_.c:669
#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"DoporuÄujeme po tomto kroku restartovat X Window,\n"
-"aby se pÅ™edeÅ¡lo problémům se zmÄ›nou názvu poÄítaÄe."
+msgid "After resizing partition %s, all data on this partition will be lost"
+msgstr "Kdy¾ zmìníte velikost oddílu %s, ztratíte tím v¹echna jeho data"
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Automatická detekce a konfigurace hardware při spuštění."
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "Zvolte novou velikost"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation Server Configuration"
-msgstr "Nastavení pro instalaci serveru"
+#: ../../diskdrake/interactive.pm_.c:675
+msgid "New size in MB: "
+msgstr "Nová velikost v MB: "
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "Nastavuji IDE"
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "Na který disk chcete oddíl pøesunout?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Síť není nastavena"
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "Sektor"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Configure module"
-msgstr "Nastavit modul"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "Na který sektor chcete oddíl pøesunout?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "Kokosové ostrovy (Keeling Islands)"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "Pøesouvám"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Aby se zmÄ›ny uplatnily budete muset restartovat poÄítaÄ"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "Pøesouvám oddíl..."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
-msgstr "Telefonní Äíslo poskytovatele"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr "Zvolte existující RAID pro pøidání"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Host %s"
-msgstr "PoÄítaÄ %s"
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "nový"
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
-msgstr "Fidži"
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
+msgstr "Zvolte existující LVM pro pøidání"
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
-msgstr "Arménie"
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
+msgstr "Název pro LVM?"
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "druhé mechaniky"
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
+msgstr "Tento oddíl nemù¾e být pou¾it pro loopback"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
-msgstr "O aplikaci HardDrake"
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
+msgstr "Loopback"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
-msgstr "Autorizovat TCP spojení do X Window"
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
+msgstr "Název souboru loopbacku:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr "Kapacita zařízení"
+#: ../../diskdrake/interactive.pm_.c:831
+msgid "Give a file name"
+msgstr "Zadejte název souboru"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Vložte disketu do mechaniky\n"
-"Všechna data na této disketě budou smazána"
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
+msgstr "Soubor u¾ je pou¾íván jiným loopbackem, zvolte si jiný"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "Velikost: %s"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
+msgstr "Soubor u¾ existuje. Mám ho pou¾ít?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Control a Shift souÄasnÄ›"
+#: ../../diskdrake/interactive.pm_.c:858
+msgid "Mount options"
+msgstr "Volby pro pøipojení"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "secondary"
-msgstr "sekundární"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
+msgstr "Dal¹í"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Prohlédnout konfiguraci zálohy."
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "zaøízení"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr "pokud je nastaveno, posílá výstup kontroly do syslogu."
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "úroveò"
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "Bez hesla"
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "Velikost bloku (chunk)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nigeria"
-msgstr "Nigérie"
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
+msgstr "Buïte opatrní: tato akce je nebezpeèná."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s vyžaduje název poÄítaÄe...\n"
+#: ../../diskdrake/interactive.pm_.c:962
+msgid "What type of partitioning?"
+msgstr "Jaký typ diskového oddílu?"
-#: ../../install_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:978
#, c-format
-msgid "There is no existing partition to use"
-msgstr "Není zde žádný existující oddíl k použití"
+msgid "The package %s is needed. Install it?"
+msgstr "Balíèek %s musí být nainstalován. Chcete ho nainstalovat?"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:992
msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
-"V tomto poÄítaÄi jsou dostupné skenery\n"
-"\n"
-"%s\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "MultifunkÄní zařízení na paralelním portu #%s"
+"Promiòte, nemù¾u povolit vytvoøení /boot tak daleko na disku (na cylindru > "
+"1024).\n"
+"Buïto pou¾ijete LILO a nebude to fungovat, nebo nepou¾ijete LILO a tedy "
+"nepotøebujete /boot"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:996
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."
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-"Abyste mohli tisknout na TCP nebo soketové tiskárně, musíte zadat název nebo "
-"IP adresu tiskárny a volitelnÄ› i Äíslo portu (výchozí je 9100). V případÄ› "
-"serverů HP JetDirect je Äíslo portu obvykle 9100, u jiných serverů může být "
-"jiné. Podívejte se do manuálu k vašemu hardware."
+"Oddíl který jste zvolili jako koøenový (root - /) je na disku fyzicky "
+"umístìný za cylindrem 1024,\n"
+"a pøitom nemáte /boot oddíl. Jestli chcete pou¾ít správce bootu LILO (boot "
+"manager),\n"
+"pøidejte je¹tì /boot oddíl"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Hard drive information"
-msgstr "Informace o pevném disku"
+#: ../../diskdrake/interactive.pm_.c:1002
+msgid ""
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
+msgstr ""
+"Zvolili jste softwarovou RAID oddíl jako koøenový oddíl (/).\n"
+"S tím se není schopný vypoøádat ¾ádný zavádìcí program bez pou¾ití oddílu\n"
+"/boot. Ujistìte se prosím, ¾e tento oddíl máte."
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid "Russian"
-msgstr "Ruské"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "Bude zapsána nová tabulka oddílù na disku %s!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Jordan"
-msgstr "Jordán"
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
+msgstr "Aby se zmìny uplatnily budete muset restartovat poèítaè"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1037
#, c-format
-msgid "Hide files"
-msgstr "Schovat soubory"
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr "Kdy¾ naformátujete oddíl %s, ztratíte tím v¹echna jeho data"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Automaticky nalézt tiskárny pÅ™ipojené k tomuto poÄítaÄi"
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "Formátuji"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "Bohužel není dostupná žádná disketová mechanika"
+msgid "Formatting loopback file %s"
+msgstr "Formátuji soubor loopbacku %s"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "Bolivia"
-msgstr "Bolívie"
+msgid "Formatting partition %s"
+msgstr "Formátuji oddíl %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Nastavit na serveru s Windows tiskárnu, která bude přístupná pomocí IPP "
-"protokolu a nastavit tisk z tohoto poÄítaÄe pomocí spojení \"%s\" v aplikaci "
-"PrinterDrake.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Hide files"
+msgstr "Schovat soubory"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "Å patný balíÄek"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Move files to the new partition"
+msgstr "Pøesunout soubory na nový diskový oddíl"
-#: ../advertising/07-server.pl:1
+#: ../../diskdrake/interactive.pm_.c:1053
#, 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!"
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-"Váš poÄítaÄ lze nÄ›kolika klepnutími myÅ¡i zmÄ›nit na velmi výkonný Linuxový "
-"server: webový server, poštovní server, firewall, router, souborový a "
-"tiskový server, ..."
+"Adresáø %s ji¾ obsahuje nìjaká data\n"
+"(%s)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "DrakSec Basic Options"
-msgstr "Základní volby programu DrakSec"
+#: ../../diskdrake/interactive.pm_.c:1064
+msgid "Moving files to the new partition"
+msgstr "Pøesunuji soubory na nový diskový oddíl"
-#: ../../standalone/draksound:1
+#: ../../diskdrake/interactive.pm_.c:1068
#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Pozn: Pokud máte PnP zvukovou kartu na ISA, použijte program sndconfig. "
-"Spustíte ho příkazem \"sndconfig\" v konzoli."
+msgid "Copying %s"
+msgstr "Kopíruji %s"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1072
#, c-format
-msgid "Romania"
-msgstr "Rumunsko"
+msgid "Removing %s"
+msgstr "Odstraòuji %s"
-#: ../../standalone/drakperm:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid "Group"
-msgstr "Skupina"
+msgid "partition %s is now known as %s"
+msgstr "oddíl %s je nyní rozpoznán jako %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Canada"
-msgstr "Kanada"
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "Zaøízení: "
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "choose device"
-msgstr "vyberte zařízení"
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "Písmeno v DOSu: %s (jenom odhad)\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from LVM"
-msgstr "Odebrat z LVMu"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "Typ: "
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Timezone"
-msgstr "Časová zóna"
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "Jméno: "
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "German"
-msgstr "Německé"
+msgid "Start: sector %s\n"
+msgstr "Zaèátek: sektor %s\n"
-#: ../../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
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "Next ->"
-msgstr "Další ->"
+msgid "Size: %s"
+msgstr "Velikost: %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid ""
-"Turning on this allows to print plain text files in japanese language. Only "
-"use this function if you really want to print text in japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Tato volba dovoluje tisk textových souborů v japonštině. Použijte tuto "
-"funkci pouze pokud opravdu potřebujete tisknout v japonštině, pokud je "
-"zvolena, nelze už tisknout národní znaky v latince a nelze nastavovat "
-"okraje, velikost fontů, atd. Toto nastavení se týká pouze tiskáren "
-"definovaných na tomto poÄítaÄi. Pokud chcete tisknout japonské texty na "
-"vzdálené tiskárnÄ›, musíte tuto funkci aktivovat na vzdáleném poÄítaÄi."
+msgid ", %s sectors"
+msgstr ", %s sektorù"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Tento oddíl je oddíl\n"
-"s ovladaÄi, je lepší\n"
-"no nechat neporušený.\n"
+msgid "Cylinder %d to %d\n"
+msgstr "Od cylindru %d do cylindru %d\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "Naformátovaný\n"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Horizontální(řádková) synchronizace"
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "Nenaformátovaný\n"
+
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
+msgstr "Pøipojený\n"
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Edit"
-msgstr "Upravit"
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, c-format
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+"Loopback file(s):\n"
+" %s\n"
msgstr ""
-"Nemůžu smazat přípojný bod, protože tento oddíl je používán pro loopback.\n"
-"Odstraňte nejprve loopback"
+"Loopback soubor(y): \n"
+" %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1132
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\""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"Nastavení sítě provedené při instalaci nelze nyní aktivovat. Zkontrolujte, "
-"zda je síť dostupná po spuštění systému a nastavení opravte v ovládacím "
-"centru Mandrake, v sekci \"Síť a Internet\"/\"Připojení\" a následně "
-"nastavte tiskárnu také v ovládacím centru v sekci \"Hardware\"/\"Tiskárna\""
+"Standardní startovací oddíl\n"
+" (Pro MS-DOS, ne pro LILO)\n"
-#: ../../harddrake/data.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "USB controllers"
-msgstr "USB kontrolér"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "What norm is your TV using?"
-msgstr "Jakou normu váš televizor používá?"
+msgid "Level %s\n"
+msgstr "Úroveò %s\n"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "Type:"
-msgstr "Typ:"
+msgid "Chunk size %s\n"
+msgstr "Velikost bloku(chunk) %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Share name"
-msgstr "Sdílené jméno"
+msgid "RAID-disks %s\n"
+msgstr "RAID disky %s\n"
-#: ../../standalone/drakgw:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "enable"
-msgstr "povolit"
+msgid "Loopback file name: %s"
+msgstr "Loopback soubor: %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-"Kontaktuji web Mandrake Linux pro získání seznamu dostupných zrcadel..."
+"\n"
+"Tento oddíl je oddíl\n"
+"s ovladaèi, je lep¹í\n"
+"no nechat neporu¹ený.\n"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"Vyskytl se problém při restartu sítě: \n"
"\n"
-"%s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove the loopback file?"
-msgstr "Odstranit soubor loopbacku?"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Velikost vybraných balíÄků je vÄ›tší než místo na disku"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP server name missing!"
-msgstr "Chybí název pro sdílení přes NCP!"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose your country."
-msgstr "Vyberte si prosím svoji zem."
+"Tento speciální Boostrap\n"
+"oddíl je pro spu¹tìní\n"
+"dal¹ího systému.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Záložní soubory pevného disku..."
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
+msgstr "Pouze pro ètení"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid "Laotian"
-msgstr "Laoské"
+msgid "Size: %s\n"
+msgstr "Velikost: %s\n"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "Samoa"
-msgstr "Samoa"
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Geometrie: %s cylindrù, %s hlav, %s sektorù\n"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Protokol rstat umožňuje uživatelům sítě sledovat vytížení jednotlivých\n"
-"strojů připojených k síti."
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
+msgstr "Informace: "
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid "Re-generating list of configured scanners ..."
-msgstr "Znovu generuji seznam nastavených skenerů..."
+msgid "LVM-disks %s\n"
+msgstr "LVM disky %s\n"
-#: ../../modules/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid "Module configuration"
-msgstr "Nastavení modulu"
+msgid "Partition table type: %s\n"
+msgstr "Typ tabulky oddílù: %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../diskdrake/interactive.pm_.c:1169
#, c-format
-msgid "Scanner"
-msgstr "Skener"
+msgid "on channel %d id %d\n"
+msgstr "na kanále %d id %d\n"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Varování: test na této grafické kartÄ› může způsobit zatuhnutí poÄítaÄe"
+#: ../../diskdrake/interactive.pm_.c:1199
+msgid "Filesystem encryption key"
+msgstr "Klíè pro kryptovaný souborový systém"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "Uživatelské jméno může obsahovat pouze malá písmena, Äísla, '-' a '_'"
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
+msgstr "Vyberte si kryptovací klíè pro souborový systém"
-#: ../../standalone/drakbug:1
+#: ../../diskdrake/interactive.pm_.c:1203
#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
+msgid "This encryption key is too simple (must be at least %d characters long)"
+msgstr "Tento klíè je pøíli¹ jednoduchý (musí být alespoò %d znakù dlouhý)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "Dveře dokořán"
+#: ../../diskdrake/interactive.pm_.c:1204
+msgid "The encryption keys do not match"
+msgstr "Kryptovací klíèe se neshodují"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "Volby modulu:"
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
+msgstr "Kryptovací klíè"
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
-msgstr "ZabezpeÄte vaÅ¡e sítÄ› s produktem Multi Network Firewall"
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
+msgstr "Kryptovací klíè (znovu)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "PokraÄovat bez nastavení sítÄ›"
+#: ../../diskdrake/removable.pm_.c:47
+msgid "Change type"
+msgstr "Zmìnit typ"
-#: ../../network/isdn.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "Abort"
-msgstr "Přerušit"
+msgid "Can't login using username %s (bad password?)"
+msgstr "Nelze se pøihlásit pod u¾ivatelským jménem %s (chybné heslo?)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "Žádná výzva na heslo na %s na portu %s"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Vy¾adováno Ovìøení Domény"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse s emulací koleÄka"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Dal¹í"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Použití vzdálených skenerů"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Které u¾ivatelské jméno"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
+"Please enter your username, password and domain name to access this host."
msgstr ""
-"Váš diskový oddíl s Windows je příliÅ¡ fragmentován. Restartujte poÄítaÄ do "
-"systému Windows, použijte program 'defrag' a potom spusťte opět instalaci."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvořák (Norské)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Průběh zálohování na pevný disk... "
+"Prosím zadejte své u¾ivatelské jméno, heslo a název domény, pod kterými "
+"chcete pøistupovat k tomuto poèítaèi."
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Nelze provést fork: %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "Typ: "
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Upravit klienta"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+msgid "Username"
+msgstr "U¾ivatelské jméno"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "no fonts found"
-msgstr "nebyly nalezeny žádné fonty"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Doména"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Mouse"
-msgstr "Myš"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+msgid "Search servers"
+msgstr "Vyhledat servery"
-#: ../../bootloader.pm:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "not enough room in /boot"
-msgstr "není dost místa v adresáři /boot"
+msgid "%s formatting of %s failed"
+msgstr "%s formátování %s skonèilo chybou"
-#: ../../install_steps_gtk.pm:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "trying to promote %s"
-msgstr ""
+msgid "I don't know how to format %s in type %s"
+msgstr "nevím jak naformátovat %s na typ %s"
-#: ../../lang.pm:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "Liechtenstein"
-msgstr "Lichtenštejnsko"
+msgid "mounting partition %s in directory %s failed"
+msgstr "pøipojení oddílu %s v adresáøi %s selhalo"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid "Host name"
-msgstr "Název poÄítaÄe"
+msgid "error unmounting %s: %s"
+msgstr "chyba odpojování %s: %s"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the color of the progress bar"
-msgstr "barva lišty s průběhem"
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "jednoduchý"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Ignorovat soubory s fonty"
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
+msgstr "s /usr"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to RAID"
-msgstr "Přidat do RAIDu"
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "server"
-#: ../../help.pm:1
+#: ../../fsedit.pm_.c:240
#, c-format
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"
+"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"
-" * 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."
+"Do you agree to loose all the partitions?\n"
msgstr ""
-"Pro Yaboot, pro další operaÄní systémy, pro alternativní jádra nebo pro\n"
-"záchranný disk lze zde zadat další parametry.\n"
-"\n"
-"Pro jiné OS je možné zadat pouze název a hlavní oddíl.\n"
-"\n"
-"Pro Linux je několik dalších možností:\n"
-"\n"
-" * Jmenovka: je to jednoduchý název, které můžete napsat do příkazového\n"
-"řádku pro Yaboot pro zvolení daného systému.\n"
-"\n"
-" * Obraz: je to jméno jádra, ze kterého se spustí systém. Typicky je to "
-"vmlinux\n"
-"Äi obdoba slova vmlinux s příponami.\n"
-"\n"
-" * Root: kořenové zařízení \"/\" při instalaci Linuxu.\n"
-"\n"
-" * PÅ™idat volby: na poÄítaÄích Apple potÅ™ebuje jádro další parametry, aby "
-"se\n"
-"správnÄ› nastavil hardware pro video, Äi provedla emulace tlaÄítek myÅ¡i\n"
-"na klávesnici, protože myÅ¡ u poÄítaÄe Apple nemá druhé a tÅ™etí tlaÄítko.\n"
-"Zde jsou nějaké příklady:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: tato volba je urÄena moduly, které se musí nahrát do pamÄ›ti "
-"ještě\n"
-"dříve, než je přístupný spouÅ¡tÄ›cí oddíl, Äi v případÄ› opravy systému.\n"
-"\n"
-" * Velikost initrd: výchozí velikost ramdisku je 4,096 bytů. Pokud "
-"potřebujete\n"
-"větší velikost, zadejte sem potřebnou hodnotu.\n"
-"\n"
-" * Read-write: běžně je \"root\" oddíl připojen nejdříve v režimu pouze pro\n"
-"Ätení, aby se provedlo otestování systému pÅ™ed tím, než se použije pro bÄ›h.\n"
-"Zde je možné toto chování změnit.\n"
-"\n"
-" * Bez grafiky: grafické zařízení na poÄítaÄích Apple je nÄ›kdy "
-"problematické\n"
-"a tak je možné zadat tuto volbu a zvolit nativní podporu.\n"
+"Nemù¾u pøeèíst va¹i tabulku oddílù zaøízení %s, je pro mì pøíli¹ poru¹ená :"
+"(\n"
+"Mù¾u se pokusit pokraèovat v èi¹tìní ¹patných oddílù (V©ECHNA\n"
+"DATA budou ztracena!). Jiná mo¾nost je zakázat DrakX mìnit tabulku\n"
+"oddílù (chyba je %s)\n"
"\n"
-" * Výchozí: zvolí tuto položku jako výchozí pro výbÄ›r z nabídky, kdy staÄí\n"
-"pouze stisknout ENTER a spustí se. Tato položka je oznaÄena \"*\" a vÅ¡echny\n"
-"výbÄ›ry se zobrazí po stisknutí tlaÄítka [Tab]."
+"Souhlasíte s tím, ¾e pøíjdete o v¹echny oddíly?\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr ""
-"Tiskárna \"%s\" byla úspěšně přidána do Star Office/OpenOffice.org/GIMP."
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr "Nemù¾ete pou¾ít JFS pro oddíl men¹í ne¾ 16MB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Není dostupná žádná disketová mechanika!"
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "Nemù¾ete pou¾ít ReiserFS pro oddíl men¹í ne¾ 32MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"VÅ¡echny možnosti dostupné pro souÄasnou tiskárnu jsou vypsány níže, nebo "
-"klepnÄ›te na tlaÄítko \"Možnosti tiskárny\".%s%s%s\n"
-"\n"
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
+msgstr "Pøípojné body (mount points) musí zaèínat '/'"
-#: ../../lang.pm:1
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "Saudi Arabia"
-msgstr "Saudská Arábie"
+msgid "There is already a partition with mount point %s\n"
+msgstr "Oddíl s pøípojným bodem %s u¾ existuje\n"
-#: ../../services.pm:1
+#: ../../fsedit.pm_.c:526
#, c-format
-msgid "Internet"
-msgstr "Internet"
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr "Nelze pou¾ít LVM Logického disku na pøipojený bod %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "PÅ™esto chcete pokraÄovat?"
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
+msgstr "Tento adresáø musí kromì koøenového souborového systému zùstat"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:530
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Pokud není tiskárna v seznamu, vyberte kompatibilní nebo podobný model "
-"(podívejte se do manuálu)"
+"Pro tento pøípojný bod potøebujete opravdový souborový systém (ext2/ext3, "
+"ReiserFS, XFS nebo JFS)\n"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:532
#, c-format
-msgid "Printer"
-msgstr "Tiskárna"
+msgid "You can't use an encrypted file system for mount point %s"
+msgstr "Nelze pou¾ít kryptovaný souborový systém na pøipojený bod %s"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices were added:\n"
-msgstr "Byla přidána některá zařízení:\n"
+#: ../../fsedit.pm_.c:599
+msgid "Not enough free space for auto-allocating"
+msgstr "Není dostatek místa pro automatické rozdìlení disku"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometrie: %s cylindrů, %s hlav, %s sektorů\n"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
+msgstr "Nic nedìlat"
-#: ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:694
#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Tisknu na tiskárnu \"%s\""
+msgid "Error opening %s for writing: %s"
+msgstr "Chyba pøi otevírání %s pro zápis: %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr "/etc/hosts.allow a /etc/hosts.deny jsou již nastaveny - beze změn"
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Tape"
-msgstr "Obnovit z pásky"
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
+msgstr "Bez alternativního ovladaèe"
-#: ../../standalone/drakbug:1
+#: ../../harddrake/sound.pm_.c:171
#, 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's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-"Chcete-li poslat hlášení o chybÄ›, klepnÄ›te na tlaÄítko pro nahlášení chyby, "
-"které otevře\n"
-"okno prohlížeÄe na adrese, kde budete moci nahrát report výše uvedené chyby."
+"Pro va¹i zvukovou kartu (%s), která nyní pou¾ívá ovladaè \"%s\", není ¾ádný "
+"známý OSS/ALSA alternativní ovladaè."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the profile to configure"
-msgstr "Zvolte profil pro nastavení"
+#: ../../harddrake/sound.pm_.c:173
+msgid "Sound configuration"
+msgstr "Nastavení zvuku"
-#: ../../security/l10n.pm:1
+#: ../../harddrake/sound.pm_.c:174
#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
-msgstr "Minimální délka hesla a poÄet Äíslic a velkých písmen"
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
+msgstr ""
+"Zde si pro va¹i zvukovou (%s) kartu mù¾ete vybrat alternativní ovladaè (buï "
+"OSS nebo ALSA)"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../harddrake/sound.pm_.c:176
#, c-format
msgid ""
"\n"
"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
"\n"
"\n"
-"Pokud nechcete použít výchozí zvolený název,\n"
-"zadejte název poÄítaÄe pro Zeroconf bez teÄek."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Zálohovat z konfiguraÄního souboru"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr "Název přípojného bodu může obsahovat pouze písmena a Äíslice"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Restartuji tiskový systém ..."
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr ""
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "Ukázat informace o hardware"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
-msgstr "den"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr "První sektor zaváděcího diskového oddílu"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Výrobce tiskárny, model"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Tisk bez ukládání do fronty"
-
-#: ../../standalone.pm:1
-#, 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)"
-msgstr ""
-"[VOLBY]\n"
-"Nastavení pro Mandrake Terminal Server (MTS)\n"
-"--enable : povolí MTS\n"
-"--disable : zakáže MTS\n"
-"--start : spustí MTS\n"
-"--stop : ukonÄí MTS\n"
-"--adduser : přidá existujícího uživatele do MTS (vyžaduje jméno "
-"uživatele)\n"
-"--deluser : odebere existujícího uživatele z MTS (vyžaduje jméno "
-"uživatele)\n"
-"--addclient : přidá klienta do MTS (vyžaduje MAC adresu, IP, název nbi "
-"obrazu)\n"
-"--delclient : odebere klienta z MTS (vyžaduje MAC address, IP, název "
-"nbi obrazu)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Maska podsítě:"
+"Va¹e karta nyní pou¾ívá ovladaè %s\"%s\" (výchozí ovladaè pro va¹i kartu je "
+"\"%s\")"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Set password expiration and account inactivation delays"
-msgstr "Nastavit expiraci hesla a prodlevu pÅ™ed deaktivací uživatelského úÄtu"
+#: ../../harddrake/sound.pm_.c:178
+msgid "Driver:"
+msgstr "Ovladaè:"
+
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+msgid "Help"
+msgstr "Nápovìda"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Zatížení"
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
+msgstr "Pøepínám mezi nápovìdou pro ALSA a OSS"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
+#: ../../harddrake/sound.pm_.c:186
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"
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Dva rozhodující parametry jsou: vertikální synchronizaÄní frekvence, což je\n"
-"frekvence, kterou je obnovována celá obrazovka, a frekvence řádkové\n"
-" synchronizace (horiz. sync. rate), což je frekvence jakou jsou zobrazovány\n"
-"jednotlivé mikrořádky (scanline).\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
-"Je VELMI DŮLEŽITÉ abyste nezvolili typ monitoru se schopnostmi vyššími než "
-"má\n"
-"váš monitor, protože byste si ho tím mohli poškodit. Jestliže si nejste "
-"jistí\n"
-"zvolte raději typ s nižšími schopnostmi."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
-msgstr "Změnit"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"It also provides a much higher API than OSS.\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"
+"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 ""
+"OSS (Open Source Sound) bylo první API pro zvuk. Nebo to API nezávislé na OS "
+"(je dostupné ve více unixových systémech), ale má pouze základní funkce a "
+"omezení API.\n"
+"A co více, v¹echny OSS ovladaèe \"vynalézají znovu kolo\".\n"
"\n"
-"Příkazy \"%s\" a \"%s\" dovolují měnit volby pro každou tiskovou úlohu. "
-"Jednoduše zadejte potřebné nastavení do příkazové řádky, např. \"%s <soubor>"
-"\".\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "PotÅ™ebuji název poÄítaÄe, uživatelské jméno a heslo!"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Insert floppy"
-msgstr "Vložte disketu"
+"ALSA (Advanced Linux Sound Architecture) je modulární architektura, která "
+"která podporuje daleko více ISA, USB a PCI karet.\n"
+"\n"
+"Také poskytuje daleko lep¹í API ne¾ OSS.\n"
+"\n"
+"Pokud chcete pou¾ít alsa ovladaèe, mù¾ete pou¾ít dva re¾imy:\n"
+"- star¹í re¾im kompatibility s OSS API\n"
+"- nové ALSA API, které poskytuje daleko více mo¾ností, ale vy¾aduje pou¾ít "
+"knihovnu ALSA.\n"
-#: ../../diskdrake/dav.pm:1
+#: ../../harddrake/sound.pm_.c:202
#, 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\"."
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-"WebDAV je protokol, který umožňuje připojit webový adresář jako lokální, "
-"který\n"
-"se potom tváří jako lokální souborový systém (takový webový server musí "
-"být)\n"
-"nastaven jako WebDAV server). Pokud chcete přidat WebDAV připojení, vyberte\n"
-"položku \"Nový\"."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
-msgstr "nový"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable syslog reports to console 12"
-msgstr "Povolí/zakáže report syslogu zobrazovat na konzoli Ä. 12"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Chcete to zkusit znovu?"
+"Star¹í ovladaè \"%s\" je na èerné listinì.\n"
+"\n"
+"Bylo u nìj zji¹tìno, ¾e pøi odebrání zpùsobí pád jádra.\n"
+"\n"
+"Pøi dal¹ím spu¹tìní bude pou¾it pouze nový ovladaè \"%s\" "
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "Průvodce"
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+msgid "Please Wait... Applying the configuration"
+msgstr "Èekejte prosím... Aktivuji konfiguraci"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected server"
-msgstr "Upravit vybraný server"
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "Prosím poèkejte"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Vyberte si, prosím, kam chcete zálohovat."
+#: ../../harddrake/sound.pm_.c:210
+msgid "No known driver"
+msgstr "Není rozpoznán ¾ádný ovladaè"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Aby se projevily zmÄ›ny v tabulce oddílů, musíte restartovat poÄítaÄ"
+msgid "There's no known driver for your sound card (%s)"
+msgstr "Pro va¹i zvukovou kartu (%s) není ¾ádný známý ovladaè"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Nezahrnout cache prohlížeÄe"
+#: ../../harddrake/sound.pm_.c:214
+msgid "Unkown driver"
+msgstr "Neznámý ovladaè"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, c-format
msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-"Selhala kontrola souborového systému %s. Chcete opravit chyby? (pozor, může "
-"dojít ke ztrátě dat)"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Jaké je rozložení vaší klávesnice?"
-
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "Standardní"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Vyberte si typ vaši myši."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
-msgstr "Připojit..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Nastavení tiskárny \"%s\" selhalo!"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "not configured"
-msgstr "nenastaveno"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "About"
-msgstr "O aplikaci"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "Nastavení proxy"
+"Ovladaè pro zvukovou kartu \"%s\" není na seznamu\n"
+"\n"
+"Za¹lete prosím výstup z pøíkazu \"lspcidrake -v\" na\n"
+"adresu <install at mandrakesoft dot com>\n"
+"s pøedmìtem: unlisted sound driver \"%s\""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "ZaÄátek: sektor %s\n"
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+msgid "Auto-detect"
+msgstr "Autodetekce"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Mask"
-msgstr "Bez masky"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+msgid "Unknown|Generic"
+msgstr "Neznámá|Obecná"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface already configured"
-msgstr "Síťové rozhraní je již nastaveno"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Neznámá|CPH05X (bt878) [více dodavatelù]"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
-msgstr "Nelze pracovat s disketou!"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Neznámá|CPH06X (bt878) [více dodavatelù]"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
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."
+"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 ""
-"Varování: Svobodný Software nemusí být vždy nezávislé na patentech\n"
-"a některý Svobodný Software může být ve vaší zemi chráněn patentem.\n"
-"Například zahrnuté dekodéry pro MP3 mohou vyžadovat licenci pro další\n"
-"použití (více detailů najdete na http://www.mp3licensing.com). Pokud si\n"
-"nejste jisti, zda se na váz nevztahuje některý patent, zkontrolujte to\n"
-"s místními právníky."
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Mail Server"
-msgstr "Poštovní server"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "Prosím klepněte na oddíl"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "MultifunkÄní zařízení na HP JetDirect"
+"Modul bttv jádra operaèního systému GNU/Linux nalezne správné parametry "
+"automaticky pro vìt¹inu moderních TV karet.\n"
+"Je-li va¹e karta ¹patnì detekována, lze nastavit správný typ karty a tuneru "
+"ruènì zde. Pokud je to potøeba, vyberte také parametry va¹í TV karty."
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
-msgstr "Přeji hezký den!"
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Upgrade %s"
-msgstr "Aktualizace %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Zvolte připojení tiskárny"
+#: ../../harddrake/v4l.pm_.c:227
+msgid "Card model:"
+msgstr "Model karty :"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
-msgstr "Probíhá vyhledávání TV kanálů ..."
+#: ../../harddrake/v4l.pm_.c:228
+msgid "Tuner type:"
+msgstr "Typ tuneru :"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"Chyba při posílání souboru přes FTP.\n"
-" Prosím opravte vaše nastavení FTP."
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
+msgstr "Poèet bufferù pro zachycení :"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr "IP rozsah od:"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "Poèet bufferù pro zachycení systémem mmap"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Internetový superserver démon (nazývaný inetd) spouští mnoho ostatních\n"
-"internetových služeb, tak jak jsou zapotřebí. Odpovídá za start např.\n"
-"telnetu, ftp, rsh a rlogin. Pokud vypnete inetd, vypnete tím i ostatní\n"
-"služby které spouští."
+#: ../../harddrake/v4l.pm_.c:231
+msgid "PLL setting:"
+msgstr "Nastavení PLL :"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
-msgstr "výška lišty s průběhem"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
+msgstr "Podpora rádia :"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
+msgstr "Zapnout podporu rádia"
+
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+"GNU/Linux je víceu¾ivatelský systém, co¾ znamená, ¾e ka¾dý u¾ivatel mù¾e\n"
+"mít své vlastní nastavení, soubory atd. Více se doètete v \"Pøíruèce "
+"u¾ivatele\".\n"
+"Na rozdíl od u¾ivatele root, který je správcem poèítaèe, u¾ivatelé, kteøí "
+"jsou\n"
+"zde vytvoøeni, nemají oprávnìní mìnit nic kromì svých vlastních souborù a\n"
+"nastavení. Doporuèuje se vytvoøit úèet pro minimálnì jednoho bì¾ného "
+"u¾ivatele.\n"
+"Tento úèet se pou¾ívá na v¹echny bì¾né úkoly. Aèkoliv je velmi praktické\n"
+"pøihla¹ovat se ka¾dý den jako u¾ivatel root, je to také velmi nebezpeèné!\n"
+"Jedna malá chyba mù¾e zpùsobit, ¾e celý operaèní systém ji¾ nebude funkèní.\n"
+"Pokud udìláte chybu jako normální u¾ivatel, mù¾ete pøijít pouze o své "
+"informace,\n"
+"ale nepo¹kodí se celý systém.\n"
+"\n"
+"Jako první zadejte va¹e skuteèné jméno. To není samozøejmì povinné - mù¾ete\n"
+"zadat co chcete. Aplikace DrakX pou¾ije první slovo jako u¾ivatelské jméno,\n"
+"pod kterým se bude u¾ivatel hlásit do systému, a pøedvyplní jej do políèka\n"
+"\"U¾ivatelské jméno\". To je mo¾né následnì zmìnit.\n"
+"Dále se zadává heslo pro u¾ivatele. Volba hesla pro normální u¾ivatele sice "
+"není\n"
+"z hlediska bezpeènosti tak kritická jako v pøípadì správce, ale i tak se "
+"doporuèuje\n"
+"ji nepodceòovat; koneckoncù, jde o zabezpeèení souborù tohoto u¾ivatele.\n"
+"\n"
+"Pokud kliknete na \"Pøidat u¾ivatele\", mù¾ete pøidávat u¾ivatelù, kolik\n"
+"potøebujete, napø. své pøátele, úèet pro otce èi sestru. Pokud máte v¹echny\n"
+"u¾ivatele vytvoøeny, kliknìte na tlaèítko \"Hotovo\". \n"
+"\n"
+"Kliknutím na tlaèítko \"Roz¹íøené\" mù¾ete pro nový úèet zmìnit shell, "
+"který\n"
+"bude u¾ivatel pou¾ívat (výchozí je bash)."
+
+#: ../../help.pm_.c:48
+msgid ""
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
"\n"
-"- Uložit pomocí %s na poÄítaÄ: %s\n"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "Argentina"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Domain Name Server"
-msgstr "Doménový server"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Level:"
-msgstr "Úroveň zabezpeÄení:"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr "Přípojné body (mount points) musí zaÄínat '/'"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Vyberte CD/DVD zařízení"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "CUPS server"
-msgstr "DNS server"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Poštovní server Postfix"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "Konec bez uložení"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "Jemen"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
-msgstr "Tento produkt je k dispozici na webových stránkách MandrakeStore."
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Je zde více voleb, ze kterých je možné si vybrat (%s).\n"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
-msgstr ""
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred:\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"
-"%s\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\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"
+" * \"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"
-"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."
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
msgstr ""
+"Ka¾dý oddíl vypsaný ní¾e má: \"Název\", \"Velikost\".\n"
+"\n"
+"\"Název\" je slo¾eno následovnì: \"typ pevného disku\", \"èíslo disku\",\n"
+"\"èíslo oddílu\". (napøíklad \"hda1\").\n"
+"\n"
+"Pokud máte IDE disky, pak je \"typ pevného disku\" \"hd\", pokud máte SCSI,\n"
+"oznaèení bude \"sd\".\n"
+"\n"
+"\"Èíslo disku\" je v¾dy písmeno za \"hd\" nebo \"sd\". Pro IDE disky je "
+"takto:\n"
+"\n"
+" * \"a\" znamená \"master disk na primárním IDE øadièi\",\n"
+"\n"
+" * \"b\" znamená \"slave disk na primárním IDE øadièi\",\n"
+"\n"
+" * \"c\" znamená \"master disk na sekundárním IDE øadièi\",\n"
+"\n"
+" * \"d\" znamená \"slave disk na sekundárním IDE øadièi\".\n"
+"\n"
+"Pro SCSI disky platí, ¾e \"a\" je \"nejmen¹í SCSI ID\", \"b\" je \"druhé\n"
+"nejmen¹í SCSI ID\" atd."
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "Detekce pevných disků"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../help.pm_.c:79
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
-"Nevybrali jste žádnou skupinu balíÄků\n"
-"Vyberte si prosím alespoň minimální instalaci"
+"Distribuce Mandrake Linux je slo¾ena z nìkolika CD. Instalaèní program ví,\n"
+"na kterém disku je umístìn jaký soubor a v pøípadì potøeby vysune CD a "
+"vy¾ádá\n"
+"si výmìnu CD za jiné."
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../help.pm_.c:84
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."
+"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"
+"you are not supposed to know them all by heart.\n"
+"\n"
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
+"\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
+"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
+"\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
+"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
+"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
+"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
+"\n"
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
-"Pro alcatel potřebujete speciální microcode.\n"
-"Můžete ho nyní nahrát z diskety, z windows oddílu\n"
-"nebo tento krok pÅ™eskoÄit a nahrát jej pozdÄ›ji."
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "Zadejte prosím URL serveru WebDAV"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "Tadžikistán"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "Přijmout"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "Popis"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter summary text."
-msgstr "Zadejte prosím souhrnný text."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Chyba při otevírání %s pro zápis: %s"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Typ myši: %s\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "S XFree %s může vaše karta využít 3D hardwarové akcelerace."
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "Zvolte typ monitoru"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "Prázdná znaÄka není povolena"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
-msgstr "Maltézské (UK)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "Nemůžu přidat žádný další oddíl"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "Velikost v MB: "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "Vzdálená tiskárna"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
-msgstr "Prosím zvolte si jazyk, který chcete používat."
+"V této chvíli je mo¾né vybrat, které programy chcete nainstalovat na vá¹ "
+"systém.\n"
+"Mandrake Linux obsahuje tisíce balíèkù s programy a urèitì nebudete\n"
+"znát a potøebovat v¹echny.\n"
+"\n"
+"Pokud instalujete standardnì z CD-ROM, budete nejprve dotázáni na to,\n"
+"jaká CD máte (pouze Expertní re¾im). Oznaète ty CD, která máte a která \n"
+"chcete pou¾ít pro instalaci. Po výbìru kliknìte na tlaèítko \"OK\" a budete\n"
+"pokraèovat.\n"
+"\n"
+"Balíèky jsou rozdìleny do skupin, které odpovídají tomu, jak je nejèastìji\n"
+"poèítaè pou¾íván. Skupiny samotné jsou umístìny do ètyø sekcí:\n"
+"\n"
+" * \"Pracovní stanice\": pokud plánujete pou¾ívat poèítaè pøevá¾nì na\n"
+"bì¾nou práci, vyberte si z dal¹ích skupin odpovídající balíèky.\n"
+"\n"
+" * \"Vývoj\": pokud budete na poèítaèi programovat, mù¾ete si z této\n"
+"sekce vybrat dal¹í skupiny.\n"
+"\n"
+" * \"Server\": pokud bude poèítaè provozován jako server, máte mo¾nost\n"
+"vybrat si ty nejbì¾nìj¹í slu¾by, které chcete nainstalovat.\n"
+"\n"
+" * \"Grafická prostøedí\": pokud preferujete grafické prostøedí, zde je\n"
+"nabídka nìkolika prostøedí, ze které si musíte vybrat nejménì jedno,\n"
+"aby bylo mo¾né grafické prostøedí nainstalovat.\n"
+"\n"
+"Pokud pøejedete my¹í nad skupinou, objeví se krátký text, který vysvìtluje,\n"
+"co je obsahem dané skupiny. Pokud nevyberete pøi instalaci ¾ádnou skupinu,\n"
+"zobrazí se otázka na instalaci nìkolika typù minimální instalace:\n"
+"\n"
+" * \"Podpora X\" Provede instalaci minimální podpory pro prostøedí X-"
+"Window.\n"
+"\n"
+" * \"Se základní dokumentací\" Nainstaluje systém se základními programy a\n"
+"jejich dokumentací. Tento typ je vhodný pro instalaci serveru.\n"
+"\n"
+" * \"Minimální instalace\" Nainstaluje se opravdu nezbytné minimum, aby "
+"bylo\n"
+"mo¾né provozovat Linux z pøíkazové øádky. Instalace zabere asi 65MB.\n"
+"\n"
+"Pokud zatrhnete volbu \"Vlastní výbìr balíèkù\", zobrazí se seznam v¹ech\n"
+"balíèkù, které je mo¾no nainstalovat. To je to u¾iteèné v pøípadì, ¾e "
+"chcete\n"
+"mít absolutní kontrolu nad tím, co se bude instalovat.\n"
+"\n"
+"Pokud jste spustili instalaci v re¾imu \"Aktualizace\", mù¾ete zru¹it výbìr\n"
+"daných skupin, èím¾ zabráníte instalaci nových balíèkù. To je u¾iteèné\n"
+"pro pøípad opravy nebo aktualizace existujícího systému."
-#: ../../network/network.pm:1
-#, c-format
+#: ../../help.pm_.c:135
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 ""
-"VAROVÃNÃ: Toto zařízení již bylo nastaveno pro pÅ™ipojení k Internetu.\n"
-"Pokud nic nezměníte, zachová se stávající nastavení zařízení.\n"
-"Úprava následujících položek přepíše toto nastavení."
-
-#: ../../any.pm:1
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
-msgstr ""
-"Můžu nastavit váš poÄítaÄ tak, aby automaticky pÅ™ihlásil vybraného uživatele."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Floppy format"
-msgstr "Formáty pro diskety"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Generic Printers"
-msgstr "Obecné tiskárny"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
+msgstr ""
+"V závislosti na tom, zda jste zvolili individuální výbìr balíèkù, se "
+"nabídne\n"
+"stromová struktura obsahující v¹echny balíèky organizované do skupin\n"
+"a podskupin. Pøi procházení stromu mù¾ete vybrat jednotlivé balíèky, "
+"podskupiny\n"
+"nebo celé skupiny.\n"
+"\n"
+"Pokud vyberete ze stromu balíèek, objeví se v pravé èásti popis.\n"
+"Pokud máte výbìr hotový, kliknìte na tlaèítko \"Instalovat\", které spustí\n"
+"instalaèní proces. Doba trvání instalace závisí poètu balíèkù a na "
+"rychlosti\n"
+"va¹eho poèítaèe, a mù¾e trvat del¹í dobu. Zbývající èas je zobrazován \n"
+"na obrazovce, tak¾e mù¾ete zkusit odhadnout, zda si stihnete dát ¹álek "
+"kávy. :-)\n"
+"\n"
+"Pokud se nachází mezi vybranými balíèky serverové programy, a» u¾ vybrané\n"
+"zámìrnì nebo jako souèást skupiny, zobrazí se dotaz na to,\n"
+"zda opravdu chcete tyto servery nainstalovat. V distribuci Mandrake Linux\n"
+"jsou tyto servery spu¹tìny pøi startu systému. I kdy¾ v dobì vydání "
+"distribuce\n"
+"nejsou známy ¾ádné bezpeènostní problémy, mohou se vyskytnout pozdìji.\n"
+"Pokud nevíte, k èemu jsou urèeny nìkteré serverové slu¾by, kliknìte na \"Ne"
+"\".\n"
+"Kliknutím na \"Ano\" se dané slu¾by nainstalují a automaticky spustí pøi "
+"startu!\n"
+"\n"
+"Volba \"Automatické závislosti\" vypne varovné hlá¹ení, které se objeví\n"
+"v¾dy, kdy¾ vyberete balíèek, který má dal¹í závislosti a instalaèní program\n"
+"musí vybrat dal¹í potøebné balíèky, aby instalace mohla probìhnout úspì¹nì.\n"
+"\n"
+"Malá ikonka diskety dole umo¾òuje nahrát ji¾ pøedem vybraný seznam balíèkù.\n"
+"Po kliknutí na ikonu budete dotázáni na vlo¾ení diskety, která byla "
+"vytvoøena na\n"
+"konci jiné instalace. Ve druhém tipu pøi posledním kroku najdete návod, jak "
+"si\n"
+"tuto disketu vytvoøit."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:171
msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-"Vyberte si tiskárnu, na kterou budou směrovány tiskové úlohy nebo zadejte do "
-"políÄka název zařízení/název souboru"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr "Skenery na tomto poÄítaÄi jsou přístupné i pro vzdálené poÄítaÄe"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of the root partition"
-msgstr "První sektor kořenového oddílu"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Alternative drivers"
-msgstr "Alternativní ovladaÄe"
+"V tomto kroku se provede nastavení pøipojení k Internetu/síti. Pokud chcete\n"
+"pøipojit svùj poèítaè k místní síti nebo k Internetu, klepnìte na \"OK\"\n"
+"a spustí se automatická detekce sí»ové karty nebo modemu. Pokud tato\n"
+"detekce sel¾e, od¹krtnìte pøi dal¹ím pokusu políèko \"Pou¾ít automatickou\n"
+"detekci\". Pokud nechcete sí» nastavit nebo to chcete provést pozdìji, "
+"jednodu¹e\n"
+"klepnìte na tlaèítko \"Zru¹it\".\n"
+"\n"
+"Mo¾né zpùsoby pøipojení jsou: tradièní modem, ISDN modem, pøipojení ADSL,\n"
+"kabelový modem, a koneènì jednoduché pøipojení do sítì LAN (Ethernet).\n"
+"\n"
+"V této chvíli nebudeme rozebírat podrobnosti jednotlivých nastavení. "
+"Ujistìte se ale,\n"
+"¾e máte v¹echny dostupné informace pro pøipojení od svého poskytovatele\n"
+"pøipojení nebo od správce sítì. \n"
+"\n"
+"Více informací naleznete v pøíslu¹né kapitole o pøipojení k Internetu v "
+"\"U¾ivatelské\n"
+"pøíruèce\", nebo mù¾ete poèkat, systém nyní jednodu¹e nainstalovat a "
+"pou¾ít \n"
+"programy pro nastavení pøipojení pozdìji.\n"
+"\n"
+"Pokud nemáte ¾ádné pøipojení k Internetu ani k místní síti, nebo chcete "
+"nastavit\n"
+"pøipojení k síti pozdìji po instalaci, klepnìte na tlaèítko \"Zru¹it\"."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:193
msgid ""
+"You may now choose which services you wish to start at boot time.\n"
"\n"
-"Please check all options that you need.\n"
-msgstr ""
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
"\n"
-"Zvolte prosím všechny volby, které potřebujete.\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
-msgstr "Cape Verde"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "Zda má cpu chybu Äárky Cyrix 6x86"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr "NaÄítám nastavení tiskárny... Äekejte prosím"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
-"První verze procesorů Pentium byly chybové a způsobovaly zatuhnutí při "
-"dekódování instrukce F00F"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr "Guam"
+"Nyní si zvolte, které slu¾by mají být spu¹tìny pøi startu poèítaèe.\n"
+"\n"
+"Je zde seznam v¹ech slu¾eb, které jsou aktuálnì nainstalovány.\n"
+"Prohlédnìte si seznam pozornì a zru¹te ty, které nepotøebujete spou¹tìt pøi\n"
+"startu poèítaèe.\n"
+"\n"
+"Pokud pøejedete my¹í nad nìkterou polo¾kou, objeví se malá nápovìda\n"
+"s popisem, co daná slu¾ba dìlá. Pokud pøesnì nevíte, zda je slu¾ba u¾iteèná\n"
+"nebo ne, je lep¹í ji nechat ve výchozím stavu.\n"
+"\n"
+"Rozva¾te, co za slu¾by spustit, zvlá¹tì pokud budete poèítaè provozovat\n"
+"jako server: nepotøebujete v¹echny slu¾by. Pamatujte, ¾e èím více slu¾eb\n"
+"je spu¹tìno, tím je vìt¹í nebezpeèí ne¾ádoucího proniknutí do poèítaèe.\n"
+"Tak¾e povolte opravdu jen ty slu¾by, které nezbytnì potøebujete."
+
+#: ../../help.pm_.c:210
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
+msgstr ""
+"GNU/Linux spravuje èas podle GMT (Greenwich Mean Time) a pøevádí ho na\n"
+"èas podle pøíslu¹né vybrané èasové zóny. Toto je mo¾né zru¹it odznaèením\n"
+"volby \"Hodiny nastaveny na GMT\" a tak budou systémové hodiny stejné jako\n"
+"hardwarové. To je u¾iteèné v pøípadì, ¾e je na poèítaèi jiný operaèní "
+"systém\n"
+"typu Windows.\n"
+"\n"
+"Volba \"Automatická synchronizace èasu\" provádí automatické nastavení "
+"hodin\n"
+"pomocí pøipojení k èasovému serveru na Internetu. Vyberte si v seznamu ten "
+"server,\n"
+"který je vám nejblí¾. Je samozøejmé, ¾e pro správnou funkci musíte mít "
+"fukèní\n"
+"pøipojení k Internetu. Na poèítaè se také nainstaluje èasový server, který\n"
+"mohou volitelnì pou¾ívat jiné poèítaèe ve va¹í lokální síti."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:224
msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Vyberte si port, ke kterému je tiskárna pÅ™ipojena nebo zadejte do políÄka "
-"název zařízení/název souboru"
+"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.\n"
+"\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
+msgstr ""
+"X Window System (zkrácenì X) je srdcem grafického rozhraní GNU/Linuxu,\n"
+"na kterém jsou provozovány v¹echny grafická prostøedí (KDE, Gnome, "
+"AfterStep,\n"
+"WindowMaker), která jsou dodávána se systémem Mandrake Linux. V této sekci "
+"se\n"
+"aplikace DrakX pokusí nastavit systém X automaticky.\n"
+"\n"
+"Existují vzácné pøípady, kdy se automatická detekce nezdaøí, zejména \n"
+"v pøípadech, kdy je daný hardware velmi starý, nebo velmi nový. Pokud se\n"
+"detekce podaøí, spustí se grafické prostøedí v nejlep¹ím mo¾ném rozli¹ení v "
+"závislosti\n"
+"na velikosti monitoru. Probìhne test, kdy se zobrazí okno s otázkou, zda je "
+"v¹e\n"
+"správnì zobrazeno.\n"
+"\n"
+"Pokud provádíte \"Expertní\" instalaci, spustí se prùvodce nastavením "
+"systému X.\n"
+"Více informací o tomto prùvodci naleznete v odpovídající sekci v manuálu.\n"
+"\n"
+"Pokud pøi testu nastavení uvidíte zprávu dobøe, a odpovíte \"Yes\", bude "
+"instalace\n"
+"pokraèovat dal¹ím krokem. Pokud nic neuvidíte, znamená to, ¾e automatické "
+"nastavení\n"
+"nebylo úspì¹né, test automaticky skonèí za 10 sekund a obnoví pùvodní "
+"obrazovku.\n"
+"Více informací o nastavení va¹eho displeje naleznete v sekci \"Nastavení "
+"videa\" va¹í\n"
+"u¾ivatelské pøíruèky."
+
+#: ../../help.pm_.c:246
+msgid ""
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
+msgstr ""
+"Poslední otázka je na to, zda chcete spustit grafické prostøedí pøi startu.\n"
+"Tato otázka se zobrazí i v pøípadì, ¾e nastavení pøedtím neotestujete.\n"
+"Je zøejmé, ¾e odpovíte \"Ne\" v pøípadì, ¾e poèítaè bude pracovat\n"
+"jako server nebo v pøípadì, ¾e se nepodaøilo správnì nastavit grafickou "
+"kartu."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/Volby/Test"
+#: ../../help.pm_.c:253
+msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
+msgstr ""
+"CDROM s distribucí Mandrake Linux má zabudovaný záchranný re¾im. Mù¾ete ho\n"
+"spustit pøímo pøi spu¹tìní z CD, kdy stisknete klávesu >>F1<< a na "
+"pøíkazový\n"
+"øádek napí¹ete >>rescue<<. Pokud poèítaè neumo¾òuje bootovat z CD, potom\n"
+"v tomto kroku najdete øe¹ení alespoò dvou následujících situací:\n"
+"\n"
+" * pøi instalaci zavádìcího programu pøepí¹e aplikace DrakX zavádìcí sektor\n"
+"(MBR) na hlavním pevném disku (pokud nepou¾íváte jiný zavádìcí program),\n"
+"aby umo¾nil start buï systému Windows nebo GNU/Linux (pokud máte Windows\n"
+"na poèítaèi nainstalovány). Pokud potøebujete Windows pøeinstalovat, "
+"instalaèní\n"
+"program spoleènosti Microsoft pøepí¹e zavádìcí sektor a nebudete tak mít "
+"mo¾nost\n"
+"spustit systém GNU/Linux!\n"
+"\n"
+" * pokud se objeví problémy a není mo¾né spustit systém GNU/Linux z pevného\n"
+"disku, je tato disketa jedinou mo¾ností, jak systém spustit. Obsahuje "
+"nìkolik\n"
+"základních systémových nástrojù pro obnovení systému pøí výpadku napájení,\n"
+"ne¹»astném pøeklepu, chybì v hesle, nebo z jiných dùvodù.\n"
+"\n"
+"Pokud zvolíte tento krok, musíte vlo¾it disketu do mechaniky. Disketa musí\n"
+"být prázdná, nebo na ní mohou být data, která ji¾ nepotøebujete. Disketa\n"
+"nemusí být formátována, aplikace DrakX pøepí¹e celý její obsah."
+
+#: ../../help.pm_.c:277
+msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft 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"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
+"\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
+msgstr ""
+"V tomto bodì si musíte definovat, na které diskové oddíly budete\n"
+"instalovat nový operaèní systém Mandrake Linux. Pokud je disk prázdný\n"
+"nebo existující operaèní systém pou¾ívá celý disk, je nutné ho rozdìlit.\n"
+"Rozdìlení disku spoèívá ve vytvoøení volného prostoru pro instalaci\n"
+"systému Mandrake Linux.\n"
+"\n"
+"Proto¾e rozdìlení disku je nenávratná operace, je to velmi nebezpeèná\n"
+"akce pro ty u¾ivatele, kteøí nemají ¾ádné zku¹enosti.\n"
+"Pro tyto u¾ivatele je dobrý prùvodce, který zjednodu¹í daný proces.\n"
+"Je¹tì pøed zapoèetím rozdìlování disku si proètìte manuál.\n"
+"\n"
+"Pokud máte zvolený Expertní re¾im, spustil se nástroj na práci s diskem\n"
+"DiskDrake, který umo¾òuje lépe nastavit diskové oddíly. Více informací\n"
+"naleznete v pøíslu¹né kapitole u¾ivatelské pøíruèky. Pokud chcete pou¾ít\n"
+"prùvodce, kliknìte na tlaèítko \"Prùvodce\".\n"
+"\n"
+"Pokud máte ji¾ vytvoøeny diskové oddíly z pøedchozích instalací nebo\n"
+"od jiných diskových nástrojù, lze je nyní pou¾ít pro instalaci tohoto\n"
+"systému Linux.\n"
+"\n"
+"Pokud nejsou definovány ¾ádné diskové oddíly, je nutné je vytvoøit.\n"
+"K tomu slou¾í prùvodce, který nabídne nìkolik øe¹ení:\n"
+"\n"
+" * \"Pou¾ít volný prostor\": takto se jednodu¹e automaticky disk(y) rozdìlí\n"
+"a ji¾ se o nic nemusíte starat.\n"
+"\n"
+" * \"Pou¾ít existující oddíly\": prùvodce detekoval jeden nebo více "
+"existujících\n"
+"Linuxových oddílù a ty nabídne pro instalaci. Budete muset definovat ke "
+"ka¾dému\n"
+"oddílu pøípojný bod. Pùvodní pøípojné body jsou pøedvyplnìny, a obvykle "
+"byste\n"
+"je mìli ponechat.\n"
+"\n"
+" * \"Pou¾ít volné místo na oddílu s Windows\": pokud máte na disku\n"
+"nainstalovány Microsoft Windows a tyto zabírají celý disk, je mo¾né tento "
+"prostor\n"
+"zmen¹it a pou¾ít ho pro instalaci. Oddíl lze také vymazat a tím ztratit data "
+"(viz volby\n"
+"\"Smazat celý disk\" a \"Expertní re¾im\"). Zmìna velikosti oddílu je "
+"provedena\n"
+"bez ztráty dat a je mo¾ná, pokud jste pøedtím tento oddíl ve Windows "
+"defragmentovali.\n"
+"Také neu¹kodí zazálohovat va¹e data... Tento postup je doporuèený, pokud "
+"chcete\n"
+"na disku provozovat souèasnì systém Mandrake Linux i Microsoft Windows.\n"
+"\n"
+" Pøed výbìrem této volby si prosím uvìdomte, ¾e velikost oddílu s "
+"Microsoft Windows\n"
+"bude men¹í ne¾ je nyní. To znamená, ¾e budete mít ménì místa pro \n"
+"ulo¾ení dat nebo instalaci programù do Microsoft Windows.\n"
+"\n"
+" * \"Zru¹it celý disk\": pokud chcete smazat ve¹kerá data a v¹echny oddíly\n"
+"na disku a pou¾ít je pro instalaci systému Mandrake Linux, vyberte toto\n"
+"øe¹ení. Zde postupujte opatrnì, po výbìru ji¾ není mo¾né vzít volbu zpìt.\n"
+"\n"
+" !! Pokud zvolíte tuto mo¾nost, v¹echna data na disku budou ztracena.!!\n"
+"\n"
+" * \"Odstranit Windows\": takto se jednodu¹e sma¾e celý disk a bude se "
+"instalovat\n"
+"na celý disk. V¹echna data tak budou ztracena.\n"
+"\n"
+" !! Pokud vyberete tuto volbu, ve¹kerá data budou ztracena. !!\n"
+"\n"
+" * \"Expertní re¾im\": pokud chcete disk rozdìlit ruènì. Pøed touto volbou "
+"buïte\n"
+"opatrní, je sice mocná, ale nebezpeèná. Velmi jednodu¹e zde mù¾ete pøijít o "
+"svá data.\n"
+"Nedoporuèuje se tìm, kteøí pøesnì nevìdí, co dìlají. Chcete-li se dozvìdìt "
+"více\n"
+"o nástroji DiskDrake, který se v tomto pøípadì pou¾ívá, prostudujte sekci "
+"\"Správa va¹ich oddílù\" v \"U¾ivatelské pøíruèce\"."
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:347
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."
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-"Tato úroveň musí být použita s rozmyslem. Sice můžete snadněji používat "
-"svůj\n"
-"systém, ale na druhou stranu je velmi citlivý: Nesmí být použit pro\n"
-"poÄítaÄ pÅ™ipojený k Internetu. Pro pÅ™ihlášení není zapotÅ™ebí žádné heslo."
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mounting partition %s"
-msgstr "Připojuji oddíl %s"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "Uživatelské jméno"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Userdrake"
-msgstr "UserDrake"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Který diskový oddíl chcete použít pro Linux4Win?"
-
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "due to missing %s"
-msgstr "chybí kdesu"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Test pages"
-msgstr "Testovací stránka"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Logical volume name "
-msgstr "Název logického svazku "
+"Nyní je instalace ukonèena a operaèní systém GNU/Linux je pøipraven k "
+"pou¾ití.\n"
+"Kliknìte na \"OK\" a systém bude restartován. Potom mù¾ete spustit GNU/Linux "
+"nebo\n"
+"Windows, zále¾í který preferujete\n"
+"\n"
+"Tlaèítko \"Roz¹íøené\" zobrazí dal¹í dvì tlaèítka:\n"
+"\n"
+" * Generovat disketu pro automatickou instalaci: vytvoøí disketu, se kterou\n"
+"lze celou instalaci opakovat bez zásahu operátora se stejnými volbami,\n"
+"které byly zvoleny pøi instalaci.\n"
+"\n"
+" Po kliknutí na toto tlaèítko se zobrazí dal¹í dvì volby:\n"
+"\n"
+" * : Zopakovat: je to èásteènì automatická instalace, kdy se potvrzuje "
+"krok\n"
+"pøi rozdìlování diskù (a pouze tento krok).\n"
+"\n"
+" * : Automaticky: plnì automatická instalace, data na pevném disku budou\n"
+"zru¹ena a disk pøepsán.\n"
+"\n"
+" Tato volba je velmi u¾iteèná, kdy¾ potøebujete nainstalovat vìt¹í poèet\n"
+"stejných poèítaèù. Více o této mo¾nosti je na na¹ich WWW stránkách.\n"
+"\n"
+" * Ulo¾it výbìr balíèkù(*): ulo¾í výbìr balíèkù, který byl zvolen pøi "
+"instalaci.\n"
+"Pokud budete instalovat dal¹í poèítaè, vlo¾te disketu do mechaniky a "
+"spus»te\n"
+"instalaci, stisknìte [F1] a napi¹te na pøíkazový øádek >linux defcfg=\"floppy"
+"\"<.\n"
+"\n"
+"(*) Potøebujete disketu formátovanou FAT (Pod Linuxem ji vytvoøíte pøíkazem\n"
+"\"mformat a:\")"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:378
msgid ""
-"List of data to restore:\n"
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-"Seznam dat pro obnovení:\n"
+"Ka¾dý novì vytvoøený diskový oddíl musí být pøed pou¾itím zformátován\n"
+"(formátováním se myslí vytvoøení souborového systému).\n"
"\n"
+"Nyní lze formátovat ji¾ existující diskové oddíly pro vymazání\n"
+"v¹ech dat, která obsahují. Pokud to chcete provést, vyberte diskové oddíly\n"
+"pro pøeformátování.\n"
+"\n"
+"Není ale nutné pøeformátovat v¹echny ji¾ existující diskové oddíly.\n"
+"Je nutné pøeformátovat oddíly, které obsahují operaèní systém (jako je \"/"
+"\",\n"
+"\"/usr\" nebo \"/var\") ale není nutné pøeformátovat oddíly, které obsahují\n"
+"data, která chcete zachovat (typicky /home).\n"
+"\n"
+"Pøi výbìru diskových oddílù, které se budou formátovat buïte opatrní, "
+"v¹echna\n"
+"data na formátovaných oddílech budou ztracena a nelze je ji¾ obnovit.\n"
+"\n"
+"Pokud je v¹e pøipraveno pro formátování, kliknìte na \"OK\".\n"
+"\n"
+"Kliknìte na \"Zru¹it\" pokud chcete vybrat jiné oddíly pro instalaci\n"
+"systému Mandrake Linux.\n"
+"\n"
+"Kliknutím na \"Roz¹íøené\" mù¾ete vybrat, které oddíly budou otestovány\n"
+"na vadné bloky."
-#: ../../fs.pm:1
-#, c-format
-msgid "Checking %s"
-msgstr "Kontroluji %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "Možnosti tiskárny pro TCP/Socket"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "DMA karty"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Odpojení od Internetu "
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "Francie"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
-msgstr "procházet"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
-msgstr "Ověřují nainstalovaný software..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Chybí název vzdálené tiskárny!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Chcete povolit tisk na tiskárnách v lokální síti?\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "Turecko"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch USB"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Number of buttons"
-msgstr "PoÄet tlaÄítek"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamská \"Äíselná Å™ada\" QWERTY"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Module"
-msgstr "Modul"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:404
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
+"\n"
+"Please be patient."
msgstr ""
-"Tiskové fronty, které nebyly vytvořeny tímto programem nebo přes \"foomatic-"
-"configure\" nelze přenést."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
-msgstr "Hardware"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Klávesy Ctrl a Alt souÄasnÄ›"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "Spojené státy americké"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "User umask"
-msgstr "Umask pro uživatele"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "Výchozí OS?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "Švýcarské (Německý styl)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Konfigurovat všechny monitory nezávisle"
+"Nyní zaène nová instalace operaèního systému Mandrake Linux.\n"
+"Tato operace mù¾e trvat nìkolik desítek minut (zále¾í na mno¾ství balíèkù,\n"
+"které jste si vybrali pro instalaci a rychlosti va¹eho poèítaèe).\n"
+"\n"
+"Mìjte prosím trpìlivost a vyèkejte."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:412
msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
-msgstr ""
-"Vyberte si tiskárnu, kterou chcete nastavit. Konfigurace těchto tiskáren je "
-"plně automatická. Pokud nebyla tiskárna správně detekována nebo preferujete "
-"vlastní nastavení tisku, zvolte \"RuÄní konfigurace\"."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "NTP Server"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Sulogin(8) in single user level"
-msgstr "Povolí/zakáže sulogin(8) v jednouživatelském režimu."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Load/Save on floppy"
-msgstr "Uložit/Nahrát na/z disketu/y"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
-msgstr "Tento motiv nemá ještě žádný bootsplash v %s !"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "nedůležité"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Test skonÄí za %d sekund"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Ke kterému sériovému portu je váš modem připojen?"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Property"
-msgstr "Vlastnost"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr "Nastavení LAN"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "Ghana"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
-msgstr "Vyžadována cesta nebo modul"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Advanced Options"
-msgstr "Rozšířené volby"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Configuration"
-msgstr "Zobrazit nastavení"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
-msgstr "Chyba Äárky"
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
+"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
+msgstr ""
+"Poka¾dé, kdy¾ instalujete distribuci Mandrake Linux, je mo¾né, ¾e nìkteré\n"
+"balíèky byly od vydání distribuce aktualizovány. Mohly to být opravy chyb\n"
+"èi øe¹ení mo¾ných bezpeènostních problémù. Pokud chcete vyu¾ít právì\n"
+"této nabídky, je mo¾né tyto balíèky nyní stáhnout z Internetu. Zvolte \"Ano"
+"\"\n"
+"pokud máte funkèní pøipojení na Internet nebo \"Ne\", pokud budete\n"
+"instalovat aktualizace pozdìji.\n"
+"\n"
+"Po zvolení \"Ano\" se zobrazí seznam míst, odkud mohou být aktualizace "
+"získány.\n"
+"Vyberte si nejbli¾¹í místo. Následnì se objeví stromový seznam balíèkù, "
+"který\n"
+"je mo¾no je¹tì upravit a stisknutím tlaèítka \"Instalovat\" se provede "
+"sta¾ení\n"
+"a instalace vybraných balíèkù. Akci mù¾ete pøeru¹it klepnutím na \"Zru¹it\"."
+
+#: ../../help.pm_.c:425
+msgid ""
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
+msgstr ""
+"Pøedtím, ne¾ budete pokraèovat, pøeètìte si pozornì podmínky licence. Ty\n"
+"se vztahují k celé distribuci Mandrake Linux a pokud s nimi nesouhlasíte,\n"
+"kliknìte na tlaèítko \"Odmítnout\". Instalace ihned skonèí. Pokud chcete "
+"pokraèovat\n"
+"v instalaci, kliknìte na tlaèítko \"Potvrdit\"."
+
+#: ../../help.pm_.c:432
+msgid ""
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
+msgstr ""
+"Nyní si vyberte úroveò zabezpeèení va¹eho poèítaèe Je zøejmé, ¾e èím více "
+"je\n"
+"poèítaè vyu¾íván a èím cennìj¹í data obsahuje, tím je potøeba zvolit vy¹¹í\n"
+"úroveò. Na druhou stranu, vy¹¹í úroveò znesnadòuje nìkteré obvyklé postupy.\n"
+"Více informací o úrovních bezpeènosti se doètete v kapitole MSEC v "
+"referenèní pøíruèce.\n"
+"\n"
+"Pokud nevíte co vybrat, ponechte výchozí nastavení."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:442
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"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -5167,2104 +3570,1482 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"V této chvíli je potÅ™eba urÄit, který(é) oddíl(y) budou použity pro "
+"V této chvíli je potøeba urèit, který(é) oddíl(y) budou pou¾ity pro "
"instalaci\n"
-"systému Mandrake Linux. Pokud byly oddíly již jednou definovány, buÄ\n"
-"z předchozí instalace GNU/Linux nebo jiným programem na rozdělení disku,\n"
-"je možné použít právě tyto oddíly. Jinak musí být oddíly nově definovány.\n"
+"systému Mandrake Linux. Pokud byly oddíly ji¾ jednou definovány, buï\n"
+"z pøedchozí instalace GNU/Linux nebo jiným programem na rozdìlení disku,\n"
+"je mo¾né pou¾ít právì tyto oddíly. Jinak musí být oddíly novì definovány.\n"
"\n"
-"Pro vytvoření oddílu musíte nejdříve vybrat pevný disk. Klepněte na \n"
-"\"hda\", což je první IDE disk, nebo na \"hdb\", což je druhý disk,\n"
-"případně na \"sda\", což je první SCSI disk.\n"
+"Pro vytvoøení oddílu musíte nejdøíve vybrat pevný disk. Kliknìte na \n"
+"\"hda\", co¾ je první IDE disk, nebo na \"hdb\", co¾ je druhý disk,\n"
+"pøípadnì na \"sda\", co¾ je první SCSI disk.\n"
"\n"
-"Pro rozdělení vybraného disku můžete použít tyto volby:\n"
+"Pro rozdìlení vybraného disku mù¾ete pou¾ít tyto volby:\n"
"\n"
-" * \"%s\": tato volba smaže všechny oddíly na disku.\n"
+" * \"V¹e smazat\": tato volba sma¾e v¹echny oddíly na disku.\n"
"\n"
-" * \"%s\": dojde k automatickému vytvoření oddílu pro Ext2 a swap ve volném\n"
-"prostoru disku.\n"
+" * \"Automaticky rozmístit\": dojde k automatickému vytvoøení oddílu pro\n"
+"Ext2 a swap ve volném prostoru disku.\n"
"\n"
-" * \"%s\": nabídne další možnosti:\n"
+" * \"Více\": nabídne dal¹í mo¾nosti:\n"
"\n"
-" * \"%s\": uloží tabulku oddílů na disketu. To je\n"
-"vhodné pro případ poškození tabulky, kdy ji lze z této zálohy obnovit.\n"
-"DoporuÄujeme využít tuto možnost.\n"
+" * \"Ulo¾it tabulku na disketu\": ulo¾í tabulku oddílù na disketu. To je\n"
+"vhodné pro pøípad po¹kození tabulky, kdy ji lze z této zálohy obnovit.\n"
+"Doporuèujeme vyu¾ít tuto mo¾nost.\n"
"\n"
-" * \"%s\": obnoví tabulku oddílů, která byla již dříve\n"
-"uložena na disketu.\n"
+" * \"Obnovit tabulku z diskety\": obnoví tabulku oddílù, která byla ji¾ "
+"døíve\n"
+"ulo¾ena na disketu.\n"
"\n"
-" * \"%s\": pokud je tabulka poškozena, můžete se\n"
-"pokusit ji opravit. BuÄte ale opatrní a pamatujte na to, že se to nemusí "
-"vždy\n"
-"podařit.\n"
+" * \"Záchrana tabulky oddílù\": pokud je tabulka po¹kozena, mù¾ete se\n"
+"pokusit ji opravit. Buïte ale opatrní a pamatujte na to, ¾e se to nemusí "
+"v¾dy\n"
+"podaøit.\n"
"\n"
-" * \"%s\": zruší všechny změny a nahraje původní\n"
-"tabulku oddílů.\n"
+" * \"Znovu naèíst\": zru¹í v¹echny zmìny a nahraje pùvodní tabulku oddílù.\n"
"\n"
-" \"%s\": odznaÄení této volby\n"
-"způsobí, že při připojování a odpojování vyjímatelných médií jako jsou CD-"
-"ROM\n"
-"disky a floppy disky je nutné použít ruÄnÄ› příkaz mount.\n"
+" \"Pøipojovat vyjímatelná média\": odznaèení této volby zpùsobí, ¾e pøi\n"
+"pøipojování a odpojování vyjímatelných médií jako jsou CD-ROM disky a "
+"floppy\n"
+"disky je nutné pou¾ít ruènì pøíkaz mount.\n"
"\n"
-" * \"%s\": pokud nemáte dobré znalosti o rozdělování disků, použijte\n"
-"tuto volbu, kdy se spustí průvodce. DoporuÄujeme, pokud nemáte dobré "
+" * \"Prùvodce\": pokud nemáte dobré znalosti o rozdìlování diskù, pou¾ijte\n"
+"tuto volbu, kdy se spustí prùvodce. Doporuèujeme, pokud nemáte dobré "
"znalosti\n"
-"o vytváření oddílů na disku.\n"
-"\n"
-" * \"%s\": zruší všechny provedené změny.\n"
+"o vytváøení oddílù na disku.\n"
"\n"
-" * \"%s\": dovoluje další akce s oddíly\n"
-"(typ oddílu, volby, formátování) a zobrazí další informace.\n"
+" * \"Odvolat\": zru¹í v¹echny provedené zmìny.\n"
"\n"
-" * \"%s\": pokud máte disk rozdělen, uloží se změny na disk.\n"
+" * \"Pøepnout normální/expertní re¾im\": dovoluje dal¹í akce s oddíly\n"
+"(typ oddílu, volby, formátování) a zobrazí dal¹í informace.\n"
"\n"
-"Pokud definujete velikost oddílu, můžete pÅ™esnÄ›ji jejich velikost urÄit "
-"pomocí\n"
-"kurzorových šipek na klávesnici.\n"
+" * \"Hotovo\": pokud máte disk rozdìlen, ulo¾í se zmìny na disk.\n"
"\n"
-"Poznámka: každou volbu je možné zadat také z klávesnice. Mezi oddíly se\n"
-"můžete pohybovat pomocí kláves [Tab] a [Šipka nahoru/šipka dolů].\n"
+"Poznámka: ka¾dou volbu je mo¾né zadat také z klávesnice. Mezi oddíly se\n"
+"mù¾ete pohybovat pomocí kláves [Tab] a [©ipka nahoru/¹ipka dolù].\n"
"\n"
-"Pokud je vybrán oddíl, lze použít tyto volby:\n"
+"Pokud je vybrán oddíl, lze pou¾ít tyto volby:\n"
"\n"
-" * Ctrl-c pro vytvoření nového oddílu (pokud je vybrán prázdný oddíl);\n"
+" * Ctrl-c pro vytvoøení nového oddílu (pokud je vybrán prázdný oddíl);\n"
"\n"
-" * Ctrl-d pro smazání oddílu;\n"
+" * Ctrl-d pro smazání oddílu;\n"
"\n"
-" * Ctrl-m pro zadání bodu připojení.\n"
+" * Ctrl-m pro zadání bodu pøipojení.\n"
"\n"
-"Více informací o jednotlivých druzích souborových systémů naleznete\n"
-"v kapitole o ext2fs v \"ReferenÄní příruÄce\".\n"
+"Více informací o jednotlivých druzích souborových systémù naleznete\n"
+"v kapitole o ext2fs v \"Referenèní pøíruèce\".\n"
"\n"
-"Pokud instalujete na poÄítaÄ PPC, je potÅ™eba vytvoÅ™it malý oddíl HFS,\n"
-"tzv. \"bootstrap\" o minimální velikosti 1MB, který bude použit pro zavadÄ›Ä\n"
-"Yaboot. Pokud vytvoříte tento oddíl větší, např. 50 MB, je to dobré místo "
+"Pokud instalujete na poèítaè PPC, je potøeba vytvoøit malý oddíl HPFS,\n"
+"tzv. \"bootstrap\" o minimální velikosti 1MB, který bude pou¾it pro zavadìè\n"
+"Yaboot. Pokud vytvoøíte tento oddíl vìt¹í, napø. 50 MB, je to dobré místo "
"pro\n"
-"uložení ramdisku a jádra pro situace záchrany disku."
+"ulo¾ení ramdisku a jádra pro situace záchrany disku."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:513
msgid ""
-"Graphic Card\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-" 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"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\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 ""
-"Grafická karta\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-" InstalaÄní program je schopen automaticky detekovat a nastavit grafickou\n"
-"kartu instalovanou v poÄítaÄi. Pokud se to nepodaří, máte možnost si ze\n"
-"seznamu vybrat přísluÅ¡nou grafickou kartu ruÄnÄ›.\n"
+"\"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"
-" V případÄ›, že pro vaÅ¡i kartu je možné použít více různých serverů, buÄ\n"
-"s 3D akcelerací nebo bez, je pouze na vás, který server si vyberete jako\n"
-"nejvíce vyhovující vašim potřebám."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Stala se chyba pÅ™i instalaci balíÄků:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Nastavení inkoustové tiskárny Lexmark"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "Zpět"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Save partition table"
-msgstr "Uložit tabulku oddílů"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "Finské"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "Makedonie"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
-msgstr ""
-"Sdílení mezi uživateli používá skupinu \"fileshare\". \n"
-"Uživatele lze do této skupiny přidat pomocí nástroje UserDrake."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "Slovinské"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Authorize:\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"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-"- only local ones if set to \"LOCAL\"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- none if set to \"NONE\".\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
msgstr ""
-"Autorizace:\n"
+"Instalaèní program nalezl na disku více ne¾ jeden oddíl s Microsoft "
+"Windows.\n"
+"Prosím vyberte si jeden z nich, který je potøeba zmen¹it pro novu instalaci\n"
+"systému Mandrake Linux.\n"
"\n"
-"- pokud je nastaveno \"VŠECHNY\", jsou všechny služby kontrolovány pomocí "
-"tcp_wrapper (více hosts.deny(5)) .\n"
+"Ka¾dý oddíl je zobrazen následovnì: \"Jméno pro Linux\",\n"
+"\"Jméno pro Windows\", \"Velikost\".\n"
"\n"
-"- pokud je nastaveno \"LOKÃLNÃ\", autorizuje pouze lokální, \n"
+"\"Jméno pro Linux\" je slo¾eno následovnì: \"typ pevného disku\",\n"
+"\"èíslo disku\", \"èíslo oddílu\". (napøíklad \"hda1\").\n"
"\n"
-"- pokud je nastaveno \"ŽÃDNÉ\", neautorizuje žádné.\n"
+"Pokud máte IDE disky, pak je \"typ pevného disku\" \"hd\", pokud máte SCSI,\n"
+"oznaèení bude \"sd\".\n"
"\n"
-"Pokud potřebujete autorizovat službu, použijte soubor /etc/host.allow (Více "
-"najdete v man hosts.allow(5))."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr "Libye"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Nastavuji skripty, instaluji software, startuji servery..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Tiskárna na paralelním portu #%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"\"Èíslo disku\" je v¾dy písmeno za \"hd\" nebo \"sd\". Pro IDE disky je "
+"takto:\n"
"\n"
-"- Burn to CD"
-msgstr ""
+" * \"a\" znamená \"master disk na primárním IDE øadièi\",\n"
"\n"
-"- Vypálit na CD"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "Tabulka"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "nevím jak naformátovat %s na typ %s"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Model"
-msgstr "Model"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "USB printer #%s"
-msgstr "USB tiskárna #%s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Stop Server"
-msgstr "Zastavit server"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
+" * \"b\" znamená \"slave disk na primárním IDE øadièi\",\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
+" * \"c\" znamená \"master disk na sekundárním IDE øadièi\",\n"
"\n"
-"Vyberte motiv pro\n"
-"LiLo a Bootsplash,\n"
-"můžete je vybrat\n"
-"každé zvlášť"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Modem"
-msgstr "Modem"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr "Tuvalu"
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr "Použít autodetekci"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
-msgstr ""
-"GPM přidává do textových programů podporu myši (např pro Midnight "
-"Commander).\n"
-"Může také v konzoli provádět operace 'vyjmi' a 'vlož' a ovládat pop-up menu."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr "Spustit při startu"
-
-#: ../advertising/12-mdkexpert.pl:1
-#, 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:"
-msgstr ""
-"PÅ™ipojte se k týmům podpory spoleÄnosti MandrakeSoft a on-line Linuxové "
-"komunitě, sdílejte své znalosti a pomozte ostatním tím, že se stanete "
-"uznávaným Expertem na webových stránkách on-line technické podpory:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "No password aging for"
-msgstr "Bez hesla pro"
-
-#: ../../standalone/draksec:1
-#, 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"
-msgstr ""
-"Nastavením následujících voleb lze upravit zabezpeÄení vaÅ¡eho\n"
-"systému. Pokud potřebujete poradit, prohlédněte si tipy s nápovědou.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Automaticky nalézt dostupné tiskárny na vzdálených poÄítaÄích"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr "Východní Timor"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
-msgstr "na pásku"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+" * \"d\" znamená \"slave disk na sekundárním IDE øadièi\".\n"
"\n"
-"- Save to Tape on device: %s"
-msgstr ""
+"Pro SCSI disky platí, ¾e \"a\" je \"nejmen¹í SCSI ID\", \"b\" je \"druhé\n"
+"nejmen¹í SCSI ID\" atd.\n"
"\n"
-"- Uložit na pásku na zařízení: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Login name"
-msgstr "Přihlašovací jméno"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
-msgstr "Vypsat soubory bez vlastníka."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr "Smazat profil..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Instaluji Foomatic ..."
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Prosím odhlaste se a pak stiskněte Ctrl-Alt-Backspace"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected"
-msgstr "detekováno"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "Je potřeba restartovat síť. Chcete provést restart ?"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package: "
-msgstr "BalíÄek: "
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr "Nelze zapsat soubor /etc/sysconfig/bootsplash."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "BEZPEÄŒNOSTNÃ VAROVÃNÃ!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
-msgstr "Ne, nechci automatické přihlášení"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Nástroj pro migraci z Windows"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr "Všechny jazyky"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "Odstraňuji %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s nenalezen...\n"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Testing your connection..."
-msgstr "Testuji připojení k internetu..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cache size"
-msgstr "Velikost vyrovnávací paměti"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Hesla jsou nyní aktivní, ale stále nedoporuÄuji použít tento poÄítaÄ na síti."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr "PoÄáteÄní sektor: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr "Kongo (Brazzaville)"
+"\"Jméno pro Windows\" je písmeno, které je pou¾ito ve Windows\n"
+"(první oddíl nebo disk má písmeno \"C:\")."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Read"
-msgstr "Čtení"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "BalíÄek %s musí být nainstalován. Chcete ho nainstalovat?"
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
+msgstr "Buïte trpìliví. Tato operace mù¾e trvat nìkolik minut."
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
-msgstr "Seychely"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:547
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"
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
"\n"
-"For your printer Printerdrake has found:\n"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
-"%s"
-msgstr ""
-"PrinterDrake provedl porovnání modelu tiskárny, který byl zjištěn při auto-"
-"detekci s modelem obsaženým v jeho databázi a nabídl nejlepší řešení. Tato "
-"volba může být špatná, zvlášť pokud není tiskárna obsažena v databázi. "
-"Zkontrolujte, zda je volba správná a klepněte na \"Zvolený model je správný"
-"\" a pokud není, volte \"Vybrat model ruÄnÄ›\". V další obrazovce potom bude "
-"možné vybrat model tiskárny ruÄnÄ›.\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
"\n"
-"Pro vaši tiskárnu PrinterDrake nalezl:\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Bad password on %s"
-msgstr "Chybné heslo na %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
"\n"
-"NaÅ¡el jsem jednu neznámou tiskárnu přímo pÅ™ipojenou k vaÅ¡emu poÄítaÄi"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Control key"
-msgstr "Pravá klávesa Control"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
+"\n"
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
msgstr ""
-"Vložte disketu formátovanou systémem FAT do disketové jednotky %s s %s v "
-"kořenovém adresáři a stiskněte %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "Zambie"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr "Administrátor bezpeÄnosti (pÅ™ihlaÅ¡ovací jméno nebo email)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr "Omlouváme se, ale podporujeme pouze jádra řady 2.4."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr "Rumunské (QWERTY)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
-msgstr "Vyvíjí se... Äekejte prosím."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "Egypt"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "Česká republika"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "Zvuková karta"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Import Fonts"
-msgstr "Zavádění fontů"
+"Nyní se instalaèní program zeptá na to, zda chcete provést (\"Doporuèenou"
+"\")\n"
+"nebo (\"Expertní\") instalaci, která dovoluje vìt¹í kontrolu. Také si zde\n"
+"mù¾ete vybrat, zda chcete provést novou instalaci nebo aktualizaci\n"
+"ji¾ existující verze systému Mandrake Linux.:\n"
+"\n"
+" * \"Instalovat\" Kompletnì pøema¾e starou verzi. V závislosti na tom, co "
+"je\n"
+"na daném systému nainstalováno, mohou zùstat nìkteré jiné oddíly (typu "
+"Linux\n"
+"nebo jiné) nezmìnìny.\n"
+"\n"
+" * \"Aktualizovat\" Provede aktualizaci stávajícího systému Mandrake Linux.\n"
+"Rozdìlení disku i ve¹kerá data u¾ivatelù zùstanou zachována. Ostatní kroky\n"
+"s nastavením v¹ak budou k dispozici, podobnì jako pøi bì¾né instalaci.\n"
+"\n"
+" * \"Aktualizovat pouze balíèky\" Provede aktualizaci balíèkù z pøedchozí\n"
+"verze systému Mandrake Linux beze zmìn v nastavení systému. Je také mo¾né\n"
+"nainstalovat nové balíèky.\n"
+"\n"
+"Aktualizace je bezproblémová pro verze Mandrake Linux 8.1 nebo novìj¹í.\n"
+"\n"
+"V závislosti na va¹ich znalostech systému GNU/Linux si mù¾ete vybrat\n"
+"z následujících úrovní instalace operaèního systému Mandrake Linux:\n"
+"\n"
+"* Doporuèená: volte pokud jste je¹tì nikdy neinstalovali GNU/Linux. "
+"Instalace bude velmi jednoduchá a budete dotázáni pouze na nìkolik otázek.\n"
+"\n"
+"* Expertní: jestli¾e jste dobøe obeznámeni se systémem GNU/Linux a chcete\n"
+"provést precizní nastavení instalace, je právì pro vás tato volba. Budete si "
+"moci\n"
+"pøesnì upravit celou instalaci. Odpovìdi na otázky budou velmi tì¾ké pro\n"
+"ty, kteøí nemají velmi dobré znalosti GNU/Linuxu.\n"
+"Nevolte tuto volbu, pokud nemáte dostateèné zku¹enosti s instalací systému."
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../help.pm_.c:582
msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Máte jeden veliký oddíl\n"
-"(většinou používaný Microsoft Windows).\n"
-"DoporuÄuji vám nejprve zmenÅ¡it tento oddíl\n"
-"(klepněte na něj a potom na \"Změnit velikost\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Ignorovat doÄasné soubory"
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
+"\n"
+"Click on the \"More\" 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, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
+msgstr ""
+"Normálnì zvolí instalaèní program správnou klávesnici na základì zvoleného\n"
+"jazyka, tak¾e není potøeba nic v tomto kroku mìnit. \n"
+"Mù¾e se ale stát, ¾e nemáte klávesnici, která odpovídá va¹emu jazyku: "
+"napøíklad\n"
+"pokud jste anglicky hovoøící ©výcar, stejnì chcete mít ¹výcarskou "
+"klávesnici.\n"
+"Nebo pokud mluvíte anglicky, ale ¾ijete v Quebecu, je to stejný pøípad. V "
+"obou\n"
+"pøípadech se mù¾ete vrátit na tento instalaèní krok a vybrat si "
+"odpovídající\n"
+"klávesnici ze seznamu.\n"
+"\n"
+"Pokud máte klávesnici pro jiný jazyk, kliknìte na tlaèítko \"Více\"\n"
+"a zobrazí se kompletní seznam v¹ech podporovaných rozlo¾ení klávesnic.\n"
+"\n"
+"Pokud vyberete rozlo¾ení klávesnice zalo¾ené na abecedì jiné ne¾ latince,\n"
+"budete v dal¹ím dialogu vyzváni k výbìru klávesové zkratky, která bude "
+"pøepínat\n"
+"rozlo¾ení klávesnice mezi latinkou a vámi zvoleným rozlo¾ením."
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../help.pm_.c:598
msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+"The first step is to choose your preferred language.\n"
+"\n"
+"Please choose your preferred language for installation and system usage.\n"
"\n"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
+"\n"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
-"Gratulujeme, konfigurace sítÄ› a internetu je ukonÄena.\n"
+"V prvním kroku si vyberete po¾adovaný jazyk.\n"
"\n"
+"Vyberte si vámi preferovaný jazyk, který se bude pou¾ívat pøi instalaci\n"
+"a bìhem u¾ívání celém systému.\n"
+"\n"
+"Tlaèítko \"Roz¹íøené\" umo¾òuje zvolit dal¹í jazyky, které budou také\n"
+"nainstalovány a mù¾ete je pou¾ít v systému. Výbìrem dal¹ích jazykù "
+"nainstalujete\n"
+"soubory s aplikacemi a dokumentací specifické pro tyto jazyky. Pokud "
+"napøíklad na\n"
+"poèítaèi pracují obèas lidé ze ©panìlska, vyberte angliètinu jako hlavní "
+"jazyk\n"
+"a pod tlaèítkem roz¹íøené zatrhnìte volbu \"©panìl¹tina|©panìlsko\".\n"
+"\n"
+"Lze takto doinstalovat více jazykù. Pokud máte jazyky vybrány, kliknìte na "
+"\"OK\"\n"
+"a instalace bude pokraèovat dal¹ím krokem."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "Změnit typ oddílu"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:617
msgid ""
-"Resolution\n"
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
"\n"
-" 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 ""
-"Rozlišení\n"
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
"\n"
-" Zde si můžete vybrat rozlišení a barevnou hloubku, které vaše karta \n"
-"podporuje. Vyberte si to, co vám nejvíce vyhovuje (výběr lze po instalaci\n"
-"samozřejmě změnit). Na monitoru bude zobrazena příklad nastavení."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Network Options"
-msgstr "Volby sítě"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable msec hourly security check"
-msgstr " Povolí/zakáže bezpeÄnostní kontrolu pravidelnÄ› každou hodinu."
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
+msgstr ""
+"Aplikace DrakX obvykle zjistí poèet tlaèítek na va¹í my¹i. Pokud ne, "
+"pøedpokládá,\n"
+"¾e máte dvoutlaèítkovou my¹ a nastaví emulaci pro tøetí tlaèítko my¹i. "
+"Aplikace\n"
+"také umí rozpoznat, zda se jedná o my¹ PS/2, USB nebo sériovou.\n"
+"\n"
+"Pokud chcete zadat jiný typ my¹i, vyberte odpovídající typ se seznamu.\n"
+"\n"
+"Pokud vyberete jinou my¹ ne¾ ta, která byla detekována, zobrazí se "
+"testovací\n"
+"obrazovka. Zde otestujte jak tlaèítka tak i koleèko a ovìøte, zda je "
+"nastavení\n"
+"správné. Pokud my¹ nepracuje správnì, stisknìte mezerník nebo klávesu Enter\n"
+"na \"Zru¹it\"\n"
+" a vyberte jiný typ.\n"
+"\n"
+"My¹i s koleèkem nejsou v nìkterých pøípadech automaticky rozpoznány. Budete\n"
+"je muset vybrat ze seznamu. Ujistìte se, ¾e vyberete my¹ s odpovídajícím "
+"typem\n"
+"portu, ke kterému je pøipojená. Poté, co stisknete tlaèítko \"OK\", zobrazí "
+"se obrázek\n"
+"s my¹í. Aby se správnì koleèko aktivovalo, musíte pohybovat koleèkem va¹í "
+"my¹i.\n"
+"Poté ovìøte, zda-li je správné nastavení tlaèítek a pohybu va¹í my¹i."
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../help.pm_.c:638
msgid ""
-"Display theme\n"
-"under console"
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"Zobrazit motiv\n"
-"na konzoli"
+"Vyberte prosím správný port. Napøíklad \"COM1\" pod MS Windows se\n"
+"v Linuxu jmenuje \"ttyS0\"."
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr "(na %s)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:642
msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Knihovna, které zabraňuje útokům proti pÅ™eteÄení bufferu nebo proti Å¡patnému "
-"formátování řetězců."
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr "průměr"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "New printer name"
-msgstr "Nový název tiskárny"
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
+"\n"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
+"\n"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
+"\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
+"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
+msgstr ""
+"Následující rozhodnutí je jedním z tìch, které ovlivòují celkovou "
+"bezpeènost\n"
+"systému GNU/Linux, tj. volba hesla pro u¾ivatele \"Root\". Root je správcem\n"
+"systému, je odpovìdný za provádìní aktualizací, pøidávání u¾ivatelù a také\n"
+"za celkové nastavení systému. Zkrácenì: root mù¾e úplnì v¹echno!\n"
+"To je také dùvodem, proè se heslo volí takové, aby se nedalo lehce uhodnout\n"
+"a instalaèní program DrakX zkontroluje, zda není pøíli¹ jednoduché. Jak "
+"vidíte,\n"
+"je mo¾né heslo nezadat, ale toto velmi dùraznì nedoporuèujeme, a to z "
+"jednoho\n"
+"dùvodu. Nemyslete si, ¾e pokud spustíte systém GNU/Linux, ¾e je v¹e bezpeèné "
+"a ¾e se nemù¾e nic stát.. Vzhledem k tomu, ¾e na u¾ivatele root se "
+"nevztahují\n"
+"bì¾ná omezení, mù¾e nenávratnì po¹kodit celý systém, smazat data z jiných\n"
+"oddílù na disku a operaèních systémù, vymazat potøebné soubory nebo celé\n"
+"oddíly, atd. Proto je dùle¾ité, aby nebylo jednoduché se tímto u¾ivatelem "
+"stát.\n"
+"\n"
+"Zvolené heslo by se mìlo skládat ze znakù a èíslic a mìlo by být dlouhé\n"
+"minimálnì 8 znakù. Také není dobré si ho kamkoliv poznamenávat - po\n"
+"nalezení va¹í poznámky mù¾e být velmi jednoduché se do va¹eho systému\n"
+"dostat.\n"
+"\n"
+"Nevolte v¹ak heslo pøíli¹ dlouhé nebo komplikované, bude nutné si jej bez\n"
+"vìt¹ích potí¾í zapamatovat.\n"
+"\n"
+"Pøi zadávání nebude heslo na obrazovce zobrazeno. Proto se heslo zadává\n"
+"dvakrát pro ovìøení, zda nedo¹lo k pøeklepu pøi prvním pokusu. Tak je mo¾né\n"
+"heslo opravit a zadat dvakrát stejné. Pokud se vám pøesto podaøí zadat "
+"stejný\n"
+"pøeklep dvakrát, budete muset toto heslo s pøeklepem pou¾ít pøi prvním\n"
+"pøihlá¹ení.\n"
+"V expertním re¾imu budete dotázáni na to, zda se má pou¾ít ovìøovací\n"
+"server, jako je NIS nebo LDAP.\n"
+"\n"
+"Pokud se ve va¹í síti pou¾ívá pro ovìøování u¾ivatelù protokol LDAP, NIS,\n"
+"nebo ovìøovací doména Windows PDC, vyberte odpovídající protokol. Pokud\n"
+"o tom nic nevíte, zeptejte se správce va¹í sítì.\n"
+"\n"
+"Pokud není poèítaè pøipojen do ¾ádné spravované sítì, zvolte pro ovìøení\n"
+"mo¾nost \"Lokální soubory\"."
-#: ../../fs.pm:1
-#, c-format
+#: ../../help.pm_.c:678
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 )."
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, 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 in doubt, DrakX will display a dialog with various options.\n"
+"\n"
+" * \"Bootloader to use\": you have three choices:\n"
+"\n"
+" * \"GRUB\": if you prefer grub (text menu);\n"
+"\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\n"
+"\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
+"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
+"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
+"\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\n"
+"\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
msgstr ""
-"Povolí běžným uživatelům připojovat souborové systémy. Jméno uživatele,\n"
-"který provedl připojení je zapsáno do souboru mtab, aby mohl souborový "
-"systém\n"
-"následně také odpojit. Tato volba zahrnuje volby noexec, nosuid a nodev\n"
-"(pokud nejsou přepsány jiný volbami, jako je user,exec,dev,suid )."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr "Rovníková Guinea"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup System"
-msgstr "Zálohovat systém"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Build Backup"
-msgstr "Vytvořit zálohu"
+"LILO a Grub jsou zavadìèe systému. Tato èást je bì¾nì plnì automatická.\n"
+"DrakX analyzuje zavádìcí sektor disku a zachová se podle toho, co zde\n"
+"nalezne:\n"
+"\n"
+" * pokud nalezne zavádìcí sektor Windows, pøepí¹e ho sektorem pro LILO/Grub\n"
+"tak, aby bylo mo¾né spou¹tìt jak systém Windows tak i Linux;\n"
+"\n"
+" * pokud nalezne zavádìcí sektor pro LILO nebo Grub, tak jej pøepí¹e novým.\n"
+"\n"
+"Pokud jsou nìjaké pochybnosti, je zobrazen dialog s výbìrem mo¾ností.\n"
+"\n"
+" * \"Jaký spou¹tìè pou¾ít:\" je mo¾né si vybrat:\n"
+"\n"
+" * \"GRUB\": pokud preferujete textovou verzi zavadìèe Grub.\n"
+"\n"
+" * \"LILO s grafickou nabídkou\": pokud preferujete LILO s grafickým\n"
+"rozhraním.\n"
+"\n"
+" * \"LILO s textovou nabídkou\": pokud preferujete textové rozhraní.\n"
+"\n"
+" * \"Spou¹tìcí zaøízení\": ve vìt¹inì pøípadù není nutné mìnit výchozí\n"
+"nastavení (\"/dev/hda\"), ale lze nainstalovat zavadìè na druhý disk\n"
+"(\"/dev/hdb\") nebo dokonce na disketu (\"/dev/fd0\").\n"
+"\n"
+" * \"Prodleva pøes spu¹tìním\": pokud zapnete poèítaè, je v tomto èase\n"
+"umo¾nìno u¾ivateli vybrat si jiný systém z nabídky pøed tím, ne¾ bude\n"
+"zaveden výchozí systém.\n"
+"\n"
+"!! Vyvarujte se pokusù nenainstalovat zavadìè (vybráním volby \"Zru¹it\"),\n"
+"proto¾e by mìl existovat zpùsob, jak zavést systém Mandrake Linux!\n"
+"Také si dobøe rozmyslete, jaké zmìny zde provádíte !!\n"
+"\n"
+"Kliknutím na tlaèítko \"Roz¹íøené\" se dialog roz¹íøí o dal¹í mo¾nosti,\n"
+"vyhrazené pro znalé u¾ivatele."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:718
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"Pro vytištění souboru z příkazové řádky (v terminálovém okně) použijte "
-"příkaz \"%s <soubor>\" nebo \"%s <soubor>\".\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Nyní není povolena žádná alternativa"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwertz)"
-msgstr "Rumunské (QWERTZ)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Write Config"
-msgstr "Zapsat nastavení"
+"Po nastavení obecných parametrù zavadìèe systému bude k dispozici\n"
+"seznam voleb pro zavádìní, který se zobrazí pøi zavádìní systému.\n"
+"\n"
+"Pokud ji¾ máte na poèítaèi jiný operaèní systém, automaticky bude zaøazen "
+"do\n"
+"nabídky pro spou¹tìní. Zde je mo¾né dále doladit volby, které se pøedávají "
+"tím,\n"
+"¾e na danou nabídkou vyberete a kliknete na tlaèítko \"Upravit\", pokud jej "
+"chcete\n"
+"upravit nebo odstranit nebo \"Pøidat\", pokud chcete vytvoøit novou "
+"polo¾ku.\n"
+"K dal¹ímu kroku se dostanete kliknutím na tlaèítko \"Hotovo\".\n"
+"\n"
+"Pokud nechcete umo¾nit pøístup k tìmto operaèním systémùm komukoliv, mù¾ete\n"
+"je z nabídky odstranit smazáním odpovídajících polo¾ek.. V tom pøípadì ale\n"
+"musíte mít spou¹tìcí disketu, ze které je mo¾né tento operaèní systém "
+"spustit!"
-#: ../../services.pm:1
-#, 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."
+#: ../../help.pm_.c:732
+msgid ""
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\n"
+"\n"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
+msgstr ""
+"Zde se musíte rozhodnout, kam umístit informace potøebné pro spu¹tìní "
+"systému\n"
+"GNU/Linux.\n"
+"\n"
+"Pokud pøesnì nevíte co zadat, ponechte \"První sektor na disku (MBR)\"."
+
+#: ../../help.pm_.c:739
+msgid ""
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
+"\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
+"\n"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
+msgstr ""
+"Zde si mù¾ete vybrat tiskový systém, který budete pou¾ívat. Jiné OS "
+"nabízejí\n"
+"jeden, Mandrake nabízí tøi.\n"
+"\n"
+" * \"pdq\" - co¾ znamená 'print, don't queue' a je vhodný tehdy, pokud "
+"nemáte\n"
+"¾ádné sí»ové tiskárny. Zvládá pouze nìkolik mo¾ností a tisk na nìj ze sítì\n"
+"je velmi pomalý. Tuto volbu lze po instalaci zmìnit spu¹tìním nástroje "
+"PrinterDrake\n"
+"z øídícího centra Mandrake, pokud kliknete na tlaèítko Expert.\n"
+"\n"
+" * \"CUPS\"'Common Unix Printing System' je vynikající v tisku na lokální\n"
+"tiskárny. Je jednoduchý a mù¾e fungovat jako klient i server pro klienty z "
+"\"lpd\"\n"
+"systému, tak¾e je s nimi kompatibilní. Je mo¾né nastavit spoustu voleb,\n"
+"ale základní nastavení je velmi jednoduché. Pokud potøebujete emulovat\n"
+"\"lpd\" server, staèí spustit démona \"cups-lpd\". Má také grafické "
+"prostøedí\n"
+"pro tisk a nastavení tiskárny.\n"
+"\n"
+" * \"lprNG\" - 'line printer daemon New Generation'. Tento systém doká¾e to\n"
+"co ostatní, ale umí tisknout na tiskárny pøipojené k Novell Netware, "
+"proto¾e\n"
+"podporuje IPX protokol a také umí zpracovat pøímo tiskové pøíkazy. Pokud\n"
+"potøebujete tisk na tiskárnách ze sítì Novell nebo tiskový systém bez\n"
+"zvlá¹tní tiskové fronty, vyberte si lprNG.\n"
+"Jinak je preferován CUPS, proto¾e je jednodu¹¹í a lépe pracuje v sítích."
+
+#: ../../help.pm_.c:759
+msgid ""
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"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 does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
+"\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
msgstr ""
-"Démon routed umožňuje automaticky obnovovat směrovací tabulku (router "
-"table)\n"
-"pro IP adresy. K tomu používá protokol RIP. Zatímco RIP je běžně používán\n"
-"v malých sítích, pro složitější sítě je zapotřebí složitější protokoly."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr "Kiribati"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech Mouse (sériová, starý C7 typ) s emulací tlaÄítka"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Jiné (ne pro drakbackup) klíÄe jsou již na místÄ›"
-
-#: ../../help.pm:1
-#, 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"
+"Aplikace DrakX se nejdøíve pokusí najít v¹echny pevné disky v poèítaèi. Také "
+"se\n"
+"pokusí nalézt jeden nebo více PCI SCSI adaptérù. Pokud nìjaký najde,\n"
+"automaticky nainstaluje správný ovladaè.\n"
"\n"
-"You will be presented with a list of different parameters to change to get\n"
-"an optimal graphical display: Graphic Card\n"
+"Proto¾e automatická detekce hardware nemusí v¾dy nalézt v¹echny typy "
+"hardware,\n"
+"budete v dialogu dotázáni, zda vùbec máte nìjaký SCSI adaptér. Odpovìzte\n"
+"\"Ano\" a vyberte si ze seznamu adaptérù nebo odpovìzte \"Ne\", jestli¾e "
+"¾ádný\n"
+"adaptér nemáte. Pokud pøesnì, zda-li nìjaký máte, mù¾ete to zjistit "
+"kliknutím na\n"
+"tlaèítko \"Zobrazit informace o hardware\"a prozkoumáním seznamu. Kliknutím\n"
+"na tlaèítko \"OK\" se vrátíte k otázce o adaptéru SCSI.\n"
+"\n"
+"Pokud si budete muset vybrat ovladaè ruènì, aplikace DrakX se zeptá, zda "
+"pro\n"
+"nìj chcete zadat nìjaké volby Mìli byste povolit aplikaci DrakX, a» se "
+"pokusí\n"
+"zjistit, které volby jsou pro danou kartu potøeba. Vìt¹inou to funguje "
+"dobøe.\n"
+"\n"
+"Pokud to nebude fungovat, budete muset zadat dal¹í informace pro ovladaè "
+"ruènì.\n"
+"Pro dal¹í nápovìdu se podívejte do instalaèní pøíruèky (kapitola 3 "
+"\"Získání\n"
+"informací o hardware\"), kde je popsáno, jak získat tyto informace z "
+"dokumentace\n"
+"hardware, z WWW stránek výrobce tohoto hardware (pokud máte pøístup k "
+"Internetu),nebo ze systému Windows (pokud je máte na poèítaèi a hardware v "
+"nich pou¾íváte)."
+
+#: ../../help.pm_.c:781
+msgid ""
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
+"\n"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\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"
+"For Linux, there are a few possible options:\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"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
"\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
"\n"
-"Monitor\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
"\n"
-" 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"
+" 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"
-"Resolution\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
"\n"
-" 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"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
"\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support;\n"
"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
+msgstr ""
+"Pro Yaboot, pro dal¹í operaèní systémy, pro alternativní jádra nebo pro\n"
+"záchranný disk lze zde zadat dal¹í parametry.\n"
"\n"
-"Test\n"
+"Pro jiné OS je mo¾né zadat pouze název a hlavní oddíl.\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"
+"Pro Linux je nìkolik dal¹ích mo¾ností:\n"
"\n"
+" * Jmenovka: je to jednoduché jméno, které mù¾ete napsat do pøíkazového\n"
+"øádku pro Yaboot pro zvolení daného systému.\n"
"\n"
+" * Obraz: je to jméno jádra, ze kterého se spustí systém. Typicky je to "
+"vmlinux\n"
+"èi obdoba slova vmlinux s pøíponami.\n"
"\n"
-"Options\n"
+" * Root: koøenové zaøízení \"/\" pøi instalaci Linuxu.\n"
"\n"
-" Here you can choose whether you want to have your machine automatically\n"
-"switch to a graphical interface at boot. Obviously, you want to check\n"
-"\"%s\" if your machine is to act as a server, or if you were not successful\n"
-"in getting the display configured."
-msgstr ""
-"X (X Window System) je srdcem grafického rozhraní pro GNU/Linux, které\n"
-"využívají dodávané grafické prostředí (KDE, GNOME, AfterStep, WindowMaker).\n"
+" * Pøidat volby: na poèítaèích Apple potøebuje jádro dal¹í parametry, aby "
+"se\n"
+"správnì nastavil hardware pro video, èi provedla emulace tlaèítek my¹i\n"
+"na klávesnici, proto¾e my¹ u poèítaèe Apple nemá druhé a tøetí tlaèítko.\n"
+"Zde jsou nìjaké pøíklady:\n"
"\n"
-"Nyní bude zobrazen seznam různých parametrů, které je možné změnit pro\n"
-"dosažení optimálního grafického zobrazení\n"
-"Grafická karta\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+"hda=autotune\n"
"\n"
-" InstalaÄní program je schopen automaticky detekovat a nastavit grafickou\n"
-"kartu instalovanou v poÄítaÄi. Pokud se to nepodaří, máte možnost si ze\n"
-"seznamu vybrat přísluÅ¡nou grafickou kartu ruÄnÄ›.\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
-" V případě, že pro vaši kartu je možné použít více různých serverů, s 3D\n"
-"akcelerací nebo bez, je pouze na vás, který server si vyberete jako nejvíce\n"
-"vyhovující vašim potřebám.\n"
+" * Initrd: tato volba je urèena moduly, které se musí nahrát do pamìti "
+"je¹tì\n"
+"døíve, ne¾ je pøístupný spou¹tìcí oddíl, èi v pøípadì opravy systému.\n"
"\n"
+" * Velikost initrd: výchozí velikost ramdisku je 4,096 bytù. Pokud "
+"potøebujete\n"
+"vìt¹í velikost, zadejte sem potøebnou hodnotu.\n"
"\n"
+" * Read-write: bì¾nì je \"root\" oddíl pøipojen nejdøíve v re¾imu pouze pro\n"
+"ètení, aby se provedlo otestování systému pøed tím, ne¾ se pou¾ije pro bìh.\n"
+"Zde je mo¾né toto chování zmìnit.\n"
"\n"
-"Monitor\n"
+" * Bez grafiky: grafické zaøízení na poèítaèích Apple je nìkdy "
+"problematické\n"
+"a tak je mo¾né zadat tuto volbu a zvolit nativní podporu.\n"
"\n"
-" InstalaÄní program dokáže vÄ›tÅ¡inou automaticky detekovat a správnÄ› \n"
-"nastavit monitor pÅ™ipojený k vaÅ¡emu poÄítaÄi. Pokud se to nezdaří, lze se\n"
-"seznamu vybrat monitor, který máte.\n"
+" * Výchozí: zvolí tuto polo¾ku jako výchozí pro výbìr z nabídky, kdy staèí\n"
+"pouze stisknout ENTER a spustí se. Tato polo¾ka je oznaèena \"*\" a v¹echny\n"
+"výbìry se zobrazí po stisknutí tlaèítka [Tab]."
+
+#: ../../help.pm_.c:828
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
"\n"
+"Yaboot's main options are:\n"
"\n"
+" * Init Message: a simple text message displayed before the boot prompt;\n"
"\n"
-"Rozlišení\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"
-" Zde si můžete vybrat rozlišení a barevnou hloubku, které vaše karta \n"
-"podporuje. Vyberte si to co vám nejvíce vyhovuje (výběr lze po instalaci\n"
-"samozřejmě změnit). Na monitoru bude zobrazena příklad nastavení.\n"
+" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+"yaboot. The first delay is measured in seconds and at this point, you can\n"
+"choose between CD, OF boot, MacOS or Linux;\n"
"\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\n"
"\n"
-"Test\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
-" Systém se pokusí otestovat grafickou obrazovku v požadovaném rozlišení.\n"
-"Pokud bÄ›hem testu uvidíte zprávy a odpovíte na ni \"%s\", instalaÄní "
-"program\n"
-"bude pokraÄovat dalším krokem. Pokud zprávu neuvidíte, znamená to, že "
-"některá\n"
-"Äást automatické detekce neprobÄ›hla v pořádku a test automaticky za 12 "
-"vteřin\n"
-"skonÄí s tím, že se provede návrat k základní nabídce. NáslednÄ› je možné "
-"opět\n"
-"provést změny až do té doby, než bude zobrazeno správné rozlišení.\n"
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
+msgstr ""
+"Yaboot je zavadìè pro poèítaèe Macintosh. Umo¾òuje spou¹tìt jak GNU/Linux, "
+"MacOS tak i MacOSX, pokud jsou na poèítaèi nainstalovány. Ve vìt¹inì\n"
+"pøípadù jsou tyto operaèní systémy správnì detekovány. Pokud nejsou, mù¾ete\n"
+"zde na této obrazovce pøidat záznamy ruènì. Dejte si ale pozor na správnou\n"
+"volbu parametrù.\n"
"\n"
+"Yaboot má tyto hlavní volby:\n"
"\n"
+" * Úvodní hlá¹ka: jednoduchá textová zpráva, která je zobrazena pøed "
+"výzvou.\n"
"\n"
-"Volby\n"
+" * Spou¹tìcí zaøízení: udává místo, kde jsou informace potøebné pro "
+"spu¹tìní\n"
+"GNU/Linuxu. Obyèejnì je to bootstrap oddíl, který byl vytvoøen ji¾ pøedtím.\n"
"\n"
-" Zde si můžete vybrat, zda chcete provést automatický start grafického\n"
-"prostÅ™edí po spuÅ¡tÄ›ní systému. Je samozÅ™ejmé, že pokud bude poÄítaÄ "
-"provozován\n"
-"jako server, je nutné odpovědět \"%s\"."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr "Procházet"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr "CDROM"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Chcete se nyní pokusit připojit k internetu?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "Belgické"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Máte nějakou zvukovou kartu na ISA sběrnici?"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Ve vaÅ¡em poÄítaÄi nebyl nalezen žádný síťový adaptér.\n"
-"Nemohu nastavit typ spojení."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Windows"
-msgstr "Windows"
-
-#: ../../common.pm:1
-#, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "Nelze provést sejmutí obrazovky před rozdělením disků"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Name"
-msgstr "Název poÄítaÄe"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Soubor/Uložit _jako"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"Pro získání přístupu na vzdálené CUPS servery v lokální síti potřebujete "
-"pouze povolit volbu \"Automaticky nalézt dostupné tiskárny na vzdálených "
-"poÄítaÄích\". CUPS server následnÄ› informuje o tÄ›chto tiskárnách. VÅ¡echny "
-"známé tiskárny potom budou vypsány v sekci \"Vzdálené tiskárny\" v hlavním "
-"okně aplikace PrinterDrake. Pokud CUPS server(y) nejsou ve vaší lokální "
-"síti, musíte zadat IP adresu a volitelnÄ› také Äíslo portu, aby bylo možné "
-"uvedené informace ze serverů získat."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr "%s není v databázi skenerů, nastavit ruÄnÄ›?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "Prodleva před automatickým spuštěním"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Restrict command line options"
-msgstr "Omezení nastavení z příkazové řádky"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "East Europe"
-msgstr "Východní Evropa"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "Použít volné místo"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "použít dhcp"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr "Varovné zprávy e-mailem"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Internet configuration"
-msgstr "Nastavení Internetu"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr "Uzbekistán"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected %s"
-msgstr "Nalezeno %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Automaticky detekovat _tiskárny"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "UkonÄit"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Ukázat automaticky vybrané balíÄky"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr "Togo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "Příznaky CPU nalezené jádrem"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Něco neproběhlo správně! - Je nainstalovaný program mkisofs?"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "Zkuste to znovu, prosím"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The model is correct"
-msgstr "Zvolený model je správný"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Změna FAT oddílu neuspěla: %s"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr "VýbÄ›r jednotlivých balíÄků"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr "Na tomto diskovém oddílu nelze měnit velikost"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr "Umístění"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "USA (cable-hrc)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr "Žurnálovací FS"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr ""
-"Povolí/zakáže kontrolu na nastavení promiskuitního režimu síťového rozhraní."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
-msgstr "Tento poÄítaÄ"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Písmeno v DOSu: %s (jenom odhad)\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr "Bahrajn"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Vyberte soubory nebo adresáře a klepněte na 'OK'"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit scsi modules"
-msgstr "vynechat SCSI moduly"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "Rodina pro cpu (např. 6 pro i686 třídu)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Protože provádíte instalaci po síti, je již síť nastavena.\n"
-"Klepněte na Ok pro zachování nastavení nebo klepněte na Zrušit pro nové "
-"nastavení připojení Internetu a k síti.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
-msgstr "Sputit každý den bezpeÄnostní kontrolu"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Rozložení klávesnice: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"Zde můžete rozhodnout, zda tiskárny pÅ™ipojené k tomuto poÄítaÄi budou "
-"vzdálenÄ› přístupné a z kterých vzdálených poÄítaÄů."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr "Maltézské (US)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "VytvoÅ™ení zavádÄ›cí diskety bylo úspěšnÄ› dokonÄeno \n"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Připojuje a odpojuje všechny síťové (NFS), SMB (Lan/Windows) a Netware "
-"(NCP)\n"
-"přípojné body (mount points)."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Launch the wizard"
-msgstr "Spustit průvodce"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Tvcard"
-msgstr "TV karta"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Přepne mezi normální/expertním režimem"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr "Velikost"
-
-#: ../../help.pm:1
-#, c-format
-msgid "GRUB"
-msgstr "GRUB"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr "Grónsko"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "Ätvrtek"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Páska nemá správný název. Má oznaÄení %s."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
+" * Prodleva pro Firmware: na rozdíl od zavadìèe LILO jsou zde dvì prodlevy.\n"
+"První prodleva v sekundách umo¾òuje zvolit mezi spu¹tìním CD, OF boot,\n"
+"MacOS nebo Linuxu.\n"
"\n"
-"What would you like to do?"
-msgstr ""
-"Sdílení internetového připojení už bylo nastaveno.\n"
-"Nyní je povoleno.\n"
+" * Prodleva pro jádro: tato prodleva je podobná prodlevì pro LILO.\n"
+"Udává v násobcích 0,1 vteøiny jak dlouho se èeká, ne¾ se zavede \n"
+"výchozí jádro.\n"
"\n"
-"Co chcete dále dělat?"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Smazat všechny NBI"
+" * Povolit spu¹tìní z CD?: tato volba dovoluje pou¾ít \"C\" pro spu¹tìní "
+"CD.\n"
+"\n"
+" * Povolit OF Boot?: tato volba dovoluje pou¾ít \"N\" pro spu¹tìní Open "
+"Firm.\n"
+"\n"
+" * Výchozí OS: vyberte výchozí OS, který se spustí po uplynutí prodlevy."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:860
+#, fuzzy
msgid ""
-"This dialog allows you to fine tune your bootloader:\n"
-"\n"
-" * \"%s\": there are three choices for your bootloader:\n"
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
"\n"
-" * \"%s\": if you prefer grub (text menu).\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
"\n"
-" * \"%s\": if you prefer LILO with its text menu interface.\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
"\n"
-" * \"%s\": if you prefer LILO with its graphical interface.\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
-" * \"%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"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\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"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\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"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\n"
"\n"
-"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
-"are normally reserved for the expert user."
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
msgstr ""
-"Pokud jsou nějaké pochybnosti, je zobrazen dialog s výběrem možností.\n"
-"\n"
-" * \"%s\" je možné si vybrat ze tří možností:\n"
+"Zde jsou shromá¾dìny rùzné informace, které se vztahují k tomuto poèítaèi.\n"
+"V závislosti na tom, zda je èi není pøítomen daný hardware, mù¾ete nebo\n"
+"nemusíte vidìt tyto polo¾ky: \n"
"\n"
-" * \"%s\": pokud preferujete zavadÄ›Ä Grub (textová nabídka).\n"
+" * \"My¹\": pokud je zji¹tìna my¹, mù¾ete zde zmìnit její nastavení.\n"
"\n"
-" * \"%s\": pokud preferujete LILO s grafickým\n"
-"rozhraním.\n"
+" * \"Klávesnice\": zkontrolujte nastavení rozlo¾ení kláves, kliknutím na "
+"tlaèítko\n"
+"lze zmìnit rozlo¾ení kláves, pokud je to nutné.\n"
"\n"
-" * \"%s\": pokud preferujete textové rozhraní.\n"
+" * \"Èasové pásmo\": instalaèní program se pokusí odhadnout èasové pásmo na\n"
+"základì vámi vybraného jazyka. To ale nemusí souhlasit, stejnì jako v "
+"pøípadì\n"
+"rozlo¾ení klávesnice mù¾ete ¾ít v jiné zemi a proto je zde umo¾nìno zmìnit\n"
+"èasovou zónu, ve které se nyní nacházíte.\n"
"\n"
-" * \"%s\": ve většině případů není nutné měnit výchozí\n"
-"nastavení (\"%s\"), ale lze nainstalovat zavadÄ›Ä na druhý disk\n"
-"(\"%s\") nebo dokonce na disketu (\"%s\").\n"
+" * \"Tiskárna\": Kliknutím na tlaèítko \"Bez tiskárny\" se spustí prùvodce\n"
+"nastavením tiskárny. V odpovídající kapitole v \"U¾ivatelské pøíruèce\" se\n"
+"dozvíte více o tom, jak tiskárnu nastavit. Rozhraní, které je v ní popsané, "
+"je\n"
+"podobné rozhraní pou¾itému pøi této instalaci.\n"
"\n"
-" * \"%s\": pokud zapnete poÄítaÄ, je v tomto Äase\n"
-"umožněno uživateli vybrat si jiný systém z nabídky před tím, než bude\n"
-"zaveden výchozí systém.\n"
+" * \"Zvuková karta\": pokud byla pøi instalaci detekována zvuková karta, je\n"
+"zde zobrazena. Pøi instalaci není mo¾né nic mìnit.\n"
"\n"
-"!! Vyvarujte se pokusů nenainstalovat zavadÄ›Ä (vybráním volby \"%s\"),\n"
-"protože by měl existovat způsob, jak zavést systém Mandrake Linux!\n"
-"Také si dobře rozmyslete, jaké změny zde provádíte !!\n"
+" * \"TV karta\": pokud byla detekována televizní karta, je zde zobrazena.\n"
+"Pøi instalaci není mo¾né nic mìnit.\n"
"\n"
-"Klepnutím na tlaÄítko \"%s\" se dialog rozšíří o další možnosti,\n"
-"vyhrazené pro znalé uživatele."
+" * \"ISDN karta\": pokud byla detekována ISDN karta, je zde zobrazena.\n"
+"Kliknutím na tlaèítko mù¾ete mìnit parametry pro tuto kartu."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../help.pm_.c:891
msgid ""
-"if set, send the mail report to this email address else send it to root."
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
-"pokud je nastaveno, odesílá report na daný email nebo přímo uživateli root"
+"Vyberte disk, který chcete smazat pro instalaci Mandrake Linux.\n"
+"Pamatujte na to, ¾e v¹echna data budou ztracena a nelze je ji¾ obnovit!"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Které XFree by jste chtěli použít?"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "More"
-msgstr "Více"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:896
msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"Používá se stejná syntaxe jako u příkazu 'cdrecord'. 'cdrecord -scanbus' "
-"také zobrazí Äíslo zařízení."
+"Kliknìte na \"OK\", pokud chcete smazat v¹echna data a oddíly na tomto\n"
+"pevném disku. Buïte opatrní, po odkliknutí nelze obnovit ¾ádná døívìj¹í "
+"data\n"
+"ani oddíly a to i pro Windows.\n"
+"\n"
+"Kliknutím na \"Zru¹it\" zru¹íte tuto operaci bez ztráty dat a oddílù na "
+"disku."
-#: ../../security/level.pm:1
+#: ../../install2.pm_.c:111
#, 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."
+"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 ""
-"S touto bezpeÄnostní úrovní je možné používat systém jako server.\n"
-"BezpeÄnost je nyní dostateÄnÄ› vysoká, aby bylo možné používat systém jako "
-"server, ke kterému\n"
-"je možné pÅ™ipojit mnoho klientů. Poznámka: pokud je poÄítaÄ používán pouze "
-"jako klient pro připojení k Internetu, je lepší zvolit nižší úroveň."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Server Name"
-msgstr "Název serveru"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Password"
-msgstr "Heslo vaÅ¡eho úÄtu"
+"Nelze naèíst moduly pro jádro odpovídající instalovanému jádru (chybí "
+"soubor\n"
+"%s), co¾ obecnì znamená, ¾e spou¹tìcí disketa nemá jádro stejné jako má "
+"instalaèní médium (vytvoøte prosím novou spou¹tìcí disketu)"
-#: ../../standalone/drakhelp:1
+#: ../../install2.pm_.c:167
#, c-format
-msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
-msgstr ""
-"%s nelze zobrazit.\n"
-"K této položce není žádná nápověda\n"
+msgid "You must also format %s"
+msgstr "Musíte také naformátovat %s"
-#: ../../any.pm:1
+#: ../../install_any.pm_.c:423
#, 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"
+"You have selected the following server(s): %s\n"
"\n"
-"On which drive are you booting?"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
msgstr ""
-"Rozhodli jste se nainstalovat zavadÄ›Ä systému na oddíl.\n"
-"To znamená, že již zavadÄ›Ä na disku, ze kterého spouÅ¡títe systém nÄ›jaký je "
-"(napÅ™. System Commander).\n"
+"Vybrali jste pro instalaci následující server(y): %s\n"
+"\n"
+"\n"
+"Tyto servery budou standardnì aktivovány. Pøesto¾e není známý ¾ádný\n"
+"bezpeènostní problém, mohou se pøesto vyskytnout. Je proto dùle¾ité "
+"aktualizovat\n"
+"v¾dy, kdy¾ je to potøeba.\n"
+"\n"
"\n"
-"Ze kterého disku spouštíte systém?"
+"Chcete opravdu nainstalovat tyto servery?\n"
-#: ../../install_interactive.pm:1
+#: ../../install_any.pm_.c:441
#, c-format
msgid ""
-"WARNING!\n"
+"The following packages will be removed to allow upgrading your system: %s\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."
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-"VAROVÃNÃ!\n"
+"Následující balíèky budou odebrány pro umo¾nìní aktualizace systému: %s\n"
"\n"
-"DrakX nyní musí zmenÅ¡it oddíl s Windows. BuÄte opatrní: tato operace je\n"
-"nebezpeÄná. Pokud jste tak již neuÄinili, mÄ›li byste nejprve ukonÄit "
-"instalaci,\n"
-"spustit \"chkdsk c:\" z příkazové řádky (spuštění programu \"scandisk\" "
-"nestaÄí, použijte příkaz \"chkdsk\"!), popřípadÄ› i defrag a potom instalaci "
-"spustit znovu.\n"
-"Také byste si měli data zálohovat. Až si budete jistí, že chcete "
-"pokraÄovat,\n"
-"stiskněte Ok."
+"\n"
+"Opravdu chcete odebrat tyto balíèky?\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tajik keyboard"
-msgstr "Tádžická klávesnice"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
+msgstr "Nelze pou¾ít v¹esmìrové vysílání bez NIS domény"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:879
#, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Vlo¾te naformátovanou disketu do %s"
+
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
+msgstr "Tato disketa není formátována"
+
+#: ../../install_any.pm_.c:895
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"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-"Konfiguraci tiskárny, kterou jste provedli pro frontu %s lze přenést na "
-"frontu %s, tj. na souÄasnou frontu. VÅ¡echna nastavená data (název tiskárny, "
-"popis, umístění, typ připojení a další výchozí nastavení) budou přepsána, "
-"ale tiskové úlohy nebudou přeneseny.\n"
-"Ne všechny fronty lze přenést z následujících důvodů:\n"
+"Pokud chcete pou¾ít ulo¾ený výbìr balíèkù, spus»te instalaci takto: 'linux "
+"defcfg=floppy'"
-#: ../../standalone/drakfont:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, c-format
-msgid "Font List"
-msgstr "Seznam fontů"
+msgid "Error reading file %s"
+msgstr "Chyba pøi ètení souboru %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_any.pm_.c:1040
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."
+"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 ""
-"Můžete potřebovat změnit startovací zařízení pro Open Firmware\n"
-" pro aktivaci spouštěcího programu. Pokud nevidíte po spuštění prompt,\n"
-" stiskněte při startu Command-Option-O-F a zadejte:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Potom zadejte: shut-down\n"
-"Při dalším spuštění už uvidíte prompt."
+"Stala se chyba - nebylo nalezeno ¾ádné zaøízení na kterém by se daly "
+"vytvoøit nové souborové systémy. Zkontrolujte prosím hardware"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_interactive.pm_.c:21
#, 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"
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"Zdá se, že máte nÄ›jaký neznámý poÄítaÄ,\n"
-"na kterém nebude Yaboot pracovat.\n"
-"Instalace bude pokraÄovat, ale budete\n"
-"potřebovat BootX pro spuštění systému."
+"Nìkterá èást va¹eho hardware potøebuje 'speciální' ovladaèe, aby mohla "
+"pracovat.\n"
+"Dal¹í informace mù¾ete nalézt na: %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Select file"
-msgstr "Zvolit soubor"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:56
msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr "Vyberte síť nebo poÄítaÄ, na kterém budou lokální tiskárny dostupné:"
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"Musíte mít koøenový oddíl.\n"
+"K jeho vytvoøení musíte zvolit jeden existující oddíl\n"
+"(nebo vytvoøit nový), zvolit 'Pøípojný bod'\n"
+"a nastavit ho na '/'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
+msgstr "Musíte mít odkládací oddíl"
+
+#: ../../install_interactive.pm_.c:62
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"
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"Tyto příkazy lze nastavit do políÄka \"Příkazy tisku\" v dialogu tisku ve "
-"většině aplikací, ale nezadává se zde název souboru, které je pokaždé jiné v "
-"závislosti na dané aplikaci.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "Japonsko"
+"Nemáte odkládací oddíl\n"
+"\n"
+"Chcete pøesto pokraèovat?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print option list"
-msgstr "Možnosti tiskárny"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Musíte mít FAT oddíl pøipojený na /boot/efi"
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "Změny jsou provedeny, ale pro aktivaci je nutné provést odhlášení"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
+msgstr "Pou¾ít volné místo"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
-msgstr "ZemÄ›"
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
+msgstr "Není dostatek místa pro vytvoøení nového diskového oddílu"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search servers"
-msgstr "Vyhledat servery"
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
+msgstr "Pou¾ít existující oddíl"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "Chybí název tiskové fronty pro NCP!"
+#: ../../install_interactive.pm_.c:102
+msgid "There is no existing partition to use"
+msgstr "Není zde ¾ádný existující oddíl k pou¾ití"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Varování, bylo detekováno jiné připojení k Internetu, zřejmě je použita síť"
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
+msgstr "Pou¾ít Windows oddíl jako loopback"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM oznaÄené \"%s\""
+#: ../../install_interactive.pm_.c:112
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Který diskový oddíl chcete pou¾ít pro Linux4Win?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr "CDRW média"
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
+msgstr "Zvolte velikosti"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Ukládá a obnovuje 'stav entropie' na poÄítaÄi, což je používáno pro\n"
-"kvalitnÄ›jší generaci náhodných Äísel."
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
+msgstr "Velikost koøenového oddílu v MB:"
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr "VytvoÅ™te ze svého poÄítaÄe spolehlivý server."
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr "Velikost odkládacího oddílu v MB: "
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr "Kontrolovat prázdná hesla v /etc/shadow"
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
+msgstr "Pou¾ít volné místo na Windows oddílu"
-#: ../../network/network.pm:1
-#, c-format
-msgid " (driver %s)"
-msgstr " (ovladaÄ %s)"
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
+msgstr "Na kterém oddílu chcete mìnit velikost?"
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
-msgstr "Spustit na žádost"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "Poèítám hranice souborového systému s Windows"
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
-"Loopback file(s):\n"
-" %s\n"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-"Loopback soubor(y): \n"
-" %s\n"
+"Zmìnu velikost FAT není mo¾né provést, \n"
+"vyskytla se následující chyba: %s"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr "Nevím"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP hostitel \"%s\", port %s"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../install_interactive.pm_.c:137
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?"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-"Zde můžete nastavit disketu pro automatickou instalaci. Tato volba je někdy "
-"nebezpeÄná a mÄ›la by se používat s opatrností.\n"
-"\n"
-"Tato disketa dovoluje zopakovat instalaci, která již na tomto poÄítaÄi byla "
-"provedena s tím, že v některých krocích lze zadat jiné hodnoty.\n"
-"\n"
-"Pro maximální bezpeÄnost není rozdÄ›lování disků ani formátování provádÄ›no "
-"automaticky, i přesto, pokud to při instalaci zvolíte.\n"
-"\n"
-"Chcete pokraÄovat?"
+"Vá¹ diskový oddíl s Windows je pøíli¹ fragmentován, pou¾ijte nejdøíve\n"
+"program 'defrag'"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Telugu"
-msgstr "Telugu"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:138
msgid ""
+"WARNING!\n"
"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
+"VAROVÁNÍ!\n"
"\n"
-"\n"
-"VaÅ¡e karta nyní používá ovladaÄ %s\"%s\" (výchozí ovladaÄ pro vaÅ¡i kartu je "
-"\"%s\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Uninstall"
-msgstr "Nastavení po odebrání"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Připojení k Internetu "
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
-msgstr " ("
+"DrakX nyní musí zmen¹it oddíl s Windows. Buïte opatrní: tato operace je\n"
+"nebezpeèná. Pokud jste tak ji¾ neuèinili, mìli byste nejprve ukonèit "
+"instalaci,\n"
+"spustit scandisk ve Windows (popøípadì i defrag) a potom instalaci znovu "
+"spustit\n"
+"Také byste si mìli data zálohovat. A¾ si budete jistí, ¾e chcete pokraèovat\n"
+"stisknìte Ok."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid level"
-msgstr "Cpuid úroveň"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Jakou velikost oddílu chcete nechat pro Windows na"
-#: ../../printer/main.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Novell server \"%s\", tiskárna \"%s\""
+msgid "partition %s"
+msgstr "diskovém oddílu %s"
-#: ../../keyboard.pm:1
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "Mongolské (cyrilice)"
+msgid "FAT resizing failed: %s"
+msgstr "Zmìna FAT oddílu neuspìla: %s"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Add a module"
-msgstr "Přidat modul"
+#: ../../install_interactive.pm_.c:171
+msgid ""
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Nejsou zde ¾ádné FAT oddíly, které by bylo mo¾né zmìnit (nebo není dostatek "
+"místa)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr "Smazat profil:"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr "Smazat celý disk"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Local measure"
-msgstr "Lokální měřítko"
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr "Odstranit Windows(TM)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
-msgstr "Varování : IP adresa %s je obyÄejnÄ› rezervována !"
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Máte více ne¾ jeden pevný disk, na který chcete instalovat Linux?"
-#: ../../mouse.pm:1
+#: ../../install_interactive.pm_.c:183
#, c-format
-msgid "busmouse"
-msgstr "Busmouse"
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "V©ECHNY diskové oddíly a data na disku %s budou zru¹ena"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Vytváří zaváděcí obrazy pro Etherboot:\n"
-" \tChcete-li zavést jádro pomocí etherboot, musíte vytvořit zvláštní "
-"kombinaci jádra a initrd.\n"
-" \tVětšinu práce za vás udělá mkinitrd-net a drakTermServ je pouze "
-"grafické rozhraní\n"
-" \tpro pomoc se správou Äi pÅ™izpůsobením tÄ›chto obrazů. Pro "
-"vytvoření\n"
-" \tsouboru /etc/dhcpd.conf.etherboot-pcimap.include, který je "
-"použit\n"
-" \tpro dhcpd.conf, musíte vytvořit etherboot obraz alespoň jednoho "
-"jádra."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Váš úÄet (uživatelské jméno)"
+#: ../../install_interactive.pm_.c:191
+msgid "Custom disk partitioning"
+msgstr "Vlastní rozdìlení disku"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
-msgstr "Fdiv chyba"
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr "Pou¾ít fdisk"
-#: ../../network/drakfirewall.pm:1
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-"Nastavení aplikace drakfirewall\n"
-"\n"
-"PÅ™edtím, než budete pokraÄovat, se ujistÄ›te, že jste nastavili vaÅ¡i\n"
-"síť a přístup k Internetu pomocí aplikace drakconnect."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr "Akceptovat všesměrové icmp echo"
+"Nyní mù¾ete rozdìlit vá¹ pevný disk %s.\n"
+"A¾ skonèíte, nezapomeòte ulo¾it zmìny pomocí 'w'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr "Uruguay"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Benin"
-msgstr "Benin"
+#: ../../install_interactive.pm_.c:227
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Nemáte dostatek volného místa na oddílu s Windows"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "SMB/Windows server \"%s\", sdílená jako \"%s\""
+#: ../../install_interactive.pm_.c:243
+msgid "I can't find any room for installing"
+msgstr "Nemù¾u najít ¾ádné volné místo pro instalaci"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path selection"
-msgstr "Výběr cesty"
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Prùvodce DrakX na¹el následující øe¹ení:"
-#: ../../standalone/scannerdrake:1
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid "Name/IP address of host:"
-msgstr "Název/IP adresa poÄítaÄe:"
+msgid "Partitioning failed: %s"
+msgstr "Vytváøení diskových oddílù selhalo: %s"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr "Startuji sí»"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom & system settings"
-msgstr "Vlastní & systémová nastavení"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr "Zastavuji sí»"
-#: ../../partition_table/raw.pm:1
-#, c-format
+#: ../../install_steps.pm_.c:76
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."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"S pevným diskem se stalo něco špatného. \n"
-"Test na integritu dat selhal. \n"
-"To znamená, že zápis na tento disk může skonÄit nepÅ™edvídanÄ› a poÅ¡kodit data."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Chybí název nebo IP adresa tiskárny!"
+"Stala se chyba, ale nevím, jak jí správnì interpretovat.\n"
+"Pokraèujte na vlastní riziko."
-#: ../../standalone/drakbackup:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Zvolte prosím všechny uživatele, které chcete zálohovat."
+msgid "Duplicate mount point %s"
+msgstr "Zdvojený pøípojný bod %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps.pm_.c:380
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+"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 ""
-"Skener %s musí být nastaven pomocí nástroje PrinterDrake.\n"
-"Spustit PrinterDrake lze z ovládacího centra Mandrake v sekci Hardware"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Key isn't writable"
-msgstr "Aplikace XawTV není nainstalovaná!"
+"Nìkteré dùle¾ité balíèky nebyly správnì nainstalované.\n"
+"Je mo¾né, ¾e je po¹kozen CD disk nebo CD-ROM mechanika.\n"
+"Zkontrolujete to pou¾itím pøíkazu \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../lang.pm:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "Bangladesh"
-msgstr "Bangladéš"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
-msgstr "Japonsko (kabel)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Initial tests"
-msgstr "Úvodní testy"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Continue"
-msgstr "PokraÄovat"
+msgid "Welcome to %s"
+msgstr "Vítá vás %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom Restore"
-msgstr "Vlastní obnova"
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr "Není dostupná ¾ádná disketová mechanika"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "Saturday"
-msgstr "Sobota"
+msgid "Entering step `%s'\n"
+msgstr "Zaèínám '%s'\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:146
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."
+"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 ""
-"\"%s\": pokud je detekována v poÄítaÄi zvuková karta, je zde\n"
-"zobrazena. Pokud ale vidíte, že zobrazená karta není přesně tak, kterou\n"
-"máte v poÄítaÄi, můžete klepnutím na tlaÄítko vybrat jinou kartu a ovladaÄ."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the root umask."
-msgstr "Nastavuje umask pro uživatele root."
+"Vá¹ systém má málo systémových prostøedkù. Pøi instalaci Mandrake Linuxu se\n"
+"mù¾ete setkat s rùznými problémy. Pokud se tak stane, zkuste textovou\n"
+"verzi instalaèního programu. Ta se spou¹tí tak, ¾e pøi startu\n"
+"z CD mechaniky stisknete 'F1' a poté napí¹ete 'text'."
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "Chyba pÅ™i Ätení souboru %s"
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr "Typ instalace"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr "Podle scénáře"
+#: ../../install_steps_gtk.pm_.c:160
+msgid "Please choose one of the following classes of installation:"
+msgstr "Prosím zvolte jednu z následujících instalaèních tøíd:"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "PLL setting:"
-msgstr "Nastavení PLL :"
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
+msgstr "Výbìr skupiny balíèkù"
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Musíte mít FAT oddíl připojený na /boot/efi"
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
+msgstr "Výbìr jednotlivých balíèkù"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid " on "
-msgstr " na "
+msgid "Total size: %d / %d MB"
+msgstr "Celková velikost: %d / %d MB"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "The URL must begin with http:// or https://"
-msgstr "URL musí zaÄínat znaky http:// nebo https://"
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
+msgstr "©patný balíèek"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Zde lze přímo zadat URI pro přístup k tiskárnÄ›. URI musí splňovat buÄ "
-"specifikaci CUPS nebo Foomatic. Také pamatujte na to, že všechny URI nejsou "
-"podporovány ve všech tiskových správcích."
+msgid "Name: %s\n"
+msgstr "Jméno: %s\n"
-#: ../../any.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "Jiný systém (SunOs...)"
+msgid "Version: %s\n"
+msgstr "Verze: %s\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid "Install/Upgrade"
-msgstr "Instalace/Aktualizace"
+msgid "Size: %d KB\n"
+msgstr "Velikost: %d kB\n"
-#: ../../install_steps_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
-msgid "%d packages"
-msgstr "%d balíÄků(y)"
+msgid "Importance: %s\n"
+msgstr "Dùle¾itost: %s\n"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: ../../standalone.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:360
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"
+"You can't select this package as there is not enough space left to install it"
msgstr ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Záloha a obnova aplikace\n"
-"\n"
-"--default : uloží výchozí adresáře.\n"
-"--debug : zobrazí všechny ladící hlášky.\n"
-"--show-conf : vypíše seznam souborů a adresářů pro zálohu.\n"
-"--config-info : vysvÄ›tlí volby pro konfiguraÄní soubory (pro non-X "
-"uživatele).\n"
-"--daemon : use daemon configuration. \n"
-"--help : zobrazí tuto zprávu.\n"
-"--version : zobrazí Äíslo verze.\n"
+"Nemù¾ete oznaèit tento balíèek, proto¾e pro jeho instalaci není dost místa"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain Authentication Required"
-msgstr "Vyžadováno ověření Domény"
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
+msgstr "Tyto balíèky budou instalovány"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Use libsafe for servers"
-msgstr "Použít libsafe pro servery"
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
+msgstr "Tyto balíèky budou odebrány"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Icelandic"
-msgstr "Islandské"
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
+msgstr "Nemù¾ete vybrat/nevybrat tento balíèek"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
-msgstr ""
-"\n"
-"Použití: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Toto je nepostradatelný balíèek, nemù¾e být odstranìn"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
+msgstr "Nemù¾ete od-oznaèit tento balíèek, proto¾e je u¾ nainstalovaný"
+
+#: ../../install_steps_gtk.pm_.c:395
msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
-"Maximální velikost\n"
-" povolená pro DrakBackup (MB)"
+"Tento balíèek musí být obnoven\n"
+"Jste si jisti, ¾e ho nechcete zvolit?"
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Propletené přípojné body %s\n"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "Tento balíèek musí být obnoven, nemù¾ete ho nezvolit"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo/grub mode"
-msgstr "Režim Lilo/Grub"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
+msgstr "Ukázat automaticky vybrané balíèky"
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "Martinique"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr "Instalovat"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Pevný disk / NFS"
+#: ../../install_steps_gtk.pm_.c:407
+msgid "Load/Save on floppy"
+msgstr "Ulo¾it/Nahrát na/z disketu/y"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Old user list:\n"
-msgstr "Starý seznam uživatelů:\n"
+#: ../../install_steps_gtk.pm_.c:408
+msgid "Updating package selection"
+msgstr "Aktualizuji výbìr balíèkù"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
-msgstr "Vyhledat zálohy"
+#: ../../install_steps_gtk.pm_.c:413
+msgid "Minimal install"
+msgstr "Minimální instalace"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "a number"
-msgstr "Äíslo"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
+msgstr "Vyberte si balíèky, které chcete nainstalovat"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "Švédské"
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr "Instaluji"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Který %s ovladaÄ mám zkusit?"
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr "Odhaduji"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr "Pokud jedna z vybraných služeb nepoběží, obdržíte varovnou zprávu"
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr "Zbývající èas "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Weekday"
-msgstr "Středa"
+#: ../../install_steps_gtk.pm_.c:469
+msgid "Please wait, preparing installation..."
+msgstr "Èekejte prosím, pøipravuji instalaci"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid "Filesystem types:"
-msgstr "Souborové systémy:"
+msgid "%d packages"
+msgstr "%d balíèkù(y)"
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "Northern Mariana Islands"
-msgstr "Northern Mariana Islands"
+msgid "Installing package %s"
+msgstr "Instaluji balíèek %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", multifunkÄní zařízení na HP JetDirect"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "Potvrdit"
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "Žádná"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
+msgstr "Odmítnout"
-#: ../../standalone/drakconnect:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
+"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 ""
-"Zadejte název vytvářeného profilu (nový profil je vytvořen jako kopie "
-"vybraného) :"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Floppy"
-msgstr "Disketa"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "Odkazy na Ghostscript"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Bootloader"
-msgstr "Zaváděcí program"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
-msgstr "Kontrolovat přístup všech služeb pomocí tcp_wrapperu"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "Přesunout"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Bootloader to use"
-msgstr "Zaváděcí program"
+"Vymìòte prosím CD!\n"
+"\n"
+"Prosím vlo¾te CD oznaèené \"%s\" do mechaniky a stisknìte Ok.\n"
+"\n"
+"Pokud toto CD nemáte, stisknìte Zru¹it a toto CD nebude nainstalováno."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "Název SMB serveru"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
+msgstr "Pøesto pokraèovat?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Name Servers:"
-msgstr "Jmenné servery:"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
+msgstr "Stala se chyba pøi øazení balíèkù:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Minute"
-msgstr "Minuta"
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
+msgstr "Stala se chyba pøi instalaci balíèkù:"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:10
msgid ""
"\n"
"Warning\n"
@@ -7296,13973 +5077,10197 @@ msgid ""
"copyright laws applicable to software programs.\n"
msgstr ""
"\n"
-"Varování\n"
+"Varování\n"
"\n"
-"PÅ™eÄtÄ›te si prosím pozornÄ› následující termíny. Pokud s nimi nesouhlasíte,\n"
-"nejste oprávnÄ›n pokraÄovat v instalaci následujícím CD. StisknÄ›te\n"
-"\"Odmítnout\" pro pokraÄování v instalaci bez tohoto média.\n"
+"Pøeètìte si prosím pozornì následující termíny. Pokud s nimi nesouhlasíte,\n"
+"nejste oprávnìn pokraèovat v instalaci následujícím CD. Stisknìte\n"
+"\"Odmítnout\" pro pokraèování v instalaci bez tohoto média.\n"
"\n"
"\n"
-"NÄ›které programy na dalším CD médiu nejsou šířeny podle licence GPL Äi\n"
-"podobné. Každý z těchto programů je šířen podle vlastní licence a podmínek.\n"
-"ÄŒtete pozornÄ› tyto licence a podmínky pÅ™ed tím, než zaÄnete daný software\n"
-"používat nebo šířit.\n"
-"Některé licence zakazují přenášení, vytváření duplikátů (mimo záložní "
+"Nìkteré programy na dal¹ím CD médiu nejsou ¹íøeny podle licence GPL èi\n"
+"podobné. Ka¾dý z tìchto programù je ¹íøen podle vlastní licence a podmínek.\n"
+"Ètete pozornì tyto licence a podmínky pøed tím, ne¾ zaènete daný software\n"
+"pou¾ívat nebo ¹íøit.\n"
+"Nìkteré licence zakazují pøená¹ení, vytváøení duplikatù (mimo zálo¾ní "
"kopii),\n"
-"další šíření, dekompilaci, reverzní engineering nebo modifikaci komponent.\n"
-"Každé porušení podmínek okamžitě přerušuje vaše práva podle dané licence.\n"
-"I když dané licence dávají nějaká práva, není dovoleno instalovat daný\n"
-"program na více systémů, přizpůsobovat ho provozu na síti. V případě\n"
-"pochybností kontaktujte distributora nebo výrobce daného programu.\n"
-"PÅ™enechání práv tÅ™etím osobám nebo kopírování Äásti komponent Äi\n"
-"dokumentace je také zakázáno.\n"
+"dal¹í ¹íøení, dekompilaci, reverzní engineering nebo modifikaci komponent.\n"
+"Ka¾dé poru¹ení podmínek okam¾itì pøeru¹uje va¹e práva podle dané licence.\n"
+"I kdy¾ dané licence dávají nìjaká práva, není dovoleno instalovat daný\n"
+"program na více systémù, pøizpùsobovat ho provozu na síti. V pøípadì\n"
+"pochybností kontaktujte distributora nebo výrobce daného programu.\n"
+"Pøenechání práv tøetím osobám nebo kopírování èásti komponent èi\n"
+"dokumentace je také zakázáno.\n"
"\n"
"\n"
-"Všechna práva na programy na dalším CD médiu patří jejím právoplatným\n"
-"vlastníkům podle autorského zákona.\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Expert mode"
-msgstr "/_Expertní režim"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Odebrat tiskárnu ze Star Office/OpenOffice.org/GIMP"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtual Server používaný pro sestavení vysoce výkonného\n"
-"a dostupného serveru."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr "Mikronésie"
+"V¹echna práva na programy na dal¹ím CD médiu patøí jejím právoplatným\n"
+"vlastníkùm podle autorského zákona.\n"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliardy barev (32 bitů)"
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
+msgstr "Stala se chyba"
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
-msgstr "Licence"
+#: ../../install_steps_interactive.pm_.c:85
+msgid "Do you really want to leave the installation?"
+msgstr "Chcete opravdu ukonèit instalaci?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "Generování klíÄů může chvíli trvat."
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
+msgstr "Souhlas s licencí"
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
+"Introduction\n"
"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
-"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"
+"1. License Agreement\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"
+"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"
-"<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"
+"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"
-"<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"
+"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"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
"\n"
+"3. The GPL License and Related Licenses\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"
+"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"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-"Zde můžete nastavit úroveň zabezpeÄení a administrátora vaÅ¡eho systému.\n"
+"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"
-"Administrátor bezpeÄnosti je ten, který dostává bezpeÄnostní upozornÄ›ní\n"
-"pokud je zvolena volba 'BezpeÄnostní varování'. Může to být jméno\n"
-"uživatele nebo email adresa.\n"
"\n"
+"5. Governing Laws \n"
"\n"
-"Nabídka s úrovnÄ›mi zabezpeÄení poskytovaných aplikací msec vám dovoluje si\n"
-"vybrat jednu z šesti přednastavených úrovní. Rozsah úrovní je od minimální\n"
-"zabezpeÄení až po paranoidní zabezpeÄení, vhodné pro servery:\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 ""
+"Úvod\n"
"\n"
+"Operaèní systém a rùzné èásti dostupné v distribuci Mandrake Linux jsou "
+"nazývány \"Softwarové produkty\" (\"Software Products\"). Softwarové "
+"produkty zahrnují, ale nejsou omezeny, na programy, metody, pravidla a "
+"dokumentaci, vztahující se k operaènímu systému a dal¹ím komponentám "
+"distribuce Mandrake Linux.\n"
"\n"
-"<span foreground=\"royalblue3\">Slabá</span>: Toto je absolutně "
-"nezabezpeÄená\n"
-"úroveň. MÄ›la by být použita pouze na tÄ›ch poÄítaÄích, které nejsou "
-"připojeny\n"
-"síti a nemá k nim kdokoliv přístup.\n"
"\n"
+"1. License Agreement\n"
"\n"
-"<span foreground=\"royalblue3\">Standardní</span>: Standardní doporuÄená\n"
-"úrovnÄ› pro poÄítaÄe, které jsou pÅ™ipojeny k Internetu jako klient.\n"
+"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"
-"<span foreground=\"royalblue3\">Vyšší</span>: Zde jsou už nějaké restrikce\n"
-"a každou noc jsou prováděny automatické kontroly.\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"
-"<span foreground=\"royalblue3\">Vysoká</span>: Tato úroveň je již vhodná "
-"při\n"
-"použití poÄítaÄe jako serveru s tím, že s k tomuto poÄítaÄi pÅ™ipojují další\n"
-"klienti. Pokud je poÄítaÄ pouze klientem, je vhodnÄ›jší nižší úroveň.\n"
+"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"
-"<span foreground=\"royalblue3\">Paranoidní</span>: Je stejná jako předchozí\n"
-"úroveň s tím, že systém je zcela uzavÅ™en a bezpeÄnost nastavena na maximum"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr "Autodetekce tiskárny (lokální, TCP/soket, a tiskárny SMB)"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr "Sagem (pomocí pppoa) usb"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"Stala se chyba - nebylo nalezeno žádné zařízení na kterém by se daly "
-"vytvořit nové souborové systémy. Zkontrolujte prosím hardware"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Spustit tiskový systém při startu systému"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Chcete se automaticky pÅ™ipojovat po startu poÄítaÄe?"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr "ID procesoru"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr "Řešení problémů se zvukem"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "Polské (rozložení QWERTY)"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Add Printer"
-msgstr "/Přid_at tiskárnu"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
"\n"
-"Drakbackup activities via CD:\n"
+"3. The GPL License and Related Licenses\n"
"\n"
-msgstr ""
+"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"
-"Aktivity programu DrakBackup skrze CD:\n"
"\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
+"4. Intellectual Property Rights\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"
+"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"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Pokoušíte se instalovat tiskový systém %s na poÄítaÄ, běžící v bezpeÄností "
-"úrovni %s.\n"
"\n"
-"Tiskový systém pracuje jako démon (proces na pozadí), který Äeká na tiskové "
-"úlohy a zpracovává je. Tento démon je také přístupný ze sítě pro jiné "
-"poÄítaÄe, takže se může stát pÅ™edmÄ›tem síťového útoku. Proto je vybráno "
-"pouze několik služeb, které jsou v této úrovni spuštěny automaticky při "
-"startu.\n"
+"5. Governing Laws \n"
"\n"
-"Chcete opravdu nastavit tiskový systém na tomto poÄítaÄi?"
+"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"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "PoÄítaÄ \"%s\", port %s"
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
+msgstr "Jste si jistý, ¾e odmítáte licenèní ujednání?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "Tento oddíl nemůže být použit pro loopback"
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "Klávesnice"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr "Soubor už existuje. Mám ho použít?"
+#: ../../install_steps_interactive.pm_.c:218
+msgid "Please choose your keyboard layout."
+msgstr "Vyberte si rozlo¾ení va¹í klávesnice."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
-msgstr "přijato: "
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
+msgstr "Zde je kompletní seznam dostupných klávesnic"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr "Pravá klávesa Alt"
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
+msgstr "Který typ instalace chcete?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "seznam alternativních ovladaÄů pro vaÅ¡i zvukovou kartu"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
+msgstr "Instalace/Aktualizace"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Brána(gateway)"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
+msgstr "Je to instalace nebo aktualizace?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr "Tonga"
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr "Doporuèená"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "Tunisko"
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Expertní"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing"
-msgstr "Sdílení skeneru"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade"
+msgstr "Aktualizovat"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile: "
-msgstr "Profil: "
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade packages only"
+msgstr "Aktualizovat pouze balíèky"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
-"KlepnÄ›te na zařízení v levé Äásti stromu a zobrazíte zde o nÄ›m informace."
+#: ../../install_steps_interactive.pm_.c:282
+msgid "Please choose the type of your mouse."
+msgstr "Vyberte si typ va¹í my¹i."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr "Povolí/zakáže automatické přihlášení."
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr "Pøipojení my¹i"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
-msgstr "Aplikace XawTV není nainstalovaná!"
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
+msgstr "Ke kterému sériovému portu je pøipojena va¹e my¹?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Nezahrnout kritické soubory (passwd, group, fstab)"
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
+msgstr "Emulace tlaèítek"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "starý, statický název zařízení, který se používá v balíÄku dev"
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
+msgstr "Emulace 2 tlaèítka"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
-msgstr "Povolit zaznamenávání podivných IPv4 paketů"
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
+msgstr "Emulace 3 tlaèítka"
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
-msgstr "Tato znaÄka se již používá"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr "Nastavuji PCMCIA karty..."
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"Vítejte v Průvodci nastavením tiskárny\n"
-"\n"
-"Tento průvodce vám pomůže nainstalovat vaši tiskárnu nebo tiskárny připojené "
-"k tomuto poÄítaÄi nebo přímo k síti.\n"
-"\n"
-"Pokud máte tiskárnu nebo tiskárny pÅ™ipojené k tomuto poÄítaÄi, zapojte je "
-"prosím a zapněte je; pak mohou být automaticky nalezeny. Vaše síťové "
-"tiskárny musí být rovněž zapnuty a připojené k síti, mají-li být automaticky "
-"nalezeny.\n"
-"\n"
-"Automatická detekce tiskáren připojených k síti probíhá podstatně déle než "
-"automatická detekce tiskáren pouze lokálnÄ› pÅ™ipojených k tomuto poÄítaÄi. "
-"Pokud nepotřebujete automatickou detekci tiskáren na síti, pak tuto "
-"autodetekci vypněte.\n"
-"\n"
-"Pokud jste pÅ™ipraveni, klepnÄ›te na tlaÄítko \"Dále\", nebo klepnÄ›te na "
-"tlaÄítko \"ZruÅ¡it\" pokud nechcete v tuto chvíli tiskárny nastavovat."
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
-msgstr "Řecké (polytonické)"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr "Nastavuji IDE"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Když naformátujete oddíl %s, ztratíte tím všechna jeho data"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection Time: "
-msgstr "Doba připojení: "
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr "nejsou dostupné ¾ádné diskové oddíly"
-#: ../../standalone/livedrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
+msgstr "Hledám oddíly, které lze pøipojit"
+
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr "Zvolte si pøípojné(mount) body"
+
+#: ../../install_steps_interactive.pm_.c:386
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."
+"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 ""
-"Vložte prosím InstalaÄní CD-ROM do mechaniky a stisknÄ›te Ok.\n"
-"Pokud CD nemáte, stiskněte Zrušit pro přerušení aktualizace systému."
+"Pro bootstrap není potøebné místo o velikosti 1MB! Instalace mù¾e pokraèovat "
+"ale pro spu¹tìní systému musíte vytvoøit bootstrap oddíl pomocí DiskDrake"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use group id for execution"
-msgstr "Použít při spuštění ID skupiny"
+#: ../../install_steps_interactive.pm_.c:395
+msgid "No root partition found to perform an upgrade"
+msgstr "Nebyl nalezen koøenový oddíl pro provedení aktualizace"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "Zvolte standardního uživatele:"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr "Koøenový oddíl"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "Gabon"
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr "Který diskový oddíl je koøenový (/) ?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"V případě vzdáleného CUPS serveru nemusíte nastavovat tiskárny zde,\n"
-"tiskárny budou automaticky detekovány."
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr "Musíte restartovat poèítaè aby se projevily zmìny v tabulce oddílù"
-#: ../../any.pm:1
-#, 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."
-msgstr ""
-"Mandrake Linux podporuje více jazyků. Můžete si zvolit další jazyky,\n"
-"které budou dostupné po instalaci a následném restartu systému."
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr "Zvolte diskové oddíly které chcete naformátovat"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
-"Adresář (nebo modul), do kterého bude umístÄ›na záloha na tomto poÄítaÄi."
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
+msgstr "Otestovat na vadné stopy?"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain"
-msgstr "Doména"
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr "Formátuji oddíly"
-#: ../../any.pm:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Pokud je třeba, upřesněte velikost paměti (nalezeno %d MB)"
+msgid "Creating and formatting file %s"
+msgstr "Vytváøím a formátuji soubor %s"
-#: ../../help.pm:1
+#: ../../install_steps_interactive.pm_.c:470
#, 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."
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-"LILO a Grub jsou zavadÄ›Äe systému. Tato Äást je běžnÄ› plnÄ› automatická.\n"
-"DrakX analyzuje zaváděcí sektor disku a zachová se podle toho, co zde\n"
-"nalezne:\n"
-"\n"
-" * pokud nalezne zaváděcí sektor Windows, přepíše ho sektorem pro LILO/Grub\n"
-"tak, aby bylo možné spouštět jak systém Windows tak i Linux;\n"
-"\n"
-" * pokud nalezne zaváděcí sektor pro LILO nebo Grub, tak jej přepíše novým.\n"
-"\n"
-"Pokud instalaÄní program nedokáže rozhodnout, zeptá se na to, kam má "
-"zavadÄ›Ä\n"
-"umístit."
+"Selhala kontrola souborového systému %s. Chcete opravit chyby? (pozor, mù¾e "
+"dojít ke ztrátì dat)"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "DNS poskytovatele Ä.2 (volitelné)"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "Startovací zařízení"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Na kterém oddílu chcete měnit velikost?"
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Není dostatek odkládacího prostoru k instalaci, prosím pøidejte nìjaký"
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr "Spojené státy (Minor Outlying Islands)"
+#: ../../install_steps_interactive.pm_.c:479
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Hledám dostupné balíèky a znovu sestavuji databázi balíèkù..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Djibouti"
-msgstr "Džibuti"
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr "Hledám dostupné balíèky"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Nástroj na sledování logů"
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Looking at packages already installed..."
+msgstr "Prohledávám ji¾ instalované balíèky..."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected on port %s"
-msgstr "detekováno na portu %s"
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr "Vyhledávám balíèky pro aktualizaci"
-#: ../../printer/data.pm:1
+#: ../../install_steps_interactive.pm_.c:505
#, c-format
-msgid "LPD"
-msgstr "LPD"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
+msgstr ""
+"Na va¹em systému není dostatek místa pro instalaci nebo aktualizaci (%d > %d)"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Grafická karta: %s\n"
+#: ../../install_steps_interactive.pm_.c:541
+msgid ""
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
+msgstr ""
+"Vyberte si, zda chcete ulo¾it nebo nahrát výbìr balíèkù na disketu.\n"
+"Formát výbìru je stejný jako formát automaticky generované diskety."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Nas_tavit jako výchozí"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Load from floppy"
+msgstr "Nahrát z diskety"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
-msgstr "Přijímat icmp echo"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr "Ulo¾it na disketu"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Loading from floppy"
+msgstr "Nahrávám z diskety"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech série CC (sériová) s emulací koleÄka"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Package selection"
+msgstr "Výbìr balíèkù"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "Rozšířené diskové oddíly nejsou na tomto systému podporovány"
+#: ../../install_steps_interactive.pm_.c:552
+msgid "Insert a floppy containing package selection"
+msgstr "Vlo¾te disketu obsahující výbìr balíèkù"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Splash selection"
-msgstr "Výběr zaváděcího obrázku"
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
+msgstr "Velikost vybraných balíèkù je vìt¹í ne¾ místo na disku"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Nastavení ISDN"
+#: ../../install_steps_interactive.pm_.c:649
+msgid "Type of install"
+msgstr "Typ instalace"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "high"
-msgstr "vysoká"
+#: ../../install_steps_interactive.pm_.c:650
+msgid ""
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Nevybrali jste ¾ádnou skupinu balíèkù\n"
+"Vyberte si prosím alespoò minimální instalaci"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Sdílení Internetového Připojení"
+#: ../../install_steps_interactive.pm_.c:653
+msgid "With X"
+msgstr "X prostøedí"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Choose file"
-msgstr "Vyberte soubor"
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
+msgstr "Základní dokumentace (doporuèeno!)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Summary: "
-msgstr "Souhrn: "
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Opravdu minimální instalace (speciálnì bez urpmi)"
-#: ../../network/shorewall.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:741
msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
+"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 ""
-"Varování! Bylo nalezeno existující nastavení firewallu. Po instalaci může "
-"být zapotÅ™ebí nÄ›jaká ruÄní úprava."
+"Pokud máte v¹echna CD vypsaná ní¾e, klepnìte na Ok.\n"
+"Pokud nemáte ¾ádné z nich, klepnìte na Zru¹it.\n"
+"Pokud Vám chybí pouze nìkteré z nich, odznaète je, a zvolte Ok."
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:746
#, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Tisk/Přístup k foto kartám na \"%s\""
+msgid "Cd-Rom labeled \"%s\""
+msgstr "CD-ROM oznaèené \"%s\""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
-msgstr "Denní bezpeÄnostní kontrola"
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr "Pøipravuji instalaci"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:776
#, c-format
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"Installing package %s\n"
+"%d%%"
msgstr ""
-"Chcete povolit tisk na tiskárnách vypsaných výše nebo na tiskárnách v "
-"lokální síti?\n"
+"Instaluji balíèek %s\n"
+"%d%%"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer default settings"
-msgstr "Výchozí nastavení tiskárny"
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
+msgstr "Probíhá nastavování po instalaci"
-#: ../../mouse.pm:1
+#: ../../install_steps_interactive.pm_.c:828
#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Standardní PS2 myÅ¡ s koleÄkem"
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Vlo¾te prosím spou¹tìcí disketu do %s"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm_.c:834
#, c-format
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "Vlo¾te prosím disketu s moduly do %s"
+
+#: ../../install_steps_interactive.pm_.c:861
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)"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates ?"
msgstr ""
-"příznak WP pro CR0 registr procesoru zabezpeÄuje ochranu pÅ™ed zápisem na "
-"úrovni pamÄ›ti, takže jeho povolením dojde k prevenci neÄekaným přístupům do "
-"pamÄ›ti uživatelských aplikací (Äili je to ochrana pÅ™ed chybou)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Odebírám starou tiskárnu \"%s\"..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Select a device !"
-msgstr "Zvolte zařízení !"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected server"
-msgstr "Odstranit vybraný server"
+"Nyní máte mo¾nost stáhnout aktualizované balíèky. Tyto balíèky byly\n"
+"uvolnìny a¾ po vydání distribuce. Mohou obsahovat\n"
+"bezpeènostní aktualizace nebo opravy chyb.\n"
+"\n"
+"Chcete-li získat tyto balíèky, musíte mít k dispozici\n"
+"funkèní pøipojení k Internetu.\n"
+"\n"
+"Chcete nainstalovat aktualizace?"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using dhcp) usb"
-msgstr "Sagem (pomocí dhcp) usb"
+#: ../../install_steps_interactive.pm_.c:876
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgstr "Kontaktuji web Mandrake Linux pro získání seznamu dostupných zrcadel"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Southern Territories"
-msgstr "Francouzská jižní teritoria"
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
+msgstr "Zvolte si zrcadlo (mirror) pro stahování balíèkù"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "jméno dodavatele procesoru"
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Stahuji ze zrcadla(mirror) seznam dostupných balíèkù"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Udržuje %s:\n"
-" \tAby se mohli uživatelé přihlásit do systému z bezdiskových stanic, "
-"musí být duplikován\n"
-" \tjejich záznam z /etc/shadow v %s. drakTermServ v tomto ohledu\n"
-" \tpomáhá přidáním nebo odebráním uživatelů systému z tohoto souboru."
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr "Jaké je va¹e èasové pásmo?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr "Všechna data z tohoto oddílu by měla být zálohována"
+#: ../../install_steps_interactive.pm_.c:923
+msgid "Hardware clock set to GMT"
+msgstr "Hardwarové hodiny nastaveny na GMT"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "Instaluji balíÄek %s"
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Automatická synchronizace èasu (pomocí NTP)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr "Testuji zařízení a nastavuji HPOJ..."
+#: ../../install_steps_interactive.pm_.c:931
+msgid "NTP Server"
+msgstr "NTP Server"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Abyste mohli mít více oddílů, musíte smazat jeden existující a na jeho "
-"místě\n"
-"vytvořit rozšířený (extended) oddíl"
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
+msgstr "Vzdálený CUPS server"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"Vaše tiskárna byla automaticky nastavena tak, že máte ze svého PC přístup ke "
-"ÄteÄce karty. Nyní můžete pÅ™istupovat ke svým fotografickým kartám pomocí "
-"grafického programu \"MtoolsFM\" (Menu: \"Aplikace\" -> \"Souborové nástroje"
-"\" -> \"Správce souborů MTools\") nebo z příkazové řádky pomocí nástroje "
-"\"mtools\" (zadejte \"man mtools\", chcete-li získat více informací). "
-"Souborový systém vaši karty naleznete pod písmenem zařízení \"p:\", případně "
-"dalších písmenech, pokud máte více tiskáren HP se ÄteÄkou karet. V programu "
-"\"MtoolsFM\" můžete pÅ™epínat mezi písmeny zařízení pomocí políÄka v pravém "
-"horním rohu každého výÄtu souborů."
+#: ../../install_steps_interactive.pm_.c:966
+msgid "No printer"
+msgstr "Bez tiskárny"
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "VýbÄ›r balíÄků pro instalaci"
+#: ../../install_steps_interactive.pm_.c:982
+msgid "Do you have an ISA sound card?"
+msgstr "Máte nìjakou zvukovou kartu na ISA sbìrnici?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "VŠECHNY diskové oddíly a data na disku %s budou zrušena"
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
+msgstr "Pro nastavení zvukové karty spus»te po instalaci \"sndconfig\"."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-"Na vašem systému není dostatek místa pro instalaci nebo aktualizaci (%d > %d)"
+"Nebyla nalezena zvuková karta. Zkuste spustit po instalaci \"harddrake\"."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Každá tiskárna potřebuje název (např. \"tiskarna\"). Popis a umístění nemusí "
-"být vyplněny. Jsou to komentáře pouze pro uživatele."
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
+msgstr "Souhrn"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"\"%s\": klepnutím na \"%s\" se otevře průvodce nastavením.\n"
-"Jak nastavit tiskárnu se také dozvíte z odpovídající kapitoly z příruÄky\n"
-"\"ZaÄínáme\". Rozhraní je podobné tomu, které vidíte pÅ™i instalaci."
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
+msgstr "My¹"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr "Bhútán"
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
+msgstr "Èasová zóna"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "Síťové rozhraní"
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "Tiskárna"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Odpojení od Internetu selhalo."
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
+msgstr "ISDN karta"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
-msgstr "NaÄítám data k tisku ..."
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
+msgstr "Zvuková karta"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "Korejská klávesnice"
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
+msgstr "TV karta"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Not connected"
-msgstr "Nepřipojen"
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
+msgstr "LDAP"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "Konfigurace připojení k internetu"
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+msgid "NIS"
+msgstr "NIS"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
-msgstr "Řecké"
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+msgid "Windows Domain"
+msgstr "Doména Windows"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts a Nevis"
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+msgid "Local files"
+msgstr "Lokální soubory"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Standardní třítlaÄítková myÅ¡ s emulací koleÄka"
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr "Hlavní(root) heslo"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
-msgstr "Povolit zavadÄ›Ä OF?"
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr "Bez hesla"
-#: ../../fsedit.pm:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Nemůžete použít JFS pro oddíl menší než 16MB"
+msgid "This password is too short (it must be at least %d characters long)"
+msgstr "Toto heslo je pøíli¹ jednoduché (musí být alespoò %d znakù dlouhé)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Smazat CDRW médium (při prvním sezení)"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "Ovìøení"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Vertikální frekvence monitoru: %s\n"
+#: ../../install_steps_interactive.pm_.c:1088
+msgid "Authentication LDAP"
+msgstr "Ovìøení pomocí LDAP"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "Přípojný bod"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
+msgstr "Základní dn pro LDAP"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"Vyskytla se chyba:\n"
-"%s\n"
-"Zkuste změnit některé parametry"
+#: ../../install_steps_interactive.pm_.c:1090
+msgid "LDAP Server"
+msgstr "LDAP server"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "TCP/IP hostitel \"%s\", port %s"
+#: ../../install_steps_interactive.pm_.c:1096
+msgid "Authentication NIS"
+msgstr "Ovìøení pomocí NIS"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "User :"
-msgstr "Uživatel :"
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "NIS Doména"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore system"
-msgstr "Obnovit systém"
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr "NIS Server"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1104
msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
+"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 ""
-"Zde je seznam poÄítaÄů, na kterých jsou přístupné lokálnÄ› pÅ™ipojené skenery: "
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
-msgstr "Konec rozsahu DHCP adres"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Another one"
-msgstr "Další"
+"Aby toto správnì pracovalo se serverem W2K PDC, bude muset správce serveru "
+"spustit: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" "
+"everyone / add a restartovat server.\n"
+"Budete také potøebovat u¾ivatelské jméno a heslo Správce Domény, abyste "
+"mohli pøipojit poèítaè do domény Windows(TM).\n"
+"Jestli¾e je¹tì není povolena sí», aplikace DrakX se pokusí pøipojit k doménì "
+"po fázi nastavení sítì.\n"
+"Pakli¾e toto nastavení z jakéhokoli dùvodu sel¾e, a ovìøení na PDC nebude "
+"pracovat správnì, spus»te po nabìhnutí systému 'smbpasswd -j DOMAIN -U USER%"
+"PASSWORD' (pou¾ijte svou doménu Windows(TM) a u¾ivatelské jméno a heslo "
+"Správce domény).\n"
+"Pøíkaz 'wbinfo -t' otestuje, zda-li va¹e tajné informace pro ovìøení jsou "
+"správné."
+
+#: ../../install_steps_interactive.pm_.c:1106
+msgid "Authentication Windows Domain"
+msgstr "Doména Windows pro ovìøení"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
-msgstr "DrakBackup"
+#: ../../install_steps_interactive.pm_.c:1108
+msgid "Domain Admin User Name"
+msgstr "U¾ivatelské jméno Správce domény"
-#: ../../lang.pm:1
-#, c-format
-msgid "Colombia"
-msgstr "Kolumbie"
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
+msgstr "Heslo Správce domény"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1144
msgid ""
-"Current configuration of `%s':\n"
+"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"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
msgstr ""
-"Aktuální konfigurace pro '%s':\n"
+"Pomocí startovací diskety je mo¾né spustit systém Linux bez závislosti na\n"
+"zavadìèi systému. To je u¾iteèné tøeba v pøípadì, ¾e nechcete instalovat "
+"SILO\n"
+"na poèítaè, nebo jiný operaèní systém SILO pøepsal nebo SILO nepracuje "
+"správnì\n"
+"s hardwarovou konfigurací. Vlastní startovací disketa je také u¾iteèná "
+"tehdy,\n"
+"pokud je potøeba provést opravu systému po pøedchozím selhání.\n"
"\n"
-"Síť: %s\n"
-"IP adresa: %s\n"
-"IP atributy: %s\n"
-"OvladaÄ: %s"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n Play"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr "Reunion"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "Detaily"
+"Pokud chcete vytvoøit startovací disketu, vlo¾te disketu do mechaniky\n"
+"a stisknìte \"OK\"."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Z bezpeÄnostních důvodů bude spojení ukonÄeno."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Synchronization tool"
-msgstr "Nástroj na synchronizaci"
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr "první mechaniky"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking your system..."
-msgstr "Zkoumám váš poÄítaÄ..."
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "druhé mechaniky"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print"
-msgstr "Tisk"
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "Pøeskoèit"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:1167
#, c-format
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+"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"
msgstr ""
-"Vložte pásku s názvem %s\n"
-" do páskové jednotky %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "Mongolsko"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
-msgstr "Připojený\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS"
-msgstr "Nastavení serveru CUPS"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Interface"
-msgstr "Grafické rozhraní"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Users"
-msgstr "Obnovit uživatele"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Å ifrovací klÃ­Ä pro %s"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to recover your system?"
-msgstr "Chcete obnovit váš systém?"
+"Pomocí startovací diskety mù¾ete spustit Linux bez pou¾ití normálního\n"
+"zavádìcího programu (bootloader). To je u¾iteèné pokud nechcete instalovat\n"
+"LILO (nebo Grub), nebo jiný operaèní systém odstraní LILO, nebo LILO\n"
+"na va¹em poèítaèi nefunguje. Vlastní startovací disketa také mù¾e být\n"
+"pou¾ita spolu s \"Mandrake záchranným diskem\" (rescue image), co¾ "
+"poskytuje\n"
+"úèinnou pomoc pøi havárii systému. Chcete vytvoøit startovací disketu?\n"
+"%s"
-#: ../../services.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1173
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."
+"\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)."
msgstr ""
-"Portmapper spravuje RPC spojení, která jsou používána protokoly jako NFS\n"
-"a NIS. Portmap server musí být spuÅ¡tÄ›n na poÄítaÄích, které fungují jako\n"
-"servery pro protokoly, které používají mechanismus RPC."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detected hardware"
-msgstr "Nalezený hardware"
+"\n"
+"\n"
+"(VAROVÁNÍ! Pro koøenový oddíl pou¾íváte XFS, vytvoøení \n"
+"spou¹tìcí diskety bude zøejmì neúspì¹né, proto¾e XFS\n"
+"potøebuje velmi velký ovladaè)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr "Mauritius"
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "Bohu¾el není dostupná ¾ádná disketová mechanika"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
-msgstr "Myamarské (Burnské)"
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr "Zvolte mechaniku, kde chcete vytvoøit startovací disketu"
-#: ../../fs.pm:1
+#: ../../install_steps_interactive.pm_.c:1189
#, c-format
-msgid "Enabling swap partition %s"
-msgstr "Aktivuji odkládací oddíl %s"
+msgid "Insert a floppy in %s"
+msgstr "Vlo¾te disketu do %s"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"Nejsou zde žádné FAT oddíly, které by bylo použít pro loopback (nebo není "
-"dostatek místa)"
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr "Vytváøím startovací disketu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr "Arménské (staré)"
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr "Pøipravuji zavádìcí program"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1210
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."
+"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 to boot your machine"
msgstr ""
-"Tiskárna s názvem \"%s\" již na straně %s existuje.\n"
-"Klepněte na \"Přenést\" pro přepsání.\n"
-"Také můžete napsat nový název nebo ji pÅ™eskoÄit."
+"Zdá se, ¾e máte nìjaký neznámý poèítaè,\n"
+"na kterém nebude Yaboot pracovat.\n"
+"Instalace bude pokraèovat, ale budete\n"
+"potøebovat BootX pro spu¹tìní systému."
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
+msgstr "Chcete pou¾ít aboot?"
+
+#: ../../install_steps_interactive.pm_.c:1219
msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
-"NaleznÄ›te Å™eÅ¡ení vaÅ¡ich problémů pomocí on-line podpory spoleÄnosti "
-"MandrakeSoft."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", poÄítaÄ \"%s\", port %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Monaco"
-msgstr "Monako"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Vytváření diskových oddílů selhalo: %s"
+"Stala se chyba pøi instalaci aboot,\n"
+"mám se pokusit o instalaci i kdy¾ to zru¹í první oddíl na disku?"
-#: ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formátování %s skonÄilo chybou"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Canada (cable)"
-msgstr "Kanada (kabel)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Floppy creation completed"
-msgstr "Vytváření diskety ukonÄeno"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Upgrade"
-msgstr "Aktualizovat"
+#: ../../install_steps_interactive.pm_.c:1226
+msgid "Installing bootloader"
+msgstr "Instaluji zavádìcí program"
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
-msgstr "Pracovní stanice"
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Instalace zavádìcího programu neuspìla. Stala se tato chyba:"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:1240
#, c-format
msgid ""
-"Installing package %s\n"
-"%d%%"
+"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 ""
-"Instaluji balíÄek %s\n"
-"%d%%"
+"Mù¾ete potøebovat zmìnit startovací zaøízení pro Open Firmware\n"
+" pro aktivaci spou¹tìcího programu. Pokud nevidíte po spu¹tìní prompt,\n"
+" stisknìte pøi startu Command-Option-O-F a zadejte:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+" Potom zadejte: shut-down\n"
+"Pøi dal¹ím spu¹tìní u¾ uvidíte prompt."
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "Kyrgyzstan"
-msgstr "Kyrgyzstán"
+msgid "Insert a blank floppy in drive %s"
+msgstr "Vlo¾te prázdnou disketu do %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "MultifunkÄní zařízení na USB"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
+msgstr "Vytváøím disketu pro automatickou instalaci"
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1289
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"
+"Some steps are not completed.\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."
+"Do you really want to quit now?"
msgstr ""
+"Nìkteré kroky nebyly dokonèeny.\n"
+"\n"
+"Chcete opravdu nyní skonèit?"
-#: ../../help.pm:1
-#, c-format
-msgid "With basic documentation"
-msgstr "Obsahuje základní dokumentaci"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr "Anacron - spouští opakující se akce"
-
-#: ../../install_interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:1300
#, 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 `/'"
+"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 ""
-"Musíte mít kořenový oddíl.\n"
-"K jeho vytvoření musíte zvolit jeden existující oddíl\n"
-"(nebo vytvořit nový), zvolit 'Přípojný bod'\n"
-"a nastavit ho na '/'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "Západní Sahara"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Proxy by měla být http://..."
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr "Jižní Afrika"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Vysunout pásku po dokonÄení zálohy"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Disketa Etherboot/ISO"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Změnit nastavení tiskárny"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
-msgstr "Vyberte oddíl"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Edit current rule"
-msgstr "Upravit souÄasné pravidlo"
+"Gratulujeme vám, instalace je dokonèena.\n"
+"Vyjmìte startovací média a stisknìte Return pro restart.\n"
+"\n"
+"\n"
+"Na opravy této instalace systému Mandrake Linux se lze informovat\n"
+"na stránce Errata:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Informace o konfiguraci systému po instalaci jsou dostupné\n"
+"v dané kapitole oficiální u¾ivatelské pøíruèky pro Mandrake Linux."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
-msgstr "%s"
+#: ../../install_steps_interactive.pm_.c:1313
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Please test the mouse"
-msgstr "Otestujte, prosím, funkÄnost myÅ¡i"
+#: ../../install_steps_interactive.pm_.c:1318
+msgid "Generate auto install floppy"
+msgstr "Vytvoøit disketu pro automatickou instalaci"
-#: ../../fs.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1320
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)."
+"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 ""
-"Neaktualizovat Äas přístupu pro tento souborový systém\n"
-"(např. pro rychlejší přístup k frontě zpráv při provozování diskusního "
-"serveru)."
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3 tlaÄítková s emulací koleÄka"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Sticky-bit"
-msgstr "Sticky-bit"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other Media"
-msgstr "Další média"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
+"Instalace mù¾e být v pøípadì potøeby plnì automatická,\n"
+"ale pou¾ije se celý disk!!!\n"
+"(v pøípadì instalace na druhý poèítaè)\n"
+"\n"
+"Takto lze jednodu¹e zopakovat instalaci.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files"
-msgstr "Zálohovat systémové soubory"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
+msgstr "Automaticky"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Sector"
-msgstr "Sektor"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Replay"
+msgstr "Zopakovat"
-#: ../../lang.pm:1
-#, c-format
-msgid "Qatar"
-msgstr "Katar"
+#: ../../install_steps_interactive.pm_.c:1328
+msgid "Save packages selection"
+msgstr "Ulo¾it výbìr jednotlivých balíèkù"
-#: ../../any.pm:1
+#: ../../install_steps_newt.pm_.c:20
#, c-format
-msgid "LDAP Base dn"
-msgstr "Základní dn pro LDAP"
+msgid "Mandrake Linux Installation %s"
+msgstr "Mandrake Linux Instalace %s"
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
msgid ""
-"You can't select this package as there is not enough space left to install it"
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-"Nemůžete vybrat tento balíÄek, protože pro jeho instalaci není dost místa"
+" <Tab>/<Alt-Tab> pøepn. mezi prvky | <Space> výbìr | <F12> dal¹í obraz."
-#: ../../help.pm:1
-#, c-format
-msgid "generate auto-install floppy"
-msgstr "Vytvoří disketu pro automatickou instalaci"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr "Typ vytáÄení"
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
+msgstr "chybí kdesu"
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr "Sdílení souborů"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
+msgstr "chybí consolehelper"
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "VyÄistit adresář /tmp pÅ™i každém startu"
+#: ../../interactive.pm_.c:152
+msgid "Choose a file"
+msgstr "Vyberte soubor"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malawi"
-msgstr "Malawi"
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
+msgstr "Roz¹íøení"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: false"
-msgstr "Lokální konfigurace: false"
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
+msgstr "Základní"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "System settings"
-msgstr "Nastavení systému"
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
+msgstr "<- Pøedchozí"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Vyberte si typ vaší myši."
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+msgid "Next"
+msgstr "Dal¹í"
-#: ../../services.pm:1
-#, c-format
-msgid "running"
-msgstr "spuštěno"
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr "©patná volba, zkuste to znovu\n"
-#: ../../standalone/harddrake2:1
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "class of hardware device"
-msgstr "třída hardwarového zařízení"
+msgid "Your choice? (default %s) "
+msgstr "Va¹e volba? (výchozí %s) "
-#: ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-"Zde jsou poÄítaÄe a sítÄ›, na kterých budou dostupné lokální tiskárna(y):"
-
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "Velká Británie"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Indonesia"
-msgstr "Indonésie"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "výchozí"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "France [SECAM]"
-msgstr "Francie [SECAM]"
-
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "omezení"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "must have"
-msgstr "musíte mít"
+"Polo¾ky, které je potøeba vyplnit:\n"
+"%s"
-#: ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm_.c:70
#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS nepodporuje tiskárny na serverech Novell nebo tiskárny, které posílají "
-"data na skupinu příkazů.\n"
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Va¹e volba? (0/1, výchozí '%s') "
-#: ../../lang.pm:1
+#: ../../interactive/stdio.pm_.c:95
#, c-format
-msgid "Senegal"
-msgstr "Senegal"
+msgid "Button `%s': %s"
+msgstr "Tlaèítko '%s': %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Command line"
-msgstr "Příkazová řádka"
+#: ../../interactive/stdio.pm_.c:96
+msgid "Do you want to click on this button?"
+msgstr "Chcete kliknout na toto tlaèítko? "
-#: ../advertising/08-store.pl:1
-#, 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:"
-msgstr ""
-"Náš elektronický obchod nabízí ucelenou řadu našich Linuxových řešení, "
-"stejně jako speciální nabídky našich produktů a další \"lahůdky\":"
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
+msgstr " zadejte `void` pokud chcete prázdný vstup"
-#: ../../standalone/drakbackup:1
+#: ../../interactive/stdio.pm_.c:105
#, c-format
-msgid "March"
-msgstr "Březen"
+msgid "Your choice? (default `%s'%s) "
+msgstr "Va¹e volba? (výchozí '%s'%s) "
-#: ../../any.pm:1
+#: ../../interactive/stdio.pm_.c:123
#, c-format
-msgid "access to administrative files"
-msgstr "přístup k administrativním souborům"
+msgid "=> There are many things to choose from (%s).\n"
+msgstr "=> Je zde více voleb, ze kterých je mo¾né si vybrat (%s).\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../interactive/stdio.pm_.c:126
msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
msgstr ""
-"Chyba při posílání pošty\n"
-" Vámi zvolený report nebyl odeslán\n"
-" ProveÄte prosím nastavení sendmailu"
+"Vyberte si prosím první èíslo z výbìru, které chcete editovat,\n"
+"nebo stisknìte Enter pro pokraèování.\n"
+"Va¹e volba? "
-#: ../../fs.pm:1
+#: ../../interactive/stdio.pm_.c:139
#, 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.)"
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
-"Nepovolit vliv bitů set-user-identifier nebo set-group-identifier.\n"
-"(Není to nebezpeÄené, ale v případÄ›, že máte instalovaný suidperl(1) to\n"
-"potenciálnÄ› nebezpeÄné být může.)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Ošetří automaticky závisloti"
+"=> Oznamuji zmìnu návì¹tí:\n"
+"%s"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "Odkládací (swap)"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
+msgstr "Znovu odeslat"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom settings"
-msgstr "Vlastní nastavení"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "Èeské (QWERTZ)"
-#: ../../../move/move.pm:1
-#, 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."
-msgstr ""
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "Nìmecké"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Other"
-msgstr "Obnovit ostatní"
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Dvoøák"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "TV karta"
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "©panìlské"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Tiskárna na serveru Windows 95/98/NT"
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "Finské"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/Na_stavit CUPS server"
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "Francouzské"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
-msgstr ", "
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "Norské"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
-msgstr "Odeslat výpis příkazu lspci"
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "Polské"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Odstranit vybraný poÄítaÄ/síť"
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "Ruské"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr "Postfix je program pro doruÄování poÅ¡ty z jednoho poÄítaÄe na jiný."
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
+msgstr "©védské"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "Uzbecké (cyrilice)"
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "UK-Britské"
-#: ../../keyboard.pm:1
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Zde můžete vybrat klávesu nebo kombinaci kláves, kterou\n"
-"budete moci přepínat rozložení znaků vaší klávesnice.\n"
-"(napÅ™. mezi Äeským a americkým)"
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "US-Americké"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Rychlé připojení do sítě"
+#: ../../keyboard.pm_.c:167
+msgid "Albanian"
+msgstr "Albánské"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr "pokud je nastaveno, posílá výsledek kontroly na tty."
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
+msgstr "Arménské (staré)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From CD"
-msgstr "Obnovit z CD"
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
+msgstr "Arménské (psací stroj)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Váš poÄítaÄ bude nastaven pro sdílení svého pÅ™ipojení k Internetu.\n"
-"Tato vlastnost umožňuje přístup dalších poÄítaÄů na lokální síti k síti "
-"Internet pÅ™es pÅ™ipojení tohoto poÄítaÄe.\n"
-"\n"
-"PÅ™ed pokraÄováním se ujistÄ›te, že jste nastavili vaÅ¡i síť a pÅ™ipojení k "
-"Internetu pomocí aplikace drakconnect.\n"
-"\n"
-"Pozn.: Pro nastavení lokální sítě (LAN) potřebujete vyhrazený síťový adaptér."
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
+msgstr "Arménské (foneticky)"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr ""
-"Vyberte si prosím, který síťový adaptér chcete použít pro připojení k "
-"internetu"
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
+msgstr "Ázerbajd¾ánské (latinka)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Přístup k paměťové kartÄ› na multifunkÄním zařízení od HP"
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "Belgické"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
-msgstr ""
-"ZvyÅ¡te svou úroveň využití poÄítaÄů s pomocí vybraných partnerů, kteří "
-"nabízejí profesionální služby kompatibilní s distribucí Mandrake Linux"
+#: ../../keyboard.pm_.c:178
+msgid "Bengali"
+msgstr "Bengálské"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
-msgstr "Autoři:"
+#: ../../keyboard.pm_.c:179
+msgid "Bulgarian (phonetic)"
+msgstr "Bulharské (foneticky)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Sdílení Internetového připojení je nyní vypnuto."
+#: ../../keyboard.pm_.c:180
+msgid "Bulgarian (BDS)"
+msgstr "Bulharské (BDS)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr "pokud je nastaveno, ověřuje kontrolní souÄet pro suid/sgid soubory."
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
+msgstr "Brazilské (ABNT-2)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latin American"
-msgstr "Latinsko-Americké"
+#: ../../keyboard.pm_.c:184
+msgid "Bosnian"
+msgstr "Bosenské"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Tiskový režim pro japonský text"
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
+msgstr "Bìloruské"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Old device file"
-msgstr "Starý soubor se zařízením"
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "©výcarské (Nìmecký styl)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "Informace: "
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "©výcarské (Francouzský styl)"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
-msgstr "TlaÄítko '%s': %s"
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "Èeské (QWERTY)"
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Prosím poÄkejte"
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr "Nìmecké (bez mrtvých kláves)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
+msgstr "Devanagari"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "None"
-msgstr "Žádné"
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "Dánské"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Zadaná IP adresa není správná.\n"
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Dvoøák (US) "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Ujistěte se prosím, že mezi službami je přítomen cron démon."
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Dvoøák (Norské)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
-msgstr "Ethernetová karta"
+#: ../../keyboard.pm_.c:196
+msgid "Dvorak (Swedish)"
+msgstr "Dvoøák (©védské) "
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete selected printer"
-msgstr "Smazat vybranou tiskárnu"
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "Estonské"
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "Informace"
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Gruzínské (\"Ruské\" rozlo¾ení)"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "Instalace"
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Gruzínské (rozlo¾ení \"Latin\")"
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Klepněte na \"%s\", pokud chcete smazat všechna data a oddíly na tomto\n"
-"pevném disku. BuÄte opatrní, po odklepnutí tlaÄítka \"%s\" nelze obnovit "
-"žádná dřívější data ani oddíly a to i pro Windows.\n"
-"\n"
-"Klepnutím na \"%s\" zrušíte tuto operaci bez ztráty dat a oddílů na disku."
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "Øecké"
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "UkonÄení instalace"
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
+msgstr "Gujartské"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
-msgstr ""
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
+msgstr "Gurmutské"
-#: ../../standalone/drakgw:1
-#, 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)."
-msgstr ""
-"Vše se podařilo nastavit.\n"
-"Nyní lze použít tento poÄítaÄ pro sdílení pÅ™ipojení k Internetu pro vaÅ¡i "
-"lokální síť, která používá automatickou konfiguraci sítě (DHCP)."
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "Maïarské"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Vzdálený CUPS server"
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "Chorvatské"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - myš"
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
+msgstr "Izraelské"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Na vašem systému je nastaveno pouze jedno síťové rozhraní:\n"
-"\n"
-"%s\n"
-"\n"
-"Na tomto adaptéru bude nastavena lokální síť."
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr "Izraelské (foneticky)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
-msgstr "Odeslat informace o procesoru"
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr "Íránské"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Minimal install"
-msgstr "Minimální instalace"
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr "Islandské"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "Etiopie"
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "Italské"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
-msgstr "ANO"
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
+msgstr "Inuktitutské"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
-msgstr "Povolit příkazy \"crontab\" a \"at\" pro uživatele"
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
+msgstr "Japonská 106 kláves"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr "Devanagari"
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
+msgstr "Korejská klávesnice"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- zařízení PCI: udává slot PCI, zařízení a funkci této karty\n"
-"- zařízení EIDE: zařízení je buÄ master nebo slave\n"
-"- zařízení SCSI: udává ID sběrnice a zařízení SCSI"
+#: ../../keyboard.pm_.c:218
+msgid "Latin American"
+msgstr "Latinsko-Americké"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Celková velikost: %d / %d MB"
+#: ../../keyboard.pm_.c:219
+msgid "Laotian"
+msgstr "Laoské"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "disabled"
-msgstr "vypnuto"
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
+msgstr "Litevské AZERTY (stará)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Search for new scanners"
-msgstr "Vyhledání nový skenerů"
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
+msgstr "Litevské AZERTY (nová)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Disabling servers..."
-msgstr "Zakazuji servery..."
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Litevské \"èíselná øada\" QWERTY"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Instalace %s neuspěla. Stala se tato chyba:"
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Litevské \"foneticky\" QWERTY"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr "Nelze spustit mkinitrd -f /boot/initrd-%s.img %s."
+#: ../../keyboard.pm_.c:225
+msgid "Latvian"
+msgstr "Litevské"
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
msgstr ""
-"Vybrali jste pro instalaci následující server(y): %s\n"
-"\n"
-"\n"
-"Tyto servery budou standardně aktivovány. Přestože není známý žádný\n"
-"bezpeÄnostní problém, mohou se pÅ™esto vyskytnout. Je proto důležité "
-"aktualizovat\n"
-"vždy, když je to potřeba.\n"
-"\n"
-"\n"
-"Chcete opravdu nainstalovat tyto servery?\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Síťová tiskárna (TCP/Socket)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup User files..."
-msgstr "Zálohovat soubory uživatelů..."
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "Instalace systému"
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
+msgstr "Makedonské"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "První DNS Server (nepovinný)"
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
+msgstr "Myamarské (Burnské)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr "Jako alternativu můžete zadat do políÄka název zařízení/název souboru"
+#: ../../keyboard.pm_.c:229
+msgid "Mongolian (cyrillic)"
+msgstr "Mongolské (cyrilice)"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
-"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
-"symlink /etc/security/msec/server to point to\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
-"add a service if it is present in the file during the installation of\n"
-"packages."
-msgstr ""
-"Pokud je SERVER_LEVEL (nebo SECURE_LEVEL chybí) v souboru\n"
-"/etc/security/msec/security.conf větší než 3, vytvoří se symbolický odkaz\n"
-"/etc/security/msec/server na /etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"/etc/security/msec/server je použit programem chkconfig --add pro přidání\n"
-"služby bÄ›hem instalace balíÄků."
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
+msgstr "Maltézské (UK)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "Ruské (foneticky)"
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
+msgstr "Maltézské (US)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Config..."
-msgstr "Nastavení dhcpd..."
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
+msgstr "Holandské"
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "Instalace LILO/Grub"
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
+msgstr "Polské (rozlo¾ení QWERTY)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "Izraelské"
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
+msgstr "Polské (rozlo¾ení QWERTZ)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Tiskárna \"%s\" na serveru \"%s\""
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
+msgstr "Portugalské"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Nyní můžete disketu vyjmout"
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr "Kanadské (Quebec)"
-#: ../../help.pm:1
-#, c-format
-msgid "Truly minimal install"
-msgstr "Opravdu minimální instalace"
+#: ../../keyboard.pm_.c:239
+msgid "Romanian (qwertz)"
+msgstr "Rumunské (QWERTZ)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "Dánsko"
+#: ../../keyboard.pm_.c:240
+msgid "Romanian (qwerty)"
+msgstr "Rumunské (QWERTY)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "Přesouvám oddíl..."
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "Ruské (Yawerty)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "(This) DHCP Server IP"
-msgstr "Adresa DHCP serveru"
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
+msgstr "Slovinské"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Test of the configuration"
-msgstr "Vyzkoušet nastavení"
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "Slovenské (QWERTZ)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing %s ..."
-msgstr "Instaluji %s ..."
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "Slovenské (QWERTY)"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"V závislosti na tom, zda jste zvolili individuální výbÄ›r balíÄků, se "
-"nabídne\n"
-"stromová struktura obsahující vÅ¡echny balíÄky organizované do skupin\n"
-"a podskupin. PÅ™i procházení stromu můžete vybrat jednotlivé balíÄky, "
-"podskupiny\n"
-"nebo celé skupiny.\n"
-"\n"
-"Pokud vyberete ze stromu balíÄek, objeví se v pravé Äásti jeho popis.\n"
-"\n"
-"!! Pokud se nachází mezi vybranými balíÄky serverové programy, aÅ¥ už "
-"vybrané\n"
-"zámÄ›rnÄ› nebo jako souÄást skupiny, zobrazí se dotaz na to,\n"
-"zda opravdu chcete tyto servery nainstalovat. V distribuci Mandrake Linux\n"
-"jsou tyto servery spuštěny při startu systému. I když v době vydání "
-"distribuce\n"
-"nejsou známy žádné bezpeÄnostní problémy, mohou se vyskytnout pozdÄ›ji.\n"
-"Pokud nevíte, k Äemu jsou urÄeny nÄ›které serverové služby, klepnÄ›te na \"%s"
-"\".\n"
-"Klepnutím na \"%s\" se dané služby nainstalují a automaticky spustí při "
-"startu !!\n"
-"\n"
-"Volba \"%s\" vypne varovné hlášení, které se objeví\n"
-"vždy, když vyberete balíÄek, který má další závislosti a instalaÄní program\n"
-"musí vybrat další potÅ™ebné balíÄky, aby instalace mohla probÄ›hnout úspěšnÄ›.\n"
-"\n"
-"Malá ikonka diskety dole umožňuje nahrát již pÅ™edem vybraný seznam balíÄků.\n"
-"Po klepnutí na ikonu budete dotázáni na vložení diskety, která byla "
-"vytvořena na\n"
-"konci jiné instalace. Ve druhém tipu při posledním kroku najdete návod, jak "
-"si\n"
-"tuto disketu vytvořit. "
+#: ../../keyboard.pm_.c:248
+msgid "Serbian (cyrillic)"
+msgstr "Srbské (cyrilice)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr "Vyberte si Å¡ifrovací klÃ­Ä pro souborový systém"
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
+msgstr "Tamilské (Unicode)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
+msgstr "Tamilské (TSCII)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
-msgstr "Botswana"
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr "Thajské"
-#: ../../lang.pm:1
-#, c-format
-msgid "Andorra"
-msgstr "Andorra"
+#: ../../keyboard.pm_.c:254
+msgid "Tajik keyboard"
+msgstr "Tád¾ická klávesnice"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "(default value: %s)"
-msgstr "(výchozí hodnota: %s)"
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Turecké (tradièní model \"F\")"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
-msgstr "Nastaví dobu platnosti hesla na \"max\" dnů a prodlevu mezi změnami."
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Turecké (moderní model \"Q\")"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Alternativní testovací stránka (Letter)"
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr "Ukrajinské"
-#: ../../standalone/drakgw:1
-#, c-format
-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 ""
-"Nastavení DHCP serveru.\n"
-"\n"
-"Zde můžete vybrat různé volby nastavení DHCP serveru.\n"
-"Pokud nevíte, co která volba znamená, ponechte její výchozí hodnotu.\n"
-"\n"
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "US (mezinárodní)"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Choose an X server"
-msgstr "Zvolte X server"
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vietnamská \"èíselná øada\" QWERTY"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr ""
+#: ../../keyboard.pm_.c:263
+msgid "Yugoslavian (latin)"
+msgstr "Jugoslávské (latin)"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Velikost odkládacího oddílu v MB: "
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
+msgstr "Pravá klávesa Alt"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No changes to backup!"
-msgstr "Nejsou žádné změny pro zálohování!"
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
+msgstr "Obì klávesy Shift souèasnì"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "Naformátovaný\n"
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
+msgstr "Control a Shift souèasnì"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Type of install"
-msgstr "Typ instalace"
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
+msgstr "Klávesa CapsLock"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Tiskárna \"%s\" na SMB/Windows serveru \"%s\""
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
+msgstr "Ctrl a Alt souèasnì"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d Äísel oddÄ›lených Äárkou"
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
+msgstr "Alt a Shift souèasnì"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Protokol rusers umožňuje uživatelům sítě zjistit kdo je přihlášen na\n"
-"jiném poÄítaÄi."
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
+msgstr "Klávesa \"Menu\""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Nastavení automatických kroků"
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr "Levá klávesa \"Windows\""
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "Barbados"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
+msgstr "Pravá klávesa \"Windows\""
-#: ../advertising/02-community.pl:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
-msgstr ""
-"Chcete vědět více o komunitě okolo Open source a přispívat do ní? Přidejte "
-"se ke světu Svobodného Software!"
+msgid "Circular mounts %s\n"
+msgstr "Propletené pøípojné body %s\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Zkontrolujte prosím data pro zálohování..."
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
+msgstr "Odeberte nejdøíve logické disky\n"
-#: ../../standalone/net_monitor:1
-#, c-format
+#: ../../modules.pm_.c:290
msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-"Připojení selhalo.\n"
-"Ověřte nastavení v ovládacím centru Mandrake."
+"Podpora PCMCIA ji¾ není dostupná pro kernely 2.2. Pou¾ijte prosím øadu 2.4."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
-msgstr "přijato"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
+msgstr "Zde mù¾ete nastavit ka¾dý z parametrù modulu."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr "Povolit su pouze Älenům skupiny wheel nebo vÅ¡em uživatelům"
+#: ../../modules/parameters.pm_.c:18
+#, fuzzy
+msgid "modinfo is not available"
+msgstr "Není dostupná ¾ádná disketová mechanika"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
-msgstr "/Soubor/_Nový"
+#: ../../modules/parameters.pm_.c:50
+msgid "a number"
+msgstr "èíslo"
-#: ../../standalone/drakgw:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "The DNS Server IP"
-msgstr "IP adresa DNS serveru"
+msgid "%d comma separated numbers"
+msgstr "%d èísel oddìlených èárkou"
-#: ../../standalone/drakTermServ:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "IP Range End:"
-msgstr "IP rozsah do:"
+msgid "%d comma separated strings"
+msgstr "%d znakových øetìzcù oddìlených èárkou"
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
-msgstr "Vyšší"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
+msgstr "èárkou oddìlená èísla"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Přidá novou tiskárnu do systému"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated strings"
+msgstr "èárkou oddìlené znakové øetìzce"
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr "Bez Videa"
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - my¹"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
-msgstr "Toto pole popisuje zařízení"
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Přidávám tiskárnu do Star Office/OpenOffice.org/GIMP"
+#: ../../mouse.pm_.c:33
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Standardní PS2 my¹ s koleèkem"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printers"
-msgstr "Místní tiskárny"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation image directory"
-msgstr "Adresář s obrazem instalace"
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "NIS Server"
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Port: %s"
-msgstr "Port: %s"
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "Španělsko"
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+msgid "Microsoft Explorer"
+msgstr "Microsoft Explorer"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
-msgstr "lokální konfigurace: %s"
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
+msgstr "1 tlaèítko"
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "Toto uživatelské jméno už bylo přidáno"
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "Standardní dvoutlaèítková my¹"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
-msgstr "Vyberte soubor"
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "S koleèkem"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr "Použít"
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "Sériová"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Automaticky detekovat dostupné porty"
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "Standardní tøítlaèítková my¹"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr "San Marino"
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Sdílení Internetového připojení je vypnuto"
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Belgium"
-msgstr "Belgie"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
-msgstr "Kuvajt"
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Logitech série CC (sériová)"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "Vyberte si, který správce oken má být spouštěn:"
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
-msgstr "prosinec"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "MM Series"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "Specifická třída cpu"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
-msgstr "Průvodce pro nové uživatele"
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (sériová, starý C7 typ)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Taiwan"
-msgstr "Taiwan"
+#: ../../mouse.pm_.c:68
+msgid "busmouse"
+msgstr "Busmouse"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "Pákistán"
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "2 tlaèítka"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "Äekejte prosím, zpracovávám soubor: %s"
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "3 tlaèítka"
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Stala se chyba, ale nevím, jak jí správně interpretovat.\n"
-"PokraÄujte na vlastní riziko."
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "®ádná"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Importance: "
-msgstr "Důležitost: "
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "Bez my¹i"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-"Aby bylo možné při tomto nastavení tisknout na inkoustových tiskárnách od "
-"firmy Lexmark, je potÅ™eba mít tiskový ovladaÄ poskytovaný spoleÄností "
-"Lexmark (http://www.lexmark.com/). Klepněte na odkaz \"Drivers\", vyberte "
-"váš model tiskárny, a poté zvolte Linux jako operaÄní systém. OvladaÄe jsou "
-"v RPM balíÄcích nebo skripty shellu s interaktivní grafickou instalací. Tu "
-"ale k nastavení vaÅ¡eho systému nepotÅ™ebujete. UkonÄete instalaÄní program "
-"ihned po odsouhlasení licence. Pak můžete vytisknout stránku s nastavením "
-"tiskových hlav programem \"lexmarkmaintain\" a nastavit zarovnání tiskové "
-"hlavy pomocí tohoto programu."
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
+msgstr "Vyzkou¹ejte prosím, zda funguje my¹"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Permissions"
-msgstr "Oprávnění"
+#: ../../mouse.pm_.c:491
+msgid "To activate the mouse,"
+msgstr "Vyzkou¹ejte na my¹i,"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Jméno poskytovatele (např. provider.net)"
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr "TOÈIT KOLEÈKEM!"
-#: ../../install_steps_gtk.pm:1
-#, 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'."
-msgstr ""
-"Váš systém má málo systémových prostředků. Při instalaci Mandrake Linuxu se\n"
-"můžete setkat s různými problémy. Pokud se tak stane, zkuste textovou\n"
-"verzi instalaÄního programu. Ta se spouÅ¡tí tak, že pÅ™i startu\n"
-"z CD mechaniky stisknete 'F1' a poté napíšete 'text'."
+#: ../../my_gtk.pm_.c:65
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-2,*-r-*"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "Použít Windows oddíl jako loopback"
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
+msgstr "Ukonèit"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
-msgstr "Arménské (psací stroj)"
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
+msgstr "Dal¹í ->"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection type: "
-msgstr "Typ připojení:"
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "Je to správnì?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Graphical interface"
-msgstr "Grafické rozhraní"
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "Informace"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "ÄŒad"
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
+msgstr "Rozbal vìtev"
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "Indie"
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
+msgstr "Sbal vìtev"
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s s hardwarovou 3D akcelerací"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr "Pøepnutí mezi abecedním a skupinovým øazením"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr "Slovensko"
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "pou¾ít pppoe"
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "Singapur"
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
+msgstr "pou¾ít pptp"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "Kambodža"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
+msgstr "pou¾ít dhcp"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Horizontální frekvence monitoru: %s\n"
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
+msgstr "Alcatel speedtouch USB"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr "Cesta"
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
-msgstr "NENALEZEN"
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
+msgstr "Pøipojení k Internetu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:30
msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-"Zde můžete zadat libovolný příkaz, do kterého bude posílám výstup z tiskové "
-"úlohy místo přímého odeslání na tiskárnu."
+"Nejbì¾nìji se pro pøipojení pomocí ADSL pou¾ívá pppoe.\n"
+"Nìkterá pøipojení pou¾ívají pptp, nìkterá pouze dhcp. Jestli si nejste "
+"jistí, zvolte 'pou¾ít pppoe'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:166
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?"
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-"Tiskový systém (%s) nebude pÅ™i startu poÄítaÄe automaticky spuÅ¡tÄ›n.\n"
-"\n"
-"Je možné, že volba automatického startu byla vypnuta ve vyšší bezpeÄnostní "
-"úrovni, protože tiskový systém je potenciální nebezpeÄí pro síťový útok.\n"
-"\n"
-"Chcete nastavit automatický start tiskového systému zpět?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Tiskárna %s\n"
-"Co chcete na této tiskárně změnit?"
+#: ../../network/drakfirewall.pm_.c:12
+msgid "Web Server"
+msgstr "Webový server"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add host"
-msgstr "PÅ™idat poÄítaÄ"
+#: ../../network/drakfirewall.pm_.c:17
+msgid "Domain Name Server"
+msgstr "Doménový server"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:32
+msgid "Mail Server"
+msgstr "Po¹tovní server"
+
+#: ../../network/drakfirewall.pm_.c:37
+msgid "POP and IMAP Server"
+msgstr "POP a IMAP server"
+
+#: ../../network/drakfirewall.pm_.c:111
+msgid "No network card"
+msgstr "®ádná sí»ová karta"
+
+#: ../../network/drakfirewall.pm_.c:129
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"
+"drakfirewall configurator\n"
"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"Pokud skuteÄnÄ› víte, který ovladaÄ je ten správný pro vaÅ¡i kartu,\n"
-"můžete ho vybrat ze seznamu.\n"
+"Nastavení aplikace drakfirewall\n"
"\n"
-"Aktuální ovladaÄ pro vaÅ¡i zvukovou kartu \"%s\" je \"%s\"."
+"Zde je mo¾né nastavit osobní firewall pro tento systém Mandrake Linux.\n"
+"Pro výkonné øe¹ení vyhrazeného firewallu pou¾ijte specializovanou\n"
+"distribuci MandrakeSecurity Firewall."
-#: ../../any.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:135
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"
+"drakfirewall configurator\n"
"\n"
-"\"Custom\" permit a per-user granularity.\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-"Chcete povolit uživatelům, aby si mohli sdílet adresáře ve svém domovském "
-"adresáři?\n"
-"Pokud to povolíte, uživatelům staÄí pouze klepnout na \"Sdílet\" v "
-"aplikacích Konqueror a Nautilus.\n"
+"Nastavení aplikace drakfirewall\n"
"\n"
-"Lze také provést \"Vlastní\" povolení pro jednotlivé uživatele.\n"
+"Pøedtím, ne¾ budete pokraèovat, se ujistìte, ¾e jste nastavili va¹i\n"
+"sí» a pøístup k Internetu pomocí aplikace drakconnect."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Vyberte si, zda chcete uložit nebo nahrát výbÄ›r balíÄků na disketu.\n"
-"Formát výběru je stejný jako formát automaticky generované diskety."
-
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "No CDROM support"
-msgstr "Podpora rádia :"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "China (broadcast)"
-msgstr "Čína (broadcast)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use quota for backup files."
-msgstr "Použít kvóty pro záložní soubory."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Nastavuji tiskárnu \"%s\"..."
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr "Které slu¾by pøístupné z Internetu chcete povolit?"
-#: ../../fs.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:153
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."
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-"Nepovolit spouštění jakýchkoliv binárních souborů na připojeném\n"
-"souborovém systému. Tato volba je užiteÄná v případÄ›, že na serveru\n"
-"je souborový systém, který obsahuje binární aplikace pro jinou architekturu\n"
-"než je vlastní systém serveru."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection"
-msgstr "Internetové připojení"
+"Zadali jste nesprávný port.\n"
+"Správnì je napøíklad: 139/tcp 139/udp.\n"
+"Více se dozvíte ze souboru /etc/services."
-#: ../../modules/interactive.pm:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-"Spuštění modulu %s selhalo.\n"
-"Chcete to zkusit s jinými parametry?"
+"Zadán ¹patný port: %s.\n"
+"Správný formát je \"port/tcp\" nebo \"port/udp\", \n"
+"kde èíslo portu je mezi 1 a 65535."
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr "Vítejte do světa Open Source"
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
+msgstr "V¹echno (bez firewallu)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr "Bosna a Hercegovina"
+#: ../../network/drakfirewall.pm_.c:169
+msgid "Other ports"
+msgstr "Dal¹í porty"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:37
msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
msgstr ""
-"Pro tento přípojný bod potřebujete opravdový souborový systém (ext2/ext3, "
-"reiserFS, XFS nebo JFS)\n"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Musíte zadat název poÄítaÄe nebo IP adresu.\n"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "Nizozemí"
+"Kterého dhcp klienta chcete pou¾ít?\n"
+"Standardní je dhcp-client"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Posílám soubory pomocí FTP"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Interní ISDN karta"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:88
msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-"Pro vaÅ¡i zvukovou kartu (%s), která nyní používá ovladaÄ \"%s\", není žádný "
-"známý OSS/ALSA alternativní ovladaÄ."
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Title"
-msgstr "Název"
+"Ve va¹em poèítaèi nebyl nalezen ¾ádný sí»ový adaptér.\n"
+"Nemohu nastavit typ spojení."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Instalovat & konvertovat fonty"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
-msgstr "VAROVÃNÃ"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
-msgstr "Instaluji zaváděcí program"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "replay"
-msgstr "zopakovat"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
-msgstr "detekováno %s"
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
+msgstr "Zvolte sí»ové rozhraní"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/ethernet.pm_.c:93
msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
+"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
-"Expect je rozšířením skriptovacího jazyka Tcl, který umožňuje interaktivní "
-"komunikaci bez zásahu uživatele."
+"Vyberte si prosím, který sí»ový adaptér chcete pou¾ít pro pøipojení k "
+"internetu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr "Panenské ostrovy (U.S.)"
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "nebyla nalezena sí»ová karta"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "Špatný záložní soubor"
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "Nastavuji sí»"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/ethernet.pm_.c:201
msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Internetové sdílení už bylo nastaveno.\n"
-"Nyní je vypnuto.\n"
-"\n"
-"Co chcete dále dělat?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
-"Zadejte IP adresu a port poÄítaÄe, ze kterého budete chtít využívat tiskárny."
+"Prosím zadejte název va¹eho poèítaèe, proto¾e ho vy¾adují nìkteré\n"
+"DHCP servery. Tento název musí být úplný, jako napøíklad\n"
+"'mybox.mylab.myco.com'."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Pipe into command"
-msgstr "Poslat do příkazu"
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "Název poèítaèe"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"NÄ›které Äásti vaÅ¡eho hardware potÅ™ebují pro svoji práci 'speciální' "
-"ovladaÄe.\n"
-"Další informace můžete nalézt na: %s"
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+msgid "Network Configuration Wizard"
+msgstr "Prùvodce nastavením sítì"
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "Haiti"
+#: ../../network/isdn.pm_.c:22
+msgid "External ISDN modem"
+msgstr "Externí ISDN modem"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "Detekuji zařízení..."
+#: ../../network/isdn.pm_.c:22
+msgid "Internal ISDN card"
+msgstr "Interní ISDN karta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"Vlastní nastavení dovoluje specifikovat libovolný den a hodinu. Další volby "
-"používají run-parts v /etc/crontab."
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
+msgstr "Jaké je va¹e ISDN pøipojení?"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/isdn.pm_.c:45
msgid ""
-"Description of the fields:\n"
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
"\n"
+"We recommand the light configuration.\n"
msgstr ""
-"Popis polí:\n"
+"Kterou ISDN konfiguraci preferujete?\n"
"\n"
+"* Starou, pou¾itou pro isd4net. Ta obsahuje výkonné nástroje,\n"
+" ale je choulostivá na konfiguraci a není standardní.\n"
+"\n"
+"* Novou konfiguraci, snaz¹í pro porozumìní, více standardní,\n"
+" ale s ménì nástroji.\n"
+"\n"
+"Doporuèujeme vybrat si snaz¹í novou konfiguraci.\n"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Basic options"
-msgstr "Základní volby"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
-msgstr "název CPU"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr "Akceptovat nekorektní chybové zprávy protokolu IPv4"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "ObÄerstvuji tisková data ...."
+#: ../../network/isdn.pm_.c:54
+msgid "New configuration (isdn-light)"
+msgstr "Nová konfigurace (isdn-light)"
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr "Musíte také naformátovat %s"
+#: ../../network/isdn.pm_.c:54
+msgid "Old configuration (isdn4net)"
+msgstr "Stará konfigurace (isdn4net)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "BuÄte opatrní: tato akce je nebezpeÄná."
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "Nastavení ISDN"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "Vložte disketu obsahující výbÄ›r balíÄků"
+#: ../../network/isdn.pm_.c:166
+msgid ""
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
+msgstr ""
+"Vyberte si svého poskytovatele internetu.\n"
+" Pokud není na seznamu, vyberte si Jiný"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server: "
-msgstr "Server: "
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol"
+msgstr "Evropský protokol"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Alerts:"
-msgstr "BezpeÄnostní varování:"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol (EDSS1)"
+msgstr "Evropský protokol (EDSS1)"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
-msgstr "Švédsko"
+#: ../../network/isdn.pm_.c:181
+msgid "Protocol for the rest of the world"
+msgstr "Protokol pou¾itý ve zbytku svìta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Použít Expect pro SSH"
+#: ../../network/isdn.pm_.c:181
+msgid ""
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
+msgstr ""
+"Protokol pou¾itý ve zbytku svìta \n"
+" ¾ádný D-kanál (leased lines)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "Polsko"
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
+msgstr "Který protokol chcete pou¾ít?"
-#: ../../network/drakfirewall.pm:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid "Other ports"
-msgstr "Další porty"
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr "Chcete pou¾ít nalezené rozhraní \"%s\" ?"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "PoÄet bufferů pro zachycení systémem mmap"
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
+msgstr "Jaký typ karty máte?"
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid " - detected"
-msgstr "detekováno"
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
+msgstr "Nevím"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr "SMBus kontrolér"
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Prodleva připojení (vteřiny)"
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/isdn.pm_.c:210
msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
+"\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
-"NÄ›které první modely Äipsetů i486DX100 neprovádÄ›ly správnÄ› po instrukci "
-"\"halt\" návrat do operaÄního režimu"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Croatian"
-msgstr "Chorvatské"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Use existing partition"
-msgstr "Použije existující oddíl"
+"\n"
+"Jestli máte ISA kartu, mìly by být hodnoty na následující obrazovce "
+"správné.\n"
+"\n"
+"Jestli máte PCMCIA kartu, musíte znát její IRQ a IO.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Nelze kontaktovat zrcadlo %s"
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "Pøeru¹it"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Nápověda/_O aplikaci..."
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
+msgstr "Pokraèovat"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Odebrat adresáře uživatele před obnovou."
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
+msgstr "Kterou z tìchto ISDN karet máte?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:239
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?"
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
-"Nyní zaÄne konfigurace vzdálené tiskárny. To vyžaduje funkÄní síťové "
-"spojení, ale síť není zatím nastavena. Pokud budete pokraÄovat bez nastavení "
-"sítÄ›, nebude možné použít požadovanou tiskárnu. Jak chcete pokraÄovat?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "Nastavení tiskáren přes CUPS"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr "nelze nalézt žádné fonty v připojeném oddíle"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
-msgstr "F00f chyba"
-
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
+"Na¹el jsem ISDN PCI kartu, její¾ typ ale neznám. Prosím zvolte si jednu z "
+"následujícího seznamu PCI karet."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Domain Name:"
-msgstr "Název domény:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Root umask"
-msgstr "Hodnota umask pro uživatele root"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+"Nena¹el jsem ¾ádnou ISDN PCI kartu. Prosím zvolte si jednu z následující "
+"nabídky"
-#: ../../any.pm:1
-#, c-format
-msgid "On Floppy"
-msgstr "Na disketu"
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Ke kterému sériovému portu je vá¹ modem pøipojen?"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reboot by the console user"
-msgstr "Restart systému provedený uživatelem z konzole"
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "Mo¾nosti vytáèení"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore"
-msgstr "Obnovit"
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr "Název pøipojení"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Server:"
-msgstr "Server: "
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
+msgstr "Telefonní èíslo"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
-msgstr ""
-"pokud je nastaveno, kontroluje, zda je síťové rozhraní v promiskuitním režimu"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "Pøihla¹ovací jméno"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Hledám dostupné balíÄky..."
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr "CHAP"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "ÄŒekejte prosím, nastavuji úroveň zabezpeÄení..."
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP"
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
-msgstr "Úvodní zpráva"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "Podle scénáøe"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "Záchrana tabulky oddílů"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "Pomocí terminálu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "Kypr"
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "Jméno domény"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection complete."
-msgstr "PÅ™ipojení ukonÄeno."
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+msgid "First DNS Server (optional)"
+msgstr "První DNS Server (nepovinný)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "Odebrat z RAIDu"
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+msgid "Second DNS Server (optional)"
+msgstr "Druhý DNS Server (nepovinný)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
+#: ../../network/modem.pm_.c:95
+msgid ""
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-"Tento Å¡ifrovací klÃ­Ä je příliÅ¡ jednoduchý (musí být alespoň %d znaků dlouhý)"
-#: ../../standalone/drakbug:1
+#: ../../network/modem.pm_.c:97
#, c-format
-msgid "Configuration Wizards"
-msgstr "Průvodci nastavením"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN připojení"
+msgid ""
+"\"%s\" based winmodem detected, do you want to install needed software ?"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CD-ROM / DVD-ROM"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Do nothing"
+msgstr "neshodných"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
-msgstr "primární"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Install rpm"
+msgstr "Instalovat"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr " na serveru SMB/Windows \"%s\", sdílená jako \"%s\""
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Title"
+msgstr "Tabulka"
-#: ../../help.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:29
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"
-"!!"
+"You can disconnect or reconfigure your connection."
msgstr ""
-"Nyní si zvolte, které služby mají být spuÅ¡tÄ›ny pÅ™i startu poÄítaÄe.\n"
"\n"
-"Je zde seznam všech služeb, které jsou aktuálně nainstalovány.\n"
-"Prohlédněte si seznam pozorně a zrušte ty, které nepotřebujete při startu\n"
-"poÄítaÄe spouÅ¡tÄ›t.\n"
+"Mù¾ete se odpojit nebo pøekonfigurovat pøipojení."
+
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+msgid ""
"\n"
-"Pokud přejedete myší nad některou položkou, objeví se malá nápověda\n"
-"s popisem, co daná služba dÄ›lá. Pokud pÅ™esnÄ› nevíte, zda je služba užiteÄná\n"
-"nebo ne, je lepší ji nechat ve výchozím stavu.\n"
+"You can reconfigure your connection."
+msgstr ""
"\n"
-"!! Rozvažte, co za služby spustit, zvláštÄ› pokud budete poÄítaÄ provozovat\n"
-"jako server: nepotÅ™ebujete vÅ¡echny služby. Pamatujte, že Äím více služeb\n"
-"je spuÅ¡tÄ›no, tím je vÄ›tší nebezpeÄí nežádoucího proniknutí do poÄítaÄe.\n"
-"Takže povolte opravdu jen ty služby, které nezbytně potřebujete.\n"
-"!!"
+"Mù¾ete pøekonfigurovat pøipojení."
-#: ../../lang.pm:1
-#, c-format
-msgid "Niue"
-msgstr "Niue"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "PÅ™eskoÄit"
+#: ../../network/netconnect.pm_.c:29
+msgid "You are currently connected to internet."
+msgstr "V souèasnosti jste pøipojeni k Internetu"
-#: ../../services.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:32
msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
+"\n"
+"You can connect to Internet or reconfigure your connection."
msgstr ""
-"Aktivuje Äi deaktivuje vÅ¡echna síťová rozhraní, která se mají nastavit pÅ™i\n"
-"startu systému."
+"\n"
+"Nemù¾ete se pøipojit k Internetu nebo pøekonfigurovat pøipojení."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr ""
-"Frekvence CPU v MHz (Megahertz je hodnota pÅ™ibližnÄ› rovna vypoÄtenému poÄtu "
-"instrukcí, které je schopen procesor provést za sekundu)"
+#: ../../network/netconnect.pm_.c:32
+msgid "You are not currently connected to Internet."
+msgstr "V souèasnosti nejste pøipojeni k Internetu."
-#: ../../pkgs.pm:1
-#, c-format
-msgid "important"
-msgstr "důležité"
+#: ../../network/netconnect.pm_.c:36
+msgid "Connect"
+msgstr "Pøipojit"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "Nástroj Mandrake Linux pro správu tiskáren"
+#: ../../network/netconnect.pm_.c:37
+msgid "Disconnect"
+msgstr "Odpojit"
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm_.c:38
+msgid "Configure the connection"
+msgstr "Nastavit pøipojení"
+
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
+msgstr "Nastavení a pøipojení k internetu"
+
+#: ../../network/netconnect.pm_.c:94
#, c-format
-msgid "Total Progress"
-msgstr "Celkový průběh"
+msgid "We are now going to configure the %s connection."
+msgstr "Nyní se pøipravuje konfigurace %s pøipojení."
-#: ../../help.pm:1
+#: ../../network/netconnect.pm_.c:103
#, 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."
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press OK to continue."
msgstr ""
-"Aplikace DrakX se nejdříve pokusí najít vÅ¡echny pevné disky v poÄítaÄi.\n"
-"Také se pokusí nalézt jeden nebo více PCI SCSI adaptérů. Pokud nějaký "
-"najde,\n"
-"automaticky nainstaluje správný ovladaÄ.\n"
"\n"
-"Protože automatická detekce hardware nemusí vždy nalézt všechny typy "
-"hardware,\n"
-"budete v dialogu dotázáni, zda vůbec máte nějaký SCSI adaptér. \n"
"\n"
-"Pokud si budete muset vybrat ovladaÄ ruÄnÄ›, aplikace DrakX se zeptá,\n"
-"zda pro něj chcete zadat nějaké volby Měli byste povolit aplikaci DrakX,\n"
-"ať se pokusí zjistit, které volby jsou pro danou kartu potřeba. Většinou to\n"
-"funguje dobře.\n"
"\n"
-"Pokud to nebude fungovat, budete muset zadat další informace pro ovladaÄ "
-"ruÄnÄ›."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr "Aruba"
+"Nyní se bude konfigurovat pøipojení %s.\n"
+"\n"
+"\n"
+"Stisknìte OK pro pokraèování."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "Uživatelé"
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr "Nastavení sítì"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Připravuji zaváděcí program"
+#: ../../network/netconnect.pm_.c:133
+msgid ""
+"Because you are doing a network installation, your network is already "
+"configured.\n"
+"Click on Ok to keep your configuration, or cancel to reconfigure your "
+"Internet & Network connection.\n"
+msgstr ""
+"Proto¾e provádíte instalaci po síti, je ji¾ sí» nastavena.\n"
+"Kliknìte na Ok pro zachování nastavení nebo kliknìte na Zru¹it pro nové "
+"nastavení pøipojení Internetu a k síti.\n"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
+#: ../../network/netconnect.pm_.c:157
+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 ""
+"Vítá vás prùvodce pøipojením k síti\n"
+"\n"
+"Nyní lze nastavit pøipojení k síti nebo internetu.\n"
+"Pokud nechcete pou¾ít automatickou detekci, odznaète políèko.\n"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Brána (např. %s)"
+#: ../../network/netconnect.pm_.c:163
+msgid "Choose the profile to configure"
+msgstr "Zvolte profil pro nastavení"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
-msgstr "Hesla nejsou shodná"
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
+msgstr "Pou¾ít autodetekci"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Příklady správných IP adres:\n"
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
+msgstr "Expertní re¾im"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "Prosím zvolte si médium pro zálohy."
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
+msgstr "Detekuji zaøízení..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Frekvence (MHz)"
+#: ../../network/netconnect.pm_.c:214
+msgid "Normal modem connection"
+msgstr "Modemové pøipojení"
-#: ../../install_any.pm:1
+#: ../../network/netconnect.pm_.c:214
#, c-format
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Pokud chcete použít uložený výbÄ›r balíÄků, spusÅ¥te instalaci takto: 'linux "
-"defcfg=floppy'"
+msgid "detected on port %s"
+msgstr "detekováno na portu %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of the processor"
-msgstr "Äíslo procesoru"
+#: ../../network/netconnect.pm_.c:215
+#, fuzzy
+msgid "Winmodem connection"
+msgstr "Modemové pøipojení"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Hardwarové hodiny nastaveny na GMT"
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "detected"
+msgstr "detekováno %s"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "Chcete spoustit nové nastavení?"
+#: ../../network/netconnect.pm_.c:216
+msgid "ISDN connection"
+msgstr "ISDN pøipojení"
-#: ../../diskdrake/interactive.pm:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid "Give a file name"
-msgstr "Zadejte název souboru"
+msgid "detected %s"
+msgstr "detekováno %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Vyberte port, ke kterému je vaše tiskárna připojena."
+#: ../../network/netconnect.pm_.c:217
+msgid "ADSL connection"
+msgstr "ADSL pøipojení"
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "Vyměnit CD-ROM"
+#: ../../network/netconnect.pm_.c:218
+msgid "Cable connection"
+msgstr "Kabelové pøipojení"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "Paraguay"
+#: ../../network/netconnect.pm_.c:218
+msgid "cable connection detected"
+msgstr "detekováno kabelové pøipojení"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "Konfigurace je ukonÄena, chcete toto nastavení použít?"
+#: ../../network/netconnect.pm_.c:219
+msgid "LAN connection"
+msgstr "Pøipojení k LAN"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr "Použít přírůstkovou/rozdílovou zálohu (nepřepisovat starší zálohy)"
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
+msgstr "detekovaná(é) sí»ová(é) karta(y)"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../network/netconnect.pm_.c:222
+msgid "Choose the connection you want to configure"
+msgstr "Zvolte si pøipojení, které chcete nastavit"
+
+#: ../../network/netconnect.pm_.c:246
msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP \n"
-" \taddress and net boot images to the machine. drakTermServ helps "
-"create/remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct "
-"image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it "
-"expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
-msgstr ""
-" - Udržuje /etc/dhcpd.conf:\n"
-" \tKaždý ze síťově zaváděných klientů potřebuje záznam v dhcpd.conf, "
-"který mu přiřadí IP adresu\n"
-" \ta síťový zavádÄ›cí obraz pro daný poÄítaÄ. drakTermServ umožní "
-"tvorbu nebo odstranění těchto záznamů.\n"
-"\t\t\t\n"
-" \t(U PCI karet lze vynechat obraz - etherboot si vyžádá správný "
-"obraz. Měli byste\n"
-" \ttaké vzít v úvahu, že když hledá etherboot obrazy, oÄekává názvy "
-"jako\n"
-" \tboot-3c59x.nbi, a ne boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tTypický soubor dhcpd.conf podporující bezdiskové klienty vypadá "
-"jako:"
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
+msgstr ""
+"Máte nastaveno více zpùsobù, jak se pøipojit k Internetu.\n"
+"Vyberte si jeden, který chcete pou¾ít.\n"
+"\n"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr "Pro vaÅ¡i zvukovou kartu (%s) není žádný známý ovladaÄ"
+#: ../../network/netconnect.pm_.c:247
+msgid "Internet connection"
+msgstr "Internetové pøipojení"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "force"
-msgstr "vnutit"
+#: ../../network/netconnect.pm_.c:253
+msgid "Do you want to start the connection at boot?"
+msgstr "Chcete se automaticky pøipojovat po startu poèítaèe?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Exit"
-msgstr "Konec"
+#: ../../network/netconnect.pm_.c:267
+msgid "Network configuration"
+msgstr "Nastavení sítì"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
+msgstr "Je potøebné znovu spustit sí»"
+
+#: ../../network/netconnect.pm_.c:272
#, c-format
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
msgstr ""
-"POZNÃMKA: V závislosti na modelu tiskárny a tiskovém systému je potÅ™eba "
-"nainstalovat dalších %d MB potřebného software."
+"Vyskytl se problém pøi restartu sítì: \n"
+"\n"
+"%s"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../network/netconnect.pm_.c:282
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
-"Nemáte nakonfigurováno žádné rozhraní.\n"
-"Nastavte jej klepnutím na 'Konfigurovat'"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "Estonské"
+"Gratulujeme, konfigurace sítì a internetu je ukonèena.\n"
+"\n"
+"Konfigurace bude nyní aktivována.\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:286
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr "Apache je WWW server. Je používán k poskytování HTML a CGI souborů."
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
+msgstr ""
+"Doporuèujeme po tomto kroku restartovat X Window,\n"
+"aby se pøede¹lo problémùm se zmìnou názvu poèítaèe."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/netconnect.pm_.c:287
msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
+"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 ""
-"Zadejte název zařízení vaší vypalovaÄky CD\n"
-" napÅ™.: 0,1,0"
+"Vyskytl se problém bìhem konfigurace.\n"
+"Otestujte pøipojení k Internetu pomocí net_monitor nebo mcc. Pokud není "
+"spojení funkèní, bude potøeba asi znovu naèíst konfiguraci"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ALL"
-msgstr "OBA"
+#: ../../network/network.pm_.c:278
+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 ""
+"VAROVÁNÍ: Toto zaøízení ji¾ bylo nastaveno pro pøipojení k Internetu.\n"
+"Kliknìte na Ok pro zachování nastavení.\n"
+"Modifikace následujících polo¾ek pøepí¹e toto nastavení."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Přidat/Odebrat klienty"
+#: ../../network/network.pm_.c:283
+msgid ""
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
+msgstr ""
+"Prosím zadejte IP nastavení pro tento poèítaè.\n"
+"Ka¾dá polo¾ka musí být zadána jako IP adresa v 'desetinné' formì\n"
+"(napøíklad 1.2.3.4)."
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "Choose the network interface"
-msgstr "Zvolte síťové rozhraní"
+msgid "Configuring network device %s"
+msgstr "Nastavuji sí»ové zaøízení %s"
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../network/network.pm_.c:294
#, c-format
-msgid "Unknown Model"
-msgstr "Neznámý model"
+msgid " (driver %s)"
+msgstr " (ovladaè %s)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
-msgstr "CD/DVD vypalovaÄky"
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "IP adresa"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Standardní startovací oddíl\n"
-" (pro MS-DOS, ne pro LILO)\n"
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr "Maska sítì"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Povolit \"%s\" Äíst soubor"
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image"
-msgstr "vyberte obraz"
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "Automatická IP"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Našel jsem existující nastavení firewallu!"
+#: ../../network/network.pm_.c:299
+msgid "Start at boot"
+msgstr "Spustit pøi startu"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "Název připojení"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP adresa musí být ve formátu 1.2.3.4"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../network/network.pm_.c:326
msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-"hodnota pro x souřadnici\n"
-"pro textový box v poÄtu znaků"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/network.pm_.c:330
msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
msgstr ""
-"Nebudete moc nainstalovat zavadÄ›Ä lilo (protože lilo nemůže zpracovat LV na "
-"více PV)"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Updating package selection"
-msgstr "Aktualizuji výbÄ›r balíÄků"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "Kam chcete připojit loopback soubor %s?"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../network/network.pm_.c:350
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"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 ""
-"Disketa byla s úspěchem vytvořena.\n"
-"Nyní lze provést stejnou instalaci znovu."
+"Prosím zadejte název va¹eho poèítaèe.\n"
+"Tento název musí být úplný, jako 'mybox.mylab.myco.com'.\n"
+"Pokud pou¾íváte bránu(gateway), mù¾ete také zadat její adresu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Použít pro zálohování CD/DVD-ROM"
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "DNS server"
-#: ../../standalone/harddrake2:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "poÄet tlaÄítek na myÅ¡i"
+msgid "Gateway (e.g. %s)"
+msgstr "Brána (napø. %s)"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
-msgstr "Zopakovat"
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "Zaøízení brány (gateway)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup other files"
-msgstr "Zálohovat další soubory"
+#: ../../network/network.pm_.c:363
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "Adresa serveru DNS by mìla být ve tvaru 1.2.3.4"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "Není dostupná žádná disketová mechanika"
+#: ../../network/network.pm_.c:367
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Adresa brány by mìla být ve tvaru 1.2.3.4"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Záložní soubory jsou poškozené"
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
+msgstr "Nastavení proxy"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
-msgstr "Norma TV:"
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr "Rodina CPU"
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "FTP proxy"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
+msgstr "Sledovat id sí»ové karty (u¾iteèné u notebookù)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: thin"
-msgstr "typ: tenký"
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
+msgstr "Proxy by mìla být http://..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "Litevské AZERTY (nová)"
+#: ../../network/network.pm_.c:388
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "URL by mìlo zaèínat znaky 'ftp:' nebo 'http:'"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr "ano znamená, že aritmetický koprocesor je vybaven vektorem výjimek"
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
+msgstr "Na¹el jsem existující nastavení firewallu!"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/shorewall.pm_.c:27
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"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
-"Zvolili jste softwarový RAID oddíl jako kořenový oddíl (/).\n"
-"S tím se není schopný vypořádat žádný zaváděcí program bez použití oddílu\n"
-"/boot. Ujistěte se prosím, že jste tento oddíl přidali"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "Jiný systém (MacOs...)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Pohybujte kurzorem"
+"Varování! Bylo nalezeno existující nastavení firewallu. Po instalaci mù¾e "
+"být zapotøebí nìjaká ruèní úprava."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "Startuji síť"
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
+msgstr "Nastavení Internetu"
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Sejmuté obrazovky budou dostupné po instalaci v adresáři %s"
+#: ../../network/tools.pm_.c:58
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Chcete se nyní pokusit pøipojit k internetu?"
-#: ../../help.pm:1
-#, 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:\")."
-msgstr ""
-"InstalaÄní program nalezl na disku více než jeden oddíl s Microsoft "
-"Windows.\n"
-"Prosím vyberte si jeden z nich, který je potřeba pro novu instalaci systému\n"
-"Mandrake Linux zmenšit.\n"
-"\n"
-"Každý oddíl je zobrazen následovně: \"Pojmenování v Linuxu\",\n"
-"\"Název ve Windows\", \"Velikost\".\n"
-"\n"
-"\"Pojmenování v Linuxu\" je složeno následovně: \"typ pevného disku\",\n"
-"\"Äíslo disku\", \"Äíslo oddílu\". (například \"hda1\").\n"
-"\n"
-"Pokud máte IDE disky, pak je \"typ pevného disku\" \"hd\", pokud máte SCSI,\n"
-"oznaÄení bude \"sd\".\n"
-"\n"
-"\"Číslo disku\" je vždy písmeno za \"hd\" nebo \"sd\". Pro IDE disky je "
-"takto:\n"
-"\n"
-" * \"a\" znamená \"master disk na primárním IDE Å™adiÄi\",\n"
-"\n"
-" * \"b\" znamená \"slave disk na primárním IDE Å™adiÄi\",\n"
-"\n"
-" * \"c\" znamená \"master disk na sekundárním IDE Å™adiÄi\",\n"
-"\n"
-" * \"d\" znamená \"slave disk na sekundárním IDE Å™adiÄi\".\n"
-"\n"
-"Pro SCSI disky platí, že \"a\" je \"nejmenší SCSI ID\", \"b\" je \"druhé\n"
-"nejmenší SCSI ID\" atd.\n"
-"\n"
-"\"Název ve Windows\" je písmeno, které je použito ve Windows\n"
-"(první oddíl nebo disk má písmeno \"C:\")."
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+msgid "Testing your connection..."
+msgstr "Testuji pøipojení k internetu..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
-msgstr "Tanzanie"
+#: ../../network/tools.pm_.c:70
+msgid "The system is now connected to Internet."
+msgstr "Poèítaè je nyní pøipojen k internetu"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "PoÄítám hranice souborového systému fat"
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
+msgstr "Z bezpeènostních dùvodù bude spojení ukonèeno."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/tools.pm_.c:72
msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Zdroje pro zálohu:\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "custom"
-msgstr "vlastní"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Content of the file"
-msgstr "Obsah souboru"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
-msgstr "Ověření pomocí LDAP"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
msgstr ""
+"Nepodaøilo se pøipojit k Internetu.\n"
+"Pokuste se pøekonfigurovat dané pøipojení."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
-msgstr "Umožnit výbÄ›r ovladaÄe"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
-msgstr "přeneseno"
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
+msgstr "Nastavení pøipojení"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palestine"
-msgstr "Palestina"
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
+msgstr "Prosím vyplòte nebo zkontrolujte následující údaje"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr "IRQ karty"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d znakových Å™etÄ›zců oddÄ›lených Äárkou"
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "DMA karty"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " isdn"
-msgstr " isdn"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "IO karty"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "Zde je kompletní seznam dostupných klávesnic"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "IO_0 karty"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Theme name"
-msgstr "Název motivu"
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "IO_1 karty"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/_Nápověda"
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
+msgstr "Va¹e osobní telefonní èíslo"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitrary driver"
-msgstr "VýbÄ›r libovolného ovladaÄe"
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
+msgstr "Jméno poskytovatele (napø. provider.net)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "Cookovy ostrovy"
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
+msgstr "Telefonní èíslo poskytovatele"
-#: ../../standalone/scannerdrake:1
-#, 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."
-msgstr ""
-"Zde můžete nastavit, zda skenery, co jsou pÅ™ipojeny k tomuto poÄítaÄi, mohou "
-"být vzdálenÄ› přístupné a také pÅ™esnÄ› z jakých poÄítaÄů."
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+msgid "Provider dns 1 (optional)"
+msgstr "DNS poskytovatele è.1 (volitelné)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the width of the progress bar"
-msgstr "šířka lišty s průběhem"
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+msgid "Provider dns 2 (optional)"
+msgstr "DNS poskytovatele è.2 (volitelné)"
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formátuji oddíl %s"
+#: ../../network/tools.pm_.c:109
+msgid "Choose your country"
+msgstr "Výbìr si zemi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hostname required"
-msgstr "Vyžadován název poÄítaÄe"
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
+msgstr "Typ vytáèení"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "OdznaÄit instalované fonty"
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+msgid "Connection speed"
+msgstr "Rychlost pøipojení"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "S koleÄkem"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit kernel version"
-msgstr "Odeslat verzi jádra"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Cancel"
-msgstr "Zrušit"
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+msgid "Connection timeout (in sec)"
+msgstr "Prodleva pøipojení (vteøiny)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for configured scanners ..."
-msgstr "Vyhledávám nastavené skenery ...."
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
+msgstr "Vá¹ úèet (u¾ivatelské jméno)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Videocard"
-msgstr "Grafická karta"
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
+msgstr "Heslo va¹eho úètu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tZálohování používá tar a bzip2\n"
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
+msgstr "Velká Británie"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Remove Selected"
-msgstr "Odstranit vybrané"
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
+msgstr "chyba pøipojování: "
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Automaticky detekovat _modemy"
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
+msgstr "Roz¹íøené diskové oddíly nejsou na tomto systému podporovány"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove printer"
-msgstr "Odebrat tiskárnu"
+#: ../../partition_table.pm_.c:685
+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 ""
+"Ve tabulce diskových oddílù je mezera, ale nemohu ji pou¾ít.\n"
+"Jediné øe¹ení je pøesunout primární oddíly tak, abyste mìli mezeru vedle\n"
+"roz¹íøených oddílù."
-#: ../../standalone/drakbackup:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "View Last Log"
-msgstr "Zobrazit poslední log"
+msgid "Restoring from file %s failed: %s"
+msgstr "Obnova ze souboru %s neuspìla: %s"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "Které služby přístupné z Internetu chcete povolit?"
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
+msgstr "©patný zálo¾ní soubor"
-#: ../../standalone/printerdrake:1
+#: ../../partition_table.pm_.c:796
#, c-format
-msgid "Connection Type"
-msgstr "Typ spojení"
+msgid "Error writing to file %s"
+msgstr "Chyba pøi zapisování do souboru %s"
-#: ../../standalone/logdrake:1
-#, c-format
+#: ../../partition_table/raw.pm_.c:192
msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
msgstr ""
-"Vítejte v nastavení elektronické pošty.\n"
-"\n"
-"Zde lze nastavit systém posílání varovných zpráv.\n"
+"Nìco ¹patného se stalo s pevným diskem. \n"
+"Test na integritu dat selhal. \n"
+"To znamená, ¾e zápis na tento disk mù¾e skonèit nepøedvídanì"
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Other"
-msgstr "Další"
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr "musíte mít"
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
-msgstr "Výchozí"
+#: ../../pkgs.pm_.c:27
+msgid "important"
+msgstr "dùle¾ité"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Emulace 2 tlaÄítka"
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr "nejménì dùle¾ité"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter a package name."
-msgstr "Zadejte prosím název balíÄku."
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr "nedùle¾ité"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run chkrootkit checks"
-msgstr "Provést kontrolu pomocí chkrootkit"
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr "mù¾e se hodit"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "type1inst building"
-msgstr "vytvářím type1inst"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
+msgstr "PDQ - Tisk bez ukládání do fronty"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
+msgstr "PDQ"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image file"
-msgstr "vyberte soubor s obrazem"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
+msgstr "LPD - Démon pro tiskárny"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "X server"
-msgstr "X server"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
+msgstr "LPD"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin User Name"
-msgstr "Uživatelské jméno Správce domény"
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
+msgstr "LprNG - LPR Nové generace"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Nastala chyba při zkoumání TV kanálů"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
+msgstr "LprNG"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
-msgstr "US (mezinárodní)"
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
+msgstr "CUPS - Tiskový Systém pro Unix"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Not installed"
-msgstr "Není instalováno"
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
+msgstr "CUPS"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "ObÄ› klávesy Alt souÄasnÄ›"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+msgid "Unknown Model"
+msgstr "Neznámý model"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "LAN connection"
-msgstr "Připojení k LAN"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "Místní tiskárna"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/-"
-msgstr "/Soubor/-"
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
+msgstr "Vzdálená tiskárna"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Italian"
-msgstr "Italské"
+#: ../../printer/main.pm_.c:28
+msgid "Printer on remote CUPS server"
+msgstr "Tiskárna na vzdáleném CUPS serveru"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Basic"
-msgstr "Základní"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+msgid "Printer on remote lpd server"
+msgstr "Tiskárna na vzdálený lpd serveru"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+#: ../../printer/main.pm_.c:30
+msgid "Network printer (TCP/Socket)"
+msgstr "Sí»ová tiskárna (TCP/Socket)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Honduras"
-msgstr "Honduras"
+#: ../../printer/main.pm_.c:31
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "Tiskárna na serveru Windows 95/98/NT"
-#: ../../help.pm:1
-#, c-format
-msgid "pdq"
-msgstr "pdq"
+#: ../../printer/main.pm_.c:32
+msgid "Printer on NetWare server"
+msgstr "Tiskárna na Netware serveru"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO"
-msgstr "IO karty"
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+msgid "Enter a printer device URI"
+msgstr "Zadejte URI tiskového zaøízení"
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Samba server"
-msgstr "Server Samba"
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
+msgstr "Poslat tiskovou úlohu do pøíkazu"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Tento speciální Boostrap\n"
-"oddíl je pro spuštění\n"
-"dalšího systému.\n"
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
+msgstr "Neznámý model"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Vyberte si prosím, které z kroků instalace májí být provedeny automaticky "
-"stejnÄ› jako instalaÄní program a které budou zadány ruÄnÄ›"
+#: ../../printer/main.pm_.c:317
+msgid "Local Printers"
+msgstr "Místní tiskárny"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"Zde můžete rozhodnout o tom, zda vzdáleně přístupné skenery budou využitelné "
-"i na tomto poÄítaÄi."
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+msgid "Remote Printers"
+msgstr "Vzdálené tiskárny"
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Sítí přes FTP.\n"
+msgid " on parallel port \\/*%s"
+msgstr " na paralelním portu \\/*%s"
-#: ../../security/l10n.pm:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid "Reports check result to tty"
-msgstr "Poslat výsledek kontroly na tty"
+msgid ", USB printer \\/*%s"
+msgstr ", USB tiskárna \\/*%s"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Musíte zadat zařízení nebo název souboru!"
+msgid ", multi-function device on parallel port \\/*%s"
+msgstr ", multifunkèní na paralelním portu \\/*%s"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Quit"
-msgstr "/_Konec"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
+msgstr ", multifunkèní zaøízení na USB"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Paměť na gr. kartě: %s kB\n"
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
+msgstr ", multifunkèní zaøízení na HP JetDirect"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-"it under the terms of the GNU General Public License as published by\n"
-"the Free Software Foundation; either version 2, or (at your option)\n"
-"any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful,\n"
-"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-"GNU General Public License for more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
-msgstr ""
-"Tento program je svobodný software; můžete ho šířit a/nebo modifikovat\n"
-"podle specifikace GNU General Public Licence, která byla publikována\n"
-"Free Software Foundation; buÄ verze 2, nebo (podle volby) pozdÄ›jší verze.\n"
-"\n"
-"Tento program je distribuován s nadÄ›jí, že bude užiteÄný,\n"
-"ale BEZ JAKÃCHKOLIV ZÃRUK; BEZ NÃROKU NA PROFIT. Více detailů naleznete\n"
-"v licenci GNU General Public Licence.\n"
-"\n"
-"Kopii GNU General Public Licence můžete obdržet buÄ s tímto programem\n"
-"nebo si o ní můžete napsat na adresu Free Software Foundation, Inc.,\n"
-"59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
+msgstr ", multifunkèní zaøízení"
-#: ../../any.pm:1
+#: ../../printer/main.pm_.c:344
#, c-format
-msgid "access to compilation tools"
-msgstr "přístup k nástrojům pro kompilaci"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Global statistics"
-msgstr "Statistiky"
+msgid ", printing to %s"
+msgstr ", pøi tisku na %s"
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:346
#, c-format
-msgid "Please select data to restore..."
-msgstr "Prosím zvolte data pro obnovu..."
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr " na serveru LPD \"%s\", tiskárna \"%s\""
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/main.pm_.c:348
#, 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"
-msgstr ""
-"Jestliže chcete používat aboot, musíte nechat volné místo na zaÄátku disku\n"
-"(2048 sektorů staÄí)"
+msgid ", TCP/IP host \"%s\", port %s"
+msgstr ", TCP/IP hostitel \"%s\", port %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid "Standard test page"
-msgstr "Standardní testovací stránka"
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Time Zone"
-msgstr "Časová zóna"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr " na serveru SMB/Windows \"%s\", sdílená jako \"%s\""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid "Create"
-msgstr "Vytvořit"
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr " na serveru Novell \"%s\", tiskárna \"%s\""
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid "What"
-msgstr "Co"
+msgid ", using command %s"
+msgstr ", pou¾ívá pøíkaz %s"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Stala se chyba pÅ™i Å™azení balíÄků:"
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
+msgstr "Pøímý tisk (bez ovladaèe)"
-#: ../../keyboard.pm:1
+#: ../../printer/main.pm_.c:647
#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "Bulharské (BDS)"
+msgid "(on %s)"
+msgstr "(na %s)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Server"
-msgstr "Vypnout server"
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
+msgstr "(na tomto poèítaèi)"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm_.c:674
#, c-format
-msgid "Filesystem encryption key"
-msgstr "KlÃ­Ä pro Å¡ifrovaný souborový systém"
+msgid "On CUPS server \"%s\""
+msgstr "Na serveru CUPS \"%s\""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
-msgstr "Gujartské"
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
+msgstr " (Výchozí)"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" I když můžete použít rozsah IP adres místo nastavení specifického "
-"záznamu pro\n"
-" poÄítaÄ klienta, použití pevné adresy vám umožní zadat funkcionalitu\n"
-" do souborů s nastavením pro specifického klienta, které poskytuje "
-"ClusterNFS.\n"
-"\t\t\t\n"
-" Poznámka: Položku \"#type\" používá pouze drakTermServ. Klienti mohou "
-"být buÄ \"thin\"\n"
-" nebo \"fat\". Tencí klienti provozují většinu software na serveru "
-"pomocí xdmcp, tlustí klienti provozují většinu\n"
-" software na klientském poÄítaÄi. Zvláštní init%s, je\n"
-" vytvořen pro tenkého klienty. Systémové soubory s nastavením xdm-"
-"config, kdmrc a gdm.conf jsou upraveny\n"
-" při použití tenkých klientů tak, aby povolovaly xdmcp. Jelikož při "
-"použití xdmcp vznikají bezpeÄnostní rizika,\n"
-" jsou upraveny soubory hosts.deny a hosts.allow tak, aby omezily "
-"přístup pouze z lokální sítě.\n"
-"\t\t\t\n"
-" Poznámka: Položka \"#hdw_config\" je použita pouze pro klienty a "
-"může buÄ 'true' nebo 'false'.\n"
-" Hodnota 'true' povoluje přihlášení uživatele root dovoluje mu také "
-"změny\n"
-"v lokálním hardware u zvuku, myši pomocí nástrojů sady 'drak'tools.\n"
-" V tomto případÄ› se vytvoří konfiguraÄní soubor asociovaný s IP "
-"adresou a vytvoří se\n"
-" přípojný bod pro zápis, kam se tato konfigurace zapíše. Pokud jste\n"
-" s konfigurací spokojeni, můžete právo pro uživatele root odebrat.\n"
-"\t\t\t\n"
-" Poznámka: Po přidání nebo odebrání klientů musíte zastavit a znovu "
-"spustit server."
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
+msgstr "Zvolte pøipojení tiskárny"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Vyberte si prosím první Äíslo z výbÄ›ru, které chcete editovat,\n"
-"nebo stisknÄ›te Enter pro pokraÄování.\n"
-"Vaše volba? "
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
+msgstr "Jak je tiskárna pøipojena?"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:30
msgid ""
"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
msgstr ""
"\n"
-" Copyright ©2002 by MandrakeSoft \n"
-"\tStew Benedict <sbenedict@mandrakesoft.com>\n"
-"\n"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Save theme"
-msgstr "uložit motiv"
+"V pøípadì vzdáleného CUPS serveru nemusíte nastavovat tiskárny zde,\n"
+"tiskárny budou automaticky detekovány."
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "Brazílie"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install"
-msgstr "Automatická instalace"
-
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration Wizard"
-msgstr "Průvodce nastavením sítě"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
-msgstr "Automatické připojování pro vyjímatelná média"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr "Autodetekce tiskárny (lokální, TCP/soket, a tiskárny SMB)"
-#: ../../services.pm:1
-#, c-format
-msgid "Printing"
-msgstr "Tisk"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+msgid "CUPS configuration"
+msgstr "Nastavení CUPS"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save:"
-msgstr "Zadejte adresář, kam bude umístěna záloha:"
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+msgid "Specify CUPS server"
+msgstr "Zadejte CUPS server"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:83
msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "Na vaÅ¡em poÄítaÄi nebyla nalezena žádná přímo pÅ™ipojená tiskárna"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "Vytvořit nový oddíl"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Driver:"
-msgstr "OvladaÄ:"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
-msgstr "neznámý"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "Použít fdisk"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "A TOÄŒTE KOLEÄŒKEM!"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "sent: "
-msgstr "odesláno: "
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "Automatická IP"
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
+msgstr ""
+"Pøi tisku na vzdálený CUPS server v lokální síti není potøeba nic "
+"nastavovat, CUPS server bude automaticky informovat o jeho tiskárnách. "
+"V¹echny známé tiskárny pro tento poèítaè jsou nyní vypsány v poli \"Vzdálené "
+"tiskárny\". v hlavní sekci nástroje PrinterDrake. Pokud je CUPS na jiné "
+"síti, musíte pro získání informací zadat IP adresu CUPS serveru a také "
+"pøípadnì èíslo portu, jinak nechte toto pole prázdné."
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:84
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:\")"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-"Nyní je instalace ukonÄena a operaÄní systém GNU/Linux je pÅ™ipraven k "
-"použití.\n"
-"Klepněte na \"%s\" a systém bude restartován. Potom můžete spustit GNU/Linux "
-"nebo\n"
-"Windows, záleží který preferujete\n"
-"\n"
-"TlaÄítko \"%s\" zobrazí další dvÄ› tlaÄítka:\n"
-"\n"
-" * \"%s\": vytvoří disketu, se kterou\n"
-"lze celou instalaci opakovat bez zásahu operátora se stejnými volbami,\n"
-"které byly zvoleny při instalaci.\n"
-"\n"
-" Po klepnutí na toto tlaÄítko se zobrazí další dvÄ› volby:\n"
-"\n"
-" * : \"%s\": je to ÄásteÄnÄ› automatická instalace, kdy se potvrzuje\n"
-"krok při rozdělování disků (a pouze tento krok).\n"
"\n"
-" * : \"%s\": plně automatická instalace, data na pevném disku\n"
-"budou zrušena a disk přepsán.\n"
-"\n"
-" Tato volba je velmi užiteÄná, když potÅ™ebujete nainstalovat vÄ›tší poÄet\n"
-"stejných poÄítaÄů. Více o této možnosti je na naÅ¡ich WWW stránkách.\n"
-"\n"
-" * \"%s\"(*): uloží výbÄ›r balíÄků, který byl zvolen pÅ™i\n"
-"instalaci. Pokud budete instalovat další poÄítaÄ, vložte disketu do "
-"mechaniky\n"
-"a spusťte instalaci, stiskněte [F1] a napište na příkazový řádek \n"
-">> linux defcfg=\"floppy\" <<.\n"
-"\n"
-"(*) Potřebujete disketu formátovanou FAT (Pod Linuxem ji vytvoříte příkazem\n"
-"\"mformat a:\")"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Moldova"
-msgstr "Moldava"
+"Ve vìt¹inì pøípadù je CUPS automaticky správnì nastaven v závislosti na\n"
+"sí»ovém prostøedí tak, aby bylo mo¾né tisknout na tiskárnách umístìných\n"
+"na CUPS serverech v síti. Pokud je nastavení nesprávné, vypnìte\n"
+"\"Automatické nastavení pro CUPS\" a editujte soubor /etc/cups/cupsd.conf\n"
+"ruènì. Nezapomeòte potom CUPS restartovat (pøíkaz: \"service cups restart\")."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
+#: ../../printer/printerdrake.pm_.c:88
+msgid "The IP address should look like 192.168.1.20"
+msgstr "IP adresa musí být ve formátu 192.168.1.20"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuration of a remote printer"
-msgstr "Nastavení vzdálené tiskárny"
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
+msgstr "Èíslo portu musí být celé èíslo!"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
-msgstr ""
-"Online platforma odpovídající specifickým potÅ™ebám podpory spoleÄností."
+#: ../../printer/printerdrake.pm_.c:99
+msgid "CUPS server IP"
+msgstr "IP adresa CUPS serveru"
-#: ../../network/network.pm:1
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URL by mÄ›lo zaÄínat znaky 'ftp:' nebo 'http:'"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
+msgstr "Port"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Oriya"
-msgstr "Oriya"
+#: ../../printer/printerdrake.pm_.c:102
+msgid "Automatic CUPS configuration"
+msgstr "Automatické nastavení pro CUPS"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Přidat nové pravidlo na konec"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr "Instalace motivů pro LiLo a Bootsplash byla úspěšně provedena"
+#: ../../printer/printerdrake.pm_.c:159
+msgid "Checking your system..."
+msgstr "Zkoumám vá¹ poèítaè..."
+
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+msgid "Printerdrake"
+msgstr "PrinterDrake"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:167
msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-"Můžete se rozhodnout, zda vÅ¡echny tiskárny na vzdálených poÄítaÄích budou "
-"dostupné i na tomto poÄítaÄi"
+"There are no printers found which are directly connected to your machine"
+msgstr "Na va¹em poèítaèi nebyla nalezena ¾ádná pøímo pøipojená tiskárna"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:179
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''"
+"The following printers\n"
+"\n"
msgstr ""
-"Nyní můžete poskytnout modulu %s další parametry.\n"
-"Volby se zadávají ve tvaru ''název=hodnota název2=hodnota2 ...''.\n"
-"Například, ''io=0x300 irq=7''"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "Chcete skonÄit bez zapsání do tabulky oddílů?"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Hard Drive"
-msgstr "na pevný disk"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "Installing packages..."
-msgstr "Instaluji balíÄky..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dutch"
-msgstr "Holandské"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Angola"
-msgstr "Angola"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "Je potÅ™eba nainstalovat tyto balíÄky:\n"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "service setting"
-msgstr "nastavení služeb"
-
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "Vlastní"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
-msgstr "Lotyšsko"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr "Soubor už je používán jiným loopbackem, zvolte si jiný"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr "Pouze pro Ätení"
+"Následující tiskárny\n"
+"\n"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:180
msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
+"The following printer\n"
+"\n"
msgstr ""
-"Povolí/zakáže ochranu před spoofingem jmenných služeb. Pokud\n"
-"je nastaveno \"varování\", vypíše report do syslogu."
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
-msgstr "Nebyl rozpoznán žádný ovladaÄ"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
+"Následující tiskárna\n"
+"\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:182
msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
+"\n"
+"and one unknown printer are "
msgstr ""
-"Pokud není mezi nimi požadovaná tiskárna, zadejte do políÄka název zařízení/"
-"název souboru"
+"\n"
+"a jedna neznámá tiskárna jsou "
-#: ../../standalone/draksound:1
+#: ../../printer/printerdrake.pm_.c:184
#, 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"
+"and %d unknown printers are "
+msgstr ""
"\n"
-"You can visit our hardware database at:\n"
-"\n"
+"a %d neznámých tiskáren je "
+
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"are "
msgstr ""
-"V poÄítaÄi nebyla nalezena žádná zvuková karta karta. Zkontrolujte prosím,"
-"zda podporovaná karta je správně zapojena.\n"
-"\n"
"\n"
-"Databázi hardware lze nalézt na:\n"
+"jsou "
+
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
"\n"
+"is "
+msgstr ""
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"je "
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Nastavit lokální síť..."
+#: ../../printer/printerdrake.pm_.c:189
+msgid "directly connected to your system"
+msgstr "pøímo pøipojena(y) k va¹emu poèítaèi"
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:192
msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
+"\n"
+"There is one unknown printer directly connected to your system"
msgstr ""
+"\n"
+"Na¹el jsem jednu neznámou tiskárnu pøímo pøipojenou k va¹emu poèítaèi"
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr "Spustit zvukový systém při startu"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
-msgstr "Ověřovat kontrolní souÄet pro suid/sgid soubory"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run some checks against the rpm database"
-msgstr "Spoustit kontrolu rpm databáze"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Execute"
-msgstr "Provést"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Preparing printer database..."
-msgstr "NaÄítám databázi tiskáren ..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Information"
-msgstr "Informace"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "No network card"
-msgstr "Žádná síťová karta"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "3 tlaÄítka"
-
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Which filesystem do you want?"
-msgstr "Který souborový systém chcete použít?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Malta"
-msgstr "Malta"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Detailed information"
-msgstr "Podrobné informace"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:194
#, 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."
+"There are %d unknown printers directly connected to your system"
msgstr ""
-"Výchozí nastavení pro tiskárnu\n"
"\n"
-"Ujistěte se, že typ stránky a typ inkoustu/režim tisku (pokud je) a také "
-"hardwarová konfigurace laserové tiskárny (paměť, duplexní jednotka, externí "
-"podavaÄ) jsou nastaveny správnÄ›. PÅ™i tisku ve velmi vysoké kvalitÄ›/rozliÅ¡ení "
-"bude tisk zřejmě pomalejší."
+"Na¹el jsem %d neznámých tiskáren pøímo pøipojených k va¹emu poèítaèi"
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
-msgstr "Tato disketa není formátována"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "Nastavuji síť"
+#: ../../printer/printerdrake.pm_.c:200
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr " (Zkontrolujte to, ¾e v¹echny tiskárny jsou pøipojeny a zapnuty).\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:214
msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
msgstr ""
-"Tato volba umožní uložit soubory, které se změnily. Přesné chování záleží "
-"na tom zda bylo vybráno přírůstkové nebo rozdílové zálohování."
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Graphic Card"
-msgstr "Grafická karta"
+"Chcete povolit tisk na tiskárnách vypsaných vý¹e nebo na tiskárnách v "
+"lokální síti?\n"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing Windows partition"
-msgstr "PoÄítám hranice souborového systému s Windows"
+#: ../../printer/printerdrake.pm_.c:215
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Chcete povolit tisk na tiskárnách v lokální síti?\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "Kamerun"
+#: ../../printer/printerdrake.pm_.c:217
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Chcete povolit tisk na tiskárnách vypsaných vý¹e?\n"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "DNS poskytovatele Ä.1 (volitelné)"
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr "Opravdu chcete nastavit tisk na tomto poèítaèi?\n"
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:219
#, c-format
msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
msgstr ""
-"Nyní můžete rozdělit váš pevný disk %s.\n"
-"Až skonÄíte, nezapomeňte uložit zmÄ›ny pomocí 'w'"
+"POZNÁMKA: V závislosti na modelu tiskárny a tiskovém systému je potøeba "
+"nainstalovat dal¹ích %d MB potøebného software."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finnish)"
-msgstr "Saami (švédské/finské)"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Close"
-msgstr "Zavřít"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+msgid "Add a new printer"
+msgstr "Pøidat novou tiskárnu"
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:259
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."
+"\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 ""
-"\"%s\": zkontrolujte aktuální výběr země. Pokud nejste v dané zemi, "
-"klepněte\n"
-"na tlaÄítko \"%s\" a vyberte si jinou. Pokud vaÅ¡e zemÄ› na prvním seznamu,\n"
-"klepnÄ›te na tlaÄítko \"%s\" a získáte kompletní seznam zemí."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Calendar"
-msgstr "Kalendář"
+"\n"
+"Vítejte v prùvodci nastavením tisku\n"
+"\n"
+"Tento prùvodce vám pomù¾e nainstalovat lokální nebo vzdálené tiskárnu(y), "
+"které je mo¾né následnì vyu¾ít na vzdáleném poèítaèi na síti.\n"
+"\n"
+"Budete dotázáni na v¹echny potøebné informace pro nastavení tiskárny, mù¾ete "
+"si vybrat se v¹ech tiskových ovladaèù a typù pøipojení tiskárny."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:272
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+"\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"
+"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) and you 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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Vybrána obnova\n"
-"Záznam katalogu"
+"\n"
+"Vítejte v Prùvodci nastavením tiskárny\n"
+"\n"
+"Tento prùvodce vám pomù¾e nainstalovat va¹i tiskárnu nebo tiskárny pøipojené "
+"k tomuto poèítaèi, pøímo k síti, nebo sdílené na poèítaèi s Windows.\n"
+"\n"
+"Pokud máte tiskárnu nebo tiskárny pøipojené k tomuto poèítaèi, zapojte je "
+"prosím a zapnìte je; pak mohou být automaticky nalezeny. Va¹e sí»ové "
+"tiskárny nebo tiskárny sdílené poèítaèi s Windows musí být rovnì¾ zapnuty a "
+"pøipojené k síti, mají-li být automaticky nalezeny.\n"
+"\n"
+"Automatická detekce tiskáren pøipojených k síti probíhá podstatnì déle ne¾ "
+"automatická detekce tiskáren pouze lokálnì pøipojených k tomuto poèítaèi. "
+"Pokud nepotøebujete automatickou detekci tiskáren na síti, nebo tiskáren "
+"sdílených poèítaèi s Windows, pak tuto autodetekci vypnìte.\n"
+"\n"
+"Pokud jste pøipraveni, klepnìte na tlaèítko \"Dal¹í\", nebo klepnìte na "
+"tlaèítko \"Zru¹it\" pokud nechcete v tuto chvíli tiskárny nastavovat."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
+"\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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Abyste mohli používat vzdálenou tiskovou frontu lpd, musíte zadat název "
-"tiskového serveru a název tiskárny, kam má být posílán tisk."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
-msgstr "Island"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Nastavení sítě & Internetu"
-
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
-msgstr "chybí consolehelper"
-
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr "zastaveno"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "Zda má FPU irq vektor"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr "Rozbalit větev"
+"\n"
+"Vítejte v Prùvodci nastavením tiskárny\n"
+"\n"
+"Tento prùvodce vám pomù¾e nainstalovat va¹i tiskárnu nebo tiskárny pøipojené "
+"k tomuto poèítaèi.\n"
+"\n"
+"Pokud máte tiskárnu nebo tiskárny pøipojené k tomuto poèítaèi, zapojte je "
+"prosím a zapnìte je; pak mohou být automaticky nalezeny. \n"
+"Pokud jste pøipraveni, klepnìte na tlaèítko \"Dal¹í\", nebo klepnìte na "
+"tlaèítko \"Zru¹it\" pokud nechcete v tuto chvíli tiskárny nastavovat."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:289
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
"\n"
-"It has been reported to oops the kernel on unloading.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+"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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Starší ovladaÄ \"%s\" je na Äerné listinÄ›.\n"
"\n"
-"Bylo u něj zjištěno, že při odebrání způsobí pád jádra.\n"
+"Vítejte v Prùvodci nastavením tiskárny\n"
"\n"
-"PÅ™i dalším spuÅ¡tÄ›ní bude použit pouze nový ovladaÄ \"%s\" "
-
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Expert Mode"
-msgstr "Expertní režim"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "Možnosti tiskárny"
+"Tento prùvodce vám pomù¾e nainstalovat va¹i tiskárnu nebo tiskárny pøipojené "
+"k tomuto poèítaèi nebo pøímo k síti.\n"
+"\n"
+"Pokud máte tiskárnu nebo tiskárny pøipojené k tomuto poèítaèi, zapojte je "
+"prosím a zapnìte je; pak mohou být automaticky nalezeny. Va¹e sí»ové "
+"tiskárny musí být rovnì¾ zapnuty a pøipojené k síti, mají-li být automaticky "
+"nalezeny.\n"
+"\n"
+"Automatická detekce tiskáren pøipojených k síti probíhá podstatnì déle ne¾ "
+"automatická detekce tiskáren pouze lokálnì pøipojených k tomuto poèítaèi. "
+"Pokud nepotøebujete automatickou detekci tiskáren na síti, pak tuto "
+"autodetekci vypnìte.\n"
+"\n"
+"Pokud jste pøipraveni, klepnìte na tlaèítko \"Dal¹í\", nebo klepnìte na "
+"tlaèítko \"Zru¹it\" pokud nechcete v tuto chvíli tiskárny nastavovat."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Local Network adress"
-msgstr "Adresa lokální sítě"
+#: ../../printer/printerdrake.pm_.c:307
+msgid "Auto-detect printers connected to this machine"
+msgstr "Automaticky nalézt tiskárny pøipojené k tomuto poèítaèi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Zálohovat vaše systémové soubory. (adresář /etc)"
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
+msgstr "Automaticky nalézt tiskárny pøipojené pøímo k lokální síti"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the user umask."
-msgstr "Nastaví uživatelskou masku."
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr "Automaticky nalézt tiskárny sdílené poèítaèi s Microsoft Windows"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:329
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"
+"Congratulations, your printer is now installed and configured!\n"
"\n"
-"Do you want to install the updates ?"
+"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 ""
-"Nyní máte možnost stáhnout aktualizované balíÄky. Tyto balíÄky byly\n"
-"uvolnÄ›ny až po vydání distribuce. Mohou obsahovat bezpeÄnostní\n"
-"aktualizace nebo opravy chyb.\n"
"\n"
-"Chcete-li získat tyto balíÄky, musíte mít k dispozici funkÄní pÅ™ipojení\n"
-"k Internetu.\n"
+"Blahopøejeme, tiskárna je instalována a nastavena!\n"
"\n"
-"Chcete nainstalovat aktualizace?"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Samba Server"
-msgstr "Server Samba"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Australská kabelová televize Optus"
-
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> přepn. mezi prvky | <Space> výběr | <F12> další obraz."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet:"
-msgstr "Podsíť:"
+"Tisknout z aplikací lze pøíkazem \"Tisk\" (obyèejnì v menu \"Soubor\").\n"
+"\n"
+"Pokud chcete pøidat, odebrat, pøejmenovat tiskárnu nebo zmìnit její výchozí "
+"hodnoty (typ zásobníku, kvalita tisku,...), zvolte \"Tiskárna\" v sekci "
+"\"Hardware\" v øídícím centru Mandrake."
-#: ../../lang.pm:1
-#, c-format
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Printer auto-detection"
+msgstr "Autodetekce tiskárny"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:385
#, c-format
-msgid "When"
-msgstr "Kdy"
+msgid ", network printer \"%s\", port %s"
+msgstr ", sí»ová tiskárna \"%s\", port %s"
-#: ../../network/adsl.pm:1
+#: ../../printer/printerdrake.pm_.c:387
#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
-msgstr ""
-"Potřebujete mikrokód pro Alcatel.\n"
-"Stáhněte jej z\n"
-"%s\n"
-"a zkopírujte soubor mgmt.o do /usr/share/speedtouch"
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr ", tiskárna \"%s\" na serveru SMB/Windows \"%s\""
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:391
#, c-format
-msgid "Hour"
-msgstr "Hodina"
+msgid "Detected %s"
+msgstr "Nalezeno %s"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Druhý DNS Server (nepovinný)"
+msgid "Printer on parallel port \\/*%s"
+msgstr "Tiskárna na paralelním portu \\/*%s"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "Finland"
-msgstr "Finsko"
+msgid "USB printer \\/*%s"
+msgstr "USB tiskárna \\/*%s"
-#: ../../Xconfig/various.pm:1
+#: ../../printer/printerdrake.pm_.c:399
#, c-format
-msgid "Color depth: %s\n"
-msgstr "Barevná hloubka: %s\n"
+msgid "Network printer \"%s\", port %s"
+msgstr "Sí»ová tiskárna \"%s\", port %s"
-#: ../../install_steps_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:401
#, c-format
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Tento balíÄek musí být aktualizován, nemůžete ho nezvolit"
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Tiskárna \"%s\" na serveru Windows SMB/Windows \"%s\""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "Nahrávám z diskety"
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+msgid "Local Printer"
+msgstr "Místní tiskárna"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Timezone - DrakClock"
+#: ../../printer/printerdrake.pm_.c:526
+msgid ""
+"No local printer found! To manually install a printer enter a device name/"
+"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
+"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
+"printer: /dev/usb/lp1, ...)."
msgstr ""
+"Lokální tiskárna nenalezena! Pro ruèní instalaci tiskárny zadejte název "
+"zaøízení/souboru do políèka (Paralelní porty: /dev/lp0, /dev/lp1,... jsou "
+"ekvivalentní LPT1:, LPT2:, ...,první USB tiskárna: /dev/usb/lp0, druhá USB "
+"tiskárna: /dev/usb/lp1,...)."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
-msgstr "Povolí/zakáže zaznamenávání podivných IPv4 paketů."
+#: ../../printer/printerdrake.pm_.c:530
+msgid "You must enter a device or file name!"
+msgstr "Musíte zadat zaøízení nebo název souboru!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr "Slovinsko"
+#: ../../printer/printerdrake.pm_.c:539
+msgid "No printer found!"
+msgstr "Nenalezena ¾ádná tiskárna!"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse test"
-msgstr "Test myši"
+#: ../../printer/printerdrake.pm_.c:548
+msgid "Available printers"
+msgstr "Tiskárny k dispozici"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:552
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."
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
msgstr ""
-"Aplikace DrakPerm se používá k zobrazení souborů, které se používají k "
-"úpravám oprávnění, vlastníků a skupin aplikací msec.\n"
-"Můžete také vytvářet svá vlastní pravidla, která přepíší pravidla výchozí."
+"Tyto tiskárny byly automaticky detekovány, pokud není mezi nimi po¾adovaná "
+"tiskárna, zadejte do políèka název zaøízení/název souboru"
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:553
msgid ""
-"Enter a user\n"
-"%s"
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
msgstr ""
-"Zadejte uživatele\n"
-"%s"
+"Zde je seznam v¹ech automaticky rozpoznaných tiskáren. Vyberte si tiskárnu, "
+"kterou chcete nastavit nebo zadejte do políèka název zaøízení/název souboru"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:555
msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
msgstr ""
-"- zařízení PCI a USB: vypisuje se dodavatel, zařízení, subdodavatel a "
-"podzařízení (ID PCI/USB)"
+"Byla automaticky detekována tato tiskárna. Konfigurace této tiskárny je plnì "
+"automatická. Pokud nebyla tiskárna správnì detekována nebo preferujete "
+"vlastní nastavení tisku, zvolte \"Ruèní konfigurace\"."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "ProgressBar color selection"
-msgstr "Výběr barvy pro lištu s průběhem"
-
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:556
msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-"Tady jsou všechny záznamy.\n"
-"Můžete přidat další nebo změnit stávající."
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
+"Tyto tiskárny byly automaticky detekovány. Konfigurace tìchto tiskáren je "
+"plnì automatická. Pokud nebyla tiskárna správnì detekována nebo preferujete "
+"vlastní nastavení tisku, zvolte \"Ruèní konfigurace\"."
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:558
msgid ""
-"Application Name\n"
-"or Full Path:"
+"Please choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-"Název aplikace\n"
-"nebo celá cesta:"
+"Vyberte si port, ke kterému je tiskárna pøipojena nebo zadejte do políèka "
+"název zaøízení/název souboru"
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:559
+msgid "Please choose the port where your printer is connected to."
+msgstr "Vyberte port, ke kterému je va¹e tiskárna pøipojena."
+
+#: ../../printer/printerdrake.pm_.c:561
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."
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-"SpouÅ¡tí příkazy naplánované příkazem na urÄitý Äas příkazem 'at'.\n"
-"Také spouští příkazy při nízkém vytížení systému."
+" (Paralelní porty: /dev/lp0, /dev/lp1,... je ekvivalentní LPT1:, LPT2:, ...,"
+"první USB tiskárna: /dev/usb/lp0, druhá USB tiskárna: /dev/usb/lp1,...)."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
-msgstr "Podpora rádia :"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "Instaluji balíÄky pro SANE..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Change type"
-msgstr "Změnit typ"
+#: ../../printer/printerdrake.pm_.c:565
+msgid "You must choose/enter a printer/device!"
+msgstr "Musíte vybrat/zadat tiskárnu/zaøízení!"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", USB tiskárna #%s"
+#: ../../printer/printerdrake.pm_.c:584
+msgid "Manual configuration"
+msgstr "Ruèní nastavení"
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "Instalace SILO"
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
+msgstr "Mo¾nosti vzdálené lpd tiskárny"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:634
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."
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
-"Gratulujeme vám, instalace je dokonÄena.\n"
-"Vyjměte startovací média a stiskněte Return pro restart.\n"
-"\n"
-"\n"
-"Informace o opravách pro tuto verzi systému Mandrake Linux lze\n"
-"nalézt na stránce Errata:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Informace o konfiguraci systému po instalaci jsou dostupné\n"
-"v dané kapitole oficiální uživatelské příruÄky pro Mandrake Linux."
+"Abyste mohli pou¾ívat vzdálenou tiskovou frontu lpd, musíte zadat název "
+"tiskového serveru a název tiskárny, kam má být posílán tisk."
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Obnovit přes síť pomocí protokolu: %s"
+#: ../../printer/printerdrake.pm_.c:635
+msgid "Remote host name"
+msgstr "Název vzdáleného poèítaèe"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "paranoid"
-msgstr "paranoidní"
+#: ../../printer/printerdrake.pm_.c:636
+msgid "Remote printer name"
+msgstr "Název vzdálené tiskárny"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "Pokud to není nutné, maily neodesílat"
+#: ../../printer/printerdrake.pm_.c:639
+msgid "Remote host name missing!"
+msgstr "Chybí název vzdáleného poèítaèe!"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "Váš skener(y) nebude přístupný na síti."
+#: ../../printer/printerdrake.pm_.c:643
+msgid "Remote printer name missing!"
+msgstr "Chybí název vzdálené tiskárny!"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Poslat report po záloze mailem na :"
+msgid "Detected model: %s %s"
+msgstr "Nalezen model: %s %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Tento příkaz lze nastavit do políÄka \"Příkazy tisku\" v dialogu tisku ve "
-"většině aplikací, ale nezadává se zde název souboru, které je pokaždé jiné v "
-"závislosti na dané aplikaci.\n"
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Scanning network..."
+msgstr "Zkoumám sí»...."
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, c-format
-msgid "Resolution"
-msgstr "Rozlišení"
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ", tiskárna \"%s\" na serveru \"%s\""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
#, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Tiskárna \"%s\" na serveru \"%s\""
+
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "Mo¾nosti SMB (Windows 9x/NT) tiskárny"
+
+#: ../../printer/printerdrake.pm_.c:796
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
"the print server, as well as the share name for the printer you wish to "
"access and any applicable user name, password, and workgroup information."
msgstr ""
-"Abyste mohli tisknout na SMB tiskárnÄ›, musíte zadat název SMB poÄítaÄe"
-"(Pozor! To může být odlišné od jeho TCP/IP názvu) a možná i IP adresu "
-"tiskového serveru, název sdílené tiskárny, vhodné uživatelské jméno, heslo a "
-"informace o pracovní skupině."
+"Abyste mohli tisknout na SMB tiskárnì, musíte zadat název SMB poèítaèe"
+"(Pozor! To mù¾e být odli¹né od jeho TCP/IP názvu) a mo¾ná i IP adresu "
+"tiskového serveru, název sdílené tiskárny, vhodné u¾ivatelské jméno, heslo a "
+"informace o pracovní skupinì."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:797
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+" 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 ""
-"Povoluje su pouze Älenům skupiny wheel nebo povoluje su každému uživateli."
+" Pokud byla po¾adovaná tiskárna automaticky nalezena, vyberte ji jednodu¹e "
+"ze seznamu a pokud je to potøeba, doplòte u¾ivatelské jméno, heslo, a "
+"pracovní skupinu."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
-msgstr "překonfigurovat"
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
+msgstr "Název SMB serveru"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"S XFree %s může vaše karta využít 3D hardwarové akcelerace.\n"
-" TOTO JE POUZE EXPERIMENTÃLNà VERZE, A MŮŽE VÉST K NESTABILITÄš SYSTÉMU."
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr "IP adresa SMB serveru"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell timeout"
-msgstr "Čas vypršení pro shell"
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr "Sdílené jméno"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Xinetd Service"
-msgstr "Služba Xinetd"
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "Pracovní skupina"
-#: ../../any.pm:1
-#, c-format
-msgid "access to network tools"
-msgstr "přístup k síťovým nástrojům"
+#: ../../printer/printerdrake.pm_.c:806
+msgid "Auto-detected"
+msgstr "Automaticky nalezeno"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "Upload firmware pro HP LaserJet 1000"
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
+msgstr "Musí být zadán buï název serveru nebo jeho IP adresa!"
-#: ../advertising/03-software.pl:1
-#, 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."
-msgstr ""
-"Distribuce vám dovoluje naplno využít nejaktuálnější software pro přehrávání "
-"hudebních souborů, editovat Äi pracovat s vaÅ¡imi obrázky nebo fotografiemi, "
-"Äi sledovat video."
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
+msgstr "Chybí název pro sdílení pøes Sambu!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Zde je seznam automaticky detekovaných tiskáren. "
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
+msgstr "BEZPEÈNOSTNÍ VAROVÁNÍ!"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:827
#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"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 ""
-"Stala se chyba při instalaci aboot,\n"
-"mám se pokusit o instalaci i když to zruší první oddíl na disku?"
+"Provádíte nastavení tisku s úètem na systému Windows. Díky chybì v klientu "
+"protokolu Samba je heslo pøi tisku posláno jako èistý text z pøíkazové "
+"øádky. Je tudí¾ mo¾né, aby kdokoliv vidìl toto heslo na obrazovce kdy¾ si "
+"zadá pøíkaz napø. \"ps auxwww\".\n"
+"\n"
+"Doporuèujeme pou¾ívat jednu z následujících alternativ (ve v¹ech pøípadech "
+"je dobré mít nastaven pøístup pouze z poèítaèù z lokální sítì, respektive za "
+"firewallem):\n"
+"\n"
+"Pou¾ít úèet, který nemá nastaven ¾ádné heslo, jako je \"GUEST\" nebo "
+"speciální úèet pouze pro úèely tisku. Neodstraòujte ochranu heslem z bì¾ného "
+"úètu nebo dokonce z administrátorského úètu.\n"
+"\n"
+"Nastavte tiskárnu na Windows serveru tak, aby fungovala pod LPD protokolem. "
+"Potom nastavte tisk na této tiskárnì pomocí typy spojení \"%s\" v aplikaci "
+"PrinterDrake.\n"
+"\n"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
msgid ""
-"Restore Selected\n"
-"Files"
+"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 ""
-"Vybrána obnova\n"
-"Soubory"
+"Nastavit na serveru s Windows tiskárnu, která bude pøístupná pomocí IPP "
+"protokolu a nastavit tisk z tohoto poèítaèe pomocí spojení \"%s\" v aplikaci "
+"PrinterDrake.\n"
+"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:840
msgid ""
-"%s exists, delete?\n"
+"Connect your printer to a Linux server and let your Windows machine(s) "
+"connect to it as a client.\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."
+"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-"%s existuje, smazat?\n"
+"Pøipojit tiskárnu k Linux serveru a nechat poèítaè(e) s Windows pracovat "
+"jako klienty.\n"
"\n"
-"Varování: Pokud jste tak již jednou uÄinili, budete nejspíš muset\n"
-"vymazat příslušný záznam ze souboru authorized_keys na serveru."
+"Chcete opravdu pokraèovat v nastavení tiskárny tímto zpùsobem?"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Prosím vyplňte nebo zkontrolujte následující údaje"
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
+msgstr "Mo¾nosti NetWare tiskárny"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Chcete uložit úpravy souboru /etc/fstab?"
+#: ../../printer/printerdrake.pm_.c:912
+msgid ""
+"To print on a NetWare printer, you need to provide the NetWare print server "
+"name (Note! it may be different from its TCP/IP hostname!) as well as the "
+"print queue name for the printer you wish to access and any applicable user "
+"name and password."
+msgstr ""
+"Abyste mohli tisknout na NetWare tiskárnì, musíte zadat název NetWare "
+"serveru (Pozor! To mù¾e být odli¹né od jeho názvu pro TCP/IP!), název "
+"tiskové fronty tiskárny, kterou chcete pou¾ívat, u¾ivatelské jméno a heslo."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
-msgstr "Protokol o spuštění"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr "Tiskový server"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM disky %s\n"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
+msgstr "Název tiskové fronty"
-#: ../../services.pm:1
-#, c-format
-msgid "On boot"
-msgstr "Při spuštění"
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
+msgstr "Chybí název pro sdílení pøes NCP!"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "BalíÄek %s musí být nainstalován. Chcete ho nainstalovat?"
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
+msgstr "Chybí název tiskové fronty pro NCP!"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, c-format
-msgid "Bus identification"
-msgstr "Identifikace sběrnice"
+msgid ", host \"%s\", port %s"
+msgstr ", poèítaè \"%s\", port %s"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
-msgid "Vatican"
-msgstr "Vatikán"
+msgid "Host \"%s\", port %s"
+msgstr "Poèítaè \"%s\", port %s"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please make a backup of your data first"
-msgstr "Zálohujte si nejdřív svá data, prosím"
+#: ../../printer/printerdrake.pm_.c:1030
+msgid "TCP/Socket Printer Options"
+msgstr "Mo¾nosti tiskárny pro TCP/Socket"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ADSL adapters"
+#: ../../printer/printerdrake.pm_.c:1032
+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) into the input fields."
msgstr ""
+"Vyberte ze seznamu jednu z automaticky nalezených tiskáren nebo zadejte do "
+"políèek název nebo IP adresu tiskárny a volitelnì èíslo portu (výchozí je "
+"9100)."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Máte více než jeden pevný disk, na který chcete instalovat Linux?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Eritrea"
-msgstr "Eritrea"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot ISO"
-msgstr "Spouštěcí ISO"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Firmware needed"
-msgstr "Je nutný firmware"
+#: ../../printer/printerdrake.pm_.c:1033
+msgid ""
+"To print to a TCP or socket printer, you need to provide the host name or IP "
+"of the printer and optionally the port number (default is 9100). On HP "
+"JetDirect servers the port number is usually 9100, on other servers it can "
+"vary. See the manual of your hardware."
+msgstr ""
+"Abyste mohli tisknout na TCP nebo soketové tiskárnì, musíte zadat název nebo "
+"IP adresu tiskárny a volitelnì i èíslo portu (výchozí je 9100). V "
+"pøípadìserverù HP JetDirect je èíslo portu obvykle 9100, u jiných serverù "
+"mù¾e být jiné. Podívejte se do manuálu k va¹emu hardware."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove List"
-msgstr "Odebrat seznam"
+#: ../../printer/printerdrake.pm_.c:1037
+msgid "Printer host name or IP missing!"
+msgstr "Chybí název nebo IP adresa tiskárny!"
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
-msgstr "Přizpůsobitelné prostředí"
+#: ../../printer/printerdrake.pm_.c:1059
+msgid "Printer host name or IP"
+msgstr "Název nebo IP adresa tiskárny"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
-msgstr "Inuktitutské"
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
+msgstr "URI Tiskového Zaøízení"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1108
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."
+"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 ""
-"Některé protokoly, jako např. rsync, mohou být nastaveny na straně serveru. "
-"Místo použití adresářové cesty raději použijte pro cestu ke službě název "
-"'modulu'."
+"Zde lze pøímo zadat URI pro pøístup k tiskárnì. URI musí splòovat buï "
+"specifikaci CUPS nebo Foomatic. Také pamatujte na to, ¾e v¹echny URI nejsou "
+"podporovány ve v¹ech tiskových správcích."
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "Maroko"
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
+msgstr "Musí být zadáno správné URI!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Jaký model tiskárny máte?"
+#: ../../printer/printerdrake.pm_.c:1463
+msgid ""
+"Every printer needs a name (for example \"printer\"). The Description and "
+"Location fields do not need to be filled in. They are comments for the users."
+msgstr ""
+"Ka¾dá tiskárna potøebuje název (napø. \"tiskarna\"). Popis a umístìní nemusí "
+"být vyplnìny. Jsou to komentáøe pouze pro u¾ivatele."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add a new printer"
-msgstr "Přidat novou tiskárnu"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr "Název tiskárny"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " All of your selected data have been "
-msgstr " Všechna vybraná data byla "
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
+msgstr "Popis"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "Nepál"
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
+msgstr "Umístìní"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Smazat"
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+msgid "Reading printer database..."
+msgstr "Naèítám databázi tiskáren ..."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
-msgstr "cpu #"
+#: ../../printer/printerdrake.pm_.c:1482
+msgid "Preparing printer database..."
+msgstr "Naèítám databázi tiskáren ..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "chunk size"
-msgstr "Velikost bloku (chunk)"
+#: ../../printer/printerdrake.pm_.c:1578
+msgid "Your printer model"
+msgstr "Model tiskárny"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:1579
#, c-format
msgid ""
-"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
+"Printerdrake has compared the model name resulting from the printer auto-"
+"detection with the models listed in its printer database to find the best "
+"match. This choice can be wrong, especially when your printer is not listed "
+"at all in the database. So check whether the choice is correct and click "
+"\"The model is correct\" if so and if not, click \"Select model manually\" "
+"so that you can choose your printer model manually on the next screen.\n"
"\n"
-"If set to NONE, no issues are allowed.\n"
+"For your printer Printerdrake has found:\n"
"\n"
-"Else only /etc/issue is allowed."
+"%s"
msgstr ""
-"Pokud je nastaveno \"OBA\", je povolena existence soubor /etc/issue\n"
-"a /etc/issue.net.\n"
+"PrinterDrake provedl porovnání modelu tiskárny, který byl zji¹tìn pøi auto-"
+"detekci s modelem obsa¾eným v jeho databázi a nabídl nejlep¹í øe¹ení. Tato "
+"volba mù¾e být ¹patná, zvlá¹» pokud není tiskárna obsa¾ena v databázi. "
+"Zkontrolujte, zda je volba správná a klepnìte na \"Zvolený model je správný"
+"\" a pokud není, volte \"Vybrat model ruènì\". V dal¹í obrazovce potom bude "
+"mo¾né vybrat model tiskárny ruènì.\n"
"\n"
-"Pokud je nastaveno \"ŽÃDNÃ\", není povolen žádný soubor issue.\n"
+"Pro va¹i tiskárnu PrinterDrake nalezl:\n"
"\n"
-"Jinak je povolena exsitence pouze souboru /etc/issue."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr " Povolí/zakáže sulogin(8) v jednouživatelském režimu."
-
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-#
-#. -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
-#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "spoustecich parametru, nebo 'c' pro prikazovou radku."
-
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problém s instalací balíÄku %s"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Pokud bude hodnota vetší než zadané Äíslo, obdržíte varovnou zprávu"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
-msgstr "PÅ™idat skener ruÄnÄ›"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh"
-msgstr "Obnovit"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Reload partition table"
-msgstr "Znovu naÄíst tabulku oddílů"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Ano, chci automatické přihlášení s tímto (uživatelem, desktopem)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Selected"
-msgstr "Obnovit vybrané"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Hledat fonty mezi instalovanými"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Číslo lokální sítÄ› nekonÄí na .0, zkouším znovu."
+"%s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Boot"
-msgstr "Spuštění"
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+msgid "The model is correct"
+msgstr "Zvolený model je správný"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " a CD je v mechanice"
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+msgid "Select model manually"
+msgstr "Vybrat model ruènì"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Tuner type:"
-msgstr "Typ tuneru :"
+#: ../../printer/printerdrake.pm_.c:1606
+msgid "Printer model selection"
+msgstr "Výbìr modelu tiskárny"
-#: ../../help.pm:1
-#, 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"
-"\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 ""
-"Zde si můžete vybrat tiskový systém, který budete používat. Jiné OS "
-"nabízejí\n"
-"jeden, Mandrake nabízí dva. Každý z nich je nejvhodnější pro různé typy\n"
-"konfigurací.\n"
-"\n"
-" * \"%s\" - což znamená 'print, don't queue' a je vhodný tehdy, pokud "
-"nemáte\n"
-"žádné síťové tiskárny. Zvládá pouze několik možností a tisk na něj ze sítě\n"
-"je velmi pomalý. Pokud s GNU/Linuxem teprve zaÄínáte, pak je \"%s\"\n"
-"doporuÄený tiskový systém pro vás.\n"
-"\n"
-" * \"%s\"'Common Unix Printing System' je vynikající v tisku na lokální\n"
-"tiskárny stejně jako při tisku na tiskárnu na druhé straně planety. "
-"Nastavení\n"
-"je jednoduché a může fungovat jako klient i server pro klienty z \"lpd\"\n"
-"systému, takže je s nimi kompatibilní. Je možné nastavit spoustu voleb,\n"
-"ale základní nastavení je velmi jednoduché. Pokud potřebujete emulovat\n"
-"\"lpd\" server, staÄí spustit démona \"cups-lpd\". \"%s\" má také grafické "
-"prostředí\n"
-"pro tisk a nastavení tiskárny.\n"
-"\n"
-"Pokud nyní provedete volbu a později budete chtít tiskový systém změnit,\n"
-"můžete to provést pomocí nástroje PrinterDrake z ovládacího centra Mandrake "
-"tak,\n"
-"že klepnete na tlaÄítko Expert."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
-msgstr "Klávesa \"Menu\""
+#: ../../printer/printerdrake.pm_.c:1607
+msgid "Which printer model do you have?"
+msgstr "Jaký model tiskárny máte?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1608
msgid ""
"\n"
"\n"
"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
msgstr ""
"\n"
"\n"
-"Zkontrolujte prosím, zda PrinterDrake provedl automatickou detekci modelu "
-"správnÄ›. Pokud je vyznaÄen nesprávný model, můžete ho zmÄ›nit výbÄ›rem ze "
-"seznamu nebo zvolte \"Přímý tisk\"."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Administrator:"
-msgstr "Správce zabezpeÄení:"
+"Zkontrolujte prosím, zda PrinterDrake provedl automatickou detekci modelu "
+"správnì. Pokud je vyznaèen nesprávný model, mù¾ete ho zmìnit výbìrem ze "
+"seznamu nebo zvolte \"Raw printer\"."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
-msgstr "Nastaví Äas vyprÅ¡ení pro shell. Nulová hodnota znamená žádný Äas."
+#: ../../printer/printerdrake.pm_.c:1611
+msgid ""
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
+msgstr ""
+"Pokud není tiskárna v seznamu, vyberte kompatibilní nebo podobný model "
+"(podívejte se do manuálu)"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "Kopírování firmware proběhlo úspěšně"
+#: ../../printer/printerdrake.pm_.c:1697
+msgid "OKI winprinter configuration"
+msgstr "Nastavení pro OKI win-tiskárnu"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1698
msgid ""
-"You can't use another CDROM when the following programs are running: \n"
-"%s"
+"You are configuring an OKI laser winprinter. These printers\n"
+"use a very special communication protocol and therefore they work only when "
+"connected to the first parallel port. When your printer is connected to "
+"another port or to a print server box please connect the printer to the "
+"first parallel port before you print a test page. Otherwise the printer will "
+"not work. Your connection type setting will be ignored by the driver."
msgstr ""
+"Nyní nastavujete laserovou tiskárnu OKI winprinter. Tyto tiskárny pou¾ívají "
+"velmi specifický komunikaèní protokol a mohou pracovat pouze pokud jsou "
+"pøipojeny k prvnímu paralelnímu portu. Pokud je tiskárna pøipojena na jiný "
+"port, nebo se tiskne pøes server, pøipojte tiskárnu na první paralelní port. "
+"Jinak tisk nebude pracovat. Typ pøipojení bude ovladaè ignorovat."
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+msgid "Lexmark inkjet configuration"
+msgstr "Nastavení inkoustové tiskárny Lexmark"
+
+#: ../../printer/printerdrake.pm_.c:1719
+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 ""
-"pokud je nastaveno, kontrolu práva souborů v domovském adresáři uživatele"
+"Inkoustové tiskárny dodávané firmou Lexmark podporují pouze tisk na lokální "
+"tiskárnì, tak¾e nelze tisknout pøes vzdálený server. Prosím pøipojte "
+"tiskárnu na lokální port nebo ji nastavte na tom poèítaèi, ke kterému bude "
+"pøipojena."
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1746
msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
+"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 ""
-"Nemáte žádné připojení k Internetu.\n"
-"Vytvořte si jej klepnutím na 'Konfigurovat'"
+"Aby bylo mo¾né pøi tomto nastavení tisknout na inkoustových tiskárnách od "
+"firmy Lexmark, je potøeba mít tiskový ovladaè poskytovaný spoleèností "
+"Lexmark (http://www.lexmark.com/). Kliknìte na odkaz \"Drivers\", vyberte "
+"vá¹ model tiskárny, a poté zvolte Linux jako operaèní systém. Ovladaèe jsou "
+"v RPM balíècích nebo skripty shellu s interaktivní grafickou instalací. Tu "
+"ale k nastavení va¹eho systému nepotøebujete. Ukonèete instalaèní program "
+"ihned po odsouhlasení licence. Pak mù¾ete vytisknout stránku s nastavením "
+"tiskových hlav programem \"lexmarkmaintain\" a nastavit zarovnání tiskové "
+"hlavy pomocí tohoto programu."
+
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr "Laserová tiskárna GDI pou¾ívající formát Zenographics ZJ-Stream"
+
+#: ../../printer/printerdrake.pm_.c:1750
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+"Va¹e tiskárna patøí do skupiny laserových tiskáren GDI (tzv. winprinter), "
+"které jsou prodávány rùznými dodavateli a které pou¾ívají pro data posílaná "
+"na tiskárnu rastrovací formát Zenographics ZJ-stream. Ovladaè pro tento tyto "
+"tiskárny je zatím v pomìrnì raném stadiu vývoje a tak mo¾ná nebude v¾dy "
+"pracovat správnì. Zejména je mo¾né, ¾e tiskárna bude pracovat správnì pouze "
+"tehdy, pokud vyberete velikost papíru A4.\n"
+"\n"
+"Nìkteré z tìchto tiskáren, jako napøíklad HP LaserJet 1000, pro kterou byl "
+"pùvodnì tento ovladaè vytvoøen, potøebují po svém zapnutí nahrát svùj "
+"firmware. V pøípadì tiskárny HP LaserJet 1000 musíte prohledat CD s ovladaèi "
+"pro Windows nebo vá¹ oddíl se systémem Windows, najít soubor \"sihp1000.img"
+"\", a nahrát jej do tiskárny jedním z následujících pøíkazù:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"První pøíkaz mù¾e zadat i bì¾ný u¾ivatel, druhý mù¾e provést pouze u¾ivatel "
+"root. Poté, co vý¹e uvedené provedete, mù¾ete normálnì tisknout.\n"
+
+#: ../../printer/printerdrake.pm_.c:1972
+msgid ""
+"Printer default settings\n"
+"\n"
+"You should make sure that the page size and the ink type/printing mode (if "
+"available) and also the hardware configuration of laser printers (memory, "
+"duplex unit, extra trays) are set correctly. Note that with a very high "
+"printout quality/resolution printing can get substantially slower."
+msgstr ""
+"Výchozí nastavení pro tiskárnu\n"
+"\n"
+"Ujistìte se, ¾e typ stránky a typ inkoustu/re¾im tisku (pokud je) a také "
+"hardwarová konfigurace laserové tiskárny (pamì», duplexní jednotka, externí "
+"podavaè) jsou nastaveny správnì. Pøi tisku ve velmi vysoké kvalitì/rozli¹ení "
+"bude tisk zøejmì pomalej¹í."
-#: ../../standalone/drakfont:1
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid "Fonts copy"
-msgstr "Kopie fontu"
+msgid "Option %s must be an integer number!"
+msgstr "Hodnota %s musí být celé èíslo!"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "Automated"
-msgstr "Automaticky"
+msgid "Option %s must be a number!"
+msgstr "Hodnota %s musí být èíslo!"
-#: ../../Xconfig/test.pm:1
+#: ../../printer/printerdrake.pm_.c:1989
#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Chcete si vyzkoušet nastavení?"
+msgid "Option %s out of range!"
+msgstr "Hodnota %s je mimo rozsah!"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2028
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
-"Tiskárna \"%s\" byla úspěšně odebrána z aplikace Star Office/OpenOffice.org/"
-"GIMP."
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save packages selection"
-msgstr "Uložit výbÄ›r jednotlivých balíÄků"
+"Chcete opravdu nastavit tiskárnu \"%s\"\n"
+"jako výchozí?"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Actions"
-msgstr "/_Akce"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Remove the last item"
-msgstr "Odstranit poslední položku"
+#: ../../printer/printerdrake.pm_.c:2051
+msgid "Test pages"
+msgstr "Testovací stránka"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
+#: ../../printer/printerdrake.pm_.c:2052
+msgid ""
+"Please select the test pages you want to print.\n"
+"Note: the photo test page can take a rather long time to get printed and on "
+"laser printers with too low memory it can even not come out. In most cases "
+"it is enough to print the standard test page."
msgstr ""
-"Seznam uživatelů pro obnovení (od každého bude obnovena pouze poslední "
-"záloha)"
+"Vyberte si testovací stránku, kterou chcete vytisknout.\n"
+"Poznámka: tisk testovací stránky s fotografií mù¾e trvat velmi dlouho nebo "
+"se na tiskárnì s málo pamìtí nemusí podaøit vùbec. Ve vìt¹inì pøípadù staèí "
+"vytisknout bì¾nou testovací stránku."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
-msgstr "Nepodařilo se vytvořit obraz pro spouštění ze sítě!"
+#: ../../printer/printerdrake.pm_.c:2056
+msgid "No test pages"
+msgstr "Bez testovací stránky"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "použít pptp"
+#: ../../printer/printerdrake.pm_.c:2057
+msgid "Print"
+msgstr "Tisk"
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Zvolte si, které služby by měli být automaticky spuštěny při startu"
+#: ../../printer/printerdrake.pm_.c:2114
+msgid "Standard test page"
+msgstr "Standardní testovací stránka"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check files/directories writable by everybody"
-msgstr "Kontrolovat, které soubory/adresáře jsou zapisovatelné pro všechny"
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
+msgstr "Alternativní testovací stránka (Letter)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Nápověda pro tisk na této tiskárně"
+#: ../../printer/printerdrake.pm_.c:2120
+msgid "Alternative test page (A4)"
+msgstr "Alternativní testovací stránka (A4)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configure the network now"
-msgstr "Nastavit síť nyní"
+#: ../../printer/printerdrake.pm_.c:2122
+msgid "Photo test page"
+msgstr "Testovací stránka s fotografií"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Zvolte si zrcadlo (mirror) pro stahování balíÄků"
+#: ../../printer/printerdrake.pm_.c:2126
+msgid "Do not print any test page"
+msgstr "Netisknout testovací stránku"
+
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
+msgstr "Tisknu testovací stránku(y)"
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2159
#, c-format
msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
+"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 ""
-"Změnu velikost FAT není možné provést, \n"
-"vyskytla se následující chyba: %s"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Size: "
-msgstr "Velikost: "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "Na který sektor chcete oddíl přesunout?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahamas"
-msgstr "Bahamy"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Do you want to click on this button?"
-msgstr "Chcete klepnout na toto tlaÄítko? "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Manual configuration"
-msgstr "RuÄní nastavení"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "search"
-msgstr "vyhledat"
+"Zku¹ební stránka(y) byla(y) poslána(y) na tiskárnu.\n"
+"Mù¾e chvilku trvat ne¾ zaène tisk.\n"
+"Stav tisku:\n"
+"%s\n"
+"\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2163
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."
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
msgstr ""
-"Tento balíÄek nahraje zvolenou mapu klávesnice definovanou\n"
-"v /etc/sysconfig/keyboard. Tu lze vybrat pomocí nástroje kbdconfig.\n"
-"Pro vÄ›tÅ¡inu poÄítaÄů byste ji mÄ›li nechat zapnutou."
+"Zku¹ební stránka byl poslána na tiskárnu.\n"
+"Mù¾e chvilku trvat ne¾ zaène tisk.\n"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (instalaÄní ovladaÄ pro obrazovku)"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "Název poÄítaÄe pro Zeroconf nemůže obsahovat \"teÄku\""
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
+msgstr "Probìhl tisk správnì ?"
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr " Přijímá/odmítá icmp echo."
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+msgid "Raw printer"
+msgstr "Pøímý tisk na tiskárnu"
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:2216
#, 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."
+"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 ""
-"Syslog je program pomocí něhož zaznamenává mnoho démonů správy do "
-"systémových\n"
-"log souborů. Je dobré mít spuštěný syslog."
-
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown/Others"
-msgstr "Neznámý/Jiný"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
-msgstr "Nebyla nalezena TV karta!"
-
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Options"
-msgstr "Volby"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Tiskárna \"%s\" je nyní nastavena jako výchozí."
+"Vytisknout soubor z pøíkazové øádky (terminálového okna) lze buï pøíkazem\n"
+"\"%s<soubor>\" nebo pøes grafické nástroje: \"xpp <soubor> nebo \"kprinter "
+"<soubor>\". Grafické nástroje umo¾òují jednodu¹e vybrat tiskárny a mìnit "
+"jejich parametry.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2218
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."
+"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 ""
-"Nyní nastavujete laserovou tiskárnu OKI winprinter. Tyto tiskárny používají "
-"velmi specifický komunikaÄní protokol a mohou pracovat pouze pokud jsou "
-"připojeny k prvnímu paralelnímu portu. Pokud je tiskárna připojena na jiný "
-"port, nebo se tiskne přes server, připojte tiskárnu na první paralelní port. "
-"Jinak tisk nebude pracovat. Typ pÅ™ipojení bude ovladaÄ ignorovat."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr "Generace cpu (napÅ™. 8 pro Pentium III, ...)"
+"Tyto pøíkazy lze nastavit do políèka \"Pøíkazy tisku\" v dialogu tisku ve "
+"vìt¹inì aplikací, ale nezadává se zde název souboru, které je poka¾dé jiné v "
+"závislosti na dané aplikaci.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detected"
-msgstr "Automaticky nalezeno"
-
-#: ../../standalone/drakpxe:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, 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)."
+"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 ""
-"Váš poÄítaÄ bude nastaven jako instalaÄní PXE server se službou DHCP\n"
-"a TFTP serveru.\n"
-"Tato vlastnost umožňuje instalovat další poÄítaÄe na lokální síti pomocí\n"
-"poÄítaÄe.\n"
"\n"
-"PÅ™ed pokraÄováním se ujistÄ›te, že jste nastavili vaÅ¡i síť a pÅ™ipojení k "
-"Internetu pomocí aplikace drakconnect.\n"
-"\n"
-"Pozn.: Pro nastavení lokální sítě (LAN) potřebujete vyhrazený síťový adaptér."
+"Pøíkaz \"%s\" dovoluje modifikovat volby pro ka¾dou tiskovou úlohu. "
+"Jednodu¹e zadejte potøebné nastavení do pøíkazové øádky, napø. \"%s<soubor>"
+"\". "
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
#, 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"
+"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\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 ""
-"OSS (Open Sound System) bylo první API pro zvuk. Není to API nezávislé na OS "
-"(je dostupné ve více unixových systémech), ale má pouze základní funkce a "
-"omezené API.\n"
-"A co více, vÅ¡echny OSS ovladaÄe \"vynalézají znovu kolo\".\n"
+"V¹echny mo¾nosti dostupné pro souèasnou tiskárnu jsou vypsány ní¾e, nebo "
+"klepnìte na tlaèítko \"Mo¾nosti tiskárny\".%s%s\n"
"\n"
-"ALSA (Advanced Linux Sound Architecture) je modulární architektura, která "
-"která podporuje daleko více ISA, USB a PCI karet.\n"
+
+#: ../../printer/printerdrake.pm_.c:2228
+msgid ""
+"Here is a list of the available printing options for the current printer:\n"
"\n"
-"Také poskytuje daleko lepší API než OSS.\n"
+msgstr ""
+"Zde je seznam dostupných voleb pro nastavení tisku pro aktuální tiskárnu:\n"
"\n"
-"Pokud chcete použít alsa ovladaÄe, můžete použít dva režimy:\n"
-"- starší režim kompatibility s OSS API\n"
-"- nové ALSA API, které poskytuje daleko více možností, ale vyžaduje použít "
-"knihovnu ALSA.\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, 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"
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
msgstr ""
-"Pro bootstrap není potÅ™ebné místo o velikosti 1MB! Instalace může pokraÄovat "
-"ale pro spuštění systému musíte vytvořit bootstrap oddíl pomocí DiskDrake"
+"Pro vyti¹tìní souboru z pøíkazové øádky (v terminálovém oknì) pou¾ijte "
+"pøíkaz \"%s <soubor>\".\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
+"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 ""
-"Vyberte si tiskárnu, kterou chcete nastavit nebo zadejte do políÄka název "
-"zařízení/název souboru"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
-msgstr "Odmítnout"
+"Tento pøíkaz lze nastavit do políèka \"Pøíkazy tisku\" v dialogu tisku ve "
+"vìt¹inì aplikací, ale nezadává se zde název souboru, které je poka¾dé jiné v "
+"závislosti na dané aplikaci.\n"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
-msgstr "LOKÃLNÃ"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
msgstr ""
-"HardDrake testuje hardware a umožňuje nový/změněný\n"
-"hardware nastavit"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Vytvářím a formátuji soubor %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
-msgstr "pokud je nastaveno, provádí se kontrola přidané/odebrané sgid soubory."
+"V¹echny mo¾nosti tisku pro souèasnou tiskárnu jsou zobrazeny ní¾e, nebo "
+"klepnìte na tlaèítko \"Mo¾nosti tiskárny\"."
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2253
#, 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"
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
msgstr ""
-"Tiskárna HP LaserJet 1000 potřebuje po spuštění nahrát firmware. Stáhněte si "
-"z webových stránek HP ovladaÄe pro Windows (firmware na dodávaném CD s "
-"tiskárnou nefunguje) a vyextrahujte z nich pomocí programu 'unzip' soubor "
-"'sihp1000.img'. Tento soubor nakopírujte do adresáře '/etc/printer'. Skript "
-"pro automatický upload potom tento soubor automaticky nahraje do tiskárny "
-"kdykoliv bude připojena a zapnuta.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "Zvolte existující LVM pro přidání"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "xfs restart"
-msgstr "restart xfs"
+"Pro vyti¹tìní souboru z pøíkazové øádky (v terminálovém oknì) pou¾ijte "
+"pøíkaz \"%s <soubor>\" nebo \"%s <soubor>\".\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2257
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"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 ""
-"Tiskárna s názvem %s již existuje,\n"
-"chcete opravdu přepsat její konfiguraci?"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Použít skenery na poÄítaÄi: "
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
-msgstr "Zrušit celý výběr"
-
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "Nejsou dostupné žádné diskové oddíly"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Management \n"
-msgstr "Správa tiskáren \n"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Dekodér názvu domény"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
-msgstr "Å ifrovací klÃ­Ä (znovu)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Chybí název pro sdílení přes Sambu!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
-msgstr "Instalace True Type fontů je dokonÄena"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detection in progress"
-msgstr "Probíhá detekce"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Sestavit celé jádro -->"
+"Lze také pou¾ít grafické rozhraní \"xpdq\" pro nastavení mo¾ností a ke "
+"správì tiskových úloh.\n"
+"Pokud pou¾íváte grafické prostøedí KDE, máte na pracovní plo¹e ikonu "
+"pojmenovanou \"STOP Printer!\", který po kliknutí ihned zastaví v¹echny "
+"tiskové úlohy. To je vhodné tøeba pro pøípady uvíznutí papíru.\n"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "modem"
-msgstr "modem"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "Vítá vás %s"
-
-#: ../../standalone/drakhelp:1
+#: ../../printer/printerdrake.pm_.c:2261
#, 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"
+"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 ""
-" drakhelp 0.1\n"
-"Copyright © 2003 MandrakeSoft.\n"
-"Toto je svobodný software a je šířen pod licencí GNU GPL.\n"
"\n"
-"Použití: \n"
+"Pøíkazy \"%s\" a \"%s\" dovolují mìnit volby pro ka¾dou tiskovou úlohu. "
+"Jednodu¹e zadejte potøebné nastavení do pøíkazové øádky, napø. \"%s <soubor>"
+"\".\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2271
#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Vložte prosím disketu s moduly do %s"
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Tisk/Skenování/Foto karty na \"%s\""
-#: ../../standalone/drakboot:1
+#: ../../printer/printerdrake.pm_.c:2272
#, c-format
-msgid "Bootsplash"
-msgstr "Bootsplash"
+msgid "Printing/Scanning on \"%s\""
+msgstr "Tisk/Skenování na \"%s\""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2274
#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-"Následující tiskárna\n"
-"\n"
-"%s %s\n"
-"je přímo pÅ™ipojena k vaÅ¡emu poÄítaÄi"
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Tisk/Pøístup k foto kartám na \"%s\""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2275
#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Tiskárny sdílené na poÄítaÄích/síti: "
+msgid "Printing on the printer \"%s\""
+msgstr "Tisknu na tiskárnu \"%s\""
+
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+msgid "Close"
+msgstr "Zavøít"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2281
+msgid "Print option list"
+msgstr "Mo¾nosti tiskárny"
+
+#: ../../printer/printerdrake.pm_.c:2301
#, 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"
-"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>\". "
+"Do not use \"scannerdrake\" for this device!"
msgstr ""
+"Multifunkèní zaøízení od HP bylo automaticky nastaveno pro mo¾nost "
+"skenování. Nyní lze skenovat z pøíkazového øádku pøíkazem \"scanimage"
+"\" (pøíkazem \"scanimage -d hp:%s\" zvolíte po¾adovaný skener, pokud jich "
+"máte více) nebo z grafického prostøedí pomocí \"xscanimage\" nebo \"xsane\". "
+"Pokud pou¾íváte program GIMP, mù¾ete také skenovat výbìrem z nabídky \"Soubor"
+"\"/\"Získat\". Více informací získáte také pøíkazem \"man scanimage\" "
+"spu¹tìným na pøíkazové øádce.\n"
"\n"
-"Příkaz \"%s\" dovoluje modifikovat volby pro každou tiskovou úlohu. "
-"Jednoduše zadejte potřebné nastavení do příkazové řádky, např. \"%s<soubor>"
-"\". "
+"Nepou¾ívejte pro toto zaøízení \"scannerdrake\"!"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "DrakClock"
-msgstr "DrakBackup"
-
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2322
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."
+"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 ""
-"V nÄ›kterých případech potÅ™ebuje ovladaÄ %s pro svoji správnou funkci další\n"
-"informace, přestože normálně funguje i bez nich. Chtěli byste zadat\n"
-"nÄ›jaké doplňující možnosti, nebo radÄ›ji necháte ovladaÄ samostatnÄ› "
-"prozkoumat\n"
-"hardware vaÅ¡eho poÄítaÄe, aby získal informace které potÅ™ebuje? Zkoumání\n"
-"hardware může ve výjimeÄných případech způsobit zamrznutí poÄítaÄe, ale "
-"nemělo\n"
-"by v žádném případě způsobit jiné škody."
+"Va¹e tiskárna byla automaticky nastavena tak, ¾e máte ze svého PC pøístup ke "
+"èteèce karty. Nyní mù¾ete pøistupovat ke svým fotografickým kartám pomocí "
+"grafického programu \"MtoolsFM\" (Menu: \"Aplikace\" -> \"Souborové nástroje"
+"\" -> \"Správce souborù MTools\") nebo z pøíkazové øádky pomocí nástroje "
+"\"mtools\" (zadejte \"man mtools\", chcete-li získat více informací). "
+"Souborový systém va¹i karty naleznete pod písmenem zaøízení \"p:\", pøípadnì "
+"dal¹ích písmenech, pokud máte více tiskáren HP se èteèkou karet. V programu "
+"\"MtoolsFM\" mù¾ete pøepínat mezi písmeny zaøízení pomocí políèka v pravém "
+"horním rohu ka¾dého výètu souborù."
+
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+msgid "Reading printer data..."
+msgstr "Naèítám data k tisku ..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "CD nemá správný název. Je oznaÄeno %s."
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+msgid "Transfer printer configuration"
+msgstr "Pøenést konfiguraci tiskárny"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2365
#, c-format
msgid ""
-"\n"
-"- Daemon, %s via:\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 ""
-"\n"
-"- Démon, %s přes :\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "Kuba"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr "Říjen"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belize"
-msgstr "Belize"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Vyhledávám nové tiskárny..."
+"Konfiguraci tiskárny, kterou jste provedli pro frontu %s lze pøenést na "
+"frontu %s, tj. na souèasnou frontu. V¹echna nastavená data (název tiskárny, "
+"popis, umístìní, typ pøipojení a dal¹í výchozí nastavení) budou pøepsána, "
+"ale tiskové úlohy nebudou pøeneseny.\n"
+"Ne v¹echny fronty lze pøenést z následujích dùvodù:\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
-msgstr " (multi-session)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
-msgstr "Prodleva při spuštění"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2368
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."
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
msgstr ""
-"Vaše karta podporuje 3D akceleraci, ale pouze s XFree %s.\n"
-"Pokud použijete XFree %s, můžete na druhou stranu dosáhnout lepších výsledků "
-"ve 2D."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Activate/Disable daily security check."
-msgstr " Povolí/zakáže provádÄ›ní denních bezpeÄnostních kontrol."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-R.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
-msgstr "Povolit použití knihovny libsafe, pokud je na systému nalezena"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Průvodce DrakX našel následující řešení rozdělení disku:"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "MaÄarské"
+"CUPS nepodporuje tiskárny na serverech Novell nebo tiskárny, které posílají "
+"data na skupinu pøíkazù.\n"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2370
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
msgstr ""
-"Vyberte si svého poskytovatele internetu.\n"
-" Pokud není na seznamu, vyberte si Jiný"
+"PDQ podporuje pouze místní tiskárny, vzdálené tiskárny LPD a tisk na "
+"tiskárny pøes sokety/TCP.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automatická synchronizace Äasu (pomocí NTP)"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Použít oddíl s Windows"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Server"
-msgstr "LDAP server"
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr "LPD ani LprNG nepodporují IPP tiskárny.\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2374
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."
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
msgstr ""
-"Podpora PCMCIA většinou znamená podporu zařízení jako síťové karty a\n"
-"modemy v laptopech. Nespustí se pokud ji přímo nenastavíte, ale není "
-"problém\n"
-"jí mít nainstalovanou i na poÄítaÄích, které ji nepotÅ™ebují."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Choose your country"
-msgstr "Vyberte si zemi"
+"Tiskové fronty, které nebyly vytvoøeny tímto programem nebo pøes \"foomatic-"
+"configure\" nelze pøenést."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2375
msgid ""
"\n"
-"- System Files:\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
msgstr ""
"\n"
-"- Systémové soubory:\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
-msgstr "Samostatné nástroje"
+"Také tiskárny pou¾ívající PPD soubory od jejich výrobcù nebo tiskárny s "
+"nativními ovladaèi pro CUPS nelze pøenést."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Where"
-msgstr "Kde"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "but not matching"
-msgstr "neshodných"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2376
msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
msgstr ""
-"Zde si pro vaÅ¡i zvukovou (%s) kartu můžete vybrat alternativní ovladaÄ (buÄ "
-"OSS nebo ALSA)"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Nastavuji PCMCIA karty..."
-
-#: ../../common.pm:1
-#, c-format
-msgid "kdesu missing"
-msgstr "chybí kdesu"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s vyžaduje jméno uživatele...\n"
+"\n"
+"Oznaète tiskárnu, kterou chcete pøenést a stisknìte \"Pøenést\"."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
-msgstr "Å ifrovací klíÄ"
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
+msgstr "Nepøená¹et tiskárny"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
+msgstr "Pøenést"
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm_.c:2392
#, 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."
+"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 ""
-"Nastavení bude aktivováno až po instalaci.\n"
-"Během instalace je nutné pro přepnutí mezi různými klávesovými mapami použít "
-"pravý Ctrl."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "VánoÄní ostrov"
-
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Automatic"
-msgstr "Automatická IP"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Instalace zaváděcího programu neuspěla. Stala se tato chyba:"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "Kanál EIDE/SCSI"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Nastavit tuto tiskárnu jako výchozí"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Ověřete, že %s je správná cesta"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "diskovém oddílu %s"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Paranoid"
-msgstr "Paranoidní"
-
-#: ../../any.pm:1
-#, c-format
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- Odebrat uživatele"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Location on the bus"
-msgstr "Umístění na sběrnici"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No printer found!"
-msgstr "Nenalezena žádná tiskárna!"
+"Tiskárna s názvem \"%s\" ji¾ na stranì %s existuje.\n"
+"Kliknìte na \"Pøenést\" pro pøepsání.\n"
+"Také mù¾ete napsat nový název nebo ji pøeskoèit."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
-msgstr "jméno dodavatele zařízení"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr "Název fronty mù¾e obsahovat pouze písmena, èíslice a podtr¾ítko"
-#: ../../help.pm:1 ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
-msgid "Erase entire disk"
-msgstr "Smazat celý disk"
+msgid ""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
+msgstr ""
+"Tiskárna s názvem %s ji¾ existuje,\n"
+"chcete opravdu pøepsat její konfiguraci?"
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Default)"
-msgstr " (Výchozí)"
+#: ../../printer/printerdrake.pm_.c:2413
+msgid "New printer name"
+msgstr "Nový název tiskárny"
-#: ../../standalone/drakgw:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "Automatic reconfiguration"
-msgstr "Automatické přenastavení"
+msgid "Transferring %s..."
+msgstr "Pøená¹ím %s ..."
-#: ../../standalone/net_monitor:1
+#: ../../printer/printerdrake.pm_.c:2427
#, c-format
-msgid "Receiving Speed:"
-msgstr "Rychlost na příjmu:"
+msgid ""
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
+msgstr ""
+"Byla pøenesena výchozí tiskárna (\"%s\"). Má se nastavit jako výchozí také "
+"na vzdáleném tiskovém systému %s?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
-msgstr "Turks a Caicos Islands"
+#: ../../printer/printerdrake.pm_.c:2437
+msgid "Refreshing printer data..."
+msgstr "Obèerstvuji tisková data ...."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Ip"
-msgstr "Bez IP"
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+msgid "Configuration of a remote printer"
+msgstr "Nastavení vzdálené tiskárny"
-#: ../../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
-#, c-format
-msgid "<- Previous"
-msgstr "<- Zpět"
+#: ../../printer/printerdrake.pm_.c:2446
+msgid "Starting network..."
+msgstr "Spou¹tím sí» ...."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Transfer Now"
-msgstr "Přenést nyní"
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+msgid "Configure the network now"
+msgstr "Nastavit sí» nyní"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password and network authentication methods"
-msgstr "Nastavení hesla uživatele root a režimy pro síťové ověřování"
+#: ../../printer/printerdrake.pm_.c:2480
+msgid "Network functionality not configured"
+msgstr "Sí» není nastavena"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "Přepnutí mezi abecedním a skupinovým řazením"
+#: ../../printer/printerdrake.pm_.c:2481
+msgid ""
+"You are going to configure a remote printer. This needs working network "
+"access, but your network is not configured yet. If you go on without network "
+"configuration, you will not be able to use the printer which you are "
+"configuring now. How do you want to proceed?"
+msgstr ""
+"Nyní zaène konfigurace vzdálené tiskárny. To vy¾aduje funkèní sí»ové "
+"spojení, ale sí» není zatím nastavena. Pokud budete pokraèovat bez nastavení "
+"sítì, nebude mo¾né pou¾ít tiskárnu, kterou po¾adujete. Jak chcete pokraèovat?"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Themes"
-msgstr "Motivy"
+#: ../../printer/printerdrake.pm_.c:2484
+msgid "Go on without configuring the network"
+msgstr "Pokraèovat bez nastavení sítì"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "Volby: %s"
+#: ../../printer/printerdrake.pm_.c:2518
+msgid ""
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
+"Nastavení sítì provedené pøi instalaci nelze nyní aktivovat. Zkontrolujte, "
+"zda je sí» dostupná po spu¹tìní systému a nastavení opravte v øídícím centru "
+"Mandrake, v sekci \"Sí» a Internet\"/\"Pøipojení\" a následnì nastavte "
+"tiskárnu také v øídícím centru v sekci \"Hardware\"/\"Tiskárna\""
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2519
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
+"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 ""
-"Jako správce zavádění nyní používáte %s.\n"
-"Pokud chcete spustit průvodce nastavením, klepněte na Nastavit."
+"Sí» nefunguje a nelze ji spustit. Prosím zkontrolujte nastavení hardware. "
+"Pak se opìt pokuste provést nastavení vzdálené tiskárny."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "Nastavení pro OKI win-tiskárnu"
+#: ../../printer/printerdrake.pm_.c:2529
+msgid "Restarting printing system..."
+msgstr "Restartuji tiskový systém ..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
-msgstr "Svatá Helena"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "high"
+msgstr "vysoká"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Paralelní port #%s"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "paranoid"
+msgstr "paranoidní"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid "Security Level"
-msgstr "Úroveň zabezpeÄení"
+msgid "Installing a printing system in the %s security level"
+msgstr "Instaluji tiskový systém v bezpeènostní úrovni %s"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2570
#, c-format
msgid ""
-"Some steps are not completed.\n"
+"You are about to install the printing system %s on a system running in the %"
+"s security level.\n"
"\n"
-"Do you really want to quit now?"
+"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 ""
-"NÄ›které kroky nebyly dokonÄeny.\n"
+"Pokou¹íte se instalovat tiskový systém %s na poèítaè, bì¾ící v bezpeèností "
+"úrovni %s.\n"
"\n"
-"Chcete opravdu nyní skonÄit?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "Súdán"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "Polské (rozložení QWERTZ)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
-msgstr "Sýrie"
+"Tiskový systém pracuje jako démon (proces na pozadí), který èeká na tiskové "
+"úlohy a zpracovává je. Tento démon je také pøístupný ze sítì pro jiné "
+"poèítaèe, tak¾e se mù¾e stát pøedmìtem sí»ového útoku. Proto je vybráno "
+"pouze nìkolik slu¾eb, které jsou v této úrovni spu¹tìny automaticky pøi "
+"startu.\n"
+"\n"
+"Chcete opravdu nastavit tiskový systém na tomto poèítaèi?"
-#: ../../printer/printerdrake.pm:1
-#, 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?"
-msgstr ""
-"Je vaÅ¡e tiskárna multifunkÄní zařízení od HP nebo od Sony (OfficeJet, PSC, "
-"LaserJet 1100/1200/1220/3200/3300 se skenerem, DeskJet 450, Sony IJP-V100) "
-"nebo HP PhotoSmart Äi HP LaserJet 2200?"
+#: ../../printer/printerdrake.pm_.c:2604
+msgid "Starting the printing system at boot time"
+msgstr "Spustit tiskový systém pøi startu systému"
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
+#: ../../printer/printerdrake.pm_.c:2605
#, c-format
msgid ""
-"Welcome to %s the operating system chooser!\n"
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\n"
"\n"
-"Choose an operating system from the list above or\n"
-"wait %d seconds for default boot.\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 ""
-"Vita vas %s, program pro start operacniho systemu!\n"
+"Tiskový systém (%s) nebude automaticky spu¹tìn pøi startu poèítaèe.\n"
"\n"
-"Vyberte si ze seznamu operacnich systemu nize nebo\n"
-"pockejte %d vterin pro automaticky start.\n"
+"Je mo¾né, ¾e volba automatického startu byla vypnuta ve vy¹¹í bezpeènostní "
+"úrovni, proto¾e tiskový systém je potenciální nebezpeèí pro sí»ový útok.\n"
"\n"
+"Chcete nastavit zpìt automatický start tiskového systému?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "Portugalské"
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
+msgstr "Ovìøují nainstalovaný software..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
-msgstr "Název souboru loopbacku:"
+#: ../../printer/printerdrake.pm_.c:2630
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "Odstraòuji %s"
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "Adresa serveru DNS by měla být ve tvaru 1.2.3.4"
+#: ../../printer/printerdrake.pm_.c:2636
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "Instaluji balíèky..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Control key"
-msgstr "Levá klávesa Control"
+#: ../../printer/printerdrake.pm_.c:2685
+msgid "Select Printer Spooler"
+msgstr "Zvolte tiskový systém pro tiskárnu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
-msgstr "Srbsko"
+#: ../../printer/printerdrake.pm_.c:2686
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Který tiskový systém chcete pou¾ít pro tisk?"
-#: ../../standalone/drakxtv:1
+#: ../../printer/printerdrake.pm_.c:2720
#, c-format
-msgid "Newzealand"
-msgstr "Nový Zéland"
+msgid "Configuring printer \"%s\"..."
+msgstr "Nastavuji tiskárnu \"%s\"..."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
-msgstr "Tento adresář musí kromě kořenového souborového systému zůstat"
+#: ../../printer/printerdrake.pm_.c:2731
+msgid "Installing Foomatic..."
+msgstr "Instaluji Foomatic ..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
-msgstr "přes síť"
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr "Mo¾nosti tiskárny"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
-msgstr "Klávesa CapsLock"
+#: ../../printer/printerdrake.pm_.c:2810
+msgid "Preparing Printerdrake..."
+msgstr "Pøipravuji PrinterDrake...."
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "Zaváděcí program"
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+msgid "Configuring applications..."
+msgstr "Nastavování aplikací..."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Kolik paměti má vaše grafická karta ?"
+#: ../../printer/printerdrake.pm_.c:2845
+msgid "Would you like to configure printing?"
+msgstr "Chtìli byste nastavit tiskárnu?"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
+msgstr "Tiskový systém: "
+
+#: ../../printer/printerdrake.pm_.c:2915
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))."
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
-"Povolí/zakáže příkaz crontab a at pro uživatele.\n"
-"\n"
-"Vyjmenovaní uživatelé se zapíšou do /etc/cron.allow a /etc/at.allow\n"
-"(více man at(1) a crontab(1))."
+"Jsou nastaveny následující tiskárny. Dvojitým kliknutím na ka¾dou z nich je "
+"mo¾né je modifikovat, nastavit jako výchozí, získat o nich informace nebo je "
+"nastavit na vzdáleném CUPS serveru pro vyu¾ití v aplikaci Star Office/"
+"OpenOffice.org/GIMP."
-#: ../../standalone.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2916
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."
+"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 ""
-"[VOLBY]\n"
-"Síť & připojení k Internetu a monitorování aplikací\n"
-"\n"
-"--defaultintf interface: zobrazí vždy toto rozhraní\n"
-"--connect : pokud není připojeno, provede připojení k internetu\n"
-"--disconnect : pokud je připojeno, provede odpojení od internetu\n"
-"--force : používá se s (při)odpojením : vynutí (při)odpojení.\n"
-"--status : vrátí 1 pokud je pÅ™ipojeno, jinak vrací 0 a skonÄí.\n"
-"--quiet : tichý režim. Používá se při (při)odpojování."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
-msgstr "Dynamický rozsah IP adres:"
+"Jsou nastaveny následující tiskárny. Dvojitým kliknutím na ka¾dou z nich je "
+"mo¾né je modifikovat, nastavit jako výchozí nebo o nich získat informace."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "Název pro LVM?"
-
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "Některá zařízení v třídě hardware \"%s\" byla odstraněna:\n"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Našel jsem %s %s rozhraní"
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
+msgstr "Obnovit seznam tiskáren (pro získání v¹ech vzdálených CUPS tiskáren)"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Install"
-msgstr "PoinstalaÄní nastavení"
+#: ../../printer/printerdrake.pm_.c:2960
+msgid "Change the printing system"
+msgstr "Zmìna tiskového systému"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The internal domain name"
-msgstr "Interní název domény"
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+msgid "Normal Mode"
+msgstr "Normání re¾im"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ karty"
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+msgid "Do you want to configure another printer?"
+msgstr "Chcete nastavit dal¹í tiskárnu?"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "logdrake"
+#: ../../printer/printerdrake.pm_.c:3211
+msgid "Modify printer configuration"
+msgstr "Zmìnit nastavení tiskárny"
-#: ../../standalone.pm:1
+#: ../../printer/printerdrake.pm_.c:3213
#, 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."
-msgstr ""
-"Import fontů a monitoring aplikací\n"
-"--windows_import : provede import ze všech dostupných oddílů s Windows.\n"
-"--xls_fonts : zobrazí všechny fonty, které již z xls existují\n"
-"--strong : silná verifikace fontů.\n"
-"--install : akceptuje libovolný font z libovolného adresáře.\n"
-"--uninstall : odinstaluje libovolný font nebo libovolný adresář s "
-"fonty.\n"
-"--replace : nahradí již existující fonty\n"
-"--application : 0 žádná aplikace.\n"
-" : 1 všechny dostupné podporované aplikace.\n"
-" : nazev_aplikace jako napÅ™. so pro staroffice \n"
-" : a gs pro ghostscript."
-
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Zvolte mechaniku, ve které chcete vytvořit startovací disketu"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr "LILO s textovou nabídkou"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
+"Tiskárna %s\n"
+"Co chcete zmìnit na této tiskárnì?"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Všechno (bez firewallu)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
-msgstr "Musíte zadat soubor s jádrem"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", multifunkÄní zařízení na USB"
-
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Do"
-msgstr "Provést"
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
+msgstr "Provést!"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Stahuji ze zrcadla(mirror) seznam dostupných balíÄků"
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+msgid "Printer connection type"
+msgstr "Typ pøipojení pro tiskárnu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "Litevské AZERTY (stará)"
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+msgid "Printer name, description, location"
+msgstr "Název tiskárny, popis, umístìní"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "Brazilské (ABNT-2)"
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
+msgstr "Výrobce tiskárny, model, ovladaè"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
-msgstr "IP adresa poÄítaÄe/sítÄ›:"
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
+msgstr "Výrobce tiskárny, model"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-"umístění y souřadnice pro\n"
-"levý horní roh lišty s průběhem"
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
+msgstr "Nastavit tuto tiskárnu jako výchozí"
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System installation"
-msgstr "Instalace systému"
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Pøidat tuto tiskárnu do Star Office/OpenOffice.org/GIMP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint Vincent a Grenadiny"
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Odebrat tiskárnu ze Star Office/OpenOffice.org/GIMP"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid reboot by the console user."
-msgstr "Povolí/zakáže reboot z konsole provedené uživatelem."
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+msgid "Print test pages"
+msgstr "Tisk testovacích stránek"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Open"
-msgstr "/Soubor/_Otevřít"
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+msgid "Know how to use this printer"
+msgstr "Nápovìda pro tisk na této tiskárnì"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "Umístění souboru auto_install.cfg"
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+msgid "Remove printer"
+msgstr "Odebrat tiskárnu"
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:3282
#, c-format
-msgid "Open Firmware Delay"
-msgstr "Prodleva pro firmware"
+msgid "Removing old printer \"%s\"..."
+msgstr "Odebírám starou tiskárnu \"%s\"..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
-msgstr "MaÄarsko"
+#: ../../printer/printerdrake.pm_.c:3307
+msgid "Default printer"
+msgstr "Výchozí tiskárna"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:3308
#, c-format
-msgid "New Zealand"
-msgstr "Nový Zéland"
+msgid "The printer \"%s\" is set as the default printer now."
+msgstr "Tiskárna \"%s\" je nyní nastavena jako výchozí."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Color configuration"
-msgstr "Nastavení barev"
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Pøidávám tiskárnu do Star Office/OpenOffice.org/GIMP"
-#: ../../security/level.pm:1
+#: ../../printer/printerdrake.pm_.c:3312
#, c-format
msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Existují zde některá omezení a každou noc jsou spuštěny automatické testy."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "please choose the date to restore"
-msgstr "Vyberte datum obnovení zálohy"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
-msgstr "Nizozemské Antily"
+"Tiskárna \"%s\" byla úspì¹nì pøidána do Star Office/OpenOffice.org/GIMP."
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:3313
#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr "Přepínám z ext2 na ext3"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng"
-msgstr "LprNG"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Procházet nově obnovený adresář."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"\n"
-"Vítejte v průvodci nastavením tisku\n"
-"\n"
-"Tento průvodce vám pomůže nainstalovat lokální nebo vzdálené tiskárnu(y), "
-"které je možné následnÄ› využít na vzdáleném poÄítaÄi na síti.\n"
-"\n"
-"Budete dotázáni na všechny potřebné informace pro nastavení tiskárny, můžete "
-"si vybrat se vÅ¡ech tiskových ovladaÄů a typů pÅ™ipojení tiskárny."
+"Pøidání tiskárny \"%s\" do Star Office/OpenOffice.org/GIMP se nezdaøilo."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and %d unknown printers"
-msgstr "a %d neznámých tiskáren"
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Odebírám tiskárnu ze Star Office/OpenOffice.org/GIMP"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:3317
#, 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)"
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-"První verze procesorů Pentium měly z výroby chybu v jednotce pro plovoucí "
-"řádovou Äárku, která nedosahovala požadované pÅ™esnosti pÅ™i operaci FDIV"
+"Tiskárna \"%s\" byla úspì¹nì odebrána z aplikace Star Office/OpenOffice.org/"
+"GIMP."
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-"PÅ™ekroÄena kvóta pro zálohu!\n"
-"Je použito %d MB oproti %d MB alokovaným."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Nenašel jsem žádnou ISDN PCI kartu. Prosím zvolte si jednu z následující "
-"nabídky"
+"Odebrání tiskárny \"%s\" ze Star Office/OpenOffice.org/GIMP se nezdaøilo."
-#: ../../common.pm:1
+#: ../../printer/printerdrake.pm_.c:3325
#, c-format
-msgid "GB"
-msgstr "GB"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
-msgstr "Prosím zadejte uživatelské jméno"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
-msgstr "Povolit spuštění z CD?"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Simply reboot"
-msgstr ""
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Chcete opravdu odebrat tiskárnu \"%s\"?"
-#: ../../interactive/stdio.pm:1
+#: ../../printer/printerdrake.pm_.c:3329
#, c-format
-msgid " enter `void' for void entry"
-msgstr " zadejte 'void' pokud chcete prázdný vstup"
+msgid "Removing printer \"%s\"..."
+msgstr "Odebírám tiskárnu \"%s\"..."
-#: ../../standalone/drakbackup:1
+#: ../../raid.pm_.c:35
#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr "Zálohy na nevyjímatelná média - Použít katalog pro obnovu"
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "Nemù¾u pøidat oddíl do _naformátovaného_ RAID md%d"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
-msgstr "Leden"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
+msgstr "mkraid neuspìl"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password history length"
-msgstr "Délka historie hesel"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid neuspìl (mo¾ná, ¾e chybí raidtools?)"
-#: ../../network/netconnect.pm:1
+#: ../../raid.pm_.c:153
#, c-format
-msgid "Winmodem connection"
-msgstr "Připojení přes winmodem"
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "Není dostatek oddílù pro RAID úrovnì %d\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../security/main.pm_.c:36
msgid ""
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
"\n"
-"Congratulations, your printer is now installed and configured!\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\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."
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
+"\n"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
+"Standardní: Bì¾né zabezpeèení doporuèené pro poèítaè, který bude pøipojen k "
+"síti\n"
+" Internet jako klient.\n"
"\n"
-"Blahopřejeme, tiskárna je instalována a nastavena!\n"
+"Vysoká: Jsou ji¾ zavedena nìkterá omezení, a ka¾dou noc je spu¹tìno více "
+"automatických kontrol.\n"
"\n"
-"Tisknout z aplikací lze příkazem \"Tisk\" (obyÄejnÄ› v menu \"Soubor\").\n"
+"Vy¹¹í: Úroveò zabezpeèení je nyní dostateènì vysoká, aby bylo mo¾né "
+"pou¾ít\n"
+" systém jako server, který pøijímá po¾adavky od mnoha klientù. "
+"Pokud je vá¹\n"
+"\t poèítaè pøipojen k Internetu jen jako klient, mìli byste zvolit "
+"ni¾¹í úroveò.\n"
"\n"
-"Pokud chcete přidat, odebrat, přejmenovat tiskárnu nebo změnit její výchozí "
-"hodnoty (typ zásobníku, kvalita tisku,...), zvolte \"Tiskárna\" v sekci "
-"\"Hardware\" v ovládacím centru Mandrake."
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "Nyní můžete spustit aplikaci XawTV (pod X Windows!)\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Není dostatek odkládacího prostoru k instalaci, prosím přidejte nějaký"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "%s on %s"
-msgstr "%s na %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid remote root login."
-msgstr "Povolí vzdálené přihlášení uživatele root."
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"GNU/Linux spravuje Äas podle GMT (Greenwich Mean Time) a pÅ™evádí ho na\n"
-"Äas podle přísluÅ¡né vybrané Äasové zóny. Toto je možné zruÅ¡it odznaÄením\n"
-"volby \"%s\" a tak budou systémové hodiny stejné jako\n"
-"hardwarové. To je užiteÄné v případÄ›, že je na poÄítaÄi jiný operaÄní "
-"systém\n"
-"typu Windows.\n"
+"Paranoidní: Podobná pøedchozí úrovni, ale systém je zcela uzavøen a úroveò "
+"zabezpeèení\n"
+" je na svém maximu.\n"
"\n"
-"Volba \"%s\" provádí automatické nastavení hodin\n"
-"pomocí pÅ™ipojení k Äasovému serveru na Internetu. Vyberte si v seznamu ten "
-"server,\n"
-"který je vám nejblíž. Je samozřejmé, že pro správnou funkci musíte mít "
-"funkÄní\n"
-"pÅ™ipojení k Internetu. Na poÄítaÄ se také nainstaluje Äasový server, který\n"
-"mohou volitelnÄ› používat jiné poÄítaÄe ve vaší lokální síti."
+"Správce bezpeènosti:\n"
+" Pokud je zapnuta volba 'Bezpeènostní varování', budou "
+"bezpeènostní varování zasílána tomuto u¾ivateli (u¾ivatelské jméno nebo\n"
+"\t email)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
-msgstr "Nelze vytvořit log soubor!"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Jaké je vaÅ¡e Äasové pásmo?"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Úroveò zabezpeèení:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Použít .backupignore soubory"
+#: ../../security/main.pm_.c:77
+#, fuzzy, c-format
+msgid " (default value: %s)"
+msgstr " (výchozí: %s)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
-msgstr "Guinea"
+#: ../../security/main.pm_.c:113
+msgid "Security Alerts:"
+msgstr "Bezpeènostní varování:"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "PoÄítaÄ je nyní pÅ™ipojen k internetu"
+#: ../../security/main.pm_.c:115
+msgid "Security Administrator:"
+msgstr "Správce bezpeènosti:"
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Jižní Georgie a ostrovy South Sandwich"
+#: ../../security/main.pm_.c:128
+msgid "Network Options"
+msgstr "Volby sítì"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Japonsko (broadcast)"
+#: ../../security/main.pm_.c:128
+msgid "System Options"
+msgstr "Systémové volby"
-#: ../../help.pm:1
-#, c-format
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
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."
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
msgstr ""
-"Monitor\n"
-"\n"
-" InstalaÄní program dokáže vÄ›tÅ¡inou automaticky detekovat a správnÄ› \n"
-"nastavit monitor pÅ™ipojený k vaÅ¡emu poÄítaÄi. Pokud se to nezdaří, lze si\n"
-"ze seznamu vybrat monitor, který máte."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "Mosambik"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "Ikona"
+"Nastavením následujících voleb lze upravit zabezpeèení va¹eho\n"
+"systému. Pokud potøebujete poradit, stisknìte tlaèítko Nápovìda.\n"
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Kill those programs"
-msgstr "přístup k programům v X prostředí"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
+msgstr "Pravidelné kontroly"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Prosím vyberte si, co chcete zálohovat"
+#: ../../security/main.pm_.c:191
+msgid "Please wait, setting security level..."
+msgstr "Èekejte prosím, nastavuji úroveò zabezpeèení..."
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 barev (8 bitů)"
+#: ../../security/main.pm_.c:197
+msgid "Please wait, setting security options..."
+msgstr "Èekejte prosím, nastavuji volby zabezpeèení..."
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "Pro Ätení i zápis"
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr "Spustit zvukový systém ALSA (Advanced Linux Sound Architecture)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "Velikost: %s\n"
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
+msgstr "Anacron - spou¹tí opakující se akce"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Hostname: "
-msgstr "Název poÄítaÄe: "
+#: ../../services.pm_.c:21
+msgid ""
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
+msgstr ""
+"apmd je pou¾íván pro sledování stavu baterie a zaznamenávání pøes syslog.\n"
+"Mù¾e také být pou¾it pro vypnutí poèítaèe pøi vybité baterii."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a rule"
-msgstr "Přidat pravidlo"
+#: ../../services.pm_.c:23
+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 ""
+"Spou¹tí pøíkazy naplánované pøíkazem na urèitý èas pøíkazem 'at'.\n"
+"Také spou¹tí pøíkazy pøi nízkém vytí¾ení systému."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Velikost bloku(chunk) %s\n"
+#: ../../services.pm_.c:25
+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 ""
+"cron je standardní Unixový program který spou¹tí u¾ivatelem zadané programy\n"
+"v pøedem definovaných intervalech. vixie cron má navíc mnoho vlastností,\n"
+"vèetnì vy¹¹í bezpeènosti a více mo¾ností nastavení."
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
-msgstr "Tvořte budoucnost Linuxu!"
+#: ../../services.pm_.c:28
+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 ""
+"GPM pøidává do textových programù podporu my¹i (napø pro Midnight "
+"Commander).\n"
+"Mù¾e také v konzoli provádìt operace 'vyjmi' a 'vlo¾' a ovládat pop-up menu."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printer"
-msgstr "Místní tiskárna"
+#: ../../services.pm_.c:31
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
+msgstr ""
+"HardDrake testuje hardware a umo¾òuje nový/zmìnìný\n"
+"hardware nastavit"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Chyba při přístupu na disketu, zařízení %s nelze připojit"
+#: ../../services.pm_.c:33
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+msgstr "Apache je WWW server. Je pou¾íván k poskytování HTML a CGI souborù."
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+#: ../../services.pm_.c:34
+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 ""
+"Internetový superserver démon (nazývaný inetd) spou¹tí mnoho ostatních\n"
+"internetových slu¾eb, tak jak jsou zapotøebí. Odpovídá za start napø.\n"
+"telnetu, ftp, rsh a rlogin. Pokud vypnete inetd, vypnete tím i ostatní\n"
+"slu¾by které spou¹tí."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL připojení"
+#: ../../services.pm_.c:38
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
+"Spustit paketový filtr pro jádra øady 2.2, který chrání poèítaè\n"
+"proti útokùm ze sítì."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Pro první spuštění použijte Průvodce nebo Rozšířené.\n"
+#: ../../services.pm_.c:40
+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 ""
+"Tento balíèek nahraje zvolenou mapu klávesnice definovanou\n"
+"v /etc/sysconfig/keyboard. Tu lze vybrat pomocí nástroje kbdconfig.\n"
+"Pro vìt¹inu poèítaèù byste ji mìli nechat zapnutou."
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Error!"
-msgstr "Chyba!"
+#: ../../services.pm_.c:43
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
+msgstr ""
+"Automatická generace hlavièky jádra v adresáøi /boot\n"
+"pro soubory /usr/include/linux/{autoconf,version}.h"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "cable connection detected"
-msgstr "detekováno kabelové připojení"
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr "Automatická detekce a konfigurace hardware pøi spu¹tìní."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "Povolení odepřeno při přenosu %s na %s"
+#: ../../services.pm_.c:46
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
+msgstr ""
+"Linuxconf provádí rùzné úkoly pøi spu¹tìní systému\n"
+"nutné pro správu systémové konfigurace."
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/Nah_lásit chybu"
+#: ../../services.pm_.c:48
+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 ""
+"lpd je tiskový démon, bez kterého nebude fungovat lpr (program pro tisk).\n"
+"Je to server, který posílá ti¹tìné dokumenty jednotlivým tiskárnám."
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
-msgstr "Dominica"
+#: ../../services.pm_.c:50
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
+"Linux Virtual Server pou¾ívaný pro sestavení vysoce výkonného\n"
+"a dostupného serveru."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "Změnit velikost"
+#: ../../services.pm_.c:52
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
+msgstr ""
+"named (BIND) je doménový (DNS) server, který pøekládá hostitelská jména na "
+"IP adresy."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Rozlišení: %s\n"
+#: ../../services.pm_.c:53
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
+msgstr ""
+"Pøipojuje a odpojuje v¹echny sí»ové (NFS), SMB (Lan/Windows) a Netware "
+"(NCP)\n"
+"pøípojné body (mount points)."
-#: ../../install2.pm:1
-#, c-format
+#: ../../services.pm_.c:55
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)"
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
-"Nelze naÄíst moduly jádra odpovídající instalovanému jádru (chybí soubor\n"
-"%s), což obecně znamená, že spouštěcí disketa nemá jádro stejné jako má "
-"instalaÄní médium (vytvoÅ™te prosím novou spouÅ¡tÄ›cí disketu)"
+"Aktivuje èi deaktivuje v¹echny sí»ová rozhraní, která mají nastartovat pøi\n"
+"startu systému."
-#: ../../help.pm:1
-#, c-format
+#: ../../services.pm_.c:57
msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+"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 ""
-"Vyberte prosím správný port. Například \"COM1\" pod MS Windows má\n"
-"v Linuxu název \"ttyS0\"."
+"NFS je oblíbený protokol pro sdílení souborù pøes sítì TCP/IP.\n"
+"Tato slu¾ba poskytuje NFS server, jeho¾ nastavení je v /etc/exports."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Budou odebrány tyto balíÄky"
+#: ../../services.pm_.c:60
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
+msgstr ""
+"NFS je oblíbený protokol pro sdílení souborù pøes sítì TCP/IP.\n"
+"Tato slu¾ba poskytuje mo¾nost uzamykání souborù na NFS."
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr "Připojení k Internetu"
+#: ../../services.pm_.c:62
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+"Automaticky nastaví podporu numerické klávesnice v konzoli\n"
+"a v XFree pøi startu."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
-msgstr "Použít existující oddíl"
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr "Podpora pro OKI 4w a kompatibilní wintiskárny."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "Kanadské (Quebec)"
+#: ../../services.pm_.c:65
+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 ""
+"Podpora PCMCIA vìt¹inou znamená podporu zaøízení jako sí»ové karty a\n"
+"modemy v laptopech. Nespustí se pokud ji pøímo nenastavíte, ale není "
+"problém\n"
+"jí mít nainstalovanou i na poèítaèích, které ji nepotøebují."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Přípojení myši: %s\n"
+#: ../../services.pm_.c:68
+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 ""
+"Portmapper spravuje RPC spojení, která jsou pou¾ívána protokoly jako NFS\n"
+"a NIS. Portmap server musí být spu¹tìn na poèítaèích, které fungují jako\n"
+"servery pro protokoly, které pou¾ívají mechanismus RPC."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Znovu vybrat správné fonty"
+#: ../../services.pm_.c:71
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
+msgstr "Postfix je program pro doruèování po¹ty z jednoho poèítaèe na jiný."
-#: ../../help.pm:1
-#, c-format
+#: ../../services.pm_.c:72
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."
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
msgstr ""
-"Poslední otázka je na to, zda chcete spustit grafické prostředí při startu.\n"
-"Tato otázka se zobrazí i v případě, že nastavení předtím neotestujete.\n"
-"Je zÅ™ejmé, že odpovíte \"%s\" v případÄ›, že poÄítaÄ bude pracovat\n"
-"jako server nebo v případě, že se nepodařilo správně nastavit grafickou "
-"kartu."
+"Ukládá a obnovuje 'stav entropie' na poèítaèi, co¾ je pou¾íváno pro\n"
+"kvalitnìj¹í generaci náhodných èísel."
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert Corporate"
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
+msgstr ""
+"Pøiøazuje pøímá zaøízení blokovým (napøíklad diskové oddíly)\n"
+"pro aplikace jako je Oracle"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../services.pm_.c:76
msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+"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 ""
-" [všechno]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+"Démon routed umo¾òuje automaticky obnovovat smìrovací tabulku (router "
+"table)\n"
+"pro IP adresy. K tomu pou¾ívá protokol RIP. Zatímco RIP je bì¾nì pou¾íván\n"
+"v malých sítích, pro slo¾itìj¹í sítì je zapotøebí slo¾itìj¹í protokoly."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Write protection"
-msgstr "Ochrana proti zápisu"
+#: ../../services.pm_.c:79
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
+msgstr ""
+"Protokol rstat umo¾òuje u¾ivatelùm sítì sledovat vytí¾ení jednotlivých\n"
+"strojù pøipojených k síti."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "You've not selected any font"
-msgstr "Nevybrali jste žádný font"
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"Protokol rusers umo¾òuje u¾ivatelùm sítì zjistit kdo je pøihlá¹en na\n"
+"jiném poèítaèi."
-#: ../../steps.pm:1
-#, c-format
-msgid "Language"
-msgstr "Výběr jazyka"
+#: ../../services.pm_.c:83
+msgid ""
+"The rwho protocol lets remote users get a list of all of the users\n"
+"logged into a machine running the rwho daemon (similiar to finger)."
+msgstr ""
+"Protokol rwho umo¾òuje vzdáleným u¾ivatelùm získat seznam\n"
+"v¹ech u¾ivatelù pøihlá¹ených na poèítaèi s démonem rwho (je to podobné\n"
+"slu¾bì finger)."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer model selection"
-msgstr "Výběr modelu tiskárny"
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
+msgstr "Spustit zvukový systém pøi startu"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:86
msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr "Tím, že změníte typ oddílu %s, přijdete o všechna jeho data"
+"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 ""
+"Syslog je program pomocí nìho¾ zaznamenává mnoho démonù správy do "
+"systémových\n"
+"log souborù. Je dobré mít spu¹tìný syslog."
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "ISDN adapters"
-msgstr "ISDN karta"
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr "Nahrát ovladaèe pro usb zaøízení."
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekund"
+#: ../../services.pm_.c:89
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+msgstr "Startuje X Font Server (to je nezbytné pro bìh XFree)."
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Vložte prázdnou disketu do %s"
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Zvolte si, které slu¾by by mìli být automaticky spu¹tìny pøi startu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Musí být zadáno správné URI!"
+#: ../../services.pm_.c:127
+msgid "Printing"
+msgstr "Tisk"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr "Chcete použít nalezené rozhraní \"%s\" ?"
+#: ../../services.pm_.c:128
+msgid "Internet"
+msgstr "Internet"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
-msgstr "Přenastavení rozhraní a DHCP serveru"
+#: ../../services.pm_.c:131
+msgid "File sharing"
+msgstr "Sdílení souborù"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound configuration"
-msgstr "Nastavení zvuku"
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+msgid "System"
+msgstr "Systém"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
-msgstr "Testovací stránka s fotografií"
+#: ../../services.pm_.c:138
+msgid "Remote Administration"
+msgstr "Vzdálená administrace"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Vlastní rozdělení disku"
+#: ../../services.pm_.c:146
+msgid "Database Server"
+msgstr "Databázové servery"
-#: ../../printer/printerdrake.pm:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Zadejte název tiskárny a komentář"
+msgid "Services: %d activated for %d registered"
+msgstr "Slu¾by: aktivováno %d z %d registrovaných"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Následující tiskárny\n"
-"\n"
-"%s %s\n"
-"jsou přímo pÅ™ipojeny k vaÅ¡emu poÄítaÄi"
+#: ../../services.pm_.c:191
+msgid "Services"
+msgstr "Slu¾by"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "You don't have any winmodem"
-msgstr "Nemáte žádný winmodem"
+#: ../../services.pm_.c:203
+msgid "running"
+msgstr "spu¹tìno"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: %s"
-msgstr "typ: %s"
+#: ../../services.pm_.c:203
+msgid "stopped"
+msgstr "zastaveno"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "Slovenské (QWERTY)"
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
+msgstr "Slu¾by a démoni"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:222
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."
+"No additional information\n"
+"about this service, sorry."
msgstr ""
-"Uživatelé, kterým chcete poslat výsledek zálohování mohou být zapsáni jako "
-"seznam Äárkou oddÄ›lených uživatelů nebo email adres. Pro odeslání emailů "
-"potÅ™ebujete mít v systému funkÄní program pro elektronickou poÅ¡tu."
+"Nejsou ¾ádné dal¹í\n"
+"informace o slu¾bì, promiòte."
-#: ../../standalone/draksound:1
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Nebyla nalezena žádná zvuková karta!"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "Připojení myši"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
-msgstr "Kontrola na nezabezpeÄené úÄty"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-"Pro aktivaci změn je potřeba správce oken restartovat.\n"
-"(příkaz v konzoli: service dm restart)"
+#: ../../services.pm_.c:229
+msgid "On boot"
+msgstr "Pøi spu¹tìní"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Ftp Server"
-msgstr "Server FTP"
+#: ../../services.pm_.c:241
+msgid "Start"
+msgstr "Start"
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr "Uganda"
+#: ../../services.pm_.c:241
+msgid "Stop"
+msgstr "Stop"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
-msgstr "konverze %s fontů"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Dìkujeme vám, ¾e jste si vybrali Mandrake Linux 9.0"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "Typ sběrnice, ke které je připojena myš"
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
+msgstr "Vítejte do svìta Open Source"
-#: ../../help.pm:1
-#, c-format
+#: ../../share/advertising/01-thanks.pl_.c:11
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."
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
msgstr ""
-"Zde jsou shromáždÄ›ny různé informace, které se vztahují k tomuto poÄítaÄi.\n"
-"V závislosti na tom, zda je Äi není přítomen daný hardware, můžete nebo\n"
-"nemusíte některé z těchto položek vidět. Každý záznam má krátký souhrn\n"
-"s aktuální konfigurací. Klepnutím na odpovídající tlaÄítko \"%s\" jej "
-"můžete\n"
-"změnit.\n"
-"\n"
-" * \"%s\": zkontrolujte nastavení rozložení kláves, pokud je to nutné, \n"
-"klepnutím na tlaÄítko lze zmÄ›nit rozložení kláves, .\n"
-"\n"
-" * \"%s\": zkontrolujte výběr země. Pokud výběr nesouhlasí, klepnutím na\n"
-"tlaÄítko \"%s\" můžete vybrat jinou zemi. Pokud vaÅ¡e zemÄ› není na prvním\n"
-"seznamu, můžete si klepnutím na tlaÄítko \"%s\" zobrazit kompletní seznam.\n"
-"\n"
-" * \"%s\": instalaÄní program se pokusí odhadnout Äasové pásmo na\n"
-"základě vámi vybraného jazyka. To ale nemusí souhlasit, stejně jako v "
-"případě\n"
-"rozložení klávesnice můžete žít v jiné zemi a proto je zde umožněno pomocí\n"
-"tlaÄítka \"%s\" to zmÄ›nit.\n"
-"\n"
-" * \"%s\": zkontrolujte vaši myš. Pokud je to nutné, lze ji také změnit.\n"
-"\n"
-" * \"%s\": Klepnutím na tlaÄítko \"%s\" se spustí průvodce\n"
-"nastavením tiskárny. V odpovídající kapitole v \"Uživatelské příruÄce\" se\n"
-"dozvíte více o tom, jak tiskárnu nastavit. Rozhraní, které je v ní popsané, "
-"je\n"
-"podobné rozhraní použitému při této instalaci.\n"
-"\n"
-" * \"%s\": pokud byla při instalaci detekována zvuková karta, je\n"
-"zde zobrazena. Pokud uvedený ovladaÄ není správný, lze provést výbÄ›r "
-"správného.\n"
-"\n"
-" * \"%s\": instalaÄní program jako výchozí rozliÅ¡ení zvolí\n"
-"rozlišení \"800x600\" nebo \"1024x768\". Pokud vám to nevyhovuje, je možné\n"
-"to pomocí tlaÄítka \"%s\" zmÄ›nit.\n"
-"\n"
-" * \"%s\": pokud byla detekována televizní karta, je zde zobrazena.\n"
-"Pokud karta nebyla automaticky detekována, klepnutím na tlaÄítko \"%s\"\n"
-"můžete provést ruÄní nastavení.\n"
-"\n"
-" * \"%s\": pokud byla detekována ISDN karta, je zde zobrazena.\n"
-"Klepnutím na tlaÄítko \"%s\" můžete mÄ›nit parametry pro tuto kartu.\n"
-"\n"
-" * \"%s\": pokud chcete nyní nastavit připojení k Internetu nebo k lokální\n"
-"síti, klepnutím na tlaÄítko se spustí průvodce.\n"
-"\n"
-" * \"%s\": tato položka dovoluje pÅ™edefinovat úroveň zabezpeÄení, která "
-"byla\n"
-"nastavena v předchozím kroku\n"
-"\n"
-" * \"%s\": pokud budete poÄítaÄ pÅ™ipojovat do Internetu, je doporuÄeno "
-"spustit\n"
-"ochranu před napadením aktivací firewallu. Více o nastavení firewallu se\n"
-"doÄtete v odpovídající kapitole příruÄky \"ZaÄínáme\".\n"
-"\n"
-" * \"%s\": pokud chcete zmÄ›nit nastavení zavadÄ›Äe, můžete to provést\n"
-"klepnutím na tlaÄítko. ZmÄ›ny by mÄ›ly provádÄ›t pouze zkuÅ¡ení uživatelé.\n"
-"\n"
-" * \"%s\": zde si můžete konkrétnÄ› urÄit, které služby budou na vaÅ¡em "
-"poÄítaÄi\n"
-"spuÅ¡tÄ›ny. Pokud bude tento poÄítaÄ používán jako server, je vhodné provést\n"
-"kontrolu toho, co je nastaveno."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr "Comoros"
+"Úspìch spoleènosti MandrakeSoft je zalo¾en na principech Svobodného "
+"Software. Tento operaèní systém je výsledkem spolupráce èásti celosvìtové "
+"Linuxové komunity"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "May"
-msgstr "Květen"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yaboot mode"
-msgstr "Režim Yaboot"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
+msgstr "Pøipojte se ke svìtu Svobodného Software"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Standardní třítlaÄítková myÅ¡"
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr "Chcete vìdìt více o komunitì okolo Open Source?"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
-msgstr "USA (kabel)"
-
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../share/advertising/02-community.pl_.c:11
msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
msgstr ""
-"Nelze znovu spustit LiLo!\n"
-"Chcete-li dokonÄit instalaci motivu pro LiLo, spusÅ¥te na příkazové řádce "
-"\"lilo\" jako uživatel root."
+"Chcete-li sdílet své vìdomosti a pomáhat vytváøet nástroje pro Linux, "
+"pøipojte se do diskusních klubù, které najdete na na¹ich stránkách "
+"\"Community\""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Vyberte další médium, kde jsou umístěny zálohy"
+#: ../../share/advertising/03-internet.pl_.c:9
+msgid "Get the most from the Internet"
+msgstr "Dostaòte z Internetu co nejvíce"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Software Manager"
-msgstr "Správce software"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
-msgstr "Znovu odeslat"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD in place - continue."
-msgstr "CD je v mechanice - pokraÄovat."
-
-#: ../../common.pm:1
-#, c-format
-msgid "KB"
-msgstr "KB"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Network & Internet"
-msgstr "Síť & Internet"
+#: ../../share/advertising/03-internet.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
+msgstr ""
+"Distribuce Mandrake Linux 9.0 vám pøiná¹í ten nejlep¹í software. S pomocí "
+"aplikací Mozilla a Konqueror si mù¾ete prohlí¾et webové stránky a animace, "
+"ke ètení po¹ty a zpracování osobních informací lze pou¾ít aplikace Evolution "
+"a Kmail."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Litevské \"foneticky\" QWERTY"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr "Objevte nejnovìj¹í verze nástrojù pro grafiku a multimédia!"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Net Boot Images"
-msgstr "Startovací image ze sítě"
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr "Vyu¾ijte multimédia na maximum!"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Sdílení lokálních skenerů"
+#: ../../share/advertising/04-multimedia.pl_.c:11
+msgid ""
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
+msgstr ""
+"Mandrake Linux 9.0 vám dovoluje naplno vyu¾ít poslední software pro "
+"pøehrávání hudebních souborù, editovat èi pracovat s va¹imi obrázky nebo "
+"fotografiemi, èi sledovat video."
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "Plug'n Play detekce selhala. Vyberte prosím přesný monitor"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Hry"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Detect again USB key"
+#: ../../share/advertising/05-games.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
msgstr ""
+"Mandrake Linux 9.0 nabízí ty nejlep¹í Open Source hry - arkády, akèní, "
+"strategické, ..."
-#: ../../services.pm:1
-#, c-format
-msgid "Services and deamons"
-msgstr "Služby a démoni"
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+msgid "Mandrake Control Center"
+msgstr "Øídící centrum Mandrake"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Chybí název vzdáleného poÄítaÄe!"
+#: ../../share/advertising/06-mcc.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
+msgstr ""
+"Ovládací centrum pro Mandrake Linux 9.0 poskytuje výkonné nástroje pro "
+"správu a nastavení va¹eho poèítaèe."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "with /usr"
-msgstr "s /usr"
+#: ../../share/advertising/07-desktop.pl_.c:9
+msgid "User interfaces"
+msgstr "U¾ivatelská rozhraní"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Network"
-msgstr "Síť"
+#: ../../share/advertising/07-desktop.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
+msgstr ""
+"Distribuce Mandrake Linux 9.0 vám poskytuje 11 u¾ivatelských rozhraní, které "
+"lze plnì upravovat: KDE 3, GNOME 2, WindowMaker, ..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr "Automaticky nalézt tiskárny sdílené poÄítaÄi s Microsoft Windows"
+#: ../../share/advertising/08-development.pl_.c:9
+msgid "Development simplified"
+msgstr "Zjednodu¹ený vývoj"
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "Toto heslo je příliš jednoduché"
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr "Distribuce Mandrake Linux 9.0 je nejlep¹í vývojová platforma."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "Kontrolovat pravidla pro msec"
+#: ../../share/advertising/08-development.pl_.c:11
+msgid ""
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
+msgstr ""
+"Vyu¾ijte plnou sílu kompilátoru GNU gcc 3, stejnì jako nejlep¹í vývojová "
+"prostøedí, které Open Source software poskytuje."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovenské (QWERTZ)"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr "Vytvoøte se svého poèítaèe spolehlivý server."
-#: ../advertising/06-development.pl:1
-#, c-format
+#: ../../share/advertising/09-server.pl_.c:10
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."
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
-"Programovat a ladit v různých jazycích jako Perl, Python, C a C++ nebylo "
-"nikdy tak jednoduché díky GNU gcc 3 a nejlepším vývojovým prostředím ze "
-"světa Open Source."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No devices found"
-msgstr "Žádné zařízení nenalezeno"
+"Vá¹ poèítaè lze nìkolika kliknutími my¹i zmìnit na velmi výkonný Linuxový "
+"server: webový server, po¹tovní server, firewall, router, souborový a "
+"tiskový server, ..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Opravdu minimální instalace (speciálně bez urpmi)"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr "Optimalizujte va¹e zabezpeèení"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use daemon"
-msgstr "Použít démona"
+#: ../../share/advertising/10-mnf.pl_.c:10
+msgid ""
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr ""
+"Produktová øada spoleènosti Mandrake zahrnuje produkt Multi Network Firewall "
+"(M. N. F.)."
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "Ověření"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
+msgstr ""
+"Tento produkt pro firewall v sobì zahrnuje sí»ové funkce, které uspokojí "
+"v¹echny va¹e potøeby pøi zabezpeèení va¹í sítì."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Přidat tuto tiskárnu do aplikace Star Office/OpenOffice.org/GIMP"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr "Tento produkt je k dispozici na webových stránkách MandrakeStore."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Další CUPS servery: "
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr "Oficiální obchod spoleènosti MandrakeSoft"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/11-mdkstore.pl_.c:10
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."
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
-"Vyberte ze seznamu jednu z automaticky nalezených tiskáren nebo zadejte do "
-"políÄek název nebo IP adresu tiskárny a volitelnÄ› Äíslo portu (výchozí je "
-"9100)."
+"Ná¹ elektronický obchod nabízí ucelenou øadu na¹ich Linuxových øe¹ení, "
+"stejnì jako speciální nabídky na¹ich produktù a dal¹í \"lahùdky\":"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr "Kam chcete připojit %s?"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr "Strategiètí partneøi"
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "Alžírsko"
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
+msgstr ""
+"Spoleènost MandrakeSoft pùsobí po boku vybraných spoleèností, které nabízejí "
+"profesionální øe¹ení kompatibilní se systémem Mandrake Linux. Seznam tìchto "
+"partnerù naleznete na stránkách MandrakeStore"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network"
-msgstr "Obnovit přes síť"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
+"Objevte katalog ¹kolení spoleènosti MandrakeSoft na stránkách Linux-Campus"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
+msgid ""
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
msgstr ""
+"Program ¹kolení byl navr¾en tak, aby uspokojil po¾adavky jak koncových "
+"u¾ivatelù, tak expertù (správcù sítí a systémù)"
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd-velikost"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr "Získejte certifikát pro Linux"
-#: ../../help.pm:1
-#, c-format
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
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."
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-"V případě, že je pro vaši kartu možno použít více různých serverů s 3D\n"
-"akcelerací nebo bez, záleží na vašem výběru, který vám nejvíce vyhovuje."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tZálohování používá tar a gzip\n"
+"A» u¾ se budete ¹kolit on-line nebo pomocí na¹í sítì ¹kolících partnerù, "
+"katalog Linux-Campus vás pøipraví na známý certifikaèní program LPI "
+"(celosvìtovou profesionální technickou certifikaci)."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set as default"
-msgstr "Nastavit jako výchozí"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+msgid "Become a MandrakeExpert"
+msgstr "Staòte se Mandrake Expertem"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
+msgstr ""
+"Naleznìte øe¹ení va¹ich problémù pomocí on-line platformy spoleènosti "
+"MandrakeSoft pro podporu"
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on this machine"
-msgstr "Nastaveno na tomto poÄítaÄi"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+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 ""
+"Pøipojte se k týmùm podpory spoleènosti MandrakeSoft a on-line Linuxové "
+"komunitì, sdílejte své znalosti a pomozte ostatním tím, ¾e se stanete "
+"uznávaným Expertem na webových stránkách on-line technické podpory:"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "ObÄ› klávesy Control souÄasnÄ›"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert Corporate"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - zobrazí tuto nápovědu \n"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+"Online platforma odpovídající specifickým potøebám podpory spoleèností."
-#: ../../standalone.pm:1
-#, c-format
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
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"
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-"[VOLBY]...\n"
-" -no-confirmation nepotvrzuje první otázku v režimu MandrakeUpdate\n"
-" --no-verify-rpm neprovádí ověření podpisu u balíÄků\n"
-" --changelog-first v okně s popisem nejdříve zobrazí changelog před "
-"seznamem souborů\n"
-" --merge-all-rpmnew navrhne spojit všechny nalezené soubory .rpmnew/."
-"rpmsave"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Nastavuji výchozí tiskárnu..."
+"V¹echny incidenty budou sledovány vyhrazeným kvalifikovaným technickým "
+"expertem spoleènosti MandrakeSoft."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Rozhraní %s (používá modul %s)"
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
+msgstr "Objevte MandrakeClub a Mandrake Corporate Club"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Generating preview ..."
-msgstr "Generuji náhled ..."
-
-#: ../../network/network.pm:1
-#, c-format
+#: ../../share/advertising/17-mdkclub.pl_.c:10
msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
msgstr ""
-"Frekvence má povolené přípony k, M nebo G (například \"2,46G\" pro frekvenci "
-"2,46 GHz) nebo přidejte dostatek '0' (nul)."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ignore"
-msgstr "ignorovat"
+"Kluby MandrakeClub a Mandrake Corporate Club byly vytvoøeny pro ty podnikové "
+"a soukromé u¾ivatele systému Mandrake Linux, kteøí chtìjí pøímo podporovat "
+"svou oblíbenou distribuci Linuxu a je¹tì k tomu obdr¾et zvlá¹tní privilegia. "
+"Pokud vás na¹e produkty oslovily, jestli¾e va¹e spoleènost díky na¹im "
+"produktùm získala konkurenèní výhodu, pokud chcete podpoøit vývoj distribuce "
+"Mandrake Linux, pøipojte se ke klubu MandrakeClub!"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone.pm_.c:21
+#, fuzzy
msgid ""
-"Allow/Forbid X connections:\n"
-"\n"
-"- ALL (all connections are allowed),\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"
-"- LOCAL (only connection from local machine),\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"
-"- NONE (no connection)."
+"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 ""
-"Povolí/zakáže spojení na X server:\n"
-"\n"
-"- VŠECHNY (všechna spojení jsou povolena),\n"
+" Tento program je svobodný software; mù¾ete ho ¹íøit a/nebo modifikovat\n"
+" podle specifikace GNU General Public Licence, která byla publikována\n"
+" Free Software Foundation; buï verze 2, nebo (podle volby) pozdìj¹í verze.\n"
"\n"
-" LOKÃLNà (je povoleno pouze lokální spojení),\n"
+" Tento program je distribuován s nadìjí, ¾e bude u¾iteèný,\n"
+" ale BEZ JAKÝCHKOLIV ZÁRUK; BEZ NÁROKU NA PROFIT. Více detailù naleznete\n"
+" v licenci GNU General Public Licence.\n"
"\n"
-"- ŽÃDNÉ (není povoleno žádné spojení)."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", multifunkÄní zařízení na paralelním portu #%s"
+" Kopii GNU General Public Licence mù¾ete obdr¾et buï s tímto programem\n"
+" nebo si o ní mù¾ete napsat na adresu Free Software Foundation, Inc.,\n"
+" 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "Sériová"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
-msgstr "DVD-ROM"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Gruzínské (rozložení \"Latin\")"
-
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
+#: ../../standalone.pm_.c:40
+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 name.\n"
msgstr ""
-"Získejte to nejlepší se strategickými partnery distribuce Mandrake Linux"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../standalone.pm_.c:51
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+"[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 ""
-"Nyní lze zadat volby pro modul %s.\n"
-"Pozn.: každá adresa by měla být ve tvaru 0x např. '0x123'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "Keňa"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Nejprve použijte ''Odpojit''"
+#: ../../standalone.pm_.c:57
+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 ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing mtools packages..."
-msgstr "Instaluji balíÄky pro mtools..."
+#: ../../standalone.pm_.c:68
+msgid ""
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a root partition"
-msgstr "Musíte zadat kořenový oddíl"
+#: ../../standalone.pm_.c:70
+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)"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "first step creation"
-msgstr "první krok při vytváření"
+#: ../../standalone.pm_.c:82
+#, fuzzy
+msgid "[keyboard]"
+msgstr "Klávesnice"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "ObÄ› klávesy Shift souÄasnÄ›"
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
+msgstr ""
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../standalone.pm_.c:84
msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
+"[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 ""
-" --id <id_label> - naÄte HTML stránku s nápovÄ›dou, která odpovídá "
-"id_label\n"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select a scanner model"
-msgstr "Zvolte si model skeneru"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
-msgstr "Akceptuje/odmítne nekorektní chybové zprávy protokolu IPv4."
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LprNG - LPR Nové generace"
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Nastavení pro DrakBackup"
+#: ../../standalone.pm_.c:94
+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/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr "Uložit jako..."
+#: ../../standalone.pm_.c:99
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr "Korea (Severní)"
+#: ../../standalone.pm_.c:100
+msgid ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../standalone.pm_.c:114
#, c-format
msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
-"Toto rozhraní ještě nebylo nastaveno.\n"
-"Spusťte průvodce konfigurací z hlavního okna"
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System configuration"
-msgstr "Konfigurace systému"
+#: ../../standalone.pm_.c:168
+msgid "Installing packages..."
+msgstr "Instaluji balíèky..."
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "Automatické přihlášení"
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Prosím odhlaste se a pak stisknìte Ctrl-Alt-Backspace"
-#: ../../any.pm:1
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "Domain Admin Password"
-msgstr "Heslo Správce domény"
+msgid "Please relog into %s to activate the changes"
+msgstr "Pro aktivaci zmìn se prosím znovu pøihlaste na %s"
-#: ../advertising/05-desktop.pl:1
-#, 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, ..."
-msgstr ""
-"PlnÄ› si pÅ™izpůsobte váš poÄítaÄ vaÅ¡im potÅ™ebám díky 11 uživatelským "
-"rozhraním, které jsou k dispozici v distribuci Mandrake Linux a které lze "
-"libovolnÄ› upravovat: KDE 3.1, GNOME 2.2, WindowMaker, ..."
+#: ../../standalone/drakTermServ_.c:239
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Nastavení Mandrake Terminal Server"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer ..."
-msgstr "Nastavuji tiskárnu ..."
+#: ../../standalone/drakTermServ_.c:253
+msgid "Enable Server"
+msgstr "Zapnout server"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, 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)"
-msgstr ""
-"Pro zachování integrity po provedené změně velikosti oddílu(ů) bude při\n"
-"dalším spuštění systému Windows provedena kontrola souborového systému."
+#: ../../standalone/drakTermServ_.c:260
+msgid "Disable Server"
+msgstr "Vypnout server"
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "MB"
+#: ../../standalone/drakTermServ_.c:268
+msgid "Start Server"
+msgstr "Spustit server"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
-msgstr "pokud je nastaveno, spouští kontrolu rpm databáze."
+#: ../../standalone/drakTermServ_.c:275
+msgid "Stop Server"
+msgstr "Zastavit server"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr "Panenské ostrovy (britské)"
+#: ../../standalone/drakTermServ_.c:283
+msgid "Etherboot Floppy/ISO"
+msgstr "Disketa Etherboot/ISO"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bermuda"
-msgstr "Bermudy"
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
+msgstr "Startovací image ze sítì"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
-msgstr "klepněte zde, pokud jste si jisti."
+#: ../../standalone/drakTermServ_.c:294
+msgid "Add/Del Users"
+msgstr "Pøidat/Odebrat u¾ivatele"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Nebyl nalezen konfiguraÄní soubor, \n"
-"klepněte na Průvodce nebo na Rozšířené."
+#: ../../standalone/drakTermServ_.c:299
+msgid "Add/Del Clients"
+msgstr "Pøidat/Odebrat klienty"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:328
+#, fuzzy
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"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+msgstr ""
+" aktualizace 2002 MandrakeSoft od Stewa Benedicta <sbenedict\\@mandrakesoft."
+"com>"
+
+#: ../../standalone/drakTermServ_.c:332
+msgid ""
"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
msgstr ""
-"Zde je vypsán seznam již existujících detekovaných oddílů na pevném disku.\n"
-"Můžete ponechat volby detekované průvodcem, protože ve většině případů\n"
-"vyhovují. Pokud chcete provést nějaké změny, musíte definovat aspoň "
-"kořenový\n"
-"oddíl (\"/\"). Velikost oddílů zvolte dostateÄnou, jinak nebude možné "
-"nainstalovat\n"
-"dostateÄné množství programů. Pokud chcete ukládat data na zvláštní oddíl,\n"
-"vytvořte také oddíl \"/home\".\n"
-"\n"
-"Každý oddíl vypsaný níže má: \"Název\", \"Velikost\".\n"
-"\n"
-"\"Název\" je složen následovnÄ›: \"typ pevného disku\", \"Äíslo disku\",\n"
-"\"Äíslo oddílu\". (například \"hda1\").\n"
+
+#: ../../standalone/drakTermServ_.c:365
+msgid ""
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\n"
"\n"
-"Pokud máte IDE disky, pak je \"typ pevného disku\" \"hd\", pokud máte SCSI,\n"
-"oznaÄení bude \"sd\".\n"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
"\n"
-"\"Číslo disku\" je vždy písmeno za \"hd\" nebo \"sd\". Pro IDE disky je to "
-"takto:\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\n"
"\n"
-" * \"a\" znamená \"master disk na primárním IDE Å™adiÄi\",\n"
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
"\n"
-" * \"b\" znamená \"slave disk na primárním IDE Å™adiÄi\",\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
"\n"
-" * \"c\" znamená \"master disk na sekundárním IDE Å™adiÄi\",\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
"\n"
-" * \"d\" znamená \"slave disk na sekundárním IDE Å™adiÄi\".\n"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \n"
"\n"
-"Pro SCSI disky platí, že \"a\" je \"nejmenší SCSI ID\", \"b\" je \"druhé\n"
-"nejmenší SCSI ID\" atd."
+msgstr ""
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Remove"
-msgstr "Odebrat"
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
+msgstr "Spou¹tìcí disketa"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr "Lesotho"
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
+msgstr "Spou¹tìcí ISO"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr "utopia 25"
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
+msgstr "Sestavit celé jádro -->"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Poslat tiskovou úlohu do příkazu"
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
+msgstr "Bude to trvat nìkolik minut."
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "Odstranit soubor loopbacku?"
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
+msgstr "Nebylo zvoleno ¾ádné jádro!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "Cote d'Ivoire"
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
+msgstr "Sestavit jedinou NIC -->"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr ""
-"nový, dynamický název zařízení, který generuje zabudovaný systém jádra devfs"
+#: ../../standalone/drakTermServ_.c:587
+msgid "No nic selected!"
+msgstr "Není zvolena ¾ádná NIC!"
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "Ano"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Který protokol chcete použít?"
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
+msgstr "Sestavit v¹echna jádra -->"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Progress"
-msgstr "Průběh obnovení"
+#: ../../standalone/drakTermServ_.c:604
+msgid "<-- Delete"
+msgstr "<-- Smazat"
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
-msgstr "Estonsko"
+#: ../../standalone/drakTermServ_.c:611
+msgid "Delete All NBIs"
+msgstr "Smazat v¹echny NBI"
-#: ../../partition_table.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:668
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."
+"!!! 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 ""
-"Ve tabulce diskových oddílů je mezera, ale nemohu ji použít.\n"
-"Jediné řešení je přesunout primární oddíly tak, abyste měli mezeru vedle\n"
-"rozšířených oddílů."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr "Zvolte poÄítaÄ, na kterém budou přístupné lokální skenery:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Channel"
-msgstr "Kanál"
+#: ../../standalone/drakTermServ_.c:673
+msgid "Add User -->"
+msgstr "Pøidat u¾ivatele -->"
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Add"
-msgstr "Přidat"
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
+msgstr "<-- Odebrat u¾ivatele"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr " Chyba při posílání pošty. \n"
+#: ../../standalone/drakTermServ_.c:720
+#, fuzzy, c-format
+msgid "type: %s"
+msgstr "Typ: "
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "Klávesnice"
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
+msgstr "Nepodaøilo se vytvoøit obraz pro spou¹tìní ze sítì!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-"Vložte CD s oznaÄením %s do CD\n"
-" mechaniky připojené do adresáře /mnt/cdrom"
+#: ../../standalone/drakTermServ_.c:773
+#, fuzzy
+msgid "Thin Client"
+msgstr "DHCP klient"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-"Intenzita má povolené přípony k, M nebo G (např. \"11M\" nebo 11M) nebo "
-"pÅ™idejte dostateÄný poÄet '0' (nul)."
+#: ../../standalone/drakTermServ_.c:775
+#, fuzzy
+msgid "Allow Thin Clients"
+msgstr "Pøidat/Odebrat klienty"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Zvolte si připojení, které chcete nastavit"
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
+msgstr "Pøidat klienta -->"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "ÄŒekejte prosím, nastavuji úroveň zabezpeÄení..."
+#: ../../standalone/drakTermServ_.c:821
+#, fuzzy
+msgid "<-- Edit Client"
+msgstr "<-- Odebrat klienta"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Nastavuji síťové zařízení %s"
+#: ../../standalone/drakTermServ_.c:837
+#, fuzzy
+msgid "Delete Client"
+msgstr "<-- Odebrat klienta"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
-msgstr "aktivováno"
+#: ../../standalone/drakTermServ_.c:843
+msgid "dhcpd Config..."
+msgstr "Nastavení dhcpd..."
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
-msgstr "Vyberte si prosím, který síťový adaptér chcete použít pro dhcp server."
+#: ../../standalone/drakTermServ_.c:876
+msgid ""
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Vyhledávám balíÄky pro aktualizaci..."
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
+msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
-msgstr "Adresář připojení (mount point): "
+#: ../../standalone/drakTermServ_.c:901
+#, fuzzy
+msgid "Netmask:"
+msgstr "Maska sítì"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
-msgstr "zpracovávám všechny fonty"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid direct root login."
-msgstr "Povolí/zakáže přímé přihlášení uživatele root."
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr " Akceptuje/odmítne všesměrové icmp echo."
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
-msgstr "X prostředí"
+#: ../../standalone/drakTermServ_.c:929
+#, fuzzy
+msgid "Domain Name:"
+msgstr "Jméno domény"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Konfigurace dvou monitorů"
+#: ../../standalone/drakTermServ_.c:937
+#, fuzzy
+msgid "Name Servers:"
+msgstr "Server Samba"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "No browser available! Please install one"
-msgstr "Není k dispozici žádný prohlížeÄ! Prosím nainstalujte nÄ›jaký."
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
+msgstr ""
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
msgstr ""
-"Zachovat změny?\n"
-"Aktuální konfigurace je:\n"
-"\n"
-"%s"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Nemůžete použít ReiserFS pro oddíl menší než 32MB"
+#: ../../standalone/drakTermServ_.c:1001
+msgid "dhcpd Server Configuration"
+msgstr "Nastavení serveru dhcpd"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:1002
+#, fuzzy
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)."
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-"Protokol rwho umožňuje vzdáleným uživatelům získat seznam\n"
-"vÅ¡ech uživatelů pÅ™ihlášených na poÄítaÄi s démonem rwho (je to podobné\n"
-"službě finger)."
+"Vìt¹ina tìchto údajù byla získána z va¹eho\n"
+"bì¾ícího systému. Mù¾ete je upravit dle potøeby."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "Jméno domény"
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Sdílení lokálních tiskáren"
+#: ../../standalone/drakTermServ_.c:1018
+msgid "Write Config"
+msgstr "Zapsat nastavení"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
-msgstr "Povolí/zakáže použití knihovny libsafe, pokud je na systému nalezena."
+#: ../../standalone/drakTermServ_.c:1120
+msgid "Please insert floppy disk:"
+msgstr "Prosím vlo¾te disketu:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Available printers"
-msgstr "Dostupné tiskárny"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
+msgstr "Nelze pracovat s disketou!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "NO"
-msgstr "NE"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
+msgstr "Disketu nyní mù¾ete vyjmout"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "Prázdný"
+#: ../../standalone/drakTermServ_.c:1129
+msgid "No floppy drive available!"
+msgstr "Není dostupná ¾ádná disketová mechanika!"
-#: ../../standalone/draksplash:1
+#: ../../standalone/drakTermServ_.c:1138
#, c-format
-msgid "text width"
-msgstr "šířka textu"
+msgid "Etherboot ISO image is %s"
+msgstr "ISO image pro Etherboot je %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Kam chcete připojit zařízení %s?"
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Nìco neprobìhlo správnì! - Je nainstalovaný program mkisofs?"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Výchozí doba pronájmu (sekundy)"
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "Je nutné nejprve vytvoøit soubor /etc/dhcpd.conf!"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
-"Nyní se bude nastavovat připojení %s.\n"
-"\n"
-"\n"
-"StisknÄ›te \"%s\" pro pokraÄování."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Rozhraní \"%s\""
+#: ../../standalone/drakautoinst_.c:40
+msgid "Error!"
+msgstr "Chyba!"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Základní dokumentace (doporuÄeno!)"
+msgid "I can't find needed image file `%s'."
+msgstr "Nemohu najít potøebný soubor '%s ' s obrazem."
-#: ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr "1 tlaÄítko"
+#: ../../standalone/drakautoinst_.c:43
+msgid "Auto Install Configurator"
+msgstr "Nastavení automatické instalace"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:44
msgid ""
+"You are about to configure an Auto Install floppy. This feature is somewhat "
+"dangerous and must be used circumspectly.\n"
"\n"
-"There are %d unknown printers directly connected to your system"
+"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 ""
+"Zde mù¾ete nastavit disketu pro automatickou instalaci. Tato volba je nìkdy "
+"nebezpeèná a mìla by se pou¾ívat s opatrností.\n"
"\n"
-"NaÅ¡el jsem %d neznámých tiskáren přímo pÅ™ipojených k vaÅ¡emu poÄítaÄi"
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Test"
-msgstr "Test"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea"
-msgstr "Korea"
+"Tato disketa dovoluje zopakovat instalaci, která ji¾ na tomto poèítaèi byla "
+"provedena s tím, ¾e v nìkterých krocích lze zadat jiné hodnoty.\n"
+"\n"
+"Pro maximální bezpeènost není rozdìlování diskù ani formátování provádìno "
+"automaticky, i pøesto, pokud to pøi instalaci zvolíte.\n"
+"\n"
+"Chcete pokraèovat?"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Vaše volba? (výchozí '%s'%s) "
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer"
-msgstr "Přímý tisk na tiskárnu"
+#: ../../standalone/drakautoinst_.c:62
+#, fuzzy
+msgid "replay"
+msgstr "Zopakovat"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "Oficiální jméno dodavatele procesoru"
+#: ../../standalone/drakautoinst_.c:66
+msgid "Automatic Steps Configuration"
+msgstr "Nastavení automatických krokù"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
-msgstr "Nepoužitelné bez Terminál serveru"
+#: ../../standalone/drakautoinst_.c:67
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
+msgstr ""
+"Vyberte prosím, který z krokù instalace má být proveden automaticky stejnì "
+"jako instalaèní program nebo bude ruènì zadán"
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Vendor"
-msgstr "Dodavatel"
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+msgid "Creating auto install floppy"
+msgstr "Vytváøím disketu pro automatickou instalaci"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s"
-msgstr "Rozhraní %s"
+#: ../../standalone/drakautoinst_.c:139
+msgid ""
+"\n"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
+msgstr ""
+"\n"
+"Vítejte.\n"
+"\n"
+"Parametry pro automatickou instalaci jsou pøístupné v sekci nalevo"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "Nastavení myši"
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
+msgstr "Gratuluji!"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
-msgstr "Zvolte si přípojné(mount) body"
+#: ../../standalone/drakautoinst_.c:235
+msgid ""
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
+msgstr ""
+"Disketa byla s úspìchem vytvoøena.\n"
+"Nyní lze provést znovu instalaci."
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr "OK"
+#: ../../standalone/drakautoinst_.c:273
+msgid "Auto Install"
+msgstr "Automatická instalace"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslávské (latin)"
+#: ../../standalone/drakautoinst_.c:343
+msgid "Add an item"
+msgstr "Pøidat polo¾ku"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "Instaluji"
+#: ../../standalone/drakautoinst_.c:350
+msgid "Remove the last item"
+msgstr "Odstranit poslední polo¾ku"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan s emulací koleÄka"
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
+msgstr "Slu¾by cronu nejsou zatím pro bì¾né u¾ivatele dostupné."
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
-msgstr "Spustit UserDrake"
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
+msgstr "VAROVÁNÍ"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Jedná se o instalaci nebo aktualizaci?"
+#: ../../standalone/drakbackup_.c:691
+msgid "FATAL"
+msgstr "FATAL"
-#: ../../help.pm:1
-#, c-format
-msgid "ISDN card"
-msgstr "ISDN karta"
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
+msgstr "INFO"
-#: ../advertising/02-community.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:704
msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
+"\n"
+" DrakBackup Report \n"
+"\n"
msgstr ""
-"Chcete-li sdílet své vědomosti a pomáhat vytvářet nástroje pro Linux, "
-"připojte se do diskusních klubů, které najdete na našich stránkách "
-"\"Community\"."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-Pevný disk.\n"
+"\n"
+" Report programu DrackBackup \n"
+"\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:705
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"
+" DrakBackup Daemon Report\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 ""
-"Tento krok je objeví pouze tehdy, pokud je na vaÅ¡em poÄítaÄi nalezen starší\n"
-"oddíl GNU/Linuxu.\n"
"\n"
-"InstalaÄní program potÅ™ebuje vÄ›dÄ›t, zda má provést instalaci nebo pouze\n"
-"aktualizaci existujícího systému Mandrake Linux.\n"
+" Report démonu pro DrackBackup\n"
"\n"
-" * \"%s\": Nejběžnější volba, provede kompletní výmaz starého systému.\n"
-"Pokud si přejete změnit rozmístění oddílů, změnit souborový systém, "
-"použijte\n"
-"tuto volbu. Můžete samozřejmě také některé oddíly zachovat před přepsáním.\n"
"\n"
-" * \"%s\": tato volba provede aktualizaci instalovaných balíÄků.\n"
-"Aktuální rozmístění diskových oddílů a uživatelská data zůstanou zachována.\n"
-"Bude provedena ale vÄ›tÅ¡ina konfiguraÄních kroků, stejnÄ› jako pÅ™i instalaci.\n"
-"\n"
-"Použití volby \"Aktualizace\" bude fungovat bez problémů na stávající "
-"verzi \n"
-"\"8.1\" a novější. Aktualizace na verzích starších než \"8.1\" není "
-"doporuÄováno."
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/drakbackup_.c:709
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"
+" DrakBackup Report 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"
msgstr ""
"\n"
-" Copyright ©2001-2002 MandrakeSoft \n"
-" DUPONT Sebastien (původní verze)\n"
-" CHAUMETTE Damien <dchaumette@mandrakesoft.com>\n"
-"\n"
-" Tento program je svobodný software; můžete ho šířit a/nebo modifikovat\n"
-" podle specifikace GNU General Public Licence, která byla publikována\n"
-" Free Software Foundation; buÄ verze 2, nebo (podle volby) pozdÄ›jší verze.\n"
-"\n"
-" Tento program je distribuován s nadÄ›jí, že bude užiteÄný,\n"
-" ale BEZ JAKÃCHKOLIV ZÃRUK; BEZ NÃROKU NA PROFIT. Více detailů naleznete\n"
-" v licenci GNU General Public Licence.\n"
+" Detaily o reportu pro DrackBackup\n"
"\n"
-" Kopii GNU General Public Licence můžete obdržet buÄ s tímto programem\n"
-" nebo si o ní můžete napsat na adresu Free Software Foundation, Inc.,\n"
-" 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
"\n"
-" Poděkování:\n"
-" - pfm2afm: \n"
-"\t autor Ken Borgendale:\n"
-"\t Převádí Windows .pfm soubor na .afm (Adobe Font Metrics)\n"
-" - type1inst:\n"
-"\t autor James Macnicol: \n"
-"\t type1inst generuje soubory fonts.dir fonts.scale & Fontmap.\n"
-" - ttf2pt1: \n"
-"\t autoři Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Převádí soubory s ttf fonty na soubory afm a pfb\n"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Tiskárna na vzdáleném CUPS serveru"
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+msgid "Total progess"
+msgstr "Celkový prùbìh"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:785
#, c-format
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+"%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 ""
-"Odebrání tiskárny \"%s\" ze Star Office/OpenOffice.org/GIMP se nezdařilo."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
-msgstr "zde pokud si nejste jisti."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DHCP host name"
-msgstr "Název poÄítaÄe z DHCP"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Maximální doba pronájmu (sekundy)"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Ke kterému sériovému portu je připojena vaše myš?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
-msgstr "Proběhl tisk správně ?"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
-msgstr "PÅ™ipojit souborový systém pouze pro Ätení."
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "Slabá"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result by mail"
-msgstr "Odeslat výsledek kontroly mailem"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
-msgstr "Grenada"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
-msgstr "PoÄátek pásma adres DHCP"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "Nejistý"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "SSH server"
-msgstr "Server SSH"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektorů"
-
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "Ne"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Kannada"
-msgstr "Kanadské"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
-msgstr "nelze nalézt žádný font.\n"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Chcete, aby se klávesa Backspace chovala v konzoli jako Delete?"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Vertikální(obrazovková) synchronizace"
+"%s existuje, smazat?\n"
+"\n"
+"Varování: Pokud jste tak ji¾ jednou uèinili, budete nejspí¹ muset\n"
+"vymazat pøíslu¹ný záznam ze souboru authorized_keys na serveru."
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "ZaÄínám '%s'\n"
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
+msgstr "Generování klíèù mù¾e chvíli trvat."
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup_.c:801
#, c-format
-msgid "Niger"
-msgstr "Niger"
+msgid "ERROR: Cannot spawn %s."
+msgstr "CHYBA: Nelze spustit pøíkaz %s."
-#: ../../mouse.pm:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
+msgid "No password prompt on %s at port %s"
+msgstr "®ádná výzva na heslo na %s na portu %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:819
#, c-format
-msgid "Removing %s ..."
-msgstr "Odstraňuji %s ..."
+msgid "Bad password on %s"
+msgstr "Chybné heslo na %s"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "No printer"
-msgstr "Bez tiskárny"
+msgid "Permission denied transferring %s to %s"
+msgstr "Povolení odepøeno pøi pøenosu %s na %s"
-#: ../../standalone/logdrake:1
+#: ../../standalone/drakbackup_.c:821
#, c-format
-msgid "alert configuration"
-msgstr "nastavení varování"
+msgid "Can't find %s on %s"
+msgstr "Nelze nalézt %s na %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid "NetWare Printer Options"
-msgstr "Možnosti NetWare tiskárny"
+msgid "%s not responding"
+msgstr "%s neodpovídá"
-#: ../../standalone/draksplash:1
+#: ../../standalone/drakbackup_.c:828
#, c-format
-msgid "%s BootSplash (%s) preview"
-msgstr "Náhled tématu Bootsplash %s (%s)"
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+"Pøenos úspì¹ný!\n"
+"Mo¾ná budete chtít zkontrolovat, zda se mù¾ete pøihlásit na server:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"bez dotazu na heslo."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "February"
-msgstr "únor"
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
+msgstr "Vzdálená místo je ji¾ protokolem WebDAV synchronizováno!"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
-msgstr "Obecné"
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
+msgstr "Pøenos protokolem WebDAV selhal!"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
-msgstr "soubor /etc/issue* existuje"
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
+msgstr "V mechanice není CDR/DVDR médium."
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "Přidání uživatele"
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
+msgstr "Toto není zapisovatelné médium"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Nastavení sítě (%d adaptéry(ů))"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
+msgstr "Toto není pøepisovatelné médium!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "April"
-msgstr "Duben"
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
+msgstr "Vymazání média mù¾e chvíli trvat."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Deactivate now"
-msgstr "Deaktivovat nyní"
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
+msgstr "Problémy s právy pøi pøístupu na CD."
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
+#: ../../standalone/drakbackup_.c:1060
#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Chybí potÅ™ebný balíÄek %s"
+msgid "No tape in %s!"
+msgstr "Není páska v %s!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Filipíny"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
+msgstr "Zálohovat systémové soubory..."
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "Ok"
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+msgid "Hard Disk Backup files..."
+msgstr "Zálo¾ní soubory pevného disku..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "drakTermServ Overview"
-msgstr "Přehled drakTermServ"
+#: ../../standalone/drakbackup_.c:1236
+msgid "Backup User files..."
+msgstr "Zálohovat soubory u¾ivatelù..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
-msgstr "Název tiskové fronty"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
+msgstr "Prùbìh zálohování na pevný disk... "
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Chcete použít aboot?"
+#: ../../standalone/drakbackup_.c:1290
+msgid "Backup Other files..."
+msgstr "Zálohovat dal¹í soubory..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belarusian"
-msgstr "Běloruské"
+#: ../../standalone/drakbackup_.c:1296
+msgid "No changes to backup!"
+msgstr "Nejsou ¾ádné zmìny pro zálohování!"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, c-format
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-"PDQ podporuje pouze místní tiskárny, vzdálené tiskárny LPD a tisk na "
-"tiskárny přes sokety/TCP.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move files to the new partition"
-msgstr "Přesunout soubory na nový diskový oddíl"
+"\n"
+"Aktivity programu DrakBackup skrze %s:\n"
+"\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:1319
#, 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."
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-"Přidejte sem ty CUPS servery, ze kterých budete chtít využívat tiskárny. Je "
-"to nutné pouze v případě, že tyto servery nešíří informace informace o "
-"tiskárnách v lokální síti."
+"seznam souborù poslaný pøes FTP: %s\n"
+" "
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1322
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
+msgstr ""
"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+" Problémy FTP spojení: Nebylo mo¾né poslat va¹e soubory se zálohou pøes "
+"FTP.\n"
+
+#: ../../standalone/drakbackup_.c:1340
+msgid ""
"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
+"Drakbackup activities via CD:\n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
msgstr ""
"\n"
-"Vítejte v Průvodci nastavením tiskárny\n"
-"\n"
-"Tento průvodce vám pomůže nainstalovat vaši tiskárnu nebo tiskárny připojené "
-"k tomuto poÄítaÄi.\n"
-"\n"
-"Pokud máte tiskárnu nebo tiskárny pÅ™ipojené k tomuto poÄítaÄi, zapojte je "
-"prosím a zapněte je; pak mohou být automaticky nalezeny. \n"
+"Aktivity programu DrakBackup skrze CD:\n"
"\n"
-"Pokud jste pÅ™ipraveni, klepnÄ›te na tlaÄítko \"Další\", nebo klepnÄ›te na "
-"tlaÄítko \"ZruÅ¡it\" pokud nechcete v tuto chvíli tiskárnu(y) nastavovat."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Obnovit z katalogu"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "připojení oddílu %s v adresáři %s selhalo"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
-msgstr "Obrazovka LiLo"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO s grafickou nabídkou"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "Odhaduji"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
-msgstr "Nemůžete od-oznaÄit tento balíÄek, protože je už nainstalovaný"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", tiskárna \"%s\" na SMB/Windows serveru \"%s\""
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "PÅ™esto pokraÄovat?"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Hledám dostupné balíÄky a znovu sestavuji databázi balíÄků..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1345
msgid ""
"\n"
-" DrakBackup Report \n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
"\n"
-" Report programu DrackBackup \n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Toto není zapisovatelné médium"
+"Aktivity programu DrakBackup skrze pásku:\n"
+"\n"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "Zadejte možnosti"
+#: ../../standalone/drakbackup_.c:1354
+msgid " Error during mail sending. \n"
+msgstr " Chyba pøi posílání po¹ty. \n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
+msgstr "Nelze vytvoøit katalog!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "New user list:\n"
-msgstr "Nový seznam uživatelů:\n"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+msgid "File Selection"
+msgstr "Výbìr souboru"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Musí být zadán buÄ název serveru nebo jeho IP adresa!"
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
+msgstr "Vyberte soubory nebo adresáøe a kliknìte na 'Pøidat'"
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1573
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\"."
+"Please check all options that you need.\n"
msgstr ""
-"Pomocí startovací diskety je možné spustit systém Linux bez závislosti na\n"
-"zavadÄ›Äi systému. To je užiteÄné tÅ™eba v případÄ›, že nechcete instalovat "
-"SILO\n"
-"na poÄítaÄ, nebo jiný operaÄní systém SILO pÅ™epsal nebo SILO nepracuje "
-"správně\n"
-"s hardwarovou konfigurací. Vlastní startovací disketa je také užiteÄná "
-"tehdy,\n"
-"pokud je potřeba provést opravu systému po předchozím selhání.\n"
"\n"
-"Pokud chcete vytvořit startovací disketu, vložte disketu do mechaniky\n"
-"a stiskněte \"OK\"."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Nelze použít kryptovaný souborový systém na připojený bod %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password history length to prevent password reuse."
-msgstr "Nastavuje délku historie pro použitá hesla."
+"Zvolte prosím v¹echny volby, které potøebujete.\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
-msgstr "Norfolské ostrovy"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Theme installation failed!"
-msgstr "Instalace motivu selhala!"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
-msgstr "Nic nedělat"
+#: ../../standalone/drakbackup_.c:1574
+msgid ""
+"These options can backup and restore all files in your /etc directory.\n"
+msgstr "Tato volba zazálohuje a obnoví v¹echny soubory v adresáøi /etc.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "Použít loopback"
+#: ../../standalone/drakbackup_.c:1575
+msgid "Backup your System files. (/etc directory)"
+msgstr "Zálohovat va¹e systémové soubory. (adresáø /etc)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr "Nástroj spoleÄnosti Mandrake pro hlášení chyb"
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
+msgstr "Pou¾ít pøírùstkovou zálohu (nepøepisovat star¹í zálohy)"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
-msgstr "Použít filtr"
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
+msgstr "Nezahrnout kritické soubory (passwd, group, fstab)"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pppoe"
-msgstr "použít pppoe"
+#: ../../standalone/drakbackup_.c:1578
+msgid ""
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
+msgstr "Tato volba dovolí obnovit rùzné verze adresáøe /etc."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving files to the new partition"
-msgstr "Přesunuji soubory na nový diskový oddíl"
+#: ../../standalone/drakbackup_.c:1595
+msgid "Please check all users that you want to include in your backup."
+msgstr "Zvolte prosím v¹echny u¾ivatele, které chcete zálohovat."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s s EXPERIMENTÃLNà 3D hardwarovou akcelerací"
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
+msgstr "Nezahrnout cache prohlí¾eèe"
-#: ../../help.pm:1 ../../interactive.pm:1
-#, c-format
-msgid "Advanced"
-msgstr "Rozšíření"
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
+msgstr "Pou¾ít pøírùstkovou zálohu (nepøepisovat star¹í zálohy)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer"
-msgstr "Přenést"
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+msgid "Remove Selected"
+msgstr "Odstranit vybrané"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Dvořák (Švédské) "
+#: ../../standalone/drakbackup_.c:1679
+msgid "Windows (FAT32)"
+msgstr "Windows (FAT32)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Afghanistan"
-msgstr "Afghánistán"
+#: ../../standalone/drakbackup_.c:1714
+msgid "Users"
+msgstr "U¾ivatelé"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "More Options"
-msgstr "Další volby"
+#: ../../standalone/drakbackup_.c:1740
+msgid "Use network connection to backup"
+msgstr "Pou¾ít sí»ové pøipojení pro zálohování"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr "Smazat pomocné tar soubory po záloze na jiné médium."
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
+msgstr "Sí»ová metoda:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "Burundi"
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
+msgstr "Pou¾ít Expect pro SSH"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1747
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."
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-"cron je standardní Unixový program který spouští uživatelem zadané programy\n"
-"v předem definovaných intervalech. vixie cron má navíc mnoho vlastností,\n"
-"vÄetnÄ› vyšší bezpeÄnosti a více možností nastavení."
+"Vytvoøit/Pøenést\n"
+"zálo¾ní klíèe pro SSH"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr "Přidat klienta -->"
+#: ../../standalone/drakbackup_.c:1748
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+" Pøenos \n"
+"Nyní"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "Čtěte pozorně!"
+#: ../../standalone/drakbackup_.c:1749
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
+msgstr ""
+"Jiné (ne pro drakbackup)\n"
+"klíèe jsou ji¾ na místì"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
-msgstr "RW"
+#: ../../standalone/drakbackup_.c:1753
+msgid "Please enter the host name or IP."
+msgstr "Zadejte prosím název poèítaèe nebo IP."
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1758
msgid ""
-"Please,\n"
-"type in your tv norm and country"
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-"Zadejte prosím\n"
-"typ TV normy a zemi"
+"Prosím, zadejte adresáø (nebo modul), do kterého\n"
+" bude umístìna záloha na tomto poèítaèi."
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "Port"
+#: ../../standalone/drakbackup_.c:1763
+msgid "Please enter your login"
+msgstr "Zadejte své pøihla¹ovací jméno"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
-msgstr "Ne (pouze pro experty)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-msgstr "Nebylo zvoleno žádné jádro!"
+#: ../../standalone/drakbackup_.c:1768
+msgid "Please enter your password"
+msgstr "Zadejte své heslo"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-#
-#. -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
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Stisknete ENTER pro start vybraného OS, 'e' pro upravu"
+#: ../../standalone/drakbackup_.c:1774
+msgid "Remember this password"
+msgstr "Pamatovat si heslo"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
+msgstr "Potøebuji název poèítaèe, u¾ivatelské jméno a heslo!"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The encryption keys do not match"
-msgstr "Å ifrovací klíÄe se neshodují"
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
+msgstr "Pou¾ít pro zálohování CD/DVDROM"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1882
msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-"U CD s více session pouze první session vymaže celé CDRW. Jinak bude CDRW "
-"vymazánou před každou zálohou."
+"Vyberte prosím své zaøízení CD/DVD.\n"
+"(Stisknutím klávesy Enter pøenesete nastavení do ostatních polí.\n"
+"Toto políèko není povinné, je to pouze nástroj pro vyplnìní formuláøe.)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "USB printer"
-msgstr "USB tiskárna"
+#: ../../standalone/drakbackup_.c:1887
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Vyberte velikost va¹eho média CD/DVD"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Pravá klávesa \"Windows\""
+#: ../../standalone/drakbackup_.c:1893
+msgid "Please check for multisession CD"
+msgstr "Zvolte pokud pou¾íváte multisession CD"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr "pokud je nastaveno, kontroluje prázdná hesla v /etc/shadow."
+#: ../../standalone/drakbackup_.c:1899
+msgid "Please check if you are using CDRW media"
+msgstr "Zvolte pokud pou¾íváte CDRW média"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"PÅ™edtím, než budete pokraÄovat, pÅ™eÄtÄ›te si pozornÄ› licenÄní podmínky. Ty\n"
-"se vztahují k celé distribuci Mandrake Linux a pokud s nimi souhlasíte,\n"
-"klepnÄ›te na tlaÄítko \"%s\". Pokud ne, jednoduÅ¡e poÄítaÄ vypnÄ›te."
+#: ../../standalone/drakbackup_.c:1905
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Zatrhnìte, pokud chcete va¹e CDRW médium smazat (pøi prvním sezení)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Zde je seznam dostupných voleb pro nastavení tisku pro aktuální tiskárnu:\n"
-"\n"
+#: ../../standalone/drakbackup_.c:1906
+msgid " Erase Now "
+msgstr " Vymazat nyní "
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "Rozlišení"
+#: ../../standalone/drakbackup_.c:1912
+msgid "Please check if you are using a DVDR device"
+msgstr "Zvolte pokud pou¾íváte zaøízení DVDR"
-#: ../../network/drakfirewall.pm:1
-#, 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."
-msgstr ""
-"Nastavení aplikace drakfirewall\n"
-"\n"
-"Zde je možné nastavit osobní firewall pro tento systém Mandrake Linux.\n"
-"Pro výkonné řešení vyhrazeného firewallu použijte specializovanou\n"
-"distribuci MandrakeSecurity Firewall."
+#: ../../standalone/drakbackup_.c:1918
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Zvolte pokud pou¾íváte zaøízení DVDRAM"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1931
msgid ""
-"Please enter your username, password and domain name to access this host."
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-"Prosím zadejte své uživatelské jméno, heslo a název domény, pod kterými "
-"chcete pÅ™istupovat k tomuto poÄítaÄi."
+"Zadejte název va¹í vypalovaèky CD\n"
+" napø.: 1,0,0"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Remove selected host"
-msgstr "Odstranit vybraný poÄítaÄ"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network configuration"
-msgstr "Nastavení sítě"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Automaticky detekovat _jaz disky"
-
-#: ../../any.pm:1
-#, c-format
-msgid "No sharing"
-msgstr "Nesdílet"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Posunout vybrané pravidlo o úroveň níže"
-
-#: ../../common.pm:1
-#, c-format
-msgid "TB"
-msgstr "TB"
+#: ../../standalone/drakbackup_.c:1964
+msgid "No CD device defined!"
+msgstr "Není definováno ¾ádné zaøízení CD!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "FATAL"
-msgstr "FATAL"
+#: ../../standalone/drakbackup_.c:2012
+msgid "Use tape to backup"
+msgstr "Pou¾ít páskovou jednotku"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh the list"
-msgstr "Obnovit seznam"
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
+msgstr "Zadejte název zaøízení, na které se bude zálohovat"
-#: ../../standalone/drakTermServ:1
-#, 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."
+#: ../../standalone/drakbackup_.c:2021
+msgid "Please check if you want to use the non-rewinding device."
msgstr ""
-" - %s pro každého klienta:\n"
-" \tSkrze ClusterNFS může mít každý bezdiskový klient své vlastní "
-"unikátní soubory s nastavením\n"
-" \tumístěné na serveru v kořenovém souborovém systému. drakTermServ "
-"bude v budoucnu pomáhat\n"
-" \ts tvorbou těchto souborů."
+"Pokud chcete pou¾ívat zaøízení bez zpìtného pøevíjení, prosím zatrhnìte."
-#: ../../standalone/drakpxe:1
-#, 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"
+#: ../../standalone/drakbackup_.c:2027
+msgid "Please check if you want to erase your tape before the backup."
msgstr ""
-"DHCP server dovoluje dalším poÄítaÄům spuÅ¡tÄ›ní pomocí PXE s využitím daného "
-"rozsahu adres.\n"
-"\n"
-"Síťová adresa je %s a použitá maska je %s\n"
-"\n"
+"Pokud chcete pøed zálohováním va¹i pásku nejdøíve smazat, prosím zatrhnìte"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete"
-msgstr "Smazat"
+#: ../../standalone/drakbackup_.c:2033
+msgid "Please check if you want to eject your tape after the backup."
+msgstr ""
+"Pokud chcete po zálohování pásku automaticky vysunout, prosím zatrhnìte."
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
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?"
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
msgstr ""
-"Můžu nastavit váš poÄítaÄ tak, aby automaticky spustil X pÅ™i startu.\n"
-"Chcete aby poÄítaÄ po zapnutí spustil grafický režim?"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
-msgstr "Vytvořit disk"
+"Zadejte prosím maximální velikost\n"
+" povolenou pro DrakBackup"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnect %s"
-msgstr "Odpojit %s"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
-msgstr "Stav:"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "SSH Server"
-msgstr "Server SSH"
+#: ../../standalone/drakbackup_.c:2103
+msgid "Please enter the directory to save to:"
+msgstr "Zadejte adresáø, kam se bude ukládat:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-Sítí přes rsync.\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
-msgstr "Evropský protokol"
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+msgid "Use quota for backup files."
+msgstr "Pou¾ít kvóty pro zálo¾ní soubory."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", tiskárna \"%s\" na serveru \"%s\""
+#: ../../standalone/drakbackup_.c:2180
+msgid "Network"
+msgstr "Sí»"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
-msgstr "V tuto chvíli také všechna 'síťová' média používají pevný disk."
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
+msgstr "CD-ROM / DVD-ROM"
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
-#, c-format
-msgid "Error"
-msgstr "Chyba"
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
+msgstr "Pevný disk / NFS"
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
-msgstr "povolit \"su\""
+#: ../../standalone/drakbackup_.c:2195
+msgid "Tape"
+msgstr "Páska"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Australia"
-msgstr "Austrálie"
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
+msgstr "ka¾dou hodinu"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "Äekejte prosím, právÄ› běží ttmkfdir... "
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
+msgstr "ka¾dý den"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Konfigurovat pouze kartu \"%s\"%s"
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
+msgstr "ka¾dý týden"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Level"
-msgstr "Úroveň"
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
+msgstr "ka¾dý mìsíc"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Change the printing system"
-msgstr "Změna tiskového systému"
+#: ../../standalone/drakbackup_.c:2229
+msgid "Use daemon"
+msgstr "Pou¾ít démona"
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2234
msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
+"Please choose the time \n"
+"interval between each backup"
msgstr ""
-"Váš systém podporuje zobrazení na dvou monitorech.\n"
-"Co chcete dělat?"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr "chyba připojování: "
+"Vyberte si interval mezi\n"
+"jednotlivými zálohami"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "Nastavení služeb"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Adresa broadcastu:"
-
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2240
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."
+"Please choose the\n"
+"media for backup."
msgstr ""
-"GNU/Linux jádro potÅ™ebuje spustit výpoÄetní smyÄku pÅ™i spuÅ¡tÄ›ní pro "
-"inicializaci ÄítaÄe hodin. Výsledek je uložen v promÄ›nné BogoMIPS jako "
-"takový \"benchmark\" pro cpu."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "Obraz(image)"
+"Prosím zvolte si\n"
+"médium pro zálohy."
-#: ../../services.pm:1
-#, c-format
-msgid "Remote Administration"
-msgstr "Vzdálená administrace"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-msgstr ""
-"Přidání tiskárny \"%s\" do Star Office/OpenOffice.org/GIMP se nezdařilo."
-
-#: ../../modules.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2247
msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-"Podpora PCMCIA již není dostupná pro kernely 2.2. Použijte prosím řadu 2.4."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Selected All"
-msgstr "Vybrat vše"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Tiskový Systém pro Unix"
+"Ujistìte se prosím, ¾e mezi slu¾bami je pøítomen cron démon.\n"
+"\n"
+"V tuto chvíli také v¹echna 'sí»ová' média pou¾ívají pevný disk."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Webmin Service"
-msgstr "Služba Webmin"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
+msgstr "Poslat report po záloze mailem na :"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
-msgstr "zařízení"
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr "Smazat pomocné tar soubory po záloze na jiné médium."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Zadejte adresář, kam se bude zálohovat:"
+#: ../../standalone/drakbackup_.c:2324
+msgid "What"
+msgstr "Co"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
-msgstr "Řecko"
+#: ../../standalone/drakbackup_.c:2329
+msgid "Where"
+msgstr "Kde"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "Všechno"
+#: ../../standalone/drakbackup_.c:2334
+msgid "When"
+msgstr "Kdy"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Který tiskový systém chcete použít pro tisk?"
+#: ../../standalone/drakbackup_.c:2339
+msgid "More Options"
+msgstr "Dal¹í volby"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
-msgstr "ÄŒervenec"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+msgid "Drakbackup Configuration"
+msgstr "Nastavení pro DrakBackup"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Prints into %s"
-msgstr "Tisk na %s"
+#: ../../standalone/drakbackup_.c:2376
+msgid "Please choose where you want to backup"
+msgstr "Vyberte si, prosím, kam chcete zálohovat."
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "Stala se chyba"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
+msgstr "na pevný disk"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Tento balíÄek musí být aktualizován\n"
-"Jste si jisti, že ho nechcete zvolit?"
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
+msgstr "pøes sí»"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "Tamilské (psací stroj)"
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
+msgstr "na CDROM"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
-msgstr "Použije heslo pro autentizaci uživatelů."
+#: ../../standalone/drakbackup_.c:2406
+msgid "on Tape Device"
+msgstr "na pásku"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
-msgstr "Povolí/zakáže výpis uživatelů ve správcích přihlášení (kdm nebo gdm)."
+#: ../../standalone/drakbackup_.c:2449
+msgid "Please choose what you want to backup"
+msgstr "Prosím vyberte si, co chcete zálohovat"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
-msgstr "ruÄnÄ›"
+#: ../../standalone/drakbackup_.c:2450
+msgid "Backup system"
+msgstr "Zálohovat systém"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
-msgstr "Hledaný název souboru:"
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
+msgstr "Zálohovat u¾ivatele"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Výrobce tiskárny, model, ovladaÄ"
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
+msgstr "Vybrat u¾ivatele manuálnì"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2537
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"\n"
+"Backup Sources: \n"
msgstr ""
-"V zařízení %s není žádné médium, nebo je médium chráněno proti zápisu.\n"
-"Vložte prosím nějaké."
+"\n"
+"Zdroje pro zálohu:\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2538
msgid ""
-"Directory %s already contains data\n"
-"(%s)"
+"\n"
+"- System Files:\n"
msgstr ""
-"Adresář %s již obsahuje nějaká data\n"
-"(%s)"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Tiskárna na Netware serveru"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Zadejte velikost paměti v MB"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr "Pátek"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Odpojení od Internetu ukonÄeno."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "SkuteÄné jméno"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "done"
-msgstr "hotovo"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Zrušte nebo odstraňte při dalším spuštění tuto volbu."
+"\n"
+"- Systémové soubory:\n"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Higher"
-msgstr "Vysoká"
+#: ../../standalone/drakbackup_.c:2540
+msgid ""
+"\n"
+"- User Files:\n"
+msgstr ""
+"\n"
+"- Soubory u¾ivatelù:\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Zvolte diskové oddíly které chcete naformátovat"
+#: ../../standalone/drakbackup_.c:2542
+msgid ""
+"\n"
+"- Other Files:\n"
+msgstr ""
+"\n"
+"- Dal¹í soubory:\n"
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakbackup_.c:2544
#, 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"
+"- Save on Hard drive on path: %s\n"
+msgstr ""
"\n"
+"- Ulo¾it na pevný disk do adresáøe: %s\n"
+
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"- Delete hard drive tar files after backup.\n"
msgstr ""
-"V poÄítaÄi nebyla nalezena žádná TV karta. Zkontrolujte prosím, zda "
-"podporovaná karta je správně zapojena.\n"
-"\n"
"\n"
-"Databázi hardware lze nalézt na:\n"
+"- Smazat pomocné tar soubory po provedení zálohy.\n"
+
+#: ../../standalone/drakbackup_.c:2553
+msgid ""
"\n"
+"- Burn to CD"
+msgstr ""
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't find %s on %s"
-msgstr "Nelze nalézt %s na %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "Japonská 106 kláves"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
-msgstr "Nelze nainstalovat balíÄky potÅ™ebné pro sdílené skeneru(ů)."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Bude to trvat několik minut."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "June"
-msgstr "ÄŒerven"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Použít skenery na vzdáleném poÄítaÄi"
+"- Vypálit na CD"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Delete selected rule"
-msgstr "Smazat vybrané pravidlo"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Přístup k tiskárnám na vzdáleném CUPS serveru"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Vložte disketu do %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
-msgstr "Maledivy"
-
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "kompaktní"
-
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
-msgstr "1 minuta"
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
+msgstr "RW"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup_.c:2555
#, c-format
-msgid "type: fat"
-msgstr "typ: tlustý"
+msgid " on device: %s"
+msgstr " na zaøízení: %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "on channel %d id %d\n"
-msgstr "na kanále %d id %d\n"
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
+msgstr " (multi-session)"
-#: ../../printer/main.pm:1
+#: ../../standalone/drakbackup_.c:2557
#, c-format
-msgid ", multi-function device"
-msgstr ", multifunkÄní zařízení"
+msgid ""
+"\n"
+"- Save to Tape on device: %s"
+msgstr ""
+"\n"
+"- Ulo¾it na pásku na zaøízení: %s"
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "Laos"
-msgstr "Laos"
+msgid "\t\tErase=%s"
+msgstr "\t\tErase=%s"
-#: ../advertising/04-configuration.pl:1
+#: ../../standalone/drakbackup_.c:2561
#, 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!"
+"\n"
+"- Save via %s on host: %s\n"
msgstr ""
-"Mandrake Linux vám poskytuje Ovládací centrum Mandrake, mocný nástroj pro "
-"plné pÅ™izpůsobení vaÅ¡eho poÄítaÄe vaÅ¡im potÅ™ebám. Nastavte a pÅ™izpůsobte si "
-"prvky jako úroveň zabezpeÄení, přídavná zařízení (obrazovku, myÅ¡, "
-"klávesnici...), připojení k Internetu a daleko více!"
+"\n"
+"- Ulo¾it skrze %s na poèítaè: %s\n"
-#: ../../security/help.pm:1
+#: ../../standalone/drakbackup_.c:2562
#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
+msgid ""
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
msgstr ""
-"Povolí/zakáže kontrolu na nastavení promiskuitního režimu síťového rozhraní."
+"\t\t u¾ivatelské jméno: %s\n"
+"\t\t cesta: %s \n"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
+#: ../../standalone/drakbackup_.c:2563
+msgid ""
+"\n"
+"- Options:\n"
msgstr ""
-"Nejsou zde žádné FAT oddíly, které by bylo možné změnit (nebo není dostatek "
-"místa)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr "Nahoru"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
-msgstr "Firewall"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr "Oblast:"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr "(E)IDE/ATA kontrolér"
+"\n"
+"- Volby:\n"
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
-msgstr "Všechny vstupně/výstupní operace budou prováděny synchronně."
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
+msgstr "\tNezahrnout systémové soubory\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "Tiskový server"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
+msgstr "\tZálohování pou¾ívá tar a bzip2\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Custom configuration"
-msgstr "Vlastní nastavení"
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
+msgstr "\tZálohování pou¾ívá tar a gzip\n"
-#: ../../standalone/drakpxe:1
+#: ../../standalone/drakbackup_.c:2572
#, 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"
+"- Daemon (%s) include:\n"
msgstr ""
-"UrÄete, kde je umístÄ›n instalaÄní obraz.\n"
-"\n"
-"Pokud nemáte již existující adresář, zkopírujte prosím obsah CD nebo DVD.\n"
"\n"
+"- Démon (%s) zahrnuje :\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint Pierre a Miquelon"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
-msgstr "Září"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "ukládám motiv pro Bootsplash ..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
-msgstr "Portugalsko"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "Máte ještě nějaké jiné?"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", printing to %s"
-msgstr ", při tisku na %s"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "PÅ™iÅ™adit název poÄítaÄe ze získané DHCP adresy"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to normal mode"
-msgstr "Přepnout se do módu 'normální'"
-
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
-msgstr "Obecný"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Od cylindru %d do cylindru %d\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
-msgstr "SEM NAPIÅ TE TEXT"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "New profile..."
-msgstr "Nový profil..."
-
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
-#, c-format
-msgid "NONE"
-msgstr "ŽÃDNÉ"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "Na který disk chcete oddíl přesunout?"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
+msgstr "\t-Pevný disk.\n"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Display logo on Console"
-msgstr "Zobrazit logo na konzoli"
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
+msgstr "\t-CDROM.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Windows Domain"
-msgstr "Doména Windows"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (norwegian)"
-msgstr "Saami (Norské)"
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
+msgstr "\t-Páska \n"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Interface %s (on network %s)"
-msgstr "Rozhraní %s (na síti %s)"
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
+msgstr "\t-Sítí pøes FTP.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
-msgstr "INFO"
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
+msgstr "\t-Sítí pøes SSH.\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
-msgstr "Wallis a Futuna"
+#: ../../standalone/drakbackup_.c:2578
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Sítí pøes rsync.\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Je nutné nejprve vytvořit soubor /etc/dhcpd.conf!"
+#: ../../standalone/drakbackup_.c:2579
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Sítí pøes webdav.\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
-msgstr "Přítomnost FPU"
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
+msgstr "Pro první spu¹tìní pou¾ijte Prùvodce nebo Roz¹íøené.\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2587
msgid ""
-"No additional information\n"
-"about this service, sorry."
+"List of data to restore:\n"
+"\n"
msgstr ""
-"Nejsou žádné další\n"
-"informace o službě, promiňte."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "Na vaÅ¡em poÄítaÄi nebyly nalezeny žádné pÅ™ipojené skenery.\n"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Sestavit jedinou NIC -->"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "Marshall Islands"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "Je to správně?"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr "Hlavní(root) heslo"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Sestavit všechna jádra -->"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVDRAM device"
-msgstr "DVDRAM zařízení"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
-msgstr "pokud je nastaveno, vypisuje soubory bez vlastníka."
+"Seznam dat pro obnovení:\n"
+"\n"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2754
msgid ""
-"You don't have a swap partition.\n"
+"List of data corrupted:\n"
"\n"
-"Continue anyway?"
msgstr ""
-"Nemáte odkládací oddíl\n"
+"Seznam po¹kozených dat:\n"
"\n"
-"Chcete pÅ™esto pokraÄovat?"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Version: "
-msgstr "Verze: "
+#: ../../standalone/drakbackup_.c:2756
+msgid "Please uncheck or remove it on next time."
+msgstr "Zru¹te tuto volbu pøi dal¹ím spu¹tìní."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Server IP missing!"
-msgstr "Chybí IP adresa serveru!"
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
+msgstr "Zálo¾ní soubory jsou po¹kozené"
-#: ../../lang.pm:1
-#, c-format
-msgid "Suriname"
-msgstr "Surinam"
+#: ../../standalone/drakbackup_.c:2787
+msgid " All of your selected data have been "
+msgstr " V¹echna vybraná data byla "
-#: ../../network/adsl.pm:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "Use a floppy"
-msgstr "Použít disketu"
+msgid " Successfuly Restored on %s "
+msgstr " úspì¹nì obnovena na %s "
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
-msgstr "Povolit ACPI"
+#: ../../standalone/drakbackup_.c:2906
+msgid " Restore Configuration "
+msgstr " Obnovit nastavení "
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
-msgstr "Umožnit zápis běžným uživatelům"
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
+msgstr "Obnovit také ostatní soubory."
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
-msgstr "Grafické prostředí"
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
+msgstr ""
+"Seznam u¾ivatelù pro obnovení (od ka¾dého bude obnovena pouze poslední "
+"záloha)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
-msgstr "Gibraltar"
+#: ../../standalone/drakbackup_.c:3019
+msgid "Backup the system files before:"
+msgstr "Zálohovat systémové soubory pøed:"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Do nothing"
-msgstr "Nedělat nic"
+#: ../../standalone/drakbackup_.c:3021
+msgid "please choose the date to restore"
+msgstr "Vyberte datum obnovení zálohy"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete Client"
-msgstr "Odebrat klienta"
+#: ../../standalone/drakbackup_.c:3057
+msgid "Use Hard Disk to backup"
+msgstr "Pou¾ít pro zálohování pevný disk"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "Souborový systém: "
+#: ../../standalone/drakbackup_.c:3060
+msgid "Please enter the directory to save:"
+msgstr "Zadejte adresáø, kam bude umístìna záloha:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting network..."
-msgstr "Spouštím síť ...."
+#: ../../standalone/drakbackup_.c:3103
+msgid "FTP Connection"
+msgstr "FTP pøipojení"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
-msgstr "Vietnam"
+#: ../../standalone/drakbackup_.c:3110
+msgid "Secure Connection"
+msgstr "Bezpeèné pøipojení"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Popis položek"
+#: ../../standalone/drakbackup_.c:3134
+msgid "Restore from Hard Disk."
+msgstr "Obnovit z pevného disku."
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr "Optimalizujte vaÅ¡e zabezpeÄení pomocí distribuce Mandrake Linux"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
+msgstr "Zadejte adresáø, kde jsou umístìny zálohy"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-" Poděkování:\n"
-"\t- LTSP Projekt http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
+#: ../../standalone/drakbackup_.c:3204
+msgid "Select another media to restore from"
+msgstr "Vyberte dal¹í médium, kde jsou umístìny zálohy"
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Help"
-msgstr "Nápověda"
+#: ../../standalone/drakbackup_.c:3206
+msgid "Other Media"
+msgstr "Dal¹í média"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
-msgstr "Kontrolovat, zda je síťové rozhraní v promiskuitním režimu"
+#: ../../standalone/drakbackup_.c:3211
+msgid "Restore system"
+msgstr "Obnovit systém"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Your personal phone number"
-msgstr "VaÅ¡e osobní telefonní Äíslo"
+#: ../../standalone/drakbackup_.c:3212
+msgid "Restore Users"
+msgstr "Obnovit u¾ivatele"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which size do you want to keep for Windows on"
-msgstr "Jakou velikost oddílu chcete nechat pro Windows na"
+#: ../../standalone/drakbackup_.c:3213
+msgid "Restore Other"
+msgstr "Obnovit ostatní"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Zkušební stránka byl poslána na tiskárnu.\n"
-"Může chvilku trvat než zaÄne tisk.\n"
+#: ../../standalone/drakbackup_.c:3215
+msgid "select path to restore (instead of /)"
+msgstr "vyberte cestu pro obnovení (místo /)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Username required"
-msgstr "Vyžadováno uživatelské jméno"
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
+msgstr "Provést novou zálohu pøed obnovou (pouze pro pøírùstkovou zálohu)"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Device"
-msgstr "Zařízení"
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
+msgstr "Odebrat adresáøe u¾ivatele pøed obnovou."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3334
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."
-msgstr ""
-"NormálnÄ› zvolí instalaÄní program správnou klávesnici na základÄ› zvoleného\n"
-"jazyka, takže v tomto kroku není potřeba nic měnit. \n"
-"Může se ale stát, že nemáte klávesnici, která odpovídá vašemu jazyku: "
-"například\n"
-"pokud jste anglicky hovořící Švýcar, stejně chcete mít švýcarskou "
-"klávesnici.\n"
-"Nebo pokud mluvíte anglicky, ale žijete v Quebecu, je to stejný případ. V "
-"obou\n"
-"případech se můžete vrátit na tento instalaÄní krok a vybrat si "
-"odpovídající\n"
-"klávesnici ze seznamu.\n"
-"\n"
-"Pokud máte klávesnici pro jiný jazyk, klepnÄ›te na tlaÄítko \"%s\"\n"
-"a zobrazí se kompletní seznam všech podporovaných rozložení klávesnic.\n"
-"\n"
-"Pokud vyberete rozložení klávesnice založené na abecedě jiné než latince,\n"
-"budete v dalším dialogu vyzváni k výběru klávesové zkratky, která bude "
-"přepínat\n"
-"rozložení klávesnice mezi latinkou a vámi zvoleným rozložením."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Možnosti SMB (Windows 9x/NT) tiskárny"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-"Seznam oprávnÄ›ných uživatelů se zmÄ›nil, zapisuji znovu konfiguraÄní soubor."
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "mkinitrd optional arguments"
-msgstr "volitelné argumenty pro mkinitrd"
+"Vybrána obnova\n"
+"Záznam katalogu"
-#: ../advertising/03-software.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3344
msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
+"Restore Selected\n"
+"Files"
msgstr ""
-"Prohlížejte si Web pomocí prohlížeÄe Mozilla nebo Konqueror, ÄtÄ›te poÅ¡tu v "
-"Evolution nebo KMail, vytvářejte dokumenty v OpenOffice.org."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protokol použitý ve zbytku světa"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print test pages"
-msgstr "Tisk testovacích stránek"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Activate now"
-msgstr "Aktivovat nyní"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
-msgstr "64 MB nebo více"
+"Vybrána obnova\n"
+"Soubory"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3361
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."
+"Change\n"
+"Restore Path"
msgstr ""
-"Vyberte si testovací stránku, kterou chcete vytisknout.\n"
-"Poznámka: tisk testovací stránky s fotografií může trvat velmi dlouho nebo "
-"se na tiskárnÄ› s málo pamÄ›tí nemusí podaÅ™it vůbec. Ve vÄ›tÅ¡inÄ› případů staÄí "
-"vytisknout běžnou testovací stránku."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Vyberte prosím zařízení, ke kterému je skener %s připojen"
+"Zmìnit adresáø\n"
+"pro obnovu"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup_.c:3427
#, c-format
-msgid "Not formatted\n"
-msgstr "Nenaformátovaný\n"
+msgid "Backup files not found at %s."
+msgstr "Souboru pro zálohu z %s nenalezeny."
-#: ../../standalone/draksec:1
+#: ../../standalone/drakbackup_.c:3440
#, c-format
-msgid "Periodic Checks"
-msgstr "Pravidelné kontroly"
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+"Vlo¾te CD s oznaèením %s do CD\n"
+" mechaniky do pøípojného bodu /mnt/cdrom"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "PXE Server Configuration"
-msgstr "Nastavení PXE serveru"
+#: ../../standalone/drakbackup_.c:3440
+msgid "Restore From CD"
+msgstr "Obnovit z CD"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:3442
#, c-format
-msgid "Backup the system files before:"
-msgstr "Zálohovat systémové soubory před:"
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr "CD nemá správný název. Je oznaèeno %s."
-#: ../../security/level.pm:1
+#: ../../standalone/drakbackup_.c:3452
#, c-format
msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
-"Toto je standardní úroveň zabezpeÄení pro poÄítaÄ, který je používán jako "
-"klient pro připojení k internetu."
+"Vlo¾te pásku s názvem %s\n"
+" do páskové jednotky %s"
-#: ../../any.pm:1
-#, c-format
-msgid "First floppy drive"
-msgstr "první mechaniky"
+#: ../../standalone/drakbackup_.c:3452
+msgid "Restore From Tape"
+msgstr "Obnovit z pásky"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
+#: ../../standalone/drakbackup_.c:3454
#, c-format
-msgid "/File/_Quit"
-msgstr "/Soubor/U_konÄit"
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr "Páska nemá správný název. Má oznaèení %s."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak"
-msgstr "Dvořák"
+#: ../../standalone/drakbackup_.c:3474
+msgid "Restore Via Network"
+msgstr "Obnovit pøes sí»"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup_.c:3474
#, c-format
-msgid "Choose the new size"
-msgstr "Zvolte novou velikost"
+msgid "Restore Via Network Protocol: %s"
+msgstr "Obnovit pøes sí» pomocí protokolu: %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Media class"
-msgstr "Třída médií"
+#: ../../standalone/drakbackup_.c:3475
+msgid "Host Name"
+msgstr "Název poèítaèe"
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr "Aby se změna projevila, je nutné se odhlásit a opět přihlásit"
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
+msgstr "Cesta na poèítaèi nebo modul"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
-msgstr "Skener %s není zatím v této verzi Scannerdrake podporován."
+#: ../../standalone/drakbackup_.c:3483
+msgid "Password required"
+msgstr "Vy¾adováno heslo"
-#: ../../lang.pm:1
-#, c-format
-msgid "Faroe Islands"
-msgstr "Faroe Islands"
+#: ../../standalone/drakbackup_.c:3489
+msgid "Username required"
+msgstr "Vy¾adováno u¾ivatelské jméno"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Restart XFS"
-msgstr "Restartovat XFS"
+#: ../../standalone/drakbackup_.c:3492
+msgid "Hostname required"
+msgstr "Vy¾adován název poèítaèe"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
-msgstr "PÅ™idat poÄítaÄ/síť"
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
+msgstr "Vy¾adována cesta nebo modul"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Scannerdrake nebude nyní spuštěn."
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
+msgstr "Soubory obnoveny..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model name"
-msgstr "Název modelu"
+#: ../../standalone/drakbackup_.c:3513
+msgid "Restore Failed..."
+msgstr "Obnova selhala..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
-msgstr "Albánie"
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
+msgstr "Obnovit v¹echny zálohy"
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr "Britské teritorium Indického moře"
+#: ../../standalone/drakbackup_.c:3760
+msgid "Custom Restore"
+msgstr "Vlastní obnova"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Normal Mode"
-msgstr "Normální režim"
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
+msgstr "CD je v mechanice - pokraèovat."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "V mechanice není CDR/DVDR médium."
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
+msgstr "Procházet novì obnovený adresáø."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer connection type"
-msgstr "Typ připojení pro tiskárnu"
+#: ../../standalone/drakbackup_.c:3813
+msgid "Restore From Catalog"
+msgstr "Obnovit z katalogu"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
-msgstr "Ve vašem systému není žádný síťový adaptér!"
+#: ../../standalone/drakbackup_.c:3841
+msgid "Restore Progress"
+msgstr "Prùbìh obnovení"
+
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+msgid "Previous"
+msgstr "Pøedchozí"
+
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+msgid "Save"
+msgstr "Ulo¾it"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network %s"
-msgstr "Síť %s"
+#: ../../standalone/drakbackup_.c:3946
+msgid "Build Backup"
+msgstr "Vytvoøit zálohu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
-msgstr "Malayalam"
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+msgid "Restore"
+msgstr "Obnovit"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Hodnota %s je mimo rozsah!"
+#: ../../standalone/drakbackup_.c:4189
+msgid ""
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
+msgstr ""
+"Chyba pøi posílání po¹ty\n"
+" Vámi zvolený report nebyl odeslán\n"
+" Proveïte prosím nastavení sendmailu"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connect %s"
-msgstr "Připojit %s"
+#: ../../standalone/drakbackup_.c:4195
+msgid ""
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
+msgstr ""
+"Chyba pøi posílání souboru pøes FTP.\n"
+" Prosím opravte va¹e nastavení FTP."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "Restartuji CUPS..."
+#: ../../standalone/drakbackup_.c:4209
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr ""
+"Následující balíèky musí být instalovány:\n"
+" @list_of_rpm_to_install"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Tisk/Skenování/Foto karty na \"%s\""
+#: ../../standalone/drakbackup_.c:4232
+msgid "Please select data to restore..."
+msgstr "Prosím zvolte data pro obnovu..."
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
-msgstr ""
+#: ../../standalone/drakbackup_.c:4267
+msgid "Please select media for backup..."
+msgstr "Prosím zvolte si médium pro zálohy..."
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Zdvojený přípojný bod %s"
+#: ../../standalone/drakbackup_.c:4275
+msgid "Please select data to backup..."
+msgstr "Zkontrolujte prosím data pro zálohování..."
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
-msgstr "pokud je nastaveno, provádí kontrolu na chkrootkit."
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
+msgid ""
+"No configuration file found \n"
+"please click Wizard or Advanced."
+msgstr ""
+"Nebyl nalezen konfiguraèní soubor, \n"
+"kliknìte na Prùvodce nebo na Roz¹íøené."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "Nastavení připojení"
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
+msgstr "Vyvíjí se... èekejte prosím."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|Generic"
-msgstr "Neznámá|Obecná"
+#: ../../standalone/drakbackup_.c:4382
+msgid "Backup system files"
+msgstr "Zálohovat systémové soubory"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Pokaždé, když instalujete distribuci Mandrake Linux, je možné, že některé\n"
-"balíÄky byly od vydání distribuce aktualizovány. Mohly to být opravy chyb\n"
-"Äi Å™eÅ¡ení možných bezpeÄnostních problémů. Pokud chcete využít právÄ›\n"
-"této nabídky, je možné tyto balíÄky nyní stáhnout z Internetu. Zvolte \"%s"
-"\"\n"
-"pokud máte funkÄní pÅ™ipojení na Internet nebo \"%s\", pokud budete\n"
-"instalovat aktualizace později.\n"
-"\n"
-"Po zvolení \"%s\" se zobrazí seznam míst, odkud mohou být aktualizace "
-"získány.\n"
-"Vyberte si nejbližší místo. NáslednÄ› se objeví stromový seznam balíÄků,\n"
-"který je možno jeÅ¡tÄ› upravit a stisknutím tlaÄítka \"%s\" se provede "
-"stažení\n"
-"a instalace vybraných balíÄků. Akci můžete pÅ™eruÅ¡it klepnutím na \"%s\"."
+#: ../../standalone/drakbackup_.c:4384
+msgid "Backup user files"
+msgstr "Zálohovat u¾ivatelské soubory"
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-msgstr "Myanmar"
+#: ../../standalone/drakbackup_.c:4386
+msgid "Backup other files"
+msgstr "Zálohovat dal¹í soubory"
-#: ../../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
-#, c-format
-msgid "Quit"
-msgstr "Konec"
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
+msgstr "Celkový prùbìh"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "Automaticky rozmístit"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
+msgstr "soubory poslané pøes FTP"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Otestovat na vadné stopy?"
+#: ../../standalone/drakbackup_.c:4416
+msgid "Sending files..."
+msgstr "Posílám soubory..."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Other MultiMedia devices"
-msgstr "Další multimediální zařízení"
+#: ../../standalone/drakbackup_.c:4500
+msgid "Backup Now from configuration file"
+msgstr "Zálohovat z konfiguraèního souboru"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "burner"
-msgstr "vypalovaÄka"
+#: ../../standalone/drakbackup_.c:4505
+msgid "View Backup Configuration."
+msgstr "Prohlédnout konfiguraci zálohy."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Bug Description/System Information"
-msgstr "Popis chyby/Informace o systému"
+#: ../../standalone/drakbackup_.c:4526
+msgid "Wizard Configuration"
+msgstr "Prùvodce konfigurací"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (Default is all users)"
-msgstr " (Výchozí - všechny uživatele)"
+#: ../../standalone/drakbackup_.c:4531
+msgid "Advanced Configuration"
+msgstr "Roz¹íøená konfigurace"
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "No remote machines"
-msgstr "Nejsou žádné vzdálené poÄítaÄe"
+#: ../../standalone/drakbackup_.c:4536
+msgid "Backup Now"
+msgstr "Zálohovat nyní"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
+msgstr "DrakBackup"
+
+#: ../../standalone/drakbackup_.c:4624
msgid ""
+"options description:\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
+" In this step Drakbackup allow you to change:\n"
"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\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 option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
msgstr ""
+"Popis voleb:\n"
"\n"
-"Vítejte v Průvodci nastavením tiskárny\n"
+" V tomto kroku vám aplikace DrakBackup umo¾ní zmìnit:\n"
"\n"
-"Tento průvodce vám pomůže nainstalovat vaši tiskárnu nebo tiskárny připojené "
-"k tomuto poÄítaÄi.\n"
+" - Re¾im komprese:\n"
+" \n"
+" Pokud zvolíte kompresi bzip2, budete mít kompresi\n"
+" lep¹í ne¾ pomocí gzip (okolo 2-10%).\n"
+" Tato volba není zvolena jako výchozí, proto¾e\n"
+" vy¾aduje daleko více èasu (a¾ o 1000% více).\n"
"\n"
-"Pokud máte tiskárnu nebo tiskárny pÅ™ipojené k tomuto poÄítaÄi, zapojte je "
-"prosím a zapněte je; pak mohou být automaticky nalezeny. \n"
+" - Re¾im aktualizace:\n"
+"\n"
+" Tato volba aktualizuje zálohu, ale není moc u¾iteèná,\n"
+" proto¾e pøed aktualizací musíte nejdøíve zálohu\n"
+" dekomprimovat.\n"
+" \n"
+"- Re¾im pou¾ití souboru .backupignore:\n"
+"\n"
+" Stejnì jako pro cvs, i pro DrakBackup lze uvést seznam\n"
+" souborù v .backupignore, které budou pøi zálohování ignorovány.\n"
+" napø.:\n"
+" \\$> cat .backupignore\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
"\n"
-"Pokud jste pÅ™ipraveni, klepnÄ›te na tlaÄítko \"Dále\", nebo klepnÄ›te na "
-"tlaÄítko \"ZruÅ¡it\" pokud nechcete v tuto chvíli tiskárnu(y) nastavovat."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "Ověření pomocí NIS"
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4654
msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-"Volba ''Omezení nastavení z příkazové řádky'' je bezpředmětné bez hesla"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Sdílení Internetového připojení je zapnuto"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "Spojené Arabské Emiráty"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "IO_0 karty"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
-msgstr "Zakázat lokální konfiguraci"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "Thajsko"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "IO_1 karty"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
-msgstr "Hledat:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "Kazachstán"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
-msgstr "SmÄ›rovaÄe:"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Write"
-msgstr "Zápis"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Zobrazit seznam všech vzdálených CUPS tiskáren"
-
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux Instalace %s"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
-msgstr "Neznámý ovladaÄ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "Thajské"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr "Bouvet Island"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "Možnosti vytáÄení"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "Pokud není zadán žádný port, bude jako výchozí použit port 631."
+"\n"
+" Nìkteré chyby pøi nastavení po¹ty jsou zpùsobeny\n"
+" ¹patnou konfigurací programu postfix. Pro vyøe¹ení\n"
+" nastavte myhostname a mydomain v /etc/postfix/main.cf\n"
+"\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4662
msgid ""
-" - Per client system configuration files:\n"
-" \tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be\n"
-" turned back off, retaining the configuration files, once the client "
-"machine is configured."
-msgstr ""
-" - Soubory s nastavením systému pro každého klienta:\n"
-" \tSkrze clusternfs může mít každý bezdiskový klient své vlastní "
-"unikátní soubory s nastavením\n"
-" \tumístěné na serveru v kořenovém souborovém systému. drakTermServ "
-"bude v budoucnu pomáhat\n"
-" \ts tvorbou těchto souborů,\n"
-" \tnapÅ™. /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
-"keyboard zvlášť pro\n"
-" \tkaždého klienta.\n"
-"\n"
-" Pozn. Povolení nastavení lokálního hardware umožní také přihlášení "
-"uživatele root\n"
-" na terminálový server se všech stanic, které mají tuto možnost "
-"povolenu.\n"
-" Lokální natavení hardware může být ale zakázáno, takže konfiguraÄní\n"
-"soubory budou takové, jak byl klient nastaven."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\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 ""
-"Vyměňte prosím CD!\n"
+"popis voleb:\n"
+"\n"
+"- Záloha systémových souborù:\n"
+" \n"
+"\tTato volba zálohuje adresáø /etc, který obsahuje v¹echny\n"
+"\tkonfiguraèní soubory. Dávejte pozor pøi obnovì na to,\n"
+"\taby se nepøepsaly soubory:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Zálohovat soubory u¾ivatelù:\n"
+"\n"
+"\tTato volba dovoluje vybrat v¹echny u¾ivatele, které\n"
+"\t\tchcete zálohovat.\n"
+"\tAby se u¹etøilo místo na disku, není dobré zahrnout cache\n"
+"\tod prohlí¾eèe.\n"
+"\n"
+" - Zálohovat ostatní soubory:\n"
+"\n"
+"\tTato volba dovolí pøidat dal¹í data pro zálohování.\n"
+"\tV souèasnosti není mo¾né pøi tomto zálohování zvolit\n"
+"\tpøírùstkové zálohování.\t\n"
+"\n"
+" - Pøírùstkové zálohování:\n"
+"\n"
+"\tPøírùstkové zálohování je velmi mocný druh zálohování,\n"
+"\tproto¾e dovoluje zálohovat v¹echna data pouze poprvé\n"
+"\ta dále se zálohují pouze zmìny.\n"
+"\tBìhem obnovy tak budete moci zadat, od jakého data se\n"
+"\tmají data obnovit.\n"
+"\tPokud nezvolíte tuto mo¾nost, bude pøi ka¾dé záloze\n"
+"\tpøedchozí záloha smazána.\n"
"\n"
-"Prosím vložte CD oznaÄené \"%s\" do mechaniky a stisknÄ›te Ok.\n"
"\n"
-"Pokud toto CD nemáte, stiskněte Zrušit a toto CD nebude nainstalováno."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "Polské"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Online"
-msgstr "Mandrake Online"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
-msgstr "\t-Sítí přes WebDAV.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", multifunkÄní zařízení na paralelním portu"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4701
msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
+"\n"
msgstr ""
-"Ve vaÅ¡em poÄítaÄi nebyl nalezen žádný síťový adaptér. SpusÅ¥te prosím program "
-"pro nastavení hardware."
-
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "Maska sítě"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "No hard drives found"
-msgstr "Nenalezeny žádné pevné disky"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "2 tlaÄítka"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech série CC (sériová)"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "Jaké je vaše ISDN připojení?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "ZnaÄka"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "Uložit na disketu"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check open ports"
-msgstr "Kontrolovat otevřené porty"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Edit selected printer"
-msgstr "Upravit vybranou tiskárnu"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Autodetekce tiskárny"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Kterou z těchto ISDN karet máte?"
+"Popis voleb pro obnovu:\n"
+"\n"
+"Bude pou¾ita záloha s nejaktuálnìj¹ím datem, proto¾e pøi\n"
+"pøírùstkovém zálohování je nutné provádìt obnovu jednu\n"
+"za druhou smìrem ke star¹ím datùm.\n"
+"\n"
+"Pokud nechcete obnovit u¾ivatele, odznaète v¹echny\n"
+"jeho za¹krtávací políèka.\n"
+"\n"
+"Jinak je mo¾né si vybrat pouze jednoho z nich\n"
+"\n"
+" - Pøírùstkové zálohování:\n"
+"\n"
+"\tPøírùstkové zálohování je velmi mocný druh zálohování,\n"
+"\tproto¾e dovoluje zálohovat v¹echna data pouze poprvé\n"
+"\ta dále se zálohují pouze zmìny.\n"
+"\tBìhem obnovy tak budete moci zadat, od jakého data se\n"
+"\tmají data obnovit.\n"
+"\tPokud nezvolíte tuto mo¾nost, bude pøi ka¾dé záloze\n"
+"\tpøedchozí záloha smazána. \n"
+"\n"
+"\n"
+"\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4727
+#, fuzzy
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."
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
-"NFS je oblíbený protokol pro sdílení souborů přes sítě TCP/IP.\n"
-"Tato služba poskytuje NFS server, jehož nastavení je v /etc/exports."
+" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Msec"
-msgstr "Msec"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4729
msgid ""
-"=> Notice, a label changed:\n"
-"%s"
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-"=> Oznamuji změnu návěští:\n"
-"%s"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
-msgstr "PoÄet bufferů pro zachycení :"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Vaše volba? (0/1, výchozí '%s') "
+" aktualizace 2002 MandrakeSoft od Stewa Benedicta <sbenedict\\@mandrakesoft."
+"com>"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4732
+#, fuzzy
msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a file system).\n"
+"Description:\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"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\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"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\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"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
"\n"
-"Click on \"%s\" when you are ready to format partitions.\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\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 ""
-"Každý nově vytvořený diskový oddíl musí být před použitím zformátován\n"
-"(formátováním se myslí vytvoření souborového systému).\n"
+"Popis:\n"
"\n"
-"Nyní lze formátovat již existující diskové oddíly pro vymazání\n"
-"všech dat, která obsahují. Pokud to chcete provést, vyberte diskové oddíly\n"
-"pro přeformátování.\n"
+" DrakBackup je nástroj na zálohování systému.\n"
+" Bìhem konfigurace mù¾ete vybrat: \n"
+"\t- Systémové soubory,\n"
+"\t- Soubory u¾ivatelù,\n"
+"\t- Ostatní soubory.\n"
+"\tnebo Celý systém a jiné (jako jsou oddíly s Windows).\n"
"\n"
-"Není ale nutné přeformátovat všechny již existující diskové oddíly.\n"
-"Je nutné pÅ™eformátovat oddíly, které obsahují operaÄní systém (jako je \"/"
-"\",\n"
-"\"/usr\" nebo \"/var\") ale není nutné přeformátovat oddíly, které obsahují\n"
-"data, která chcete zachovat (typicky /home).\n"
+" DrakBackup dovoluje zálohovat na:\n"
+"\t- Pevný disk.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (se spu¹tìním, záchranou a autoinstalací).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Páskovou jednotku.\n"
+"\n"
+" DrakBackup dovoluje provést obnovu do vybraného adresáøe.\n"
+"\n"
+" Jako výchozí jsou umístìny v¹echny zálohy do adresáøe\n"
+" /var/lib/drakbackup \n"
"\n"
-"PÅ™i výbÄ›ru diskových oddílů, které se budou formátovat buÄte opatrní, "
-"všechna\n"
-"data na formátovaných oddílech budou ztracena a nelze je již obnovit.\n"
+" Konfiguraèní soubor:\n"
+"\t/etc/drakconf/drakbackup/drakbackup.conf\n"
"\n"
-"Pokud je vše připraveno pro formátování, klepněte na \"%s\".\n"
"\n"
-"Pokud chcete vybrat jiné oddíly pro instalaci systému Mandrake Linux,\n"
-"klepněte na \"%s\" \n"
-".\n"
+"Postup pøi obnovì:\n"
+"\n"
+" Pøi provádìní obnovy odstraní DrakBackup pùvodní adresáø\n"
+" a ovìøí, ¾e zálohované soubory nejsou po¹kozeny.\n"
+" Doporuèuje se ale provést zálohu tìchto dat pøed provedením\n"
+" obnovy.\n"
+"\n"
"\n"
-"Klepnutím na \"%s\" můžete vybrat, které oddíly budou otestovány\n"
-"na vadné bloky."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "French"
-msgstr "Francouzské"
+#: ../../standalone/drakbackup_.c:4769
+msgid ""
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
+msgstr ""
+"popis voleb:\n"
+"\n"
+"Buïte opatrní pøi zálohování na FTP, proto¾e na server je poslána\n"
+"pouze ji¾ vytvoøená záloha.\n"
+"Je tudí¾ vhodné nejdøíve provést zálohu na disk pøed tím, ne¾\n"
+"ji po¹lete na server.\n"
+"\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTY)"
-msgstr "České (QWERTY)"
+#: ../../standalone/drakbackup_.c:4778
+msgid ""
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
+msgstr ""
+"\n"
+"Problémy pøi obnovì:\n"
+"\n"
+"Pøi obnovování DrakBackup nejdøíve ovìøuje v¹echny\n"
+"zálohované soubory.\n"
+"Pøed tím, ne¾ je soubor obnoven, provede DrakBackup výmaz\n"
+"pùvodního souboru, a tak pøijdete o v¹echna data.\n"
+"Buïte proto opatrní a nesna¾te se modifikovat zálohovaná\n"
+"data ruènì.\n"
+"\n"
-#: ../../security/l10n.pm:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Allow X Window connections"
-msgstr "Povolit připojení na X Window"
+msgid "Installation of %s failed. The following error occured:"
+msgstr "Instalace %s neuspìla. Stala se tato chyba:"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "Probíhá detekce hardware"
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
+msgstr "Nástroj spoleènosti Mandrake pro hlá¹ení chyb"
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
-#, c-format
-msgid "Net Device"
-msgstr "Síťové zařízení"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Prùvodce pro nové u¾ivatele"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "Souhrn"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Nástroj na synchronizaci"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Paralelní porty: /dev/lp0, /dev/lp1,... je ekvivalentní LPT1:, LPT2:, ...,"
-"první USB tiskárna: /dev/usb/lp0, druhá USB tiskárna: /dev/usb/lp1,...)."
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+msgid "Standalone Tools"
+msgstr "Samostatné nástroje"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Next"
-msgstr "Další"
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Zaváděcí program nelze nainstalovat na oddíl %s\n"
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msec"
-#: ../../network/network.pm:1
-#, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp/zeroconf)"
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Vzdálené ovládání"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Vítejte.\n"
-"\n"
-"Parametry pro automatickou instalaci jsou přístupné v sekci nalevo"
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Správce software"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
-msgstr ""
-"pro správnou funkci je požadován balíÄek ImageMagick.\n"
-"BalíÄek nainstalujete tlaÄítkem \"OK\", nebo skonÄete tlaÄítkem \"ZruÅ¡it\"."
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Telnet server"
-msgstr "X server"
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Nástroj pro migraci z Windows"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Litevské \"Äíselná Å™ada\" QWERTY"
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "UserDrake"
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-"Následující balíÄky budou odebrány pro umožnÄ›ní aktualizace systému: %s\n"
-"\n"
-"\n"
-"Opravdu chcete odebrat tyto balíÄky?\n"
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Prùvodci nastavením"
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
-msgstr "Anguilla"
+#: ../../standalone/drakbug_.c:75
+msgid "Application:"
+msgstr "Aplikace:"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "NIS Doména"
+#: ../../standalone/drakbug_.c:76
+msgid "Package: "
+msgstr "Balíèek: "
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "Antarktida"
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
+msgstr "Jádro: "
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbug_.c:78
+msgid "Release: "
+msgstr "Verze: "
+
+#: ../../standalone/drakbug_.c:93
msgid ""
"\n"
-"- User Files:\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
msgstr ""
"\n"
-"- Soubory uživatelů:\n"
+"\n"
+"Chcete-li poslat hlá¹ení o chybì, klepnìte na tlaèítko pro nahlá¹ení chyby.\n"
+"Otevøe se okno prohlí¾eèe sítì Internet na adrese https://drakbug."
+"mandrakesoft.com,\n"
+"kde najdete formuláø k vyplnìní. Vý¹e zobrazené informace budou na tento "
+"server\n"
+"rovnì¾ pøeneseny.\n"
+"\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
-msgstr "Volby pro připojení"
+#: ../../standalone/drakbug_.c:112
+msgid "Report"
+msgstr "Hlá¹ení"
-#: ../../lang.pm:1
-#, c-format
-msgid "Jamaica"
-msgstr "Jamajka"
+#: ../../standalone/drakbug_.c:148
+msgid "Not installed"
+msgstr "Není instalováno"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
-msgstr ""
-"Přiřazuje přímá zařízení blokovým (například diskové oddíly)\n"
-"pro aplikace jako je Oracle nebo DVD pÅ™ehrávaÄ"
+#: ../../standalone/drakbug_.c:160
+#, fuzzy
+msgid "Package not installed"
+msgstr "Není instalováno"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Čekejte prosím, připravuji instalaci"
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
+msgstr "pøipojuji se k prùvodci Bugzilla ..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "České (QWERTZ)"
+#: ../../standalone/drakbug_.c:180
+msgid "No browser available! Please install one"
+msgstr "Není k dispozici ¾ádný prohlí¾eè! Prosím nainstalujte nìjaký."
-#: ../../network/network.pm:1
+#: ../../standalone/drakconnect_.c:75
#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Sledovat id síťové karty (užiteÄné u notebooků)"
+msgid "Network configuration (%d adapters)"
+msgstr "Nastavení sítì (%d adaptéry(ù))"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Číslo portu musí být celé Äíslo!"
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+msgid "Profile: "
+msgstr "Profil: "
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "You must choose an image file first!"
-msgstr "Nejprve musíte vybrat soubor s obrazem!"
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
+msgstr "Smazat profil..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Obnovit z pevného disku."
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
+msgstr "Smazat profil:"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "Přidat do LVMu"
+#: ../../standalone/drakconnect_.c:125
+msgid "New profile..."
+msgstr "Nový profil..."
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "DNS server"
+#: ../../standalone/drakconnect_.c:131
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Zadejte název vytváøeného profilu (nový profil je vytvoøen jako kopie "
+"vybraného) :"
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr "Trinidad a Tobago"
+#: ../../standalone/drakconnect_.c:157
+msgid "Hostname: "
+msgstr "Název poèítaèe: "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD ani LprNG nepodporují IPP tiskárny.\n"
+#: ../../standalone/drakconnect_.c:164
+msgid "Internet access"
+msgstr "Pøístup na Internet"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host name or IP."
-msgstr "Název poÄítaÄe nebo IP adresa."
+#: ../../standalone/drakconnect_.c:177
+msgid "Type:"
+msgstr "Typ:"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Edit"
-msgstr "/Ú_pravy"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "Brána(gateway):"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "jednoduchý"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Interface:"
+msgstr "Rozhraní:"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "Vše smazat"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
+msgstr "Status:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No test pages"
-msgstr "Bez testovací stránky"
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
+msgstr "Èekejte prosím"
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falklandy (Malvinas)"
+#: ../../standalone/drakconnect_.c:216
+msgid "Configure Internet Access..."
+msgstr "Nastavuji pøístup na Internet..."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptér %s: %s"
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+msgid "LAN configuration"
+msgstr "Nastavení LAN"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Boot disk creation"
-msgstr "Vytváření zaváděcí diskety"
+#: ../../standalone/drakconnect_.c:228
+msgid "Driver"
+msgstr "Ovladaè"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
-msgstr "Pondělí"
+#: ../../standalone/drakconnect_.c:228
+msgid "Interface"
+msgstr "Rozhraní"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown model"
-msgstr "Neznámý model"
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
+msgstr "Protokol"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
-msgstr ""
-"pokud je nastaveno, kontroluje, které soubory/adresáře jsou zapisovatelné "
-"pro všechny."
+#: ../../standalone/drakconnect_.c:228
+msgid "State"
+msgstr "Status"
-#: ../../help.pm:1
-#, c-format
-msgid "authentication"
-msgstr "ověření"
+#: ../../standalone/drakconnect_.c:240
+msgid "Configure Local Area Network..."
+msgstr "Nastavuji lokální sí»..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now"
-msgstr "Zálohovat nyní"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
+msgstr "Kliknìte pro spu¹tìní prùvodce ->"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/_Soubor"
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "Prùvodce..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Odebírám tiskárnu ze Star Office/OpenOffice.org/GIMP"
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
+msgstr "Pou¾ít"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Spustit paketový filtr pro jádra Å™ady 2.2, který chrání poÄítaÄ\n"
-"proti útokům ze sítě."
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Connected"
+msgstr "Pøipojen"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Editable"
-msgstr "Upravitelný"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Not connected"
+msgstr "Nepøipojen"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
-msgstr "Kterého dhcp klienta chcete použít? (standardní je dhcp-client)"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
+msgstr "Pøipojit..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr "Tamilské (ISCII)"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
+msgstr "Odpojit..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
-msgstr "Mayotte"
+#: ../../standalone/drakconnect_.c:400
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr "Varování, bylo detekováno jiné pøipojení k Internetu, zøejmì je to sí»"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
-msgstr "Nastaví velikost historie pro příkazy. Hodnota -1 znamená neomezená."
+#: ../../standalone/drakconnect_.c:427
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Nemáte nakonfigurováno ¾ádné rozhraní.\n"
+"Nastavte jej kliknutím na 'Konfigurovat'"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d KB\n"
-msgstr "%d KB\n"
+#: ../../standalone/drakconnect_.c:449
+msgid "LAN Configuration"
+msgstr "Nastavení LAN"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Vytvářím disketu pro automatickou instalaci..."
+msgid "Adapter %s: %s"
+msgstr "Adaptér %s: %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for scanners ..."
-msgstr "Vyhledávám skenery..."
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
+msgstr "Protokol o spu¹tìní"
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
-msgstr "Rusko"
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
+msgstr "Spustit pøi startu"
-#: ../../steps.pm:1
-#, c-format
-msgid "Partitioning"
-msgstr "Rozdělení disku"
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
+msgstr "DHCP klient"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
-msgstr "detekovaná(é) síťová(é) karta(y)"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "activate now"
+msgstr "aktivovat nyní"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
-msgstr "Syslog"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "deactivate now"
+msgstr "deaktivovat nyní"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create catalog!"
-msgstr "Nelze vytvořit katalog!"
+#: ../../standalone/drakconnect_.c:499
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Toto rozhraní je¹tì nebylo nastaveno.\n"
+"Spus»te prùvodce konfigurací z hlavního okna"
-#: ../advertising/11-mnf.pl:1
-#, c-format
+#: ../../standalone/drakconnect_.c:556
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."
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
msgstr ""
-"DokonÄete vaÅ¡e nastavení bezpeÄnosti s tímto snadno použitelným software, "
-"který se skládá z velmi výkonných komponent jako firewall, server a klient "
-"virtuální soukromé sítě (VPN), systém detekce průniku a správce provozu."
+"Nemáte ¾ádné pøipojení k Internetu.\n"
+"Vytvoøte si jej kliknutím na 'Konfigurovat'"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
-msgstr "Pro automatické rozdělení disku není dostatek místa"
+#: ../../standalone/drakconnect_.c:580
+msgid "Internet connection configuration"
+msgstr "Konfigurace pøipojení k internetu"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "Hlavní(root) heslo"
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet Connection Configuration"
+msgstr "Konfigurace pøipojení k internetu"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable IP spoofing protection"
-msgstr "Povolit ochranu před IP spoofingem"
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+msgid "Connection type: "
+msgstr "Typ pøipojení:"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
-msgstr ""
-"Pro vaÅ¡i zvukovou kartu (%s) není žádný vhodný volnÄ› použitelný ovladaÄ, ale "
-"existuje alternativní proprietární ovladaÄ na \"%s\"."
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
+msgstr "Parametry"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group :"
-msgstr "Skupina :"
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Brána(gateway)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "Když změníte velikost oddílu %s, ztratíte tím všechna jeho data"
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
+msgstr "Ethernetová karta"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Konfigurace připojení k internetu"
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
+msgstr "DHCP klient"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
-msgstr ""
-"Přidá jméno k výjimkám, které se nekontrolují na dobu platnosti pomocí msec."
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-iso8859-2,*"
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "USB"
-msgstr "LSB"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Module name"
+msgstr "Název modulu"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "Vyhledávám TV kanály"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Size"
+msgstr "Velikost"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
-msgstr "Jádro: "
+#: ../../standalone/drakfloppy_.c:45
+msgid "drakfloppy"
+msgstr "drakfloppy"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_About..."
-msgstr "/_O aplikaci..."
+#: ../../standalone/drakfloppy_.c:63
+msgid "boot disk creation"
+msgstr "vytváøení zavádìcích disket"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
-msgstr "Bengálské"
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr "pøedvolené"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakfloppy_.c:87
#, c-format
-msgid "Preference: "
-msgstr "Nastavení: "
+msgid "DrakFloppy Error: %s"
+msgstr "Chyba DrakFloppy: %s"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Služby: aktivováno %d z %d registrovaných"
+#: ../../standalone/drakfloppy_.c:98
+msgid "kernel version"
+msgstr "verze jádra"
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "Startovací disketa"
+#: ../../standalone/drakfloppy_.c:104
+msgid "General"
+msgstr "Obecné"
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "Solomon Islands"
+#: ../../standalone/drakfloppy_.c:109
+msgid "Expert Area"
+msgstr "Expertní nastavení"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Vyzkoušejte prosím, zda funguje myš:"
+#: ../../standalone/drakfloppy_.c:112
+msgid "mkinitrd optional arguments"
+msgstr "volitelné argumenty pro mkinitrd"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
+#: ../../standalone/drakfloppy_.c:113
+msgid "Add a module"
+msgstr "Pøidat modul"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
-msgstr "Pracovní skupina"
+#: ../../standalone/drakfloppy_.c:133
+msgid "force"
+msgstr "vnutit"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Název nebo IP adresa tiskárny"
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
+msgstr "pokud je potøeba"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "down"
-msgstr "hotovo"
+#: ../../standalone/drakfloppy_.c:135
+msgid "omit scsi modules"
+msgstr "vynechat SCSI moduly"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Path or Module"
-msgstr "Cesta na poÄítaÄi nebo modul"
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
+msgstr "vynechat RAID moduly"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Název fronty může obsahovat pouze písmena, Äíslice a podtržítko"
+#: ../../standalone/drakfloppy_.c:172
+msgid "Remove a module"
+msgstr "Odebrat modul"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Show current interface configuration"
-msgstr "Zobrazit aktuální nastavení rozhraní"
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
+msgstr "Výstup"
-#: ../../standalone/printerdrake:1
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
+msgstr "Vytvoøit disk"
+
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "Add Printer"
-msgstr "Přidat tiskárnu"
+msgid "Be sure a media is present for the device %s"
+msgstr "Zkontrolujte, zda v je zaøízení %s vlo¾eno médium"
-#: ../../security/help.pm:1
+#: ../../standalone/drakfloppy_.c:341
#, 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."
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
-"Argument udává, zda je klient oprávněn se připojit k X serveru\n"
-"na tcp port 6000 nebo ne."
+"V zaøízení %s není ¾ádné médium, nebo je médium chránìno proti zápisu.\n"
+"Vlo¾te prosím nìjaké."
-#: ../../help.pm:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "Development"
-msgstr "Vývoj"
+msgid "Unable to fork: %s"
+msgstr "Nelze provést fork: %s"
-#: ../../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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakfloppy_.c:349
#, c-format
-msgid "Done"
-msgstr "Hotovo"
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Nelze korektnì ukonèit mkbootdisk: \n"
+" %s \n"
+" %s"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Web Server"
-msgstr "Webový server"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
+msgstr "Hledám instalované fonty"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "Chile"
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
+msgstr "Odznaèit instalované fonty"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tNezahrnout systémové soubory\n"
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
+msgstr "zpracovávám v¹echny fonty"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Inkoustové tiskárny dodávané firmou Lexmark podporují pouze tisk na lokální "
-"tiskárně, takže nelze tisknout přes vzdálený server. Prosím připojte "
-"tiskárnu na lokální port nebo ji nastavte na tom poÄítaÄi, ke kterému bude "
-"připojena."
+#: ../../standalone/drakfont_.c:242
+msgid "no fonts found"
+msgstr "nebyly nalezeny ¾ádné fonty"
-#: ../../printer/printerdrake.pm:1
-#, 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!"
-msgstr ""
-"MultifunkÄní zařízení od HP bylo automaticky nastaveno pro možnost "
-"skenování. Nyní lze skenovat z příkazového řádku příkazem \"scanimage"
-"\" (příkazem \"scanimage -d hp:%s\" zvolíte požadovaný skener, pokud jich "
-"máte více) nebo z grafického prostředí pomocí \"xscanimage\" nebo \"xsane\". "
-"Pokud používáte program GIMP, můžete také skenovat výběrem z nabídky \"Soubor"
-"\"/\"Získat\". Více informací získáte také příkazem \"man scanimage\" "
-"spuštěným na příkazové řádce.\n"
-"\n"
-"Nepoužívejte pro toto zařízení \"scannerdrake\"!"
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+msgid "done"
+msgstr "hotovo"
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "(už byl přidán %s)"
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
+msgstr "nelze nalézt ¾ádné fonty v pøipojeném oddíle"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation in progress"
-msgstr "Probíhá instalace zaváděcího programu"
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
+msgstr "Znovu vybrat správné fonty"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
-msgstr ", používá příkaz %s"
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
+msgstr "nelze nalézt ¾ádný font.\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt a Shift souÄasnÄ›"
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
+msgstr "Hledat fonty mezi instalovanými"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
-msgstr "Příznaky"
+#: ../../standalone/drakfont_.c:359
+msgid "Fonts copy"
+msgstr "Kopie fontu"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Users"
-msgstr "Přidat/Odebrat uživatele"
+#: ../../standalone/drakfont_.c:363
+msgid "True Type fonts installation"
+msgstr "Instalace písem True Type"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Chybí IP adresa poÄítaÄe/sítÄ›."
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
+msgstr "èekejte prosím, právì bì¾í ttmkfdir... "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
-msgstr "každý týden"
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
+msgstr "Instalace True Type fontù je dokonèena"
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "Nastavení"
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
+msgstr "Konverze fontù"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "Zadaná IP adresa pro poÄítaÄ nebo síť není správná.\n"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
+msgstr "vytváøím type1inst"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "VytvoÅ™it/PÅ™enést záložní klíÄe pro SSH"
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
+msgstr "Odkazy na Ghostscript"
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr "Zde je kompletní seznam dostupných zemí"
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
+msgstr "konverze ttf fontù"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Alternativní testovací stránka (A4)"
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
+msgstr "konverze pfm fontù"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
+msgstr "Ignorovat doèasné soubory"
+
+#: ../../standalone/drakfont_.c:459
+msgid "Restart XFS"
+msgstr "Restartovat XFS"
+
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
+msgstr "Ignorovat soubory s fonty"
+
+#: ../../standalone/drakfont_.c:528
+msgid "xfs restart"
+msgstr "restart xfs"
+
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
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."
+"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 using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
msgstr ""
-"Pokud máte všechna CD vypsaná níže, klepněte na Ok.\n"
-"Pokud nemáte žádné z nich, klepněte na Zrušit.\n"
-"Pokud vám chybí pouze nÄ›které z nich, odznaÄte je a zvolte Ok."
+"Pøed instalací fontù se ujistìte, ¾e máte potøebná práva na instalací a "
+"pou¾ívání na systému.\n"
+"\n"
+"- Fonty lze instalovat bì¾ným zpùsobem. Ve výjimeèných pøípadech mù¾e ¹patný "
+"font zpùsobit zamrznutí X serveru."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
-msgstr "Čekejte prosím"
+#: ../../standalone/drakfont_.c:621
+msgid "Fonts Importation"
+msgstr "Zavádìní fontù"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
+msgstr "Naèíst fonty z Windows"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup user files"
-msgstr "Zálohovat uživatelské soubory"
+#: ../../standalone/drakfont_.c:658
+msgid "Uninstall Fonts"
+msgstr "Odinstalovat fonty"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "New"
-msgstr "Nový"
+#: ../../standalone/drakfont_.c:669
+msgid "Advanced Options"
+msgstr "Roz¹íøené volby"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:677
+msgid "Font List"
+msgstr "Seznam fontù"
+
+#: ../../standalone/drakfont_.c:737
+#, fuzzy
msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only 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 ""
-"Následující rozhodnutí je jedním z těch, které ovlivňují celkovou "
-"bezpeÄnost\n"
-"systému GNU/Linux, tj. volba hesla pro uživatele \"Root\". Root je správcem\n"
-"systému, je odpovědný za provádění aktualizací, přidávání uživatelů a také\n"
-"za celkové nastavení systému. Zkráceně: \"root\" může úplně všechno!\n"
-"To je také důvodem, proÄ se heslo volí takové, aby se nedalo lehce uhodnout\n"
-"a instalaÄní program DrakX zkontroluje, zda není příliÅ¡ jednoduché. Jak "
-"vidíte,\n"
-"je možné heslo nezadat, ale toto velmi důraznÄ› nedoporuÄujeme, a to z "
-"jednoho\n"
-"důvodu. Nemyslete si, že pokud spustíte systém GNU/Linux, že je vÅ¡e bezpeÄné "
-"a že se nemůže nic stát.. Vzhledem k tomu, že na uživatele \"root\" se "
-"nevztahují\n"
-"běžná omezení, může nenávratně poškodit celý systém, smazat data z jiných\n"
-"oddílů na disku a operaÄních systémů, vymazat potÅ™ebné soubory nebo celé\n"
-"oddíly, atd. Proto je důležité, aby nebylo jednoduché se tímto uživatelem "
-"stát.\n"
-"\n"
-"Zvolené heslo by se mÄ›lo skládat ze znaků a Äíslic a mÄ›lo by být dlouhé\n"
-"minimálně 8 znaků. Také není dobré si ho kamkoliv poznamenávat - po\n"
-"nalezení vaší poznámky může být velmi jednoduché se do vašeho systému\n"
-"dostat.\n"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@mandrakesoft.com\n"
"\n"
-"Nevolte však heslo příliš dlouhé nebo komplikované, bude nutné si jej bez\n"
-"větších potíží zapamatovat.\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"
-"Při zadávání nebude heslo na obrazovce zobrazeno. Proto se heslo zadává\n"
-"dvakrát pro ověření, zda nedošlo k překlepu při prvním pokusu. Tak je možné\n"
-"heslo opravit a zadat dvakrát stejné. Pokud se vám přesto podaří zadat "
-"stejný\n"
-"překlep dvakrát, budete muset toto heslo s překlepem použít při prvním\n"
-"přihlášení.\n"
+" 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"
-"Jestliže chcete použít ověřovací server, klepnÄ›te na tlaÄítko \"%s\".\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"
-"Pokud se ve vaší síti používá pro ověřování uživatelů protokol LDAP, NIS,\n"
-"nebo ověřovací doména Windows PDC, vyberte odpovídající protokol pro \"%s"
-"\".\n"
-"Pokud o tom nic nevíte, zeptejte se správce vaší sítě.\n"
+" 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"
"\n"
-"Pokud není poÄítaÄ pÅ™ipojen do žádné spravované sítÄ› a věříte vÅ¡em, kteří "
-"mají\n"
-"přístup k poÄítaÄi, můžete vybrat volbu \"%s\"."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
-msgstr "Ochrana před zahlcením dotazy na doménová jména"
-
-#: ../../help.pm:1
-#, 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."
msgstr ""
-"Nyní si vyberte úroveň zabezpeÄení vaÅ¡eho poÄítaÄe Je zÅ™ejmé, že Äím více\n"
-"je poÄítaÄ využíván a Äím cennÄ›jší data obsahuje, tím je potÅ™eba zvolit "
-"vyšší\n"
-"úroveň. Na druhou stranu, vyšší úroveň znesnadňuje některé obvyklé postupy.\n"
+" Tento program je svobodný software; mù¾ete ho ¹íøit a/nebo modifikovat\n"
+" podle specifikace GNU General Public Licence, která byla publikována\n"
+" Free Software Foundation; buï verze 2, nebo (podle volby) pozdìj¹í verze.\n"
"\n"
-"Pokud nevíte co vybrat, ponechte výchozí nastavení."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "Nahrát z diskety"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Následující tiskárna byla automaticky detekována. "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Uses command %s"
-msgstr "Používá příkaz %s"
+" Tento program je distribuován s nadìjí, ¾e bude u¾iteèný,\n"
+" ale BEZ JAKÝCHKOLIV ZÁRUK; BEZ NÁROKU NA PROFIT. Více detailù naleznete\n"
+" v licenci GNU General Public Licence.\n"
+"\n"
+" Kopii GNU General Public Licence mù¾ete obdr¾et buï s tímto programem\n"
+" nebo si o ní mù¾ete napsat na adresu Free Software Foundation, Inc.,\n"
+" 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
+
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:862
+msgid "Choose the applications that will support the fonts:"
+msgstr "Zvolte aplikace, které podporují fonty:"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
-msgstr "Spouštěcí disketa"
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
+msgstr "Ghostscript"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "Norské"
+#: ../../standalone/drakfont_.c:877
+msgid "StarOffice"
+msgstr "StarOffice"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for new scanners ..."
-msgstr "Vyhledávám nové skenery ..."
+#: ../../standalone/drakfont_.c:884
+msgid "Abiword"
+msgstr "Abiword"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Server pro World Wide Web Apache"
+#: ../../standalone/drakfont_.c:891
+msgid "Generic Printers"
+msgstr "Obecné tiskárny"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "Model cpu (generované Äíslo pro submodel)"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
+msgstr "Vyberte soubor s fontem nebo adresáø a kliknìte na 'Pøidat'"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "select path to restore (instead of /)"
-msgstr "vyberte cestu pro obnovení (místo /)"
+#: ../../standalone/drakfont_.c:1005
+msgid "Install List"
+msgstr "Instalovat seznam"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Configure bootsplash picture"
-msgstr "Nastavit obrázek pro bootsplash"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
+msgstr "kliknìte zde, pokud jste si jisti."
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr "Georgie"
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
+msgstr "zde pokud si nejste jisti."
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "Čína"
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
+msgstr "Zru¹it celý výbìr"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr " (Zkontrolujte to, že všechny tiskárny jsou připojeny a zapnuty).\n"
+#: ../../standalone/drakfont_.c:1116
+msgid "Selected All"
+msgstr "Vybrat v¹e"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "NaÄítám data z instalovaných tiskáren..."
+#: ../../standalone/drakfont_.c:1120
+msgid "Remove List"
+msgstr "Odebrat seznam"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
-msgstr " Vymazat nyní "
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+msgid "Initials tests"
+msgstr "Úvodní testy"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "server"
+#: ../../standalone/drakfont_.c:1145
+msgid "Copy fonts on your system"
+msgstr "Kopírovat fonty do systému"
-#: ../../install_any.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Vložte disketu formátovanou systémem FAT do disketové jednotky %s"
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
+msgstr "Instalovat & konvertovat fonty"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "ano znamená, že procesor má aritmetický koprocesor"
+#: ../../standalone/drakfont_.c:1153
+msgid "Post Install"
+msgstr "Poinstalaèní nastavení"
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Čekejte prosím... Aktivuji konfiguraci"
+#: ../../standalone/drakfont_.c:1178
+msgid "Remove fonts on your system"
+msgstr "Odebrat fonty ze systému"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-#
-#. -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
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Vita vas GRUB, program pro vyber operacniho systemu"
+#: ../../standalone/drakfont_.c:1182
+msgid "Post Uninstall"
+msgstr "Nastavení po odebrání"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "Grub"
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
+msgstr "Sdílení Internetového Pøipojení"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
-msgstr "SCSI kontrolér"
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Omlouváme se, ale podporujeme pouze jádra øady 2.4."
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr " na serveru LPD \"%s\", tiskárna \"%s\""
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Sdílení Internetového pøipojení je zapnuto"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Výběr správce oken"
+#: ../../standalone/drakgw_.c:126
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+"Sdílení internetového pøipojení u¾ bylo nastaveno.\n"
+"Nyní je povoleno.\n"
+"\n"
+"Co chcete dále dìlat?"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Název poÄítaÄe pro Zeroconf"
+#: ../../standalone/drakgw_.c:130
+msgid "disable"
+msgstr "vypnout"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
-msgstr "Vlastní nastavení/záznam v tabulce crontab:"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
+msgstr "odmítnout"
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP adresa musí být ve formátu 1.2.3.4"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "reconfigure"
+msgstr "pøekonfigurovat"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Nastaví tiskového systém CUPS"
+#: ../../standalone/drakgw_.c:133
+msgid "Disabling servers..."
+msgstr "Zakazuji servery..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "Ekvádor"
+#: ../../standalone/drakgw_.c:142
+msgid "Internet connection sharing is now disabled."
+msgstr "Sdílení Internetového pøipojení je nyní vypnuto."
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Add an item"
-msgstr "Přidat položku"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Sdílení Internetového pøipojení je vypnuto"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Tiskárny na tomto poÄítaÄi jsou přístupné jiným vzdáleným poÄítaÄům"
+#: ../../standalone/drakgw_.c:150
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+"Internetové sdílení u¾ bylo nastaveno.\n"
+"Nyní je vypnuto.\n"
+"\n"
+"Co chcete dále dìlat?"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "China (Hong Kong)"
-msgstr "Hong Kong"
+#: ../../standalone/drakgw_.c:154
+msgid "enable"
+msgstr "povolit"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Nemohu najít potřebný soubor '%s ' s obrazem."
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
+msgstr "Povoluji servery..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"Nebyla nalezena zvuková karta. Zkuste spustit po instalaci \"harddrake\"."
+#: ../../standalone/drakgw_.c:166
+msgid "Internet connection sharing is now enabled."
+msgstr "Sdílení Internetového pøipojení je nyní zapnuto."
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:183
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"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 ""
-"Zadán špatný port: %s.\n"
-"Správný formát je \"port/tcp\" nebo \"port/udp\", \n"
-"kde Äíslo portu je mezi 1 a 65535."
+"Vá¹ poèítaè bude nastaven pro sdílení svého pøipojení k Internetu.\n"
+"Tato vlastnost umo¾òuje pøístup dal¹ích poèítaèù na lokální síti k síti "
+"Internet pøes pøipojení tohoto poèítaèe.\n"
+"\n"
+"Pøed pokraèováním se ujistìte, ¾e jste nastavili va¹i sí» a pøipojení k "
+"Internetu pomocí aplikace drakconnect.\n"
+"\n"
+"Pozn.: Pro nastavení lokální sítì (LAN) potøebujete vyhrazený sí»ový adaptér."
-#: ../../any.pm:1
+#: ../../standalone/drakgw_.c:211
#, c-format
-msgid "Shell"
-msgstr "Shell"
+msgid "Interface %s (using module %s)"
+msgstr "Rozhraní %s (pou¾ívá modul %s)"
-#: ../../lang.pm:1
+#: ../../standalone/drakgw_.c:212
#, c-format
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome a Principe"
+msgid "Interface %s"
+msgstr "Rozhraní %s"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr "Ve va¹em systému není ¾ádný sí»ový adaptér!"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
-msgstr "Nelze se přihlásit pod uživatelským jménem %s (chybné heslo?)"
+#: ../../standalone/drakgw_.c:221
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"Ve va¹em poèítaèi nebyl nalezen ¾ádný sí»ový adaptér. Spus»te prosím program "
+"pro nastavení hardware."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "Ãzerbájdžánské (latinka)"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr "Sí»ové rozhraní"
-#: ../../standalone/drakbug:1
+#: ../../standalone/drakgw_.c:228
#, c-format
-msgid "Package not installed"
-msgstr "BalíÄek není nainstalován"
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"%s\n"
+"\n"
+"I am about to setup your Local Area Network with that adapter."
+msgstr ""
+"Na va¹em systému je nastaveno pouze jedno sí»ové rozhraní:\n"
+"\n"
+"%s\n"
+"\n"
+"Na tomto adaptéru bude nastavena lokální sí»."
-#: ../../lang.pm:1
-#, c-format
-msgid "American Samoa"
-msgstr "Americká Samoa"
+#: ../../standalone/drakgw_.c:235
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr "Prosím zvolte si, ke kterému sí»ovému adaptéru bude pøipojena LAN."
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Become a MandrakeExpert"
-msgstr "Staňte se Mandrake Expertem"
+#: ../../standalone/drakgw_.c:261
+msgid "Network interface already configured"
+msgstr "Sí»ové rozhraní je ji¾ nastaveno"
-#: ../../standalone/drakconnect:1
+#: ../../standalone/drakgw_.c:262
#, c-format
-msgid "Protocol"
-msgstr "Protokol"
+msgid ""
+"Warning, the network adapter (%s) is already configured.\n"
+"\n"
+"Do you want an automatic re-configuration?\n"
+"\n"
+"You can do it manually but you need to know what you're doing."
+msgstr ""
+"Varování, sí»ový adaptér (%s) je ji¾ nastaven.\n"
+"\n"
+"Chcete ho automaticky pøenastavit?\n"
+"\n"
+"Lze to také provést ruènì, ale musíte vìdìt, co dìláte."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Kopírovat fonty do systému"
+#: ../../standalone/drakgw_.c:267
+msgid "Automatic reconfiguration"
+msgstr "Automatické pøenastavení"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
-msgstr "Nápověda pro HardDrake"
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
-msgstr "BogoMIPS"
+#: ../../standalone/drakgw_.c:268
+msgid "Show current interface configuration"
+msgstr "Zobrazit aktuální nastavení rozhraní"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Nastavení pro Mandrake Terminal Server"
+#: ../../standalone/drakgw_.c:269
+#, fuzzy
+msgid "Current interface configuration"
+msgstr "Zobrazit aktuální nastavení rozhraní"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:270
#, c-format
msgid ""
+"Current configuration of `%s':\n"
"\n"
-" DrakBackup Report Details\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
+msgstr ""
+"Aktuální konfigurace pro '%s':\n"
"\n"
+"Sí»: %s\n"
+"IP adresa: %s\n"
+"IP atributy: %s\n"
+"Ovladaè: %s"
+
+#: ../../standalone/drakgw_.c:283
+#, fuzzy
+msgid ""
+"I can keep your current configuration and assume you already set up a DHCP "
+"server; in that case please verify I correctly read the Network that you use "
+"for your local network; I will not reconfigure it and I will not touch your "
+"DHCP server configuration.\n"
+"\n"
+"The default DNS entry is the Caching Nameserver configured on the firewall. "
+"You can replace that with your ISP DNS IP, for example.\n"
+"\t\t \n"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
"\n"
msgstr ""
+"Mohu zachovat souèasné nastavení a pøedpokládat, ¾e máte ji¾ nastavený DHCP "
+"server; v takovém pøípadì ovìøte, ¾e je správnì pøevzato nastavení sítì "
+"odpovídající va¹í lokální síti; nebude v nìm provedena ¾ádná zmìna a nebude "
+"ani zmìnìno nastavení DHCP serveru.\n"
"\n"
-" Detaily o reportu pro DrackBackup\n"
+"Výchozí záznam DNS je vyrovnávací jmenný server (caching nameserver) "
+"nastavený na va¹em firewallu. Tento záznam lze nahradit napøíklad IP adresou "
+"va¹eho poskytovatele pøipojení k Internetu.\n"
"\n"
+"Jinak mohu zmìnit jak rozhraní, tak také pøenastavit DHCP server podle "
+"potøeby.\n"
"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
-msgstr "Obnovit všechny zálohy"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
-msgstr " na paralelním portu #%s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
-msgstr ""
-"Nastaví minimální délku hesla, minimální poÄet Äíslic a velkých písmen v "
-"hesle."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr "pokud je nastaveno, provádí se kontrola na otevřené porty."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Vymazání média může chvíli trvat."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "Nemůžete vybrat/nevybrat tento balíÄek"
-
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "Varování"
+#: ../../standalone/drakgw_.c:290
+msgid "Local Network adress"
+msgstr "Adresa lokální sítì"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakgw_.c:294
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"
-"- Other Files:\n"
msgstr ""
+"Nastavení DHCP serveru.\n"
+"\n"
+"Zde mù¾ete vybrat rùzné volby nastavení DHCP serveru.\n"
+"Pokud nevíte, co která volba znamená, ponechte její výchozí hodnotu.\n"
"\n"
-"- Další soubory:\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name"
-msgstr "Název vzdáleného poÄítaÄe"
+#: ../../standalone/drakgw_.c:300
+msgid "(This) DHCP Server IP"
+msgstr "Adresa DHCP serveru"
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr "přístup k programům v X prostředí"
+#: ../../standalone/drakgw_.c:301
+msgid "The DNS Server IP"
+msgstr "IP adresa DNS serveru"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "PoÄítám volné místo na Windows oddílu"
+#: ../../standalone/drakgw_.c:302
+msgid "The internal domain name"
+msgstr "Interní název domény"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr "/O_bnovit"
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
+msgstr "Poèátek pásma adres DHCP"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Italy"
-msgstr "Itálie"
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
+msgstr "Konec pásma adres DHCP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
-msgstr "Kajmanské ostrovy"
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
+msgstr "Výchozí doba pronájmu (sekundy)"
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "chyba odpojování %s: %s"
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
+msgstr "Maximální doba pronájmu (sekundy)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "Název tiskárny"
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
+msgstr "Pøenastavení rozhraní a DHCP serveru"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
-msgstr "vypnout"
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
+msgstr "Èíslo lokální sítì nekonèí na .0, zkou¹ím znovu."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid "Do it!"
-msgstr "Provést!"
+msgid "Potential LAN address conflict found in current config of %s!\n"
+msgstr "Na¹el jsem mo¾ný konflikt v souèasném nastavení LAN adresy pro %s!\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
-msgstr "%s neodpovídá"
+#: ../../standalone/drakgw_.c:335
+msgid "Configuring..."
+msgstr "Nastavuji..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select model manually"
-msgstr "Vybrat model ruÄnÄ›"
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "Nastavuji skripty, instaluji software, startuji servery..."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakgw_.c:372
#, c-format
-msgid "Format"
-msgstr "Formátovat"
+msgid "Problems installing package %s"
+msgstr "Problém s instalací balíèku %s"
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:505
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'"
+"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 ""
-"Nejběžněji se pro připojení pomocí ADSL používá pppoe.\n"
-"Některá připojení používají pptp, některá pouze dhcp. Jestli si nejste "
-"jistí, zvolte 'použít pppoe'"
+"V¹e se podaøilo nastavit.\n"
+"Nyní lze pou¾ít tento poèítaè pro sdílení pøipojení k Internetu pro va¹i "
+"lokální sí», která pou¾ívá automatickou konfiguraci sítì (DHCP)."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
-msgstr "Další"
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
+msgstr "Nastavení ji¾ bylo provedeno, ale nyní je vypnuto."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
-msgstr "Zip"
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
+msgstr "Nastavení ji¾ bylo provedeno, nyní je povoleno."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
-msgstr "Levá klávesa Alt"
+#: ../../standalone/drakgw_.c:525
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Není nastaveno ¾ádné sdílení Internetového pøipojení."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Load setting"
-msgstr "Nahrát volby"
+#: ../../standalone/drakgw_.c:531
+msgid "Internet connection sharing configuration"
+msgstr "Nastavení sdílení pøipojení k Internetu"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:539
#, c-format
msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
"\n"
+"%s\n"
"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
+"Click on Configure to launch the setup wizard."
msgstr ""
+"Vítá vás prùvodce nastavením sdílení pøipojení k Internetu!\n"
"\n"
+"%s\n"
"\n"
-"PrinterDrake nemohl zjistit model vaší tiskárny %s. Prosím vyberte si "
-"odpovídající model ze seznamu."
+"Kliknìte na Konfigurovat, pokud chcete spustit prùvodce nastavením."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Nastaví vybranou tiskárnu jako výchozí"
+#: ../../standalone/drakperm_.c:36
+msgid "group"
+msgstr "skupina"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:36
+msgid "path"
+msgstr "cesta"
+
+#: ../../standalone/drakperm_.c:36
+msgid "permissions"
+msgstr "oprávnìní"
+
+#: ../../standalone/drakperm_.c:36
+msgid "user"
+msgstr "u¾ivatel"
+
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
+msgstr "Nahoru"
+
+#: ../../standalone/drakperm_.c:44
+msgid "delete"
+msgstr "smazat"
+
+#: ../../standalone/drakperm_.c:45
+msgid "edit"
+msgstr "upravit"
+
+#: ../../standalone/drakperm_.c:46
+msgid "Down"
+msgstr "Dolù"
+
+#: ../../standalone/drakperm_.c:47
+msgid "add a rule"
+msgstr "pøidat pravidlo"
+
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
+msgstr "vyberte soubor s oprávnìním pro zobrazení/úpravy"
+
+#: ../../standalone/drakperm_.c:51
msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+"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 ""
-"\n"
-"OznaÄte tiskárnu, kterou chcete pÅ™enést a stisknÄ›te \"PÅ™enést\"."
+"Aplikace DrakPerm se pou¾ívá k zobrazení souborù, které se pou¾ívají k "
+"úpravám oprávnìní, vlastníkù a skupin aplikací msec.\n"
+"Mù¾ete také vytváøet svá vlastní pravidla, která pøepí¹í pravidla výchozí."
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
+#: ../../standalone/drakperm_.c:56
+msgid "Add a new rule at the end"
+msgstr "Pøidat nové pravidlo na konec"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
-msgstr "Albánské"
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
+msgstr "Upravit souèasné pravidlo"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "Litva"
+#: ../../standalone/drakperm_.c:58
+msgid "Up selected rule one level"
+msgstr "Posunout vybrané pravidlo o úroveò vý¹e"
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "Kompaktní"
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
+msgstr "Posunout vybrané pravidlo o úroveò ní¾e"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Nalezen model: %s %s"
+#: ../../standalone/drakperm_.c:60
+msgid "Delete selected rule"
+msgstr "Smazat vybrané pravidlo"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
-msgstr "MandrakeSoft pro vás vybral ten nejlepší software"
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
+msgstr "procházet"
-#: ../../any.pm:1
-#, c-format
-msgid "Local files"
-msgstr "Lokální soubory"
+#: ../../standalone/drakperm_.c:231
+msgid "Current user"
+msgstr "Aktuální u¾ivatel"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "může se hodit"
+#: ../../standalone/drakperm_.c:236
+msgid "Permissions"
+msgstr "Oprávnìní"
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
-msgstr "Panama"
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
+msgstr "Cesta"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Can't open %s!"
-msgstr "Nelze otevřít %s!"
+#: ../../standalone/drakperm_.c:238
+msgid "Property"
+msgstr "Vlastnost"
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
+msgstr "sticky-bit"
+
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
+msgstr "Set-UID"
+
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
+msgstr "Set-GID"
+
+#: ../../standalone/drakperm_.c:296
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?"
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
msgstr ""
-"Vaše grafická karta zřejmě disponuje konektorem pro TV-OUT.\n"
-"Tento konektor může být zprovozněn použitím tzv. frame bufferu.\n"
-"\n"
-"Aby to bylo možné, budete muset napojit svou grafickou kartu na televizní "
-"pÅ™ijímaÄ, a to jeÅ¡tÄ› než zapnete váš poÄítaÄ.\n"
-"Poté vyberte ve vaÅ¡em zavadÄ›Äi položku \"TV out\".\n"
-"\n"
-"Má vaše karta tuto vlastnost?"
+"Pou¾ito pro adresáø:\n"
+" pouze vlastník adresáøe nebo souboru v tomto adresáøi jej mù¾e smazat"
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "Monitor"
+#: ../../standalone/drakperm_.c:297
+msgid "Use owner id for execution"
+msgstr "Pou¾ít pøi spu¹tìní ID vlastníka"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:298
+msgid "Use group id for execution"
+msgstr "Pou¾ít pøi spu¹tìní ID skupiny"
+
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
+msgstr "pokud za¹krtnuto, vlastník a skupina nebudou zmìnìny"
+
+#: ../../standalone/drakperm_.c:304
+msgid "Path selection"
+msgstr "Výbìr cesty"
+
+#: ../../standalone/drakperm_.c:350
+msgid "user :"
+msgstr "u¾ivatel :"
+
+#: ../../standalone/drakperm_.c:352
+msgid "group :"
+msgstr "skupina :"
+
+#: ../../standalone/draksound_.c:46
+msgid "No Sound Card detected!"
+msgstr "Nebyla nalezena ¾ádná zvuková karta!"
+
+#: ../../standalone/draksound_.c:47
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"
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Provádíte nastavení tisku s úÄtem na systému Windows. Díky chybÄ› v klientu "
-"protokolu Samba je heslo pÅ™i tisku posláno jako Äistý text z příkazové "
-"řádky. Je tudíž možné, aby kdokoliv viděl toto heslo na obrazovce když si "
-"zadá příkaz např. \"ps auxwww\".\n"
+"V poèítaèi nebyla nalezena ¾ádná zvuková karta karta. Zkontrolujte prosím,"
+"zda podporovaná karta je správnì zapojena.\n"
"\n"
-"DoporuÄujeme používat jednu z následujících alternativ (ve vÅ¡ech případech "
-"je dobré mít nastaven přístup pouze z poÄítaÄů z lokální sítÄ›, respektive za "
-"firewallem):\n"
"\n"
-"Použít úÄet, který nemá nastaven žádné heslo, jako je \"GUEST\" nebo "
-"speciální úÄet pouze pro úÄely tisku. Neodstraňujte ochranu heslem z běžného "
-"úÄtu nebo dokonce z administrátorského úÄtu.\n"
+"Databázi hardware lze nalézt na:\n"
"\n"
-"Nastavte tiskárnu na Windows serveru tak, aby fungovala pod LPD protokolem. "
-"Potom nastavte tisk na této tiskárně pomocí typy spojení \"%s\" v aplikaci "
-"PrinterDrake.\n"
"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tisíc barev (16 bitů)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/draksound_.c:54
msgid ""
"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-"\n"
-"- Uložit na pevný disk do adresáře: %s\n"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Odebrat fonty ze systému"
-
-#: ../../standalone/drakgw:1
-#, 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."
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-"Varování, síťový adaptér (%s) je již nastaven.\n"
"\n"
-"Chcete ho automaticky přenastavit?\n"
"\n"
-"Lze to také provést ruÄnÄ›, ale musíte vÄ›dÄ›t, co dÄ›láte."
+"\n"
+"Pozn: Pokud máte PnP zvukovou kartu na ISA, pou¾ijte program sndconfig. "
+"Spustíte ho pøíkazem \"sndconfig\" v konzoli."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "Spouští se X"
+#: ../../standalone/draksplash_.c:21
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr ""
+"pro správnou funkci je po¾adován balíèek ImageMagick.\n"
+"Balíèek nainstalujete tlaèítkem \"OK\", nebo skonèete tlaèítkem \"Zru¹it\"."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
-msgstr " adsl"
+#: ../../standalone/draksplash_.c:67
+msgid "first step creation"
+msgstr "první krok pøi vytváøení"
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Není dostatek oddílů pro RAID úrovně %d\n"
+#: ../../standalone/draksplash_.c:70
+msgid "final resolution"
+msgstr "koneèné rozli¹ení"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "Druhy formátu disket podporované mechanikou"
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+msgid "choose image file"
+msgstr "vyberte soubor s obrazem"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "Nepodařilo se zkopírovat firmware, soubor %s nebyl nalezen"
+#: ../../standalone/draksplash_.c:72
+msgid "Theme name"
+msgstr "Název tématu"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: true"
-msgstr "lokální konfigurace: true"
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
+msgstr "Procházet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
+msgid "Configure bootsplash picture"
+msgstr "Nastavit obrázek pro bootsplash"
+
+#: ../../standalone/draksplash_.c:90
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."
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
-"Jsou nastaveny následující tiskárny. Dvojitým klepnutím na každou z nich je "
-"možné je modifikovat, nastavit jako výchozí nebo o nich získat informace."
+"hodnota pro x souøadnici\n"
+"pro textový box v poètu znakù"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connected"
-msgstr "Připojen"
+#: ../../standalone/draksplash_.c:91
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr ""
+"hodnota pro y souøadnici\n"
+"pro textový box v poètu znakù"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
-msgstr "Makedonské"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
+msgstr "¹íøka textu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "Mali"
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
+msgstr "vý¹ka textového boxu"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
-msgstr "Systémové kontroléry"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
+"umístìní x souøadnice pro\n"
+"levý horní roh li¹ty s prùbìhem"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "/Soubor/_Uložit"
+#: ../../standalone/draksplash_.c:95
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
+"umístìní y souøadnice pro\n"
+"levý horní roh li¹ty s prùbìhem"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "No details"
-msgstr "Bez detailů"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
+msgstr "¹íøka li¹ty s prùbìhem"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "nejméně důležité"
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
+msgstr "vý¹ka li¹ty s prùbìhem"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
+msgstr "barva li¹ty s prùbìhem"
+
+#: ../../standalone/draksplash_.c:113
msgid "Preview"
-msgstr "Náhled"
+msgstr "náhled"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Remote Control"
-msgstr "Vzdálené ovládání"
+#: ../../standalone/draksplash_.c:115
+msgid "Save theme"
+msgstr "ulo¾it téma"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select media for backup..."
-msgstr "Prosím zvolte si médium pro zálohy..."
+#: ../../standalone/draksplash_.c:116
+msgid "Choose color"
+msgstr "výbìr barvy"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
-msgstr "Špatná adresa pro email"
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
+msgstr "Zobrazit logo na konzoli"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 server: %s\n"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
+msgstr "Nevypisování hlá¹ek jádra nastavit jako výchozí"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, c-format
-msgid "Allow Thin Clients"
-msgstr "Povolit tenké klienty"
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr "Toto téma nemá je¹tì ¾ádný bootsplash v %s !"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Gruzínské (\"Ruské\" rozložení)"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
+msgstr "ukládám Bootsplash téma..."
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_Volby"
+#: ../../standalone/draksplash_.c:428
+msgid "ProgressBar color selection"
+msgstr "Výbìr barvy pro li¹tu s prùbìhem"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Your printer model"
-msgstr "Model tiskárny"
+#: ../../standalone/draksplash_.c:449
+msgid "You must choose an image file first!"
+msgstr "Nejprve musíte vybrat soubor s obrazem!"
+
+#: ../../standalone/draksplash_.c:458
+msgid "Generating preview ..."
+msgstr "Generuji náhled ..."
-#: ../../any.pm:1
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Náhled tématu Bootsplash %s (%s)"
+
+#: ../../standalone/drakxtv_.c:46
msgid ""
+"XawTV isn't installed!\n"
"\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)."
-msgstr ""
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
"\n"
"\n"
-"(VAROVÃNÃ! Pro koÅ™enový oddíl používáte XFS, vytvoÅ™ení \n"
-"spouštěcí diskety bude zřejmě neúspěšné, protože XFS\n"
-"potÅ™ebuje velmi velký ovladaÄ)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
+"Aplikace XawTV není nainstalovaná!\n"
+"\n"
"\n"
-"- Smazat pomocné tar soubory po provedení zálohy.\n"
+"Máte-li TV kartu a nástroj DrakX ji ani nerozpoznal (není pøítomen\n"
+"modul bttv nebo saa7314 v \"/etc/modules\"), ani nenainstaloval\n"
+"aplikaci XawTV, po¹lete prosím výsledek pøíkazu\n"
+"\"lspcidrake -v -f\" na adresu \"install\\@mandrakesoft.com\"\n"
+"s pøedmìtem zprávy \"undetected TV card\".\n"
+"\n"
+"Tuto aplikaci mù¾ete doinstalovat pøíkazem \"urpmi xawtv\" spu¹tìným \n"
+"v konzoli pod u¾ivatelem root."
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
-msgstr ""
-"Nebyl nalezen CD Äi DVD obraz, prosím zkopírujte instalaÄní program a rpm "
-"soubory."
+#: ../../standalone/drakxtv_.c:63
+msgid "Canada (cable)"
+msgstr "Kanada (kabel)"
-#: ../advertising/04-configuration.pl:1
-#, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "VíceúÄelový konfiguraÄní nástroj pro Mandrake"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
+msgstr "USA (broadcast)"
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Save"
-msgstr "Uložit"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
+msgstr "USA (kabel)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
-msgstr "Skener %s není podporován"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
+msgstr "USA (cable-hrc)"
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr "Nahrát ovladaÄe pro usb zařízení."
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
+msgstr "Èína (broadcast)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Disk"
-msgstr "Disk"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
+msgstr "Japonsko (broadcast)"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Zadejte URI tiskového zařízení"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
+msgstr "Japonsko (kabel)"
-#: ../advertising/01-thanks.pl:1
-#, 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."
-msgstr ""
-"ÚspÄ›ch spoleÄnosti MandrakeSoft je založen na principech Svobodného "
-"Software. Tento operaÄní systém je výsledkem spolupráce Äásti celosvÄ›tové "
-"Linuxové komunity"
+#: ../../standalone/drakxtv_.c:65
+msgid "East Europe"
+msgstr "Východní Evropa"
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "Izrael"
+#: ../../standalone/drakxtv_.c:65
+msgid "France [SECAM]"
+msgstr "Francie [SECAM]"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "Francouzská Guinea"
+#: ../../standalone/drakxtv_.c:65
+msgid "Ireland"
+msgstr "Irsko"
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "default:LTR"
+#: ../../standalone/drakxtv_.c:65
+msgid "West Europe"
+msgstr "Západní Evropa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
-msgstr "Musí být zadán nějaký příkaz!"
+#: ../../standalone/drakxtv_.c:66
+msgid "Australia"
+msgstr "Austrálie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
-msgstr "Vybrat uživatele ruÄnÄ›"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
+msgstr "Nový Zéland"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Přenést konfiguraci tiskárny"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
+msgstr "Ji¾ní Afrika"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Chcete povolit tisk na tiskárnách vypsaných výše?\n"
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
+msgstr "Argentina"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of suid root files"
-msgstr "Kontrolovat přidávání/odebírání souborů se suid root"
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
+msgstr "Australská kabelová televize Optus"
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:102
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."
+"Please,\n"
+"type in your tv norm and country"
msgstr ""
-"Aby toto správně pracovalo se serverem W2K PDC, bude muset správce serveru "
-"spustit: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" "
-"everyone / add a restartovat server.\n"
-"Budete také potřebovat uživatelské jméno a heslo Správce Domény, abyste "
-"mohli pÅ™ipojit poÄítaÄ do domény Windows(TM).\n"
-"Jestliže ještě není povolena síť, aplikace DrakX se pokusí připojit k doméně "
-"po fázi nastavení sítě.\n"
-"Pakliže toto nastavení z jakéhokoli důvodu selže, a ověření na PDC nebude "
-"pracovat správně, spusťte po naběhnutí systému 'smbpasswd -j DOMAIN -U USER%%"
-"PASSWORD' (použijte svou doménu Windows(TM) a uživatelské jméno a heslo "
-"Správce domény).\n"
-"Příkaz 'wbinfo -t' otestuje, zda-li vaše tajné informace pro ověření jsou "
-"správné."
+"Zadejte prosím\n"
+"typ TV normy a zemi"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Port %s)"
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
+msgstr "Norma TV:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Použít síťové připojení pro zálohování"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
+msgstr "Oblast :"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Kernel version"
-msgstr "Verze jádra"
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
+msgstr "Probíhá vyhledávání TV kanálù ..."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
+msgstr "Vyhledávám TV kanály"
+
+#: ../../standalone/drakxtv_.c:120
+msgid "There was an error while scanning for TV channels"
+msgstr "Nastala chyba pøi zkoumání TV kanálù"
+
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
+msgstr "Aplikace XawTV není nainstalovaná!"
+
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
+msgstr "Pøeji hezký den!"
+
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Nyní mù¾ete spustit aplikaci XawTV (pod X Windows!)\n"
+
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
+msgstr "Nebyla nalezena TV karta!"
+
+#: ../../standalone/drakxtv_.c:148
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"
+"No TV Card has been detected on your machine. Please verify that a Linux-"
+"supported Video/TV Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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."
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"V této chvíli je možné vybrat, které programy chcete nainstalovat na váš "
-"systém.\n"
-"Mandrake Linux obsahuje tisíce balíÄků s programy a pro snadnÄ›jší orientaci\n"
-"byly rozděleny do skupin, které sdružují podobné aplikace.\n"
-"\n"
-"BalíÄky jsou rozdÄ›leny do skupin, které odpovídají tomu, jak je nejÄastÄ›ji\n"
-"poÄítaÄ používán. Skupiny samotné jsou umístÄ›ny do ÄtyÅ™ sekcí. VýbÄ›r "
-"aplikací\n"
-"z těchto sekcí lze různě kombinovat, takže můžete mít celou instalovánu "
-"sekci\n"
-"\"Pracovní stanice\" a k ní nějaké aplikace ze sekce \"Vývoj\".\n"
-"\n"
-" * \"%s\": pokud plánujete používat poÄítaÄ pÅ™evážnÄ› na\n"
-"běžnou práci, vyberte si z dalších skupin odpovídající balíÄky.\n"
-"\n"
-" * \"%s\": pokud budete na poÄítaÄi programovat, můžete si z této\n"
-"sekce vybrat další skupiny.\n"
-"\n"
-" * \"%s\": pokud bude poÄítaÄ provozován jako server, máte možnost\n"
-"vybrat si ty nejběžnější služby, které chcete nainstalovat.\n"
-"\n"
-" * \"%s\": pokud preferujete grafické prostředí, zde je\n"
-"nabídka několika prostředí, ze které si musíte vybrat nejméně jedno,\n"
-"aby bylo možné grafické prostředí nainstalovat.\n"
+"V poèítaèi nebyla nalezena ¾ádná TV karta. Zkontrolujte prosím, zda "
+"podporovaná karta je správnì zapojena.\n"
"\n"
-"Pokud přejedete myší nad skupinou, objeví se krátký text, který vysvětluje,\n"
-"co je obsahem dané skupiny. Pokud nevyberete při instalaci žádnou skupinu,\n"
-"zobrazí se otázka na instalaci několika typů minimální instalace:\n"
"\n"
-" * \"%s\" Provede instalaci minima balíÄků s podporou grafického prostÅ™edí.\n"
+"Databázi hardware lze nalézt na:\n"
"\n"
-" * \"%s\" Nainstaluje systém se základními programy a jejich dokumentací. \n"
-"Tento typ je vhodný pro instalaci serveru.\n"
"\n"
-" * \"%s\" Nainstaluje se opravdu nezbytné minimum, aby bylo\n"
-"možné provozovat Linux z příkazové řádky. Instalace zabere asi 65MB.\n"
-"\n"
-"Pokud zatrhnete volbu \"%s\", zobrazí se seznam všech\n"
-"balíÄků, které je možno nainstalovat. To je to užiteÄné v případÄ›, že "
-"chcete\n"
-"mít absolutní kontrolu nad tím, co se bude instalovat.\n"
-"\n"
-"Pokud jste spustili instalaci v režimu \"%s\", můžete zrušit výběr\n"
-"daných skupin, Äímž zabráníte instalaci nových balíÄků. To je užiteÄné\n"
-"pro případ opravy nebo aktualizace existujícího systému."
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "Vytvořit uživatele"
+"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
-msgstr "Server"
+#: ../../standalone/harddrake2_.c:17
+msgid "Alternative drivers"
+msgstr "Alternativní ovladaèe"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
-msgstr "Levá klávesa Shift"
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
+msgstr "seznam alternativních ovladaèù pro va¹i zvukovou kartu"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " local network"
-msgstr " lokální síť"
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
+msgstr "Sbìrnice"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "Špatná volba, zkuste to znovu\n"
+#: ../../standalone/harddrake2_.c:21
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+"toto je fyzická sbìrnice, na kterou je pøipojeno zaøízení (napø. PCI, "
+"USB, ...)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
-msgstr "Report syslogu zobrazovat na konzole Ä. 12"
+#: ../../standalone/harddrake2_.c:22
+msgid "Channel"
+msgstr "Kanál"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search new servers"
-msgstr "Vyhledat nové servery"
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
+msgstr "Kanál EIDE/SCSI"
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
-msgstr "Heard a McDonaldovy ostrovy"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
+msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
-msgstr "Bez alternativního ovladaÄe"
+#: ../../standalone/harddrake2_.c:23
+msgid ""
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "Přepnout se do režimu 'expert'"
+#: ../../standalone/harddrake2_.c:26
+msgid "Bus identification"
+msgstr "Identifikace sbìrnice"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
-msgstr "(na tomto poÄítaÄi)"
+#: ../../standalone/harddrake2_.c:27
+msgid ""
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
+msgstr ""
+"- zaøízení PCI a USB: vypisuje se dodavatel, zaøízení, poddodavatel a "
+"podzaøízení (ID PCI/USB)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Adresa brány by měla být ve tvaru 1.2.3.4"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
+msgstr "Umístìní na sbìrnici"
-#: ../../network/modem.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:30
msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
+"- 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 ""
-"byl detekován win modem založený na \"%s\", chcete nainstalovat potřebný "
-"software?"
+"- zaøízení PCI: udává slot PCI, zaøízení a funkci této karty\n"
+"- zaøízení EIDE: zaøízení je buï master nebo slave\n"
+"- zaøízení SCSI: udává ID sbìrnice a zaøízení SCSI"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Prohledávám již instalované balíÄky..."
+#: ../../standalone/harddrake2_.c:33
+#, fuzzy
+msgid "Cache size"
+msgstr "Velikost bloku (chunk)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Použít rozdílové zálohování"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Driver"
-msgstr "OvladaÄ"
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
msgstr ""
-"LinuxConf provádí různé úkoly při spuštění systému\n"
-"nutné pro správu systémové konfigurace."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVD-R device"
-msgstr "DVDR zařízení"
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
+msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Tiskárna na vzdálený lpd serveru"
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, 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."
+#: ../../standalone/harddrake2_.c:36
+#, fuzzy
+msgid "Cpuid level"
+msgstr "Úroveò zabezpeèení"
+
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
msgstr ""
-"Před instalací fontů se ujistěte, že máte potřebná práva na instalací a "
-"používání na systému.\n"
-"\n"
-"- Fonty lze instalovat běžným způsobem. Ve výjimeÄných případech může Å¡patný "
-"font způsobit zamrznutí X serveru."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
+msgstr ""
+
+#: ../../standalone/harddrake2_.c:37
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."
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
msgstr ""
-"Yaboot je zavadÄ›Ä pro poÄítaÄe Macintosh. Umožňuje spouÅ¡tÄ›t jak GNU/Linux, "
-"MacOS tak i MacOSX, pokud jsou na poÄítaÄi nainstalovány. Ve vÄ›tÅ¡inÄ›\n"
-"případů jsou tyto operaÄní systémy správnÄ› detekovány. Pokud nejsou, můžete\n"
-"zde na této obrazovce pÅ™idat záznamy ruÄnÄ›. Dejte si ale pozor na správnou\n"
-"volbu parametrů.\n"
-"\n"
-"Yaboot má tyto hlavní volby:\n"
-"\n"
-" * Úvodní hláška: jednoduchá textová zpráva, která je zobrazena před "
-"výzvou.\n"
-"\n"
-" * Spouštěcí zařízení: udává místo, kde jsou informace potřebné pro "
-"spuštění\n"
-"GNU/Linuxu. ObyÄejnÄ› je to bootstrap oddíl, který byl vytvoÅ™en již pÅ™edtím.\n"
-"\n"
-" * Prodleva pro Firmware: na rozdíl od zavadÄ›Äe LILO jsou zde dvÄ› prodlevy.\n"
-"První prodleva v sekundách umožňuje zvolit mezi spuštěním CD, OF boot,\n"
-"MacOS nebo Linuxu.\n"
-"\n"
-" * Prodleva pro jádro: tato prodleva je podobná prodlevě pro LILO.\n"
-"Udává v násobcích 0,1 vteÅ™iny jak dlouho se Äeká, než se zavede \n"
-"výchozí jádro.\n"
-"\n"
-" * Povolit spuštění z CD?: tato volba dovoluje použít \"C\" pro spuštění "
-"CD.\n"
-"\n"
-" * Povolit OF Boot?: tato volba dovoluje použít \"N\" pro spuštění Open "
-"Firm.\n"
-"\n"
-" * Výchozí OS: vyberte výchozí OS, který se spustí po uplynutí prodlevy."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
-msgstr "středa"
+#: ../../standalone/harddrake2_.c:38
+#, fuzzy
+msgid "This field describes the device"
+msgstr "toto pole popisuje zaøízení"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "Německo"
+#: ../../standalone/harddrake2_.c:39
+msgid "Old device file"
+msgstr "Starý soubor se zaøízením"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
-msgstr "Rakousko"
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
+msgstr "starý, statický název zaøízení, který se pou¾ívá v balíèku dev"
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "Bez myši"
+#: ../../standalone/harddrake2_.c:41
+msgid "New devfs device"
+msgstr "Nové zaøízení devfs"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "Vyberte velikost vašeho média CD/DVD (MB)"
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+"nový, dynamický název zaøízení, který generuje zabudovaný systém jádra devfs"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check permissions of files in the users' home"
-msgstr "Kontrolovat práva souborů v domovském adresáři uživatele"
+#: ../../standalone/harddrake2_.c:43
+msgid "Module"
+msgstr "Modul"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr "Pro nastavení zvukové karty spusťte po instalaci \"sndconfig\"."
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr "modul jádra systému GNU/Linux, který ovládá toto zaøízení"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "Sbalit větev"
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
+msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Nastavení automatické instalace"
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "Nastavení sítí"
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "Kam chcete nainstalovat zaváděcí program?"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"VýbÄ›r preferovaného jazyka ovlivňuje dokumentaci, jazyk instalaÄního "
-"programu\n"
-"a všech programů obecně. V prvním kroku si vyberete region kde žijete\n"
-"a potom jazyk kterým mluvíte.\n"
-"\n"
-"TlaÄítko \"%s\" umožňuje zvolit další jazyky, které budou také\n"
-"nainstalovány a můžete je použít v systému. Výběrem dalších jazyků "
-"nainstalujete\n"
-"soubory s aplikacemi a dokumentací specifické pro tyto jazyky. Pokud "
-"například\n"
-"na poÄítaÄi pracují obÄas lidé ze Å panÄ›lska, vyberte angliÄtinu jako hlavní\n"
-"jazyka pod tlaÄítkem rozšířené zatrhnÄ›te volbu \"%s\".\n"
-"\n"
-"Při výběru jazyka nejste omezeni pouze na jediný další. Můžete si jich "
-"vybrat\n"
-"více nebo dokonce nainstalovat všechny vybráním volby \"%s\".\n"
-"Podpora jazyka zahrnuje instalaci lokalizaci programů, fontů, kontrolu\n"
-"pravopisu, atd. Přídavná volba \"%s\" nastavuje celý systém na\n"
-"používání Unicode (UTF-8). Zatím je to ale experimentální volba. Pokud\n"
-"vyberete různé jazyky, které vyžadují jiná kódování, bude i přesto podpora\n"
-"pro Unicode nainstalována.\n"
-"\n"
-"Změnu různých jazyků instalovaných v systému lze provést pomocí příkazu\n"
-"\"/usr/bin/localedrake\" spuštěného jako uživatel \"root\". Spuštění pod\n"
-"běžným uživatelem způsobí změnu nastavení pouze pro daného uživatele."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr "Tato verze Mandrake Linux %s nepodporuje."
+#: ../../standalone/harddrake2_.c:46
+msgid ""
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "tape"
-msgstr "páska"
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr "DHCP klient"
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Povolit výpis uživatelů ve správcích přihlášení (kdm nebo gdm)"
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (sériová, starý C7 typ)"
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
+msgstr ""
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Obnova ze souboru %s neuspěla: %s"
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
+msgstr ""
+
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
+msgstr ""
+
+#: ../../standalone/harddrake2_.c:53
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"
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-"Nemůžu pÅ™eÄíst vaÅ¡i tabulku oddílů zařízení %s, je pro mÄ› příliÅ¡ poruÅ¡ená :"
-"(\n"
-"Můžu se pokusit pokraÄovat v ÄiÅ¡tÄ›ní Å¡patných oddílů (VÅ ECHNA\n"
-"DATA budou ztracena!). Jiná možnost je zakázat DrakX měnit tabulku\n"
-"oddílů (chyba je %s)\n"
-"\n"
-"Souhlasíte s tím, že přijdete o všechny oddíly?\n"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Find Package"
-msgstr "Najít balíÄek"
+#: ../../standalone/harddrake2_.c:55
+#, fuzzy
+msgid "Floppy format"
+msgstr "Formátovat"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Opravdu chcete nastavit tisk na tomto poÄítaÄi?\n"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "New devfs device"
-msgstr "Nové zařízení devfs"
+#: ../../standalone/harddrake2_.c:56
+#, fuzzy
+msgid "Level"
+msgstr "úroveò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
-msgstr "CHYBA: Nelze spustit příkaz %s."
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Boot Style Configuration"
-msgstr "Nastavení stylu zavádění"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
+msgstr "Tøída médií"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Automatická synchronizace Äasu"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
+msgstr "tøída hardwarového zaøízení"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "Souboru pro zálohu z %s nenalezeny."
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+msgid "Model"
+msgstr "Model"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "Arménské (foneticky)"
+#: ../../standalone/harddrake2_.c:58
+msgid "hard disk model"
+msgstr "model pevného disku"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Card model:"
-msgstr "Model karty :"
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
-msgstr "Tenký klient"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Model name"
+msgstr "Název modulu"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
-msgstr "Děkujeme vám, že jste si vybrali Mandrake Linux 9.2"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Official vendor name of the cpu"
+msgstr "jméno dodavatele zaøízení"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Start Server"
-msgstr "Spustit server"
+#: ../../standalone/harddrake2_.c:61
+msgid "Number of buttons"
+msgstr "Poèet tlaèítek"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr "Turkmenistán"
+#: ../../standalone/harddrake2_.c:62
+#, fuzzy
+msgid "Name"
+msgstr "Jméno: "
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "All remote machines"
-msgstr "VÅ¡echny vzdálené poÄítaÄe"
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "network printer port"
+msgstr ", sí»ová tiskárna \"%s\", port %s"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Install themes"
-msgstr "Instalovat motivy"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
-msgstr "Španělské"
+#: ../../standalone/harddrake2_.c:64
+#, fuzzy
+msgid "the number of the processor"
+msgstr "barva li¹ty s prùbìhem"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "Připravuji instalaci"
+#: ../../standalone/harddrake2_.c:65
+#, fuzzy
+msgid "Model stepping"
+msgstr "nahrát volby"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Upravit vybraný poÄítaÄ/síť"
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add User -->"
-msgstr "Přidat uživatele -->"
+#: ../../standalone/harddrake2_.c:66
+#, fuzzy
+msgid "The type of bus on which the mouse is connected"
+msgstr "Ke kterému sériovému portu je pøipojena va¹e my¹?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "Nauru"
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
+msgstr "jméno dodavatele zaøízení"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Instalace písem True Type"
+#: ../../standalone/harddrake2_.c:68
+#, fuzzy
+msgid "the vendor name of the processor"
+msgstr "jméno dodavatele zaøízení"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Automaticky nalézt tiskárny připojené přímo k lokální síti"
+#: ../../standalone/harddrake2_.c:82
+msgid "/_Quit"
+msgstr "/_Konec"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN configuration"
-msgstr "Nastavení LAN"
+#: ../../standalone/harddrake2_.c:83
+#, fuzzy
+msgid "/Autodetect _printers"
+msgstr "Automaticky nalezeno"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "hard disk model"
-msgstr "model pevného disku"
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
+msgstr "/_Volby"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/harddrake2_.c:85
+#, fuzzy
+msgid "/Autodetect _modems"
+msgstr "Automaticky nalezeno"
+
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
+msgstr "/_Nápovìda"
+
+#: ../../standalone/harddrake2_.c:89
+msgid "/_Help..."
+msgstr "/_Nápovìda..."
+
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
+msgstr "Nápovìda pro HardDrake"
+
+#: ../../standalone/harddrake2_.c:93
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"
+"Description of the fields:\n"
"\n"
-" \tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
msgstr ""
-" - Udržuje /etc/exports:\n"
-" \t\tClusterNFS dovoluje exportovat kořenový souborový systém na "
-"bezdiskové klienty. drakTermServ\n"
-" \t\tnastaví odpovídající záznam tak, aby umožnil anonymní přístup ke "
-"kořenovému souborovému systému\n"
-" \t\tbezdiskovým klientům.\n"
+"Popis polí:\n"
"\n"
-" \t\tTypický záznam pro export ClusterNFS vypadá:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tSe SUBNET/MASK odpovídající vaší síti."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Nelze použít LVM Logického disku na připojený bod %s"
+#: ../../standalone/harddrake2_.c:96
+msgid ""
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "NaÄíst fonty z Windows"
+#: ../../standalone/harddrake2_.c:96
+#, fuzzy
+msgid "Select a device !"
+msgstr "Zvolte si skener"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
+msgstr "/Nah_lásit chybu"
-#: ../../standalone/drakclock:1
-#, c-format
+#: ../../standalone/harddrake2_.c:102
+msgid "/_About..."
+msgstr "/_O aplikaci..."
+
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
+msgstr "O aplikaci HardDrake"
+
+#: ../../standalone/harddrake2_.c:105
msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
msgstr ""
+"Toto je HardDrake, nástroj spoleènosti Mandrake pro nastavení hardware.\n"
+"Verze:"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "Ãránské"
+#: ../../standalone/harddrake2_.c:106
+msgid "Author:"
+msgstr "Autor:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
-msgstr "Chorvatsko"
+#: ../../standalone/harddrake2_.c:113
+msgid "Detection in progress"
+msgstr "Probíhá detekce"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "Brána(gateway):"
+#: ../../standalone/harddrake2_.c:119
+msgid "Harddrake2 version "
+msgstr "Verze Harddrake2 "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add server"
-msgstr "Přidat server"
+#: ../../standalone/harddrake2_.c:126
+msgid "Detected hardware"
+msgstr "Nalezený hardware"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name"
-msgstr "Název vzdálené tiskárny"
+#: ../../standalone/harddrake2_.c:129
+msgid "Information"
+msgstr "Informace"
+
+#: ../../standalone/harddrake2_.c:131
+msgid "Configure module"
+msgstr "Nastavit modul"
+
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
+msgstr "Spustit nástroj pro nastavení"
-#: ../advertising/10-security.pl:1
+#: ../../standalone/harddrake2_.c:143
#, c-format
+msgid "Running \"%s\" ..."
+msgstr "Spou¹tím \"%s\" ..."
+
+#: ../../standalone/harddrake2_.c:159
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."
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-"MandrakeSoft navrhl exkluzivní nástroje pro tvorbu dosud nejbezpeÄnÄ›jší "
-"verze Linuxu: DrakSec, nástroj pro správu bezpeÄnosti systému a silný "
-"firewall, které spolu spolupracují a do znaÄné míry omezují riziko "
-"nepřátelského průniku."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "Zařízení: "
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
+msgstr "primární"
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Printerdrake"
-msgstr "PrinterDrake"
+#: ../../standalone/harddrake2_.c:231
+msgid "secondary"
+msgstr "sekundární"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "Souhlas s licencí"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect modems"
+msgstr "Automaticky nalezeno"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "System Options"
-msgstr "Systémové volby"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect printers"
+msgstr "Automaticky nalezeno"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Please choose the desired security level"
-msgstr "Vyberte prosím požadovanou úroveň zabezpeÄení"
+#: ../../standalone/harddrake2_.c:261
+#, fuzzy
+msgid "/Options"
+msgstr "/_Volby"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "Tento poÄítaÄ je již na seznamu, nelze jej tedy pÅ™idat dvakrát.\n"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "Jaké je rozlo¾ení va¹í klávesnice?"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", USB printer"
-msgstr ", USB tiskárna"
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr "Chcete, aby se klávesa Backspace chovala v konzoli jako Delete?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-"Nelze korektnÄ› ukonÄit mkbootdisk: \n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+#: ../../standalone/livedrake_.c:18
+msgid "Change Cd-Rom"
+msgstr "Vymìnit CD-ROM"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/livedrake_.c:19
msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
-"Přírůstkové zálohování zálohuje pouze ty soubory, které se změnily nebo jsou "
-"od poslední zálohy nové."
+"Vlo¾te prosím Instalaèní CD-ROM do mechaniky a stisknìte Ok.\n"
+"Pokud CD nemáte, stisknìte Zru¹it pro pøeru¹ení aktualizace systému."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Zvolte aplikace, které podporují fonty:"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "Nastavení X"
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Nelze spustit aktualizaci na bì¾ící systém !!!\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hd"
-msgstr "disk"
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
+msgstr "Zmìny jsou provedeny, ale pro aktivaci je nutné provést odhlá¹ení"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turecké (tradiÄní model \"F\")"
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
+msgstr "logdrake"
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "Gratuluji!"
+#: ../../standalone/logdrake_.c:68
+msgid "Show only for the selected day"
+msgstr "Zobrazit pouze pro vybraný den"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Použít při spuštění ID vlastníka"
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
+msgstr "/Soubor/_Nový"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow remote root login"
-msgstr "Povolit vzdálené přihlášení uživatele root"
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
+msgstr "<control>N"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Down"
-msgstr "Dolů"
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
+msgstr "/Soubor/_Otevøít"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Přímý tisk (bez ovladaÄe)"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
+msgstr "<control>O"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Install rpm"
-msgstr "Instalovat rpm"
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr "/Soubor/_Ulo¾it"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Vytisknout soubor z příkazové řádky (terminálového okna) lze buÄ příkazem\n"
-"\"%s<soubor>\" nebo přes grafické nástroje: \"xpp <soubor> nebo \"kprinter "
-"<soubor>\". Grafické nástroje umožňují jednoduše vybrat tiskárny a měnit "
-"jejich parametry.\n"
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
+msgstr "<control>U"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "Zbývající Äas "
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
+msgstr "/Soubor/Ulo¾it _jako"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "UK-Britské"
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr "/Soubor/-"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "Odpojit"
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
+msgstr "/Volby/Test"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
+msgstr "/Nápovìda/_O aplikaci..."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "Odinstalovat fonty"
+#: ../../standalone/logdrake_.c:145
+msgid "User"
+msgstr "U¾ivatel"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "ÄŒekejte prosím, nastavuji úroveň zabezpeÄení..."
+#: ../../standalone/logdrake_.c:146
+msgid "Messages"
+msgstr "Zprávy"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "Německé (bez mrtvých kláves)"
+#: ../../standalone/logdrake_.c:147
+msgid "Syslog"
+msgstr "Syslog"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tPoslat mail na %s\n"
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
+msgstr "Vysvìtlivky nástrojù Mandrake Linuxu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
-msgstr "Přenáším %s ..."
+#: ../../standalone/logdrake_.c:151
+msgid "search"
+msgstr "vyhledat"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tisíc barev (15 bitů)"
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
+msgstr "Nástroj na sledování logù"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
-msgstr ""
-"Nyní lze provést export přes protokol NFS nebo Samba. Vyberte prosím, který "
-"chcete použít."
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
+msgstr "Nastavení"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "Gambie"
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
+msgstr "shodných"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Ovládací centrum Mandrake"
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
+msgstr "neshodných"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Reboot"
-msgstr "Restartovat"
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
+msgstr "Vyberte soubor"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device"
-msgstr "MultifunkÄní zařízení"
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
+msgstr "Kalendáø"
-#: ../../network/drakfirewall.pm:1
-#, 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."
-msgstr ""
-"Zadali jste nesprávný port.\n"
-"Správně je například: 139/tcp 139/udp.\n"
-"Více se dozvíte ze souboru /etc/services."
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
+msgstr "Obsah souboru"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Páska \n"
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+msgid "Mail alert"
+msgstr "Varovné zprávy e-mailem"
-#: ../../standalone/drakhelp:1
+#: ../../standalone/logdrake_.c:245
#, c-format
-msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
-msgstr ""
-"V systému není instalován žádný prohlížeÄ. Pokud chcete používat nápovÄ›du, "
-"je nutné nějaký nainstalovat."
+msgid "please wait, parsing file: %s"
+msgstr "èekejte prosím, zpracovávám soubor: %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remember this password"
-msgstr "Pamatovat si heslo"
+#: ../../standalone/logdrake_.c:392
+msgid "Mail alert configuration"
+msgstr "Nastavení varovných zpráv e-mailem"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
+#: ../../standalone/logdrake_.c:393
+msgid ""
+"Welcome to the mail configuration utility.\n"
+"\n"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
+"Vítejte v nastavení elektronické po¹ty.\n"
+"\n"
+"Zde lze nastavit systém posílání varovných zpráv.\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Sdílení Internetového připojení je nyní zapnuto."
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
+msgstr "Server pro World Wide Web Apache"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Sítí přes SSH.\n"
+#: ../../standalone/logdrake_.c:401
+msgid "Domain Name Resolver"
+msgstr "Dekodér názvu domény"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-" Pokud byla požadovaná tiskárna automaticky nalezena, vyberte ji jednoduše "
-"ze seznamu a pokud je to potřeba, doplňte uživatelské jméno, heslo, a "
-"pracovní skupinu."
+#: ../../standalone/logdrake_.c:402
+msgid "Ftp Server"
+msgstr "Server FTP"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " cable"
-msgstr " kabel"
+#: ../../standalone/logdrake_.c:403
+msgid "Postfix Mail Server"
+msgstr "Po¹tovní server Postfix"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
-msgstr "Použít volné místo na Windows oddílu"
+#: ../../standalone/logdrake_.c:404
+msgid "Samba Server"
+msgstr "Server Samba"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s nalezeno na %s, chcete ho nastavit automaticky?"
+#: ../../standalone/logdrake_.c:405
+msgid "SSH Server"
+msgstr "Server SSH"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 ovladaÄ: %s\n"
+#: ../../standalone/logdrake_.c:406
+msgid "Webmin Service"
+msgstr "Slu¾ba Webmin"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr "Tento poÄítaÄ/síť je již na seznamu, nelze jej znova pÅ™idat.\n"
+#: ../../standalone/logdrake_.c:407
+msgid "Xinetd Service"
+msgstr "Slu¾ba Xinetd"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Vyberte si balíÄky, které chcete nainstalovat"
+#: ../../standalone/logdrake_.c:414
+msgid "service setting"
+msgstr "nastavení slu¾eb"
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
-msgstr "Papua Nová Guinea"
+#: ../../standalone/logdrake_.c:415
+msgid ""
+"You will receive an alert if one of the selected services is no more running"
+msgstr "Pokud jedna z vybraných slu¾eb nepobì¾í, obdr¾íte varovnou zprávu"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "MultifunkÄní zařízení na paralelním portu"
+#: ../../standalone/logdrake_.c:428
+msgid "load setting"
+msgstr "nahrát volby"
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Busy files"
-msgstr "Zálohovat systémové soubory"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
+msgstr "Pokud bude hodnota vet¹í ne¾ zadané èíslo, obdr¾íte varovnou zprávu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "Srbské (cyrilice)"
+#: ../../standalone/logdrake_.c:444
+msgid "alert configuration"
+msgstr "nastavení varování"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Zadejte adresář, kde jsou umístěny zálohy"
+#: ../../standalone/logdrake_.c:445
+msgid "Please enter your email address below "
+msgstr "Zadejte prosím ní¾e svou po¹tovní adresu "
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
-msgstr "Nevypisování hlášek jádra nastavit jako výchozí"
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
+msgstr "Ulo¾it jako..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Chcete opravdu nastavit tiskárnu \"%s\"\n"
-"jako výchozí?"
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "Jaký je typ va¹í my¹i?"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
-msgstr "Konec rozsahu DHCP adres"
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
+msgstr "Emulovat tøetí tlaèítko?"
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "Vytvářím startovací disketu"
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Nastavení sítì"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Čekejte prosím, testuji připojení..."
+#: ../../standalone/net_monitor_.c:96
+#, fuzzy
+msgid "Profile "
+msgstr "Profil: "
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "Zastavuji síť"
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
+msgstr ""
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "Přihlašovací jméno"
+#: ../../standalone/net_monitor_.c:103
+#, fuzzy
+msgid "Sending Speed:"
+msgstr "Posílám soubory..."
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
msgstr ""
-"NFS je oblíbený protokol pro sdílení souborů přes sítě TCP/IP.\n"
-"Tato služba poskytuje možnost uzamykání souborů na NFS."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
-msgstr "DHCP klient"
+#: ../../standalone/net_monitor_.c:106
+#, fuzzy
+msgid "Connection Time: "
+msgstr "Typ pøipojení:"
-#: ../../standalone/harddrake2:1
-#, 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"
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
msgstr ""
-"Toto je HardDrake, nástroj spoleÄnosti Mandrake pro nastavení hardware.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-"tvignaud@mandrakesoft.com&gt;\n"
-"\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
-msgstr "odmítnout"
+#: ../../standalone/net_monitor_.c:147
+#, fuzzy
+msgid "Wait please, testing your connection..."
+msgstr "Testuji pøipojení k internetu..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Tisk/Skenování na \"%s\""
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Pøipojení k Internetu"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit raid modules"
-msgstr "vynechat RAID moduly"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Pøipojení k Internetu"
-#: ../../services.pm:1
-#, 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)."
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
msgstr ""
-"lpd je tiskový démon, bez kterého nebude fungovat lpr (program pro tisk).\n"
-"Je to server, který posílá tištěné dokumenty jednotlivým tiskárnám."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
-msgstr "Irské"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sunday"
-msgstr "Neděle"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Konfigurace připojení k internetu"
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
+msgstr ""
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
-msgstr "Äárkou oddÄ›lená Äísla"
+#: ../../standalone/net_monitor_.c:225
+#, fuzzy
+msgid "Connection complete."
+msgstr "Rychlost pøipojení"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/net_monitor_.c:226
msgid ""
-"Once you've selected a device, you'll be able to see the device information "
-"in fields displayed on the right frame (\"Information\")"
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-"Pokud vyberete nějaké zařízení, uvidíte o něm informace v pravém rámci "
-"(\"Informace\")"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Posunout vybrané pravidlo o úroveň výše"
+#: ../../standalone/net_monitor_.c:330
+#, fuzzy
+msgid "Color configuration"
+msgstr "nastavení varování"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
msgstr ""
-"V tomto poÄítaÄi je dostupný skener\n"
-"\n"
-"%s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Chcete opravdu odebrat tiskárnu \"%s\"?"
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
+msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "I can't find any room for installing"
-msgstr "Nemůžu najít žádné volné místo pro instalaci"
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Default printer"
-msgstr "Výchozí tiskárna"
+#: ../../standalone/net_monitor_.c:400
+#, fuzzy
+msgid "Local measure"
+msgstr "Lokální soubory"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
msgstr ""
-"Máte nastaveno více způsobů, jak se připojit k Internetu.\n"
-"Vyberte si jeden, který chcete použít.\n"
-"\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Modify RAID"
-msgstr "Změnit RAID"
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
+msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:453
+#, fuzzy
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 ""
-"Našel jsem ISDN PCI kartu, jejíž typ ale neznám. Prosím zvolte si jednu z "
-"následujícího seznamu PCI karet."
+"Warning, another internet connection has been detected, maybe using your "
+"network"
+msgstr "Varování, bylo detekováno jiné pøipojení k Internetu, zøejmì je to sí»"
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr "Přidat uživatele"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "Pøipojit"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID disky %s\n"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Disconnect %s"
+msgstr "Odpojit"
-#: ../../lang.pm:1
-#, c-format
-msgid "Liberia"
-msgstr "Libérie"
+#: ../../standalone/printerdrake_.c:47
+msgid "Reading printer data ..."
+msgstr "Naèítám údaje o tiskárnì ..."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-"Nelze nainstalovat balíÄky potÅ™ebné pro nastavení skeneru pomocí "
-"Scannerdrake."
+#: ../../standalone/scannerdrake_.c:39
+msgid "Detecting devices ..."
+msgstr "Detekuji zaøízení ..."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-"Zadejte prosím název rozhraní, které je připojeno k Internetu.\n"
-"\n"
-"Příklady:\n"
-"\t\tppp+ pro modem nebo pro DSL připojení,\n"
-"\t\teth0 nebo eth1 pro připojení přes kabel,\n"
-"\t\tippp+ pro isdn připojení.\n"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
+msgstr "Otestovat porty"
-#: ../../steps.pm:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, c-format
-msgid "Choose your keyboard"
-msgstr "Výběr klávesnice"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr "Tato verze Mandrake Linux %s nepodporuje."
-#: ../../steps.pm:1
+#: ../../standalone/scannerdrake_.c:54
#, c-format
-msgid "Format partitions"
-msgstr "Formátování oddílů"
+msgid "%s found on %s, configure it?"
+msgstr "%s nalezeno na %s, chcete ho nastavit?"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/scannerdrake_.c:57
#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Automatická korekce nastavení pro CUPS"
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr "%s není v databázi skenerù, nastavit ruènì?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Running \"%s\" ..."
-msgstr "Spouštím \"%s\" ..."
+#: ../../standalone/scannerdrake_.c:63
+msgid "Select a scanner"
+msgstr "Zvolte si skener"
-#: ../../harddrake/v4l.pm:1
+#: ../../standalone/scannerdrake_.c:91
#, c-format
-msgid "enable radio support"
-msgstr "Zapnout podporu rádia"
+msgid "This %s scanner is unsupported"
+msgstr "Skener %s není podporován"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:105
#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Sdílet skener pro poÄítaÄe: "
+msgid ""
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
+msgstr ""
+"Scannerdrake nebyl schopen detekovat vá¹ skener %s.\n"
+"Vyberte prosím zaøízení, ke kterému je skener pøipojen"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Loopback soubor: %s"
+#: ../../standalone/scannerdrake_.c:107
+msgid "choose device"
+msgstr "vyberte zaøízení"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/scannerdrake_.c:113
#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Vyberte tiskový port, kam budou směrovány tiskové úlohy."
+msgid ""
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
+msgstr ""
+"Skener %s musí být nastaven pomocí nástroje PrinterDrake.\n"
+"Spustit PrinterDrake lze z øídícího centra Mandrake v sekci Hardware"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/scannerdrake_.c:118
#, c-format
-msgid "Do not transfer printers"
-msgstr "Nepřenášet tiskárny"
+msgid ""
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
+msgstr ""
+"Vá¹ skener %s byl nastaven.\n"
+"Nyní lze skenovat dokumenty pomocí aplikace \"XSane\" z nabídky aplikací "
+"Multimédia/Grafika."
-#: ../../help.pm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "Delay before booting the default image"
-msgstr "Prodleva před automatickým zavedením výchozího obrazu"
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Nìkterá zaøízení v tøídì hardware \"%s\" byla odstranìna:\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Hard Disk to backup"
-msgstr "Použít pro zálohování pevný disk"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
+msgstr "Byla pøidána nìkterá zaøízení:\n"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Configure"
-msgstr "Nastavit"
+#: ../../standalone/service_harddrake_.c:64
+#, fuzzy
+msgid "Hardware probing in progress"
+msgstr "Probíhá detekce"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake"
-msgstr "Scannerdrake"
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "Výbìr jazyka"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr "Varování, bylo detekováno jiné připojení k Internetu, zřejmě je to síť"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "Volba typu instalace"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
-msgstr "Zálohovat uživatele"
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
+msgstr "Detekce pevných diskù"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Prosím zadejte název vaÅ¡eho poÄítaÄe.\n"
-"Tento název musí být úplný, jako 'mybox.mylab.myco.com'.\n"
-"Pokud používáte bránu(gateway), můžete také zadat její adresu"
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "Nastavení my¹i"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Zvolte tiskový systém pro tiskárnu"
+#: ../../steps.pm_.c:18
+msgid "Choose your keyboard"
+msgstr "Výbìr klávesnice"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Create new theme"
-msgstr "Vytvořit nový motiv"
+#: ../../steps.pm_.c:19
+msgid "Security"
+msgstr "Bezpeènost"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
-msgstr "Vysvětlivky nástrojů Mandrake Linuxu"
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "Souborové systémy"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "No image found"
-msgstr "Obraz nebyl nalezen"
+#: ../../steps.pm_.c:21
+msgid "Format partitions"
+msgstr "Formátování oddílù"
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
-"NÄ›které důležité balíÄky nebyly správnÄ› nainstalované.\n"
-"Je možné, že je poškozen CD disk nebo CD-ROM mechanika.\n"
-"Zkontrolujete to použitím příkazu \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "Výbìr balíèkù pro instalaci"
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
-msgstr "Distribuce Mandrake Linux 9.2 je nejlepší vývojová platforma"
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "Instalace systému"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Detected model: %s"
-msgstr "Nalezen model: %s"
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "Pøidání u¾ivatele"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
-msgstr "\"%s\" není platná email adresa!"
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "Nastavení sítí"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"Správce přihlášení pro X11 umožňuje se přihlásit přes grafické\n"
-"rozhraní k bežícímu systému X Window a podporuje spuštění různých\n"
-"X sezení na lokálním poÄítaÄi souÄasnÄ›."
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "Nastavení slu¾eb"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr "pokud je nastaveno, spouÅ¡tí každý den bezpeÄnostní kontrolu."
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "Zavádìcí program"
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
-msgstr "Ãzerbájdžán"
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "Startovací disketa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Název zařízení, na které se bude zálohovat"
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "Nastavení X"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
-msgstr "Není páska v %s!"
+#: ../../steps.pm_.c:34
+msgid "Install system updates"
+msgstr "Aktualizace systému"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-" --doc <odkaz> - odkaz na jinou webovou stránku ( pro uvítací "
-"stránku správců oken)\n"
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "Ukonèení instalace"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Dvořák (US) "
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
msgstr ""
-"toto je fyzická sběrnice, na kterou je připojeno zařízení (např. PCI, "
-"USB, ...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Jak je tiskárna připojena?"
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "Web/FTP"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security level"
-msgstr "Úroveň zabezpeÄení"
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
+msgstr "Sí»ový poèítaè (klient)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "final resolution"
-msgstr "koneÄné rozliÅ¡ení"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS server, SMB server, Proxy server, SSH server"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
-msgstr "Služby"
+#: ../../share/compssUsers:999
+msgid "Office"
+msgstr "Kanceláø"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Auto configuration"
-msgstr "Vlastní nastavení"
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Pracovní stanice s Gnome"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Nástroje pro vá¹ Palm Pilot nebo Visor"
#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Kancelářská stanice"
+msgid "Workstation"
+msgstr "Pracovní stanice"
+
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Firewall/Router"
+
+#: ../../share/compssUsers:999
+msgid "Domain Name and Network Information Server"
+msgstr "Doménové názvy a sí»ový informaèní server"
#: ../../share/compssUsers:999
msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
"gnumeric), pdf viewers, etc"
msgstr ""
-"Programy pro kancelář: textové procesory (KWord, Abiword), tabulkové "
-"procesory (KSpread, Gnumeric), prohlížeÄe PDF a další"
+"Programy pro kanceláø: textové procesory (KWord, Abiword), tabulkové "
+"procesory (KSpread, Gnumeric), prohlí¾eèe PDF a dal¹í"
#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Hry"
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "Nástroje pro zvuk: pøehrávaèe mp3 a midi, mixéry a dal¹í"
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Zábavné programy: deskové hry, strategie, atd."
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Standardní Báze Linuxu (LSB): Podpora aplikací jiných dodavatelù"
#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimediální stanice"
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Knihy a Howto o Linuxu a Free Software"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Programy pro přehrávání/editaci zvuku a videa"
+msgid "KDE Workstation"
+msgstr "Pracovní stanice s KDE"
#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internetová stanice"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "IceWM, Window Maker, Enlightenment, Fvwm a dal¹í"
#: ../../share/compssUsers:999
-#, fuzzy
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Kolekce nástrojů pro Ätení a posílaní el. poÅ¡ty a příspÄ›vků do diskusních "
-"skupin (pine, mutt, tin..) a pro prohlížení Webu"
+msgid "Multimedia - Video"
+msgstr "Multimédia - video"
#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Síťový poÄítaÄ (klient)"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+"Skupina programù pro po¹tu, diskusní skupiny, web, pøenos souborù a chat"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Klienti pro různé verze protokolu ssh"
+msgid "Database"
+msgstr "Databáze"
#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Nastavení"
+msgid "PostgreSQL or MySQL database server"
+msgstr "Databázové servery PostgreSQL nebo MySQL"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
-msgstr "Nástroje pro snadnou konfiguraci poÄítaÄe"
+msgstr "Nástroje pro snadnou konfiguraci poèítaèe"
#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Vědecká stanice"
+msgid "Multimedia - Sound"
+msgstr "Multimédia - zvuk"
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
-msgstr "Vědecké aplikace jako je gnuplot"
+msgid "Documentation"
+msgstr "Dokumentace"
#: ../../share/compssUsers:999
msgid "Console Tools"
-msgstr "Konzolové nástroje"
+msgstr "Konzolové nástroje"
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editory, shelly, souborové nástroje, terminály"
+msgid "Postfix mail server, Inn news server"
+msgstr "Po¹tovní server postfix, server pro diskusní skupiny Inn"
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "Pracovní stanice s KDE"
+msgid "Internet station"
+msgstr "Internetová stanice"
+
+#: ../../share/compssUsers:999
+msgid "Multimedia station"
+msgstr "Multimediální stanice"
+
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Nastavení"
+
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "Dal¹í grafické desktopy Gnome, IceWM)"
#: ../../share/compssUsers:999
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
"of accompanying tools"
msgstr ""
-"K Desktop Environment, základní grafické prostředí s kolekcí doprovodných "
-"nástrojů"
+"K Desktop Environment, základní grafické prostøedí s kolekcí doprovodných "
+"nástrojù"
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Pracovní stanice s Gnome"
+msgid "Graphical Environment"
+msgstr "Grafické prostøedí"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Grafické prostředí s uživatelsky přívětivým seskupením aplikací a pracovní "
-"plochou"
+msgid "Development"
+msgstr "Vývoj"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Další grafické desktopy"
+msgid "Apache, Pro-ftpd"
+msgstr "Apache a Pro-ftpd"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "IceWM, Window Maker, Enlightenment, Fvwm a další"
+msgid "Tools to create and burn CD's"
+msgstr "Nástroje pro vytváøení a vypalování CD"
#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "Knihovny pro vývoj v C a C++, programy a hlaviÄkové soubory"
+msgid "Office Workstation"
+msgstr "Kanceláøská stanice"
#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentace"
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, IceWM, Window Maker, Enlightenment, Fvwm a dal¹í"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Knihy a Howto o Linuxu a Svobodném Software"
+msgid "Graphics programs such as The Gimp"
+msgstr "Grafické programy jako napø. GIMP"
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr "LSB"
+msgid "DNS/NIS "
+msgstr "DNS/NIS "
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Standardní Báze Linuxu (LSB): Podpora aplikací jiných dodavatelů"
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Knihovny pro vývoj v C a C++, programy a hlavièkové soubory"
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
+msgid "Network Computer server"
+msgstr "Sí»ový server"
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache a Pro-ftpd"
+msgid "Mail/Groupware/News"
+msgstr "Po¹ta/Groupware/Diskuse"
#: ../../share/compssUsers:999
-msgid "Mail"
-msgstr "Pošta"
+msgid "Game station"
+msgstr "Hry"
#: ../../share/compssUsers:999
-msgid "Postfix mail server"
-msgstr "Poštovní server Postfix"
+msgid "Video players and editors"
+msgstr "Pøehrávaèe a editory videa"
#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Databáze"
+msgid "Multimedia - Graphics"
+msgstr "Multimédia - grafika"
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "Databázové servery PostgreSQL nebo MySQL"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Zábavné programy: deskové hry, strategie, atd."
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Firewall/Router"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"Kolekce nástrojù pro ètení a posílaní el. po¹ty a pøíspìvkù do diskusních "
+"skupin (pine, mutt, tin..) a pro prohlí¾ení Webu"
#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Internetová brána"
+msgid "Personal Finance"
+msgstr "Správa osobních financí"
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Grafické prostøedí s u¾ivatelsky pøívìtivým seskupením aplikací a pracovní "
+"plochou"
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Doménová jména a síťový informaÄní server"
+msgid "Clients for different protocols including ssh"
+msgstr "Klienti pro rùzné verze protokolu ssh"
#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Síťový server"
+msgid "LSB"
+msgstr "LSB"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS server, SMB server, Proxy server, SSH server"
+msgid "Internet gateway"
+msgstr "Internetová brána"
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
-msgstr ""
-"Kolekce nástrojů pro Ätení a posílaní el. poÅ¡ty a příspÄ›vků do diskusních "
-"skupin a pro prohlížení webu"
+msgid "Sound and video playing/editing programs"
+msgstr "Programy pro pøehrávání/editaci zvuku a videa"
-#~ msgid "The setup has already been done, and it's currently enabled."
-#~ msgstr "Nastavení již bylo provedeno, nyní je povoleno."
+#: ../../share/compssUsers:999
+msgid "Other Graphical Desktops"
+msgstr "Dal¹í grafické desktopy"
-#~ msgid "Logs"
-#~ msgstr "Logy"
+#: ../../share/compssUsers:999
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editory, shelly, souborové nástroje, terminály"
-#~ msgid "The setup has already been done, but it's currently disabled."
-#~ msgstr "Nastavení již bylo provedeno, ale nyní je vypnuto."
+#: ../../share/compssUsers:999
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "Programy na správu financí jako napø. GnuCash"
-#~ msgid "Profile "
-#~ msgstr "Profil "
+#: ../../share/compssUsers:999
+msgid "Personal Information Management"
+msgstr "Správce osobních informací (PIM)"
-#~ msgid ""
-#~ "Welcome to the Internet Connection Sharing utility!\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ "Click on Configure to launch the setup wizard."
-#~ msgstr ""
-#~ "Vítá vás průvodce nastavením sdílení připojení k Internetu!\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ "Klepněte na Konfigurovat, pokud chcete spustit průvodce nastavením."
+#: ../../share/compssUsers:999
+msgid "Multimedia - CD Burning"
+msgstr "Multimédia - vypalování CD"
-#~ msgid "Internet Connection Sharing configuration"
-#~ msgstr "Nastavení sdílení připojení k Internetu"
+#: ../../share/compssUsers:999
+msgid "Scientific Workstation"
+msgstr "Vìdecká stanice"
-#~ msgid "No Internet Connection Sharing has ever been configured."
-#~ msgstr "Není nastaveno žádné sdílení Internetového připojení."
+#~ msgid "can not open /etc/inittab for reading: %s"
+#~ msgstr "nelze otevøít /etc/inittab pro ètení: %s"
-#~ msgid "when checked, owner and group won't be changed"
-#~ msgstr "pokud je zaškrtnuto, vlastník a skupina nebudou změněny"
+#, fuzzy
+#~ msgid "cpu number "
+#~ msgstr "èíslo"
#~ msgid ""
-#~ "XawTV isn't installed!\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do have a TV card but DrakX has neither detected it (no bttv nor "
-#~ "saa7134\n"
-#~ "module in \"/etc/modules\") nor installed xawtv, please send the\n"
-#~ "results of \"lspcidrake -v -f\" to \"install@mandrakesoft.com\"\n"
-#~ "with subject \"undetected TV card\".\n"
-#~ "\n"
-#~ "\n"
-#~ "You can install it by typing \"urpmi xawtv\" as root, in a console."
+#~ "You now have the opportunity to download encryption software.\n"
+#~ "\n"
+#~ "WARNING:\n"
+#~ "\n"
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
+#~ "\n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
+#~ "\n"
+#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
+#~ "\n"
+#~ "\n"
+#~ "For any queries relating to these agreement, please contact \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
#~ msgstr ""
-#~ "Aplikace XawTV není nainstalovaná!\n"
-#~ "\n"
-#~ "\n"
-#~ "Máte-li TV kartu a nástroj DrakX ji ani nerozpoznal (není přítomen\n"
-#~ "modul bttv nebo saa7314 v \"/etc/modules\"), ani nenainstaloval\n"
-#~ "aplikaci XawTV, pošlete prosím výsledek příkazu\n"
-#~ "\"lspcidrake -v -f\" na adresu \"install@mandrakesoft.com\"\n"
-#~ "s předmětem zprávy \"undetected TV card\".\n"
-#~ "\n"
-#~ "Tuto aplikaci můžete doinstalovat příkazem \"urpmi xawtv\" spuštěným \n"
-#~ "v konzoli pod uživatelem root."
-
-#~ msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-2,*-r-*"
-
-#~ msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
-
-#~ msgid "Error while parsing \"MODULES\" line from %s"
-#~ msgstr "Chyba při zpracování řádku \"MODULES\" z %s"
-
-#~ msgid "Hostname configuration"
-#~ msgstr "Nastavení názvu poÄítaÄe"
-
-#~ msgid "Hostname"
-#~ msgstr "Název poÄítaÄe"
+#~ "Nyní si mù¾ete stáhnout ¹ifrovací software.\n"
+#~ "\n"
+#~ "VAROVÁNÍ:\n"
+#~ "\n"
+#~ "Kvùli rùzným obecným po¾adavkùm a naøízením rùzných soudních úøadù,\n"
+#~ "vztahujícím se na tento druh software, by se mìl zákazník a/nebo koncový\n"
+#~ "u¾ivatel ujistit, zda mu jeho soudní správa umo¾òuje stáhnout si, ulo¾it\n"
+#~ "a pou¾ívat tento software.\n"
+#~ "\n"
+#~ "Zákazník a/nebo koncový u¾ivatel by si mìl být vìdomý toho, ¾e nesmí\n"
+#~ "pøestupovat zákony své jurisdikce. Pokud zákazník a/nebo koncový "
+#~ "u¾ivatel\n"
+#~ "nebude respektovat ustanovení vztahujících se zákonù, mù¾e se vystavit\n"
+#~ "postihu.\n"
+#~ "\n"
+#~ "V ka¾dém pøípadì se MandrakeSoft i jeho výrobny a dodavatelé vzdávají\n"
+#~ "jakékoliv zodpovìdnosti za pøímé i nepøímé ¹kody (vèetnì ztráty ziskù,\n"
+#~ "pøeru¹ení podnikání, ztráty obchodních informací, jako¾to i jiných "
+#~ "penì¾ních\n"
+#~ "ztrát a eventuálních postihù, po¾adavkù na od¹kodnìní a ¾alob) vzniklé\n"
+#~ "vlastnictvím, pou¾íváním nebo pouhým stahováním tohoto software, ke "
+#~ "kterému\n"
+#~ "mù¾e mít zákazník a/nebo nebo koncový u¾ivatel pøístup kdy¾ odsouhlasí\n"
+#~ "tuto dohodu.\n"
+#~ "\n"
+#~ "\n"
+#~ "Pokud máje jakékoliv dotazy vztahující se k této dohodì, kontaktujte "
+#~ "prosím\n"
+#~ "MandrakeSoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
+
+#~ msgid "Proxy configuration"
+#~ msgstr "Nastavení proxy"
#~ msgid ""
-#~ "WARNING!\n"
+#~ "Welcome to the proxy configuration utility.\n"
#~ "\n"
-#~ "DrakX will now resize your Windows partition. Be careful:\n"
-#~ "this operation is dangerous. If you have not already done\n"
-#~ "so, you should first exit the installation, run scandisk\n"
-#~ "under Windows (and optionally run defrag), then restart the\n"
-#~ "installation. You should also backup your data.\n"
-#~ "When sure, press Ok."
+#~ "Here, you'll be able to set up your http and ftp proxies\n"
+#~ "with or without login and password\n"
#~ msgstr ""
-#~ "VAROVÃNÃ!\n"
+#~ "Vítejte v konfiguraèním nástroji pro proxy.\n"
#~ "\n"
-#~ "DrakX nyní musí zmenÅ¡it oddíl s Windows. BuÄte opatrní: tato operace je\n"
-#~ "nebezpeÄná. Pokud jste tak již neuÄinili, mÄ›li byste nejprve ukonÄit "
-#~ "instalaci,\n"
-#~ "spustit scandisk ve Windows (popřípadě i defrag) a potom instalaci znovu "
-#~ "spustit\n"
-#~ "Také byste si měli data zálohovat. Až si budete jistí, že chcete "
-#~ "pokraÄovat\n"
-#~ "stiskněte Ok."
-
-#~ msgid "Remote Printers"
-#~ msgstr "Vzdálené tiskárny"
+#~ "Zde nastavujete http a ftp proxy zadáním\n"
+#~ "pøidìleného pøihla¹ovacího jména a hesla\n"
#~ msgid ""
-#~ "Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3200/3300 with scanner, Sony IJP-V100), an HP "
-#~ "PhotoSmart or an HP LaserJet 2200?"
+#~ "Please fill in the http proxy informations\n"
+#~ "Leave it blank if you don't want an http proxy"
#~ msgstr ""
-#~ "Je vaÅ¡e tiskárna multifunkÄní zařízení od HP nebo od Sony (OfficeJet, "
-#~ "PSC, LaserJet 1100/1200/1220/3200/3300 se skenerem, Sony IJP-V100) nebo "
-#~ "HP PhotoSmart Äi HP LaserJet 2200?"
-
-#~ msgid "Printing system: "
-#~ msgstr "Tiskový systém: "
+#~ "Zadejte prosím hodnoty pro http proxy\n"
+#~ "V pøípadì, ¾e nemáte http proxy, ponechejte prázdné"
-#~ msgid "Level 1"
-#~ msgstr "Úroveň 1"
+#~ msgid "URL"
+#~ msgstr "URL"
-#~ msgid "Level 2"
-#~ msgstr "Úroveň 2"
+#~ msgid "port"
+#~ msgstr "port"
-#~ msgid "Level 3"
-#~ msgstr "Úroveň 3"
+#~ msgid "Url should begin with 'http:'"
+#~ msgstr "URL by mìlo být 'http:'"
-#~ msgid "Level 4"
-#~ msgstr "Úroveň 4"
+#~ msgid "The port part should be numeric"
+#~ msgstr "Èíslo portu musí být numerické"
-#~ msgid "Level 5"
-#~ msgstr "Úroveň 5"
+#~ msgid ""
+#~ "Please fill in the ftp proxy informations\n"
+#~ "Leave it blank if you don't want an ftp proxy"
+#~ msgstr ""
+#~ "Zadejte prosím hodnoty pro ftp proxy\n"
+#~ "V pøípadì, ¾e nemáte ftp proxy, ponechejte prázdné"
-#~ msgid "Insert floppy and press %s"
-#~ msgstr "Vložte disketu a stiskněte %s"
+#~ msgid ""
+#~ "Please enter proxy login and password, if any.\n"
+#~ "Leave it blank if you don't want login/passwd"
+#~ msgstr ""
+#~ "Pokud je potøeba, zadejte prosím pøihla¹ovací jméno\n"
+#~ "a heslo. Pokud je nepotøebujete, nechte prázdné"
-#~ msgid "Load"
-#~ msgstr "Zátěž"
+#~ msgid "login"
+#~ msgstr "login"
-#~ msgid "Bad Ip"
-#~ msgstr "Špatná IP adresa"
+#~ msgid "password"
+#~ msgstr "heslo"
-#~ msgid "Output"
-#~ msgstr "Výstup"
+#~ msgid "re-type password"
+#~ msgstr "heslo znova"
-#~ msgid ""
-#~ "Directory (or module) to\n"
-#~ " put the backup on this host."
-#~ msgstr ""
-#~ "Adresář (nebo modul), do kterého\n"
-#~ " bude umístÄ›na záloha na tomto poÄítaÄi."
+#~ msgid "The passwords don't match. Try again!"
+#~ msgstr "Hesla nejsou shodná. Zkuste to znovu!"
-#~ msgid ""
-#~ "We are now going to configure the %s connection.\n"
-#~ "\n"
-#~ "\n"
-#~ "Press \"Forward\" to continue."
-#~ msgstr ""
-#~ "Nyní se bude konfigurovat připojení %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "StisknÄ›te \"PokraÄovat\" pro pokraÄování."
+#~ msgid "Can't write file %s"
+#~ msgstr "Nemù¾u zapsat soubor %s"
-#~ msgid "Please relog into %s to activate the changes"
-#~ msgstr "Pro aktivaci změn se prosím znovu přihlaste na %s"
+#~ msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-iso8859-2,*"
-#~ msgid ""
-#~ "Create/Transfer\n"
-#~ "backup keys for SSH"
-#~ msgstr ""
-#~ "Vytvořit/Přenést\n"
-#~ "záložní klíÄe pro SSH"
+#~ msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-iso8859-2,*"
+#, fuzzy
#~ msgid ""
-#~ "Other (not drakbackup)\n"
-#~ "keys in place already"
+#~ "Warning, another internet connexion has been detected, maybe using your "
+#~ "network"
#~ msgstr ""
-#~ "Jiné (ne pro drakbackup)\n"
-#~ "klíÄe jsou již na místÄ›"
+#~ "Varování, bylo detekováno jiné pøipojení k Internetu, zøejmì je to sí»"
-#~ msgid "Filename to search for (wildcards allowed):"
-#~ msgstr "Název souboru, který hledáte (zástupné znaky povoleny):"
+#~ msgid "no help implemented yet.\n"
+#~ msgstr "nápovìda zatím nedostupná.\n"
-#~ msgid "Start Search..."
-#~ msgstr "Spustit vyhledávání..."
+#~ msgid "Please click on a medium"
+#~ msgstr "Prosím klepnìte na zdroj"
-#~ msgid ""
-#~ " Transfer \n"
-#~ "Now"
-#~ msgstr ""
-#~ " Přenos \n"
-#~ "Nyní"
+#~ msgid "Removing LPRng..."
+#~ msgstr "Odebírám LprNG..."
-#~ msgid ""
-#~ "Search For...\n"
-#~ "%s"
-#~ msgstr ""
-#~ "Hledat...\n"
-#~ "%s"
+#~ msgid "Removing LPD..."
+#~ msgstr "Odebírám LPD..."
#~ msgid ""
#~ "Description:\n"
#~ "\n"
#~ " Drakbackup is used to backup your system.\n"
-#~ " During the configuration you can select: \n"
+#~ " During the configuration you can select \n"
#~ "\t- System files, \n"
#~ "\t- Users files, \n"
#~ "\t- Other files.\n"
@@ -21280,2103 +15285,107 @@ msgstr ""
#~ " Drakbackup allows you to restore your system to\n"
#~ " a user selected directory.\n"
#~ "\n"
-#~ " Per default all backups will be stored on your\n"
+#~ " Per default all backup will be stored on your\n"
#~ " /var/lib/drakbackup directory\n"
#~ "\n"
#~ " Configuration file:\n"
-#~ "\t/etc/drakconf/drakbackup/drakbackup.conf\n"
+#~ "\t/etc/drakconf/drakbackup/drakbakup.conf\n"
#~ "\n"
#~ "Restore Step:\n"
#~ " \n"
-#~ " During the restore step, DrakBackup will remove \n"
-#~ " your original directory and verify that all \n"
-#~ " backup files are not corrupted. It is recommended \n"
+#~ " During the restore step, Drakbackup will remove\n"
+#~ " your original directory and verify that all\n"
+#~ " backup files are not corrupted. It is recommended\n"
#~ " you do a last backup before restoring.\n"
-#~ "\n"
+#~ " \n"
#~ "\n"
#~ msgstr ""
#~ "Popis:\n"
#~ "\n"
-#~ " DrakBackup je nástroj na zálohování systému.\n"
-#~ " Během konfigurace můžete vybrat: \n"
-#~ "\t- Systémové soubory,\n"
-#~ "\t- Soubory uživatelů,\n"
-#~ "\t- Ostatní soubory.\n"
-#~ "\tnebo Celý systém a jiné (jako jsou oddíly s Windows).\n"
+#~ " DrakBackup je nástroj na zálohování systému.\n"
+#~ " Bìhem konfigurace mù¾ete vybrat \n"
+#~ "\t- Systémové soubory,\n"
+#~ "\t- Soubory u¾ivatelù,\n"
+#~ "\t- Ostatní soubory.\n"
+#~ "\tnebo Celý systém a jiné (jako jsou oddíly s Windows).\n"
#~ "\n"
-#~ " DrakBackup dovoluje zálohovat na:\n"
-#~ "\t- Pevný disk.\n"
+#~ " DrakBackup dovoluje zálohovat na:\n"
+#~ "\t- Pevný disk.\n"
#~ "\t- NFS.\n"
-#~ "\t- CDROM (CDRW), DVDROM (se spuštěním, záchranou a autoinstalací).\n"
+#~ "\t- CDROM (CDRW), DVDROM (se spu¹tìním, záchranou a autoinstalací).\n"
#~ "\t- FTP.\n"
#~ "\t- Rsync.\n"
-#~ "\t- WebDAV.\n"
-#~ "\t- Páskovou jednotku.\n"
+#~ "\t- Webdav.\n"
+#~ "\t- Páskovou jednotku.\n"
#~ "\n"
-#~ " DrakBackup dovoluje provést obnovu do vybraného adresáře.\n"
+#~ " DrakBackup dovoluje provést obnovu do vybraného adresáøe.\n"
#~ "\n"
-#~ " Jako výchozí jsou umístěny všechny zálohy do adresáře\n"
+#~ " Jako výchozí jsou umístìny v¹echny zálohy do adresáøe\n"
#~ " /var/lib/drakbackup \n"
#~ "\n"
-#~ " KonfiguraÄní soubor:\n"
+#~ " Konfiguraèní soubor:\n"
#~ "\t/etc/drakconf/drakbackup/drakbackup.conf\n"
#~ "\n"
#~ "\n"
-#~ "Postup při obnově:\n"
+#~ "Postup pøi obnovì:\n"
#~ "\n"
-#~ " Při provádění obnovy odstraní DrakBackup původní adresář\n"
-#~ " a ověří, že zálohované soubory nejsou poškozeny.\n"
-#~ " DoporuÄuje se ale provést zálohu tÄ›chto dat pÅ™ed provedením\n"
+#~ " Pøi provádìní obnovy odstraní DrakBackup pùvodní adresáø\n"
+#~ " a ovìøí, ¾e zálohované soubory nejsou po¹kozeny.\n"
+#~ " Doporuèuje se ale provést zálohu tìchto dat pøed provedením\n"
#~ " obnovy.\n"
#~ "\n"
#~ "\n"
#~ msgid ""
-#~ "Options Description:\n"
-#~ "\n"
-#~ " - Backup System Files:\n"
-#~ " \n"
-#~ "\tThis option allows you to backup your /etc directory,\n"
-#~ "\twhich contains all configuration files. Please be\n"
-#~ "\tcareful during the restore step to not overwrite:\n"
-#~ "\t\t/etc/passwd \n"
-#~ "\t\t/etc/group \n"
-#~ "\t\t/etc/fstab\n"
-#~ "\n"
-#~ " - Backup User Files: \n"
-#~ "\n"
-#~ "\tThis option allows you select all users that you want to \n"
-#~ "\tbackup. To preserve disk space, it is recommended that\n"
-#~ "\tyou do not include the web browser's cache.\n"
-#~ "\n"
-#~ " - Backup Other Files: \n"
-#~ "\n"
-#~ "\tThis option allows you to include additional data to save.\n"
-#~ "\tIf you want to add individual files, select them from the\n"
-#~ "\trighthand 'Files' list pane. To add directories, enter the \n"
-#~ "\tdirectory by clicking on it in the lefthand 'Folders' pane, \n"
-#~ "\tand at that point click 'OK' without selecting any files.\n"
-#~ " \n"
-#~ " - Incremental Backups:\n"
-#~ "\n"
-#~ "\tThe incremental backup is the most powerful option for \n"
-#~ "\tbackup. This option allows you to backup all your data \n"
-#~ "\tthe first time, and only the changed data afterward.\n"
-#~ "\tThen you will be able, during the restore step, to restore \n"
-#~ "\tyour data from a specified date. If you have not selected \n"
-#~ "\tthis option all old backups are deleted before each backup. \n"
-#~ "\n"
-#~ " - Differential Backups:\n"
-#~ " \n"
-#~ "\tThe differential backup, rather than comparing changes in the\n"
-#~ "\tdata to the previous incremental backup, always compares the\n"
-#~ "\tdata to the initial base backup. This method allows one to\n"
-#~ "\trestore the base and then the differential from a certain date.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Popis voleb:\n"
-#~ "\n"
-#~ "- Záloha systémových souborů:\n"
-#~ " \n"
-#~ "\tTato volba zálohuje adresář /etc, který obsahuje všechny\n"
-#~ "\tkonfiguraÄní soubory. Dávejte pozor pÅ™i obnovÄ› na to,\n"
-#~ "\taby se nepřepsaly soubory:\n"
-#~ "\t\t/etc/passwd \n"
-#~ "\t\t/etc/group \n"
-#~ "\t\t/etc/fstab\n"
-#~ "\n"
-#~ " - Zálohovat soubory uživatelů:\n"
-#~ "\n"
-#~ "\tTato volba dovoluje vybrat všechny uživatele, které\n"
-#~ "\t\tchcete zálohovat.\n"
-#~ "\tAby se ušetřilo místo na disku, není dobré zahrnout cache\n"
-#~ "\tod prohlížeÄe.\n"
-#~ "\n"
-#~ " - Zálohovat ostatní soubory:\n"
-#~ "\n"
-#~ "\tTato volba dovolí přidat další data pro zálohování.\n"
-#~ "\tV souÄasnosti není možné pÅ™i tomto zálohování zvolit\n"
-#~ "\tpřírůstkové zálohování.\t\n"
-#~ "\n"
-#~ " - Přírůstkové zálohování:\n"
-#~ "\n"
-#~ "\tPřírůstkové zálohování je velmi mocný druh zálohování,\n"
-#~ "\tprotože dovoluje zálohovat všechna data pouze poprvé\n"
-#~ "\ta dále se zálohují pouze změny.\n"
-#~ "\tBěhem obnovy tak budete moci zadat, od jakého data se\n"
-#~ "\tmají data obnovit.\n"
-#~ "\tPokud nezvolíte tuto možnost, bude při každé záloze\n"
-#~ "\tpředchozí záloha smazána.\n"
-#~ "\n"
-
-#~ msgid "Please check if you want to use the non-rewinding device."
-#~ msgstr ""
-#~ "Pokud chcete používat zařízení bez zpětného převíjení, prosím zatrhněte."
-
-#~ msgid "Please enter your password"
-#~ msgstr "Zadejte své heslo"
-
-#~ msgid ""
-#~ "\n"
-#~ " Some errors during sendmail are caused by \n"
-#~ " a bad configuration of postfix. To solve it you have to\n"
-#~ " set myhostname or mydomain in /etc/postfix/main.cf\n"
-#~ "\n"
-#~ msgstr ""
-#~ "\n"
-#~ " Některé chyby při nastavení pošty jsou způsobeny\n"
-#~ " špatnou konfigurací programu postfix. Pro vyřešení\n"
-#~ " nastavte myhostname a mydomain v /etc/postfix/main.cf\n"
-#~ "\n"
-
-#~ msgid ""
-#~ "Options Description:\n"
-#~ "\n"
-#~ " In this step Drakbackup allow you to change:\n"
-#~ "\n"
-#~ " - the .backupignore mode:\n"
-#~ "\n"
-#~ " Like with cvs, drakbackup will ignore all references\n"
-#~ " included in .backupignore files in each directory.\n"
-#~ " \n"
-#~ "\t Example: \n"
-#~ " #> cat .backupignore\n"
-#~ " *.o\n"
-#~ " *~\n"
-#~ " ...\n"
-#~ " \n"
-#~ " - The user(s) to whom drakbackup reports should be mailed to.\n"
-#~ " \n"
-#~ " This can be a comma sperated lists of local users, or\n"
-#~ " internet email addresses if your system is setup to\n"
-#~ " do internet mail.\n"
-#~ " \n"
-#~ " - The compression mode (not enabled):\n"
-#~ " \n"
-#~ " If you check bzip2 compression, you will compress\n"
-#~ " your data better than gzip (about 2-10 %%).\n"
-#~ " This option is not checked by default because\n"
-#~ " this compression mode needs more time (about 1000%% more).\n"
-#~ " \n"
-#~ " - The update mode (not enabled):\n"
-#~ "\n"
-#~ " This option will update your backup, but this\n"
-#~ " option is not really useful because you need to\n"
-#~ " decompress your backup before you can update it.\n"
-#~ " \n"
-#~ msgstr ""
-#~ "Popis voleb:\n"
-#~ "\n"
-#~ "V tomto kroku vám Drakbackup dovoluje změnit následující:\n"
-#~ "\n"
-#~ " - režim použití souboru .backupignore:\n"
-#~ "\n"
-#~ " Stejně jako pro cvs, i pro DrakBackup lze uvést seznam\n"
-#~ " souborů v .backupignore, které budou při zálohování ignorovány.\n"
-#~ " napÅ™.:\n"
-#~ " \\$> cat .backupignore\n"
-#~ " *.o\n"
-#~ " *~\n"
-#~ " ...\n"
-#~ "\n"
-#~ " - Uživatele, kterému bude zaslán report o provedené záloze.\n"
-#~ "\n"
-#~ " Může to být seznam lokálních uživatelů oddÄ›lený Äárkou nebo\n"
-#~ " seznam internetových adres, pokud je to umožněno.\n"
-#~ "\n"
-#~ " - Režim komprese:\n"
-#~ " \n"
-#~ " Pokud zvolíte kompresi bzip2, budete mít kompresi\n"
-#~ " lepší než pomocí gzip (okolo 2-10%%).\n"
-#~ " Tato volba není zvolena jako výchozí, protože\n"
-#~ " vyžaduje daleko více Äasu (až o 1000%% více).\n"
-#~ "\n"
-#~ " - Režim aktualizace:\n"
-#~ "\n"
-#~ " Tato volba aktualizuje zálohu, ale není moc užiteÄná,\n"
-#~ " protože před aktualizací musíte nejdříve zálohu\n"
-#~ " dekomprimovat.\n"
-#~ " \n"
-
-#~ msgid ""
-#~ "Please choose your CD/DVD device\n"
-#~ "(Press Enter to propogate settings to other fields.\n"
-#~ "This field isn't necessary, only a tool to fill in the form.)"
-#~ msgstr ""
-#~ "Vyberte prosím své zařízení CD/DVD.\n"
-#~ "(Stisknutím klávesy Enter přenesete nastavení do ostatních polí.\n"
-#~ "Toto políÄko není povinné, je to pouze nástroj pro vyplnÄ›ní formuláře.)"
-
-#~ msgid "Please check if you want to eject your tape after the backup."
-#~ msgstr ""
-#~ "Pokud chcete po zálohování pásku automaticky vysunout, prosím zatrhněte."
-
-#~ msgid "Please check if you want to erase your tape before the backup."
-#~ msgstr ""
-#~ "Pokud chcete před zálohováním vaši pásku nejdříve smazat, prosím zatrhněte"
-
-#~ msgid "Please enter the host name or IP."
-#~ msgstr "Zadejte prosím název poÄítaÄe nebo IP."
-
-#~ msgid ""
-#~ " Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s@epita."
-#~ "fr>"
-#~ msgstr ""
-#~ " Copyright ©2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s@epita.fr>"
-
-#~ msgid ""
-#~ "Options Description:\n"
-#~ "\n"
-#~ "Please be careful when you are using ftp backup, because only \n"
-#~ "backups that are already built are sent to the server.\n"
-#~ "So at the moment, you need to build the backup on your hard \n"
-#~ "drive before sending it to the server.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Popis voleb:\n"
-#~ "\n"
-#~ "BuÄte opatrní pÅ™i zálohování na FTP, protože na server je poslána\n"
-#~ "pouze již vytvořená záloha.\n"
-#~ "Je tudíž vhodné zálohu, dříve než ji pošlete na server, provést\n"
-#~ "na disk\n"
-#~ "\n"
-
-#~ msgid ""
-#~ "\n"
-#~ "Restore Backup Problems:\n"
-#~ "\n"
-#~ "During the restore step, Drakbackup will verify all your\n"
-#~ "backup files before restoring them.\n"
-#~ "Before the restore, Drakbackup will remove \n"
-#~ "your original directory, and you will loose all your \n"
-#~ "data. It is important to be careful and not modify the \n"
-#~ "backup data files by hand.\n"
-#~ msgstr ""
-#~ "\n"
-#~ "Problémy při obnově:\n"
-#~ "\n"
-#~ "Při obnovování DrakBackup nejdříve ověřuje všechny\n"
-#~ "zálohované soubory.\n"
-#~ "Před tím, než je soubor obnoven, provede DrakBackup výmaz\n"
-#~ "původního souboru, a tak přijdete o všechna data.\n"
-#~ "BuÄte proto opatrní a nesnažte se modifikovat zálohovaná\n"
-#~ "data ruÄnÄ›.\n"
-#~ "\n"
-
-#~ msgid ""
-#~ "Restore Description:\n"
-#~ "\n"
-#~ "Drakbackup now allows you to search the backup lists for a particular\n"
-#~ "file or files to restore. If the search is successful, you will be \n"
-#~ "presented with a list of matches, along with backup media and dates.\n"
-#~ "You can then select individual files to restore from your backup media.\n"
-#~ " \n"
-#~ "For 'normal' restores, only the most recent date will be used, \n"
-#~ "because with incremental backups it is necessary to restore \n"
-#~ "one by one each older backup.\n"
-#~ "\n"
-#~ "So if you don't want to restore a user please unselect all their\n"
-#~ "check boxes.\n"
-#~ "\n"
-#~ "Otherwise, you are able to select only one of these.\n"
-#~ "\n"
-#~ " - Incremental Backups:\n"
-#~ "\n"
-#~ "\tThe incremental backup is the most powerful option for \n"
-#~ "\tbackup. This option allows you to backup all your data \n"
-#~ "\tthe first time, and only the changed data afterward.\n"
-#~ "\tThen you will be able, during the restore step, to restore \n"
-#~ "\tyour data from a specified date. If you have not selected \n"
-#~ "\tthis option all old backups are deleted before each backup. \n"
-#~ "\n"
-#~ " - Differential Backups:\n"
-#~ " \n"
-#~ "\tThe differential backup, rather than comparing changes in the\n"
-#~ "\tdata to the previous incremental backup, always compares the\n"
-#~ "\tdata to the initial base backup. This method allows one to\n"
-#~ "\trestore the base and then the differential from a certain date.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Popis voleb pro obnovu:\n"
-#~ "\n"
-#~ "Brakbackup nyní umožňuje vyhledat v seznamu záloh soubor nebo\n"
-#~ "soubory, které se budou obnovovat. Pokud je vyhledávání úspěšné\n"
-#~ "zobrazí se nalezený seznam s datum a umístěním zálohy.\n"
-#~ "Potom si můžete pro obnovu ze zálohy vybrat jednotlivé soubory.\n"
-#~ "\n"
-#~ "Bude použita záloha s nejaktuálnějším datem, protože při\n"
-#~ "přírůstkovém zálohování je nutné provádět obnovu jednu\n"
-#~ "za druhou směrem ke starším datům.\n"
-#~ "\n"
-#~ "Pokud nechcete obnovit uživatele, odznaÄte vÅ¡echny\n"
-#~ "jeho zaÅ¡krtávací políÄka.\n"
-#~ "\n"
-#~ "Jinak je možné si vybrat pouze jedno z následujících.\n"
-#~ "\n"
-#~ " - Přírůstkové zálohování:\n"
-#~ "\n"
-#~ "\tPřírůstkové zálohování je velmi mocný druh zálohování,\n"
-#~ "\tprotože dovoluje zálohovat všechna data pouze poprvé\n"
-#~ "\ta dále se zálohují pouze změny.\n"
-#~ "\tBěhem obnovy tak budete moci zadat, od jakého data se\n"
-#~ "\tmají data obnovit.\n"
-#~ "\tPokud nezvolíte tuto možnost, bude při každé záloze\n"
-#~ "\tpředchozí záloha smazána. \n"
-#~ "\n"
-#~ " - Rozdílové zálohování:\n"
-#~ "\n"
-#~ "\tU přírůstkového zálohování se porovnávají změny oproti\n"
-#~ "výchozímu stavu zálohy. Tato metoda dovoluje obnovit výchozí\n"
-#~ "stav a následně změny k danému datu.\n"
-#~ "\n"
-
-#~ msgid ""
-#~ " updates 2002 MandrakeSoft by Stew Benedict <sbenedict@mandrakesoft.com>"
-#~ msgstr ""
-#~ " aktualizace 2002 MandrakeSoft od Stewa Benedicta <sbenedict@mandrakesoft."
-#~ "com>"
-
-#~ msgid ""
-#~ "Arguments: (arg, expr='*.*', dev='tty12')\n"
-#~ "\n"
-#~ "Enable/Disable syslog reports to console 12. \\fIexpr\\fP is the\n"
-#~ "expression describing what to log (see syslog.conf(5) for more details) "
-#~ "and\n"
-#~ "dev the device to report the log."
-#~ msgstr ""
-#~ "Argumenty: (arg, expr='*.*', dev='tty12')\n"
-#~ "\n"
-#~ "Povolí/zakáže výpis syslog hlášek na konzoli 12. Výraz \\fIexpr\\fP\n"
-#~ "urÄuje, co se bude logovat (více detailů najdete v nápovÄ›dÄ› syslog.conf"
-#~ "(5))\n"
-#~ "a dev urÄuje na které zařízení se bude log posílat."
-
-#~ msgid "edit"
-#~ msgstr "upravit"
-
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ " Accept/Refuse broadcasted icmp echo."
-#~ msgstr ""
-#~ "Argumenty: (arg)\n"
-#~ "\n"
-#~ "Akceptuje/odmítne všesměrové icmp echo."
-
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable libsafe if libsafe is found on the system."
-#~ msgstr ""
-#~ "Argumenty: (arg)\n"
-#~ "\n"
-#~ " Povolí/zakáže použití knihovny libsafe, pokud je na systému nalezena."
-
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Allow/Forbid remote root login."
-#~ msgstr ""
-#~ "Argumenty: (arg)\n"
-#~ "\n"
-#~ "Povolí/zakáže vzdálené přihlášení uživatele root."
-
-#~ msgid "select perm file to see/edit"
-#~ msgstr "vyberte soubor s oprávněním pro zobrazení/úpravy"
-
-#~ msgid "path"
-#~ msgstr "cesta"
-
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable the logging of IPv4 strange packets."
-#~ msgstr ""
-#~ "Argumenty: (arg)\n"
-#~ "\n"
-#~ "Povolí/zakáže zaznamenávání podivných IPv4 paketů."
-
-#~ msgid ""
-#~ "Arguments: (arg, alert=1)\n"
-#~ "\n"
-#~ "Enable/Disable IP spoofing protection."
-#~ msgstr ""
-#~ "Argumenty: (arg, alert=1)\n"
-#~ "\n"
-#~ "Povolí/zakáže ochranu před IP spoofing."
-
-#~ msgid "permissions"
-#~ msgstr "oprávnění"
-
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable msec hourly security check."
-#~ msgstr ""
-#~ "Argumenty: (arg)\n"
-#~ "\n"
-#~ "Povolí/zakáže bezpeÄnostní kontrolu pravidelnÄ› každou hodinu."
-
-#~ msgid "delete"
-#~ msgstr "smazat"
-
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Accept/Refuse bogus IPv4 error messages."
-#~ msgstr ""
-#~ "Argumenty: (arg)\n"
-#~ "\n"
-#~ "Akceptuje/odmítne nekorektní chybové IPv4 zprávy."
-
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Use password to authenticate users."
-#~ msgstr ""
-#~ "Argumenty: (arg)\n"
-#~ "\n"
-#~ "Použije heslo pro autentizaci uživatelů."
-
-#~ msgid "user"
-#~ msgstr "uživatel"
-
-#~ msgid ""
-#~ "Standard: This is the standard security recommended for a computer that "
-#~ "will be used to connect\n"
-#~ " to the Internet as a client.\n"
-#~ "\n"
-#~ "High: There are already some restrictions, and more automatic "
-#~ "checks are run every night.\n"
-#~ "\n"
-#~ "Higher: The security is now high enough to use the system as a server "
-#~ "which can accept\n"
-#~ " connections from many clients. If your machine is only a "
-#~ "client on the Internet, you\n"
-#~ " should choose a lower level.\n"
-#~ "\n"
-#~ "Paranoid: This is similar to the previous level, but the system is "
-#~ "entirely closed and security\n"
-#~ " features are at their maximum\n"
-#~ "\n"
-#~ "Security Administrator:\n"
-#~ " If the 'Security Alerts' option is set, security alerts "
-#~ "will be sent to this user (username or\n"
-#~ " email)"
-#~ msgstr ""
-#~ "Standardní: Běžné zabezpeÄení doporuÄené pro poÄítaÄ, který bude pÅ™ipojen "
-#~ "k síti\n"
-#~ " Internet jako klient.\n"
-#~ "\n"
-#~ "Vysoká: Jsou již zavedena některá omezení a každou noc je spuštěno "
-#~ "několik automatických kontrol.\n"
-#~ "\n"
-#~ "Vyšší: Úroveň zabezpeÄení je nyní dostateÄnÄ› vysoká, aby bylo možné "
-#~ "použít\n"
-#~ " systém jako server, který přijímá požadavky od mnoha "
-#~ "klientů. Pokud je váš\n"
-#~ "\t poÄítaÄ pÅ™ipojen k Internetu jen jako klient, mÄ›li byste zvolit "
-#~ "nižší úroveň.\n"
-#~ "\n"
-#~ "Paranoidní: Podobná předchozí úrovni, ale systém je zcela uzavřen a "
-#~ "úroveň zabezpeÄení\n"
-#~ " je na svém maximu.\n"
-#~ "\n"
-#~ "Správce bezpeÄnosti:\n"
-#~ " Pokud je zapnuta volba 'BezpeÄnostní varování', budou "
-#~ "bezpeÄnostní varování zasílána tomuto uživateli (uživatelské jméno nebo\n"
-#~ "\t email)"
-
-#~ msgid "Expert Area"
-#~ msgstr "Expertní nastavení"
-
-#~ msgid "Wizard..."
-#~ msgstr "Průvodce..."
-
-#~ msgid "Country"
-#~ msgstr "ZemÄ›"
-
-#~ msgid "Previous"
-#~ msgstr "Předchozí"
-
-#~ msgid ""
-#~ "Options Description:\n"
-#~ "\n"
-#~ " In this step Drakbackup allow you to change:\n"
-#~ "\n"
-#~ " - The compression mode:\n"
-#~ " \n"
-#~ " If you check bzip2 compression, you will compress\n"
-#~ " your data better than gzip (about 2-10 %%).\n"
-#~ " This option is not checked by default because\n"
-#~ " this compression mode needs more time (about 1000%% more).\n"
-#~ " \n"
-#~ " - The update mode:\n"
-#~ "\n"
-#~ " This option will update your backup, but this\n"
-#~ " option is not really useful because you need to\n"
-#~ " decompress your backup before you can update it.\n"
-#~ " \n"
-#~ " - the .backupignore mode:\n"
-#~ "\n"
-#~ " Like with cvs, Drakbackup will ignore all references\n"
-#~ " included in .backupignore files in each directories.\n"
-#~ " ex: \n"
-#~ " #> cat .backupignore\n"
-#~ " *.o\n"
-#~ " *~\n"
-#~ " ...\n"
-#~ " \n"
-#~ "\n"
-#~ msgstr ""
-#~ "Popis voleb:\n"
-#~ "\n"
-#~ " V tomto kroku vám aplikace DrakBackup umožní změnit:\n"
-#~ "\n"
-#~ " - Režim komprese:\n"
-#~ " \n"
-#~ " Pokud zvolíte kompresi bzip2, budete mít kompresi\n"
-#~ " lepší než pomocí gzip (okolo 2-10%%).\n"
-#~ " Tato volba není zvolena jako výchozí, protože\n"
-#~ " vyžaduje daleko více Äasu (až o 1000%% více).\n"
-#~ "\n"
-#~ " - Režim aktualizace:\n"
-#~ "\n"
-#~ " Tato volba aktualizuje zálohu, ale není moc užiteÄná,\n"
-#~ " protože před aktualizací musíte nejdříve zálohu\n"
-#~ " dekomprimovat.\n"
-#~ " \n"
-#~ "- Režim použití souboru .backupignore:\n"
-#~ "\n"
-#~ " Stejně jako pro cvs, i pro DrakBackup lze uvést seznam\n"
-#~ " souborů v .backupignore, které budou při zálohování ignorovány.\n"
-#~ " napÅ™.:\n"
-#~ " \\$> cat .backupignore\n"
-#~ " *.o\n"
-#~ " *~\n"
-#~ " ...\n"
-#~ " \n"
-#~ "\n"
-
-#~ msgid "Please check if you are using CDRW media"
-#~ msgstr "Zvolte pokud používáte CDRW média"
-
-#~ msgid "Please check if you are using a DVDRAM device"
-#~ msgstr "Zvolte pokud používáte zařízení DVD-RAM"
-
-#~ msgid "Please check if you are using a DVDR device"
-#~ msgstr "Zvolte pokud používáte zařízení DVDR"
-
-#~ msgid "Please check for multisession CD"
-#~ msgstr "Zvolte pokud používáte multisession CD"
-
-#~ msgid "We are now going to configure the %s connection."
-#~ msgstr "Nyní se připravuje konfigurace %s připojení."
-
-#~ msgid "Name: %s\n"
-#~ msgstr "Jméno: %s\n"
-
-#~ msgid ""
-#~ "Which ISDN configuration do you prefer?\n"
-#~ "\n"
-#~ "* The Old configuration uses isdn4net. It contains powerful\n"
-#~ " tools, but is tricky to configure, and not standard.\n"
-#~ "\n"
-#~ "* The New configuration is easier to understand, more\n"
-#~ " standard, but with less tools.\n"
-#~ "\n"
-#~ "We recommand the light configuration.\n"
-#~ msgstr ""
-#~ "Kterou ISDN konfiguraci preferujete?\n"
-#~ "\n"
-#~ "* Starou, použitou pro isd4net. Ta obsahuje výkonné nástroje,\n"
-#~ " ale je choulostivá na konfiguraci a není standardní.\n"
-#~ "\n"
-#~ "* Novou konfiguraci, snazší pro porozumění, více standardní,\n"
-#~ " ale s méně nástroji.\n"
-#~ "\n"
-#~ "DoporuÄujeme vybrat si snazší novou konfiguraci.\n"
-
-#~ msgid "New configuration (isdn-light)"
-#~ msgstr "Nová konfigurace (isdn-light)"
-
-#~ msgid "Old configuration (isdn4net)"
-#~ msgstr "Stará konfigurace (isdn4net)"
-
-#~ msgid "Internet connection & configuration"
-#~ msgstr "Nastavení a připojení k internetu"
-
-#~ msgid "Disconnect"
-#~ msgstr "Odpojit"
-
-#~ msgid "Connect"
-#~ msgstr "Připojit"
-
-#~ msgid ""
-#~ "\n"
-#~ "You can reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "Můžete překonfigurovat připojení."
-
-#~ msgid ""
-#~ "\n"
-#~ "You can connect to the Internet or reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "Nemůžete se připojit k Internetu nebo překonfigurovat připojení."
-
-#~ msgid "You are not currently connected to the Internet."
-#~ msgstr "V souÄasnosti nejste pÅ™ipojeni k Internetu."
-
-#~ msgid ""
-#~ "\n"
-#~ "You can disconnect or reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "Můžete se odpojit nebo překonfigurovat připojení."
-
-#~ msgid "You are currently connected to the Internet."
-#~ msgstr "V souÄasnosti jste pÅ™ipojeni k Internetu"
-
-#~ msgid "files sending by FTP"
-#~ msgstr "soubory poslané přes FTP"
-
-#~ msgid "Use incremental backup (do not replace old backups)"
-#~ msgstr "Použít přírůstkovou zálohu (nepřepisovat starší zálohy)"
-
-#~ msgid "Relaunch 'lilo'"
-#~ msgstr "Znovu spustit 'lilo'"
-
-#~ msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#~ msgstr "Provést initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-
-#~ msgid "Copy %s to %s"
-#~ msgstr "Kopíruji %s do %s"
-
-#~ msgid "Backup %s to %s.old"
-#~ msgstr "Zálohuji %s do %s.old"
-
-#~ msgid "ttf fonts conversion"
-#~ msgstr "konverze ttf fontů"
-
-#~ msgid "Fonts conversion"
-#~ msgstr "Konverze fontů"
-
-#~ msgid "Author:"
-#~ msgstr "Autor:"
-
-#~ msgid "Audio station"
-#~ msgstr "Práce se zvukem"
-
-#~ msgid "Sound playing/editing programs"
-#~ msgstr "Programy pro přehrávání/editaci zvuku"
-
-#~ msgid "Video station"
-#~ msgstr "Video"
-
-#~ msgid "Video playing programs"
-#~ msgstr "Programy pro přehrávání videa"
-
-#~ msgid "Graphic station"
-#~ msgstr "Grafická stanice"
-
-#~ msgid "Graphics programs"
-#~ msgstr "Grafické programy"
-
-#~ msgid "Printer sharing"
-#~ msgstr "Sdílení tiskárny"
-
-#~ msgid ""
-#~ "Your printer belongs to the group of GDI laser printers (winprinters) "
-#~ "sold by different manufacturers which uses the Zenographics ZJ-stream "
-#~ "raster format for the data sent to the printer. The driver for these "
-#~ "printers is still in a very early development stage and so it will "
-#~ "perhaps not always work properly. Especially it is possible that the "
-#~ "printer only works when you choose the A4 paper size.\n"
-#~ "\n"
-#~ "Some of these printers, as the HP LaserJet 1000, for which this driver "
-#~ "was originally created, need their firmware to be uploaded to them after "
-#~ "they are turned on. In the case of the HP LaserJet 1000 you have to "
-#~ "search the printer's Windows driver CD or your Windows partition for the "
-#~ "file \"sihp1000.img\" and upload the file to the printer with one of the "
-#~ "following commands:\n"
+#~ "drakbug version %s\n"
+#~ "Copyright (C) 2002 MandrakeSoft.\n"
+#~ "This is free software and may be redistributed under the terms of the GNU "
+#~ "GPL.\n"
#~ "\n"
-#~ " lpr -o raw sihp1000.img\n"
-#~ " cat sihp1000.img > /dev/usb/lp0\n"
+#~ "usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
#~ "\n"
-#~ "The first command can be given by any normal user, the second must be "
-#~ "given as root. After having done so you can print normally.\n"
+#~ "OPTIONS:\n"
#~ msgstr ""
-#~ "Vaše tiskárna patří do skupiny laserových tiskáren GDI (tzv. winprinter), "
-#~ "které jsou prodávány různými dodavateli a které používají pro data "
-#~ "posílaná na tiskárnu rastrovací formát Zenographics ZJ-stream. OvladaÄ "
-#~ "pro tento tyto tiskárny je zatím v poměrně raném stadiu vývoje a tak "
-#~ "možná nebude vždy pracovat správně. Zejména je možné, že tiskárna bude "
-#~ "pracovat správně pouze tehdy, pokud vyberete velikost papíru A4.\n"
+#~ "DrakBug verze %s\n"
+#~ "Copyright (C) 2002 MandrakeSoft.\n"
+#~ "Toto je volnì ¹iøitelný software a lze jej ¹íøit za podmínek licence GNU "
+#~ "GPL.\n"
#~ "\n"
-#~ "Některé z těchto tiskáren, jako například HP LaserJet 1000, pro kterou "
-#~ "byl původnÄ› tento ovladaÄ vytvoÅ™en, potÅ™ebují po svém zapnutí nahrát svůj "
-#~ "firmware. V případě tiskárny HP LaserJet 1000 musíte prohledat CD s "
-#~ "ovladaÄi pro Windows nebo váš oddíl se systémem Windows, najít soubor "
-#~ "\"sihp1000.img\", a nahrát jej do tiskárny jedním z následujících "
-#~ "příkazů:\n"
+#~ "pou¾ití: drakbug [VOLBY] [NÁZEV_PROGRAMU]\n"
#~ "\n"
-#~ " lpr -o raw sihp1000.img\n"
-#~ " cat sihp1000.img > /dev/usb/lp0\n"
-#~ "\n"
-#~ "První příkaz může zadat i běžný uživatel, druhý může provést pouze "
-#~ "uživatel root. Poté, co výše uvedené provedete, můžete normálně "
-#~ "tisknout.\n"
-
-#~ msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
-#~ msgstr "Laserová tiskárna GDI používající formát Zenographics ZJ-Stream"
-
-#~ msgid "Office"
-#~ msgstr "Kancelář"
-
-#~ msgid "Set of tools for mail, news, web, file transfer, and chat"
-#~ msgstr ""
-#~ "Skupina programů pro poštu, diskusní skupiny, web, přenos souborů a chat"
-
-#~ msgid "Games"
-#~ msgstr "Hry"
-
-#~ msgid "Multimedia - Graphics"
-#~ msgstr "Multimédia - grafika"
-
-#~ msgid "Graphics programs such as The Gimp"
-#~ msgstr "Grafické programy jako např. GIMP"
-
-#~ msgid "Multimedia - Sound"
-#~ msgstr "Multimédia - zvuk"
-
-#~ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-#~ msgstr "Nástroje pro zvuk: pÅ™ehrávaÄe mp3 a midi, mixéry a další"
-
-#~ msgid "Multimedia - Video"
-#~ msgstr "Multimédia - video"
-
-#~ msgid "Video players and editors"
-#~ msgstr "PÅ™ehrávaÄe a editory videa"
-
-#~ msgid "Multimedia - CD Burning"
-#~ msgstr "Multimédia - vypalování CD"
-
-#~ msgid "Tools to create and burn CD's"
-#~ msgstr "Nástroje pro vytváření a vypalování CD"
-
-#~ msgid "More Graphical Desktops (Gnome, IceWM)"
-#~ msgstr "Další grafické desktopy Gnome, IceWM)"
-
-#~ msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-#~ msgstr "Gnome, IceWM, Window Maker, Enlightenment, Fvwm a další"
-
-#~ msgid "Personal Information Management"
-#~ msgstr "Správce osobních informací (PIM)"
-
-#~ msgid "Tools for your Palm Pilot or your Visor"
-#~ msgstr "Nástroje pro váš Palm Pilot nebo Visor"
-
-#~ msgid "Personal Finance"
-#~ msgstr "Správa osobních financí"
-
-#~ msgid "Programs to manage your finances, such as gnucash"
-#~ msgstr "Programy na správu vašich financí jako např. GnuCash"
-
-#~ msgid "no network card found"
-#~ msgstr "nebyla nalezena síťová karta"
-
-#~ msgid ""
-#~ "Mandrake Linux 9.2 has selected the best software for you. Surf the Web "
-#~ "and view animations with Mozilla and Konqueror, or read your mail and "
-#~ "handle your personal information with Evolution and Kmail"
-#~ msgstr ""
-#~ "Distribuce Mandrake Linux 9.2 vám přináší ten nejlepší software. S pomocí "
-#~ "aplikací Mozilla a Konqueror si můžete prohlížet webové stránky a "
-#~ "animace, ke Ätení poÅ¡ty a zpracování osobních informací lze použít "
-#~ "aplikace Evolution a Kmail."
-
-#~ msgid "Get the most from the Internet"
-#~ msgstr "Dostaňte z Internetu co nejvíce"
-
-#~ msgid "Push multimedia to its limits!"
-#~ msgstr "Využijte multimédia na maximum!"
-
-#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
-#~ msgstr "Objevte nejnovější verze nástrojů pro grafiku a multimédia!"
-
-#~ msgid ""
-#~ "Mandrake Linux 9.2 provides the best Open Source games - arcade, action, "
-#~ "strategy, ..."
-#~ msgstr ""
-#~ "Mandrake Linux 9.2 nabízí ty nejlepší Open Source hry - arkády, akÄní, "
-#~ "strategické, ..."
-
-#~ msgid ""
-#~ "Mandrake Linux 9.2 provides a powerful tool to fully customize and "
-#~ "configure your machine"
-#~ msgstr ""
-#~ "Ovládací centrum pro Mandrake Linux 9.0 poskytuje výkonné nástroje pro "
-#~ "správu a nastavení vaÅ¡eho poÄítaÄe."
-
-#~ msgid "User interfaces"
-#~ msgstr "Uživatelská rozhraní"
-
-#~ msgid ""
-#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
-#~ "Source development environments"
-#~ msgstr ""
-#~ "Využijte plnou sílu kompilátoru GNU gcc 3, stejně jako nejlepší vývojová "
-#~ "prostředí, které Open Source software poskytuje."
-
-#~ msgid "Development simplified"
-#~ msgstr "Zjednodušený vývoj"
-
-#~ msgid ""
-#~ "This firewall product includes network features that allow you to fulfill "
-#~ "all your security needs"
-#~ msgstr ""
-#~ "Tento produkt pro firewall v sobě zahrnuje síťové funkce, které uspokojí "
-#~ "vÅ¡echny vaÅ¡e potÅ™eby pÅ™i zabezpeÄení vaší sítÄ›."
-
-#~ msgid ""
-#~ "The MandrakeSecurity range includes the Multi Network Firewall product (M."
-#~ "N.F.)"
-#~ msgstr ""
-#~ "Produktová Å™ada spoleÄnosti Mandrake zahrnuje produkt Multi Network "
-#~ "Firewall (M. N. F.)."
-
-#~ msgid "Strategic partners"
-#~ msgstr "StrategiÄtí partneÅ™i"
-
-#~ msgid ""
-#~ "Whether you choose to teach yourself online or via our network of "
-#~ "training partners, the Linux-Campus catalogue prepares you for the "
-#~ "acknowledged LPI certification program (worldwide professional technical "
-#~ "certification)"
-#~ msgstr ""
-#~ "Ať už se budete školit on-line nebo pomocí naší sítě školících partnerů, "
-#~ "katalog Linux-Campus vás pÅ™ipraví na známý certifikaÄní program LPI "
-#~ "(celosvětovou profesionální technickou certifikaci)."
+#~ "VOLBY:\n"
-#~ msgid "Certify yourself on Linux"
-#~ msgstr "Získejte certifikát pro Linux"
+#~ msgid " --help - print this help message.\n"
+#~ msgstr " --help - vytiskne tuto zprávu s nápovìdou.\n"
-#~ msgid ""
-#~ "The training program has been created to respond to the needs of both end "
-#~ "users and experts (Network and System administrators)"
-#~ msgstr ""
-#~ "Program školení byl navržen tak, aby uspokojil požadavky jak koncových "
-#~ "uživatelů, tak expertů (správců sítí a systémů)"
-
-#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-#~ msgstr ""
-#~ "Objevte katalog Å¡kolení spoleÄnosti MandrakeSoft na stránkách Linux-Campus"
-
-#~ msgid ""
-#~ "MandrakeClub and Mandrake Corporate Club were created for business and "
-#~ "private users of Mandrake Linux who would like to directly support their "
-#~ "favorite Linux distribution while also receiving special privileges. If "
-#~ "you enjoy our products, if your company benefits from our products to "
-#~ "gain a competititve edge, if you want to support Mandrake Linux "
-#~ "development, join MandrakeClub!"
-#~ msgstr ""
-#~ "Kluby MandrakeClub a Mandrake Corporate Club byly vytvořeny pro ty "
-#~ "podnikové a soukromé uživatele systému Mandrake Linux, kteří chtějí přímo "
-#~ "podporovat svou oblíbenou distribuci Linuxu a ještě k tomu obdržet "
-#~ "zvláštní privilegia. Pokud vás naše produkty oslovily, jestliže vaše "
-#~ "spoleÄnost díky naÅ¡im produktům získala konkurenÄní výhodu, pokud chcete "
-#~ "podpořit vývoj distribuce Mandrake Linux, připojte se ke klubu "
-#~ "MandrakeClub!"
-
-#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
-#~ msgstr "Objevte MandrakeClub a Mandrake Corporate Club"
-
-#~ msgid "Launch Aurora at boot time"
-#~ msgstr "Spustit Auroru při startu"
-
-#~ msgid "Traditional Gtk+ Monitor"
-#~ msgstr "TradiÄní GTK+ monitor"
-
-#~ msgid "Traditional Monitor"
-#~ msgstr "TradiÄní monitor"
-
-#~ msgid "NewStyle Monitor"
-#~ msgstr "Novější monitor"
-
-#~ msgid "NewStyle Categorizing Monitor"
-#~ msgstr "Novější zatříděný monitor "
-
-#~ msgid ""
-#~ "As a review, DrakX will present a summary of various information it has\n"
-#~ "about your system. Depending on your installed hardware, you may have "
-#~ "some\n"
-#~ "or all of the following entries:\n"
-#~ "\n"
-#~ " * \"Mouse\": check the current mouse configuration and click on the "
-#~ "button\n"
-#~ "to change it if necessary.\n"
-#~ "\n"
-#~ " * \"%s\": check the current keyboard map configuration and click on\n"
-#~ "the button to change that if necessary.\n"
-#~ "\n"
-#~ " * \"%s\": check the current country selection. If you are not in this\n"
-#~ "country, click on the button and choose another one.\n"
-#~ "\n"
-#~ " * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-#~ "primary language you have chosen. But here, just as in your choice of a\n"
-#~ "keyboard, you may not be in a country to which the chosen language\n"
-#~ "corresponds. You may need to click on the \"Timezone\" button to\n"
-#~ "configure the clock for the correct timezone.\n"
-#~ "\n"
-#~ " * \"Printer\": clicking on the \"No Printer\" 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"
-#~ " * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-#~ "click that button. This should be reserved to advanced users.\n"
-#~ "\n"
-#~ " * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-#~ "interface in \"800x600\" resolution. If that does not suits you, click "
-#~ "on\n"
-#~ "the button to reconfigure your graphical interface.\n"
-#~ "\n"
-#~ " * \"Network\": If you want to configure your Internet or local network\n"
-#~ "access now, you can by clicking on this button.\n"
-#~ "\n"
-#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
-#~ "displayed here. If you notice the sound card displayed is not the one "
-#~ "that\n"
-#~ "is actually present on your system, you can click on the button and "
-#~ "choose\n"
-#~ "another driver.\n"
-#~ "\n"
-#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-#~ "here. If you have a TV card and it is not detected, click on the button "
-#~ "to\n"
-#~ "try to configure it manually.\n"
-#~ "\n"
-#~ " * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-#~ "displayed here. You can click on the button to change the parameters\n"
-#~ "associated with the card."
+#~ msgid " --report - program should be one of mandrake tools\n"
#~ msgstr ""
-#~ "Zde jsou shromážděny různé informace, které se vztahují k tomuto "
-#~ "poÄítaÄi.\n"
-#~ "V závislosti na tom, zda je Äi není přítomen daný hardware, můžete nebo\n"
-#~ "nemusíte vidět tyto položky: \n"
-#~ "\n"
-#~ " * \"Myš\": pokud je zjištěna myš, můžete zde změnit její nastavení.\n"
-#~ "\n"
-#~ " * \"%s\": zkontrolujte nastavení rozložení kláves, klepnutím na "
-#~ "tlaÄítko\n"
-#~ "lze změnit rozložení kláves, pokud je to nutné.\n"
-#~ "\n"
-#~ " * \"%s\": zkontrolujte výběr země. Pokud výběr nesouhlasí, klepnutím na\n"
-#~ "tlaÄítko můžete vybrat jinou zemi.\n"
-#~ "\n"
-#~ " * \"ÄŒasové pásmo\": instalaÄní program se pokusí odhadnout Äasové pásmo "
-#~ "na\n"
-#~ "základě vámi vybraného jazyka. To ale nemusí souhlasit, stejně jako v "
-#~ "případě\n"
-#~ "rozložení klávesnice můžete žít v jiné zemi a proto je zde umožněno "
-#~ "změnit\n"
-#~ "Äasovou zónu, ve které se nyní nacházíte.\n"
-#~ "\n"
-#~ " * \"Tiskárna\": Klepnutím na tlaÄítko \"Bez tiskárny\" se spustí "
-#~ "průvodce\n"
-#~ "nastavením tiskárny. V odpovídající kapitole v \"Uživatelské příruÄce\" "
-#~ "se\n"
-#~ "dozvíte více o tom, jak tiskárnu nastavit. Rozhraní, které je v ní "
-#~ "popsané, je\n"
-#~ "podobné rozhraní použitému při této instalaci.\n"
-#~ "\n"
-#~ " * \"ZavadÄ›Ä\": pokud chcete zmÄ›nit nastavení zavadÄ›Äe, můžete to "
-#~ "provést\n"
-#~ "klepnutím na tlaÄítko. ZmÄ›ny by mÄ›ly provádÄ›t pouze zkuÅ¡ení uživatelé.\n"
-#~ "\n"
-#~ " * \"Grafické rozliÅ¡ení\": instalaÄní program jako výchozí rozliÅ¡ení "
-#~ "zvolí\n"
-#~ "rozlišení \"800x600\". Pokud vám to nevyhovuje, je možné to změnit.\n"
-#~ "\n"
-#~ " * \"Síť\": pokud chcete nyní nastavit připojení k Internetu nebo k "
-#~ "lokální\n"
-#~ "síti, klepnutím na tlaÄítko se spustí průvodce.\n"
-#~ "\n"
-#~ " * \"Zvuková karta\": pokud byla při instalaci detekována zvuková karta, "
-#~ "je\n"
-#~ "zde zobrazena. Pokud uvedený ovladaÄ není správný, lze provést výbÄ›r "
-#~ "správného.\n"
-#~ "\n"
-#~ " * \"TV karta\": pokud byla detekována televizní karta, je zde "
-#~ "zobrazena.\n"
-#~ "Pokud karta nebyla automaticky detekována, klepnutím na tlaÄítko můžete.\n"
-#~ "provést ruÄní nastavení.\n"
-#~ "\n"
-#~ " * \"ISDN karta\": pokud byla detekována ISDN karta, je zde zobrazena.\n"
-#~ "Klepnutím na tlaÄítko můžete mÄ›nit parametry pro tuto kartu."
-
-#~ 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 will ask you if you "
-#~ "have\n"
-#~ "a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI "
-#~ "cards\n"
-#~ "to choose from. Click \"No\" if you know that you have no SCSI hardware "
-#~ "in\n"
-#~ "your machine. If you're not sure, you can check the list of hardware\n"
-#~ "detected in your machine by selecting \"See hardware info \" and "
-#~ "clicking\n"
-#~ "the \"%s\". Examine the list of hardware and then click on the \"Next\n"
-#~ "->\" button to return to the SCSI interface question.\n"
-#~ "\n"
-#~ "If you had to manually specify your PCI SCSI adapter, DrakX will ask if "
-#~ "you\n"
-#~ "want to configure options for it. You should allow DrakX to probe the\n"
-#~ "hardware for the card-specific options which are needed to initialize "
-#~ "the\n"
-#~ "adapter. Most of the time, DrakX will get through this step without any\n"
-#~ "issues.\n"
-#~ "\n"
-#~ "If DrakX is not able to probe for the options to automatically determine\n"
-#~ "which parameters need to be passed to the hardware, you'll need to "
-#~ "manually\n"
-#~ "configure the driver."
-#~ msgstr ""
-#~ "Aplikace DrakX se nejdříve pokusí najít vÅ¡echny pevné disky v poÄítaÄi. "
-#~ "Také se\n"
-#~ "pokusí nalézt jeden nebo více PCI SCSI adaptérů. Pokud nějaký najde,\n"
-#~ "automaticky nainstaluje správný ovladaÄ.\n"
-#~ "\n"
-#~ "Protože automatická detekce hardware nemusí vždy nalézt všechny typy "
-#~ "hardware,\n"
-#~ "budete v dialogu dotázáni, zda vůbec máte nějaký SCSI adaptér. Odpovězte\n"
-#~ "\"Ano\" a vyberte si ze seznamu adaptérů nebo odpovězte \"Ne\", jestliže "
-#~ "žádný\n"
-#~ "adaptér nemáte. Pokud nevíte přesně, zda-li nějaký máte, můžete to "
-#~ "zjistit\n"
-#~ "klepnutím na tlaÄítko \"Zobrazit informace o hardware\"a prozkoumat "
-#~ "seznam.\n"
-#~ "Klepnutím na tlaÄítko \"Další ->\" se vrátíte k otázce o adaptéru SCSI.\n"
-#~ "\n"
-#~ "Pokud si budete muset vybrat ovladaÄ ruÄnÄ›, aplikace DrakX se zeptá, zda "
-#~ "pro\n"
-#~ "něj chcete zadat nějaké volby Měli byste povolit aplikaci DrakX, ať se "
-#~ "pokusí\n"
-#~ "zjistit, které volby jsou pro danou kartu potřeba. Většinou to funguje "
-#~ "dobře.\n"
-#~ "\n"
-#~ "Pokud to nebude fungovat, budete muset zadat další informace pro ovladaÄ "
-#~ "ruÄnÄ›."
-
-#~ 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 "
-#~ "systems\n"
-#~ "is best for a particular type of configuration.\n"
-#~ "\n"
-#~ " * \"pdq\" -- 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. "
-#~ "(\"pdq\n"
-#~ "\" will handle only very simple network cases and is somewhat slow when\n"
-#~ "used with networks.) It's recommended that you use \"pdq \" if this is "
-#~ "your\n"
-#~ "first 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"
-#~ "that 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 to 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 ""
-#~ "Zde si můžete vybrat tiskový systém, který budete používat. Jiné OS "
-#~ "nabízejí\n"
-#~ "jeden, Mandrake nabízí dva.\n"
-#~ "\n"
-#~ " * \"pdq\" - což znamená 'print, don't queue' a je vhodný tehdy, pokud "
-#~ "nemáte\n"
-#~ "žádné síťové tiskárny. Zvládá pouze několik možností a tisk na něj ze "
-#~ "sítě\n"
-#~ "je velmi pomalý. Pokud se s GNU/Linuxem teprve seznamujete, je "
-#~ "doporuÄeno\n"
-#~ "použít právě tento tiskový systém.\n"
-#~ "\n"
-#~ " * \"%s\"'Common Unix Printing System' je vynikající v tisku na lokální\n"
-#~ "tiskárny stejně jako při tisku na tiskárnu na druhé straně planety. "
-#~ "Nastavení\n"
-#~ "je jednoduché a může fungovat jako klient i server pro klienty z \"lpd\"\n"
-#~ "systému, takže je s nimi kompatibilní. Je možné nastavit spoustu voleb,\n"
-#~ "ale základní nastavení je velmi jednoduché. Pokud potřebujete emulovat\n"
-#~ "\"lpd\" server, staÄí spustit démona \"cups-lpd\". Má také grafické "
-#~ "rozhraní\n"
-#~ "pro tisk, nastavení tiskárny a správu tiskových úloh.\n"
-#~ "\n"
-#~ "Pokud provedete volbu teÄ a pozdÄ›ji zjistíte, že se vám daný systém "
-#~ "nelíbí,\n"
-#~ "můžete ho změnit spuštěním aplikace PrinterDrake z řídícího centra "
+#~ " --report - program by mìl být jeden z nástrojù spoleènosti "
#~ "Mandrake\n"
-#~ "a klepnÄ› na tlaÄítko pro experty."
-
-#~ 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.\n"
-#~ "\n"
-#~ "\"Boot device\": in most cases, you will not change the default (\"First\n"
-#~ "sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
-#~ "installed on the second hard drive (\"/dev/hdb\"), or even on a floppy "
-#~ "disk\n"
-#~ "(\"On Floppy\").\n"
-#~ "\n"
-#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-#~ "handy.\n"
-#~ "\n"
-#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
-#~ "by\n"
-#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
-#~ ">>rescue<<\n"
-#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
-#~ "at\n"
-#~ "least two situations where having a boot floppy is critical:\n"
-#~ "\n"
-#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
-#~ "(MBR)\n"
-#~ "of your main disk (unless you are using another boot manager), to allow "
-#~ "you\n"
-#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
-#~ "on\n"
-#~ "your system). If at some point you need to reinstall Windows, the "
-#~ "Microsoft\n"
-#~ "install process will rewrite the boot sector and remove your ability to\n"
-#~ "start GNU/Linux!\n"
-#~ "\n"
-#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
-#~ "disk,\n"
-#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
-#~ "a\n"
-#~ "fair number of system tools for restoring a system that has crashed due "
-#~ "to\n"
-#~ "a power failure, an unfortunate typing error, a forgotten root password, "
-#~ "or\n"
-#~ "any other reason.\n"
-#~ "\n"
-#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
-#~ "format the floppy and will rewrite the whole disk."
-#~ msgstr ""
-#~ "LILO a grub jsou zavadÄ›Äe operaÄního systému GNU/Linux. BěžnÄ› je tento "
-#~ "krok\n"
-#~ "plnÄ› automatický, instalaÄní program analyzuje zavádÄ›cí sektor na disku\n"
-#~ "a zachová se podle toho, co tam nalezne:\n"
-#~ "\n"
-#~ " * pokud je nalezen zaváděcí sektor z Windows, bude nahrazen zaváděcím\n"
-#~ "sektorem grub/LILO. To umožňuje zavést jak GNU/Linux tak i jiné OS.\n"
-#~ "\n"
-#~ " * pokud je nalezen zaváděcí sektor grub nebo LILO, bude nahrazen novým.\n"
-#~ "\n"
-#~ "Pokud instalaÄní program nedokáže rozhodnout, zeptá se na to, kam se má\n"
-#~ "zavadÄ›Ä umístit.\n"
-#~ "\n"
-#~ "\"Spouštěcí zařízení\": ve většině případů není nutné měnit (\"První "
-#~ "sektor\n"
-#~ "disku (MBR)\"), ale pokud si přejete, může být nainstalován na druhém "
-#~ "pevném\n"
-#~ "disku (\"/dev/hdb\"), nebo dokonce na disketÄ› (\"Na disketu\").\n"
-#~ "\n"
-#~ "Zaškrtnutím volby \"Vytvořit spouštěcí disk\" budete mít pro případ "
-#~ "záchrany\n"
-#~ "po ruce spustitelný disk.\n"
-#~ "\n"
-#~ "CDROM s distribucí Mandrake Linux má zabudovaný záchranný režim. Můžete "
-#~ "ho\n"
-#~ "spustit přímo při spuštění z CD, kdy stisknete klávesu >>F1<< a na "
-#~ "příkazový\n"
-#~ "řádek napíšete >>rescue<<. Pokud poÄítaÄ neumožňuje bootovat z CD, potom\n"
-#~ "v tomto kroku najdete řešení alespoň dvou následujících situací:\n"
-#~ "\n"
-#~ " * při instalaci zaváděcího programu přepíše aplikace DrakX zaváděcí "
-#~ "sektor\n"
-#~ "(MBR) na hlavním pevném disku (pokud nepoužíváte jiný zaváděcí program),\n"
-#~ "aby umožnil start buÄ systému Windows nebo GNU/Linux (pokud máte Windows\n"
-#~ "na poÄítaÄi nainstalovány). Pokud potÅ™ebujete Windows pÅ™einstalovat, "
-#~ "instalaÄní\n"
-#~ "program spoleÄnosti Microsoft pÅ™epíše zavádÄ›cí sektor a nebudete tak mít "
-#~ "možnost\n"
-#~ "spustit systém GNU/Linux!\n"
-#~ "\n"
-#~ " * pokud se objeví problémy a není možné spustit systém GNU/Linux z "
-#~ "pevného\n"
-#~ "disku, je tato disketa jedinou možností, jak systém spustit. Obsahuje "
-#~ "několik\n"
-#~ "základních systémových nástrojů pro obnovení systému pří výpadku "
-#~ "napájení,\n"
-#~ "nešťastném překlepu, chybě v hesle, nebo z jiných důvodů.\n"
-#~ "\n"
-#~ "Pokud zvolíte tento krok, musíte vložit disketu do mechaniky. Disketa "
-#~ "musí\n"
-#~ "být prázdná, nebo na ní mohou být data, která již nepotřebujete. Disketa\n"
-#~ "nemusí být formátována, aplikace DrakX přepíše celý její obsah."
-
-#~ 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\n"
-#~ "languages to be installed on your workstation, thereby installing the\n"
-#~ "language-specific files for system documentation and applications. For\n"
-#~ "example, if you will host users from Spain on your machine, select "
-#~ "English\n"
-#~ "as the default language in the tree view and \"Espanol\" in the Advanced\n"
-#~ "section.\n"
-#~ "\n"
-#~ "Note that you're not limited to choosing a single additional language. "
-#~ "Once\n"
-#~ "you have selected additional locales, click the \"%s\" button to\n"
-#~ "continue.\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 ""
-#~ "V prvním kroku si vyberete požadovaný jazyk. Vyberte si vámi preferovaný\n"
-#~ "jazyk, který se bude používat při instalaci a během užívání celém "
-#~ "systému.\n"
-#~ "Nejprve vyberte region kde žijete a potom jazyk, jakým se tam mluví.\n"
-#~ "\n"
-#~ "TlaÄítko \"Rozšířené\" umožňuje zvolit další jazyky, které budou také\n"
-#~ "nainstalovány a můžete je použít v systému. Výběrem dalších jazyků "
-#~ "nainstalujete\n"
-#~ "soubory s aplikacemi a dokumentací specifické pro tyto jazyky. Pokud "
-#~ "například\n"
-#~ "na poÄítaÄi pracují obÄas lidé ze Å panÄ›lska, vyberte angliÄtinu jako "
-#~ "hlavní\n"
-#~ "jazyk a pod tlaÄítkem rozšířené zatrhnÄ›te volbu \"Å panÄ›lÅ¡tina|Å panÄ›lsko"
-#~ "\".\n"
-#~ "\n"
-#~ "Takto lze doinstalovat více jazyků. Pokud máte jazyky vybrány, klepněte "
-#~ "na\n"
-#~ "tlaÄítko \"Další ->\" a instalace bude pokraÄovat dalším krokem."
-
-#~ msgid ""
-#~ "\"%s\": check the current country selection. If you are not in this\n"
-#~ "country, click on the button and choose another one."
-#~ msgstr ""
-#~ "\"Země\": zkontrolujte aktuální výběr země. Pokud nežijete v této zemi,\n"
-#~ "klepnÄ›te na tlaÄítko a vyberte jinou zemi."
-
-#~ 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. Refer to the \"msec"
-#~ "\"\n"
-#~ "chapter of the ``Command Line Manual'' to get more information about the\n"
-#~ "meaning of these levels.\n"
-#~ "\n"
-#~ "If you do not know what to choose, keep the default option."
-#~ msgstr ""
-#~ "Nyní si vyberte úroveň zabezpeÄení vaÅ¡eho poÄítaÄe Je zÅ™ejmé, že Äím více "
-#~ "je\n"
-#~ "poÄítaÄ využíván a Äím cennÄ›jší data obsahuje, tím je potÅ™eba zvolit "
-#~ "vyšší\n"
-#~ "úroveň. Na druhou stranu, vyšší úroveň znesnadňuje některé obvyklé "
-#~ "postupy.\n"
-#~ "Více informací o úrovních bezpeÄnosti se doÄtete v kapitole \"msec\" v "
-#~ "referenÄní příruÄce.\n"
-#~ "\n"
-#~ "Pokud nevíte co vybrat, ponechte výchozí nastavení."
-
-#~ 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. Choose\n"
-#~ "\"Yes\" if you have a working Internet connection, or \"No\" if you "
-#~ "prefer\n"
-#~ "to install updated packages later.\n"
-#~ "\n"
-#~ "Choosing \"Yes\" displays a list of places from which updates can be\n"
-#~ "retrieved. Choose the one nearest you. A package-selection tree will\n"
-#~ "appear: review the selection, and press \"Install\" to retrieve and "
-#~ "install\n"
-#~ "the selected package( s), or \"Cancel\" to abort."
-#~ msgstr ""
-#~ "Pokaždé, když instalujete distribuci Mandrake Linux, je možné, že "
-#~ "některé\n"
-#~ "balíÄky byly od vydání distribuce aktualizovány. Mohly to být opravy "
-#~ "chyb\n"
-#~ "Äi Å™eÅ¡ení možných bezpeÄnostních problémů. Pokud chcete využít právÄ›\n"
-#~ "této nabídky, je možné tyto balíÄky nyní stáhnout z Internetu. Zvolte "
-#~ "\"Ano\"\n"
-#~ "pokud máte funkÄní pÅ™ipojení na Internet nebo \"Ne\", pokud budete\n"
-#~ "instalovat aktualizace později.\n"
-#~ "\n"
-#~ "Po zvolení \"Ano\" se zobrazí seznam míst, odkud mohou být aktualizace "
-#~ "získány.\n"
-#~ "Vyberte si nejbližší místo. NáslednÄ› se objeví stromový seznam balíÄků, "
-#~ "který\n"
-#~ "je možno jeÅ¡tÄ› upravit a stisknutím tlaÄítka \"Instalovat\" se provede "
-#~ "stažení\n"
-#~ "a instalace vybraných balíÄků. Akci můžete pÅ™eruÅ¡it klepnutím na \"ZruÅ¡it"
-#~ "\"."
-
-#~ 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\n"
-#~ "you should see after your computer has finished doing its hardware tests "
-#~ "is\n"
-#~ "the bootloader menu, giving you the choice of which operating system to\n"
-#~ "start.\n"
-#~ "\n"
-#~ "The \"%s\" button (in Expert mode only) shows two more buttons to:\n"
-#~ "\n"
-#~ " * \"generate auto-install floppy\": to create an installation floppy "
-#~ "disk\n"
-#~ "that will automatically perform a whole installation without the help of "
-#~ "an\n"
-#~ "operator, similar to the installation you just configured.\n"
-#~ "\n"
-#~ " Note that two different options are available after clicking the "
-#~ "button:\n"
-#~ "\n"
-#~ " * \"Replay\". This is a partially automated installation. The\n"
-#~ "partitioning step is the only interactive procedure.\n"
-#~ "\n"
-#~ " * \"Automated\". Fully automated installation: the hard disk is\n"
-#~ "completely rewritten, all data is lost.\n"
-#~ "\n"
-#~ " This feature is very handy when installing a number of similar "
-#~ "machines.\n"
-#~ "See the Auto install section on our web site for more information.\n"
-#~ "\n"
-#~ " * \"Save packages selection\"(*): saves a list of the package selected "
-#~ "in\n"
-#~ "this installation. To use this selection with another installation, "
-#~ "insert\n"
-#~ "the floppy and start the installation. At the prompt, press the [F1] key\n"
-#~ "and type >>linux defcfg=\"floppy\" <<.\n"
-#~ "\n"
-#~ "(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-#~ "\"mformat a:\")"
-#~ msgstr ""
-#~ "Nyní je instalace ukonÄena a operaÄní systém GNU/Linux je pÅ™ipraven k "
-#~ "použití.\n"
-#~ "Klepněte na \"Další ->\" a systém bude restartován. Potom můžete "
-#~ "spustit \n"
-#~ "GNU/Linux. Jako provní se po restartu a kontrole hardware zobrazí "
-#~ "nabídka\n"
-#~ "s výbÄ›rem operaÄních systémů, ze kterých si můžete vybrat ten "
-#~ "preferovaný.\n"
-#~ "\n"
-#~ "TlaÄítko \"Rozšířené\" zobrazí další dvÄ› tlaÄítka:\n"
-#~ "\n"
-#~ " * Generovat disketu pro automatickou instalaci: vytvoří disketu, se "
-#~ "kterou\n"
-#~ "lze celou instalaci opakovat bez zásahu operátora se stejnými volbami,\n"
-#~ "které byly zvoleny při instalaci.\n"
-#~ "\n"
-#~ " Po klepnutí na toto tlaÄítko se zobrazí další dvÄ› volby:\n"
-#~ "\n"
-#~ " * : Zopakovat: je to ÄásteÄnÄ› automatická instalace, kdy se "
-#~ "potvrzuje krok\n"
-#~ "při rozdělování disků (a pouze tento krok).\n"
-#~ "\n"
-#~ " * : Automaticky: plně automatická instalace, data na pevném disku "
-#~ "budou\n"
-#~ "zrušena a disk přepsán.\n"
-#~ "\n"
-#~ " Tato volba je velmi užiteÄná, když potÅ™ebujete nainstalovat vÄ›tší "
-#~ "poÄet\n"
-#~ "stejných poÄítaÄů. Více o této možnosti je na naÅ¡ich WWW stránkách.\n"
-#~ "\n"
-#~ " * Uložit výbÄ›r balíÄků(*): uloží výbÄ›r balíÄků, který byl zvolen pÅ™i "
-#~ "instalaci.\n"
-#~ "Pokud budete instalovat další poÄítaÄ, vložte disketu do mechaniky a "
-#~ "spusťte\n"
-#~ "instalaci, stiskněte [F1] a napište na příkazový řádek >linux defcfg="
-#~ "\"floppy\"<.\n"
-#~ "\n"
-#~ "(*) Potřebujete disketu formátovanou FAT (Pod Linuxem ji vytvoříte "
-#~ "příkazem\n"
-#~ "\"mformat a:\")"
-
-#~ 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"
-#~ " * \"Use free space\": this option will perform an automatic "
-#~ "partitioning\n"
-#~ "of your blank drive(s). If you use this option there will be no further\n"
-#~ "prompts.\n"
-#~ "\n"
-#~ " * \"Use existing partition\": the wizard has detected one or more "
-#~ "existing\n"
-#~ "Linux partitions on your hard drive. If you want to use them, choose "
-#~ "this\n"
-#~ "option. You will then be asked to choose the mount points associated "
-#~ "with\n"
-#~ "each of the partitions. The legacy mount points are selected by default,\n"
-#~ "and for the most part it's a good idea to keep them.\n"
-#~ "\n"
-#~ " * \"Use the free space on the Windows partition\": if Microsoft Windows "
-#~ "is\n"
-#~ "installed on your hard drive and takes all the space available on it, "
-#~ "you\n"
-#~ "have to create free space for Linux data. To do so, you can delete your\n"
-#~ "Microsoft Windows partition and data (see `` Erase entire disk'' "
-#~ "solution)\n"
-#~ "or resize your Microsoft Windows FAT partition. Resizing can be "
-#~ "performed\n"
-#~ "without the loss of any data, provided you previously defragment the\n"
-#~ "Windows partition and that it uses the FAT format. Backing up your data "
-#~ "is\n"
-#~ "strongly recommended.. Using this option is recommended if you want to "
-#~ "use\n"
-#~ "both Mandrake Linux and Microsoft 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"
-#~ " * \"Erase entire disk\": if you want to delete all data and all "
-#~ "partitions\n"
-#~ "present on your hard drive and replace them with your new Mandrake Linux\n"
-#~ "system, choose this option. Be careful, because you will not be able to\n"
-#~ "undo your choice after you confirm.\n"
-#~ "\n"
-#~ " !! If you choose this option, all data on your disk will be "
-#~ "deleted. !!\n"
-#~ "\n"
-#~ " * \"Remove Windows\": this will simply erase everything on the drive "
-#~ "and\n"
-#~ "begin fresh, partitioning everything from scratch. All data on your disk\n"
-#~ "will be lost.\n"
-#~ "\n"
-#~ " !! If you choose this option, all data on your disk will be lost. !!\n"
-#~ "\n"
-#~ " * \"Custom disk partitionning\": choose this option if you want to\n"
-#~ "manually partition your hard drive. Be careful -- it is a powerful but\n"
-#~ "dangerous choice and you can very easily lose all your data. That's why\n"
-#~ "this option is really only recommended if you have done something like "
-#~ "this\n"
-#~ "before and have some experience. For more instructions on how to use the\n"
-#~ "DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-#~ "the ``Starter Guide''."
-#~ msgstr ""
-#~ "V tomto bodě se musíte rozhodnout, na které diskové oddíly budete\n"
-#~ "instalovat nový operaÄní systém Mandrake Linux. Pokud je disk prázdný\n"
-#~ "nebo existující operaÄní systém používá celý disk, je nutné ho rozdÄ›lit.\n"
-#~ "RozdÄ›lení disku spoÄívá ve vytvoÅ™ení volného prostoru pro instalaci\n"
-#~ "systému Mandrake Linux.\n"
-#~ "\n"
-#~ "Protože rozdÄ›lení disku je nenávratná operace, je to velmi nebezpeÄná\n"
-#~ "akce pro ty uživatele, kteří nemají žádné zkušenosti.\n"
-#~ "Pro tyto uživatele je dobrý průvodce, který zjednoduší daný proces.\n"
-#~ "JeÅ¡tÄ› pÅ™ed zapoÄetím rozdÄ›lování disku si proÄtÄ›te manuál.\n"
-#~ "Pokud máte již vytvořeny diskové oddíly z předchozích instalací nebo\n"
-#~ "od jiných diskových nástrojů, lze je nyní použít pro instalaci tohoto\n"
-#~ "systému Linux.\n"
-#~ "\n"
-#~ "Pokud nejsou definovány žádné diskové oddíly, je nutné je vytvořit.\n"
-#~ "K tomu slouží průvodce, který nabídne několik řešení:\n"
-#~ "\n"
-#~ " * \"Použít volný prostor\": takto se jednoduše automaticky disk(y) "
-#~ "rozdělí\n"
-#~ "a již se o nic nemusíte starat.\n"
-#~ "\n"
-#~ " * \"Použít existující oddíly\": průvodce detekoval jeden nebo více "
-#~ "existujících\n"
-#~ "Linuxových oddílů a ty nabídne pro instalaci. Budete muset definovat ke "
-#~ "každému\n"
-#~ "oddílu přípojný bod. Původní přípojné body jsou předvyplněny, a obvykle "
-#~ "byste\n"
-#~ "je měli ponechat.\n"
-#~ "\n"
-#~ " * \"Použít volné místo na oddílu s Windows\": pokud máte na disku\n"
-#~ "nainstalovány Microsoft Windows a tyto zabírají celý disk, je možné tento "
-#~ "prostor\n"
-#~ "zmenšit a použít ho pro instalaci. Oddíl lze také vymazat a tím ztratit "
-#~ "data (viz volby\n"
-#~ "\"Smazat celý disk\" a \"Expertní režim\"). Změna velikosti oddílu je "
-#~ "provedena\n"
-#~ "bez ztráty dat a je možná, pokud jste předtím tento oddíl ve Windows "
-#~ "defragmentovali.\n"
-#~ "Také neuÅ¡kodí zazálohovat vaÅ¡e data... Tento postup je doporuÄený, pokud "
-#~ "chcete\n"
-#~ "na disku provozovat souÄasnÄ› systém Mandrake Linux i Microsoft Windows.\n"
-#~ "\n"
-#~ " Před výběrem této volby si prosím uvědomte, že velikost oddílu s "
-#~ "Microsoft Windows\n"
-#~ "bude menší než je nyní. To znamená, že budete mít méně místa pro \n"
-#~ "uložení dat nebo instalaci programů do Microsoft Windows.\n"
-#~ "\n"
-#~ " * \"Zrušit celý disk\": pokud chcete smazat veškerá data a všechny "
-#~ "oddíly\n"
-#~ "na disku a použít je pro instalaci systému Mandrake Linux, vyberte toto\n"
-#~ "řešení. Zde postupujte opatrně, po výběru již není možné vzít volbu "
-#~ "zpět.\n"
-#~ "\n"
-#~ " !! Pokud zvolíte tuto možnost, všechna data na disku budou "
-#~ "ztracena.!!\n"
-#~ "\n"
-#~ " * \"Odstranit Windows\": takto se jednoduše smaže celý disk a bude se "
-#~ "instalovat\n"
-#~ "na celý disk. Všechna data tak budou ztracena.\n"
-#~ "\n"
-#~ " !! Pokud vyberete tuto volbu, veškerá data budou ztracena. !!\n"
-#~ "\n"
-#~ " * \"Vlastní rozdÄ›lení disku\": pokud chcete disk rozdÄ›lit ruÄnÄ›. PÅ™ed "
-#~ "touto\n"
-#~ "volbou buÄte opatrní, je sice mocná, ale nebezpeÄná. Velmi jednoduÅ¡e zde\n"
-#~ "můžete přijít o svá data.\n"
-#~ "NedoporuÄuje se tÄ›m, kteří pÅ™esnÄ› nevÄ›dí, co dÄ›lají. Chcete-li se "
-#~ "dozvědět více\n"
-#~ "o nástroji DiskDrake, který se v tomto případě používá, prostudujte sekci "
-#~ "\"Správa vaÅ¡ich oddílů\" v \"Uživatelské příruÄce\"."
-#~ msgid ""
-#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-#~ "handy.\n"
-#~ "\n"
-#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
-#~ "by\n"
-#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
-#~ ">>rescue<<\n"
-#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
-#~ "at\n"
-#~ "least two situations where having a boot floppy is critical:\n"
-#~ "\n"
-#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
-#~ "(MBR)\n"
-#~ "of your main disk (unless you are using another boot manager), to allow "
-#~ "you\n"
-#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
-#~ "on\n"
-#~ "your system). If at some point you need to reinstall Windows, the "
-#~ "Microsoft\n"
-#~ "install process will rewrite the boot sector and remove your ability to\n"
-#~ "start GNU/Linux!\n"
-#~ "\n"
-#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
-#~ "disk,\n"
-#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
-#~ "a\n"
-#~ "fair number of system tools for restoring a system that has crashed due "
-#~ "to\n"
-#~ "a power failure, an unfortunate typing error, a forgotten root password, "
-#~ "or\n"
-#~ "any other reason.\n"
-#~ "\n"
-#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
-#~ "format the floppy and will rewrite the whole disk."
+#~ msgid " --incident - program should be one of mandrake tools\n"
#~ msgstr ""
-#~ "Záchrannou disketu si vytvoříte zaškrtnutím volby \"Vytvořit záchrannou "
-#~ "disketu\".\n"
-#~ "\n"
-#~ "CDROM s distribucí Mandrake Linux má zabudovaný záchranný režim. Můžete "
-#~ "ho\n"
-#~ "spustit přímo při spuštění z CD, kdy stisknete klávesu >>F1<< a na "
-#~ "příkazový\n"
-#~ "řádek napíšete >>rescue<<. Pokud poÄítaÄ neumožňuje bootovat z CD, potom\n"
-#~ "v tomto kroku najdete řešení alespoň dvou následujících situací:\n"
-#~ "\n"
-#~ " * při instalaci zaváděcího programu přepíše aplikace DrakX zaváděcí "
-#~ "sektor\n"
-#~ "(MBR) na hlavním pevném disku (pokud nepoužíváte jiný zaváděcí program),\n"
-#~ "aby umožnil start buÄ systému Windows nebo GNU/Linux (pokud máte Windows\n"
-#~ "na poÄítaÄi nainstalovány). Pokud potÅ™ebujete Windows pÅ™einstalovat, "
-#~ "instalaÄní\n"
-#~ "program spoleÄnosti Microsoft pÅ™epíše zavádÄ›cí sektor a nebudete tak mít "
-#~ "možnost\n"
-#~ "spustit systém GNU/Linux!\n"
-#~ "\n"
-#~ " * pokud se objeví problémy a není možné spustit systém GNU/Linux z "
-#~ "pevného\n"
-#~ "disku, je tato disketa jedinou možností, jak systém spustit. Obsahuje "
-#~ "několik\n"
-#~ "základních systémových nástrojů pro obnovení systému pří výpadku "
-#~ "napájení,\n"
-#~ "nešťastném překlepu, chybě v hesle, nebo z jiných důvodů.\n"
-#~ "\n"
-#~ "Pokud zvolíte tento krok, musíte vložit disketu do mechaniky. Disketa "
-#~ "musí\n"
-#~ "být prázdná, nebo na ní mohou být data, která již nepotřebujete. Disketa\n"
-#~ "nemusí být formátována, aplikace DrakX přepíše celý její obsah."
-
-#~ msgid ""
-#~ "This step is used to choose which services you wish to start at boot "
-#~ "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 always needed "
-#~ "at\n"
-#~ "boot 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 ""
-#~ "Nyní si zvolte, které služby mají být spuÅ¡tÄ›ny pÅ™i startu poÄítaÄe.\n"
-#~ "\n"
-#~ "Je zde seznam všech služeb, které jsou aktuálně nainstalovány.\n"
-#~ "Prohlédněte si seznam pozorně a zrušte ty, které nepotřebujete spouštět "
-#~ "při\n"
-#~ "startu poÄítaÄe.\n"
-#~ "\n"
-#~ "Pokud přejedete myší nad některou položkou, objeví se malá nápověda\n"
-#~ "s popisem, co daná služba dělá. Pokud přesně nevíte, zda je služba "
-#~ "užiteÄná\n"
-#~ "nebo ne, je lepší ji nechat ve výchozím stavu.\n"
-#~ "\n"
-#~ "!! Rozvažte, co za služby spustit, zvláštÄ› pokud budete poÄítaÄ "
-#~ "provozovat\n"
-#~ "jako server: nepotÅ™ebujete vÅ¡echny služby. Pamatujte, že Äím více služeb\n"
-#~ "je spuÅ¡tÄ›no, tím je vÄ›tší nebezpeÄí nežádoucího proniknutí do poÄítaÄe.\n"
-#~ "Takže povolte opravdu jen ty služby, které nezbytně potřebujete.\n"
-#~ "!!"
-
-#~ msgid ""
-#~ "\"Printer\": clicking on the \"No Printer\" 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."
-#~ msgstr ""
-#~ "\"Tiskárna\": klepnutím na \"Bez tiskárny\" se otevře průvodce "
-#~ "nastavením\n"
-#~ "tisku. Více o nastavení tiskáren naleznete v odpovídající kapitole "
-#~ "příruÄky\n"
-#~ "\"ZaÄínáme\". Zde zobrazené rozhraní je podobné tomu pÅ™i instalaci."
-
-#~ 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 "
-#~ "use\n"
-#~ "by default\n"
-#~ "\n"
-#~ "- \"grep snd-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 ""
-#~ "Klasické testování funkÄnosti zvuku je možné provádÄ›t pomocí\n"
-#~ "následujících příkazů:\n"
-#~ "\n"
-#~ "\n"
-#~ "- \"lspcidrake -v | fgrep AUDIO\" vám Å™ekne, jaký výchozí ovladaÄ vaÅ¡e\n"
-#~ "zvuková karta používá\n"
-#~ "\n"
-#~ "- \"grep snd-slot /etc/modules.conf\" vám Å™ekne, které ovladaÄe se nyní\n"
-#~ "používají\n"
-#~ "\n"
-#~ "- \"/sbin/lsmod\" provede kontrolu toho, zda je požadovaný modul zaveden\n"
-#~ "nebo ne\n"
-#~ "\n"
-#~ "- \"/sbin/chkconfig --list sound\" a \"/sbin/chkconfig --list alsa\" vám\n"
-#~ "řekne, zda zvuková karta má nastaveny služby pro alsa v úrovni 3\n"
-#~ "\n"
-#~ "- \"aumix -q\" vám řekne, zda je zvuk na kartě ztlumen nebo ne\n"
-#~ "\n"
-#~ "- \"/sbin/fuser -v /dev/dsp\" vám řekne, které programy kartu používají.\n"
-
-#~ msgid "Sagem (using pppoe) usb"
-#~ msgstr "Sagem usb (pomocí pppoe)"
-
-#~ msgid ""
-#~ "Please enter your host name if you know it.\n"
-#~ "Some DHCP servers require the hostname to work.\n"
-#~ "Your host name should be a fully-qualified host name,\n"
-#~ "such as ``mybox.mylab.myco.com''."
-#~ msgstr ""
-#~ "Prosím zadejte název vaÅ¡eho poÄítaÄe, protože ho vyžadují nÄ›které\n"
-#~ "DHCP servery. Tento název musí být úplný, jako například\n"
-#~ "'mybox.mylab.myco.com'."
-
-#~ msgid ""
-#~ "The following printers are configured. Double-click on a printer to "
-#~ "change its settings; to make it the default printer; to view information "
-#~ "about it; or to make a printer on a remote CUPS server available for Star "
-#~ "Office/OpenOffice.org/GIMP."
-#~ msgstr ""
-#~ "Jsou nastaveny následující tiskárny. Dvojitým klepnutím na každou z nich "
-#~ "je možné je modifikovat, nastavit jako výchozí, získat o nich informace "
-#~ "nebo je nastavit na vzdáleném CUPS serveru pro využití v aplikaci Star "
-#~ "Office/OpenOffice.org/GIMP."
-
-#~ msgid "Secure Connection"
-#~ msgstr "BezpeÄné pÅ™ipojení"
-
-#~ msgid "FTP Connection"
-#~ msgstr "FTP připojení"
-
-#~ msgid "DrakFloppy Error: %s"
-#~ msgstr "Chyba DrakFloppy: %s"
-
-#~ 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 from this computer.\n"
-#~ "\n"
-#~ "Make sure you have configured your Network/Internet access using "
-#~ "drakconnect before going any further.\n"
-#~ "\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN)."
-#~ msgstr ""
-#~ "Váš poÄítaÄ bude nastaven jako PXE server, ze kterého lze pomocí DHCP a "
-#~ "TFTP vytvoÅ™it instalaÄní server.\n"
-#~ "Tato vlastnost umožňuje to, že z tohoto poÄítaÄe mohou být instalovány\n"
-#~ "další poÄítaÄe na lokální síti.\n"
-#~ "\n"
-#~ "PÅ™ed pokraÄováním se ujistÄ›te, že jste nastavili vaÅ¡i síť a pÅ™ipojení k "
-#~ "Internetu pomocí aplikace drakconnect.\n"
-#~ "\n"
-#~ "Pozn.: Pro nastavení lokální sítě (LAN) potřebujete vyhrazený síťový "
-#~ "adaptér."
-
-#~ msgid "Format of floppies the drive accept"
-#~ msgstr "Formáty, které disketová mechanika podporuje"
-
-#~ msgid ""
-#~ "The cpu frequency in Mhz (Mega herz which in first approximation may be "
-#~ "coarsely assimilated to number of instructions the cpu is able to execute "
-#~ "per second)"
-#~ msgstr ""
-#~ "Frekvence procesoru v MHz (Mega hertz se pÅ™ibližnÄ› poÄítá podle toho "
-#~ "kolik instrukcí je procesor schopen vykonat za vteřinu)"
-
-#~ msgid "Mail/Groupware/News"
-#~ msgstr "Pošta/Groupware/Diskuse"
-
-#~ msgid "Postfix mail server, Inn news server"
-#~ msgstr "Poštovní server postfix, server pro diskusní skupiny Inn"
-
-#~ msgid "/Options"
-#~ msgstr "/Volby"
-
-#~ msgid ""
-#~ "The partition you've selected to add as root (/) is physically located "
-#~ "beyond\n"
-#~ "the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
-#~ "If you plan to use the LILO boot manager, be careful to add a /boot "
-#~ "partition"
-#~ msgstr ""
-#~ "Oddíl který jste zvolili jako kořenový (root - /) je na disku fyzicky "
-#~ "umístěný za cylindrem 1024,\n"
-#~ "a přitom nemáte /boot oddíl. Jestli chcete použít správce bootu LILO "
-#~ "(boot manager),\n"
-#~ "přidejte ještě /boot oddíl"
-
-#~ msgid ""
-#~ "Sorry I won't accept to create /boot so far onto the drive (on a cylinder "
-#~ "> 1024).\n"
-#~ "Either you use LILO and it won't work, or you don't use LILO and you "
-#~ "don't need /boot"
-#~ msgstr ""
-#~ "Promiňte, nemůžu povolit vytvoření /boot tak daleko na disku (na cylindru "
-#~ "> 1024).\n"
-#~ "BuÄto použijete LILO a nebude to fungovat, nebo nepoužijete LILO a tedy "
-#~ "nepotřebujete /boot"
-
-#~ msgid "Do you want to configure another printer?"
-#~ msgstr "Chcete nastavit další tiskárnu?"
-
-#~ msgid "Know how to use this printer"
-#~ msgstr "Nápověda pro tisk na této tiskárně"
-
-#~ msgid "Would you like to configure printing?"
-#~ msgstr "Chtěli byste nastavit tiskárnu?"
-
-#~ msgid "Preparing Printerdrake..."
-#~ msgstr "Připravuji PrinterDrake...."
-
-#~ msgid "Reading printer data ..."
-#~ msgstr "NaÄítám údaje o tiskárnÄ› ..."
-
-#~ msgid ""
-#~ "You must indicate where you wish to place the information required to "
-#~ "boot\n"
-#~ "GNU/Linux.\n"
-#~ "\n"
-#~ "Unless you know exactly what you are doing, choose \"First sector of "
-#~ "drive\n"
-#~ "(MBR)\"."
-#~ msgstr ""
-#~ "Zde se musíte rozhodnout, kam umístit informace potřebné pro spuštění "
-#~ "systému\n"
-#~ "GNU/Linux.\n"
-#~ "\n"
-#~ "Pokud přesně nevíte co zadat, ponechte \"První sektor na disku (MBR)\"."
-
-#~ msgid ""
-#~ "DrakX now needs to know if you want to perform a default (\"Recommended"
-#~ "\")\n"
-#~ "installation or if you want to have greater control (\"Expert\") over "
-#~ "your\n"
-#~ "installation. You can also choose to do a new installation or upgrade "
-#~ "your\n"
-#~ "existing Mandrake Linux system:\n"
-#~ "\n"
-#~ " * \"Install\": completely wipes out the old system. However, depending "
-#~ "on\n"
-#~ "what is currently installed on your machine, you may be able to keep "
-#~ "some\n"
-#~ "old partitions (Linux or otherwise) unchanged;\n"
-#~ "\n"
-#~ " * \"Upgrade\": this installation class allows to simply update the\n"
-#~ "packages currently installed on your Mandrake Linux system. It keeps "
-#~ "your\n"
-#~ "hard drives' current partitions as well as user configurations. All "
-#~ "other\n"
-#~ "configuration steps remain available, similar to a normal installation;\n"
-#~ "\n"
-#~ " * \"Upgrade Packages Only\": this new installation class allows you to\n"
-#~ "upgrade an existing Mandrake Linux system while keeping all system\n"
-#~ "configurations unchanged. Adding new packages to the current "
-#~ "installation\n"
-#~ "is also possible.\n"
-#~ "\n"
-#~ "Upgrades should work fine on Mandrake Linux systems using version \"8.1"
-#~ "\"\n"
-#~ "or later.\n"
-#~ "\n"
-#~ "Depending on your GNU/Linux knowledge, select one of the following "
-#~ "choices:\n"
-#~ "\n"
-#~ " * Recommended: choose this if you have never installed a GNU/Linux\n"
-#~ "operating system. The installation will be very easy and you will only "
-#~ "be\n"
-#~ "asked a few questions;\n"
-#~ "\n"
-#~ " * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
-#~ "perform a highly customized installation. Some of the decisions you will\n"
-#~ "have to make may be difficult if you do not have good GNU/Linux "
-#~ "knowledge,\n"
-#~ "so it is not recommended that those without a fair amount of experience\n"
-#~ "select this installation class."
-#~ msgstr ""
-#~ "Nyní se instalaÄní program zeptá na to, zda chcete provést (\"DoporuÄenou"
-#~ "\")\n"
-#~ "nebo (\"Expertní\") instalaci, která dovoluje větší kontrolu. Také si "
-#~ "zde\n"
-#~ "můžete vybrat, zda chcete provést novou instalaci nebo aktualizaci\n"
-#~ "již existující verze systému Mandrake Linux.:\n"
-#~ "\n"
-#~ " * \"Instalovat\" Kompletně přemaže starou verzi. V závislosti na tom, co "
-#~ "je\n"
-#~ "na daném systému nainstalováno, mohou zůstat některé jiné oddíly (typu "
-#~ "Linux\n"
-#~ "nebo jiné) nezměněny.\n"
-#~ "\n"
-#~ " * \"Aktualizovat\" Provede aktualizaci stávajícího systému Mandrake "
-#~ "Linux.\n"
-#~ "Rozdělení disku i veškerá data uživatelů zůstanou zachována. Ostatní "
-#~ "kroky\n"
-#~ "s nastavením však budou k dispozici, podobně jako při běžné instalaci.\n"
-#~ "\n"
-#~ " * \"Aktualizovat pouze balíÄky\" Provede aktualizaci balíÄků z "
-#~ "předchozí\n"
-#~ "verze systému Mandrake Linux beze změn v nastavení systému. Je také "
-#~ "možné\n"
-#~ "nainstalovat nové balíÄky.\n"
-#~ "\n"
-#~ "Aktualizace je bezproblémová pro verze Mandrake Linux 8.1 nebo novější.\n"
-#~ "\n"
-#~ "V závislosti na vašich znalostech systému GNU/Linux si můžete vybrat\n"
-#~ "z následujících úrovní instalace operaÄního systému Mandrake Linux:\n"
-#~ "\n"
-#~ "* DoporuÄená: volte pokud jste jeÅ¡tÄ› nikdy neinstalovali GNU/Linux. "
-#~ "Instalace bude velmi jednoduchá a budete dotázáni pouze na několik "
-#~ "otázek.\n"
-#~ "\n"
-#~ "* Expertní: jestliže jste dobře obeznámeni se systémem GNU/Linux a "
-#~ "chcete\n"
-#~ "provést precizní nastavení instalace, je právě pro vás tato volba. Budete "
-#~ "si moci\n"
-#~ "přesně upravit celou instalaci. Odpovědi na otázky budou velmi těžké pro\n"
-#~ "ty, kteří nemají velmi dobré znalosti GNU/Linuxu.\n"
-#~ "Nevolte tuto volbu, pokud nemáte dostateÄné zkuÅ¡enosti s instalací "
-#~ "systému."
-
-#~ msgid "Please be patient. This operation can take several minutes."
-#~ msgstr "BuÄte trpÄ›liví. Tato operace může trvat nÄ›kolik minut."
+#~ " --incident - program by mìl být jedním z nástrojù spoleènosti "
+#~ "Mandrake\n"
-#~ msgid ""
-#~ "Your new Mandrake Linux operating system is currently being installed.\n"
-#~ "Depending on the number of packages you will be installing and the speed "
-#~ "of\n"
-#~ "your computer, this operation could take from a few minutes to a\n"
-#~ "significant amount of time.\n"
-#~ "\n"
-#~ "Please be patient."
-#~ msgstr ""
-#~ "Nyní zaÄne nová instalace operaÄního systému Mandrake Linux.\n"
-#~ "Tato operace může trvat několik desítek minut (záleží na množství "
-#~ "balíÄků,\n"
-#~ "které jste si vybrali pro instalaci a rychlosti vaÅ¡eho poÄítaÄe).\n"
-#~ "\n"
-#~ "MÄ›jte prosím trpÄ›livost a vyÄkejte."
+#~ msgid "usage: drakfloppy\n"
+#~ msgstr "pou¾ití: drakfloppy\n"
#~ 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.\n"
-#~ "\n"
-#~ "You will be presented the list of available resolutions and color depth\n"
-#~ "available for your hardware. Choose the one that best suit your needs "
-#~ "(you\n"
-#~ "will be able to change that after installation though). When you are\n"
-#~ "satisfied with the sample shown in the monitor, click \"OK\". A window "
-#~ "will\n"
-#~ "then appear and ask you if you can see it.\n"
-#~ "\n"
-#~ "If you are doing an \"Expert\" installation, you will enter the X\n"
-#~ "configuration wizard. See the corresponding section of the manual for "
-#~ "more\n"
-#~ "information about this wizard.\n"
#~ "\n"
-#~ "If you can see the message during the test, and answer \"Yes\", then "
-#~ "DrakX\n"
-#~ "will proceed to the next step. If you cannot see the message, it simply\n"
-#~ "means that the configuration was wrong and the test will automatically "
-#~ "end\n"
-#~ "after 10 seconds, restoring the screen. Refer then to the video\n"
-#~ "configuration section of the user guide for more information on how to\n"
-#~ "configure your display."
+#~ "Usage: harddrake [-h|--help] [--test]\n"
#~ msgstr ""
-#~ "X Window System (zkráceně X) je srdcem grafického rozhraní GNU/Linuxu,\n"
-#~ "na kterém jsou provozovány všechny grafická prostředí (KDE, Gnome, "
-#~ "AfterStep,\n"
-#~ "WindowMaker), která jsou dodávána se systémem Mandrake Linux. V této "
-#~ "sekci se\n"
-#~ "aplikace DrakX pokusí nastavit systém X automaticky.\n"
#~ "\n"
-#~ "Existují vzácné případy, kdy se automatická detekce nezdaří, zejména \n"
-#~ "v případech, kdy je daný hardware velmi starý, nebo velmi nový. Pokud se\n"
-#~ "detekce podaří, spustí se grafické prostředí v nejlepším možném rozlišení "
-#~ "v závislosti\n"
-#~ "na velikosti monitoru. Proběhne test, kdy se zobrazí okno s otázkou, zda "
-#~ "je vše\n"
-#~ "správně zobrazeno.\n"
-#~ "\n"
-#~ "Pokud provádíte \"Expertní\" instalaci, spustí se průvodce nastavením "
-#~ "systému X.\n"
-#~ "Více informací o tomto průvodci naleznete v odpovídající sekci v "
-#~ "manuálu.\n"
-#~ "\n"
-#~ "Pokud při testu nastavení uvidíte zprávu dobře, a odpovíte \"Yes\", bude "
-#~ "instalace\n"
-#~ "pokraÄovat dalším krokem. Pokud nic neuvidíte, znamená to, že automatické "
-#~ "nastavení\n"
-#~ "nebylo úspěšné, test automaticky skonÄí za 10 sekund a obnoví původní "
-#~ "obrazovku.\n"
-#~ "Více informací o nastavení vašeho displeje naleznete v sekci \"Nastavení "
-#~ "videa\" vaší\n"
-#~ "uživatelské příruÄky."
+#~ "Pou¾ití: harddrake [-h|--help] [--test]\n"
-#~ msgid "Switching between ALSA and OSS help"
-#~ msgstr "Přepínám mezi nápovědou pro ALSA a OSS"
+#~ msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+#~ msgstr "pou¾ití: keyboarddrake [--expert] [klávesnice]\n"
-#~ msgid "Detecting devices ..."
-#~ msgstr "Detekuji zařízení ..."
+#~ msgid "Probing %s class\n"
+#~ msgstr "Zkou¹ím tøídu %s\n"
-#~ msgid "Test ports"
-#~ msgstr "Otestovat porty"
+#~ msgid "detected on interface %s"
+#~ msgstr "detekováno na rozhraní %s"
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ " Accept/Refuse icmp echo."
-#~ msgstr ""
-#~ "Argumenty: (arg)\n"
-#~ "\n"
-#~ "Akceptuje/Odmítne icmp echo."
+#~ msgid "Periodic Checks 2"
+#~ msgstr "Pravidelné kontroly 2"
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 3c7047f33..ee22428f1 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -1,3296 +1,1858 @@
-# translation of DrakX-cy.po to Cymraeg
-# Copyright (C) 2003 Free Software Foundation, Inc.
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR Free Software Foundation, Inc.
# Rhoslyn Prys <rhoslyn.prys@ntlworld.com>
-# Rhoslyn Prys <rhoslyn.prys@ntlworld.com>, 2003
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX-cy\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
-"PO-Revision-Date: 2003-11-23 19:00-0000\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"PO-Revision-Date: 2002-09-22 15:21-0000\n"
"Last-Translator: Rhoslyn Prys <rhoslyn.prys@meddal.org.uk>\n"
-"Language-Team: Cymraeg <rhoslyn.prys@meddal.org.uk>\n"
+"Language-Team: Cymraeg <cy@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=iso-8859-14\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Sganio rhaniadau i ganfod pwyntiau gosod"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr ""
-"os wedi ei osod i iawn, , gwirio ychwanegu/tynnu ffeiliau gwraidd suid."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: mae %s angen enw gwesteiwr, cyfeiriad MAC, IP, nbi-image, 0/1 ar gyfer "
-"THIN_CLIENT, 0/1 ar gyfer Ffurfweddiad Lleol...\n"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr "Newidiodd ffurfweddiad - ailgychwyn clusternfs/dhcpd?"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tDileu=%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Mae cadw wrth gefn differol yn cadw dim ond y ffeiliau sydd wedi newid neu "
-"sy'n newydd ers y fersiwn gwreiddiol 'sylfaenol'."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "network printer port"
-msgstr "porth argraffydd rhwydwaith"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Mewnosodwch ddisg meddal:"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr "DrakTermServ"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Nid yw'r tabl rhaniad wrth gefn yr un maint\n"
-"Parhau?"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Which username"
-msgstr "Pa enw defnyddiwr"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Restore partition table"
-msgstr "Adfer y tabl rhaniad"
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure hostname..."
-msgstr "Ffurfweddu enw gwestai"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Ar wasanaethwr CUPS \"%s\""
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Post-install configuration"
-msgstr "Ffurfweddiad ôl osod"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
-msgstr ""
-"%s yw'r lefel diogelwch presennol\n"
-"Dewiswch ganiatâd i weld/golygu"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Defnyddiwch \"%s\" yn lle hynny"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "16 MB neu fwy"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Type"
-msgstr "Math"
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "Dewiswch wasanaethwr X"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Hefyd nid oes modd trosglwyddo argraffyddion ffurfweddwyd gyda ffeiliau PPD "
-"ddarparwyd gan eu gwneuthurwyr na gyrrwyr CUPS brodorol."
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "Gwasanaethwr X"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#: ../../Xconfig/card.pm_.c:230
+msgid "Multi-head configuration"
+msgstr "Ffurfweddiad amlben"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-"Mae'r argraffydd canlynol\n"
-"\n"
-"%s%s\n"
-"wedi ei gysylltu'n uniongyrchol â'ch system"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
-msgstr "Gweriniaeth Canol Affrica"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "Dyfais mynedfa"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Advanced preferences"
-msgstr "Dewisiadau Uwch"
+"Mae eich system yn cynnal ffurfweddiad amlben.\n"
+"Beth hoffech ei wneud?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Net Method:"
-msgstr "Dull Rhwyd:"
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
+msgstr "Dewiswch faint y cof eich cerdyn graffeg"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Ethernetcard"
-msgstr "Cerdyn Ethernet"
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "Ffurfweddiad XFree"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
-msgstr ""
-"Os wedi ei osod, anfon yr adroddiad e-bost i'r cyfeiriad e-bost neu ei anfon "
-"i'r gwraidd."
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Pa ffurfweddiad XFree hoffech ei gael?"
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr "Paramedrau"
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
+msgstr "Ffurfweddu pob pen yn annibynnol"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "no"
-msgstr "na"
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
+msgstr "Defnyddiwch estyniad Xinerama"
-#: ../../harddrake/v4l.pm:1
+#: ../../Xconfig/card.pm_.c:389
#, c-format
-msgid "Auto-detect"
-msgstr "Awtoganfod"
+msgid "Configure only card \"%s\"%s"
+msgstr "Ffurfweddu cerdyn \"%s\" %s yn unig"
-#: ../../standalone/drakconnect:1
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Interface:"
-msgstr "Rhyngwyneb:"
+msgid "XFree %s"
+msgstr "XFree: %s"
-#: ../../steps.pm:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Select installation class"
-msgstr "Dewis dosbarth gosod"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s gyda cyflymu caledwedd 3D"
-#: ../../network/tools.pm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-"Nid yw'n ymddangos i'ch system gysylltu â'r Rhyngrwyd.\n"
-"Ailffurfweddwch eich cysylltiad."
+"Mae eich cerdyn yn medru cael cefnogaeth cyflymu caledwedd 3D ond dim ond "
+"gyda XFree %s.\n"
+"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
+"mewn 2D."
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-"Cysylltu eich argraffydd i wasanaethwr Linux a gadael i'ch peiriant/"
-"peiriannau Windows gysylltu iddo fel cleient.\n"
-"\n"
-"Ydych chi am barhau i osod yr argraffydd hwn?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belarus"
-msgstr "Belarus"
+"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s"
-#: ../../partition_table.pm:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid "Error writing to file %s"
-msgstr "Gwall wrth ysgrifennu i ffeil %s"
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s gyda cyflymu caledwedd 3D ARBROFOL"
-#: ../../security/l10n.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
-msgid "Report check result to syslog"
-msgstr "Adrodd y gwirio i syslog."
+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."
+msgstr ""
+"Mae eich cerdyn yn medru cael cefnogaeth cyflymu caledwedd 3D ond dim ond "
+"gyda XFree %s.\n"
+"SYLWER CEFNOGAETH ARBROFOL YW HWN AC FE ALL RHEWI EICH CYFRIFIADUR.\n"
+"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
+"mewn 2D."
-#: ../../services.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"Mae apmd yn cael ei ddefnyddio i fonitro statws y batri a mewngofnodi drwy\n"
-"syslog. Mae modd ei ddefnyddio i gau'r peiriant pan mae'r batri'n isel."
+"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s \n"
+"SYLWER CEFNOGAETH ARBROFOL YW HWN AC FE ALL RHEWI EICH CYFRIFIADUR."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tape to backup"
-msgstr "Defnyddiwch dâp i gadw wrth gefn"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (gyrrwr gosod dangoswr)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Mae'r pecynnau canlynol i'w gosod"
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "Arddull"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS configuration"
-msgstr "Ffurfweddiad CUPS"
+#: ../../Xconfig/main.pm_.c:102
+msgid "Graphic Card"
+msgstr "Cerdyn Graffeg"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total progress"
-msgstr "Cyfanswm cynnydd"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "Monitor"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Nid oes digon o le i ddynodi rhaniadau newydd"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "Cydraniad"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "Symud"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
+msgstr "Prawf"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-"\n"
-"Gweithgaredd Drakbackup drwy %s:\n"
-"\n"
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Dewisiadau"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "yes"
-msgstr "iawn"
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "Iawn"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr "("
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "Gadael"
-#: ../../network/netconnect.pm:1
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
-"Welcome to The Network Configuration Wizard.\n"
+"Keep the changes?\n"
+"The current configuration is:\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"
+"%s"
msgstr ""
-"Croeso i Ddewin Ffurfweddu'r Rhwydwaith\n"
+"Cadw'r newid?\n"
+"Y ffurfweddiad presenol yw:\n"
"\n"
-"Rydym ar fin ffurfweddi eich cysylltiad rhyngrwyd/rhwydwaith.\n"
-"Os nad ydych am ddefnyddio awto ganfod, dad-diciwch y blwch dewis.\n"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ")"
+"%s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "Libanus"
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "Dewiswch fonitor"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
+msgstr "Plug'n Play"
-#: ../../services.pm:1
-#, c-format
-msgid "Stop"
-msgstr "Aros"
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "Generig"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Edit selected host"
-msgstr "Golygu'r gwesteiwr"
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+msgid "Vendor"
+msgstr "Gwerthwr"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD device defined!"
-msgstr "Heb ddiffinio dyfais CD!"
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr "Methodd ymholiad Plug'nPlay. Dewiswch ddangosydd penodol"
-#: ../../network/shorewall.pm:1
-#, c-format
+#: ../../Xconfig/monitor.pm_.c:114
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"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
+"\n"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
-"Rhowch enw'r rhyngwyneb sy'n cysylltu â'r "
-"rhyngrwyd. \n"
+"Y ddau baramedr pwysig yw'r raddfa adnewyddu fertigol, sef y raddfa mae'r\n"
+"holl sgrin yn cael ei adnewyddu, ac yn fwyaf pwysig y raddfa cydamseru\n"
+"llorweddol, sef y raddfa mae'r llinellau sganio'n cael eu dangos.\n"
"\n"
-"Enghreifftiau:\n"
-" ppp+ cysylltiad modem neu DSL, \n"
-" eth0, neu eth1 fam gysylltiad cebl, \n"
-" ppp+ am gysylltiad idsn.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tDefnyddiwch ffeiliau .backupignorey\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "Bwlgaraidd (ffonetig)"
+"Mae'n BWYSIG IAWN nad ydych yn enwi monitor gyda graddfa cydamseru\n"
+"sydd tu hwnt i allu eich monitor: mae modd difrodi eich monitor drwy wneud "
+"hynny.\n"
+"Os oes gennych amheuaeth, dewiswch raddfa is."
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP start ip"
-msgstr "Enw cychwyn DHCP"
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "Graddfa adfywio llorweddol"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "256 kB"
-msgstr "256 kB"
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "Graddfa adfywio fertigol"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Don't rewind tape after backup"
-msgstr "Peidio ailddirwyn y tâp wedi ei gadw wrth gefn"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 lliw (8 did)"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "Prif ddewisiadau Bootloader"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil o liwiau (15 did)"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
-msgstr ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil o liwiau (16 did)"
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Tape"
-msgstr "Tâp"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miliwn o liwiau (24 did)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malaysia"
-msgstr "Malaysia"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 biliwn o liwiau (32 did)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning network..."
-msgstr "Chwilio'r rhwydwaith..."
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "Cydraniadau"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Gyda'e dewis hwn medrwch adfer unrhyw fersiwn\n"
-"o'ch cyfeiriadur /etc."
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "Dewiswch y cydraniad a'r dyfnder lliw"
-#: ../../standalone/drakedm:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr "Mae'r newid wedi ei gyflawni. Ailgychwyn gwasanaeth dm?"
+msgid "Graphics card: %s"
+msgstr "Cerdyn graffeg: %s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (French layout)"
-msgstr "Swisaidd (gosodiad Ffrengig)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr "Diddymu"
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "methodd mkraid (efallai bod raidtools ar goll)"
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "Prawf o'r ffurfweddiad"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "August"
-msgstr "Awst"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "Ydych chi eisiau profi'r ffurfweddiad?"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "FTP server"
-msgstr "Gwasanaethwr FTP"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Rhybudd: gall profi'r cerdyn graffeg hwn rewi eich cyfrifiadur"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid "Webcam"
-msgstr "Webcam"
+msgid "Keyboard layout: %s\n"
+msgstr "Cynllun allweddell: %s\n"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "maint storfa cpu (ail lefel)"
+msgid "Mouse type: %s\n"
+msgstr "Math o lygoden: %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid "Soundcard"
-msgstr "Cerdyn sain"
+msgid "Mouse device: %s\n"
+msgstr "Dyfais llygoden: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid "Month"
-msgstr "Mis"
+msgid "Monitor: %s\n"
+msgstr "Monitor: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Search for files to restore"
-msgstr "Chwilio am ffeiliau i'w hadfer"
+msgid "Monitor HorizSync: %s\n"
+msgstr "HorizSync Monitor: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Luxembourg"
-msgstr "Luxembourg"
+msgid "Monitor VertRefresh: %s\n"
+msgstr "VertRefresh Monitor: %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynell) defnyddiwch "
-"orchymyn \"%s <file>\".\n"
+msgid "Graphics card: %s\n"
+msgstr "Cerdyn graffeg: %s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid "Level %s\n"
-msgstr "Lefel %s\n"
+msgid "Graphics memory: %s kB\n"
+msgstr "Cof graffeg: %s kB\n"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid "Syriac (phonetic)"
-msgstr "Syriac (ffonetig)"
+msgid "Color depth: %s\n"
+msgstr "Dyfnder lliw: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid "Iran"
-msgstr "Iran"
+msgid "Resolution: %s\n"
+msgstr "Cydraniad: %s\n"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Bus"
-msgstr "Bws"
+msgid "XFree86 server: %s\n"
+msgstr "Gwasanaethwr XFree86: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Iraq"
-msgstr "Irac"
+msgid "XFree86 driver: %s\n"
+msgstr "Gyrrwr XFree86: %s\n"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "connecting to %s ..."
-msgstr "cysylltu â %s..."
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "Rhyngwyneb graffigol wrth gychwyn"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
+#: ../../Xconfig/various.pm_.c:62
+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?"
msgstr ""
-"Canfuwyd gwrthdaro posib yng nghyfeiriad LAN ffurfweddiad presennol %s!\n"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring..."
-msgstr "Ffurfweddu..."
+"Hoffwn osod eich cyfrifiadur i gychwyn X yn awtomatig ar ôl cychwyn\n"
+"Hoffech chi i XFree ddechrau wedi i chi ail-gychwyn?"
-#: ../../harddrake/v4l.pm:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:73
msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
msgstr ""
-"Ar gyfer y rhelyw o gardiau Teledu diweddar, mae modiwl bttv cnewyllyn GNU/"
-"Linux yn awto ganfod y paramedrau cywir.\n"
-"Os yw'ch cerdyn yn cael ei ganfod ar gam, mae modd gorfodi'r mathau cywir o "
-"gerdyn a rheolydd. Dewiswch baramedrau eich cerdyn teledu os oes raid"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Password (again)"
-msgstr "Cyfrinair (eto)"
+"Mae'n edrych fel bod gan eich cerdyn graffig gyswlltTV-OUT.\n"
+"Mae modd ei ffurfweddu i weithio drwy byffer ffrâm.\n"
+"\n"
+"Rhaid cysylltu eich cerdyn graffig â'ch teledu cyn cychwyn eich "
+"cyfrifiadur.\n"
+"Dewiswch \"TVout\" yn y llwythwr cychwyn\n"
+"\n"
+"Ydy'r nodwedd hon gennych?"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search installed fonts"
-msgstr "Chwilio am ffontiau wedi eu gosod"
+#: ../../Xconfig/various.pm_.c:85
+msgid "What norm is your TV using?"
+msgstr "Pa norm mae eich teledu'n ei ddefnyddio?"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default desktop"
-msgstr "Bwrdd gwaith rhagosodedig"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
+msgstr "Adran gyntaf o'r rhaniad cychwyn"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
-msgstr ""
-"I gyflwyno adroddiad gwall, cliciwch ar y botwm adroddiad.\n"
-"Bydd hyn yn agor ffenestr porwr gwe yn %s\n"
-" lle welwch ffurflen i'w llenwi. Bydd yr wybodaeth rhowch arno'n cael ei\n"
-"drosglwyddo i'r gwasanaethwr."
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
+msgstr "Adran gyntaf o'r gyrrwr (MBR)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr "Venezuela"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "Gosodiad SILO"
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "IP address"
-msgstr "Cyfeiriad IP"
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
+msgstr "Lle rydych chi eisiau gosod y llwythwr cychwyn?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "Dewiswch y maint"
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "Gosodiad LILO/grub"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Rhestr o ddata llwgr:\n"
-"\n"
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
+msgstr "SILO"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
-msgstr ""
-"Dim ond ei osod yn benodol (h.y.,\n"
-"bydd y dewis -a yn achosi i'r systrm gael ei osod)."
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
+msgstr "LILO gyda dewislen testun"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"Nid yw'r system yn cynnal eich modem.\n"
-"Ewch i http://www.linmodems.org"
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
+msgstr "Lilo gyda dewislen graffigol"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose another partition"
-msgstr "Dewiswch raniad arall"
+#: ../../any.pm_.c:142
+msgid "Grub"
+msgstr "Grub"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Current user"
-msgstr "Derbyn presennol"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "Cychwyn o DOS/Windows (loadlin)"
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
-msgstr "Enw defnyddiwr"
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Bysell \"Windows\" chwith"
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "Prif ddewisiadau Bootloader"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "Guyana"
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
+msgstr "Bootloader ar waith"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Ffurfweddiad Gwasanaethwr dhcpd"
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "Gosodiad Bootloader"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Defnydd cyfeiriadur:\n"
-" dim ond perchennog y cyfeiriadur neu ffeil yn y cyfeiriadur hwn fydd yn "
-"cael ei ddileu."
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "Dyfais cychwyn"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr "ar wasanaethwr Novell \"%s\", argraffydd \"%s\""
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "Cryno"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Name"
-msgstr "Enw argraffydd"
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "cryno"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
-msgstr "Gosod allwedd USB"
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "Modd fideo"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
-msgstr "Tynnu modiwl"
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
+msgstr "Oedi cyn cychwyn y ddelwedd rhagosodedig"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
msgid "Password"
msgstr "Cyfrinair"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Ffurfweddiad Uwch"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr "Sganio eich dyfais amlbwrpas HP"
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "Cyfrinair (eto)"
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "Gwraidd"
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "Cyfyngu dewisiadau llinell orchymyn"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "Dewis RAID presennol i ychwanegu ato"
+#: ../../any.pm_.c:171
+msgid "restrict"
+msgstr "cyfyngu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Twrcaidd (model modern \"Q\")"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "Glanhau /tmp bob tro fyddwch yn cychwyn"
-#: ../../standalone/drakboot:1
+#: ../../any.pm_.c:174
#, c-format
-msgid "Lilo message not found"
-msgstr "Heb ganfod neges lilo"
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Union faint o RAM os oes angen (canfod %dMB)"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Ailgreu awtomatic pennawd y cnewyllyn yn /boot ar\n"
-"gyfer /usr/include/linux{autoconf,version}.h"
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
+msgstr "Galluogi aml-broffil"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
-msgstr "os oes angen"
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "Rhowch maint RAM mewn MB"
-#: ../../standalone/drakclock:1
-#, c-format
+#: ../../any.pm_.c:182
msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
+"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-"Mae angen gosdod pecyn ntp\n"
-" i alluogi Protocol Amser Rhwydwaith"
+"Dewis Nid yw 'cyfyngu dewisiadau llinell orchymyn' o werth heb gyfrinair"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Failed..."
-msgstr "Methodd Adfer..."
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "Ceisiwch eto"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "Cadw'r gyfrinach ar gyfer y system yn ffurfweddiad drakbackup."
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "Nid yw'r cyfrineiriau'n cydfynd"
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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 ""
-"Cyflwyniad\n"
-"\n"
-"Bydd y system weithredu a'r cydrannau gwahanol sydd o fewn dosbarthiad "
-"Mandrake Linux yn\n"
-"cael eu galw yn \"Gynnyrch Meddalwedd\" o hyn ymlaen. Mae'r Cynnyrch "
-"Meddalwedd yn\n"
-"cynnwys, ond heb eu cyfyngu, i'r casgliad o raglenni , dulliau, rheolau a "
-"dogfennau mewn\n"
-"perthynas â'r system weithredu a chydrannau gwahanol dosbarthiad Mandrake "
-"Linux.\n"
-"\n"
-"\n"
-"1. Cytundeb Trwyddedu\n"
-"\n"
-"Darllenwch y ddogfen hon yn ofalus. Mae'r ddogfen hon yn gytundeb trwyddedu "
-"rhyngoch\n"
-"chi â MandrakeSoft S.A,. sy'n berthnasol i'r Cynnyrch Meddalwedd.\n"
-"\n"
-"Wrth osod, dyblygu neu ddefnyddio'r Cynnyrch Meddalwedd mewn unrhyw fodd, "
-"rydych yn\n"
-"amlwg yn derbyn ac yn llawn cytuno i gadw at delerau ac amodau'r Drwydded "
-"hon.\n"
-"Os ydych yn anghytuno ag unrhyw rhan o'r cytundeb, ni chewch ganiatâd i "
-"osod, dyblygu\n"
-"neu ddefnyddio'r Cynnyrch Meddalwedd.\n"
-"Bydd unrhyw ymgais i osod, dyblygu neu ddefnyddio'r Cynnyrch Meddalwedd mewn "
-"modd\n"
-"nad yw'n cyd-fynd â thelerau ac amodau'r Drwydded yn ddi-rym a bydd yn "
-"terfynu eich\n"
-"hawliau o dan y Drwydded hon. Ar ddiwedd y Drwydded, rhaid i chi "
-"ddinistrio'n syth pob\n"
-"copi o'r Cynnyrch Meddalwedd.\n"
-"\n"
-"\n"
-"2. Gwarant Gyfyngedig\n"
-"\n"
-"Mae'r Cynnyrch Meddalwedd a'r ddogfennaeth gysylltiedig yn cael eu darparu "
-"\"fel ag y maent\",\n"
-"heb ddim gwarant, hyd y mae'r gyfraith yn caniatáu.\n"
-"Ni fydd MandrakeSoft S.A. yn gyfrifol, o dan unrhyw amgylchiad, a chyhyd ag "
-"y bydd y gyfraith yn\n"
-"caniatáu, am unrhyw iawn o gwbl, arbennig, damweiniol, uniongyrchol neu "
-"anuniongyrchol (gan\n"
-"gynnwys heb gyfyngu ar iawndal am golli busnes, tarfu ar fusnes, colled "
-"ariannol, costau cyfreithiol,\n"
-"a chosb o ganlyniad i achos llys, neu unrhyw golled o ganlyniad) yn codi o'r "
-"defnydd neu'r anallu i\n"
-"ddefnyddio'r Cynnyrch Meddalwedd, hyd yn oed os yw MandrakeSoft wedi eu "
-"cynghori o'r posibilrwydd\n"
-"o'r fath iawn.\n"
-"\n"
-"CYFRIFOLDEB CYFYNGEDIG YN GYSYLLTIEDIG GYDA'R MEDDIANT NEU'R DEFNYDD O "
-"FEDDALWEDD\n"
-" GWAHARDDEDIG MEWN RHAI GWLEDYDD\n"
-"\n"
-"Ni fydd MandrakeSoft S.A. yn gyfrifol, o dan unrhyw amgylchiad, a chyhyd y "
-"bydd y gyfraith yn caniatáu,\n"
-"i fod yn atebol am unrhyw iawn o gwbl, arbennig, damweiniol, uniongyrchol "
-"neu anuniongyrchol (gan gynnwys\n"
-"heb gyfyngu ar iawndal am golli busnes, tarfu ar fusnes, colled ariannol, "
-"costau cyfreithiol, a chosb o ganlyniad\n"
-"i achos llys, neu unrhyw golled o ganlyniad) yn codi o lwytho i lawr "
-"cydrannau meddalwedd o un o safleoedd\n"
-" Mandrake Linux, sydd wedi eu gwahardd neu eu hatal mewn rhai gwledydd gan "
-"gyfreithiau lleol. Mae'r\n"
-"cyfrifoldeb cyfyngedig hwn yn perthyn i , ond heb ei gyfyngu i'r, cydrannau "
-"cryptograffiaeth cryf sy'n cael\n"
-"eu cynnwys o fewn y Cynnyrch Meddalwedd.\n"
-"3. Trwydded GPL a Thrwyddedau Cysylltiedig\n"
-"\n"
-"Mae'r Cynnyrch Meddalwedd yn cynnwys cydrannau sydd wedi eu creu gan "
-"bersonau a endidau gwahanol.\n"
-"Mae'r rhan fwyaf o'r cydrannau hyn yn cael eu llywodraethu gan dermau ac "
-"amodau Trwydded Gyhoeddus\n"
-"Cyffredinol (General Public Licence (GPL)), GNU, fydd yn cael ei gyfeirio "
-"ato o hyn ymlaen fel \"GPL\", neu\n"
-"drwyddedau cyffelyb.. Mae'r rhan fwyaf o'r trwyddedau'n caniatáu i chi "
-"ddefnyddio, dyblygu, addasu neu\n"
-" ailddosbarthu'r cydrannau maent yn eu cynnwys. Darllenwch delerau ac amodau "
-"trwydded pob cydran cyn\n"
-"eu defnyddio. Dylai pob cwestiwn am drwydded cydran gael ei ofyn i awdur y "
-"gydran ac nid i MandrakeSoft.\n"
-"Mae'r rhaglenni ddatblygwyd gan MandrakeSoft yn cael eu llywodraethu o dan "
-"Drwydded GLP. Mae'r dogfennau\n"
-" ysgrifennwyd gan MandrakeSoft S.A. yn cael eu llywodraethu gan drwydded "
-"benodol. Darllenwch y dogfennau\n"
-"am fwy o fanylion.\n"
-"\n"
-"4. Hawliau Eiddo Deallusol\n"
-"\n"
-"Mae pob hawl cydrannau'r Cynnyrch Meddalwedd yn perthyn i'w hawduron "
-"perthnasol ac wedi eu hamddiffyn\n"
-"gan gyfreithiau eiddo deallusol a hawlfraint sy'n berthnasol i raglenni "
-"meddalwedd. Mae MandrakeSoft yn cadw\n"
-"ei hawl i newid neu addasu ei Gynnyrch Meddalwedd, yn rhannol neu yn gyfan, "
-"drwy unrhyw ddull ac ar gyfer\n"
-"unrhyw bwrpas. Mae \"Mandrake\", \"Mandrake Linux\" a'r logos cysylltiedig "
-"yn nodau masnachol sy'n\n"
-"perthyn i MandrakeSoft S.A.\n"
-"\n"
-"5. Cyfreithiau Llywodraethol\n"
-"Os bydd unrhyw rhan o'r cytundeb hwn yn cael ei ddal yn ddi-rym, "
-"anghyfreithlon neu amherthnasol gan\n"
-"benderfyniad llys, bydd y rhan yma'n cael ei dynnu o'r cytundeb hwn. Byddwch "
-"yn parhau i fod yn rhwymedig\n"
-"i adrannau cymwys o'r cytundeb.\n"
-"Mae telerau ac amodau'r Drwydded hon yn cael eu llywodraethu gan Cyfreithiau "
-"Ffrainc. Mae'n ddymunol y\n"
-"bydd pob anghytundeb ar amodau'r drwydded yn cael eu datrys y tu allan i'r "
-"llys. Fel cam olaf, bydd yranghytundeb yn cael ei drosglwyddo i'r Llysoedd "
-"Barn, Paris - Ffrainc. Am unrhyw gwestiwn ynghylch yddogfen hon cysylltwch â "
-"MandrakeSoft S.A. \n"
+#: ../../any.pm_.c:191
+msgid "Init Message"
+msgstr "Neges Init"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default user"
-msgstr "Defnyddiwr rhagosodedig"
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
+msgstr "Agor Oedi Cadarnwedd"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"bar cynnydd cydfesuryn x\n"
-"yn ei gornel uchaf chwith"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
+msgstr "Goramser cychwyn y cnewyllyn"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Current interface configuration"
-msgstr "Ffurfweddiad rhyngwyneb cyfredol"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
+msgstr "Galluogi cychwyn o CD?"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
+msgstr "Galluogi Cychwyn OF?"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../any.pm_.c:197
+msgid "Default OS?"
+msgstr "System Weithredu Rhagosodedig?"
+
+#: ../../any.pm_.c:231
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"
-"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"
+"On which drive are you booting?"
msgstr ""
+"Rydych wedi penderfynu gosod y llwythwr cychwyn ar raniad\n"
+"Mae hyn yn awgrymu bod gennych lwythwr cychwyn ar ddisg caled eisoes: (ee "
+"System Commander).\n"
"\n"
-"Os oes gennych gerdyn, dylai'r gwerthoedd ar y sgrîn nesaf fod yn gywir.\n"
-"\n"
-"Os oes gennych gerdyn PCMCIA, rhaid i chi wybod irq ac io eich cerdyn.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not print any test page"
-msgstr "Peidiwch argraffu tudalennau prawf"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr "Gurmukhi"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s yn cael ei ddefnyddio eisoes\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
-msgstr "Peidio Gorfodi APIC"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr "Mae'r cyfrinair yn rhy syml ( rhaid iddo fod o leiaf %d nod o hyd)"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "[keyboard]"
-msgstr "[bysellfwrdd]"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "Dirprwy FTP"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install List"
-msgstr "Gosod Rhestr"
+"Gyda pha ddisg ydych chi'n cychwyn?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:247
msgid ""
-"Change\n"
-"Restore Path"
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
-"Newid\n"
-"Llwybr Adfer"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Dangos ar y diwrnod penodol yn unig"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tCyfyngu defnydd disg i %s Mb\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Sylwer: Nid oes modd awtoganfod pyrth paralel)"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Pa fath o gerdyn sydd gennych?"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Security"
-msgstr "Diogelwch"
+"Dyma'r cofnodion gwahanol ar eich dewislen cychwyn hyd yma.\n"
+"Mae modd i chi ychwanegu rhagor neu newid y rhai presennol."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Mae modd hefyd i ddefnyddio rhag wyneb graffigol \"xpdq\" i osod dewisiadau "
-"a thrin gwaith argraffu.\n"
-"\n"
-"Os ydych yn defnyddio KDE fel amgylchedd pen bwrdd mae gennych \"botwm "
-"argyfwng\", eicon ar y bwrdd gwaith, wedi ei labelu \"Atal yr Argraffydd!\", "
-"fydd yn stopio 'r holl waith argraffu'n syth pan fyddwch yn ei glicio. Mae "
-"hyn yn ddefnyddiol pan fydd y papur wedi mynd yn sownd, ag ati.\n"
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "Ychwanegu"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "Gorffen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Methu canfod cadw wrth gefn i'w hadfer...\n"
+#: ../../any.pm_.c:257
+msgid "Modify"
+msgstr "Newid"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown"
-msgstr "Anhysbys"
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr ""
-"Mae'r gwesteiwr ar y rhestr yn barod, does dim modd ei ychwanegu eto.\n"
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "Linux"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Network Configuration"
-msgstr "Ffurfweddiad y Rhwydwaith"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "Systwmau Gweithredu eraill (SunOS..)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "Systemau Gweithredu Eraill (MacOS...)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Protocol ar gyfer gweddill y byd\n"
-" dim D-Channel (llinell les)"
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "Systemau gweithredu Eraill (windows...)"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\tBydd drakTermServ yn ffurfweddu'r ffeil i weithio ar y cyd gyda "
-"delweddau grewyd gan\n"
-" \t\tmkinitrd-net, a'r cofnodion yn /etc/dhcpd.conf, i wasanaethu'r "
-"delwedd cychwyn i bob\n"
-" \t\tcleient di-ddisg.\n"
-"\n"
-" \t\tMae ffeil ffurfweddu tftp nodweddiadol yn edrych fel hyn:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \t\tMae'r newidiadau yma o'r gosodiad rhagosodedig yn newid y faner "
-"analluogi i \n"
-" \t\t'na' a newid llwybr cyfeiriadur i /var/lib/tftpboot, lle mae "
-"mkinitrd-net\n"
-" \t\tyn gosod ei ddelweddau."
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "Delwedd"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Rhaid i ddewis %s fod yn rhif!"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "Gwraidd"
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, c-format
-msgid "Notice"
-msgstr "Nodyn"
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
+msgstr "Atodi"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "Nid ydych wedi ffurfweddu X. Ydych chi'n siwr eich bod am wneud hyn?"
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Bydd ffurfweddi'r argraffydd yn digwydd yn awtomatig. Os na chafodd eich "
-"argraffydd ei ganfod yn gywir neu byddai'n well gennych ffurfweddiad unigryw "
-"i'ch argraffydd, cychwynnwch \"Ffurfweddiad gyda Llaw\"."
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "Darllen-ysgrifennu"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "What type of partitioning?"
-msgstr "Pa fath o raniad ?"
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "Tabl"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-" "
-msgstr ""
-"rhestr ffeil yrrwyd gan FTP: %s\n"
-" "
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "Anniogel"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface"
-msgstr "Rhyngwyneb"
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "Label"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Multisession CD"
-msgstr "CD aml-sesiwn"
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "Rhagosodedig"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated strings"
-msgstr "llinellau collnod ranedig"
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
+msgstr "Maint intrd"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "Dyma'r cyfrifiaduron ddylai'r sganwyr fod ar gael:"
+#: ../../any.pm_.c:318
+msgid "NoVideo"
+msgstr "NoVideo"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Messages"
-msgstr "Negeseuon"
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "Tynnu cofnod"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Anhysbys|CPH06X (bt878) [nifer o werthwyr]"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "Gwasanaethwr POP ac IMAP"
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "Nid yw label gwag yn cael ei ganiatáu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mexico"
-msgstr "Mecsico"
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
+msgstr "Rhaid enwi delwedd cnewyllyn"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model stepping"
-msgstr "Stepio model"
+#: ../../any.pm_.c:330
+msgid "You must specify a root partition"
+msgstr "Rhaid pennu rhaniad gwraidd"
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
-msgstr "Rwanda"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "Mae'r label hwn yn cael ei ddefnyddio eisoes"
-#: ../../lang.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Switzerland"
-msgstr "Y Swisdir"
+msgid "Found %s %s interfaces"
+msgstr "Wedi canfod rhyngwynebau %s %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "Oes gennych un arall?"
-#: ../../modules/interactive.pm:1
+#: ../../any.pm_.c:642
#, c-format
msgid "Do you have any %s interfaces?"
-msgstr "Oes gennych unrhyw ryngwyneb %s?"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "Rhaid bod yn gwraidd i ddarllen ffeil ffurfweddu. \n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Dewisiadau Argraffydd lpd Pell"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Mae GNU/Linux yn system aml-ddefnyddiwr, ac mae hyn yn golygu bod pob\n"
-"defnyddiwr yn medru cael ei ddewisiadau ei hun, ei ffeiliau ei hun ac yn y "
-"blaen.\n"
-"Gallwch ddarllen yr \"Starter Guide\" i ddysgu mwy. Ond yn annhebyg i "
-"\"gwraidd\",\n"
-"sef y gweinyddwr, ni fydd modd i'r defnyddiwr fyddwch yn eu creu yma'n "
-"medru\n"
-"newid dim ond eu ffeiliau a'u ffurfweddiad ei hun. Bydd rhaid i chi greu un\n"
-"defnyddiwr cyffredin ar gyfer chi eich hun. Dyma'r cyfrif ddylech "
-"fewngofnodi\n"
-"iddo ar gyfer defnydd bob dydd. Er ei fod yn ymarferol iawn i fewngofnodi "
-"fel\n"
-"\"root\" gall fod yn beryglus iawn!. Gall y camgymeriad lleiaf olygu nad yw "
-"eich\n"
-"system yn gweithio ragor. Os wnewch chi gamgymeriad mawr fel defnyddiwr\n"
-"cyffredin, byddwch ond yn colli rhywfaint o wybodaeth, ac nid y system "
-"gyfan.\n"
-"\n"
-"Yn gyntaf rhowch eich enw go iawn. Does dim rhaid, wrth gwrs - mae modd\n"
-"i chi rhoi beth bynnag hoffech chi. Bydd DraX yn cymryd yr enw cyntaf a'i "
-"roi yn\n"
-"yr \"%s\" Dyma'r enw bydd y defnyddiwr hwn yn ei ddefnyddio i\n"
-"fewngofnodi i'r system. Mae modd ei newid. Yna rhowch gyfrinair. Nid yw\n"
-"cyfrinair defnyddiwr cyffredin mor bwysig ag un \"gwraidd\" o safbwynt "
-"diogelwch\n"
-"ond nid yw hynny'n rheswm i'w esgeuluso - wedi'r cyfan mae eich ffeiliau "
-"mewn\n"
-"perygl\n"
-"\n"
-"Os wnewch chi glicio \"%s\", bydd modd ychwanegu faint\n"
-"fynnoch. Ychwanegwch ddefnyddiwr ar gyfer pob un o'ch ffrindiau: eich tad\n"
-"neu eich chwaer, e.e. Ar ôl ychwanegu'r holl ddefnyddwyr, cliciwch \"%s\".\n"
-"\n"
-"Bydd clicio'r botwm \"%s\" yn caniatáu i chi newid y \"cragen\" "
-"rhagosodedig\n"
-"ar gyfer y defnyddiwr hwnnw (bash yw'r rhagosodedig).\n"
-"\n"
-"Pan fyddwch wedi cwblhau ychwanegu defnyddwyr, bydd gofyn i chi ddewis\n"
-"defnyddiwr sy'n gallu mewngofnodi'n awtomatig mewngofnodi i'r system pan\n"
-"fydd y cyfrifiadur yn cychwyn.Os oes gennych ddiddordeb yn y nodwedd hon a "
-"dim gwahaniaeth am ddiogelwch, dewiswch y defnyddiwr a rheolwr ffenestr a "
-"chlicio \"%s\". Os nad dad-diciwch blwch \"%s\" ."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Internet Access..."
-msgstr "Ffurfweddu Mynediad i'r We..."
+msgstr "Oes gennych unrhyw rhyngwyneb %s?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Dewiswch faint o amser fydd rhwng pob cadw wrth gefn"
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "Na"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Norway"
-msgstr "Norwy"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "Iawn"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Delete profile"
-msgstr "Dileu proffil"
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "Gweler gwybodaeth am galedwedd"
-#: ../../keyboard.pm:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Danish"
-msgstr "Danaidd"
+msgid "Installing driver for %s card %s"
+msgstr "Gosod gyrrwr %s ar gyfer cerdyn %s "
-#: ../../services.pm:1
+#: ../../any.pm_.c:663
#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Cychwyn clo allweddell numlock yn awtomatig yn consol \n"
-"ac XFree wrth gychwyn y peiriant."
+msgid "(module %s)"
+msgstr "(modiwl %s)"
-#: ../../network/network.pm:1
+#: ../../any.pm_.c:674
#, 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)."
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-"Rhowch ffurfweddiad IP ar gyfer y peiriant hwn\n"
-"Dylai pob eitem ei roi fel cyfeiriad IP nodiant collnod degymol\n"
-"(e.e.1.2.3.4)."
+"Medrwch ddarparu ddewisiadau i fodiwl %s.\n"
+"Sylwer: wrth greu unrhyw gyfeiriad bydd angen defnyddio rhagddodiad 0x, e.e. "
+"'0x123'"
-#: ../../help.pm:1
+#: ../../any.pm_.c:680
#, 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."
+"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 ""
-"Mae gosodiad Mandrake Linux yn cynnwys nifer o CD-ROMau. Mae DrakX\n"
-"yn gwybod os yw pecyn penodol wedi ei leoli ar CD-ROM arall a bydd yn bwrw\n"
-"allan y CD cyfredol a gofyn am y llall."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
-msgstr "Wedi ei dicio, nid fydd y perchennog a'r grwp yn cael ei newid"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "Bwlgaria"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
-msgstr "Mawrth"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "Prosesyddion"
+"Medrwch nawr ei ddewis i fodiwl. %s.\n"
+"Mae'r dewisiadau yn fformat ``name=value name2=value2 ...''.\n"
+"e.e, ``io=0x300 irq=7''"
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "Ynysoedd Svalbard a Jan Mayen"
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "Dewisiadau modiwl:"
-#: ../../standalone/drakTermServ:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "No NIC selected!"
-msgstr "Heb ddewis NIC!"
+msgid "Which %s driver should I try?"
+msgstr "Pa yrrwr %s ddylwn drio?"
-#: ../../network/netconnect.pm:1
+#: ../../any.pm_.c:703
#, 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."
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
-"Digwyddod anhawsterau yn ystod y ffurfweddiad.\n"
-"Profwch eich cysylltiad drwy net_monitor neu mcc. Os nad yw eich cysylltiad "
-"yn gweithio, efallai y byddwch eisiau ailgychwyn y ffurfweddiad"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "Mae rhaniad %s yn cael ei alw'n %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Other files..."
-msgstr "Cadw wrth gefn ffeiliau eraill..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
-msgstr "Congo (Kinshasa)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "IP Gwasanaethwr SMB"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Mae tabl rhaniad gyrrwr %s yn mynd i gael ei ysgrifennu i'r ddisg!"
+"Mewn rhai achosion, mae gyrrwr %s angen gwybodaeth ychwanegol i weithio'n\n"
+"gywir, er fel rheol mae'n gweithio'n iawn hebddo. Hoffech chi enwi'r "
+"dewisiadau\n"
+"ychwanegol ar ei gyfer neu adael i'r gyrrwr archwilio'r peiriant am y "
+"wybodaeth mae\n"
+"ei angen? Weithiau bydd yr archwilio'n atal y peiriant, ond ni ddylai achosi "
+"unrhyw\n"
+"ddifrod."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing HPOJ package..."
-msgstr "Gosod pecyn HPOJ..."
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
+msgstr "Atoholi"
-#: ../../any.pm:1
-#, 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"
-msgstr ""
-"Mae'r disg cychwyn addasu yn cynnig ffordd i gychwyn eich system Linux heb\n"
-"ddibynnu ar eich cychwynnwr arferol. Mae hyn yn ddefnyddiol os nad ydych am\n"
-"osod LILO (neu grub) ar eich system, neu bod system weithredu arall yn "
-"dileu\n"
-"LILO, neu nad yw LILO'n gweithio gyda'ch ffurfweddiad caledwedd.\n"
-"Mae modd defnyddio disg cychwyn addasu hefyd gyda delwedd achub Mandrake,\n"
-"gan ei gwneud yn lawer haws adfer methiannau system sylweddol. Hoffech chi\n"
-"greu disg cychwyn ar gyfer eich system?\n"
-"%s"
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "Enwi dewisiadau"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:719
#, c-format
msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
-"\n"
-" Adroddiad Daemon DrakBackup \n"
-"\n"
-"\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latvian"
-msgstr "Latfiaidd"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr "bob mis"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Retry"
-msgstr "Ceisio eto"
+"Methodd llwytho modiwl %s\n"
+"Hoffech chi drio eto gyda pharamedrau eraill?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr "Enw'r modiwl"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
+msgstr "mynediad i raglenni X"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Start at boot"
-msgstr "Cychwyn y peiriant"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
+msgstr "mynediad i offer rpm"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Defnyddio Cadw wrth Gefn Cynyddol"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
+msgstr "caniatáu \"su\""
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "Adran gyntaf o'r gyrrwr (MBR)"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
+msgstr "mynediad i ffeiliau gweinyddol"
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "El Salvador"
+#: ../../any.pm_.c:738
+msgid "access to network tools"
+msgstr "mynediad i offer rhwydwaith"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
-msgstr "Ffon hud"
+#: ../../any.pm_.c:739
+msgid "access to compilation tools"
+msgstr "mynediad i offer crynhoad"
-#: ../../standalone/harddrake2:1
+#: ../../any.pm_.c:744
#, c-format
-msgid "DVD"
-msgstr "DVD"
+msgid "(already added %s)"
+msgstr "(wedi ychwanegu %s yn barod)"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
-msgstr "Defnyddio Unicode drwy ragosodiad"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "Mae'r cyfrinair yn rhy syml"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "y modiwl o'r cnewyllyn GNU/Linux sy'n trin y ddyfais honno"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
+msgstr "Rhowch enw defnyddiwr"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "A yw eich cloc caledwedd wedi ei osod i GMT?"
+#: ../../any.pm_.c:751
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr ""
+"Rhaid i'r enw defnyddiwr gynnwys dim ond llythrennau bach, rhifau, '-' a '_'"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "Yn ceisio achub y tabl rhaniadau"
+#: ../../any.pm_.c:752
+msgid "The user name is too long"
+msgstr "Mae'r enw defnyddiwr yn rhy hir"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Rhaid i ddewis %s fod yn gyfanrif"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
-msgstr "Defnyddio cyfrinair i wirio defnyddiwr."
+#: ../../any.pm_.c:757
+msgid "Add user"
+msgstr "Ychwanegu defnyddiwr"
-#: ../../interactive/stdio.pm:1
+#: ../../any.pm_.c:758
#, c-format
msgid ""
-"Entries you'll have to fill:\n"
+"Enter a user\n"
"%s"
msgstr ""
-"Gwybodaeth i'w gyflawyno:\n"
+"Rhowch enw defnyddiwr\n"
"%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-"Ar gyfer cadw wrth gefn cyfryngau eraill, mae ffeiliau'n dal yn cael eu creu "
-"ar y disg caled, ac yna eu symud i gyfrwng arall. Bydd galluogi hyn yn "
-"tynnu'r ffeiliau tar oddi ar y disg caled ar ôl creu'r copi wrth gefn."
-
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Methu cychwyn diweddariad byw!!! \n"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "Enw :"
+#: ../../any.pm_.c:759
+msgid "Accept user"
+msgstr "Derbyn defnyddiwr"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
-msgstr "fyny"
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "Enw cywir"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 miliwn o liwiau (24 did)"
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "Enw defnyddiwr"
-#: ../../any.pm:1
-#, c-format
-msgid "Allow all users"
-msgstr "Caniatáu pob defnyddiwr"
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "Cragen"
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr "Y siop MandrakeSoft swyddogol"
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "Eicon"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "Newid maint"
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "Awtomewngofnodi"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:804
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
-msgstr ""
-"Rhowch y maint mwyaf\n"
-"i'w ganiatáu ar gyfer Drakbackup (MB)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Cable connection"
-msgstr "Cysylltiad cebl"
-
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, c-format
-msgid "User"
-msgstr "Defnyddiwr"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
-"Gwnewch cadw wrth gefn newydd cyn adfer ( ar gyfer cadw wrth gefn cynyddol "
-"yn unig )"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "methodd mkraid"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Name"
-msgstr "Enw"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Efelychiad Botwm 3"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
-msgstr "Gwirio ychwanegiadau/tynnu ffeiliau sgid."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files..."
-msgstr "Anfon ffeiliau..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "Israelaidd (Ffonetig)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
-msgstr "mynediad i offer rpm"
+"Medraf osod eich cyfrifiadur i fewngofnodi'n awtomatig ar gyfer un "
+"defnyddiwr\n"
+"Hoffech chi wneud hyn?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Rhaid dewis/rhoi argraffydd/dyfais!"
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "Dewis y defnyddiwr rhagosodedig:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Anawsterau caniatâd wrth gael mynediad i'r CD."
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
+msgstr "Dewiswch y rheolwr ffenestr i rhedeg:"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "Rhif ffôn"
+#: ../../any.pm_.c:824
+msgid "Please choose a language to use."
+msgstr "Dewiswch iaith i'w defnyddio."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr "Gwall. Nid yw gyrrwr \"%s\" wedi ei restru"
+#: ../../any.pm_.c:826
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
+msgstr ""
+"Gallwch ddewis ieithoedd eraill fydd ar gael ar ôl gosod. Dewiswch\n"
+"pa iaith yr hoffech ei osod. Byddant ar gael pan fydd eich gosodiad\n"
+"wedi ei gwblhau a phan fyddwch yn ailgychwyn eich system."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Enw'r argraffydd, disgrifiad, lleoliad"
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "Popeth"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
-msgstr "UDA (darlledu)"
+#: ../../any.pm_.c:961
+msgid "Allow all users"
+msgstr "Caniatáu pob defnyddiwr"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Defnyddiwch estyniad Xinerama"
+#: ../../any.pm_.c:961
+msgid "No sharing"
+msgstr "Dim rhannu"
-#: ../../diskdrake/interactive.pm:1
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
#, c-format
-msgid "Loopback"
-msgstr "Cylch-ôl"
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "West Europe"
-msgstr "Gorllewin Ewrop"
+#: ../../any.pm_.c:973
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
+msgstr ""
+"Medrwch allforio gan ddefnyddio NFS neu Samba. Pa un hoffech chi ei "
+"ddefnyddio"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
-msgid "On CD-R"
-msgstr "ar CDROM"
+msgid "Mandatory package %s is missing"
+msgstr "Mae pecyn gorfodol %s ar goll"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../any.pm_.c:987
msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
+"Would you like to allow users to share some of their directories?\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror "
+"and nautilus.\n"
"\n"
-"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"
+"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-"[DEWISIADAU] [ENW_RHAGLEN]\n"
+"Hoffech chi ganiatáu i rai defnyddwyr rannu eu cyfeiriaduron?\n"
+"Bydd caniatáu hyn yn gadael i ddefnyddwyr glicio ar \"Rhannu\" yn konqueror "
+"a nautilus.\n"
"\n"
-"DEWISIADAU:\n"
-" --help - argraffu'r neges cymorth.\n"
-" --report - dylai'r rhaglen fod yn un o offer mandrake\n"
-" --incident - ylai'r rhaglen fod yn un o offer mandrake"
+"\"Addasu\" caniatáu cyfran i'r defnyddwyr.\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake2 version %s"
-msgstr "Harddrake2 fersiwn %s"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
+msgstr "Cychwyn userdrake"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Preferences"
-msgstr "Dewisiadau"
+#: ../../any.pm_.c:1003
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
+msgstr ""
+"Mae rhannu yn ôl defnyddiwr yn defnyddio grwp \"rhannu ffeiliau\" .\n"
+"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grwp."
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr "Swaziland"
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
+msgstr "Croeso i Crackers"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "Dominican Republic"
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Gwael"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr "Copïo %s"
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
+msgstr "Safonol"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Choose color"
-msgstr "dewis lliw"
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Uchel"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac"
-msgstr "Syriac"
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+msgid "Higher"
+msgstr "Uwch"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "Paranoia"
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1061
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!"
+"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 ""
-"Dewiswch y ddisg caled rydych am ei ddileu er mwy n gosod eich rhaniad\n"
-"Mandrake Linux newydd. Byddwch ofalus, bydd yr holl ddata sydd arno'n\n"
-"cael ei ddileu ac ni fydd modd ei adfer!"
-
-#. -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
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Defnyddiwch allweddi %c a %c i ddewis pa gofnod i'w amlygu."
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Llygoden 2 Fotwm Generig"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Galluogi \"%s\" i weithredu'r ffeil"
-
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr "Tynnu'r cyfrolau rhesymegol yn gyntaf\n"
-
-#. -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
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Bydd y cofnod wedi ei amlygu'n cychwyn yn awtomatig ymhen %d eiliad."
+"Rhaid defnyddio'r lefel hwn gyda gofal. Mae'n gwneud eich system yn haws ei\n"
+"ddefnyddio ond mae'n sensitif iawn: rhaid peidio defnyddio'r peiriant i'w\n"
+"gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../any.pm_.c:1064
msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
-"Methu ysgrifennu /etc/sysconfig/bootsplash.\\\\\n"
-"Heb ganfod y ffeil"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet access"
-msgstr "Mynediad i'r Rhyngrwyd"
+"Mae'r cyfrinair wedi ei alluogi, ond ni argymhellir ei ddefnyddio fel "
+"cyfrifiadur rhwydwaith."
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../any.pm_.c:1065
msgid ""
-"y coordinate of text box\n"
-"in number of characters"
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
-"blwch testun cydfesuryn y\n"
-"mewn rhif nodau"
+"Dyma'r safon sy'n cael ei argymell ar gyfer diogelwch cyfrifiadur fydd yn "
+"cael ei gysylltu â'r Rhyngrwyd fel cleient."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1066
msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
-"I edrych ar y rhestr o'r dewisiadau sydd ar gael ar gyfer yr argraffydd "
-"cyfredol cliciwch ar fotwm \"Rhestr dewisiadau argraffu\"."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr "Galluogi gwasanaethwyr..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Argraffu tudalen(nau) prawf..."
+"Mae rhai cyfyngiadau, ac mae rhagor o wiriadau awtomatig yn cael eu rhedeg "
+"bob nos"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1067
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."
+"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 ""
-"Roedd y trosglwyddiad yn llwyddiannus\n"
-"Efallai'r hoffechi wirio eich bod yn medru mewngofnodi i'r gwasanaether "
-"gyda:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"heb dderbyn cais am gyfrinair"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Mae yna eisoes raniad gyda phwynt gosod %s\n"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
-msgstr "Galluogi/Analluogi gwiriad diogelwch msec bob awr."
+"Gyda'r lefel diogelwch hwn, mae defnydd y system fel gwasanaethwr yn "
+"bosibl.\n"
+"Mae diogelwch yn ddigon uchel i ddefnyddio'r system fel gwasanaethwr sy'n "
+"derbyn\n"
+"cysylltiad gan amryw o gleientiaid. Sylwer: os maei cleient yn unig yw eich "
+"peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1070
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''."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-"Yn awr mae angen i chi ddewis lle ar eich disg caled i osod eich\n"
-"system weithredu Linux Mandrake. Os yw eich disg caled yn wag neu\n"
-"os oes yna system weithredol eisoes yn cymryd yr holl le sydd ar gael,\n"
-"bydd angen i chi greu rhaniadau arno.Yn y bon, mae rhannu disg caled\n"
-"yn golygu ei rhannu'n rhesymegol i greu lle i osod eich system Mandrake\n"
-"Linux newydd.\n"
-"\n"
-"Gan bo effaith y broses rannu'n ddidroi nôl gan arwain at golli data os "
-"oes\n"
-"system weithredol eisoes ar y gyrrwr, rhall rhannu gall creu rhaniadau fod\n"
-"yn broses bygythiol a straenusos ydych yn ddefnyddiwr dibrofiad.\n"
-"Yn ffodus, mae gan DrakX ddewin sy'n symleiddio'r broses. Cyn cychwyn,\n"
-"darllenwch y llawlyfr a chymerwch bwyll.\n"
-"\n"
-"Yn ddibynnol ar ffurfweddiad eich disg caled, mae dewisiadau ar gael:\n"
-"\n"
-" * \"%s\": mae'r dewis hwn yn arwain at greu rhaniadau\n"
-"awtomatig o'ch disg(iau) caled gwag. Bydd dim cwestiynau eraill os byddwch\n"
-"yn defnyddio'r dewis hwn.\n"
-"\n"
-" * \"%s\": mae'r dewin wedi canfod un neu fwy\n"
-"o raniadau Linux cyfredol ar eich disg caled. Os ydych am eu defnyddio,\n"
-"dewiswch y dewis hwn. Bydd gofyn i chi ddewis pwyntiau gosod cysylltiaedig\n"
-"â phob rhaniad. Mae'r pwyntiau gosod gosodedig wedi eu dewis, ac ar y\n"
-"cyfan mae'n syniad da cadw atynt.\n"
-"\n"
-" * \"%s\": os yw Microsoft Windows ar\n"
-"eich disg caled ac yn cymryd y lle i gyd, bydd rhaid i chi greu lle ar gyfer "
-"data\n"
-"Linux. I wneud hynny gallwch ddileu eich rhaniad a data Microsoft Windows\n"
-"(Gw. atebion \"Dileu'r ddisg gyfan \" neu ail-lunio maint rhaniad FAT "
-"Microsoft\n"
-"Windows. Mae modd ail lunio maint y rhaniad heb golli data cynbelled eich\n"
-"bod wedi dad-ddarnio rhaniad Windows ac mae'n defnyddio fformat Windows.\n"
-"Argymellir cadw data wrth gefn hefyd.Argymhellir gwneud hyn os ydych am\n"
-"ddefnyddio Mandrake Linux a Microsoft Windows ar yr un cyfrifiadur.\n"
-"\n"
-" Cyn gwneud y dewis hwn, cofiwch y bydd maint eich rhaniad Microsoft\n"
-"Windows yn llai nag yw ar hyn o bryd ar âl dilyn y drefn yma. Bydd\n"
-"gennych llai o le yn Microsoft Windows i gadw data neu i osod\n"
-"meddalwedd newydd.\n"
-"\n"
-" * \"%s\" os ydych am ddileu'r holl ddata a rhaniadau\n"
-"presennol ar eich disg caled a'u cyfnewid am system Mandrake Linux,\n"
-"yna dewiswch hwn. Byddwch yn ofalus wrth wneud hyn gan na fydd\n"
-"modd troi'n ôl ar ôl cadarnhau.\n"
-"\n"
-" !! Os ydych yn dewis hwn, byddwch yn colli'r holl ddata ar eich disg. !!\n"
-"\n"
-" * \"%s\": bydd hwn yn dileu popeth o'r disg caled a \n"
-"chychwyn popeth o'r newydd, gan gynnwys creu rhaniadau newydd.\n"
-"Bydd yr holl ddata ar y ddisg yn cael ei golli\n"
-"\n"
-" !! Os ydych yn dewis hwn, byddwch yn colli'r holl ddata ar eich disg. !!\n"
-"\n"
-" * \"%s\": dewiswch hwn os ydych am rannu'r disg caled\n"
-"gyda llaw. Byddwch ofalus - mae'n ddewis pwerus a pheryglus. Mae modd\n"
-"i chi golli'ch holl ddata. Peidiwch dewis hwn oni bai eich bod yn gwybod "
-"beth\n"
-"ydych yn ei wneud.. Am rhagor o wybodaeth ar sut i ddefnyddio DiskDrake, \n"
-"darllennwch adran \"Managing your Partitions\" yn y \"Starter Guide\"."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
-msgstr "Wcrain"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Application:"
-msgstr "Rhaglen"
+"Wedi ei seilio ar y lefel flaenorol, ond mae'r system yn hollol gaeëdig ac "
+"mae nodweddion diogelwch ar eu huchaf."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "External ISDN modem"
-msgstr "Modem IDSN Allanol"
+#: ../../any.pm_.c:1076
+msgid "DrakSec Basic Options"
+msgstr "Dewisiadau Sylfaenol DrakSec"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr "os wedi ei osod i iawn, adrodd y gwirio drwy e-bost"
+#: ../../any.pm_.c:1077
+msgid "Please choose the desired security level"
+msgstr "Dewiswch lefel diogelwch"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Eich dewis? (rhagosodedig %s)"
+#: ../../any.pm_.c:1080
+msgid "Security level"
+msgstr "Lefel diogelwch"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr "Datrys problemau"
+#: ../../any.pm_.c:1082
+msgid "Use libsafe for servers"
+msgstr "Defnyddiwch libsafe ar gyfer gwasanaethwyr"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1083
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"
+"A library which defends against buffer overflow and format string attacks."
msgstr ""
-"Mae tudalennau prawf wedi eu hanfon i'r argraffydd.\n"
-"Gall gymryd amser cyn i'r argraffydd gychwyn.\n"
-"Statws argraffu:\n"
-"%s\n"
-"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
-msgstr "dyddiol"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and one unknown printer"
-msgstr "ac un argraffydd anhysbys"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Ireland"
-msgstr "Iwerddon"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Restore Configuration "
-msgstr " Adfer y Ffurfweddiad"
+"Llyfrgell sy'n diogelu rhag gorlif byffer ac ymosodiadau llinellau fformatio."
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "A'i hwn yw'r gosodiad cywir?"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
+msgstr "Gweinyddwr Diogelwch (mewngfnodi neu e-bost)"
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1166
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."
+"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 ""
-"Dyma eich cyfle i gysylltu gyda'r rhyngrwyd/rhwydwaith.Os hoffech chi\n"
-"gysylltu eich cyfrifiadur i'r Rhyngrwyd neu i rwydwaith lleol, cliciwch\n"
-"\"%s\" . Bydd Mandrake Linux yn awtoganfod dyfeisiau rhwydwaith\n"
-"a modem. Os yw'r canfod yn methu, dad-diciwch y blwch \"%s\"n y tro nesaf. "
-"Mae gennych y dewis i beidio ffurfweddi eich\n"
-"rhwydwaith, neu i'w wneud rhywbryd eto. Os fell, cliciwch y botwm \"%s\".\n"
-"\n"
-"Cysylltiadau posib: modem traddodiadol,modem IDSN, cyswllt ADSL,\n"
-"modem cable ac yn olaf cyswllt LAN syml (Ethernet).\n"
-"\n"
-"Byddwn ni ddim yn mynd i fanylion y ffurfweddiad yma. Gwnewch yn siwr\n"
-"fod gennych yr holl fanylion gan eich darparwr gwasanaeth rhyngrwyd (ISP)\n"
-"neu weinyddwr system\n"
-"\n"
-"Mae modd i chi edrych ar bennawd yn y \"Starter Guide\" ar gyswllt a'r\n"
-"Rhyngrwyd am fanylion ffurfweddiad, neu aros nes i'ch system gael ei\n"
-"osod a defnyddio'r rhaglen sydd yno i ffurfweddu eich cyswllt."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Ffurfweddiad y Dewin"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Autoprobe"
-msgstr "Awtoholi"
+"Yma medrwch ddewis yr allwedd neu gyfuniad allwedd fydd yn\n"
+"caniatáu newid rhwng bysellfyrddau gwahanol (e.e.: lladin neu\n"
+"arall)"
-#: ../../security/help.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, c-format
msgid ""
-"if set to yes, check for :\n"
-"\n"
-"- empty passwords,\n"
+"Welcome to %s the operating system chooser!\n"
"\n"
-"- no password in /etc/shadow\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
"\n"
-"- for users with the 0 id other than root."
msgstr ""
-"os wedi ei osod i iawn, gwirio am:\n"
-"\n"
-"- gyfrinair gwag\n"
+"Croeso i %s y dewiswr systemau gweithredu! \n"
"\n"
-"- dim cyfrinair yn /etc/shadow\n"
+"Dewiswch system weithredu o'r rhestr uchod neu\n"
+"arhoswch %d eiliad am gychwyn rhagosodedig\n"
"\n"
-"- defnyddwyr eraill gyda enw 0 ar wahan i gwraidd."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files..."
-msgstr "Ffeiliau system wrth gefn"
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Croeso i GRUB, y dewiswr systemau gweithredu!"
-#: ../../any.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:986
#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Methu defnyddio darlledu heb barth NIS"
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Defnyddiwch allweddi %c a %c i ddewis pa gofnod i'w amlygu."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Tynnu argraffydd \"%s\"..."
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Gwasgwch Enter i gychwyn y system weithredu, 'g' i olygu'r"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell history size"
-msgstr "Maint hanes cragen"
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "gorchmynion cyn cychwyn, neu 'c' am y llinell orchymyn."
-#: ../../standalone/drakfloppy:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:995
#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Bydd y cofnod wedi ei amlygu'n cychwyn yn awtomatig ymhen %d eiliad."
-#: ../../standalone/drakpxe:1
-#, 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"
-msgstr ""
-"Dangoswch lle mae'r ffeil auto_install.cfg wedi ei leoli,\n"
-"\n"
-"Gadael yn wag os ydych am greu modd gosod yn awtomatig.\n"
-"\n"
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
+msgstr "dim digon o le yn /boot"
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on other machines"
-msgstr "Ffurfweddu ar beiriannau eraill"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "Bwrdd Gwaith"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "lefel gwybodaeth i'w gael drwy gyfarwyddid cpuid"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "Dewislen Cychwyn"
-#: ../../lang.pm:1
+#: ../../bootloader.pm_.c:1120
#, c-format
-msgid "Peru"
-msgstr "Periw"
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "Nid oes modd gosod y llwythwr cychwyn ar raniad %s\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " on device: %s"
-msgstr "ar ddyfais: %s"
+#: ../../bootlook.pm_.c:53
+msgid "Boot Style Configuration"
+msgstr "Ffurfweddu'r Math o Gychwyn"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "Tynnu Windows(TM)"
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
+msgstr "/_Ffeil"
-#: ../../services.pm:1
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"Yn cychwyn Gwasanaethwr Ffont X (mae hyn yn orfodol i XFree i redeg).."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
+msgstr "/Ffeil/_Gadael"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"Tynnwyd y rhanfwyaf o'r gwerthoedd\n"
-"hyn o'ch system ar waith.\n"
-"Medrwch eu newid yn ôl y galw."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
+msgstr "<control>Q"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Dewiswch ffeil neu gyfeiriadur y ffont a chlicio 'Ychwanegu'"
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
+msgstr "Monitor Categoreiddio NewStyle"
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "Madagascar"
+#: ../../bootlook.pm_.c:83
+msgid "NewStyle Monitor"
+msgstr "Monitor NewStyle"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
+#: ../../bootlook.pm_.c:84
+msgid "Traditional Monitor"
+msgstr "Monitor Traddodiadol"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
-msgstr "Nid yw cron ar gael eto ar gyfer di-wraidd"
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
+msgstr "Monitor Gtk+ Traddodiadol"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "System"
-msgstr "System"
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
+msgstr "Cychwyn Auora wrth gychwyn y cyfrifiadur"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Ydych chi eisiau defnyddio'r nodwedd?"
+#: ../../bootlook.pm_.c:89
+msgid "Lilo/grub mode"
+msgstr "Modd Lilo/grub"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr "Arabeg"
+#: ../../bootlook.pm_.c:89
+msgid "Yaboot mode"
+msgstr "Modd Yaboot"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:138
+msgid "Install themes"
+msgstr "Gosod themâu"
+
+#: ../../bootlook.pm_.c:139
msgid ""
-"\n"
-"- Options:\n"
+"Display theme\n"
+"under console"
msgstr ""
-"\n"
-"-Dewisiadau:\n"
+"Dangos thema\n"
+"yn y consol"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Password required"
-msgstr "Mae angen cyfrinair"
+#: ../../bootlook.pm_.c:140
+msgid "Create new theme"
+msgstr "Creu thema newydd"
-#: ../../common.pm:1
+#: ../../bootlook.pm_.c:184
#, c-format
-msgid "%d minutes"
-msgstr "%d munud"
+msgid "Backup %s to %s.old"
+msgstr "Cadw %s i %s.old wrth gefn"
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: ../../bootlook.pm_.c:187
#, c-format
-msgid "Graphics card: %s"
-msgstr "Cerdyn graffeg: %s"
+msgid "Copy %s to %s"
+msgstr "Copïo %s i %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV transfer failed!"
-msgstr "Methodd trosglwyddiad WebDaAV!"
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+msgstr "Gwall"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "Ffurfweddiad XFree"
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
+msgstr "Heb ganfod neges lilo"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Choose action"
-msgstr "Dewiswch weithred"
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr "Methu ysgrifennu /etc/sysconfig/bootsplash."
-#: ../../lang.pm:1
+#: ../../bootlook.pm_.c:222
#, c-format
-msgid "French Polynesia"
-msgstr "Polynesia Ffrengig"
+msgid "Write %s"
+msgstr "Ysgrifennu %s"
-#: ../../help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:224
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."
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-"Drwy ragosodiad mae DrakX yn cymryd bod gennych lygoden dau fotwm\n"
-"a bydd yn ei osod i efelychu botwm tri. Bydd DrakX yn gwybod yn awtomatig\n"
-"p'un a'i yw'n lygoden PS/2, cyfresol neu USB.\n"
-"\n"
-" Os hoffech chi bennu math arall o lygoden, dewiswch y math priodol o'r "
-"rhestr.\n"
-"\n"
-"Os byddwch yn dewis llygoden ar wahân i'r rhagosodedig, byddwch yn gweld\n"
-"ffenestr profi'r llygoden. Defnyddiwch y botymau a'r olwyn i wneud yn siwr "
-"fod\n"
-"y gosodiadau'n gweithio. Os nad yw'r llygoden yn gweithio'n iawn pwyswch\n"
-"ar y bylchwr neu [Return] i ddileu'r prawf ac mynd yn ôl at y rhestr dewis.\n"
-"\n"
-"Weithiau ni fydd llygod olwyn yn cael eu canfod yn awtomatig. Bydd rhaid i "
-"chi\n"
-"eu dewis o'r rhestr. Gwnewch yn siwr eich bod yn dewis yr un sy'n cyfateb "
-"i'r porth\n"
-"mae wedi ei gysylltu iddo. Wedi i chi wasgu'r botwm \"%s\" bydd delwedd\n"
-"llygoden yn cael ei ddangos. Bydd angen i chi symud olwyn y llygoden iddo \n"
-"weithio'n gywir. Wrth i chi wedl yr olwyn sgroli ar y sgrîn yn symud wrth i "
-"chi droi'r\n"
-"olwyn, profwch y botymau a gwirio fod cyfeirydd y llygoden yn symud ar y "
-"sgrîn\n"
-"wrth i chi symud eich l;lygoden."
+"Methu ysgrifennu /etc/sysconfig/bootsplash.\\\\\n"
+"Heb ganfod y ffeil"
-#: ../../services.pm:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Cynnal OKI 4w ac argraffyddion windows cyffelyb."
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr "Methu cychwyn mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:238
#, c-format
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+
+#: ../../bootlook.pm_.c:244
msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-"Ni fydd ffeiliau neu gardiau gwyllt wedi eu rhestri yn ffeil .backupignore "
-"ar frig y goeden cyfeiriadur yn cael eu cadw."
-
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Cychwynnwch system sain ALSA (Pensaernïaeth Sain Linux Uwch)"
+"Methu ailgychwyn LiLo!\n"
+"Cychwyn \"lilo\" fel gwraidd ar y linell orchymyn i gwblhau gosod thema "
+"LiLo'n llawn."
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Gosod gyrrwr %s ar gyfer cerdyn %s "
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
+msgstr "Ail gychwyh 'lilo'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Rydych wedi trosglwyddo eich argraffydd rhagosodedig blaenorol rhagosodedig "
-"(\"%s\"). A ddylai fod yn argraffydd rhagosodedig y system argraffu newydd %"
-"s ?"
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+msgid "Notice"
+msgstr "Nodyn"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Enable Server"
-msgstr "Galluogi'r Gwasanaethwr"
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr "Themâu LiLo a Croeso Cychwyn wedi eu gosod yn llwyddiannus"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ukrainian"
-msgstr "Wcranaidd"
+#: ../../bootlook.pm_.c:251
+msgid "Theme installation failed!"
+msgstr "Methodd gosod y thema!"
-#: ../../printer/printerdrake.pm:1
+#: ../../bootlook.pm_.c:259
#, 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."
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"Nid oedd mynediad i'r rhwydwaith yn rhedeg ac nid oedd modd ei gychwyn. "
-"Gwiriwch eich ffurfweddiad a'ch caledwedd. Yna ceisiwch ail ffurfweddi eich "
-"argraffydd."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Galluogi \"%s\" i ysgrifennu i'r ffeil"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Mewnosodwch y disg meddal Cychwyn ddefnyddiwyd yn yrrwr %s"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local network(s)"
-msgstr "Rhwydwaith(iau) lleol "
+"Rydych yn defnyddio %s fel rheolwr cychwyn.\n"
+"Cliciwch Ffurfweddu i gychwyn dewin gosod"
-#: ../../help.pm:1
-#, c-format
-msgid "Remove Windows"
-msgstr "Tynnu Windows"
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
+msgstr "Ffurfweddu"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-"Mae eich %s wedi ei ffurfweddu.\n"
-"Medrwch ddefnyddio \"XSane\" i sganio dogfennau o'r ddewislen rhaglenni Aml-"
-"gyfrwng/Graffigau."
+#: ../../bootlook.pm_.c:268
+msgid "Splash selection"
+msgstr "Dewis sgrin croeso"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Firewire controllers"
-msgstr "Rheolyddion firewire"
+#: ../../bootlook.pm_.c:271
+msgid "Themes"
+msgstr "Themâu"
-#: ../../help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:273
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!"
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
msgstr ""
-"Ar ôl ffurfweddu paramedrau cyffredinol y cychwynnwr, bydd y rhestr o\n"
-"ddewisiadau cychwyn ar gael wrth gyvchwyn yn cael eu harddangos.\n"
-"\n"
-"Os oes yna systemau gweithredu eraill ar eich cyfrifiadur byddant yn cael\n"
-"eu hychwanegu i'r ddewislen cychwyn. Mae modd addasu'r dewisiadau\n"
-"eraill dwy glicio \"%s\" i greu cofnod newydd; dewis cofnod\n"
-"a chlicio \"%s\" neu \"%s\" i'w nweid neu ei dynnu. Mae \"%s\"\n"
-"yn gwirio'r newidiadau\n"
"\n"
-"Efallai na fyddwch eisiau rhoi mynediad i'r systemau gweithredu hyn i neb\n"
-"arall fydd yn mynd i'r consol ac yn ailgychwyn y cyfrifiadur. Gallwch "
-"ddileu'r\n"
-"cofnodion perthnasol o'r system weithredu i'w tynnu o ddewislwn y\n"
-"cychwynnwr,ond bydd rhaid i chi greu disg cychwyn ar gyfer y systemau\n"
-"gweithredu eraill rheini!"
+"Dewis thema ar\n"
+"gyfer lilo a bootsplash,\n"
+"mae modd eu dewis\n"
+"ar wahân"
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
+msgstr "Sgrin Lilo"
+
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
+msgstr "Croeso Cychwyn"
+
+#: ../../bootlook.pm_.c:316
msgid "System mode"
msgstr "Modd system"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"I argraffu ar argraffydd NetWare, rhaid i chi rhoi enw gwasanaethwr argraffu "
-"NetWare (Sylwer! Gall fod yn wahanol i'w enw gwesteiwr TCP/IP) yn ogystal "
-"â'r rhes waith argraffu am yr argraffydd rydych am gael mynediad iddo ac "
-"unrhyw enw defnyddiwr a chyfrinair perthnasol."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Netmask:"
-msgstr "Netmask:"
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
+msgstr "Cychwyn yr amgylchedd graffigol wrth gychwyn eich system"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
-msgstr "Gwneud yn hwyrach"
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
+msgstr "Na, tydw i ddim eisiau awto-mewngofnodi"
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "Atodi"
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "Iawn, rwyf eisiau awto-mewngofnodi gyda (defnyddiwr, bwrdd gwaith)"
+
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
+msgstr "Iawn"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Adnewyddu rhestr argraffyddion (dangos pob argraffydd CUPS pell sydd ar gael)"
+#: ../../common.pm_.c:107
+msgid "GB"
+msgstr "GB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Pan mae'r dewis yma ar gael, gwneud yn siwr wrth gychwyn CUPS fod\n"
-"\n"
-"- os yw LPD/LPRng wedi ei osod, na fydd CUPS yn ysgrifennu dros /etc/"
-"printcap\n"
-"\n"
-"- os yw /etc/cups/cupsd.conf ar goll, bydd yn cael ei greu\n"
-"\n"
-"- pan mae gwybodaeth am argraffydd yn cael ei ledaenu, nid yw'n cynnwys "
-"\"localhost\" fel enw gwasanaethwr.\n"
-"\n"
-"Os yw rhai o'r rhain yn achosi anhawster, diffoddwch y dewis hwn, ond bydd "
-"rhaid i chi ofalu amdanynt."
+#: ../../common.pm_.c:107
+msgid "KB"
+msgstr "KB"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Mae modd awtomeiddio'r awto gosod, os hoffech\n"
-"chi, yn yr achos hwnnw bydd yn cymryd drosod y\n"
-"disg caled!!\n"
-"(mae hyn ar gyfer gosod ar flwch arall).\n"
-"\n"
-"Efallai byddai'n well gennych ai osod y gosodiad.\n"
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Argraffydd rhwydwaith \"%s\", porth %s"
+#: ../../common.pm_.c:115
+msgid "TB"
+msgstr "TB"
-#: ../../standalone/drakgw:1
+#: ../../common.pm_.c:123
#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Dewiswch ba addasyddion rhwydwaith fydd yn cael eu cysylltu â'ch Rhwydwaith "
-"Lleol."
+msgid "%d minutes"
+msgstr "%d munud"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
-msgstr "Iawn i adfer ffeiliau eraill"
+#: ../../common.pm_.c:125
+msgid "1 minute"
+msgstr "1 munud"
-#: ../../install_steps_interactive.pm:1
+#: ../../common.pm_.c:127
#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Dewiswch gynllun eich bysellfwrdd"
+msgid "%d seconds"
+msgstr "%d eiliad"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "URI Dyfais Argraffu"
+#: ../../common.pm_.c:172
+msgid "Can't make screenshots before partitioning"
+msgstr "Meth creu lluniau o'r sgrin cyn rhannu"
-#: ../../standalone/drakbackup:1
+#: ../../common.pm_.c:179
#, c-format
-msgid "Not erasable media!"
-msgstr "Nid yw'n gyfrwng dileadwy!"
+msgid "Screenshots will be available after install in %s"
+msgstr "Bydd lluniau o'r sgrin ar gael ar ôl gosod yn %s"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "Seiliedig ar derfynell"
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+msgid "France"
+msgstr "Ffrainc"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr "Galluogi/Analluogi amddiffyn spwlio IP"
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
+msgstr "Costa Rica"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Gosod system argraffu yn lefel diogelwch %s"
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+msgid "Belgium"
+msgstr "Gwlad Belg"
-#: ../../any.pm:1
-#, c-format
-msgid "The user name is too long"
-msgstr "Mae'r enw defnyddiwr yn rhy hir"
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
+msgstr "Gweriniaeth Tsiec"
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "Systemau Gweithredu Eraill (windows...)"
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+msgid "Germany"
+msgstr "Yr Almaen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr "Mae safle pell WebDAV eisoes wedi cydamseru!"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+msgid "Greece"
+msgstr "Groeg"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
-msgstr "Darllen cronfa ddata argraffydd..."
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+msgid "Norway"
+msgstr "Norwy"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Creu disg meddal awto gosod"
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+msgid "Sweden"
+msgstr "Sweden"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t enw defnyddiwr:%s\n"
-"\t\t ar lwybr: %s \n"
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
+msgstr "Yr Iseldiroedd"
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr "Somalia"
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+msgid "Italy"
+msgstr "Yr Eidal"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr "Dim gyrrwr cod agored"
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+msgid "Austria"
+msgstr "Awstria"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
-msgstr "Def."
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
+msgstr "Yr Unol Daleithiau"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../diskdrake/dav.pm_.c:19
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"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 ""
-"Wedi ei seilio ar y lefel flaenorol, ond mae'r system yn hollol gaeëdig ac "
-"mae nodweddion diogelwch ar eu huchaf."
+"Protocol yw WebDAV sy'n eich caniatáu i chi osod gwasanaethwr gwe'n lleol\n"
+"a'i drin fel system ffeilio lleol ( ar yr amod bod y gwasanaethwr lleol wedi "
+"ei\n"
+"ffurfweddi fel gwasanaethwr WebDAV). Os hoffech ychwanegu pwyntiau\n"
+"gosod WebDAV, dewiswch \"Newydd\""
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "Nicaragua"
+#: ../../diskdrake/dav.pm_.c:27
+msgid "New"
+msgstr "Newydd"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "Caledonia Newydd"
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Dad-osod"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Protocol Ewropeaidd (EDSSI)"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Gosod"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Delete"
-msgstr "/_Dileu"
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
+msgstr "Gwasanaethwr"
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "Modd fideo"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Pwynt gosod"
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
-msgstr "Oman"
+#: ../../diskdrake/dav.pm_.c:85
+msgid "Please enter the WebDAV server URL"
+msgstr "Rhowch URL gwasanaethwr WebDAV"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Rhowch eich cyfeiriad e-bost islaw"
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
+msgstr "Rhaid i'r URL gychwyn gyda http:// neu https://"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Network Monitoring"
-msgstr "Monitro'r Rhwydwaith"
+#: ../../diskdrake/dav.pm_.c:109
+msgid "Server: "
+msgstr "Gwasanaethwr:"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "SunOS"
-msgstr "SunOS"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
+msgstr "Pwynt gosod:"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "New size in MB: "
-msgstr "Maint mewn MB: "
+msgid "Options: %s"
+msgstr "Dewisiadau: %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Tabl rhaniad math: %s\n"
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
+msgstr "Gwnewch gopi wrth gefn o'ch data yn gyntaf"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication Windows Domain"
-msgstr "Dilysu Parth Windows"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "Darllenwch yn ofalus!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "Bysellfwrdd UDA"
+#: ../../diskdrake/hd_gtk.pm_.c:100
+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 ""
+"Os ydych yn bwriadu defnyddio aboot, gofalwch adael lle gwag (2048 sector yn "
+"ddigon)\n"
+"ar ddechrau'r ddisg."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr "Efelychiad botymau"
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "Dewin"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", rhwydwaith argraffu \"%s\", porth %s"
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
+msgstr "Dewiswch weithred"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
-"\n"
-"Gweithgaredd Drakbackup drwy dâp:\n"
-"\n"
+"Mae gennych un rhaniad FAT mawr\n"
+"(yn cael ei ddefnyddio gan Microsoft Dos/Windows\n"
+"Awgrymaf eich bod yn newid maint y rhaniad\n"
+"(cliciwch arno, ac yna clicio \"Newid maint\"]"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-" Anhawster cysylltiad FTP: Nid oedd yn bosibl anfon eich ffeiliau wrth gefn "
-"drwy FTP.\n"
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "Cliciwch ar raniad"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Sending Speed:"
-msgstr "Cyflymder Anfon:"
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "Manylion"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"The classic bug sound tester is to run the following commands:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
-"currently uses\n"
-"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services're configured to be run on\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Prawf gwall sain - rhedeg y gorchmynion canlynol:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" pa yrrwyr i'w defnyddio\n"
-"drwy ragosodiad\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" pa yrrwyr mae'n defnyddio\n"
-"ar hyn o bryd\n"
-"\n"
-"- \"/sbin/lsmod\" gwirio os yw ei yrrwr wedi ei lwytho\n"
-"a'i peidio\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" a \"/sbin/chkconfig --list alsa\" dangos\n"
-"os yw sain a gwasanaethau alsa services sydd wedi eu ffurfweddu yn rhedwg\n"
-"ar initlevel 3\n"
-"\n"
-"- \"aumix -q\" a yw'r sain wedi ei ddistewi a'i peidio\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" pa rhaglen sy'n defnyddio'r cerdyn sain.\n"
+#: ../../diskdrake/hd_gtk.pm_.c:254
+msgid "No hard drives found"
+msgstr "Heb ganfod gyrwyr caled"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
-msgstr "Gwall halt"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Ffurfweddiad rhybudd e-bost"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "FAT"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr "Tokelau"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Matching"
-msgstr "Cydweddu"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Journalised FS"
+msgstr "Jwrnaleiddiwyd FS"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bosnian"
-msgstr "Bosnieg"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Release: "
-msgstr "Ryddhad"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "Swap"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection speed"
-msgstr "Cyflymder y cysylltiad"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "Gwag"
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr "Namibia"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "Arall"
-#: ../../services.pm:1
-#, c-format
-msgid "Database Server"
-msgstr "Gwasanaethwr Cronfa Ddata"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "Mathau o system ffeiliau:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr "nodweddion arbennig y gyrrwr (llosgi neu gynnal DVD)"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "Creu"
-#: ../../raid.pm:1
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Methu ychwanegu rhaniad to_formatted_RAID md%d"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "Math"
-#: ../../standalone/drakclock:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid "Network Time Protocol"
-msgstr "Protocol Amser Rhwydwaith"
+msgid "Use ``%s'' instead"
+msgstr "Defnyddiwch \"%s\" yn lle hynny"
+
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "Dileu"
+
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
+msgstr "Defnyddiwch \"Dad-osod\" yn gyntaf"
-#: ../../Xconfig/card.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, 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."
+"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-"Mae eich cerdyn yn medru cael cefnogaeth cyflymu caledwedd 3D ond dim ond "
-"gyda XFree %s.\n"
-"SYLWER CEFNOGAETH ARBROFOL YW HWN AC FE ALL RHEWI EICH CYFRIFIADUR.\n"
-"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
-"mewn 2D."
+"Wedi newid math raniad %s, bydd yr holl ddata ar y rhaniad yn cael ei golli"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Arhoswch, gosod dewisiadau diogelwch..."
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose a partition"
+msgstr "Dewiswch raniad"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "Anhysbys|CPH05X (bt878) [nifer o werthwyr]"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose another partition"
+msgstr "Dewiswch raniad arall"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Cychwyn yr amgylchedd graffigol wrth gychwyn eich system"
+#: ../../diskdrake/interactive.pm_.c:202
+msgid "Exit"
+msgstr "Gadael"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr "bob awr"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
+msgstr "Cyffredinol > Arbennigwr"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
-msgstr "Bysell Alt dde"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
+msgstr "Arbennigwr > Cyffredinol"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " Ei adfer yn Llwyddiannus ar %s "
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "Dadwneud"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Gwneud porth argraffu ar gael ar gyfer CUPS..."
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "Parhau beth bynnag?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr "Antigua a Barbuda"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "Gorffen heb gadw"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"Mae !!! yn dangos bod y cyfrinair yng nghronfa ddata'r system yn\n"
-"wahanol i'r un yng ngronfa ddata'r Gwasanaethwr Terfynell.\n"
-"I fewngofnodi i'r Gwas.Terfynell dileu/ail ychwnaegu'r defnyddiwr."
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "Gorffen heb ysgrifennu'r tabl rhaniadau?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "Sbaenaidd"
+#: ../../diskdrake/interactive.pm_.c:257
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "Ydych eisiau cadw newidiadau /etc/fstab"
-#: ../../services.pm:1
-#, c-format
-msgid "Start"
-msgstr "Cychwyn"
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "Clirio i gyd"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
-msgstr "Mewngofnodi gwraidd uniongyrchol"
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
+msgstr "Awto ddynodi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring applications..."
-msgstr "Ffurfweddi'u rhaglenni"
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+msgid "More"
+msgstr "Rhagor"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"Croeso i'r Dewin Gosod Argraffydd\n"
-"\n"
-"Bydd y dewin yn eich cynorthwyo i osod argraffydd(ion) sydd wedi eu cysylltu "
-"â'r cyfrifiadur hwn,yn gysylltiedig â'r rhwydwaith neu i beiriant Windows "
-"pell.\n"
-"\n"
-"Os oes gennych argraffydd(ion) yn gysylltiedig â'r peiriant, cysylltwch nhw "
-"â'r peiriant a'u troi nhw mlaen fel bod modd awtoganfod. Hefyd rhaid i "
-"argraffydd(ion) rhwydwaith a'ch peiriannau Windows fod wedi eu cysylltu ac "
-"ymlaen.\n"
-"\n"
-"Sylwer bod awtoganfod argraffyddion ar rwydwaith yn cymryd mwy o amser nag "
-"awtoganfod argraffyddion sy'n gysylltiedig â'r peiriant hwn. Felly, "
-"diffoddwch awto ganfod rhwydwaith pan nad oes mo'i angen.\n"
-"\n"
-"Cliciwch \"Nesaf\" pan ydych yn barod, a \"Diddymu\" os nad ydych am osod "
-"eich argraffydd(ion) ar hyn o bryd."
+#: ../../diskdrake/interactive.pm_.c:278
+msgid "Hard drive information"
+msgstr "Gwybodaeth am y ddisg caled"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
-msgstr "Cysylltiad modem arferol"
+#: ../../diskdrake/interactive.pm_.c:310
+msgid "All primary partitions are used"
+msgstr "Mae pob rhaniad cynradd wedi ei ddefnyddio"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "File Selection"
-msgstr "Dewis ffeiliau"
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "Does dim modd ychwanegu raniadau ychwanegol"
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
+#: ../../diskdrake/interactive.pm_.c:312
+msgid ""
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
+msgstr "I gael mwy o raniadau, dilëwch un i greu rhaniad estynedig"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Dileu'r tâp cyn cadw wrth gefn"
+#: ../../diskdrake/interactive.pm_.c:322
+msgid "Save partition table"
+msgstr "Cadw'r tabl rhaniad"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
-msgstr "Rhedeg offeryn ffurfweddu"
+#: ../../diskdrake/interactive.pm_.c:323
+msgid "Restore partition table"
+msgstr "Adfer y tabl rhaniad"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "Gosodiad Bootloader"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
+msgstr "Achub y tabl rhaniadau"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Maint rhaniad gwraidd mewn MB :"
+#: ../../diskdrake/interactive.pm_.c:326
+msgid "Reload partition table"
+msgstr "Ail-lwytho'r tabl rhaniad"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Mae hwn yn becyn hanfodol, does dim modd ei ddad-ddewis"
+#: ../../diskdrake/interactive.pm_.c:331
+msgid "Removable media automounting"
+msgstr "Cyfrwng symudadwy'n awto-osod"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "Dewiswch ffeil"
+
+#: ../../diskdrake/interactive.pm_.c:347
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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
-" - Creu disgiau meddal/CD:\n"
-" \t\tMae angen delwedd ROM, disg meddal cychwyn neu CD ar y NIC\n"
-" \t\ti gychwyn. Bydd drakTermServ yn cynorthwyo i gynhyrchu'r "
-"delweddau hyn,\n"
-" \t\tyn seiliedig ar y NIC yn y peiriant cleient.\n"
-" \t\t\n"
-" \t\tEnghraifft o greu gyda llaw, disg meddal cychwyn ar gyfer 3Com "
-"3c509 :\n"
-" \t\t\n"
-" \tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"The backup partition table has not the same size\n"
+"Still continue?"
+msgstr ""
+"Nid yw'r tabl rhaniad wrth gefn yr un maint\n"
+"Parhau?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "%s yw'r ddelwedd ISO etherboot"
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "Rhybudd"
-#: ../../services.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:362
msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
-"mae'r enwyd (BIND) yn Wasanaethwr Enw Parth (DNS) sy'n cael ei ddefnyddio i "
-"gydrannu enwau gwestai i'r cyfeiriadau IP."
+"Rhowch ddisg meddal yn y gyrrwr\n"
+"Mi fydd yr holl wybodaeth ar y disg meddal yma yn cael ei golli"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr "Saint Lucia"
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
+msgstr "Yn ceisiio achub y tabl rhaniadau"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "Tachwedd"
+#: ../../diskdrake/interactive.pm_.c:379
+msgid "Detailed information"
+msgstr "Gwybodaeth fanwl"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
-msgstr "Datgysylltu..."
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "Newid maint"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Report"
-msgstr "Adroddiad"
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "Symud"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr "Palau"
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "Fformatio"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "lefel"
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "Ychwanegu i RAID"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr ""
-"Bydd pob digwyddiad yn cael ei archwilio gan arbenigwr technegol "
-"MandrakeSoft cymwysedig"
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "Ychwanegu i LVM"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "Dewis y Grwp Pecyn"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "Tynnu o RAID"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Caniatáu ffurfweddiad\n"
-"caledwedd lleol"
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "Tynnu o LVM"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Adfer drwy Protocol Rhwydwaith: %s"
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "Newid RAID"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr "Mae modd i chi ffurfweddu pob paramedr o'r modiwl yma"
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
+msgstr "Defnyddiwch ar gyfer cylchol"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Dewiswch y cydraniad a'r dyfnder lliw"
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "Creu rhaniad newydd"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
-msgstr "Efelychu'r trydydd botwm?"
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "Sector dechreuol: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "Maint mewn MB: "
+
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "Math o system ffeilio"
+
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Dewis"
+
+#: ../../diskdrake/interactive.pm_.c:481
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
@@ -3300,1896 +1862,1683 @@ msgstr ""
"(gan eich bod wedi cyrraedd y nifer uchaf o raniadau cynradd).\n"
"Diddymwch raniad cynradd a chreu rhaniad estynedig."
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr "Gosod"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Creu disg meddal awto gosod"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Install updates"
-msgstr "Diweddariadau"
+#: ../../diskdrake/interactive.pm_.c:511
+msgid "Remove the loopback file?"
+msgstr "Tynnu'r ffeil cylch-ôl?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
-msgstr "uchder blwch testun"
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "Newid math y rhaniad"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "State"
-msgstr "Stad"
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+msgid "Which filesystem do you want?"
+msgstr "Pa fath o system ffeil ydych chi eisiau?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Gwnewch yn siwr fod y deunydd ar gael ar gyfer y ddyfais %s"
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
+msgstr "Newid o ext2 i ext3"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Enable multiple profiles"
-msgstr "Galluogi aml-broffil"
+msgid "Where do you want to mount loopback file %s?"
+msgstr "Lle'r hoffech chi osod y ffeil cylch-ol %s?"
-#: ../../fs.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr ""
-"Peidio dehongli nod neu rwystro dyfeisiadau arbennig ar y system ffeil."
+msgid "Where do you want to mount device %s?"
+msgstr "Lle'r ydych am osod dyfais %s?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
-"Mae'r dewisiadau hyn yn medru cadw wrth gefn ac adfer pob ffeil yn eich "
-"cyfeiriadur /etc.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Local printer"
-msgstr "Argraffydd lleol"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Files Restored..."
-msgstr "Adferwyd ffeiliau..."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
-msgstr "Dewis pecynnau"
+"Methu dadsetio'r pwynt gosod gan fod y rhaniad yn cael ei ddefnyddio ar "
+"gyfer cylch-ôl\n"
+"Tynnu'r cylch-ôl yn gyntaf"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:606
#, c-format
-msgid "Mauritania"
-msgstr "Mauritania"
+msgid "Where do you want to mount %s?"
+msgstr "Lle'r ydych am osod %s?"
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
-"Medraf gadw eich ffurfweddiad cyfredol a chymryd eich bod eisoes wedi gosod "
-"gwasanaethwr DHCP. Os felly, dilyswch fy mod wedi darllen y rhwydwaith "
-"dosbarth C rydych yn ei ddefnyddio fel eich rhwydwaith lleol, yn gywir. Ni "
-"fyddaf yn ei newid na chyffwrdd â ffurfweddiad eich gwasanaethwr DHCP.\n"
-"\n"
-"Y cofnod DNS rhagosodedig yw'r enw gwasanaethwr storio sydd wedi ei "
-"ffurfweddu yn y mur cadarn. Mae modd i chi ei newid am eich IP DNS ISP, e."
-"e. \n"
-"\n"
-"Neu, medraf ail ffurfweddu eich rhag wyneb ac (ail)ffurfweddi gwasanaethwr "
-"DHCP ar eich cyfer.\n"
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "Cyfrifo ffiniau system ffeiliau FAT"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Heb ganfod argraffydd lleôl! I osod argraffydd gyda llaw, rhowch enw'r "
-"ddyfais /enw ffeil ar y llinell mewnbwn (Porth Paralel: /dev/lp0, /"
-"dev/,...., cyfatebol i LPT1:, LPT2,..., argraffydd USB 1af: /dev/usb/lp0, "
-"ail argraffydd USB: /dev/usb/lp1,...)."
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "Newid maint"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All primary partitions are used"
-msgstr "Mae pob rhaniad cynradd wedi ei ddefnyddio"
+#: ../../diskdrake/interactive.pm_.c:662
+msgid "This partition is not resizeable"
+msgstr "Nid oes modd newid maint y rhaniad"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "Gwasanaethwr LPD \"%s\", argraffydd \"%s\""
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
+msgstr "Dylai'r holl ddata ar y rhaniad gael ei gadw wrth gefn"
-#: ../../network/netconnect.pm:1
+#: ../../diskdrake/interactive.pm_.c:669
#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
+msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-"Wedi i hyn gael ei wneud rydym yn argymell eich bod yn a'i gychwyn "
-"amgylchedd X i osgoi unrhyw anawsterau'n perthyn i enwau gwesteiwr.\n"
-"."
+"Ar ôl newid maint rhaniad %s, bydd yr holl ddata ar y rhaniad yma yn cael ei "
+"golli"
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Canfod a ffurfweddu awtomatig caledwedd wrth gychwyn y cyfrifiadur."
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "Dewiswch y maint newydd"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation Server Configuration"
-msgstr "Ffurfweddiad Gwasanaethwr Gosod"
+#: ../../diskdrake/interactive.pm_.c:675
+msgid "New size in MB: "
+msgstr "Maint mewn MB: "
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "Ffurfweddu IDE"
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "Pa ddisg hoffech chi symud iddo?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Nid yw swyddogaethau'r rhwydwaith wedi ei ffurfweddu"
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "Sector"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Configure module"
-msgstr "Modd ffurfweddu"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "Pa sector hoffech chi symud ato?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "Ynysoedd Cocos (Keeling)"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "Symud"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Mi fydd angen i chi ailgychwyn cyn i'r newidiadau ddod i rym"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "Yn symud rhaniad.."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
-msgstr "Rhif ffôn y darparwr"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr "Dewis RAID presennol i ychwanegu ato"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Host %s"
-msgstr "Gwesteiwr %s"
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "newydd"
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
-msgstr "Ffiji"
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
+msgstr "Dewis LVM presennol i ychwanegu ato"
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
-msgstr "Armenia"
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
+msgstr "Enw LVM"
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "Ail ddisg meddal"
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
+msgstr "Niid oes modd defnyddio'r rhaniad ar gyfer cylch-ôl"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
-msgstr "Ynghylch Harddrake"
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
+msgstr "Cylch-ôl"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
-msgstr "Caniatáu cysylltiad TCP i XWindows"
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
+msgstr "Enw ffeil cylch-ôl"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr "Maint y gyrrwr"
+#: ../../diskdrake/interactive.pm_.c:831
+msgid "Give a file name"
+msgstr "Rhowch enw ffeil"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
msgstr ""
-"Rhowch ddisg meddal yn y gyrrwr\n"
-"Mi fydd yr holl wybodaeth ar y disg meddal yma yn cael ei golli"
+"Mae'r ffeil yn cael ei ddefnyddio eisoes gam gylch-ol arall, dewiswch un "
+"arall"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "Maint: %s"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
+msgstr "Mae'r ffeil yn bodoli eisoes. Defnyddiwch hwn?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Bysellau Control a Shift gyda'i gilydd"
+#: ../../diskdrake/interactive.pm_.c:858
+msgid "Mount options"
+msgstr "Dewisiadau gosod"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "secondary"
-msgstr "eilradd"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
+msgstr "Amrywiol"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Edrych ar Ffurfweddiad Cadw wrth Gefn"
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "dyfais"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr "os wedi ei osod i iawn, adrodd y gwirio i syslog."
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "lefel"
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "Dim cyfrinair"
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "maint darn"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nigeria"
-msgstr "Nigeria"
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
+msgstr "Byddwch ofalus: mae'r weithred hon yn beryglus."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: mae %s angen enw gwesteiwr...\n"
+#: ../../diskdrake/interactive.pm_.c:962
+msgid "What type of partitioning?"
+msgstr "Pa fath o raniad %s"
-#: ../../install_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:978
#, c-format
-msgid "There is no existing partition to use"
-msgstr "Nid oes rhaniad cyfredol i'w ddefnyddio"
+msgid "The package %s is needed. Install it?"
+msgstr "Rhaid cael pecyn %s. Ydych chi am ei osod?"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:992
msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
-"Mae argraffyddion canlynol\n"
-"\n"
-"%s\n"
-"ar gael ar eich system.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Dyfais amlbwrpas ar borth paralel #\"%s"
+"Nid oes modd dderbyn creu /boot mor bell o ddechrau'r disg (ar silindr > "
+"1024).\n"
+"Naill ai rydych yn defnyddio LILO ac nid yw'n gweithio oot neu byddwch yn "
+"defnyddio LILO ac ni fydd yn gweithio."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:996
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."
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-"I argraffu i argraffydd TCP neu soced, rhaid i chi ddarparu enw gwesteiwr "
-"neu IP'r argraffydd ac yn ddewisol rhif y porth (Y rhagosodedig yw 9100). Ar "
-"wasanaethwyr HP JetDirect rhif y porth, fel rheol, yw 9100, gall amrywio ar "
-"wasanaethwyr eraill. Gweler llawlyfr eich caledwedd"
+"Mae'r rhaniad rydych wedi dewis ychwanegu fel gwraidd (/) wedi'i leoli yn "
+"bellach na 1024ed silindr eich disg a nid oes gennych rhaniad /boot.\n"
+"Os ydych yn bwriadu defnyddio y rheolwr cychwyn LILO, fe ddylech greu "
+"rhaniad /boot"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Hard drive information"
-msgstr "Gwybodaeth am y ddisg caled"
+#: ../../diskdrake/interactive.pm_.c:1002
+msgid ""
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
+msgstr ""
+"Rydych wedi dewis meddalwedd rhannu RAID fel gwraidd (/)\n"
+"Nid oes llwythwr cychwyn yn medru trin hwn heb rhaniad /boot\n"
+"Cofiwch ychwanegu rhaniad /boot"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid "Russian"
-msgstr "Rwsiaidd"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "Mae tabl rhaniad gyrrwr %s yn mynd i gael ei ysgrifennu i'r ddisg!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Jordan"
-msgstr "Yr Iorddonen"
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
+msgstr "Mi fydd angen i chi aillgychwyn cyn i'r newidiadau ddod i rym"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1037
#, c-format
-msgid "Hide files"
-msgstr "Cuddio ffeiliau"
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr ""
+"Wedi fformatio rhaniad %s, bydd yr holl ddata ar y rhaniad yn cael ei golli"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Awto ganfod argraffyddion sy'n gysylltiedig a'r peiriant hwn"
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "Fformatio"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "Nid oes gyrrwr disg meddal ar gael"
+msgid "Formatting loopback file %s"
+msgstr "Yn fformatio ffeil cylch-ôl %s"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "Bolivia"
-msgstr "Bolivia"
+msgid "Formatting partition %s"
+msgstr "Yn fformatio rhaniad %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Gosod eich gwasanaethwr Windows i wneud yr argraffydd ar gael o dan brotocol "
-"IPP a gosod argraffu o'r peiriant hwn gyda'r \"%s\" yn Printerdrake.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Hide files"
+msgstr "Cuddio ffeiliau"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "Pecyn gwallus"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Move files to the new partition"
+msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: ../advertising/07-server.pl:1
+#: ../../diskdrake/interactive.pm_.c:1053
#, 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!"
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-"Trowch eich peiriant i fod yn wasanaethwr pwerus gydag ychydig gliciau ar "
-"eich llygoden: gwasanaethwyr gwe, e-bost, mur gwarchod, llwybrydd, "
-"gwasanaethwr ffeil ac argraffu..."
+"Mae cyfarwyddiadur %s eisoes yn cynnwys peth data\n"
+"(%s)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "DrakSec Basic Options"
-msgstr "Dewisiadau Sylfaenol DrakSec"
+#: ../../diskdrake/interactive.pm_.c:1064
+msgid "Moving files to the new partition"
+msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: ../../standalone/draksound:1
+#: ../../diskdrake/interactive.pm_.c:1068
#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Nodyn: os oes gennych gerdyn sain ISA PnP, bydd rhaid i chi ddefnyddio "
-"rhaglen sndconfig. Teipiwch \"sndconfig\" mewn consol."
+msgid "Copying %s"
+msgstr "Copïo %s"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1072
#, c-format
-msgid "Romania"
-msgstr "Rwmania"
+msgid "Removing %s"
+msgstr "Tynnu %s"
-#: ../../standalone/drakperm:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid "Group"
-msgstr "Grwp"
+msgid "partition %s is now known as %s"
+msgstr "Mae rhaniad %s yn cael ei alw'n %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Canada"
-msgstr "Canada"
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "Dyfais: "
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "choose device"
-msgstr "dewis dyfais"
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "Llythyren gyrrwr DOS: %s (dim ond dyfalu)\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from LVM"
-msgstr "Tynnu o LVM"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "Math: "
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Timezone"
-msgstr "Cylchfa amser"
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "Enw :"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "German"
-msgstr "Almaeneg"
+msgid "Start: sector %s\n"
+msgstr "Dechrau: sector %s\n"
-#: ../../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
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "Next ->"
-msgstr "Nesaf ->"
+msgid "Size: %s"
+msgstr "Maint: %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid ""
-"Turning on this allows to print plain text files in japanese language. Only "
-"use this function if you really want to print text in japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Drwy gychwyn hwn bydd yn caniatáu argraffu testun plaen yn yr iaith "
-"Siapanaeëg. Defnyddiwch hwn os ydych wir angen argraffu testun yn "
-"Siapanaeëg, oherwydd os ydych yn ei ddefnyddio ni fydd modd argraffu nodau "
-"acennog mewn ffontiau Lladin ragor ac ni fydd modd newid ymyl tudalen na "
-"maint ffontiau, ag ati. Mae hyn yn effeithio ar argraffyddion sydd wedi eu "
-"diffinio ar y cyfrifiadur hwn. Os ydych am argraffu testun Siapanaeëg ar "
-"argraffydd sy'n gysylltiedig â chyfrifiadur pell, bydd angen cychwyn y "
-"nodwedd ar y cyfrifiadur hwnnw."
+msgid ", %s sectors"
+msgstr ", %s sector"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Mwy na thebyd rhaniad Gyrrwr\n"
-"yw'r rhaniad hwn. Gwell gadael\n"
-"llonnydd iddo.\n"
+msgid "Cylinder %d to %d\n"
+msgstr "Silindr %d i silindr %d\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "Wedi ei fformatio\n"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Graddfa adfywio llorweddol"
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "Heb ei fformatio\n"
+
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
+msgstr "Gosodwyd\n"
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Edit"
-msgstr "Golygu"
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, c-format
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+"Loopback file(s):\n"
+" %s\n"
msgstr ""
-"Methu dadsetio'r pwynt gosod gan fod y rhaniad yn cael ei ddefnyddio ar "
-"gyfer cylch-ôl\n"
-"Tynnu'r cylch-ôl yn gyntaf"
+"Ffeil(iau) Cylch-ôl:\n"
+" %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1132
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\""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"Nid oes modd cychwyn y ffurfweddiad rhwydwaith wnaed yn ystod y gosodiad. "
-"Gwiriwch p'un ai yw'r rhwydwaith yn darparu mynediad ar ôl cychwyn eich "
-"system a chywiro'r ffurfweddiad gan ddefnyddio Canolfan Rheoli Mandrake, "
-"adran \"Rrhwydwaith a'r Rhyngrwyd\"/\"Cysylltiad\", ac yna gosod yr "
-"argraffydd, eto gan ddefnyddio Canolfan Rheoli Mandrake, adran \"Caledwedd\"/"
-"\"Argraffydd\""
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "USB controllers"
-msgstr "Rheolyddion USB"
+"Cychwyn y rhaniad fel rhagosodwyd\n"
+" (ar gyfer cychwyn MS-DOS, nid ar gyfer lilo)\n"
-#: ../../Xconfig/various.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "What norm is your TV using?"
-msgstr "Pa norm mae eich teledu'n ei ddefnyddio?"
+msgid "Level %s\n"
+msgstr "Lefel %s\n"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "Type:"
-msgstr "Math: "
+msgid "Chunk size %s\n"
+msgstr "Maint darn %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Share name"
-msgstr "Rhannu enw"
+msgid "RAID-disks %s\n"
+msgstr "Disg RAID %s\n"
-#: ../../standalone/drakgw:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "enable"
-msgstr "galluogi"
+msgid "Loopback file name: %s"
+msgstr "Enw ffeil cylch-ôl: %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-"Cysylltu â safle Mandrake Linux i estyn rhestr o'r drychau sydd ar gael"
+"\n"
+"Mwy na thebyd rhaniad Gyrrwr\n"
+"yw'r rhaniad hwn. Gwell gadael\n"
+"llonnydd iddo.\n"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"Digwyddodd gwall wrth ail gychwyn y rhwydwaith:\n"
"\n"
-"%s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove the loopback file?"
-msgstr "Tynnu'r ffeil cylch-ôl?"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Mae'r maint ddewiswyd yn fwy na'r lle ar gael"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP server name missing!"
-msgstr "Mae enw gwasanaethwr NCP ar goll!"
+"Mae'r rhaniad Bootstrap\n"
+"hwn ar gyfer cychwyniad\n"
+"dwbl eich system\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose your country."
-msgstr "Dewiswch eich gwlad."
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
+msgstr "Darllen yn unig"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Ffeiliau cadw wrth gefn y Disg Caled"
+msgid "Size: %s\n"
+msgstr "Maint: %s\n"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "Laotian"
-msgstr "Laotieg"
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Geometreg: %s silindr, %s pen, %s sector\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Samoa"
-msgstr "Samoa"
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
+msgstr "Gwybodaeth:"
-#: ../../services.pm:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Mae'r protocol rstat yn caniatáu i ddefnyddwyr rhwydwaith \n"
-"i adennill metric perfformaid unrhyw beiriant ar y rhwydwaith."
+msgid "LVM-disks %s\n"
+msgstr "Dias LVM %s\n"
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid "Re-generating list of configured scanners ..."
-msgstr "Ailgynhyrchu rhestr o sganwyr wedi eu ffurfweddu..."
+msgid "Partition table type: %s\n"
+msgstr "Tabl rhaniad math: %s\n"
-#: ../../modules/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1169
#, c-format
-msgid "Module configuration"
-msgstr "Ffurfweddiad modiwl"
+msgid "on channel %d id %d\n"
+msgstr "ar sianel %d id %d\n"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Scanner"
-msgstr "Sganiwr"
+#: ../../diskdrake/interactive.pm_.c:1199
+msgid "Filesystem encryption key"
+msgstr "Allwedd amgryptio system ffeil : "
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Rhybudd: gall profi'r cerdyn graffeg hwn rewi eich cyfrifiadur"
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
+msgstr "Dewiswch eich allwedd amgryptio system ffeiliau"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1203
#, c-format
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-"Rhaid i'r enw defnyddiwr gynnwys dim ond llythrennau bach, rhifau, '-' a '_'"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
+"Mae'r allwedd amgryptio'n rhy syml (mae'n rhaid bod o leiaf %d nod o hyd)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "Croeso i Crackers"
+#: ../../diskdrake/interactive.pm_.c:1204
+msgid "The encryption keys do not match"
+msgstr "Nid yw'r allweddi amgryptio'n cydfynd"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "Dewisiadau modiwl:"
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
+msgstr "Allwedd amgryptio"
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
-msgstr "Gwnewch eich rhwydwaith yn ddiogel gyda'r Multi Network Firewall"
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
+msgstr "Allwedd amgryptio (eto)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Mynd yn eich blaen heb ffurfweddu'r rhwydwaith"
+#: ../../diskdrake/removable.pm_.c:47
+msgid "Change type"
+msgstr "Newid y math"
-#: ../../network/isdn.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "Abort"
-msgstr "Peidio"
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+"Methu mewngofnodi gan ddefnyddio enw defnyddiwr %s (cyfrinair anghywir?)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "Dim cais am gyfrinair ar %s ym mhorth %s"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Angen Dilysu Parth"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse gydag efelychiad Olwyn"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Un arall"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Defnyddiwch o sganwyr pell"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Pa enw defnyddiwr"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
+"Please enter your username, password and domain name to access this host."
msgstr ""
-"Mae eich rhaniad Windows yn rhy ysgyriog, rhedwch \"defrag\" yn gyntaf o dan "
-"Windows ac yna ailgychwyn gosodi Mandrake Linux."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norwyaidd)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Cynnydd Disg Caled wrth Gefn..."
-
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Methu fforchio: %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "Math: "
+"Rhowch eich enw defnyddiwr, cyfrinair ac enw parth i gael mynediad i'r "
+"gwesteiwr."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Golygu Cleient"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+msgid "Username"
+msgstr "Enw defnyddiwr"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "no fonts found"
-msgstr "heb ganfod ffontiau"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Parth"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Mouse"
-msgstr "Llygoden"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+msgid "Search servers"
+msgstr "Chwiliwch am wasanaethwyr"
-#: ../../bootloader.pm:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "not enough room in /boot"
-msgstr "dim digon o le yn /boot"
+msgid "%s formatting of %s failed"
+msgstr "methodd fformatio %s o %s"
-#: ../../install_steps_gtk.pm:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "trying to promote %s"
-msgstr "ceisio hyrwyddo %s"
+msgid "I don't know how to format %s in type %s"
+msgstr "Nid wyf yn gwybod sut i fformatio %s ym math %s"
-#: ../../lang.pm:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
+msgid "mounting partition %s in directory %s failed"
+msgstr "methodd gosod rhaniad %s yng nghyfeiriadur %s"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid "Host name"
-msgstr "Enw gwesteiwr"
+msgid "error unmounting %s: %s"
+msgstr "gwall dadosod %s: %s"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the color of the progress bar"
-msgstr "lliw'r bar cynnydd"
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "syml"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Llethu ffeiliau Ffontiau"
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
+msgstr "gyda /usr"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to RAID"
-msgstr "Ychwanegu i RAID"
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "Gwasanaethwr"
-#: ../../help.pm:1
+#: ../../fsedit.pm_.c:240
#, c-format
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"
+"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"
-" * 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."
+"Do you agree to loose all the partitions?\n"
msgstr ""
-"Mae modd i chi gynnig cofnodion eraill ar gyfer yaboot, un ai systemau\n"
-"gweithredol eraill, cnewyll eraill, neu ddelwedd cychwyn argyfwng.\n"
-"\n"
-"Ar gyfer systemau gweithredu eraill, mae'r cofnod yn cynnwys label a'r\n"
-"rhaniad \"root \"yn unig\n"
-"\n"
-"Ar gyfer LInux, mae yna rhai dewisiadau:\n"
-"\n"
-" *Label:sef yr enw fyddwch yn ei deipio yn anogwr yaboot i ddewis ydewis "
-"cychwyn.\n"
-"\n"
-" *Image: hwn fydd enw'r cnewyllyn i'w gychwyn. Fel rheol, vimlinux neu\n"
-"amrywiad ohono gydag estyniad\n"
-"\n"
-" *Root: y ddyfais \"root\" neu \"/\" ar gyfer eich gosodiad Linux.\n"
-"\n"
-" *Append: ar galedwedd Apple, mae dewis atodi cnewyllyn yn cael ei\n"
-"ddefnyddio'n eithaf aml i gynorthwyo cychwyn caledwedd fideo neu i\n"
-"alluogi efelychiad o'r llygoden bysellfwrdd sydd ar goll ar yr ail a'r "
-"trydydd\n"
-"botwm llygoden llygod arferol Apple. Dyma rhai enghreifftiau:\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: mae modd defnyddio'r dewis hwn i un ai lwytho'r modiwlau "
-"cychwynnol,\n"
-" cydnabod y ddyfais cychwyn ar gael, neu i lwytho delwedd ramdisg ar gyfer\n"
-" cychwyn argyfwng.\n"
-"\n"
-" * Initrd-size: maint y ddelwedd ramdisg arferol yw 4,096bid. Os ydych "
-"angen\n"
-"dyrannu ramdisg mawr, mae modd defnyddio'r dewis hwn.\n"
-"\n"
-" * Read-write:fel rheol mae'r rhaniad \"root\" yn cael ei agor fel darllen "
-"yn unig, i\n"
-" ganiatáu gwiriad system ffeiliau cyn i'r system ddod yn \"fyw\". Yma mae "
-"fodd\n"
-" diystyru'r dewis hwn.\n"
-"\n"
-" * NoVideo: petai caledwedd Apple yn profi i fod yn peri anawsterau "
-"sylweddol,\n"
-" mae modd i chi ddewis cychwyn mewn modd \"novideo\", gyda chynhaliaeth\n"
-" ffrâm byffer cynhenid\n"
+"Nid wyf yn medru darllen tabl rhaniad %s, mae'n rhy lygredig. :(\n"
+"Mae modd i mi fynd ymlaen i ddiystyru rhaniadau gwael (Bydd yr\n"
+"HOLL DDATA'n cael ei golli!). Yr ateb arall yw peidio gadael i\n"
+"DrakX newid y tabl rhaniad. (y gwall yw %s)\n"
"\n"
-" * Default: dyma'r cyflwr rhagosodedig, dewiswch hwn drwy bwyso ENTER at\n"
-" anogwr yaboot. Bydd y cofnod hefyd wedi ei amlygu gyda \"*\", os wnewch "
-"chi\n"
-" bwyso ar [Tab] i weld dewisiadau'r cychwyn."
+"Ydych chi'n cytuno i golli'r holl raniadau?\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr ""
-"Mae argraffydd \"%s\" wedi ei ychwanegu'n llwyddiannus i Star Office/"
-"OpenOffice.org/GIMP."
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr "Does dim modd defnyddio JFS ar raniadau llai na 16MB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Does dim gyrrwr disg meddal ar gael!"
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "Does dim modd defnyddio ReiserFS ar gyfer rhaniadau llai na 32MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"I wybod am y dewisiadau sydd ar gael ar gyfer yr argraffydd, darllenwch un "
-"ai'r rhestr isod neu cliciwch ar y botwm \"Rhestr dewis argraffu\".%s%s%s\n"
-"\n"
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
+msgstr "Rhaid i bwyntiau gosod gynnwys / arweiniol"
-#: ../../lang.pm:1
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "Saudi Arabia"
-msgstr "Saudi Arabia"
+msgid "There is already a partition with mount point %s\n"
+msgstr "Mae yna eisoes raniad gyda phwynt gosod %s\n"
-#: ../../services.pm:1
+#: ../../fsedit.pm_.c:526
#, c-format
-msgid "Internet"
-msgstr "Rhyngrwyd"
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr "Does dim modd defnyddio Cyfrol Resymegol LVM ar gyfer pwynt gosod %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "Parhau beth bynnag?"
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
+msgstr "Dylai'r cyfeiriadur aros o fewn y system ffeilio gwraidd"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:530
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Nid yw eich argraffydd wedi ei rhestri, dewiswch un cyfatebol (gw. llawlyfr "
-"eich argraffydd) neu un tebyg."
+"Mae angen gwir system ffeilio (ext2, reiserfs, xfs, neu jfs)) ar gyfer y "
+"pwynt gosod\n"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:532
#, c-format
-msgid "Printer"
-msgstr "Argraffydd"
+msgid "You can't use an encrypted file system for mount point %s"
+msgstr "Nid oes modd defnyddio Cyfrol Resymegol LVM ar gyfer pwynt gosod %s"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices were added:\n"
-msgstr "Cafodd rhai dyfeisiau eu hychwanegu:\n"
+#: ../../fsedit.pm_.c:599
+msgid "Not enough free space for auto-allocating"
+msgstr "Nid oes digon o le ar gyfer awtoddynodi"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometreg: %s silindr, %s pen, %s sector\n"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
+msgstr "Dim i'w wneud"
-#: ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:694
#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Argraffu ar argraffydd \"%s\""
+msgid "Error opening %s for writing: %s"
+msgstr "Gwall wrth agos %s ar gyfer ysgrifennu %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
msgstr ""
-"Mae /etc/hosts.allow and /etc/hosts.deny wedi eu ffurfweddu - dim newid"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Tape"
-msgstr "Adfer o Dâp"
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
+msgstr "Dim gyrwyr eraill"
-#: ../../standalone/drakbug:1
+#: ../../harddrake/sound.pm_.c:171
#, 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's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-"I gyflwyno adroddiad gwall, cliciwch ar y botwm adroddiad. Bydd hyn yn agor "
-"ffenestr\n"
-"porwr gwe i Anthill lle bydd modd i chi drosglwyddo'r wybodaeth fel neges "
-"gwall."
+"Nid oes gyrrwr OSS/ALSA arall hysbys ar gyfer eich cerdyn sain (%s) sy'n "
+"defnyddio \"%s\" ar hyn o bryd"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the profile to configure"
-msgstr "Dewiswch broffil i'w ffurfweddu"
+#: ../../harddrake/sound.pm_.c:173
+msgid "Sound configuration"
+msgstr "Furfweddiad sain"
-#: ../../security/l10n.pm:1
+#: ../../harddrake/sound.pm_.c:174
#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
-msgstr "Hyd fyrraf cyfrinair a'r nifer o rifau a llythrennau mawr"
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
+msgstr ""
+"Yma medrwch ddewis gyrrwr arall (un ai OSS neu ALSA) ar gyfer eich cerdyn "
+"sain (%s)"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../harddrake/sound.pm_.c:176
#, c-format
msgid ""
"\n"
"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
"\n"
"\n"
-"Rhowch enw gwesteiwr Zeroconf heb ddot os nad ydych\n"
-"am ddefnyddio'r enw gwesteiwr rhagosodedig."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Cadwch wrth Gefn eich ffeiliau ffurfweddu"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr "Dylai enw'r pwyntiau gosod gynnwys llythrennau a rhifau'n unig"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Ailgychwyn system argraffu..."
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr ""
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "Gweler gwybodaeth am galedwedd"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
-msgstr "Diwrnod"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr "Adran gyntaf o'r rhaniad cychwyn"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Gwneuthurwr yr argraffydd, model"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
+"Mae eich cerdyn yn defnyddio'r gyrrwr %s\"%s\" ar hyn o bryd ( y gyrrwr "
+"arferol ar ei gyfer yw \"%s\")"
-#: ../../standalone.pm:1
-#, 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)"
-msgstr ""
-"[DEWISIADAU]...\n"
-"Ffurfweddwr Gwasanaethwr Terfynell Mandrake\n"
-"--enable : galluogi MTS\n"
-"--disable : analluogi MTS\n"
-"--start : cychwyn MTS\n"
-"--stop : atal MTS\n"
-"--adduser : ychwanegu defnyddiwr system presennol i MTS (angen enw "
-"defnyddiwr)\n"
-"--deluser : dileu defnyddiwr system presennol o MTS (angen enw "
-"defnyddiwr)\n"
-"--addclient : ychwanegu peiriant cleient i MTS (angen cyfeiriad MAC, "
-"IP, enw delwedd nbi)\n"
-"--delclient : dileu peiriant cleient i MTS (angen cyfeiriad MAC, IP, "
-"enw delwedd nbi)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Masg Isnet"
+#: ../../harddrake/sound.pm_.c:178
+msgid "Driver:"
+msgstr "Gyrrwr:"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Set password expiration and account inactivation delays"
-msgstr "Gosod terfyn cyfrinair ac oediad anactifiad cyfrif"
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+msgid "Help"
+msgstr "Cymorth"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr ""
-"_: mae llwytho'n enw yma, llwyth y system\n"
-"Llwyth"
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
+msgstr "Newid o gymorth ALSA i OSS"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
+#: ../../harddrake/sound.pm_.c:186
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"
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Y ddau baramedr pwysig yw'r raddfa adnewyddu fertigol, sef y raddfa mae'r\n"
-"holl sgrîn yn cael ei adnewyddu, ac yn fwyaf pwysig y raddfa cydamseru\n"
-"llorweddol, sef y raddfa mae'r llinellau sganio'n cael eu dangos.\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
-"Mae'n BWYSIG IAWN nad ydych yn enwi monitor gyda graddfa cydamseru\n"
-"sydd tu hwnt i allu eich monitor: mae modd difrodi eich monitor drwy wneud "
-"hynny.\n"
-"Os oes gennych amheuaeth, dewiswch raddfa is."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
-msgstr "Newid"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"It also provides a much higher API than OSS.\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"
+"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 ""
+"OSS (Open Sound System) oedd yr API sain cyntaf. Mae'n API sail annibynnol o "
+"systemau gweithredu ( mae ar gael ar gyfer y rhan fwyaf o systemau unices) "
+"on mae'n API elfennol iawn a chyfyng.\n"
+"Mae gyrwyr OSS hefyd yn ail ddyfeisio'r hyn sy'n bod eisoes.\n"
"\n"
-"Mae'r gorchmynion \"%s\" a \"%s\" hefyd yn caniatáu newid y gosodiadau dewis "
-"ar gyfer tasg argraffu penodol. Ychwanegwch y gosodiadau angenrheidiol i'r "
-"llinell gorchymyn, e.e \"%s <file>\".\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Angen enw gwesteiwr, enw defnyddiwr a chyfrinair"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Insert floppy"
-msgstr "Rhowch ddisg meddal"
+"Mae ALSA (Advanced Linux Sound Architecture) yn bensaerniaeth fodiwlaidd "
+"sy'n \n"
+"cynnal ystod eang o gardiau ISA, USB a PCI.\n"
+"\n"
+"Mae hefyd yn darparu API llawer uwch na OSS.\n"
+"\n"
+"I ddefnyddio alsa, mae modd defnyddio un ai:\n"
+"- hen api OSS cydweddus\n"
+"-api ALSA newydd sy'n darparu llawer o nodweddion gell ond sydd angen "
+"defnyddio llyfrgell ALSA.\n"
-#: ../../diskdrake/dav.pm:1
+#: ../../harddrake/sound.pm_.c:202
#, 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\"."
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-"Protocol yw WebDAV sy'n eich caniatáu i chi osod gwasanaethwr gwe'n lleol\n"
-"a'i drin fel system ffeilio lleol ( ar yr amod bod y gwasanaethwr lleol wedi "
-"ei\n"
-"ffurfweddi fel gwasanaethwr WebDAV). Os hoffech ychwanegu pwyntiau\n"
-"gosod WebDAV, dewiswch \"Newydd\""
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
-msgstr "newydd"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable syslog reports to console 12"
-msgstr "Galluogi/Analluogi adroddiadau syslog i gonsol 12"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Hoffech chi geisio eto?"
+"Mae'r hen yrrwr \"%s\" wedi ei wahardd.\n"
+"\n"
+"Mae'n effeithio'n andwyol ar y cnewyllyn\n"
+"\n"
+"Bydd y gyrrwr \"%s|\"'n cael ei ddefnyddio ar y cychwyn"
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "Dewin"
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+msgid "Please Wait... Applying the configuration"
+msgstr "Arhoswch...Gosod y ffurfweddiad"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected server"
-msgstr "Golygu'r gwesteiwr"
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "Arhoswch"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Dewiswch i le rydych am gadw ffeiliau wrth gefn"
+#: ../../harddrake/sound.pm_.c:210
+msgid "No known driver"
+msgstr "Dim gyrrwr hysbys"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Bydd angen i chi ail gychwyn cyn i'r newidiadau yn eich tabl rhaniad ddigwydd"
+msgid "There's no known driver for your sound card (%s)"
+msgstr "Nid oes gyrrwr hysbys ar gyfer eich cerdyn sain (%s)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Peidio cynnwys storfa'r porwr"
+#: ../../harddrake/sound.pm_.c:214
+msgid "Unkown driver"
+msgstr "Gyrrwr anhysbys"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, c-format
msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-"Wedi methu gwirio system ffeiliau %s. Hoffech chi drwsio'r gwallau? (gofal, "
-"mae modd colli data)"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Dewiswch gynllun allweddell"
-
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "Safonol"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Dewiswch fath eich llygoden"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
-msgstr "Cysylltu..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Methu ffurfweddu argraffydd \"%s\"!"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "not configured"
-msgstr "heb ffurfweddu"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "About"
-msgstr "Ynghylch"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "Ffurfweddiad dirprwyon"
+"Nid yw'r gyrrwr \"%s\" wedi ei restri\n"
+"\n"
+"Gyrrwch allbwn gorchymyn \"lspcidrake -v\" i\n"
+"<install at mandrakesoft dot com>\n"
+"o dan bennawd: unlisted sound drivers \"%s\""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Dechrau: sector %s\n"
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+msgid "Auto-detect"
+msgstr "Awtoganfod"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Mask"
-msgstr "Dim Mask"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+msgid "Unknown|Generic"
+msgstr "Anhysbys|Generig"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface already configured"
-msgstr "Mae rhag wyneb y rhwydwaith wedi ei ffurfweddu eisoes"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Anhysbys|CPH05X (bt878) [nifer o werthwyr]"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
-msgstr "Methu cael mynediad i'r disg meddal!"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Anhysbys|CPH06X (bt878) [nifer o werthwyr]"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
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."
+"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 ""
-"Rhbudd: Mae'n bosibl nad yw Meddalwedd Rhad yn rhydd o batent, ac mae\n"
-"peth Meddalwedd Rhad wedi ei gyfyngu â phantent yn eich gwlad, e.e gall\n"
-"amgodwyr MP3 fod angen trwydded ar gyfer defnydd pellach\n"
-"(gw. http://www.mp3licensing.com am wybodaeth bellach. Os nad ydych yn\n"
-"siwr os yw'r patent yn berthnasol i chi, gwiriwch eich cyfreithiau lleol."
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Mail Server"
-msgstr "Gwasanaethwr E-bost"
+"Ar gyfer y rhelyw o gardiau Teledu diweddar, mae'r modiwl bttv o'r cnewyllyn "
+"yn awto ganfod y paramedrau cywir.\n"
+"Os yw'ch cerdyn yn cael ei ganfod ar gam, mae modd gorfodi'r mathau cywir o "
+"gerdyn a rheolydd,\n"
+"Dewiswch baramedrau eich cerdyn teledu os oes raid"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "Cliciwch ar raniad"
+#: ../../harddrake/v4l.pm_.c:227
+msgid "Card model:"
+msgstr "Model cerdyn:"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Dyfais amlbwrpas ar HP JetDirect"
+#: ../../harddrake/v4l.pm_.c:228
+msgid "Tuner type:"
+msgstr "Math o diwniwr"
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linux"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
+msgstr "Nifer o fyffers cipio:"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
-msgstr "Diwrnod da i chi!"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "nifer o fyffers cipio ar gyfer cipio mmap"
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
+#: ../../harddrake/v4l.pm_.c:231
+msgid "PLL setting:"
+msgstr "Gosodiad PLL:"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Upgrade %s"
-msgstr "Diweddaru %s"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
+msgstr "Cynnal radio:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Dewiswch Gysylltiad Argraffydd"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
+msgstr "galluogi cynnal radio"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
-msgstr "Wrthi'n sganio am sianeli Teledu ..."
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+"Mae GNU/Linux yn system aml-ddefnyddiwr, ac mae hyn yn golygu bod pob\n"
+"defyddiwr yn medru cael ei ddewisiadau ei hun, ei ffeiliau ei hun ac yn y "
+"blaen.\n"
+"Gallwch ddarllen yr \"User Guide\" i ddysgu mwy. Ond yn anhebyg i \"gwraidd"
+"\", sef\n"
+"y gweinyddwr, ni fydd modd i'r defnyddiwr fyddwch yn eu creu yma'n medru\n"
+"newid dim ond eu ffeiliau a'u ffurfweddiad ei hun. Bydd rhaid i chi greu un\n"
+"defnyddiwr cyffredin ar gyfer chi eich hun. Dyma'r cyfrif ddylech "
+"mewngofnodi\n"
+"iddo ar gyfer defnydd bob dydd. Er ei fod yn ymarferol iawn i fewngofnodi "
+"fel\n"
+"\"root\" gall fod yn beryglus iawn!. Gall y camgymeriad lleiaf olygu nad yw "
+"eic\n"
+"system yn gweithio ragor. Os wnewch chi gamgymeriad mawr fel defnyddiwr\n"
+"cyffredin, byddwch ond yn colli rhywfaint o wybodaeth, ac nid y system "
+"gyfan.\n"
+"Yn gyntaf rhowch eich enw go iawn. Dose dim rhaid, wrth gwrs - mae modd\n"
+"i chi rhoi beth bynnag hoffech chi. Bydd DraX yn cymryd yr enw cyntafa'i roi "
+"yn\n"
+"yr \"Enw defnyddiwr\" Dyma'r enw bydd y defnyddwr hwn yn ei ddefnyddio i\n"
+"fewngofnodi i'r system. Mae modd ei newid. Yna rhowch gyfrinair. Nid yw\n"
+"cyfrianair defnyddiwr cyffredin mor bwysig ag un \"gwraidd\" o safbwynt "
+"diogelwch\n"
+"ond nid yw hynny'n rheswm i'w esgeuluso - wedi'r cyfan mae eich ffeiliau "
+"mewn\n"
+"perygl\n"
+"\n"
+"Os wnewch chi glicio \"Derbyn Defnyddiwr\", bydd modd ychwanegu fanint\n"
+"fynnoch. Ychwanegwch ddefnyddiwr ar gyfer pob un o'ch ffrindiau: eich tad\n"
+"neu eich chwaer, e.e. Ao ôl ychwanegu'r holl ddefnyddwyr, cliciwch \"Gorffen"
+"\".\n"
+"\n"
+"Bydd clicio'r botwm \"Uwch\" yn caniatáu i chi newid y \"gragen\" "
+"rhagosodedig\n"
+"ar gyfer y defnyddiwr hwnnw (bash yw'r rhagosodedig)."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:48
msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/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 ""
-"Gwall wrth anfon ffeil drwy FTP.\n"
-" Cywirwch eich ffurfweddiad FTP."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr "Cychwyn Amrediad IP:"
+"Dyma'r rhaniadau Linux sydd wedi canfod ar eich disg caled\n"
+"Gallwch gadw'r dewisiadau sydd wedi eu gwneud gan y dewin, mae'n nhw'n iawn\n"
+"ar gyfer y rhan fwyaf o osodiadau. Os ydych am wneud newidiadau, rhaid i chi "
+"ol eiaf\n"
+"ddiffinio rhaniad gwraidd (\"/\"). Peidiwch dewis rhaniad sy'n rhy fach neu "
+"fyddwch\n"
+"yn methu llwytho digon o feddalwedd. Os hoffech gadw eich data ar raniad "
+"arall,\n"
+"bydd angen i chi greu rhaniad ar gyfer \"/home\"( ond dim ond os oes mwy nag "
+"un\n"
+"rhaniad Linux ar gael)\n"
+"Mae pob rhaniad yn cael ei restri fel hyn: \"Enw\", \"Maint\".\n"
+"\n"
+"Mae \"Enw\" yn cael ei drefnu: \"math o ddisg caled\", rhif y disg caled\",\n"
+"\"rhif rhaniad\" (e.e, \"hda1\").\n"
+"\n"
+"\"Math o ddisg caled\" yw \"hdos mai disg caled IDE sydd gennych a\n"
+"\"sd\" os mai SCSI yw'r disg caled.\n"
+"\n"
+"Mae \"Rhif Disg Caled\" yn llythyren ar ôl \"hd\" neu \"sd\". Ar gyfer\n"
+"disg caled IDE mae:\n"
+"\n"
+" * \"a\" yn golygu \"prif ddisg caled ar y rheolwr IDE cyntaf\",\n"
+"\n"
+" * \"b\" yn golygu \"disg caled gwas ar y rheolwr IDE cyntaf\",\n"
+"\n"
+" * \"c\" yn golygu \"prif ddisg caled ar yr ail reolwr IDE\",\n"
+"\n"
+" * \"d\" yn golygu \"disg caled gwas ar yr ail reolwr IDE\".\n"
+"\n"
+"Gyda disgiau caled SCSI, mae \"a\" yn golygu \"ID SCSI isaf \", a \"b\" yn "
+"golygu\n"
+"\"ID SCSI ail isaf\", ag ati."
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:79
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."
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
-"Mae daemon uwchwasanaethwr rhyngrwyd (inetd) yn cychwyn nifer\n"
-"o wasanaethau rhyngrwyd eraill, yn ôl y galw. Mae'n gyfrifol am gychwyn\n"
-"nifer o wasanaethau, gan gynnwys telnet, ftp, rsh a rlogin. Mae analluogi \n"
-"inetd yn analluogi'r holl wasanaethau mae'n gyfrifol amdanynt."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
-msgstr "uchder y bar cynnydd"
+"Mae gosodiad Mandrake Linux ar gael ar draws nifer o CD-ROMau. Mae DrakX\n"
+"yn gwybod os yw pecyn penodol wedi ei leoli ar CD-ROM arall a bydd yn bwrw\n"
+"allan y CD cyfredol a gofyn am y llall."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:84
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"
+"you are not supposed to know them all by heart.\n"
"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
"\n"
-"- Cadw drwy %s ar westeiwr: %s\n"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "Yr Ariannin"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Domain Name Server"
-msgstr "Gwasanaethwr Enw Parth"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Level:"
-msgstr "Lefel diogelwch:"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr "Rhaid i bwyntiau gosod gynnwys / arweiniol"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Dewiswch eich dyfais CD/DVD"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "CUPS server"
-msgstr "Gwasanaethwr CUPS"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Gwasanaethwr E-bost Postfix"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "Gorffen heb gadw"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "Yemen"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
-msgstr "Mae'r cynnyrch ar gael ar safle gwe MandrakeStore"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Mae yna lawer i ddewis o (%s).\n"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "GMT - DrakClock"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
-"%s\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
+"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
+"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
"\n"
-"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"
+"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 (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
"\n"
-"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."
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
+"Mae'n amser penderfynu pa raglenni rydych am eu gosod ar eich\n"
+"system. Mae yna filoedd o becynnau ar gael ar gyfer Mandrake Linux, ond\n"
+"does dim disgwyl i chi wybod amdanyn nhw i gyd.\n"
+"\n"
+"Os ydych chi'n gwneud gosodiad safonol o'r CD-ROM, bydd gofyn i chi\n"
+"ddweud pa CDau sydd gennych. Gwiriwch labeli'r CDau ac amlygu'r blychau\n"
+"sy'n cyfateb i'r CDau sydd gennych ar gyfer y gosodiad. Cliciwch \"Iawn\"\n"
+"pan ydych yn barod i barhau.\n"
+"\n"
+"Mae'r pecynnau wedi eu didoli yn grwpiau sy'n cyfateb i ddefnydd penodol\n"
+"ar eich peiriant. Mae'r grwpiau wedi eu rhannu yn bedair adran:\n"
+"\n"
+" * \"Man Gwaith\": os ydych yn bwriadu defnyddio eich peiriant fel man\n"
+"gwaith yna dewiswch un o'r grwpiau cyfatebol.\n"
+"\n"
+" * \"Datblygiadol\": os yw'r peiriant yn cael ei ddefnyddio i raglenni, "
+"dewiswch\n"
+" y grwpiau perthnasol\n"
+"\n"
+" * \"Gwasanaethwr\": os ydych am i'r peiriant gael ei ddefnyddio fel\n"
+"gwasanaethwr bydd modd i chi ddewis y gwasanaethau cyffredin rydych am\n"
+"eu cael ar eich peiriant.\n"
+"\n"
+" * \"Amgylchedd Graffigol\": dyma'r lle i ddewis eich amgylchedd graffigol.\n"
+"Rhaid dewis o leiaf un er mwyn cael man gwaith graffigol!\n"
+"\n"
+"Bydd symud cyrchwr y llygoden dros enw grwp yn amlygu esboniad byr am y\n"
+"grwp hwnnw. Os ydych wedi dad-ddewis pob grwp wrth wneud gosodiad\n"
+"arferol ac nid uwchraddiad), bydd dialog yn ymddangos a chynnig\n"
+"dewisiadau amrywiol ar gyfer y gosodiad lleiaf\n"
+"\n"
+" * \"Gyda X\" Gosod y nifer lleiaf o becynnau i gael penbwrdd graffigol\n"
+"i weithio.\n"
+"\n"
+" * \"Gyda dogfennaeth elfennol\" Gosod y system sylfaenol yn ogystal\n"
+"a gwasanaethau elfennol a'u dogfennau. Mae'r gosodiad hwn yn addas\n"
+"ar gyfer gosod gwasanaethwr.\n"
+"\n"
+" * \"Gosodiad bychan iawn\" Gosod y lleiafswm posibl i greu system Linux\n"
+"llinell orchymyn weithredol. Tua 65MB o faint.\n"
+"\n"
+"Mae clicio blwch \"Dewis pecynnau unigol\". yn ddefnyddiol os ydych\n"
+"yn gyfarwydd gyda'r pecynnau sy'n cael eu cynnig neu os ydych eisiau\n"
+"rheolaeth lwyr dros yr hyn sy'n cael ei osod\n"
+"\n"
+"Os ydych wedi cychwyn y gosodiad ym modd \"Diweddaru\", bydd modd i\n"
+" chi ddad-ddewis pob grwp er mwyn osgoi gosod unrhyw becyn newydd.\n"
+"Mae hyn yn ddefnyddiol ar gyfer trwsio neu ddiweddaru system sy'n bod "
+"eisoes.\n"
+" "
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "Canfod disg caled"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../help.pm_.c:135
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
msgstr ""
-"Nid ydych wedi dewis unrhyw grwpiau o becynnau.\n"
-"Dewiswch y gosodiad lleiaf rydych ei eisiau"
+"Yn olaf, yn dibynnu ar eich dewis o becynnau unigol, bydd coeden yn cynnwys\n"
+"yr holl becynnau wedi eu dosbarthu yn ôl grwp ac is grwp. Wrth bori'r "
+"goeden,\n"
+"gallwch ddewis grwp cyfan, isgrwp neu becyn unigol.\n"
+"\n"
+"Pryd bynnag fyddwch wedi dewis pecyn ar y goeden, bydd disgrifiad yn\n"
+"ymddangos ar y dde. Pan fyddwch wedi gorffen dewis , cliciwch y botwm\n"
+" \"Gosod\" fydd yn cychwyn y drefn osod. Gan ddibynnu ar gyflymder eich\n"
+"caledwedd a'r nifer o becynnau i'w gosod, gall gymryd peth amser i'w "
+"gwblhau.\n"
+"Bydd amser tan orffen yn cael ei ddangos ar y sgrin er mwyn i chi weld a "
+"oes\n"
+"amser i wneud paned!\n"
+"\n"
+"!! Os oes pecyn gwasanaethwr wedi ei ddewis yn fwriadol neu am ei fod yn "
+"rhan\n"
+"o grwp cyfan, bydd angen i chi gadarnhau eich bod eisiau i'r gwasanaethwyr\n"
+"gael eu gosod. Ym Mandrake Linux mae unrhyw wasanaethwr sydd wedi ei\n"
+"osod yn cael ei gychwyn fel rhagosodiad wrth gychwyn. Hyd yn oed os ydynt\n"
+"yn ddiogel a doedd dim materion pryder pan gafodd y dosbarthiad ei ryddhau,\n"
+"mae'n bosibl i fylchau diogelwch gael eu darganfod wedi i'r fersiwn hwn o\n"
+"Mandrake Linux gael ei gwblhau. Os nad ydych yn gwybod beth mae\n"
+"gwasanaeth arbennig i fod i'w wneud na pham mae wedi ei osod, yna cliciwch\n"
+"\"Na\". Bydd clicio \"Iawn\" yn gosod y gwasanaethau hynny a byddant yn\n"
+"cael eu cychwyn yn ddiofyn drwy ragosodiad!!\n"
+"\n"
+"Mae'r dewis \"Dibyniad Awtomatig\"yn analluogi'r deialog rhybudd sy'n\n"
+"ymddangos bob tro fydd y gosodwr yn dewis pecyn yn awtomatig.\n"
+"Mae hyn yn digwydd am ei fod wedi penderfynu ei fod angen bodloni\n"
+"dibyniad gyda phecyn arall er mwyn cwblhau'r gosodiad yn llwyddiannus\n"
+"\n"
+"Mae'r eicon disg medal bychan ar waelod y rhestr yn caniatáu llwytho'r\n"
+"rhestr pecynnau dewiswyd yn ystod gosodiad blaenorol. Bydd clicio\n"
+"ar yr eicon hwn yn gofyn i chi osod yn y peiriant disg meddal grëwyd ar\n"
+"ddiwedd gosodiad arall. Gwelwch yr ail neges o'r cam diwethaf ar sut i\n"
+"greu disg meddal o'r fath."
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../help.pm_.c:171
msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-"Rhaid cael meicrocod Alcatel.\n"
-"Mae modd ei ddarparu ar ddisg meddal neu o'ch rhaniad windows,\n"
-"neu ei adael tan rhywbryd eto."
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "Rhowch URL gwasanaethwr WebDAV"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "Tajikistan"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "Derbyn"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "Disgrifiad"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter summary text."
-msgstr "Rhowch destun crynodeb yma."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Gwall wrth agos %s ar gyfer ysgrifennu %s"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Math o lygoden: %s\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "Dewiswch fonitor"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "Nid yw label wag yn cael ei chaniatáu"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
-msgstr "Malteg (DU)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "Does dim modd ychwanegu raniadau ychwanegol"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "Maint mewn MB: "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "Argraffydd pell"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
-msgstr "Dewiswch iaith i'w defnyddio."
+"Dyma eich cyfle i gysylltu gyda'r rhyngrwyd/rhwydwaith.Os hoffech chi\n"
+"gysylltu eich cyfrifiadur i'r Rhyngrwyd neu i rwydwaith lleol, cliciwch\n"
+"\"Iawn\" . Bydd awtoganfod dyfeisiadan rhwwydwaith a modem yn\n"
+"cychwyn. Os yw'r canfod yn methu, dad-diciwch y blwch \"Defnyddiwch\n"
+"awto ganfod\" y tro nesaf. Mae gennych y dewis i beidio ffurfweddi eich\n"
+"rhwydwaith, neu i'w wneud rhywbryd eto. Os fell, cliciwch y botwm \"Diddymu"
+"\".\n"
+"\n"
+"Cysylltiadau posib: modem traddodiadol,modem IDSN, cyswllt ADSL,\n"
+"modem cable ac yn olaf cyswllt LAN syml (Ethernet).\n"
+"\n"
+"Byddwn ni ddim yn mynd i fanylion y ffurfweddiad yma. Gwnewch yn siwr\n"
+"fod gennych yr holl fanylion gan eich darparwr gwasanaeth rhyngrwyd (ISP)\n"
+"neu weinyddwr system\n"
+"\n"
+"Mae modd i chi edrych ar bennawd yn y llawlyfr ar gyswllt a'r Rhyngrwyd am\n"
+"fanylion ffurfweddiad, neu aros nes i'ch system gael ei osod a defnyddio'r\n"
+"rhaglen sydd yno i ffurfweddu eich cyswllt.\n"
+"\n"
+"Os ydych am ffurfweddu eich rhwydwaith yn hwyrach ar ôl y gosodiad neu\n"
+"os ydych wedi gorffen ffurfweddi eich cyswllt a'r rhwydwaith, yna cliciwch\n"
+"\" Diddymu.\"."
-#: ../../network/network.pm:1
-#, c-format
+#: ../../help.pm_.c:193
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."
+"You may now choose which services you wish to start at boot time.\n"
+"\n"
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
+"\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
-"Rhybudd!! Cafodd y ddyfais hon ei ffurfweddu o'r blaen i gysylltu â'r "
-"Rhyngrwyd.\n"
-"Derbyniwch y cynnig i gadw'r ddyfais wedi ei ffurfweddi.\n"
-"Bydd newid y meysydd islaw'n newid y ffurfweddiad."
-
-#: ../../any.pm:1
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
-msgstr "Mewngofnodi'n awtomatig ar gyfer un defnyddiwr."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Floppy format"
-msgstr "Fformatio disg meddal"
+"Mae modd i chi ddewis pa wasanaethau rydych am eu cychwyn\n"
+"wrth gychwyn eich cyfrifiadur.\n"
+"\n"
+"Dyma'r holl wasanaethau sydd ar gael gyda'r gosodiad cyfredol. Darllenwch\n"
+"y rhestr yn ofalus a dad-diciwch y rhai nad oes eu hangen bob tro wrth "
+"gychwyn.\n"
+"\n"
+"Mae modd cael esboniad byr am wasanaeth wrth eu dewis. Ond, os nad ydych\n"
+"yn siwr a yw'r gwasanaeth o werth neu beidio, mae'n well cadw at y drefn\n"
+"rhagosodedig\n"
+"\n"
+"!!Mae angen i chi fod yn ofalus iawn os ydych am ddefnyddio eich peiriant\n"
+"fel gwasanaethwr: mwy na thebyg na fyddwch eisiau cychwyn unrhyw\n"
+"wasanaethau nad oes eu hangen. Cofiwch fod cael nifer o wasanaethau\n"
+"wedi eu galluogi ar y gwasanaethwr, fod yn beryglus. Yn gyffredinol,\n"
+"mae'n well dewis dim ond y gwasanaethau mae'n rhaid eu cael.\n"
+"!!"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Generic Printers"
-msgstr "Argraffyddion Generig"
+#: ../../help.pm_.c:210
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
+msgstr ""
+"Mae gGNU/Linux yn rheoli amser drwy GMT (Greenwich Mean Time)\n"
+"a'idrosi i amser lleol yn ôl y parth amser rycych wedi ei ddewis.\n"
+"Mae'n bosib dad-ddewis hyn drwy dad-ddewis \"Cloc caledwedd wedi ei osod i "
+"GMT\"\n"
+"fel bod y cloc caledwedd yr un a chloc y system yr un peth. Mae hyn yn\n"
+"ddefnyddiol pan mae'r peiriant yn westai i system arall megis Windows.\n"
+"\n"
+"Bydd y dewis \"Cydamseriad amse awtomatig\" yn rheoli'r cloc yn awtomatig\n"
+"drwy gysylltu â gwasanaethwr amser ar y Rhyngrwyd. Yn y rhestr sy'n cael ei\n"
+"gynnig dewiswch yr agosaf atoch. Rhaid i'ch cyswllt â'r we fod yn gweithio\n"
+"i hyn ddigwydd. Bydd yn gosod ar eich peiriant wasanaethwr amser fydd\n"
+"o ddewis yn medru cael ei ddefnyddio gan beiriannau eraill ar eich "
+"rhwydwaith."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:224
msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
+"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.\n"
+"\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
+msgstr ""
+"X (am X Window System) yw calon rhag wyneb graffigol GNU/Linux\n"
+"y mae pob amgylchedd graffig megis KDE, Gnome, AfterStep\n"
+"WindowMaker ag ati, sydd o fewn Mandrake Linux, yn dibynnu. Yn yr\n"
+"adran hon bydd DrakX yn ceisio ffurfweddu X yn awtomatig.\n"
+"\n"
+"Mae'n anarferol iddo fethu oni bai bod y caledwedd yn hen iawn (neu yn\n"
+"newydd iawn). Os yw'n llwyddo, bydd yn cychwyn X ar y X cydraniad\n"
+"gorau posibl yn ddibynnol ar faint y monitor. Bydd ffenestr yn ymddangos\n"
+"gan ofyn os ydych yn ei weld.\n"
+"\n"
+"Os ydych yn gwneud gosodiad \"Arbenigwr\", byddwch yn defnyddio'r \n"
+"dewin ffurfweddu X. Gwelwch yr adran gyfatebol o'r llawlyfr am ragor o\n"
+"wybodaeth am y dewin.\n"
+"\n"
+"Os ydych yn medru gweld y neges ac ateb \"Iawn\", yna bydd DrakX yn\n"
+"mynd ymlaen i'r cam nesaf. Os nad ydych yn gweld y neges mae'n golygu\n"
+"bod y ffurfweddiad yn anghywir a daw i ben ymhen 10 eiliad, gan adfer y "
+"sgrin."
+
+#: ../../help.pm_.c:246
+msgid ""
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
+msgstr ""
+"Yn y diwedd bydd gofyn i chi ddewis os ydych am weld rhyngwyneb graffig\n"
+"wrth gychwyn y cyfrifiadur. Sylwch y bydd y cwestiwn hwn yn cael ei ofyn\n"
+"hyd yn oed os nad ydych yn dewis profi'r ffurfweddiad. Yn amlwg, byddwch\n"
+"am ateb \"Na\" os yw eich peiriant i weithredu fel gwasanaethwr, neu os\n"
+"nad oeddech yn llwyddiannus yn cael eich dangosydd i ffurfweddu'n gywir.."
+
+#: ../../help.pm_.c:253
+msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
+msgstr ""
+"Mae gan yr CD-ROM Mandrake Linux modd achub. Gallwch ei gyrraedd drwy\n"
+"gychwyn y peiriant o'r CD-ROM, gwasgu'r fysell >>F1<< o'r cychwyn a theipio\n"
+" >>rescue<<wrth yr anogwr. Ond os nad yw eich cyfrifiadur yn medru cychwyn\n"
+"drwy'r CD-ROM dylech ddod yn ôl i'r cam hwn am gymorth mewn o leiaf dwy "
+"sefyllfa:\n"
+"\n"
+" *wrth lwytho'r llwythwr cychwyn, bydd DrakX yn ailysgrifennu'r adran bwtio "
+"[MBR]\n"
+"ar eich prif ddisg [oni bai eich bod yn defnyddio rheolwr cychwyn arall] fel "
+"eich bod\n"
+"yn medru cychwyn yn Windows neu GNU/Linux [gan gymryd bod gennych Windows\n"
+"ar eich system]. Os fyddwch angen ailosod Windows, bydd proses osod "
+"Microsoft yn\n"
+"ail ysgrifennu'r adran bwtio, ac felly ni fydd modd i chi gychwyn GNU/"
+"Linux!\n"
+"\n"
+" * os oes anhawster yn codi ac nid ydych yn medru cychwyn GNU/Linux o'r "
+"ddisg\n"
+"caled, y ddisg feddal fydd yr unig ffordd i gychwyn GNU/Linux.Mae'n cynnwys\n"
+"nifer dda o offer i adfer y system, gwall teipio anffodus, camdeipio "
+"cyfrinair neu\n"
+"rhesymau eraill\n"
+"\n"
+"Pan fyddwch yn clicio ar y cam hwn, bydd gofyn i chi rhoi disg meddal yn y "
+"gyrrwr.\n"
+"Rhaid i'r ddisg fod yn wag neu fod dim gwahaniaeth colli'r data arno.Does "
+"dim\n"
+"angen ei fformatio gan y bydd DrakX yn ailysgrifennu'r holl ddisg."
+
+#: ../../help.pm_.c:277
+msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft 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"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
+"\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
msgstr ""
-"Dewiswch yr argraffydd i drin y gwaith argraffu neu rhowch enw dyfais/ffeil "
-"ar y llinell mewnbwn"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr "Mae' sganwyr y cyfrifiadur hwn ar gael ar gyfer rhai eraill"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of the root partition"
-msgstr "Adran gyntaf o'r rhaniad gwraidd"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Alternative drivers"
-msgstr "Gyrwyr eraill"
+"Yn awr mae angen i chi ddewis lle ar eich disg caled i osod eich\n"
+"system weithredu Linux Mandrake. Os yw eich disg caled yn wag neu\n"
+"os oes yna system weithredol eisoes yn cymryd yr holl le sydd ar gael,\n"
+"bydd angen i chi greu rhaniadau arno.Yn y bon, mae rhannu disg caled\n"
+"yn golygu ei rhannu'n rhesymegol i greu lle i osod eich system Mandrake\n"
+"Linux newydd.\n"
+"\n"
+"Gan bo effaith y broses rannu'n ddidroi nôl gall creu rhaniadau fod yn "
+"broses\n"
+"bygythiol a straenus os ydych yn ddefnyddiwr dibrofiad. Yn ffodus, mae na\n"
+"ddewin sy'n symleiddio'r broses. Cyn cychwyn, darllenwch y llawlyfr a\n"
+"cymerwch bwyll.\n"
+"\n"
+"Os ydych yn rhedeg y gosodiad ym modd Arbenigwr, byddwch yn agor\n"
+"DiskDrake, rhaglen rhannu Mandrake Linux, sy'n caniatáu i chi wneud mân\n"
+"newidiadau i'ch rhaniadau. Gw. pennawd DiskDrake yn y llawlyfr. O'r\n"
+"rhyngwyneb gosod, gallwch ddefnyddio'r dewiniaid drwy glicio ar fotwm\n"
+"\"Dewin\" yn y ddeialog.\n"
+"\n"
+"Os oes yna raniadau wedi eu diffinio, un ai o osodiad blaenorol neu\n"
+"gan offeryn rhannu arall, dewiswch y rheini i osod eich system Linux.\n"
+"\n"
+"Os nad oes rhaniadau wedi eu diffinio, bydd angen i chi eu creu gan\n"
+"ddefnyddio'r dewin. Gan ddibynnu ar ffurfweddiad eich disg caled, mae\n"
+"nifer o ddewisiadau ar gael:\n"
+"\n"
+" * \"Defnyddiwch lle gwag\": mae'r dewis hwn yn arwain at greu rhaniadau\n"
+"awtomatig o'ch disg(iau) caled. Bydd dim cwestiynau eraill.\n"
+"\n"
+" * \"Defnyddiwch y rhaniad cyfredol\": mae'r dewin wedi canfod un neu fwy\n"
+"o raniadau Linux cyfredol ar eich disg caled. Os ydych am eu defnyddio,\n"
+"cliciwch y dewis hwn.\n"
+"\n"
+" * \"Defnyddiwch le gwag ar raniad Windows\": os yw Microsoft Windows ar\n"
+"eich disg caled ac yn cymryd y lle i gyd, bydd rhaid i chi greu lle ar gyfer "
+"data\n"
+"Linux. I wneud hynny gallwch ddileu eich rhaniad a data Microsoft Windows\n"
+"(gw. atebion\"Dileu'r ddisg gyfan\" neu \"Modd Arbenigwr) neu ail-lunio "
+"maint\n"
+"rhaniad Microsoft Windows. Mae modd ail lunio maint y rhaniad heb golli "
+"data.\n"
+"Argymhellir gwneud hyn os ydych am ddefnyddio Mandrake Linux a Microsoft\n"
+"Windows ar yr un cyfrifiadur.\n"
+"\n"
+" Cyn gwneud y dewis hwn, cofiwch y bydd maint eich rhaniad Microsoft "
+"Windows\n"
+"yn llai nag yw ar hyn o bryd. Bydd gennych llai o le yn Microsoft Windows i "
+"gadw\n"
+"data neu i osod meddalwedd newydd.\n"
+"\n"
+" * \"Dileu'r holl ddisg\" os ydych am ddileu'r holl ddata a rhaniadau "
+"presennol\n"
+"ar eich disg caled a'u cyfnewid am system Mandrake Linux, yna dewiswch hwn.\n"
+"Byddwch yn ofalus wrth wneud hyn gan na fydd modd troi'n ôl ar ôl "
+"cadarnhau.\n"
+"\n"
+" !! Os ydych yn dewis hwn, byddwch yn colli'r holl ddata ar eich disg. !!\n"
+"\n"
+" * \"Tynnu Windows\": bydd hwn yn dileu popeth o'r disg caled a chychwyn "
+"popeth\n"
+"o'r newydd, gan gynnwys creu rhaniadau newydd. Bydd yr holl ddata ar y ddisg "
+"yn\n"
+"cael ei golli\n"
+"\n"
+" !! Os ydych yn dewis hwn, byddwch yn colli'r holl ddata ar eich disg. !!\n"
+"\n"
+" * \"Modd Arbenigwr\": dewiswch hwn os ydych am rannu'r disg caled\n"
+"gyda llaw. Byddwch ofalus - mae'n ddewis pwerus a pheryglus. Mae modd\n"
+"i chi golli'ch holl ddata. Peidiwch dewis hwn oni bai eich bod yn gwybod "
+"beth\n"
+"ydych yn ei wneud."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:347
msgid ""
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
"\n"
-"Please check all options that you need.\n"
-msgstr ""
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
"\n"
-"Gwiriwch pob dewis sydd angen arnoch.\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
-msgstr "Cape Verde"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "a oes gan y cpu y Cyrix 6x86 Coma bug"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr "Llwytho Defnyddwyr a Grwpiau...Arhoswch"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-"roedd rhai Pentium cynnar yn wallus ac yn rhewi wrth ddadgodio F00F bytecode"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr "Guam"
+"Dyna ni. Mae'r gosodiad wedi ei gwblhau ac mae eich system GNU/Linux\n"
+"yn barod i'w ddefnyddio. Cliciwch \"Iawn\" i ailgychwyn y peiriant. Mae "
+"modd\n"
+"i chi gychwyn GNU/Linux neu Windows, prun bynnag sydd orau gennych\n"
+"(os oes gennych y ddwy system ar eich peiriant), gynted ag y bydd eich\n"
+"peiriant yn ail gychwyn. \n"
+"\n"
+"Mae'r botwm \"Uwch\" yn dangos dau fotwm:\n"
+"\n"
+" *\" creu disg meddal awto-gosod\": i greu disg meddal gosod fydd yn creu\n"
+"gosodiad cyflawn heb gymorth gweithredwr, yn debyg i'r gosodiad sydd\n"
+"newydd ei ffurfweddu.\n"
+"\n"
+"Sylwer bod dau ddewis gwahanol i'w gael wedi clicio'r botwm:\n"
+"\n"
+" *\"Ail chwarae\". Gosodiad rhannol awtomatig gan bod y cam o greu rhaniad\n"
+"yn cael ei hepgor.\n"
+"\n"
+" *Awtomeiddio\".Gosodiad cwbl awtomatig: mae'r disg caled wedi ei\n"
+"ailysgrifennu'n llwyr, a'r holl ddata wedi ei golli.\n"
+"\n"
+"Mae hwn yn nodwedd ddefnyddiol iawn pan yn gosod ar nifer fawr o beiriannau\n"
+"tebyg. Gw. yr adran Auto install ar ein safle gwe.\n"
+"\n"
+" *\"Cadw'r dewis o becynnau\": mae hyn yn cadw'r dewis o becynnau wnaed\n"
+"cynt. Yna wrth wneud gosodiad arall, rhowch ddisg meddal yn y gyrrwr a "
+"rhedeg\n"
+"y gosodiad gan fynd i'r sgrin cymorth drwy wasgu'r fysell [F1], a chyflwyno\n"
+">>linux defcfg=\"disg meddal\"<<.\n"
+"\n"
+"(*) Bydd angen disg meddal wedi ei fformatio fel FAT (i greu un yn GNU/"
+"Linux,\n"
+"teipiwch \"mformat a:\")"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:378
msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-"Dewiswch y porth y mae eich argraffydd wedi cysylltu iddo neu rhowch enw "
-"dyfais/ffeil ar y llinell mewnbwn"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/Dewisiadau/Test"
+"Rhaid i bob rhaniad sydd newydd eu henwi gael eu fformatio ar gyfer eu\n"
+"defnyddio (mae fformatio'n golygu creu system ffeilio)\n"
+"\n"
+"Efallai y byddwch eisiau ailfformatio rhai rhaniadau presennol i ddileu "
+"data\n"
+"sydd arnynt. Os ydych am wneud hynny, dewiswch y rhaniadau hynny hefyd.\n"
+"\n"
+"Sylwch nad oes angen ailfformatio'r holl raniadau sy'n bodoli eisoes. "
+"Rhaid \n"
+"ailfformatio'r rhaniadau sy'n cynnwys y system weithredu [megis \"/\",\"usr"
+"\"\n"
+"neu \"/var\") ond nid oes rhaid i chi ail fformatio rhaniadau sy'n cynnwys\n"
+"data rydych am ei gadw (e.e. \"/home\").\n"
+"\n"
+"Byddwch ofalus wrth ddewis rhaniadau. Ar ôl fformatio bydd yr holl ddata ar\n"
+"y rhaniadau'n cael eu dileu ac ni fydd modd ei adfer.\n"
+"\n"
+"Cliciwch \"Iawn\" pan ydych yn barod i fformatio rhaniadau.\n"
+"\n"
+"Cliciwch \"Dileu\" os ydych am ddewis rhaniad arall ar gyfer eich gosodiad\n"
+"Mandrake Linux newydd\n"
+"\n"
+"Cliciwch \"Uwch\" os ydych am ddewis rhaniadau i'w gwirio am flociau\n"
+"gwallus ar y ddisg."
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:404
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."
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
+"\n"
+"Please be patient."
msgstr ""
-"Rhaid defnyddio'r lefel hwn gyda gofal. Mae'n gwneud eich system yn haws ei\n"
-"ddefnyddio ond mae'n sensitif iawn: rhaid peidio defnyddio'r peiriant i'w\n"
-"gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mounting partition %s"
-msgstr "Yn fformatio rhaniad %s"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "Enw defnyddiwr"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Pa raniad hoffech chi ei ddefnyddio ar gyfer Linux4Win?"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to missing %s"
-msgstr "oherwydd %s coll"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Test pages"
-msgstr "Tudalennau prawf"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Logical volume name "
-msgstr "Enw cyfrol resymegol"
+"Mae eich system weithredu Mandrake Linux newydd yn cael ei osod.\n"
+"Yn dibynnu ar y nifer o becynnau byddwch yn eu gosod a chyflymder\n"
+"eich cyfrifiadur, bydd yn cymryd rhwng ychydig o amser a sbel go lew.\n"
+"\n"
+"Amynedd..."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:412
msgid ""
-"List of data to restore:\n"
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-"Rhestr o ddata i'w adfer:\n"
+"Ar yr adeg pan fyddwch yn gosod Mandrake Linux, mae'n debygol y bydd\n"
+"rhai pecynnau wedi eu diweddaru ers y rhyddhad cychwynnol. Bydd rhai \n"
+"gwallau wedi eu cywiro a materion diogelwch wedi eu datrys. I ganiatáu\n"
+"i chi fanteisio ar hyn mae cynnig i chi eu llwytho i lawr o'r rhyngrwyd.\n"
+"Dewiswch \"Iawn\" os oes gennych gyswllt gweithredol â'r rhyngrwyd,\n"
+"neu \"Na\"os ydych am osod pecynnau mwy diweddar rhywbryd eto.\n"
"\n"
+"Bydd dewis \"Iawn\" yn dangos rhestr o leoedd o le mae modd derbyn\n"
+"diweddariadau. Dewiswch yr un agosaf atoch. Yna, bydd coeden dewis\n"
+"pecynnau yn ymddangos: Wedi i chi benderfynu ar eich dewis, cliciwch\n"
+"\"Gosod\" i estyn a gosod y pecynnau hynny neu \"Diddymu\" i beidio."
-#: ../../fs.pm:1
-#, c-format
-msgid "Checking %s"
-msgstr "Gwirio %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "Dewisiadau Argraffydd TCP/Soced"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Cof Cerdyn (DMA)"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Datgysylltu o'r Rhyngrwyd"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "Ffrainc"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
-msgstr "pori"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
-msgstr "Gwirio'r meddalwedd sydd wedi ei osod..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Mae enw'r argraffydd pell ar goll!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Ydych chi am alluogi argraffu ar argraffydd mewn rhwydwaith lleol?\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "Twrci"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr "usb Alcatel Speedtouch"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Number of buttons"
-msgstr "Nifer o fotymau"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Fietnamëaidd \"rhes rhifol\" QWERTY"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Module"
-msgstr "Modiwl"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:425
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
msgstr ""
-"Yn ogystal, nid oes modd trosglwyddo rhesi grëwyd gan y rhaglen hon na "
-"\"foomatic-configure\"."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
-msgstr "Caledwedd"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Bysellau Ctrl ac Alt gyda'i gilydd"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "Yr Unol Daleithiau"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "User umask"
-msgstr "Masc defnyddwyr"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "System Weithredu Rhagosodedig?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "Swisaidd (gosodiad Almaeneg)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Ffurfweddu pob pen yn annibynnol"
+"Cyn parhau dylech ddarllen amodau'r drwydded yn ofalus. Mae'n ymwneud\n"
+"â holl ddosbarthiad Mandrake Linux, ac os nad ydych yn cytuno â'r holl\n"
+"amodau, cliciwch ar fotwm \"Gwrthod\" fydd yn terfynu'r gosodiad yn syth.\n"
+"I barhau gyda'r gosodiad, cliciwch fotwm \"Derbyn\"."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:432
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\"."
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
msgstr ""
-"Dewiswch yr argraffydd rydych am ei osod. Bydd ffurfweddu'r argraffydd yn "
-"digwydd yn awtomatig. Os na chafodd eich argraffydd ei ganfod yn gywir neu "
-"byddai'n well gennych ffurfweddiad unigryw i'ch argraffydd, cychwynnwch "
-"\"Ffurfweddiad gyda Llaw\"."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "Gwasanaethwr NTP"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Sulogin(8) in single user level"
-msgstr "Sulogin(8 ar lefel defnyddiwr unigol."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Load/Save on floppy"
-msgstr "Llwytho/Cadw ar ddisg meddal"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
-msgstr "Does gan y thema ddim croeso cychwyn yn %s !"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "hyfryd"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Gadael mewn %d eiliad"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Dewiswch ba borth cyfresol mae eich modem wedi cysylltu iddo."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Property"
-msgstr "Eiddo"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr "Ffurfweddiad Rhwydwaith Lleol (LAN)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "Ghana"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
-msgstr "Llwybr neu Fodiwl angenrheidiol"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Advanced Options"
-msgstr "Dewisiadau Uwch"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Configuration"
-msgstr "Edrych ar Ffurfweddiad"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
-msgstr "Coma bug"
+"Yma mae angen dewis lefel diogelwch ar gyfer y peiriant. Fel rheol,\n"
+"y mwyaf agored yw'r peiriant, y mwyaf pwysig yw'r data yr uchaf\n"
+"ddylai'r lefel diogelwch fod. Er hynny, mae diogelwch yn dod ar draul\n"
+"hwylustod. Gw. pennod MSEC yn y \"Reference Manual\" am\n"
+"wybodaeth ar ystyr y lefelau hyn\n"
+"\n"
+"Os nad ydych yn siwr beth i'w ddewis, dewiswch y rhagosodedig."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:442
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"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -5199,61 +3548,60 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``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."
@@ -5270,41 +3618,47 @@ msgstr ""
"\n"
"I greu'r rhaniad, mae modd defnyddio'r dewisiadau hyn:\n"
"\n"
-" *\"%s\": mae'r dewis hwn yn dileu pob rhaniad ar ddisg.\n"
+" *\"Clirio'r cyfan\": mae'r dewis hwn yn dileu pob rhaniad ar ddisg.\n"
"\n"
-" *\"%s\": mae'r dewis hwn yn caniatáu i chi greu'n awtomatig\n"
+" *\"Awto ddynodi\": mae'r dewis hwn yn caniatáu i chi greu'n awtomatig\n"
"Ext2 a rhaniadau cyfnewid mewn lle gwag ar eich disg.\n"
"\n"
-" *\"%s\": yn rhoi mynediad i ragor o nodweddion:\n"
+" *\"Rhagor\": yn rhoi mynediad i ragor o nodweddion:\n"
"\n"
-" *\"%s\": mae hwn yn cadw'r tabl rhaniad i ddisg\n"
+" *\"Cadw'r tabl rhaniad\": mae hwn yn cadw'r tabl rhaniad i ddisg\n"
"meddal. Mae hyn yn ddefnyddiol ar gyfer adfer tabl rhaniad, os fydd angen\n"
"\n"
-" \"%s\": mae hyn yn caniatáu adfer tabl rhaniad blaenorol\n"
+" \"Adfer y tabl rhaniad\": mae hyn yn caniatáu adfer tabl rhaniad "
+"blaenorol\n"
"o ddisg meddal.\n"
"\n"
-" \"%s\": os yw eich tabl rhaniad wedi ei ddifrodi, mae modd\n"
+" \"Achub y tabl rhaniad\": os yw eich tabl rhaniad wedi ei ddifrodi, mae "
+"modd\n"
"ceisio ei adfer drwy'r dewis yma. Byddwch ofalus a chofiwch fod modd iddo\n"
"fethu.\n"
"\n"
-" \"%s\": mae hwn yn dileu pob newid ac yn ail lwytho'r\n"
+" \"Ai-lwytho'r tabl rhaniad\": mae hwn yn dileu pob newid ac yn ail "
+"lwytho'r\n"
"tabl rhaniad gwreiddiol.\n"
"\n"
-" *\"%s\": dad-diciwch y dewis hwn i osod a dad osod\n"
+" *\"Awto osod cyfrwng symudol\": dad-diciwch y dewis hwn i osod a dad "
+"osod\n"
"gyda llaw, cyfryngau symudol megis disgiau meddal ac CD-ROMau\n"
"\n"
-" *\"%s\": defnyddiwch y dewis hwn os ydych am ddefnyddio'r dewin i rannu\n"
+" *\"Dewin\": defnyddiwch y dewis hwn os ydych am ddefnyddio'r dewin i "
+"rannu\n"
"eich disg caled. Dyma'sydd orau os nad oes gennych wybodaeth sylweddol ar\n"
"rhannu\n"
"\n"
-" *\"%s\": defnyddiwch y dewis hwn i ddileu eich newidiadau\n"
+" *\"Dadwneud\": defnyddiwch y dewis hwn i ddileu eich newidiadau\n"
"\n"
-" *\"%s\": mae hwn yn caniatáu gweithredoedd\n"
+" *\"Newid o'r modd arferol/arbenigwr\": mae hwn yn caniatáu "
+"gweithredoedd\n"
"pellach ar raniadau. (Math, dewisiadau, fformat) ac mae'n cynnig mwy o\n"
" wybodaeth.\n"
"\n"
-" *\"%s\":pan fyddwch wedi gorffen rhannu eich disg, bydd hwn yn cadw\n"
-" eich newidiadau yn ôl i'r ddisg\n"
+" *\"Gorffen\":pan fyddwch wedi gorffen rhannu eich disg, bydd hwn yn cadw\n"
+" eich newidiadau yn ôl i'r ddisg\n"
"\n"
"Sylwer: mae modd cyrraedd y dewisiadau drwy'r bysellfwrdd. Symudwch drwy'r\n"
" rhaniadau gan ddefnyddio [Tab] a'r saethau [I Fyny/I Lawr].\n"
@@ -5321,1993 +3675,1379 @@ msgstr ""
"y\n"
" pennawd ar ext2fs yn y ``Reference Manual''.\n"
"\n"
-"Os ydych yn gosod ar beiriant PPC, bydd angen i chi greu \"ymlwythwr\" \n"
+"Os ydych yn gosod ar beiriant PPC, bydd angen i chi greu \"ymlwythwr\" HFS\n"
" bychan o leiaf 1MB o faint, fydd yn cael ei ddefnyddio gan ymlwythwr "
"yaboot.\n"
"Os ydych yn dewis gwneud y rhaniad rhywfaint yn fwy, dyweder tua 50MB, yna\n"
-"gall fod yn le defnyddiol i gadw cnewyllyn sbâr a delweddau ramdisk ar "
+"gall fod yn le defnyddiol i gadw cnewyllyn sbâr a delweddau ramdisk ar "
"gyfer\n"
" sefyllfaoedd cychwyn argyfyngus!"
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:513
msgid ""
-"Graphic Card\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-" 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"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\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 ""
-"Cerdyn Greaffig\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-" Mae'r gosodwr fel rheol yn canfod ac yn ffurfweddu'n awtomatig\n"
-"y cerdyn graffig sydd ar eich cyfrifiadur. Os nad yw hyn yn wir,\n"
-"dewiswch eich cerdyn o'r rhestr.\n"
+"\"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"
-" Mewn achos lle mae gwasanaethwyr eraill i'w cael i'ch cerdyn, gyda\n"
-"neu heb gyflymydd 3D, mae cynnig i chi ddewis y gwasanaethwr gorau\n"
-"ar eich cyfer."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Digwyddodd gwall wrth osod pecyn"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Ffurfweddiad inkjet Lexmark"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "Dadwneud"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Save partition table"
-msgstr "Cadw'r tabl rhaniad"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "Ffinaidd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "Macedonia"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
-msgstr ""
-"Mae'r rhannu yn ôl defnyddiwr yn defnyddio grwp \"rhannu ffeiliau\" .\n"
-"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grwp. "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "Slfenaidd"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Authorize:\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-"- only local ones if set to \"LOCAL\"\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"
-"- none if set to \"NONE\".\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"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
msgstr ""
-"Ymresymiadau: (arg)\n"
+"Mae mwy nag un rhaniad Microsoft wedi ei ganfod ar eich disg caled.\n"
+"Dewiswch ba un rydych am newid ei faint er mwyn gosod eich\n"
+"system weithredu Mandrake Linux newydd\n"
"\n"
-"- pob gwasanaeth sy'n cael ei reoli gan tcp_wrappers (gw. hosts.deny(5) man "
-"page) os wedi ei osod i \"ALL\",\n"
+"Mae pob rhaniad wedi ei restri fel hyn: \"Enw Linux\", \"Enw Microsoft\",\n"
+"\"Maint\".\n"
"\n"
+"Mae \"Enw Linux\" wedi ei strwythuro fel hyn: \"math o ddisg caled\", \n"
+"\"rhif y disg caled\", \"rhif y rhaniad\" (e.e., \"hda1\").\n"
"\n"
-" Dim ond rhai lleol os wedi eu gosod i \"LOCAL\"\n"
+"\"hd\" yw'r \"Math o ddisg caled\" os mai disg caled IDE sydd gennych\n"
+"a \"sd\" yw disg caled SCSI.\n"
"\n"
-"- dim os wedi eu gosodi i NONE. I ganiatáu'r gwasanaethau sydd eu hangen, "
-"defnyddiwch /etc/hosts.allow (gw. hosts.allow(5))."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr "Libya"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Ffurfweddi sgriptiau, gosod meddalwedd, cychwyn gwasanaethwyr..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Argraffydd ar borth paralel #\"%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"Llythyren wedi'r \"hd\" neu \"sd\" yw'r \"Rhif disg caled\" bob tro.\n"
+"Gyda disgiau caled IDE:\n"
"\n"
-"- Burn to CD"
-msgstr ""
+" * mae \"a\" yn golygu \"prif ddisg caled ar y rheolydd IDE cyntaf\",\n"
"\n"
-"- Llosgi i CD"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "Tabl"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Nid wyf yn gwybod sut i fformatio %s ym math %s"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Model"
-msgstr "Model"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "USB printer #%s"
-msgstr "Argraffydd USB #\"%s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Stop Server"
-msgstr "Atal y Gwasanaethwr"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
+" * mae \"b\" yn golygu \"ddisg caled gwas ar y rheolydd IDE cyntaf\",\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
+" * mae \"c\" yn golygu \"prif ddisg caled ar yr ail reolydd IDE\",\n"
"\n"
-"Dewis thema ar\n"
-"gyfer lilo a bootsplash,\n"
-"mae modd eu dewis\n"
-"ar wahân"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Modem"
-msgstr "Modem"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr "Tuvalu"
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr "Defnyddio awto ganfod"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
-msgstr ""
-"Mae GPM yn ychwanegu cefnogaeth ar gyfer llygoden i raglenni testun Linux \n"
-"megis, Midnight Commander. Mae hefyd yn caniatáu gweithrediadau torri a \n"
-"gludo consol llygoden, gan gynnwys cefnogaeth ar gyfer bryslenni yn y "
-"consol. "
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr "Cychwyn y peiriant"
-
-#: ../advertising/12-mdkexpert.pl:1
-#, 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:"
-msgstr ""
-"Ymunwch â'r timau cefnogi MandrakeSoft a'r Linux Community ar-lein i rannu "
-"eich gwybodaeth ac i helpu eraill drwy ddod yn Arbenigwr cydnabyddedig ar y "
-"safle cefnogaeth dechnegol."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "No password aging for"
-msgstr "Dim cyfrinair eto ar gyfer"
-
-#: ../../standalone/draksec:1
-#, 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"
-msgstr ""
-"Mae modd gosod y dewisiadau canlynol i addasu\n"
-"diogelwch eich system. Os oes arnoch esboniadau, cliciwch ar cymorth.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Canfod argraffyddion ar gyfrifiaduron pell, yn awtomatig."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr "Dwyrain Timor"
+" * mae \"d\" yn golygu \"ddisg caled gwas ar yr ail reolydd IDE\",\n"
+"\n"
+"Gyda disgiau caled SCSI mae \"a\" yn golygu'r \"enw SCSI isaf\", ac mae\n"
+" \"b\" yn golygu'r \"ail enw SCSI isaf\", ag ati.\n"
+"\n"
+"Mae \"Enw Windows\" yn cyfeirio at y llythyren y disg caled o dan\n"
+" Windows (\"C:\" yw'r ddisg neu raniad cyntaf)."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
-msgstr "ar Ddyfais Tâp"
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
+msgstr "Amynedd... Gall y weithred hon gymryd rhai munudau."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:547
msgid ""
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
"\n"
-"- Save to Tape on device: %s"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
+"\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
+"\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
+"\n"
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
+"\n"
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
+"\n"
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
+"\n"
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
msgstr ""
+"Mae DrakX am wybod a ydych am wneud gosodiad rhagosodedig.\n"
+"Hwn sy'n cael ei (\"Argymell\") neu a ydych eisiau mwy o reolaeth\n"
+" (\"Arbenigwr\"). Mae gennych hefyd y dewis o wneud gosodiad newydd neu\n"
+" uwchraddio system Mandrake Linux cyfredol.\n"
"\n"
-"- Cadw i dâp ar ddyfais: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Login name"
-msgstr "Enw mewngofnodi"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
-msgstr "Adrodd ar ffeiliau heb berchennog."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr "Proffil dileu"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Gosod Foomatic..."
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Allgofnodwch ac yna defnyddiwch Ctrl Alt-BackSpace"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected"
-msgstr "canfuwyd"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "Rhaid i'r rhwydwaith gael ei ailgychwyn. Ydych chi am ei ailgychwyn?"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package: "
-msgstr "Pecynnau"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr "Methu ysgrifennu /etc/sysconfig/bootsplash."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "RHYBUDD DIOGELWCH!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
-msgstr "Na, dydw i ddim eisiau awto-mewngofnodi"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Offeryn Trosglwyddo o Windows"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr "Pob iaith"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "Tynnu %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s not found...\n"
-msgstr "Heb ganfod %s...\n"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Testing your connection..."
-msgstr "Profi eich cysylltiad..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cache size"
-msgstr "Maint storfa"
+" *\"Gosod\" Mae hwn yn dileu'r hen system yn llwyr. Mewn gwirionedd, yn\n"
+"dibynnu ar ffurf eich peiriant, bydd modd cadw rhai hen raniadau (Linux neu\n"
+"eraill) heb eu newid.\n"
+"\n"
+" *\"Uwchraddio\" Mae'r gosodiad yn caniatáu i chi uwchraddio'r pecynnau\n"
+"sydd wedi eu gosod ar eich system Mandrake Linux. Bydd yn cadw'r rhaniadau\n"
+"cyfredol ar eich disg caled yn ogystal â ffurfweddiad defnyddwyr. Mae pob\n"
+"cam ffurfweddiad arall ar gael fel mewn gosodiad arferol.\n"
+"\n"
+" *\"Uwchraddio Pecynnau'n Unig\" Mae hwn yn ddewis newydd i ganiatáu\n"
+"uwchraddio system Mandrake Linux cyfredol tra'n cadw'r holl ffurfweddiad\n"
+"system heb ei newid. Mae ychwanegu pecynnau newydd i'r system hefyd \n"
+"yn bosibl.\n"
+"\n"
+"Dylai'r uwchraddiad weithio gyda systemau Mandrake Linux yn cychwyn\n"
+"o rifyn \"8.1\" \n"
+"\n"
+"Gan ddibynnu ar eich gwybodaeth am GNH/Linux, dewiswch un o'r canlynol:\n"
+"\n"
+" *Argymhellir: dewiswch hwn os nad ydych wedi gosod system weithredu\n"
+"GNU/Linux o'r blaen. Bydd y gosod yn hawdd a bydd ond rhaid i chi ateb\n"
+"rhai cwestiynau\n"
+"\n"
+" *Arbenigwr: os oes gennych wybodaeth drylwyr am GNU/Linux, mae modd\n"
+"i chi ddewis y math yma o osodiad. Bydd hwn yn caniatáu i chi osod y system\n"
+"yn ôl eich gofynion eich hun. Bydd ateb rhai o'r cwestiynau'n anodd os nad\n"
+"oes gennych wybodaeth drylwyr o GNU/Linux, felly peidiwch â dewis hwn os\n"
+" nad ydych yn gwybod beth rydych yn ei wneud."
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:582
msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
+"\n"
+"Click on the \"More\" 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, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
msgstr ""
-"Mae'r cyfrinair wedi ei alluogi, ond ni argymhellir ei ddefnyddio fel "
-"cyfrifiadur rhwydwaith."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr "Sector dechreuol: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr "Congo (Brazzaville)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Read"
-msgstr "Darllen"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
-msgstr "Seychelles"
+"Fel arfer mae DrakX yn dewis y bysellfwrdd cywir ar eich cyfer ( gan "
+"ddibynnu pa\n"
+" iaith rydych wedi ei ddewis) ac ni fyddwch yn gweld y cam hwn. Er hynny,\n"
+"efallai nad oes gennych fysellfwrdd sy'n cyfateb yn union i'ch iaith: e.e., "
+"os ydych\n"
+"yn Americanwr sy'n siarad Cymraeg, efallai eich bod am gadw eich "
+"bysellfwrdd\n"
+"Americanaidd. Neu os ydych yn siarad Cymraeg ac yn byw yn Hong Kong mae'r\n"
+" un sefyllfa'n codi. Yn y ddwy achos bydd angen i chi fynd yn ôl i'r cam yma "
+"yn y\n"
+" gosodiad a dewis y bysellfwrdd perthnasol o'r rhestr.\n"
+"\n"
+"Cliciwch ar fotwm \"Rhagor\" i dderbyn y rhestr lawn o fysellfyrddau sy'n "
+"cael eu\n"
+" cynnal.\n"
+" "
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:598
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"
+"The first step is to choose your preferred language.\n"
"\n"
-"For your printer Printerdrake has found:\n"
+"Please choose your preferred language for installation and system usage.\n"
"\n"
-"%s"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
+"\n"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
-"Mae Printerdrake wedi cymharu'r enw model yn sgil yr awto ganfod gyda'r "
-"modelau sy'n cael eu rhestri yn ei gronfa ddata i gael y cydweddiad gorau. "
-"Gall y dewis fod yn anghywir, yn arbennig os nad yw eich argraffydd yn cael "
-"ei enwi yn y gronfa ddata. Felly, edrychwch i weld â yw'r dewis yn gywir a "
-"chliciwch \"Model cywir\" os yw ac os nad yw, cliciwch \" Dewiswch y model "
-"gyda llaw\" fel bo modd i chi ddewis eich argraffydd gyda llaw ar y sgrîn "
-"nesaf.\n"
+"Dewiswch eich dewis iaith ar gyfer y gosod a'r defnydd o'r system\n"
"\n"
-"Ar gyfer eich argraffydd mae Printerdrake wedi canfod\n"
+"Bydd clicio ar y botwm \"Uwch\" yn caniatáu i chi ddewis ieithoedd eraill "
+"i'w\n"
+" gosod ar eich peiriant gwaith. Bydd dewis ieithoedd eraill yn gosod "
+"ffeiliau\n"
+" penodol sy'n cynnwys dogfennaeth a rhaglenni yn yr ieithoedd hynny.\n"
+"Er enghraifft, os ydych yn westeiwr ar gyfer defnyddwyr o Sbaen, dewiswch \n"
+" Gymraeg fel y brif iaith yn golwg coeden ac yn yr adran Uwch cliciwch ar "
+"y \n"
+"seren lwyd sy'n cyfateb i \"Spaeneg|Sbaen\". \n"
"\n"
-"%s"
+"Sylwer bod modd gosod myw nag un iaith. Unwaith i chi ddewis unrhyw \n"
+"leoleiddiad ychwanegol cliciwch y botwm \"Iawn\" i barhau."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Bad password on %s"
-msgstr "Cyfrinair gwallus yn %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:617
msgid ""
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
"\n"
-"Mae un argraffydd anhysbys wedi ei gysylltu'n uniongyrchol â'ch system"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Control key"
-msgstr "Bysell Control dde"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
msgstr ""
-"Rhowch ddisg meddal wedi ei fformatio i FAT yng ngyrrwr %s gyda %s yng "
-"nghyfeiriadur gwraidd a phwyso %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "Zambia"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr "Gweinyddwr Diogelwch (mewngofnodi neu e-bost)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr "Mae'n ddrwg gennym dim ond cnewyllyn 2.4 sy'n cael ei gynnal."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr "Romanaidd (qwerty)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
-msgstr "O dan ddatblygiad...arhoswch."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "Yr Aifft"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "Gweriniaeth Tsiec"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "Cerdyn sain"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Import Fonts"
-msgstr "Mewnforio Ffontiau"
+"Drwy ragosodiad mae DrakX yn cymryd bod gennych lygoden dau fotwm\n"
+"a bydd yn ei osod i efelychu botwm tri. Bydd DrakX yn gwybod yn awtomatig\n"
+"p'un a'i yw'n lygoden PS/2, cyfresol neu USB.\n"
+"\n"
+" Os hoffech chi bennu math arall o lygoden, dewiswch y math priodol o'r "
+"rhestr.\n"
+"\n"
+"Os byddwch yn dewis llygoden ar wahân i'r rhagosodedig, byddwch yn gweld\n"
+"ffenestr profi'r llygoden. Defnyddiwch y botymau a'r olwyn i wneud yn siwr "
+"fod\n"
+"y gosodiadau'n gweithio. Os nad yw'r llygoden yn gweithio'n iawn pwyswch\n"
+"ar y bylchwr neu [Return] i \"Dileu\" a dewis eto.\n"
+"\n"
+"Weithiau ni fydd llygod olwyn yn cael eu canfod yn awtomatig. Bydd rhaid i "
+"chi\n"
+"eu dewis o'r rhestr. Gwnewch yn siwr eich bod yn dewis yr un sy'n cyfateb "
+"i'r porth\n"
+"mae wedi ei gysylltu iddo. Wedi i chi wasgu'r botwm \"Iawn\" bydd delwedd\n"
+"llygoden yn cael ei ddangos. Bydd angen i chi symud olwyn y llygoden iddo \n"
+"weithio'n gywir.Yna profwch fod pob botwm a symudiad yn gywir."
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../help.pm_.c:638
msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"Mae gennych un rhaniad MicroSoft Windows mawr\n"
-"Awgrymir eich bod yn newid maint y rhaniad\n"
-"(cliciwch arno, ac yna clicio \"Newid maint\"]"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Llethu Ffeiliau Dros dro"
+"Dewiswch y porth cywir. Mae porth \"COM1\" o dan MS Windows yn cael ei alw "
+"yn\n"
+"\"ttyS0\" yn GNU/Linux, e.e."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+#: ../../help.pm_.c:642
+msgid ""
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
"\n"
-msgstr ""
-"Llongyfarchiadau, mae ffurfweddiad y rhwydwaith a'r Rhyngrwyd wedi gorffen\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "Newid math y rhaniad"
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Resolution\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
"\n"
-" 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 ""
-"Cydraniad\n"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
"\n"
-" Cewch ddewis yma gydraniad a dyfnder lliw rhwng y rhai sydd ar gael\n"
-"ar gyfer eich caledwedd. Dewiswch yr un sydd orau ar eich cyfer (bydd\n"
-"modd newid hynny wedi'r gosod) Mae enghraifft o ffurfweddiad i'w weld\n"
-"ar y dangosydd."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Network Options"
-msgstr "Dewisiadau Rhwydwaith"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable msec hourly security check"
-msgstr "Galluogi/Analluogi gwiriad diogelwch msec bob awr."
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
+"\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
+"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
msgstr ""
-"Dangos thema\n"
-"yn y consol"
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr "(ar %s)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
+"Mae hwn yn fan pwysig ynghylch diogelwch eich system GNU/Linux; rhaid\n"
+"rhoi cyfrinair \"root\".\"root\" yw gweinyddwr y system a'r unig un sydd â'r "
+"hawl\n"
+"i wneud diweddariadau, ychwanegu defnyddwyr, newid ffurfweddiad cyffredinol\n"
+"y system, ac yn y blaen. Yn fyr mae \"root\" yn medru gwneud popeth! Dyna\n"
+"pam mae'n rhaid dewis cyfrinair sy'n anodd ei ddyfalu - bydd DrakX yn dweud\n"
+" wrthych os yw'n rhy hawdd. Fel y gwelwch, mae modd peidio gorfod cynnig\n"
+" cyfrinair, ond rydym yn argymell yn erbyn hyn, hyd yn oed am un rheswm:\n"
+" peidiwch â meddwl bod eich systemau gweithredu eraill yn ddiogel rhag\n"
+" camgymeriadau, gan eich bod wedi cychwyn o GNU/Linux. Gan fod \"root\" yn\n"
+" medru goresgyn unrhyw gyfyngiadau a dileu data'n anfwriadol ar bob "
+"rhaniad,\n"
+" drwy fynd at y rhaniadau'n ddi-hid, yna mae'n bwysig ei gwneud hi'n anodd "
+"bod\n"
+" yn \"root\".n\n"
+"Dylai'r cyfrinair fod yn gyfuniad o rifau a llythrennau ac o leiaf 8 nod o "
+"hyd.\n"
+" Peidiwch ysgrifennu'r cyfrinair ar bapur - bydd yn ei gwneud hi'n rhy "
+"hawdd\n"
+" gwanhau'r system.\n"
+"\n"
+"Er hynny, peidiwch â gwneud y cyfrinair yn rhy hir neu gymhleth am fod rhaid "
+"i\n"
+"chi fedri ei gofio heb ormod o drafferth.\n"
+"\n"
+"Ni fydd y cyfrinair yn cael ei ddangos ar y sgrin wrth i chi ei deipio. "
+"Felly bydd\n"
+" rhaid i chi deipio'r cyfrinair ddwywaith i leihau'r siawns o deipio gwall. "
+"Os ydych\n"
+"yn digwydd gwneud yr un gwall teipio ddwywaith, bydd rhaid defnyddio'r "
+"cyfrinair\n"
+" \"anghywir\" i gychwyn y tro cyntaf.\n"
+"\n"
+"Yn y modd arbenigwr, bydd gofyn os fyddwch yn cysylltu â gwasanaethwr\n"
+"dilysu, megis NIS neu LDAPl\n"
+"\n"
+"Os yw eich rhwydwaith yn defnyddio protocol LDAP (neu NIS) ar gyfer dilysu,\n"
+" dewiswch \"LDAP\" (neu \"NIS\") fel dilyswr. Os nad ydych yn gwybod,\n"
+" gofynnwch i'ch gweinyddwr system.\n"
+"\n"
+"Os nad yw eich cyfrifiadur wedi ei gysylltu i unrhyw rwydwaith wedi ei "
+"weinyddu,\n"
+" byddwch angen dewis \"Ffeiliau lleol\" ar gyfer dilysu."
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:678
msgid ""
-"A library which defends against buffer overflow and format string attacks."
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, 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 in doubt, DrakX will display a dialog with various options.\n"
+"\n"
+" * \"Bootloader to use\": you have three choices:\n"
+"\n"
+" * \"GRUB\": if you prefer grub (text menu);\n"
+"\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\n"
+"\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
+"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
+"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
+"\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\n"
+"\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
msgstr ""
-"Llyfrgell sy'n diogelu rhag gorlif byffer ac ymosodiadau llinellau fformatio."
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr "cyfartaledd"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "New printer name"
-msgstr "Enw'r argraffydd newydd"
+"Mae LILO a grub yn llwythwyr cychwyn ar gyfer GNU/Linux. Fel rheol\n"
+"mae'r cam yma'n gwbl awtomatig. Mewn gwirionedd mae DrakX yn\n"
+"dadansoddi'r adran gychwyn ac yn gweithredu ar yr hyn mae'n ei ganfod\n"
+"yma:\n"
+" *os yw'n canfod adran gychwyn Windows mae'n gosod adran cychwyn\n"
+"grub/LILO yno yn ei le. Felly bydd modd i chi gychwyn un ai GNU/Linux\n"
+"neu system weithredu arall.\n"
+"\n"
+" *os fydd yn canfod adran gychwyn grub neu LILO, bydd yn gosod un mwy\n"
+"diweddar yn ei le.\n"
+"\n"
+"Os oes amheuaeth, bydd DrakX yn dangos blwch deialog gyda dewisiadau.\n"
+"\n"
+" * \"Llwythwr cychwyn i'w ddefnyddio\": mae gennych dri dewis:\n"
+"\n"
+" * \"GRUB\":os mae'n well gennych grub (dewislen testun)\n"
+"\n"
+" * \"LILO\" gyda dewislen raffigol\": os mae'n well gennych LILO gyda'i\n"
+"rhagwyneb graffigol.\n"
+"\n"
+" * \"LILO\" gyda dewislen raffigol\": os mae'n well gennych rhagwyneb "
+"dewislen\n"
+"testun.\n"
+"\n"
+" * \"Dyfais cychwyn\": yn y rhan fwyaf o achosion ni fyddwch yn newid\n"
+"y rhagosodedig (\"/dev/hda\"), ond os mae'n well gennych, gall y llwythwr\n"
+"cychwyn gael ei osod ar yr ail ddisg caled (\"/dev/hdb\"), neu hyd yn oed "
+"ar\n"
+"ddisg meddal (\"/dev/fd0\")\n"
+" * \"Oedi cyn cychwyn y ddelwedd rhagosodedig\": wrth ail gychwyn y "
+"cyfrifiadur\n"
+"dyma'r oedi sy'n caniatáu i'r defnyddiwr ddewis o fewn y ddewislen llwythwr "
+"cychwyn,\n"
+"llwythwr cychwyn arall yn lle'r un rhagosodedig.\n"
+"\n"
+"!!Gofalwch, os nad ydych yn gosod llwythwr cychwyn, (drwy ddewis \"Diddymu\" "
+"yma),\n"
+"rhaid i chi wneud yn siwr fod gennych fodd i gychwyn eich system Linux "
+"Mandrake.\n"
+"Hefyd, gwnewch yn siwr eich bod yn gwybod beth rydych yn ei wneud cyn newid "
+"y\n"
+"dewisiadau hyn!!\n"
+"\n"
+"Bydd clicio'r botwm \"Uwch\" yn y ddeialog yn cynnig nifer o ddewisiadau "
+"uwch,\n"
+"sydd yn cael eu cadw ar gyfer y defnyddiwr arbenigol."
-#: ../../fs.pm:1
-#, c-format
+#: ../../help.pm_.c:718
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 )."
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"Caniatau i ddefnyddiwr cyffredin osod y system ffeil. Mae \n"
-"enw'r defnyddiwr gosod yn cael ei ysgrifennu i mtab fel ei fod yn gallu "
-"dadosod\n"
-"y system ffeil eto. Mae'r dewis yn arwyddo dewisiadau noexec, nosuid, and "
-"nodev\n"
-"(ac onibai ei fod wedi ddiystyru gan ddewisiadau dilynnol, fel yn y llinell "
-"dewis\n"
-"user,exec,dev,suid )."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr "Equatorial Guinea"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup System"
-msgstr "System cadw wrth gefn"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Build Backup"
-msgstr "Adeiladu Cadw wrth Gefn"
+"Mae LILO (the LInux LOader) a grub yn llwythwyr cychwyn: maent yn medru\n"
+"cychwyn un ai GNU/Linux neu unrhyw system weithredu arall sy'n bresennol\n"
+"ar eich cyfrifiadur.\n"
+"\n"
+" Fel rheol mae'r systemau hyn wedi eu canfod a'u gosod yn\n"
+"gywir. Os nad yw hyn yn gywir y tro yma, mae modd i chi ychwanegu cofnod\n"
+" gyda llaw ar y sgrin hwn. Byddwch ofalus i ddewis y paramedrau cywir\n"
+"\n"
+"Efallai na fyddwch eisiau rhoi mynediad i'r systemau gweithredu hyn i neb "
+"arall\n"
+"Os felly, gallwch ddileu'r cofnodion perthnasol.Ond bydd rhaid i chi greu "
+"disg\n"
+" cychwyn ar gyfer y systemau gweithredu rheini!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:732
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\n"
+"\n"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
msgstr ""
-"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynell) defnyddiwch y "
-"gorchymyn \"%s <file>\" neu \"%s <file>\".\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Does dim dewis arall ar gael ar hyn o bryd"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwertz)"
-msgstr "Romanaidd (qwertz)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Write Config"
-msgstr "Ysgrifennu ffurfweddu"
+"Rhaid i chi ddangos lle rydych am osod yr wybodaeth angenrheidiol i gychwyn\n"
+"GNU/Linux\n"
+"Os nad ydych yn gwybod yn union beth rydych yn ei wneud, dewiswch \"First\n"
+"sector of drive (MBR)\"."
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:739
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."
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
+"\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
+"\n"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
msgstr ""
-"Mae'r daemon llwybrydd yn caniatáu i'r tabl llwybrydd IP awtomatig \n"
-"ddiweddaru drwy gyfrwng y protocol RIP. Tra bo RIP'n cael ei \n"
-"ddefnyddio'n eang ar rhwydweithiau bach, mae angen protocolau \n"
-"llwybrydd mwy cymleth ar gyfer rhwydweithiwu cymleth."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr "Kiribati"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Llygoden Logitech (cyfresol, hen fath C7) gydag efelychiad Olwyn"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Allweddi eraill (nid drakbackup) yn eu lle yn barod"
+"Yma byddwn yn dewis system argraffu i'ch cyfrifiadur ei ddefnyddio. Efallai\n"
+"bod systemau eraill yn cynnig un i chi, ond mae Mandrake yn cynnig tri.\n"
+"\n"
+" *pdq\" - sy'n golygu \"print, don't queue\", Hwn yw'r dewis os oes gennych\n"
+"gysylltiad uniongyrchol â'ch argraffydd a'ch bod eisiau medru tynnu allan o "
+"waith\n"
+"argraffu pan mae'r papur wedi mynd yn sownd ac nad oes gennych "
+"argraffyddion\n"
+"wedi eu cysylltu drwy rwydwaith. Mae'n medru trin rhwydweithiau syml ac mae\n"
+"rhywfaint yn araf ar gyfer rhwydweithiau. Dewiswch \"pdq\" os mai dyma yw "
+"eich\n"
+"tro cyntaf yn GNU/Linux., mae modd i chi newid eich dewis ar ôl gosod drwy\n"
+" ddefnyddio PrinterDrake o Ganolfan Rheoli Mandrake a chlicio botwm "
+"arbenigwr\n"
+"\n"
+" *\"CUPS\" - \"Common Unix Printing System\". Mae hwn yn wych ar gyfer\n"
+"argraffu i argraffyddion lleol a hanner ffordd rownd y byd. Mae'n symlach, "
+"yn\n"
+"medru gweithredu fel gwasanaethwr neu cleient ar gyfer yr hen system \"lpd"
+"\"\n"
+"felly mae'n cydweddi â'r systemau sydd wedi mynd o'i flaen. Mae'n gallu "
+"gwneud\n"
+"nifer o driciau, ond mae bron mor syml i'w osod \"pdq\". Os ydych amgen "
+"hwn\n"
+"i efelychu gwasanaethwr \"lpd\", yna rhaid cychwyn daemon \"cups-lpd\".\n"
+"Mae ganddo wyneb graffigol ar gyfer argraffu neu ddewis dewisiadau "
+"argraffu.\n"
+"\n"
+" *\"lprNG\" - \"line printer daemon New Generation\" Mae'r system yma'n\n"
+"medru gwneud yn fras yr un pethau a'r lleill, ond mae'n medru argraffu i\n"
+"argraffyddion ar Novell Network, gan ei fod yn cynnal protocol IPX, ac\n"
+"mae'n medru argraffu 'n uniongyrchol i orchmynion cragen.. Os oes\n"
+"angen Novell neu argraffu i orchmynion heb luniad peipen ar wahân,\n"
+"defnyddiwch lprNG. Yn gyffredinol, mae CUPS yn well am ei fod yn syml\n"
+"ac yn well wrth weithio ar draws rhwydwaith."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:759
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"
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"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"
-"You will be presented with a list of different parameters to change to get\n"
-"an optimal graphical display: Graphic Card\n"
+"Because hardware detection does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\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"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
"\n"
-" 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"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
+msgstr ""
+"Mae DrakX yn canfod unrhyw ddyfais IDE sydd ar eich cyfrifiadur. Bydd yn\n"
+"chwilio am un neu fwy o gardiau SCSI PCI ar eich system. Os oes Cerdyn\n"
+"SCSI'n cael ei ganfod bydd DrakX yn awtomatig yn gosod y gyrrwr priodol.\n"
"\n"
+"Oherwydd nad yw canfod caledwedd bob tro'n canfod darn o galedwedd, bydd\n"
+" DrakX yn gofyn i chi gadarnhau os oes cerdyn SCSI PCI yn bresennol. "
+"Cliciwch\n"
+"\"Oes\" os ydych yn gwybod bod cerdyn SCSI wedi ei osod ar eich peiriant. \n"
+"Bydd rhestr o gardiau SCSI'n ymddangos i chi ddewis un. Cliciwch \"Na\" os\n"
+"nad oes gennych galedwedd SCSI. Os nad ydych yn siwr, gallwch edrych ar y\n"
+" rhestr o galedwedd sydd wedi ei ganfod ar eich peiriant drwy ddewis\n"
+" \"Gwybodaeth am galedwedd\" a chlicio \"Iawn\". Edrychwch yn fanwl ar y\n"
+"rhestr a chlicio'r botwm \"Iawn\" i fynd yn ôl i'r cwestiwn rhag wyneb "
+"SCSI.\n"
+"\n"
+"Os ydych wedi pennu eich addaswr gyda llaw, bydd DrakX yn gofyn i chi s\n"
+" ydych am bennu dewisiadau ar ei gyfer. Dylech adael i DrakX ofyn i'r cerdyn "
+"am\n"
+" ddewisiadau penodol i'r cerdyn mae angen i'r caledwedd eu cychwyn. Mae hyn\n"
+"fel rheol yn gweithio'n dda\n"
"\n"
+"Os nad yw DrakX yn medru holi am y dewisiadau sydd eu hangen, bydd rhaid i\n"
+" chi ddarparu'r dewisiadau gyda llaw. Darllenwch yr ``User "
+"Guide'' (pennod3,\n"
+" adran \"Collecting Information on Your Hardware\") am syniadau ar sut i "
+"gael y\n"
+" paramedrau angenrheidiol o ddogfennau'r caledwedd, o safle gwe'r "
+"gwneuthurwr\n"
+" (os oes gennych gysylltiad â'r Rhyngrwyd) neu oddi wrth Microsoft Windows "
+"(os\n"
+" ydych wedi defnyddio'r caledwedd gyda Windows ar eich system)."
+
+#: ../../help.pm_.c:781
+msgid ""
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
+"\n"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\n"
"\n"
-"Monitor\n"
+"For Linux, there are a few possible options:\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"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
"\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
"\n"
-"Resolution\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
"\n"
-" 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"
+" 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"
-"Test\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
"\n"
-" 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"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
"\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support;\n"
"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
+msgstr ""
+"Mae modd i chi gynnig cofnodion eraill ar gyfer yaboot, un ai systemau\n"
+" gweithredol eraill, cnewyll eraill, neu ddelwedd cychwyn argyfwng.\n"
"\n"
-"Options\n"
+"Ar gyfer systemau gweithredu eraill, mae'r cofnod yn cynnwys label a'r "
+"rhaniad\n"
+" root yn unig\n"
"\n"
-" Here you can choose whether you want to have your machine automatically\n"
-"switch to a graphical interface at boot. Obviously, you want to check\n"
-"\"%s\" if your machine is to act as a server, or if you were not successful\n"
-"in getting the display configured."
-msgstr ""
-"X (sef X Window System) yw calon rhyngwyneb graffigol GNU/Linux a'r\n"
-"hyn mae'r holl amgylcheddau graffigol (KDE, Gnome, AterStep,\n"
-"WindowMaker, etc) sy'n dod gyda Mandrake Linux yn dibynnu arno.\n"
+"Ar gyfer LInux, mae yna rhai dewisiadau:\n"
"\n"
-"Byddwch yn derbyn rhestr o baramedrau gwahanol i'w newid i gael\n"
-"y dangosiad graffigol gorau: Cerdyn Graffig\n"
+" *Label:sef yr enw fyddwch yn ei deipio yn anogwr yaboot i ddewis y dewis\n"
+" cychwyn.\n"
"\n"
-" Mae'r gosodwr fel rheol yn canfod ac yn ffurfweddu'n awtomatig\n"
-"y cerdyn graffig sydd ar eich cyfrifiadur. Os nad yw hyn yn wir,\n"
-"dewiswch eich cerdyn.\n"
+" *Image: hwn fydd enw'r cnewyllyn i'w gychwyn. Fel rheol, vimlinux neu\n"
+"amrywiad ohono gydag estyniad\n"
"\n"
-" Mewn achos lle mae gwasanaethwyr eraill i'w cael i'ch cerdyn, gyda\n"
-"neu heb gyflymydd 3D, mae cynnig i chi ddewis y gwasanaethwr gorau\n"
-"ar eich cyfer.\n"
+" *Root: y ddyfais \"root\" neu \"/\" ar gyfer eich gosodiad Linux.\n"
"\n"
+" *Append: ar galedwedd Apple, mae dewis atodi cnewyllyn yn cael ei\n"
+" ddefnyddio'n eithaf aml i gynorthwyo cychwyn caledwedd fideo neu i alluogi\n"
+" efelychiad o'r llygoden bysellfwrdd sydd ar goll ar yr ail a'r trydydd "
+"botwm\n"
+"llygoden llygod arferol Apple. Dyma rhai enghreifftiau:\n"
"\n"
-"Dangosydd\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+"hda=autotune\n"
"\n"
-" Mae'r gosodwr fel rheol yn canfod ac yn ffurfweddu'n awtomatig\n"
-"y dangosydd sy'n gysylltiedig â'ch cyfrifiadur. Os nad yw hyn yn gywir,\n"
-"mae'n dangos eich dangosydd.\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
+" * Initrd: mae modd defnyddio'r dewis hwn i un ai lwytho'r modiwlau "
+"cychwynnol,\n"
+" cydnabod y ddyfais cychwyn ar gael, neu i lwytho delwedd ramdisg ar gyfer\n"
+" cychwyn argyfwng.\n"
"\n"
+" * Initrd-size: maint y ddelwedd ramdisg arferol yw 4,096bid. Os ydych "
+"angen\n"
+"dyrannu ramdisg mawr, mae modd defnyddio'r dewis hwn.\n"
"\n"
-"Cydraniad\n"
+" * Read-write:fel rheol mae'r rhaniad \"root\" yn cael ei agor fel darllern "
+"yn unig, i\n"
+" ganiatáu gwiriad system ffeiliau cyn i'r system ddod yn \"fyw\". Yma mae "
+"modd\n"
+" diystyru'r dewis hwn.\n"
"\n"
-" Cewch ddewis yma gydraniad a dyfnder lliw rhwng y rhai sydd ar gael\n"
-"ar gyfer eich caledwedd. Dewiswch yr un sydd orau ar eich cyfer (bydd\n"
-"modd newid hynny wedi'r gosod) Mae enghraifft o ffurfweddiad i'w weld\n"
-"ar y dangosydd.\n"
+" * NoVideo: petai caledwedd Apple yn profi i fod yn peri anawsterau "
+"sylweddol,\n"
+" mae modd i chi ddewis cychwyn mewn modd \"novideo\", gyda chynhaliaeth\n"
+" ffrâm byffer cynhenid\n"
"\n"
+" * Default: dyma'r cyflwr rhagosodedig, dewiswch hwn drwy bwyso ENTER at\n"
+" anogwr yaboot. Bydd y cofnod hefyd wedi ei amlygu gyda \"*\", os wnewch "
+"chi\n"
+" bwyso ar [Tab] i weld dewisiadau'r cychwyn."
+
+#: ../../help.pm_.c:828
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
"\n"
+"Yaboot's main options are:\n"
"\n"
-"Prawf\n"
+" * Init Message: a simple text message displayed before the boot prompt;\n"
"\n"
-" bydd y system yn ceisio agor sgrîn graffigol yn unol â'r cydraniad "
-"dewisol.\n"
-"Os ydych yn gweld y neges yn ystod y prawf ac ateb \"%s\", yna bydd\n"
-"DrakX yn symud ymlaen i'r cam nesaf. Os nad ydych yn gweld y neges nesaf\n"
-"mae'n golygu fod rhan o'r drefn awtoganfod yn anghywir a bydd y prawf\n"
-"yn dod iben ar âl 12 eiliad, gan ddod a chi nôl i'r ddewislen. Newidiwch y\n"
-"gosodiadau nes i chi gael y sgrîn i edrych yn iawn.\n"
+" * Boot Device: indicates where you want to place the information required\n"
+"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
+"to hold this information;\n"
"\n"
+" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+"yaboot. The first delay is measured in seconds and at this point, you can\n"
+"choose between CD, OF boot, MacOS or Linux;\n"
"\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
-"Dewisiadau\n"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\n"
"\n"
-" Yma cewch ddewis p'un ai i drefnu i'ch cyfrifiadur newid yn awtomatig i\n"
-"rhyngwyneb graffigol wrth gychwyn. Yn amlwg byddwch angen ticio \"%s\"\n"
-"os yw eich peiriant i weithredu fel gwasanaethwr, neu os na fuoch yn\n"
-"llwyddiannus yn ffurfweddu'r dangosydd."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr "Pori"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr "CDROM"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Hoffech chi gysylltu â'r Rhyngrwyd nawr?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "Belgaidd"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "A oes gennych gerdyn sain ISA?"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Nid oes addasydd rhwydwaith ethernet wedi ei ganfod ar eich system.\n"
-"Nid wyf yn medru gosod y math yma o gysylltiad."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Windows"
-msgstr "Windows"
-
-#: ../../common.pm:1
-#, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "Meth creu lluniau o'r sgrîn cyn rhannu"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Name"
-msgstr "Enw Gwesteiwr"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Ffeil/Cawd _fel"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"I gael mynediad at argraffyddion ar wasanaethwyr CUPS pell yn eich "
-"rhwydwaith lleol dim ond angen i chi gychwyn y dewis \"Canfod argraffyddion "
-"ar gyfrifiaduron pell\" ; bydd y gwasanaethwyr CUPS yn dweud wrth eich "
-"cyfrifiadur am eu hargraffydd. Mae pob argraffydd sy'n hysbys i'ch "
-"cyfrifiadur yn cael ei restri yn adran \"Argrafargraffyddion pell\" prif "
-"ffenestr Printerdrake. Os yw/nad yw eich gwasanaethwr(wyr) CUPS ar eich "
-"rhwydwaith lleol rhaid rhoi cyfeiriad(au) IP ac yn ddewisol rhif(au) porth "
-"yma i gael gwybodaeth am yr argraffydd gan y gwasanaethwr(wyr)."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
-"Nid yw %s yng nghronfa ddata sganwyr. Hoffech chi ei ffurfweddu â llaw?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "Oedi cyn cychwyn y ddelwedd rhagosodedig"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Restrict command line options"
-msgstr "Cyfyngu dewisiadau llinell orchymyn"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "East Europe"
-msgstr "Dwyrain Ewrop"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "Defnyddiwch le gwag"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "defnyddiwch dhccp"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr "Rhybudd e-bost"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Internet configuration"
-msgstr "Ffurfweddiad rhyngrwyd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected %s"
-msgstr "Canfyddwyd %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Awtoganfod_argraffydd"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "Gorffen"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Dangoswch y pecynnau dewis awtomatig"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr "Togo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "Baneri cpu'n cael eu dangos gan y cnewyllyn"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Aeth rhywbeth o'i le! - ydy mkisofs wedi ei osod?"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "Ceisiwch eto"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The model is correct"
-msgstr "Mae'r model yn gywir"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Methodd newid maint FAT: %s"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr "Dewis pecynnau unigol."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr "Nid oes modd newid maint y rhaniad"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr "Lleoliad"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "UDA (cable-hrc)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr "Jwrnaleiddiwyd FS"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr "Gwiriad cymysgaredd cardiau ethernet."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
-msgstr "Y peiriant hwn"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Llythyren gyrrwr DOS: %s (dim ond dyfalu)\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr "Bahrain"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Dewiswch y ffeiliau neu gyfeiriaduron a chliciwch 'Iawn'"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit scsi modules"
-msgstr "peidio cynnwys modiwlau scsi"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "teulu'r cpu (ee 6 am ddosbarth i686)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Am eich bod yn gosod eich rhwydwaith, mae eich rhwydwaith eisoes wedi ei "
-"ffurfweddu\n"
-"Cliciwch Iawn i gadw eich ffurfweddiad, neu ddileu i ail ffurfweddi eich "
-"cysylltiad Rhyngrwyd a Rhwydwaith.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
-msgstr "Rhedeg y gwiriadau diogelwch dyddiol."
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Cynllun allweddell: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"Yma medrwch benderfynu a ddylai'r argraffyddion sy'n gysylltiedig â'r "
-"cyfrifiadur hwn fod ar gael i gyfrifiaduron pell a pha rai."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr "Malteg (UDA)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "Mae creu'r disg meddal cychwyn wedi bod yn llwyddiant\n"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Yn gosod a dadosod pob System Ffeil y Rhwydwaith (NFS), SMB\n"
-"(Rheolwr Rhwydwaith/Windows), a phwyntiau gosod NCP (NetWare) ."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Launch the wizard"
-msgstr "Cychwynnwch y dewin"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Tvcard"
-msgstr "Cerdyn Teledu"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Amnewid rhwng modd arferol/arbenigol"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr "Maint"
-
-#: ../../help.pm:1
-#, c-format
-msgid "GRUB"
-msgstr "GRUB"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr "Greenland"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "Iau"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Nid y label tâp cywir. Tâp wedi ei labelu %s."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
-"What would you like to do?"
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
msgstr ""
-"Mae gosodiad Rhannu Cysylltiad a'r Rhyngrwyd wedi ei gyflawni. \n"
-"Mae wedi ei alluogi. \n"
+"Yaboot yw llwythwr cychwyn ar gyfer caledwedd NewWorld MacIntosh. Mae'n \n"
+"medru cychwyn GNU/Linux, MacOS neu MacOSX os ydynt ar eich peiriant. Fel\n"
+" rheol, mae'r systemau gweithredu hyn yn cael eu canfod yn gywir a'u gosod. "
+"Os\n"
+" nad yw hyn yn digwydd, mae modd i chi ychwanegu eu cofnod gyda llaw ar y\n"
+" sgrin hwn. Byddwch ofalus i ddewis y paramedrau cywir.\n"
"\n"
-"Beth hoffech ei wneud?"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Dileu Pob NBI"
+"Prif ddewisiadau Yaboot yw:\n"
+"\n"
+" * Cychwyn Neges: neges testun syml sy'n cael ei ddangos cyn yr anogwr\n"
+" cychwyn\n"
+"\n"
+" * Cychwyn y Ddyfais: yn dangos lle rydych am osod yr wybodaeth "
+"angenrheidiol\n"
+"i gychwyn GNU/Linux. Yn gyffredinol, byddwch wedi creu rhaniad ymlwythwr yn\n"
+" gynt, i ddal yr wybodaeth.\n"
+"\n"
+" * Oediad Open Firmware: yn wahanol i LILO, mae yna ddau oediad ar gael "
+"gyda\n"
+" yaboot. Mae'r cyntaf yn cael ei fesur mewn eiliadau a dyma pryd hyn mae "
+"modd\n"
+" dewis rhwng CD, cychwyn OF, MacOS neu Linux\n"
+"\n"
+" * Oediad Cychwyn y Cnewyllyn: mae'r oediad yn debyg i oediad cychwyn LILO.\n"
+"WEdi dewis Linux, bydd oediad o 0.1 eiliad cyn bod eich cnewyllyn "
+"rhagosodedig\n"
+" yn cael ei ddewis.\n"
+"\n"
+" * Galluogi Cychwyn o'r CD?: mae dewis hwn yn caniatáu i chi ddewis \"C\" "
+"am\n"
+"CD ar anogwr y cychwyn cyntaf.\n"
+"\n"
+" * Galluogi Cychwyn OF?: mae dewis hwn yn caniatáu i chi ddewis |\"N\" am\n"
+" Open Firmware ar anogwr y cychwyn cyntaf.\n"
+"\n"
+" * System Weithredu Rhagosodedig: mae modd dewis pa system weithredu fydd\n"
+"yn cychwyn drwy ragosodiad pan ddaw'r Open Firmware i ben."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:860
+#, fuzzy
msgid ""
-"This dialog allows you to fine tune your bootloader:\n"
-"\n"
-" * \"%s\": there are three choices for your bootloader:\n"
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
"\n"
-" * \"%s\": if you prefer grub (text menu).\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
"\n"
-" * \"%s\": if you prefer LILO with its text menu interface.\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
"\n"
-" * \"%s\": if you prefer LILO with its graphical interface.\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
-" * \"%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"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\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"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\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"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\n"
"\n"
-"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
-"are normally reserved for the expert user."
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
msgstr ""
-"Mae'r deialog yn caniatau i chi wenud mân newidiadau i'ch cychwynnwr:\n"
-"\n"
-" * \"\"%s\": mae gennych dri dewis:\n"
+"Dyma amrywiol baramedrau ynghylch eich peiriant. Yn ddibynnol ar eich\n"
+"caledwedd, mae'n bosibl i chi weld y rhain, neu beidio\n"
"\n"
-" * \"\"%s\":os mae'n well gennych grub (dewislen testun)\n"
+" *\"Llygoden\": edrychwch ar ffurfweddiad presennol y llygoden a chliciwch "
+"ar y\n"
+" botwm i'w newid os oes angen.\n"
"\n"
-" * \"\"%s\" gyda dewislen graffigol\": os mae'n well gennych LILO gyda'i\n"
-"rhagwyneb graffigol.\n"
+" *\"Bysellfwrdd\" edrychwch ar ffurfweddiad presennol y bysellfwrdd a "
+"chliciwch\n"
+"ar y\n"
+" botwm i'w newid os oes angen.\n"
"\n"
-" * \"\"%s\" gyda dewislen graffigol\": os mae'n well gennych rhagwyneb "
-"dewislen\n"
-"testun.\n"
+" *\"Cylchfa amser\" Mae DrakX, yn dyfalu eich cylchfa amser o'r iaith "
+"rydych\n"
+" wedi ei dewis. Eto fel gyda bysellfwrdd efallai nad ydych yn y wlad sy'n "
+"cyfateb i'r\n"
+" dewis iaith. Felly, mae'n bosibl y bydd angen i chi glicio ar fotwm "
+"\"Cylchfa\n"
+" amser\" i ffurfweddi'r cloc yn ôl y gylchfa amser rydych ynddi.\n"
"\n"
-" * \"%s\": yn y rhan fwyaf o achosion ni fyddwch yn newid\n"
-"y rhagosodedig (\"%s\"), ond os mae'n well gennych, gall y\n"
-"cychwynnydd gael ei osod ar yr ail ddisg caled (\"%s\"), neu hyd\n"
-"yn oed ar ddisg meddal (\"%s\")\n"
+" *\"Argraffydd\": bydd clicio ar y botwm \"Dim argraffydd\" yn agor y dewin\n"
+" ffurfweddi.\n"
"\n"
-" * \"%s\": wrth ail gychwyn y cyfrifiadur\n"
-"dyma'r oedi sy'n caniatáu i'r defnyddiwr ddewis o fewn y ddewislen "
-"cychwynnydd,\n"
-"cychwynnydd arall yn lle'r un rhagosodedig.\n"
+" *\"Cerdyn sain\": os oes cerdyn sain yn cael ei ganfod ar eich system, bydd "
+"yn\n"
+"cael ei ddangos yma. Nid oes modd creu newidiadau adeg y gosodiad.\n"
"\n"
-"!!Gofalwch, os nad ydych yn gosod llwythwr cychwyn, (drwy ddewis \"%s\" "
-"yma),\n"
-"rhaid i chi wneud yn siwr fod gennych fodd i gychwyn eich system Linux "
-"Mandrake.\n"
-"Hefyd, gwnewch yn siwr eich bod yn gwybod beth rydych yn ei wneud cyn newid "
-"y\n"
-"dewisiadau hyn!!\n"
+" *\"Cerdyn teledu\": os oes cerdyn teledu yn cael ei ganfod ar eich system, "
+"bydd\n"
+" yn cael ei ddangos yma. Nid oes modd creu newidiadau adeg y gosodiad.\n"
"\n"
-"Bydd clicio'r botwm \"%s\" yn y ddeialog yn cynnig nifer o ddewisiadau "
-"uwch,\n"
-"sydd yn cael eu cadw ar gyfer y defnyddiwr arbenigol."
+" *\"Cerdyn IDSN\":os oes cerdyn IDSN yn cael ei ganfod ar eich system, bydd\n"
+" yn cael ei ddangos yma. Mae modd clicio ar y botwm i newid y paramedrau\n"
+" cysylltiedig."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../help.pm_.c:891
msgid ""
-"if set, send the mail report to this email address else send it to root."
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
-"os wedi ei osod, anfon yr adroddiad e-bost i'r cyfeiriad e-bost neu ei anfon "
-"i'r gwraidd."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Pa ffurfweddiad XFree hoffech ei gael?"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "More"
-msgstr "Rhagor"
+"Dewiswch y ddisg galed rydych am ei ddileu er mwy n gosod eich rhaniad\n"
+"Mandrake Linux newydd. Byddwch ofalus, bydd yr holl ddata sydd arno'n\n"
+"cael ei ddileu ac ni fydd modd ei adfer!"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:896
msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"Mae hwn yn defnyddio'r un cystrawen â'r rhaglen llinell gorchymyn 'cdrecord'."
-"Byddai 'cdrecord -scanbus' hefyd yn dangos rhif y ddyfais i chi."
+"Cliciwch \"Iawn\" os ydych am ddileu'r holl ddata a rhaniadau sy'n bresennol "
+"ar y disg caled hwn. Byddwch ofalus, wedi i chi glicio \"Iawn\" ni fydd modd "
+"i chi adfer unrhyw ddata na rhaniadau presennol ar y disg caled, gan gynnwys "
+"data Windows.\n"
+"\n"
+"Cliciwch \" Diddymu\" i ddiddymu'r weithred hon heb golli unrhyw ddata a "
+"rhaniadau sy'n bresennol ar y ddisg galed."
-#: ../../security/level.pm:1
+#: ../../install2.pm_.c:111
#, 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."
+"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 ""
-"Gyda'r lefel diogelwch hwn, mae defnydd y system fel gwasanaethwr yn "
-"bosibl.\n"
-"Mae diogelwch yn ddigon uchel i ddefnyddio'r system fel gwasanaethwr sy'n "
-"derbyn\n"
-"cysylltiad gan amryw o gleientiaid. Sylwer: os maei cleient yn unig yw eich "
-"peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Server Name"
-msgstr "Enw Gwasanaethwr"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Password"
-msgstr "Cyfrinair y Cyfrif"
+"Methu cael mynediad i fodiwlau'r cnewyllyn sy'n cyfateb i'ch cnewyllyn chi "
+"(mae ffeil %s ar goll), mae hyn yn golygu, fel arfer, nad yw eich disg "
+"cychwyn yn cydweddu gyda'r cyfrwng Gosod (crëwch ddisg cychwyn meddal newydd)"
-#: ../../standalone/drakhelp:1
+#: ../../install2.pm_.c:167
#, c-format
-msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
-msgstr ""
-"Methu dangos %s \n"
-". Dim cofnod Cymorth o'r fath\n"
+msgid "You must also format %s"
+msgstr "Rhaid fformatio %s hefyd"
-#: ../../any.pm:1
+#: ../../install_any.pm_.c:423
#, 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"
+"You have selected the following server(s): %s\n"
"\n"
-"On which drive are you booting?"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
msgstr ""
-"Rydych wedi penderfynu gosod y cychwynnydd ar raniad.\n"
-"Mae hyn yn awgrymu bod gennych gychwynnydd ar ddisg caled eisoes: (ee System "
-"Commander).\n"
+"Rydych wedi dewis y gwasanaethwr(wyr) canlynol: %s\n"
"\n"
-"Gyda pha ddisg ydych chi'n cychwyn?"
+"\n"
+"Mae'r gwasanaethwyr canlynol yn cael eu cychwyn drwy ragosodiad. Nid oes "
+"ganddynt unrhyw faterion diogelwch hysbys, ond mae'n bosibl i rai ddod i'r "
+"golwg. Os felly rhaid uwchraddio gynted ag y bo modd\n"
+"\n"
+"Ydych chi wir eisiau gosod y gwasanaethwyr hyn?\n"
-#: ../../install_interactive.pm:1
+#: ../../install_any.pm_.c:441
#, c-format
msgid ""
-"WARNING!\n"
+"The following packages will be removed to allow upgrading your system: %s\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."
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-"RHYBUDD!\n"
+"Bydd y pecynnau canlynol yn cael eu tynnu ganiatáu diweddaru eich system: %"
+"s\n"
"\n"
-"Bydd DrakX yn newid maint eich rhaniad Windows. Byddwch\n"
-"ofalus: mae gwneud hyn yn beryglus. Os nad ydych wedi\n"
-"gwneud yn barod, dylech fynd allan o'r gosod, rhedeg\n"
-"\"chkdsk c:\" o'r Annogwr yn Windows (byddwch ofalus nid \n"
-"yw rhedeg \"scandisk\" yn ddigon, gwnewch yn siwr i ddefnyddio \n"
-"\"chkdsk\" o fewn Annogwr!), hefyd, defnyddiwch defrag ac ail\n"
-"gychwyn gosod. Dylech hefyd wneud copi wrth gefn\n"
-"o'ch data. Pan rydych yn siwr, cliciwch Iawn."
+"\n"
+"Ydych chi am dynnu'r pecynnau hyn?\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tajik keyboard"
-msgstr "Bysellfwrdd Tajig"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
+msgstr "Methu defnyddio darlledu heb barth NIS"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:879
#, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Rhowch ddisg meddal wedi ei fformatio i FAT yng ngyrrwr %s"
+
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
+msgstr "Nid yw 'r disg meddal hwn wedi ei fformatio i FAT"
+
+#: ../../install_any.pm_.c:895
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"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-"Mae modd i chi gopïo ffurfweddiad yr argraffydd fel wnaethoch o yspwlydd %s "
-"i %s eich yspwlydd cyfredol. Bydd yr holl ddata ffurfweddi (enw argraffydd, "
-"disgrifiad, lleoliad, math o gysylltiad a gosodiadau dewis rhagosodedig) yn "
-"cael eu trosi, ond ni fydd y gwaith argraffu'n cael eu trosi.\n"
-"Ni fydd yr holl waith argraffu'n cael eu trosi, am y rhesymau canlynol:\n"
+"I ddefnyddio'r dewis o becynnau wedi eu cadw, cychwynnwch y gosodiad gyda "
+"``linux defcfg=floppy''"
-#: ../../standalone/drakfont:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, c-format
-msgid "Font List"
-msgstr "Rhestr Ffontiau"
+msgid "Error reading file %s"
+msgstr "Gwall wrth ddarllen ffeil %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_any.pm_.c:1040
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."
+"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 ""
-"Efallai bydd angen i chi newid eich dyfais cychwyn Open Firmware\n"
-" i alluogi'r cychwynnydd. Os nad ydych yn gweld anogwr y\n"
-" cychwynnydd wrth ail gychwyn, gwasgwch Command-Option-O-F wrth ail\n"
-" gychwyn a theipiwch: setenv boot-device %s,\\\\:tbxi\n"
-" Yna teipiwch: shut-down\n"
-"Wrth gychwyn eto dylech weld anogwr y cychwynnydd."
+"Digwyddodd gwall - ni chanfyddwyd dyfeisiadau dilys i greu systemau ffeil "
+"arnynt. Gwiriwch eich caledwedd am ffynhonnell yr anhawster."
-#: ../../install_steps_interactive.pm:1
+#: ../../install_interactive.pm_.c:21
#, 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"
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"Mae'n ymddangos fod gennychbeiriant OldWorld\n"
-"neu Anhysbys ac ni fydd cychwynydd yaboot\n"
-"yn gweithio ar eich cyfer\n"
-"Bydd y gosodiad yn parhau ond bydd\n"
-"rhaid defnyddio BootX i gychwyn\n"
-"eich peiriant."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Select file"
-msgstr "Dewiswch ffeil"
+"Mae peth caledwedd ar eich cyfrifiadur angen gyrwyr \"priodol\" i weithio.\n"
+"Mae rhywfaint o wybodaeth i'w gael amdanynt yn %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:56
msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
+"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 ""
-"Dewis y rhwydwaith neu westeiwr ddylai'r argraffyddion lleol fod ar gael "
-"iddynt:"
+"Rhaid bod gennych raniad gwraidd.\n"
+"Crëwch raniad (neu glicio ar un presennol)\n"
+"Yna dewiswch weithred \"Pwynt Gosod\" a'i osod i `/'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
+msgstr "Rhaid cael rhaniad cyfnewid"
+
+#: ../../install_interactive.pm_.c:62
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"
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"Mae modd defnyddio'r gorchmynion hyn ym maes \"Gorchmynion Argraffu\" y "
-"deialogau argraffu mewn nifer o raglenni, ond yma nid ydynt yn darparu'r "
-"enw ffeil am fod y ffeil i'r argraffydd yn cael ei ddarparu gan y rhaglen.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "Siapan"
+"Nid oes gennych raniad cyfnewid\n"
+"\n"
+"Parhau beth bynnag?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print option list"
-msgstr "Rhestr ddewis argraffu"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Rhaid bod gennych raniad FAT wedi ei osod yn /boot/efi"
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-"Mae'r newid wedi ei gyflawni, ond i fod yn effeithiol mae'n rhaid i chi "
-"allgofnodi"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
+msgstr "Defnyddiwch le gwag"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
-msgstr "Gwlad"
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
+msgstr "Nid oes digon o le i ddynodi rhaniadau newydd"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search servers"
-msgstr "Chwiliwch am wasanaethwyr"
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
+msgstr "Defnyddiwch y rhaniadau cyfredol"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "Mae enw rhes NCP ar goll"
+#: ../../install_interactive.pm_.c:102
+msgid "There is no existing partition to use"
+msgstr "Nid oes rhaniad cyfredol i'w ddefnyddio"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Rhybudd, mae cysylltiad arall gyda'r rhyngrwyd wedi ei ganfod, efallai'n "
-"defnyddio eich rhwydwaith."
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
+msgstr "Defnyddiwch raniad Windows ar gyfer cylch-ôl"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom wedi ei labelu \"%s\""
+#: ../../install_interactive.pm_.c:112
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Pa raniad hoffech chi ei ddefnyddio ar gyfer Linux4Win?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr "Cyfrwng CDRW"
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
+msgstr "Dewiswch y maint"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Bydd yn cadw ac adfer system pwll entropi ar gyfer cynhyrchu rhif \n"
-"hap o ansawdd uchel."
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
+msgstr "Maint rhaniad gwraidd mewn MB :"
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr "Trowch eich peiriant i fod yn wasanaethwr dibynadwy"
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr "Maint rhaniad cyfnewid mewn MB: "
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr "Gwiriwch gyfrinair gwag y /etc/shadow."
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
+msgstr "Defnyddiwch y lle gwag ar raniad Windows"
-#: ../../network/network.pm:1
-#, c-format
-msgid " (driver %s)"
-msgstr " (gyrrwr %s)"
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
+msgstr "Pa raniad ydych chi am newid ei faint?"
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
-msgstr "Cychwyn yn ôl y gofyn"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "Mesur ffiniau system ffeilio Windows"
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
-"Loopback file(s):\n"
-" %s\n"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-"Ffeil(iau) Cylch-ôl:\n"
-" %s\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr "Dim syniad"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", gwesteiwr TCP/IP \"%s\", porth %s"
+"Nid yw'r newidiwr maint FAT yn medru trin eich rhaniad.\n"
+"digwyddodd y gwall canlynol: %s"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../install_interactive.pm_.c:137
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?"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-"Rydych ar fin ffurfweddu disg meddal Gosod Awtomatig. Mae'r nodwedd hwn "
-"braidd yn beryglus a dylid ei ddefnyddio gyda gofal.\n"
-"\n"
-"Gyda'r hodwedd hwn, bydd modd ailchwarau'r gosodiad ar y cyfrifiadur, gan "
-"eich holi'n rhyngweithiol ar gyfer rhai cammau, er mwyn newid eu "
-"gwerthoedd.\n"
-"\n"
-"Ydych chi eisiau parhau?\n"
-"?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Telugu"
-msgstr "Telugu"
+"Mae eich rhaniad Windows yn rhy ysgyriog, rhedwch \"defrag\" yn gyntaf o dan "
+"Windows ac yna ailgychwyn gosodi Mandrake Linux."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:138
msgid ""
+"WARNING!\n"
"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
+"RHYBUDD!\n"
"\n"
-"\n"
-"Mae eich cerdyn yn defnyddio'r gyrrwr %s\"%s\" ar hyn o bryd ( y gyrrwr "
-"arferol ar ei gyfer yw \"%s\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Uninstall"
-msgstr "Wedi'r dad osod"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Cysylltu â'r Rhyngrwyd"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
-msgstr " ("
+"Bydd DrakX yn newid maint eich rhaniad Windows. Byddwch\n"
+"ofalus: mae gwneud hyn yn beryglus. Os nad ydych wedi\n"
+"gwneud yn barod, dylech fynd allan o'r gosod, rhedeg\n"
+"scandisk yn Windows (ac os oes modd defrag), yna ail\n"
+"gychwyn y gosodiad. Dylech hefyd wneud copi wrth gefn\n"
+"o'ch data.Pan rydych yn siwr, cliciwch Iawn."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid level"
-msgstr "Lefel cpuid"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Pa faint o le ydych am ei gadw ar gyfer Windows ar"
-#: ../../printer/main.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Gwasanaethwr Novell \"%s\", argraffydd \"%s\""
+msgid "partition %s"
+msgstr "rhaniad %s"
-#: ../../keyboard.pm:1
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "Mongoleg (cyrillic)"
+msgid "FAT resizing failed: %s"
+msgstr "Methodd newid maint FAT: %s"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Add a module"
-msgstr "Ychwanegu modiwl"
+#: ../../install_interactive.pm_.c:171
+msgid ""
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Nid oes rhaniadau FAT i newid eu maint neu i'w defnyddio fel cylch-ôl (neu "
+"nad oes digon o le ar ôl)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr "Proffil i'w ddileu:"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr "Dileu'r ddisg gyfan"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Local measure"
-msgstr "Mesur lleol"
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr "Tynnu Windows(TM)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
-msgstr "Rhybudd : cyfeiriad IP %s wedi ei gadw fel rheol !"
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Mae gennych fwy nag un disg caled, ar ba un ydych am osod linux?"
-#: ../../mouse.pm:1
+#: ../../install_interactive.pm_.c:183
#, c-format
-msgid "busmouse"
-msgstr "busmouse"
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Bydd pob rhaniad a'u data yn cael ei ddileu ar yrrwr %s"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Creu Delwedd Cychwynnydd Galluogi Etherboot:\n"
-" \t\tI gychwyn y cnewyllyn drwy etherboot, rhaid creu delwedd "
-"cnewyllyn/initrd\n"
-" \tarbennig. Mae tmkinitrd-net yn gwneud llawer o'r gwaith ac mae "
-"drak TermServ yn \trhyngwyneb graffigol iddo i "
-"gynorthwyo rheoli/addasu'r delweddau. I greu'r ffeil\n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.dylech greu'r ddelwedd etherboot "
-"ar gyfer o leiaf un \tcnewyllyn llawn."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Mewngofnod Cyfrif (enw defnyddiwr)"
+#: ../../install_interactive.pm_.c:191
+msgid "Custom disk partitioning"
+msgstr "Rhannu disg unigol"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
-msgstr "Gwall Fdiv"
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr "Defnyddiwch fdisk"
-#: ../../network/drakfirewall.pm:1
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-"Ffurfweddwr Drakfirewall\n"
-"\n"
-"Gwnewch yn siwr eich bod wedi ffurfweddu eich mynediad\n"
-"Rhwydwaith/Rhyngrwyd gyda Drakconnect cyn mynd ymhellach."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr "Derbyn darllediad atsain icmp"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr "Uruguay"
+"Medrwch rannu %s\n"
+"Wedi gorffen, peidiwch anghofio cadw gyda 'w'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Benin"
-msgstr "Benin"
+#: ../../install_interactive.pm_.c:227
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Does gennych ddim digon o le rhydd ar eich rhaniad Windows"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "Gwasanaethwr SMB/Windows \"%s\", rhannu \"%s\""
+#: ../../install_interactive.pm_.c:243
+msgid "I can't find any room for installing"
+msgstr "Methu canfod lle ar gyfer gosod"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path selection"
-msgstr "Dewis llwybr"
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Daeth dewin Rhannu DrakX o hyd i'r atebion canlynol:"
-#: ../../standalone/scannerdrake:1
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid "Name/IP address of host:"
-msgstr "Enw/cyfeiriad IP gwesteiwr"
+msgid "Partitioning failed: %s"
+msgstr "Methodd rhannu: %s"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr "Cychwyn y rhwydwaith"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom & system settings"
-msgstr "Gosodiadau addasu a system"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr "Cau'r rhwydwaith"
-#: ../../partition_table/raw.pm:1
-#, c-format
+#: ../../install_steps.pm_.c:76
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."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"Mae rhywbeth gwael yn digwydd ar eich disg.\n"
-"Mae prawf i fesur ei gyfanrwydd wedi methu. \n"
-"Nid oes gwerth ysgrifennu i'r ddisg"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Mae enw'r gwesteiwr argraffu neu IP ar goll!"
+"Digwyddodd gwall ond wn i ddim sut i ddelio ag ef yn dwt.\n"
+"Mae'n beryglus i barhau."
-#: ../../standalone/drakbackup:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Gwiriwch pob ddefnyddiwr rydych am eu cynnwys yn eich cadw wrth gefn."
+msgid "Duplicate mount point %s"
+msgstr "Pwynt gosod dyblyg %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps.pm_.c:380
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+"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 ""
-"Rhaid i %s gael ei ffurfweddu gan printerdrake.\n"
-"Medrwch gychwyn printerdrake o adran Galedwedd Canolfan Rheoli Mandrake"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Key isn't writable"
-msgstr "Nid yw'r allwedd yn ysgrifenadwy"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bangladesh"
-msgstr "Bangladesh"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
-msgstr "Siapan (cable)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Initial tests"
-msgstr "Prawf Init"
+"Methodd rhai pecynnau pwysig a chael eu gosod yn gywir.\n"
+"Un ai mae eich gyrrwr CD-ROM neu eich CD-ROM yn wallus.\n"
+"Gwiriwch y CD-ROM ar gyfrifiadur wedi ei osod gan ddefnyddio \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
-#: ../../network/isdn.pm:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "Continue"
-msgstr "Parhau"
+msgid "Welcome to %s"
+msgstr "Croeso i %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom Restore"
-msgstr "Adfer Dewisol"
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr "Does dim gyrrwr disg meddal ar gael"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "Saturday"
-msgstr "Sadwrn"
+msgid "Entering step `%s'\n"
+msgstr "Cychwyn cam '%s\"\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:146
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."
+"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 ""
-"\"%s\": os yw cerdyn sain yn cael ei ganfod ar eich cyfrifiadur, bydd \n"
-"yn cael ei ddangos yma. Os ydych yn sylwi nad y cerdyn sain sydd ar eich\n"
-"cyfrifiadur sy'n cael ei ddangos, yna cliciwch ar y botwm a dewis\n"
-"gyrrwr arall."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the root umask."
-msgstr "Gosod gwraidd umask."
-
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "Gwall wrth ddarllen ffeil %s"
+"Mae eich system yn brin o adnoddau. Efallai y cewch anhawsterau wrth osod\n"
+"Mandrake Linux. Os bydd hynny'n digwydd, gallwch geisio gwneud gosodiad\n"
+"testunol. I wneud hynny, gwasgwch F1 wrth gychwyn ar y CD-ROM ac yna rhoi "
+"'text'."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr "Seiliedig ar sgript"
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr "Gosod Dosbarth"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "PLL setting:"
-msgstr "Gosodiad PLL:"
+#: ../../install_steps_gtk.pm_.c:160
+msgid "Please choose one of the following classes of installation:"
+msgstr "Dewiswch un o'r dosbarthiadau canlynol o osodiad::"
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Rhaid bod gennych raniad FAT wedi ei osod yn /boot/efi"
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
+msgstr "Dewis y Grwp Pecyn"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
-msgstr "ar "
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
+msgstr "Dewis pecynnau unigol."
-#: ../../diskdrake/dav.pm:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid "The URL must begin with http:// or https://"
-msgstr "Rhaid i'r URL gychwyn gyda http:// neu https://"
+msgid "Total size: %d / %d MB"
+msgstr "Cyfanswm maint: %d/%d MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Medrwch enwi'n benodol URI i gael mynediad i'r argraffydd. Rhaid i'r URI "
-"gyflawni manylyn un ai CUPS neu Foomatic. Sylwer nad yw pob math o URI cyn "
-"cael eu cynnal gan bob sbwlydd ."
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
+msgstr "Pecyn gwallus"
-#: ../../any.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "Systemau Gweithredu eraill (SunOS..)"
+msgid "Name: %s\n"
+msgstr "Enw: %s\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid "Install/Upgrade"
-msgstr "Gosod/Diweddaru"
+msgid "Version: %s\n"
+msgstr "Fersiwn: %s\n"
-#: ../../install_steps_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid "%d packages"
-msgstr "%d pecyn"
+msgid "Size: %d KB\n"
+msgstr "Maint: %d KB\n"
-#: ../../crypto.pm:1 ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
-msgid "Costa Rica"
-msgstr "Costa Rica"
+msgid "Importance: %s\n"
+msgstr "Pwysigrwydd: %s\n"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:360
msgid ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Backup and Restore application\n"
-"\n"
-"--default : save default directories.\n"
-"--debug : show all debug messages.\n"
-"--show-conf : list of files or directories to backup.\n"
-"--config-info : explain configuration file options (for non-X "
-"users).\n"
-"--daemon : use daemon configuration. \n"
-"--help : show this message.\n"
-"--version : show version number.\n"
-msgstr ""
-"[--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"
+"You can't select this package as there is not enough space left to install it"
+msgstr "Nid oes modd i chi ddewis y pecyn hwn - does dim lle ar ol i'w osod"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain Authentication Required"
-msgstr "Angen Dilysu Parth"
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
+msgstr "Mae'r pecynnau canlynol i'w gosod"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Use libsafe for servers"
-msgstr "Defnyddiwch libsafe ar gyfer gwasanaethwyr"
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
+msgstr "Bydd y pecynnau canlynol yn cael eu tynnu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Icelandic"
-msgstr "Eislandaidd"
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
+msgstr "Does dim modd i chi ddewis/dad-ddewis y pecyn"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
-msgstr ""
-"\n"
-"Defnydd: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Mae hwn yn becyn hanfodol, does dim modd ei ddad-ddewis"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
+msgstr "Does dim mod dad-ddewis y pecyn, mae wedi ei osod yn barod"
+
+#: ../../install_steps_gtk.pm_.c:395
msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
-"Rhowch y maint mwyaf\n"
-" i'w ganiatáu ar gyfer Drakbackup (MB)"
+"Rhaid i'r pecyn gael ei uwchraddio\n"
+"Ydych chi'n siwr eich bod am ei ddad-ddewis?"
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Gosodiadau cylch %s\n"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "Does dim mod dad-ddewis y pecyn hwn. Rhaid ei ddiweddaru"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo/grub mode"
-msgstr "Modd Lilo/grub"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
+msgstr "Dangoswch y pecynnau dewis awtomatig"
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "Martinique"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr "Gosodiad"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Disg Caled / NFS"
+#: ../../install_steps_gtk.pm_.c:407
+msgid "Load/Save on floppy"
+msgstr "LLwytho/Cadw ar ddisg meddal"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Old user list:\n"
-msgstr "Rhestr hen ddefnyddiwr:\n"
+#: ../../install_steps_gtk.pm_.c:408
+msgid "Updating package selection"
+msgstr "Diweddaru'r dewis pecynnau"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
-msgstr "Chwilio Copïau wrth Gefn"
+#: ../../install_steps_gtk.pm_.c:413
+msgid "Minimal install"
+msgstr "Gosodiad lleiaf"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "a number"
-msgstr "rhif"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
+msgstr "Dewiswch y pecynnau hoffech chi eu gosod"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "Swedaidd"
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr "Gosod"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Pa yrrwr %s ddylwn drio?"
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr "Amcangyfrif"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr "Byddwch yn derbyn rhybudd os na fydd un o'r gwasanaethu hyn yn rhedeg"
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr "Amser yn weddill"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Weekday"
-msgstr "Diwrnod yr wythnos"
+#: ../../install_steps_gtk.pm_.c:469
+msgid "Please wait, preparing installation..."
+msgstr "Arhoswch, paratoi'r gosodiad"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid "Filesystem types:"
-msgstr "Mathau o system ffeiliau:"
+msgid "%d packages"
+msgstr "%d pecyn"
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "Northern Mariana Islands"
-msgstr "Ynysoedd Gogledd Mariana"
+msgid "Installing package %s"
+msgstr "Gosod pecynnau %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", dyfais amlbwrpas ar HP JetDirect"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "Derbyn"
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "dim"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
+msgstr "Gwrthod"
-#: ../../standalone/drakconnect:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
+"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 ""
-"Enw'r proffil i'w greu ( mae'r proffil newydd yn cael ei greu fel copi o'r "
-"un cyfredol):"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Floppy"
-msgstr "Disg Meddal"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "cyfeirio Ghostscript"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Bootloader"
-msgstr "Cychwynnydd ar waith"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
-msgstr "Awdurdodi pob gwasanaeth wedi ei reoli gan tcp_wrappers"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "Symud"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Bootloader to use"
-msgstr "Bootloader ar waith"
+"Newidiwch eich CD-ROM\n"
+"\n"
+"Rhowch yr CD-ROM sydd wedi ei labeli \"%s\" yn eich gyrrwr a chlicio Iawn\n"
+"Os nad yw gennych, cliciwch Dileu i osgoi gosod o'r CD-ROM hwn."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "Gwasanaethwr gwesteiwr SMB"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
+msgstr "Mynd yn ein blaen beth bynnag?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Name Servers:"
-msgstr "Enwi Gwasanaethwr:"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
+msgstr "Roedd gwall wrth drefnu pecynnau"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Minute"
-msgstr "Munud"
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
+msgstr "Digwyddodd gwall wrth osod pecyn"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:10
msgid ""
"\n"
"Warning\n"
@@ -7342,7 +5082,7 @@ msgstr ""
" Rhybudd\n"
"\n"
"Darllenwch yr amodau isod yn ofalus. Os ydych yn anghytuno gydag unrhyw\n"
-" ddarn, nid oes caniatâd i chi osod y cyfrwng CD nesaf. Pwyswch 'Gwrthod' i\n"
+" ddarn, nid oes caniatâd i chi osod y cyfrwng CD nesaf. Pwyswch 'Gwrthod' i\n"
" barhau'r gosodiad heb ddefnyddio'r cyfryngau hyn.\n"
"\n"
"Nid yw rhai cydrannau ar y CDau canlynol yn cael eu rheoli gan Drwydded GPL\n"
@@ -7351,16 +5091,16 @@ msgstr ""
" trwyddedau penodol cyn defnyddio neu ddosbarthu'r cydrannau hynny.\n"
"\n"
"Mae'r trwyddedau hynny'n atal yn gyffredinol, drosglwyddiad, dyblygu (ar "
-"wahân i\n"
+"wahân i\n"
" bwrpas cadw wrth gefn), dosbarthu, cildroi peirianyddol, dadcydosod,\n"
" dadgrynhoi neu newid y cydrannau. Bydd unrhyw dorri ar yr amodau hyn yn\n"
"terfynu eich hawl o dan y drwydded benodol. Oni bai ei fod yn rhoi'r hawl i "
"chi,\n"
"nid oes modd i chi osod y rhaglenni ar fwy nag un system na'i addasu ar "
"gyfer\n"
-" defnydd ar rwydwaith. Os oes amheuaeth, cysylltwch yn uniongyrchol â\n"
+" defnydd ar rwydwaith. Os oes amheuaeth, cysylltwch yn uniongyrchol â\n"
"dosbarthwr neu olygydd y cydrannau hynny.\n"
-"Mae trosglwyddo i drydydd parti neu gopïo'r cydrannau hynny gan gynnwys y\n"
+"Mae trosglwyddo i drydydd parti neu gopïo'r cydrannau hynny gan gynnwys y\n"
" ddogfennaeth, wedi ei wahardd fel rheol\n"
"\n"
"Mae pob hawl i gydrannau'r cyfrwng CD nesaf yn perthyn i' hawduron "
@@ -7369,4455 +5109,3754 @@ msgstr ""
"sy'n\n"
" berthynol i raglenni meddalwedd.\n"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Expert mode"
-msgstr "/_Modd Uwch"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Tynnwch yr argraffydd hwn o Star Office/OpenOffice.org/GIMP"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Mae Gwasanaethwr Rhith Linux yn cael ei ddefnyddio i adeiladu \n"
-"gwasanaethwyr cyflym a chyraeddadwy."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr "Micronesia"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 biliwn o liwiau (32 did)"
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
+msgstr "Digwyddodd gwall"
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
-msgstr "Trwydded"
+#: ../../install_steps_interactive.pm_.c:85
+msgid "Do you really want to leave the installation?"
+msgstr "Ydych chi wir eisiau gadael y gosodiad?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "Bydd hyn yn cymryd amser i gynhyrchu'r allweddi"
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
+msgstr "Cytundeb trwyddedu"
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
+"Introduction\n"
"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
-"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"
+"1. License Agreement\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"
+"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"
-"<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"
+"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"
-"<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"
+"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"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
"\n"
+"3. The GPL License and Related Licenses\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"
+"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"
-"<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"
+"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 ""
-"Dyma'r fan i osod lefel diogelwch a gweinyddiad eich system\n"
+"Cyflwyniad\n"
"\n"
+"Bydd y system weithredu a'r cydrannau gwahanol sydd o fewn dosbarthiad "
+"Mandrake Linux yn\n"
+"cael eu galw yn \"Gynnyrch Meddalwedd\" o hyn ymlaen. Mae'r Cynnyrch "
+"Meddalwedd yn\n"
+"cynnwys, ond heb eu cyfyngu, i'r casgliad o raglenni , dulliau, rheolau a "
+"dogfennau mewn\n"
+"perthynas â'r system weithredu a chydrannau gwahanol dosbarthiad Mandrake "
+"Linux.\n"
"\n"
-"Y Gweinyddwr Diogelwch yw'r un fydd yn derbyn y rhybuddion diogelwch os "
-"yw'r\n"
-"dewis 'Rhybudd Diogelwch' wedi ei osod. Gall fod yn enw defnyddiwr neu e-"
-"bost.\n"
"\n"
+"1. Cytundeb Trwyddedu\n"
"\n"
-"Mae'r dewislen Lefel Diogelwch yn caniatáu i chi ddewis un o'r lefelau "
-"diogelwch ragosodedig\n"
-"ddarparwyd gan msec. Mae'r lefelau yn amrywio o ddiogelwch gwan ac hawdd ei "
-"ddefnyddio, i\n"
-"safon paranoia, sy'n addas ar gyfer rhaglenni gwasnaethwr sensitif:\n"
+"Darllenwch y ddogfen hon yn ofalus. Mae'r ddogfen hon yn gytundeb trwyddedu "
+"rhyngoch\n"
+"chi â MandrakeSoft S.A,. sy'n berthnasol i'r Cynnyrch Meddalwedd.\n"
"\n"
+"Wrth osod, dyblygu neu ddefnyddio'r Cynnyrch Meddalwedd mewn unrhyw fodd, "
+"rydych yn\n"
+"amlwg yn derbyn ac yn llawn cytuno i gadw at delerau ac amodau'r Drwydded "
+"hon.\n"
+"Os ydych yn anghytuno ag unrhyw rhan o'r cytundeb, ni chewch ganiatâd i "
+"osod, dyblygu\n"
+"neu ddefnyddio'r Cynnyrch Meddalwedd.\n"
+"Bydd unrhyw ymgais i osod, dyblygu neu ddefnyddio'r Cynnyrch Meddalwedd mewn "
+"modd\n"
+"nad yw'n cyd-fynd â thelerau ac amodau'r Drwydded yn ddi-rym a bydd yn "
+"terfynu eich\n"
+"hawliau o dan y Drwydded hon. Ar ddiwedd y Drwydded, rhaid i chi "
+"ddinistrio'n syth pob\n"
+"copi o'r Cynnyrch Meddalwedd.\n"
"\n"
-"<span foreground=\"royalblue3\">Gwan</span>: Mae'n hollol anniogel ond yn "
-"hawdd iawn i'w\n"
-"ddefnyddio. Dim ond ar gyfer peiriannau had ydynt wei eu cysylltu ag unrhyw "
-"rwydwaith ac nad\n"
-"ydynt ar agor i bawb\n"
"\n"
+"2. Gwarant Gyfyngedig\n"
"\n"
-"<span foreground=\"royalblue3\">Safonnol</span>:Dyma'r diogelwch safonnol ar "
-"gyfer\n"
-"cyfrifiadur sy'n gysylltiedig â'r rhyngrwyd fel cleient.\n"
+"Mae'r Cynnyrch Meddalwedd a'r ddogfennaeth gysylltiedig yn cael eu darparu "
+"\"fel ag y maent\",\n"
+"heb ddim gwarant, hyd y mae'r gyfraith yn caniatáu.\n"
+"Ni fydd MandrakeSoft S.A. yn gyfrifol, o dan unrhyw amgylchiad, a chyhyd ag "
+"y bydd y gyfraith yn\n"
+"caniatáu, am unrhyw iawn o gwbl, arbennig, damweiniol, uniongyrchol neu "
+"anuniongyrchol (gan\n"
+"gynnwys heb gyfyngu ar iawndal am golli busnes, tarfu ar fusnes, colled "
+"ariannol, costau cyfreithiol,\n"
+"a chosb o ganlyniad i achos llys, neu unrhyw golled o ganlyniad) yn codi o'r "
+"defnydd neu'r anallu i\n"
+"ddefnyddio'r Cynnyrch Meddalwedd, hyd yn oed os yw MandrakeSoft wedi eu "
+"cynghori o'r posibilrwydd\n"
+"o'r fath iawn.\n"
"\n"
+"CYFRIFOLDEB CYFYNGEDIG YN GYSYLLTIEDIG GYDA'R MEDDIANT NEU'R DEFNYDD O "
+"FEDDALWEDD\n"
+" GWAHARDDEDIG MEWN RHAI GWLEDYDD\n"
"\n"
-"<span foreground=\"royalblue3\">Uchel</span>:Mae yna rhai cyfyngiadau,\n"
-"ac mae gwiriadau awtomatig ychwanegol yn cael eu rhedeg bob nos.\n"
+"Ni fydd MandrakeSoft S.A. yn gyfrifol, o dan unrhyw amgylchiad, a chyhyd y "
+"bydd y gyfraith yn caniatáu,\n"
+"i fod yn atebol am unrhyw iawn o gwbl, arbennig, damweiniol, uniongyrchol "
+"neu anuniongyrchol (gan gynnwys\n"
+"heb gyfyngu ar iawndal am golli busnes, tarfu ar fusnes, colled ariannol, "
+"costau cyfreithiol, a chosb o ganlyniad\n"
+"i achos llys, neu unrhyw golled o ganlyniad) yn codi o lwytho i lawr "
+"cydrannau meddalwedd o un o safleoedd\n"
+" Mandrake Linux, sydd wedi eu gwahardd neu eu hatal mewn rhai gwledydd gan "
+"gyfreithiau lleol. Mae'r\n"
+"cyfrifoldeb cyfyngedig hwn yn perthyn i , ond heb ei gyfyngu i'r, cydrannau "
+"cryptograffiaeth cryf sy'n cael\n"
+"eu cynnwys o fewn y Cynnyrch Meddalwedd.\n"
+"3. Trwydded GPL a Thrwyddedau Cysylltiedig\n"
"\n"
+"Mae'r Cynnyrch Meddalwedd yn cynnwys cydrannau sydd wedi eu creu gan "
+"bersonau a endidau gwahanol.\n"
+"Mae'r rhan fwyaf o'r cydrannau hyn yn cael eu llywodraethu gan dermau ac "
+"amodau Trwydded Gyhoeddus\n"
+"Cyffredinol (General Public Licence (GPL)), GNU, fydd yn cael ei gyfeirio "
+"ato o hyn ymlaen fel \"GPL\", neu\n"
+"drwyddedau cyffelyb.. Mae'r rhan fwyaf o'r trwyddedau'n caniatáu i chi "
+"ddefnyddio, dyblygu, addasu neu\n"
+" ailddosbarthu'r cydrannau maent yn eu cynnwys. Darllenwch delerau ac amodau "
+"trwydded pob cydran cyn\n"
+"eu defnyddio. Dylai pob cwestiwn am drwydded cydran gael ei ofyn i awdur y "
+"gydran ac nid i MandrakeSoft.\n"
+"Mae'r rhaglenni ddatblygwyd gan MandrakeSoft yn cael eu llywodraethu o dan "
+"Drwydded GLP. Mae'r dogfennau\n"
+" ysgrifennwyd gan MandrakeSoft S.A. yn cael eu llywodraethu gan drwydded "
+"benodol. Darllenwch y dogfennau\n"
+"am fwy o fanylion.\n"
"\n"
-"<span foreground=\"royalblue3\">Uwch</span>: Mae'r diogelwch yn ddigon "
-"uchel\n"
-"i ddefnyddio'r system fel gwasanaethwr sy'n gallu derbyn cysylltiadau gna "
-"llawer o\n"
-"gleientiaid. Os mai eich peiriant chi yw'r unig gleient ar i Fewnrwyd, "
-"dylech ddefnyddio lefel is.\n"
+"4. Hawliau Eiddo Deallusol\n"
"\n"
+"Mae pob hawl cydrannau'r Cynnyrch Meddalwedd yn perthyn i'w hawduron "
+"perthnasol ac wedi eu hamddiffyn\n"
+"gan gyfreithiau eiddo deallusol a hawlfraint sy'n berthnasol i raglenni "
+"meddalwedd. Mae MandrakeSoft yn cadw\n"
+"ei hawl i newid neu addasu ei Gynnyrch Meddalwedd, yn rhannol neu yn gyfan, "
+"drwy unrhyw ddull ac ar gyfer\n"
+"unrhyw bwrpas. Mae \"Mandrake\", \"Mandrake Linux\" a'r logos cysylltiedig "
+"yn nodau masnachol sy'n\n"
+"perthyn i MandrakeSoft S.A.\n"
"\n"
-"<span foreground=\"royalblue3\">Paranoia</span>. Mae'n debyg i'r lefel "
-"blaenorol ond mae'r\n"
-"system yn hollol gaeëdig ac mae'r nodfwediddion diogelwch ar eu heithaf."
+"5. Cyfreithiau Llywodraethol\n"
+"Os bydd unrhyw rhan o'r cytundeb hwn yn cael ei ddal yn ddi-rym, "
+"anghyfreithlon neu amherthnasol gan\n"
+"benderfyniad llys, bydd y rhan yma'n cael ei dynnu o'r cytundeb hwn. Byddwch "
+"yn parhau i fod yn rhwymedig\n"
+"i adrannau cymwys o'r cytundeb.\n"
+"Mae telerau ac amodau'r Drwydded hon yn cael eu llywodraethu gan Cyfreithiau "
+"Ffrainc. Mae'n ddymunol y\n"
+"bydd pob anghytundeb ar amodau'r drwydded yn cael eu datrys y tu allan i'r "
+"llys. Fel cam olaf, bydd yranghytundeb yn cael ei drosglwyddo i'r Llysoedd "
+"Barn, Paris - Ffrainc. Am unrhyw gwestiwn ynghylch yddogfen hon cysylltwch â "
+"MandrakeSoft S.A. \n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr "Awtoganfod argraffydd (Argraffyddion lleol, TCP/Socket, ac SMB)"
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
+msgstr "Ydych chi'n siwr eich bod am wrthod y drwydded?"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr "USB Sagem (defnyddio pppoa)"
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "Allweddell"
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"Digwyddodd gwall - ni chanfyddwyd dyfeisiau dilys i greu systemau ffeil "
-"arnynt. Gwiriwch eich caledwedd am ffynhonnell yr anhawster."
+#: ../../install_steps_interactive.pm_.c:218
+msgid "Please choose your keyboard layout."
+msgstr "Dewiswch gynllun eich alweddell"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Cychwyn y system argraffu wrth gychwyn y cyfrifiadur"
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
+msgstr "Dyma restr lawn o'r allweddellau ar gael"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Ydych chi eisiau agor y cysylltiad wrth gychwyn y cyfrifiadur?"
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
+msgstr "Pa ddosbarth o osodiad ydych chi ei eisiau?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr "Dynodiad Prosesydd"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
+msgstr "Gosod/Diweddaru"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr "Datrys problemau sain"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
+msgstr "Ydi hwn yn osodiad neu diweddariad?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "Pwylaidd (gosodiad qwerty)"
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr "Argymhellwyd"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Ychwanegu Argraffydd"
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Arbennigwr"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-"\n"
-"Gweithgaredd Drakbackup drwy CD:\n"
-"\n"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade"
+msgstr "Diweddaru"
-#: ../../printer/printerdrake.pm:1
-#, 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?"
-msgstr ""
-"Rydych ar fin gosod system argraffu %s ar system sy'n rhedeg lefel diogelwch "
-"%s. \n"
-"\n"
-"Mae'r system yn rhedeg daemon (proses gefndirol) sy'n aros am waith argraffu "
-"ac yna yn eu trin. Mae'r daemon hefyd yn gyraeddadwy gan beiriannau pell "
-"drwy'r rhwydwaith ac felly'n bwynt ymosod. Felly, dim ond ychydig o "
-"ddaemonau sy'n cael eu cychwyn yn rhagosodedig, ar y lefel diogelwch hwn.\n"
-"\n"
-"Ydych chi wir eisiau ffurfweddu argraffu ar y peiriant hwn?"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade packages only"
+msgstr "Diweddaru'r pecynnau'n unig"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr ",Gwesteiwr \"%s\", porth %s"
+#: ../../install_steps_interactive.pm_.c:282
+msgid "Please choose the type of your mouse."
+msgstr "Dewiswch math eich llygoden"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "Nid oes modd defnyddio'r rhaniad ar gyfer cylch-ôl"
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr "Porth Llygoden"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr "Mae'r ffeil yn bodoli eisoes. Defnyddiwch hwn?"
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
+msgstr "Dewiswch ba borth cyfresol mae eich llygoden wedi cysylltu iddi"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
-msgstr "derbyniwyd:"
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
+msgstr "Efelychiad botymau"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr "Bysell Alt dde"
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
+msgstr "Efelychiad Botwm 2"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "rhestr o yrrwr eraill ar gyfer eich cerdyn sain"
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
+msgstr "Efelychiad Botwm 3"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Mynedfa"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr "Ffurfweddu cardiau PCMCIA..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr "Tonga"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "Tunisia"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr "Ffurfweddu IDE"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing"
-msgstr "Rhannu sganiwr"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile: "
-msgstr "Proffil:"
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr "dim rhaniadau ar gael"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
+msgstr "Sganio rhaniadau i ganfod pwyntiau gosod"
+
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr "Dewiswch y pwyntiau gosod"
+
+#: ../../install_steps_interactive.pm_.c:386
msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr "Cliciwch ar ddyfais yn y goeden chwith i gael at ei wybodaeth"
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
+msgstr ""
+"Nid oes lle rhydd ar gyfer yr ymlwythwr 1MB! Bydd y gosodiad yn parhau, ond "
+"i gychwyn y system bydd rhaid i chi greu rhaniad ymlwythwr yn DiskDrake"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr "Caniatáu Gwrthod awtomewngofnodi."
+#: ../../install_steps_interactive.pm_.c:395
+msgid "No root partition found to perform an upgrade"
+msgstr "Ni chanfyddwyd rhaniad gwraidd i wneud diweddariad"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
-msgstr "Nid yw XawTV wedi ei osod!"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr "Rhaniad Gwraidd"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Peidio cynnwys ffeiliau hanfodol (passwd, group, fstab)"
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr "Beth yw'r rhaniad gwraidd (/) ar eich system?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "hen enw dyfais sefydlog yn cael ei ddefnyddio mewn pecyn dev"
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+"Bydd angen i chi ail gychwyn cyn i'r newidiadau yn eich tabl rhaniad ddigwydd"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
-msgstr "Galluogi mewngofnodi pecynnau anarferol IPv4."
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr "Dewiswch y rhaniadau rydych am eu fformatio"
-#: ../../any.pm:1
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
+msgstr "Gwirio blociau gwallus?"
+
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr "Yn fformatio rhaniadau"
+
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid "This label is already used"
-msgstr "Mae'r label hwn yn cael ei ddefnyddio eisoes"
+msgid "Creating and formatting file %s"
+msgstr "Creu a fformatio ffeil %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:470
#, 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."
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-"\n"
-"Croeso i'r Dewin Gosod Argraffydd\n"
-"\n"
-"Bydd y dewin yn eich cynorthwyo i osod argraffydd(ion) sydd wedi eu cysylltu "
-"â'r cyfrifiadur hwn, yn gysylltiedig â'r rhwydwaith.\n"
-"\n"
-"Os oes gennych argraffydd(ion) yn gysylltiedig â'r peiriant, cysylltwch nhw "
-"â'r peiriant a'u troi nhw mlaen fel bod modd awtoganfod. Hefyd rhaid i "
-"argraffydd(ion) rhwydwaith a'ch peiriannau Windows fod wedi eu cysylltu ac "
-"ymlaen.\n"
-"\n"
-"Sylwer bod awtoganfod argraffyddion ar rwydwaith yn cymryd mwy o amser nag "
-"awtoganfod argraffyddion sy'n gysylltiedig â'r peiriant hwn. Felly, "
-"diffoddwch awto ganfod rhwydwaith pan nad oes mo'i angen.\n"
-"\n"
-"Cliciwch \"Nesaf\" pan ydych yn barod, a \"Diddymu\" os nad ydych am osod "
-"eich argraffydd(ion) ar hyn o bryd."
+"Wedi methu gwirio system ffeiliau %s. Hoffech chi drwsio'r gwallau? (gofal, "
+"mae modd colli data)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
-msgstr "Groeg (polytonic)"
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Dim digon o le cyfnewid i gyflawni'r gosodiad, ychwanegwch rhagor"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
+#: ../../install_steps_interactive.pm_.c:479
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
-"Wedi fformatio rhaniad %s, bydd yr holl ddata ar y rhaniad yn cael ei golli"
+"Chwilio am y pecynnau sydd ar gael ac yn ailadeiladu cronfa ddata rpm..."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection Time: "
-msgstr "Amser Cysylltiad:"
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr "Chwilio am y pecynnau sydd ar gael"
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Looking at packages already installed..."
+msgstr "Edrych arbecynnau wedieu gosod yn barod"
+
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr "Canfod pecynnau i'w uwchraddio"
-#: ../../standalone/livedrake:1
+#: ../../install_steps_interactive.pm_.c:505
#, 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."
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
-"Rhowch y CD Gosod yn eich gyrwr a chlicio Iawn ar ôl gorffen\n"
-"Os nad yw gennych, cliciwch Dileu i osgoi diweddaru."
+"Nid oes gan eich system ddigon o le ar ôl ar gyfer gosodiad neu uwchraddiad "
+"(%d> %d)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use group id for execution"
-msgstr "Defnyddio enw grwp i weithredu"
+#: ../../install_steps_interactive.pm_.c:541
+msgid ""
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
+msgstr ""
+"Dewiswch llwytho neu ddewis cadw pecyn ar ddisg meddal.\n"
+"Mae'r fformat yr un ar ddisgiau meddal wedi eu cynhyrchu drwy auto_install."
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "Dewis y defnyddiwr rhagosodedig:"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Load from floppy"
+msgstr "Llwytho o o ddisg meddal"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "Gabon"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr "Cadw ar ddisg meddal"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Loading from floppy"
+msgstr "Llwytho o ddisg meddal"
+
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Package selection"
+msgstr "Dewis pecynnau"
+
+#: ../../install_steps_interactive.pm_.c:552
+msgid "Insert a floppy containing package selection"
+msgstr "Rhowch ddisg meddal yn cynnwys dewis pecynnau yn y peiriant"
+
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
+msgstr "Mae'r maint ddewiswyd yn fwy na'r lle ar gael"
+
+#: ../../install_steps_interactive.pm_.c:649
+msgid "Type of install"
+msgstr "Math o osodiad"
+
+#: ../../install_steps_interactive.pm_.c:650
msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
msgstr ""
-"\n"
-"Nid oes angen ffurfweddu argraffyddion ar wasanaethwyr CUPS pell: byddant yn "
-"cael eu canfod yn awtomatig."
+"Nid ydych wedi dewis unrhyw grwpiau o becynnau.\n"
+"Dewiswch y gosodiad lleiaf rydych ei eisiau"
-#: ../../any.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:653
+msgid "With X"
+msgstr "Gyda X"
+
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
+msgstr "Gyda dogfennaethelfennol (argymhellir!)"
+
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Gosodiad bychan iawn (yn arbennig dim urpmi)"
+
+#: ../../install_steps_interactive.pm_.c:741
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."
+"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 ""
-"Gallwch ddewis ieithoedd eraill fydd ar gael ar ôl gosod. Dewiswch\n"
-"pa iaith yr hoffech ei osod. Byddant ar gael pan fydd eich gosodiad\n"
-"wedi ei gwblhau a phan fyddwch yn ailgychwyn eich system."
+"Os yw'r holl CDau sydd yn y rhestr gennych, cliciwch Iawn.\n"
+"Os nad oes gennych un ohonynt, Cliciwch Diddymu.\n"
+"Os mae dim ond rhai CDau sydd ar goll, yna cliciwch Iawn."
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:746
#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr "Cyfeiriadur (neu fodiwl) i osod y cadw wrth gefn ar y gwesteiwr."
+msgid "Cd-Rom labeled \"%s\""
+msgstr "Cd-Rom wedi ei labelu \"%s\""
+
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr "Paratoi'r gosodiad"
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../install_steps_interactive.pm_.c:776
#, c-format
-msgid "Domain"
-msgstr "Parth"
+msgid ""
+"Installing package %s\n"
+"%d%%"
+msgstr ""
+"Gosod pecyn %s\n"
+"%d%%"
+
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
+msgstr "Ffurfweddiad ôl osod"
-#: ../../any.pm:1
+#: ../../install_steps_interactive.pm_.c:828
#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Union faint o RAM os oes angen (canfod %dMB)"
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Mewnosodwch y disg meddal Cychwyn ddefnyddiwyd yn gyrrwr %s"
-#: ../../help.pm:1
+#: ../../install_steps_interactive.pm_.c:834
#, c-format
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "Rhowch y disg meddal Diweddaru Modiwlau yng ngyrrwr %s"
+
+#: ../../install_steps_interactive.pm_.c:861
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"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
-"If it cannot make a determination, DrakX will ask you where to place the\n"
-"bootloader."
+"Do you want to install the updates ?"
msgstr ""
-"Cychwynnydd GNU/Linux yw LILO a grub. Fel rheol mae'r rhan yma'n\n"
-"digwydd yn awtomatig. Bydd DrakX yn dadansoddi'r adran cychwyn\n"
-"disg a gweithredu yn â'r yr hyn mae'n ei ganfod yno.\n"
-"\n"
-" *os yw'n canfod adran cychwyn Windows, bydd yn ei amnewid gyda\n"
-"adran cychwyn grub/LILO. O ganlyniad bydd modd i chi gychwyn un\n"
-"ai GNU/Linux neu system arall.\n"
+"Mae'n bosibl i chi llwytho i lawr y pecynnau diweddaraf sydd wedi eu\n"
+"ryddhau ers i'r dosbarthiad fod ar gael.\n"
"\n"
-" *os fydd adran gychwyn grub neu LILO'n cael ei ganfod bydd yn ei\n"
-"amnewid gydag un mwy diweddar.\n"
+"Medrwch gael atgyweiriadau diogelwch a gwallau ond mae'n rhaid i\n"
+"chi fod wedi cysyllu â'r Rhyngrwyd i barhau.\n"
"\n"
-"Os nad yw'n medru penderfynu, bydd DrakX yn gofyn i chi lle i osod\n"
-"y cychwynnydd."
+"Ydych chi am osod y diweddariadau?"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "Dns 2 y darparwr (dewisol)"
+#: ../../install_steps_interactive.pm_.c:876
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgstr ""
+"Cysylltu â'safle Mandrake Linux i estyn rhestr o'r drychau sydd ar gael"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "Dyfais cychwyn"
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
+msgstr "Dewiswch ddrych lle mae modd estyn y pecynnau"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Pa raniad ydych chi am newid ei faint?"
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Cysylltu â'r drych i estyn y rhestr o becynnau sydd ar gael"
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr "United States Minor Outlying Islands"
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr "Pa un yw eich parth amser?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Djibouti"
-msgstr "Djibouti"
+#: ../../install_steps_interactive.pm_.c:923
+msgid "Hardware clock set to GMT"
+msgstr "Cloc caledwedd wedi ei osod i GMT"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Offeryn i fonitro eich cofnodion"
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Cydweddi amser awtomatig (defnyddio NTP)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected on port %s"
-msgstr "canfyddwyd ar borth %s"
+#: ../../install_steps_interactive.pm_.c:931
+msgid "NTP Server"
+msgstr "Gweinydd NTP"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD"
-msgstr "LPD"
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
+msgstr "Gwasanaethwr CUPS pell"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Cerdyn graffeg: %s\n"
+#: ../../install_steps_interactive.pm_.c:966
+msgid "No printer"
+msgstr "Nid oes argraffydd"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/Set as _Default"
-msgstr "Gosod fel _Rhagosodiad"
+#: ../../install_steps_interactive.pm_.c:982
+msgid "Do you have an ISA sound card?"
+msgstr "A oes gennych gerdyn sain ISA?"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
-msgstr "Derbyn atsain icmp"
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
+msgstr "Rhedwch \"sndconfig\" wedi'r gosodiad i ffurfweddu'ch cerdyn sain"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Heb ganfod cerdyn sain. Ceisiwch \"harddrake\" wedi'r gosodiad"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Series gydag efelychiad Olwyn"
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
+msgstr "Crynodeb"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "Nid yw'r rhaniad estynedig yn cael ei gynnal ar y platfform hwn"
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
+msgstr "Llygoden"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Splash selection"
-msgstr "Dewis sgrîn croeso"
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
+msgstr "Cylchfa amser"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Ffurfweddiad ISDN"
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "Argraffydd"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "high"
-msgstr "uchel"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
+msgstr "Cerdyn ISDN"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Rhannu Cysylltiad â'r Rhyngrwyd"
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
+msgstr "Cerdyn sain"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Choose file"
-msgstr "Dewis ffeil"
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
+msgstr "Cerdyn Teledu"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Summary: "
-msgstr "Crynodeb:"
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
+msgstr "LDAP"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-"Rhybudd! Mae ffurfweddiad mur gwarchod wedi ei ganfod. Efallai bydd angen "
-"atgyweirio gyda llaw ar ôl y gosodiad."
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+msgid "NIS"
+msgstr "NIS"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Argraffu/Mynediad Cardiau Llun ar \"%s\""
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+msgid "Windows Domain"
+msgstr "Parth Windows"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
-msgstr "Gwiriad diogelwch dyddiol"
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+msgid "Local files"
+msgstr "Ffeiliau lleol"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
-"Ydych chi am caniatâu argraffu ar yr argraffyddion enwir uchod neu ar yr "
-"argraffyddion ar y rhwydwaith lleol?\n"
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr "Gosod cyfrinair gwraidd"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer default settings"
-msgstr "Gosod yr Argraffydd Rhagosodedig"
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr "Dim cyfrinair"
-#: ../../mouse.pm:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Llygoden Olwyn PS Generig"
+msgid "This password is too short (it must be at least %d characters long)"
+msgstr "Mae'r cyfrinair yn rhy syml ( rhaid iddo fod o leiaf %d nod o hyd)"
-#: ../../standalone/harddrake2:1
-#, 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)"
-msgstr ""
-"mae'r faner WP yng nghofrestr CRO y cpu yn gorfodi diogelwch rhag ysgrifennu "
-"ar lefel cof tudalen, felly'n caniatáu'r prosesydd i atal mynediad diwirio "
-"cnewyllyn i gof y defnyddiwr (hy diogelwch rhag gwall)"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "Dilysu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Tynnu hen argraffydd \"%s\"..."
+#: ../../install_steps_interactive.pm_.c:1088
+msgid "Authentication LDAP"
+msgstr "Dilysu LDAP"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Select a device !"
-msgstr "Dewis dyfais!"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
+msgstr "Sail dn LDAP"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected server"
-msgstr "Tynnu'r gwesteiwr"
+#: ../../install_steps_interactive.pm_.c:1090
+msgid "LDAP Server"
+msgstr "Gwasanaethwr LDAP"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using dhcp) usb"
-msgstr "USB Sagem (defnyddio dhcp)"
+#: ../../install_steps_interactive.pm_.c:1096
+msgid "Authentication NIS"
+msgstr "Dilysu LDAP"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Southern Territories"
-msgstr "French Southern Territories"
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "Parth NIS"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "enw gwerthwr y prosesydd"
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr "Gwasanaethwr NIS"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1104
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."
+"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 ""
-" - Cynnal %s:\n"
-" \t\tAr gyfer defnyddwyr sy'n gallu mewngofnodi i system o gleient di "
-"ddisg, rhaid dybylgu eu cofnod \n"
-" \t\t/etc/shadow yn %s. drakTermServ helps\n"
-" \t\tiyn yr achos hwn drwy ychwanegu neu dynnu defnyddwyr o'r ffeil."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr "Dylai'r holl ddata ar y rhaniad gael ei gadw wrth gefn"
+"I hyn weithio gyda 2WK PDC, bydd angen i chi gael y gweinyddwr i redeg C:"
+"\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /add ac "
+"ailgychwyn y gwasanaethwr.Bydd angen hefyd yr enw defnyddiwr/cyfrinair "
+"Gweinyddiaeth Parth i uno'r peiriant â'r parth Windows(NM).\n"
+"Os nad yw'r rhwydwaith wedi ei alluogi eto, bydd DrakX yn ceisio ymuno â'r "
+"parth ar ol y cam o gychwyn y rhwydwaith.\n"
+"Os bydd y cam hwn yn methu am ryw reswm ac nid yw dilysiad yn gweithio, "
+"rhedwch 'smbpasswd -j DOMAIN -U USER%PASSWORD' gan ddefnyddio eich Parth "
+"Windows(NM), a'ch Enw Defnyddiwr Gweinyddol/Cyfrinair ar ôl cychwyn eich "
+"system.\n"
+"Bydd y gorchymyn 'wbinfo -t' yn gwirio a yw eich cyfrinachau dilysu'n addas."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "Gosod pecynnau %s"
+#: ../../install_steps_interactive.pm_.c:1106
+msgid "Authentication Windows Domain"
+msgstr "Dilysu Parth Windows"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr "Gwirio'r ddyfais a ffurfweddu HPOJ..."
+#: ../../install_steps_interactive.pm_.c:1108
+msgid "Domain Admin User Name"
+msgstr "Enw Defnyddiwr Gweinyddiaeth Parth"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr "I gael mwy o raniadau, dilëwch un i greu rhaniad estynedig"
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
+msgstr "Cyfrinair Gweinyddol y Parth"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1144
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."
+"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\"."
msgstr ""
-"Mae eich argraffydd wedi ei ffurfweddu'n awtomatig i rhoi mynediad i chi i'r "
-"gyrrwr cerdyn llun o'c cyfrifiadur. Mae modd i chi gael mynediad at eich "
-"cardiau llun drwy'r rhaglen graffigol \"MtoolsFM\" (Dewislen: \"Rhaglenni\" -"
-"> \"Offer ffeil\" -> \"Rheolwr Ffeiliau MTools\") neu ar y llinell "
-"orchymyn: \"mtools\" (\"man mtools\" am ragor o wybodaeth) Bydd ys system o "
-"dan yrrwr \"p\", neu lythrennau canlynol pan fydd gennych fwy nag un "
-"argraffydd HP gyda gyrwyr cerdyn llun. Yn _MToolsFM\" mae modd newid rhwng "
-"llythrennau gyrwyr drwy'r maes ar ben uchaf de'r rhestr."
+"Mae disg cychwyn yn darparu ffordd o gychwyn eich system Linux heb ddibynnu\n"
+"ar lwythwr cychwyn arferol. Mae hyn yn ddefnyddiol os ydych am osod SILO ar\n"
+"eich system, neu mae system weithredu arall wedi tynny SILO, neu nad yw "
+"SILO'n\n"
+"gweithio gyda eich ffurfweddiad caledwedd chi. Mae modd defnyddio disg "
+"cychwyn\n"
+" unigol hefyd gyda delwedd achub Mandrake, gan ei gwneud yn llawer haws "
+"adfer o\n"
+" fethiannau systemig sylweddol\n"
+"\n"
+"Os hoffech greu disg cychwyn ar gyfer eich system, rhowch ddisg meddal yn y "
+"gyrrwr\n"
+" cyntaf a chliciwch \"Iawn\"."
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "Dewis pecynnau i'w gosod"
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr "Gyrrwr disg meddal cyntaf"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "Bydd pob rhaniad a'u data yn cael ei ddileu ar yrrwr %s"
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "Ail ddisg meddal"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Nid oes gan eich system ddigon o le ar ôl ar gyfer gosodiad neu uwchraddiad "
-"(%d> %d)"
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "Hepgor"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:1167
#, 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."
+"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"
msgstr ""
-"Mae pob argraffydd angen enw (e.e. \"argraffydd\". Nid oes angen llanw "
-"meysydd Disgrifiad a Lleoliad. Lle ar gyfer sylwadau'r defnyddiwr sydd yma."
+"Mae'r disg cychwyn addasu yn cynnig ffordd i gychwyn eich system Linux heb\n"
+"ddibynnu ar eich cychwynnwr arferol. Mae hyn yn ddefnyddiol os nad ydych am\n"
+"osod LILO (neu grub) ar eich system, neu bod system weithredu arall yn "
+"dileu\n"
+"LILO, neu nad yw LILO'n gweithio gyda'ch ffurfweddiad caledwedd.\n"
+"Mae modd defnyddio disg cychwyn addasu hefyd gyda delwedd achub Mandrake,\n"
+"gan ei gwneud yn lawer haws adfer methiannau system sylweddol. Hoffech chi\n"
+"greu disg cychwyn ar gyfer eich system?\n"
+"%s"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1173
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."
+"\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)."
msgstr ""
-"\"%s\": mae clicio ar y botwm\"%s\" yn agor dewin ffurfweddu argraffydd.\n"
-"Darllenwch y pennawd penodol yn y 'Starter Guide'am ragor o \n"
-"wybodaeth am sut i osod argraffydd newydd. Mae'r rhyngwyneb\n"
-"yn debyg i'r un welwyd wrth osod y system."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr "Bhutan"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "Rhyngwyneb rhwydwaith"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Methodd datgysylltu o'r Rhyngrwyd."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
-msgstr "Darllen data argraffydd..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "Bysellfwrdd Corëaidd"
-
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Not connected"
-msgstr "Heb gysylltu"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "Ffurfweddiad cysylltiad â'r Rhyngrwyd"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
-msgstr "Groegaidd"
+"\n"
+"\n"
+"(RHYBUDD! Rydych yn defnyddio XFS ar gyfer eich rhaniad gwraidd,\n"
+"bydd creu disg cychwyn ar ddisg meddal 1.44Mb'n debygol o fethu,\n"
+"oherwydd mae XFS yn gofyn am yrrwr mawr iawn)."
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts a Nevis"
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "Nid oes gyrrwr disg meddal ar gael"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Llygoden 3 Botwm Generig gydag efelychiad Olwyn"
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr "Dewiswch y gyrrwr disg meddal i'w ddefnyddio i greu disg cychwyn"
-#: ../../any.pm:1
+#: ../../install_steps_interactive.pm_.c:1189
#, c-format
-msgid "Enable OF Boot?"
-msgstr "Galluogi Cychwyn OF?"
+msgid "Insert a floppy in %s"
+msgstr "Rhowch ddisg meddal yn %s"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Does dim modd defnyddio JFS ar raniadau llai na 16MB"
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr "Creu disg cychwyn"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Dileu eich cyfrwng RW(Sesiwn 1af)"
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr "Paratoi llwythwr cychwyn"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "VertRefresh Monitor: %s\n"
+#: ../../install_steps_interactive.pm_.c:1210
+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 to boot your machine"
+msgstr ""
+"Mae'n ymddangos fod gennychbeiriant OldWorld\n"
+"neu Anhysbys ac ni fydd llwythwr cychwyn yaboot\n"
+"yn gweithio ar eich cyfer\n"
+"Bydd y gosodiad yn parhau ond bydd\n"
+"rhaid defnyddio BootX i gychwyn\n"
+"eich peiriant."
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "Pwynt gosod"
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
+msgstr "Ydych chi eisiau defnyddio aboot?"
-#: ../../Xconfig/test.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1219
msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
-"Digwyddodd gwall:\n"
-"%s\n"
-"Ceisiwch newid parammedrau"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "Gwesteiwr TCP/IP \"%s\", porth %s"
+"Gwall gosod aboot, \n"
+"ceisiwch orfodi gosodiad hyd yn oed os yw hynny'n dinistrio'r rhaniad cyntaf?"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "User :"
-msgstr "Defnyddiwr :"
+#: ../../install_steps_interactive.pm_.c:1226
+msgid "Installing bootloader"
+msgstr "Gosod llwythwr cychwyn"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore system"
-msgstr "Adfer y system"
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Methodd gosod llwythwr cychwyn. Digwyddodd y gwall canlynol:"
-#: ../../standalone/scannerdrake:1
+#: ../../install_steps_interactive.pm_.c:1240
#, c-format
msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
+"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 ""
-"Dyma'r cyfrifiaduron a rhwydweithiau ddylai'r sganiwr lleol fod ar gael:"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
-msgstr "Enw terfyn DHCP"
+"Efallai bydd angen i chi newid eich dyfais cychwyn Open Firmware\n"
+"i alluogi'r llwythwr cychwyn. Os nad ydych yn gweld anogwr y llwythwr\n"
+"cychwyn wrth ail gychwyn, gwasgwch Command-Option-O-F wrth ail\n"
+"gychwyn a theipiwch: setenv boot-device %s,\\\\:tbxi\n"
+"\n"
+" Yna teipiwch: shut-down\n"
+"Wrth gychwyn eto dylech weld anogwr y llwythwr cychwyn."
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "Another one"
-msgstr "Un arall"
+msgid "Insert a blank floppy in drive %s"
+msgstr "Rhowch ddisg meddal yng ngyrrwr %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
+msgstr "Creu disg meddal awto gosod"
-#: ../../lang.pm:1
-#, c-format
-msgid "Colombia"
-msgstr "Colombia"
+#: ../../install_steps_interactive.pm_.c:1289
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Nid yw rhai camau wedi eu cwblhau.\n"
+"\n"
+"Ydych chi wir eisiau gorffen?"
-#: ../../standalone/drakgw:1
+#: ../../install_steps_interactive.pm_.c:1300
#, c-format
msgid ""
-"Current configuration of `%s':\n"
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press return to reboot.\n"
"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"\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 ""
-"Ffurfweddiad presennol '%s':\n"
+"Llongyfarchiadau, mae'r gosodiad wedi ei gwblhau.\n"
+"Tynnwch y cyfrwng cychwyn a gwasgu Return i ail gychwyn.\n"
"\n"
-"Rhwydwaith: %s\n"
-"Cyfeiriad IP: %s\n"
-"Priodweddau IP: %s\n"
-"Gyrrwr: %s"
+"\n"
+"Am wybodaeth am gywiriadau sydd ar gael ar gyfer y rhyddhad hwn o Mandrake\n"
+"Linux, cysylltwch a'r atodiad, sydd i'w gael yn:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Mae gwybodaeth ar ffurfweddu eich system ar gael ym mhenawdau ôl osod\n"
+"yr Official Mandrake Linux User's Guide."
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n Play"
+#: ../../install_steps_interactive.pm_.c:1313
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr "Reunion"
+#: ../../install_steps_interactive.pm_.c:1318
+msgid "Generate auto install floppy"
+msgstr "Creu disg meddal awto gosod"
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "Manylion"
+#: ../../install_steps_interactive.pm_.c:1320
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Mae modd awtomeiddio'r awto gosod, os hoffech\n"
+"chi, yn yr achos hwnnw bydd yn cymryd drosod y\n"
+"disg caled!!\n"
+"(mae hyn ar gyfer gosod ar flwch arall).\n"
+"\n"
+"Efallai byddai'n well gennych ai osod y gosodiad.\n"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Am resymau diogelwch, bydd yn cael ei ddatgysylltu."
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
+msgstr "Awtomeiddwyd"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Synchronization tool"
-msgstr "Offeryn Cydamseru"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Replay"
+msgstr "Ail chwarae"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking your system..."
-msgstr "Gwirio eich system..."
+#: ../../install_steps_interactive.pm_.c:1328
+msgid "Save packages selection"
+msgstr "Cadw'r dewis becynnau"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_newt.pm_.c:20
#, c-format
-msgid "Print"
-msgstr "Argraffu"
+msgid "Mandrake Linux Installation %s"
+msgstr "Gosodiad %s Mandraks Linux"
-#: ../../standalone/drakbackup:1
-#, c-format
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-"Rhowch y tâp gyda label cynnwys%s\n"
-"yn yr gyrrwr tâp %s"
+" <Tab>/<Alt-Tab> rhwng elfennau | <Space> yn dewis | <F12> y sgrin nesaf "
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "Mongolia"
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
+msgstr "kdesu ar goll"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
-msgstr "Gosodwyd\n"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
+msgstr "consolehelper ar goll"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS"
-msgstr "Ffurfweddu CUPS"
+#: ../../interactive.pm_.c:152
+msgid "Choose a file"
+msgstr "Dewis ffeil"
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Interface"
-msgstr "Rhyngwyneb Graffigol"
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
+msgstr "Uwch"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Users"
-msgstr "Adfer Defnyddwyr"
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
+msgstr "Elfennol"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Allwedd amgryptio ar gyfer %s"
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
+msgstr "<- Cynt"
+
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+msgid "Next"
+msgstr "Nesaf"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr "Dewis gwael, ceisiwch eto\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "Do you want to recover your system?"
-msgstr "Ydych chi eisiau adfer eich system?"
+msgid "Your choice? (default %s) "
+msgstr "Eich dewis? (rhagosodedig %s)"
-#: ../../services.pm:1
+#: ../../interactive/stdio.pm_.c:54
#, 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."
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-"Mae'r mapiwr porth (portmapper) yn rheoli cysylltiadau RPC, \n"
-"sy'n cael eu defnyddio gan brotocolau fel NFS a NIS. Rhaid i wasanaethwr "
-"porthmap\n"
-"redeg ar beiriannau sy'n gweithredu fel gwasanaethwyr ar gyfer protocolau "
-"sy'n\n"
-"gwneud defnydd o fecanwaith RPC."
+"Gwybodaeth i'w gyflawyno:\n"
+"%s"
-#: ../../standalone/harddrake2:1
+#: ../../interactive/stdio.pm_.c:70
#, c-format
-msgid "Detected hardware"
-msgstr "Caledwedd canfyddwyd"
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Eich dewis? (0/1, rhagosodedig %s)"
-#: ../../lang.pm:1
+#: ../../interactive/stdio.pm_.c:95
#, c-format
-msgid "Mauritius"
-msgstr "Mauritius"
+msgid "Button `%s': %s"
+msgstr "Botwm '%s'.%s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
-msgstr "Myanmar (Burma)"
+#: ../../interactive/stdio.pm_.c:96
+msgid "Do you want to click on this button?"
+msgstr "Ydych chi eisiau clicio ar y botwm hwn?"
-#: ../../fs.pm:1
-#, c-format
-msgid "Enabling swap partition %s"
-msgstr "Galluogi rhaniad cyfnewid %s"
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
+msgstr "rhowch'gwag' am gofnod gwag"
-#: ../../install_interactive.pm:1
+#: ../../interactive/stdio.pm_.c:105
#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"Nid oes rhaniadau FAT i'w defnyddio fel cylch-ôl (neu nad oes digon o le ar "
-"ôl)"
+msgid "Your choice? (default `%s'%s) "
+msgstr "Eich dewis? (rhagosodedig `%s'%s) "
-#: ../../keyboard.pm:1
+#: ../../interactive/stdio.pm_.c:123
#, c-format
-msgid "Armenian (old)"
-msgstr "Armenaidd (hen)"
+msgid "=> There are many things to choose from (%s).\n"
+msgstr "=> Mae yna lawer i ddewis o (%s).\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../interactive/stdio.pm_.c:126
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."
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
msgstr ""
-"Mae argraffydd o'r enw \"%s\" yn bodoli eisoes yn %s.\n"
-"Cliciwch \"Trosglwyddo\" i ysgrifennu drosto.\n"
-"Mae modd i chi osod enw newydd arno neu ei hepgor."
+"Dewiswch y rhif cyntaf o'r amrediad 10 rydych am ei olygu,\n"
+"neu wasgwch Enter i barhau.\n"
+"Eich dewis?"
-#: ../advertising/12-mdkexpert.pl:1
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
-"Dewch o hyd i ateb eich anawsterau drwy blatfform cefnogaeth ar-lein "
-"MandrakeSoft."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", gwesteiwr \"%s\", porth %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Monaco"
-msgstr "Monaco"
+"=>Hysbysiad, mae label wedi newid:\n"
+"%s"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Methodd rhannu: %s"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
+msgstr "Ail-gyflwyno"
-#: ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "methodd fformatio %s o %s"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "Tsiec (QWERTY)"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Canada (cable)"
-msgstr "Canada (cabl)"
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "Almaeneg"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Floppy creation completed"
-msgstr "Creu disg meddal wedi ei gwblhau"
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Dvorak"
-#: ../../help.pm:1
-#, c-format
-msgid "Upgrade"
-msgstr "Uwchraddio"
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "Spaenaidd"
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
-msgstr "Man Gwaith"
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "Ffinaidd"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Gosod pecyn %s\n"
-"%d%%"
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "Ffrengig"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
-msgstr "Kyrgyzstan"
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "Norwyaidd"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "Dyfais amlbwrpas ar USB"
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "Pwylaidd"
-#: ../../../move/move.pm:1
-#, 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."
-msgstr ""
-"Nid ydym wedi canfod allwedd USB ar eich system Os wnewch\n"
-"rhoi'r allwedd USB yn ei le, mae gan Mandrake Move y gallu i\n"
-"gadw eich data yn eich cyfeiriadur cartref a ffurfweddiad system\n"
-"gyfan, ar gyfer ail gychwyn y cyfrifiadur hwn neu un arall\n"
-"Sylwch: os wnewch chi rhoi'r allwedd yn ei le nawr, arhoswch\n"
-"eiliadau cyn canfod eto.\n"
-"\n"
-"\n"
-"Mae modd mynd yn eich blaen heb allwedd USB - bydd dal\n"
-"modd i chi ddefnyddio Mandrake Move fel system weithredu\n"
-"Mandrake hyfyw."
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "Rwsiaidd"
-#: ../../help.pm:1
-#, c-format
-msgid "With basic documentation"
-msgstr "Gyda dogfennaeth elfennol"
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
+msgstr "Swedaidd"
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr "Anacron trefnydd gorchymyn cyfnodol"
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "Bysellfwrdd DG"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Rhaid bod gennych raniad gwraidd.\n"
-"Crëwch raniad (neu glicio ar un presennol)\n"
-"Yna dewiswch weithred \"Pwynt Gosod\" a'i osod i `/'"
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "Bysellfwrdd UDA"
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "Western Sahara"
+#: ../../keyboard.pm_.c:167
+msgid "Albanian"
+msgstr "Albaniaidd"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Dylai dirprwyon fod yn gyfanrif!"
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
+msgstr "Armenaidd (hen)"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr "De Affrica"
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
+msgstr "Armenaidd (teipiadur)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Tynnwch y tâp wedi cadw wrth gefn"
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
+msgstr "Armenaidd (ffonetig)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot Floppy/ISO"
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
+msgstr "Azerbaidjan (lladin)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Newid ffurfweddiad yr argraffydd"
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "Belgaidd"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
-msgstr "Dewiswch raniad"
+#: ../../keyboard.pm_.c:178
+msgid "Bengali"
+msgstr "Bengali"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Edit current rule"
-msgstr "Golygu'r rheol bresennol"
+#: ../../keyboard.pm_.c:179
+msgid "Bulgarian (phonetic)"
+msgstr "Bwlgaraidd (ffonetig)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
-msgstr "%s"
+#: ../../keyboard.pm_.c:180
+msgid "Bulgarian (BDS)"
+msgstr "Bwlgaraidd (BDS)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Please test the mouse"
-msgstr "Profwch y llygoden"
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
+msgstr "Brasilaidd (ABNT-2)"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Do not update inode access times on this file system\n"
-"(e.g, for faster access on the news spool to speed up news servers)."
-msgstr ""
-"Peidiwich diweddaru amser mynediad inode ar y system ffeiliau\n"
-"(e.e. ar gyfer mynediad cynt ar y cylch newyddion i gyflymu gwasanaethwyr "
-"newyddion)."
+#: ../../keyboard.pm_.c:184
+msgid "Bosnian"
+msgstr "Bosnieg"
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3 botwm gydag efelychiad Olwyn"
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
+msgstr "Belarusaidd"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Sticky-bit"
-msgstr "Sticky-bit"
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "Swisaidd (gosodiad Almaenig)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other Media"
-msgstr "Cyfrwng Arall"
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "Swisaidd (gosodiad Ffrengig)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "Tsiec (QWERTY)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files"
-msgstr "Ffeiliau System Cadw wrth Gefn"
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr "Almaenaidd (dim bysellau marw)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Sector"
-msgstr "Sector"
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
+msgstr "Devanagari"
-#: ../../lang.pm:1
-#, c-format
-msgid "Qatar"
-msgstr "Qatar"
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "Danaidd"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Base dn"
-msgstr "Sail dn LDAP"
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Dvorak (UDA)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "Nid oes modd i chi ddewis y pecyn hwn - does dim lle ar ôl i'w osod"
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Norwyaidd)"
-#: ../../help.pm:1
-#, c-format
-msgid "generate auto-install floppy"
-msgstr "creu disg meddal awto gosod"
+#: ../../keyboard.pm_.c:196
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (Swedaidd)"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr "Modd deialu"
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "Estonaidd"
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr "Rhannu Ffeiliau"
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Georgaidd (gosodiad \"Rwsiaidd\")"
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "Glanhau /tmp bob tro fyddwch yn cychwyn"
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Georgaidd (gosodiad \"Lladinaidd\")"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malawi"
-msgstr "Malawi"
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "Groegaidd"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: false"
-msgstr "ffurfweddiad lleol: false"
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
+msgstr "Gujarati"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "System settings"
-msgstr "Gosodiadau'r system"
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
+msgstr "Gurmukhi"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Dewiswch math eich llygoden"
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "Hwngaraidd"
-#: ../../services.pm:1
-#, c-format
-msgid "running"
-msgstr "rhedeg"
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "Croataidd"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "class of hardware device"
-msgstr "dosbarth y ddyfais caledwedd"
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
+msgstr "Israelaidd"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-"Dyma'r cyfrifiaduron a rhwydweithiau ddylai'r argraffydd(ion) lleol fod ar "
-"gael:"
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr "Israelaidd (Ffonetig)"
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "Y Deyrnas Unedig"
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr "Iranaidd"
-#: ../../lang.pm:1
-#, c-format
-msgid "Indonesia"
-msgstr "Indonesia"
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr "Eislandaidd"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "rhagosodedig"
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "Eidalaidd"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "France [SECAM]"
-msgstr "Ffrainc(SECAM)"
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
+msgstr "Inuktitut"
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "cyfyngu"
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
+msgstr "Siapaëaidd 106 bysell"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "must have"
-msgstr "rhaid cael"
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
+msgstr "Bysellfwrdd Coreaidd"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"Nid yw CUPS yn cefnogi argraffyddion ar wasanaethwyr Novell neu "
-"argraffyddion sy'n anfon data mewn gorchymyn ffurf -rhydd.\n"
+#: ../../keyboard.pm_.c:218
+msgid "Latin American"
+msgstr "Lladin America"
-#: ../../lang.pm:1
-#, c-format
-msgid "Senegal"
-msgstr "Senegal"
+#: ../../keyboard.pm_.c:219
+msgid "Laotian"
+msgstr "Latfieg"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Command line"
-msgstr "Llinell orchymyn"
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
+msgstr "Lithuenaidd AZERTY (hen)"
-#: ../advertising/08-store.pl:1
-#, 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:"
-msgstr ""
-"Mae amrediad eang o ddarpariaeth Linux, yn ogystal â chynigion arbennig ar "
-"gynnyrch a 'difyrrwch', ar gael ar-lein yn ein e-siop"
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
+msgstr "Lithuenaidd AZERTY (newydd)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "March"
-msgstr "Mawrth"
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Lithuenaidd \"rhes rhif\" QWERTY"
-#: ../../any.pm:1
-#, c-format
-msgid "access to administrative files"
-msgstr "mynediad i ffeiliau gweinyddol"
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Lithuenaidd \"ffonetig\" QWERTY"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
-msgstr ""
-"Gwall wrth ddefnyddio sendmail\n"
-" chafodd eich adroddiad e-bost mo'i anfon\n"
-" Ffurfweddwch eich sendmail"
+#: ../../keyboard.pm_.c:225
+msgid "Latvian"
+msgstr "Latfiaidd"
-#: ../../fs.pm:1
-#, 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.)"
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
msgstr ""
-"Peidio gadael i didiau enw-defnyddiwr-set neu enw-grwp-set\n"
-"i gymryd effaith. (Mae i weld yn ddiogel on mae braidd yn anniogel os\n"
-"yw uidperl(1) wedi ei osod.)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Dibyniaethau awtomatig"
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
+msgstr "Macedonaidd"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "Swap"
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
+msgstr "Myanmar (Burma)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom settings"
-msgstr "Gosodiadau addasu"
+#: ../../keyboard.pm_.c:229
+msgid "Mongolian (cyrillic)"
+msgstr "Mongoleg (cyrillic)"
-#: ../../../move/move.pm:1
-#, 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."
-msgstr ""
-"Mae'r allwedd USB i weld a'i ddiogelu rhag ysgrifennu ymlaen, ond nid oes.\n"
-"modd ei dynnu'n ddiogel.\n"
-"\n"
-"\n"
-"Cliciwch y botwm i ailgychwyn y peiriant, tynnwch yr allwedd, diffodd y\n"
-"diogelu, ailosod y plwg a chychwyn Mandrake Move eto."
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
+msgstr "Malteg (DU)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Other"
-msgstr "Adfer Arall"
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
+msgstr "Malteg (UDA)"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "Cerdyn Teledu"
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
+msgstr "Isalmaenaidd"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Argraffydd ar wasanaethwr SMB/Windows 95/98/NT"
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
+msgstr "Pwylaidd (gosodiad qwerty)"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_Ffurfweddu CUPS"
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
+msgstr "Pwylaidd (gosodiad qwerty)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
-msgstr ", "
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
+msgstr "Portiwgalaidd"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
-msgstr "Cyflwyno Ispci"
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr "Canada (Quebec)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Tynnu'r gwesteiwr/rhwydwaith"
+#: ../../keyboard.pm_.c:239
+msgid "Romanian (qwertz)"
+msgstr "Romanaidd (qwertz)"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Mae Postfix yn Asiant Cludo E-bost (MTA), sef rhaglen sy'n symud e-bost o un "
-"peiriant i'r llall."
+#: ../../keyboard.pm_.c:240
+msgid "Romanian (qwerty)"
+msgstr "Romanaidd (qwerty)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "Uzbek (cyrillig)"
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "Rwsiaidd (Yawerty)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Yma medrwch ddewis yr bysell neu gyfuniad o fysellau fydd yn\n"
-"caniatáu newid rhwng bysellfyrddau gwahanol (e.e.: lladin neu\n"
-"arall)"
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
+msgstr "Slfenaidd"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Plygio byw'r Rhwydwaith"
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "Slofacaidd (QWERTZ)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr "os wedi ei osod i iawn, adrodd adroddiadau gwirio i tty."
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "Slovacaidd (QWERTY)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From CD"
-msgstr "Adfer o'r CD"
+#: ../../keyboard.pm_.c:248
+msgid "Serbian (cyrillic)"
+msgstr "Serbaidd (cyrilig)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Rydych ar fin ffurfweddu eich cyfrifiadur i rannu ei gysylltiad Rhyngrwyd\n"
-"Gyda'r nodwedd hwn bydd cyfrifiaduron eraill ar eich rhwydwaith lleol yn "
-"medru rhannu cyswllt rhyngrwyd y cyfrifiadur hwn.\n"
-"\n"
-"Gwnewch yn siwr eich bod wedi ffurfweddu eich mynediad Rhwydwaith/Rhyngrwyd "
-"gyda drakconnect cyn mynd ymhellach.\n"
-"\n"
-"Sylwer: bydd angen Addasydd Rhwydwaith un-pwrpas i greu Rhwydwaith Lleol "
-"(LAN)."
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
+msgstr "Tamil (Unicode)"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr ""
-"Dewiswch ba addaswr rhwydwaith hoffech ei ddefnyddio i gysylltu â'r Rhyngrwyd"
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
+msgstr "Tamil (TSCII)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Mynediad i gerdyn cof ffoto ar eich dyfais HP amlbwrpas"
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr "Bysellfwrdd Thai"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
-msgstr ""
-"Cewch well perfformiad eich cyfrifiadur gyda chymorth dewis o gwmnïau sy'n "
-"cynnig atebion proffesiynol sy'n cydweddu â Mandrake Linux "
+#: ../../keyboard.pm_.c:254
+msgid "Tajik keyboard"
+msgstr "Bysellfwrdd Tajig"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
-msgstr "Awduron:"
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Twrcaidd (model traddodiadol \"F\")"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Mae Rhannu Cysylltiad â'r Rhyngrwyd wedi ei analluogi."
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Twrcaidd (model modern \"Q\")"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr "os wedi ei osod i iawn, gwirio checksum y ffeiliau suid/sgid."
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr "Wcranaidd"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latin American"
-msgstr "Lladin America"
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "Bysellfwrdd UDA (rhyngwladol)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Modd argraffu testun Siapanaeëg"
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Fietnamëaidd \"rhes rhifol\" QWERTY"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Old device file"
-msgstr "Hen ffeil dyfais"
+#: ../../keyboard.pm_.c:263
+msgid "Yugoslavian (latin)"
+msgstr "Iwgoslafaidd (lladin)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "Gwybodaeth:"
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
+msgstr "Bysell Alt dde"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Botwm '%s'.%s"
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
+msgstr "Y ddwy fysell Shift gyda'i gilydd"
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Arhoswch"
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
+msgstr "Bysellau Control a Shift gyda'i gilydd"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
+msgstr "Bysell CapsLock"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "None"
-msgstr "Dim"
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
+msgstr "Bysellau Ctrl ac Alt gyda'i gilydd"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Nid yw'r IP'n gywir.\n"
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
+msgstr "Bysellau Alt a Shift gyda'i gilydd"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-"Gwnewch yn siwr bod daemon cron yn cael ei gynnwys yn eich gwasanaethau."
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
+msgstr "Bysell \"Dewislen\""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
-msgstr "Cerdyn Ethernet"
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr "Bysell \"Windows\" chwith"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete selected printer"
-msgstr "Dileu'r argraffydd hwn"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
+msgstr "Bysell \"Windows\" de"
-#: ../../services.pm:1 ../../ugtk2.pm:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid "Info"
-msgstr "Gwybodaeth"
+msgid "Circular mounts %s\n"
+msgstr "Gosodiadau cylch %s\n"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "Gosodiad"
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
+msgstr "Tynnu'r cyfrolau rhesymegol yn gyntaf\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../modules.pm_.c:290
msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-"Cliciwch \"%s\" os ydych am ddileu'r holl ddata a rhaniadau sy'n bresennol\n"
-"ar y disg. Byddwch ofalus, wedi i chi glicio \"%s\" ni fydd modd i chi\n"
-"adfer unrhyw ddata na rhaniadau presennol ar y disg caled, gan gynnwys\n"
-"data Windows.\n"
-"\n"
-"Cliciwch \"%s\" i atal y weithred hon heb golli unrhyw ddata\n"
-"a rhaniadau sy'n bresennol ar y ddisg caled."
+"Nid oes cefnodgaeth PCIMA yn bodoli bellach ar gyfer cnewyllyn 2.2. "
+"Defnyddiwch cnewyllyn 2.4"
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "Gorffen"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
+msgstr "Mae modd i chi ffurfweddu pob paramedr o'r modiwl yma"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
-msgstr "Mae angen allwedd i gadw eich data"
+#: ../../modules/parameters.pm_.c:18
+#, fuzzy
+msgid "modinfo is not available"
+msgstr "Does dim gyrrwr disg meddal ar gael"
-#: ../../standalone/drakgw:1
-#, 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)."
-msgstr ""
-"Mae popeth wedi ei ffurfweddu\n"
-"Gallwch rannu cysylltiad â'r Rhyngrwyd gyda chyfrifiaduron eraill ar eich "
-"Rhwydwaith Lleol gan ddefnyddio ffurfweddiad rhwydwaith awtomatig (DHCP)."
+#: ../../modules/parameters.pm_.c:50
+msgid "a number"
+msgstr "rhif"
-#: ../../install_steps_interactive.pm:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "Remote CUPS server"
-msgstr "Gwasanaethwr CUPS pell"
+msgid "%d comma separated numbers"
+msgstr "%d rhifau gwahanwyd gan gollnod"
-#: ../../mouse.pm:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
+msgid "%d comma separated strings"
+msgstr "%d llinellau gwahanwyd gan gollnod"
+
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
+msgstr "rhifau gwahanwyd gan gollnod"
+
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated strings"
+msgstr "llinellau collnod ranedig"
+
+#: ../../mouse.pm_.c:25
msgid "Sun - Mouse"
msgstr "Llygoden - Sun"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Dim ond un addasydd rhwydwaith wedi ei ffurfweddu sydd ar eich system\n"
-"\n"
-"%s\n"
-"\n"
-"Rwyf ar fin gosod eich Rhwydwaith Lleol gyda'r addasydd hwnnw.."
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
-msgstr "Cyflwyno cpuinfo"
+#: ../../mouse.pm_.c:33
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Llygoden Olwyn PS Generig"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Minimal install"
-msgstr "Gosodiad lleiaf"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "Ethiopia"
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
-msgstr "IAWN"
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
-msgstr "Galluogi \"crontab\" a \"at\" ar gyfer defnyddwyr"
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr "Devanagari"
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+msgid "Microsoft Explorer"
+msgstr "Microsoft Explorer"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- dyfeisiau pci: dyma slot PCI, dyfais a gwaith y cerdyn\n"
-"- dyfeisiau ide: mae'r ddyfais un ai yn was neu feistr\n"
-"- dyfeisiau scsi: dynodiad dyfeisiau scsi a'r bws scsi"
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
+msgstr "1 botwm"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Cyfanswm maint: %d/%d MB"
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "Llygoden 2 Fotwm Generig"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "disabled"
-msgstr "anablwyd"
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "Olwyn"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Search for new scanners"
-msgstr "Chwilio am sganwyr newydd"
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "cyfresol"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Disabling servers..."
-msgstr "Analluogi gwasanaethwyr..."
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "Llygoden 3 Botwm Generig"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Mae gosod %s wedi methu. Digwyddodd y gwall canlynol:"
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr "Methu cychwyn mkinitrd -f /boot/initrd-%s.img %s."
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"Rydych wedi dewis y gwasanaethwr(wyr) canlynol: %s\n"
-"\n"
-"\n"
-"Mae'r gwasanaethwyr canlynol yn cael eu cychwyn drwy ragosodiad. Does\n"
-"ganddynt unrhyw faterion diogelwch hysbys, ond mae'n bosibl i rai ddod i'r\n"
-"golwg. Os felly rhaid uwchraddio gynted ag y bo modd\n"
-"\n"
-"Ydych chi wir eisiau gosod y gwasanaethwyr hyn?\n"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Systemau Llygoden"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Argraffydd rhwydwaith (TCP/Soced)"
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup User files..."
-msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn..."
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "Gosod y system"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "MM Series"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Gwasanaethwr DNS Cyntaf (dewisol)"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr "Yn lle hynny, rhowch enw dyfais/ffeil ar y llinell mewnbwn"
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Llygoden Logitech (cyfresol, hen fath C7)"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
-"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
-"symlink /etc/security/msec/server to point to\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
-"add a service if it is present in the file during the installation of\n"
-"packages."
-msgstr ""
-"Os yw SERVER_LEVEL (neu SECURE_LEVEL os yn absennol)\n"
-"yn fwy na 3 yn /etc/security/msec/security.conf, creu'r symlink /etc/\n"
-"security/msec/server i bwyntio at /etc/security/msec/server.\n"
-"<SERVER_LEVEL>. \n"
-"Mae /etc/security/msec/server yn cael ei ddefnyddio gan chkconfig --add\n"
-"at i benderfynnu ychwnaegu gwasanaeth os yw ar gael yn y\n"
-"ffeil wrth osod y pecynnau"
+#: ../../mouse.pm_.c:68
+msgid "busmouse"
+msgstr "busmouse"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "Rwsiaidd (Ffonetig)"
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "2 fotwm"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Config..."
-msgstr "Ffurfweddu dhcpd..."
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "3 botwm"
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "Gosodiad LILO/grub"
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "dim"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "Israelaidd"
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "Dim llygoden"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Argraffydd \"%s\" ar wasanaethwr \"%s\""
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
+msgstr "Profwch y llygoden"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Mae modd tynnu'r disg meddal nawr"
+#: ../../mouse.pm_.c:491
+msgid "To activate the mouse,"
+msgstr "I ysgogi'r llygoden,"
-#: ../../help.pm:1
-#, c-format
-msgid "Truly minimal install"
-msgstr "Gosodiad lleiaf posibl"
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr "SYMUDWCH YR OLWYN!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "Denmarc"
+#: ../../my_gtk.pm_.c:65
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "Yn symud rhaniad.."
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
+msgstr "Gorffen"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "(This) DHCP Server IP"
-msgstr "Gwasanaethwr DHCP IP (Hwn)"
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
+msgstr "Nesaf ->"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Test of the configuration"
-msgstr "Prawf o'r ffurfweddiad"
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "Ydi hyn yn gywir?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing %s ..."
-msgstr "Gosod %s..."
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "Gwybodaeth"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Os ydych wedi dweud wrth y gosodwr eich bod am ddewis pecynnau'n unigol\n"
-"bydd coeden yn cynnwys yr holl becynnau wedi eu dosbarthu yn ôl grwp ac\n"
-"isgrwp. Wrth bori'r goeden, gallwch ddewis grwp cyfan, isgrwp neu becyn\n"
-"unigol.\n"
-"\n"
-"Pryd bynnag fyddwch wedi dewis pecyn ar y goeden, bydd disgrifiad yn\n"
-"ymddangos ar y dde. \n"
-"!! Os oes pecyn gwasanaethwr wedi ei ddewis yn fwriadol neu am ei fod yn "
-"rhan\n"
-"o grwp cyfan, bydd angen i chi gadarnhau eich bod eisiau i'r gwasanaethwyr\n"
-"gael eu gosod. Ym Mandrake Linux mae unrhyw wasanaethwr sydd wedi ei\n"
-"osod yn cael ei gychwyn fel rhagosodiad wrth gychwyn. Hyd yn oed os ydynt\n"
-"yn ddiogel a doedd dim materion pryder pan gafodd y dosbarthiad ei ryddhau,\n"
-"mae'n bosibl i fylchau diogelwch gael eu darganfod wedi i'r fersiwn hwn o\n"
-"Mandrake Linux gael ei gwblhau. Os nad ydych yn gwybod beth mae\n"
-"gwasanaeth arbennig i fod i'w wneud na pham mae wedi ei osod, yna cliciwch\n"
-"\"%s\". Bydd clicio \"%s\" yn gosod y gwasanaethau hynny a byddant yn\n"
-"cael eu cychwyn yn ddiofyn drwy ragosodiad!!\n"
-"\n"
-"Mae'r dewis \"%s\"yn analluogi'r deialog rhybudd sy'n\n"
-"ymddangos bob tro fydd y gosodwr yn dewis pecyn yn awtomatig.\n"
-"Mae hyn yn digwydd am ei fod wedi penderfynu ei fod angen bodloni\n"
-"dibyniad gyda phecyn arall er mwyn cwblhau'r gosodiad yn llwyddiannus\n"
-"\n"
-"Mae'r eicon disg medal bychan ar waelod y rhestr yn caniatáu llwytho'r\n"
-"rhestr pecynnau dewiswyd yn ystod gosodiad blaenorol. Bydd clicio\n"
-"ar yr eicon hwn yn gofyn i chi osod yn y peiriant disg meddal grëwyd ar\n"
-"ddiwedd gosodiad arall. Gwelwch yr ail neges o'r cam diwethaf ar sut i\n"
-"greu disg meddal o'r fath."
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
+msgstr "Estyn y goeden"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr "Dewiswch eich allwedd amgryptio system ffeiliau"
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
+msgstr "Cau'r goeden"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr "Newid rhwng gwastad a'r grwp wedi ei ddidoli"
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
-msgstr "Botswana"
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "defnyddiwch pppoe"
-#: ../../lang.pm:1
-#, c-format
-msgid "Andorra"
-msgstr "Andorra"
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
+msgstr "defnyddiwch pptp"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "(default value: %s)"
-msgstr "(gwerth rhagosodedig: %s)"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
+msgstr "defnyddiwch dhccp"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
+msgstr "usb Alcatel Speedtouch"
+
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
msgstr ""
-"Gosod cyfrinair yn erbyn \\fImax\\fP dyddiau ac oedi i newid i \\fIinactive"
-"\\fP."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Prawf tudalen arall (Llythyr)"
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
+msgstr "Cysylltu â'r We"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/adsl.pm_.c:30
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"
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-"Ffurfweddiad Gwasanaethwr DHCP\n"
-"\n"
-"Mae modd dewis dewisiadau gwahanol ar gyfer ffurfweddiad DHCP.\n"
-"Os nad ydych yn gwybod ystyr y dewis, gadewch lonydd iddo.\n"
-"\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Choose an X server"
-msgstr "Dewiswch wasanaethwr X"
+"Y ffordd mwyaf cyffredin i gysylltu â adsl yw pppoe\n"
+"Mae rhai cysylltiadau'n defnyddio pptp, a rhai dhcp.\n"
+"Os nad ydych yn gwybod pa un, dewiswch pppoe."
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
+#: ../../network/adsl.pm_.c:166
+msgid ""
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Maint rhaniad cyfnewid mewn MB: "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No changes to backup!"
-msgstr "Dim newid i'r ffeil wrth gefn"
+#: ../../network/drakfirewall.pm_.c:12
+msgid "Web Server"
+msgstr "Gwasanaethwr Gwe"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "Wedi ei fformatio\n"
+#: ../../network/drakfirewall.pm_.c:17
+msgid "Domain Name Server"
+msgstr "Gwasanaethwr Enw Parth"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Type of install"
-msgstr "Math o osodiad"
+#: ../../network/drakfirewall.pm_.c:32
+msgid "Mail Server"
+msgstr "Gwasanaethwr E-bost"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Argraffydd \"%s\" ar wasanaethwr SMB/Windows \"%s\""
+#: ../../network/drakfirewall.pm_.c:37
+msgid "POP and IMAP Server"
+msgstr "Gwasanaethwr POP ac IMAP"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d rhifau gwahanwyd gan gollnod"
+#: ../../network/drakfirewall.pm_.c:111
+msgid "No network card"
+msgstr "Dim cerdyn rhwydwaith"
-#: ../../services.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:129
msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"Mae protocol ruser yn caniatáu i ddefnyddwyr ar rwydwaith i adnabod\n"
-"pwy arall sydd wedi mewngofnodi ar beirianau eraill sy'n ymateb."
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Ffurfweddiad Camau Awtomatig"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "Barbados"
+"ffurfweddiadur drakfirewall\n"
+"\n"
+"Mae hwn yn ffurfweddu mur gwarchod personol ar gyfer y peiriant \n"
+"Mandrake Linux hwn. Am fur gwarchod pwrpasol pwerus, \n"
+"edrychwch ddosbarthiad arbennigol MandrakeSecurity Firewall."
-#: ../advertising/02-community.pl:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:135
msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
+"drakfirewall configurator\n"
+"\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-"Hoffech chi wybod mwy am y gymuned Cod Agored? Ymunwch â byd Meddalwedd "
-"Rhydd!"
+"Ffurfweddwr Drakfirewall\n"
+"\n"
+"Gwnewch yn siwr eich bod wedi ffurfweddu eich mynediad\n"
+"Rhwydwaith/Rhyngrwyd gyda Drakconnect cyn mynd ymhellach."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Dewiswch y data i'w gadw wrth gefn..."
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr "Pa wasanaethau'r hoffech i'r Rhyngrwyd gysylltu â hwy?"
-#: ../../standalone/net_monitor:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:153
msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-"Methodd y cysylltiad.\n"
-"Gwiriwch eich ffurfweddiad yng Nghanolfan Rheoli Mandrake."
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
-msgstr "derbyniwyd"
+"Medrwch roi amrywiol byrth.\n"
+"Eng. dilys: 139/tcp 139/udp.\n"
+"Am wybodaeth ewch i /etc/services."
-#: ../../security/l10n.pm:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
-msgid "Enable su only from the wheel group members or for any user"
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-"Galluogi su o aelodau grwp olwyn yn unig neu caniatâu su o unrhyw "
-"ddefnyddiwr."
+"Porth annilys wedi ei gynnig: %s.\n"
+"Y fformat cywir yw \"port/tcp\" neu \"port/udp\", \n"
+"lle mae porth rhwng 1 a 65535."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
-msgstr "/Ffeil/_Newydd"
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
+msgstr "Popeth (dim mur cadarn)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DNS Server IP"
-msgstr "Y Gwasanaethwr DHCP IP"
+#: ../../network/drakfirewall.pm_.c:169
+msgid "Other ports"
+msgstr "Pyrth eraill"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range End:"
-msgstr "Diwedd Amrediad IP:"
+#: ../../network/ethernet.pm_.c:37
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
+msgstr ""
+"Pa gleient dhcp ydych chi eisiau ei ddefnyddio?\n"
+"dhcp-client yw'r rhagosodedig"
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
-msgstr "Uchel"
+#: ../../network/ethernet.pm_.c:88
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+"Nid oes addasydd rhwydwaith ethernet wedi ei ganfod ar eich system.\n"
+"Nid wyf yn medru gosod y math yma o gysylltiad."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Ychwanegu argraffydd newydd i'e system"
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
+msgstr "Dewiswch rhag wyneb y rhwydwaith"
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr "NoVideo"
+#: ../../network/ethernet.pm_.c:93
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr ""
+"Dewiswch pa addaswr rhwydwaith hoffech ei ddefnyddio i gysylltu â'r Rhyngrwyd"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
-msgstr "mae'r maes yn disgrifio'r ddyfais"
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "heb ganfod cerdyn rhwydwaith"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Ychwanegu argraffydd i Star Office/OpenOffice.org/GIMP"
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "Ffurfweddu'r rhwydwaith"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printers"
-msgstr "Argraffyddion Lleol"
+#: ../../network/ethernet.pm_.c:201
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"Rhowch eich enw gwesteiwr os ydych yn gwybod\n"
+"beth ydyw Mae rhai gwasanaethwyr angen gwybod\n"
+"yr enw gwesteiwr i weithio. Dylai eich enw gwesteiwr\n"
+"fod yn enw cymhwysol llawn megis \"fymlwch.fynesg.fyco.com\""
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation image directory"
-msgstr "Cyfeiriadur delwedd gosod"
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "Enw gwesteiwr"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "Gwasanaethwr NIS"
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+msgid "Network Configuration Wizard"
+msgstr "Dewin Ffurfweddu'r Rhwydwaith"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Port: %s"
-msgstr "Porth: %s"
+#: ../../network/isdn.pm_.c:22
+msgid "External ISDN modem"
+msgstr "Modem IDSN Allanol"
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "Sbaen"
+#: ../../network/isdn.pm_.c:22
+msgid "Internal ISDN card"
+msgstr "Cerdyn ISDN mewnol"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
-msgstr "Ffurfweddiad lleol: %s"
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
+msgstr "Pa fath o gysylltiad IDSN?"
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
+#: ../../network/isdn.pm_.c:45
+msgid ""
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
+msgstr ""
+"Pa ffurfweddiad IDSN sy'n well gennych?\n"
+"\n"
+"* Mae'r Hen ffurfweddiad yn defnyddio isdn4net. Mae'n\n"
+" cynnwys offer pwerus ond mae'n anodd ei ffurfweddi ac nid\n"
+"yw'n safonol. \n"
+"\n"
+" *Mae'r ffurfweddiad Newydd yn haws i'w ddeall, yn fwy safonol\n"
+" ond mae ganddo llai o offer.\n"
+"\n"
+"Rydym yn argymell y ffurfweddiad ysgafn.\n"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
-msgstr "Dewis ffeil"
+#: ../../network/isdn.pm_.c:54
+msgid "New configuration (isdn-light)"
+msgstr "Ffurfweddiad newydd (isdn-light)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr "Gosod"
+#: ../../network/isdn.pm_.c:54
+msgid "Old configuration (isdn4net)"
+msgstr "Hen ffurfweddiad (isdn4net)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Awtoganfod pyrth ar gael"
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "Ffurfweddiad ISDN"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr "San Marino"
+#: ../../network/isdn.pm_.c:166
+msgid ""
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
+msgstr ""
+"Dewiswch eich darparwr.\n"
+"Os nad yw ar eich rhestr, dewiswch Heb ei Restri"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Mae Rhannu Cysylltiad a'r Rhyngrwyd wedi ei analluogi"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol"
+msgstr "Protocol Ewrop"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Belgium"
-msgstr "Gwlad Belg"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol (EDSS1)"
+msgstr "Protocol Ewrop (EDSSI)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
-msgstr "Kuwait"
+#: ../../network/isdn.pm_.c:181
+msgid "Protocol for the rest of the world"
+msgstr "Protocol ar gyfer gweddill y byd"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "Dewiswch y rheolwr ffenestr i redeg:"
+#: ../../network/isdn.pm_.c:181
+msgid ""
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
+msgstr ""
+"Protocol ar gyfer gweddill y byd\n"
+" dim D-Channel (llinell les)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
-msgstr "Rhagfyr"
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
+msgstr "Pa brotocol ydych chi eisiau ei ddefnyddio?"
-#: ../../standalone/harddrake2:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid "sub generation of the cpu"
-msgstr "iIs gynnyrch y cpu"
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr "Wedi canfod rhyngwyneb \"%s\", hoffech chi ei ddefnyddio?"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
-msgstr "Dewin Tro Cyntaf"
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
+msgstr "Pa fath o gerdyn sydd gennych?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Taiwan"
-msgstr "Taiwan"
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
+msgstr "Dim syniad"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "Pacistan"
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "arhoswch, dosbarthu ffeil: %s"
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:210
msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+"\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
-"Digwyddodd gwall ond wn i ddim sut i ddelio ag ef yn dwt.\n"
-"Mae'n beryglus i barhau."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Importance: "
-msgstr "Pwysigrwydd: "
+"\n"
+"Os oes gennych gerdyn, dylai'r gwerthoedd ar y sgrin nesaf fod yn gywir.\n"
+"\n"
+"Os oes gennych gerdyn PCMCIA, rhaid i chi wybod irq ac io eich cerdyn.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-"I fedru argraffu gyda eich argraffydd inkjet Lexmark a'r ffurfweddiad hwn, "
-"bydd angen gyrwyr argraffydd inkjet sydd wedi eu darparu gan Lexmark (http://"
-"www.lexmark.com/). Ewch i'w safle yn yr UDA a chliciwch ar y botwm \"Drivers"
-"\". Yna dewiswch eich model ac yna \"Linux\" fel system weithredu. Mae'r "
-"gyrwyr yn dod fel pecynnau RPM neu sgriptiau cragen gyda gosodiad graffigol "
-"rhyngweithiol. Nid oes angen i chi wneud y ffurfweddiad drwy'r wyneb "
-"graffigol. Diddymwch yn syth wedi'r cytundeb trwyddedu. Yna argraffwch "
-"dudalennau'r alinio'r pen argraffu gyda \"lexmarkmaintain\" a newid "
-"gosodiadau aliniad y pen gyda'r rhaglen."
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "Peidio"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Permissions"
-msgstr "Caniatadau"
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
+msgstr "Parhau"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Enw darparwr (eng. darparwr.net)"
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
+msgstr "Pa un yw eich cerdyn IDSN?"
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:239
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'."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
-"Mae eich system yn brin o adnoddau. Efallai y cewch anhawsterau wrth osod\n"
-"Mandrake Linux. Os bydd hynny'n digwydd, gallwch geisio gwneud gosodiad\n"
-"testunol. I wneud hynny, gwasgwch F1 wrth gychwyn ar y CD-ROM ac yna rhoi "
-"'text'."
+"Rwyf wedi canfod cerdyn IDSN, ond nid wyf yn gwybod pa fath. Dewiswch un "
+"cerdyn PCI ar y sgrin nesaf."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "Defnyddiwch raniad Windows ar gyfer cylch-ôl"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "Heb ganfod cerdyn PCI ISDN. Dewiswch un o'r sgrin nesaf."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
-msgstr "Armenaidd (teipiadur)"
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Dewiswch ba borth cyfresol mae eich modem wedi cysylltu iddo."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection type: "
-msgstr "Math o gyswllt:"
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "Dewisiadau cyswllt ffôn"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Graphical interface"
-msgstr "Rhyngwyneb graffigol"
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr "Enw'r cysylltiad"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "Chad"
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
+msgstr "Rhif ffôn"
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "India"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "Dynodiad Mewngofnodi"
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s gyda chyflymu caledwedd 3D"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr "CHAP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr "Slofacia"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "Singapore"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "Seiliedig ar sgript"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "Cambodia"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "Seiliedig ar derfynnell"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "HorizSync Monitor: %s\n"
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "Enw parth"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr "Llwybr"
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+msgid "First DNS Server (optional)"
+msgstr "Gwasanaethwr DNS Cyntaf (dewisol)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
-msgstr "HEB GANFOD"
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+msgid "Second DNS Server (optional)"
+msgstr "Ail Wasanaethwr DNS (dewisol)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/modem.pm_.c:95
msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-"Yma medrwch bennu unrhyw fan lle dylid cyfeirio'r gwaith yn lle ei anfon at "
-"yr argraffydd."
-#: ../../printer/printerdrake.pm:1
+#: ../../network/modem.pm_.c:97
#, 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?"
+"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
-"Ni fydd system argraffu (%s) yn cychwyn yn awtomatig pan fydd y peiriant yn "
-"cael ei gychwyn.\n"
-"\n"
-"Mae'n bosibl fod y cychwyn awtomatig wedi ei ddiffodd wrth newid i lefel "
-"diogelwch uwch, am fod a system argraffu'n bwynt tebygol ar gyfer "
-"ymosodiadau.\n"
-"\n"
-"Ydych chi am i'r cychwyn awtomatig gael ei droi ymlaen eto?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Argraffydd %s\n"
-"Beth ydych am ei newid ar yr argraffydd hwn?"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Do nothing"
+msgstr "ond heb fod yn cydweddu"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add host"
-msgstr "Ychwanegu gwesteiwr"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Install rpm"
+msgstr "Gosodiad"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Title"
+msgstr "Tabl"
+
+#: ../../network/netconnect.pm_.c:29
msgid ""
-"If you really think that you know which driver is the right one for your "
-"card\n"
-"you can pick one in the above list.\n"
"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+"You can disconnect or reconfigure your connection."
msgstr ""
-"Os ydych yn siwr eich bod yn gwybod pa yrrwr sydd angen ar gyfer eich\n"
-"cerdyn yna dewiswch un o'r rhestr uchod\n"
"\n"
-"Y gyrrwr presennol ar gyfer eich cerdyn \"%s\" yw \"%s\" "
+"Medrwch ddatgysylltu neu ailffurfweddu eich cyswllt"
-#: ../../any.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
"\n"
-"\"Custom\" permit a per-user granularity.\n"
+"You can reconfigure your connection."
msgstr ""
-"Hoffech chi ganiatáu i rai defnyddwyr rannu eu cyfeiriaduron?\n"
-"Bydd caniatáu hyn yn gadael i ddefnyddwyr glicio ar \"Rhannu\" yn konqueror "
-"a nautilus.\n"
"\n"
-"\"Addasu\" caniatáu cyfran i'r defnyddwyr.\n"
+"Medrwch ailffurfweddu eich cysylltiad"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:29
+msgid "You are currently connected to internet."
+msgstr "Rydych wedi eich cysylltu â'r rhyngrwyd."
+
+#: ../../network/netconnect.pm_.c:32
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"\n"
+"You can connect to Internet or reconfigure your connection."
msgstr ""
-"Dewiswch llwytho neu ddewis cadw pecyn ar ddisg meddal.\n"
-"Mae'r fformat yr un ar ddisgiau meddal wedi eu cynhyrchu drwy auto_install."
+"\n"
+"Medrwch gysylltu â'r Rhyngrwyd neu ailffurfweddu eich cyswllt"
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "No CDROM support"
-msgstr "Cynnal radio:"
+#: ../../network/netconnect.pm_.c:32
+msgid "You are not currently connected to Internet."
+msgstr "Nid ydych wedi eich cysylltu â'r rhyngrwyd."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "China (broadcast)"
-msgstr "Tsieina (darlledu)"
+#: ../../network/netconnect.pm_.c:36
+msgid "Connect"
+msgstr "Cysylltu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use quota for backup files."
-msgstr "Defnyddiwch y cwota ar gyfer ffeiliau wrth gefn"
+#: ../../network/netconnect.pm_.c:37
+msgid "Disconnect"
+msgstr "Dadgysylltu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Ffurfweddu argraffydd \"%s\" ..."
+#: ../../network/netconnect.pm_.c:38
+msgid "Configure the connection"
+msgstr "Ffurfweddu'r gysylltiad"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
-"containing binaries for architectures other than its own."
-msgstr ""
-"Peidio caniatáu gweithrediad unrhyw deueuddiau ar system ffeil wedi ei\n"
-"gosod. Gall y dewis fod yn ddefnyddiol ar gyfer gwasanaethwr sydd ganddo\n"
-"systemau ffeiliau yn cynnwys deueiddiau fel pensaerniaeth gwahanol i'w un ei "
-"hun."
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
+msgstr "Cysylltiad â'r rhyngrwyd a'i ffurfweddiad "
-#: ../../network/netconnect.pm:1
+#: ../../network/netconnect.pm_.c:94
#, c-format
-msgid "Internet connection"
-msgstr "Cysylltiad â'r Rhyngrwyd"
+msgid "We are now going to configure the %s connection."
+msgstr "Rydym am ffurfweddu cysylltiad %s"
-#: ../../modules/interactive.pm:1
+#: ../../network/netconnect.pm_.c:103
#, c-format
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
+"\n"
+"\n"
+"\n"
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press OK to continue."
msgstr ""
-"Methodd llwytho modiwl %s\n"
-"Hoffech chi drio eto gyda pharamedrau eraill?"
-
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr "Croeso i fyd Cod Agored"
+"\n"
+"\n"
+"\n"
+"Rydym yn awr yn mynd i ffurfweddu cysylltiad %s.\n"
+"\n"
+"\n"
+"Pwyswch Iawn i barhau."
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnia ac Herzegovina"
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr "Ffurfweddiad y Rhwydwaith"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:133
msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+"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 ""
-"Mae angen gwir system ffeilio (ext2, reiserfs, xfs, neu jfs)) ar gyfer y "
-"pwynt gosod\n"
+"Am eich bod yn gosod eich rhwydwaith, mae eich rhwydwaith eisoes wedi ei "
+"ffurfweddu\n"
+"Cliciwch Iawn i gadw eich ffurfweddiad, neu ddileu i ail ffurfweddi eich "
+"cysylltiad Rhyngrwyd a Rhwydwaith.\n"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Rhowch enw'r gwesteiwr neu'r cyfeiriad IP.\n"
+#: ../../network/netconnect.pm_.c:157
+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 ""
+"Croeso i Ddewin Ffurfweddu'r Rhwydwaith\n"
+"\n"
+"Rydym ar fin ffurfweddi eich cysylltiad rhyngrwyd/rhwydwaith.\n"
+"Os nad ydych am ddefnyddio awto ganfod, dad-diciwch y blwch dewis.\n"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "Yr Iseldiroedd"
+#: ../../network/netconnect.pm_.c:163
+msgid "Choose the profile to configure"
+msgstr "Dewiswch broffil i'w ffurfweddu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Anfon ffeiliau drwy FTP"
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
+msgstr "Defnyddio awto ganfod"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Cerdyn ISDN mewnol"
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
+msgstr "Modd Uwch"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
-msgstr ""
-"Nid oes gyrrwr OSS/ALSA arall hysbys ar gyfer eich cerdyn sain (%s) sy'n "
-"defnyddio \"%s\" ar hyn o bryd"
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
+msgstr "Canfod dyfeisiadau..."
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Title"
-msgstr "Teitl"
+#: ../../network/netconnect.pm_.c:214
+msgid "Normal modem connection"
+msgstr "Cysylltiad modem arferol"
-#: ../../standalone/drakfont:1
+#: ../../network/netconnect.pm_.c:214
#, c-format
-msgid "Install & convert Fonts"
-msgstr "Gosod a throsi ffontiau"
+msgid "detected on port %s"
+msgstr "canfyddwyd ar borth %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
-msgstr "RHYBUDD"
+#: ../../network/netconnect.pm_.c:215
+#, fuzzy
+msgid "Winmodem connection"
+msgstr "Cysylltiad modem arferol"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
-msgstr "Gosod cychwynnydd"
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "detected"
+msgstr "canfyddwyd %s"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "replay"
-msgstr "ail chwarae"
+#: ../../network/netconnect.pm_.c:216
+msgid "ISDN connection"
+msgstr "Cysylltiad ISDN"
-#: ../../network/netconnect.pm:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
msgid "detected %s"
msgstr "canfyddwyd %s"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/netconnect.pm_.c:217
+msgid "ADSL connection"
+msgstr "Cysylltiad ADSL"
+
+#: ../../network/netconnect.pm_.c:218
+msgid "Cable connection"
+msgstr "Cysylltiad cebl"
+
+#: ../../network/netconnect.pm_.c:218
+msgid "cable connection detected"
+msgstr "canfyddwyd cysylltiad cebl"
+
+#: ../../network/netconnect.pm_.c:219
+msgid "LAN connection"
+msgstr "cysylltiad LAN"
+
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
+msgstr "cerdyn ethernet wedi ei ganfod"
+
+#: ../../network/netconnect.pm_.c:222
+msgid "Choose the connection you want to configure"
+msgstr "Dewiiwch y math o gysylltiad rydych am ei ffurfweddu"
+
+#: ../../network/netconnect.pm_.c:246
msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
-"Mae Expect yn estyniad o'r iaith sgriptio Tcl sy'n caniatáu sesiynau "
-"rhyngweithiol heb ymyrraeth y defnyddiwr."
+"Rydych wedi ffurfweddu nifer o ffyrdd i gysylltu â'r Rhyngrwyd.\n"
+"Dewiswch ba un rydych am ei ddefnyddio.\n"
+"\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr "Virgin Islands (U.S.)"
+#: ../../network/netconnect.pm_.c:247
+msgid "Internet connection"
+msgstr "Cysylltiad â'r Rhyngrwyd"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "Ffeil wrth gefn gwallus"
+#: ../../network/netconnect.pm_.c:253
+msgid "Do you want to start the connection at boot?"
+msgstr "Ydych chi eisiau agor y cysylltiad wrth gychwyn y cyfrifiadur?"
-#: ../../standalone/drakgw:1
+#: ../../network/netconnect.pm_.c:267
+msgid "Network configuration"
+msgstr "Ffurfweddiad y rhwydwaith"
+
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
+msgstr "Rhaid ail gychwyn y rhwydwaith"
+
+#: ../../network/netconnect.pm_.c:272
#, 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?"
+"%s"
msgstr ""
-"Mae gosodiad rhannu cysylltiad a'r Rhyngrwyd wedi ei gyflawni. \n"
-"Mae wedi ei analluogi. \n"
+"Digwyddodd gwall wrth ail gychwyn y rhwydwaith:\n"
"\n"
-"Beth hoffech ei wneud?"
+"%s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
+#: ../../network/netconnect.pm_.c:282
+msgid ""
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
-"Rhowch gyfeiriad IP a phorth gwesteiwr yr argraffydd rydych am ei ddefnyddio."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Pipe into command"
-msgstr "Peipio i orchymyn"
+"Llongyfarchiadau, mae ffurfweddiad y rhwydwaith a'r Rhyngrwyd wedi gorffen\n"
+"Bydd y ffurfweddiad yn cael ei osod ar eich system\n"
+"\n"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:286
msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
-"Mae peth caledwedd ar eich cyfrifiadur angen gyrwyr \"priodol\" i weithio.\n"
-"Mae rhywfaint o wybodaeth i'w gael amdanynt yn %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "Haiti"
+"Wedi i hyn gael ei wneud rydym yn argymell eich bod yn a'i gychwyn "
+"amgylchedd X i osgoi unrhyw anawsterau'n perthyn i enwau gwesteiwr.\n"
+"."
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "Canfod dyfeisiau..."
+#: ../../network/netconnect.pm_.c:287
+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 ""
+"Digwyddod anhawsterau yn ystod y ffurfweddiad.\n"
+"Profwch eich cysylltiad drwy net_monitor neu mcc. Os nad yw eich cysylltiad "
+"yn gweithio, efallai y byddwch eisiau ailgychwyn y ffurfweddiad"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/network.pm_.c:278
msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
+"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 ""
-"Mae Addasu'n caniatáu i chi enw eich dyddiad ac amser. Mae'r dewisiadau "
-"eraill yn defnyddio rhannau rhedeg yn /etc/crontab."
+"Rhybudd!! Cafodd y ddyfais hon ei ffurfweddu o'r blaen i gysylltu â'r "
+"Rhyngrwyd.\n"
+"Derbyniwch y cynnig i gadw'r ddyfais wedi ei ffurfweddi.\n"
+"Bydd newid y meysydd islaw'n newid y ffurfweddiad."
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/network.pm_.c:283
msgid ""
-"Description of the fields:\n"
-"\n"
+"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 ""
-"Disgrifiad y meysydd:\n"
-"\n"
+"Rhowch ffurfweddiad IP ar gyfer y peiriant hwn\n"
+"Dylai pob eitem ei roi fel cyfeiriad IP nodiant collnod degymol\n"
+"(e.e.1.2.3.4)."
-#: ../../standalone/draksec:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "Basic options"
-msgstr "Dewisiadau Sylfaenol"
+msgid "Configuring network device %s"
+msgstr "Ffurfweddu dyfais rhwydwaith %s"
-#: ../../standalone/harddrake2:1
+#: ../../network/network.pm_.c:294
#, c-format
-msgid "the name of the CPU"
-msgstr "enw'r prosesydd"
+msgid " (driver %s)"
+msgstr " (gyrrwr %s)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr "Derbyn negeseuon gwall IPv4 ffug."
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "Cyfeiriad IP"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Adnewyddu data'r argraffydd..."
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr "Netmask"
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr "Rhaid fformatio %s hefyd"
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "Byddwch ofalus: mae'r weithred hon yn beryglus."
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "IP awtomatig"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "Rhowch ddisg meddal yn cynnwys dewis pecynnau yn y peiriant"
+#: ../../network/network.pm_.c:299
+msgid "Start at boot"
+msgstr "Cychwyn y peiriant"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server: "
-msgstr "Gwasanaethwr:"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
+msgstr "dylai cyfeiriad IP fod mewn fformat 1.2.3.4"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Alerts:"
-msgstr "Rhybuddion Diogelwch:"
+#: ../../network/network.pm_.c:326
+msgid ""
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
+msgstr ""
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
-msgstr "Sweden"
+#: ../../network/network.pm_.c:330
+msgid ""
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Defnyddiwch Expect ar gyfer SSH"
+#: ../../network/network.pm_.c:350
+msgid ""
+"Please enter your host name.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''.\n"
+"You may also enter the IP address of the gateway if you have one"
+msgstr ""
+"Rhowch eich enw gwesteiwr.\n"
+"Dylai eich enw gwesteiwr fod yn enw gwesteiwr llawn gymwys.\n"
+"megis \"fymlwch.fynesg.fyngho.com\".\n"
+"Medrwch hefyd gynnig eich cyfeiriad IP os oes gennych un"
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "Gwlad Pwyl"
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "Gwasanaethwr DNS"
-#: ../../network/drakfirewall.pm:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "Other ports"
-msgstr "Pyrth eraill"
+msgid "Gateway (e.g. %s)"
+msgstr "Mynedfa (e.e. %s)"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "nifer o fyffers cipio ar gyfer cipio mmap"
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "Dyfais mynedfa"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid " - detected"
-msgstr " - canfuwyd"
+#: ../../network/network.pm_.c:363
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "Dylai cyfeiriad DNS fod mewn fformat 1.2.3.4"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr "Rheolyddion SMBus"
+#: ../../network/network.pm_.c:367
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Dylai cyfeiriad Porth fod mewn fformat 1.2.3.4"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Oediad yn y cysylltiad (mewn eiliadau)"
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
+msgstr "Ffurfweddiad dirprwyon"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
-"Nid yw rhai prosesyddion i486DX-100 cynnar yn medru dychwelyd i'w cyflwr "
-"gweithredu a'r ôl defnyddio \"halt\""
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "Dirprwy HTTP"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Croatian"
-msgstr "Croataidd"
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "Dirprwy FTP"
-#: ../../help.pm:1
-#, c-format
-msgid "Use existing partition"
-msgstr "Defnyddiwch y rhaniadau presennol"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
+msgstr "Dilynnwch cyfernod cerdyn rhwydwaith (defnyddiol ar gyfer gliniadur)"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Methu canfod drych: %s."
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
+msgstr "Dylai dirprwyon fod yn gyfanrif!"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Cymorth/_Ynghylch..."
+#: ../../network/network.pm_.c:388
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Dylai'r URL ddechrau gyda 'ftp' neu 'http:'"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Tynnu cyfeiriaduron defnyddiwr cyn adfer."
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
+msgstr "Wedi canfod ffurfweddiad mur gwarchod!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/shorewall.pm_.c:27
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?"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
-"Ydych chi am ffurfweddi argraffydd pell. Mae hyn angen mynediad ar "
-"rwydwaith, ond nid yw eich rhwydwaith wedi ei ffurfweddu eto. Os ydych am "
-"fynd ymlaen heb ffurfweddiad rhwydwaith, ni bydd modd i chi ddefnyddio'r "
-"argraffydd rydych yn ei ffurfweddu ar hyn o bryd. Beth ydych am ei wneud?"
+"Rhybudd! Mae ffurfweddiad mur gwarchod wedi ei ganfod. Efallai bydd angen "
+"atgyweirio gyda llaw ar ôl y gosodiad."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "Ffurfweddiad argraffydd CUPS "
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
+msgstr "Ffurfweddiad rhyngrwyd"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr "methu canfod unrhyw ffont yn eich rhaniad gosodedig"
+#: ../../network/tools.pm_.c:58
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Hoffech chi gysylltu â'r Rhyngrwyd nawr?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
-msgstr "Gwall F00f"
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+msgid "Testing your connection..."
+msgstr "Profi eich cysylltiad..."
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "XFree: %s"
+#: ../../network/tools.pm_.c:70
+msgid "The system is now connected to Internet."
+msgstr "Mae'r system wedi cysylltu â'r Rhyngrwyd."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Domain Name:"
-msgstr "Enw Parth:"
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
+msgstr "Am resymau diogelwch, bydd yn cael ei ddatgysylltu."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Root umask"
-msgstr "umask gwraidd"
+#: ../../network/tools.pm_.c:72
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr ""
+"Nid yw'n ymddangos i'ch system gysylltu â'r rhyngrwyd.\n"
+"Ailffurfweddwch eich cysylltiad."
-#: ../../any.pm:1
-#, c-format
-msgid "On Floppy"
-msgstr "Ar Ddisg Meddal"
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
+msgstr "Ffurfweddiad y Cysylltiad"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reboot by the console user"
-msgstr "Tarfu ar y broses gan y defnyddiwr"
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
+msgstr "Llanwch neu diciwch y maes islaw"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore"
-msgstr "Adfer"
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr "IRQ y cerdyn"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Server:"
-msgstr "Gwasanaethwr:"
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "Cof Cerdyn (DMA)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
-msgstr ""
-"os wedi ei osod i iawn, gwirio os yw'r dyfeisiau rhwydwaith mewn modd cymysg"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "IO'r Cerdyn"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Chwilio am y pecynnau sydd ar gael"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "IO_O y cerdyn"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Arhoswch, gosod ffeiliau ffurfweddu'r system ar allwedd USB..."
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "IO_1 y cerdyn"
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
-msgstr "Neges Init"
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
+msgstr "Eich rhif ffôn personol"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "Achub y tabl rhaniadau"
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
+msgstr "Enw darparwr (eng. darparwr.net)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "Cyprus"
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
+msgstr "Rhif ffôn y darparwr"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection complete."
-msgstr "Cysylltiad wedi ei gwblhau"
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+msgid "Provider dns 1 (optional)"
+msgstr "Dns 1 y darparwr (dewisol)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "Tynnu o RAID"
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+msgid "Provider dns 2 (optional)"
+msgstr "Dns 2 y darparwr (dewisol)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Mae'r allwedd amgryptio'n rhy syml (mae'n rhaid bod o leiaf %d nod o hyd)"
+#: ../../network/tools.pm_.c:109
+msgid "Choose your country"
+msgstr "Dewiswch eich gwlad"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Dewin Ffurfweddu"
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
+msgstr "Modd deialu"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ISDN connection"
-msgstr "Cysylltiad ISDN"
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+msgid "Connection speed"
+msgstr "Cyflymder y cysylltiad"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CDROM / DVDROM"
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+msgid "Connection timeout (in sec)"
+msgstr "Oediad yn y cysylltiad (mewn eiliadau)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
-msgstr "cynradd"
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
+msgstr "Mewngofnod Cyfrif (enw defnyddiwr)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr "ar wasanaethwr SMB/Windows \"%s\", rhannu \"%s\""
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
+msgstr "Cyfrinair y Cyfrif"
-#: ../../help.pm:1
-#, c-format
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
+msgstr "Y Deyrnas Unedig"
+
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
+msgstr "maethodd y gosodiad"
+
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
+msgstr "Nid yw'r rhainad estynedig yncael ei gynnal ay y platfform hwn"
+
+#: ../../partition_table.pm_.c:685
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"
-"!!"
+"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 ""
-"Dewiswch pa wasanaethau rydych am eu cael wrth gychwyn eich cyfrifiadur.\n"
-"\n"
-"Bydd DrakX yn rhestri'r holl wasanaethau sydd ar gael gyda'r gosodiad "
-"cyfredol.\n"
-"Darllenwch y rhestr yn ofalus a dad-diciwch y rhai nad oes eu hangen bob "
-"tro\n"
-"wrth gychwyn.\n"
-"\n"
-"Mae modd cael esboniad byr am wasanaeth wrth eu dewis. Ond, os nad ydych\n"
-"yn siwr a yw'r gwasanaeth o werth neu beidio, mae'n well cadw at y drefn\n"
-"rhagosodedig\n"
-"\n"
-"!!Byddwch yn ofalus iawn os ydych am ddefnyddio eich peiriant fel "
-"gwasanaethwr:\n"
-"mwy na thebyg na fyddwch eisiau cychwyn unrhyw wasanaethau nad oes eu\n"
-"hangen. Cofiwch fod cael nifer o wasanaethau wedi eu galluogi ar y "
-"gwasanaethwr,\n"
-"fod yn beryglus. Yn gyffredinol, dim ond dewis y gwasanaethau mae'n rhaid eu "
-"cael.\n"
-"!!"
+"Mae gennych dwll yn nhabl eich rhaniad ond nid wyf yn medru ei ddefnyddio\n"
+"Yr unig ateb yw i symud eich rhaniadau cynradd fel bo'r twll nesaf at y "
+"rhaniadau estynedig "
-#: ../../lang.pm:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "Niue"
-msgstr "Niue"
+msgid "Restoring from file %s failed: %s"
+msgstr "Methodd adfer o ffeil %s: %s"
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "Hepgor"
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
+msgstr "Ffeil wrth gefn gwallus"
-#: ../../services.pm:1
+#: ../../partition_table.pm_.c:796
#, c-format
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Cychwyn/Gorffen pob rhyngwyneb rhwydwaith sydd wedi eu \n"
-"ffurfweddu i gychwyn wrth gychwyn y peiriant."
+msgid "Error writing to file %s"
+msgstr "Gwall wrth ysgrifennu i ffeil %s"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../partition_table/raw.pm_.c:192
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)"
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
msgstr ""
-"amledd y cpu mewn MHz (y nifer o gyfarwyddiadau'r eiliad mae'r cypu yn gallu "
-"eu trin)"
+"Mae rhywbeth gwael yn digwydd ar eich disg.\n"
+"Mae prawf i fesur ei gyfanrwydd wedi methu. \n"
+"Nid oes gwerth ysgrifennu i'r ddisg"
-#: ../../pkgs.pm:1
-#, c-format
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr "rhaid cael"
+
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "pwysig"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "Offeryn Rheoli Argraffydd Mandrake Linux"
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr "hyfryd iawn"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
-msgstr "Cyfanswm Cynydd"
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr "hyfryd"
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"Bydd DrakX yn canfod unrhyw ddyfais IDE sydd ar eich cyfrifiadur. Bydd yn\n"
-"chwilio am un neu fwy o gardiau SCSI PCI ar eich system. Os oes Cerdyn\n"
-"SCSI'n cael ei ganfod bydd DrakX yn awtomatig yn gosod y gyrrwr priodol.\n"
-"\n"
-"Oherwydd nad yw canfod caledwedd bob tro'n canfod darn o galedwedd,\n"
-"gall DrakX fethu canfod eich dsgiau caled. Os felly, bydd rhaid i chi bennu\n"
-"eich caledwedd â llaw.\n"
-"\n"
-"Os ydych wedi pennu eich addaswr PCI SCS gyda llaw, bydd DrakX yn\n"
-"gofyn i chi ydych am bennu dewisiadau ar ei gyfer. Dylech adael i DrakX "
-"ofyn\n"
-"i'r cerdyn am ddewisiadau penodol i'r cerdyn mae angen i'r caledwedd eu\n"
-"cychwyn. Mae hyn fel rheol yn gweithio'n dda\n"
-"\n"
-"Os nad yw DrakX yn medru holi am y dewisiadau sydd eu hangen, bydd rhaid i\n"
-" chi ffurfweddu'r gyrrwr gyda llaw. "
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr "efallai"
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr "Aruba"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
+msgstr "PDQ - Print, Don't Queue"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "Defnyddwyr"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
+msgstr "PDQ"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Paratoi cychwynnydd"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
+msgstr "LPD - Line Printer Daemon"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
-"Rhowch eich gwybodaeth bersonol, bydd y cyfrinair yn cael ei ddefnyddio ar "
-"gyfer yr arbedwr sgrîn"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
+msgstr "LPD"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Mynedfa (e.e. %s)"
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
+msgstr "LPRng - LPR New Generation"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
-msgstr "Nid yw'r cyfrineiriau'n cyd-fynd"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
+msgstr "LPRng"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Esiamplau cywir ar gyfer IP:\n"
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
+msgstr "CUPS - Common Unix Printing System"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "Dewiswch y cyfrwng ar gyfer cadw wrth gefn."
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
+msgstr "CUPS"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Amledd (MHz)"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+msgid "Unknown Model"
+msgstr "Model anhysbys"
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"I ddefnyddio'r dewis o becynnau wedi eu cadw, cychwynnwch y gosodiad gyda "
-"``linux defcfg=floppy''"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "Argraffydd lleol"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of the processor"
-msgstr "rhif y prosesydd"
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
+msgstr "Argraffydd pell"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Cloc caledwedd wedi ei osod i GMT"
+#: ../../printer/main.pm_.c:28
+msgid "Printer on remote CUPS server"
+msgstr "Argraffydd ar wasanaethwr CUPS pell"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "Ydych chi eisiau cychwyn ffurfweddiad newydd?"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+msgid "Printer on remote lpd server"
+msgstr "Argraffydd ar wasanaethwr lpd pell"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Give a file name"
-msgstr "Rhowch enw ffeil"
+#: ../../printer/main.pm_.c:30
+msgid "Network printer (TCP/Socket)"
+msgstr "Argraffydd rhwydwaith (TCP/Soced)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Dewiswch y porth mae'r argraffydd wedi cysylltu iddo."
+#: ../../printer/main.pm_.c:31
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "Argraffydd ar wasanaethwr SMB/Windows 95/98/NT"
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "Newid CD-Rom"
+#: ../../printer/main.pm_.c:32
+msgid "Printer on NetWare server"
+msgstr "Argraffydd ar wasanaethwr NetWare"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "Paraguay"
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+msgid "Enter a printer device URI"
+msgstr "Rhowch URI dyfais argraffydd"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "Mae'r ffurfweddu wedi ei gwblhau, hoffech eu gosod?"
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
+msgstr "Peipio'r gwaith i orchymyn"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr ""
-"Defnyddio Cadw wrth Gefn Cynyddol/Differol (peidio disodli hen gadw wrth "
-"gefn)"
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
+msgstr "Model anhysbys"
-#: ../../standalone/drakTermServ:1
-#, 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:"
-msgstr ""
-" - Cynnal /etc/dhcpd.conf:\n"
-" \t\tIgychwyn cleient o'r rhyngrwyd mae pob cleient angen cofnod "
-"dhcpd.conf ei hun, \t\tiddynodi cyfeiriad IPa delwedd cychwyn "
-"rhyngrwyd i'r peiriant. Mae drakTermServ\n"
-" \t\tyn medru gosod/tynnu rhain\n"
-"\t\t\t\n"
-" \t\t(Gall cardiau PCI hepgor y ddelwedd - bydd etherboot yn gofyn am "
-"y ddelwedd cywir. Dylech\n"
-" \t\thefyd ystyried pan fo etherboot yn chwilio am y ddelwedd, bydd "
-"yn disgwyl enwqau fel\n"
-" \t\tboot-3c59x.nbi, yn lle boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tMae stanzal dhcpd.conf arferol i gynnal cleient diddisg yn "
-"edrych fel:"
+#: ../../printer/main.pm_.c:317
+msgid "Local Printers"
+msgstr "Argraffyddion Lleol"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr "Nid oes gyrrwr hysbys ar gyfer eich cerdyn sain (%s)"
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+msgid "Remote Printers"
+msgstr "Argraffyddion Pell"
-#: ../../standalone/drakfloppy:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid "force"
-msgstr "grym"
+msgid " on parallel port \\/*%s"
+msgstr " ar borth paralel \\/\"%s"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid "Exit"
-msgstr "Gadael"
+msgid ", USB printer \\/*%s"
+msgstr ", argraffydd USB \\/\"%s"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
-"NODYN: Yn dibynnu ar yr argraffydd a'r system argraffu bydd hyd at %d MB o "
-"feddalwedd ychwanegol yn cael ei osod."
+msgid ", multi-function device on parallel port \\/*%s"
+msgstr ", dyfais amlbwrpas ar borth paralel \\/\"%s"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nid oes gennych unrhyw rhagwynebau wedi\n"
-"eu ffurfweddio. Ffurfweddwch nhw'n gyntaf\n"
-"drwy glicio ar 'Ffurfweddu'"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
+msgstr ", dyfais amlbwrpas ar USB"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "Estonaidd"
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
+msgstr ", dyfais amlbwrpas ar HP JetDirect"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"Mae Apache yn wasanaethwr y We Fyd Eang. Mae'n cael ei ddefnyddio i "
-"wasanaethu ffeiliau HTML a CGI."
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
+msgstr ",dyfais amlbwrpas"
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:344
#, c-format
-msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-"Rhowch enw dyfais eich Ysgrifennwr CD\n"
-"ex: 0,1,0"
+msgid ", printing to %s"
+msgstr ", argraffu i %s"
-#: ../../standalone/draksec:1
+#: ../../printer/main.pm_.c:346
#, c-format
-msgid "ALL"
-msgstr "ALL"
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr "ar wasanaethwr LPD \"%s\", argraffydd \"%s\""
-#: ../../standalone/drakTermServ:1
+#: ../../printer/main.pm_.c:348
#, c-format
-msgid "Add/Del Clients"
-msgstr "Ychwanegu/Dileu Cleientiaid"
+msgid ", TCP/IP host \"%s\", port %s"
+msgstr ", gwesteiwr TCP/IP \"%s\", porth %s"
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid "Choose the network interface"
-msgstr "Dewiswch rhag wyneb y rhwydwaith"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr "ar wasanaethwr SMB/Windows \"%s\", rhannu \"%s\""
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid "Unknown Model"
-msgstr "Model anhysbys"
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr "ar wasanaethwr Novell \"%s\", argraffydd \"%s\""
-#: ../../harddrake/data.pm:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid "CD/DVD burners"
-msgstr "Llosgwyr CD/DVD"
+msgid ", using command %s"
+msgstr ", defnyddio gorchymyn %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Cychwyn y rhaniad fel rhagosodwyd\n"
-" (ar gyfer cychwyn MS-DOS, nid ar gyfer lilo)\n"
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
+msgstr "Argraffydd crai (dim gyrrwr)"
-#: ../../standalone/drakperm:1
+#: ../../printer/main.pm_.c:647
#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Galluogi \"%s\" i ddarllen y ffeil"
+msgid "(on %s)"
+msgstr "(ar %s)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image"
-msgstr "dewis ymyl"
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
+msgstr "(ar y peiriant hwn)"
-#: ../../network/shorewall.pm:1
+#: ../../printer/main.pm_.c:674
#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Wedi canfod ffurfweddiad mur gwarchod!"
+msgid "On CUPS server \"%s\""
+msgstr "Ar wasanaethwr CUPS \"%s\""
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "Enw'r cysylltiad"
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
+msgstr "(Rhagosodedig)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"x coordinate of text box\n"
-"in number of characters"
-msgstr ""
-"blwch testun cydfesuryn x\n"
-"mewn rhif nodau"
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
+msgstr "Dewiswch Gysylltiad Argraffydd"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
+msgstr "Sut mae'r argraffydd wedi ei gysylltu?"
+
+#: ../../printer/printerdrake.pm_.c:30
msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
+"\n"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
msgstr ""
-"Efallai na fydd modd i chi osod lilo (gan nad yw lilo'n trin LV ar PV "
-"lluosog)"
+"\n"
+"Nid oes angen ffurfweddu argraffyddion ar wasanaethwyr CUPS pell: byddant yn "
+"cael eu canfod yn awtomatig."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Updating package selection"
-msgstr "Diweddaru'r dewis pecynnau"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr "Awtoganfod argraffydd (Argraffyddion lleol, TCP/Socket, ac SMB)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "Lle'r hoffech chi osod y ffeil cylch-ol %s?"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+msgid "CUPS configuration"
+msgstr "Furfweddiad CUPS"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+msgid "Specify CUPS server"
+msgstr "Enwch wasanaethwr CUPS"
+
+#: ../../printer/printerdrake.pm_.c:83
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Mae'r disg meddal wedi ei gynhyrchu'n llwyddiannus. \n"
-"Medrwch ail chwarae eich gosodiad."
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
+msgstr ""
+"Gyda gwasanaethwyr CUPS nid oes rhaid i chi ffurfweddu unrhyw argraffydd "
+"yma; mae gwasanaethwyr CUPS yn eich hysbysu'n awtomatig am eu "
+"hargraffyddion. Mae'r holl argraffyddion cyfredol sy'n hysbys i'ch peiriant "
+"yn cael eu rhestri yn adran \"Argraffyddyddion Pell\" prif ffenestr "
+"Printerdrake. Pan nad yw eich gwasanaethwr CUPS yn eich rhwydwaith lleol, "
+"rhaid rhoi i'r gwasanaethwr CUPS gyfeiriad IP ac yn ddewisol rhif y porth i "
+"dderbyn gwybodaeth am yr argraffydd gan y gwasanaethwr, neu gadewch y "
+"meysydd yn wag."
+
+#: ../../printer/printerdrake.pm_.c:84
+msgid ""
+"\n"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
+msgstr ""
+"\n"
+"Fel rheol, mae CUPS yn cael ei ffurfweddu'n awtomatig yn ôl amgylchedd eich "
+"rhwydwaith, fel bo modd i chi gael mynediad at yr argraffyddion ar "
+"wasanaethwr CUPS yn eich rhwydwaith lleol. Os nad yw hyn yn gweithio'n iawn, "
+"diffoddwch \"Ffurfweddiad CUPS awtomatig\" a golygwch eich ffeil /etc/cups/"
+"cupsd.conf gyda llaw. Peidiwch anghofio ailgychwyn CUPS eto (gorchymyn: "
+"\"service cups restart\")."
+
+#: ../../printer/printerdrake.pm_.c:88
+msgid "The IP address should look like 192.168.1.20"
+msgstr "Dylai cyfeiriad IP edrych fel 192.168.1.20"
+
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
+msgstr "Dylai rhif porth fod yn gyfanrif!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Defnyddiwch y CD/DVDROM i gadw wrth gefn"
+#: ../../printer/printerdrake.pm_.c:99
+msgid "CUPS server IP"
+msgstr "IP gwasanaethwr CUPS"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "nifer y botymau sydd gan y llygoden"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
+msgstr "Porth"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
-msgstr "Ail chwarae"
+#: ../../printer/printerdrake.pm_.c:102
+msgid "Automatic CUPS configuration"
+msgstr "Furfweddiad CUPS Awtomatig"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup other files"
-msgstr "Cadw'r ffeiliau eraill wrth gefn"
+#: ../../printer/printerdrake.pm_.c:159
+msgid "Checking your system..."
+msgstr "Gwirio eich system..."
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "Does dim gyrrwr disg meddal ar gael"
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+msgid "Printerdrake"
+msgstr "Printerdrake"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Mae'r ffeiliau wrth gefn wedi eu llygru"
+#: ../../printer/printerdrake.pm_.c:167
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+"Nid oes unrhyw argraffydd wedi ei ganfod wedi ei gysylltu'n uniongyrchol "
+"â'ch cyfrifiadur"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
-msgstr "Safon Teledu:"
+#: ../../printer/printerdrake.pm_.c:179
+msgid ""
+"The following printers\n"
+"\n"
+msgstr ""
+"Yr argraffyddion canlynol\n"
+"\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr "Teulu cpuid"
+#: ../../printer/printerdrake.pm_.c:180
+msgid ""
+"The following printer\n"
+"\n"
+msgstr ""
+"Yr argraffydd canlynol\n"
+"\n"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
+#: ../../printer/printerdrake.pm_.c:182
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+"\n"
+"ac mae un argraffydd anhysbys"
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm_.c:184
#, c-format
-msgid "type: thin"
-msgstr "math: tenau"
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+"\n"
+"a %d argraffydd anhysbys"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lithuenaidd AZERTY (newydd)"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"are "
+msgstr ""
+"\n"
+"yn"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"is "
msgstr ""
-"mae iawn yn golygu fod gan y cydbrosesydd fector eithriad yn gysylltiedig"
+"\n"
+"mae"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:189
+msgid "directly connected to your system"
+msgstr "wedi ei gysylltu'n uniongyrchol â'ch system!"
+
+#: ../../printer/printerdrake.pm_.c:192
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"
+"\n"
+"There is one unknown printer directly connected to your system"
msgstr ""
-"Rydych wedi dewis meddalwedd rhannu RAID fel gwraidd (/)\n"
-"Nid oes cychwynnydd yn medru trin hwn heb rhaniad /boot\n"
-"Cofiwch ychwanegu rhaniad /boot"
+"\n"
+"Mae un argraffydd anhysbys wedi ei gysylltu'n uniongyrchol â'ch system"
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:194
#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "Systemau Gweithredu Eraill (MacOS...)"
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+"\n"
+"Mae yna %d argraffydd anhysbys wedi eu cysylltu'n uniongyrchol â'ch system"
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
-msgstr "I ysgogi'r llygoden,"
+#: ../../printer/printerdrake.pm_.c:200
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr ""
+"(Gwnewch yn siwr bod eich argraffyddion wedi eu cysylltu a'u troi mlaen).\n"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "Cychwyn y rhwydwaith"
+#: ../../printer/printerdrake.pm_.c:214
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+"Ydych chi am ganiatáu argraffu ar yr argraffyddion enwir uchod neu ar yr "
+"argraffyddion ar y rhwydwaith lleol?\n"
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Bydd lluniau o'r sgrîn ar gael ar ôl gosod yn %s"
+#: ../../printer/printerdrake.pm_.c:215
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Ydych chi am alluogi argraffu ar argraffydd mewn rhwydwaith leol?\n"
+
+#: ../../printer/printerdrake.pm_.c:217
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Ydych chi am alluogi argraffu ar yr argraffyddion enwwi'r uchod?\n"
+
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr "Ydych chi'n siwr eich bod am osod argraffu ar y peiriant hwn?\n"
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:219
#, 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"
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+"NODYN: Yn dibynnu ar yr argraffydd a'r system argraffu bydd hyd at %d MB o "
+"feddalwedd ychwanegol yn cael ei osod."
+
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+msgid "Add a new printer"
+msgstr "Ychwanegu argraffydd newydd"
+
+#: ../../printer/printerdrake.pm_.c:259
+msgid ""
"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\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"
-"\"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"
+"It asks you for all necessary information to set up the printer and gives "
+"you access to all available printer drivers, driver options, and printer "
+"connection types."
+msgstr ""
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
+" Croeso i'r Dewin Gosod Argraffydd\n"
"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"Mae'r dewin yn caniatáu i chi osod argraffyddion lleol neu bell i'w "
+"defnyddio o'r peiriant hwn a hefyd gan argraffyddion eraill ar eich "
+"rhwydwaith.\n"
"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"Bydd yn gofyn am yr holl wybodaeth angenrheidiol i osod yr argraffydd a bydd "
+"yn rhoi mynediad i'r holl yrwyr argraffyddion sydd ar gael, dewisiadau "
+"gyrwyr a mathau o gysylltiadau argraffyddion."
+
+#: ../../printer/printerdrake.pm_.c:272
+msgid ""
"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\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"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\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) and you Windows machines must be connected and "
+"turned on.\n"
"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
+"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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Mae mwy nag un rhaniad Microsoft wedi ei ganfod ar eich disg caled.\n"
-"Dewiswch ba un rydych am newid ei faint er mwyn gosod eich\n"
-"system weithredu Mandrake Linux newydd\n"
"\n"
-"Mae pob rhaniad wedi ei restri fel hyn: \"Enw Linux\", \"Enw Microsoft\",\n"
-"\"Maint\".\n"
+"Croeso i'r Dewin Gosod Argraffydd\n"
"\n"
-"Mae \"Enw Linux\" wedi ei strwythuro fel hyn: \"math o ddisg caled\", \n"
-"\"rhif y disg caled\", \"rhif y rhaniad\" (e.e., \"hda1\").\n"
+"Bydd y dewin yn eich cynorthwyo i osod argraffydd(ion) sydd wedi eu cysylltu "
+"â'r cyfrifiadur hwn,yn gysylltiedig â'r rhwydwaith neu i beiriant Windows "
+"pell.\n"
"\n"
-"\"hd\" yw'r \"Math o ddisg caled\" os mai disg caled IDE sydd gennych\n"
-"a \"sd\" yw disg caled SCSI.\n"
+"Os oes gennych argraffydd(ion) yn gysylltiedig â'r peiriant, cysylltwch nhw "
+"â'r peiriant a'u troi nhw mlaen fel bod modd awtoganfod. Hefyd rhaid i "
+"argraffydd(ion) rhwydwaith a'ch peiriannau Windows fod wedi eu cysylltu ac "
+"ymlaen.\n"
"\n"
-"Llythyren wedi'r \"hd\" neu \"sd\" yw'r \"Rhif disg caled\" bob tro.\n"
-"Gyda disgiau caled IDE:\n"
+"Sylwer bod awtoganfod argraffyddion ar rwydwaith yn cymryd mwy o amser nag "
+"awtoganfod argraffyddion sy'n gysylltiedig â'r peiriant hwn. Felly, "
+"diffoddwch awto ganfod rhwydwaith pan nad oes mo'i angen.\n"
"\n"
-" * mae \"a\" yn golygu \"prif ddisg caled ar y rheolydd IDE cyntaf\",\n"
+"Cliciwch \"Nesaf\" pan ydych yn barod, a \"Diddymu\" os nad ydych am osod "
+"eich argraffydd(ion) ar hyn o bryd."
+
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
+msgid ""
"\n"
-" * mae \"b\" yn golygu \"ddisg caled gwas ar y rheolydd IDE cyntaf\",\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" * mae \"c\" yn golygu \"prif ddisg caled ar yr ail reolydd IDE\",\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
"\n"
-" * mae \"d\" yn golygu \"ddisg caled gwas ar yr ail reolydd IDE\",\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"
-"Gyda disgiau caled SCSI mae \"a\" yn golygu'r \"enw SCSI isaf\", ac mae\n"
-" \"b\" yn golygu'r \"ail enw SCSI isaf\", ag ati.\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
"\n"
-"Mae \"Enw Windows\" yn cyfeirio at y llythyren y disg caled o dan\n"
-" Windows (\"C:\" yw'r ddisg neu raniad cyntaf)."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
-msgstr "Tanzania"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "Cyfrifo ffiniau system ffeiliau FAT"
+"Croeso i'r Dewin Gosod Argraffydd\n"
+"\n"
+"Bydd y dewin yn eich cynorthwyo i osod argraffydd(ion) sydd wedi eu cysylltu "
+"â'r cyfrifiadur hwn,\n"
+"Os oes gennych argraffydd(ion) yn gysylltiedig â'r peiriant, cysylltwch nhw "
+"â'r peiriant a'u troi nhw mlaen fel bod modd awtoganfod.\n"
+"\n"
+"Cliciwch \"Nesaf\" pan ydych yn barod, a \"Diddymu\" os nad ydych am osod "
+"eich argraffydd(ion) ar hyn o bryd."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:289
msgid ""
"\n"
-"Backup Sources: \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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
"\n"
-"Ffynhonell Cadw wrth Gefn:\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "custom"
-msgstr "arddull"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Content of the file"
-msgstr "Cynnwys y ffeil"
+"Croeso i'r Dewin Gosod Argraffydd\n"
+"\n"
+"Bydd y dewin yn eich cynorthwyo i osod argraffydd(ion) sydd wedi eu cysylltu "
+"â'r cyfrifiadur hwn, yn gysylltiedig â'r rhwydwaith.\n"
+"\n"
+"Os oes gennych argraffydd(ion) yn gysylltiedig â'r peiriant, cysylltwch nhw "
+"â'r peiriant a'u troi nhw mlaen fel bod modd awtoganfod. Hefyd rhaid i "
+"argraffydd(ion) rhwydwaith a'ch peiriannau Windows fod wedi eu cysylltu ac "
+"ymlaen.\n"
+"\n"
+"Sylwer bod awtoganfod argraffyddion ar rwydwaith yn cymryd mwy o amser nag "
+"awtoganfod argraffyddion sy'n gysylltiedig â'r peiriant hwn. Felly, "
+"diffoddwch awto ganfod rhwydwaith pan nad oes mo'i angen.\n"
+"\n"
+"Cliciwch \"Nesaf\" pan ydych yn barod, a \"Diddymu\" os nad ydych am osod "
+"eich argraffydd(ion) ar hyn o bryd."
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
-msgstr "Dilysu LDAP"
+#: ../../printer/printerdrake.pm_.c:307
+msgid "Auto-detect printers connected to this machine"
+msgstr "Awto ganfod argraffyddion sy'n gysylltiedig a'r peiriant hwn"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
-msgstr "er mwyn cadw %s"
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+"Awtoganfod argraffyddion sy'n gysylltiedig yn uniongyrchol â'r rhwydwaith "
+"lleol"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
-msgstr "Dewis gyrrwr fy hun"
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+"Awtoganfod argraffyddion sy'n gysylltiedig â pheiriannau'n rhedeg Microsoft "
+"Windows"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
-msgstr "darlledwyd"
+#: ../../printer/printerdrake.pm_.c:329
+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."
+msgstr ""
+"\n"
+"Llongyfarchiadau, mae eich argraffydd wedi ei osod a'i ffurfweddu!\n"
+"\n"
+"Os ydych am ychwanegu, tynnu neu ailenwi argraffydd, neu os ydych am newid y "
+"gosodiadau dewis rhagosodedig (mewnflwch papur, ansawdd y printiad,...0, "
+"dewiswch \"Argraffydd\" yn adran \"Caledwedd\" Canolfan Rheoli Mandrake."
-#: ../../lang.pm:1
-#, c-format
-msgid "Palestine"
-msgstr "Palestina"
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Printer auto-detection"
+msgstr "Awto ganfod argraffydd"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:385
#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+msgid ", network printer \"%s\", port %s"
+msgstr ", rhwydwaith argraffu \"%s\", porth %s"
-#: ../../modules/parameters.pm:1
+#: ../../printer/printerdrake.pm_.c:387
#, c-format
-msgid "%d comma separated strings"
-msgstr "%d llinellau gwahanwyd gan collnod"
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr ", argraffydd \"%s\" ar wasanaethwr SMB/Windows \"%s\""
-#: ../../network/netconnect.pm:1
+#: ../../printer/printerdrake.pm_.c:391
#, c-format
-msgid " isdn"
-msgstr " isdn"
+msgid "Detected %s"
+msgstr "Canfyddwyd %s"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "Dyma restr lawn o'r bysellfyrddau ar gael"
+msgid "Printer on parallel port \\/*%s"
+msgstr "Argraffydd ar borth paralel \\/\"%s"
-#: ../../standalone/draksplash:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "Theme name"
-msgstr "Enw Thema"
+msgid "USB printer \\/*%s"
+msgstr "Argraffydd USB \\/\"%s"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
+#: ../../printer/printerdrake.pm_.c:399
#, c-format
-msgid "/_Help"
-msgstr "/_Cymorth"
+msgid "Network printer \"%s\", port %s"
+msgstr "Argraffydd rhwydwaith \"%s\", porth %s"
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm_.c:401
#, c-format
-msgid "Choosing an arbitrary driver"
-msgstr "Dewis gyrrwr ar hap"
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Argraffydd \"%s\" ar wasanaethwr SMB/Windows \"%s\""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "Ynysoedd Cook"
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+msgid "Local Printer"
+msgstr "Argraffydd Lleol"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:526
msgid ""
-"Here you can choose whether the scanners connected to this machine should be "
-"accessable by remote machines and by which remote machines."
+"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 ""
-"Yma medrwch benderfynu a ddylai'r sganwyr sy'n gysylltiedig â'r cyfrifiadur "
-"hwn fod ar gael i gyfrifiaduron pell a pha rai."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the width of the progress bar"
-msgstr "lled y bar cynnydd"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Yn fformatio rhaniad %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hostname required"
-msgstr "Mae angen enw gwesteiwr"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "Tynnu ffontiau wedi eu gosod"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Ôlwyn"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit kernel version"
-msgstr "Cyflwyno fersiwn y cnewyllyn"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Cancel"
-msgstr "Diddymu"
+"Heb ganfod argraffydd lleol! I osod argraffydd gyda llaw, rhowch enw'r "
+"ddyfais /enw ffeil ar y llinell mewnbwn (Porth Paralel: /dev/lp0, /"
+"dev/,...., cyfatebol i LPT1:, LPT2,..., argraffydd USB 1af: /dev/usb/lp0, "
+"ail argraffydd USB: /dev/usb/lp1,...)."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for configured scanners ..."
-msgstr "Chwilio am sganiwr wedi ei ffurfweddu..."
+#: ../../printer/printerdrake.pm_.c:530
+msgid "You must enter a device or file name!"
+msgstr "Rhaid cynnig enw dyfais neu ffeil!"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Videocard"
-msgstr "Cerdyn fideo"
+#: ../../printer/printerdrake.pm_.c:539
+msgid "No printer found!"
+msgstr "Heb ganfood argraffydd!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\t Bydd Cadw wrth gefn yn defnyddio tar a bzip2\n"
+#: ../../printer/printerdrake.pm_.c:548
+msgid "Available printers"
+msgstr "Argraffyddion ar gael"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Remove Selected"
-msgstr "Tynnu'r Dewis"
+#: ../../printer/printerdrake.pm_.c:552
+msgid ""
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
+msgstr ""
+"Cafodd yr argraffydd canlynol ei awto ganfod, os nad hwn yw'r un rydych am "
+"ei ffurfweddu, rhowch enw dyfais/enw ffeil ar y llinell mewnbwn."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Awtoganfod_modem"
+#: ../../printer/printerdrake.pm_.c:553
+msgid ""
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
+msgstr ""
+"Dyma restr o'r holl argraffyddion gafodd eu awto ganfod. Dewiswch yr "
+"argraffydd rydych am ei osod neu rhowch enw dyfais/ffeil yn y llinell "
+"mewnbwn."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove printer"
-msgstr "Tynnu argraffydd"
+#: ../../printer/printerdrake.pm_.c:555
+msgid ""
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
+msgstr ""
+"Cafodd yr argraffydd hwn ei awto ganfod. Bydd ffurfweddi'r argraffydd yn "
+"digwydd yn awtomatig. Os na chafodd eich argraffydd ei ganfod yn gywir neu "
+"byddai'n well gennych ffurfweddiad unigryw i'ch argraffydd, cychwynnwch "
+"\"Ffurfweddiad gyda Llaw\"."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Last Log"
-msgstr "Darllen y Cofnod Olaf"
+#: ../../printer/printerdrake.pm_.c:556
+msgid ""
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
+msgstr ""
+"Dyma restr o'r holl argraffyddion gafodd eu awto ganfod. Dewiswch yr "
+"argraffydd rydych am ei osod. Bydd ffurfweddu'r argraffydd yn digwydd yn "
+"awtomatig. Os na chafodd eich argraffydd ei ganfod yn gywir neu byddai'n "
+"well gennych ffurfweddiad unigryw i'ch argraffydd, cychwynnwch "
+"\"Ffurfweddiad gyda Llaw\"."
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "Pa wasanaethau'r hoffech i'r Rhyngrwyd gysylltu â hwy?"
+#: ../../printer/printerdrake.pm_.c:558
+msgid ""
+"Please choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
+msgstr ""
+"Dewiswch y porth y mae eich argraffydd wedi cysylltu iddo neurhowch enw "
+"dyfais/ffeil ar y ninell mewnbwn"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Connection Type"
-msgstr "Math o Gyswllt"
+#: ../../printer/printerdrake.pm_.c:559
+msgid "Please choose the port where your printer is connected to."
+msgstr "Dewiswch y porth mae'r argraffydd wedi cysylltu iddo."
-#: ../../standalone/logdrake:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:561
msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-"Croeso i'r gwasanaeth ffurfweddu e-bost\n"
-"\n"
-"Yma bydd modd i chi osod y system rhybuddio.\n"
+" (Pyrth paralel: /dev/lp0, /dev/lp1, ..., yn cyfateb i LPT1:, LPT2:, ..., "
+"argraffydd USB cyntaf: /dev/usb/lp0, ail argraffydd USB : /dev/usb/lp1, ...)."
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Other"
-msgstr "Arall"
+#: ../../printer/printerdrake.pm_.c:565
+msgid "You must choose/enter a printer/device!"
+msgstr "Rhaid dewis/rhoi argraffydd/dyfais!"
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
-msgstr "Rhagosodedig"
+#: ../../printer/printerdrake.pm_.c:584
+msgid "Manual configuration"
+msgstr "Ffurfweddiad gyda llaw"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Efelychiad Botwm 2"
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
+msgstr "Dewisiadau Argraffydd lpd Pell"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter a package name."
-msgstr "Rhowch enw'r pecyn."
+#: ../../printer/printerdrake.pm_.c:634
+msgid ""
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
+msgstr ""
+"I ddefnyddio argraffydd lpd pell, rhaid darparu enw gwesteiwr gwasanaethwr "
+"yr argraffydd ac enw'r argraffydd ar y gwasanaethwr hwnnw."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run chkrootkit checks"
-msgstr "Rhedeg gwirio gyda chkrootkit."
+#: ../../printer/printerdrake.pm_.c:635
+msgid "Remote host name"
+msgstr "Enw gwesteiwr pell"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "type1inst building"
-msgstr "adeiladu math 1inst"
+#: ../../printer/printerdrake.pm_.c:636
+msgid "Remote printer name"
+msgstr "Enw'r argraffydd pell"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
+#: ../../printer/printerdrake.pm_.c:639
+msgid "Remote host name missing!"
+msgstr "Mae enw'r gwesteiwr pell ar goll!"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image file"
-msgstr "dewis ffeil delwedd"
+#: ../../printer/printerdrake.pm_.c:643
+msgid "Remote printer name missing!"
+msgstr "Mae enw'r argraffydd pell ar goll!"
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
#, c-format
-msgid "X server"
-msgstr "Gwasanaethwr X"
+msgid "Detected model: %s %s"
+msgstr "Canfyddwyd model %s %s"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin User Name"
-msgstr "Enw Defnyddiwr Gweinyddiaeth Parth"
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Scanning network..."
+msgstr "Chwilio'r rhwydwaith..."
-#: ../../standalone/drakxtv:1
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Digwyddodd gwall wrth sganio am sianelu teledu"
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ", argraffydd \"%s\" ar wasanaethwr \"%s\""
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
#, c-format
-msgid "US keyboard (international)"
-msgstr "Bysellfwrdd UDA (rhyngwladol)"
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Argraffydd \"%s\" ar wasanaethwr \"%s\""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Not installed"
-msgstr "Heb ei osod"
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "Dewisiadau Argraffydd SMB (Windows 9x/NT)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Y ddwy fysell Alt gyda'i gilydd"
+#: ../../printer/printerdrake.pm_.c:796
+msgid ""
+"To print to a SMB printer, you need to provide the SMB host name (Note! It "
+"may be different from its TCP/IP hostname!) and possibly the IP address of "
+"the print server, as well as the share name for the printer you wish to "
+"access and any applicable user name, password, and workgroup information."
+msgstr ""
+"I argraffu i argraffydd SMB, rhaid darparu enw gwesteiwr SMB (Sylwer! Mi all "
+"fod yn wahanol i'w enw gwesteiwr TCP/IP!) ac o bosibl cyfeiriad IP'r "
+"gwasanaethwr argraffu, yn ogystal â'r enw rhannu ar gyfer yr argraffydd "
+"rydych am gael mynediad iddo ac unrhyw enw defnyddiwr, cyfrinair a "
+"gwybodaeth am grwp gwaith perthynol."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "LAN connection"
-msgstr "cysylltiad LAN"
+#: ../../printer/printerdrake.pm_.c:797
+msgid ""
+" If the desired printer was auto-detected, simply choose it from the list "
+"and then add user name, password, and/or workgroup if needed."
+msgstr ""
+"Os cafodd yr argraffydd ei awtoganfod, dewiswch ef o'r rhestr ac ychwanegu "
+"enw defnyddiwr, cyfrinair a/neu grwp gwaith yn ôl yr angen."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/-"
-msgstr "/Ffeil/-"
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
+msgstr "Gwasanaethwr gwesteiwr SMB"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Italian"
-msgstr "Eidalaidd"
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr "IP Gwasanaethwr SMB"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Basic"
-msgstr "Elfennol"
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr "Rhannu enw"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "Grwp gwaith"
-#: ../../lang.pm:1
-#, c-format
-msgid "Honduras"
-msgstr "Honduras"
+#: ../../printer/printerdrake.pm_.c:806
+msgid "Auto-detected"
+msgstr "Awto ganfyddwyd"
-#: ../../help.pm:1
-#, c-format
-msgid "pdq"
-msgstr "pdq"
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
+msgstr "Rhaid rhoi un ai enw'r gwasanaethwr neu IP'r gwasanaethwr!"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO"
-msgstr "IO'r Cerdyn"
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
+msgstr "Mae enw rhannu Samba ar goll!"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Samba server"
-msgstr "Gwasanaethwr Samba"
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
+msgstr "RHYBUDD DIOGELWCH!"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:827
#, 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"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
+"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"
-"Mae'r rhaniad Bootstrap\n"
-"hwn ar gyfer cychwyniad\n"
-"dwbl eich system\n"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
msgstr ""
-"Dewiswch ar gyfer pob cam a fydd yn ail chwarae fel eich gosodiad, neu a "
-"fydd gyda llaw"
+"Rydych ar fin gosod y modd i argraffu i gyfrif Windows gyda chyfrinair. "
+"Oherwydd gwall ym mhensaernïaeth meddalwedd cleient Samba mae'r cyfrinair yn "
+"cael ei osod mewn testun plaen ar y llinell orchymyn y cleient Samba sy'n "
+"cael ei ddefnyddio i anfon gwaith argraffu i'r gwasanaethwr Windows. Felly "
+"mae'n bosibl i bob defnyddiwr ar y peiriant i arddangos y cyfrinair ar y "
+"sgrin drwy'r gorchymyn \"ps auxwww\".\n"
+"\n"
+"Rydym yn argymell eich bod yn defnyddio un o'r dulliau gwahanol hyn ( yn yr "
+"holl achosion hyn, rhaid i chi wneud yn siwr mae dim ond peiriannau o'ch "
+"rhwydwaith lleol chi sydd â mynediad i'ch gwasanaethwr Windows, e.e. drwy "
+"gyfrwng mur cadarn).\n"
+"\n"
+"Defnyddio cyfrif heb gyfrinair ar eich gwasanaethwr Windows, defnyddio "
+"cyfrif \"Ymwelydd\" neu gyfrif arbennig ar gyfer argraffu. Peidiwch tynnu "
+"eich amddiffyniad cyfrinair o gyfrif personol na'r cyfrif gweinyddwr.\n"
+"\n"
+"Gosod eich gwasanaethwr Windows i wneud yr argraffydd ar gael o dan brotocol "
+"LPD. Yna gosod argraffu o'r peiriant hwn gyda chyswllt \"%s\" yn "
+"Printerdrake.\n"
+"\n"
-#: ../../standalone/scannerdrake:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
+"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 ""
-"Medrwch benderfynu a ddylai sganwyr ar gyfrifiadur pell fod ar gael ar gyfer "
-"y cyfrifiadur hwn."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Rhwydwaith drwy FTP.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reports check result to tty"
-msgstr "Adrodd adroddiadau gwirio i tty."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Rhaid cynnig enw dyfais neu ffeil!"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Quit"
-msgstr "/_Gadael"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Cof graffeg: %s kB\n"
+"Gosod eich gwasanaethwr Windows i wneud yr argraffydd ar gael o dan brotocol "
+"IPP a gosod argraffu o'r peiriant hwn gyda'r \"%s\" yn Printerdrake.\n"
+"\n"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:840
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"
+"Connect your printer to a Linux server and let your Windows machine(s) "
+"connect to it as a client.\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"
+"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-"Mae'r rhaglen hon yn feddalwedd rhydd; medrwch ei ailddosbarthu\n"
-"a/neu ei newid o dan amodau Trwydded Gyhoeddus Gyffredinol GNU\n"
-"fel sydd wedi ei gyhoeddi gan y Free Software Foundation; un ai fersiwn\n"
-"2 neu (yn ôl eich dewis) unrhyw fersiwn diweddarach.\n"
-"\n"
-" Mae'r rhaglen yn cael ei ddosbarthu yn y gobaith y bydd yn ddefnyddiol,\n"
-" ond HEB UNRHYW WARANT; heb hyd yn oed awgrym o warant o\n"
-" FASNACHEIDDRWYDD nag ADDASRWYDD AR GYFER PWRPAS\n"
-" PENODOL. Gweler Trwydded Gyhoeddus Gyffredinol GNU am fwy o\n"
-" wybodaeth.\n"
+"Cysylltu eich argraffydd i wasanaethwr Linux a gadael i'ch peiriant/"
+"peiriannau Windows gysylltu iddo fel cleient.\n"
"\n"
-" Dylech fod wedi derbyn copi o Drwydded Gyhoeddus Gyffredinol GNU\n"
-" gyda'r rhaglen; os nad, ysgrifennwch at:\n"
-" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n"
-"MA 02111-1307, USA\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to compilation tools"
-msgstr "mynediad i offer crynhoad"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Global statistics"
-msgstr "Ystadegau eang"
+"Ydych chi am barhau i osod yr argraffydd hwn?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Dewiswch y data i'w adfer..."
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
+msgstr "Dewisiadau Argraffydd NetWare"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:912
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"
+"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 ""
-"Os ydych yn bwriadu defnyddio aboot, gofalwch adael lle gwag (2048 sector yn "
-"ddigon)\n"
-"ar ddechrau'r ddisg."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Standard test page"
-msgstr "Tudalen prawf safonol"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Time Zone"
-msgstr "Cylchfa Amser"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create"
-msgstr "Creu"
+"I argraffu ar argraffydd NetWare, rhaid i chi rhoi enw gwasanaethwr argraffu "
+"NetWare (Sylwer! gall fod yn wahanol i'w enw gwesteiwr TCP/IP) yn ogystal "
+"â'r rhes waith argraffu am yr argraffydd rydych am gael mynediad iddo ac "
+"unrhyw enw defnyddiwr a chyfrinair perthnasol."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "What"
-msgstr "Beth"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr "Gwasanaethwr Argraffydd"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Roedd gwall wrth drefnu pecynnau"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
+msgstr "Enw Rhes Argraffu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "Bwlgaraidd (BDS)"
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
+msgstr "Mae enw gwasanaethwr NCP ar goll!"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Server"
-msgstr "Analluogi'r Gwasanaethwr"
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
+msgstr "Mae enw rhes NCP ar goll"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, c-format
-msgid "Filesystem encryption key"
-msgstr "Allwedd amgryptio system ffeil : "
+msgid ", host \"%s\", port %s"
+msgstr ", gwesteiwr \"%s\", porth %s"
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
-msgid "Gujarati"
-msgstr "Gujarati"
+msgid "Host \"%s\", port %s"
+msgstr ",Gwesteiwr \"%s\", porth %s"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-"\t\t\tEr bod modd defnyddio casgliad o gyfeiriadau IP, yn lle gosod cofnod "
-"penodol ar\n"
-"\t\t\t beiriant cleient, mae defnyddio cynllun cyfeiriad sefydlog yn "
-"caniatáu defnyddio\n"
-"\t\t\tnodweddionffeiliau ffurfweddu cleient penodol mae ClusterNFS yn "
-"darparu.\n"
-"\t\t\t\n"
-"\t\t\tSylwer: Mae'r cofnod \"#type\" yn cael ei ddefnyddio gan drakTermServ "
-"yn unig. Clients can either be 'thin'\n"
-" or 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, %s is\n"
-" written for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-" modified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-" using xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-" subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by drakTermServ. "
-"Clients can either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
+#: ../../printer/printerdrake.pm_.c:1030
+msgid "TCP/Socket Printer Options"
+msgstr "Dewisiadau Argraffydd TCP/Soced"
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1032
msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-"Dewiswch y rhif cyntaf o'r amrediad 10 rydych am ei olygu,\n"
-"neu wasgwch Enter i barhau.\n"
-"Eich dewis?"
+"Dewiswch un o'r argraffyddion sydd wedi eu awtoganfod o'r rhestr neu rhowch "
+"yr enw gwesteiwr neu IP a'r rhif porth dewisol (9100 yw'r rhagosodedig) i'r "
+"meysydd mewnbwn."
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1033
msgid ""
-"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
+"To print to a TCP or socket printer, you need to provide the host name or IP "
+"of the printer and optionally the port number (default is 9100). On HP "
+"JetDirect servers the port number is usually 9100, on other servers it can "
+"vary. See the manual of your hardware."
msgstr ""
-"\n"
-" Hawlfraint (C) 2002 MandrakeSoft\n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Save theme"
-msgstr "cadw thema"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "Brazil"
+"I argraffu i argraffydd TCP neu soced, rhaid i chi ddarparu enw gwesteiwr "
+"neu IP'r argraffydd ac yn ddewisol rhif y porth (Y rhagosodedig yw 9100). Ar "
+"wasanaethwyr HP JetDirect rhif y porth, fel rheol, yw 9100, gall amrywio ar "
+"wasanaethwyr eraill. Gweler llawlyfr eich caledwedd"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install"
-msgstr "Awto Gosod"
+#: ../../printer/printerdrake.pm_.c:1037
+msgid "Printer host name or IP missing!"
+msgstr "Mae enw'r gwesteiwr argraffu neu IP ar goll!"
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration Wizard"
-msgstr "Dewin Ffurfweddu'r Rhwydwaith"
+#: ../../printer/printerdrake.pm_.c:1059
+msgid "Printer host name or IP"
+msgstr "Enw'r gwesteiwr neu IP yr argraffydd"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
-msgstr "Cyfrwng symudadwy'n awto-osod"
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
+msgstr "URI Dyfais Argraffu"
-#: ../../services.pm:1
-#, c-format
-msgid "Printing"
-msgstr "Argraffu"
+#: ../../printer/printerdrake.pm_.c:1108
+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 ""
+"Medrwch enwi'n benodol URI i gael mynediad i'r argraffydd. Rhaid i'r URI "
+"gyflawni manylyn un ai CUPS neu Foomatic. Sylwer nad yw pob math o URI cyn "
+"cael eu cynnal gan bob sbwlydd ."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save:"
-msgstr "Rhowch y cyfeiriadur i gadw iddo:"
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
+msgstr "Rhaid cynnig URI dilys!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1463
msgid ""
-"There are no printers found which are directly connected to your machine"
+"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 ""
-"Nid oes unrhyw argraffydd wedi ei ganfod wedi ei gysylltu'n uniongyrchol "
-"â'ch cyfrifiadur"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "Creu rhaniad newydd"
+"Mae pob argraffydd angen enw (e.e. \"argraffydd\". Nid oes angen llanw "
+"meysydd Disgrifiad a Lleoliad. Lle ar gyfer sylwadau'r defnyddiwr sydd yma."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Driver:"
-msgstr "Gyrrwr:"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr "Enw'r argraffydd"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
-msgstr "anhysbys"
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
+msgstr "Disgrifiad"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "Defnyddiwch fdisk"
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
+msgstr "Lleoliad"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "SYMUDWCH YR OLWYN!"
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+msgid "Reading printer database..."
+msgstr "Darllen cronfa ddata argraffydd..."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "sent: "
-msgstr "anfonwyd: "
+#: ../../printer/printerdrake.pm_.c:1482
+msgid "Preparing printer database..."
+msgstr "Paratoi cronfa ddata argraffydd..."
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "IP awtomatig"
+#: ../../printer/printerdrake.pm_.c:1578
+msgid "Your printer model"
+msgstr "Model eich argraffydd"
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:1579
#, 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"
+"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"
-" * \"%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"
+"For your printer Printerdrake has found:\n"
"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
+"%s"
msgstr ""
-"Dyna ni. Mae'r gosodiad wedi ei gwblhau ac mae eich system GNU/Linux\n"
-"yn barod i'w ddefnyddio. Cliciwch \"%s\" i ailgychwyn y cyfrifiadur.\n"
-"Mae modd i chi gychwyn GNU/Linux neu Windows, prun bynnag sydd\n"
-"orau gennych (os oes gennych y ddwy system ar eich peiriant), gynted\n"
-"ag y bydd eich peiriant yn ail gychwyn. \n"
-"\n"
-"Mae'r botwm \"%s\" yn dangos dau fotwm arall:\n"
-"\n"
-" *\"%s\": i greu disg meddal gosod fydd yn creu\n"
-"gosodiad cyflawn heb gymorth gweithredwr, yn debyg i'r gosodiad sydd\n"
-"newydd ei ffurfweddu.\n"
-"\n"
-"Sylwer bod dau ddewis gwahanol i'w gael wedi clicio'r botwm:\n"
-"\n"
-" *\"%s\". Gosodiad rhannol awtomatig gan bod y cam o greu\n"
-"rhaniad yn cael ei hepgor.\n"
-"\n"
-" *\"%s\".Gosodiad cwbl awtomatig: mae'r disg caled wedi ei\n"
-"ailysgrifennu'n llwyr, a'r holl ddata wedi ei golli.\n"
-"\n"
-"Mae hwn yn nodwedd ddefnyddiol iawn pan yn gosod ar nifer fawr o\n"
-"beiriannau tebyg. Gw. yr adran Auto install ar ein safle gwe.\n"
+"Mae Printerdrake wedi cymharu'r enw model yn sgil yr awto ganfod gyda'r "
+"modelau sy'n cael eu rhestri yn ei gronfa ddata i gael y cydweddiad gorau. "
+"Gall y dewis fod yn anghywir, yn arbennig os nad yw eich argraffydd yn cael "
+"ei enwi yn y gronfa ddata. Felly, edrychwch i weld â yw'r dewis yn gywir a "
+"chliciwch \"Model cywir\" os yw ac os nad yw, cliciwch \" Dewiswch y model "
+"gyda llaw\" fel bo modd i chi ddewis eich argraffydd gyda llaw ar y sgrin "
+"nesaf.\n"
"\n"
-" *\"%s\":(*): mae hyn yn cadw'r dewis o becynnau\n"
-"wnaed cynt. Yna wrth wneud gosodiad arall, rhowch ddisg meddal yn y\n"
-"gyrrwr a rhedeg y gosodiad gan fynd i'r sgrîn cymorth drwy wasgu'r fysell\n"
-"[F1], a chyflwyno >>linux defcfg=\"floppy\"<<.\n"
+"Ar gyfer eich argraffydd mae Printerdrake wedi canfod\n"
"\n"
-"(*) Bydd angen disg meddal wedi ei fformatio fel FAT (i greu un yn\n"
-"GNU/Linux, teipiwch \"mformat a:\")"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Moldova"
-msgstr "Moldova"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuration of a remote printer"
-msgstr "Ffurfweddiad argraffydd pell"
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
-msgstr "Platfform ar-lein i ymateb i anghenion cefnogaeth benodol cwmni"
+"%s"
-#: ../../network/network.pm:1
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "Dylai'r URL ddechrau gyda 'ftp' neu 'http:'"
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+msgid "The model is correct"
+msgstr "Mae'r model yn gywir"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Oriya"
-msgstr "Oriya"
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+msgid "Select model manually"
+msgstr "Dewiswch y model gyda llaw"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Ychwanegu rheol newydd ar y diwedd"
+#: ../../printer/printerdrake.pm_.c:1606
+msgid "Printer model selection"
+msgstr "Dewis model yr argraffydd"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr "Themâu LiLo a Croeso Cychwyn wedi eu gosod yn llwyddiannus"
+#: ../../printer/printerdrake.pm_.c:1607
+msgid "Which printer model do you have?"
+msgstr "Pa fath o argraffydd sydd gennych?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1608
msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
+"\n"
+"\n"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-"Medrwch benderfynu a ddylai argraffydd ar gyfrifiadur pell fod ar gael ar "
-"gyfer y cyfrifiadur hwn."
+"\n"
+"\n"
+"Gwiriwch os yw Printerdrake wedi awto ganfod eich argraffydd yn gywir. "
+"Chwiliwch am y model cywir pan fo'r cyrchwr yn sefyll ar y model anghywir "
+"neu ar \"Argraffydd bras\"."
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1611
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''"
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
-"Medrwch nawr ei ddewis i fodiwl. %s.\n"
-"Mae'r dewisiadau yn fformat ``name=value name2=value2 ...''.\n"
-"e.e, ``io=0x300 irq=7''"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "Gorffen heb ysgrifennu'r tabl rhaniadau?"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Hard Drive"
-msgstr "ar Ddisg Caled"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "Installing packages..."
-msgstr "Gosod pecynnau..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dutch"
-msgstr "Isalmaenaidd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Angola"
-msgstr "Angola"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "Mae'r pecynnau canlynol angen eu gosod:\n"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "service setting"
-msgstr "gosodiad gwasanaeth"
-
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "Arddull"
+"Nid yw eich argraffydd wedi ei rhestri, dewiswch un cyfatebol (gw. llawlyfr "
+"eich argraffydd) neu un tebyg."
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
-msgstr "Latfia"
+#: ../../printer/printerdrake.pm_.c:1697
+msgid "OKI winprinter configuration"
+msgstr "Ffurfweddiad OKI winprinter "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
+#: ../../printer/printerdrake.pm_.c:1698
+msgid ""
+"You are configuring an OKI laser winprinter. These printers\n"
+"use a very special communication protocol and therefore they work only when "
+"connected to the first parallel port. When your printer is connected to "
+"another port or to a print server box please connect the printer to the "
+"first parallel port before you print a test page. Otherwise the printer will "
+"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-"Mae'r ffeil yn cael ei ddefnyddio eisoes gam gylch-ôl arall, dewiswch un "
-"arall"
+"Rydych yn ffurfweddu winprinter laser OKI. Mae'r argraffydd hwn\n"
+"yn defnyddio protocol cyfathrebu arbennig. Dim ond trwy eu cysylltu â'r "
+"porth paralel cyntaf mae modd cael yr argraffydd hwn i weithio. Pan fo eich "
+"argraffydd wedi ei gysylltu i borth arall neu i flwch gwasanaethwr argraffu, "
+"cysylltwch yr argraffydd i'r porth paralel cyntaf cyn argraffu tudalen "
+"brawf. Os na wnewch chi hynny, ni fydd yr argraffydd yn gweithio. Bydd eich "
+"gosodiad ynghylch ymath o gysylltiad yn cael ei anwybyddu gan y gyrrwr."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr "Darllen yn unig"
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+msgid "Lexmark inkjet configuration"
+msgstr "Ffurfweddiad inkjet Lexmark"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1719
msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
+"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 ""
-"Galluogi/Analluogi amddiffyn spwffio datrys enw. Os yw\n"
-"\\alert\\fP yn wir, adrodd i syslog."
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
-msgstr "Dim gyrrwr hysbys"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
+"Mae'r gyrwyr argraffydd inkjet sydd wedi eu darparu gan Lexmark yn cynnal "
+"argraffyddion lleol, yn unig. Cysylltwch eich argraffydd i borth lleol neu "
+"ffurfweddwch ef i'r peiriant mae'n gysylltiedig ag ef."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1746
msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
+"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 ""
-"Os nad hwn yw'r un rydych am ei ffurfweddu, rhowch enw dyfais/enw ffeil ar y "
-"llinell mewnbwn."
+"I fedru argraffu gyda eich argraffydd inkjet Lexmark a'r ffurfweddiad hwn, "
+"bydd angen gyrwyr argraffydd inkjet sydd wedi eu darparu gan Lexmark (http://"
+"www.lexmark.com/). Ewch i'w safle yn yr UDA a chliciwch ar y botwm \"Drivers"
+"\". Yna dewiswch eich model ac yna \"Linux\" fel system weithredu. Mae'r "
+"gyrwyr yn dod fel pecynnau RPM neu sgriptiau cragen gyda gosodiad graffigol "
+"rhyngweithiol. Nid oes angen i chi wneud y ffurfweddiad drwy'r wyneb "
+"graffigol. Diddymwch yn syth wedi'r cytundeb trwyddedu. Yna argraffwch "
+"dudalennau'r alinio'r pen argraffu gyda \"lexmarkmaintain\" a newid "
+"gosodiadau aliniad y pen gyda'r rhaglen."
-#: ../../standalone/draksound:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr "GDI Laser Printer yn defnyddio Zenographics ZJ-Stream Format"
+
+#: ../../printer/printerdrake.pm_.c:1750
msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
-"\n"
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
"\n"
-"You can visit our hardware database at:\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-"Nid oes Cerdyn Sain wedi ei ganfod ar eich peiriant. Gwriwch fod Cerdyn Sain "
-"sy'n cael ei gynnal gan Linux wedi ei osod yn gywir.\n"
+"Mae eich arraffydd yn perthyn i'r grwp o argraffyddion laser GDI "
+"(winprinters) sy'n cael eu gwerthu gannifer o wahanol wneuthurwyr sy'n "
+"defnyddio'r format raster Zenographics ZJ-stream ar gyfer y data sy'n cael "
+"ei anfon at yr argraffydd. Mae'r gyrrwr ar gyfer yr argraffyddion hyn yn un "
+"cynnar ac felly ni fydd yn gweithio'n iawn bob tro. Mae'n bosib mai tim ond "
+"ar faint papur A4 bydd yn gweithio.\n"
"\n"
+"Mae rhai o'r rhain, megis y HP LaserJet 1000, ar ei gyfer crewyd y gyrrwr, "
+"angen i'r cadarnwar gael ei lwytho i fyny ar ol eu cychwyn. Yn achos yr "
+"LaerJet 100 rhaid i chi chwilio CD gyrrwr Windows yr argraffydd neu eich "
+"rhaniad Windows am ffeil \"sihp1000.img\" a'i lwytho i fyny i'r argraffydd "
+"gydag un o'r gorchmynion canlynol:\n"
"\n"
-"Cewch ymweld â'n cronfa ddata caledwedd yn:\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Ffurfweddu'r Rhwydwaith Lleol..."
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-"Mae'r allwedd USB i weld a'i ddiogelu rhag ysgrifennu ymlaen.\n"
-"Tynnwch yr allwedd, diffodd y diogelu, ai ailosod."
-
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr "Cychwyn y system sain ar eich peiriant"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
-msgstr "Gwirio checksum y ffeiliau suid/sgid."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run some checks against the rpm database"
-msgstr "Gwirio yn erbyn y gronfa ddata rpm."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Execute"
-msgstr "Gweithredu"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Paratoi cronfa ddata argraffydd..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Information"
-msgstr "Gwybodaeth"
+"Mae modd i unrhyw ddefnyddiwr wneud y gorchymyn cyntaf, rhaid i'r ail fod "
+"fel gwraidd. wedi gwneud hyn mae modd argraffu fel arfer\n"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "No network card"
-msgstr "Dim cerdyn rhwydwaith"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "3 botwm"
-
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Which filesystem do you want?"
-msgstr "Pa fath o system ffeil ydych chi eisiau?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Malta"
-msgstr "Malta"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Detailed information"
-msgstr "Gwybodaeth fanwl"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1972
msgid ""
"Printer default settings\n"
"\n"
@@ -11834,1530 +8873,1073 @@ msgstr ""
"argraffiad ansawdd/cydraniad uchel iawn yn medru arafu'r argraffu'n "
"sylweddol.."
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
-msgstr "Nid yw 'r disg meddal hwn wedi ei fformatio i FAT"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "Ffurfweddu'r rhwydwaith"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-"Bydd y dewis hwn yn cadw ffeiliau sydd wedi newid.Bydd ei union ymddygiad yn "
-"dibynnu ar ba un a'i modd cynyddol neu ddifferol sy'n cael eu defnyddio."
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Graphic Card"
-msgstr "Cerdyn Graffeg"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing Windows partition"
-msgstr "Mesur ffiniau system ffeilio Windows"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "Cameroon"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "Dns 1 y darparwr (dewisol)"
-
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Medrwch rannu %s\n"
-"Wedi gorffen, peidiwch anghofio cadw gyda 'w'"
+msgid "Option %s must be an integer number!"
+msgstr "Rhaid i ddewis %s fod yn gyfanrif"
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "Saami (swedish/finnish)"
-msgstr "Saami (swedaidd/ffinaidd)"
+msgid "Option %s must be a number!"
+msgstr "Rhaid i ddewis %s fod yn rhif!"
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
+#: ../../printer/printerdrake.pm_.c:1989
#, c-format
-msgid "Close"
-msgstr "Cau"
+msgid "Option %s out of range!"
+msgstr "Dewis %s allan o amrediad!"
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:2028
#, 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."
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
-"\"%s\":gwiriwch y dewis gwlad. Os nad ydych yn y wlad hon\n"
-"cliciwch y botwm \"%s\"a dewis un arall. Os nad yw eich\n"
-"gwlad ar y rhestr gyntaf, cliciwch \"%s\" i wdrych ar y rhestr\n"
-"gyflawn."
+"Ydych chi am osod argraffydd (\"%s\")\n"
+"fel yr argraffydd rhagosodedig?"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Calendar"
-msgstr "Calendr"
+#: ../../printer/printerdrake.pm_.c:2051
+msgid "Test pages"
+msgstr "Tudalennau prawf"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2052
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+"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 ""
-"Adfer Cofnod\n"
-"Catalog Ddewiswyd"
+"Dewiswch y tudalennau prawf rydych am eu hargraffu\n"
+"Sylwer: gall y dudalen brawf llun camera gymryd cryn dipyn o amser cyn cael "
+"ei argraffu ac ar argraffydd laser heb lawer o gof mae'n bosibl na ddaw o "
+"gwbl. Yn y rhan fwyaf o achosion, mae'r prawf tudalen safonol yn ddigonol."
-#: ../../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 ""
-"I ddefnyddio argraffydd lpd pell, rhaid darparu enw gwesteiwr gwasanaethwr "
-"yr argraffydd ac enw'r argraffydd ar y gwasanaethwr hwnnw."
+#: ../../printer/printerdrake.pm_.c:2056
+msgid "No test pages"
+msgstr "Dim tudalennau prawf"
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
-msgstr "Ynys yr Iâ"
+#: ../../printer/printerdrake.pm_.c:2057
+msgid "Print"
+msgstr "Argraffu"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Ffurfweddiad y Rhwydwaith a'r Rhyngrwyd"
+#: ../../printer/printerdrake.pm_.c:2114
+msgid "Standard test page"
+msgstr "Tudalen prawf safonnol"
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
-msgstr "consolehelper ar goll"
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
+msgstr "Prawf tudalen arall (Llythyr)"
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr "ataliwyd"
+#: ../../printer/printerdrake.pm_.c:2120
+msgid "Alternative test page (A4)"
+msgstr "Prawf tudalen arall (A4)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "P'un ai oes gan yr FPU fector irq"
+#: ../../printer/printerdrake.pm_.c:2122
+msgid "Photo test page"
+msgstr "Tudalen prawf llun"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Ext2"
-msgstr "Ext2"
+#: ../../printer/printerdrake.pm_.c:2126
+msgid "Do not print any test page"
+msgstr "Peidiwch argraffu tudalennau prawf"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr "Estyn y goeden"
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
+msgstr "Argraffu tudalen(nau) prawf..."
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm_.c:2159
#, c-format
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
-"\n"
-"It has been reported to oops the kernel on unloading.\n"
+"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"
-"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-"Mae'r hen yrrwr \"%s\" wedi ei wahardd.\n"
-"\n"
-"Mae'n effeithio'n andwyol ar y cnewyllyn\n"
+"Mae tudalennau prawf wedi eu hanfon i'r argraffydd.\n"
+"Gall gymryd amser cyn i'r argraffydd gychwyn.\n"
+"Statws argraffu:\n"
+"%s\n"
"\n"
-"Bydd y gyrrwr \"%s|\"'n cael ei ddefnyddio ar y cychwyn"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Expert Mode"
-msgstr "Modd Uwch"
+#: ../../printer/printerdrake.pm_.c:2163
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+msgstr ""
+"Mae tudalen(nau) prawf wedi eu hanfon at yr argraffydd.\n"
+"Gall gymryd amser cyn i'r argraffydd gychwyn.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "Dewisiadau argraffydd"
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
+msgstr "A weithiodd hwnnw'n iawn?"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Local Network adress"
-msgstr "Cyfeiriad y Rhwydwaith Lleol "
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+msgid "Raw printer"
+msgstr "Argraffydd bras"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Cadw wrth gefn ffeiliau System. ( cyfeiriadur /etc )"
+msgid ""
+"To print a file from the command line (terminal window) you can either use "
+"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
+"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
+"to modify the option settings easily.\n"
+msgstr ""
+"I argraffu ffeil o'r linell orchymyn (ffenestr derfynnell) mae modd "
+"defnyddio un ai'r gorchymyn \"%s <file>\" neu offeryn argraffu graffigol: "
+"\"xpp <file>\" neu \"kprinter <file>\". Mae'r offeryn graffigol yn caniatáu "
+"chi ddefnyddio'r argraffydd ac i newid gosodiadau dewis yn hawdd.\n"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the user umask."
-msgstr "Gosod umasg y defnyddiwr"
+#: ../../printer/printerdrake.pm_.c:2218
+msgid ""
+"These commands you can also use in the \"Printing command\" field of the "
+"printing dialogs of many applications, but here do not supply the file name "
+"because the file to print is provided by the application.\n"
+msgstr ""
+"Mae modd defnyddio'r gorchmynion hyn ym maes \"Gorchmynion Argraffu\" y "
+"deialogau argraffu mewn nifer o raglenni, ond yma nid ydynt yn darparu'r "
+"enw ffeil am fod y ffeil i'r argraffydd yn cael ei ddarparu gan y rhaglen.\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, 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\" 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 ""
-"Mae'n bosibl i chi llwytho i lawr y pecynnau diweddaraf sydd wedi eu\n"
-"ryddhau ers i'r dosbarthiad fod ar gael.Efallai bod bod gwallau amaterion "
-"diogelwch wedi eu cywiro\n"
"\n"
-"I lwytho'r pecynnau i lawr, bydd angen cyswllt gweithredol\n"
-"â'r Rhyngrwyd.\n"
-"\n"
-"Ydych chi am osod y diweddariadau?"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Samba Server"
-msgstr "Gwasanaethwr Samba"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Teledu Cebl Opus Awstralia"
+"Mae'r gorchymyn \"%s\" hefyd yn caniatau i newid y gosodiadau dewis ar gyfer "
+"tasg argraffu penodol. Ychwanegwch y gosodiadau angenrheidiol i'r llinell "
+"gorchymyn, e.e \"%s <file>\". "
-#: ../../install_steps_newt.pm:1
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
#, c-format
msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+"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\n"
+"\n"
msgstr ""
-" <Tab>/<Alt-Tab> rhwng elfennau | <Space> yn dewis | <F12> y sgrîn nesaf "
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet:"
-msgstr "Isnet:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "When"
-msgstr "Pryd"
+"Er mwyn cael gwybodaeth am y dewisiadau sydd ar gael ar gyfer yr argraffydd "
+"cyfredol darllenwch un ai'r rhestr isod neu cliciwch ar y botwm \"Rhestr "
+"dewis argraffu\"%s%s\n"
+"\n"
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2228
msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
+"Here is a list of the available printing options for the current printer:\n"
+"\n"
msgstr ""
-"Rahaid cael minicode Alcatel.\n"
-"Llwytho i lawr o\n"
-"%s\n"
-"achopio'r mgmt.o i /usr/share/speedtouch"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hour"
-msgstr "Awr"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Ail Wasanaethwr DNS (dewisol)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Finland"
-msgstr "Y Ffindir"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Dyfnder lliw: %s\n"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Does dim mod dad-ddewis y pecyn hwn. Rhaid ei ddiweddaru"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "Llwytho o ddisg meddal"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "Cylchfa Amser - DrakClock"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
-msgstr "Galluogi?Analluogi mewngofnodi pecynnau anarferol IPv4."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr "Slovenia"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse test"
-msgstr "Prawf llygoden"
+"Dyma restr o'r dewisiadau argraffu sydd ar gael ar gyfer yr argraffydd "
+"presennol:\n"
+"\n"
-#: ../../standalone/drakperm:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, 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."
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
msgstr ""
-"Mae Drakperm yn cael ei ddefnyddio i weld ffeiliau i'w defnyddio i drwsio "
-"caniatad, perchnogion, a grwpiau drwy msec.\n"
-"Mae modd i chi olygu eich rheolau eich hunfydd yn ysgrifennu droe y rheolau "
-"rhagosodedig."
+"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynnell) defnyddiwch "
+"orchymyn \"%s <file>\".\n"
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
msgid ""
-"Enter a user\n"
-"%s"
+"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 ""
-"Rhowch enw defnyddiwr\n"
-"%s"
+"Mae modd defnyddio'r gorchymyn hwn ym maes \"Gorchymyn argraffu\" deialog "
+"nifer o raglenni. Ond peidiwch â rhoi'r enw ffeil yma oherwydd bod y ffeil "
+"i'w argraffu wedi ei ddarparu gan y rhaglen.\n"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
msgstr ""
-"- dyfeisiau PCI ac USB : dyma restr gwerthwyr, dyfais, is werthwyr ac is "
-"ddyfais PCI/USB"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "ProgressBar color selection"
-msgstr "Dewis lliw ProgressBar"
+"I edrych ar y rhestr o'r dewisiadau sydd ar gael ar gyfer yr argraffydd "
+"cyfredol cliciwch ar fotwm \"Rhestr dewisiadau argraffu\"."
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:2253
#, c-format
msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
msgstr ""
-"Dyma'r cofnodion gwahanol ar eich dewislen cychwyn hyd yma.\n"
-"Mae modd i chi ychwanegu rhagor neu newid y rhai presennol."
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
+"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynnell) defnyddiwch y "
+"gorchymyn \"%s <file>\" or \"%s <file>\".\n"
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2257
msgid ""
-"Application Name\n"
-"or Full Path:"
+"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 ""
-"Enw Rhaglen\n"
-"neu Lwybr Llawn:"
+"Mae modd hefyd i ddefnyddio rhag wyneb graffigol \"xpdq\" i osod dewisiadau "
+"a thrin gwaith argraffu.\n"
+"\n"
+"Os ydych yn defnyddio KDE fel amgylchedd pen bwrdd mae gennych \"botwm "
+"argyfwng\", eicon ar y pen bwrdd, wedi ei labelu \"Atal yr Argraffydd!\", "
+"fydd yn stopio 'r holl waith argraffu'n syth pan fyddwch yn ei glicio. Mae "
+"hyn yn ddefnyddiol pan fydd y papur wedi mynd yn sownd, ag ati.\n"
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:2261
#, 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."
+"\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 ""
-"Mae'n rhedeg gorchmynion wedi eu trefnu gan y gorchymyn at ar amser wedi \n"
-"ei bennu pan oedd at yn rhedeg, gan rhedeg gorchmynion swp pan fydd \n"
-"cyfartaledd y llwyth yn ddigon isel."
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
-msgstr "Cynnal radio:"
+"\n"
+"Mae'r gorchmynion \"%s\" a \"%s\" hefyd yn caniatáu newid y gosodiadau dewis "
+"ar gyfer tasg argraffu penodol. Ychwanegwch y gosodiadau angenrheidiol i'r "
+"llinell gorchymyn, e.e \"%s <file>\".\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2271
#, c-format
-msgid "Installing SANE packages..."
-msgstr "Gosod pecynnau SANE..."
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Argraffu/Sganio/Cardiau Llun ar \"%s\""
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:2272
#, c-format
-msgid "LDAP"
-msgstr "LDAP"
+msgid "Printing/Scanning on \"%s\""
+msgstr "Argraffu/Sganio ar \"%s\""
-#: ../../bootloader.pm:1
+#: ../../printer/printerdrake.pm_.c:2274
#, c-format
-msgid "SILO"
-msgstr "SILO"
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Argraffu/Mynediad Cardiau Llun ar \"%s\""
-#: ../../diskdrake/removable.pm:1
+#: ../../printer/printerdrake.pm_.c:2275
#, c-format
-msgid "Change type"
-msgstr "Newid y math"
+msgid "Printing on the printer \"%s\""
+msgstr "Argraffu ar argraffydd \"%s\""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", argraffydd USB #\"%s"
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+msgid "Close"
+msgstr "Cau"
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "Gosodiad SILO"
+#: ../../printer/printerdrake.pm_.c:2281
+msgid "Print option list"
+msgstr "Rhestr ddewis argraffu"
-#: ../../install_messages.pm:1
+#: ../../printer/printerdrake.pm_.c:2301
#, 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"
+"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"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
+"Do not use \"scannerdrake\" for this device!"
msgstr ""
-"Llongyfarchiadau, mae'r gosodiad wedi ei gwblhau.\n"
-"Tynnwch y cyfrwng cychwyn a gwasgu Return i ail gychwyn.\n"
-"\n"
-"\n"
-"Am wybodaeth am gywiriadau sydd ar gael ar gyfer y rhyddhad hwn o Mandrake\n"
-"Linux, cysylltwch a'r atodiad, sydd i'w gael yn:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
+"Mae eich dyfais aml bwrpas HP wedi cael ei ffurfweddu'n awtomatig i fedru "
+"sganio. Mae modd i chi sganio gyda \"scanimage\" (\"scanimage -d hp:%s\" i "
+"bennu pa un os oes gennych fwy nag un) o'r llinell orchymyn neu gyda rhag "
+"wynebau graffigol \"xscanimage\" neu \"xsane\". Os ydych yn defnyddio GIMP, "
+"medrwch sganio hefyd, drwy ddewis y man priodol yn y ddewislen \"Ffeil\"/"
+"\"Cipio\". Galwch hefyd \"man scanimage\" ar y linell orchymyn i dderbyn mwy "
+"o wybodaeth.\n"
"\n"
-"Mae gwybodaeth ar ffurfweddu eich system ar gael ym mhenawdau ôl osod\n"
-"yr Official Mandrake Linux User's Guide."
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Galluogi Protocol Amser Rhwydwaith"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "paranoid"
-msgstr "Paranoia"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "Peidiwch anfon e-byst pan nad oes angen"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "Ni fydd eich sganiwr(sganwyr) ar gael ar y rhwydwaith"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Anfonwch adroddiad e-bost wedi pob cadw wrth gefn i :"
+"Peidiwch defnyddio \"scannerdrake\" ar gyfer y ddyfais hon."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2322
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"
+"Your printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Mae modd defnyddio'r gorchymyn hwn ym maes \"Gorchymyn argraffu\" deialog "
-"nifer o raglenni. Ond peidiwch â rhoi'r enw ffeil yma oherwydd bod y ffeil "
-"i'w argraffu wedi ei ddarparu gan y rhaglen.\n"
+"Mae eich argraffydd wedi ei ffurfweddu'n awtomatig i rhoi mynediad i chi i'r "
+"gyrrwr cerdyn llun o'c cyfrifiadur. Mae modd i chi gael mynediad at eich "
+"cardiau llun drwy'r rhaglen graffigol \"MtoolsFM\" (Dewislen: \"Rhaglenni\" -"
+"> \"Offer ffeil\" -> \"Rheolwr Ffeiliau MTools\") neu ar y llinell "
+"orchymyn: \"mtools\" (\"man mtools\" am ragor o wybodaeth) Bydd ys system o "
+"dan yrrwr \"p\", neu lythrennau canlynol pan fydd gennych fwy nag un "
+"argraffydd HP gyda gyrwyr cerdyn llun. Yn MToolsFM\" mae modd newid rhwng "
+"llythrennau gyrwyr drwy'r maes ar ben uchaf de'r rhestr."
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolution"
-msgstr "Cydraniad"
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+msgid "Reading printer data..."
+msgstr "Darllen data argraffydd..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"I argraffu i argraffydd SMB, rhaid darparu enw gwesteiwr SMB (Sylwer! Mi all "
-"fod yn wahanol i'w enw gwesteiwr TCP/IP!) ac o bosibl cyfeiriad IP'r "
-"gwasanaethwr argraffu, yn ogystal â'r enw rhannu ar gyfer yr argraffydd "
-"rydych am gael mynediad iddo ac unrhyw enw defnyddiwr, cyfrinair a "
-"gwybodaeth am grwp gwaith perthynol."
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+msgid "Transfer printer configuration"
+msgstr "Trosglwyddo ffurfweddiad yr argraffydd"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2365
#, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"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 ""
-" Galluogi su o aelodau grwp olwyn yn unig neu caniatâu su o unrhyw "
-"ddefnyddiwr."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
-msgstr "ailffurfweddu"
+"Mae modd i chi gopïo ffurfweddiad yr argraffydd fel wnaethoch o yspwlydd %s "
+"i %s eich yspwlydd cyfredol. Bydd yr holl ddata ffurfweddi (enw argraffydd, "
+"disgrifiad, lleoliad, math o gysylltiad a gosodiadau dewis rhagosodedig) yn "
+"cael eu trosi, ond ni fydd y gwaith argraffu'n cael eu trosi.\n"
+"Ni fydd yr holl waith argraffu'n cael eu trosi, am y rhesymau canlynol:\n"
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2368
msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
msgstr ""
-"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s \n"
-"SYLWER CEFNOGAETH ARBROFOL YW HWN AC FE ALL RHEWI EICH CYFRIFIADUR."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell timeout"
-msgstr "Goramser cragen"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Xinetd Service"
-msgstr "Gwasanaeth Xinetd"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to network tools"
-msgstr "mynediad i offer rhwydwaith"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "Llwytho Cadarnwedd i Fyny ar gyfer HP LaserJet 1000"
+"Nid yw CUPS yn cefnogi argraffyddion ar wasanaethwyr Novell neu "
+"argraffyddion sy'n anfon data mewn gorchymyn ffurf -rhydd.\n"
-#: ../advertising/03-software.pl:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2370
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."
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
msgstr ""
-"Mae Mandrake Linux 9.2 yn caniatáu i chi ddefnyddio'r feddalwedd ddiweddaraf "
-"i chwarae ffeiliau cerddoriaeth a sain, golygu a threfnu eich delweddau, "
-"lluniau a fideo."
+"Mae PDQ yn cynnal argraffyddion lleol, LDP pell, a Socket/TCP, yn unig.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Dyma restr o argraffyddion wedi eu awtoganfod."
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr "Nid yw LPD na LPRng yn cynnal argraffyddion IPP.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2374
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
msgstr ""
-"Gwall gosod aboot, \n"
-"ceisiwch orfodi gosodiad hyd yn oed os yw hynny'n dinistrio'r rhaniad cyntaf?"
+"Yn ogystal, nid oes modd trosglwyddo rhesi grewyd gan y rhaglen hon na "
+"\"foomatic-configure\"."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2375
msgid ""
-"Restore Selected\n"
-"Files"
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
msgstr ""
-"Adfer y Dewis\n"
-"Ffeiliau"
+"\n"
+"Hefyd nid oes modd trosglwyddo argraffyddion ffurfweddwyd gyda ffeiliau PPD "
+"ddarparwyd gan eu gwneuthurwyr na gyrrwyr CUPS brodorol."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2376
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."
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
msgstr ""
-"%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."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Llanwch neu ticiwch y maes islaw"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Ydych eisiau cadw newidiadau /etc/fstab"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
-msgstr "Protocol Cychwyn"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "Dias LVM %s\n"
+"Nodwch yr argraffydd rydych am ei drosglwddo a chliciwch\n"
+"\"Trosglwyddo\"."
-#: ../../services.pm:1
-#, c-format
-msgid "On boot"
-msgstr "Cychwyn"
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
+msgstr "Peidio trosglwyddo argraffydd"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "Rhaid cael pecyn %s. Ydych chi am ei osod?"
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
+msgstr "Trosglwyddo"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:2392
#, c-format
-msgid "Bus identification"
-msgstr "Dynodiad bws"
+msgid ""
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
+msgstr ""
+"Mae argraffydd o'r enw \"%s\" yn bodoli eisoes yn %s.\n"
+"Cliciwch \"Trosglwyddo\" i ysgrifennu drosto.\n"
+"Mae modd i chi osod enw newydd arno neu ei hepgor."
-#: ../../lang.pm:1
-#, c-format
-msgid "Vatican"
-msgstr "Fatican"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr ""
+"Dylai enw'r argraffydd gynnwys llythrennau, rhifau a'r tanlinellu, yn unig"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
-msgid "Please make a backup of your data first"
-msgstr "Gwnewch gopi wrth gefn o'ch data yn gyntaf"
+msgid ""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
+msgstr ""
+"Mae argraffydd \"%s\" yn bodoli eisoes,\n"
+"ydych chi wir eisiau ailysgrifennu ei ffurfweddiad?"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ADSL adapters"
-msgstr "Addaswyr ADSL"
+#: ../../printer/printerdrake.pm_.c:2413
+msgid "New printer name"
+msgstr "Enw'r argraffydd newydd"
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Mae gennych fwy nag un disg caled, ar ba un ydych am osod linux?"
+msgid "Transferring %s..."
+msgstr "Trosglwyddo %s..."
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:2427
#, c-format
-msgid "Eritrea"
-msgstr "Eritrea"
+msgid ""
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
+msgstr ""
+"Rydych wedi trosglwyddo eich argraffydd rhagosodedig blaenorol rhagosodedig "
+"(\"%s\"). A ddylai fod yn argraffydd rhagosodedig y system argraffu newydd %"
+"s ?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot ISO"
-msgstr "Cychwyn yr ISO"
+#: ../../printer/printerdrake.pm_.c:2437
+msgid "Refreshing printer data..."
+msgstr "Adnewyddu data'r argraffydd..."
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Firmware needed"
-msgstr "Angen cadarnwedd"
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+msgid "Configuration of a remote printer"
+msgstr "Ffurfweddiad argraffydd pell"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove List"
-msgstr "Rhestr Tynnu"
+#: ../../printer/printerdrake.pm_.c:2446
+msgid "Starting network..."
+msgstr "Cychwyn y rhwydwaith..."
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
-msgstr "Mae modd addasu eich byd..."
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+msgid "Configure the network now"
+msgstr "Ffurfweddwch y rhwydwaith"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
-msgstr "Inuktitut"
+#: ../../printer/printerdrake.pm_.c:2480
+msgid "Network functionality not configured"
+msgstr "Nid yw swyddogaethau'r rhwydwaith wedi ei ffurfweddu"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2481
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."
+"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 ""
-"Mae modd ffurfweddu rhai protocolau, megis srync ar ochr y gwasanaethwr. Yn "
-"lle defnyddio llwybr cyfeiriadur, byddwch yn defnyddio enw 'modiwl' ar gyfer "
-"y llwybr gwasanaeth."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "Morocco"
+"Ydych chi am ffurfweddi argraffydd pell. Mae hyn angen mynediad ar "
+"rwydwaith, ond nid yw eich rhwydwaith wedi ei ffurfweddu eto. Os ydych am "
+"fynd ymlaen heb ffurfweddiad rhwydwaith, ni bydd modd i chi ddefnyddio'r "
+"argraffydd rydych yn ei ffurfweddu ar hyn o bryd. Beth ydych am ei wneud?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Pa fath o argraffydd sydd gennych?"
+#: ../../printer/printerdrake.pm_.c:2484
+msgid "Go on without configuring the network"
+msgstr "Mynd yn eich blaen heb ffurfweddu'r rhwydwaith"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add a new printer"
-msgstr "Ychwanegu argraffydd newydd"
+#: ../../printer/printerdrake.pm_.c:2518
+msgid ""
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
+"Nid oes modd cychwyn y ffurfweddiad rhwydwaith wnaed yn ystod y gosodiad. "
+"Gwiriwch p'un ai yw'r rhwydwaith yn darparu mynediad ar ôl cychwyn eich "
+"system a chywiro'r ffurfweddiad gan ddefnyddio Canolfan Rheoli Mandrake, "
+"adran \"Rhwydwaith a'r Rhyngrwyd\"/\"Cysylltiad\", ac yna gosod yr "
+"argraffydd, eto gan ddefnyddio Canolfan Rheoli Mandrake, adran \"Caledwedd\"/"
+"\"Argraffydd\""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " All of your selected data have been "
-msgstr " Mae eich dewis data wedi ei "
+#: ../../printer/printerdrake.pm_.c:2519
+msgid ""
+"The network access was not running and could not be started. Please check "
+"your configuration and your hardware. Then try to configure your remote "
+"printer again."
+msgstr ""
+"Nid oedd mynediad i'r rhwydwaith yn rhedeg ac nid oedd modd ei gychwyn. "
+"Gwiriwch eich ffurfweddiad a'ch caledwedd. Yna ceisiwch ail ffurfweddi eich "
+"argraffydd."
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "Nepal"
+#: ../../printer/printerdrake.pm_.c:2529
+msgid "Restarting printing system..."
+msgstr "Ailgychwyn system argraffu..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Dileu"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "high"
+msgstr "uchel"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
-msgstr "cpu # "
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "paranoid"
+msgstr "Paranoia"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid "chunk size"
-msgstr "maint darn"
+msgid "Installing a printing system in the %s security level"
+msgstr "Gosod system argraffu yn lefel diogelwch %s"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2570
#, c-format
msgid ""
-"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
+"You are about to install the printing system %s on a system running in the %"
+"s security level.\n"
"\n"
-"If set to NONE, no issues are allowed.\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"
-"Else only /etc/issue is allowed."
+"Do you really want to configure printing on this machine?"
msgstr ""
-"Ymresymiadau: (arg)\n"
-"\n"
-"Os yw \"ALL\"yn caniatáu /etc/issue a /etc/issue.net i fodoli.\n"
+"Rydych ar fin gosod system argraffu %s ar system sy'n rhedeg lefel diogelwch "
+"%s. \n"
"\n"
-"Os yw \\fIarg\\fP = NONE\n"
+"Mae'r system yn rhedeg daemon (proses gefndirol) sy'n aros am waith argraffu "
+"ac yna yn eu trin. Mae'r daemon hefyd yn gyraeddadwy gan beiriannau pell "
+"drwy'r rhwydwaith ac felly'n bwynt ymosod. Felly, dim ond ychydig o "
+"ddaemonau sy'n cael eu cychwyn yn rhagosodedig, ar y lefel diogelwch hwn.\n"
"\n"
-"Dim materion heblaw caniatáu /etc/issue."
+"Ydych chi wir eisiau ffurfweddu argraffu ar y peiriant hwn?"
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr "Galluogi/Analluogi sulogin(8 mewn defnydd defnyddiwr unigol."
+#: ../../printer/printerdrake.pm_.c:2604
+msgid "Starting the printing system at boot time"
+msgstr "Cychwyn y system argraffu wrth gychwyn y cyfrifiadur"
-#. -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
+#: ../../printer/printerdrake.pm_.c:2605
#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "gorchmynion cyn cychwyn, neu 'c' am y llinell orchymyn."
+msgid ""
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\n"
+"\n"
+"It is possible that the automatic starting was turned off by changing to a "
+"higher security level, because the printing system is a potential point for "
+"attacks.\n"
+"\n"
+"Do you want to have the automatic starting of the printing system turned on "
+"again?"
+msgstr ""
+"Ni fydd system argraffu (%s) yn cychwyn yn awtomatig pan fydd y peiriant yn "
+"cael ei gychwyn.\n"
+"\n"
+"Mae'n bosibl fod y cychwyn awtomatig wedi ei ddiffodd wrth newid i lefel "
+"diogelwch uwch, am fod a system argraffu'n bwynt tebygol ar gyfer "
+"ymosodiadau.\n"
+"\n"
+"Ydych chi am i'r cychwyn awtomatig gael ei droi ymlaen eto?"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Anhawster wrth osod pecyn %s"
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
+msgstr "Gwirio'r meddalwedd sydd wedi ei osod..."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Byddwch yn derbyn rhybudd os yw'r llwyth yn uwch na'r gwerth hwn"
+#: ../../printer/printerdrake.pm_.c:2630
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "Tynnu %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Ychwanegu sganiwr gyda llaw"
+#: ../../printer/printerdrake.pm_.c:2636
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "Gosod pecynnau..."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh"
-msgstr "Adnewyddu"
+#: ../../printer/printerdrake.pm_.c:2685
+msgid "Select Printer Spooler"
+msgstr "Dewiswch Sbwlydd Argraffydd"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Reload partition table"
-msgstr "Ail-lwytho'r tabl rhaniad"
+#: ../../printer/printerdrake.pm_.c:2686
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Pa system argraffu(sbwlydd) ydych chi am ei ddefnyddio?"
-#: ../../standalone/drakboot:1
+#: ../../printer/printerdrake.pm_.c:2720
#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Iawn, rwyf eisiau awtomewngofnodi gyda (defnyddiwr, bwrdd gwaith)"
+msgid "Configuring printer \"%s\"..."
+msgstr "Ffurfweddu argraffydd \"%s\" ..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Selected"
-msgstr "Adfer y Dewis"
+#: ../../printer/printerdrake.pm_.c:2731
+msgid "Installing Foomatic..."
+msgstr "Gosod Foomatic..."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Chwilio am ffontiau yn y rhestr gosod"
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr "Dewisiadau argraffydd"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Nid yw'r Rhwydwaith Lleol yn terfynu gyda '.0', tynnu allan."
+#: ../../printer/printerdrake.pm_.c:2810
+msgid "Preparing Printerdrake..."
+msgstr "Paratoi PrinterDrake..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Boot"
-msgstr "Cychwyn"
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+msgid "Configuring applications..."
+msgstr "Ffurfweddi'u rhaglenni"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " ac mae'r CD yn y gyrrwr"
+#: ../../printer/printerdrake.pm_.c:2845
+msgid "Would you like to configure printing?"
+msgstr "Hoffech chi ffurfweddu argraffu?"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Tuner type:"
-msgstr "Math o diwniwr"
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
+msgstr "System argraffu."
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2915
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."
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
-"Yma byddwn yn dewis system argraffu i'ch cyfrifiadur ei ddefnyddio. Efallai\n"
-"bod systemau eraill yn cynnig un i chi, ond mae Mandrake yn cynnig dwy.\n"
-"Mae 'r systemau'n addas gar gyfer ffurfweddiad arbennig.\n"
-"\n"
-" *\"%s\" - sy'n golygu \"print, don't queue\", yw'r dewis os oes gennych\n"
-"gysylltiad uniongyrchol â'ch argraffydd a'ch bod eisiau medru tynnu allan o "
-"waith\n"
-"argraffu pan fo'r papur wedi mynd yn sownd ac nad oes gennych argraffyddion\n"
-"wedi eu cysylltu drwy rwydwaith. (Dim ond rhwydweithiau syml mae \"%s\" yn "
-"ei\n"
-"drin ac mae'n araf ar rwydweithiau) Dewiswch \"pdq\" os mai dyma yw eich\n"
-"tro cyntaf yn GNU/Linux.\n"
-" *\"%s\" - \"Common Unix Printing System\". Mae hwn yn dda ar gyfer\n"
-"argraffu i argraffyddion lleol a hanner ffordd rownd y byd. Mae'n symlach, "
-"yn\n"
-"medru gweithredu fel gwasanaethwr neu cleient ar gyfer yr hen system \"lpd"
-"\"\n"
-"felly mae'n cydweddi â'r systemau sydd wedi mynd o'i flaen. Mae'n gallu "
-"gwneud\n"
-"nifer o driciau, ond mae bron mor syml i'w osod \"pdq\". Os ydych amgen "
-"hwn\n"
-"i efelychu gwasanaethwr \"lpd\", yna rhaid cychwyn daemon \"cups-lpd\".\n"
-"Mae gan \"%s\" wyneb graffigol ar gyfer argraffu neu rheoli'r argraffu.\n"
-"\n"
-"Os ydych yn dewis yn awr ac yn ddiweddarach yn penderfynu eich bod\n"
-"am newid eich system argraffu gallwch ei newid drwy gyfrwng PrinterDrake\n"
-"yng Nghanolfan Rheoli Mandrake a chlicio'r botwm arbenigwr."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
-msgstr "Bysell \"Dewislen\""
+"Mae'r argraffyddion canlynol wedi eu ffurfweddu. Cliciwch ar un i newid ei "
+"osodiadau; ei wneud yn argraffydd rhagosodedig; i edrych am wybodaeth "
+"amdano; neu i wneud argraffydd CUPS pell ar gael ar gyfer Star Office/"
+"OpenOffice.org/GIMP."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2916
msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
+"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 ""
-"\n"
-"\n"
-"Gwiriwch os yw Printerdrake wedi awto ganfod eich argraffydd yn gywir. "
-"Chwiliwch am y model cywir pan fo'r cyrchwr yn sefyll ar y model anghywir "
-"neu ar \"Argraffydd bras\"."
+"Mae'r argraffyddion canlynol wedi eu ffurfweddi. Cliciwch ar un i newid ei "
+"osodiadau; ei wneud yn argraffydd rhagosodedig; i edrych am wybodaeth amdano."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Administrator:"
-msgstr "Gweinyddwr Diogelwch:"
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
+msgstr ""
+"Adnewyddu rhestr argraffyddion (dangos pob argraffydd CUPS pell sydd ar gael)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
-msgstr "Gosod amser allan y gragen. Gwerth sero'n golygu dim amser allan."
+#: ../../printer/printerdrake.pm_.c:2960
+msgid "Change the printing system"
+msgstr "Newidiwch y system argraffu"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "Copïo'r gadarnwedd yn llwyddiant"
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+msgid "Normal Mode"
+msgstr "Modd Arferol"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid ""
-"You can't use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+msgid "Do you want to configure another printer?"
+msgstr "Ydych chi eisiau ffurfwedu argraffydd arall?"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
-msgstr ""
-"os wedi ei osod i iawn, gwirio caniatâd ffeiliau yng nghartref y defnyddiwr."
+#: ../../printer/printerdrake.pm_.c:3211
+msgid "Modify printer configuration"
+msgstr "Newid ffurfweddiad yr argraffydd"
-#: ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:3213
#, c-format
msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
-"Nid oes gennych cysylltiad â'r Rhyngrwyd.\n"
-"Crëwch un drwy glicio ar 'Ffurfweddu'"
+"Argraffydd %s\n"
+"Beth ydych am ei newid ar yr argraffydd hwn?"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Fonts copy"
-msgstr "Copïo ffontiau"
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
+msgstr "Gwna!!"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
-msgstr "Awtomeiddwyd"
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+msgid "Printer connection type"
+msgstr "Math o gyswllt argraffydd"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Ydych chi eisiau profi'r ffurfweddiad?"
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+msgid "Printer name, description, location"
+msgstr "Enw'r argraffydd, disgrifiad, lleoliad"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
-msgstr ""
-"Cafodd argraffydd \"%s\" ei dynnu'n llwyddiannus o Star Office/OpenOffice."
-"org."
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
+msgstr "Gwneuthurwr yr argraffydd, model, gyrrwr"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save packages selection"
-msgstr "Cadw'r dewis becynnau"
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
+msgstr "Gwneuthurwr yr argraffydd, model"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Actions"
-msgstr "/_Gweithredoedd"
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
+msgstr "Gosod yr argraffydd fel y rhagosodedig"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Remove the last item"
-msgstr "Tynnu'r eitem olaf"
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Ychwanegwchyr argraffydd hwn i Star Office/OpenOffice.org/GIMP"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Rhestr defnyddwyr i'w adfer ( dim ond y diweddaraf yn ôl y defnyddwyr, sy'n "
-"bwysig )"
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Tynnwch yr argraffydd hwn o Star Office/OpenOffice.org/GIMP"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
-msgstr "Heb greu delweddau cychwyn y rhwyd!"
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+msgid "Print test pages"
+msgstr "Argraffu tudalennau prawf"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "defnyddiwch pptp"
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+msgid "Know how to use this printer"
+msgstr "Gwybod sut i ddefnyddio'r argraffydd"
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-"Dewiswch ba wasanaethau ddylai gael eu cychwyn yn awtomatig wrth gychwyn y "
-"cyfrifiadur"
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+msgid "Remove printer"
+msgstr "Tynnu argraffydd"
-#: ../../security/l10n.pm:1
+#: ../../printer/printerdrake.pm_.c:3282
#, c-format
-msgid "Check files/directories writable by everybody"
-msgstr "Gwirio ffeiliau/cyfeiriaduron ysgrifenadwy gan bawb."
+msgid "Removing old printer \"%s\"..."
+msgstr "Tynnu hen argraffydd \"%s\"..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Gwybod sut i ddefnyddio'r argraffydd"
+#: ../../printer/printerdrake.pm_.c:3307
+msgid "Default printer"
+msgstr "Argraffydd rhagosodedig"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3308
#, c-format
-msgid "Configure the network now"
-msgstr "Ffurfweddwch y rhwydwaith"
+msgid "The printer \"%s\" is set as the default printer now."
+msgstr "Mae argraffydd \"%s\" wedi ei osod fel yr argraffydd rhagosodedig."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Dewiswch ddrych lle mae modd estyn y pecynnau"
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Ychwanegu argraffydd i Star Office/OpenOffice.org/GIMP"
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:3312
#, c-format
msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Nid yw'r newidiwr maint FAT yn medru trin eich rhaniad.\n"
-"digwyddodd y gwall canlynol: %s"
+"Mae argraffydd \"%s\" wedi ei ychwanegu'n llwyddiannus i Star Office/"
+"OpenOffice.org/GIMP."
-#: ../../install_steps_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:3313
#, c-format
-msgid "Size: "
-msgstr "Maint:"
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgstr ""
+"Wedi methu ag ychwanegu argraffydd \"%s\" i Star Office/OpenOffice.org/GIMP."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "Pa sector hoffech chi symud ato?"
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Tynnu'r argraffydd o Star Office/OpenOffice.org/GIMP."
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:3317
#, c-format
-msgid "Bahamas"
-msgstr "Bahamas"
+msgid ""
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
+msgstr ""
+"Cafodd argraffydd \"%s\" ei dynnu'n llwyddiannus o Star Office/OpenOffice."
+"org."
-#: ../../interactive/stdio.pm:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
-msgid "Do you want to click on this button?"
-msgstr "Ydych chi eisiau clicio ar y botwm hwn?"
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+msgstr "Methwyd â thynnu argraffydd \"%s\" o Star Office/OpenOffice.org/GIMP."
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3325
#, c-format
-msgid "Manual configuration"
-msgstr "Ffurfweddiad gyda llaw"
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Ydych chi wir eisiau tynnu argraffydd \"%s\""
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm_.c:3329
#, c-format
-msgid "search"
-msgstr "chwilio"
+msgid "Removing printer \"%s\"..."
+msgstr "Tynnu argraffydd \"%s\"..."
-#: ../../services.pm:1
+#: ../../raid.pm_.c:35
#, c-format
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Mae'r pecyn hwn yn llwytho'r map bysellfwrdd rydych wedi \n"
-"ei ddewis fel yn /etc/sysconfig/keyboard. Mae modd dewis \n"
-"hwn wrth ddefnyddio'r rhaglen wasanaethu kbdconfig. \n"
-"Dylech adael hwn wedi ei alluogi ar gyfer y rhanfwyaf o beiriannau."
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "Methu ychwanegu rhaniad to_formatted_RAID md%d"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (gyrrwr gosod dangoswr)"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
+msgstr "methodd mkraid"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "Rhaid i enw gwesteiwr Zeroconf beidio cynnwys ."
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "methodd mkraid (efallai bod raidtools ar goll)"
-#: ../../security/help.pm:1
+#: ../../raid.pm_.c:153
#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr "Caniatáu/Gwrthod atsain icmp."
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "Dim digon o raniadau ar gyfer RAID lefel %d\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../security/main.pm_.c:36
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."
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
+"\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
+"\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\n"
+"\n"
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
+"\n"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
-"Syslog yw'r modd mae llawer o daemonau'n defnyddio i gofnodi \n"
-"negeseuon i ffeiliau cofnod systemau. mae'n syniad da io rhedeg \n"
-"syslog bob tro."
+"Safonol: Dyma'r safon diogelwch sy'n cael ei argymell ar gyfer cyfrifiadur "
+"i'w ddefnyddio i gysylltu â'r Rhyngrwyd fel cleient.\n"
+"\n"
+"Uchel: Mae rhai cyfyngiadau eisoes, ac mae gwiriadau'n cael eu rhedeg "
+"bob nos.\n"
+"\n"
+"Uchaf: Mae diogelwch yn ddigon uchel i ddefnyddio'r system fel "
+"gwasanaethwr sy'n medru derbyn\n"
+" cysylltiadau o nifer o gleientiau. Os mai eich peiriant "
+"yw'r unig gleient ar y Rhyngrwyd, dylech\t ddewis lefel is.\n"
+"\n"
+"Paranoia: Mae'n debyg i'r lefel blaenorol ond mae'r system wedi ei gau'n "
+"llwyr a nodweddion diogelwch ar eu heithaf.\n"
+"\n"
+"Gweinyddwr Diogelwch:\n"
+" Os yw'r dewis 'Rhybuddion Diogelwch' wedi ei ddewis, bydd "
+"rhybuddion diogelwch yn cael eu\t anfon i'r defnyddiwr hwn (enw "
+"defnyddiwr neu e-bost)"
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown/Others"
-msgstr "Anhysbys/Eraill"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Lefel diogelwch:"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
-msgstr "Heb ganfod Cerdyn Teledu!"
+#: ../../security/main.pm_.c:77
+#, fuzzy, c-format
+msgid " (default value: %s)"
+msgstr "(rhagosodedig: %s)"
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Options"
-msgstr "Dewisiadau"
+#: ../../security/main.pm_.c:113
+msgid "Security Alerts:"
+msgstr "Rhybuddion Diogelwch:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Mae argraffydd \"%s\" wedi ei osod fel yr argraffydd rhagosodedig."
+#: ../../security/main.pm_.c:115
+msgid "Security Administrator:"
+msgstr "Gweinyddwr Diogelwch:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../security/main.pm_.c:128
+msgid "Network Options"
+msgstr "Dewisiadau Rhwydwaith"
+
+#: ../../security/main.pm_.c:128
+msgid "System Options"
+msgstr "Dewisiadau System"
+
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
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."
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
msgstr ""
-"Rydych yn ffurfweddu winprinter laser OKI. Mae'r argraffydd hwn\n"
-"yn defnyddio protocol cyfathrebu arbennig. Dim ond trwy eu cysylltu â'r "
-"porth paralel cyntaf mae modd cael yr argraffydd hwn i weithio. Pan fo eich "
-"argraffydd wedi ei gysylltu i borth arall neu i flwch gwasanaethwr argraffu, "
-"cysylltwch yr argraffydd i'r porth paralel cyntaf cyn argraffu tudalen "
-"brawf. Os na wnewch chi hynny, ni fydd yr argraffydd yn gweithio. Bydd eich "
-"gosodiad ynghylch ymath o gysylltiad yn cael ei anwybyddu gan y gyrrwr."
+"Mae modd gosod y dewisiadau canlynol i addasu\n"
+"diogelwch eich system. Os oes arnoch esboniadau, cliciwch ar Cymorth.\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr "cynnyrch y cpu (ee 8 am Pentiumlll,...]"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
+msgstr "Gwirydd Cyfnodol"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detected"
-msgstr "Awto ganfyddwyd"
+#: ../../security/main.pm_.c:191
+msgid "Please wait, setting security level..."
+msgstr "Arhoswch, gosod lefle diogelwch..."
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../security/main.pm_.c:197
+msgid "Please wait, setting security options..."
+msgstr "Arhoswch, gosod dewisiadau diogelwch..."
+
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr "Cychwynnwch system sain ALSA (Pensaernïaeth Sain Linux Uwch)"
+
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
+msgstr "Anacron trefnydd gorchymyn cyfnodol"
+
+#: ../../services.pm_.c:21
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)."
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-"Rydych ar fin ffurfweddu eich cyfrifiadur i gwasanaethwr PXE fel "
-"gwasanaethwr DHCP a gwasanaethwr\n"
-"TFTP i adeiladu gwasanaethwr gosod.\n"
-"Gyda'r nodwedd hwn bydd cyfrifiaduron eraill ar eich rhwydwaith lleol yn "
-"medru rhannu cyswllt rhyngrwyd y cyfrifiadur hwn.\n"
-"\n"
-"Gwnewch yn siwr eich bod wedi ffurfweddu eich mynediad Rhwydwaith/Rhyngrwyd "
-"gyda drakconnect cyn mynd ymhellach.\n"
-"\n"
-"Sylwer: bydd angen Addasydd Rhwydwaith un-pwrpas i greu Rhwydwaith Lleol "
-"(LAN)."
+"Mae apmd yn cael ei ddefnyddio i fonitro statws y batri a \n"
+"mewngofnodi drwy syslog. Mae modd ei ddefnyddio i gau'r \n"
+"peiriant pan mae'r batri'n isel."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../services.pm_.c:23
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"
+"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 ""
-"OSS (Open Sound System) oedd yr API sain cyntaf. Mae'n API sail annibynnol o "
-"systemau gweithredu ( mae ar gael ar gyfer y rhan fwyaf o systemau unices) "
-"on mae'n API elfennol iawn a chyfyng.\n"
-"Mae gyrwyr OSS hefyd yn ail ddyfeisio'r hyn sy'n bod eisoes.\n"
-"\n"
-"Mae ALSA (Advanced Linux Sound Architecture) yn bensaerniaeth fodiwlaidd "
-"sy'n \n"
-"cynnal ystod eang o gardiau ISA, USB a PCI.\n"
-"\n"
-"Mae hefyd yn darparu API llawer uwch na OSS.\n"
-"\n"
-"I ddefnyddio alsa, mae modd defnyddio un ai:\n"
-"- hen api OSS cydweddus\n"
-"- api ALSA newydd sy'n darparu llawer o nodweddion gell ond sydd angen "
-"defnyddio llyfrgell ALSA.\n"
+"Mae'n rhedeg gorchmynion wedi eu trefnu gan y gorchymyn at ar amser wedi \n"
+"ei bennu pan oedd at yn rhedeg, gan rhedeg gorchmynion swp pan fydd \n"
+"cyfartaledd y llwyth yn ddigon isel."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:25
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"
+"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 ""
-"Nid oes lle rhydd ar gyfer yr ymlwythwr 1MB! Bydd y gosodiad yn parhau, ond "
-"i gychwyn y system bydd rhaid i chi greu rhaniad ymlwythwr yn DiskDrake"
+"Mae cron yn rhaglen safonnol yn UNIX sy'n rhedeg rhaglenni sydd wedi eu \n"
+"pennu gan y defnyddiwr ar adegau penodol. Mae vixie cron yn ychwanegu \n"
+"nifer o ychwanegiadau i'r UNIX cron sylfaenol, yn cynnwys gwell diogelwch \n"
+"a dewisiadau ffurfweddu mwy pwerus."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:28
msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
+"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 ""
-"Dewiswch yr argraffydd i'w osod neu rhowch enw dyfais/ffeil ar y llinell "
-"mewnbwn"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
-msgstr "Gwrthod"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
-msgstr "LOCAL"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
-msgstr "HFS"
+"Mae GPM yn ychwanegu cefnogaeth ar gyfer llygoden i raglenni testun Linux \n"
+"megis, Midnight Commander. Mae hefyd yn caniatáu gweithrediadau torri a \n"
+"gludo consol llygoden, gan gynnwys cefnogaeth ar gyfer bryslenni yn y "
+"consol. "
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:31
msgid ""
"HardDrake runs a hardware probe, and optionally configures\n"
"new/changed hardware."
msgstr ""
-"Mae HardDrake yn rhedeg archwiliwr caledwedd, a gall yn ôl \n"
+"Mae HardDrake yn rhedeg archwiliwr caledwedd, a gall yn ôl \n"
"eich dewis, ffurfweddu caledwedd newydd neu sydd wedi newid."
-#: ../../fs.pm:1
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Creu a fformatio ffeil %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
-msgstr "os wedi ei osod i iawn, gwirio ychwanegiadau/tynnu ffeiliau sgid."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:33
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"
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
-"Mae'r HP LaserJet 1000 angen cael ei gadarnwedd wedi ei lwytho i fyny ar ôl "
-"ei gychwyn. Estynnwch y pecyn gyrrwr Windows o safle gwe HP (nid yw'r "
-"gadarnwedd ar CD'r argraffydd yn gweithio) a thynnwch y ffeil cadarnwedd "
-"ohono gan ddatgywasgu 'r ffeil 'exe' gyda rhaglen 'datgywasgu' a chwilio am "
-"y ffeil 'sihp1000.img'. Copïo'r ffeil i gyfeiriadur '/etc/printer'. Yna bydd "
-"yn cael ei ganfod gan y sgript llwytho awtomatig a'i lwytho pryd bynnag fydd "
-"yr argraffydd wedi ei gysylltu â'i gychwyn.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "Dewis LVM presennol i ychwanegu ato"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "xfs restart"
-msgstr "ail gychwyn xfs"
+"Mae Apache yn wasanaethwr y We Fyd Eang. Mae'n cael ei ddefnyddio "
+"iwasanaethu ffeiliau HTML a CGI."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:34
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"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 ""
-"Mae argraffydd \"%s\" yn bodoli eisoes,\n"
-"ydych chi wir eisiau ailysgrifennu ei ffurfweddiad?"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Defnyddio sganwyr ar westeiwyr:"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
-msgstr "Dad ddewis Popeth"
-
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "dim rhaniadau ar gael"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Management \n"
-msgstr "Rheoli Argraffydd \n"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Datrysydd Enw Parth"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
-msgstr "Allwedd amgryptio (eto)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Mae enw rhannu Samba ar goll!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
-msgstr "Wedi gosod True Type"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detection in progress"
-msgstr "Canfod ar waith"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Adeiladu'r cnewyllyn cyfan -->"
+"Mae daemon uwchwasanaethwr rhyngrwyd (inetd) yn cychwyn nifer\n"
+"o wasanaethau rhyngrwyd eraill, yn ôl y galw. Mae'n gyfrifol am gychwyn\n"
+"nifer o wasanaethau, gan gynnwys telnet, ftp, rsh a rlogin. Mae analluogi \n"
+"inetd yn analluogi'r holl wasanaethau mae'n gyfrifol amdanynt."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "modem"
-msgstr "modem"
+#: ../../services.pm_.c:38
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
+"Cychwyn hidlydd pecynnau ar gyfer cnewyllyn cyfres Linux 2.2 \n"
+"i greu mur gwarchod i amddiffyn eich peiriant rhag ymosodiadau \n"
+"o'r rhwydwaith."
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "Croeso i %s"
+#: ../../services.pm_.c:40
+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 ""
+"Mae'r pecyn hwn yn llwytho'r map bysellfwrdd rydych wedi \n"
+"ei ddewis fel yn /etc/sysconfig/keyboard. Mae modd dewis \n"
+"hwn wrth ddefnyddio'r rhaglen wasanaethu kbdconfig. \n"
+"Dylech adael hwn wedi ei alluogi ar gyfer y rhanfwyaf o beiriannau."
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../services.pm_.c:43
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"
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
msgstr ""
-" drakhelp 0.1\n"
-"Hawlfraint (C) 2003 MandrakeSoft.\n"
-"Mae hwn yn feddalwedd rhydd ac mae modd ei ailddosbarthu o dan amodau GNU "
-"GPL.\n"
-"\n"
-"Defnydd: \n"
+"Ailgreu awtomatic pennawd y cnewyllyn yn /boot ar\n"
+"gyfer /usr/include/linux{autoconf,version}.h"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Rhowch y disg meddal Diweddaru Modiwlau yng ngyrrwr %s"
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr "Canfod a ffurfweddu awtomatic caledwedd wrth gychwyn y cyfrifiadur."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
-msgstr "Croeso Cychwyn"
+#: ../../services.pm_.c:46
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
+msgstr "Bydd Linuxconf yn trefnu ar adegau i gyflawnu amrywiol"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:48
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
+"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 ""
-"Mae'r argraffydd canlynol\n"
-"\n"
-"%s%s\n"
-"wedi ei gysylltu'n uniongyrchol â'ch system"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Rhannu argraffydd ar westeiwr/rhwydwaith:"
+"Mae lpd yn ddaemon argraffu sy'n angenrheidiol i lpr weithio\n"
+"Mae'n wasanaethwr sy'n cyflafareddu gwaith argraffu i\n"
+"argraffydd (ion)."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:50
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>\". "
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
msgstr ""
-"\n"
-"Mae'r gorchymyn \"%s\" hefyd yn caniatau i newid y gosodiadau dewis ar gyfer "
-"tasg argraffu penodol. Ychwanegwch y gosodiadau angenrheidiol i'r llinell "
-"gorchymyn, e.e \"%s <file>\". "
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "DrakClock"
-msgstr "DrakClock"
+"Mae Gwasanaethwr Rhith Linux yn cael ei ddefnyddio i adeiladu \n"
+"gwasanaethwyr cyflym a chyraeddadwy."
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:52
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."
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
msgstr ""
-"Mewn rhai achosion, mae gyrrwr %s angen gwybodaeth ychwanegol i weithio'n\n"
-"gywir, er fel rheol mae'n gweithio'n iawn hebddo. Hoffech chi enwi'r "
-"dewisiadau\n"
-"ychwanegol ar ei gyfer neu adael i'r gyrrwr archwilio'r peiriant am y "
-"wybodaeth mae\n"
-"ei angen? Weithiau bydd yr archwilio'n atal y peiriant, ond ni ddylai achosi "
-"unrhyw\n"
-"ddifrod."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "Nid y label CD cywir. Disg wedi ei labelu %s."
+"mae'r enwyd (BIND) yn Wasanaethwr Enw Parth (DNS) sy'n cael ei ddefnyddio i "
+"gydrannu enwau gwestai i'r cyfeiriadau IP."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:53
msgid ""
-"\n"
-"- Daemon, %s via:\n"
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
-"\n"
-"- Daemon %s trwy:\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "Ciwba"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr "Hydref"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belize"
-msgstr "Belize"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Chwilio am argraffyddion newydd..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
-msgstr "(aml-sesiwn)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
-msgstr "Goramser cychwyn y cnewyllyn"
+"Yn gosod a dadosod pob System Ffeil y Rhwydwaith (NFS), SMB\n"
+"(Rheolwr Rhwydwaith/Windows), a phwyntiau gosod NCP (NetWare) ."
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../services.pm_.c:55
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."
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
-"Mae eich cerdyn yn medru cael cefnogaeth cyflymu caledwedd 3D ond dim ond "
-"gyda XFree %s.\n"
-"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
-"mewn 2D."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Activate/Disable daily security check."
-msgstr "Galluogi/Analluogi gwiriad diogelwch dyddiol."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-R.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
-msgstr "Galluogi/Analluogi libsafe os yw ar y system."
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Daeth dewin Rhannu DrakX o hyd i'r atebion canlynol:"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "Hwngaraidd"
+"Cychwyn/Gorffen pob rhyngwyneb rhwydwaith sydd wedi eu \n"
+"ffurfweddu i gychwyn wrth gychwyn y peiriant."
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../services.pm_.c:57
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"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 ""
-"Dewiswch eich darparwr.\n"
-"Os nad yw ar eich rhestr, dewiswch Heb ei Restri"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Cydweddi amser awtomatig (defnyddio NTP)"
+"Mae NFS yn brotocol poblogaidd ar gyfer rhannu ffeiliau ar draws "
+"rhwydweithiau TCP/IP.\n"
+"Mae'r gwasanaeth yn darparu ffwythiannaeth gwasanaethwr NFS, sy;n cael ei "
+"ffurfweddu\n"
+"drwy'r ffeil /etc/exports."
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Defnyddio fy rhaniad Windows"
+#: ../../services.pm_.c:60
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
+msgstr ""
+"Mae NFS yn brotocol poblogaidd ar gyfer rhannu ffeiliau \n"
+"ar draws rhwydweithiau TCP/IP. Mae'r gwasanaeth hwn \n"
+"yn darparu'r gallu i gloi ffeiliau NFS."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
+#: ../../services.pm_.c:62
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+"Cychwyn clo allweddell numlock yn awtomatig yn consol \n"
+"ac XFree wrth gychwyn y peiriant."
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Server"
-msgstr "Gwasanaethwr LDAP"
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr "Cynnal OKI 4w ac argraffyddion windows cyffelyb."
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:65
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 "
@@ -13369,422 +9951,494 @@ msgstr ""
"ffurfweddu i wneud hynny, felly mae'n ddiogel ei gael ar beiriannau \n"
"sydd ddim ei angen."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Choose your country"
-msgstr "Dewiswch eich gwlad"
+#: ../../services.pm_.c:68
+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 ""
+"Mae'r mapiwr porth (portmapper) yn rheoli cysylltiadau RPC, \n"
+"sy'n cael eu defnyddio gan brotocolau fel NFS a NIS. Rhaid i wasanaethwr "
+"porthmap\n"
+"redeg ar beiriannau sy'n gweithredu fel gwasanaethwyr ar gyfer protocolau "
+"sy'n\n"
+"gwneud defnydd o fecanwaith RPC."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:71
msgid ""
-"\n"
-"- System Files:\n"
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
msgstr ""
-"\n"
-"- Ffeiliau System: \n"
+"Mae Postfix yn Asiant Cludo E-bost (MTA), sef rhaglen sy'nsymud e-bost o un "
+"peiriant i'r llall."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
-msgstr "Offer Unigol"
+#: ../../services.pm_.c:72
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
+"Bydd yn cadw ac adfer system pwll entropi ar gyfer cynhyrchu rhif \n"
+"hap o ansawdd uchel."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Where"
-msgstr "Lle"
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
+msgstr "Dynodi dyfeisiadau"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "but not matching"
-msgstr "ond heb fod yn cydweddu"
+#: ../../services.pm_.c:76
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
+msgstr ""
+"Mae'r daemon llwybrydd yn caniatáu i'r tabl llwybrydd IP awtomatig \n"
+"ddiweddaru drwy gyfrwng y protocol RIP. Tra bo RIP'n cael ei \n"
+"ddefnyddio'n eang ar rhwydweithiau bach, mae angen protocolau \n"
+"llwybrydd mwy cymleth ar gyfer rhwydweithiwu cymleth."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../services.pm_.c:79
msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
msgstr ""
-"Yma medrwch ddewis gyrrwr arall (un ai OSS neu ALSA) ar gyfer eich cerdyn "
-"sain (%s)"
+"Mae'r protocol rstat yn caniatáu i ddefnyddwyr rhwydwaith \n"
+"i adennill metric perfformaid unrhyw beiriant ar y rhwydwaith."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Ffurfweddu cardiau PCMCIA..."
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"Mae protocol ruser yn caniatáu i ddefnyddwyr ar rwydwaith i adnabod\n"
+"pwy arall sydd wedi mewngofnodi ar beirianau eraill sy'n ymateb."
-#: ../../common.pm:1
-#, c-format
-msgid "kdesu missing"
-msgstr "kdesu ar goll"
+#: ../../services.pm_.c:83
+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 ""
+"Mae'r protocol rwho'n caniatáu i ddefnyddwyr pell gael rhestr o'r \n"
+"holl ddefnyddwyr sydd wedi mewngofnodi ar beiriant sy'n rhedeg \n"
+"daemon rwho (yn debyg i fysedd)."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: mae %s angen enw gwesteiwr...\n"
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
+msgstr "Cychwyn y system sain ar eich peiriant"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
-msgstr "Allwedd amgryptio"
+#: ../../services.pm_.c:86
+msgid ""
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
+msgstr ""
+"Syslog yw'r modd mae llawer o daemonau'n defnyddio i gofnodi \n"
+"negeseuon i ffeiliau cofnod systemau. mae'n syniad da io rhedeg \n"
+"syslog bob tro."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr "Llwytho'r gyrrwyr ar gyfer eich dyfeisiau usb."
-#: ../../keyboard.pm:1
-#, 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."
+#: ../../services.pm_.c:89
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr ""
-"Bydd y gosodiad yn dod i rym wedi'r gosod.\n"
-"Yn ystod y gosod, bydd angen i chi ddefnyddio'r fysell\n"
-"Crtl de i newid rhwng bysellfyrddau cynllun gwahanol."
+"Yn cychwyn Gwasanaethwr Ffont X (mae hyn yn orfodol i XFree i redeg).."
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "Ynys Christmas"
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
+msgstr ""
+"Dewiswch pa wasanaethau ddylai gael eu cychwyn yn awtomatig wrth gychwyn y "
+"cyfrifiadur"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Automatic"
-msgstr "IP awtomatig"
+#: ../../services.pm_.c:127
+msgid "Printing"
+msgstr "Argraffu"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Methodd gosod cychwynnydd. Digwyddodd y gwall canlynol:"
+#: ../../services.pm_.c:128
+msgid "Internet"
+msgstr "Rhyngrwyd"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "Sianel EIDE/SCSI"
+#: ../../services.pm_.c:131
+msgid "File sharing"
+msgstr "Rhannu Ffeiliau"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Gosod yr argraffydd fel y rhagosodedig"
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+msgid "System"
+msgstr "System"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Gwirio mai %s yw'r llwybr cywir"
+#: ../../services.pm_.c:138
+msgid "Remote Administration"
+msgstr "Gweinyddu Pell"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "rhaniad %s"
+#: ../../services.pm_.c:146
+msgid "Database Server"
+msgstr "Gwasanaethwr Cronfa Ddata"
-#: ../../security/level.pm:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "Paranoid"
-msgstr "Paranoia"
+msgid "Services: %d activated for %d registered"
+msgstr "Gwasanaethau: %d wedi eu cychwyn ar gyfer %d wedi eu cofrestri"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS"
-msgstr "NIS"
+#: ../../services.pm_.c:191
+msgid "Services"
+msgstr "Gwasanaethau"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- Dileu Defnyddiwr"
+#: ../../services.pm_.c:203
+msgid "running"
+msgstr "rhedeg"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Location on the bus"
-msgstr "Lleoliad ar y bws"
+#: ../../services.pm_.c:203
+msgid "stopped"
+msgstr "ataliwyd"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No printer found!"
-msgstr "Heb ganfod argraffydd!"
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
+msgstr "Gwasanaethau a daemonau"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
-msgstr "enw gwerthwr y ddyfais"
+#: ../../services.pm_.c:222
+msgid ""
+"No additional information\n"
+"about this service, sorry."
+msgstr "Dim gwybodaeth ychwanegol am y gwasanaeth hwn."
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Erase entire disk"
-msgstr "Dileu'r ddisg gyfan"
+#: ../../services.pm_.c:229
+msgid "On boot"
+msgstr "Cychwyn"
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Default)"
-msgstr "(Rhagosodedig)"
+#: ../../services.pm_.c:241
+msgid "Start"
+msgstr "Cychwyn"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Automatic reconfiguration"
-msgstr "Ail ffurfweddiad awtomatig"
+#: ../../services.pm_.c:241
+msgid "Stop"
+msgstr "Aros"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Receiving Speed:"
-msgstr "Derbyn Cyflymder"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Diolch am ddewis Mandrake Linux 9.0"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
-msgstr "Ynysoedd Turks a Caicos"
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
+msgstr "Croeso i fyd Cod Agored"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Ip"
-msgstr "Dim Ip"
+#: ../../share/advertising/01-thanks.pl_.c:11
+msgid ""
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
+msgstr ""
+"Mae llwyddiant MandrakeSoft yn seiliedig ar egwyddor Meddalwedd Rhydd. Mae "
+"eich system weithredu newydd yn ganlyniad gwaith cydweithredol ar ran y "
+"Gymuned Linux byd-eang"
-#: ../../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
-#, c-format
-msgid "<- Previous"
-msgstr "<- Cynt"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
+msgstr "Ymunwch â byd Meddalwedd Rhydd"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Transfer Now"
-msgstr "Trosglwyddo Nawr"
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr "Hoffech chi wybod mwy am y gymuned Cod Agored?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password and network authentication methods"
-msgstr "Gosod dulliau gwirio cyfrinair gwraidd a rhwydwaith."
+#: ../../share/advertising/02-community.pl_.c:11
+msgid ""
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
+msgstr ""
+"Dewch i adnabod y gymuned Cod Agored a dewch yn aelod. Dysgwch, addysgwch a "
+"chynorthwywch eraill drwy ymuno yn y grwpiau trafod niferus sydd i'w cael yn "
+"ein tudalennau gwe \"Cymuned\""
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "Newid rhwng gwastad a'r grwp wedi ei ddidoli"
+#: ../../share/advertising/03-internet.pl_.c:9
+msgid "Get the most from the Internet"
+msgstr "Cael y mwyaf o'r Rhyngrwyd"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Themes"
-msgstr "Themâu"
+#: ../../share/advertising/03-internet.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
+msgstr ""
+"Mae Mandrake Linux 9.0 yn cynnig y feddalwedd orau i gael mynediad i bopeth "
+"sydd gan y Rhyngrwyd i'w gynnig. Syrffiwch y we a gwyliwch animeddiadau gyda "
+"Mozilla a Konqueror, cyfnewidiwch e-bost a threfnu eich gwybodaeth gyda "
+"Evolution a Kmail, a llawr iawn rhagor. "
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "Dewisiadau: %s"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr "Darganfyddwch yr offer graffigol ac amlgyfrwng mwyaf diweddar!"
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr "Gyrrwch dechnegau aml-gyfrwng i'w eithaf!"
+
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-"Rydych yn defnyddio %s fel rheolwr cychwyn.\n"
-"Cliciwch Ffurfweddu i gychwyn dewin gosod"
+"Mae Mandrake Linux 9.0 yn caniatáu i chi wthio eich cyfrifiadur aml-gyfrwng "
+"i'r eithaf! Defnyddiwch y feddalwedd ddiweddaraf i chwarae ffeiliau "
+"cerddoriaeth a sain, golygu a threfnu eich delweddau a lluniau, gwylio "
+"teledu a fideo, a llawer iawn mwy"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "Ffurfweddiad OKI winprinter "
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Gemau"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
-msgstr "Saint Helena"
+#: ../../share/advertising/05-games.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
+msgstr ""
+"Mae Mandrake Linux 9.0 yn darparu'r gemau Cod Agored gorau - arcêd, antur, "
+"cardiau, chwaraeon, strategaeth..."
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Porth paralel #\"%s"
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+msgid "Mandrake Control Center"
+msgstr "Canolfan Rheoli Mandrake"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Security Level"
-msgstr "Lefel Diogelwch"
+#: ../../share/advertising/06-mcc.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
+msgstr ""
+"Canolfan Rheoli Mandrake Linux 9.0 yw'r lleoliad canolog ar gyfer llunio a "
+"ffurfio eich peiriant"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../share/advertising/07-desktop.pl_.c:9
+msgid "User interfaces"
+msgstr "Rhyngwynebau defnyddwyr"
+
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
-"Nid yw rhai camau wedi eu cwblhau.\n"
-"\n"
-"Ydych chi wir eisiau gorffen?"
+"Mae Mandrake Linux 9.0 yn darparu 11 rhyngwyneb defnyddiwr y mae modd eu "
+"newid yn helaeth: KDE 3, Gnome 2, WindowMaker, ..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "Swdan"
+#: ../../share/advertising/08-development.pl_.c:9
+msgid "Development simplified"
+msgstr "Symleiddio datblygiad"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "Pwylaidd (gosodiad qwerty)"
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr "Mandrake Linux 9.0 yw'r platfform datblygu gorau"
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
-msgstr "Syria"
+#: ../../share/advertising/08-development.pl_.c:11
+msgid ""
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
+msgstr ""
+"Defnyddiwch rym grynhowr gcc 3 GNU yn ogystal ag amgylcheddau datblygiadol "
+"Cod Agored gorau oll"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr "Trowch eich peiriant i fod yn wasanaethwr dibynadwy"
+
+#: ../../share/advertising/09-server.pl_.c:10
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?"
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
-"A yw eich argraffydd yn ddyfais amlbwrpas gan HP neu Sony (OfficeJet, PSC, "
-"LaserJet 1100/1200/1220/3200/3300 gyda sganiwr, DeskJet 450, Sony IJP-V100), "
-"HP PhotoSmart neu HP LaserJet 2200?"
+"Trowch eich peiriant i fod yn wasanaethwr pwerus gydag ychydig gliciau ar "
+"eich llygoden: gwasanaethwyr gwe, e-bost, mur gwarchod, llwybrydd, "
+"gwasanaethwr ffeil ac argraffu..."
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
-#, c-format
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr "Y diogelwch mwyaf"
+
+#: ../../share/advertising/10-mnf.pl_.c:10
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"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-"Croeso i %s y dewiswr systemau gweithredu! \n"
-"\n"
-"Dewiswch system weithredu o'r rhestr uchod neu\n"
-"arhoswch %d eiliad am gychwyn rhagosodedig\n"
-"\n"
+"Mae'r casgliad MandrakeSecurity'n cynnwys Multi Network Firewall (M.N.F.)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "Portiwgalaidd"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
+msgstr ""
+"Mae'r mur cadarn hwn yn cynnwys nodwedd rhwydwaith i'ch galluogi i gyflawni "
+"eich anghenion diogelwch i gyd"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
-msgstr "Enw ffeil cylch-ôl"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr "Mae'r cynnyrch ar gael ar safle gwe MandrakeStore"
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "Dylai cyfeiriad DNS fod mewn fformat 1.2.3.4"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr "Y siop MandrakeSoft swyddogol"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Control key"
-msgstr "Bysell Control chwith"
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
+msgstr ""
+"Mae amrediad eang o ddarpariaeth Linux, yn ogystal â chynigion arbennig ar "
+"gynnyrch a 'difyrrwch', ar gael ar-lein yn ein e-siop"
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
-msgstr "Serbia"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr "Partneriaid strategol"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Newzealand"
-msgstr "Seland Newydd"
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
+msgstr ""
+"Mane Mandrake Linux yn cydweithio gyda dewis o gwmniau yn cynnig atebion "
+"proffesiynnol sy'n cydweddu â Mandrake Linux Mae rhestr o 'r partneriaid hyn "
+"i'w cael yn MandrakeStore"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
-msgstr "Dylai'r cyfeiriadur aros o fewn y system ffeilio gwraidd"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr "Mae catalog hyfforddiant MandrakeSoft i'w gael yn Linux-Campus"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
-msgstr "ar draws Rhwydwaith"
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
+msgid ""
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
+msgstr ""
+"Mae'r rhaglen hyfforddiant yma wedi ei greu i ymateb i anghenion y "
+"defnyddiwr a'r arbennigwr (Gweinyddwyr Rhwydwaith a System0"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
-msgstr "Bysell CapsLock"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr "Mynnwch dystysgrifo eich hun gyda Linux"
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "Gosod cychwynnwr"
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+"P'un a'i rydych yn dewis dysgu eich hun arlein neu drwy gyfrwng ein "
+"rhwydwaith o bartneriaid hyfforddi, mae catalog Linux-Campus yn eich paratoi "
+"ar gyfer rhaglen dystiedig LPI cydnabyddedig (tystysgrif technegol "
+"proffesiynnol byd-eang)"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Dewiswch faint y cof eich cerdyn graffeg"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+msgid "Become a MandrakeExpert"
+msgstr "Dewch yn MandrakeExpert"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
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))."
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"Galluogi/Analluogi crontab ac at ar gyfer defnyddwyr.\n"
-"\n"
-" Rhoi defnyddwyr â chaniatâd yn /etc/cron.allow a /etc/at.allow\n"
-" (gw. man yn(1) a crontab(1))."
+"Dewch o hyd i ateb eich anhawsterau drwy blatfform cefnogaeth ar-lein "
+"MandrakeSoft."
-#: ../../standalone.pm:1
-#, c-format
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
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."
+"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 ""
-"[OPTIONS]\n"
-"Rhaglen Cyswllt a Monitro'r Rhwydwaith a'r Rhyngrwyd\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."
+"Ymunwch â'r timau cefnogi MandrakeSoft a'r Linux Community ar-lein i rannu "
+"eich gwybodaeth ac i helpu eraill drwy ddod yn Arbenigwr cydnabyddedig ar y "
+"safle cefnogaeth dechnegol."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
-msgstr "Pwll Cyfeiriad IP dynameg"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert Corfforaethol"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "Enw LVM"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr "Platfform arlein i ymateb i anghenion cefnogaeth penodol cwmni"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "Cafodd rhai dyfeisiau yn nosbarth caledwedd\"%s\" eu tynnu:\n"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+"Bydd pob digwyddiad yn cael ei archwilio gan arbenigwr technegol "
+"MandrakeSoft cymwysedig"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Wedi canfod rhyngwynebau %s %s"
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
+msgstr "Darganfyddwch MandrakeClub a'r mandrake Corporate Club"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Install"
-msgstr "Wedi'r Gosod"
+#: ../../share/advertising/17-mdkclub.pl_.c:10
+msgid ""
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
+msgstr ""
+"Crewyd MandrakeClub a MandrakeCorporateClub ar gyfer defnyddwyr preifat a "
+"busnes Mandrake Linux fyddai'n hoffi cefnogi eu hoff ddosbarthiad Linux "
+"tra'n derbyn breintiau arbennig. Os ydych yn mwynhau ein cynnyrch, os yw "
+"eich cwmni'n manteisio o'n cynnyrch i gael y blaen ar eraill, os hoffech "
+"gefnogi datblygiad Linux mandrake, yna ymunwch â MandrakeClub!"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The internal domain name"
-msgstr "Enw'r parth mewnol"
+#: ../../standalone.pm_.c:21
+#, fuzzy
+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 ""
+"Mae'r rhaglen hon yn feddalwedd rhydd; medrwch ei ailddosbarthu\n"
+"a/neu ei newid o dan amodau Trwydded Gyhoeddus Gyffredinol GNU\n"
+"fel sydd wedi ei gyhoeddi gan y Free Software Foundation; un ai fersiwn\n"
+"2 neu (yn ôl eich dewis) unrhyw fersiwn diweddarach.\n"
+"\n"
+" Mae'r rhaglen yn cael ei ddosbarthu yn y gobaith y bydd yn ddefnyddiol,\n"
+" ond HEB UNRHYW WARANT; heb hyd yn oed awgrym o warant o\n"
+" FASNACHEIDDRWYDD nag ADDASRWYDD AR GYFER PWRPAS\n"
+" PENODOL. Gweler Trwydded Gyhoeddus Gyffredinol GNU am fwy o\n"
+" wybodaeth.\n"
+"\n"
+" Dylech fod wedi derbyn copi o Drwydded Gyhoeddus Gyffredinol GNU\n"
+" gyda'r rhaglen; os nad, ysgrifennwch at:\n"
+" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n"
+"MA 02111-1307, USA"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ y cerdyn"
+#: ../../standalone.pm_.c:40
+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 name.\n"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "logdrake"
+#: ../../standalone.pm_.c:51
+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.pm:1
-#, c-format
+#: ../../standalone.pm_.c:57
msgid ""
"Font Importation and monitoring "
"application \n"
@@ -13799,7222 +10453,4504 @@ msgid ""
" : name_of_application like so for staroffice \n"
" : and gs for ghostscript for only this one."
msgstr ""
-"Rhaglen mewnforio a monitro "
-"ffontiau \n"
-"--windows_import : mewnforio o bob rhaniad windows.\n"
-"--xls_fonts : dangos pob ffont sy'n bodoli o xls\n"
-"--strong : cadarnhad cryf o ffont.\n"
-"--install : derbyn unrhyw ffeil ffont ac unrhyw gyfeiriadur.\n"
-"--uninstall : dadosod unrhyw ffont neu gyfeiriadur ffont.\n"
-"--replace : amnewid pob ffont os yw'n bod\n"
-"--application : 0 dim rhaglen.\n"
-" : 1 pob rhaglen ar gael yn cael ei gynnal.\n"
-" : name_of_application like so for staroffice \n"
-" : and gs for ghostscript for only this one."
-
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Dewiswch y gyrrwr disg meddal i'w ddefnyddio i greu disg cychwyn"
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr "LILO gyda dewislen testun"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
+#: ../../standalone.pm_.c:68
+msgid ""
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Popeth (dim mur cadarn)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
-msgstr "Rhaid enwi delwedd cnewyllyn"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", dyfais amlbwrpas ar USB"
-
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Do"
-msgstr "Gwneud"
+#: ../../standalone.pm_.c:70
+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)"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Cysylltu â'r drych i estyn y rhestr o becynnau sydd ar gael"
+#: ../../standalone.pm_.c:82
+#, fuzzy
+msgid "[keyboard]"
+msgstr "Allweddell"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lithuenaidd AZERTY (hen)"
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasilaidd (ABNT-2)"
+#: ../../standalone.pm_.c:84
+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 ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
-msgstr "Cyfeiriad IP gwesteiwr/rhwydwaith"
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone.pm_.c:94
msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
+"[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 ""
-"bar cynnydd cydfesuryn y\n"
-"yn ei gornel uchaf chwith"
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System installation"
-msgstr "Gosod y system"
+#: ../../standalone.pm_.c:99
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint Vincent and the Grenadines"
+#: ../../standalone.pm_.c:100
+msgid ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
+msgstr ""
-#: ../../security/help.pm:1
+#: ../../standalone.pm_.c:114
#, c-format
-msgid "Allow/Forbid reboot by the console user."
-msgstr "Caniatáu/Gwrthod ailgychwyn cyfrifiadur gan ddefnyddiwr y consol."
+msgid ""
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Open"
-msgstr "/Ffeil/_Agor"
+#: ../../standalone.pm_.c:168
+msgid "Installing packages..."
+msgstr "Gosod pecynnau..."
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "Lleoliad ffeil auto_install.cfg"
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Allgofnodwch ac yna defnyddiwch Ctrl Alt-BackSpace"
-#: ../../any.pm:1
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "Open Firmware Delay"
-msgstr "Agor Oedi Cadarnwedd"
+msgid "Please relog into %s to activate the changes"
+msgstr "Ail fewn gofnodwch i %s i wireddu'r newidiadau"
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
-msgstr "Hwngari"
+#: ../../standalone/drakTermServ_.c:239
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Ffurfweddiad Gwasanaethwr Terfynell Mandrake"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Zealand"
-msgstr "Seland Newydd"
+#: ../../standalone/drakTermServ_.c:253
+msgid "Enable Server"
+msgstr "Galluogi'r Gwasanaethwr"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Color configuration"
-msgstr "Ffurfweddiad lliw"
+#: ../../standalone/drakTermServ_.c:260
+msgid "Disable Server"
+msgstr "Analluogi'r Gwasanaethwr"
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Mae rhai cyfyngiadau, ac mae rhagor o wiriadau awtomatig yn cael eu rhedeg "
-"bob nos"
+#: ../../standalone/drakTermServ_.c:268
+msgid "Start Server"
+msgstr "Cychwyn y Gwasanaethwr"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "please choose the date to restore"
-msgstr "dewiswch y data i'w adfer"
+#: ../../standalone/drakTermServ_.c:275
+msgid "Stop Server"
+msgstr "Atal y Gwasanaethwr"
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
-msgstr "Netherlands Antilles"
+#: ../../standalone/drakTermServ_.c:283
+msgid "Etherboot Floppy/ISO"
+msgstr "Etherboot Floppy/ISO"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr "Newid o ext2 i ext3"
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
+msgstr "Delweddau Cychwyn y Rhwyd"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
+#: ../../standalone/drakTermServ_.c:294
+msgid "Add/Del Users"
+msgstr "Ychwanegu/Diddymu Defnyddwyr"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Pori i'r ystorfa newydd adferwyd"
+#: ../../standalone/drakTermServ_.c:299
+msgid "Add/Del Clients"
+msgstr "Ychwanegu/Dileu Cleientiaid"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:328
+#, fuzzy
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\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 ""
+" yn diweddaru 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft."
+"com>"
+
+#: ../../standalone/drakTermServ_.c:332
+msgid ""
"\n"
-" Croeso i'r Dewin Gosod Argraffydd\n"
"\n"
-"Mae'r dewin yn caniatáu i chi osod argraffyddion lleol neu bell i'w "
-"defnyddio o'r peiriant hwn a hefyd gan argraffyddion eraill ar eich "
-"rhwydwaith.\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
-"Bydd yn gofyn am yr holl wybodaeth angenrheidiol i osod yr argraffydd a bydd "
-"yn rhoi mynediad i'r holl yrwyr argraffyddion sydd ar gael, dewisiadau "
-"gyrwyr a mathau o gysylltiadau argraffyddion."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and %d unknown printers"
-msgstr "a %d argraffydd anhysbys"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
msgstr ""
-"Mae gan brosesyddion Pentium cynnar wall yn eu prosesydd pwynt arnofio nad "
-"yw'n ymgyrraedd â'r cywirdeb angenrheidiol wrth berfformio Floating point "
-"DIVision (FDIV)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-"Wedi mynd tu hwnt i'r cwota wrth gefn\n"
-"%d Mb wedi ei ddefnyddio vs %d Mb ar gael."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Heb ganfod cerdyn PCI ISDN. Dewiswch un o'r sgrîn nesaf."
-
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
-msgstr "GB"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
-msgstr "Rhowch enw defnyddiwr"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
-msgstr "Galluogi cychwyn o CD?"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Simply reboot"
-msgstr ""
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid " enter `void' for void entry"
-msgstr "rhowch'gwag' am gofnod gwag"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr "Cadw wrth gefn ar gyfrwng anosodadwy - Defnyddiwch Catalog i'w adfer"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
-msgstr "Ionawr"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password history length"
-msgstr "Hyd gyfrinair hanes"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Winmodem connection"
-msgstr "Cysylltiad Winmodem l"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:365
msgid ""
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\n"
"\n"
-"Congratulations, your printer is now installed and configured!\n"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\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 ""
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
"\n"
-"Llongyfarchiadau, mae eich argraffydd wedi ei osod a'i ffurfweddu!\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
"\n"
-"Os ydych am ychwanegu, tynnu neu ailenwi argraffydd, neu os ydych am newid y "
-"gosodiadau dewis rhagosodedig (mewnflwch papur, ansawdd y printiad,...0, "
-"dewiswch \"Argraffydd\" yn adran \"Caledwedd\" Canolfan Rheoli Mandrake."
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "Nawr mae modd i chi redeg Xawtv (o dan XWindows)!\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Dim digon o le cyfnewid i gyflawni'r gosodiad, ychwanegwch ragor"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
+"\n"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \n"
+"\n"
+msgstr ""
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "%s on %s"
-msgstr "%s ar %s"
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
+msgstr "Disg Meddal Cychwyn"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid remote root login."
-msgstr "Caniatâu/Gwrthod mewngofnodi gwraidd pell"
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
+msgstr "Cychwyn yr ISO"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Mae GNU/Linux yn rheoli amser drwy GMT (Greenwich Mean Time)\n"
-"a'i drosi i amser lleol yn ôl y parth amser rydych wedi ei ddewis.\n"
-"Mae'n bosib dad-ddewis hyn drwy ddad-ddewis \"%s\" fel bod y cloc caledwedd "
-"yr un a chloc y system yr un peth.\n"
-"Mae hyn yn ddefnyddiol pan fo'r peiriant yn westai i system arall megis\n"
-"Windows.\n"
-"\n"
-"Bydd y dewis \"%s\" yn rheoli'r cloc yn awtomatig\n"
-"drwy gysylltu â gwasanaethwr amser ar y Rhyngrwyd. Yn y rhestr sy'n cael ei\n"
-"gynnig dewiswch yr agosaf atoch. Rhaid i'ch cyswllt â'r we fod yn gweithio\n"
-"i hyn ddigwydd. Bydd yn gosod ar eich peiriant wasanaethwr amser fydd\n"
-"o ddewis yn medru cael ei ddefnyddio gan beiriannau eraill ar eich "
-"rhwydwaith."
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
+msgstr "Adeiladu'r cnewyllyn gyfan -->"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
-msgstr "Methu creu catalog!"
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
+msgstr "Bydd hyn yn cymryd rhai munudau"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Pa un yw eich parth amser?"
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
+msgstr "Heb ddeiwis cnewyllyn"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Defnyddiwch ffeiliau .backupignore"
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
+msgstr "Adeiladau NIC unigol -->"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
-msgstr "Guinea"
+#: ../../standalone/drakTermServ_.c:587
+msgid "No nic selected!"
+msgstr "Heb ddewis nic"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Mae'r system wedi cysylltu â'r Rhyngrwyd."
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
+msgstr "Adeiladu pob cnewyllyn -->"
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "De Georgia ac Ynysoedd De Sandwich"
+#: ../../standalone/drakTermServ_.c:604
+msgid "<-- Delete"
+msgstr "<-- Dileu"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Siapan (darlledu)"
+#: ../../standalone/drakTermServ_.c:611
+msgid "Delete All NBIs"
+msgstr "Dileu Pob NBI"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:668
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."
+"!!! 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 ""
-"Dangosydd\n"
-"\n"
-" Mae'r gosodwr fel rheol yn canfod ac yn ffurfweddu'n awtomatig\n"
-"y dangosydd sy'n gysylltiedig â'ch cyfrifiadur. Os nad yw hyn yn wir,\n"
-"dewiswch eich dangosydd o'r rhestr."
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "Mozambique"
+#: ../../standalone/drakTermServ_.c:673
+msgid "Add User -->"
+msgstr "Pob Defnyddiwr-->"
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "Eicon"
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
+msgstr "<-- Dileu Defndyddiwr"
-#: ../../../move/tree/mdk_totem:1
+#: ../../standalone/drakTermServ_.c:720
#, fuzzy, c-format
-msgid "Kill those programs"
-msgstr "mynediad i raglenni X"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Dewiswch beth rydych am ei gadw wrth gefn"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 lliw (8 did)"
+msgid "type: %s"
+msgstr "Math: "
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "Darllen-ysgrifennu"
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
+msgstr "Heb greu delweddau cychwyn y rhwyd!"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "Maint: %s\n"
+#: ../../standalone/drakTermServ_.c:773
+#, fuzzy
+msgid "Thin Client"
+msgstr "Cleient DHCP"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Hostname: "
-msgstr "Enw gwesteiwr:"
+#: ../../standalone/drakTermServ_.c:775
+#, fuzzy
+msgid "Allow Thin Clients"
+msgstr "Ychwanegu/Dileu Cleientiaid"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a rule"
-msgstr "Ychwanegu rheol"
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
+msgstr "Ychwanegu Cleient -->"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Maint darn %s\n"
+#: ../../standalone/drakTermServ_.c:821
+#, fuzzy
+msgid "<-- Edit Client"
+msgstr "<--Diddymu Cleient"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
-msgstr "Adeiladu dyfodol Linux!"
+#: ../../standalone/drakTermServ_.c:837
+#, fuzzy
+msgid "Delete Client"
+msgstr "<--Diddymu Cleient"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printer"
-msgstr "Argraffydd Lleol"
+#: ../../standalone/drakTermServ_.c:843
+msgid "dhcpd Config..."
+msgstr "Ffurfweddu dhcpd..."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Gwall mynediad i'r disg meddal, methu gosod dyfais %s"
+#: ../../standalone/drakTermServ_.c:876
+msgid ""
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
+msgstr ""
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ADSL connection"
-msgstr "Cysylltiad ADSL"
+#: ../../standalone/drakTermServ_.c:901
+#, fuzzy
+msgid "Netmask:"
+msgstr "Netmask"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Dim ffurfweddiad, cliciwch Dewin neu Uwch.\n"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
+msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Error!"
-msgstr "Gwall!"
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "cable connection detected"
-msgstr "canfyddwyd cysylltiad cebl"
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "Gwrthodwyd caniatâd wrth drosglwyddo %s i %s"
+#: ../../standalone/drakTermServ_.c:929
+#, fuzzy
+msgid "Domain Name:"
+msgstr "Enw parth"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Adrodd ar Wallau"
+#: ../../standalone/drakTermServ_.c:937
+#, fuzzy
+msgid "Name Servers:"
+msgstr "Gwasanaethwr Samba"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
-msgstr "Dominica"
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "Newid maint"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Cydraniad: %s\n"
+#: ../../standalone/drakTermServ_.c:1001
+msgid "dhcpd Server Configuration"
+msgstr "Ffurfweddiad Gwasanaethwr dhcpd"
-#: ../../install2.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:1002
+#, fuzzy
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)"
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-"Methu cael mynediad i modiwlau'r cnewyllyn sy'n cyfateb i'ch cnewyllyn chi "
-"(mae ffeil %s ar goll), mae hyn yn golygu, fel arfer, nad yw eich disg "
-"cychwyn yn cydweddu gyda'r cyfrwng Gosod (crëwch ddisg cychwyn meddal newydd)"
+"Tynnwyd y rhanfwyaf o'r gwerthoedd\n"
+"hyn o'ch system ar waith. Medrwch eu newid yn ôl y galw."
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
msgstr ""
-"Dewiswch y porth cywir. Mae porth \"COM1\" o dan MS Windows yn cael ei alw "
-"yn\n"
-"\"ttyS0\" yn GNU/Linux, e.e."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Bydd y pecynnau canlynol yn cael eu tynnu"
+#: ../../standalone/drakTermServ_.c:1018
+msgid "Write Config"
+msgstr "Ysgrifenu ffurfweddu"
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr "Cysylltu â'r We"
+#: ../../standalone/drakTermServ_.c:1120
+msgid "Please insert floppy disk:"
+msgstr "Mewnosodwch ddisg meddal:"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
-msgstr "Defnyddiwch y rhaniadau cyfredol"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
+msgstr "Maethu cael mynediad i'r disg meddal!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "Canada (Quebec)"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
+msgstr "Mae modd tynnu'r disg meddal nawr"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Dyfais llygoden: %s\n"
+#: ../../standalone/drakTermServ_.c:1129
+msgid "No floppy drive available!"
+msgstr "Does dim gyrrwr disg meddal ar gael!"
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakTermServ_.c:1138
#, c-format
-msgid "Reselect correct fonts"
-msgstr "Ailddewis y ffontiau cywir"
+msgid "Etherboot ISO image is %s"
+msgstr "%s yw'r delwedd ISO etherboot"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Dewisiadau\n"
-"\n"
-" Yma gallwch ddewis os ydych am i'ch cyfrifiadur droi i ryngwyneb graffig\n"
-"wrth gychwyn y cyfrifiadur. Yn amlwg, byddwch am ateb \"%s\" os yw\n"
-"eich peiriant i weithredu fel gwasanaethwr, neu os nad oeddech yn\n"
-"llwyddiannus yn cael eich dangosydd i ffurfweddu'n gywir."
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Aeth rhywbeth o'i le! - ydy mkisofs wedi ei osod?"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert Corfforaethol"
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "Mae angen creu /etc/dhcpd.conf yn gyntaf"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" cydraniad XFdrake"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Write protection"
-msgstr "Diogelwch ysgrifennu"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "You've not selected any font"
-msgstr "Heb ddewis ffontiau"
+#: ../../standalone/drakautoinst_.c:40
+msgid "Error!"
+msgstr "Gwall!"
-#: ../../steps.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, c-format
-msgid "Language"
-msgstr "Iaith"
+msgid "I can't find needed image file `%s'."
+msgstr "Methu canfod ffeil delwedd angenrheidiol '%s'."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer model selection"
-msgstr "Dewis model yr argraffydd"
+#: ../../standalone/drakautoinst_.c:43
+msgid "Auto Install Configurator"
+msgstr "Ffurfweddwr Awto-Osod"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:44
msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
+"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 ""
-"Wedi newid math raniad %s, bydd yr holl ddata ar y rhaniad yn cael ei golli"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ISDN adapters"
-msgstr "Addaswyr ISDN"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d eiliad"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Rhowch ddisg meddal yng ngyrrwr %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Rhaid cynnig URI dilys!"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr "Wedi canfod rhyngwyneb \"%s\", hoffech chi ei ddefnyddio?"
+"Rydych ar fin ffurfweddu disg meddal Gosod Awtomatig. Mae'r nodwedd hwn "
+"braidd yn beryglus a dylid ei ddefnyddio gyda gofal.\n"
+"\n"
+"Gyda'r hodwedd hwn, bydd modd ailchwarau'r gosodiad ar y cyfrifiadur, gan "
+"eich holi'n rhyngweithiol ar gyfer rhai cammau, er mwyn newid eu "
+"gwerthoedd.\n"
+"\n"
+"Ydych chi eisiau parhau?\n"
+"?"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
-msgstr "Ail ffurfweddi rhag wyneb a gwasanaethwr DHCP"
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
+msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound configuration"
-msgstr "Ffurfweddiad sain"
+#: ../../standalone/drakautoinst_.c:62
+#, fuzzy
+msgid "replay"
+msgstr "Ail chwarae"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
-msgstr "Tudalen prawf llun"
+#: ../../standalone/drakautoinst_.c:66
+msgid "Automatic Steps Configuration"
+msgstr "FFurfweddiad Camau Awtomatig"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Rhannu disg unigol"
+#: ../../standalone/drakautoinst_.c:67
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
+msgstr ""
+"Dewiswch ar gyfer pob cam a fydd yn ail chwarae fel eich gosodiad, neu a "
+"fydd gyda llaw"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Rhowch Enw'r Argraffydd a Sylw"
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+msgid "Creating auto install floppy"
+msgstr "Creu disg meddal awto gosod"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:139
msgid ""
-"The following printers\n"
"\n"
-"%s%s\n"
-"are directly connected to your system"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-"Mae argraffyddion canlynol\n"
"\n"
-"%s%s\n"
-"wedi eu cysylltu'n uniongyrchol â'ch system"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "You don't have any winmodem"
-msgstr "Nid oes gennych winmodem"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: %s"
-msgstr "math: %s"
+"Croeso\n"
+"\n"
+"Mae paramedrau'r awto osod i'w cael yn yr adran ar y chwith"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "Slofacaidd (QWERTY)"
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
+msgstr "Llongyfarchiadau!"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:235
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."
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
msgstr ""
-"Dylai hyn fod yn rhestr coma gwahanedig o ddefnyddwyr lleol neu gyfeiriadau "
-"e-bost er mwyn anfon y canlyniadau wrth gefn atynt. Rhaid cael asiant "
-"trosglwyddo e-bost ar eich system."
-
-#: ../../standalone/draksound:1
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Heb ganfod Cerdyn Sain!"
+"Mae'r disg meddal wedi ei gynhyrchu'n llwyddiannus. \n"
+"Medrwch ail chwarae eich gosodiad."
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "Porth Llygoden"
+#: ../../standalone/drakautoinst_.c:273
+msgid "Auto Install"
+msgstr "Awto Gosod"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
-msgstr "Gwiriwch am gyfrifon anniogel."
+#: ../../standalone/drakautoinst_.c:343
+msgid "Add an item"
+msgstr "Ychwanegu eitem"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-"Mae angen cychwyn y Rheolwr Dangosydd i'r newid ddigwydd.\n"
-"(ailgychwyn gwasanaeth dm - yn y consol)"
+#: ../../standalone/drakautoinst_.c:350
+msgid "Remove the last item"
+msgstr "Tynnu'r eitem olaf"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Ftp Server"
-msgstr "Gwasanaethwr Ftp"
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
+msgstr "Nid yw cron ar gael et ar gyfer di-wraidd"
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr "Uganda"
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
+msgstr "RHYBUDD"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
-msgstr "trosi ffontiau %s"
+#: ../../standalone/drakbackup_.c:691
+msgid "FATAL"
+msgstr "TERFYNNOL"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "y math o fws mae eich llygoden wedi cysylltu iddi"
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
+msgstr "GWYBODAETH"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:704
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"
+" DrakBackup Report \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 ""
-"I grynhoi, bydd DrakX yn cyflwyno crynodeb o'r wybodaeth amrywiol\n"
-"sydd ganddo am eich system. Yn ddibynnol ar eich caledwedd, mae'n bosib\n"
-"bod gennych rywfaint o'r nodweddion canlynol. Mae pob cofnod yn cynnwys\n"
-"eitem ffurfweddadwy, a chrynodeb o'r ffurfweddiad presennol. Cliciwch ar y\n"
-"botwm \"%s\" perthnasol i'w newid.\n"
"\n"
-" *\"%s\": gwirio ffurfweddiad map y bysellfwrdd a'i newid os oes angen.\n"
+" Adroddiad DrakBackup \n"
"\n"
-" *\"%s\": gwirio'r dewis iaith. Os nad ydych yn y wlad hon, cliciwch y "
-"botwm\n"
-"\"%s\" a dewis un arall. Os nad yw eich gwlad ar y rhestr gyntaf i'w\n"
-"dangos, cliciwch y botwm \"%s\" am y rhestr gyflawn o wledydd.\n"
+
+#: ../../standalone/drakbackup_.c:705
+msgid ""
"\n"
-" *\"%s\": Mae DrakX yn dyfalu eich parth amser yn ôl y wlad rydych\n"
-"wedi ei dewis. Mae modd clicio ar y botwm \"%s\" i'w gywiro.\n"
+" DrakBackup Daemon Report\n"
"\n"
-" *\"%s\": gwirio ffurfweddiad y llygoden bresennol a chlicio ar y botwm\n"
-"i'w newid os oes angen.\n"
"\n"
-" \"%s\": bydd clicio ar y botwm \"%s\" yn agor y dewin\n"
-"ffurfweddu argraffydd. Darllenwch y pennawd yn y \"Starter Guide\" ar\n"
-"sut i osod argraffydd newydd. Mae'r rhyngwyneb yn debyg i'r un ar gyfer\n"
-"ei osod yn y man cyntaf.\n"
+msgstr ""
"\n"
-" *\"%s\": os oes cerdyn sain wedi ei ganfod ar eich system bydd\n"
-"yn cael ei ddangos yma. Os ydych yn sylwi nad y cerdyn sain sy'n cael ei\n"
-"ddangos yw'r un sydd ar eich system, yna cliciwch y botwm a dewis\n"
-"gyrrwr arall.\n"
+" Adroddiad Daemon DrakBackup \n"
"\n"
-" *\"%s\": fel rheol bydd DrakX yn gosod eich rhyngwyneb\n"
-"i gydraniad \"800x600\" neu \"1024x768\". Os nad yw hyn yn addas ar\n"
-"eich cyfer cliciwch y botwm \"%s\" i'w newid.\n"
"\n"
-" *\"%s\": os oes cerdyn teledu wedi ei ganfod ar eich system\n"
-"bydd yn cael ei ddangos yma. Os oes gennych gerdyn ac nid yw wedi cael\n"
-"ei ganfod, cliciwch \"%s\" i geisio ei ffurfweddu â llaw.\n"
+
+#: ../../standalone/drakbackup_.c:709
+msgid ""
"\n"
-" *\"%s\": os oes cerdyn ISDN wedi ei ganfod ar eich system bydd\n"
-"yn cael ei ddangos yma. Mae modd clicio ar \"%s\" i newid y\n"
-"paramedrau sy'n gysylltiedig â'r cerdyn.\n"
+" DrakBackup Report Details\n"
"\n"
-" *\"%s\": os ydych am ffurfweddu eich mynediad i'r Rhyngrwyd neu\n"
-"eich rhwydwaith lleol.\n"
"\n"
-" *\"%s\": mae modd ail ddiffinio'r lefel diogelwch osodwyd yn\n"
-"flaenorol ().\n"
+msgstr ""
"\n"
-" *\"%s\": mae'n syniad da gosod mur cadarn i'ch amddiffyn rhag\n"
-"ymyriadau os ydych yn bwriadu cysylltu eich cyfrifiadur â'r Rhyngrwyd.\n"
-"Darllennwch y bennod perthnasol yn y \"Starter Guide\" am fanylion\n"
-"gosodiadau mur cadarn.\n"
+" Manylion Adroddiad DrakBackup \n"
"\n"
-" *\"%s\": os hoffech newid ffurfweddiad eich cychwynnydd\n"
-"cliciwch y botwm honno. Ar gyfer defnyddwyr profiadol.\n"
"\n"
-" *\"%s\": yma bydd modd i chi wneud man newidiadau i'r\n"
-"gwasanaethau sy'n cael eu rhedeg ar eich cyfrifiadur. Os ydych yn\n"
-" bwriadu defnyddio'r cyfrifiadur fel gwasanaethwr mae'n syniad da\n"
-"darllen y gosodiadau'n fanwl."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr "Comoros"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "May"
-msgstr "Mai"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yaboot mode"
-msgstr "Modd Yaboot"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Llygoden 3 Botwm Generig"
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+msgid "Total progess"
+msgstr "Cyfanswm y cynnydd"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
-msgstr "UDA (cabl)"
-
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakbackup_.c:785
#, c-format
msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+"%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 ""
-"Methu ailgychwyn LiLo!\n"
-"Cychwyn \"lilo\" fel gwraidd ar y linell orchymyn i gwblhau gosod thema "
-"LiLo'n llawn."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Dewis cyfrwng arall i adfer ohono"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Software Manager"
-msgstr "Rheolwr Meddalwedd"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
-msgstr "Ail-gyflwyno"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD in place - continue."
-msgstr "CD yn ei le - ewch ymlaen"
+"%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."
-#: ../../common.pm:1
-#, c-format
-msgid "KB"
-msgstr "KB"
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
+msgstr "Bydd hyn yn cymryd amser i gynhyrchu'r allweddi"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:801
#, c-format
-msgid "Network & Internet"
-msgstr "Rhwydwaith a'r Rhyngrwyd"
+msgid "ERROR: Cannot spawn %s."
+msgstr "GWALL; methu taenu %s."
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lithuenaidd \"ffonetig\" QWERTY"
+msgid "No password prompt on %s at port %s"
+msgstr "Dim cais am gyfrinair ar %s ym mhorth %s"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup_.c:819
#, c-format
-msgid "Net Boot Images"
-msgstr "Delweddau Cychwyn y Rhwyd"
+msgid "Bad password on %s"
+msgstr "Cyfrinair gwallus yn %s"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "Sharing of local scanners"
-msgstr "Rhannu sganwyr lleol"
+msgid "Permission denied transferring %s to %s"
+msgstr "Gwrthodwyd caniatâd wrth drosglwyddo %s i %s"
-#: ../../Xconfig/monitor.pm:1
+#: ../../standalone/drakbackup_.c:821
#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "Methodd ymholiad Plug'nPlay. Dewiswch y dangosydd cywir"
+msgid "Can't find %s on %s"
+msgstr "Methu canfod %s ar %s"
-#: ../../../move/move.pm:1
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid "Detect again USB key"
-msgstr "Canfod allwedd USB eto"
+msgid "%s not responding"
+msgstr "Nid yw %s yn ymateb"
-#: ../../services.pm:1
+#: ../../standalone/drakbackup_.c:828
#, c-format
-msgid "Services and deamons"
-msgstr "Gwasanaethau a daemonau"
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+"Roedd y trosglwyddiad yn llwyddiannus\n"
+"Efallai'r hoffechi wirio eich bod yn medru mewngofnodi i'r gwasanaether "
+"gyda:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"heb dderbyn cais am gyfrinair"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Mae enw'r gwesteiwr pell ar goll!"
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
+msgstr "Mae safle pell WebDAV eisioes wedi cydamseru!"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "with /usr"
-msgstr "gyda /usr"
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
+msgstr "Method trosglwyddiad WebDaAV!"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Network"
-msgstr "Rhwydwaith"
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
+msgstr "Dim CDR/DVDR yn y gyrrwr!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
-"Awtoganfod argraffyddion sy'n gysylltiedig â pheiriannau'n rhedeg Microsoft "
-"Windows"
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
+msgstr "Nid yw'n ymddangos fel cyfrwng cofnodi."
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "Mae'r cyfrinair yn rhy syml"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
+msgstr "Nid cyfrwng dileuadwy!"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "Chkconfig yn ufudd i reolau msec"
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
+msgstr "Bydd yn cymryd ychydig o amser i ddileu'r cyfrwng."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "Slofacaidd (QWERTZ)"
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
+msgstr "Anhawsterau caniatâd wrth gael mynediad i'r CD."
-#: ../advertising/06-development.pl:1
+#: ../../standalone/drakbackup_.c:1060
#, 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."
-msgstr ""
-"Dydy newid a chreu mewn ieithoedd gwahanol megis Perl, Python, C and C++ "
-"erioed wedi bod mor hawdd diolch i GNU gcc 3 neu'r amgylcheddau datblygiadol "
-"Cod Agored gorau."
+msgid "No tape in %s!"
+msgstr "Dim tâp yn %s!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No devices found"
-msgstr "Heb ganfod dyfais"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
+msgstr "Ffeiliau system wrth gefn"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Gosodiad bychan iawn (yn arbennig dim urpmi)"
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+msgid "Hard Disk Backup files..."
+msgstr "Ffeiliau cadw wrth gefn y Disg Caled"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use daemon"
-msgstr "Defnyddiwch ddaemon"
+#: ../../standalone/drakbackup_.c:1236
+msgid "Backup User files..."
+msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn..."
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "Dilysu"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
+msgstr "Cynnydd Disg Caled wrth Gefn..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Ychwanegwch yr argraffydd hwn i Star Office/OpenOffice.org/GIMP"
+#: ../../standalone/drakbackup_.c:1290
+msgid "Backup Other files..."
+msgstr "Cadw wrth gefn ffeiliau eraill..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Gwasanaethwyr CUPS ychwanegol:"
+#: ../../standalone/drakbackup_.c:1296
+msgid "No changes to backup!"
+msgstr "Dim newid i'r ffeil wrth gefn"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, 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."
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-"Dewiswch un o'r argraffyddion sydd wedi eu awtoganfod o'r rhestr neu rhowch "
-"yr enw gwesteiwr neu IP a'r rhif porth dewisol (9100 yw'r rhagosodedig) i'r "
-"meysydd mewnbwn."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr "Lle'r ydych am osod %s?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "Algeria"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network"
-msgstr "Adfer drwy'r Rhwydwaith"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
-msgstr "Defnyddio tar abzip2 (yn lle tar a gzip)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "Maint intrd"
+"\n"
+"Gweithgaredd Drakbackup drwy %s:\n"
+"\n"
-#: ../../help.pm:1
+#: ../../standalone/drakbackup_.c:1319
#, 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."
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-"Mewn achos lle mae gwasanaethwyr eraill i'w cael i'ch cerdyn, gyda\n"
-"neu heb gyflymydd 3D, mae cynnig i chi ddewis y gwasanaethwr gorau\n"
-"ar eich cyfer."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tBydd Cadw wrth Gefn yn defnyddio tar a gzip\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set as default"
-msgstr "Gosod fel rhagosodedig"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on this machine"
-msgstr "Ffurfweddwyd ar y peiriant hwn"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Y ddwy fysell Control gyda'i gilydd"
-
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - dangos cymorth \n"
+"rhestr ffeil yrrwyd gan FTP: %s\n"
+" "
-#: ../../standalone.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1322
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"
+"\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
msgstr ""
-"[DEWIS]...\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"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Gosod yr Argraffydd Rhagosodedig"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Rhyngwyneb %s (gan ddefnyddio modiwl %s)"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Generating preview ..."
-msgstr "Cynhyrchu rhagolwg..."
+"\n"
+" Anhawster cysylltiad FTP: Nid oedd yn bosibl anfon eich ffeiliau wrth gefn "
+"drwy FTP.\n"
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1340
msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-"Dylai Frqu gael rhagosodiad k, M neu G (ee \"2.46G\" am donfedd 2.46 GHz ), "
-"neu ychwanegu '0' (sero)."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ignore"
-msgstr "anwybyddu"
+"\n"
+"Gweithgaredd Drakbackup drwy CD:\n"
+"\n"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1345
msgid ""
-"Allow/Forbid X connections:\n"
-"\n"
-"- ALL (all connections are allowed),\n"
"\n"
-"- LOCAL (only connection from local machine),\n"
+"Drakbackup activities via tape:\n"
"\n"
-"- NONE (no connection)."
msgstr ""
-"Caniatáu/Gwrthod cysylltiadau X.:\n"
"\n"
-"- ALL (caniatáu pob cysylltiad),\n"
+"Gweithgaredd Drakbackup drwy dâp:\n"
"\n"
-"- LOCAL (dim ond cysylltiadau lleol)\n"
-"- NONE (dim cysylltiadau)"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", dyfais amlbwrpas ar borth paralel #\"%s"
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "cyfresol"
+#: ../../standalone/drakbackup_.c:1354
+msgid " Error during mail sending. \n"
+msgstr " Gwall wrth anfon e-bost. \n"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
-msgstr "DVD-ROM"
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
+msgstr "Methu creu catalog!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgaidd (gosodiad \"Lladinaidd\")"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+msgid "File Selection"
+msgstr "Dewis ffeiliau"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
-msgstr "Estynnwch yr eitemau gorau gan bartneriaid strategol Mandrake Linux"
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
+msgstr "Dewiswch y ffeiliau neu gyfeiriaduron a chliciwch 'Ychwanegu'"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1573
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+"\n"
+"Please check all options that you need.\n"
msgstr ""
-"Medrwch ddarparu ddewisiadau i fodiwl %s.\n"
-"Sylwer: wrth greu unrhyw gyfeiriad bydd angen defnyddio rhagddodiad 0x, e.e. "
-"'0x123'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "Kenya"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Defnyddiwch \"Dad-osod\" yn gyntaf"
+"\n"
+"Gwiriwch pob dewis sydd angen arnoch.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing mtools packages..."
-msgstr "Gosod pecynnau mtools..."
+#: ../../standalone/drakbackup_.c:1574
+msgid ""
+"These options can backup and restore all files in your /etc directory.\n"
+msgstr ""
+"Mae'r dewisiadau hyn yn medru cadw wrth gefn ac adfer pob ffeil yn eich "
+"cyfeiriadur /etc.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a root partition"
-msgstr "Rhaid pennu rhaniad gwraidd"
+#: ../../standalone/drakbackup_.c:1575
+msgid "Backup your System files. (/etc directory)"
+msgstr "Cadw wrth gefn ffeiliau System. ( cyfeiriadur /etc )"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "first step creation"
-msgstr "creu'r cam cyntaf"
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
+msgstr "Cadw wrth gefn cynyddol (peidio disodli hen ffeiliau wrth gefn)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Y ddwy fysell Shift gyda'i gilydd"
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
+msgstr "Peidio cynnwys ffeiliau hanfodol (passwd, group, fstab)"
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1578
msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
msgstr ""
-" --id <id_label> - llwyth y dudalen cymorth html sy'n cyfeirio at "
-"id_label\n"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select a scanner model"
-msgstr "Dewiswch fodel sganiwr"
+"Gyda'e dewis hwn medrwch adfer unrhyw fersiwn\n"
+"o'ch cyfeiriadur /etc."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
-msgstr "Caniatâu/Gwrthod negeseuon gwall IPv4 ffug."
+#: ../../standalone/drakbackup_.c:1595
+msgid "Please check all users that you want to include in your backup."
+msgstr "Gwiriwch pob defnyddiwr rydych am eu cynnwys yn eich cadw wrth gefn."
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
+msgstr "Peidio cynnwys storfa'r porwr"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Ffurfweddiad Drakbackup"
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
+msgstr "Defnyddio Cadw wrth Gefn Cynyddol (peidio disodli hen gadw wrth gefn)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr "Cadw fel..."
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+msgid "Remove Selected"
+msgstr "Tynnu'r Dewis"
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr "Corea (Gogledd)"
+#: ../../standalone/drakbackup_.c:1679
+msgid "Windows (FAT32)"
+msgstr "Windows (FAT32)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Nid yw'r rhag wyneb hwn wedi ei ffurfweddu eto.\n"
-"Cychwynnwch y dewin ffurfweddi yn y brif ffenestr."
+#: ../../standalone/drakbackup_.c:1714
+msgid "Users"
+msgstr "Defnyddwyr"
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System configuration"
-msgstr "Ffurfweddu'r system"
+#: ../../standalone/drakbackup_.c:1740
+msgid "Use network connection to backup"
+msgstr "Defnyddiwch cysylltiad rhwydwaith i gadw wrth gefn"
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "Awtomewngofnodi"
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
+msgstr "Dull Rhwyd:"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin Password"
-msgstr "Cyfrinair Gweinyddol y Parth"
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
+msgstr "Defnyddiwch Expect ar gyfer SSH"
-#: ../advertising/05-desktop.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1747
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, ..."
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-"Gwnewch y cyfrifiadur yn addas i'ch anghenion diolch i'r 11 rhyngwyneb "
-"defnyddiwr Mandrake Linux y mae modd eu newid yn helaeth: KDE 3.1, Gnome "
-"2.2, WindowMaker, ..."
+"Creu/Trosglwyddo\n"
+"allweddi wrth gefn ar gyfer SSH"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer ..."
-msgstr "Ffurfweddu argraffydd ..."
-
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1748
msgid ""
-"To ensure data integrity after resizing the partition(s), \n"
-"filesystem checks will be run on your next boot into Windows(TM)"
+" Transfer \n"
+"Now"
msgstr ""
-"I siugrhau cywirdeb data'r rhaniad ar ôl ailfeintiol'r rhaniad(au),bydd \n"
-"gwiriadau'r system ffeiliau'n cael eu gwneud wrth i chi ail gychwyn Windows "
-"(TM)"
-
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "MB"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
-msgstr "os wedi ei osod i iawn, gwirio yn erbyn y gronfa ddata rpm."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr "Virgin Islands (British)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bermuda"
-msgstr "Bermuda"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
-msgstr "cliciwch yma os ydych yn siwr."
+"Trosglwyddo \n"
+"Nawr"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1749
msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-"Ni chanfyddwyd y ffeil ffurfweddu \n"
-"cliciwch Dewin neu Uwch."
+"Allweddi eraill (nid drakbackup)\n"
+"yn eu lle yn barod"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1753
+msgid "Please enter the host name or IP."
+msgstr "Rhowch enw'r gwesteiwr neu'r IP"
+
+#: ../../standalone/drakbackup_.c:1758
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."
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-"Dyma'r rhaniadau Linux sydd wedi canfod ar eich disg caled.\n"
-"Gallwch gadw'r dewisiadau sydd wedi eu gwneud gan y dewin, mae'n nhw'n iawn\n"
-"ar gyfer y rhan fwyaf o osodiadau. Os ydych am wneud newidiadau, rhaid i chi "
-"ol eiaf\n"
-"ddiffinio rhaniad gwraidd (\"/\"). Peidiwch dewis rhaniad sy'n rhy fach neu "
-"fyddwch\n"
-"yn methu llwytho digon o feddalwedd. Os hoffech gadw eich data ar raniad "
-"arall,\n"
-"bydd angen i chi greu rhaniad ar gyfer \"/home\"( ond dim ond os oes mwy nag "
-"un\n"
-"rhaniad Linux ar gael)\n"
-"Mae pob rhaniad yn cael ei restri fel hyn: \"Enw\", \"Maint\".\n"
-"\n"
-"Mae \"Enw\" yn cael ei drefnu: \"math o ddisg caled\", rhif y disg caled\",\n"
-"\"rhif rhaniad\" (e.e, \"hda1\").\n"
-"\n"
-"\"Math o ddisg caled\" yw \"hdos mai disg caled IDE sydd gennych a\n"
-"\"sd\" os mai SCSI yw'r disg caled.\n"
-"\n"
-"Mae \"Rhif Disg Caled\" yn llythyren ar ôl \"hd\" neu \"sd\". Ar gyfer\n"
-"disg caled IDE mae:\n"
-"\n"
-" * \"a\" yn golygu \"prif ddisg caled ar y rheolwr IDE cyntaf\",\n"
-"\n"
-" * \"b\" yn golygu \"disg caled gwas ar y rheolwr IDE cyntaf\",\n"
-"\n"
-" * \"c\" yn golygu \"prif ddisg caled ar yr ail reolwr IDE\",\n"
-"\n"
-" * \"d\" yn golygu \"disg caled gwas ar yr ail reolwr IDE\".\n"
-"\n"
-"Gyda disgiau caled SCSI, mae \"a\" yn golygu \"ID SCSI isaf \", a \"b\" yn "
-"golygu\n"
-"\"ID SCSI ail isaf\", ag ati."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Remove"
-msgstr "Tynnu"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr "utopia 25"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Peipio'r gwaith i orchymyn"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "Tynnu'r ffeil cylch-ôl?"
+"Rhowch y cyfeiriadur(neu fodiwl) i osod y cadw\n"
+"wrth gefn ar y gwesteiwr hwn."
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "Cote d'Ivoire"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "enw dyfais deinamig yn cael ei gynhyrchu gan incore kernel devfs"
+#: ../../standalone/drakbackup_.c:1763
+msgid "Please enter your login"
+msgstr "Rhowch eich mewngofnod"
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "Iawn"
+#: ../../standalone/drakbackup_.c:1768
+msgid "Please enter your password"
+msgstr "Rhowch eich cyfrinair"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Pa brotocol ydych chi eisiau ei ddefnyddio?"
+#: ../../standalone/drakbackup_.c:1774
+msgid "Remember this password"
+msgstr "Cofiwch y cyfrinair"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Progress"
-msgstr "Adfer Cynnydd"
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
+msgstr "Angen enw gwesteiwr, enw defnyddiwr a chyfrinair"
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
-msgstr "Estonia"
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
+msgstr "Defnyddiwch yr CD/DVDROM i gadw wrth gefn"
-#: ../../partition_table.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1882
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."
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-"Mae gennych dwll yn nhabl eich rhaniad ond nid wyf yn medru ei ddefnyddio\n"
-"Yr unig ateb yw i symud eich rhaniadau cynradd fel bo'r twll nesaf at y "
-"rhaniadau estynedig "
+"Dewiswch eich dyfais CD/DVD\n"
+"(Gwasgwch Enter i drosglwyddo'r gosodiadau i feysydd eraill.\n"
+"Nid yw'r maes hwn yn angenrheidiol, dim ond offeryn i lanw'r ffurflen.)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr "Dewis y gwesteiwr ddylai'r sganiwr lleol fod ar gael iddynt:"
+#: ../../standalone/drakbackup_.c:1887
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Dewiswch maint eich gofod CD/DVD"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Channel"
-msgstr "Sianel"
+#: ../../standalone/drakbackup_.c:1893
+msgid "Please check for multisession CD"
+msgstr "Gwiriwch os ydych yn defnyddio CD amlsesiwn"
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Add"
-msgstr "Ychwanegu"
+#: ../../standalone/drakbackup_.c:1899
+msgid "Please check if you are using CDRW media"
+msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr " Gwall wrth anfon e-bost. \n"
+#: ../../standalone/drakbackup_.c:1905
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Gwiriwch os ydych am ddileu eich cyfrwng RW(Sesiwn 1af)"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "Bysellfwrdd"
+#: ../../standalone/drakbackup_.c:1906
+msgid " Erase Now "
+msgstr "Dileu Nawr"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-"Rhowch yr CD gyda label cynnwys%s\n"
-"yn yr gyrrwr CD o dan bwynt gosod /mnt/cdrom"
+#: ../../standalone/drakbackup_.c:1912
+msgid "Please check if you are using a DVDR device"
+msgstr "Gwiriwch os ydych yn defnyddio dyfais DVDR"
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1918
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Gwiriwch os ydych yn defnyddio dyfais DVDRAM"
+
+#: ../../standalone/drakbackup_.c:1931
msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-"Dylai'r raddfa gael rhagosodiad K, M neu G (e.e.\"11M\" am 11M), neu "
-"ychwanegi '0' (sero)."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Dewiswch y math o gysylltiad rydych am ei ffurfweddu"
+"Rhowch enw dyfais eich Ysgrifennwr CD\n"
+"ex: 0,1,0"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Arhoswch, gosod lefel diogelwch..."
+#: ../../standalone/drakbackup_.c:1964
+msgid "No CD device defined!"
+msgstr "Heb ddiffinio dyfais CD!"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Ffurfweddu dyfais rhwydwaith %s"
+#: ../../standalone/drakbackup_.c:2012
+msgid "Use tape to backup"
+msgstr "Defnyddiwch dâp i gadw wrth gefn"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
-msgstr "gweithredu"
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
+msgstr "Rhowch enw dyfais i'w ddefnyddio ar gyfer cadw wrth gefn"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
+#: ../../standalone/drakbackup_.c:2021
+msgid "Please check if you want to use the non-rewinding device."
msgstr ""
-"Dewiswch ba ryngwyneb rhwydwaith i'w ddefnyddio ar gyfer y gwasanaethwr dhcp."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Canfod pecynnau i'w uwchraddio"
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
-msgstr "Pwynt gosod:"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
-msgstr "pob ffont"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid direct root login."
-msgstr "Caniatâu/Gwrthod mewngofnodi gwraidd uniongyrchol."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr "Caniatâu/Gwrthod darlledu atsain icmp."
+"Gwiriwch os ydych am ddefnyddio'r dyfais nad yw'n mynd nôl i'e ddechrau."
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
-msgstr "Gyda X"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Ffurfweddiad amlben"
+#: ../../standalone/drakbackup_.c:2027
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Gwiriwch os ydych am ddileu eich tâp cyn y cadw wrth gefn."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "No browser available! Please install one"
-msgstr "Dim porwr ar gael! Gosodwch un"
+#: ../../standalone/drakbackup_.c:2033
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Gwiriwch os ydych am dynnu eich tâp ar ôl y cadw wrth gefn."
-#: ../../Xconfig/main.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
msgstr ""
-"Cadw'r newid?\n"
-"Y ffurfweddiad presenol yw:\n"
-"\n"
-"%s"
+"Rhowch y maint mwyaf\n"
+"i'w ganiatáu ar gyfer Drakbackup"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Does dim modd defnyddio ReiserFS ar gyfer rhaniadau llai na 32MB"
+#: ../../standalone/drakbackup_.c:2103
+msgid "Please enter the directory to save to:"
+msgstr "Rhowch y cyfeiriadur i gadw iddo:"
-#: ../../services.pm:1
-#, 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)."
-msgstr ""
-"Mae'r protocol rwho'n caniatáu i ddefnyddwyr pell gael rhestr o'r \n"
-"holl ddefnyddwyr sydd wedi mewngofnodi ar beiriant sy'n rhedeg \n"
-"daemon rwho (yn debyg i fysedd)."
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+msgid "Use quota for backup files."
+msgstr "Defnyddiwch y cwota ar gyfer ffeiliau wrth gefn"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "Enw parth"
+#: ../../standalone/drakbackup_.c:2180
+msgid "Network"
+msgstr "Rhwydwaith"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Rhannu argraffyddion lleol"
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
+msgstr "CDROM / DVDROM"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
-msgstr "Galluogi/Analluogi libsafe os yw ar y system."
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
+msgstr "Disg Caled / NFS"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Available printers"
-msgstr "Argraffyddion ar gael"
+#: ../../standalone/drakbackup_.c:2195
+msgid "Tape"
+msgstr "Tâp"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "NO"
-msgstr "NA"
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
+msgstr "bob awr"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "Gwag"
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
+msgstr "bob dydd"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
-msgstr "lled testun"
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
+msgstr "bob wythnos"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Lle'r ydych am osod dyfais %s?"
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
+msgstr "bob mis"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Les rhagosodedig (mewn eiliadau)"
+#: ../../standalone/drakbackup_.c:2229
+msgid "Use daemon"
+msgstr "Defnyddiwch ddaemon"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2234
msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
+"Please choose the time \n"
+"interval between each backup"
msgstr ""
-"Rydym yn awr yn mynd i ffurfweddu cysylltiad %s.\n"
-"\n"
-"\n"
-"Pwyswch \"%s\" i barhau."
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Rhyngwyneb \"%s\""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Gyda dogfennaeth elfennol (argymhellir!)"
+"Dewiswch faint o amser\n"
+"fydd rhwng pob cadw wrth gefn"
-#: ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr "1 botwm"
+#: ../../standalone/drakbackup_.c:2240
+msgid ""
+"Please choose the\n"
+"media for backup."
+msgstr ""
+"Dewiswch y cyfrwng ar\n"
+"gyfer cadw wrth gefn..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2247
msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
"\n"
-"There are %d unknown printers directly connected to your system"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
+"Gwnewch yn siwr bod daemon cron yn cael ei gynnwys yn eich gwasanaethau. \n"
"\n"
-"Mae yna %d argraffydd anhysbys wedi eu cysylltu'n uniongyrchol â'ch system"
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Test"
-msgstr "Prawf"
+"Sylwer bod yr holl gyfrwn \"gwe\" yn defnyddio'r ddisg caled."
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea"
-msgstr "Corea"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
+msgstr "Anfonwch adroddiad e-bost wedi pob cadw wrth gefn i :"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Eich dewis? (rhagosodedig `%s'%s) "
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr "Dileu ffeiliau tar y Disg Caled wedi cadw cyfrwng arall wrth gefn."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer"
-msgstr "Argraffydd bras"
+#: ../../standalone/drakbackup_.c:2324
+msgid "What"
+msgstr "Beth"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "enw swyddogol gwerthwr y cpu"
+#: ../../standalone/drakbackup_.c:2329
+msgid "Where"
+msgstr "Lle"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
-msgstr "Diwerth heb Wasanaethwr Terfynell"
+#: ../../standalone/drakbackup_.c:2334
+msgid "When"
+msgstr "Pryd"
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Vendor"
-msgstr "Gwerthwr"
+#: ../../standalone/drakbackup_.c:2339
+msgid "More Options"
+msgstr "Dewisiadau Eraill"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s"
-msgstr "Rhagwyneb %s"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+msgid "Drakbackup Configuration"
+msgstr "Ffurfweddiad Drakbackup"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "Ffurfweddu llygoden"
+#: ../../standalone/drakbackup_.c:2376
+msgid "Please choose where you want to backup"
+msgstr "Dewiswch i le rydych am gadw ffeiliau wrth gefn"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
-msgstr "Dewiswch y pwyntiau gosod"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
+msgstr "ar Ddisg Caled"
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr "Iawn"
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
+msgstr "ar draws Rhwydwaith"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "Iwgoslafaidd (lladin)"
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
+msgstr "ar CDROM"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "Gosod"
+#: ../../standalone/drakbackup_.c:2406
+msgid "on Tape Device"
+msgstr "ar Ddyfais Tâp"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan gydag efelychiad Olwyn"
+#: ../../standalone/drakbackup_.c:2449
+msgid "Please choose what you want to backup"
+msgstr "Dewiswch beth rydych am ei gadw wrth gefn"
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
-msgstr "Cychwyn userdrake"
+#: ../../standalone/drakbackup_.c:2450
+msgid "Backup system"
+msgstr "System cadw wrth gefn"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Gosod neu ddiweddaru?"
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
+msgstr "Defnyddwyr Cadw wrth Gwfn"
-#: ../../help.pm:1
-#, c-format
-msgid "ISDN card"
-msgstr "Cerdyn ISDN"
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
+msgstr "Dewis defnyddwyr gyda llaw"
-#: ../advertising/02-community.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2537
msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
+"\n"
+"Backup Sources: \n"
msgstr ""
-"Dewch i adnabod y gymuned Cod Agored a dewch yn aelod. Dysgwch, addysgwch a "
-"chynorthwywch eraill drwy ymuno yn y grwpiau trafod niferus sydd i'w cael yn "
-"ein tudalennau gwe \"Cymuned\""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-Disg Caled.\n"
+"\n"
+"Ffynhonell Cadw wrth Gefn:\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2538
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"
+"- System Files:\n"
+msgstr ""
"\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"
+"- Ffeiliau System: \n"
+
+#: ../../standalone/drakbackup_.c:2540
+msgid ""
"\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."
+"- User Files:\n"
msgstr ""
-"Mae'r cam hwn yn cael ei weithredu os oes hen raniad GNU/Linux wedi\n"
-"ei ganfod ar y cyfrifiadur.\n"
"\n"
-"Bydd DrakX angen gwybod a ydych am osod o'r newydd neu uwchraddio\n"
-"system Mandrake Linux presennol.\n"
+"- Ffeiliau Defnyddiwr:\n"
+
+#: ../../standalone/drakbackup_.c:2542
+msgid ""
"\n"
-" *\"%s\" Ar y cyfan, mae hwn yn tynnu'r hen system gyfan oddi ar eich\n"
-"cyfrifiadur. Os ydych am newid rhaniadau eich disgiau caled, neu newid y\n"
-"system ffeil, dylech ddewis hwn. Er hynny, yn ddibynnol ar eich trefn\n"
-"rhannu, mae modd atal peth o'ch data rhag cael ei ysgrifennu drosto gan\n"
-"y gosodiad newydd.\n"
-" *\"%s\": mae'r dosbarth gosod hwn yn caniatáu i chi ddiweddaru'r\n"
-"pecynnau sydd wedi eu gosod ar eich system Mandrake Linux. Bydd eich\n"
-"rhaniadau presenol a'ch data personol yn cael eu cadw. Bydd y rhan fwyaf\n"
-"o'r camau ffurfweddu ar gael fel gyda'r gosod arferol.\n"
+"- Other Files:\n"
+msgstr ""
"\n"
-"Dylai defnyddio \"Diweddaru\" weithio'n iawn ar systemau Mandrake Linux\n"
-"sy'n rhedeg systemau \"8.1\" neu'n ddiweddarach. Nid yw uwchraddio\n"
-"fersiynau cyn Mandrake Linux \"8.1\" yn cael ei gymeradwyo."
+"- Ffeiliau Eraill: \n"
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakbackup_.c:2544
#, 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"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
-" Hawlfraint (C) 2001-2002 MandrakeSoft \n"
-" DUPONT Sebastien sdupont(fersiwn wreiddiol)\n"
-" CHAUMETTE Damien<dchaumette@mandrakesoft.com\n"
-"\n"
-"Mae'r rhaglen hon yn feddalwedd rhydd; medrwch ei ailddosbarthu\n"
-"a/neu ei newid o dan amodau Trwydded Gyhoeddus Gyffredinol GNU\n"
-"fel sydd wedi ei gyhoeddi gan y Free Software Foundation; un ai fersiwn\n"
-"2 neu (yn ôl eich dewis) unrhyw fersiwn diweddarach.\n"
+"Cadw ar Ddisg caled ar lwybr: %s\n"
+
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
"\n"
-" Mae'r rhaglen yn cael ei ddosbarthu yn y gobaith y bydd yn ddefnyddiol,\n"
-" ond HEB UNRHYW WARANT; heb hyd yn oed awgrym o warant o\n"
-" FASNACHEIDDRWYDD nag ADDASRWYDD AR GYFER PWRPAS\n"
-" PENODOL. Gweler Trwydded Gyhoeddus Gyffredinol GNU am fwy o\n"
-" wybodaeth.\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
"\n"
-" Dylech fod wedi derbyn copi o Drwydded Gyhoeddus Gyffredinol GNU\n"
-" gyda'r rhaglen; os nad, ysgrifennwch at:\n"
-" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n"
-"MA 02111-1307, USA\n"
-" Diolch:\n"
-" - pfm2afm: \n"
-"\t gan Ken Borgendale:\n"
-"\t Trosi ffeil .pfm Windows i .afm (Adobe Font Metrics)\n"
-" - type1inst:\n"
-"\t bganJames Macnicol: \n"
-"\t type1inst cynhyrchu files fonts.dir fonts.scale a Fontmap.\n"
-" - ttf2pt1: \n"
-"\t gan Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Trosi ffeiliau ffont i ffontiau afm pfb\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Argraffydd ar wasanaethwr CUPS pell"
+"- Dileu ffeiliau tar y disg caled wedi'r cadw wrth gefn.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2553
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
-msgstr "Methwyd â thynnu argraffydd \"%s\" o Star Office/OpenOffice.org/GIMP."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
-msgstr "yma os nad."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DHCP host name"
-msgstr "Enw gwesteiwr DHCP"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Les fwyaf (mewn eiliadau)"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Dewiswch ba borth cyfresol mae eich llygoden wedi cysylltu iddi"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
-msgstr "A weithiodd hwnnw'n iawn?"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
-msgstr "Gosodwch y system ffeiliau fel darllen yn unig."
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "Gwael"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result by mail"
-msgstr "Adrodd y gwirio drwy e-bost"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
-msgstr "Grenada"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
-msgstr "Amrediad cychwyn DHCP"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "Anniogel"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "SSH server"
-msgstr "Gwasanaethwr SSH"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sector"
-
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "Na"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Kannada"
-msgstr "Kannada"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
-msgstr "methu canfod unrhyw ffontiau.\n"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Ydych chi eisiau i'r Backspace ddychwelyd Dileu yn y consol?"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Graddfa adfywio fertigol"
-
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Cychwyn cam '%s\"\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niger"
-msgstr "Niger"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing %s ..."
-msgstr "Tynnu %s..."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No printer"
-msgstr "Nid oes argraffydd"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "alert configuration"
-msgstr "ffurfweddiad rhybudd"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "Dewisiadau Argraffydd NetWare"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "%s BootSplash (%s) preview"
-msgstr "%s Rhagolwg Croeso Cychwyn (%s)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "February"
-msgstr "Chwefror"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
-msgstr "Cyffredinol"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
-msgstr "/etc/issue* yn bodoli"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "Ychwanegu defnyddiwr"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Ffurfweddiad y rhwydwaith (%d addasydd)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "April"
-msgstr "Ebrill"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Deactivate now"
-msgstr "Dad weithredu nawr"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Mae pecyn gorfodol %s ar goll"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Philippines"
+"\n"
+"- Burn to CD"
+msgstr ""
+"\n"
+"-Llosgi i CD"
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "Iawn"
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
+msgstr "RW"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup_.c:2555
#, c-format
-msgid "drakTermServ Overview"
-msgstr "Trosolwg drakTermServ"
+msgid " on device: %s"
+msgstr "ar ddyfais: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
-msgstr "Enw Rhes Argraffu"
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
+msgstr "(aml-sesiwn)"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:2557
#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Ydych chi eisiau defnyddio aboot?"
+msgid ""
+"\n"
+"- Save to Tape on device: %s"
+msgstr ""
+"\n"
+"- Cadw i dâp ar ddyfais: %s"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "Belarusian"
-msgstr "Belarusaidd"
+msgid "\t\tErase=%s"
+msgstr "\t\tDileu=%s"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2561
#, c-format
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"\n"
+"- Save via %s on host: %s\n"
msgstr ""
-"Mae PDQ yn cynnal argraffyddion lleol, LDP pell, a Socket/TCP, yn unig.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move files to the new partition"
-msgstr "Symud ffeiliau i'r rhaniad newydd"
+"\n"
+"- Cadw drwy %s ar westeiwr: %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2562
#, 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."
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
msgstr ""
-"Ychwanegwch y gwasanaethwyr CUPS yr argraffwyr rydych am eu defnyddio. Bydd "
-"angen gwneud hyn dim ond os nad yw'r gwasanaethwyr yn darlledu eu gwybodaeth "
-"argraffu i'r rhwydwaith lleol."
+"\t\t enw defnyddiwr:%s\n"
+"\t\t ar lwybr: %s \n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2563
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."
+"- Options:\n"
msgstr ""
"\n"
-"Croeso i'r Dewin Gosod Argraffydd\n"
-"\n"
-"Bydd y dewin yn eich cynorthwyo i osod argraffydd(ion) sydd wedi eu cysylltu "
-"â'r cyfrifiadur hwn,\n"
-"\n"
-"Os oes gennych argraffydd(ion) yn gysylltiedig â'r peiriant, cysylltwch nhw "
-"â'r peiriant a'u troi nhw mlaen fel bod modd awtoganfod.\n"
-"\n"
-"Cliciwch \"Nesaf\" pan ydych yn barod, a \"Diddymu\" os nad ydych am osod "
-"eich argraffydd(ion) ar hyn o bryd."
+"-Dewisiadau:\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
-msgstr "Pitcairn"
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
+msgstr "\tPeidiwch cynnwys Ffeiliau System\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Adfer o'r Catalog"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
+msgstr "\t Bydd Cadw wrth gefn yn defnyddio tar a bzip2\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "IDE"
-msgstr "IDE"
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
+msgstr "\tBydd Cadw wrth Gefn yn defnyddio tar a gzip\n"
-#: ../../fs.pm:1
+#: ../../standalone/drakbackup_.c:2572
#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "methodd gosod rhaniad %s yng nghyfeiriadur %s"
+msgid ""
+"\n"
+"- Daemon (%s) include:\n"
+msgstr ""
+"\n"
+"- Daemon (%s) i gynnwys :\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
-msgstr "Sgrîn Lilo"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
+msgstr "\t-Disg Caled.\n"
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "Lilo gyda dewislen graffigol"
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
+msgstr "\t-CDROM.\n"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "Amcangyfrif"
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
+msgstr "\t-Tâp \n"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
-msgstr "Does dim mod dad-ddewis y pecyn, mae wedi ei osod yn barod"
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
+msgstr "\t-Rhwydwaith drwy FTP.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", argraffydd \"%s\" ar wasanaethwr SMB/Windows \"%s\""
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
+msgstr "\t-Rhwydwaith drwy SSH.\n"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "Mynd yn ein blaen beth bynnag?"
+#: ../../standalone/drakbackup_.c:2578
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Rhwydwaith drwy rsync.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr ""
-"Chwilio am y pecynnau sydd ar gael ac yn ailadeiladu cronfa ddata rpm..."
+#: ../../standalone/drakbackup_.c:2579
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Rhwydwaith drwy webday.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
+msgstr "Dim ffurfweddiad, cliciwch Dewin neu Uwch.\n"
+
+#: ../../standalone/drakbackup_.c:2587
msgid ""
+"List of data to restore:\n"
"\n"
-" DrakBackup Report \n"
msgstr ""
+"Rhestr o ddata i'w adfer:\n"
"\n"
-" Adroddiad DrakBackup \n"
-"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Nid yw'n ymddangos fel cyfrwng cofnodi."
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "Enwi dewisiadau"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "New user list:\n"
-msgstr "Rhestr defnyddiwr newydd:\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Rhaid rhoi un ai enw'r gwasanaethwr neu IP'r gwasanaethwr!"
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2754
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"
+"List of data corrupted:\n"
"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
msgstr ""
-"Mae disg cychwyn yn darparu ffordd o gychwyn eich system Linux heb ddibynnu\n"
-"ar lwythwr cychwyn arferol. Mae hyn yn ddefnyddiol os ydych am osod SILO ar\n"
-"eich system, neu mae system weithredu arall wedi tynny SILO, neu nad yw "
-"SILO'n\n"
-"gweithio gyda eich ffurfweddiad caledwedd chi. Mae modd defnyddio disg "
-"cychwyn\n"
-" unigol hefyd gyda delwedd achub Mandrake, gan ei gwneud yn llawer haws "
-"adfer o\n"
-" fethiannau systemig sylweddol\n"
+"Rhestr o ddata llwgr:\n"
"\n"
-"Os hoffech greu disg cychwyn ar gyfer eich system, rhowch ddisg meddal yn y "
-"gyrrwr\n"
-" cyntaf a chliciwch \"Iawn\"."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Nid oes modd defnyddio Cyfrol Resymegol LVM ar gyfer pwynt gosod %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password history length to prevent password reuse."
-msgstr "Gosod hyd hanes cyfrinair i rwystro ailddefnyddio'r cyfrinair."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
-msgstr "Ynys Norfolk"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Theme installation failed!"
-msgstr "Methodd gosod y thema!"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
-msgstr "Dim i'w wneud"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "Defnyddiwch ar gyfer cylchol"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr "Offeryn Adrodd Gwall Mandrake"
+#: ../../standalone/drakbackup_.c:2756
+msgid "Please uncheck or remove it on next time."
+msgstr "Dad-diciwch hwn neu ei dynnu'r tro nesaf."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
-msgstr "Gosod Hidl"
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
+msgstr "Mae'r ffeiliau wrth gefn wedi eu llygru"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pppoe"
-msgstr "defnyddiwch pppoe"
+#: ../../standalone/drakbackup_.c:2787
+msgid " All of your selected data have been "
+msgstr " Mae eich dewis data wedi ei "
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "Moving files to the new partition"
-msgstr "Symud ffeiliau i'r rhaniad newydd"
+msgid " Successfuly Restored on %s "
+msgstr " Ei adfer yn Llwyddiannus ar %s "
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s gyda chyflymu caledwedd 3D ARBROFOL"
+#: ../../standalone/drakbackup_.c:2906
+msgid " Restore Configuration "
+msgstr " Adfer y Furfweddiad"
-#: ../../help.pm:1 ../../interactive.pm:1
-#, c-format
-msgid "Advanced"
-msgstr "Uwch"
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
+msgstr "Iawn i adfer ffeiliau eraill"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer"
-msgstr "Trosglwyddo"
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
+msgstr ""
+"Rhestr defnyddwyr i'w adfer ( dim ond y diweddaraf yn ôl y defnyddwyr, sy'n "
+"bwysig )"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Swedaidd)"
+#: ../../standalone/drakbackup_.c:3019
+msgid "Backup the system files before:"
+msgstr "Cadw'r ffeiliau system wrth gefn cyn:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Afghanistan"
-msgstr "Afghanistan"
+#: ../../standalone/drakbackup_.c:3021
+msgid "please choose the date to restore"
+msgstr "dewiswch y data i'w adfer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "More Options"
-msgstr "Dewisiadau Eraill"
+#: ../../standalone/drakbackup_.c:3057
+msgid "Use Hard Disk to backup"
+msgstr "Defnyddiwch y Ddisg Caled ar gyfer cadw wrth gefn"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr "Dileu ffeiliau tar y Disg Caled wedi cadw cyfrwng arall wrth gefn."
+#: ../../standalone/drakbackup_.c:3060
+msgid "Please enter the directory to save:"
+msgstr "Rhowch y cyfeiriadur i gadw iddo:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "Burundi"
+#: ../../standalone/drakbackup_.c:3103
+msgid "FTP Connection"
+msgstr "Cysylltiad FTP"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"Mae cron yn rhaglen safonnol yn UNIX sy'n rhedeg rhaglenni sydd wedi eu \n"
-"pennu gan y defnyddiwr ar adegau penodol. Mae vixie cron yn ychwanegu \n"
-"nifer o ychwanegiadau i'r UNIX cron sylfaenol, yn cynnwys gwell diogelwch \n"
-"a dewisiadau ffurfweddu mwy pwerus."
+#: ../../standalone/drakbackup_.c:3110
+msgid "Secure Connection"
+msgstr "Cysylltiad Diogel"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr "Ychwanegu Cleient -->"
+#: ../../standalone/drakbackup_.c:3134
+msgid "Restore from Hard Disk."
+msgstr "Adfer o'r Ddisg Caled."
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "Darllenwch yn ofalus!"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
+msgstr "Rhowch y cyfeiriadur lle mae'r ffeiliau wrth gefn yn cael eu cadw"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
-msgstr "RW"
+#: ../../standalone/drakbackup_.c:3204
+msgid "Select another media to restore from"
+msgstr "Dewis cyfrwng arall i adfer ohono"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr "Rhowch eich safon teledu a gwlad"
+#: ../../standalone/drakbackup_.c:3206
+msgid "Other Media"
+msgstr "Cyfrwng Arall"
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "Porth"
+#: ../../standalone/drakbackup_.c:3211
+msgid "Restore system"
+msgstr "Adfer y system"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
-msgstr "Na (arbenigwyr yn unig)"
+#: ../../standalone/drakbackup_.c:3212
+msgid "Restore Users"
+msgstr "Adfer Defnyddwyr"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-msgstr "Heb ddewis cnewyllyn"
+#: ../../standalone/drakbackup_.c:3213
+msgid "Restore Other"
+msgstr "Adfer Arall"
-#. -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
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Gwasgwch Enter i gychwyn y system weithredu, 'g' i olygu'r"
+#: ../../standalone/drakbackup_.c:3215
+msgid "select path to restore (instead of /)"
+msgstr "dewis llwybr arall i adfer ( yn lle / )"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
+msgstr ""
+"Gwnewch cadw wrth gefn newydd cyn adfer ( ar gyfer cadw wrth gefn cynyddol "
+"yn unig )"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The encryption keys do not match"
-msgstr "Nid yw'r allweddi amgryptio'n cyd-fynd"
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
+msgstr "Tynnu cyfeiriaduron defnyddiwr cyn adfer."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3334
msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-"Ar gyfer CD aml sesiwn, dim ond y sesiwn gyntaf fydd yn dileu'r cdrw. Fel "
-"arall bydd y cdrw yn cael ei ddileu cyn pob cadw."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "USB printer"
-msgstr "argraffydd USB"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Bysell \"Windows\" de"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr "os wedi ei osod i iawn, gwirio cyfrinair gwag y /etc/shadow."
+"Adfer Cofnod\n"
+"Catalog Ddewiswyd"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3344
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."
+"Restore Selected\n"
+"Files"
msgstr ""
-"Cyn parhau dylech ddarllen amodau'r drwydded yn ofalus. Mae'n ymwneud\n"
-"â holl ddosbarthiad Mandrake Linux. Os ydych yn cytuno â'r holl amodau,\n"
-"cliciwch blwch \"%s\". Os nad, ddiffoddwch eich cyfrifiadur."
+"Adfer y Dewis\n"
+"Ffeiliau"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3361
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
+"Change\n"
+"Restore Path"
msgstr ""
-"Dyma restr o'r dewisiadau argraffu sydd ar gael ar gyfer yr argraffydd "
-"presennol:\n"
-"\n"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "Cydraniadau"
+"Newid\n"
+"Llwybr Adfer"
-#: ../../network/drakfirewall.pm:1
+#: ../../standalone/drakbackup_.c:3427
#, 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."
-msgstr ""
-"ffurfweddiadur drakfirewall\n"
-"\n"
-"Mae hwn yn ffurfweddu mur gwarchod personol ar gyfer y peiriant \n"
-"Mandrake Linux hwn. Am fur gwarchod pwrpasol pwerus, \n"
-"edrychwch ddosbarthiad arbennigol MandrakeSecurity Firewall."
+msgid "Backup files not found at %s."
+msgstr "Heb ganfod y ffeiliau wrth gefn yn %s."
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../standalone/drakbackup_.c:3440
#, c-format
msgid ""
-"Please enter your username, password and domain name to access this host."
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-"Rhowch eich enw defnyddiwr, cyfrinair ac enw parth i gael mynediad i'r "
-"gwesteiwr."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Remove selected host"
-msgstr "Tynnu'r gwesteiwr"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network configuration"
-msgstr "Ffurfweddiad y rhwydwaith"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Awtoganfod_gyrrwr jaz"
+"Rhowch yr CD gyda label cynnwys%s\n"
+"yn yr gyrrwr CD o dan bwynt gosod /mnt/cdrom"
-#: ../../any.pm:1
-#, c-format
-msgid "No sharing"
-msgstr "Peidio rhannu"
+#: ../../standalone/drakbackup_.c:3440
+msgid "Restore From CD"
+msgstr "Adfer o'r CD"
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakbackup_.c:3442
#, c-format
-msgid "Move selected rule down one level"
-msgstr "Symud y rheol i lawr un lefel"
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr "Nid yr label CD cywir. Disg wedi ei labelu %s."
-#: ../../common.pm:1
+#: ../../standalone/drakbackup_.c:3452
#, c-format
-msgid "TB"
-msgstr "TB"
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+"Rhowch y tâp gyda label cynnwys%s\n"
+"yn yr gyrrwr tâp %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "FATAL"
-msgstr "TERFYNOL"
+#: ../../standalone/drakbackup_.c:3452
+msgid "Restore From Tape"
+msgstr "Adfer o Dâp"
-#: ../../standalone/printerdrake:1
+#: ../../standalone/drakbackup_.c:3454
#, c-format
-msgid "Refresh the list"
-msgstr "Adnewyddu'r rhestr"
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr "Nid yr label tâp cywir. Tâp wedi ei labelu %s."
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Cleient Unigol %s:\n"
-" \t\tDrwy clusternfs, mae modd i bob cleient gael ei ffeiliau "
-"ffurfweddiad ei hun\n"
-" \t\tar system ffeiliau gwraidd y gwasanaethwr. Drwy ganiatau "
-"ffurfweddiad caledwedd cleient,\n"
-" \t\tbydd drakTermServ yn cynorthwyo i greu'r ffeiliau hyn."
+#: ../../standalone/drakbackup_.c:3474
+msgid "Restore Via Network"
+msgstr "Adfer drwy'r Rhwydwaith"
-#: ../../standalone/drakpxe:1
+#: ../../standalone/drakbackup_.c:3474
#, 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"
-msgstr ""
-"Mae'r gwasanaethwr DHCP yn caniatáu i gyfrifiaduron eraill gychwyn drwy "
-"ddefnyddio PXE ar ystod\n"
-"penodol o gyfeiriadau\n"
-"Y cyfeiriad rhwydwaith yw %s gan ddefnyddio netmask o %s\n"
-"\n"
+msgid "Restore Via Network Protocol: %s"
+msgstr "Adfer drwy Protocol Rhwydwaith: %s"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete"
-msgstr "Dileu"
+#: ../../standalone/drakbackup_.c:3475
+msgid "Host Name"
+msgstr "Enw Gwesteiwr"
-#: ../../Xconfig/various.pm:1
-#, 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?"
-msgstr ""
-"Hoffwn osod eich cyfrifiadur i gychwyn X yn awtomatig ar ôl cychwyn\n"
-"Hoffech chi i XFree ddechrau wedi i chi ail-gychwyn?"
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
+msgstr "Llwybr Gwesteiwr neu Fodwil "
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
-msgstr "Adeiladu'r ddisg"
+#: ../../standalone/drakbackup_.c:3483
+msgid "Password required"
+msgstr "Mae angen cyfrinair"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnect %s"
-msgstr "Datgysylltu %s"
+#: ../../standalone/drakbackup_.c:3489
+msgid "Username required"
+msgstr "Mae angen enw defnyddiwr"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
-msgstr "Statws"
+#: ../../standalone/drakbackup_.c:3492
+msgid "Hostname required"
+msgstr "Mae angen enw gwesteiwr"
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "Dirprwy HTTP"
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
+msgstr "Llwybr neu Fodiwl angenrheidiol"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "SSH Server"
-msgstr "Gwasanaethwr SSH"
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
+msgstr "Adferwyd ffeiliau..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-Rhwydwaith drwy rsync.\n"
+#: ../../standalone/drakbackup_.c:3513
+msgid "Restore Failed..."
+msgstr "Methodd Adfer..."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
-msgstr "Protocol Ewropeaidd"
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
+msgstr "Adfer pob cadw wrth gefn"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", argraffydd \"%s\" ar wasanaethwr \"%s\""
+#: ../../standalone/drakbackup_.c:3760
+msgid "Custom Restore"
+msgstr "Adfer Dewisol"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
-msgstr "Sylwer bod yr holl gyfrwng 'gwe' yn defnyddio'r ddisg caled."
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
+msgstr "CD yn ei le - ewch ymlaen"
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
-#, c-format
-msgid "Error"
-msgstr "Gwall"
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
+msgstr "Pori i'r ystorfa newydd adferwyd"
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
-msgstr "caniatáu \"su\""
+#: ../../standalone/drakbackup_.c:3813
+msgid "Restore From Catalog"
+msgstr "Adfer o'r Catalog"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Australia"
-msgstr "Awstralia"
+#: ../../standalone/drakbackup_.c:3841
+msgid "Restore Progress"
+msgstr "Adfer Cynnydd"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "arhoswch yn ystod ttmkfdir..."
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+msgid "Previous"
+msgstr "Cynt"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Ffurfweddu cerdyn \"%s\" %s yn unig"
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+msgid "Save"
+msgstr "Gorffen"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Level"
-msgstr "Lefel"
+#: ../../standalone/drakbackup_.c:3946
+msgid "Build Backup"
+msgstr "Adeiladu Cadw wrth Gefn"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Change the printing system"
-msgstr "Newidiwch y system argraffu"
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+msgid "Restore"
+msgstr "Adfer"
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4189
msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
msgstr ""
-"Mae eich system yn cynnal ffurfweddiad amlben.\n"
-"Beth hoffech ei wneud?"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr "maethodd y gosodiad"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "Ffurfweddu gwasanaethau"
+"Gwall wrth ddefnyddio sendmail\n"
+" chafodd eich adroddiad e-bost mo'i anfon\n"
+" Ffurfweddwch eich sendmail"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Cyfeiriad Darlledu:"
+#: ../../standalone/drakbackup_.c:4195
+msgid ""
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
+msgstr ""
+"Gwall wrth anfon ffeil drwy FTP.\n"
+" Cywirwch eich ffurfweddiad FTP."
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4209
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."
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
msgstr ""
-"mae angen i'r cnewyllyn GNU/Linux gyflawni cyfrif cylch wrth gychwyn i "
-"gychwyn y cyfrif amser. Mae'r canlyniad yn cael ei gadw fel bogomips fel "
-"ffordd o \"feincnod\" y cpu."
+"Mae'r pecynnau canlynol i'w gosod:\n"
+" @list_of_rpm_to_install"
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "Delwedd"
+#: ../../standalone/drakbackup_.c:4232
+msgid "Please select data to restore..."
+msgstr "Dewiswch y data i'w adfer..."
-#: ../../services.pm:1
-#, c-format
-msgid "Remote Administration"
-msgstr "Gweinyddu Pell"
+#: ../../standalone/drakbackup_.c:4267
+msgid "Please select media for backup..."
+msgstr "Dewiswch y cyfrwng ar gyfer cadw wrth gefn..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-msgstr ""
-"Wedi methu ag ychwanegu argraffydd \"%s\" i Star Office/OpenOffice.org/GIMP."
+#: ../../standalone/drakbackup_.c:4275
+msgid "Please select data to backup..."
+msgstr "Dewiswch y data i'w gadw wrth gefn..."
-#: ../../modules.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-"Nid oes cefnogaeth PCIMA yn bodoli bellach ar gyfer cnewyllyn 2.2. "
-"Defnyddiwch gnewyllyn 2.4"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Selected All"
-msgstr "Dewis Popeth"
+"Ni chanfyddwyd y ffeil ffurfweddu \n"
+"cliciwch Dewin neu Uwch."
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
+msgstr "O dan ddatblygiad...arhoswch."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Webmin Service"
-msgstr "Gwasanaethau Webmin"
+#: ../../standalone/drakbackup_.c:4382
+msgid "Backup system files"
+msgstr "Ffeiliau System Cadw wrth Gefn"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
-msgstr "dyfais"
+#: ../../standalone/drakbackup_.c:4384
+msgid "Backup user files"
+msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Rhowch y cyfeiriadur i gadw iddo:"
+#: ../../standalone/drakbackup_.c:4386
+msgid "Backup other files"
+msgstr "Cadw'r ffeiliau eraill wrth gefn"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
-msgstr "Groeg"
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
+msgstr "Cyfanswm Cynydd"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "Popeth"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
+msgstr "anfon ffeil drwy FTP"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Pa system argraffu(sbwlydd) ydych chi am ei ddefnyddio?"
+#: ../../standalone/drakbackup_.c:4416
+msgid "Sending files..."
+msgstr "Anfon ffeiliau..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
-msgstr "Gorffennaf"
+#: ../../standalone/drakbackup_.c:4500
+msgid "Backup Now from configuration file"
+msgstr "Cadwch wrth Gefn eich ffeiliau ffurfweddu"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Prints into %s"
-msgstr "Argraffu i %s"
+#: ../../standalone/drakbackup_.c:4505
+msgid "View Backup Configuration."
+msgstr "Edrych ar Ffurfweddiad Cadw wrth Gefn"
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "Digwyddodd gwall"
+#: ../../standalone/drakbackup_.c:4526
+msgid "Wizard Configuration"
+msgstr "Ffurfweddiad y Dewin"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Rhaid i'r pecyn gael ei uwchraddio\n"
-"Ydych chi'n siwr eich bod am ei ddad-ddewis?"
+#: ../../standalone/drakbackup_.c:4531
+msgid "Advanced Configuration"
+msgstr "Ffurfweddiad Uwch"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "Tamil (cynllun teipiadur)"
+#: ../../standalone/drakbackup_.c:4536
+msgid "Backup Now"
+msgstr "Cadw wrth Gefn Nawr"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
-msgstr "Defnyddio cyfrinair i wirio defnyddwyr."
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
+msgstr "Drakbackup"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4624
msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
+"options description:\n"
+"\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
msgstr ""
-"Caniatáu/Gwrthod rhestr defnyddwyr ar y system ar reolwyr arddangos (kdm and "
-"gdm)."
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
-msgstr "llaw"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
-msgstr "Testun enw ffeil i chwilio amdano:"
+"disgrifiad o'r dewisiadau:\n"
+"\n"
+"Yma mae Drakbackup yn caniatáu i chi newid:\n"
+"\n"
+" - Y modd cywasgu:\n"
+" \n"
+" Os wnewch chi glicio cywasgiad bzip2, byddwch yn \n"
+" cywasgu eich data'n well na gzip (tua 2-10%).\n"
+" Nid yw'r dewis wedi ei nodi drwy ragosodiad gan fod\n"
+" angen mwy o amser ar y modd cywasgu hwn (tua 1000% yn fwy).\n"
+"\n"
+"- Y modd diweddaru:\n"
+"\n"
+" Bydd y dewis hwn yn diweddaru eich caw wrth gefn, ond\n"
+" nid yw'r dewis hwn wir yn ddefnyddiol gan fo angen dadgywasgu\n"
+" eich cadw wrth gefn cyn bo modd i chi ei ddiweddaru.\n"
+" \n"
+"- Y modd .backupignore\n"
+" Fel gyda cvs, bydd Drakbackup yn anwybyddu pob cyfeiriad\n"
+" yn ffeiliau .backupignore ym mhob cyfeiriadur.\n"
+" ar wahân i: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Gwneuthurwr yr argraffydd, model, gyrrwr"
+#: ../../standalone/drakbackup_.c:4654
+msgid ""
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
+msgstr "\n"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4662
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
msgstr ""
-"Does dim cyfrwng neu mae wedi ei amddiffyn rhag ysgrifennu i'r dyfais %s.\n"
-"Rhowch un i mewn.."
+"disgrifiad o'r dewisiadau:\n"
+"\n"
+"- Ffeiliau system Cadw wrth Gefn\n"
+" \n"
+"\tMae'r dewis hwn yn caniatáu i chi gadw wrth gefn eich\n"
+"\tcyfeiriadur /etc, sy'n cynnwys eich ffeiliau ffurfweddiad.\n"
+"\tByddwch ofalus wrth ei adfer i beidio trosysgrifo:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+"- Ffeiliau Defnyddiwr Cadw wrth Gefn\n"
+"\n"
+"\tMae'r dewis hwn yn caniatáu i chi ddewis pob defnyddiwr\n"
+"\trydych am gadw wrth gefn ar eu cyfer.\n"
+"\tI ddiogelu lle ar ddisg, argymhellir nad ydych yn cadw storfa'r\n"
+"\t porwr.\n"
+" \n"
+"- Cadw Ffeiliau Eraill wrth Gefn\n"
+"\n"
+"\tMae'r dewis hwn yn caniatáu i chi ychwanegu mwy\n"
+"\to ddata i'w gadw. Gyda'r cadw arall wrth gefn nid\n"
+"\tyw'n bosibl ar hyn o bryd i ddewis cadw wrth gefn\n"
+"\tcynyddol.\t\t\n"
+"\n"
+"Cadw wrth Gefn Cynyddol:\n"
+"\n"
+"\tCadw wrth Gefn Cynyddol yw'r dewis mwyaf pwerus.\n"
+"\tMae'r dewis hwn yn caniatáu i chi gadw eich data wrth\n"
+"\tgefn y tro cyntaf ac yna dim ond yr hyn sydd wedi newid.\n"
+"\tYna bydd modd i chi, yn ystod y cam o adfer, adfer eich\n"
+"\tdata o ddyddiad penodol.\n"
+"\tOs nad ydych wedi dewis hwn, bydd yr holl hen ffeiliau\n"
+"\twrth gefn yn cael eu dileu cyn pob cadw wrth gefn. \n"
+"\n"
+"\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4701
msgid ""
-"Directory %s already contains data\n"
-"(%s)"
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
+"\n"
msgstr ""
-"Mae cyfarwyddiadur %s eisoes yn cynnwys peth data\n"
-"(%s)"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Argraffydd ar wasanaethwr NetWare"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Rhowch faint RAM mewn MB"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr "Gwener"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Datgysylltu o'r Rhyngrwyd wedi ei gwblhau"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "Enw cywir"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "done"
-msgstr "gorffen"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Dad-diciwch hwn neu ei dynnu'r tro nesaf."
+"disgrifad o adfer:\n"
+"\n"
+"Dim ond y ffeiliau mwyaf diweddar fydd yn cael eu defnyddio,\n"
+"oherwydd gyda candw wrth gefn cynyddol mae angen adfer\n"
+"pob cadw hyn yn unigol.\n"
+"\n"
+"Felly os nad ydych am adfer defnyddiwr dad-ddewiswch ei ddewisiadau.\n"
+"\n"
+"Ar wahan i hynny, dim ond un o rhain mae modd ei ddewis\n"
+"\n"
+"Cadw wrth Gefn Cynyddol:\n"
+"\n"
+"\tCadw wrth Gefn Cynyddol yw'r dewis mwyaf pwerus.\n"
+"\tMae'r dewis hwn yn caniatáu i chi gadw eich data wrth\n"
+"\tgefn y tro cyntaf ac yna dim ond yr hyn sydd wedi newid.\n"
+"\tYna bydd modd i chi, yn ystod y cam o adfer, adfer eich\n"
+"\tdata o ddyddiad penodol.\n"
+"\tOs nad ydych wedi dewis hwn, bydd yr holl hen ffeiliau\n"
+"\twrth gefn yn cael eu dileu cyn pob cadw wrth gefn. \n"
+"\\n\n"
+"\n"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Higher"
-msgstr "Uwch"
+#: ../../standalone/drakbackup_.c:4727
+#, fuzzy
+msgid ""
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
+msgstr ""
+" Hawlfraint(H 2001 MandrakeSoft gan DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Dewiswch y rhaniadau rydych am eu fformatio"
+#: ../../standalone/drakbackup_.c:4729
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+" yn diweddaru 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft."
+"com>"
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4732
+#, fuzzy
msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
+"Description:\n"
"\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
"\n"
-"You can visit our hardware database at:\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
+"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
+"\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Nid oes Cerdyn Teledu wedi ei ganfod ar eich peiriant. Gwiriwch fod Cerdyn "
-"Fideo/Teledu sy'n cael ei gynnal gan Linux wedi ei osod yn gywir.\n"
+"Disgrifiad:\n"
"\n"
+" Mae Drakbackup yn cael ei ddefnyddio i cadw\n"
+" eich ffeiliau system wrth gefn.\n"
+" Yn ystod y ffurfweddiad medrwch ddewis:\n"
+"\t- Ffeiliau system,\n"
+"\t-Ffeiliau defnyddwyr,\n"
+"\t-Ffeiliau eraill.\n"
+"\tneu Eich holl system...ac Arall (megis Rhaniadau Windows)\n"
"\n"
-"Cewch ymweld â'n cronfa ddata caledwedd yn:\n"
+" Mae Drackbackup yn caniatáu i chi ddefnyddio:\n"
+"\t- Disg Caled.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (gyda awto gychwyn, achub ac awto osod.).\n"
+"\t- FTP.\n"
+"\t- Webdav.\n"
+"\t- Tâp.\n"
+"\n"
+" Mae Drakbackup yn caniatáu i chi adfer eich system i\n"
+" gyfeiriadur o ddewis y defnyddiwr.\n"
+"\n"
+" Yn rhagosodedig bydd ffeiliau wrth gefn yn cael eu cadw yn eich\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Ffeil ffurfweddiad:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"\n"
+"Camau wrth adfer:\n"
+" \n"
+" Yn ystod yr adfer bydd Drakbackup yn tynnu\n"
+" eich cyfeiriadur gwreiddiol a gwirio nad yw'r holl \n"
+" ffeiliau wrth gefn wedi eu llygru. Argymhellir i chi \n"
+" gadw wrth gefn cyn adfer.\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't find %s on %s"
-msgstr "Methu canfod %s ar %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "Siapaëaidd 106 bysell"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
-msgstr "Methu gosod y pecyn sydd ei angen i rannu eich sganiwr(sganwyr)."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Bydd hyn yn cymryd rhai munudau"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "June"
-msgstr "Mehefin"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Defnyddio sganiwr ar gyfrifiaduron pell"
+#: ../../standalone/drakbackup_.c:4769
+msgid ""
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
+msgstr ""
+"disgrifiad o'r dewisiadau:\n"
+"\n"
+"Byddwch ofalus wrth ddefnyddio cadw wrth gefn ftp, oherwydd\n"
+"dim ond ffeiliau wrth gefn sydd wedi eu hadeiladu sy'n cael eu\n"
+"hanfon at y gwasanaethwr.\n"
+"Felly, rhaid i chi adeiladu eich cadw wrth gefn ar eich disg caled\n"
+"cyn ei anfon i'r gwasanaethwr.\n"
+"\n"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Delete selected rule"
-msgstr "Dileu'r rheol hwn"
+#: ../../standalone/drakbackup_.c:4778
+msgid ""
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
+msgstr ""
+"\n"
+"Anawsterau Adfer Ffeiliau wrth gefn\n"
+"\n"
+"Yn ystod yr adfer bydd Drakbackup yn gwirio eich holl\n"
+"ffeiliau wrth gefn cyn eu hadfer.\n"
+"Cyn adfer, bydd Drakbackup yn tynnu'r cyfeiriadur\n"
+"gwreiddiol, a byddwch yn colli eich holl ddata. Mae'n\n"
+"bwysig eich bod yn ofalus a pheidio newid y ffeiliau\n"
+"data wrth gefn gyda llaw.\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Mynediad at argraffydd ar wasanaethwr CUPS pell"
+msgid "Installation of %s failed. The following error occured:"
+msgstr "Mae gosod %s wedi methu. Digwyddodd y gwall canlynol:"
-#: ../../any.pm:1
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Rhowch ddisg meddal yn %s"
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
+msgstr "Offeryn Adross Gwall Mandrake"
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
-msgstr "Maldives"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Dewin Tro Cyntaf"
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "cryno"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Offeryn Cydamseru"
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
-msgstr "1 munud"
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+msgid "Standalone Tools"
+msgstr "Offer Unigol"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: fat"
-msgstr "math: fat"
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "on channel %d id %d\n"
-msgstr "ar sianel %d id %d\n"
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
-msgstr ",dyfais amlbwrpas"
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr "Laos"
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msec"
-#: ../advertising/04-configuration.pl:1
-#, 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!"
-msgstr ""
-"Mae Mandrake Linux 9.2 yn cynnig Canolfan Rheoli Mandrake, offeryn pwerus i "
-"addasu eich cyfrifiadur i'ch defnydd personol chi. Gallwch addasu elfennau "
-"megis lefelau diogelwch, offer ymylol (sgrîn, llygoden, bysellfwrdd...), "
-"cysylltiad â'r Rhyngrwyd a llawer mwy!"
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Rheoli o Bell"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
-msgstr "Galluogi/Analluogi gwiriad cymysgaredd cardiau ethernet."
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Rheolwr Meddalwedd"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr "Nid oes rhaniadau FAT i newid eu maint (neu nad oes digon o le ar ôl)"
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr "I fyny"
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Offeryn Trosglwyddo o Windows"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
-msgstr "Mur Cadarn"
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr "Ardal:"
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Dewin Ffurfweddu"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr "Rheolyddion (E)IDE/ATA"
+#: ../../standalone/drakbug_.c:75
+msgid "Application:"
+msgstr "Rhaglen"
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
-msgstr "Dylai pob I/O i'r system ffeil gael ei wneud yn gydamserol"
+#: ../../standalone/drakbug_.c:76
+msgid "Package: "
+msgstr "Pecynnau"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "Gwasanaethwr Argraffydd"
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
+msgstr "Kernel:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Custom configuration"
-msgstr "Ffurfweddiad addasu"
+#: ../../standalone/drakbug_.c:78
+msgid "Release: "
+msgstr "Ryddhad"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbug_.c:93
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"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
"\n"
msgstr ""
-"Dangoswch lle bydd y delwedd gosod ar gael.\n"
"\n"
-"Os nad oes gennych gyfeiriadur yn barod, copiwch gynnwys y CD neu'r DVD.\n"
+"\n"
+"I gyflwyno adroddiad gwall, cliciwch ar y botwm adroddiad.\n"
+"Bydd hyn yn agor ffenestr porwr gwe yn https://drakbug.mandrakesoft.com\n"
+" lle welwch ffurflen i'w llenwi. Bydd yr wybodaeth rhowch arno'n cael ei\n"
+"drosglwyddo i'r gwasanaethwr\n"
"\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint Pierre a Miquelon"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
-msgstr "Medi"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "cadw thema Croeso cychwyn..."
+#: ../../standalone/drakbug_.c:112
+msgid "Report"
+msgstr "Adroddiad"
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
-msgstr "Portiwgal"
+#: ../../standalone/drakbug_.c:148
+msgid "Not installed"
+msgstr "Heb ei osod"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "Oes gennych un arall?"
+#: ../../standalone/drakbug_.c:160
+#, fuzzy
+msgid "Package not installed"
+msgstr "Heb ei osod"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", printing to %s"
-msgstr ", argraffu i %s"
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
+msgstr "cysylltwyd â dewin Bugzilla..."
-#: ../../network/network.pm:1
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Rhowch enw'r gwesteiwr o'r cyfeiriad DHCP"
+#: ../../standalone/drakbug_.c:180
+msgid "No browser available! Please install one"
+msgstr "Dim porwr ar gael! Gosodawch un"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakconnect_.c:75
#, c-format
-msgid "Toggle to normal mode"
-msgstr "Arbenigwr > Cyffredinol"
+msgid "Network configuration (%d adapters)"
+msgstr "Ffurfweddiad y rhwydwaith (%d addasydd)"
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
-msgstr "Generig"
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+msgid "Profile: "
+msgstr "Proffil:"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Silindr %d i silindr %d\n"
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
+msgstr "Proffl dileu"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
-msgstr "EICH TESTUN YMA"
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
+msgstr "Proffil i'w ddileu:"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakconnect_.c:125
msgid "New profile..."
msgstr "Proffil newydd..."
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
-#, c-format
-msgid "NONE"
-msgstr "NONE"
+#: ../../standalone/drakconnect_.c:131
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Enw'r proffil i'w greu ( mae'r proffil newydd yn cael ei greu fel copi o'r "
+"un cyfredol):"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "Pa ddisg hoffech chi symud iddo?"
+#: ../../standalone/drakconnect_.c:157
+msgid "Hostname: "
+msgstr "Enw gwesteiwr:"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Display logo on Console"
-msgstr "Arddangos logo yn y Consol"
+#: ../../standalone/drakconnect_.c:164
+msgid "Internet access"
+msgstr "Mynediad i'r Rhyngrwyd"
-#: ../../any.pm:1
-#, c-format
-msgid "Windows Domain"
-msgstr "Parth Windows"
+#: ../../standalone/drakconnect_.c:177
+msgid "Type:"
+msgstr "Math: "
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (norwegian)"
-msgstr "Saami (norwyaidd)"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "Mynedfa:"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Interface %s (on network %s)"
-msgstr "Rhyngwyneb %s (ar rwydwaith %s)"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Interface:"
+msgstr "Rhyngwyneb:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
-msgstr "GWYBODAETH"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
+msgstr "Statws"
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
-msgstr "Wallis a Futuna"
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
+msgstr "Arhoswch"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Mae angen creu /etc/dhcpd.conf yn gyntaf"
+#: ../../standalone/drakconnect_.c:216
+msgid "Configure Internet Access..."
+msgstr "Ffurfweddu Mynediad i'r We..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
-msgstr "Yw'r FPU yn bresennol"
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+msgid "LAN configuration"
+msgstr "Ffurfweddiad y Rhwydwaith Lleol"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr "Dim gwybodaeth ychwanegol am y gwasanaeth hwn."
+#: ../../standalone/drakconnect_.c:228
+msgid "Driver"
+msgstr "Gyrrwr"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "Does unrhyw sganiwr wedi ei ganfod ar gael ar eich cyfrifiadur.\n"
+#: ../../standalone/drakconnect_.c:228
+msgid "Interface"
+msgstr "Rhyngwyneb"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Adeiladau NIC unigol -->"
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
+msgstr "Protocol"
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "Ynysoedd Marshall"
+#: ../../standalone/drakconnect_.c:228
+msgid "State"
+msgstr "Stad"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "Ydi hyn yn gywir?"
+#: ../../standalone/drakconnect_.c:240
+msgid "Configure Local Area Network..."
+msgstr "Ffurfweddu'r Rhwydwaith Lleol..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
+msgstr "Cliciwch yma i gychwyn y dewin ->"
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr "Cyfrinair gwraidd"
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "Dewin..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Adeiladu pob cnewyllyn -->"
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
+msgstr "Gosod"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVDRAM device"
-msgstr "dyfais DVDRAM"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Connected"
+msgstr "Wedi cysylltu"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
-msgstr "os wedi ei osod i iawn, adrodd ar ffeiliau heb berchennog."
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Not connected"
+msgstr "Heb gysylltu"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
+msgstr "Cysylltu..."
+
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
+msgstr "Dadgysylltu..."
+
+#: ../../standalone/drakconnect_.c:400
msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Nid oes gennych raniad cyfnewid\n"
-"\n"
-"Parhau beth bynnag?"
+"Rhybudd, mae cysylltiad arall gyda'r rhyngrwyd wedi ei ganfod, efallai'n "
+"defnyddio eich rhwydwaith."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Version: "
-msgstr "Fersiwn:"
+#: ../../standalone/drakconnect_.c:427
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Nid oes gennych unrhyw rhagwynebau wedi\n"
+"eu ffurfweddio. Ffurfweddwch nhw'n gyntaf\n"
+"drwy glicio ar 'Ffurfweddu'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Server IP missing!"
-msgstr "IP'r gwasanaethwr ar goll!"
+#: ../../standalone/drakconnect_.c:449
+msgid "LAN Configuration"
+msgstr "Ffurfweddiad Rhwydwaith Lleol (LAN)"
-#: ../../lang.pm:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Suriname"
-msgstr "Suriname"
+msgid "Adapter %s: %s"
+msgstr "Addasydd %s: %s"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use a floppy"
-msgstr "Defnyddiwch ddisg meddal"
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
+msgstr "Protocol Cychwyn"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
-msgstr "Galluogi ACPI"
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
+msgstr "Cychwyn y peiriant"
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
-msgstr "Rhoi mynediad ysgrifennu i ddefnyddwyr cyffredin"
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
+msgstr "Cleient DHCP"
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
-msgstr "Amgylchedd Graffig"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "activate now"
+msgstr "cychwyn nawr"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
-msgstr "Gibraltar"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "deactivate now"
+msgstr "dad weithredu nawr"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Do nothing"
-msgstr "Gwneud dim"
+#: ../../standalone/drakconnect_.c:499
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Nid yw'r rhag wyneb hwn wedi ei ffurfweddu eto.\n"
+"Cychwynnwch y dewin ffurfweddi yn y brif ffenestr."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete Client"
-msgstr "Diddymu Cleient"
+#: ../../standalone/drakconnect_.c:556
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Nid oes gennych cysylltiad â'r rhyngrwyd.\n"
+"Crëwch un drwy glicio ar 'Ffurfweddu'"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "Math o system ffeilio"
+#: ../../standalone/drakconnect_.c:580
+msgid "Internet connection configuration"
+msgstr "Ffurfweddiad cysylltiad â'r Rhyngrwyd"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting network..."
-msgstr "Cychwyn y rhwydwaith..."
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet Connection Configuration"
+msgstr "Ffurfweddu Cysylltiad â'r Rhyngrwyd"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
-msgstr "Fietnam"
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+msgid "Connection type: "
+msgstr "Math o gyswllt:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Disgrifiad meysydd"
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
+msgstr "Paramedrau"
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr "Y diogelwch mwyaf"
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Mynedfa"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-" Diolch:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
+msgstr "Cerdyn Ethernet"
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Help"
-msgstr "Cymorth"
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
+msgstr "Cleient DHCP"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
-msgstr "Gwirio os yw'r dyfeisiau rhwydwaith mewn modd cymysgaredd"
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Your personal phone number"
-msgstr "Eich rhif ffôn personol"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Module name"
+msgstr "Enw'r modiwl"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which size do you want to keep for Windows on"
-msgstr "Pa faint o le ydych am ei gadw ar gyfer Windows ar"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Size"
+msgstr "Maint"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Mae tudalen(nau) prawf wedi eu hanfon at yr argraffydd.\n"
-"Gall gymryd amser cyn i'r argraffydd gychwyn.\n"
+#: ../../standalone/drakfloppy_.c:45
+msgid "drakfloppy"
+msgstr "drakfloppy"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Username required"
-msgstr "Mae angen enw defnyddiwr"
+#: ../../standalone/drakfloppy_.c:63
+msgid "boot disk creation"
+msgstr "creu disg cychwyn"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Device"
-msgstr "Dyfais"
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr "rhagosodedig"
-#: ../../help.pm:1
+#: ../../standalone/drakfloppy_.c:87
#, 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."
-msgstr ""
-"Fel arfer mae DrakX yn dewis y bysellfwrdd cywir ar eich cyfer ( gan "
-"ddibynnu pa\n"
-" iaith rydych wedi ei ddewis) ac ni fyddwch yn gweld y cam hwn. Er hynny,\n"
-"efallai nad oes gennych fysellfwrdd sy'n cyfateb yn union i'ch iaith: e.e., "
-"os ydych\n"
-"yn Americanwr sy'n siarad Cymraeg, efallai eich bod am gadw eich "
-"bysellfwrdd\n"
-"Americanaidd. Neu os ydych yn siarad Cymraeg ac yn byw yn Hong Kong mae'r\n"
-" un sefyllfa'n codi. Yn y ddwy achos bydd angen i chi fynd yn ôl i'r cam yma "
-"yn y\n"
-" gosodiad a dewis y bysellfwrdd perthnasol o'r rhestr.\n"
-"\n"
-"Cliciwch ar fotwm \"%s\" i dderbyn y rhestr lawn o fysellfyrddau sy'n cael "
-"eu\n"
-" cynnal.\n"
-" \n"
-"Os fyddwch yn dewis cynllun bysellfwrdd wedi ei seilio ar wyddor an-"
-"Lladinaidd, \n"
-"bydd y deialog nesaf yn caniatáu i chi ddewis rwymiad allwedd fydd yn newid "
-"y\n"
-"bysellfwrdd rhwng cynlluniau Lladin ac an-Lladin."
+msgid "DrakFloppy Error: %s"
+msgstr "Gwall Drakfloppy: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Dewisiadau Argraffydd SMB (Windows 9x/NT)"
+#: ../../standalone/drakfloppy_.c:98
+msgid "kernel version"
+msgstr "fersiwn cnewyllyn"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
+#: ../../standalone/drakfloppy_.c:104
+msgid "General"
+msgstr "Cyffredinol"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr "Rhestr defnyddwyr dilys wedi newid, ailysgrifennu ffeil ffurfweddu."
+#: ../../standalone/drakfloppy_.c:109
+msgid "Expert Area"
+msgstr "Maes Uwch"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakfloppy_.c:112
msgid "mkinitrd optional arguments"
msgstr "ymresymiad dewisol mkinitrd"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
-msgstr ""
-"Crwydro'r We gyda Gwe-lywiwr Mozilla neu Konqueror, darllen eich e-bost "
-"gydag Evolution neu Kmail, creu eich dogfennau gydag OpenOffice.org"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protocol ar gyfer gweddill y byd"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print test pages"
-msgstr "Argraffu tudalennau prawf"
+#: ../../standalone/drakfloppy_.c:113
+msgid "Add a module"
+msgstr "Ychwanegu modiwl"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Activate now"
-msgstr "Cychwyn nawr"
+#: ../../standalone/drakfloppy_.c:133
+msgid "force"
+msgstr "grym"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
-msgstr "16 MB neu fwy"
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
+msgstr "os oes angen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Dewiswch y tudalennau prawf rydych am eu hargraffu\n"
-"Sylwer: gall tudalen brawf llun camera gymryd cryn dipyn o amser cyn cael ei "
-"argraffu ac ar argraffydd laser heb lawer o gof mae'n bosibl na ddaw o gwbl. "
-"Yn y rhan fwyaf o achosion, mae'r dudalen prawf safonol yn ddigonol."
+#: ../../standalone/drakfloppy_.c:135
+msgid "omit scsi modules"
+msgstr "peidio cynnwys modiwlau scsi"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Dewiswch y ddyfais lle mae %s wedi ei gysylltu"
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
+msgstr "peidio cynnwys modiwlau raid"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Not formatted\n"
-msgstr "Heb ei fformatio\n"
+#: ../../standalone/drakfloppy_.c:172
+msgid "Remove a module"
+msgstr "Tynnu modiwl"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Periodic Checks"
-msgstr "Gwirydd Cyfnodol"
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
+msgstr "Allbwn"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "PXE Server Configuration"
-msgstr "Ffurfweddiad Gwasanaethwr PXE"
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
+msgstr "Adeiladu'r ddisg"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "Backup the system files before:"
-msgstr "Cadw'r ffeiliau system wrth gefn cyn:"
+msgid "Be sure a media is present for the device %s"
+msgstr "Gwnewch yn siwr fod y deunydd ar gael ar gyfer y ddyfais %s"
-#: ../../security/level.pm:1
+#: ../../standalone/drakfloppy_.c:341
#, c-format
msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
-"Dyma'r safon sy'n cael ei argymell ar gyfer diogelwch cyfrifiadur fydd yn "
-"cael ei gysylltu â'r Rhyngrwyd fel cleient."
-
-#: ../../any.pm:1
-#, c-format
-msgid "First floppy drive"
-msgstr "Gyrrwr disg meddal cyntaf"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Ffeil/_Gadael"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose the new size"
-msgstr "Dewiswch y maint newydd"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Media class"
-msgstr "Dosbarth y cyfrwng"
+"Does dim cyfrwng neu mae wedi ei amddiffyn rhag ysgrifennu i'r dyfais %s.\n"
+"Rhowch un i mewn.."
-#: ../../standalone/XFdrake:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr "Rhaid allgofnodi ac i fewn eto i newidiadau ddigwydd."
+msgid "Unable to fork: %s"
+msgstr "Methu fforchio: %s"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakfloppy_.c:349
#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
-msgstr "Nid yw %s yn hysbys gan y fersiwn hwn o Scannerdrake."
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Methu cau mkbootdisk yn iawn:\n"
+" %s \n"
+" %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Faroe Islands"
-msgstr "Ynysoedd Faroe"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
+msgstr "Chwilio am ffontiau wedi eu gosod"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Restart XFS"
-msgstr "Ail gychwyn XFS"
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
+msgstr "Tynnu ffontiau wedi eu gosod"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
-msgstr "Ychwanegu gwesteiwr/rhwydwaith"
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
+msgstr "pob ffont"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Ni fydd Scannerdrake yn cael ei gychwyn."
+#: ../../standalone/drakfont_.c:242
+msgid "no fonts found"
+msgstr "heb ganfod ffontiau"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model name"
-msgstr "Enw'r model"
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+msgid "done"
+msgstr "gorffen"
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
-msgstr "Albania"
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
+msgstr "methu canfod unrhyw ffont yn eich rhaniad gosodedig"
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr "British Indian Ocean Territory"
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
+msgstr "Ailddewis y ffontiau cywir"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Normal Mode"
-msgstr "Modd Arferol"
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
+msgstr "methu cnafod unrhyw ffontiau.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "Dim CDR/DVDR yn y gyrrwr!"
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
+msgstr "Chwilio am ffontiau yn y rhestr gosod"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer connection type"
-msgstr "Math o gyswllt argraffydd"
+#: ../../standalone/drakfont_.c:359
+msgid "Fonts copy"
+msgstr "Copïo ffontiau"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
-msgstr "Nid oes addasydd rhwydwaith ar eich system!"
+#: ../../standalone/drakfont_.c:363
+msgid "True Type fonts installation"
+msgstr "Gosod ffontiau True Type"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network %s"
-msgstr "Rhwydwaith %s"
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
+msgstr "arhoswch yn ystod ttmkfdir..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
-msgstr "Malayalam"
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
+msgstr "Wedi gosod True Type"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Dewis %s allan o amrediad!"
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
+msgstr "Trosiad ffontiau"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connect %s"
-msgstr "Cysylltu %s"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
+msgstr "adeiladu math 1inst"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "Ail gychwynCUPS"
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
+msgstr "cyfeirio Ghostscript"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Argraffu/Sganio/Cardiau Llun ar \"%s\""
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
+msgstr "trosi ffontiau ttf "
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
-msgstr "Parhau heb allwedd USB"
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
+msgstr "trosi ffontiau pfm"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Pwynt gosod dyblyg %s"
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
+msgstr "Llethu ffeiliau dros dro"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
-msgstr "os wedi ei osod i iawn, gwirio gyda chkrootkit."
+#: ../../standalone/drakfont_.c:459
+msgid "Restart XFS"
+msgstr "Ail gychwyn XFS"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "Ffurfweddiad y Cysylltiad"
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
+msgstr "Llethu ffeiliau Ffontiau"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|Generic"
-msgstr "Anhysbys|Generig"
+#: ../../standalone/drakfont_.c:528
+msgid "xfs restart"
+msgstr "ail gychwyn xfs"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
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"
+"Before installing any fonts, be sure that you have the right to use and "
+"install them on your system.\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."
+"-You can install the fonts using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
msgstr ""
-"Ar yr adeg pan fyddwch yn gosod Mandrake Linux, mae'n debygol y bydd\n"
-"rhai pecynnau wedi eu diweddaru ers y rhyddhad cychwynnol. Bydd rhai \n"
-"gwallau wedi eu cywiro a materion diogelwch wedi eu datrys. I ganiatáu\n"
-"i chi fanteisio ar hyn mae cynnig i chi eu llwytho i lawr o'r rhyngrwyd.\n"
-"Dewiswch \"%s\" os oes gennych gyswllt gweithredol â'r rhyngrwyd,\n"
-"neu \"%s\"\"os ydych am osod pecynnau mwy diweddar rhywbryd eto.\n"
+"Cyn gosod unrhyw ffontiau, gwnewch yn siwr bod gennych yr hawl i'w defnyddio "
+"a'u gosod ar eich system.\n"
"\n"
-"Bydd dewis \"%s\" yn dangos rhestr o leoedd o le mae modd derbyn\n"
-"diweddariadau. Dewiswch yr un agosaf atoch. Yna, bydd coeden dewis\n"
-"pecynnau yn ymddangos: Wedi i chi benderfynu ar eich dewis, cliciwch\n"
-"\"%s\" i estyn a gosod y pecynnau hynny neu \"%s\" i beidio."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-msgstr "Myanmar"
-
-#: ../../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
-#, c-format
-msgid "Quit"
-msgstr "Gadael"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "Awto ddynodi"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Gwirio blociau gwallus?"
+"- Medrwch osod y ffontiau yn y dull arferol. Mewn achosion prin, gall "
+"ffontiau ffug rewi eich Gwasanaethwr X"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Other MultiMedia devices"
-msgstr "Dyfeisiau aml-gyfrwng eraill"
+#: ../../standalone/drakfont_.c:621
+msgid "Fonts Importation"
+msgstr "Mewnforio Ffontiau"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "burner"
-msgstr "llosgwr"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
+msgstr "Estyn Ffontiau Windows"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Bug Description/System Information"
-msgstr "Disgrifiad Gwall/Gwybodaeth am y System"
+#: ../../standalone/drakfont_.c:658
+msgid "Uninstall Fonts"
+msgstr "Dad osod Ffontiau"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (Default is all users)"
-msgstr "(Rhagosodedig yw pob defnyddiwr)"
+#: ../../standalone/drakfont_.c:669
+msgid "Advanced Options"
+msgstr "Dewisiadau Uwch"
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "No remote machines"
-msgstr "Dim cyfrifiaduron pell"
+#: ../../standalone/drakfont_.c:677
+msgid "Font List"
+msgstr "Rhestr Ffontiau"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:737
+#, fuzzy
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@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."
-msgstr ""
+" 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"
-"Croeso i'r Dewin Gosod Argraffydd\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"
"\n"
-"Bydd y dewin yn eich cynorthwyo i osod argraffydd(ion) sydd wedi eu cysylltu "
-"â'r cyfrifiadur hwn,\n"
"\n"
-"Os oes gennych argraffydd(ion) yn gysylltiedig â'r peiriant, cysylltwch nhw "
-"â'r peiriant a'u troi nhw mlaen fel bod modd awtoganfod.\n"
+msgstr ""
+"Mae'r rhaglen hon yn feddalwedd rhydd; medrwch ei ailddosbarthu\n"
+"a/neu ei newid o dan amodau Trwydded Gyhoeddus Gyffredinol GNU\n"
+"fel sydd wedi ei gyhoeddi gan y Free Software Foundation; un ai fersiwn\n"
+"2 neu (yn ôl eich dewis) unrhyw fersiwn diweddarach.\n"
"\n"
-"Cliciwch \"Nesaf\" pan ydych yn barod, a \"Diddymu\" os nad ydych am osod "
-"eich argraffydd(ion) ar hyn o bryd."
+" Mae'r rhaglen yn cael ei ddosbarthu yn y gobaith y bydd yn ddefnyddiol,\n"
+" ond HEB UNRHYW WARANT; heb hyd yn oed awgrym o warant o\n"
+" FASNACHEIDDRWYDD nag ADDASRWYDD AR GYFER PWRPAS\n"
+" PENODOL. Gweler Trwydded Gyhoeddus Gyffredinol GNU am fwy o\n"
+" wybodaeth.\n"
+"\n"
+" Dylech fod wedi derbyn copi o Drwydded Gyhoeddus Gyffredinol GNU\n"
+" gyda'r rhaglen; os nad, ysgrifennwch at:\n"
+" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n"
+"MA 02111-1307, USA"
+
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:862
+msgid "Choose the applications that will support the fonts:"
+msgstr "Dewiswch y rhaglenni fydd yn cynnal ffontiau:"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "Dilysu LDAP"
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
+msgstr "Ghostscript"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Dewis Nid yw 'cyfyngu dewisiadau llinell orchymyn' o werth heb gyfrinair"
+#: ../../standalone/drakfont_.c:877
+msgid "StarOffice"
+msgstr "StarOffice"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Mae Rhannu Cysylltiad â'r Rhyngrwyd wedi ei alluogi"
+#: ../../standalone/drakfont_.c:884
+msgid "Abiword"
+msgstr "Abiword"
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "United Arab Emirates"
+#: ../../standalone/drakfont_.c:891
+msgid "Generic Printers"
+msgstr "Argraffyddion Generig"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "IO_O y cerdyn"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
+msgstr "Dewiswch ffeil neu gyfeiriadur y ffont a chlicio 'Ychwanegu'"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
-msgstr "Analluogi Ffurfweddiad Lleol"
+#: ../../standalone/drakfont_.c:1005
+msgid "Install List"
+msgstr "Gosod Rhestr"
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "Gwlad Thail"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
+msgstr "cliciwch yma os ydych yn siwr."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "IO_1 y cerdyn"
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
+msgstr "yma os nad."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
-msgstr "Chwilio:"
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
+msgstr "Dad ddewis Popeth"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "Kazakhstan"
+#: ../../standalone/drakfont_.c:1116
+msgid "Selected All"
+msgstr "Dewis Popeth"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
-msgstr "Llwybryddion:"
+#: ../../standalone/drakfont_.c:1120
+msgid "Remove List"
+msgstr "Rhestr Tynnu"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Write"
-msgstr "Ysgrifennu"
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+msgid "Initials tests"
+msgstr "Prawf Init"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Arddangos pob argraffydd CUPS pell sydd ar gael"
+#: ../../standalone/drakfont_.c:1145
+msgid "Copy fonts on your system"
+msgstr "Copïo'r ffontiau ar eich system!"
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Gosodiad %s Mandrake Linux"
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
+msgstr "Gosod a throsi ffontiau"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
-msgstr "Gyrrwr anhysbys"
+#: ../../standalone/drakfont_.c:1153
+msgid "Post Install"
+msgstr "Wedi'r Gosod"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "Bysellfwrdd Thai"
+#: ../../standalone/drakfont_.c:1178
+msgid "Remove fonts on your system"
+msgstr "Tynnu ffontiau oddi ar eich system!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr "Ynys Bouvet"
+#: ../../standalone/drakfont_.c:1182
+msgid "Post Uninstall"
+msgstr "Wedi'r dad osod"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "Dewisiadau cyswllt ffôn"
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
+msgstr "Rhannu Cysylltiad â'r Rhyngrwyd"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr ""
-"Os nad oes porth yn cael ei gynnig, bydd 631 yn cael ei gymryd fel y "
-"rhagosodedig."
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Mae'n ddrwg gennym dim ond cnewyllyn 2.4 sy'n cael ei gynnal."
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Ffeiliau ffurfweddi system cleient unigol:\n"
-" \t\tDrwy clusternfs, mae modd i bob cleient di-ddisg gael ei "
-"ffeiliau ffurfweddu ei hun\n"
-" \t\tar system ffeiliau gwraidd y gwasanaethwr. Drwy ganiatáu "
-"ffurfweddiad caledwedd \n"
-" \tcleient lleol, mae modd addasu ffeiliau fel /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t\t/etc/sysconfig/keyboard ar sail cleient.\n"
-"\n"
-" Sylw: Mae galluogi ffurfweddiad cleient lleol yn galluogi "
-"mewngofnodi gwraidd i'r gwasanaethwr\n"
-" terfynel ar bob un o'ch peiriannau cleient sydd a'r nodwedd hon wedi "
-"ei alluogi. Mae modd diffodd\n"
-" ffurfweddiad lleol, cadw'r ffeiliau ffurfweddu, un waith mae'r "
-"peiriant cleient wedi ei ffurfweddu"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Mae Rhannu Cysylltiad â'r Rhyngrwyd wedi ei alluogi"
+
+#: ../../standalone/drakgw_.c:126
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 ""
-"Newidiwch eich CD-ROM\n"
+"Mae gosodiad rhannu cysylltiad a'r Rhyngrwyd wedi ei gyflawni. \n"
+"Mae wedi ei alluogi. \n"
"\n"
-"Rhowch yr CD-ROM sydd wedi ei labeli \"%s\" yn eich gyrrwr a chlicio Iawn\n"
-"Os nad yw gennych, cliciwch Dileu i osgoi gosod o'r CD-ROM hwn."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "Pwylaidd"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Online"
-msgstr "Mandrake Online"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
-msgstr "\t-Rhwydwaith drwy webday.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", dyfais amlbwrpas ar borth paralel"
-
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Nid oes addasydd rhwydwaith ethernet wedi ei ganfod ar eich system. Rhedwch "
-"yr offeryn ffurfweddu caledwedd."
-
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "Netmask"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "No hard drives found"
-msgstr "Heb ganfod gyrwyr caled"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "2 fotwm"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "Pa fath o gysylltiad IDSN?"
+"Beth hoffech ei wneud?"
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "Label"
+#: ../../standalone/drakgw_.c:130
+msgid "disable"
+msgstr "dymunol"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "Cadw ar ddisg meddal"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
+msgstr "gwrthod"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check open ports"
-msgstr "Gwirio pyrth agored"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "reconfigure"
+msgstr "ailffurfweddu"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Edit selected printer"
-msgstr "Golygu'r argraffwyr hyn"
+#: ../../standalone/drakgw_.c:133
+msgid "Disabling servers..."
+msgstr "Analluogi gwasanaethwyr..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Awto ganfod argraffydd"
+#: ../../standalone/drakgw_.c:142
+msgid "Internet connection sharing is now disabled."
+msgstr "Mae rhannu cysylltiad â'r Rhyngrwyd wedi ei analluogi."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Pa un o'r canlynol yw eich cerdyn IDSN?"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Mae Rhannu Cysylltiad a'r Rhyngrwyd wedi ei analluogi"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:150
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."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"Mae NFS yn brotocol poblogaidd ar gyfer rhannu ffeiliau ar draws "
-"rhwydweithiau TCP/IP.\n"
-"Mae'r gwasanaeth yn darparu ffwythiannaeth gwasanaethwr NFS, sy;n cael ei "
-"ffurfweddu\n"
-"drwy'r ffeil /etc/exports."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Msec"
-msgstr "Msec"
+"Mae gosodiad rhannu cysylltiad a'r Rhyngrwyd wedi ei gyflawni. \n"
+"Mae wedi ei analluogi. \n"
+"\n"
+"Beth hoffech ei wneud?"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=>Hysbysiad, mae label wedi newid:\n"
-"%s"
+#: ../../standalone/drakgw_.c:154
+msgid "enable"
+msgstr "galluogi"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
-msgstr "Nifer o fyfferau cipio:"
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
+msgstr "Galluogi gwasanaethwyr..."
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Eich dewis? (0/1, rhagosodedig %s)"
+#: ../../standalone/drakgw_.c:166
+msgid "Internet connection sharing is now enabled."
+msgstr "Mae rhannu cysylltiad â'r Rhyngrwyd wedi ei alluogi."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:183
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"
+"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"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
"\n"
-"Click on \"%s\" if you wish to select partitions that will be checked for\n"
-"bad blocks on the disk."
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
-"Rhaid i bob rhaniad sydd newydd eu henwi gael eu fformatio ar gyfer eu\n"
-"defnyddio (mae fformatio'n golygu creu system ffeilio)\n"
-"\n"
-"Efallai y byddwch eisiau ailfformatio rhai rhaniadau presennol i ddileu "
-"data\n"
-"sydd arnynt. Os ydych am wneud hynny, dewiswch y rhaniadau hynny hefyd.\n"
-"\n"
-"Sylwch nad oes angen ailfformatio'r holl raniadau sy'n bodoli eisoes. "
-"Rhaid \n"
-"ailfformatio'r rhaniadau sy'n cynnwys y system weithredu [megis \"/\",\"usr"
-"\"\n"
-"neu \"/var\") ond nid oes rhaid i chi ail fformatio rhaniadau sy'n cynnwys\n"
-"data rydych am ei gadw (e.e. \"/home\").\n"
-"\n"
-"Byddwch ofalus wrth ddewis rhaniadau. Ar ôl fformatio bydd yr holl ddata ar\n"
-"y rhaniadau'n cael eu dileu ac ni fydd modd ei adfer.\n"
-"\n"
-"Cliciwch \"%s\" pan ydych yn barod i fformatio rhaniadau.\n"
+"Rydych ar fin ffurfweddu eich cyfrifiadur i rannu ei gysylltiad Rhyngrwyd\n"
+"Gyda'r nodwedd hwn bydd cyfrifiaduron eraill ar eich rhwydwaith lleol yn "
+"medru rhannu cyswllt rhyngrwyd y cyfrifiadur hwn.\n"
"\n"
-"Cliciwch \"%s\" os ydych am ddewis rhaniad arall ar gyfer eich gosodiad\n"
-"Mandrake Linux newydd\n"
+"Gwnewch yn siwr eich bod wedi ffurfweddu eich mynediad Rhwydwaith/Rhyngrwyd "
+"gyda drakconnect cyn mynd ymhellach.\n"
"\n"
-"Cliciwch \"%s\" os ydych am ddewis rhaniadau i'w gwirio am flociau\n"
-"gwallus ar y ddisg."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "French"
-msgstr "Ffrengig"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTY)"
-msgstr "Tsiec (QWERTY)"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow X Window connections"
-msgstr "Caniatáu cysylltiadai XWindows"
+"Sylwer: bydd angen Addasydd Rhwydwaith un-pwrpas i greu Rhwydwaith Lleol "
+"(LAN)."
-#: ../../standalone/service_harddrake:1
+#: ../../standalone/drakgw_.c:211
#, c-format
-msgid "Hardware probing in progress"
-msgstr "Canfod caledwedd ar waith"
+msgid "Interface %s (using module %s)"
+msgstr "Rhyngwyneb %s (gan ddefnyddio modiwl %s)"
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
+#: ../../standalone/drakgw_.c:212
#, c-format
-msgid "Net Device"
-msgstr "Dyfais Rhyngrwyd"
+msgid "Interface %s"
+msgstr "Rhagwyneb %s"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "Crynodeb"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr "Nid oes addasydd rhwydwaith ar eich system!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:221
msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
msgstr ""
-" (Pyrth paralel: /dev/lp0, /dev/lp1, ..., yn cyfateb i LPT1:, LPT2:, ..., "
-"argraffydd USB cyntaf: /dev/usb/lp0, ail argraffydd USB : /dev/usb/lp1, ...)."
-
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Next"
-msgstr "Nesaf"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Nid oes modd gosod y cychwynnydd ar raniad %s\n"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
+"Nid oes addasydd rhwydwaith ethernet wedi ei ganfod ar eich system. Rhedwch "
+"yr offeryn ffurfweddu caledwedd."
-#: ../../network/network.pm:1
-#, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp/zeroconf)"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr "Rhyngwyneb rhwydwaith"
-#: ../../standalone/drakautoinst:1
+#: ../../standalone/drakgw_.c:228
#, c-format
msgid ""
+"There is only one configured network adapter on your system:\n"
"\n"
-"Welcome.\n"
+"%s\n"
"\n"
-"The parameters of the auto-install are available in the sections on the left"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
+"Dim ond un addasydd rhwydwaith wedi ei ffurfweddu sydd ar eich system\n"
"\n"
-"Croeso\n"
+"%s\n"
"\n"
-"Mae paramedrau'r awto osod i'w cael yn yr adran ar y chwith"
+"Rwyf ar fin gosod eich Rhwydwaith Lleol gyda'r addasydd hwnnw.."
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/drakgw_.c:235
msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
msgstr ""
-"i weithio'n iawn mae angen 'ImageMagick' i gwblhau'r ffurfweddiad.\n"
-"Cliciwch \"Iawn\" i osod 'Image Magick' neu \"Diddymu\" i orffen"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Telnet server"
-msgstr "Gwasanaethwr Telnet"
+"Dewiswch ba addasyddion rhwydwaith fydd yn cael eu cysylltu â'ch Rhwydwaith "
+"Lleol."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lithuenaidd \"rhes rhif\" QWERTY"
+#: ../../standalone/drakgw_.c:261
+msgid "Network interface already configured"
+msgstr "Mae rhag wyneb y rhwydwaith wedi ei ffurfwedu eisoes"
-#: ../../install_any.pm:1
+#: ../../standalone/drakgw_.c:262
#, c-format
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
+"Warning, the network adapter (%s) is already configured.\n"
"\n"
+"Do you want an automatic re-configuration?\n"
"\n"
-"Do you really want to remove these packages?\n"
+"You can do it manually but you need to know what you're doing."
msgstr ""
-"Bydd y pecynnau canlynol yn cael eu tynnu i ganiatáu diweddaru eich system: %"
-"s\n"
+"Rhybudd, mae'r addaswr rhwydwaith (%s) wedi ei ffurfweddu eisoes.\n"
"\n"
+"Ydych chi eisiau ail ffurfweddiad awtomatig?\n"
"\n"
-"Ydych chi am dynnu'r pecynnau hyn?\n"
+"Medrwch ei wneud gyda llaw ond mae'n rhaid i chi wybod beth ydych yn ei "
+"wneud."
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
-msgstr "Anguilla"
+#: ../../standalone/drakgw_.c:267
+msgid "Automatic reconfiguration"
+msgstr "Ail ffurfweddiad awtomatig"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "Parth NIS"
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "Antarctica"
+#: ../../standalone/drakgw_.c:268
+msgid "Show current interface configuration"
+msgstr "Dangoswch y ffurfweddiad rhag wyneb cyfredol"
+
+#: ../../standalone/drakgw_.c:269
+#, fuzzy
+msgid "Current interface configuration"
+msgstr "Dangoswch y ffurfweddiad rhag wyneb cyfredol"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:270
#, c-format
msgid ""
+"Current configuration of `%s':\n"
"\n"
-"- User Files:\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
msgstr ""
+"Ffurfweddiad presennol '%s':\n"
"\n"
-"- Ffeiliau Defnyddiwr:\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
-msgstr "Dewisiadau gosod"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Jamaica"
-msgstr "Jamaica"
+"Rhwydwaith: %s\n"
+"Cyfeiriad IP: %s\n"
+"Priodweddau IP: %s\n"
+"Gyrrwr: %s"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:283
+#, fuzzy
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 ""
-"Dynodi dyfeisiau bras i ddyfeisiau bloc (megis dig caled rhaniadau), \n"
-"ar gyfer defnydd rhaglenni megis Oracle neu chwaraewyr DVD."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Arhoswch, paratoi i osod"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "Tsiec (QWERTY)"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Dilynwch gyfernod cerdyn rhwydwaith (defnyddiôl ar gyfer gliniadur)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Dylai rhif porth fod yn gyfanrif!"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "You must choose an image file first!"
-msgstr "Rhaid dewis ffeil delwedd yn gyntaf!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Adfer o'r Ddisg Caled."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "Ychwanegu i LVM"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "Gwasanaethwr DNS"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr "Trinidad a Tobago"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "Nid yw LPD na LPRng yn cynnal argraffyddion IPP.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host name or IP."
-msgstr "Enw gwesteiwr neu IP"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Edit"
-msgstr "/_Golygu"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "syml"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "Clirio i gyd"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No test pages"
-msgstr "Dim tudalennau prawf"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr "Ynysoedd y Falkland (Malvinas)"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Addasydd %s: %s"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Boot disk creation"
-msgstr "Creu disg cychwyn"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
-msgstr "Llun"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown model"
-msgstr "Model anhysbys"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
+"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"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
+"\n"
msgstr ""
-"os wedi ei osod i iawn, gwirio ffeiliau/cyfeiriaduron ysgrifenadwy gan bawb."
-
-#: ../../help.pm:1
-#, c-format
-msgid "authentication"
-msgstr "dilysu"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now"
-msgstr "Cadw wrth Gefn Nawr"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/_Ffeil"
+"Medraf gadw eich ffurfweddiad cyfredol a chymryd eich bod eisoes wedi gosod "
+"gwasanaethwr DHCP. Os felly, dilyswch fy mod wedi darllen y rhwydwaith "
+"dosbarth C rydych yn ei ddefnyddio fel eich rhwydwaith lleol, yn gywir. Ni "
+"fyddaf yn ei newid na chyffwrdd â ffurfweddiad eich gwasanaethwr DHCP.\n"
+"\n"
+"Y cofnod DNS rhagosodedig yw'r enw gwasanaethwr storio sydd wedi ei "
+"ffurfweddu yn y mur cadarn. Mae modd i chi ei newid am eich IP DNS ISP, e."
+"e. \n"
+"\n"
+"Neu, medraf ail ffurfweddu eich rhag wyneb ac (ail)ffurfweddi gwasanaethwr "
+"DHCP ar eich cyfer.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Tynnu'r argraffydd o Star Office/OpenOffice.org/GIMP."
+#: ../../standalone/drakgw_.c:290
+msgid "Local Network adress"
+msgstr "Cyfeiriad y Rhwydwaith Lleol "
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:294
msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"Cychwyn hidlydd pecynnau ar gyfer cnewyllyn cyfres Linux 2.2 \n"
-"i greu mur gwarchod i amddiffyn eich peiriant rhag ymosodiadau \n"
-"o'r rhwydwaith."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Editable"
-msgstr "Golygadwy"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
+"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 ""
-"Pa gleient dhcp ydych chi eisiau ei ddefnyddio? (dhcp-client yw'r "
-"rhagosodedig)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr "Tamil (cynllun TSCII)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
-msgstr "Mayotte"
+"Ffurfweddiad Gwasanaethwr DHCP\n"
+"\n"
+"Mae modd dewis dewisiadau gwahanol ar gyfer ffurfweddiad DHCP.\n"
+"Os nad ydych yn gwybod ystyr y dewis, gadewch lonydd iddo.\n"
+"\n"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
-msgstr "Gosod maint hanes gorchymyn cragen. Gwerth -1 yn golygu diderfyn."
+#: ../../standalone/drakgw_.c:300
+msgid "(This) DHCP Server IP"
+msgstr "Gwasanaethwr DHCP IP (Hwn)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d KB\n"
-msgstr "%d KB\n"
+#: ../../standalone/drakgw_.c:301
+msgid "The DNS Server IP"
+msgstr "Y Gwasanaethwr DHCP IP"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Creu disg meddal awto gosod"
+#: ../../standalone/drakgw_.c:302
+msgid "The internal domain name"
+msgstr "Enw'r parth mewnol"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for scanners ..."
-msgstr "Chwilio am sganwyr..."
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
+msgstr "Amrediad cychwyn DHCP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
-msgstr "Rwsia"
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
+msgstr "Amrediad terfyn DHCP"
-#: ../../steps.pm:1
-#, c-format
-msgid "Partitioning"
-msgstr "Creu Rhaniadau"
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
+msgstr "Les rhagosodedig (mewn eiliadau)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
-msgstr "cerdyn ethernet wedi ei ganfod"
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
+msgstr "Les mewyaf (mewn eiliadau)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
-msgstr "Syslog"
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
+msgstr "Ail ffurfweddi rhag wyneb a gwasanaethwr DHCP"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create catalog!"
-msgstr "Methu creu catalog!"
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
+msgstr "Nid yw'r Rhwydwaith Leol yn terfynnu gyda '.0', tynnu allan."
-#: ../advertising/11-mnf.pl:1
+#: ../../standalone/drakgw_.c:325
#, 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 "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-"Cwblhewch eich gosodiad diogelwch gyda'r feddalwedd hawdd ei ddefnyddio sy'n "
-"cynnwys darnau o safon uchel megis mur cadarn, gwasanaethwr a chleient "
-"rwydwaith preifat rhithiol (VPN), system canfod ymyrraeth a rheolwr traffig."
+"Canfuwyd gwrthdaro posib yng nghyfeiriad LAN ffurfweddiad presennol %s!\n"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
-msgstr "Nid oes digon o le ar gyfer awto ddynodi"
+#: ../../standalone/drakgw_.c:335
+msgid "Configuring..."
+msgstr "Ffurfweddu..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "Gosod cyfrinair gwraidd"
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "Ffurfweddio sgriptiau, gosod meddalwedd, cychwyn gwasanaethwyr..."
-#: ../../security/l10n.pm:1
+#: ../../standalone/drakgw_.c:372
#, c-format
-msgid "Enable IP spoofing protection"
-msgstr "Galluogi amddiffyn sbwlio IP"
+msgid "Problems installing package %s"
+msgstr "Anhawster wrth osod pecyn %s"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:505
msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
-msgstr ""
-"Nid oes gyrrwr rhydd ar gyfer eich cerdyn sain (%s) ond mae gyrrwr "
-"perchnogol yn \"%s\" ."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group :"
-msgstr "Grwp :"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
+"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 ""
-"Ar ôl newid maint rhaniad %s, bydd yr holl ddata ar y rhaniad yma yn cael ei "
-"golli"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Ffurfweddiad cysylltiad â'r Rhyngrwyd"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
-msgstr "Ychwanegu'r enw fel eithriad i drin cyfrinair yn erbyn msec."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "Sganio am Sianel Teledu"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
-msgstr "Kernel:"
+"Mae popeth wedi ei ffurfweddu\n"
+"Gallwch rannu cysylltiad â'r Rhyngrwyd gyda chyfrifiaduron eraill ar eich "
+"Rhwydwaith Lleol gan ddefnyddio ffurfweddiad rhwydwaith awtomatig (DHCP)."
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_About..."
-msgstr "/_Ynghylch..."
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
+msgstr "Mae'r gosodiad wedi ei gyflawnu, mae wedi ei anallluogi ar hyn o bryd."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
-msgstr "Bengali"
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
+msgstr "Mae'r gosodiad wedi ei gyflawnu, mae wedi ei allluogi ar hyn o bryd."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
-msgstr "Dewis"
+#: ../../standalone/drakgw_.c:525
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Nid oes Rhannu Cysylltiad â'r Rhyngrwyd wedi eu ffurfweddu o'r blaen."
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Gwasanaethau: %d wedi eu cychwyn ar gyfer %d wedi eu cofrestri"
+#: ../../standalone/drakgw_.c:531
+msgid "Internet connection sharing configuration"
+msgstr "Ffurfweddiad rhannu cysylltiad â'r Rhyngrwyd"
-#: ../../any.pm:1
+#: ../../standalone/drakgw_.c:539
#, c-format
-msgid "Create a bootdisk"
-msgstr "Creu disg cychwyn"
+msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
+msgstr ""
+"Croeso i'r Gwasanaeth Rhannu Cysylltiad â'r Rhyngrwyd\n"
+"\n"
+"%s\n"
+"\n"
+"Cliciwch Ffurfweddu i gychwyn y dewin gosod."
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "Ynysoedd Solomon"
+#: ../../standalone/drakperm_.c:36
+msgid "group"
+msgstr "grwp"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Profwch y llygoden"
+#: ../../standalone/drakperm_.c:36
+msgid "path"
+msgstr "llwybr"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(modiwl %s)"
+#: ../../standalone/drakperm_.c:36
+msgid "permissions"
+msgstr "caniatadau"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
-msgstr "Grwp gwaith"
+#: ../../standalone/drakperm_.c:36
+msgid "user"
+msgstr "defnyddiwr"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Enw'r gwesteiwr neu IP yr argraffydd"
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
+msgstr "I fyny"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "down"
-msgstr "lawr"
+#: ../../standalone/drakperm_.c:44
+msgid "delete"
+msgstr "dileu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Path or Module"
-msgstr "Llwybr Gwesteiwr neu Fodiwl "
+#: ../../standalone/drakperm_.c:45
+msgid "edit"
+msgstr "golygu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"Dylai enw'r argraffydd gynnwys llythrennau, rhifau a'r tanlinellu, yn unig"
+#: ../../standalone/drakperm_.c:46
+msgid "Down"
+msgstr "I lawr"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Show current interface configuration"
-msgstr "Dangoswch y ffurfweddiad rhag wyneb cyfredol"
+#: ../../standalone/drakperm_.c:47
+msgid "add a rule"
+msgstr "ychwanegu rheol"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add Printer"
-msgstr "Ychwanegu Argraffydd"
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
+msgstr "dewis ffeil perm i weld/golygu"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:51
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."
+"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 ""
-"Mae'r ymresymiad yn pennu os oes gan y defnyddiwr ganiatád i gysylltu\n"
-"gyda'r gwasanaethwr X porth tcp 6000 neu beidio."
-
-#: ../../help.pm:1
-#, c-format
-msgid "Development"
-msgstr "Datblygiad"
-
-#: ../../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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Done"
-msgstr "Gorffen"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Web Server"
-msgstr "Gwasanaethwr Gwe"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "Chile"
+"Mae Drakperm yn cael ei ddefnyddio i weld ffeiliau i'w defnyddio i drwsio "
+"caniatad, perchnogion, a grwpiau drwy msec.\n"
+"Mae modd i chi olygu eich rheolau eich hunfydd yn ysgrifennu droe y rheolau "
+"rhagosodedig."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tPeidiwch cynnwys Ffeiliau System\n"
+#: ../../standalone/drakperm_.c:56
+msgid "Add a new rule at the end"
+msgstr "Ychwanegu rheol newydd ar y diwedd"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Mae'r gyrwyr argraffydd inkjet sydd wedi eu darparu gan Lexmark yn cynnal "
-"argraffyddion lleol, yn unig. Cysylltwch eich argraffydd i borth lleol neu "
-"ffurfweddwch ef i'r peiriant mae'n gysylltiedig ag ef."
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
+msgstr "Golygu'r rheol bresennol"
-#: ../../printer/printerdrake.pm:1
-#, 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!"
-msgstr ""
-"Mae eich dyfais aml bwrpas HP wedi cael ei ffurfweddu'n awtomatig i fedru "
-"sganio. Mae modd i chi sganio gyda \"scanimage\" (\"scanimage -d hp:%s\" i "
-"bennu pa un os oes gennych fwy nag un) o'r llinell orchymyn neu gyda rhag "
-"wynebau graffigol \"xscanimage\" neu \"xsane\". Os ydych yn defnyddio GIMP, "
-"medrwch sganio hefyd, drwy ddewis y man priodol yn y ddewislen \"Ffeil\"/"
-"\"Cipio\". Galwch hefyd \"man scanimage\" ar y linell orchymyn i dderbyn mwy "
-"o wybodaeth.\n"
-"\n"
-"Peidiwch defnyddio \"scannerdrake\" ar gyfer y ddyfais hon."
+#: ../../standalone/drakperm_.c:58
+msgid "Up selected rule one level"
+msgstr "Symud rheol i fyny un lefel"
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "(wedi ychwanegu %s yn barod)"
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
+msgstr "I lawr rheol hwn un lefel"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation in progress"
-msgstr "Wrthi'n gosod bootloader"
+#: ../../standalone/drakperm_.c:60
+msgid "Delete selected rule"
+msgstr "Dileu'r rheol hwn"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
-msgstr ", defnyddio gorchymyn %s"
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
+msgstr "pori"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Bysellau Alt a Shift gyda'i gilydd"
+#: ../../standalone/drakperm_.c:231
+msgid "Current user"
+msgstr "Derbyn presennol"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
-msgstr "Baneri"
+#: ../../standalone/drakperm_.c:236
+msgid "Permissions"
+msgstr "Caniatadau"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Users"
-msgstr "Ychwanegu/Diddymu Defnyddwyr"
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
+msgstr "Llwybr"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Cyfeiriad y gwesteiwr/rhwydwaith ar goll."
+#: ../../standalone/drakperm_.c:238
+msgid "Property"
+msgstr "Eiddo"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
-msgstr "bob wythnos"
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
+msgstr "sticky-bit"
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "Gosodiadau"
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
+msgstr "Set-UID"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "Nid yw IP y gwesteiwr/rhwydwaith yn gywir.\n"
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
+msgstr "Set-GID"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "Creu/Trosglwyddo allweddi wrth gefn ar gyfer SSH"
+#: ../../standalone/drakperm_.c:296
+msgid ""
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
+msgstr ""
+"Defnydd cyfeiriadur:\n"
+" dim ond perchennog y cyfeiriadur neu ffeil yn y cyfeiriadur hwn fydd yn "
+"cael ei ddileu."
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr "Dyma restr lawn o'r gwledydd sydd ar gael"
+#: ../../standalone/drakperm_.c:297
+msgid "Use owner id for execution"
+msgstr "Defnyddio enw perchennog i weithredu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Prawf tudalen arall (A4)"
+#: ../../standalone/drakperm_.c:298
+msgid "Use group id for execution"
+msgstr "Defnyddio enw grwp i weithredu"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"Os yw'r holl CDau sydd yn y rhestr gennych, cliciwch Iawn.\n"
-"Os nad oes gennych un ohonynt, Cliciwch Diddymu.\n"
-"Os mae dim ond rhai CDau sydd ar goll, yna cliciwch Iawn."
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
+msgstr "wedi ei dicio, nid fydd y perchennog a'r grwp yn cael ei newid"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
-msgstr "Arhoswch"
+#: ../../standalone/drakperm_.c:304
+msgid "Path selection"
+msgstr "Dewis llwybr"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP"
+#: ../../standalone/drakperm_.c:350
+msgid "user :"
+msgstr "defnyddiwr :"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup user files"
-msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn"
+#: ../../standalone/drakperm_.c:352
+msgid "group :"
+msgstr "grwp:"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "New"
-msgstr "Newydd"
+#: ../../standalone/draksound_.c:46
+msgid "No Sound Card detected!"
+msgstr "Heb ganfod Cerdyn Sain!"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/draksound_.c:47
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"
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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\"."
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Mae hwn yn fan pwysig ynghylch diogelwch eich system GNU/Linux; rhaid\n"
-"rhoi cyfrinair \"root\".\"root\" yw gweinyddwr y system a'r unig un sydd â'r "
-"hawl\n"
-"i wneud diweddariadau, ychwanegu defnyddwyr, newid ffurfweddiad cyffredinol\n"
-"y system, ac yn y blaen. Yn fyr mae \"root\" yn medru gwneud popeth! Dyna\n"
-"pam mae'n rhaid dewis cyfrinair sy'n anodd ei ddyfalu - bydd DrakX yn dweud\n"
-" wrthych os yw'n rhy hawdd. Fel y gwelwch, mae modd peidio gorfod cynnig\n"
-" cyfrinair, ond rydym yn argymell yn erbyn hyn, hyd yn oed am un rheswm:\n"
-" peidiwch â meddwl bod eich systemau gweithredu eraill yn ddiogel rhag\n"
-" camgymeriadau, gan eich bod wedi cychwyn o GNU/Linux. Gan fod \"root\" yn\n"
-" medru goresgyn unrhyw gyfyngiadau a dileu data'n anfwriadol ar bob "
-"rhaniad,\n"
-" drwy fynd at y rhaniadau'n ddi-hid, yna mae'n bwysig ei gwneud hi'n anodd "
-"bod\n"
-" yn \"root\".n\n"
-"\n"
-"Dylai'r cyfrinair fod yn gyfuniad o rifau a llythrennau ac o leiaf 8 nod o "
-"hyd.\n"
-"Peidiwch ysgrifennu'r cyfrinair ar bapur - bydd yn ei gwneud hi'n rhy hawdd\n"
-"gwanhau'r system.\n"
+"Nid oes Cerdyn Sain wedi ei ganfod ar eich peiriant. Gwriwch fod Cerdyn Sain "
+"sy'n cael ei gynnal gan Linux wedi ei osod yn gywir.\n"
"\n"
-"Er hynny, peidiwch â gwneud y cyfrinair yn rhy hir neu gymhleth am fod rhaid "
-"i\n"
-"chi fedri ei gofio heb ormod o drafferth.\n"
"\n"
-"Ni fydd y cyfrinair yn cael ei ddangos ar y sgrîn wrth i chi ei deipio. "
-"Felly bydd\n"
-" rhaid i chi deipio'r cyfrinair ddwywaith i leihau'r siawns o deipio gwall. "
-"Os ydych\n"
-"yn digwydd gwneud yr un gwall teipio ddwywaith, bydd rhaid defnyddio'r "
-"cyfrinair\n"
-"\"anghywir\" i gychwyn y tro cyntaf.\n"
+"Cewch ymweld â'n cronfa ddata caledwedd yn:\n"
"\n"
-"Os hoffech i fynediad i'r cyfrifiadur gael ei reoli gan wasanaethwr dilysu, "
-"cliciwch\n"
-"y botwm \"%s\".\n"
-"Os yw eich rhwydwaith yn defnyddio protocol gwasanaethau dilysu LDAP, NIS\n"
-"neu PDC Windows Domain, dewiswch un addas fel \"%s\",\n"
-"Os nad ydych yn gwybod, gofynnwch i'ch gweinyddwr rhwydwaith\n"
"\n"
-"Os ydych yn cael anhawsterau atgoffa cyfrineiriau, gallwch ddewis\n"
-"\"%s\", os na fydd eich cyfrifiadur yn cael cyswllt â'r we ac rydych\n"
-"yn ymddiried yn y defnyddiwr."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
-msgstr "Amddiffyniad ffugio cydraniad enw"
+"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/draksound_.c:54
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."
+"\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 ""
-"Yma mae angen dewis lefel diogelwch ar gyfer y peiriant. Fel rheol,\n"
-"y mwyaf agored yw'r peiriant, y mwyaf pwysig yw'r data yr uchaf\n"
-"ddylai'r lefel diogelwch fod neu fod gan y peiriant gysylltiad uniongyrchol\n"
-"gyda'r rhyngrwyd. Er hynny, mae diogelwch yn dod ar draul\n"
-"hwylustod. \n"
"\n"
-"Os nad ydych yn siwr beth i'w ddewis, dewiswch y rhagosodedig."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "Llwytho o ddisg meddal"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Mae'r argraffydd canlynol wedi ei awtoganfod"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Uses command %s"
-msgstr "Defnyddio gorchymyn %s"
+"\n"
+"\n"
+"Nodyn: os oes gennych gerdyn sain ISA PnP, bydd rhaid i chi ddefnyddio "
+"rhaglen sndconfig. Teipiwch \"sndconfig\" mewn consol."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
-msgstr "Disg Meddal Cychwyn"
+#: ../../standalone/draksplash_.c:21
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr ""
+"i weithio'n iawn mae angen 'ImageMagick'\n"
+"Cliciwch \"Iawn\" i osod 'Image Magick' neu \"Diddymu\" i orffen"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "Norwyaidd"
+#: ../../standalone/draksplash_.c:67
+msgid "first step creation"
+msgstr "creu'r cam cyntaf"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for new scanners ..."
-msgstr "Chwilio am sganiwr newydd..."
+#: ../../standalone/draksplash_.c:70
+msgid "final resolution"
+msgstr "cydraniad terfynnol"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Gwasanaethwr Gwe Fyd Eang Apache"
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+msgid "choose image file"
+msgstr "dewis ffeil delwedd"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "graddiad y cpu (cynhyrchu rhif is-fodel)"
+#: ../../standalone/draksplash_.c:72
+msgid "Theme name"
+msgstr "Enw Thema"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "select path to restore (instead of /)"
-msgstr "dewis llwybr arall i adfer ( yn lle / )"
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
+msgstr "Pori"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
msgid "Configure bootsplash picture"
msgstr "Ffurfweddu llun croeso cychwyn"
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr "Georgia"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "Tsieina"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
+#: ../../standalone/draksplash_.c:90
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
-"(Gwnewch yn siwr bod eich argraffyddion wedi eu cysylltu â'u troi ymlaen).\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "Darllen data am argraffyddion gosodedig..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
-msgstr "Dileu Nawr"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "Gwasanaethwr"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Rhowch ddisg meddal wedi ei fformatio i FAT yng ngyrrwr %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "mae iawn yn golygu fod gan y cydbrosesydd rhifyddegol"
-
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Arhoswch...Gosod y ffurfweddiad"
-
-#. -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
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Croeso i GRUB, y dewiswr systemau gweithredu!"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
-msgstr "Rheolyddion SCSI"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr "ar wasanaethwr LPD \"%s\", argraffydd \"%s\""
-
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Dewis rheolwr arddangos"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Enw Gwesteiwr Zeroconf"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
-msgstr "Gosodiad addasu/cofnod crontab:"
-
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "dylai cyfeiriad IP fod mewn fformat 1.2.3.4"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Ffurfweddu'r system argraffu CUPS"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "Ecuador"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Add an item"
-msgstr "Ychwanegu eitem"
+"blwch testun cydfesuryn x\n"
+"mewn rhif nodau"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Mae' argraffyddion y cyfrifiadur hwn ar gael ar gyfer rhai eraill"
+#: ../../standalone/draksplash_.c:91
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr ""
+"blwch testun cydfesuryn y\n"
+"mewn rhif nodauy"
-#: ../../lang.pm:1
-#, c-format
-msgid "China (Hong Kong)"
-msgstr "Tseina (Hong Kong)"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
+msgstr "lled testun"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Methu canfod ffeil delwedd angenrheidiol '%s'."
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
+msgstr "uchder blwch testun"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr "Heb ganfod cerdyn sain. Ceisiwch \"harddrake\" wedi'r gosodiad"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
+"bar cynnydd cydfesuryn x\n"
+"yn ei gornel uchaf chwith"
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:95
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
-"Porth annilys wedi ei gynnig: %s.\n"
-"Y fformat cywir yw \"port/tcp\" neu \"port/udp\", \n"
-"lle mae porth rhwng 1 a 65535."
+"bar cynnydd cydfesuryn y\n"
+"yn ei gornel uchaf chwith"
-#: ../../any.pm:1
-#, c-format
-msgid "Shell"
-msgstr "Cragen"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
+msgstr "lled y bar cynnydd"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome a Principe"
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
+msgstr "uchder y bar cynnydd"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
+msgstr "lliw'r bar cynnydd"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
-msgstr ""
-"Methu mewngofnodi gan ddefnyddio enw defnyddiwr %s (cyfrinair anghywir?)"
+#: ../../standalone/draksplash_.c:113
+msgid "Preview"
+msgstr "rhagolwg"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaidjan (lladin)"
+#: ../../standalone/draksplash_.c:115
+msgid "Save theme"
+msgstr "cadw thema"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package not installed"
-msgstr "Pecyn heb ei osod"
+#: ../../standalone/draksplash_.c:116
+msgid "Choose color"
+msgstr "dewis lliw"
-#: ../../lang.pm:1
-#, c-format
-msgid "American Samoa"
-msgstr "American Samoa"
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
+msgstr "Darddangos logo yn y Consol"
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Become a MandrakeExpert"
-msgstr "Dewch yn MandrakeExpert"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
+msgstr "Gwneud neges y cnewyllyn yn dawel drwy ragosodiad"
-#: ../../standalone/drakconnect:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, c-format
-msgid "Protocol"
-msgstr "Protocol"
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr "Does gan y thema ddim croeso cychwyn yn %s!"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Copïo'r ffontiau ar eich system!"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
+msgstr "cadw thema Croeso cychwyn..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
-msgstr "Cymorth Harddrake"
+#: ../../standalone/draksplash_.c:428
+msgid "ProgressBar color selection"
+msgstr "Dewis lliw ProgressBar"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
+#: ../../standalone/draksplash_.c:449
+msgid "You must choose an image file first!"
+msgstr "Rhaid dewis ffeil delwedd yn gyntaf!"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Ffurfweddiad Gwasanaethwr Terfynell Mandrake"
+#: ../../standalone/draksplash_.c:458
+msgid "Generating preview ..."
+msgstr "Cynhyrchu rhagolwg..."
-#: ../../standalone/drakbackup:1
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "%s Rhagolwg Croeso Cychwyn (%s)"
+
+#: ../../standalone/drakxtv_.c:46
msgid ""
+"XawTV isn't installed!\n"
"\n"
-" DrakBackup Report Details\n"
"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
+"Nid yw XawTV wedi ei osod!\n"
"\n"
-" Manylion Adroddiad DrakBackup \n"
"\n"
+"Os oes gennych gerdyn teledu ond nid yw DrakX wedi ei ganfod (dim modiwl "
+"bttv ar saa7134\n"
+"yn \"/etc/modules\") na xawtv wedi ei osod, anfonwch canlyniad\n"
+"\"lspcidrake -v -f\" i \"install\\@mandrakesoft.com\"\n"
+"gyda phwnc \"undetected TV card\".\n"
"\n"
+"\n"
+"Mae modd ei osod wrth deipio \"urpmi xawtv\" fel gwraidd mewn consol."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
-msgstr "Adfer pob cadw wrth gefn"
+#: ../../standalone/drakxtv_.c:63
+msgid "Canada (cable)"
+msgstr "Canada (cabl)"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
-msgstr " ar borth paralel #\"%s"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
+msgstr "UDA (darlledu)"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
-msgstr ""
-"Gosod lleiafswm hyd gyfrinair a lleiafswm digidau a lleiafswm llythrennau "
-"mawr."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
+msgstr "UDA (cabl)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr "os wedi ei osod i iawn, gwirio pyrth agored."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
+msgstr "UDA (cable-hrc)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Bydd yn cymryd ychydig o amser i ddileu'r cyfrwng."
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
+msgstr "Tseina (darlledu)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "Does dim modd i chi ddewis/dad-ddewis y pecyn"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
+msgstr "Siapan (darlledu)"
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "Rhybudd"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
+msgstr "Siapan (cable)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Ffeiliau Eraill: \n"
+#: ../../standalone/drakxtv_.c:65
+msgid "East Europe"
+msgstr "Dwyrain Ewrop"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name"
-msgstr "Enw gwesteiwr pell"
+#: ../../standalone/drakxtv_.c:65
+msgid "France [SECAM]"
+msgstr "Ffrainc(SECAM)"
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr "mynediad i raglenni X"
+#: ../../standalone/drakxtv_.c:65
+msgid "Ireland"
+msgstr "Iwerddon"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "Cyfrifo maint rhaniad Windows"
+#: ../../standalone/drakxtv_.c:65
+msgid "West Europe"
+msgstr "Gorllewin Ewrop"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Adnewyddu"
+#: ../../standalone/drakxtv_.c:66
+msgid "Australia"
+msgstr "Awstralia"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Italy"
-msgstr "Yr Eidal"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
+msgstr "Zeland Newydd"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
-msgstr "Cayman Islands"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
+msgstr "De Affrica"
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "gwall dadosod %s: %s"
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
+msgstr "Yr Ariannin"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "Enw'r argraffydd"
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
+msgstr "Teledu Cebl Opus Awstralia"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
-msgstr "dymunol"
+#: ../../standalone/drakxtv_.c:102
+msgid ""
+"Please,\n"
+"type in your tv norm and country"
+msgstr "Rhowch eich safon teledu a gwlad"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do it!"
-msgstr "Gwna!!"
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
+msgstr "Safon Teledu:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
-msgstr "Nid yw %s yn ymateb"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
+msgstr "Ardal:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select model manually"
-msgstr "Dewiswch y model gyda llaw"
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
+msgstr "Wrthi'n sganio am sianeli Teledu ..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Format"
-msgstr "Fformatio"
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
+msgstr "Sganio am Sianel Teledu"
-#: ../../network/adsl.pm:1
-#, 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'"
-msgstr ""
-"Y ffordd mwyaf cyffredin i gysylltu â adsl yw pppoe\n"
-"Mae rhai cysylltiadau'n defnyddio pptp, a rhai dhcp.\n"
-"Os nad ydych yn gwybod pa un, dewiswch 'pppoe'."
+#: ../../standalone/drakxtv_.c:120
+msgid "There was an error while scanning for TV channels"
+msgstr "Digwyddodd gwall wrth sganio am sianelu teledu"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
-msgstr "Amrywiol"
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
+msgstr "Nid yw XawTV wedi ei osod!"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
-msgstr "Zip"
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
+msgstr "Diwrnod da i chi!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
-msgstr "Bysell Alt chwith"
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Nawr mae modd i chi redeg Xawtv (o dan XWindows)!\n"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Load setting"
-msgstr "Gosodiad llwyth"
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
+msgstr "Heb ganfod Cerdyn Teledu!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:148
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"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"Nid oes Cerdyn Teledu wedi ei ganfod ar eich peiriant. Gwiriwch fod Cerdyn "
+"Fideo/Teledu sy'n cael ei gynnal gan Linux wedi ei osod yn gywir.\n"
"\n"
"\n"
-"Nid oedd Printerdrake yn medru adnabod eich argraffydd %s. Dewiswch yr un "
-"cywir o'r rhestr."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Gosod yr argraffydd fel y rhagosodedig"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"Cewch ymweld â'n cronfa ddata caledwedd yn:\n"
"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
"\n"
-"Nodwch yr argraffydd rydych am ei drosglwddo a chliciwch\n"
-"\"Trosglwyddo\"."
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
-msgstr "Albaniaidd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "Lithuania"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "Cryno"
+"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Canfyddwyd model %s %s"
+#: ../../standalone/harddrake2_.c:17
+msgid "Alternative drivers"
+msgstr "Gyrrwyr eraill"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
-msgstr "Mae Mandrake Linux wedi dewis y feddalwedd orau ar eich cyfer"
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
+msgstr "rhestr o yrrwr eraill ar gyfer eich cerdyn sain"
-#: ../../any.pm:1
-#, c-format
-msgid "Local files"
-msgstr "Ffeiliau lleol"
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
+msgstr "Bws"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "efallai"
+#: ../../standalone/harddrake2_.c:21
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+"dyma'r bws corfforol i'r ddyfais gael ei gysylltu iddo(e.e. PCI, USB,...)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
-msgstr "Panama"
+#: ../../standalone/harddrake2_.c:22
+msgid "Channel"
+msgstr "Sianel"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Can't open %s!"
-msgstr "Methu agor %s!"
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
+msgstr "Sianel EIDE/SCSI"
-#: ../../Xconfig/various.pm:1
-#, 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?"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
msgstr ""
-"Mae'n edrych fel bod gan eich cerdyn graffig gyswlltTV-OUT.\n"
-"Mae modd ei ffurfweddu i weithio drwy byffer ffrâm.\n"
-"\n"
-"Rhaid cysylltu eich cerdyn graffig â'ch teledu cyn cychwyn eich "
-"cyfrifiadur.\n"
-"Dewiswch \"TVout\" yn y cychwynnydd\n"
-"\n"
-"Ydy'r nodwedd hon gennych?"
-
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "Monitor"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:23
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"
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
msgstr ""
-"Rydych ar fin gosod y modd i argraffu i gyfrif Windows gyda chyfrinair. "
-"Oherwydd gwall ym mhensaernïaeth meddalwedd cleient Samba mae'r cyfrinair yn "
-"cael ei osod mewn testun plaen ar y llinell orchymyn y cleient Samba sy'n "
-"cael ei ddefnyddio i anfon gwaith argraffu i'r gwasanaethwr Windows. Felly "
-"mae'n bosibl i bob defnyddiwr ar y peiriant i arddangos y cyfrinair ar y "
-"sgrîn drwy'r gorchymyn \"ps auxwww\".\n"
-"\n"
-"Rydym yn argymell eich bod yn defnyddio un o'r dulliau gwahanol hyn ( yn yr "
-"holl achosion hyn, rhaid i chi wneud yn siwr mae dim ond peiriannau o'ch "
-"rhwydwaith lleol chi sydd â mynediad i'ch gwasanaethwr Windows, e.e. drwy "
-"gyfrwng mur cadarn).\n"
-"\n"
-"Defnyddio cyfrif heb gyfrinair ar eich gwasanaethwr Windows, defnyddio "
-"cyfrif \"Ymwelydd\" neu gyfrif arbennig ar gyfer argraffu. Peidiwch tynnu "
-"eich amddiffyniad cyfrinair o gyfrif personol na'r cyfrif gweinyddwr.\n"
-"\n"
-"Gosod eich gwasanaethwr Windows i wneud yr argraffydd ar gael o dan brotocol "
-"LPD. Yna gosod argraffu o'r peiriant hwn gyda chyswllt \"%s\" yn "
-"Printerdrake.\n"
-"\n"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil o liwiau (16 did)"
+#: ../../standalone/harddrake2_.c:26
+msgid "Bus identification"
+msgstr "Dynodiad bws"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/harddrake2_.c:27
msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-"\n"
-"Cadw ar Ddisg caled ar lwybr: %s\n"
+"- dyfeisiau PCI ac USB : dyma restr gwerthwyr, dyfais, iswerthwyr ac "
+"isddyfais PCI/USB"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Tynnu ffontiau oddi ar eich system!"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
+msgstr "Lleoliad ar y bws"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../standalone/harddrake2_.c:30
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."
+"- 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 ""
-"Rhybudd, mae'r addaswr rhwydwaith (%s) wedi ei ffurfweddu eisoes.\n"
-"\n"
-"Ydych chi eisiau ail ffurfweddiad awtomatig?\n"
-"\n"
-"Medrwch ei wneud gyda llaw ond mae'n rhaid i chi wybod beth ydych yn ei "
-"wneud."
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "Rhyngwyneb graffigol wrth gychwyn"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
-msgstr " adsl"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Dim digon o raniadau ar gyfer RAID lefel %d\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "fformatio disgiau meddal derbyniol i'r gyrrwr"
+"- dyfeisiau pci: dyma slot PCI, dyfais a gwaith y cerdyn\n"
+"- dyfeisiau ide: mae'r ddyfais un ai yn was neu feistr\n"
+"- dyfeisiau scsi: dynodiad dyfeisiau scsi a'r bws scsi"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "Methodd copïo'r cadarnwedd, heb ganfod ffeil %s"
+#: ../../standalone/harddrake2_.c:33
+#, fuzzy
+msgid "Cache size"
+msgstr "maint darn"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: true"
-msgstr "ffurfweddiad lleol: true"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
msgstr ""
-"Mae'r argraffyddion canlynol wedi eu ffurfweddi. Cliciwch ar un i newid ei "
-"osodiadau; ei wneud yn argraffydd rhagosodedig; i edrych am wybodaeth amdano."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connected"
-msgstr "Wedi cysylltu"
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
-msgstr "Macedonaidd"
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "Mali"
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
-msgstr "Rheolyddion pontydd a system"
+#: ../../standalone/harddrake2_.c:36
+#, fuzzy
+msgid "Cpuid level"
+msgstr "Lefel diogelwch"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "/Ffeil/_Cawd"
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "No details"
-msgstr "Dim manylion"
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
+msgstr ""
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "hyfryd iawn"
+#: ../../standalone/harddrake2_.c:37
+msgid ""
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Preview"
-msgstr "rhagolwg"
+#: ../../standalone/harddrake2_.c:38
+#, fuzzy
+msgid "This field describes the device"
+msgstr "mae'r maes yn disgrifio'r ddyfais"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Remote Control"
-msgstr "Rheoli o Bell"
+#: ../../standalone/harddrake2_.c:39
+msgid "Old device file"
+msgstr "Hen ffeil dyfais"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select media for backup..."
-msgstr "Dewiswch y cyfrwng ar gyfer cadw wrth gefn..."
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
+msgstr "hen enw dyfais sefydlog yn cael ei ddefnyddio mewn pecyn dev"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
-msgstr "E-bost anghywir"
+#: ../../standalone/harddrake2_.c:41
+msgid "New devfs device"
+msgstr "Dyfais devfs newydd"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Gwasanaethwr XFree86: %s\n"
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr "enw dyfais deinamig yn cael ei gynhyrchu gan incore kernel devfs"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "Caniatáu Cleientiaid Tenau"
+#: ../../standalone/harddrake2_.c:43
+msgid "Module"
+msgstr "Modiwl"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgaidd (gosodiad \"Rwsiaidd\")"
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr "y modiwl o'r cnewyllyn GNU/Linux sy'n trin y ddyfais honno"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_Dewisiadau"
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Your printer model"
-msgstr "Model eich argraffydd"
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
+msgstr ""
-#: ../../any.pm:1
-#, 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)."
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
msgstr ""
-"\n"
-"\n"
-"(RHYBUDD! Rydych yn defnyddio XFS ar gyfer eich rhaniad gwraidd,\n"
-"bydd creu disg cychwyn ar ddisg meddal 1.44Mb'n debygol o fethu,\n"
-"oherwydd mae XFS yn gofyn am yrrwr mawr iawn)."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/harddrake2_.c:46
msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-"\n"
-"- Dileu ffeiliau tar y disg caled wedi'r cadw wrth gefn.\n"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
msgstr ""
-"Heb ganfod delwedd CD neu DVD, copïwch y rhaglen osod a'r ffeiliau rpm."
-#: ../advertising/04-configuration.pl:1
-#, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "Offeryn ffurfweddiad amlbwrpas Mandrake"
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
+msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Save"
-msgstr "Gorffen"
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
-msgstr "Nid yw %s yn cael ei gynnal"
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr "Llwytho'r gyrwyr ar gyfer eich dyfeisiau usb."
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Disk"
-msgstr "Disg"
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
+msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Rhowch URI dyfais argraffydd"
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
+msgstr ""
-#: ../advertising/01-thanks.pl:1
-#, c-format
+#: ../../standalone/harddrake2_.c:53
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."
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-"Mae llwyddiant MandrakeSoft yn seiliedig ar egwyddor Meddalwedd Rhydd. Mae "
-"eich system weithredu newydd yn ganlyniad gwaith cydweithredol ar ran y "
-"Gymuned Linux byd-eang"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "Israel"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "French Guiana"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "default:LTR"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
-msgstr "Rhaid rhoi llinell gorchymyn!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
-msgstr "Dewis defnyddwyr gyda llaw"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Trosglwyddo ffurfweddiad yr argraffydd"
+#: ../../standalone/harddrake2_.c:55
+#, fuzzy
+msgid "Floppy format"
+msgstr "Fformatio"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Ydych chi am alluogi argraffu ar yr argraffyddion enwi'r uchod?\n"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of suid root files"
-msgstr "Gwirio ychwanegu/tynnu ffeiliau gwraidd suid."
+#: ../../standalone/harddrake2_.c:56
+#, fuzzy
+msgid "Level"
+msgstr "lefel"
-#: ../../any.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
msgstr ""
-"I hyn weithio gyda 2WK PDC, bydd angen i chi gael y gweinyddwr i redeg C:"
-"\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /add ac "
-"ailgychwyn y gwasanaethwr.Bydd angen hefyd yr enw defnyddiwr/cyfrinair "
-"Gweinyddiaeth Parth i uno'r peiriant â'r parth Windows(NM).\n"
-"Os nad yw'r rhwydwaith wedi ei alluogi eto, bydd DrakX yn ceisio ymuno â'r "
-"parth ar ol y cam o gychwyn y rhwydwaith.\n"
-"Os bydd y cam hwn yn methu am ryw reswm ac nid yw dilysiad yn gweithio, "
-"rhedwch 'smbpasswd -j DOMAIN -U USER%%PASSWORD' gan ddefnyddio eich Parth "
-"Windows(NM), a'ch Enw Defnyddiwr Gweinyddol/Cyfrinair ar ôl cychwyn eich "
-"system.\n"
-"Bydd y gorchymyn 'wbinfo -t' yn gwirio a yw eich cyfrinachau dilysu'n addas."
-#: ../../printer/main.pm:1
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s(Porth %s)"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
+msgstr "Dosbarth y cyfrwng"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Defnyddiwch gysylltiad rhwydwaith i gadw wrth gefn"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
+msgstr "dosbarth y dyfais caledwedd"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Kernel version"
-msgstr "Fersiwn cnewyllyn"
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+msgid "Model"
+msgstr "Model"
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:58
+msgid "hard disk model"
+msgstr "Model disg caled"
+
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
msgstr ""
-"Mae'n amser penderfynu pa raglenni rydych am eu gosod ar eich\n"
-"system. Mae yna filoedd o becynnau ar gael ar gyfer Mandrake Linux, ond\n"
-"does dim disgwyl i chi wybod amdanyn nhw i gyd.\n"
-"\n"
-"Mae pecynnau wedi eu trefnu i grwpiau yn dibynnu ar ddefnydd penodol\n"
-"eich peiriant. Mae gan Mandrake Linux bedair gosodiad rhagosodedig. Mae\n"
-"modd meddwl amdanynt fel blychau ar gyfer pecynnau amrywiol, fel mae modd\n"
-"i \"Fan Gwaith\" fod a rhaglenni o \"Datblygu\" wedi eu gosod.\n"
-"\n"
-"Mae'r pecynnau wedi eu didoli yn grwpiau sy'n cyfateb i ddefnydd penodol\n"
-"ar eich peiriant. Mae'r grwpiau wedi eu rhannu yn bedair adran:\n"
-"\n"
-" * \"%s\": os ydych yn bwriadu defnyddio eich peiriant fel man\n"
-"gwaith yna dewiswch un o'r grwpiau cyfatebol.\n"
-"\n"
-" * \"%s\": os yw'r peiriant yn cael ei ddefnyddio i raglenni, dewiswch\n"
-" y grwpiau perthnasol\n"
-"\n"
-" * \"%s\": os ydych am i'r peiriant gael ei ddefnyddio fel\n"
-"gwasanaethwr bydd modd i chi ddewis y gwasanaethau cyffredin rydych am\n"
-"eu cael ar eich peiriant.\n"
-"\n"
-" * \"%s\": dyma'r lle i ddewis eich amgylchedd graffigol.\n"
-"Rhaid dewis o leiaf un er mwyn cael man gwaith graffigol!\n"
-"\n"
-"Bydd symud cyrchwr y llygoden dros enw grwp yn amlygu esboniad byr am y\n"
-"grwp hwnnw. Os ydych wedi dad-ddewis pob grwp wrth wneud gosodiad\n"
-"arferol ac nid uwchraddiad), bydd dialog yn ymddangos a chynnig\n"
-"dewisiadau amrywiol ar gyfer y gosodiad lleiaf\n"
-"\n"
-" * \"%s\" Gosod y nifer lleiaf o becynnau i gael penbwrdd graffigol\n"
-"i weithio.\n"
-"\n"
-" * \"%s\" Gosod y system sylfaenol yn ogystal\n"
-"a gwasanaethau elfennol a'u dogfennau. Mae'r gosodiad hwn yn addas\n"
-"ar gyfer gosod gwasanaethwr.\n"
-"\n"
-" * \"%s\" Gosod y lleiafswm posibl i greu system Linux\n"
-"llinell orchymyn weithredol. Tua 65MB o faint.\n"
-"\n"
-"Mae clicio blwch \"%s\". yn ddefnyddiol os ydych\n"
-"yn gyfarwydd gyda'r pecynnau sy'n cael eu cynnig neu os ydych eisiau\n"
-"rheolaeth lwyr dros yr hyn sy'n cael ei osod\n"
-"\n"
-"Os ydych wedi cychwyn y gosodiad ym modd \"%s\", bydd modd i\n"
-" chi ddad-ddewis pob grwp er mwyn osgoi gosod unrhyw becyn newydd.\n"
-"Mae hyn yn ddefnyddiol ar gyfer trwsio neu ddiweddaru system sy'n bod "
-"eisoes.\n"
-"\n"
-" "
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "Derbyn defnyddiwr"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Model name"
+msgstr "Enw'r modiwl"
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
-msgstr "Gwasanaethwr"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Official vendor name of the cpu"
+msgstr "enw gwerthwr y ddyfais"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
-msgstr "Bysell Shift chwith"
+#: ../../standalone/harddrake2_.c:61
+msgid "Number of buttons"
+msgstr "Nifer o fotymau"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " local network"
-msgstr " rhwydwaith lleol "
+#: ../../standalone/harddrake2_.c:62
+#, fuzzy
+msgid "Name"
+msgstr "Enw :"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "Dewis gwael, ceisiwch eto\n"
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "network printer port"
+msgstr ", rhwydwaith argraffu \"%s\", porth %s"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
-msgstr "Adroddiad syslog i gonsol 12"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
+msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search new servers"
-msgstr "Chwiliwch wasanaethwyr newydd"
+#: ../../standalone/harddrake2_.c:64
+#, fuzzy
+msgid "the number of the processor"
+msgstr "lliw'r bar cynnydd"
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
-msgstr "Heard and McDonald Islands"
+#: ../../standalone/harddrake2_.c:65
+#, fuzzy
+msgid "Model stepping"
+msgstr "gosodiad llwyth"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
-msgstr "Dim gyrwyr eraill"
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "Cyffredinol > Arbenigwr"
+#: ../../standalone/harddrake2_.c:66
+#, fuzzy
+msgid "The type of bus on which the mouse is connected"
+msgstr "Dewiswch ba borth cyfresol mae eich llygoden wedi cysylltu iddi"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
-msgstr "(ar y peiriant hwn)"
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
+msgstr "enw gwerthwr y ddyfais"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Dylai cyfeiriad Porth fod mewn fformat 1.2.3.4"
+#: ../../standalone/harddrake2_.c:68
+#, fuzzy
+msgid "the vendor name of the processor"
+msgstr "enw gwerthwr y ddyfais"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
-msgstr ""
-"Wedi canfod winmodem \"%s\" , hoffech chi osod y feddalwedd angenrheidiol?"
+#: ../../standalone/harddrake2_.c:82
+msgid "/_Quit"
+msgstr "/_Gadael"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Edrych ar becynnau wedi eu gosod yn barod"
+#: ../../standalone/harddrake2_.c:83
+#, fuzzy
+msgid "/Autodetect _printers"
+msgstr "Awto ganfyddwyd"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Defnyddio Cadw wrth Gefn differu"
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
+msgstr "/_Dewisiadau"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Driver"
-msgstr "Gyrrwr"
+#: ../../standalone/harddrake2_.c:85
+#, fuzzy
+msgid "/Autodetect _modems"
+msgstr "Awto ganfyddwyd"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr "Bydd Linuxconf yn trefnu ar adegau i gyflawni amrywiol"
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
+msgstr "/_Cymorth"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVD-R device"
-msgstr "Dyfais DVDR"
+#: ../../standalone/harddrake2_.c:89
+msgid "/_Help..."
+msgstr "/_Cymorth..."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Argraffydd ar wasanaethwr lpd pell"
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
+msgstr "Cymoerh Harddrake"
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/harddrake2_.c:93
msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
+"Description of the fields:\n"
"\n"
-"-You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
msgstr ""
-"Cyn gosod unrhyw ffontiau, gwnewch yn siwr bod gennych yr hawl i'w defnyddio "
-"a'u gosod ar eich system.\n"
+"Disgrifiad y meysydd:\n"
"\n"
-"- Medrwch osod y ffontiau yn y dull arferol. Mewn achosion prin, gall "
-"ffontiau ffug rewi eich Gwasanaethwr X."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:96
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."
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
msgstr ""
-"Yaboot yw'r cychwynnydd ar gyfer caledwedd NewWorld MacIntosh. Mae'n\n"
-"medru cychwyn GNU/Linux, MacOS neu MacOSX os ydynt ar eich peiriant.\n"
-"Fel rheol, mae'r systemau gweithredu hyn yn cael eu canfod yn gywir a'u\n"
-"gosod. Os nad yw hyn yn digwydd, mae modd i chi ychwanegu eu cofnod\n"
-"gyda llaw ar y sgrîn hwn. Byddwch ofalus i ddewis y paramedrau cywir.\n"
-"\n"
-"Prif ddewisiadau Yaboot yw:\n"
-"\n"
-" * Cychwyn Neges: neges testun syml sy'n cael ei ddangos cyn yr anogwr\n"
-" cychwyn\n"
-"\n"
-" * Cychwyn y Ddyfais: yn dangos lle rydych am osod yr wybodaeth\n"
-"angenrheidiol i gychwyn GNU/Linux. Yn gyffredinol, byddwch wedi creu\n"
-"rhaniad ymlwythwr yn gynt, i ddal yr wybodaeth.\n"
-"\n"
-" * Oediad Open Firmware: yn wahanol i LILO, mae yna ddau oediad ar gael\n"
-"gyda yaboot. Mae'r cyntaf yn cael ei fesur mewn eiliadau a dyma pryd hyn\n"
-"mae modd dewis rhwng CD, cychwyn OF, MacOS neu Linux\n"
-"\n"
-" * Oediad Cychwyn y Cnewyllyn: mae'r oediad yn debyg i oediad cychwynLILO. "
-"Wedi dewis Linux, bydd oediad o 0.1 eiliad cyn bod eich cnewyllyn\n"
-"rhagosodedig yn cael ei ddewis.\n"
-"\n"
-" * Galluogi Cychwyn o'r CD?: mae dewis hwn yn caniatáu i chi ddewis \"C\"\n"
-"am CD ar anogwr y cychwyn cyntaf.\n"
-"\n"
-" * Galluogi Cychwyn OF?: mae dewis hwn yn caniatáu i chi ddewis |\"N\"\n"
-"am Open Firmware ar anogwr y cychwyn cyntaf.\n"
-"\n"
-" * System Weithredu Rhagosodedig: mae modd dewis pa system weithredu\n"
-"fydd yn cychwyn drwy ragosodiad pan ddaw'r Open Firmware i ben."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
-msgstr "Mercher"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "Yr Almaen"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
-msgstr "Awstria"
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "Dim llygoden"
+#: ../../standalone/harddrake2_.c:96
+#, fuzzy
+msgid "Select a device !"
+msgstr "Dewiswch sganiwr"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "Dewiswch faint eich gofod CD/DVD (MB)"
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
+msgstr "/_Adrodd ar Wallau"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check permissions of files in the users' home"
-msgstr "Gwirio caniatâd ffeiliau yng nghartref y defnyddiwr."
+#: ../../standalone/harddrake2_.c:102
+msgid "/_About..."
+msgstr "/_Ynghylch..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr "Rhedwch \"sndconfig\" wedi'r gosodiad i ffurfweddu'ch cerdyn sain"
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
+msgstr "Ynghylch Harddrake"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "Cau'r goeden"
+#: ../../standalone/harddrake2_.c:105
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Dyma HardDrake, offeryn ffurfweddu caledwedd Mandrake.\n"
+"Fersiwn:"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Ffurfweddwr Awto-Osod"
+#: ../../standalone/harddrake2_.c:106
+msgid "Author:"
+msgstr "Awdur"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "Ffurfweddu rhwydwaith"
+#: ../../standalone/harddrake2_.c:113
+msgid "Detection in progress"
+msgstr "Canfod ar waith"
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "Lle rydych chi eisiau gosod y cychwynnydd?"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Dewiswch eich dewis iaith ar gyfer y gosod a'r defnydd o'r system yn\n"
-"effeithio iaith y ddogfennaeth, y gosodwr a'r system yn gyffredinol.\n"
-"Dewiswch eich ardal ac yna eich iaith.\n"
-"\n"
-"Bydd clicio ar y botwm \"%s\" yn caniatáu i chi ddewis ieithoedd eraill\n"
-"i'w gosod ar eich peiriant gwaith. Bydd dewis ieithoedd eraill yn gosod\n"
-"ffeiliau penodol sy'n cynnwys dogfennaeth a rhaglenni yn yr ieithoedd\n"
-"hynny. Er enghraifft, os ydych yn westeiwr ar gyfer defnyddwyr o Sbaen,\n"
-"dewiswch Cymraeg fel y rhagosodedig yng ngolwg coeden ac yn yr Uwch\n"
-"cliciwch ar \"%s\". \n"
-"\n"
-"Sylwer bod modd gosod mwy nag un iaith. Mae modd i chi ddewis mwy\n"
-"nag un, neu hyd yn oed eu gosod i gyd, drwy ddewis y blwch \"%s\".\n"
-"Mae dewis cefnogaeth i bob iaith yn golygu gosod cyfieithiadau, ffontiau, \n"
-"gwiryddion sillafu, ag ati, ar gyfer yr iaith honno.Yn ychwanegol mae dewis\n"
-"\"%s\" yn gorfodi'r system i ddefnyddio unicode (UTF-8).\n"
-"Sylwer mai nodwedd arbrofol yw hon . Os ydych yn dewis ieithoedd\n"
-"gwahanol sy'n defnyddio amgodiad gwahanol bydd y gefnogaeth i utf-8\n"
-"yn cael ei osod, beth bynnag.\n"
-"\n"
-"I newid rhwng yr ieithoedd amrywiol sydd ar y system medrwch gychwyn\n"
-"y gorchymyn \"/usr/sbin/localedrake\" fel \"root\" i newid yr iaith\n"
-"sy'n cael ei ddefnyddio gan y system gyfan. Bydd rhedeg y gorchymyn fel\n"
-"defnyddiwr cyffredin yn gweithio dim ond ar gyfer yr unigolyn hwnnw."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr "Nid yw %s yn cael ei gynnal gan y fersiwn hwn o Mandrake Linux"
+#: ../../standalone/harddrake2_.c:119
+msgid "Harddrake2 version "
+msgstr "Harddrake2 fersiwn "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "tape"
-msgstr "tâp"
+#: ../../standalone/harddrake2_.c:126
+msgid "Detected hardware"
+msgstr "Caledwedd canfyddwyd"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr "Cleient DHCP"
+#: ../../standalone/harddrake2_.c:129
+msgid "Information"
+msgstr "Gwybodaeth"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr ""
-"Caniatáu/Gwrthod rhestr defnyddwyr ar y system ar reolwyr arddangos (kdm and "
-"gdm)."
+#: ../../standalone/harddrake2_.c:131
+msgid "Configure module"
+msgstr "Modd ffurfweddu"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Llygoden Logitech (cyfresol, hen fath C7)"
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
+msgstr "Rhedeg offeryn ffurfweddu"
-#: ../../partition_table.pm:1
+#: ../../standalone/harddrake2_.c:143
#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Methodd adfer o ffeil %s: %s"
+msgid "Running \"%s\" ..."
+msgstr "Rhedeg \"%s\"..."
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:159
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"
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-"Nid wyf yn medru darllen tabl rhaniad %s, mae'n rhy lygredig. :(\n"
-"Mae modd i mi fynd ymlaen i ddiystyru rhaniadau gwael (Bydd yr\n"
-"HOLL DDATA'n cael ei golli!). Yr ateb arall yw peidio gadael i\n"
-"DrakX newid y tabl rhaniad. (y gwall yw %s)\n"
-"\n"
-"Ydych chi'n cytuno i golli'r holl raniadau?\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Find Package"
-msgstr "Canfod Pecyn"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Ydych chi'n siwr eich bod am osod argraffu ar y peiriant hwn?\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "New devfs device"
-msgstr "Dyfais devfs newydd"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
-msgstr "GWALL; methu taenu %s."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Boot Style Configuration"
-msgstr "Ffurfweddu'r Math o Gychwyn"
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
+msgstr "cynradd"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Cydweddi amser awtomatig"
+#: ../../standalone/harddrake2_.c:231
+msgid "secondary"
+msgstr "eilradd"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "Heb ganfod y ffeiliau wrth gefn yn %s."
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect modems"
+msgstr "Awto ganfyddwyd"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "Armenaidd (ffonetig)"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect printers"
+msgstr "Awto ganfyddwyd"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Card model:"
-msgstr "Model cerdyn:"
+#: ../../standalone/harddrake2_.c:261
+#, fuzzy
+msgid "/Options"
+msgstr "/_Dewisiadau"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
-msgstr "Cleient Tenau"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "Dewiswch gynllun alweddell"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
-msgstr "Diolch am ddewis Mandrake Linux 9.2"
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr "Ydych chi eisiau i'r Backspace ddychwelyd Dileu yny consol?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Start Server"
-msgstr "Cychwyn y Gwasanaethwr"
+#: ../../standalone/livedrake_.c:18
+msgid "Change Cd-Rom"
+msgstr "Newid CD-Rom"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
+#: ../../standalone/livedrake_.c:19
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"Rhowch y CD Gosod yn eich gyrwr a chlicio Iawn ar ôl gorffen\n"
+"Os nad yw gennych, cliciwch Dileu i osgoi diweddaru."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "All remote machines"
-msgstr "Pob cyfrifiadur pell"
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Methu cychwyn diweddariad byw!!! \n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Install themes"
-msgstr "Gosod themâu"
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
+msgstr ""
+"Mae'r newid wedi ei gyflawni, ond i fod yn effeithiol mae'n rhaid i chi "
+"allgofnodi"
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
-msgstr "Sbaeneg"
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
+msgstr "logdrake"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "Paratoi'r gosodiad"
+#: ../../standalone/logdrake_.c:68
+msgid "Show only for the selected day"
+msgstr "Dangos ar y diwrnod penodol yn unig"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Golygu'r gwesteiwr/rhwydwaith"
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
+msgstr "/Ffeil/_Newydd"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add User -->"
-msgstr "Pob Defnyddiwr -->"
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
+msgstr "<control>N"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "Nauru"
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
+msgstr "/Ffeil/_Agor"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Gosod ffontiau True Type"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
+msgstr "<control>O"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr ""
-"Awtoganfod argraffyddion sy'n gysylltiedig yn uniongyrchol â'r rhwydwaith "
-"lleol"
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr "/Ffeil/_Cawd"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN configuration"
-msgstr "Ffurfweddiad y Rhwydwaith Lleol"
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
+msgstr "<control>S"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "hard disk model"
-msgstr "Model disg caled"
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
+msgstr "/Ffeil/Cawd _fel"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Maintain /etc/exports:\n"
-" \tClusternfs allows export of the root filesystem to diskless "
-"clients. drakTermServ\n"
-" \tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr "/Ffeil/-"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Does dim modd defnyddio Cyfrol Resymegol LVM ar gyfer pwynt gosod %s"
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
+msgstr "/Dewisiadau/Test"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "Estyn Ffontiau Windows"
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
+msgstr "/Cymorth/_Ynghylch..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Systemau Llygoden"
+#: ../../standalone/logdrake_.c:145
+msgid "User"
+msgstr "Defnyddiwr"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-"Mae eich cyfrifiadur yn gallu cydweddu ei gloc\n"
-" gyda gwasanaethwr pell drwy NTP"
+#: ../../standalone/logdrake_.c:146
+msgid "Messages"
+msgstr "Negeseuon"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "Iranaidd"
+#: ../../standalone/logdrake_.c:147
+msgid "Syslog"
+msgstr "Syslog"
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
-msgstr "Croatia"
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
+msgstr "Esboniadau Offer Mandrake"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "Mynedfa:"
+#: ../../standalone/logdrake_.c:151
+msgid "search"
+msgstr "chwilio"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add server"
-msgstr "Ychwanegu gwasanaethwr"
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
+msgstr "Offeryn i fonitro eich cofnodion"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name"
-msgstr "Enw'r argraffydd pell"
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
+msgstr "Gosodiadau"
-#: ../advertising/10-security.pl:1
-#, 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."
-msgstr ""
-"Mae gan Mandrake Linux offer wedi eu cynllunio i greu'r fersiwn mwyaf diogel "
-"o Linux erioed: Draksec, system o offer rheoli diogelwch, a mur cadarn iawn "
-"wedi eu cyplysu i leihau'r posibilrwydd o hacio."
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
+msgstr "cydweddu"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "Dyfais: "
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
+msgstr "ond heb fod yn cydweddu"
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
+msgstr "Dewis ffeil"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "Cytundeb trwyddedu"
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
+msgstr "Calendr"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "System Options"
-msgstr "Dewisiadau System"
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
+msgstr "Cynnwys y ffeil"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Please choose the desired security level"
-msgstr "Dewiswch lefel diogelwch"
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+msgid "Mail alert"
+msgstr "Rhybudd e-bost"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/logdrake_.c:245
#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "Mae'r gwesteiwr ar y rhestr yn barod, does dim modd ei ychwanegu.\n"
+msgid "please wait, parsing file: %s"
+msgstr "arhoswch, dosbarthu ffeil: %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", USB printer"
-msgstr "argraffydd USB"
+#: ../../standalone/logdrake_.c:392
+msgid "Mail alert configuration"
+msgstr "Ffurfweddiad rhybudd e-bost"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/logdrake_.c:393
msgid ""
-"Unable to properly close mkbootdisk:\n"
+"Welcome to the mail configuration utility.\n"
"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Methu cau mkbootdisk yn iawn: \n"
+"Croeso i'r gwasanaeth ffurfweddu e-bost\n"
"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-"Dim ond ffeiliau sydd wedi newid neu sy'n newydd fydd cadw wrth gefn "
-"cynyddol yn eu cadw."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Dewiswch y rhaglenni fydd yn cynnal ffontiau:"
+"Yma bydd modd i chi osod y system rhybuddio.\n"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "Ffurfweddu X"
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
+msgstr "Gwasanaethwr Gwe Fyd Eang Apache"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hd"
-msgstr "hd"
+#: ../../standalone/logdrake_.c:401
+msgid "Domain Name Resolver"
+msgstr "Datrysydd Enw Parth"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Twrcaidd (model traddodiadol \"F\")"
+#: ../../standalone/logdrake_.c:402
+msgid "Ftp Server"
+msgstr "Gwasanaethwr Ftp"
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "Llongyfarchiadau!"
+#: ../../standalone/logdrake_.c:403
+msgid "Postfix Mail Server"
+msgstr "Gwasanaethwr E-bost Postfix"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Defnyddio enw perchennog i weithredu"
+#: ../../standalone/logdrake_.c:404
+msgid "Samba Server"
+msgstr "Gwasanaethwr Samba"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow remote root login"
-msgstr "Caniatâu mewngofnodi gwraidd pell"
+#: ../../standalone/logdrake_.c:405
+msgid "SSH Server"
+msgstr "Gwasanaethwr SSH"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Down"
-msgstr "I lawr"
+#: ../../standalone/logdrake_.c:406
+msgid "Webmin Service"
+msgstr "Gwasanaethau Webmin"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Argraffydd crai (dim gyrrwr)"
+#: ../../standalone/logdrake_.c:407
+msgid "Xinetd Service"
+msgstr "Gwasanaeth Xinetd"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Install rpm"
-msgstr "Gosod rpm"
+#: ../../standalone/logdrake_.c:414
+msgid "service setting"
+msgstr "gosodiad gwasanaeth"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/logdrake_.c:415
msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"I argraffu ffeil o'r llinell orchymyn (ffenestr derfynell) mae modd "
-"defnyddio un ai'r gorchymyn \"%s <file>\" neu offeryn argraffu graffigol: "
-"\"xpp <file>\" neu \"kprinter <file>\". Mae'r offeryn graffigol yn caniatáu "
-"chi ddefnyddio'r argraffydd ac i newid gosodiadau dewis yn hawdd.\n"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "Amser yn weddill"
+"You will receive an alert if one of the selected services is no more running"
+msgstr "Byddwch yn derbyn rhybudd os na fydd un o'r gwasanaethu hyn yn rhedeg"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "Bysellfwrdd DG"
+#: ../../standalone/logdrake_.c:428
+msgid "load setting"
+msgstr "gosodiad llwyth"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "Dadosod"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
+msgstr "Byddwch yn derbyn rhybudd os yw'r llwyth yn uwch na'r gwerth hwn"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
+#: ../../standalone/logdrake_.c:444
+msgid "alert configuration"
+msgstr "ffurfweddiad rhybudd"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "Dad osod Ffontiau"
+#: ../../standalone/logdrake_.c:445
+msgid "Please enter your email address below "
+msgstr "Rhowch eich cyfeiriad e-bost islaw"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Arhoswch, canfod a ffurfweddu dyfeisiau..."
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
+msgstr "Cadw fel..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "Almaenaidd (dim bysellau marw)"
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "Dewiswch math eich llygoden"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tAnfon e-bost at %s\n"
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
+msgstr "Efelychu'r trydydd botwm?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
-msgstr "Trosglwyddo %s..."
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Ffurfweddiad y Rhwydwaith"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil o liwiau (15 did)"
+#: ../../standalone/net_monitor_.c:96
+#, fuzzy
+msgid "Profile "
+msgstr "Proffil:"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
msgstr ""
-"Medrwch allforio gan ddefnyddio NFS neu Samba. Pa un hoffech chi ei "
-"ddefnyddio?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "Gambia"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Canolfan Rheoli Mandrake"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Reboot"
-msgstr "Ailgychwyn"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device"
-msgstr "Dyfais amlbwrpas"
+#: ../../standalone/net_monitor_.c:103
+#, fuzzy
+msgid "Sending Speed:"
+msgstr "Anfon ffeiliau..."
-#: ../../network/drakfirewall.pm:1
-#, 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."
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
msgstr ""
-"Medrwch roi amrywiol byrth.\n"
-"Eng. dilys: 139/tcp 139/udp.\n"
-"Am wybodaeth ewch i /etc/services."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Tâp \n"
+#: ../../standalone/net_monitor_.c:106
+#, fuzzy
+msgid "Connection Time: "
+msgstr "Math o gyswllt:"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
msgstr ""
-"Does dim porwr ar eich cyfrifiadur. Rhaid gosod un os ydych am archwilio'r "
-"system gymorth."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remember this password"
-msgstr "Cofiwch y cyfrinair"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "oherwydd %s annigonol"
+#: ../../standalone/net_monitor_.c:147
+#, fuzzy
+msgid "Wait please, testing your connection..."
+msgstr "Profi eich cysylltiad..."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Mae Rhannu Cysylltiad â'r Rhyngrwyd wedi ei alluogi."
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Cysylltu â'r We"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Rhwydwaith drwy SSH.\n"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Cysylltu â'r We"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
msgstr ""
-"Os cafodd yr argraffydd ei awtoganfod, dewiswch ef o'r rhestr ac ychwanegu "
-"enw defnyddiwr, cyfrinair a/neu grwp gwaith yn ôl yr angen."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " cable"
-msgstr " cebl"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
-msgstr "Defnyddiwch y lle gwag ar raniad Windows"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "Wedi canfod %s ar %s, ei ffurfweddi'n awtomatig?"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Gyrrwr XFree86: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
msgstr ""
-"Mae'r gwesteiwr/rhwydwaith ar y rhestr yn barod, does dim modd ei "
-"ychwanegu.\n"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Dewiswch y pecynnau hoffech chi eu gosod"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
-msgstr "Papua New Guinea"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Dyfais amlbwrpas ar borth paralel"
-
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Busy files"
-msgstr "Ffeiliau System Cadw wrth Gefn"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "Serbaidd (cyrilig)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Rhowch y cyfeiriadur lle mae'r ffeiliau wrth gefn yn cael eu cadw"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
-msgstr "Gwneud neges y cnewyllyn yn dawel drwy ragosodiad"
+#: ../../standalone/net_monitor_.c:225
+#, fuzzy
+msgid "Connection complete."
+msgstr "Cyflymder y cysylltiad"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:226
msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-"Ydych chi am osod argraffydd (\"%s\")\n"
-"fel yr argraffydd rhagosodedig?"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
-msgstr "Amrediad terfyn DHCP"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "Creu disg cychwyn"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Arhoswch, profi eich cysylltiad..."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "Cau'r rhwydwaith"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "Dynodiad Mewngofnodi"
+#: ../../standalone/net_monitor_.c:330
+#, fuzzy
+msgid "Color configuration"
+msgstr "ffurfweddiad rhybudd"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
msgstr ""
-"Mae NFS yn brotocol poblogaidd ar gyfer rhannu ffeiliau \n"
-"ar draws rhwydweithiau TCP/IP. Mae'r gwasanaeth hwn \n"
-"yn darparu'r gallu i gloi ffeiliau NFS."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
-msgstr "Cleient DHCP"
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, 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"
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
msgstr ""
-"Dyma HardDrake, offeryn ffurfweddu caledwedd Mandrake.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;"
-"tvignaud@mandrakesoft.com&gt;\n"
-"\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
-msgstr "gwrthod"
+#: ../../standalone/net_monitor_.c:400
+#, fuzzy
+msgid "Local measure"
+msgstr "Ffeiliau lleol"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Argraffu/Sganio ar \"%s\""
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
+msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit raid modules"
-msgstr "peidio cynnwys modiwlau raid"
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:453
+#, fuzzy
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)."
+"Warning, another internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Mae lpd yn ddaemon argraffu sy'n angenrheidiol i lpr weithio\n"
-"Mae'n wasanaethwr sy'n cyflafareddu gwaith argraffu i\n"
-"argraffydd (ion)."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
-msgstr "Gwyddelig"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sunday"
-msgstr "Sul"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Ffurfweddu Cysylltiad â'r Rhyngrwyd"
+"Rhybudd, mae cysylltiad arall gyda'r rhyngrwyd wedi ei ganfod, efallai'n "
+"defnyddio eich rhwydwaith."
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
-msgstr "rhifau gwahanwyd gan collnod"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "Cysylltu"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Once you've selected a device, you'll be able to see the device information "
-"in fields displayed on the right frame (\"Information\")"
-msgstr ""
-"Unwaith i chi ddewis dyfais, medrwch weld esboniad mewn meysydd yn y ffrâm "
-"dde [\"Gwybodaeth\"]"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Disconnect %s"
+msgstr "Dadgysylltu"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Symud y rheol i fyny un lefel"
+#: ../../standalone/printerdrake_.c:47
+msgid "Reading printer data ..."
+msgstr "Darllen data argraffydd..."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr ""
-"Mae'r argraffydd canlynol\n"
-"\n"
-"%s\n"
-"ar gael ar eich system.\n"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Detecting devices ..."
+msgstr "Canfod dyfeisiadau..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Ydych chi wir eisiau tynnu argraffydd \"%s\""
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
+msgstr "Profwch y pyrth"
-#: ../../install_interactive.pm:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, c-format
-msgid "I can't find any room for installing"
-msgstr "Methu canfod lle ar gyfer gosod"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr "Nid yw %s yn cael ei gynnal gan y fersiwn hwn o Mandrake Linux"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/scannerdrake_.c:54
#, c-format
-msgid "Default printer"
-msgstr "Argraffydd rhagosodedig"
+msgid "%s found on %s, configure it?"
+msgstr "Wedi canfod %s ar %s, ei ffurfweddi?"
-#: ../../network/netconnect.pm:1
+#: ../../standalone/scannerdrake_.c:57
#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+msgid "%s is not in the scanner database, configure it manually?"
msgstr ""
-"Rydych wedi ffurfweddu nifer o ffyrdd i gysylltu â'r Rhyngrwyd.\n"
-"Dewiswch ba un rydych am ei ddefnyddio.\n"
-"\n"
+"Nid yw %s yng nghronfa ddata sganwyr. Hoffech chi ei ffurfweddu â llaw?"
+
+#: ../../standalone/scannerdrake_.c:63
+msgid "Select a scanner"
+msgstr "Dewiswch sganiwr"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/scannerdrake_.c:91
#, c-format
-msgid "Modify RAID"
-msgstr "Newid RAID"
+msgid "This %s scanner is unsupported"
+msgstr "Nid yw sganiwr %s yn cael ei gynnal"
-#: ../../network/isdn.pm:1
+#: ../../standalone/scannerdrake_.c:105
#, 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."
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
msgstr ""
-"Rwyf wedi canfod cerdyn IDSN, ond nid wyf yn gwybod pa fath. Dewiswch un "
-"cerdyn PCI ar y sgrîn nesaf."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr "Ychwanegu defnyddiwr"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "Disg RAID %s\n"
+"Nid oedd Scannerdrake yn medru canfod eich sganiwr %s.\n"
+"Dewiswch y ddyfais lle mae'r sganiwr wedi ei gysylltu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Liberia"
-msgstr "Liberia"
+#: ../../standalone/scannerdrake_.c:107
+msgid "choose device"
+msgstr "dewis dyfais"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:113
#, c-format
msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
msgstr ""
-"Methu gosod y pecynnau sydd eu hangen i osod sganiwr gyda Scannerdrake."
+"Rhaid i sganiwr %s gael ei ffurfweddu gan printerdrake.\n"
+"Medrwch gychwyn printerdrake o adran Galedwedd Canolfan Rheoli Mandrake"
-#: ../../standalone/drakgw:1
+#: ../../standalone/scannerdrake_.c:118
#, 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"
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
msgstr ""
-"Rhowch enw'r rhyngwyneb sy'n cysylltu â'r rhyngrwyd.\n"
-"\n"
-"Enghreifftiau:\n"
-"\t\tppp+ cysylltiad modem neu DSL, \n"
-"\t\teth0, neu eth1 fam gysylltiad cebl, \n"
-"\t\tippp+ am gysylltiad idsn.\n"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Dewis eich bysellfwrdd"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Format partitions"
-msgstr "Fformatio rhaniadau"
+"Mae eich sganiwr %s wedi ei ffurfweddu.\n"
+"Medrwch ddefnyddio \"XSane\" i sganio dogfennau o'r ddewislen rhaglenni Aml-"
+"gyfrwng/Graffigau."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Cywiro cyswllt CUPS yn awtomatig"
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Cafodd rhai dyfeisiau yn nosbarth caledwedd\"%s\" eu tynnu:\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Running \"%s\" ..."
-msgstr "Rhedeg \"%s\"..."
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
+msgstr "Cafodd rhai dyfeisiau eu hychwanegu:\n"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "enable radio support"
-msgstr "galluogi cynnal radio"
+#: ../../standalone/service_harddrake_.c:64
+#, fuzzy
+msgid "Hardware probing in progress"
+msgstr "Canfod ar waith"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Rhannu sganwyr i westeiwyr:"
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "Dewis eich iaith"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Enw ffeil cylch-ôl: %s"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "Dewis dosbarth gosod"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Dewiswch yr argraffydd i drin y gwaith argraffu."
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
+msgstr "Canfod disg caled"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not transfer printers"
-msgstr "Peidio trosglwyddo argraffydd"
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "Ffurfweddu llygoden"
-#: ../../help.pm:1
-#, c-format
-msgid "Delay before booting the default image"
-msgstr "Oedi cyn cychwyn y ddelwedd rhagosodedig"
+#: ../../steps.pm_.c:18
+msgid "Choose your keyboard"
+msgstr "Dewis eich allweddell"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Hard Disk to backup"
-msgstr "Defnyddiwch y Ddisg Caled ar gyfer cadw wrth gefn"
+#: ../../steps.pm_.c:19
+msgid "Security"
+msgstr "Diogelwch"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Configure"
-msgstr "Ffurfweddu"
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "System ffeil gosod"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake"
-msgstr "Scannerdrake"
+#: ../../steps.pm_.c:21
+msgid "Format partitions"
+msgstr "Fformatio rhaniadau"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Rhybudd, mae cysylltiad arall gyda'r rhyngrwyd wedi ei ganfod, efallai'n "
-"defnyddio eich rhwydwaith."
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "Dewis pecynnau i'w gosod"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
-msgstr "Defnyddwyr Cadw wrth Gefn"
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "System osod"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Rhowch eich enw gwesteiwr.\n"
-"Dylai eich enw gwesteiwr fod yn enw gwesteiwr llawn gymwys.\n"
-"megis \"fymlwch.fynesg.fyngho.com\".\n"
-"Medrwch hefyd gynnig eich cyfeiriad IP os oes gennych un"
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "Ychwanegu defnyddiwr"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Dewiswch Sbwlydd Argraffydd"
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "Ffurfweddu rhwydwaith"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Create new theme"
-msgstr "Creu thema newydd"
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "Ffurfweddu gwasanaethau"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
-msgstr "Esboniadau Offer Mandrake"
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "Gosod llwythwr cychwyn"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "No image found"
-msgstr "Heb ganfod delwedd"
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "Creu disg cychwyn"
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
-"Methodd rhai pecynnau pwysig a chael eu gosod yn gywir.\n"
-"Un ai mae eich gyrrwr CD-ROM neu eich CD-ROM yn wallus.\n"
-"Gwiriwch y CD-ROM ar gyfrifiadur wedi ei osod gan ddefnyddio \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "Ffurfweddu X"
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
-msgstr "Mandrake Linux 9.2 yw'r platfform datblygu gorau"
+#: ../../steps.pm_.c:34
+msgid "Install system updates"
+msgstr "Diweddariadau system gosod"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Detected model: %s"
-msgstr "Canfyddwyd model: %s"
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "Gadael gosod"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
-msgstr "Nid yw \"%s\" yn e-bost dilys!"
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../standalone/drakedm:1
-#, 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."
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
msgstr ""
-"Mae'r Rheolwr Arddangos X11 yn caniatáu i chi fewngofnodi\n"
-"i'ch system yn graffigol gyda'r X Windows System yn rhedeg. Mae'n cynnal\n"
-"rhedeg amryw o sesiynau X ar eich cyfrifiadur ar yr un pryd."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr "os wedi ei osod i iawn, rhedeg y gwiriadau diogelwch dyddiol."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
-msgstr "Azerbaijan"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Enw dyfais i'w ddefnyddio ar gyfer cadw wrth gefn"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
-msgstr "Dim tâp yn %s!"
-
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-" --doc <link> - cyswllt i dudalen we arall ( ar gyfer blaen croeso "
-"WM)\n"
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "Gwe/FTP"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Dvorak (UDA)"
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
+msgstr "Cyfrifiadur Rhwydwaith (cleient)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
msgstr ""
-"dyma'r bws corfforol i'r ddyfais gael ei gysylltu iddo(e.e. PCI, USB,...)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Sut mae'r argraffydd wedi ei gysylltu?"
+"Gwasanaethwr NFS, gwasanaethwr SMB, gwasanaethwr dirprwyol, gwasanaethwr ssh"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security level"
-msgstr "Lefel diogelwch"
+#: ../../share/compssUsers:999
+msgid "Office"
+msgstr "Swyddfa"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "final resolution"
-msgstr "cydraniad terfynol"
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Man Gwaith Gnome"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
-msgstr "Gwasanaethau"
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Offer ar gyfer eich Palm PiloT neu eich Visor"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Auto configuration"
-msgstr "Awto ffurfweddiad"
+#: ../../share/compssUsers:999
+msgid "Workstation"
+msgstr "Man Gwaith"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Mur Gwarchod/Llwybrydd"
#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Gweithfan Swyddfa"
+msgid "Domain Name and Network Information Server"
+msgstr "Enw Parth a gwasanaethwr Gwybodaeth Rhwydwaith"
#: ../../share/compssUsers:999
msgid ""
@@ -21025,205 +14961,502 @@ msgstr ""
"gnumeric), darllennydd pdf, ag ati"
#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Man chwarae"
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "Offer Sain: mp3 neu chwarewyr midi, cymysgwyr, ag ati"
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Rhaglenni difyrrwch: arcêd, byrddau, strategaeth, ag ati"
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Cefnogaeth i raglenni trydydd parti"
#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Man Aml-gyfrwng"
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Llyfrau a Howto's ar Linux a Meddalwedd Rhydd"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Chwarae sain a fideo/rhaglenni golygu"
+msgid "KDE Workstation"
+msgstr "Man Gwaith KDE"
#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Man Rhyngrwyd"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ag ati"
#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Casgliad o offer i ddarllen ac anfon e-bost a newyddion (mutt, tin..) ac i "
-"bori'r We"
+msgid "Multimedia - Video"
+msgstr "Aml-gyfrwng - Fideo"
#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Cyfrifiadur Rhwydwaith (cleient)"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+"Casgliad o offer ar gyfer e-bost, newyddion, y we, trosglwyddo ffeiliau, a "
+"sgwrsio"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Cleientiaid ar gyfer protocolau amrywiol yn cynnwys ssh"
+msgid "Database"
+msgstr "Cronfa Ddata"
#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Ffurfweddiad"
+msgid "PostgreSQL or MySQL database server"
+msgstr "Gwasanaethwr cronfa data PostgreSQL neu MySQL"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
msgstr "Offer i wneud ffurfweddu'ch cyfrifiadur yn haws"
#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Gweithfan Gwyddonol"
+msgid "Multimedia - Sound"
+msgstr "Aml-gyfrwng - Sain"
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
-msgstr "Rhaglenni gwyddonol megis gnuplot"
+msgid "Documentation"
+msgstr "Dogfennaeth"
#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr "Offer y Consol"
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Golygyddion, cregyn, offer ffeilio, terfynellau"
+msgid "Postfix mail server, Inn news server"
+msgstr "Gwasanaethwr e-bost Postfix, gwasanaethwr newyddion Inn"
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "Man Gwaith KDE"
+msgid "Internet station"
+msgstr "Man Rhyngrwyd"
+
+#: ../../share/compssUsers:999
+msgid "Multimedia station"
+msgstr "Man Aml-gyfrwng"
+
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Ffurfweddiad"
+
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "Rhagor o Ben Bwrdd Graffig (Gnome, IceWM)"
#: ../../share/compssUsers:999
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
"of accompanying tools"
msgstr ""
-"KDE - Amgylchedd Bwrdd gwaith K, yr amgylchedd graffig sylfaenol gyda "
-"chasgliad o offer"
+"KDE - Amgylchedd Penbwrdd K, yr amgylchedd graffig sylfaenol gyda chasgliad "
+"o offer"
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Man Gwaith Gnome"
+msgid "Graphical Environment"
+msgstr "Amgylchedd Graffig"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Amgylchedd graffig gyda chasgliad o raglenni ac offer bwrdd gwaith hawdd eu "
-"defnyddio."
+msgid "Development"
+msgstr "Datblygiad"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Pen Desg Graffigol Eraill"
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ag ati"
+msgid "Tools to create and burn CD's"
+msgstr "Offer i greu a llosgi CDau"
+
+#: ../../share/compssUsers:999
+msgid "Office Workstation"
+msgstr "Gweithfan Swyddfa"
+
+#: ../../share/compssUsers:999
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, ag ati"
+
+#: ../../share/compssUsers:999
+msgid "Graphics programs such as The Gimp"
+msgstr "Rhaglenni graffeg megis The Gimp"
+
+#: ../../share/compssUsers:999
+msgid "DNS/NIS "
+msgstr "DNS/NIS "
#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr "Llyfrgelloedd datblygiadol C a C++, rhaglenni a ffeiliau cynnwys"
#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dogfennaeth"
+msgid "Network Computer server"
+msgstr "Gwasanaethwr Cyfrifiadur Rhwydwaith"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Llyfrau a Howto's ar Linux a Meddalwedd Rhydd"
+msgid "Mail/Groupware/News"
+msgstr "E-bost/Offer Grwp/Newyddion"
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr "LSB"
+msgid "Game station"
+msgstr "Man chwarae"
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Linux Standard Base. Cefnogaeth i raglenni trydydd parti"
+msgid "Video players and editors"
+msgstr "Chwarewyr a golygyddion fideo"
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Gwe/FTP"
+msgid "Multimedia - Graphics"
+msgstr "Aml-gyfrwng - Graffig"
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Rhaglenni difyrrwch: arcêd, byrddau, strategaeth, ag ati"
#: ../../share/compssUsers:999
-msgid "Mail"
-msgstr "E-bost"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"Casgliad o offer i ddarllen ac anfon e-bost a newyddion (pine, mutt, tin..) "
+"ac i bori'r We"
#: ../../share/compssUsers:999
-msgid "Postfix mail server"
-msgstr "Gwasanaethwr e-bost Postfix"
+msgid "Personal Finance"
+msgstr "Cyllid Personol"
#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Cronfa Ddata"
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Amgylchedd graffig gyda chasgliad o raglenni ac offer penbwrdd hawdd eu "
+"defnyddio."
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "Gwasanaethwr cronfa data PostgreSQL neu MySQL"
+msgid "Clients for different protocols including ssh"
+msgstr "Clientiaid ar gyfer protocolau amrywiol yn cynnwys ssh"
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Mur Gwarchod/Llwybrydd"
+msgid "LSB"
+msgstr "LSB"
#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Porth i'r rhyngrwyd"
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
+msgid "Sound and video playing/editing programs"
+msgstr "Chwarae sain a fideo/rhaglenni golygu"
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Enw Parth a gwasanaethwr Gwybodaeth Rhwydwaith"
+msgid "Other Graphical Desktops"
+msgstr "Pen Desg Graffigol Eraill"
#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Gwasanaethwr Cyfrifiadur Rhwydwaith"
+msgid "Editors, shells, file tools, terminals"
+msgstr "Golygyddion, cregyn, offer ffeilio, terfynellau"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr ""
-"Gwasanaethwr NFS, gwasanaethwr SMB, gwasanaethwr dirprwyol, gwasanaethwr ssh"
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "Rhaglenni i reoli eich cyllid, megis gnucash"
+
+#: ../../share/compssUsers:999
+msgid "Personal Information Management"
+msgstr "Rheoli Gwybodaeth Bersonol"
+
+#: ../../share/compssUsers:999
+msgid "Multimedia - CD Burning"
+msgstr "Aml-gyfrwng - Llosgi CD"
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
-msgstr "Casgliad o offer i ddarllen ac anfon e-bost a newyddion ac i bori'r We"
+msgid "Scientific Workstation"
+msgstr "Gweithfan Gwyddonol"
-#~ msgid "The setup has already been done, and it's currently enabled."
-#~ msgstr "Mae'r gosodiad wedi ei gyflawni, mae wedi ei alluogi ar hyn o bryd."
+#~ msgid "can not open /etc/inittab for reading: %s"
+#~ msgstr "maethu agor/etc/inittab ar gyfer darllen: %s"
-#~ msgid "Logs"
-#~ msgstr "Cofnodion"
+#, fuzzy
+#~ msgid "cpu number "
+#~ msgstr "rhif"
-#~ msgid "The setup has already been done, but it's currently disabled."
+#~ msgid ""
+#~ "You now have the opportunity to download encryption software.\n"
+#~ "\n"
+#~ "WARNING:\n"
+#~ "\n"
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
+#~ "\n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
+#~ "\n"
+#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
+#~ "\n"
+#~ "\n"
+#~ "For any queries relating to these agreement, please contact \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
#~ msgstr ""
-#~ "Mae'r gosodiad wedi ei gyflawni, mae wedi ei analluogi ar hyn o bryd."
+#~ "Mae'n awr yn bosibl i chi lwytho meddalwedd i lawr ar gyfer amgryptio.\n"
+#~ "\n"
+#~ "RHYBUDD:\n"
+#~ "\n"
+#~ "Oherwydd gofynion cyffredinol amrywiol yn berthynol i'r meddalwedd hyn ac "
+#~ "yn\n"
+#~ " cael eu gosod gan amrywiol awdurdodau cyfreithiol, dylai cwsmeriaid a/"
+#~ "neu\n"
+#~ " ddefnyddwyr terfynol wneud yn siwr fod y cyfreithau yn eu hawdurdod "
+#~ "cyfreithiol\n"
+#~ " yn caniatáu iddynt lwytho i lawr, cadw a/neu ddefnyddio'r feddalwedd.\n"
+#~ "\n"
+#~ "Yn ogystal, dylai cwsmeriaid a/neu ddefnyddwyr terfynol fod yn arbennig "
+#~ "o\n"
+#~ " ymwybodol i beidio â thorri cyfraith eu hawdurdod cyfreithiol. Petai "
+#~ "defnyddwyr\n"
+#~ " a/neu ddefnyddwyr terfynol yn peidio parchu darpariaeth y cyfreithiau\n"
+#~ " gweithredadwy, yna byddant yn derbyn cosb ddifrifol.\n"
+#~ "\n"
+#~ "Ni fydd MandrakeSoft na'i gwneuthurwyr a/neu ddarparwyr, o dan unrhyw\n"
+#~ " amod, fod yn gyfrifol am unrhyw ddifrod, arbennig, anuniongyrchol na\n"
+#~ "damweiniol o gwbl (gan gynnwys, ond heb ei gyfyngu i golli elw, ymyrraeth "
+#~ "ar\n"
+#~ " fusnes, colli data masnachol na cholledion ariannol eraill, nag "
+#~ "ymatebion\n"
+#~ " terfynol a digollediad i'w dalu yn sgil penderfyniad llys) yn codi o "
+#~ "ddefnydd,\n"
+#~ " eiddo, neu'r unig lwytho i lawr y feddalwedd, i'r hyn y gall y cwsmer a/"
+#~ "neu'r\n"
+#~ " defnyddiwr terfynol gael mynediad iddo yn y pen draw wedi llofnodi'r "
+#~ "cytundeb\n"
+#~ " presennol.\n"
+#~ "\n"
+#~ "\n"
+#~ "Am unrhyw ymholiadau yn berthnasol i'r cytundebau hyn, cysylltwch â:\n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
-#~ msgid "Profile "
-#~ msgstr "Proffil"
+#~ msgid "Proxy configuration"
+#~ msgstr "Ffurfweddu dirprwy"
#~ msgid ""
-#~ "Welcome to the Internet Connection Sharing utility!\n"
+#~ "Welcome to the proxy configuration utility.\n"
#~ "\n"
-#~ "%s\n"
+#~ "Here, you'll be able to set up your http and ftp proxies\n"
+#~ "with or without login and password\n"
+#~ msgstr ""
+#~ "Croeso i'r gwasanaeth ffurfweddu 'r dirprwy.\n"
#~ "\n"
-#~ "Click on Configure to launch the setup wizard."
+#~ "Yma bydd modd i chi osod eich dirprwyon http a ftp gyda\n"
+#~ "neu heb mewngofnod a chyfrinair\n"
+
+#~ msgid ""
+#~ "Please fill in the http proxy informations\n"
+#~ "Leave it blank if you don't want an http proxy"
+#~ msgstr ""
+#~ "Rhowch y wybodaethar gyfer dirprwyo http\n"
+#~ "Gadewch hwn yn wag os nad ydych eisiau dirprwy http"
+
+#~ msgid "URL"
+#~ msgstr "URL"
+
+#~ msgid "port"
+#~ msgstr "porth"
+
+#~ msgid "Url should begin with 'http:'"
+#~ msgstr "Dylai'r URL ddechrau gyda \"http:\""
+
+#~ msgid "The port part should be numeric"
+#~ msgstr "Dylai'r rhan porth fod yn rhifol"
+
+#~ msgid ""
+#~ "Please fill in the ftp proxy informations\n"
+#~ "Leave it blank if you don't want an ftp proxy"
#~ msgstr ""
-#~ "Croeso i'r Gwasanaeth Rhannu Cysylltiad â'r Rhyngrwyd\n"
+#~ "Llanwxh y gwybodaeth dirprwy ftp\n"
+#~ "Gadewch yn wag os nad ydych eisiau dirprwy ftp"
+
+#~ msgid ""
+#~ "Please enter proxy login and password, if any.\n"
+#~ "Leave it blank if you don't want login/passwd"
+#~ msgstr ""
+#~ "Rhowch mewngofnod a chyfrinair dirprwyol, os oes angen.\n"
+#~ "Gadwech yn wag os nad ydych am gael mewngofnod a chyfrinair"
+
+#~ msgid "login"
+#~ msgstr "mewngofnodi"
+
+#~ msgid "password"
+#~ msgstr "cyfrinair"
+
+#~ msgid "re-type password"
+#~ msgstr "aildeipiwch y gyfrinair"
+
+#~ msgid "The passwords don't match. Try again!"
+#~ msgstr "Nid yw'r cyfrineiriau'n cydweddi. Rhowch gynnig arall arni!"
+
+#~ msgid "Can't write file %s"
+#~ msgstr "Methu ysgrifenu ffeil %s"
+
+#~ msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+
+#~ msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+
+#, fuzzy
+#~ msgid ""
+#~ "Warning, another internet connexion has been detected, maybe using your "
+#~ "network"
+#~ msgstr ""
+#~ "Rhybudd, mae cysylltiad arall gyda'r rhyngrwyd wedi ei ganfod, efallai'n "
+#~ "defnyddio eich rhwydwaith."
+
+#~ msgid "no help implemented yet.\n"
+#~ msgstr "nid oes cymorth ar gael eto.\n"
+
+#~ msgid "Please click on a medium"
+#~ msgstr "Cliciwch ar gyfrwng"
+
+#~ msgid "Removing LPRng..."
+#~ msgstr "Tynnu LPRng..."
+
+#~ msgid "Removing LPD..."
+#~ msgstr "Tynnu LPD..."
+
+#~ msgid ""
+#~ "Description:\n"
+#~ "\n"
+#~ " Drakbackup is used to backup your system.\n"
+#~ " During the configuration you can select \n"
+#~ "\t- System files, \n"
+#~ "\t- Users files, \n"
+#~ "\t- Other files.\n"
+#~ "\tor All your system ... and Other (like Windows Partitions)\n"
+#~ "\n"
+#~ " Drakbackup allows you to backup your system on:\n"
+#~ "\t- Harddrive.\n"
+#~ "\t- NFS.\n"
+#~ "\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+#~ "\t- FTP.\n"
+#~ "\t- Rsync.\n"
+#~ "\t- Webdav.\n"
+#~ "\t- Tape.\n"
+#~ "\n"
+#~ " Drakbackup allows you to restore your system to\n"
+#~ " a user selected directory.\n"
+#~ "\n"
+#~ " Per default all backup will be stored on your\n"
+#~ " /var/lib/drakbackup directory\n"
+#~ "\n"
+#~ " Configuration file:\n"
+#~ "\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+#~ "\n"
+#~ "Restore Step:\n"
+#~ " \n"
+#~ " During the restore step, Drakbackup will remove\n"
+#~ " your original directory and verify that all\n"
+#~ " backup files are not corrupted. It is recommended\n"
+#~ " you do a last backup before restoring.\n"
+#~ " \n"
+#~ "\n"
+#~ msgstr ""
+#~ "Disgrifiad:\n"
+#~ "\n"
+#~ " Mae Drakbackup yn cael ei ddefnyddio i cadw\n"
+#~ " eich ffeiliau system wrth gefn.\n"
+#~ " Yn ystod y ffurfweddiad medrwch ddewis:\n"
+#~ "\t- Ffeiliau system,\n"
+#~ "\t- Ffeiliau defnyddwyr,\n"
+#~ "\t- Ffeiliau eraill.\n"
+#~ "\tneu Eich holl system...ac Arall (megis Rhaniadau Windows)\n"
+#~ "\n"
+#~ " Mae Drackbackup yn caniatáu i chi ddefnyddio:\n"
+#~ "\t- Disg Caled.\n"
+#~ "\t- NFS.\n"
+#~ "\t- CDROM (CDRW), DVDROM (gyda awto gychwyn, achub ac awto osod.).\n"
+#~ "\t- FTP.\n"
+#~ "\t- Rsync.\n"
+#~ "\t- Webdav.\n"
+#~ "\t- Tâp.\n"
+#~ "\n"
+#~ " Mae Drakbackup yn caniatáu i chi adfer eich system i\n"
+#~ " gyfeiriadur o ddewis y defnyddiwr.\n"
+#~ "\n"
+#~ " Yn rhagosodedig bydd ffeiliau wrth gefn yn cael eu cadw yn eich\n"
+#~ " /var/lib/drakbackup directory\n"
+#~ "\n"
+#~ " Ffeil ffurfweddiad:\n"
+#~ "\t/etc/drakconf/drakbackup/drakbakup.conf\n"
#~ "\n"
-#~ "%s\n"
+#~ "Camau wrth Adfer:\n"
+#~ " \n"
+#~ " Yn ystod yr adfer bydd Drakbackup yn tynnu\n"
+#~ " eich cyfeiriadur gwreiddiol a gwirio nad yw'r holl \n"
+#~ " ffeiliau wrth gefn wedi eu llygru. Argymhellir i chi \n"
+#~ " gadw wrth gefn cyn adfer.\n"
+#~ " \n"
#~ "\n"
-#~ "Cliciwch Ffurfweddu i gychwyn y dewin gosod."
-#~ msgid "Internet Connection Sharing configuration"
-#~ msgstr "Ffurfweddiad Rhannu Cysylltiad â'r Rhyngrwyd"
+#~ msgid ""
+#~ "drakbug version %s\n"
+#~ "Copyright (C) 2002 MandrakeSoft.\n"
+#~ "This is free software and may be redistributed under the terms of the GNU "
+#~ "GPL.\n"
+#~ "\n"
+#~ "usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+#~ "\n"
+#~ "OPTIONS:\n"
+#~ msgstr ""
+#~ "drakbug fersiwn %s\n"
+#~ "Hawlfraint(H) 2002 MandrakeSoft.\n"
+#~ "Mae hwn yn feddalwedd rhydd ac mae modd ei ail ddosbarthu o dan amodau "
+#~ "GNU GPL.\n"
+#~ "\n"
+#~ "defnydd: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+#~ "\n"
+#~ "OPTIONS:\n"
+
+#~ msgid " --help - print this help message.\n"
+#~ msgstr " --help - argraffu'r neges cymorth.\n"
+
+#~ msgid " --report - program should be one of mandrake tools\n"
+#~ msgstr " --report - dylai'r rhaglen fod yn un o offer mandrake\n"
-#~ msgid "No Internet Connection Sharing has ever been configured."
+#~ msgid " --incident - program should be one of mandrake tools\n"
+#~ msgstr " --incident - dylai'r rhaglen fod yn un o offer mandrake\n"
+
+#~ msgid "usage: drakfloppy\n"
+#~ msgstr "defnydd: drakfloppy\n"
+
+#~ msgid ""
+#~ "\n"
+#~ "Usage: harddrake [-h|--help] [--test]\n"
#~ msgstr ""
-#~ "Nid oes Rhannu Cysylltiad â'r Rhyngrwyd wedi eu ffurfweddu o'r blaen."
+#~ "\n"
+#~ "defnydd: harddrake [-h|--help] [--test]\n"
+
+#~ msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+#~ msgstr "defnydd: keyboarddrake [--expert] [keyboard]\n"
+
+#~ msgid "Probing %s class\n"
+#~ msgstr "Canfod dosbarth %s\n"
-#~ msgid "Ynysoedd y Cayman"
-#~ msgstr "Ynysoedd y Cayman"
+#~ msgid "detected on interface %s"
+#~ msgstr "canfyddwyd ar rhyngwyneb %s"
-#~ msgid " Heard and McDonald Islands "
-#~ msgstr "Ynysoedd Heard a McDonald"
+#~ msgid "Periodic Checks 2"
+#~ msgstr "Gwirydd Cyfnodol 2"
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index 220cddbed..c23f8d1b9 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -1,3253 +1,1868 @@
-# translation of da.po to
-# translation of DrakX-da.po to Danish
-# Copyright (C) 2000,2003 Free Software Foundation, Inc.
+# danish drakbootdisk
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Keld Simonsen <keld@dkuug.dk>, 2000-2002.
# Troels Liebe Bentsen <tlb@iname.com> 2000.
-#
+#
# Reviewed: keld@dkuug.dk 2001-08-22
-# Keld Simonsen <keld@dkuug.dk>, 2000-2003.
#
msgid ""
msgstr ""
-"Project-Id-Version: da\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
-"PO-Revision-Date: 2003-11-23 11:32+0100\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"PO-Revision-Date: 2002-10-04 12:07+0200\n"
"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
-"Language-Team: <dansk@klid.dk>\n"
+"Language-Team: dansk <dansk@klid.dk>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-1\n"
+"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.2\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Skanner partitioner for at finde monteringspunkter"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kb"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr "hvis sat til ja, så tjek tilføjelser og fjernelser af suid root-filer."
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kb"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s kræver værtsnavn, MAC-adresse, IP, nbi-aftryk, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Mb"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr "Konfiguration ændret - genstart clusternfs/dhcpd?"
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Mb"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tErase=%s"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Mb"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Differentielle sikkerhedskopier gemmer kun filer der er ændrede eller er nye "
-"i forhold til den oprindelige sikkerhedskopi."
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Mb"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "network printer port"
-msgstr "port for netværksprinter"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Mb"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Indsæt diskette:"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Mb"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr "DrakTermServ"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Mb eller mere"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "Vælg en X-server"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "X-server"
+
+#: ../../Xconfig/card.pm_.c:230
+msgid "Multi-head configuration"
+msgstr "Flerskærms-konfiguration"
+
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-"Kopien af partitionstabellen har ikke samme størrelse\n"
-"Fortsæt alligevel?"
+"Dit system understøtter konfiguration af flere skærme\n"
+"Hvad vil du gøre?"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Which username"
-msgstr "Hvilket brugernavn"
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
+msgstr "Vælg hukommelsesmængde for dit grafikkort"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "Hvilken type ønsker du at tilføje"
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "XFree konfiguration"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Restore partition table"
-msgstr "Genskaber partitionstabel"
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Hvilken konfiguration af XFree ønsker du?"
-#: ../../standalone/drakconnect:1
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
+msgstr "Konfigurér alle skærme uafhængigt"
+
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
+msgstr "Brug Xinerama-udvidelse"
+
+#: ../../Xconfig/card.pm_.c:389
#, c-format
-msgid "Configure hostname..."
-msgstr "Konfigurér værtsnavn..."
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfigurér kun kort \"%s\"%s"
-#: ../../printer/cups.pm:1
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "På CUPS-server '%s'"
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../install_steps_interactive.pm:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Post-install configuration"
-msgstr "Konfiguration efter installation"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s med 3D hardware acceleration"
-#: ../../standalone/drakperm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-"Det aktuelle sikkerhedsniveau er %s\n"
-"Vælg rettigheder at vise eller redigere"
+"Dit kort kan have 3D acceleration, men kun med XFree %s.\n"
+"Dit kort er understøttet af XFree %s som kan have bedre understøttelse i 2D."
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Benyt ``%s'' i stedet"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+"Dit kort kan have 3D hardware accelerations-understøttelse med XFree %s."
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid "Type"
-msgstr "Type"
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s med EKSPERMENTAL 3d hardware acceleration"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
+"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."
msgstr ""
-"\n"
-"Printere konfigureret med PPD-filerne, som producenten har lavet, eller med "
-"CUPS egne drivere kan heller ikke overflyttes."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+"Dit kort kan have 3D acceleration understøttelse, men kun med XFree %s.\n"
+"VIGTIGT: Dette er eksperimentelt og kan få din maskine til at låse eller gå "
+"ned.\n"
+"Dit kort er understøttet af XFree %s som kan have bedre understøttelse i 2D."
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"De følgende printere\n"
-"\n"
-"%s%s\n"
-"er direkte tilsluttet til dit system"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
-msgstr "Centralafrikanske Republik"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "Gateway enhed"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Advanced preferences"
-msgstr "Avancerede foretrukne"
+"Dit kort kan have 3D acceleration understøttelse, men kun med XFree %s,\n"
+"VIGTIGT: Dette er eksperimentelt og kan få din maskine til at låse eller gå "
+"ned."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Net Method:"
-msgstr "Netmetode:"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (installations-skærmdriver)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Ethernetcard"
-msgstr "Ethernet-kort"
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "Tilpasset"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
-msgstr ""
-"hvis sat, så send postrapporter til denne postadresse, ellers send dem til "
-"root."
+#: ../../Xconfig/main.pm_.c:102
+msgid "Graphic Card"
+msgstr "Grafikkort"
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr "Parametre"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "Skærm"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "no"
-msgstr "nej"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "Opløsning"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Auto-detect"
-msgstr "Automatisk detektion"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
+msgstr "Afprøv"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface:"
-msgstr "Grænseflade:"
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Valg"
-#: ../../steps.pm:1
-#, c-format
-msgid "Select installation class"
-msgstr "Vælg installations-metode"
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "O.k."
-#: ../../network/tools.pm:1
-#, c-format
-msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Det lader ikke til at dit system har forbindelse til Internettet.\n"
-"Prøv at omkonfigurere din forbindelse."
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "Afslut"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
+"Keep the changes?\n"
+"The current configuration is:\n"
"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+"%s"
msgstr ""
-"Forbind din printer til en Linux-server og lad dine Windows-maskiner "
-"tilslutte sig til den som klienter.\n"
+"Behold ændringer?\n"
+"Nuværende konfiguration er:\n"
"\n"
-"Ønsker du virkelig at fortsætte med at opsætte din printer som du gør nu?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belarus"
-msgstr "Hviderusland"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Fejl ved skrivning til fil %s"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result to syslog"
-msgstr "Rapportér kontrolresultat til syslog."
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
-msgstr ""
-"apmd bruges til at overvåge batteristatus og skrive log til syslog.\n"
-"Den kan også bruges til at lukke maskinen når batteriet er på lav."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tape to backup"
-msgstr "brug bånd til sikkerhedskopieringen"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "De følgende pakker vil blive installeret"
+"%s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS configuration"
-msgstr "CUPS-konfiguration"
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "Vælg en skærmtype"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total progress"
-msgstr "Total fremdrift"
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
+msgstr "Plug'n Play"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Ikke nok fri plads til at tildele nye partitioner"
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "Standard"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "Flytter"
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+msgid "Vendor"
+msgstr "Producent"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-"\n"
-"Drakbackup aktiviteter via %s:\n"
-"\n"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "yes"
-msgstr "ja"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr "("
+"Undersøgning for Plug'n Play mislykkedes. Vælg venligst den rigtige skærm"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
-"Welcome to The Network Configuration Wizard.\n"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"We are about to configure your internet/network connection.\n"
-"If you don't want to use the auto detection, deselect the checkbox.\n"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
-"Velkommen til Netværkskonfigurations-vejlederen\n"
+"De to kritiske parametre er den lodrette frekvens, som angiver hvor mange "
+"gange (per sekund) hele skærmbilledet bliver genopfrisket, og (vigtigst af "
+"alt) den vandrette frekvens, som angiver antallet af vandrette linier der "
+"kan tegnes på skærmen hvert sekund.\n"
"\n"
-"Vi skal til at konfigurere din internet- eller netværksforbindelse.\n"
-"Hvis du ikke ønsker at bruge autodetektering, så fravælg afkrydsningsboksen\n"
+"Det er MEGET VIGTIGT at du ikke angiver en skærmtype med "
+"opdateringsfrekvenser, der er større end din skærms formåen: du risikerer at "
+"ødelægge din skærm.\n"
+"Hvis du er i tvivl, bør du vælge en opsætning, som du med SIKKERHED ved\n"
+"at din skærm kan klare."
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ")"
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "Vandret opdateringsfrekvens"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "Libanon"
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "Lodret opdateringsfrekvens"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 farver (8 bit)"
-#: ../../services.pm:1
-#, c-format
-msgid "Stop"
-msgstr "Stop"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tusinde farver (15 bit)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Edit selected host"
-msgstr "Redigér valgte vært"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tusinde farver (16 bit)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD device defined!"
-msgstr "Ingen cd-enhed defineret!"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 millioner (24 bit)"
-#: ../../network/shorewall.pm:1
-#, c-format
-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 ""
-"Indtast venligst navnet på grænsefladen som er koblet på internettet.\n"
-"\n"
-"Eksempler:\n"
-" ppp+ for modem- eller DSL-opkoblinger, \n"
-" eth0 eller eth1 for kabelopkobling, \n"
-" ppp+ for isdn-opkobling.\n"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milliarder farver (32 bit)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tBrug .backupignore-filer\n"
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "Opløsninger"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "Bulgarsk (fonetisk)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "Vælg opløsning og farvedybde"
-#: ../../standalone/drakpxe:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "The DHCP start ip"
-msgstr "Begyndelses-ip på DHCP"
+msgid "Graphics card: %s"
+msgstr "Grafikkort: %s"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "256 kB"
-msgstr "256 kb"
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr "Annullér"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Don't rewind tape after backup"
-msgstr "Tilbagespól ikke båndet efter sikkerhedskopieringen"
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "Test konfigurationen"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "Systemopstarterens hovedindstillinger"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "Ønsker du at afprøve konfigurationen?"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""
-"[--manual] [--device=enhed] [--update-sane=sane_kilde_kat] [--update-"
-"usbtable] [--dynamic=enhed]"
-
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Tape"
-msgstr "Bånd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Malaysia"
-msgstr "Malaysia"
+"Advarsel: afprøvning af dette grafikkort kan få din maskine til at fryse"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid "Scanning network..."
-msgstr "Skanner netværk ..."
+msgid "Keyboard layout: %s\n"
+msgstr "Tastatur-type: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Med denne valgmulighed vil du være i stand til at kunne genskabe\n"
-"enhver version af dit /etc katalog."
+msgid "Mouse type: %s\n"
+msgstr "Muse-type: %s\n"
-#: ../../standalone/drakedm:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr "Ændringen er udført, ønsker du at genstarte dm-tjenesten?"
+msgid "Mouse device: %s\n"
+msgstr "Muse-enhed: %s\n"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid "Swiss (French layout)"
-msgstr "Schweizisk (Fransk layout)"
+msgid "Monitor: %s\n"
+msgstr "Skærm: %s\n"
-#: ../../raid.pm:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid fejlede (måske mangler raidtools?)"
+msgid "Monitor HorizSync: %s\n"
+msgstr "Skærms vandrette frekvens: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "August"
-msgstr "August"
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Skærms lodrette frekvens: %s\n"
-#: ../../network/drakfirewall.pm:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid "FTP server"
-msgstr "FTP-server"
+msgid "Graphics card: %s\n"
+msgstr "Grafikkort: %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid "Webcam"
-msgstr "Webcam"
+msgid "Graphics memory: %s kB\n"
+msgstr "Grafik-hukommelse: %s kb\n"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "størrelse på (andet niveau) cpu-mellemlagret"
+msgid "Color depth: %s\n"
+msgstr "Farvedybde: %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid "Soundcard"
-msgstr "Lydkort"
+msgid "Resolution: %s\n"
+msgstr "Opløsninger %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Month"
-msgstr "Måned"
+msgid "XFree86 server: %s\n"
+msgstr "XFree86-server: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Search for files to restore"
-msgstr "Søg efter filer at genskabe"
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 driver: %s\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Luxembourg"
-msgstr "Luxemburg"
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "Start X ved systemstart"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:62
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
-"For at udskrive en fil fra kommandolinjen (terminalvinduet) brug da "
-"kommandoen '%s <fil>'.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Level %s\n"
-msgstr "Niveau %s\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac (phonetic)"
-msgstr "Syrisk (fonetisk)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Iran"
-msgstr "Iran"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus"
-msgstr "Bus"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Iraq"
-msgstr "Irak"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "connecting to %s ..."
-msgstr "Opkobler til %s ..."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Mulig LAN-adresse konflikt fundet i konfigurationen til %s!\n"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring..."
-msgstr "Konfigurerer..."
+"Jeg kan sætte din maskine op til automatisk at starte X ved\n"
+"opstart. Ønsker du at starte X hver gang du genstarter?"
-#: ../../harddrake/v4l.pm:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:73
msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
msgstr ""
-"For de fleste moderne tv-kort vil bttv-modulet fra GNU/Linux-kernen blot "
-"automatisk finde de rette parametre.\n"
-"Hvis dit kort ikke findes korrekt, kan du gennemtvinge den rette tuner og "
-"korttyper her. Bare vælg dit tv-korts parametre om nødvendigt"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Password (again)"
-msgstr "Adgangskode (igen)"
+"Grafikkortet ser ud til at have en TV-UD-forbindelse.\n"
+"Den kan konfigureres så den fungerer med billedbuffer\n"
+"\n"
+"Til dette skal du tilslutte grafikkortet til tv'et inden du starter "
+"maskinen.\n"
+"Vælg dernæst indgangen \"TVout\" i starthåntereren.\n"
+"\n"
+"Har du denne funktion?"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search installed fonts"
-msgstr "Søg efter installerede skrifttyper"
+#: ../../Xconfig/various.pm_.c:85
+msgid "What norm is your TV using?"
+msgstr "Hvilken standard bruger dit tv?"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default desktop"
-msgstr "Standard skrivebord"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
+msgstr "Første sektor af opstartspartition"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
-msgstr ""
-"For at indsende en fejlrapport klik da på rapport-knappen.\n"
-"Dette vil åbne et vindue i en netlæser på %s\n"
-" hvor du vil finde en formular der kan udfyldes. Informationen vist ovenfor "
-"vil blive overført til den server."
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
+msgstr "Første sektor på disken (MBR)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr "Venezuela"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "SILO-installering"
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "IP address"
-msgstr "IP-adresse"
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
+msgstr "Hvor vil du placere opstartsprogrammet?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "Vælg størrelserne"
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "LILO/grub-installering"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Liste over data der er ødelagt:\n"
-"\n"
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
+msgstr "SILO"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
-msgstr ""
-"Kan kun monteres eksplicit (dvs.,\n"
-"'-a' tilvalget vil ikke bevirke, at filsystemet monteres)."
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
+msgstr "LILO med tekstmenu"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"Dit modem er ikke understøttet af systemet.\n"
-"Tag og kig på http://www.linmodems.org"
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
+msgstr "LILO med grafisk menu"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose another partition"
-msgstr "Vælg en ny partition"
+#: ../../any.pm_.c:142
+msgid "Grub"
+msgstr "Grub"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Current user"
-msgstr "Aktuelle bruger"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "Start fra DOS/Windows (loadlin)"
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
-msgstr "Brugernavn"
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Venstre Windows-tast"
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "Systemopstarterens hovedindstillinger"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "Guyana"
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
+msgstr "Systemopstarter der skal bruges"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Konfiguration af dhcp-server"
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "Systemopstarterens installation"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Brugt til katalog:\n"
-" kun ejeren af kataloget eller filen i dette katalog kan slette den"
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "Opstartsenhed"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " på Novell-server \"%s\", printer \"%s\""
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "Kompakt"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Name"
-msgstr "Printer-navn"
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "kompakt"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
-msgstr "Indstiller USB-nøgle"
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "Videoindstilling"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
-msgstr "Fjern et modul"
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
+msgstr "Ventetid før opstart af forvalgt styresystem"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
msgid "Password"
msgstr "Adgangskode"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Avanceret konfiguration"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr "Skanning på din HP-multifunktionsenhed"
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "Adgangskode (igen)"
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "Rod"
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "Begræns kommandolinie-indstillinger"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "Vælg en eksisterende RAID som skal udvides"
+#: ../../any.pm_.c:171
+msgid "restrict"
+msgstr "begræns"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Tyrkisk (moderne \"Q\" model)"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "Rens /tmp ved hver systemopstart"
-#: ../../standalone/drakboot:1
+#: ../../any.pm_.c:174
#, c-format
-msgid "Lilo message not found"
-msgstr "Lilo-besked ikke fundet"
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Præcis RAM-mængde, hvis påkrævet (fandt %d Mb)"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Automatisk regenerering af kernehoved i /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
+msgstr "Aktivér multiprofiler"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
-msgstr "hvis nødvendigt"
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "Angiv RAM-størrelse i Mb"
-#: ../../standalone/drakclock:1
-#, c-format
+#: ../../any.pm_.c:182
msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
+"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-"Vi behøver installere ntp-pakken\n"
-" for at aktivere Network Time Protocol"
+"Indstillingen ``Begræns kommandolinie-indstillinger'' er intet værd uden\n"
+"en adgangskode"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Failed..."
-msgstr "Genskabelse mislykkedes..."
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "Prøv igen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "Gem adgangskoderne for dette system i drakbackup-konfigurationen."
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "Adgangskoderne stemmer ikke overens"
-# Mangler
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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 ""
-"Introduktion\n"
-"\n"
-"Operativsystemet og de forskellige komponenter tilgængelige i Mandrake Linux "
-"distributionen vil herefter blive kaldt \"programmelprodukter\". "
-"Programmelprodukterne inkluderer, men er ikke begrænset til: samlingen af "
-"værktøjer, metoder, regler og dokumentation relateret til operativsystemet "
-"og de forskellige komponenter i Mandrake Linux-distributionen.\n"
-"\n"
-"\n"
-"1. Licensaftale\n"
-"\n"
-"Læs venligst dette dokument omhyggeligt. Dette dokument er en licensaftale "
-"mellem dig og MandrakeSoft S.A., som gælder til disse programmelprodukter. "
-"Ved at installere, kopiere eller bruge disse programmelprodukter accepterer "
-"du udtrykkeligt og fuldt ud denne licensaftale med dens betingelser og "
-"regler. Hvis du er uenig i nogensomhelst del af denne licens, mister du "
-"retten til at installere, kopiere eller bruge disse programmelprodukter. "
-"Hvilket som helst forsøg på at installere, kopiere eller bruge disse "
-"programmelprodukter på en måde som ikke er i overensstemmelse med "
-"betingelserne og reglerne i denne licens er ulovlig og vil betyde at du "
-"mister dine rettighedder under denne licens. Hvis dette sker, skal du med "
-"det samme ødelægge alle kopier af disse programmelprodukter.\n"
-"\n"
-"\n"
-"2. Begrænset garanti\n"
-"\n"
-"Programmelprodukterne og tilhørende dokumenter leveres \"som de er\", uden "
-"nogen form for garanti, i den udstrækning lov tillader. MandrakeSoft S.A. "
-"vil under ingen omstændigheder undtagen hvad lov foreskriver være ansvarlig "
-"for specielle, tilfældige, direkte eller indirekte tab af nogen art "
-"(inkluderende uden begrænsninger, skader ved tab af forretning, "
-"forstyrrelser af forretning, finansielle tab, advokatbistand, erstatninger "
-"som resultat af en retssag eller nogen anden form for følgetab) opstået "
-"under brugen eller mangel på samme af disse programmelprodukter, selv hvis "
-"MandrakeSoft S.A. er blevet gjort opmærksom på muligheden for eller "
-"indtræffelsen af sådanne skader.\n"
-"\n"
-"BEGRÆNSET ANSVAR MED HENSYN TIL REGLER OM BESIDDELSE ELLER BRUG AF FORBUDT "
-"PROGRAMMEL I VISSE LANDE\n"
-"\n"
-"I den udstrækning som loven tillader vil MandrakeSoft S.A. eller deres "
-"distributører under ingen omstændigheder være ansvarlig for specielle, "
-"tilfældige, direkte eller indirekte tab af nogen art (inklusive uden "
-"begrænsninger skader ved tab af forretning, forstyrrelser af forretning, "
-"finansielle tab, advokatbistand, erstatninger som resultat af en retssag "
-"eller nogen anden form for tab) opstået ved besiddelse eller brug af "
-"programmelkomponenter eller opstået ved hentning af programmelkomponenter "
-"fra et af Mandrake Linux webstederne som er forbudt eller begrænset i visse "
-"lande ved lokal lov. Dette begrænsede ansvar gælder, men er ikke begrænset "
-"til, de stærke krypteringskomponenter inkluderet i programmelprodukterne.\n"
-"\n"
-"\n"
-"3. GPL-licensen og relaterede licenser\n"
-"\n"
-"Dette programmel består af komponenter lavet af forskellige personer eller "
-"enheder. De fleste af disse komponenter bliver reguleret efter vilkårene og "
-"aftalerne i GNU General Public License, herefter kaldet \"GPL\", eller "
-"lignende licenser. De fleste af disse licenser tillader dig at bruge, "
-"kopiere, tilpasse eller redistribuere komponenterne, de dækker. Læs venligst "
-"vilkårene og betingelserne i licensaftalen for hver komponent omhyggeligt "
-"før du bruger det. Alle spørgsmål angående en komponent bedes adresseret til "
-"komponentens forfatter og ikke til MandrakeSoft. Programmerne udviklet af "
-"MandrakeSoft S.A. bliver reguleret efter GPL-licensen. Dokumentationen "
-"skrevet af MandrakeSoft S.A. bliver reguleret efter en specifik licens. "
-"Referér venligst til dokumentationen for yderligere detaljer.\n"
-"\n"
-"\n"
-"4. Intellektuelle rettigheder\n"
-"\n"
-"Alle rettigheder til komponenterne i programmelproduktet tilhører deres "
-"respektive forfattere, og er beskyttet af intellektuelle rettigheds- og "
-"ophavsretslove, gældende for programmel. MandrakeSoft S.A. forbeholder sine "
-"rettigheder til at ændre eller tilpasse programmelprodukterne, helt eller "
-"delvist, med alle midler og til alle formål. \"Mandrake\", \"Mandrake Linux"
-"\" samt de tilhørende logoer er varemærker for MandrakeSoft S.A. \n"
-"\n"
-"\n"
-"5. Styrende love\n"
-"\n"
-"Hvis dele af denne aftale bliver kendt ugyldig, ulovlig eller ubrugelig ved "
-"en domstolsafgørelse, vil disse dele blive ekskluderet fra denne kontrakt. "
-"Du vil forblive bundet af de andre gældende dele af aftalen. Vilkårene og "
-"aftalerne i denne licens er reguleret under fransk lov. Alle uenigheder "
-"vedrørende vilkårene i denne licens vil fortrinsvist blive løst udenfor "
-"domstolene. Som en sidste udvej vil uenighederne blive håndteret ved den "
-"rette domstol i Paris, Frankrig. Ved spørgsmål omkring dette dokument, "
-"kontakt venligst MandrakeSoft S.A. \n"
+#: ../../any.pm_.c:191
+msgid "Init Message"
+msgstr "Init-besked"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default user"
-msgstr "Forvalgt bruger"
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
+msgstr "Åben firmwareforsinkelse"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"x-koordinatet for forløbsindikatorens\n"
-"øvre venstre hjørne"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
+msgstr "Ventetid før kerneopstart"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Current interface configuration"
-msgstr "Aktuelle grænsesnitskonfiguration"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
+msgstr "Skal det være muligt at starte fra CD?"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Dæmon"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
+msgstr "Skal det være muligt at starte fra OF?"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../any.pm_.c:197
+msgid "Default OS?"
+msgstr "Forvalgt styresystem?"
+
+#: ../../any.pm_.c:231
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"
-"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"
+"On which drive are you booting?"
msgstr ""
+"Du besluttede at installere opstartsindlæseren på en partition.\n"
+"Dette indikerer at du allerede har en opstartsindlæser på disken som du "
+"starter op fra (fx System Commander).\n"
"\n"
-"Hvis du har et ISA kort burde værdiene i næste billede være rigtige.\n"
-"\n"
-"Hvis du har et PCMCIA kort skal du vide irq og io for kortet.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not print any test page"
-msgstr "Udskriv ikke nogen testsider"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr "Gurmukhi"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s er allerede i brug\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
-msgstr "Gennemtving ingen ACPI"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr ""
-"Denne adgangskode er for nemt at gætte (det skal mindst være på %d tegn)"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "[keyboard]"
-msgstr "[tastatur]"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP-proxy"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install List"
-msgstr "Installationsliste"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Change\n"
-"Restore Path"
-msgstr ""
-"Ændr\n"
-"Genskabelsessti"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Vis kun for den valgte dag"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tBegræns diskforbrug til %s MB\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 kb"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Bemærk: Parallelle porte kan ikke auto-detekteres)"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Hvad slags kort har du?"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Security"
-msgstr "Sikkerhed"
+"Hvilket drev starter du op fra?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:247
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"
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
-"Du kan også bruge den grafiske grænseflade 'xpdq' til at sætte "
-"valgmuligheder og behandle udskriftsopgaver.\n"
-"Hvis du bruger KDE som skrivebordsmiljø, har du en 'panik-knap', en ikon på "
-"skrivebordet, benævnt med 'STOP printer!', som stopper alle udskriftsopgaver "
-"øjeblikkeligt når du klikker på den. Dette er fx nyttigt hvis papiret "
-"krøller sammen.\n"
+"Her er følgende typer indgange.\n"
+"Du kan tilføje flere eller ændre de eksisterende."
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "Tilføj"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Kan ikke finde sikkerhedskopier til at genskabe...\n"
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "Færdig"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown"
-msgstr "Ukendt"
+#: ../../any.pm_.c:257
+msgid "Modify"
+msgstr "Ændr"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "Denne server er allerede på listen, og kan ikke blive tilføjet igen.\n"
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "Hvilken type ønsker du at tilføje"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Network Configuration"
-msgstr "Konfigurér netværk"
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "Linux"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "Andet styresystem (SunOS...)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Protokol for resten af verden \n"
-" ingen D-kanal (lejet linje)"
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "Andet styresystem (MacOS...)"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ vil konfigurere denne fil til at virke sammen med "
-"aftryksfilerne som bliver oprettet af\n"
-" \t\tmkinitrd-net, og indgangene i /etc/dhcpd.conf, for at udlevere "
-"netværks-opstartsaftryksfilerne til hver \n"
-" \t\tdiskløs klient.\n"
-"\n"
-" \t\tEn typisk tftp-konfigurationsfil ser sådan ud:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \t\tÆndringen her fra den normale installation er ændringen af "
-"disable-flaget til\n"
-" \t\t'no' og ændring af filstien til /var/lib/tftpboot, hvor mkinitrd-"
-"net\n"
-" \t\tplacere sine aftryksfiler."
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "Andet styresystem (Windows...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Valg %s skal være et tal!"
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "Billede"
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, c-format
-msgid "Notice"
-msgstr "Bemærk"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "Rod"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr ""
-"Du har ikke konfigureret X. Er du sikker på at du virkelig ønsker dette?"
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
+msgstr "Vedhæft"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Konfigurationen af printeren vil ske helt automatisk. Hvis din printer ikke "
-"blev fundet korrekt eller hvis du foretrækker en tilpasset "
-"printerkonfiguration, så slå 'Manuel konfiguration' til."
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "What type of partitioning?"
-msgstr "Hvilken slags partitionering?"
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "Læs-skriv"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-" "
-msgstr ""
-"filliste sendt via FTP: %s\n"
-" "
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "Tabel"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface"
-msgstr "Grænseflade"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "Usikker"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Multisession CD"
-msgstr "Multi-session CD"
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "Mærkat"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated strings"
-msgstr "kommaseparerede strenge"
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "Forvalgt"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "Dette er maskinerne fra hvilke skannerne skal bruges:"
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
+msgstr "Initrd-størrelse"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Messages"
-msgstr "Beskeder"
+#: ../../any.pm_.c:318
+msgid "NoVideo"
+msgstr "Ingen video"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Ukendt|CPH06X (bt878) [mange leverandører]"
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "Fjern indgang"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP- og IMAP-server"
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "Tom mærkat er ikke tilladt"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mexico"
-msgstr "Mexico"
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
+msgstr "Du skal angive en kerne-fil"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model stepping"
-msgstr "Modelserie"
+#: ../../any.pm_.c:330
+msgid "You must specify a root partition"
+msgstr "Du skal angive en root-partition"
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
-msgstr "Rwanda"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "Denne mærkat er allerede brugt"
-#: ../../lang.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Switzerland"
-msgstr "Schweiz"
+msgid "Found %s %s interfaces"
+msgstr "Fandt %s %s grænsesnit"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr "Brunei"
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "Har du én til?"
-#: ../../modules/interactive.pm:1
+#: ../../any.pm_.c:642
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Har du nogen %s grænsesnit?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "Du skal være root for at læse konfigurationsfilen.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Parametre til ekstern lpd"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"GNU/Linux er et flerbrugersystem, det vil sige at hver bruger kan have sine "
-"egne præferencer, sine egne filer og så videre. Du kan læse "
-"startvejledningen for at lære mere om flerbrugersystemer.\n"
-"I modsætning til root, som er administratoren, vil brugerne som du tilføjer "
-"her ikke have lov til at ændre nogetsomhelst undtagen deres egne filer og "
-"deres egne opsætninger, hvilket beskytter systemet mod utilsigtede eller "
-"ondartede ændringer som påvirker hele systemet. Du skal oprette i det "
-"mindste én almindelig bruger til dig selv - dette er den konto som du bør "
-"bruge til almindelig dagligt brug. Selvom det er meget nemt at logge ind som "
-"root for at gøre alt, kan det også være meget farligt!\n"
-"En meget simpel fejltagelse kan betyde at dit system ikke virker mere. Hvis "
-"du laver en alvorlig fejltagelse som almindelig bruger, vil det værste der "
-"kan ske at du vil tabe nogen information, men det vil ikke påvirke hele "
-"systemet.\n"
-"\n"
-"Det første felt spørger efter dit rigtige navn. Dette er naturligvis ikke "
-"krævet -du kan faktisk skrive hvad du lyster. DrakX vil bruge det første ord "
-"du indtastede i feltet og kopiere det til '%s'-feltet, hvilket er navnet, "
-"som denne bruger skal indtaste for at logge ind på systemet. Hvis du ønsker "
-"det kan du overskrive det forvalgte of ændre brugernavnet. Det næste trin er "
-"at indtaste en adgangskode. Fra et sikkerhedsmæssigt synspunkt er "
-"adgangskoden for en ikke-priviligeret (normal) bruger er ikke så vigtigt som "
-"det for Root, men det er ingen grund til at negligere det alligevel, ved at "
-"lade det være blankt eller at gøre det for nemt - når det kommer til stykket "
-"er dine egne filer der er i fare.\n"
-"\n"
-"Når du har klikket på '%s', kan du tilføje andre brugere. Tilføj en bruger "
-"for hver af dine venner: fx din far og din søster. Når du har tilføjet alle "
-"de brugere du ønsker, vælg da '%s ->'.\n"
-"\n"
-"Klik på '%s'-knappen lader dig ændre standard-skál for denne bruger\n"
-"(bash er standard). \n"
-"\n"
-"Når du er færdig med at tilføje brugere, vil du blive spurgt om at vælge en "
-"bruger som automatisk kan logge ind på systemet når maskinen startes op. "
-"Hvis du er interesseret i denne facilitet (og ikke kærer dig synderligt om "
-"lokal sikkerhed), så vælg den ønskede bruger og vindueshåndtering og klik '%"
-"s ->'.\n"
-"Hvis du ikke er interesseret i denne facilitet, så afmarkér boksen med '%s'"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Internet Access..."
-msgstr "Konfigurér Internetadgang..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Vælg tidsinterval mellem hver sikkerhedskopiering"
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "Nej"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Norway"
-msgstr "Norge"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "Ja"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Delete profile"
-msgstr "Slet profil"
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "Se info for maskinel"
-#: ../../keyboard.pm:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Danish"
-msgstr "Dansk"
+msgid "Installing driver for %s card %s"
+msgstr "Installerer driver for %s kort %s"
-#: ../../services.pm:1
+#: ../../any.pm_.c:663
#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Aktiverer automatisk numlock-tast i konsol og XFree ved\n"
-"opstart."
+msgid "(module %s)"
+msgstr "(modul %s)"
-#: ../../network/network.pm:1
+#: ../../any.pm_.c:674
#, 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)."
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-"Indtast IP konfigurationen for denne maskine. Hvert felt skal udfyldes\n"
-"med en IP adresse i `dotted-decimal' notation (for eksempel 1.2.3.4)."
+"Du kan nu angive parametre til modul %s.\n"
+"Bemærk at alle adresser bør indtastes med foranstillet 0x, fx '0x123'"
-#: ../../help.pm:1
+#: ../../any.pm_.c:680
#, 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."
+"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 ""
-"Mandrake Linux installationen er fordelt på flere cdrom-er. DrakX véd om en "
-"valgt pakke ligger på en anden cdrom, så den vil udskyde den aktuelle cd og "
-"bede dig om at isætte den rigtige, om nødvendigt."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
-msgstr "Ved kontrol vil ejer og gruppe ikke blive ændret"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "Bulgarien"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
-msgstr "Tirsdag"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "Processorer"
+"Du kan nu sætte parametre til modulet %s.\n"
+"Parametrene er i formatet ``navn=værdi navn2=værdi2 ...''.\n"
+"F.eks., ``io=0x300 irq=7''"
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "Svalbard og Jan Mayen øerne"
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "Modulindstillinger:"
-#: ../../standalone/drakTermServ:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "No NIC selected!"
-msgstr "Ingen NIC valgt!"
+msgid "Which %s driver should I try?"
+msgstr "Hvilken %s driver skal jeg prøve?"
-#: ../../network/netconnect.pm:1
+#: ../../any.pm_.c:703
#, 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."
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
-"Problemer indtraf under konfigurationen.\n"
-"Afprøv din forbindelse med net_monitor eller mcc. Hvis din forbindelse ikke "
-"virker, kan du prøve at genstarte konfigurationen."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "partition %s er nu kendt som %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Other files..."
-msgstr "Sikkerhedskopiér andre filer..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
-msgstr "Congo (Kinshasa)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "SMB-serverens IP"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Partitionstabellen for disk %s vil nu blive skrevet på disken!"
+"I nogen tilfælde behøver %s driveren at have ekstra information for at "
+"virke\n"
+"ordentligt, selv om den normalt virker fint uden. Ønsker du at angive "
+"ekstra\n"
+"parametre for den eller tillade driveren at sondere din maskine for\n"
+"den information den behøver? Af og til vil sondering stoppe maskinen, men "
+"burde\n"
+"ikke forårsage nogen skader."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing HPOJ package..."
-msgstr "Installerer HPOJ-pakke..."
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
+msgstr "Automatisk sondering"
-#: ../../any.pm:1
-#, 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"
-msgstr ""
-"En tilpasset opstartsdiskette lader dig opstarte Linux systemet uden at være "
-"afhængig af den normale opstarter. Det kan være nyttigt, hvis du ikke vil "
-"installere LILO (eller grub) på dit system - eller hvis et andet "
-"operativsystem fjerner LILO, eller hvis LILO ikke virker med din hardware. "
-"En tilpasset opstartsdiskette kan også bruges sammen med Mandrakes `rescue "
-"image', hvilket gør det meget nemmere at reparere systemet i tilfælde af "
-"systemnedbrud. \n"
-"Vil du lave en opstartsdiskette til dit system?\n"
-"%s"
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "Specificér parametre"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:719
#, c-format
msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
-"\n"
-" DrakBackup Dæmon-Rapport\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latvian"
-msgstr "Lettisk"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr "månedligt"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Retry"
-msgstr "Prøv igen"
+"Indlæsning af modul %s mislykkedes.\n"
+"Ønsker du at prøve igen med andre parametre?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr "Modulnavn"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
+msgstr "adgang til X-programmer"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Start at boot"
-msgstr "Start ved opstart"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
+msgstr "adgang til rpm-værktøjer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Brug inkrementalbackup"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
+msgstr "tillad \"su\""
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "Første sektor på disken (MBR)"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
+msgstr "adgang til administrative filer"
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "El Salvador"
+#: ../../any.pm_.c:738
+msgid "access to network tools"
+msgstr "adgang til netværksværktøjer"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
-msgstr "Joystick"
+#: ../../any.pm_.c:739
+msgid "access to compilation tools"
+msgstr "adgang til oversættelsesværktøjer"
-#: ../../standalone/harddrake2:1
+#: ../../any.pm_.c:744
#, c-format
-msgid "DVD"
-msgstr "DVD"
+msgid "(already added %s)"
+msgstr "(har allerede tilføjet %s)"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
-msgstr "Brug ISO 10646 som standard"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "Adgangskoden er for simpel"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "modulet i GNU/Linux-kernen som håndterer denne enhed"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
+msgstr "Indtast et brugernavn"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Er dit maskin-ur sat til GMT?"
+#: ../../any.pm_.c:751
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr "Brugernavnet må kun indeholde små bogstaver, tal, `-' og `_'"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "Forsøger at redde partitionstabellen"
+#: ../../any.pm_.c:752
+msgid "The user name is too long"
+msgstr "Dette brugernavn er for langt"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Valg %s skal være et helt tal!"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "Dette brugernavn eksisterer allerede"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
-msgstr "Brug adgangskode til at autentificere brugere."
+#: ../../any.pm_.c:757
+msgid "Add user"
+msgstr "Tilføj bruger"
-#: ../../interactive/stdio.pm:1
+#: ../../any.pm_.c:758
#, c-format
msgid ""
-"Entries you'll have to fill:\n"
+"Enter a user\n"
"%s"
msgstr ""
-"Indgange som du skal udfylde:\n"
+"Indtast en bruger\n"
"%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-"For sikkerhedskopiering til andre medier bliver filer stadig oprettet på "
-"disken og så overflyttet til det andet medie. Aktivering af denne "
-"valgmulighed vil fjerne tar-filerne på disken efter sikkerhedskopieringen."
-
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Kan ikke starte levende opgradering!!!\n"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "Navn: "
+#: ../../any.pm_.c:759
+msgid "Accept user"
+msgstr "Acceptér bruger"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
-msgstr "op"
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "Rigtige navn"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 millioner (24 bit)"
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "Brugernavn"
-#: ../../any.pm:1
-#, c-format
-msgid "Allow all users"
-msgstr "Tillad alle brugere"
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "Skal"
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr "Den officielle MandrakeSoft-butik"
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "Ikon"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "Ændrer størrelsen"
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "Autologin"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:804
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
-"Indtast den maksimale størrelse\n"
-" tilladt for Drakbackup (MB)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Cable connection"
-msgstr "Kabelforbindelse"
-
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, c-format
-msgid "User"
-msgstr "Bruger"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Lav ny sikkerhedskopi før genskabning (kun for inkrementalbackupper)."
+"Jeg kan sætte din maskine op til automatisk at logge en bestemt bruger på.\n"
+"Ønsker du at bruge denne finesse?"
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "mkraid fejlede"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Name"
-msgstr "Navn"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Emulering af knap 3"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
-msgstr "Tjek tilføjelser og fjernelser af sgid-filer."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files..."
-msgstr "Sender filer..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "Israelsk (Fonetisk)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
-msgstr "adgang til rpm-værktøjer"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Du skal vælge eller indtaste en printer/enhed!"
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "Vælg den forvalgte bruger:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Problem med rettigheder ved adgang til CD."
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
+msgstr "Vælg den vindueshåndtering du ønsker at benytte:"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "Telefonnummer"
+#: ../../any.pm_.c:824
+msgid "Please choose a language to use."
+msgstr "Vælg det sprog, der skal bruges."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr "Drivprogrammet %s for lydkortet er ikke listet"
+#: ../../any.pm_.c:826
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
+msgstr ""
+"Du kan vælge andre sprog der vil være tilgængelige efter installationen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Printernavn, beskrivelse, sted"
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "Alt"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
-msgstr "USA (broadcast)"
+#: ../../any.pm_.c:961
+msgid "Allow all users"
+msgstr "Tillad alle brugere"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Brug Xinerama-udvidelse"
+#: ../../any.pm_.c:961
+msgid "No sharing"
+msgstr "Ingen fildeling"
-#: ../../diskdrake/interactive.pm:1
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
#, c-format
-msgid "Loopback"
-msgstr "Loopback"
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr "Pakken %s skal være installeret. Ønsker du at installere den?"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "West Europe"
-msgstr "Vesteuropa"
+#: ../../any.pm_.c:973
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
+msgstr "Du kan eksportere med NFS eller Samba. Hvilken vil du bruge"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
-msgid "On CD-R"
-msgstr "på cd-rom"
+msgid "Mandatory package %s is missing"
+msgstr "Krævet pakke %s mangler"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../any.pm_.c:987
msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
+"Would you like to allow users to share some of their directories?\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror "
+"and nautilus.\n"
"\n"
-"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"
+"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-"[VALGMULIGHEDER] [PROGRAM-NAVN]\n"
-"\n"
-"VALGMULIGHEDER:\n"
-" --help - udskriv denne hjælpebesked.\n"
-" --report - program bær være én af Mandrakes værktøjer\n"
-" --incident - program bær være én af Mandrakes værktøjer"
+"Ønsker du at tillade brugere at eksportere nogle kataloger i deres "
+"hjemmekatalog?\n"
+"Tilladelse af dette vil sætte brugere i stand til simpelthen at klikke på "
+"'Fildeling' i konqueror og nautilus.\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake2 version %s"
-msgstr "Harddrake2 version %s"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
+msgstr "Start userdrake"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Preferences"
-msgstr "Præferencer"
+#: ../../any.pm_.c:1003
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
+msgstr ""
+"Deling per bruger bruger gruppen 'fileshare'. \n"
+"Du kan bruge userdrake til at tilføje en bruger til denne gruppe."
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr "Swaziland"
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
+msgstr "Velkommen til Crackere"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "Dominikanske Republik"
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Ringe"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr "Kopierer %s"
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
+msgstr "Standard"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Choose color"
-msgstr "vælg farve"
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Høj"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac"
-msgstr "Syrisk"
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+msgid "Higher"
+msgstr "Højere"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "Paranoid"
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1061
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!"
+"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 ""
-"Vælg det diskdrev som du vil slette for at installere din nye Mandrake Linux "
-"partition. Vær forsigtig, alle data som er på denne partition vil gå tabt og "
-"vil ikke kunne genskabes!"
-
-#. -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
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Brug tasterne %c og %c til at vælge mellem mulighederne."
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Standard 2-knaps mus"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Aktivér '%s' for at udføre filen"
-
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr "Fjern de logiske delarkiver først\n"
-
-#. -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
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Den fremhævede mulighed vil blive startet automatisk om %d sekunder."
+"Dette niveau skal bruges med omtanke. Det gør dit system nemmere at bruge, "
+"men er meget sårbart: det må ikke bruges til en maskine der er i et netværk "
+"eller har forbindelse til Internettet. Der er ikke nogen kontrol af "
+"adgangskoder."
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../any.pm_.c:1064
msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
-"Kan ikke skrive /etc/sysconfig/bootsplash\n"
-"Fil ikke fundet."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet access"
-msgstr "Internetadgang"
+"Kontrol af adgangskode er nu aktiveret, men brug som netværksmaskine er "
+"stadig ikke anbefalet."
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../any.pm_.c:1065
msgid ""
-"y coordinate of text box\n"
-"in number of characters"
-msgstr "antal tegn i tekstrudens y-led"
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
+msgstr ""
+"Dette er standard sikkerheds-anbefalingen for en maskine\n"
+" med forbindelse til Internettet som klient. "
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1066
msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
-"For at få en liste af tilgængelige muligheder for den aktuelle printer kan "
-"du klikke på knappen 'Liste med printermuligheder'."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr "Aktiverer servere..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Udskriver testsider..."
+"Der er allerede nogle begrænsninger, og flere automatiske kontroller bliver "
+"kørt hver nat."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1067
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."
+"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 ""
-"Overførsel klar.\n"
-"Du vil måske kontrollere at du kan logge ind på serveren med:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"uden at blive spurgt om en adgangskode."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Der findes allerede en partition med monterings-sti %s\n"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
-msgstr "Aktivér/deaktivér msec timevise sikkerhedskontrol."
+"Med dette sikkerhedsniveau kan brug som server komme på tale.\n"
+"Sikkerheden er nu høj nok til at systemet kan bruges som server som tillader "
+"forbindelser fra mange klienter. Bemærk: hvis din maskine kun er en klient "
+"på internettet bør du hellere vælge et lavere niveau."
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1070
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''."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-"Nu skal du vælge hvor på din harddisk du vil installere dit Mandrake Linux-"
-"operativsystem. Hvis disken er tom eller et eksisterende operativsystem "
-"bruger alt pladsen på den, bliver du nødt til at partitionere drevet. "
-"Partitionering vil sige at disken opdeles i logiske dele for at lave den "
-"plads der behøves til at installere dit nye Mandrake Linux-system.\n"
-"\n"
-"Da partitioneringen af en disk normalt ikke kan fortrydes og kan føre til "
-"tab af data, hvis der allerede er et eksisterende operativsystem installeret "
-"på drevet, kan det godt være frustrerende og stressende for uøvede brugere. "
-"Heldigvis har DrakX en vejleder som forenkler denne proces. Før du "
-"fortsætter med dette trin kan du gennemlæse resten af dette afsnit, og "
-"mindst af alt tage dig god tid.\n"
-"\n"
-"Afhængig af din disks konfiguration er flere muligheder tilstede:\n"
-"\n"
-" * '%s': Denne mulighed vil udføre en automatisk opdeling af den ledige "
-"diskplads. Hvis du bruger denne mulighed vil du ikke blive spurgt om mere.\n"
-"\n"
-" * '%s': vejlederen har fundet en eller flere eksisterende Linux-partitioner "
-"på din harddisk. Hvis du vil bruge dem, så vælg denne mulighed. Du vil så "
-"blive spurgt om monteringspunkter tilknyttet hver af partitionerne. De gamle "
-"monteringspunkter er forvalgt og i de fleste tilfælde er det en god idé at "
-"beholde dem.\n"
-"\n"
-" * '%s': hvis Microsoft Windows er installeret på din disk og bruger al "
-"pladsen, bliver du nødt til at lave fri plads til Linux-data. For at gøre "
-"det kan du slette dine Microsoft Windows partitioner og data (se \"Slet hele "
-"disken\") eller ændre størrelsen på din Microsoft Windows-FAT-partition. "
-"Størrelsesændringen kan fortages uden tab af data, hvis du i forvejen har "
-"defragmenteret Windows-partitionen. Denne løsning er anbefalet hvis du vil "
-"bruge både Mandrake Linux og Microsoft Windows på samme maskine.\n"
-"\n"
-" Før du vælger denne løsning, bør du forstå at størrelsen på din Microsoft "
-"Windows partition vil blive mindre end da du startede. Du vil have mindre "
-"fri plads under Microsoft Windows til at gemme dine data eller installere "
-"nyt programmel.\n"
-"\n"
-" * '%s': hvis du vil slette alle data på alle partitioner på denne disk og "
-"erstatte dem med dit nye Mandrake Linux-system, kan du vælge denne mulighed. "
-"Vær forsigtig med denne løsning, du vil ikke være i stand til at fortryde "
-"dine ændringer efter at du har sagt ja.\n"
-"\n"
-" !! Hvis du bruger denne mulighed vil alle eksisterende data på din disk "
-"gå tabt. !!\n"
-"\n"
-" * '%s': dette vil simpelthen slette alt på disken og begynde fra en frisk, "
-"og partitionere fra ny. Alle data på din disk vil gå tabt.\n"
-"\n"
-" !! Hvis du bruger denne mulighed vil alle eksisterende data på din disk "
-"gå tabt. !!\n"
-"\n"
-" * '%s': vælg denne mulighed hvis du vil partitionere disken i hånden. Vær "
-"forsigtig - det er en stærk , men også farlig mulighed. og du kan meget nemt "
-"komme til at slette alle dine data. Derfor er denne mulighed kun anbefalet "
-"hvis du har lavet noget lignende før. For at få viden om brugen af DiskDrake-"
-"programmet kan du se i afsnittet 'Administrér dine partitioner' i "
-"'Startervejledningen'."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
-msgstr "Ukraine"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Application:"
-msgstr "Applikation:"
+"Baseret på det foregående niveau, men systemet er nu helt lukket.\n"
+"Sikkerhedsfaciliteterne er nu på deres højeste niveau."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "External ISDN modem"
-msgstr "Eksternt ISDN modem"
+#: ../../any.pm_.c:1076
+msgid "DrakSec Basic Options"
+msgstr "Basale valgmuligheder for DrakSec"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr "hvis sat til ja, så rapportér kontrolresultat per epost."
+#: ../../any.pm_.c:1077
+msgid "Please choose the desired security level"
+msgstr "Vælg det ønskede sikkerhedniveau"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Dit valg? (standard %s) "
+#: ../../any.pm_.c:1080
+msgid "Security level"
+msgstr "Sikkerhedsniveau"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr "Problemløsning"
+#: ../../any.pm_.c:1082
+msgid "Use libsafe for servers"
+msgstr "Brug libsafe for servere"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1083
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"
+"A library which defends against buffer overflow and format string attacks."
msgstr ""
-"Testsider er blevet sendt til printeren.\n"
-"Dette kan tage lidt tid før printeren starter.\n"
-"Udskrivningsstatus:\n"
-"%s\n"
-"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
-msgstr "dagligt"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and one unknown printer"
-msgstr "og en ukendt printer"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Ireland"
-msgstr "Irland"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Restore Configuration "
-msgstr " Genskab konfiguration "
+"Et bibliotek som beskytter mod angreb via bufferoverløb og formatstrenge."
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Er dette den korrekte indstilling?"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
+msgstr "Sikkerhedsadministrator (brugernavne eller e-post)"
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1166
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."
+"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 ""
-"Du vil nu kunne opsætte din internet- eller netværksopkobling. Hvis du "
-"ønsker at forbinde din maskine til internettet eller til et lokalnetværk så "
-"klik på '%s'.\n"
-"\n"
-"Mandrake Linux vil prøve at automatisk finde netværksenheder og modemer. "
-"Hvis denne søgning mislykkes så fjern markeringen i boksen '%s' næste gang. "
-"Du kan også vælge at ikke konfigurere netværket, eller gøre det senere; i så "
-"tilfælde vil klik på '%s'-knappen føre dig til næste trin.\n"
-"\n"
-"Ved konfigurering af dit netværk er mulighederne for forbindelser: "
-"almindeligt modem, ISDN-modem, ADSL-forbindelse, kabel-modem, og endelig en "
-"simpel LAN-forbindelse (Ethernet).\n"
-"\n"
-"Vi vil ikke her gå i detaljer med hver konfigurationsmulighed, men forsikr "
-"dig om, at du har alle parametrene, såsom IP-adresse, standard gateway, DNS-"
-"servere mv., fra din internetudbyder eller systemadministrator.\n"
-"\n"
-"Du kan læse i kapitlet i håndbogen omkring internetforbindelser om detaljer "
-"omkring konfigureringen, eller simpelthen vente til dit system er "
-"installeret og så bruge programmet beskrevet dér til at konfigurere din "
-"forbindelse."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Konfiguration med vejleder"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Autoprobe"
-msgstr "Automatisk sondering"
+"Her kan du vælge tasten eller tastekombinationen som \n"
+"lader dig skifte mellem forskellige tastaturlayouter\n"
+"(dvs latinsk eller ikke-latinsk)."
-#: ../../security/help.pm:1
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, c-format
msgid ""
-"if set to yes, check for :\n"
-"\n"
-"- empty passwords,\n"
+"Welcome to %s the operating system chooser!\n"
"\n"
-"- no password in /etc/shadow\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
"\n"
-"- for users with the 0 id other than root."
msgstr ""
-"hvis sat til ja, så tjek for:\n"
-"\n"
-"- tomme adgangskoder,\n"
+"Velkommen til %s styresystems-vælgeren!\n"
"\n"
-"- ingen adgangskode i /etc/shadow\n"
+"Vælg et styresystem i den ovenstående liste eller\n"
+"vent %d sekunder for at starte standard.\n"
"\n"
-"- for andre brugere end root med id = 0."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files..."
-msgstr "Sikkerhedskopiér systemfiler..."
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the suggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Velkommen til GRUB styresystemsvælgeren!"
-#: ../../any.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:986
#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Kan ikke bruge rundkastning uden noget NIS-domæne"
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Brug tasterne %c og %c til at vælge mellem mulighederne."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Fjerner printer \"%s\"..."
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Tryk 'enter' for at starte det valgte OS, 'e' for at redigere"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell history size"
-msgstr "Størrelse af historik i skallen"
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "kommandoerne før opstart, eller 'c' for en kommandolinie."
-#: ../../standalone/drakfloppy:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:995
#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Den fremhævede mulighed vil blive startet automatisk om %d sekunder."
-#: ../../standalone/drakpxe:1
-#, 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"
-msgstr ""
-"Angiv venligst hvor auto_install.cfg-filen er placeret.\n"
-"\n"
-"Lad den være blank hvis du ikke ønsker at opsætte en automatisk "
-"installationstilstand.\n"
-"\n"
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
+msgstr "Ikke nok plads i /boot"
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on other machines"
-msgstr "Konfigureret på andre maskiner"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "Skrivebord"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "informationsniveau som kan opnås via cpuid-instruktionen"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "Start-menu"
-#: ../../lang.pm:1
+#: ../../bootloader.pm_.c:1120
#, c-format
-msgid "Peru"
-msgstr "Peru"
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "Du kan ikke installere opstartsindlæseren på en %s-partition\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " on device: %s"
-msgstr " på enhed: %s"
+#: ../../bootlook.pm_.c:53
+msgid "Boot Style Configuration"
+msgstr "Konfiguration af opstartsudseende"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "Fjern Windows(TM)"
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
+msgstr "/_Fil"
-#: ../../services.pm:1
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"Starter X-font serveren (dette er obligatorisk for at XFree skal køre)."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
+msgstr "/Fil/_Afslut"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"De fleste af disse værdier blev fundet\n"
-"fra dit kørende system.\n"
-"Du kan ændre dem efter behov."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
+msgstr "<Ctrl>Q"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Vælg skrifttypefilen eller -kataloget oh klik på 'Tilføj'"
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
+msgstr "Katergoriserende oversigt i ny stil"
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "Madagaskar"
+#: ../../bootlook.pm_.c:83
+msgid "NewStyle Monitor"
+msgstr "Oversigt i ny stil"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
+#: ../../bootlook.pm_.c:84
+msgid "Traditional Monitor"
+msgstr "Traditionel oversigt"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
-msgstr "Cron er ikke tilgængelig endnu som ikke-root"
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
+msgstr "Traditionel Gtk+-oversigt"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "System"
-msgstr "System"
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
+msgstr "Start Aurora ved opstart"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Ønsker du at bruge denne facilitet?"
+#: ../../bootlook.pm_.c:89
+msgid "Lilo/grub mode"
+msgstr "Lilo/grub modus"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr "Arabisk"
+#: ../../bootlook.pm_.c:89
+msgid "Yaboot mode"
+msgstr "Yaboot modus"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:138
+msgid "Install themes"
+msgstr "Installér temaer"
+
+#: ../../bootlook.pm_.c:139
msgid ""
-"\n"
-"- Options:\n"
+"Display theme\n"
+"under console"
msgstr ""
-"\n"
-"- Muligheder:\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Password required"
-msgstr "Adgangskode krævet"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d minutes"
-msgstr "%d minutter"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Grafikkort: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV transfer failed!"
-msgstr "WebDAV overførsel mislykkedes!"
+"Visningstema\n"
+"under konsol"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "XFree konfiguration"
+#: ../../bootlook.pm_.c:140
+msgid "Create new theme"
+msgstr "Opret nyt tema"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../bootlook.pm_.c:184
#, c-format
-msgid "Choose action"
-msgstr "Vælg handling"
+msgid "Backup %s to %s.old"
+msgstr "Sikkerhedskopiér %s til %s.old"
-#: ../../lang.pm:1
+#: ../../bootlook.pm_.c:187
#, c-format
-msgid "French Polynesia"
-msgstr "Fransk Polynesien"
+msgid "Copy %s to %s"
+msgstr "Kopiér %s til %s"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Normalt har DrakX ingen problemer med at finde ud af hvor mange knapper du "
-"har på din mus. Den antager at du har en to-knapsmus og vil lave en "
-"opsætning hvor den tredje knap emuleres. Den tredje knap for en to-knaps mus "
-"emuleres ved at trykke på den venstre og højre museknap samtidigt. DrakX vil "
-"automatisk vide om din mus bruger et PS/2 eller et USB-grænsesnit.\n"
-"\n"
-"Hvis du ønsker en anden type mus, vælg da den rigtige type mus fra den viste "
-"liste.\n"
-"\n"
-"Hvis du vælger en mus forskellig fra den forvalgte, vil du blive præsenteret "
-"for en skærm for museafprøvning. Brug knapperne og hjulet for at efterprøve, "
-"om indstillerne er korrekte, og at musen virker korrekt. Hvis musen ikke "
-"virker korrekt, tryk da på mellemrumstangenten eller vognretur for at "
-"annullere testen og gå tilbage til listen med valg.\n"
-"\n"
-"Mus med hjul findes til tider ikke automatisk., så du vil behøve at vælge "
-"din mus fra en liste. Forsikr dig om at du vælger den der passer til porten "
-"som din mus er tilsluttet. Efter valg af en mus og tryknin på '%s'-knappen "
-"vises et billede med en mus på skærmen. Rul med musehjulet for at forsikre "
-"dig om at det aktiveres korrekt. Når du har set at musehjulet på skærmen "
-"bevæger sig som du ruller med musehjulet, så afprøv museknapperne og tjek at "
-"musemarkøren flytter sig når du flytter på musen."
-
-#: ../../services.pm:1
-#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Støtter OKI 4w og kompatible winprintere."
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+msgstr "Fejl"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-"Filer eller jokertegn listet i en .backupignore-fil i toppen af et "
-"katalogtræ vil ikke blive sikkerhedskopieret."
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
+msgstr "Lilo-besked ikke fundet"
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Start ALSA (Advanced Linux Sound Architecture) lydsystemet"
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr "Kan ikke skrive /etc/sysconfig/bootsplash."
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
+#: ../../bootlook.pm_.c:222
#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Installerer driver for %s kort %s"
+msgid "Write %s"
+msgstr "Skriv %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:224
msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-"Du har overført din tidligere standard-printer '%s', skal den også være "
-"standard-printer under det nye printersystem %s?"
+"Kan ikke skrive /etc/sysconfig/bootsplash\n"
+"Fil ikke fundet."
-#: ../../standalone/drakTermServ:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Enable Server"
-msgstr "Aktivér server"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr "Kan ikke opstarte mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../keyboard.pm:1
+#: ../../bootlook.pm_.c:238
#, c-format
-msgid "Ukrainian"
-msgstr "Ukrainsk"
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr "Lav initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:244
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."
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-"Netværksadgangen kørte ikke og kunne ikke startes. Tjek din konfiguration og "
-"dit udstyr. Prøv derefter at konfigurere din eksterne printer igen."
+"Kan ikke genstarte LiLo!\n"
+"Start \"lilo\" som root på kommandolinjen for at færdiggøre installationen "
+"af Lilo-tema."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Aktivér '%s' for at skrive filen"
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
+msgstr "Genstart 'lilo'"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Indsæt opstartsdisketten i diskette-drevet %s"
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+msgid "Notice"
+msgstr "Bemærk"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local network(s)"
-msgstr "Lokalnetværk"
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr "Problemfri installation af temaer for LiLo- og opstartsskærm"
-#: ../../help.pm:1
-#, c-format
-msgid "Remove Windows"
-msgstr "Fjern Windows"
+#: ../../bootlook.pm_.c:251
+msgid "Theme installation failed!"
+msgstr "Installation af tema mislykkedes"
-#: ../../standalone/scannerdrake:1
+#: ../../bootlook.pm_.c:259
#, c-format
msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"Din %s er blevet konfigureret.\n"
-"Du kan nu skanne dokumenter med 'XSane' fra Multimedie/grafik i "
-"programmenuen."
+"Du bruger for øjeblikket % som opstartshåndterer.\n"
+"Klik på Konfigurér for at starte opsætnings-vejlederen."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Firewire controllers"
-msgstr "Firewire-kontrolkort"
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
+msgstr "Konfigurér"
-#: ../../help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:268
+msgid "Splash selection"
+msgstr "Valg af opstartsskærm"
+
+#: ../../bootlook.pm_.c:271
+msgid "Themes"
+msgstr "Temaer"
+
+#: ../../bootlook.pm_.c:273
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!"
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
msgstr ""
-"Efter du har konfigureret de generelle parametre for opstartsindlæseren, vil "
-"listen med opstartsmuligheder, som vil være tilgængeligt ved opstarten, "
-"blive vist.\n"
"\n"
-"Hvis der er andre operativsystemer installeret på din maskine, vil de "
-"automatisk blive tilføjet til opstartsmenuen. Du kan finjustere de "
-"eksisterende muligheder ved at klikke '%s' for at oprette en ny indgang; "
-"vælg en indgang og klik på '%s' eller '%s' for at ændre eller fjerne den. '%"
-"s' bekræfter dine ændringer.\n"
-"\n"
-"Måske vil du ikke ønske at givea dgang til disse andre operativsystemer til "
-"nogensomhelst, som har adgang til konsollen og genstarter maskinen. Du kan "
-"slette de tilsvarende indgange til operativsystemerne for at fjerne dem fra "
-"opstartsindlæserens menu, men du vil så have brug for en opstartsdiskette "
-"for at kunne starte disse andre operativsystemer op!"
+"Vælg et tema for\n"
+"Lilo og opstartskærmen,\n"
+"du kan vælge\n"
+"dem separat"
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
+msgstr "Lilo-skærm"
+
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
+msgstr "Opstartsskærm"
+
+#: ../../bootlook.pm_.c:316
msgid "System mode"
msgstr "Systemtilstand"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"For at skrive til en NetWare printer skal du angive navnet på NetWare "
-"printerserveren (bemærk at dette navn kan være forskelligt fra TCP/IP-"
-"navnet!) såvel som kønavnet for den printer du vil benytte samt om "
-"nødvendigt et brugernavn og en adgangskode."
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
+msgstr "Start X-vinduessystemet efter opstart"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Netmask:"
-msgstr "Netmaske:"
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
+msgstr "Nej, jeg ønsker ikke automatisk login"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
-msgstr "Gør det senere"
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "Ja, jeg ønsker automatisk login med denne (bruger, skrivebord)"
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "Vedhæft"
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
+msgstr "O.k."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Opfrisk printerliste (for at vise alle tilgængelige eksterne CUPS-printere)"
+#: ../../common.pm_.c:107
+msgid "GB"
+msgstr "Gb"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Når denne valgmulighed er valgt, vil CUPS hver gang den starter forsikre sig "
-"om at\n"
-"\n"
-"- hvis LPD/LPRng er installeret, vil /etc/printcap ikke overskrives af CUPS\n"
-"\n"
-"- hvis /etc/cups/cupsd.conf mangler, vil den blive oprettet\n"
-"\n"
-"- når printerinformation rundsendes, vil den ikke indeholde \"localhost\" "
-"som servernavn.\n"
-"\n"
-"Hvis nogen af disse ting giver dig problemer, så fjern denne valgmulighed, "
-"men da må du selv sørge for at disse punkter bliver overholdt."
+#: ../../common.pm_.c:107
+msgid "KB"
+msgstr "Kb"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Autoinstallation kan ske fuldautomatisk hvis ønsket. I så tilfælde vil den "
-"overtage hele harddisken!! (dette er beregnet til at installere på en anden "
-"maskine).\n"
-"\n"
-"Du foretrækker måske at afspille installationen igen\n"
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "Mb"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Netværksprinter '%s', port %s"
+#: ../../common.pm_.c:115
+msgid "TB"
+msgstr "Tb"
-#: ../../standalone/drakgw:1
+#: ../../common.pm_.c:123
#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "Vælg hvilken netværksadapter som skal forbindes til dit lokalnet."
+msgid "%d minutes"
+msgstr "%d minutter"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
-msgstr "O.k. at genskabe de andre filer."
+#: ../../common.pm_.c:125
+msgid "1 minute"
+msgstr "1 minut"
-#: ../../install_steps_interactive.pm:1
+#: ../../common.pm_.c:127
#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Vælg dit tastaturlayout."
+msgid "%d seconds"
+msgstr "%d sekunder"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "Printer-enheds URI"
+#: ../../common.pm_.c:172
+msgid "Can't make screenshots before partitioning"
+msgstr "Kan ikke lave øjebliksbilleder før partitionering"
-#: ../../standalone/drakbackup:1
+#: ../../common.pm_.c:179
#, c-format
-msgid "Not erasable media!"
-msgstr "Ikke sletbart medie!"
+msgid "Screenshots will be available after install in %s"
+msgstr "Øjebliksbilleder vil være tilgængelige efter installation i %s"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "Terminal-baseret"
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+msgid "France"
+msgstr "Frankrig"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr "Aktivér/deaktivér beskyttlse mod IP-spoofing."
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
+msgstr "Costa Rica"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Installerer et printersystem på sikkerhedsniveauet %s"
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+msgid "Belgium"
+msgstr "Belgien"
-#: ../../any.pm:1
-#, c-format
-msgid "The user name is too long"
-msgstr "Dette brugernavn er for langt"
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
+msgstr "Tjekkiet"
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "Andet styresystem (Windows...)"
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+msgid "Germany"
+msgstr "Tyskland"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr "WebDAV eksternt netsted allerede synkroniseret!"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+msgid "Greece"
+msgstr "Grækenland"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
-msgstr "Læser database over printere ..."
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+msgid "Norway"
+msgstr "Norge"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Laver autoinstallations-diskette"
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+msgid "Sweden"
+msgstr "Sverige"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t brugernavn: %s\n"
-"\t\t på sti: %s \n"
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
+msgstr "Holland"
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr "Somalia"
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+msgid "Italy"
+msgstr "Italien"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr "Ingen open source driverrutine"
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+msgid "Austria"
+msgstr "Østrig"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
-msgstr "Def."
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
+msgstr "U.S.A."
-#: ../../security/level.pm:1
-#, c-format
+#: ../../diskdrake/dav.pm_.c:19
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"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 ""
-"Baseret på det foregående niveau, men systemet er nu helt lukket.\n"
-"Sikkerhedsfaciliteterne er nu på deres højeste niveau."
+"WebDAV er en protokol som lader dig montere en webserver katalog lokalt\n"
+"og behandle det som et lokalt filsystem (givet at webserveren er "
+"konfigureret\n"
+"som en WebDAV-server). Hvis du ønsker at tilføje WebDAV-monteringspunkter,\n"
+"så vælg \"Ny\"."
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "Nicaragua"
+#: ../../diskdrake/dav.pm_.c:27
+msgid "New"
+msgstr "Ny"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "Ny Caledonien"
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Afmontér"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Protokol for Europa (EDSS1)"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Montér"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Delete"
-msgstr "/_Slet"
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
+msgstr "Server"
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "Videoindstilling"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Monteringssti"
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
-msgstr "Oman"
+#: ../../diskdrake/dav.pm_.c:85
+msgid "Please enter the WebDAV server URL"
+msgstr "Indtast LRL for WebDAV-serveren"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Indtast din adgangskode for epost nedenfor"
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
+msgstr "URL'en skal begynde med http:// eller https://"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Network Monitoring"
-msgstr "Overvågning af netværk"
+#: ../../diskdrake/dav.pm_.c:109
+msgid "Server: "
+msgstr "Server: "
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "SunOS"
-msgstr "SunOS"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
+msgstr "Monteringssti: "
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "New size in MB: "
-msgstr "Ny størrelse i Mb: "
+msgid "Options: %s"
+msgstr "Valg: %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Partitionstabel-type: %s\n"
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
+msgstr "Lav gerne en sikkerhedkopi af dine data først"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication Windows Domain"
-msgstr "Autentifikations Windowsdomæne"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "Læs omhyggeligt!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "Amerikansk"
+#: ../../diskdrake/hd_gtk.pm_.c:100
+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 ""
+"Hvis du planlægger at bruge Yaboot, skal du huske at efterlade fri plads på\n"
+"begyndelsen af disken (2048 sektorer skulle være nok)"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr "Emulering af knapper"
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "Vejleder"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", netværksprinter \"%s\", port %s"
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
+msgstr "Vælg handling"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
-"\n"
-"Drakbackup aktiviteter via bånd:\n"
-"\n"
+"Du har én stor FAT partition.\n"
+"(normalt brugt af Microsoft Dos/Windows).\n"
+"Jeg anbefaler, at du ændrer størrelsen på partitionen\n"
+"(klik på den, og klik herefter på \"Størrelsesændring\")"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"FTP forbindelsesproblem: Det var ikke muligt at sende dine backupfiler via "
-"FTP.\n"
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "Klik på en partition"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Sending Speed:"
-msgstr "Sendehastighed:"
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "Detaljer"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"The classic bug sound tester is to run the following commands:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
-"currently uses\n"
-"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services're configured to be run on\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Den klassiske metode for at fejlsøge lydopsætningten er at køre følgende\n"
-"kommandoer:\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" vil vise hvilken driver lydkortet bruger \n"
-"som standard\n"
-"- \"grep sound-slot /etc/modules.conf\" vil vise hvilken driver som er i "
-"brug\n"
-"\n"
-"- \"/sbin/lsmod\" lader dig se om denne driver er indlæst\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" og \"/sbin/chkconfig --list alsa\" vil\n"
-"vise om disse tjenester er sat op til at startes.\n"
-"\n"
-"- \"aumix -q\" vil vise om lyden er slukket ned eller ikke\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" vil vise hvilke programmer som bruger "
-"lydkortet\n"
+#: ../../diskdrake/hd_gtk.pm_.c:254
+msgid "No hard drives found"
+msgstr "Ingen diskdrev fundet"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
-msgstr "Halt-fejl"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Konfiguration af postpåmindelse"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "FAT"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr "Tokelau"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Matching"
-msgstr "Samstemmende"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Journalised FS"
+msgstr "Journaliserende FS"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bosnian"
-msgstr "Bosnisk"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Release: "
-msgstr "Udgave: "
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "Swap"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection speed"
-msgstr "Opkoblingshastighed"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "Tom"
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr "Namibia"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "Andet"
-#: ../../services.pm:1
-#, c-format
-msgid "Database Server"
-msgstr "Databaseserver"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "Filsystems-typer:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
-"specielle kapaciteter for driveren (brændemulighed eller DVD-understøttelse)"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "Opret"
-#: ../../raid.pm:1
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Kan ikke tilføje en partition til _formatéret_ RAID md%d"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "Type"
-#: ../../standalone/drakclock:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid "Network Time Protocol"
-msgstr "Network Time Protocol"
+msgid "Use ``%s'' instead"
+msgstr "Benyt ``%s'' i stedet"
+
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "Slet"
-#: ../../Xconfig/card.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
+msgstr "Benyt ``Afmontér'' først"
+
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, 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."
+"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-"Dit kort kan have 3D acceleration understøttelse, men kun med XFree %s.\n"
-"VIGTIGT: Dette er eksperimentelt og kan få din maskine til at låse eller gå "
-"ned.\n"
-"Dit kort er understøttet af XFree %s som kan have bedre understøttelse i 2D."
+"Efter type-ændring af partition %s vil alle data på denne partition gå tabt"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Vent venligst, sætter sikkerhedstilvalg..."
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose a partition"
+msgstr "Vælg en partition"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "Ukendt|CPH05X (bt878) [mange leverandører]"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose another partition"
+msgstr "Vælg en ny partition"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Start X-vinduessystemet efter opstart"
+#: ../../diskdrake/interactive.pm_.c:202
+msgid "Exit"
+msgstr "Afslut"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr "timedrift"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
+msgstr "Normal -> Ekspert"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
-msgstr "Højre skifte-tast"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
+msgstr "Ekspert -> Normal"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " genskabt uden fejl på %s "
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "Fortryd"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Gør printerport tilgængelig for CUPS..."
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "Fortsæt alligevel?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr "Antigua og Barbuda"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "Afslut uden at gemme"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! Indikere at adgangskoden i systemets database er forskelligt fra\n"
-" den i TerminalServer-databasen.\n"
-"Slet/tilføj brugeren igen il TerminalServeren for at muliggøre logind."
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "Afslut uden at skrive partitionstabellen?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "Spansk"
+#: ../../diskdrake/interactive.pm_.c:257
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "Ønsker du at gemme /etc/fstab-ændringerne?"
-#: ../../services.pm:1
-#, c-format
-msgid "Start"
-msgstr "Start"
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "Slet alt"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
-msgstr "Direkte logind som root"
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
+msgstr "Allokér automatisk"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring applications..."
-msgstr "Konfigurerer programmer..."
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+msgid "More"
+msgstr "Mere"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"Velkommen til guiden for printerinstallation\n"
-"\n"
-"Denne guide lader dig installere printere sluttet til denne maskine, direkte "
-"til netværket eller til en ekstern Windows-maskine.\n"
-"\n"
-"Tilslut og tænd venligst alle printere opkoblet til denne maskine så de kan "
-"identificeres automatisk. Netværksprinterne og Windows-maskinerne skal også "
-"være tilsluttede og tændte.\n"
-"\n"
-"Bemærk at det tager længere tid at identificere netværksprintere end at "
-"identificere lokalt tilsluttede printere. Så deaktivér autoidentifikation af "
-"netværksprintere og/eller printere sluttede til Windows-maskiner hvis du "
-"ikke har brug for dette.\n"
-"\n"
-"Klik på \"Næste\" hvis du er klar og på \"Annullér\" hvis du ikke vil "
-"installere printere nu."
+#: ../../diskdrake/interactive.pm_.c:278
+msgid "Hard drive information"
+msgstr "Drev-information"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
-msgstr "Normal modemforbindelse"
+#: ../../diskdrake/interactive.pm_.c:310
+msgid "All primary partitions are used"
+msgstr "Alle primære partitioner er brugt"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "File Selection"
-msgstr "Valg af filer"
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "Kan ikke tilføje flere partitioner"
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
+#: ../../diskdrake/interactive.pm_.c:312
+msgid ""
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
+msgstr ""
+"For at du kan få flere partitioner, skal du slette én, så der kan oprettes "
+"en udvidet partition"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Slet båndet før sikkerhedskopieringen"
+#: ../../diskdrake/interactive.pm_.c:322
+msgid "Save partition table"
+msgstr "Gem partitionstabel"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
-msgstr "Kør konfigurationsværktøj"
+#: ../../diskdrake/interactive.pm_.c:323
+msgid "Restore partition table"
+msgstr "Genskaber partitionstabel"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "Systemopstarterens installation"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
+msgstr "Redder partitionstabel"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Rod-partitions størrelse i Mb: "
+#: ../../diskdrake/interactive.pm_.c:326
+msgid "Reload partition table"
+msgstr "Genindlæs partitionstabel"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Dette er en nødvendig pakke, den kan ikke vælges fra"
+#: ../../diskdrake/interactive.pm_.c:331
+msgid "Removable media automounting"
+msgstr "Automontering af flytbare medier"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "Vælg fil"
+
+#: ../../diskdrake/interactive.pm_.c:347
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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
-" - Opret etherboot-disketter/CD'er:\n"
-" \tDe diskløse klientmaskiner behøver enten ROM-aftryksfiler på "
-"netværkskortet, en opstartsdiskette\n"
-" \teller en CD for at initiere opstartssekvensen. drakTermServ vil "
-"hjælpe til med generere disse aftryksfiler,\n"
-" \tbaseret på netværkskortet i klientmaskinen.\n"
-" \t\t\n"
-" \tEt basalt eksempel på oprettelse af en opstartsdiskette for 3Com "
-"3c509 manuelt:\n"
-" \t\t\n"
-" \tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"The backup partition table has not the same size\n"
+"Still continue?"
+msgstr ""
+"Kopien af partitionstabellen har ikke samme størrelse\n"
+"Fortsæt alligevel?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "Etherboot ISO-aftryk er %s"
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "Advarsel"
-#: ../../services.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:362
msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
-"named (BIND) er en domæne-navneserver (DNS) der bruges til opslag af IP-"
-"adresser for værtsnavne."
+"Indsæt en diskette i diskettedrevet\n"
+"Alle data på disketten vil blive slettet"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr "Sankt Lucia"
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
+msgstr "Forsøger at redde partitionstabellen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "November"
+#: ../../diskdrake/interactive.pm_.c:379
+msgid "Detailed information"
+msgstr "Detaljeret information"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
-msgstr "Afbrud..."
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "Størrelsesændring"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Report"
-msgstr "Rapport"
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "Flyt"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr "Palau"
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "Formatér"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "niveau"
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "Tilføj til RAID"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr ""
-"Alle hændelser følges op af en teknisk kvalificeret MandrakeSoft-ekspert."
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "Tilføj til LVM"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "Valg af pakkegrupper"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "Fjern fra RAID"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Tillad konfiguration\n"
-"af lokalt udstyr"
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "Fjern fra LVM"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Genskab via netværksprotokol: %s"
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "Ændr RAID"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr "Du kan konfigurere hver parameter for modulet her."
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
+msgstr "Loopback anvendelse"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Vælg opløsning og farvedybde"
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "Opret en ny partition"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
-msgstr "Emulering af tredje knap?"
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "Startsektor: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "Størrelse i Mb: "
+
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "Filsystemstype: "
+
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Præference: "
+
+#: ../../diskdrake/interactive.pm_.c:481
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
@@ -3257,1883 +1872,1639 @@ msgstr ""
"(fordi du er oppe på det maksimale antal primære partitioner)\n"
"Fjern først en primær partition og opret en udvidet partition."
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr "Montér"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Laver autoinstallations-diskette"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Install updates"
-msgstr "Installér opdateringer"
+#: ../../diskdrake/interactive.pm_.c:511
+msgid "Remove the loopback file?"
+msgstr "Fjern loopback-filen?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
-msgstr "højde på tekstrude"
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "Skift partitionstype"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "State"
-msgstr "Status"
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+msgid "Which filesystem do you want?"
+msgstr "Hvilket filsystem ønsker du at bruge?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Forsikr dig at der er et medie tilstede i enheden %s"
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
+msgstr "Skifter fra ext2 til ext3"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Enable multiple profiles"
-msgstr "Aktivér multiprofiler"
+msgid "Where do you want to mount loopback file %s?"
+msgstr "Hvor ønsker du at montere loopback-fil %s?"
-#: ../../fs.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr "Fortolk ikke tegn- eller blok-specialenheder på filsystemet."
+msgid "Where do you want to mount device %s?"
+msgstr "Hvor ønsker du at montere partitionen %s?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
-"Disse valgmuligheder kan sikkerhedskopiere og genskabe alle filer i dit /etc "
-"katalog.\n"
+"Kan ikke fjerne monteringssti, da denne partition bliver brugt til "
+"loopback.\n"
+"Fjern loopback først"
-#: ../../printer/main.pm:1
+#: ../../diskdrake/interactive.pm_.c:606
#, c-format
-msgid "Local printer"
-msgstr "Lokal printer"
+msgid "Where do you want to mount %s?"
+msgstr "Hvor ønsker du at montere %s?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Files Restored..."
-msgstr "Filer genskabte..."
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "Udregner FAT-filsystemets grænser"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
-msgstr "Valg af pakker"
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "Ændrer størrelsen"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritania"
-msgstr "Mauretanien"
+#: ../../diskdrake/interactive.pm_.c:662
+msgid "This partition is not resizeable"
+msgstr "Størrelsen på denne partition kan ikke ændres"
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
-"Jeg kan beholde din aktuelle konfiguration og antage at du allerede har sat "
-"en DHCP-server op; i så tilfælde kontrollér da gerne at jeg har læst det "
-"netværk du bruger til dit lokalnet korrekt; jeg vil ikke genkonfigurere det "
-"og jeg vil ikke røre ved din konfiguration af DHCP-serveren.\n"
-"\n"
-"Den normale DNS-indgang er den cahcendde navneserver konfigureret på "
-"bransmuren. Du kan eksempelvis erstatte denne med din ISPs DNS-adresse.\n"
-"\n"
-"Ellers kan jeg genkonfigurere dit grænsesnit og genkonfigurere en DHCP-"
-"server for dig.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
+msgstr "Det bør laves en backup af alle data på denne partition"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:669
#, 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 "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-"Ingen lokal printer fundet! For at installere en printer i hånden skal du "
-"indtaste et enhedsnavn/filnavn i inddatalinjen (parallelporte: /dev/lp0, /"
-"dev/lp1 ..., svarende til LPT1:, LPT2: ..., første USB-printer: /dev/usb/"
-"lp0, 2. USB-printer: /dev/usb/lp1 ...)."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All primary partitions are used"
-msgstr "Alle primære partitioner er brugt"
+"Efter ændring af størrelsen af partition %s vil alle data på denne partition "
+"gå tabt"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "LPD-server \"%s\", printer \"%s\""
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "Vælg den nye størrelse"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Derefter anbefaler vi at du genstarter dit X-miljø for\n"
-"at undgå problemer med det ændrede værtsnavn"
+#: ../../diskdrake/interactive.pm_.c:675
+msgid "New size in MB: "
+msgstr "Ny størrelse i Mb: "
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "automatisk opdagelse og konfigurering af maskinel ved opstart."
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "Hvilken disk ønsker du at flytte den til?"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation Server Configuration"
-msgstr "Konfiguration af installations-server"
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "Sektor"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "Konfigurerer IDE"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "Hvilken sektor ønsker du at flytte den til?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Netværksfunktionalitet ikke konfigureret"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "Flytter"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Configure module"
-msgstr "Konfigurér modul"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "Flytter partition..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "Kokosøerne"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr "Vælg en eksisterende RAID som skal udvides"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Du skal genstarte maskinen for at aktivere ændringerne"
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "ny"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
-msgstr "Udbyders telefonnummer"
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
+msgstr "Vælg en eksisterende LVM som skal udvides"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Host %s"
-msgstr "Vært %s"
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
+msgstr "LVM-navn?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
-msgstr "Fiji"
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
+msgstr "Denne partition kan ikke bruges til loopback"
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
-msgstr "Armenien"
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
+msgstr "Loopback"
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "Andet diskette-drev"
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
+msgstr "Loopback-filnavn: "
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
-msgstr "Om Harddrake"
+#: ../../diskdrake/interactive.pm_.c:831
+msgid "Give a file name"
+msgstr "Giv et filnavn"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
-msgstr "Autorisér TCP-forbindelse til X Windows"
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
+msgstr "Filen er allerede brugt af en anden loopback, vælg en anden fil"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr "Kapacitet for drevet"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
+msgstr "Filen findes allerede. Skal den bruges?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Indsæt en diskette i diskettedrevet\n"
-"Alle data på disketten vil blive slettet"
+#: ../../diskdrake/interactive.pm_.c:858
+msgid "Mount options"
+msgstr "Modulindstillinger"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "Størrelse: %s"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
+msgstr "Diverse"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Kontrol- og skiftetaster samtidigt"
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "enhed"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "secondary"
-msgstr "sekundær"
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "niveau"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Se konfiguration af sikkerhedskopiering."
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "enhedsstørrelse"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr "hvis sat til ja, så rapportér kontrolresultat til syslog."
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
+msgstr "Vær forsigtig: denne operation er farlig."
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "Ingen adgangskode"
+#: ../../diskdrake/interactive.pm_.c:962
+msgid "What type of partitioning?"
+msgstr "Hvilken slags partitionering?"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:978
#, c-format
-msgid "Nigeria"
-msgstr "Nigeria"
+msgid "The package %s is needed. Install it?"
+msgstr "Pakken %s kræves. Ønsker du at installere den?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s kræver et værtsnavn...\n"
+#: ../../diskdrake/interactive.pm_.c:992
+msgid ""
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
+msgstr ""
+"Jeg kan desværre ikke på nuværende tidspunkt acceptere at oprette /boot på "
+"drevet (på en cylinder > 1024). Enten benytter du LILO, hvilket ikke vil "
+"fungere, eller du kan undlade at benytte LILO, hvilket vil betyde, at du "
+"ikke har brug for /boot"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "Der er ingen eksisterende partition der kan bruges"
+#: ../../diskdrake/interactive.pm_.c:996
+msgid ""
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
+msgstr ""
+"Den partition som du har valgt som rod-partition (/) er fysisk placeret ud "
+"over cylinder nr. 1024 på harddisken, og du har ikke lavet nogen /boot "
+"partition. Hvis du ønsker at benytte LILO, skal du oprette en /boot "
+"partition indenfor 1024-cylinder grænsen."
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1002
msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
msgstr ""
-"De følgende skannere\n"
-"\n"
-"%s\n"
-"er tilgængelige på dit system.\n"
+"Du har valgt en programmeret RAID-partition som rod (/).\n"
+"Ingen systemopstarter kan håndtere dette uden en /boot partition.\n"
+"Så vær omhyggelig med at tilføje en /boot partition"
-#: ../../printer/main.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Multi-funktions-enhed på parallel port #%s"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "Partitionstabellen for disk %s vil nu blive skrevet på disken!"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
+msgstr "Du skal genstarte maskinen for at aktivere ændringerne"
+
+#: ../../diskdrake/interactive.pm_.c:1037
#, 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 "After formatting partition %s, all data on this partition will be lost"
msgstr ""
-"For at skrive til en TCP eller sokkel-printer skal du angive værtsnavnet "
-"eller IP-adressen på printeren, og eventuelt portnummer (standard er 9100). "
-"På HP JetDirect-servere er portnummeret normalt 9100, på andre servere "
-"varierer det. Tjek manualen for dit udstyr."
+"Efter formatering af partitionen %s vil alle data på denne partition gå tabt"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Hard drive information"
-msgstr "Drev-information"
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "Formaterer"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Russian"
-msgstr "Russisk"
+msgid "Formatting loopback file %s"
+msgstr "Formaterer loopback-fil %s"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "Jordan"
-msgstr "Jordan"
+msgid "Formatting partition %s"
+msgstr "Formaterer partition %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1052
msgid "Hide files"
msgstr "Skjul filer"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Auto-opdagelse af printere tilsluttet denne maskine"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "Der er desværre ikke noget tilgængeligt diskette-drev"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bolivia"
-msgstr "Bolivia"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Move files to the new partition"
+msgstr "Flyt filer til den nye partition"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1053
#, c-format
msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-"Opsæt din Windows-server til at gøre printeren tilgængelig under IPP-"
-"protokollen, og opsæt udskrift fra denne maskine med '%s'-opkoblingstypen i "
-"Printerdrake.\n"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "Dårlig pakke"
+"Katalog %s indeholder allerede nogen data\n"
+"(%s)"
-#: ../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!"
-msgstr ""
-"Lav din maskine om til en stærk server med bare nogen få klik med musen: "
-"Webserver, post, brandmur, ruter, fil- og print-server, ..."
+#: ../../diskdrake/interactive.pm_.c:1064
+msgid "Moving files to the new partition"
+msgstr "Flytter filer til den nye partition"
-#: ../../security/level.pm:1
+#: ../../diskdrake/interactive.pm_.c:1068
#, c-format
-msgid "DrakSec Basic Options"
-msgstr "Basale valgmuligheder for DrakSec"
+msgid "Copying %s"
+msgstr "Kopierer %s"
-#: ../../standalone/draksound:1
+#: ../../diskdrake/interactive.pm_.c:1072
#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Bemærk: Hvis du har et ISA PnP lydkort skal du bruge programmet sndconfig. "
-"Du skal blot indtaste \"sndconfig\" i et konsol-program."
+msgid "Removing %s"
+msgstr "Fjerner %s"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid "Romania"
-msgstr "Rumænien"
+msgid "partition %s is now known as %s"
+msgstr "partition %s er nu kendt som %s"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group"
-msgstr "Gruppe"
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "Enhed: "
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "Canada"
-msgstr "Canada"
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "DOS-drevbogstav: %s (bare et gæt)\n"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "choose device"
-msgstr "vælg enhed"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "Type: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from LVM"
-msgstr "Fjern fra LVM"
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "Navn: "
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "Timezone"
-msgstr "Tidszone"
+msgid "Start: sector %s\n"
+msgstr "Start: sektor %s\n"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "German"
-msgstr "Tysk"
+msgid "Size: %s"
+msgstr "Størrelse: %s"
-#: ../../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
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid "Next ->"
-msgstr "Næste ->"
+msgid ", %s sectors"
+msgstr ", %s sektorer"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
-msgid ""
-"Turning on this allows to print plain text files in japanese language. Only "
-"use this function if you really want to print text in japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Aktivering af dette vil muliggøre udskrift at rene tekstfiler på japansk. "
-"Brug kun denne funktion hvis du virkelig ønsker at udskrive tekst på "
-"japansk, hvis det er aktiveret kan du ikke længere udskrive bogstaver med "
-"accenter i latinske skrifttyper, og du vil ikke kunne tilpasse margenerne, "
-"tegnstørrelse mv. Denne indstilling vedrører kun printere defineret på denne "
-"maskine. Hvis du ønsker at udskrive japansk tekst på en printer der er sat "
-"op på en ekstern maskine, skal du aktivere denne funktion på denne eksterne "
-"maskine."
+msgid "Cylinder %d to %d\n"
+msgstr "Cylinder %d til %d\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Denne partition er nok\n"
-"en driver-partition. Du skal\n"
-"nok bare lade den være.\n"
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "Formateret\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "Ikke formateret\n"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Vandret opdateringsfrekvens"
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
+msgstr "Monteret\n"
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Edit"
-msgstr "Redigér"
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, c-format
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+"Loopback file(s):\n"
+" %s\n"
msgstr ""
-"Kan ikke fjerne monteringssti, da denne partition bliver brugt til "
-"loopback.\n"
-"Fjern loopback først"
+"Loopback-fil(er):\n"
+" %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1132
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\""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"Netværksopsætningen lavet under installationen kan ikke startes nu. Tjek om "
-"netværket bliver tilgængeligt efter opstart af dit system, og ret "
-"konfigurationen med Mandrake Kontrolcenter, afsnittet 'Netværk og internet'/ "
-"'Forbindelse', og konfigurér derefter printeren også med Mandrake "
-"Kontrolcenter, afsnittet om 'Maskinel'/'Printer'"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "USB controllers"
-msgstr "USB-kontrolkort"
+"Partition som opstartes som standard\n"
+" (gælder kun MS-DOS-opstart, ikke LILO)\n"
-#: ../../Xconfig/various.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "What norm is your TV using?"
-msgstr "Hvilken standard bruger dit tv?"
+msgid "Level %s\n"
+msgstr "Niveau %s\n"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "Type:"
-msgstr "Type:"
+msgid "Chunk size %s\n"
+msgstr "Enhedsstørrelse %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Share name"
-msgstr "Dele-navn"
+msgid "RAID-disks %s\n"
+msgstr "RAID-diske %s\n"
-#: ../../standalone/drakgw:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "enable"
-msgstr "aktivér"
+msgid "Loopback file name: %s"
+msgstr "Loopback-filnavn: %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-"Kontakter Mandrake Linux netsted for at hente listen over tilgængelige spejle"
+"\n"
+"Denne partition er nok\n"
+"en driver-partition, du skal\n"
+"sandsynligvis lade den være.\n"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"Et problem opstod ved genstart af netværket: \n"
"\n"
-"%s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove the loopback file?"
-msgstr "Fjern loopback-filen?"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Valgt størrelse er større end tilgængelig plads"
+"Denne specielle Bootstrap-\n"
+"partition er for at\n"
+"dual-boote dit system.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP server name missing!"
-msgstr "NCP-servernavn mangler!"
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
+msgstr "Skrivebeskyttet"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid "Please choose your country."
-msgstr "Vælg dit land."
+msgid "Size: %s\n"
+msgstr "Størrelse: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Sikkerhedskopifiler for disk..."
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Opbygning: %s cylindre, %s hoveder, %s sektorer\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Laotian"
-msgstr "Laotisk"
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
+msgstr "Info: "
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid "Samoa"
-msgstr "Samoa"
+msgid "LVM-disks %s\n"
+msgstr "LVM-diske %s\n"
-#: ../../services.pm:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"rstat protokollen tillader brugere på et netværk at hente systeminformation "
-"fra enhver maskine på dette netværk."
+msgid "Partition table type: %s\n"
+msgstr "Partitionstabel-type: %s\n"
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1169
#, c-format
-msgid "Re-generating list of configured scanners ..."
-msgstr "Regenererer liste af konfigurerede skannere ..."
+msgid "on channel %d id %d\n"
+msgstr "på kanal %d id %d\n"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module configuration"
-msgstr "Konfiguration af moduler"
+#: ../../diskdrake/interactive.pm_.c:1199
+msgid "Filesystem encryption key"
+msgstr "Krypteringsnøgle for filsystem"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Scanner"
-msgstr "Skanner"
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
+msgstr "Vælg din krypteringsnøgle for filsystemet"
-#: ../../Xconfig/test.pm:1
+#: ../../diskdrake/interactive.pm_.c:1203
#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
+msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-"Advarsel: afprøvning af dette grafikkort kan få din maskine til at fryse"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "Brugernavnet må kun indeholde små bogstaver, tal, `-' og `_'"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
+"Denne krypteringsnøgle er for nem at gætte (skal mindst være på %d tegn)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "Velkommen til Crackere"
+#: ../../diskdrake/interactive.pm_.c:1204
+msgid "The encryption keys do not match"
+msgstr "Krypteringsnøglerne stemmer ikke overens"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "Modulindstillinger:"
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
+msgstr "Krypteringsnøgle"
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
-msgstr "Gør dine netværk sikre med MNF-multinetværksbrandmuren"
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
+msgstr "Krypteringsnøgle (igen)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Fortsæt med konfigurering af netværk"
+#: ../../diskdrake/removable.pm_.c:47
+msgid "Change type"
+msgstr "Skift type"
-#: ../../network/isdn.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "Abort"
-msgstr "Afbryd"
+msgid "Can't login using username %s (bad password?)"
+msgstr "Kan ikke logge ind med brugernavn %s (forkert adgangskode?)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "Ingen forespørgsel om adgangskode på %s ved port %s"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Domænegodkendelse påkrævet"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking-mus med hjul-emulering"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "En anden"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Brug skannere"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Hvilket brugernavn"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
-msgstr "Din Windows partition er for fragmenteret, kør 'defrag' først"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (norsk)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Fremdrift for sikkerhedskopiering af disk..."
-
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Kan ikke fork(): %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "Type: "
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+"Indtast venligst dit brugernavn, din adgangskode og dit domænenavn for at få "
+"adgang til denne vært."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Redigér klient"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+msgid "Username"
+msgstr "Brugernavn"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "no fonts found"
-msgstr "kunne ikke finde nogen skrifttyper"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Domæne"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Mouse"
-msgstr "Mus"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+msgid "Search servers"
+msgstr "Søg efter servere"
-#: ../../bootloader.pm:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "not enough room in /boot"
-msgstr "Ikke nok plads i /boot"
+msgid "%s formatting of %s failed"
+msgstr "%s formatering af %s mislykkedes"
-#: ../../install_steps_gtk.pm:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "trying to promote %s"
-msgstr "prøver at forfremme %s"
+msgid "I don't know how to format %s in type %s"
+msgstr "Ved ikke hvordan man formaterer %s som type %s"
-#: ../../lang.pm:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
+msgid "mounting partition %s in directory %s failed"
+msgstr "montering af partition %s i katalog %s mislykkedes"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid "Host name"
-msgstr "Værtsnavn"
+msgid "error unmounting %s: %s"
+msgstr "fejl ved afmontering af %s: %s"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the color of the progress bar"
-msgstr "farven på forløbslinjen"
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "simpel"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Undertryk skrifttypefiler"
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
+msgstr "med /usr"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to RAID"
-msgstr "Tilføj til RAID"
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "server"
-#: ../../help.pm:1
+#: ../../fsedit.pm_.c:240
#, c-format
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"
+"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"
-" * 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."
+"Do you agree to loose all the partitions?\n"
msgstr ""
-"Du kan tilføje flere valgmuligheder i Yaboot, til andre styresystemer, andre "
-"kerner, eller til nød-opstart.\n"
-"\n"
-"For andre styresystemer består indgangen blot af et navn og rodpartitionen\n"
-"\n"
-"Der er for Linux nogen få valgmuligheder:\n"
-"\n"
-" * Label: dette er simpelthen navnet som du skal indtaste til ledeteksten "
-"fra Yaboot for at vælge denne opstartsmulighed.\n"
-"\n"
-" * Image: Dette er navnet på den kerne der skal opstartes. Typisk vmlinux "
-"eller en variation på vmlinux med en endelse.\n"
-"\n"
-" * Root: root enheden eller \"/\" for din Linux installation.\n"
-"\n"
-" * Append: på Apple udstyr bruges kerne-append muligheden ofte til at hjælpe "
-"med initialisering af billedudstyr, eller til at aktivere emulering af "
-"museknapper for de manglende knap-2 og knap-3 på musen på en typisk Apple "
-"mus. Det følgende er nogle eksempler:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: denne mulighed kan bruges enten til at indlæse de første moduler, "
-"før opstartsenheden er tilgængelig, eller til at indlæse en ramdisk ved "
-"opstart i en nødsituation.\n"
-"\n"
-" * Initrd-size: den almindelige størrelse på en ramdisk er generelt 4.096 "
-"kbyte. Hvis du har brug for at udlægge en stor ramdisk kan denne mulighed "
-"bruges til at angive en ramdisk større end standarden.\n"
-"\n"
-" * Read-write: normalt bliver rod-partitionen først monteret skrivebeskyttet "
-"for at muliggøre et filsystemstjek før systemet går i luften. Du kan "
-"tilsidesætte denne standard med denne valgmulighed.\n"
-"\n"
-" * NoVideo: skulle Apple-billedudstyret vise sig at være specielt "
-"problemfyldt kan du vælge denne mulighed for at starte op i 'novideo'-"
-"tilstand, med indbygget rammebufferunderstøttelse.\n"
+"Jeg kan ikke læse partitionstabellen for enhed %s, den er for ødelagt for "
+"mig :( Jeg kan forsøge fortsat at udblanke dårlige partitioner (ALLE DATA "
+"vil gå tabt!). Den anden mulighed er at forbyde DrakX at ændre "
+"partitionstabellen. (fejlen er %s)\n"
"\n"
-" * Default: vælger denne indgang som værende det normale Linux valg, som "
-"vælges ved at trykke RETUR ved yaboots ledetekst. Denne indgang vil også "
-"blive fremhævet med en '*', hvis du trykker Tab for at se opstartsvalgene."
+"Er du indforstået med at ødelægge alle partitionerne?\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr ""
-"Printeren \"%s\" blev tilføjet til Star Office/OpenOffice.org/GIMP.org."
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr "Du kan ikke bruge JFS på partitioner mindre end 16Mb"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Intet tilgængeligt diskettedrev!"
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "Du kan ikke bruge ReiserFS på partitioner mindre end 32Mb"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"Hvilke muligheder der er for den aktuelle printer kan du enten læse på "
-"listen vist nedenfor, eller klikke på knappen 'Liste med printermuligheder'.%"
-"s%s%s\n"
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
+msgstr "Monteringsstier skal begynde med /"
-#: ../../lang.pm:1
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "Saudi Arabia"
-msgstr "Saudi-Arabien"
+msgid "There is already a partition with mount point %s\n"
+msgstr "Der findes allerede en partition med monterings-sti %s\n"
-#: ../../services.pm:1
+#: ../../fsedit.pm_.c:526
#, c-format
-msgid "Internet"
-msgstr "Internet"
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr "Du kan ikke bruge et LVM logisk delarkiv for monteringspunkt %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "Fortsæt alligevel?"
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
+msgstr "Dette katalog bør ligge på rod-filsystemet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:530
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Hvis din printer ikke er listet, så vælg en kompatibel (se printermanual) "
-"eller en lignende printer."
+"Du skal have et rigtigt filsystem (ext2/ext3, reiserfs, xfs eller jfs) til "
+"dette monteringspunkt\n"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:532
#, c-format
-msgid "Printer"
-msgstr "Printer"
+msgid "You can't use an encrypted file system for mount point %s"
+msgstr "Du kan ikke bruge et krypteret filsystem for monteringspunkt %s"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices were added:\n"
-msgstr "Nogen enheder blev tilføjet:\n"
+#: ../../fsedit.pm_.c:599
+msgid "Not enough free space for auto-allocating"
+msgstr "Ikke nok fri plads til at tildele nye partitioner automatisk"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Opbygning: %s cylindre, %s hoveder, %s sektorer\n"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
+msgstr "Ingenting at lave"
-#: ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:694
#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Udskriver på printeren '%s'"
+msgid "Error opening %s for writing: %s"
+msgstr "Fejl ved åbning af %s for skrivning: %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
msgstr ""
-"/etc/hosts.allow og /etc/hosts.deny allerede konfigureret - ikke ændret"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Tape"
-msgstr "Genskab fra bånd"
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
+msgstr "Intet alternativ drivprogram"
-#: ../../standalone/drakbug:1
+#: ../../harddrake/sound.pm_.c:171
#, 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's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-"For at indsende en fejlrapport klik da på rapport-knappen, hvilket vil åbne "
-"din foretrukne netlæser for Anthill, hvor du vil kunne indlægge "
-"informationen vist ovenfor som en fejlrapport."
+"Der findes intet kendt alternativt OSS/ALSA-drivprogram for lydkortet (%s) "
+"som i øjeblikket bruger '%s'"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the profile to configure"
-msgstr "Vælg profilen der skal konfigureres"
+#: ../../harddrake/sound.pm_.c:173
+msgid "Sound configuration"
+msgstr "Lyd-konfiguration"
-#: ../../security/l10n.pm:1
+#: ../../harddrake/sound.pm_.c:174
#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
-msgstr "Mindste længde for adgangskode og antal af cifre og store bogstaver"
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
+msgstr ""
+"Her kan du vælge et alternativ drivprogram (enten OSS eller ALSA) for "
+"lydkortet (%s)"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../harddrake/sound.pm_.c:176
#, c-format
msgid ""
"\n"
"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
"\n"
"\n"
-"Indtast et Zeroconf-værtsnavn uden noget punktum hvis du ikke ønsker at "
-"bruge det forvalgte værtsnavn."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Lav sikkerhedskopi nu ud fra konfigurationsfil"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr "Monteringspunkter bør kun indeholde bogstaver og tal"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Genstarter printsystemet ..."
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr ""
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "Se info for maskinel"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
-msgstr "Dag"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr "Første sektor af opstartspartition"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Printerproducent, model"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
-
-#: ../../standalone.pm:1
-#, 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)"
-msgstr ""
-"[OPTIONS]...\n"
-"Mandrake TerminalServer konfigureringsprogram\n"
-"--enable : aktivér MTS\n"
-"--disable : deaktivér MTS\n"
-"--start : start MTS\n"
-"--stop : stop MTS\n"
-"--adduser : tilføj en eksisterende systembruger til MTS (kræver "
-"brugernavn)\n"
-"--deluser : slet en eksisterende systembruger fa MTS (kræver "
-"brugernavn)\n"
-"--addclient : tilføj en klientmaskine til MTS (kræver MAC-adresse, IP, "
-"nbi aftryksnavn)\n"
-"--delclient : tilføj en klientmaskine til MTS (kræver MAC-adresse, IP, "
-"nbi aftryksnavn)"
+"Dit kort bruger i øjeblikket %s\"%s\"-driveren (normal driver for dit kort "
+"er \"%s\")"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Undernetmaske:"
+#: ../../harddrake/sound.pm_.c:178
+msgid "Driver:"
+msgstr "Drivprogram:"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Set password expiration and account inactivation delays"
-msgstr ""
-"Sæt udløbstid for adgangskoder og forsinkelsestider for deaktivering af konti"
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+msgid "Help"
+msgstr "Hjælp"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Belastning"
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
+msgstr "Skifter mellem ALSA- og OSS-hjælp"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
+#: ../../harddrake/sound.pm_.c:186
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"
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"De to kritiske parametre er den lodrette frekvens, som angiver hvor mange "
-"gange (per sekund) hele skærmbilledet bliver genopfrisket, og (vigtigst af "
-"alt) den vandrette frekvens, som angiver antallet af vandrette linier der "
-"kan tegnes på skærmen hvert sekund.\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
-"Det er MEGET VIGTIGT at du ikke angiver en skærmtype med "
-"opdateringsfrekvenser, der er større end din skærms formåen: du risikerer at "
-"ødelægge din skærm.\n"
-"Hvis du er i tvivl, bør du vælge en opsætning, som du med SIKKERHED ved\n"
-"at din skærm kan klare."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
-msgstr "Ændr"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"It also provides a much higher API than OSS.\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"
+"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 ""
+"OSS (Open Sound System) var den første lyd-API. Det er den første OS-"
+"uafhængige lyd-API (Den er tilgængelig på de fleste Unix-systemer) men den "
+"er en meget basal og begrænset API.\n"
+"Ydermere genopfandt alle OSS-drivere hjulet.\n"
"\n"
-"'%s'- og '%s'-kommandoerne tillader også ændring af indstillingsmulighederne "
-"for et bestemt udskriftsjob. Tilføj blot de ønskede indstillinger til "
-"kommandolinjen, fx '%s <fil>'.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Behøver værtsnavn, brugernavn og adgangskode!"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Insert floppy"
-msgstr "Indsæt diskette"
+"ALSA (Advanced Linux Sound Architecture) er en modulær arkitektur som\n"
+"understøtter en ganske stor mængde ISA-, USB- og PCI-kort.\n"
+"\n"
+"Den tilbyder også en meget højere API end OSS.\n"
+"\n"
+"For at bruge ALSA kan man enten bruge:\n"
+"- den gamle OSS-kompatibilitetes-api\n"
+"- den nye ALSA API som tilbyder mange forbedrede faciliteter men som kræver "
+"brug af ALSA-biblioteket.\n"
-#: ../../diskdrake/dav.pm:1
+#: ../../harddrake/sound.pm_.c:202
#, 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\"."
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-"WebDAV er en protokol som lader dig montere en webserver katalog lokalt\n"
-"og behandle det som et lokalt filsystem (givet at webserveren er "
-"konfigureret\n"
-"som en WebDAV-server). Hvis du ønsker at tilføje WebDAV-monteringspunkter,\n"
-"så vælg \"Ny\"."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
-msgstr "ny"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable syslog reports to console 12"
-msgstr "Aktivér/deaktivér syslog-rapporter til konsol 12"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Vil du gerne prøve igen?"
+"Den gamle \"%s\"-driver er sortlistet.\n"
+"\n"
+"Den er blevet rapporteret at lave fejl i kernen ved afslutningen.\n"
+"\n"
+"Den nye \"%s\"-driver vil først blive brugt ved næste systemopstart."
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "Vejleder"
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+msgid "Please Wait... Applying the configuration"
+msgstr "Vent venligst... Sætter konfigurationen i anvendelse"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected server"
-msgstr "Redigér valgte server"
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "Vent venligst"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Vælg hvor du ønsker at sikkerhedskopiere"
+#: ../../harddrake/sound.pm_.c:210
+msgid "No known driver"
+msgstr "Ingen kendt driverrutine"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Du skal genstarte for at aktivere ændringerne i partitionstabellen"
+msgid "There's no known driver for your sound card (%s)"
+msgstr "Der findes intet kendt drivprogram for lydkortet (%s)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Udelad cache for netlæser"
+#: ../../harddrake/sound.pm_.c:214
+msgid "Unkown driver"
+msgstr "Ukendt drivprogram"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, c-format
msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-"Kontrol af filsystem %s mislykkedes. Ønsker du at reparere fejlene (bemærk, "
-"du kan miste data)"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Vælg tastaturlayout."
-
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "Standard"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Vælg muse-type."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
-msgstr "Tilslut..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Kunne ikke konfigurere printer '%s'!"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "not configured"
-msgstr "ikke konfigureret"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "About"
-msgstr "Om"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "Konfiguration af mellemvært (proxy)"
+"Drivprogrammet \"%s\" til dit lydkort er ikke listet\n"
+"\n"
+"Send venligst uddata fra \"lspcidrake -v\" kommandoen til\n"
+"<install at mandrakesoft dot com>\n"
+"med emne: unlisted sound driver \"%s\""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Start: sektor %s\n"
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+msgid "Auto-detect"
+msgstr "Automatisk detektion"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Mask"
-msgstr "Ingen maske"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+msgid "Unknown|Generic"
+msgstr "Ukendt|generisk"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface already configured"
-msgstr "Netværksgrænsesnit allerede konfigureret"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Ukendt|CPH05X (bt878) [mange leverandører]"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
-msgstr "Kunne ikke få adgang til disketten!"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Ukendt|CPH06X (bt878) [mange leverandører]"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
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."
+"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 ""
-"Advarsel: Frit programmel er ikke nødvendigvis fri for patenter, og noget af "
-"det inkluderede frie programmel er muligvis dækket af patenter i dit land. "
-"For eksempel kan de inkluderede MP3-dekoder kræve en licens til yderligere "
-"brug (se http://www.mp3licensing.com for flere detaljer) Hvis du er usikker "
-"om et patent kan vedrøre dig, så tjek din lokale lovgivning."
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Mail Server"
-msgstr "Postserver"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "Klik på en partition"
+"For de fleste moderne tv-kort vil bttv-modulet fra GNU/Linux-kernen blot "
+"automatisk finde de rette parametre.\n"
+"Hvis dit kort ikke findes korrekt, kan du gennemtvinge den rette tuner og "
+"korttyper her. Bare vælg dit tv-korts parametre om nødvendigt"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Multi-funktions-enhed på HP JetDirect"
+#: ../../harddrake/v4l.pm_.c:227
+msgid "Card model:"
+msgstr "Kortmodel:"
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linux"
+#: ../../harddrake/v4l.pm_.c:228
+msgid "Tuner type:"
+msgstr "Tuner-type:"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
-msgstr "Hav det godt!"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
+msgstr "Antal fangningsbuffere:"
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "Antal fangningsbuffere for mmap-fangning"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Upgrade %s"
-msgstr "Opgradér %s"
+#: ../../harddrake/v4l.pm_.c:231
+msgid "PLL setting:"
+msgstr "PLL-opsætning:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Vælg printer-forbindelse"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
+msgstr "Radio-understøttelse:"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
-msgstr "Skanning for tv-kanaler i gang..."
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
+msgstr "aktivér radio-understøttelse"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+"GNU/Linux er et flerbrugersystem, og dette betyder at hver bruger kan have "
+"sine egne præferencer, sine egne filer og så videre. Du kan læse "
+"brugervejledningen for at lære mere.\n"
+"Men i modsætning til root, som er administratoren, vil brugerne som du "
+"tilføjer her ikke have lov til at ændre nogetsomhelst undtagen deres egne "
+"filer og deres egen opsætning. Du skal oprette i det mindste én almindelig "
+"bruger til dig selv.\n"
+"Dette er den konto som du bør bruge til almindelig brug. Selvom det er meget "
+"praktisk at logge ind som root hver dag, kan det også være meget farligt!\n"
+"Den mindste fejltagelse kan betyde at dit system ikke vil virke mere. Hvis "
+"du laver en alvorlig fejltagelse som almindelig bruger, vil du kun måske "
+"tabe nogen information, men ikke hele systemet.\n"
+"\n"
+"Først skal du indtaste dit rigtige navn. Dette er ikke krævet, selvfølgelig "
+"kan du faktisk skrive hvad du vil. DrakX vil så tage det første ord du skrev "
+"i boksen og og overføre det som brugernavn. Dette er navnet, som denne "
+"bruger skal bruge for at logge ind på systemet. Du kan ændre dette. Du skal "
+"så indtaste en adgangskode hér. Adgangskoden for en ikke-priviligeret "
+"(normal) bruger er ikke så vigtigt som det for Root fra et sikkerhedsmæssigt "
+"synspunkt, men det er ingen grund til at negligere det alligevel - når det "
+"kommer til stykket er dine filer der er i fare. Hvis du klikker på Acceptér "
+"bruger, kan du tilføje så mange som du ønsker. Tilføj en bruger for hver af "
+"dine venner: fx din far og din søster. Når du har tilføjet alle de brugere "
+"du ønsker, vælg da Færdig.\n"
+"\n"
+"Klik på Avanceret-knappen lader dig ændre standard-skal for denne bruger\n"
+"(bash er standard)."
+
+#: ../../help.pm_.c:48
+msgid ""
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/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 ""
-"Fejl ved sending af fil via FTP.\n"
-" Ret venligst din FTP-konfiguration."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr "Start på IP-område:"
+"Ovenfor er listet de eksisterende Linux-partitioner genkendt på din disk. Du "
+"kan beholde valgene gjort af vejlederen, de er velegnede til almindelig "
+"brug. Hvis du ændrer disse valg skal du i det mindste definere en rod-"
+"partition '/'. Lad være med at vælge en for lille partition, ellers vil du "
+"ikke kunne installere nok programmel. Hvis du ønsker at lagre data på en "
+"separat partition, skal du også vælge en '/home' (kun muligt hvis du har "
+"mere end én Linux-partition). \n"
+"Hver partition er listet som følger: 'Navn', 'Kapacitet'.\n"
+"\n"
+"'Navn' er kodet som følger: 'drevtype', 'drevnummer', "
+"'partitionsnummer' (for eksempel '/hda1').\n"
+"\n"
+"'drevtype' er 'hd' hvis dit diskdrev er et IDE drev, og 'sd' hvis det er et "
+"SCSI drev.\n"
+"\n"
+"'drevnummer' er altid et bogstav efter 'hd' eller 'sd'. For IDE drev:\n"
+"\n"
+" * 'a' betyder 'hoved-drev på den primære IDE controller',\n"
+"\n"
+" * 'b' betyder 'slave-drev på den primære IDE controller',\n"
+"\n"
+" * 'c' betyder 'hoved-drev på den sækundære IDE controller',\n"
+"\n"
+" * 'd' betyder 'slave-drev på den sækundære IDE controller'.\n"
+"\n"
+"For SCSI drev betyder 'a' det 'første drev', 'b' betyder det 'andet drev', "
+"osv."
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:79
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."
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
-"Internet superserver-dæmonen (kaldet inetd) starter forskellige internet-"
-"tjenester efter behov. Den er ansvarlig for at starte tjenester som telnet, "
-"ftp, rsh og rlogin. Hvis inetd deaktiveres, deaktiveres alle de tjenester, "
-"den er ansvarlig for."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
-msgstr "højden på forløbslinjen"
+"Mandrake Linux installationen er fordelt på flere cdrom-er. DrakX véd om en "
+"valgt pakke ligger på en anden cdrom og vil udskyde den aktuelle cd og bede "
+"dig om at isætte en anden, om nødvendigt."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:84
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"
+"you are not supposed to know them all by heart.\n"
"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
"\n"
-"- Gem via %s på vært: %s\n"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "Argentina"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Domain Name Server"
-msgstr "Server for domænenavne (DNS)"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Level:"
-msgstr "Sikkerhedsniveau:"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr "Monteringsstier skal begynde med /"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Vælg dit cd/dvd-drev"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "CUPS server"
-msgstr "CUPS-server"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Postfix postserver"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "Afslut uden at gemme"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "Yemen"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
-msgstr "Produktet kan findes på MandrakeStores netsted."
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Der er mange ting at vælge imellem (%s).\n"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "GMT - DrakClock"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
-"%s\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
+"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
+"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
"\n"
-"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"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
"\n"
-"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."
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
+"Det er nu tid til at angive hvilke pakker du vil installere på dit system. "
+"Der er tusindvis af pakker til dit Mandrake Linux system, og det forventes "
+"ikke at du kender dem allesammen udenad.\n"
+"\n"
+"Hvis du udfører en standard-installation fra cdrom vil du først blive bedt "
+"om at angive de cd-er som du har nu (kun i ekspert-version). Tjek navnene på "
+"cd'erne og fremhæv boksene svarende til de cd-er du har liggende for "
+"installationen. Klik O.k. når du er klar til at fortsætte.\n"
+"\n"
+"Pakkerne er ordnet i grupper svarende til en bestemt anvendelse af din "
+"maskine. Grupperne selv er ordnet i 4 grupper:\n"
+"\n"
+" * 'Arbejdsstation': Hvis din maskine skal bruges som en arbejdsstation, "
+"vælg da en eller flere af de tilsvarende grupper.\n"
+"\n"
+" * 'Udvikling': hvis maskinen skal bruges til programmering vælg da de "
+"ønskede grupper.\n"
+"\n"
+" * 'Server': hvis det er planen at maskinen skal være en server, er du her i "
+"stand til at vælge de mest almindelige tjenester, som du ønsker at se "
+"installeret på maskinen.\n"
+"\n"
+" * 'Grafisk miljø': Endelig skal du vælge foretrukne grafiske miljø. Vælg "
+"mindst ét, hvis du ønsker at have en grafisk arbejdsstation!\n"
+"\n"
+"Ved flytning af musen over et gruppenavn vises en kort forklarende tekst om "
+"denne gruppe. Hvis du ikke vælger nogen grupper ved installation (i "
+"modsætning til opgradering), vil en dialog komme frem som foreslår dig "
+"forskellige former for minimal installation: \n"
+"\n"
+" * 'Med X' Installerer de færrest mulige pakker for at få en fungerende "
+"grafisk arbejdsstation;\n"
+"\n"
+" * 'Med basal dokumentation' Installerer det basale system plus basale "
+"nytteprogrammer og tilhørende dokumentation. Denne installation er passende "
+"til at sætte en server op.\n"
+"\n"
+" * 'Mindst mulige installering' Vil installere den mindst mulige nødvendigt "
+"for at få et virkende Linux-system kun med kommandolinjer. Denne "
+"installation fylder omkring 65 Mb.\n"
+"\n"
+"Du kan afkrydse boksen 'Individuelt pakkevalg', hvilket er nyttigt, hvis du "
+"kender de tilbudte pakker godt, eller hvis du ønsker at have fuld kontrol "
+"over hvad der skal installeres.\n"
+"\n"
+"Hvis du har startet installationen i 'Opdatering'-tilstand, kan du fravælge "
+"alle grupper for at undgå at installere nogen nye pakker. Dette er nyttigt "
+"ved reparation eller opdatering af det eksisterende system."
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "Harddisk bestemmelse"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../help.pm_.c:135
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
msgstr ""
-"Du har ikke valgt nogen gruppe af pakker.\n"
-"Vælg den minimale installation du ønsker"
+"Endelig, afhængigt af om du valgte at udvælge individuelle pakker eller ej, "
+"vil du blive præsenteret for et træ med alle pakker opdelt i grupper og "
+"undergrupper. Under gennembladring af træet kan du udvælge hele grupper, "
+"undergrupper eller bare pakker.\n"
+"\n"
+"Hver gang du udvælger en pakke i træet vil en beskrivelse fremkomme til "
+"højre. Når du har afsluttet dine udvælgelser, så klik på Installér-knappen. "
+"Så begynder selve installationen. Afhængig af din maskines hurtighed og "
+"antal pakker som skal installeres kan det tage et stykke tid at gøre "
+"processen færdig. Et skøn på tiden det tager for færdiggørelse vises på "
+"skærmen, så du kan se om der skulle være tid til at nyde en kop kaffe.\n"
+"\n"
+"I tilfældet af at en server-pakke er blevet valgt enten med vilje, eller "
+"fordi den var en del af en hel gruppe, vil du blive spurgt om du virkelig "
+"ønsker at installere disse servere. Under Linux Mandrake bliver installerede "
+"servere startet op ved opstart af maskinen. Selvom de er sikre og ikke har "
+"nogen kendte problemer på udgivelsestidspunktet for distributionen, er det "
+"muligt at sikkerhedshuller opdages efter at denne version af Mandrake Linux "
+"blev færdiggjort. Specielt hvis du ikke véd hvad det er for noget, så klik "
+"Nej her. Et klik med Ja her vil installere de nævnte servere og de vil som "
+"standard blive startet automatisk!\n"
+"\n"
+"Automatiske afhængigheder-valget deaktiverer simpelthen advarselsdialogen, "
+"som vises hver gang installeringsprogrammet automatisk vælger en pakke. "
+"Dette sker fordi det er blevet beregnet at den er krævet for at "
+"tilfredsstille en afhængighed fra en anden pakke for at kunne færdiggære en "
+"vellykket installation.\n"
+"\n"
+"Det klejne disketteikon i bunden af listen muliggør indlæsning af en "
+"pakkeliste udvalgt ved en tidligere installation. Klik på denne ikon vil "
+"bede dig om at indsætte en diskette tidligere frembragt ved slutningen på en "
+"anden installation. Se råd nr to i det sidste trin for hvordan en sådan "
+"diskette kan laves."
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../help.pm_.c:171
msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-"Du har brug for Alcatel-mikrokoden.\n"
-"Du kan komme med den nu på en diskette eller på en Windows-partition,\n"
-"eller overspringe dette og gøre det senere."
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "Indtast LRL for WebDAV-serveren"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "Tadzjikistan"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "Acceptér"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "Beskrivelse"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter summary text."
-msgstr "Indtast oversigtstekst."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Fejl ved åbning af %s for skrivning: %s"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Muse-type: %s\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-"Dit kort kan have 3D hardware accelerations-understøttelse med XFree %s."
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "Vælg en skærmtype"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "Tom mærkat er ikke tilladt"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
-msgstr "Maltesisk (UK)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "Kan ikke tilføje flere partitioner"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "Størrelse i Mb: "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "Ekstern printer"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
-msgstr "Vælg det sprog, der skal bruges."
+"Du bliver nu foreslået at opsætte din internet- eller netværksopkobling. "
+"Hvis du vil forbinde din maskine til internettet eller til et lokalnetværk "
+"så klik på 'O.k.'. Den automatiske opdagelse af netværksenheder og modem vil "
+"blive startet. Hvis opdagelsen mislykkes så fjern markering i boksen 'Brug "
+"automatisk detektion' næste gang. Du kan også vælge at ikke konfigurere "
+"netværket, eller gøre det senere; i så tilfælde skal du bare klikke på "
+"'Annullér'-knappen.\n"
+"\n"
+"Mulige forbindelser er: almindeligt modem, ISDN-modem, ADSL-forbindelse, "
+"kabel-modem, og endelig en simpel LAN-forbindelse (Ethernet).\n"
+"\n"
+"Vi vil ikke her gå i detaljer med hver konfiguration. Men forsikr dig om, at "
+"du har alle parametrene fra din internetudbyder eller systemadministrator.\n"
+"\n"
+"Du kan læse i kapitlet i håndbogen omkring internetforbindelser om detaljer "
+"omkring konfigureringen, eller simpelthen vente til dit system er "
+"installeret og så bruge programmet beskrevet dér til at konfigurere din "
+"forbindelse.\n"
+"\n"
+"Hvis du vil konfigurere netværket senere efter installationen, eller hvis du "
+"har afsluttet konfigureringen af din netværksforbindelse, vælg da 'Færdig'."
-#: ../../network/network.pm:1
-#, c-format
+#: ../../help.pm_.c:193
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 ""
-"ADVARSEL: Denne enhed er tidligere blevet konfigureret til at lave "
-"forbindelse til Internettet.\n"
-"Ved kun at trykke på OK beholder du den nuværende konfiguration.\n"
-"Ændringer i felterne nedenunder vil overskrive denne konfiguration."
-
-#: ../../any.pm:1
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
+"You may now choose which services you wish to start at boot time.\n"
+"\n"
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
+"\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
-"Jeg kan sætte din maskine op til automatisk at logge en bestemt bruger på."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Floppy format"
-msgstr "Disketteformat"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Generic Printers"
-msgstr "Generelle printere"
+"Du kan nu vælge hvilke tjenester du ønsker skal startes ved opstart af "
+"maskinen.\n"
+"\n"
+"Her præsenteres alle de tjenester, som er med i den aktuelle installation. "
+"Gennemse dem omhyggeligt og vælg dem fra som ikke altid er nødvendige ved "
+"opstarten.\n"
+"\n"
+"Du kan få en kort forklarende tekst om en tjeneste ved at vælge en bestemt "
+"tjeneste. Hvis du ikke er sikker på om en tjeneste er nyttig eller ej, er "
+"det dog sikrere at bruge den foreslåede opførsel.\n"
+"\n"
+"Vær specielt varsom på dette trin hvis du planlægger at bruge maskinen som "
+"server: du vil formentlig ønske ikke at starte nogensomhelst tjeneste op som "
+"du ikke har brug for. Husk at adskillige tjenester kan være farlige hvis de "
+"er aktiveret på en server. Vælg som hovedregel kun de tjenester som du "
+"virkelig behøver."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:210
msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
msgstr ""
-"Angiv hvilken printer som udskriftsopgaverne skal gå til eller indtast et "
-"enhedsnavn/filnavn på inddatalinjen"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr "Skannerne på denne maskine er tilgængelige for andre maskiner"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of the root partition"
-msgstr "Første sektor af rodpartitionen"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Alternative drivers"
-msgstr "Alternative drivprogrammer"
+"GNU/Linux håndterer tiden i GMT (Greenwich Mean Time) og oversætter den til "
+"lokal tid ifølge den tidszone du har valgt. Det er imidlertid muligt at "
+"deaktivere dette ved at fravælge 'Maskinens ur sat til GMT' så maskinens ur "
+"er det samme som systemets ur. Dette er nyttigt når maskinen også bruges til "
+"andre operativsystemer som Windows.\n"
+"\n"
+"Muligheden 'Automatisk tidssynkronisering' vil automatisk tilpasse uret ved "
+"at forbinde til en ekstern tidsserver på internettet. Vælg en server der "
+"ligger tæt på dig i listen der præsenteres. Selvfølgelig skal du have en "
+"fungerende internetforbindelse for at denne facilitet kan fungere. Den vil "
+"faktisk installere en tidsserver på din maskine, som om ønsket kan bruges af "
+"andre maskiner på dit lokalnetværk."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:224
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.\n"
+"\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
+msgstr ""
+"X (for X-vinduessystem) er hjertet af GNU/Linux' grafiske grænseflade, "
+"hvilket alle de grafiske miljøer (KDE, Gnome, AfterStep, WindowMaker)...), "
+"som kommer med Mandrake Linux, bygger på. I dette afsnit vil DrakX forsøge "
+"at konfigurere X automatisk.\n"
+"\n"
+"Det er meget sjældent at dette mislykkes for DrakX, med mindre maskinellet "
+"er meget gammelt (eller meget nyt). Hvis det lykkes, vil DrakX starte X "
+"automatisk med den bedst mulige opløsning afhængig af skærmens størrelse. Et "
+"vindue vil så komme frem og spørge om du kan se det.\n"
+"\n"
+"Hvis du laver en ekspert-installering, vil du komme ind i X-konfigurerings- "
+"vejlederen. Se det tilhørende afsnit af manualen for yderligere oplysning om "
+"denne vejleder.\n"
+"\n"
+"Hvis du kan se beskeden under afprøvningen, og svarer Ja, så vil DrakX "
+"fortsætte til det næste trin. Hvis du ikke kan se beskeden, betyder det "
+"simpelthen at konfigurationen var forkert, og testen vil automatisk "
+"afsluttes efter 10 sekunder, og genfremvise skærmen."
+
+#: ../../help.pm_.c:246
+msgid ""
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
+msgstr ""
+"Til sidst vil du blive spurgt om du ønsker at se den grafiske grænseflade "
+"ved opstart. Bemærk at du vil blive spurgt om dette selvom du har valgt ikke "
+"at afprøve konfigurationen. Selvfølgelig vil du ønske at svare Nej, hvis din "
+"maskine skal bruges som server, eller hvis ikke lykkedes dig at få skærmen "
+"konfigureret."
+
+#: ../../help.pm_.c:253
+msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
+msgstr ""
+"Mandrake Linux-cdrommen har en indbygget rednings-tilstand. Du kan få fat i "
+"denne ved at starte op fra cdrommen, trykke 'F1'-tasten ved opstart, og "
+"indtaste 'rescue' ved opstartsledeteksten. Men i tilfælde af at din maskine "
+"ikke kan starte op fra cdrommen, bør du komme tilbage til dette trin for "
+"hjælp i mindst to situationer:\n"
+"\n"
+" * ved installering af opstartsindlæseren vil DrakX genskrive "
+"opstartssektoren (MBR) på din hoveddisk (medmindre du bruger en anden "
+"opstartshåndterer) så du kan starte enten Windows eller GNU/Linux (forudsat "
+"du har Windows på dit system). Hvis du har brug for at geninstallere "
+"Windows, vil Microsoft installeringsprocessen overskrive opstartssektoren, "
+"og så vil du ikke være i stand til at starte GNU/Linux!\n"
+"\n"
+" * Hvis der opstår et problem, og du ikke kan starte GNU/Linux op fra "
+"harddisken, vil denne diskette være den eneste måde at starte GNU/Linux op "
+"på. Den indeholder et pænt antal systemværktøjer til at genskabe et system "
+"som er gået ned pga. strømsvigt, en uheldig tastefejl, en skrivefejl i en "
+"adgangskode, eller nogen anden årsag.\n"
+"\n"
+"Hvis du siger 'Ja', vil du blive bedt om at indsætte en diskette i drevet. "
+"Disketten du indsætter skal være tom eller kun indeholde data som du ikke "
+"har brug for. Du behøver ikke formatere den, da DrakX vil overskrive hele "
+"disketten."
+
+#: ../../help.pm_.c:277
+msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-"Please check all options that you need.\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
+"\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
msgstr ""
+"Nu skal du vælge hvor på din harddisk du vil installere dit Mandrake Linux-"
+"operativsystem. Hvis disken er tom eller et eksisterende operativsystem "
+"bruger alt pladsen på den, bliver du nødt til at partitionere den. "
+"Partitionering vil sige at disken deles i logiske dele for at gøre plads til "
+"dit nye Mandrake Linux-system.\n"
+"\n"
+"Da en partitionering normalt ikke kan fortrydes kan det godt være "
+"frustrerende og stressende for nybegyndere. Heldigvis er der en vejleder som "
+"forenkler denne proces. Før du begynder studér da i manualen og tag den tid "
+"du skal bruge.\n"
+"\n"
+"Hvis du kører installeringen i ekspert-tilstand kommer du ind i Mandrake "
+"Linux' partitioneringsværktøj, DiskDrake. Dette vil lade dig finindstille "
+"dine partitioner. Se kapitlet om DiskDrake i manualen. Fra installations-"
+"grænsefladen kan du bruge de vejledere som beskrevet her ved at klikke "
+"knappen 'Vejleder' på grænsefladen.\n"
+"\n"
+"Hvis partitionerne allerede er definerede (fra en tidlige installation eller "
+"fra et andet partitions-værktøj), skal du bare vælge dem for at installere "
+"dit Linux system\n"
+"\n"
+"Hvis partitionerne ikke er lavet endnu, bliver du nødt til at oprette dem "
+"ved brug af vejlederen. Afhængig af din disks konfiguration er flere "
+"muligheder tilstede:\n"
+"\n"
+" * 'Brug fri plads': Dette vil simpelthen føre til en automatisk opdeling af "
+"den ledige diskplads. Du vil ikke blive spurgt om mere.\n"
+"\n"
+" * 'Brug eksisterende partition': vejlederen har fundet en eller flere "
+"eksisterende Linux-partitioner på din harddisk. Hvis du vil bruge dem, så "
+"vælg denne mulighed.\n"
+"\n"
+" * 'Brug den fri plads på Windows-partitionen': hvis Microsoft Windows er "
+"installeret på din disk og bruger al pladsen, bliver du nødt til at lave "
+"plads til Linux. For at gøre det kan du slette dine Microsoft Windows "
+"partitioner og data (se \"Slet hele disken\" eller \"Ekspert niveau\" ) "
+"eller ændre størrelsen på din Microsoft Windows-partition. "
+"Størrelsesændringen kan fortages uden tab af data. Denne løsning er "
+"anbefalet hvis du vil bruge både Mandrake Linux og Microsoft Windows på "
+"samme maskine.\n"
"\n"
-"Markér alle muligheder som du behøver.\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
-msgstr "Kap Verde"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "om denne processor har Cyrix 6x86 Coma-fejlen eller ej"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr "Indlæser printerkonfiguration... Vent venligst"
+" Før du vælger denne løsning, bør du forstå at størrelsen på din Microsoft "
+"Windows partition vil blive mindre end den er nu. Det betyder at du vil have "
+"mindre fri plads under Microsoft Windows til at gemme din data eller "
+"installere nyt programmel.\n"
+"\n"
+" * 'Slet hele disken': hvis du vil slette alle data på alle partitioner på "
+"denne disk og erstatte dem med dit nye Mandrake Linux-system, kan du vælge "
+"denne mulighed. Vær forsigtig med denne løsning, du vil ikke være i stand "
+"til at fortryde dine ændringer efter at du har sagt ja.\n"
+"\n"
+" !! Hvis du bruger denne mulighed vil alle data på din disk gå tabt. !!\n"
+"\n"
+" * 'Fjern Windows': dette vil simpelthen slette alt på disken og begynde fra "
+"en frisk, og partitionere fra ny. Alle data på din disk vil gå tabt.\n"
+"\n"
+" !! Hvis du bruger denne mulighed vil alle data på din disk gå tabt. !!\n"
+"\n"
+" * 'Ekspert-modus': hvis du vil partitionere disken i hånden, kan du vælge "
+"dette alternativ. Vær forsigtig før du vælger denne løsning. Den giver dig "
+"mange muligheder, men er også farlig. Du kan meget nemt komme til at slette "
+"alle dine data. Så lad være med at vælge den løsning med mindre du véd hvad "
+"du gør."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
+#: ../../help.pm_.c:347
+msgid ""
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-"tidlige pentiummer var fejlbehæftede og frøs ved afkodning af bytekoden F00F"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr "Guam"
+"Værsgo'. Installationen en nu færdig og dit GNU/Linux-system er nu klar til "
+"brug. Klik bare O.k. for at genstarte systemet. Du kan starte GNU/Linux "
+"eller Windows, som du foretrækker det (hvis du har to systemer), så snart "
+"din maskine er startet op igen.\n"
+"\n"
+"Avanceret-knappen viser to ekstra knapper for at:\n"
+"\n"
+" * generere en auto-installeringsdiskette: for at oprette en installerings- "
+"diskette som automatisk vil udføre en hel installation uden hjælp fra en "
+"operatør, magen til den installation du lige har konfigureret.\n"
+"\n"
+" Bemærk at to forskellige muligheder er tilstede efter klik på knappen:\n"
+"\n"
+" * Genafspil: Dette er en delvist automatiseret installering da "
+"partitioneringstrinnet (og kun dette trin) forbliver interaktiv.\n"
+"\n"
+" * Automatisk: Fuldautomatisk installering: harddisken bliver fuldstændig "
+"genoverskrevet, alle data forsvinder.\n"
+"\n"
+" Denne facilitet er meget nyttig ved installering af et stort antal ens "
+"maskiner. Se afsnittet om autoinstallering på vores websted.\n"
+"\n"
+" * Gem pakkevalg(*): Gemmer pakkevalget som lavet tidligere. Så når en ny "
+"installering laves, kan disketten indsættes i drevet og installeringen kan "
+"køres ved at bruge F1 på hjælpeskærmen idet der indtastes >>linux defcfg="
+"\"floppy\"<<.\n"
+"\n"
+"(*) Du skal have en diskette formateret til FAT (denne oprettes i GNU/Linux "
+"ved at skive \"mformat a:\")"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:378
msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-"Angiv hvilken port din printer er forbundet til eller indtast et enhedsnavn/"
-"filnavn på inddatalinjen"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/Indstillinger/Test"
+"Enhver partition der netop er blevet defineret, skal formateres til brug "
+"(formatering betyder oprettelse af et filsystem).\n"
+"\n"
+"Nu kan du også ønske at omformatere nogle allerede eksisterende partitioner "
+"for at slette de data som de indeholder. Hvis du ønsker dette, så markér "
+"også de partitioner som du ønsker at formatere.\n"
+"\n"
+"Bemærk at det ikke er nødvendigt at omformatere alle allerede eksisterende "
+"partitioner. Det er nødvendigt at omformatere de partitioner, der indeholder "
+"operativsystemet (såsom '/', '/usr' og '/var', men du er ikke nødt til at "
+"omformatere partitioner som du ønsker at beholde (typisk /home).\n"
+"\n"
+"Vær forsigtig med valg af partitioner; efter formatering vil alle data være "
+"slettede på de valgte partitioner, og du vil ikke kunne redde nogetsomhelst "
+"af det.\n"
+"\n"
+"Klik på 'Ok' når du er klar til at formatere partitioner.\n"
+"\n"
+"Klik på 'Annullér' hvis du ønsker at vælge andre partitioner til at "
+"installere dit nye Mandrake Linux operativsystem.\n"
+"\n"
+"Klik på 'Avanceret' for at vælge partitioner som du ønsker at tjekke for "
+"dårlige blokke."
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:404
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."
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
+"\n"
+"Please be patient."
msgstr ""
-"Dette niveau skal bruges med omtanke. Det gør dit system nemmere at bruge, "
-"men er meget sårbart: det må ikke bruges til en maskine der er i et netværk "
-"eller har forbindelse til Internettet. Der er ikke nogen kontrol af "
-"adgangskoder."
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mounting partition %s"
-msgstr "Monterer partition %s"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "Brugernavn"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Hvilken partition vil du benytte som Linux4Win?"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to missing %s"
-msgstr "grundet manglende %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Test pages"
-msgstr "Testsider"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Logical volume name "
-msgstr "Logisk arkivnavn "
+"Dit nye Mandrake Linux styresystem er i færd med at blive installeret. "
+"Afhængig af det antal pakker, du installerer og hastigheden på din maskine "
+"kan dette tage fra nogen få minutter til en del længere tid. \n"
+"Hav venligst tålmodighed med dette."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:412
msgid ""
-"List of data to restore:\n"
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-"Liste over data som skal genskabes:\n"
+"På det tidspunkt hvor du installerer Mandrake Linux er det sandsynligt at "
+"nogen af pakkerne er blevet opdaterede siden den oprindelige udgivelse. "
+"Nogle fejl er måske blevet rettet, og sikkerhedsproblemer måske løst. Vi "
+"foreslår dig at hente disse ned fra internettet for at disse opdateringer "
+"kan komme dig til gode. Vælg 'Ja' hvis du har en fungerende internet- "
+"forbindelse eller 'Nej' hvis du foretrækker at installere opdaterede pakker "
+"senere.\n"
"\n"
+"Valg af 'Ja' viser en liste af steder hvorfra opdateringer kan hentes. Vælg "
+"en der er nær ved dig. Så vil et træ med pakkevalg fremkomme: gennemse "
+"valget og tryk 'Installér' for at modtage og installere den valgte pakke "
+"eller 'Annullér'for at afbryde."
-#: ../../fs.pm:1
-#, c-format
-msgid "Checking %s"
-msgstr "Tjekker %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/Sokkel-printer-parametre"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Kort mem (DMA)"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Afbryder forbindelse til Internettet "
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "Frankrig"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
-msgstr "bladr"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
-msgstr "Tjekker installeret programmel..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Det eksterne værtsnavn mangler!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Vil du aktivere udskrift på printerne i det lokale netværk?\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "Tyrkiet"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Number of buttons"
-msgstr "Antal knapper"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamesisk \"talrække\" QWERTY"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Module"
-msgstr "Modul"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:425
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
msgstr ""
-"Desuden kan køer lavet med dette program eller \"foomatic -configure\" ikke "
-"overflyttes."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
-msgstr "Udstyr"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl- og alt-taster samtidigt"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "U.S.A."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "User umask"
-msgstr "Brugers umask"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "Forvalgt styresystem?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "Schweizisk (Tysk layout)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Konfigurér alle skærme uafhængigt"
+"Før du går videre bør du læse betingelserne i licensen omhyggeligt. Den "
+"omfatter hele Mandrake Linux distributionen, og hvis du ikke er enig i alle "
+"betingelserne i den, så klik på 'Nægt'-knappen. Det vil øjeblikkeligt "
+"afslutte installationen. For at fortsætte installationen skal du klikke på "
+"'Acceptér'-knappen."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:432
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\"."
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
msgstr ""
-"Vælg den printer du ønsker at opsætte. Konfigurationen af printeren vil ske "
-"fuldstændigt automatisk. Hvis din printer ikke blev fundet korrekt eller "
-"hvis du foretrækker en tilpasset printerkonfiguration, så slå 'Manuel "
-"konfiguration' til."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "NTP-server"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Sulogin(8) in single user level"
-msgstr "Sulogin(8) på enkeltbrugerniveau"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Load/Save on floppy"
-msgstr "Indlæs/gem på diskette"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
-msgstr "Dette tema har endnu ikke nogen startskærm i %s!"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "rart"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Forsvinder om %d sekunder"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Angiv hvilken seriel port dit modem er forbundet til."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Property"
-msgstr "Egenskab"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr "LAN konfiguration"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "Ghana"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
-msgstr "Sti eller modul krævet"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Advanced Options"
-msgstr "Avancerede muligheder"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Configuration"
-msgstr "Vis konfiguration"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
-msgstr "Coma-fejl"
+"Nu er det tid til at vælge det ønskede sikkerhedsniveau for maskinen. "
+"Hovedreglen er at jo mere kendt maskinen er, og jo vigtigere data er, des "
+"højere bør sikkerhedsniveauet være. Men et højere sikkerhedsniveau vindes "
+"normalt på bekostning af letheden af anvendelsen. Kig i kapitlet MSEC i "
+"referencehåndbogen for mere information om betydningen af niveauerne.\n"
+"\n"
+"Hvis du ikke véd hvad du skal vælge, så behold den foreslåede mulighed."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:442
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"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -5143,68 +3514,67 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
"Nu skal du vælge hvor Mandrake Linux skal installeres. Hvis partitionerne "
"allerede er lavet, enten fra en tidligere installation af GNU/Linux eller "
-"med et andet partitioneringsværktøj), kan du bruge dem. Ellers skal disk-"
+"fra et andet partitioneringsværktøj), kan du bruge dem. Ellers skal disk-"
"partitionerne laves først.\n"
"\n"
"For at lave partitioner skal du først vælge en harddisk. Du kan vælge disken "
@@ -5213,54 +3583,50 @@ msgstr ""
"\n"
"For at partitionere den valgte disk kan du bruge disse muligheder:\n"
"\n"
-" * '%s': Dette valg sletter alle partitioner på den valgte disk.\n"
-"\n"
-" * '%s': dette valg tillader dig automatisk at lave Ext3 og swappartitioner "
-"på den fri plads på din disk.\n"
-"\n"
-"* '%s': giver adgang til flere faciliteter:\n"
-"\n"
-" * '%s': Gemmer din partitionstabel på en diskette. Nyttigt ved senere "
-"redning af partitionstabellen, om nødvendigt. Det anbefales meget at du "
-"bruger dette trin.\n"
+" * 'Slet alt': Dette valg sletter alle partitioner på den valgte disk.\n"
"\n"
-" * '%s': lader dig genskabe en tidligere gemt partitionstabel fra "
-"diskette.\n"
+" * 'Allokér automatisk': dette valg tillader dig automatisk at lave Ext2 og "
+"swappartitioner på den fri plads på din disk.\n"
"\n"
-" * '%s': hvis din partitionstabel er beskadiget, kan du prøve at redde "
-"den med denne mulighed. Vær forsigtig og husk at det ikke altid virker.\n"
+"* 'Mere': giver adgang til flere faciliteter:\n"
"\n"
-" * '%s': forkaster alle ændringer og genindlæser partitionstabellen som "
-"oprindeligt lå på disken\n"
+" * 'Gem partitionstabel': Gemmer din partitionstabel på en diskette. "
+"Nyttigt ved senere redning af partitionstabellen, om nødvendigt. Det er "
+"stærkt anbefalet at bruge dette trin.\n"
"\n"
-" * '%s': fravalg af denne mulighed vil tvinge brugere til at manuelt "
-"montere og afmontere media såsom disketter og cdrommer\n"
+" * 'Genskab partitionstabel': lader dig genskabe en tidligere gemt "
+"partitionstabel fra diskette.\n"
"\n"
-" * '%s': Hvis du ønsker at bruge vejlederen til at partitionere din disk, "
-"kan du bruge denne mulighed. Dette anbefales, hvis du ikke har den store "
-"forståelse om partitionering\n"
+" * 'Red partitionstabel': hvis din partitionstabel er beskadiget, kan du "
+"prøve at redde den med denne mulighed. Vær forsigtig og husk at det kan slå "
+"fejl.\n"
+" * 'Automatisk montering af flytbart medie': fravalg af denne mulighed "
+"vil tvinge brugere til at manuelt montere og afmontere media såsom disketter "
+"og cdrommer.\n"
"\n"
-" * '%s': Du kan bruge denne mulighed for at annullere dine ændringer\n"
+" * 'Vejleder': Hvis du ønsker at bruge vejlederen til at partitionere din "
+"disk, kan du bruge denne mulighed. Dette anbefales, hvis du ikke har det "
+"store kendskab til partitionering.\n"
"\n"
-" * '%s': giver mulighed for flere handlinger med partitioner (type, "
-"valgmuligheder, format) og giver mere information om diskdrevet\n"
+" * 'Fortryd': Du kan bruge denne mulighed for at annullere dine ændringer.\n"
"\n"
-" * '%s': når du er færdig med partitionering af din disk, dette vil skrive "
-"ændringerne tilbage på disken.\n"
+" * 'Skift mellem normal og ekspert-version': giver mulighed for flere "
+"handlinger med partitioner (type, valgmuligheder, format) og giver mere "
+"information.\n"
"\n"
-"Ved definering af en partitionsstørrelse kan du finjustere denne ved at "
-"bruge piletasterne på tastaturet.\n"
+" * 'Færdig': når du er færdig med partitionering af din disk, dette vil "
+"skrive ændringerne tilbage på disken.\n"
"\n"
-"Bemærk: du kan nå enhver valgmulighed ved brug af tastaturet: navigér gennem "
+"Bemærk: du kan nå alle mulighederne ved at bruge tastaturet: navigér gennem "
"partitionerne med Tab og op- og ned-pilene.\n"
"\n"
"Når en partition er valgt kan du bruge:\n"
"\n"
-" * Ctrl-c for at lave en ny partition (Når en tom partition er valgt)\n"
+" * Ctrl-c for at lave en ny partition (Når en tom partition er valgt);\n"
"\n"
-" * Ctrl-d for at slette en partition\n"
+" * Ctrl-d for at slette en partition;\n"
"\n"
-" * Ctrl-m for at sætte et monteringssti\n"
+" * Ctrl-m for at sætte et monteringssti.\n"
"\n"
"For at få information om de forskellige tilgængelige filsystemstyper kan du "
"læse kapitlet ext2fs i 'Referencemanualen'.\n"
@@ -5271,1969 +3637,1308 @@ msgstr ""
"til at gemme en ekstra kerne og ramdisk-billede for nødsituationer ved "
"opstart."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:513
msgid ""
-"Graphic Card\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-" 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"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\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 ""
-" Installationsprogrammet vil normalt automatisk finde ud af at konfigurere "
-"grafikkortet installeret på din maskine. Hvis dette ikke er tilfældet kan du "
-"fra denne liste vælge det kort du faktisk har installeret.\n"
-" I tilfælde af at forskellige drivere er tilgængelige til dit kort, med "
-"eller uden 3D-accelleration, bliver du spurgt om at vælge den server der "
-"bedst opfylder dine behov."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Der opstod en fejl ved installeringen af pakkerne:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Lexmark inkjet konfiguration"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "Fortryd"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Save partition table"
-msgstr "Gem partitionstabel"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "Finsk"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "Makedonien"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
-msgstr ""
-"Deling per bruger bruger gruppen 'fileshare'. \n"
-"Du kan bruge userdrake til at tilføje en bruger til denne gruppe."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "Slovensk"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Authorize:\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\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"
-"- only local ones if set to \"LOCAL\"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
"\n"
-"- none if set to \"NONE\".\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"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+" * \"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 ""
-"Autorisér:\n"
+"Mere end én Microsoft Windows partition er blevet genkendt på dit diskdrev. "
+"Vælg den som du ønsker at ændre størrelse på for at kunne installere dit nye "
+"Mandrake Linux operativsystem.\n"
"\n"
-"- alle tjenester kontrolleret af tcp_wrappers (se hosts.deny(5)) man-siden "
-"hvis sat til 'ALL',\n"
+"Hver partition er listet som følger: 'Linux navn', 'Windows navn', "
+"'Kapacitet'.\n"
"\n"
-"- Kun de lokale hvis sat til 'LOCAL',\n"
+"'Linux navn' er kodet som følger: 'drevtype', 'drevnummer', "
+"'partitionsnummer' (for eksempel '/hda1').\n"
"\n"
-"- ingen hvis sat til 'NONE'.\n"
+"'drevtype' er 'hd' hvis dit diskdrev er et IDE drev, og 'sd' hvis det er et "
+"SCSI drev.\n"
"\n"
-"For at autorisere de tjenester du behøver, brug /etc/hosts.allow (se hosts."
-"allow(5))."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr "Libyen"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Konfigurerer skript, installerer programmel, starter servere..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Printer på parallel port #%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"'drevnummer' er altid et bogstav efter 'hd' eller 'sd'. For IDE drev:\n"
"\n"
-"- Burn to CD"
-msgstr ""
+" * 'a' betyder 'hoved-drev på den primære IDE controller',\n"
"\n"
-"- Brænd på CD"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "Tabel"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Ved ikke hvordan man formaterer %s som type %s"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Model"
-msgstr "Model"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "USB printer #%s"
-msgstr "USB-printer \\/#%s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Stop Server"
-msgstr "Stop server"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
+" * 'b' betyder 'slave-drev på den primære IDE controller',\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
+" * 'c' betyder 'hoved-drev på den sækundære IDE controller',\n"
"\n"
-"Vælg et tema for\n"
-"Lilo og opstartskærmen,\n"
-"du kan vælge\n"
-"dem separat"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Modem"
-msgstr "Modem"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr "Tuvalu"
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr "Brug automatisk detektion"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
-msgstr ""
-"GPM tilføjer muse-support til tekst-baserede Linux applikationer såsom "
-"Midnight Commander. Den tillader muse-baseret kopiér-og-sætind operationer "
-"på konsollen og inkluderer support for pop-op-menuer i konsollen."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr "Startede med opstart"
-
-#: ../advertising/12-mdkexpert.pl:1
-#, 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:"
-msgstr ""
-"Slut dig til MandrakeSofts supporthold og Linux-samfundet på nettet for at "
-"dele din viden og hjælpe andre ved at blive en anerkendt Ekspert på det "
-"tekniske supportnetsted:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "No password aging for"
-msgstr "Ingen ældning af adgangskode for"
-
-#: ../../standalone/draksec:1
-#, 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"
-msgstr ""
-"De følgende tilvalg kan sættes for at tilpasse din\n"
-"systemsikkerhed. Hvis du har brug for forklaringer kan du kigge på "
-"Hjælpetipsene.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Find tilgængelige printere på eksterne maskiner automatisk"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr "Østtimor"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
-msgstr "på båndenhed"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+" * 'd' betyder 'slave-drev på den sækundære IDE controller'.\n"
"\n"
-"- Save to Tape on device: %s"
-msgstr ""
+"For SCSI drev betyder 'a' det 'første drev', 'b' betyder det 'andet drev', "
+"osv.\n"
"\n"
-"- Gem på bånd på enhed: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Login name"
-msgstr "Logindnavn"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
-msgstr "Rapportér filer der ikke er ejede af nogen."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr "Slet profil..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Installerer Foomatic..."
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Log ud og tryk herefter på Ctrl-Alt-Bak"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected"
-msgstr "Detekteret"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "Netværket skal være genstartet. Ønsker du at genstarte det?"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package: "
-msgstr "Pakke: "
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr "Kan ikke skrive /etc/sysconfig/bootsplash."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "SIKKERHEDSADVARSEL!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
-msgstr "Nej, jeg ønsker ikke automatisk login"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Migrationsværktøj for MS Windows"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr "Alle sprog"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "Fjerner %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s ikke fundet...\n"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Testing your connection..."
-msgstr "Tester din forbindelse..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cache size"
-msgstr "Størrelse på cachen"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Kontrol af adgangskode er nu aktiveret, men brug som netværksmaskine er "
-"stadig ikke anbefalet."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr "Startsektor: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr "Congo (Brazzaville)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Read"
-msgstr "Læs"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Pakken %s skal være installeret. Ønsker du at installere den?"
+"'Windows navn' er det bogstav som dit drev har under Windows (den første\n"
+"disk eller partition kaldes 'C:')."
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
-msgstr "Seychellerne"
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
+msgstr "Hold ud! Dette kan tage adskillige minutter."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:547
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"
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
"\n"
-"For your printer Printerdrake has found:\n"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
-"%s"
-msgstr ""
-"Printerdrake har sammenlignet modelnavnet fra den automatiske genkendelse af "
-"printeren med modellerne listet i dens printerdatabase for at finde den "
-"bedste match. Dette valg kan være forkert, især når din printer slet ikke er "
-"listet i databasen. Så tjek om valget er korrekt og klik \"Modellen er "
-"korrekt\" hvis den er, og hvis ikke så klik \"Vælg model manuelt\" så du kan "
-"udvælge din printermodel manuelt på den næste skærm.\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
"\n"
-"Som din printer har Printerdrake fundet:\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Bad password on %s"
-msgstr "Dårlig adgangskode på %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
"\n"
-"Der findes en ukendt printer direkte tilsluttet til dit system"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Control key"
-msgstr "Højre kontrol-tast"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"Indsæt en FAT-formateret diskette i diskette-drev %s med %s i rod-kataloget "
-"og tryk %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "Zambia"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr "Sikkerhedsadministrator (brugernavne eller e-post)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr "Desværre, vi understøtter kun 2.4-kerner."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr "Russisk (qwerty)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
-msgstr "Under udvikling ... vent venligst:-)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "Egypten"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "Tjekkiet"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "Lydkort"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Import Fonts"
-msgstr "Import af skrifttyper"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Du har én stor MicroSoft Windows partition.\n"
-"Jeg foreslår at du først ændrer størrelsen på partitionen\n"
-"(klik på den, og klik herefter på \"Størrelsesændring\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Undertryk midlertidige filer"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
"\n"
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
msgstr ""
-"Tillykke, netværks- og internetkonfigurationen er færdig.\n"
+"DrakX skal nu vide om du vil udføre en standard-installation ('Anbefalet'), "
+"eller om du ønsker at have større kontrol ('Ekspert'). Du kan også vælge om "
+"du vil lave en nyinstallering eller en opgradering af et eksisterende "
+"Mandrake Linux-system. \n"
"\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "Skift partitionstype"
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Resolution\n"
+"* 'Installér': udraderer helt det gamle system, afhængigt af hvad der i "
+"øjeblikket er på din maskine vil du dog kunne beholde nogen gamle "
+"partitioner (Linux eller andet) uændret.\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 ""
-"Opløsning\n"
+"* 'Opgradér': Denne installationsklasse tillader simpel opdatering af de "
+"pakker der i øjeblikket er installeret på dit Mandrake Linux-system. Den "
+"beholder de nuværende partitioner på dine diskdrev så vel som opsætningen af "
+"brugere. Alle andre konfigurationstrin forbliver mulige som for almindelig "
+"installation.\n"
"\n"
-" Hér kan du vælge opløsninger og farvedybder ud af de tilgængelige "
-"muligheder for dit udstyr. Vælg dem som bedst opfylder dine behov (du vil "
-"dog kunne ændre dette efter installationen). Et eksempel på den valgte "
-"konfiguration vil blive vist på skærmen."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Network Options"
-msgstr "Netværkstilvalg"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable msec hourly security check"
-msgstr "Aktivér/deaktivér msec timevise sikkerhedskontrol"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"Visningstema\n"
-"under konsol"
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr "(på %s)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "MM Serien"
+"* 'Opgradér kun pakker': Denne nye installationsklasse kan opgradere et "
+"eksisterende Linux Mandrake-system idet al systemkonfiguration beholdes "
+"uændret. Tilføjelse af nye pakker til den nuværende installation vil også "
+"være muligt.\n"
+"\n"
+"Opgraderinger bør virke fint på Mandrake Linux-systemer der indeholder "
+"version \"8.1\" eller senere.\n"
+"\n"
+"Afhængig af din viden om GNU/Linux kan du vælge et af de følgende:\n"
+"\n"
+"* Anbefalet: hvis du aldrig har installeret et GNU/Linux-operativsystem så "
+"vælg dette. Installationen vil være meget nem og du vil kun blive stillet "
+"nogen få spørgsmål.\n"
+"\n"
+"* Ekspert: hvis du har en god viden om GNU/Linux, ønsker du måske at lave en "
+"meget tilpasset installation. Nogen af de beslutninger du skal foretage kan "
+"være ganske svære hvis du ikke har så godt et kendskab til GNU/Linux, så det "
+"er ikke anbefalet at dem der ikke har så stor erfaring vælger denne "
+"installationsklasse."
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:582
msgid ""
-"A library which defends against buffer overflow and format string attacks."
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
+"\n"
+"Click on the \"More\" 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, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
msgstr ""
-"Et bibliotek som beskytter mod angreb via bufferoverløb og formatstrenge."
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr "gennemsnit"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "New printer name"
-msgstr "Nyt printernavn"
+"Normalt vil drakX have valgt det rigtige tastatur til dig (afhængigt af "
+"sproget du har valgt) og du vil så ikke se dette trin. Men du har måske "
+"ikke et tastatur som svarer nøjagtigt til dit sprog: for eksempel hvis du "
+"er en engelsktalende svejtser, vil du måske stadig ønske at dit tastatur "
+"skal være et svejtsisk tastatur. Eller hvis du taler engelsk men bor i "
+"Québec, er du måske i samme situation. I begge tilfælde må du gå tilbage "
+"til dette installationstrin og vælge et passende tastatur fra listen.\n"
+"\n"
+"Klik på 'mere'-tasten for at blive præsenteret for den fulde \n"
+"liste af understøttede tastaturer."
-#: ../../fs.pm:1
-#, c-format
+#: ../../help.pm_.c:598
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 )."
+"The first step is to choose your preferred language.\n"
+"\n"
+"Please choose your preferred language for installation and system usage.\n"
+"\n"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
+"\n"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
-"Tillad en almindelig bruger at montere filsystemet. Navnet på brugeren der \n"
-"monterede skrives til mtab så denne kan afmontere filsystemet igen. \n"
-"Denne mulighed implikerer valgmulighederne noexec, nosuid og nodev\n"
-"(med mindre tilsidesat af efterfølgende valgmuligheder, som i linjen\n"
-"user,ecex,dev,suid )."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr "Ækvatorialguinea"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup System"
-msgstr "Lav sikkerhedskopi af system"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Build Backup"
-msgstr "Lav backup"
+"Vælg dit foretrukne sprog for brug under installation og på systemet. \n"
+"Der er en Avanceret-knap som lader dig vælge andre sprog, der installeres "
+"på maskinen. Valg af andre sprog vil installere de sprogspecifikke filer for "
+"systemdokumentation og programmer. Hvis du for eksempel vil beværte folk fra "
+"Spanien på din maskine, vælg da engelsk som hovedsproget i træ-visningen, og "
+"afkryds så i den avancerede afdeling boksen svarende til spansk|Spanien.\n"
+"\n"
+"Bemærk at flere sprog kan installeres samtidigt. Når du er færdig med at "
+"vælge yderligere sprog, så klik O.k. for at fortsætte."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:617
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
+"\n"
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
+"\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
msgstr ""
-"For at udskrive en fil fra kommandolinjen (terminalvinduet) brug da "
-"kommandoen '%s <fil>' eller '%s <fil>'.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Der er for nærværende ingen alternative muligheder"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwertz)"
-msgstr "Russisk (qwertz)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Write Config"
-msgstr "Udskriv konfiguration"
+"Normalt antager drakX at du har en to-knapsmus og vil lave en opsætning hvor "
+"den tredje knap emuleres. DrakX vil automatisk vide om den er PS/2, seriel "
+"eller USB.\n"
+"\n"
+"Hvis du ønsker en anden type mus, vælg da den rigtige type mus fra den viste "
+"liste.\n"
+"\n"
+"Hvis du vælger en mus forskellig fra den forvalgte, vil du blive præsenteret "
+"for en skærm for museafprøvning. Brug knapperne og hjulet for at efterprøve, "
+"om indstillerne er gode. Hvis musen ikke virker korrekt, tryk da på "
+"mellemrumstangenten eller vognretur for at 'Annullere' og vælg forfra."
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:638
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."
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"Routed dæmonen giver mulighed for automatisk IP rutetabel opdatering via RIP "
-"protokollen. RIP kan bruges til små netværk, men når det kommer til mere "
-"komplekse netværk er der behov for en mere kompleks protokol."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr "Kiribati"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech mus (seriel, gammel C7 type) med hjul-emulering"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Andre (ikke drakbackup) nøgler findes allerede"
+"Vælg den rigtige port. For eksempel er navnet for COM1-porten under MS "
+"Windows 'ttyS0' under GNU/Linux."
-#: ../../help.pm:1
-#, 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"
+#: ../../help.pm_.c:642
+msgid ""
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
"\n"
-"You will be presented with a list of different parameters to change to get\n"
-"an optimal graphical display: Graphic Card\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
"\n"
-" 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"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
"\n"
-" 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"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
"\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
"\n"
-"Monitor\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
+msgstr ""
+"Dette er den vanskeligste beslutning omkring sikkerheden af dit GNU/Linux- "
+"system: Du skal indtaste din root-adgangskode. Root er systemadministratoren "
+"og er den eneste der har lov til at lave opdateringer, tilføje brugere, "
+"ændre i den overordnede systemkonfiguration og så videre. Kort sagt, root "
+"kan gøre alt! Derfor skal du vælge en adgangskode der er svær at gætte - "
+"DrakX vil fortælle dig hvis det er for nemt. Som víst kan du vælge ikke at "
+"indtaste en adgangskode, men vi advarer dig på det kraftigste mod dette, om "
+"ikke andet med én begrundelse: tro ikke at fordi du startede GNU/Linux op, "
+"så er dine andre operativsystemer velforvarede. Da root kan overvinde alle "
+"forhindringer og uforvarende slette alle data på partitioner ved sorgløst at "
+"behandle partitionerne selv, er det vigtigt at det er vanskeligt at blive "
+"root.\n"
"\n"
-" 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"
+"Adgangskoden bør være en blanding af bogstaver og tal og mindst 8 tegn "
+"langt. Skriv aldrig en adgangskode ned for root - det gør det for nemt at "
+"bryde ind i et system.\n"
"\n"
+"Gør dog ikke adgangskoden for lang eller kompliceret da du skal være i stand "
+"til at huske den uden for stort besvær.\n"
"\n"
+"Adgangskoden vil ikke blive vist på skærmen når du indtaster den. Du skal "
+"derfor indtaste adgangskoden to gange, for at begrænse risikoen for "
+"tastefejl. Hvis du kommer til at lave den samme tastefejl to gange, vil "
+"denne 'ukorrekte' adgangskode være krævet når du forbinder dig til "
+"systemet.\n"
"\n"
-"Resolution\n"
+"I ekspert-tilstand vil du blive spurgt om du vil koble op til en "
+"autenticerings-server, som NIS eller NDAP.\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"
+"Hvis dit netværk bruger LDAP (eller NIS)-protokollen til autentificering, "
+"vælg da LDAP (eller NIS). Hvis du ikke véd det, så spørg din "
+"systemadministrator.\n"
"\n"
+"Hvis din maskine ikke er forbundet til noget administreret netværk, ønsker "
+"du nok at vælge Lokale filer for autentificering"
+
+#: ../../help.pm_.c:678
+msgid ""
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\n"
"\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
+"OS;\n"
"\n"
-"Test\n"
+" * if a grub or LILO boot sector is found, it will replace it with a new\n"
+"one.\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"
+"if in doubt, DrakX will display a dialog with various options.\n"
"\n"
+" * \"Bootloader to use\": you have three choices:\n"
"\n"
+" * \"GRUB\": if you prefer grub (text menu);\n"
"\n"
-"Options\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\n"
"\n"
-" Here you can choose whether you want to have your machine automatically\n"
-"switch to a graphical interface at boot. Obviously, you want to check\n"
-"\"%s\" if your machine is to act as a server, or if you were not successful\n"
-"in getting the display configured."
-msgstr ""
-"X (for X Window System) er hjertet af GNU/Linux' grafiske grænseflade som "
-"alle de grafiske miljøer (KDE, GNOME, AfterStep, WindowMaker, mv.) der "
-"kommer sammen med Mandrake Linux afhænger af.\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
"\n"
-"Du vil blive vist en liste med forskellige parametre der kan ændres for at "
-"få den bedst mulige grafiske fremvisning:\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
-"Grafikkort\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
"\n"
-" Installationsprogrammet vil normalt automatisk finde ud af at konfigurere "
-"grafikkortet installeret på din maskine. Hvis dette ikke er tilfældet kan du "
-"fra denne liste vælge det kort du faktisk har installeret.\n"
-" I tilfælde af at forskellige drivere er tilgængelige til dit kort, med "
-"eller uden 3D-accelleration, bliver du spurgt om at vælge den server der "
-"bedst opfylder dine behov.\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\n"
"\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
+msgstr ""
+"LILO og GRUB er opstartsindlæsere for GNU/Linux. Dette trin er normalt helt "
+"automatiseret. Faktisk vil drakX analysere opstartsektoren på disken og vil "
+"handle ud fra dette, afhængig af hvad den finder hér:\n"
"\n"
-"Skærm\n"
+" * Hvis den finder en Windows opstartssektor vil den erstatte den med en "
+"GRUB/LILO opstartssektor, så du kan starte GNU/Linux eller et andet "
+"operativsystem;\n"
"\n"
-" Installationsprogrammet vil normalt automatisk finde ud af at konfigurere "
-"skærmen tilsluttet din maskine. Hvis dette ikke er den rigtige, kan du fra "
-"denne liste vælge den skærm du faktisk har tilsluttet din maskine.\n"
+" * Hvis den finder en GRUB eller LILO opstartssektor vil den erstatte den "
+"med en ny;\n"
"\n"
+"Hvis den er i tvivl vil drakX vise en dialog med forskellige muligheder.\n"
"\n"
-"Opløsning\n"
+" * 'Opstartsindlæser der bruges': du får her tre muligheder:\n"
"\n"
-" Du kan vælge opløsninger og farvedybder fra de tilgængelige muligheder "
-"for dit udstyr. Vælg dem som bedst opfylder dine behov (du vil dog kunne "
-"ændre dette efter installationen). Et eksempel på den valgte konfiguration "
-"vil blive vist på skærmen.\n"
+" * 'GRUB': hvis du foretrækker GRUB (tekstmenu).\n"
"\n"
+" * 'LILO med grafisk menu': hvis du foretrækker LILO med "
+"grafikgrænseflade.\n"
"\n"
-"Test\n"
+" * 'LILO med tekstmenu': hvis du foretrækker LILO med tekstgrænseflade.\n"
"\n"
-" Systemet vil prøve at åbne en grafisk skærm i den ønskede opløsning. Hvis "
-"du kan se beskeden under afprøvningen og svarer '%s', så vil DrakX gå videre "
-"til næste trin. Hvis du ikke kan se beskeden, betyder det at en del af den "
-"automatisk fundne konfiguration var forkert og testen vil automatisk slutte "
-"efter 12 sekunder, og bringe dig tilbage til menuen. Ændr indstillingerne "
-"til du får en korrekt grafisk fremvisning.\n"
+" * 'Opstartsenhed': I de fleste tilfælde vil det ikke være nødvendigt at "
+"ændre standard (/dev/hda), men hvis du foretrækker det, kan "
+"opstartsindlæseren installeres på det andet diskdrev (/dev/hdb), eller endda "
+"på en diskette (/dev/fd0).\n"
"\n"
+" * 'Forsinkelse før opstart af standardsystem': Ved genstart af maskinen er "
+"dette den tid der gives til brugeren til at vælge en anden opstartsindgang "
+"end standard i opstartsindlæserens menu.\n"
"\n"
+"Vær opmærksom på at hvis du vælger ikke at installere en opstartsindlæser "
+"(ved at vælge 'Annullér' hér), skal du være sikker på at du har en anden "
+"måde at starte dit Mandrake Linux-system op på! Vær også sikker på hvad du "
+"gør hvis du ændrer nogen af tilvalgene her!\n"
"\n"
-"Valgmuligheder\n"
+"Et klik på 'Avanceret'-knappen i denne dialog vil tilbyde mange avancerede "
+"muligheder beregnet til ekspertbrugeren.\n"
"\n"
-" Du kan hér vælge om du ønsker at din maskine automatisk skal skifte til "
-"en grafisk grænseflade ved opstart. Selvfølgelig vil du ønske at svare Nej, "
-"hvis din maskine skal bruges som server, eller hvis ikke lykkedes dig at få "
-"skærmen konfigureret. You can here 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."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr "Bladr"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr "cd-rom"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Ønsker du at forsøge at skabe forbindelse til Internettet nu?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "Belgisk"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Har du et ISA-lydkort?"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Der blev ikke fundet nogen ethernet netværksadapter på dit system.\n"
-"Kan ikke sætte denne forbindelsetype op."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Windows"
-msgstr "Windows"
-
-#: ../../common.pm:1
-#, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "Kan ikke lave øjebliksbilleder før partitionering"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Name"
-msgstr "Værtsnavn"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Fil/Gem _som"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"For at få adgang til eksterne CUPS-servere i dit lokale netværk behøver du "
-"bare at aktivere \"Find automatisk tilgængelige printere på eksterne maskiner"
-"\"-valget: CUPS-serverene informerer din maskine automatisk om printerne. "
-"Alle printerne som for øjeblikket er kendt af din maskine er listet i "
-"\"Fjern-printere\" sektionen i hovedvinduet til Printerdrake. Hvis din CUPS-"
-"server ikke er i dit lokale netværk, må du indtaste CUPS-servernes IP-"
-"adresser og evt. portnummeret for at få printer-information fra serverne."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr "%s findes ikke skannerdatabasen, skal den konfigureres manuelt?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "Ventetid før opstart af forvalgt styresystem"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Restrict command line options"
-msgstr "Begræns kommandolinie-indstillinger"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "East Europe"
-msgstr "Østeuropa"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "Brug fri plads"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "brug dhcp"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr "Post-påmindelse"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Internet configuration"
-msgstr "Internet-konfiguration"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected %s"
-msgstr "Fandt %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Auto-detektér printere"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "Afslut"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Vis automatisk valgte pakker"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr "Togo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "CPU flag rapporteret af kernen"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Noget gik galt! - er mkisofs installeret?"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "16 Mb"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "Prøv igen"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The model is correct"
-msgstr "Modellen er korrekt"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT størrelsesændring mislykkedes: %s"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr "Individuelt pakkevalg"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr "Størrelsen på denne partition kan ikke ændres"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr "Placering"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "USA (kabel-hrc)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr "Journaliserende FS"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr "Aktivér/deaktivér åbenhedstjek på ethernetkort."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
-msgstr "Denne maskine"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS-drevbogstav: %s (bare et gæt)\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr "Bahrain"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Vælg filerne eller katalogerne og klik på 'O.k.'"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit scsi modules"
-msgstr "undgå scsi-moduler"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "processorens familie (fx 6 for i686-klasse)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Da du er i gang med en netværksinstallation er dit netværk allerede "
-"konfigureret.\n"
-"Klik OK for at beholde din konfiguration, eller annullér for at "
-"omkonfigurere din Internet- og netværksforbindelse.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
-msgstr "Kør de daglige sikkerhedskontroller"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Tastatur-type: %s\n"
+"Efter at du har konfigureret de generelle opstartsindlæserparametre, bliver "
+"du presenteret for listen af opstartsmuligheder som vil være tilstede ved "
+"opstarten.\n"
+"\n"
+"Hvis der er et andet operativsystem installeret på din maskine, vil det "
+"automatisk blive tilføjet til opstartsmenuen. Her kan du vælge at "
+"finindstille de eksisterende muligheder. Vælg en indgang og klik på 'Ændr' "
+"for at ændre eller fjerne den; 'Tilføj' opretter en ny indgang; og 'Færdig' "
+"fortsætter til det næste installationstrin."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:718
msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessable by remote machines and by which remote machines."
-msgstr ""
-"Her kan du vælge om printerne sluttet til denne maskine skal være "
-"tilgængelige fra eksterne maskiner, og fra hvilke eksterne maskiner."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr "Maltesisk (US)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "Oprettelsen af opstartsdisketten er færdig\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
+msgstr ""
+"LILO (LInux LOaderen) og GRUB er opstartsindlæsere: de kan starte enten GNU/"
+"Linux eller ethvert andet system op, som ligger på din maskine. Normalt "
+"bliver disse andre operativsystemer fundet korrekt og installeret. Hvis "
+"dette ikke er tilfældet, kan du lave en indgang i hånden med denne skærm. "
+"Vær omhyggelig med at vælge de korrekte parametre.\n"
+"\n"
+"Måske vil du ikke ønske at give nogensomhelst adgang til disse andre "
+"operativsystemer. I dette tilfælde kan du slette de tilsvarende indgange. "
+"Men så har du brug for en opstartsdiskette for at starte disse "
+"operativsystemer!"
+
+#: ../../help.pm_.c:732
+msgid ""
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\n"
+"\n"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
+msgstr ""
+"Det er nødvendigt at du angiver hvor du ønsker at placere oplysningerne\n"
+"krævet for at opstarte GNU/Linux.\n"
+"\n"
+"Med mindre du véd præcist hvad du gør, bør du vælge Første sektor på drevet\n"
+"(MBR)."
+
+#: ../../help.pm_.c:739
+msgid ""
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
+"\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
+"\n"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
+msgstr ""
+"Her vælger vi et udskrivningssystem som din maskine skal bruge. Andre "
+"styresystemer tilbyder måske ét, men Mandrake tilbyder tre.\n"
+"\n"
+" * 'pdq' - som betyder 'print, don't queue' (udskriv, kø ej), er valget, "
+"hvis du har en direkte forbindelse til din printer, og du ønsker at kunne "
+"klare printproblemer med det samme, og du ikke har nogen printere via "
+"netværk. Det vil kun behandle meget simple netværkstilfælde, og er lidt "
+"sløvt på netværk. Vælg 'pdq' hvis dette er din jomfrurejse med GNU/Linux. Du "
+"kan ændre dit valg efter installeringen ved at køre PrinterDrake fra "
+"Mandrakes Kontrolcenter, og klikke på ekspert-knappen.\n"
+"\n"
+" * 'CUPS' - 'Common Unix Printing System' (Fælles printersystem for Unix) er "
+"fremragende til at udskrive på din lokale printer, og også på den, der står "
+"på den anden side af jordkloden. Det er simpelt, og kan virke som en server "
+"eller klient for det bedagede 'lpd'-printsystem, så det er kompatibelt med "
+"de tidligere systemer. Det kan mange finesser, men den basale opsætning er "
+"næsten lige så nem som for 'pdq'. Hvis du har brug for at dette efterligner "
+"en 'lpd'-server, skal du aktivere 'cups-lpd'-dæmonen. Det har grafiske "
+"grænseflader for udskrivning og valg af printermuligheder.\n"
+"\n"
+" * 'lprNG' - 'line printer daemon New Generation' (ny generation af "
+"linjeprinterdæmonen). Dette system kan gøre omtrent det samme som de andre, "
+"men det vil også kunne skrive til et Novell netværk, fordi det understøtter "
+"IPX-protokollen, og det kan udskrive direkte til skal-kommandoer. Hvis du "
+"har brug for Novell eller udskrivning til kommandoer uden at bruge en "
+"separat kanaliserings-konstruktion, så brug lprNG. Ellers er CUPS at "
+"foretrække, da det er simplere og bedre til at fungere over netværk."
+
+#: ../../help.pm_.c:759
+msgid ""
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"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 does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
+"\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
+msgstr ""
+"DrakX er nu ved at bestemme alle IDE-enheder der er tilstede på din maskine. "
+"Den vil også lede efter en eller flere PCI SCSI-kort på dit system. Hvis et "
+"SCSI-kort findes, vil DrakX automatisk installere en driver til det.\n"
+"\n"
+"Da maskineleftersøgningen nogen gange ikke vil finde et stykke udstyr, vil "
+"DrakX alligevel spørge dig om du har et SCSI-kort installeret i din maskine. "
+"Du vil blive præsenteret for en liste af SCSI-kort, som du kan vælge fra. "
+"Svar Nej hvis du ikke har noget SCSI-udstyr. Hvis du ikke er sikker, kan du "
+"også tjekke listen over udstyr i din maskine ved at vælge Se maskinelinfo og "
+"klikke O.k. Undersøg listen over udstyr og klik så på O.k.-knappen for at "
+"vende tilbage til spørgsmålet om SCSI-udstyr.\n"
+"\n"
+"Hvis du måtte angive din kort manuelt, vil DrakX spørge om du vil "
+"specificere nogle indstillingsmuligheder for den. Du bør dog lade DrakX "
+"spørge udstyret om opsætningen. Det virker som regel fint. \n"
+"Hvis DrakX ikke kan få oplysninger om indstillinger ud af udstyret, som skal "
+"bruges til opsætningen, skal du angive opsætningsinformation til driveren. "
+"Se i brugervejledningen (kapitel 3, underafsnit \"Collective informations on "
+"your hardware\") om hjælp med at finde informationen i maskinel-"
+"dokumentationen, fra fabrikantens side (hvis du har Internet adgang) eller "
+"fra Microsoft Windows (hvis du brugte dette udstyr med Windows på dit "
+"system)."
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:781
msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Monterer og afmonterer alle netværks filsystemer (NFS), SMB (LanManager/"
-"Windows) og NCP (NetWare) monterings-stier"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Launch the wizard"
-msgstr "Start vejlederen"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Tvcard"
-msgstr "TV-kort"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Skift mellem normal og ekspert-tilstand"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr "Størrelse"
-
-#: ../../help.pm:1
-#, c-format
-msgid "GRUB"
-msgstr "GRUB"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr "Grønland"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "Torsdag"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Ikke korrekt båndetiket. Båndet har etiket %s."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
"\n"
-"What would you like to do?"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\n"
+"\n"
+"For Linux, there are a few possible options:\n"
+"\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
+"\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
+"\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
+"\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
+"\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"hda=autotune\n"
+"\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
+"\n"
+" * Initrd: this option can be used either to load initial modules, before\n"
+"the boot device is available, or to load a ramdisk image for an emergency\n"
+"boot situation;\n"
+"\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
+"\n"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
+"\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support;\n"
+"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
msgstr ""
-"Indstilling af deling af internetforbindelse er allerede gjort.\n"
-"Deling er aktiveret.\n"
+"Du kan tilføje flere valgmuligheder for Yaboot, enten til andre "
+"styresystemer, andre kerner, eller til nød-opstart.\n"
"\n"
-"Hvad ønsker du at gøre?"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Slet alle NBI'er"
+"For andre styresystemer består indgangen blot af et navn og rodpartitionen\n"
+"\n"
+"Der er for Linux nogen få valgmuligheder:\n"
+"\n"
+" * Label: dette er simpelthen navnet som du skal indtaste til ledeteksten "
+"fra Yaboot for at vælge denne opstartsmulighed.\n"
+"\n"
+" * Image: Dette vil være navnet på den kerne der skal opstartes. Typisk "
+"vmlinux eller en variation på vmlinux med en endelse.\n"
+"\n"
+" * Root: root enheden eller \"/\" for din Linux installation.\n"
+"\n"
+" * Append: på Apple udstyr bruges kerne-append muligheden ganske ofte til at "
+"hjælpe med initialisering af billedudstyr, eller til at aktivere emulering "
+"af museknapper for de ofte manglende knap 2 og knap 3 på musen på en typisk "
+"Apple mus. Det følgende er nogle eksempler:\n"
+"\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+"hda=autotune\n"
+"\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
+"\n"
+" * Initrd: denne mulighed kan bruges enten til at indlæse de første moduler, "
+"før opstartsenheden er tilgængelig, eller til at indlæse en ramdisk ved "
+"opstart i en nødsituation.\n"
+"\n"
+" * Initrd-size: den almindelige størrelse på en ramdisk er generelt 4.096 "
+"byte. Hvis du har brug for at udlægge en stor ramdisk kan denne mulighed "
+"bruges.\n"
+"\n"
+" * Read-write: normalt bliver rod-partitionen først bragt op skrivebeskyttet "
+"for at muliggøre et filsystemstjek før systemet går i luften. Her kan du "
+"tilsidesætte denne opsætning.\n"
+"\n"
+" * NoVideo: skulle Apple-billedudstyret vise sig at være specielt "
+"problemfyldt kan du vælge denne mulighed for at starte op i 'novideo'-"
+"tilstand, med indbygget rammebufferunderstøttelse.\n"
+"\n"
+" * Default: vælger denne indgang som værende det normale Linux valg, som "
+"vælges bare ved at trykke RETUR ved yaboots ledetekst. Denne indgang vil "
+"også blive fremhævet med en '*', hvis du trykker Tab for at se "
+"opstartsvalgene."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:828
msgid ""
-"This dialog allows you to fine tune your bootloader:\n"
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
"\n"
-" * \"%s\": there are three choices for your bootloader:\n"
+"Yaboot's main options are:\n"
"\n"
-" * \"%s\": if you prefer grub (text menu).\n"
+" * Init Message: a simple text message displayed before the boot prompt;\n"
"\n"
-" * \"%s\": if you prefer LILO with its text menu interface.\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"
-" * \"%s\": if you prefer LILO with its graphical interface.\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"
-" * \"%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"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
-" * \"%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"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\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"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
-"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
-"are normally reserved for the expert user."
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
msgstr ""
-"Denne dialog giver dig mulighed for at finindstille din opstartsindlæser:\n"
+"Yaboot er en systemstarter til NewWorld MacIntosh-maskinel. Den kan starte "
+"enten GNU/Linux, MacOS eller MacOSX, hvis de er til stede på din maskine. "
+"Sædvanligvis vil disse andre styresystemer blive korrekt opdaget og "
+"installeret. Hvis dette ikke skulle være tilfældet kan du her tilføje en "
+"indgang i hånden. Vær omhyggelig med at vælge de korrekte parametre.\n"
"\n"
-" * '%s': der er tre muligheder for din opstartsindlæser:\n"
+"Yaboots hovedvalg er:\n"
"\n"
-" * '%s': hvis du foretrækker GRUB (tekstmenu).\n"
+" * Init-besked: En enkel tekstbesked som vises før valg af opstart.\n"
"\n"
-" * '%s': hvis du foretrækker LILO med tekstgrænseflade.\n"
+" * Opstartsenhed: Angiver hvor du ønsker at placere informationen som er "
+"nødvendig for at starte GNU/Linux. Du vil generelt have indstillet en "
+"bootstrap-partition tidligere til at have denne information.\n"
"\n"
-" * '%s': hvis du foretrækker LILO med grafikgrænseflade.\n"
+" * Open firmwareforsinkelse: Til forskel fra LILO er der to forsinkelser "
+"mulige med yaboot. Den første forsinkelse bliver målt i sekunder og du kan "
+"ved det punkt vælge mellem CD, OF-opstart, MacOS eller Linux.\n"
"\n"
-" * '%s': I de fleste tilfælde vil det ikke være nødvendigt at ændre standard "
-"('%s'), men hvis du foretrækker det, kan opstartsindlæseren installeres på "
-"det andet diskdrev ('%s'), eller endda på en diskette ('%s').\n"
+" * Ventetid før kerneopstart: Denne er lig LILO-opstartsforsinkelsen. Efter "
+"at have valgt Linux vil du have denne ventetid gange 0,1 sekunder før din "
+"forvalgte kernebeskrivelse bliver valgt.\n"
"\n"
-" * '%s': Efter opstart eller genstart af maskinen er dette den tid der gives "
-"til brugeren på konsollen til at vælge en anden opstartsindgang end den "
-"forvalgte.\n"
+" * Aktivér CD-opstart?: Hvis du vælger dette valg vil du kunne trykke 'C' "
+"for CD ved det første opstartsvalg.\n"
"\n"
-"Vær opmærksom på at hvis du vælger ikke at installere en opstartsindlæser "
-"(ved at vælge '%s'), skal du være sikker på at du har en anden måde at "
-"starte dit Mandrake Linux-system op på! Vær sikker på hvad du gør hvis du "
-"ændrer nogen af tilvalgene her!\n"
+" * Aktiver OF-opstart?: Hvis du vælger dette valg vil du kunne trykke 'N' "
+"for 'Open Firmware' ved det første opstartsvalg.\n"
"\n"
-"Et klik på '%s'-knappen i denne dialog vil tilbyde avancerede muligheder "
-"beregnet til ekspertbrugeren."
+" * Forvalgt styresystem: Du kan vælge hvilket forvalgt styresystem der skal "
+"startes når Open Firmwareforsinkelsen er udløbet."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../help.pm_.c:860
+#, fuzzy
msgid ""
-"if set, send the mail report to this email address else send it to root."
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
+"\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
+"\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
+"\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\n"
+"\n"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\n"
+"\n"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\n"
+"\n"
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
msgstr ""
-"hvis sat, så send postrapporter til denne postadresse, ellers send dem til "
-"root."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Hvilken konfiguration af XFree ønsker du?"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "More"
-msgstr "Mere"
+"Her præsenteres forskellige parametre relateret til din maskine. Afhængig af "
+"dit installerede maskinel vil - eller vil du ikke - se de følgende "
+"indgange:\n"
+"\n"
+" * 'Mus': tjek den aktuelle musekonfiguration og klik på knappen for om "
+"nødvendigt at ændre den.\n"
+"\n"
+" * 'Tastatur': tjek den aktuelle tastaturkonfiguration og klik på knappen "
+"for om nødvendigt at ændre den.\n"
+"\n"
+" * 'Tidszone': DrakX gætter normalt din tidszone fra det sprog, du har "
+"valgt. Men også her, som ved valg af tastatur, er du måske ikke i det land "
+"som dit sprog indikerer, så du har måske brug for at klikke på 'Tidszone'-"
+"knappen så du kan konfigurere uret svarende til den tidszone du er i.\n"
+"\n"
+" * 'Printer': Et klik på 'Ingen printer'-knappen vil åbne vejlederen for "
+"printerkonfigurering. Kig i det tilhørende kapitel i 'Brugervejledningen' "
+"for mere information om hvordan man opsætter en ny printer. Grænsefladen\n"
+"præsenteret der ligner den som bruges under installationen;\n"
+"\n"
+" * 'Lydkort': Hvis et lydkort er blevet fundet på dit system, vil det blive "
+"vist her. Ingen ændringer er mulige på installationstidspunktet.\n"
+"\n"
+" * 'Tv-kort': Hvis et tv-kort er blevet fundet på dit system, vil det blive "
+"vist her. Ingen ændringer er mulige på installationstidspunktet.\n"
+"\n"
+" * 'ISDN-kort': Hvis et ISDN-kort er blevet fundet på dit system, vil det "
+"blive vist her. Du kan klikke på knappen for at ændre de tilhørende "
+"parametre."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:891
msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
-"Dette bruger den samme syntaks som kommandolinjeprogrammet 'cdrecord'. "
-"'cdrecord scanbus' vil også vise dig enhedsnummeret."
+"Vælg det diskdrev som du vil slette for at installere din nye Mandrake Linux "
+"partition. Vær forsigtig, alle data som er på der, vil gå tabt og vil ikke "
+"kunne genskabes!"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:896
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."
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"Med dette sikkerhedsniveau kan brug som server komme på tale.\n"
-"Sikkerheden er nu høj nok til at systemet kan bruges som server som tillader "
-"forbindelser fra mange klienter. Bemærk: hvis din maskine kun er en klient "
-"på internettet bør du hellere vælge et lavere niveau."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Server Name"
-msgstr "Servernavn"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Password"
-msgstr "Adgangskode for konto"
+"Klik på 'O.k.' hvis du ønsker at slette alle data og pertitioner der ligger "
+"på dette diskdrev. Vær omhyggelig, efter klik på O.k. vil du ikke være i "
+"stand til at redde nogen data eller partitioner, der ligger på dette "
+"diskdrev, inklusive alle Windows data.\n"
+"Klik på 'Annullér' for at annullere denne handling uden at tabe nogen data "
+"og partitioner der er tilstede på dette diskdrev."
-#: ../../standalone/drakhelp:1
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
+"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 ""
-"%s kan ikke vises \n"
-"Ingenhjælpeindgang af denne type\n"
+"Kunne ikke få adgang til kernemoduler svarende til din kerne (fil %s "
+"mangler), dette betyder normalt at din opstartsdiskette ikke stemmer overens "
+"med installationsmediet (lav en nyere opstartsdiskette)"
+
+#: ../../install2.pm_.c:167
+#, c-format
+msgid "You must also format %s"
+msgstr "Du skal også formatere %s"
-#: ../../any.pm:1
+#: ../../install_any.pm_.c:423
#, 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"
+"You have selected the following server(s): %s\n"
"\n"
-"On which drive are you booting?"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
msgstr ""
-"Du besluttede at installere opstartsindlæseren på en partition.\n"
-"Dette indikerer at du allerede har en opstartsindlæser på disken som du "
-"starter op fra (fx System Commander).\n"
+"Du har valgt følgende servere: %s\n"
"\n"
-"Hvilket drev starter du op fra?"
+"\n"
+"Disse servere er aktiveret som standard. De har ingen kendte "
+"sikkerhedsproblemer, men nogen nye kan blive fundet. I så tilfælde skal du "
+"opgradere så snart som mulig.\n"
+"\n"
+"\n"
+"Ønsker du virkelig at installere disse servere?\n"
-#: ../../install_interactive.pm:1
+#: ../../install_any.pm_.c:441
#, c-format
msgid ""
-"WARNING!\n"
+"The following packages will be removed to allow upgrading your system: %s\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."
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-"ADVARSEL!\n"
+"De følgende pakker vil blive fjernet for at kunne opdatere systemet: %s\n"
"\n"
-"DrakX vil nu ændre størrelsen på din Windows-partition. Vær forsigtig: denne "
-"operation er farlig. Hvis du ikke allerede har gjort det, bør du først gå ud "
-"af denne installation, køre 'chkdsk c:' fra en kommandolinje under Windows "
-"(bemærk, det er ikke nok at køre det grafiske program 'scandisk', vær sikker "
-"på at køre 'chkdsk' i en kommandolinje!) og eventuelt defrag) og så "
-"genstarte installationen. Du bør også tage en sikkerhedskopi af dine data. "
-"Tryk på O.k., hvis du er helt sikker."
+"\n"
+"Ønsker du virkelig at fjerne disse pakker?\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tajik keyboard"
-msgstr "Tajik tastatur"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
+msgstr "Kan ikke bruge rundkastning uden noget NIS-domæne"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:879
#, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Indsæt en tom diskette i diskette-drev %s"
+
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
+msgstr "Denne diskette er ikke formatteret til FAT"
+
+#: ../../install_any.pm_.c:895
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"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-"Du kan kopiere printerkonfigurationen du har sat op for køserveren %s til %"
-"s, din nuværende køserver. Al konfigurationsdata (printernavn, beskrivelse, "
-"opkoblingstype og standardindstillinger) bliver overtaget, men ikke "
-"opgaver.\n"
-"Ikke alle køer kan overføres på grund af:\n"
+"For at bruge dette gemte pakkevalg, start installationen op med``linux "
+"defcfg=floppy''"
-#: ../../standalone/drakfont:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, c-format
-msgid "Font List"
-msgstr "Liste over skrifttyper"
+msgid "Error reading file %s"
+msgstr "Fejl ved læsning af filen %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_any.pm_.c:1040
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."
+"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 ""
-"Du behøver måske at ændre din Åben Firmware opstartsenhed for at slå "
-"systemstarteren til. Hvis du ikke ser systemstarter-beskeden ved genstart, "
-"så hold Command-Option-O-F nede og indtast:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Skriv så: shut-down\n"
-"Ved næste opstart burde du se systemstarteren."
+"Der er opstået en fejl - der kunne ikke findes nogen gyldige enheder, hvor "
+"der kan oprettes nye filsystemer. Undersøg din maskine for at finde årsagen "
+"til problemet"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_interactive.pm_.c:21
#, 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"
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"Det virker som om du har en OldWorld eller ukendt maskine, yaboot "
-"opstartsindlæseren vil ikke virke for dig. Installationen vil fortsætte, men "
-"du skal bruge BootX eller en anden måde til at starte din maskine."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Select file"
-msgstr "Vælg fil"
+"Noget maskinel på din maskine skal bruge ''proprietære'' drivere for at "
+"virke.\n"
+"Du kan finde information om dem hos: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:56
msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
+"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 ""
-"Vælg netværket eller værten på hvilken de lokale printere skal gøres "
-"tilgængelige: "
+"Du skal have en rod partition. For at få dette, lav en ny partition (eller "
+"vælg en eksisterende).\n"
+"Vælg så kommandoen \"Monterings-sti\" og sæt den til `/'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
+msgstr "Du skal tildele en partition til Swap"
+
+#: ../../install_interactive.pm_.c:62
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"
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"Disse kommandoer kan du også bruge fra 'udskrivningskommando'-feltet i "
-"udskriftsdialogerne i mange programmer, men lad være med at angive filnavnet "
-"her, fordi filen der skal udskrives leveres af programmet.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "Japan"
+"Du har ingen Swap partition\n"
+"\n"
+"Fortsæt alligevel?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print option list"
-msgstr "Liste med printermuligheder"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Du skal have en FAT-partition monteret under /boot/efi"
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "Ændringen er fortaget, men for at være effektiv skal du logge ud"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
+msgstr "Brug fri plads"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
-msgstr "Land / Region"
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
+msgstr "Ikke nok fri plads til at tildele nye partitioner"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search servers"
-msgstr "Søg efter servere"
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
+msgstr "Brug eksisterende partition"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "NCP-kønavn mangler!"
+#: ../../install_interactive.pm_.c:102
+msgid "There is no existing partition to use"
+msgstr "Der er ingen eksisterende partition der kan bruges"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Advarsel, en anden internetforbindelse er blevet fundet, der måske bruger "
-"dit netværk"
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
+msgstr "Brug Windows partitionen til Loopback"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cdrom med etikette '%s'"
+#: ../../install_interactive.pm_.c:112
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Hvilken partition vil du benytte som Linux4Win?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr "CDRW-medie"
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
+msgstr "Vælg størrelserne"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Gemmer og henter systemets entropipøl for en højre kvalitet\n"
-"ved generering af tilfældige tal."
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
+msgstr "Rod-partitions størrelse i Mb: "
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr "Gør din maskine til en pålidelig server."
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr "Swap-partitions størrelse i Mb: "
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr "Tjek for tomme adgangskoder i /etc/shadow"
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
+msgstr "Brug den frie plads på Windows-partitionen"
-#: ../../network/network.pm:1
-#, c-format
-msgid " (driver %s)"
-msgstr " (drivprogram %s)"
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
+msgstr "Hvilken partition ønsker du at ændre størrelse på?"
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
-msgstr "Start når der bedes om det"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "Udregner Windows-filsystemets grænser"
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
-"Loopback file(s):\n"
-" %s\n"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-"Loopback-fil(er):\n"
-" %s\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr "Det ved jeg ikke"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP vært \"%s\", port %s"
+"Programmet til at ændre størrelse på FAT kan ikke behandle din partition, \n"
+"den følgende fejl opstod: %s"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../install_interactive.pm_.c:137
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 ""
-"Du er ved at konfigurere en automatisk installationsdiskette. Denne mulighed "
-"er lidt farlig, og må bruges med forsigtighed.\n"
-"\n"
-"Med denne mulighed vil du igen kunne køre installationen du gennemførte på "
-"denne maskine, med muligheden for at selv kunne ændre på nogen af "
-"indstillingerne.\n"
-"\n"
-"For maksimal sikkerhed vil partitioneringen og formateringen aldrig blive "
-"gennemført automatisk, uanset hvad du valgte under installationen.\n"
-"\n"
-"Ønsker du at fortsætte?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Telugu"
-msgstr "Telugu"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
+msgstr "Din Windows partition er for fragmenteret, kør 'defrag' først"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:138
msgid ""
+"WARNING!\n"
"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
+"ADVARSEL!\n"
"\n"
-"\n"
-"Dit kort bruger i øjeblikket %s\"%s\"-driveren (normal driver for dit kort "
-"er \"%s\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Uninstall"
-msgstr "Efterbehandling for afinstallering"
+"DrakX vil nu ændre størrelsen på din Windows-partition. Udvis forsigtighed: "
+"denne operation er farlig. Hvis du ikke allerede har gjort det, bør du først "
+"gå ud af denne installation, køre scandisk under Windows (og eventuelt "
+"defrag) og så genstarte installationen. Du bør også tage en sikkerhedskopi "
+"af dine data. Tryk på Ok, hvis du er helt sikker."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Kobler op til Internettet "
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid level"
-msgstr "CPUid-niveau"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Hvilken størrelse ønsker du at at beholde Windows på?"
-#: ../../printer/main.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Novell-server \"%s\", printer \"%s\""
+msgid "partition %s"
+msgstr "partition %s"
-#: ../../keyboard.pm:1
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "Mongolsk (kyrillisk)"
+msgid "FAT resizing failed: %s"
+msgstr "FAT størrelsesændring mislykkedes: %s"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Add a module"
-msgstr "Tilføj et modul"
+#: ../../install_interactive.pm_.c:171
+msgid ""
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Der er ingen FAT-partitioner at ændre størrelse på, eller bruge som loopback "
+"(eller ikke nok plads tilbage)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr "Profil der skal slettes:"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr "Slet hele disken"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Local measure"
-msgstr "Lokal måling"
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr "Fjern Windows(TM)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
-msgstr "Advarsel: IP-adresse %s er normalt reserveret!"
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Du har mere end et diskdrev, hvilken ønsker du at installere Linux på?"
-#: ../../mouse.pm:1
+#: ../../install_interactive.pm_.c:183
#, c-format
-msgid "busmouse"
-msgstr "Busmus"
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Alle eksisterende partitioner og deres data vil gå tabt på drev %s"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Lav Etherboot-aktiverede opstartsaftryksfiler:\n"
-" \tFor at starte med en kerne via etherboot skal en speciel kerne/"
-"initrd-aftryksfil oprettes.\n"
-" \ttmkinitrd-net laver meget af dette arbejde og drakTermServ er bare "
-"en grafisk grænseflade\n"
-" \tfor at hjælpe til med at håndtere/ændre på disse aftryksfiler. For "
-"at \n"
-" \toprette filen /etc/dhcpd.conf.etherboot-pcimap.include som "
-"trækkes \n"
-" \tind som en inklusionsfil i /etc/dhcpd.conf bør du oprette "
-"aftrykkene for \n"
-" \tetherboot for mindst én fuld kerne."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Konto-login (brugernavn)"
+#: ../../install_interactive.pm_.c:191
+msgid "Custom disk partitioning"
+msgstr "Brugerdefineret disk-opdeling"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
-msgstr "Fdiv-fejl"
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr "Brug fdisk"
-#: ../../network/drakfirewall.pm:1
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-"konfigurering med drakfirewall\n"
-"\n"
-"Forsikr dig om at du har konfigureret din internetforbindelse med "
-"drakconnect før du går videre."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr "Acceptér rundkastet icmp echo"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr "Uruguay"
+"Du kan nu partitionere %s.\n"
+"Når du er færdig, så husk at gemme med 'w'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Benin"
-msgstr "Benin"
+#: ../../install_interactive.pm_.c:227
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Du har ikke nok fri plads på din Windows-partition"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "SMB/Windows-server \"%s\", fildeling \"%s\""
+#: ../../install_interactive.pm_.c:243
+msgid "I can't find any room for installing"
+msgstr "Kan ikke finde plads til installering"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path selection"
-msgstr "Valg af sti"
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "DrakX partitionerings-vejlederen fandt de følgende løsninger:"
-#: ../../standalone/scannerdrake:1
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid "Name/IP address of host:"
-msgstr "Navn eller IP-adresse på vært:"
+msgid "Partitioning failed: %s"
+msgstr "Partitionering mislykkedes: %s"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Skærm: %s\n"
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr "Bringer netværket op"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom & system settings"
-msgstr "Brugerdefinerede indstillinger og systemindstillinger"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr "Lukker netværket ned"
-#: ../../partition_table/raw.pm:1
-#, c-format
+#: ../../install_steps.pm_.c:76
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."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"Noget slemt sker på dit drev. \n"
-"En test for at tjekke integriteten af data er mislykkedes. \n"
-"Dette betyder at alt på disken vil ende som tilfældige beskadigede data."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Værtsnavn eller IP-adresse på printer mangler!"
+"Der opstod en fejl, men jeg ved ikke hvordan den kan håndteres på en\n"
+"pæn måde.\n"
+"Fortsæt på eget ansvar!"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Markér alle brugere som du vil have med i din sikkerhedskopi."
+msgid "Duplicate mount point %s"
+msgstr "Duplikér monterings-sti %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps.pm_.c:380
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+"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 ""
-"Denne %s skal være konfigureret af printerdrake.\n"
-"Du kan starte printerdrake fra Mandrake Kontrolcenter i Udstyr-afsnittet."
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Key isn't writable"
-msgstr "Nøgle er ikke skrivbar"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bangladesh"
-msgstr "Bangladesh"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
-msgstr "Japan (kabel)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Initial tests"
-msgstr "Begyndelsestester"
+"Nogle vigtige pakker blev ikke installeret rigtigt.\n"
+"Enten er dit cdrom-drev eller din cdrom fejlbehæftet.\n"
+"Tjek cdrom'en på en færdiginstalleret maskine ved brug af \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
-#: ../../network/isdn.pm:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "Continue"
-msgstr "Fortsæt"
+msgid "Welcome to %s"
+msgstr "Velkommen til %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom Restore"
-msgstr "Tilpasset genskabelse"
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr "Intet tilgængeligt diskettedrev"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "Saturday"
-msgstr "Lørdag"
+msgid "Entering step `%s'\n"
+msgstr "Går til trin `%s'\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:146
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."
+"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 ""
-"'%s': Hvis et lydkort er blevet fundet på dit system, vil det blive vist "
-"her. Hvis du bemærker at det viste lydkort ikke er det som faktisk er til "
-"stede på systemet, kan du klikke på knappen og vælge en anden driver."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the root umask."
-msgstr "Sæt umask for root."
-
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "Fejl ved læsning af filen %s"
+"Dit system har kun få resurser. Du kan få problemer med at installere\n"
+"Mandrake Linux. Hvis dette sker, kan du prøve en tekst-baseret installation "
+"i stedet\n"
+"Dette gøres ved at trykke 'F1' ved opstart fra cdrommen, og så skrive 'text'."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr "Skript-baseret"
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr "Installationsmetode"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "PLL setting:"
-msgstr "PLL-opsætning:"
+#: ../../install_steps_gtk.pm_.c:160
+msgid "Please choose one of the following classes of installation:"
+msgstr "Vælg en af de følgende installations-måder:"
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Du skal have en FAT-partition monteret under /boot/efi"
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
+msgstr "Valg af pakkegrupper"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
-msgstr " på "
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
+msgstr "Individuelt pakkevalg"
-#: ../../diskdrake/dav.pm:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid "The URL must begin with http:// or https://"
-msgstr "URL'en skal begynde med http:// eller https://"
+msgid "Total size: %d / %d MB"
+msgstr "Total størrelse: %d / %d Mb"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Du kan direkte opgive URI til printeren. URIen skal være i henhold til enten "
-"CUPS- eller Foomatic-standarden. Bemærk at ikke alle typer URIer "
-"understøttes af alle kø-behandlere."
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
+msgstr "Dårlig pakke"
-#: ../../any.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "Andet styresystem (SunOS...)"
+msgid "Name: %s\n"
+msgstr "Navn: %s\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid "Install/Upgrade"
-msgstr "Installér/Opgradér"
+msgid "Version: %s\n"
+msgstr "Version: %s\n"
-#: ../../install_steps_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid "%d packages"
-msgstr "%d pakker"
+msgid "Size: %d KB\n"
+msgstr "Størrelse: %d KB\n"
-#: ../../crypto.pm:1 ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
-msgid "Costa Rica"
-msgstr "Costa Rica"
+msgid "Importance: %s\n"
+msgstr "Vigtighed: %s\n"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:360
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"
+"You can't select this package as there is not enough space left to install it"
msgstr ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Sikkerhedskopierings- og genskabelses-program\n"
-"\n"
-"--default : gem standardkataloger.\n"
-"--debug : vís alle fejlsøgningsbeskeder.\n"
-"--show-conf : liste af filer eller kataloger at "
-"sikkerhedskopiere.\n"
-"--config-info : forklar konfigurationsfilens muligheder (for non-X "
-"brugere).\n"
-"--daemon : brug dæmon-konfiguration. \n"
-"--help : vís denne besked.\n"
-"--version : vís versionsnummer.\n"
+"Du kan ikke vælge denne pakke, da der ikke er nok plads tilbage til at "
+"installere den"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain Authentication Required"
-msgstr "Domænegodkendelse påkrævet"
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
+msgstr "De følgende pakker vil blive installeret"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Use libsafe for servers"
-msgstr "Brug libsafe for servere"
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
+msgstr "De følgende pakker vil blive afinstalleret"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Icelandic"
-msgstr "Islandsk"
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
+msgstr "Du kan ikke vælge/fravælge denne pakke"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
-msgstr ""
-"\n"
-"Brug: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Dette er en nødvendig pakke, den kan ikke vælges fra"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
+msgstr "Du kan ikke fravælge denne pakke. Den er allerede installeret"
+
+#: ../../install_steps_gtk.pm_.c:395
msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
-"Maksimal størrelse\n"
-" tilladt for Drakbackup (MB)"
+"Denne pakke skal opgraderes\n"
+"Er du sikker på at du vil fravælge den?"
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Cirkulære monteringer %s\n"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "Du kan ikke fravælge denne pakke. Den skal opgraderes"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo/grub mode"
-msgstr "Lilo/grub modus"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
+msgstr "Vis automatisk valgte pakker"
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "Martinique"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr "Installér"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Diskdrev / NFS"
+#: ../../install_steps_gtk.pm_.c:407
+msgid "Load/Save on floppy"
+msgstr "Indlæs/gem på diskette"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Old user list:\n"
-msgstr "Gammel brugerliste:\n"
+#: ../../install_steps_gtk.pm_.c:408
+msgid "Updating package selection"
+msgstr "Opdaterer pakkevalg"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
-msgstr "Søg i sikkerhedskopier"
+#: ../../install_steps_gtk.pm_.c:413
+msgid "Minimal install"
+msgstr "Minimal installation"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "a number"
-msgstr "et tal"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
+msgstr "Vælg pakker som skal installeres"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "Svensk"
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr "Installerer"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Hvilken %s driver skal jeg prøve?"
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr "Beregnes"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr ""
-"Du vil modtage en advarsel hvis en af de valgte tjenester ikke længere kører"
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr "Resterende tid "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Weekday"
-msgstr "Hverdag"
+#: ../../install_steps_gtk.pm_.c:469
+msgid "Please wait, preparing installation..."
+msgstr "Vent venligst, forbereder installationen"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid "Filesystem types:"
-msgstr "Filsystems-typer:"
+msgid "%d packages"
+msgstr "%d pakker"
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "Northern Mariana Islands"
-msgstr "Nordmarianerne"
+msgid "Installing package %s"
+msgstr "Installerer pakke %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", multi-funktions-enhed på HP JetDirect"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "Acceptér"
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "ingenting"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
+msgstr "Nægt"
-#: ../../standalone/drakconnect:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
+"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 ""
-"Navnet på profilen der skal oprettes (den nye profil oprettes som en \n"
-"kopi af den nuværende) :"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Floppy"
-msgstr "Diskette"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "Ghostscript referencer"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Bootloader"
-msgstr "Systemopstarter"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
-msgstr "Autorisér alle tjenester styret af tcp_wrappers"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "Flyt"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Bootloader to use"
-msgstr "Systemopstarter der skal bruges"
+"Skift din cdrom!\n"
+"\n"
+"Indsæt cdrom'en med navnet \"%s\" i dit cdrom-drev og tryk på Ok, når det "
+"gjort\n"
+"Hvis du ikke har den så tryk på Annullér, så undgås installation fra denne cd"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "SMB-servervært"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
+msgstr "Fortsæt alligevel?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Name Servers:"
-msgstr "Navne-servere:"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
+msgstr "Der opstod en fejl ved sorteringen af pakkerne:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Minute"
-msgstr "Minut"
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
+msgstr "Der opstod en fejl ved installeringen af pakkerne:"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:10
msgid ""
"\n"
"Warning\n"
@@ -7290,4916 +4995,3904 @@ msgstr ""
"Alle rettigheder til komponenterne på CD-en tilhører deres respektive "
"skabere og er beskyttet af Lov om Ophavsret.\n"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Expert mode"
-msgstr "/_Eksperttilstand"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Fjern denne printer fra Star Office/OpenOffice.org/GIMP.org"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtuel Server, brugt til at bygge en server med høj ydelse og\n"
-"tilgængelighed."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr "Mikronesien"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 milliarder farver (32 bit)"
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
+msgstr "Der er opstået en fejl"
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
-msgstr "Licens"
+#: ../../install_steps_interactive.pm_.c:85
+msgid "Do you really want to leave the installation?"
+msgstr "Ønsker du virkelig at forlade installationen?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "Det kan tage lidt tid at generere nøglerne."
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
+msgstr "Licensaftale"
-#: ../../standalone/draksec:1
-#, c-format
+# Mangler
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
+"Introduction\n"
"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
-"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"
+"1. License Agreement\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"
+"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"
-"<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"
+"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"
-"<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"
+"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"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
"\n"
+"3. The GPL License and Related Licenses\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"
+"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"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the "
-"previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
-msgstr ""
-"Her kan du opsætte sikkerhedsniveauet og -administrator for din maskine\n"
+"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"
-"Sikkerhedsadministratoren er den som vil modtage sikkerhedspåmindelser, \n"
-"hvis muligheden 'Sikkerhedspåmindelser' er aktiveret. Det kan være et \n"
-"brugernavn eller en epostadresse.\n"
"\n"
+"5. Governing Laws \n"
"\n"
-"Menuen for sikkerhedsniveau tillader at vælge et af de seks "
-"prækonfigurerede \n"
-"sikkerhedsniveauer som leveres af msec. Disse niveauer spænder fra dårlig \n"
-"sikkerhed og nem brug til en paranoid konfigurering, der er passende til "
-"meget\n"
-"følsomme server-opsætninger:\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 ""
+"Introduktion\n"
"\n"
+"Operativsystemet og de forskellige komponenter tilgængelige i Mandrake Linux "
+"distributionen vil herefter blive kaldt \"programmelprodukter\". "
+"Programmelprodukterne inkluderer, men er ikke begrænset til: samlingen af "
+"værktøjer, metoder, regler og dokumentation relateret til operativsystemet "
+"og de forskellige komponenter i Mandrake Linux-distributionen.\n"
"\n"
-"<span foreground=\"royalblue3\">Dårlig</span>: Dette er et totalt usikkert "
-"men \n"
-"meget nemt at anvende sikkerhedsniveau. Det bør kun bruges af maskiner der \n"
-"ikke er forbundet til noget netværk, og som ikke er tilgængeligt for "
-"enhver.\n"
"\n"
+"1. Licensaftale\n"
"\n"
-"<span foreground=\"royalblue3\">Standard</span>: Dette er standard "
-"sikkerheden \n"
-"anbefalet for en maskine som vil blive brugt til opkobling på internettet "
-"som klient.\n"
+"Læs venligst dette dokument omhyggeligt. Dette dokument er en licensaftale "
+"mellem dig og MandrakeSoft S.A., som gælder til disse programmelprodukter. "
+"Ved at installere, kopiere eller bruge disse programmelprodukter accepterer "
+"du udtrykkeligt og fuldt ud denne licensaftale med dens betingelser og "
+"regler. Hvis du er uenig i nogensomhelst del af denne licens, mister du "
+"retten til at installere, kopiere eller bruge disse programmelprodukter. "
+"Hvilket som helst forsøg på at installere, kopiere eller bruge disse "
+"programmelprodukter på en måde som ikke er i overensstemmelse med "
+"betingelserne og reglerne i denne licens er ulovlig og vil betyde at du "
+"mister dine rettighedder under denne licens. Hvis dette sker, skal du med "
+"det samme ødelægge alle kopier af disse programmelprodukter.\n"
"\n"
"\n"
-"<span foreground=\"royalblue3\">Høj</span>: Der er allerede en del "
-"begrænsninger, og flere automatiske kontroller vil bliver kørt hver nat.\n"
+"2. Begrænset garanti\n"
"\n"
-"<span foreground=\"royalblue3\">Højere</span>: Sikkerheden er nu høj nok til "
-"at \n"
-"bruge systemet som en server som kan tage imod forbindelser fra mange "
-"klienter. \n"
-"Hvis din maskine kun er en klient på internettet, bør du vælge et lavere "
-"niveau.\n"
+"Programmelprodukterne og tilhørende dokumenter leveres \"som de er\", uden "
+"nogen form for garanti, i den udstrækning lov tillader. MandrakeSoft S.A. "
+"vil under ingen omstændigheder undtagen hvad lov foreskriver være ansvarlig "
+"for specielle, tilfældige, direkte eller indirekte tab af nogen art "
+"(inkluderende uden begrænsninger, skader ved tab af forretning, "
+"forstyrrelser af forretning, finansielle tab, advokatbistand, erstatninger "
+"som resultat af en retssag eller nogen anden form for følgetab) opstået "
+"under brugen eller mangel på samme af disse programmelprodukter, selv hvis "
+"MandrakeSoft S.A. er blevet gjort opmærksom på muligheden for eller "
+"indtræffelsen af sådanne skader.\n"
"\n"
+"BEGRÆNSET ANSVAR MED HENSYN TIL REGLER OM BESIDDELSE ELLER BRUG AF FORBUDT "
+"PROGRAMMEL I VISSE LANDE\n"
"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: Dette ligner det \n"
-"foregående niveau, men systemet er helt lukket og\n"
-"sikkerhedsfaciliteter er på deres højeste"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr ""
-"Automatisk identifikation af printere (Lokal, TCP/Socket og SMB-printere)"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr "Sagem (der bruger pppoa) usb"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"Der er opstået en fejl - der kunne ikke findes nogen gyldige enheder, hvor "
-"der kan oprettes nye filsystemer. Undersøg din maskine for at finde årsagen "
-"til problemet"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Starter printsystemet ved opstart"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Ønsker du at starte din forbindelse ved opstart?"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr "Processor-ID"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr "Problemløsning omkring lyd"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "Polsk (polsk layout)"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Tilføj printer"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"I den udstrækning som loven tillader vil MandrakeSoft S.A. eller deres "
+"distributører under ingen omstændigheder være ansvarlig for specielle, "
+"tilfældige, direkte eller indirekte tab af nogen art (inklusive uden "
+"begrænsninger skader ved tab af forretning, forstyrrelser af forretning, "
+"finansielle tab, advokatbistand, erstatninger som resultat af en retssag "
+"eller nogen anden form for tab) opstået ved besiddelse eller brug af "
+"programmelkomponenter eller opstået ved hentning af programmelkomponenter "
+"fra et af Mandrake Linux webstederne som er forbudt eller begrænset i visse "
+"lande ved lokal lov. Dette begrænsede ansvar gælder, men er ikke begrænset "
+"til, de stærke krypteringskomponenter inkluderet i programmelprodukterne.\n"
"\n"
-"Drakbackup activities via CD:\n"
"\n"
-msgstr ""
+"3. GPL-licensen og relaterede licenser\n"
"\n"
-"Drakbackup aktiviteter via CD:\n"
+"Dette programmel består af komponenter lavet af forskellige personer eller "
+"enheder. De fleste af disse komponenter bliver reguleret efter vilkårene og "
+"aftalerne i GNU General Public License, herefter kaldet \"GPL\", eller "
+"lignende licenser. De fleste af disse licenser tillader dig at bruge, "
+"kopiere, tilpasse eller redistribuere komponenterne, de dækker. Læs venligst "
+"vilkårene og betingelserne i licensaftalen for hver komponent omhyggeligt "
+"før du bruger det. Alle spørgsmål angående en komponent bedes adresseret til "
+"komponentens forfatter og ikke til MandrakeSoft. Programmerne udviklet af "
+"MandrakeSoft S.A. bliver reguleret efter GPL-licensen. Dokumentationen "
+"skrevet af MandrakeSoft S.A. bliver reguleret efter en specifik licens. "
+"Referér venligst til dokumentationen for yderligere detaljer.\n"
"\n"
-
-#: ../../printer/printerdrake.pm:1
-#, 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"
+"4. Intellektuelle rettigheder\n"
"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Du er ved at installere printsystemet %s på et system kørende på "
-"sikkerhedsniveau %s.\n"
+"Alle rettigheder til komponenterne i programmelproduktet tilhører deres "
+"respektive forfattere, og er beskyttet af intellektuelle rettigheds- og "
+"ophavsretslove, gældende for programmel. MandrakeSoft S.A. forbeholder sine "
+"rettigheder til at ændre eller tilpasse programmelprodukterne, helt eller "
+"delvist, med alle midler og til alle formål. \"Mandrake\", \"Mandrake Linux"
+"\" samt de tilhørende logoer er varemærker for MandrakeSoft S.A. \n"
"\n"
-"Dette printsystem kører som en dæmon (baggrundsproces) som venter på "
-"printeropgaver og behandler dem. Denne dæmon er også tilgængelig for "
-"eksterne maskiner via netværket, og derfor er det et muligt angrebspunkt. "
-"Derfor bliver kun nogle få udvalgte dæmoner startet op som standard i dette "
-"sikkerhedsniveau.\n"
"\n"
-"Ønsker du virkelig at konfigurere udskrivning på denne maskine?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Vært \"%s\", port %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "Denne partition kan ikke bruges til loopback"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr "Filen findes allerede. Skal den bruges?"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
-msgstr "modtaget: "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr "Højre alt-tast"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "listen af alternative drivprogrammer for dette lydkort"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Gateway"
+"5. Styrende love\n"
+"\n"
+"Hvis dele af denne aftale bliver kendt ugyldig, ulovlig eller ubrugelig ved "
+"en domstolsafgørelse, vil disse dele blive ekskluderet fra denne kontrakt. "
+"Du vil forblive bundet af de andre gældende dele af aftalen. Vilkårene og "
+"aftalerne i denne licens er reguleret under fransk lov. Alle uenigheder "
+"vedrørende vilkårene i denne licens vil fortrinsvist blive løst udenfor "
+"domstolene. Som en sidste udvej vil uenighederne blive håndteret ved den "
+"rette domstol i Paris, Frankrig. Ved spørgsmål omkring dette dokument, "
+"kontakt venligst MandrakeSoft S.A. \n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr "Tonga"
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
+msgstr "Er du sikker på at du afviser licensen?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "Tunesien"
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "Tastatur"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing"
-msgstr "Skannerdeling"
+#: ../../install_steps_interactive.pm_.c:218
+msgid "Please choose your keyboard layout."
+msgstr "Vælg dit tastaturlayout."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile: "
-msgstr "Profil: "
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
+msgstr "Her er den komplette liste over tilgængelige tastaturer"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr "Klik på en enhed i det venstre træ for at vise dets oplysninger hér."
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
+msgstr "Hvilken installations-klasse ønsker du?"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr "Tillad/forbyd autologind."
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
+msgstr "Installér/Opdatér"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
-msgstr "XawTV er ikke installeret!"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
+msgstr "Er dette en nyinstallation eller en opdatering?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Udelad kritiske filer (passwd, group, fstab)"
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr "Anbefalet"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "gammel statisk enhedsnavn brugt i dev-pakke"
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Ekspert"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
-msgstr "Aktivér logning af mærkelige IPv4-pakker."
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade"
+msgstr "Opgradering"
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
-msgstr "Denne mærkat er allerede brugt"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade packages only"
+msgstr "Opgradér kun pakker"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"Velkommen til guiden for printerinstallation\n"
-"\n"
-"Denne guide lader dig installere printere sluttet til denne maskine eller "
-"direkte til netværket.\n"
-"\n"
-"Hvis du har printere sluttet til denne maskine, så tilslut og tænd dem nu så "
-"de kan identificeres automatisk. Netværksprinterne skal også være "
-"tilsluttede og tændte.\n"
-"\n"
-"Bemærk at det tager længere tid at identificere netværksprintere end at "
-"identificere lokalt tilsluttede printere. Så deaktivér autoidentifikation af "
-"netværksprintere hvis du ikke har brug for dette.\n"
-"\n"
-"Klik på \"Næste\" hvis du er klar og på \"Annullér\" hvis du ikke vil "
-"installere printere nu."
+#: ../../install_steps_interactive.pm_.c:282
+msgid "Please choose the type of your mouse."
+msgstr "Vælg muse-type."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
-msgstr "Græsk (polytonisk)"
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr "Muse-port"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"Efter formatering af partitionen %s vil alle data på denne partition gå tabt"
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
+msgstr "Vælg hvilken seriel port din mus er forbundet til."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection Time: "
-msgstr "Tilslutningstid: "
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
+msgstr "Emulering af knapper"
-#: ../../standalone/livedrake:1
-#, 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."
-msgstr ""
-"Indsæt installations-cdrom'en i dit cdrom-drev og tryk på O.k., når det "
-"gjort.\n"
-"Hvis du ikke har den - tryk på Annullér, så undgås levende opgradering"
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
+msgstr "Emulering af knap 2"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use group id for execution"
-msgstr "Brug gruppe-id ved udførelsen"
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
+msgstr "Emulering af knap 3"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "Vælg den forvalgte bruger:"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr "Konfigurerer PCMCIA kort..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "Gabon"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Eksterne CUPS-servere behøves ikke at blive konfigureret her: \n"
-"disse printere vil automatisk blive fundet."
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr "Konfigurerer IDE"
-#: ../../any.pm:1
-#, 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."
-msgstr ""
-"Du kan vælge andre sprog der vil være tilgængelige efter installationen"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
-"Kataloget (eller modulet) hvori sikkerhedskopien skal lægges på denne "
-"maskine."
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr "ingen ledige partitioner"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain"
-msgstr "Domæne"
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
+msgstr "Skanner partitioner for at finde monteringspunkter"
-#: ../../any.pm:1
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Præcis RAM-mængde, hvis påkrævet (fandt %d Mb)"
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr "Vælg monterings-stierne"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:386
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."
+"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 ""
-"LILO og grub er opstartsindlæsere for GNU/Linux. Normalt er dette trin\n"
-"helt automatisk. DrakX vil analysere opstartssektoren på disken og\n"
-"handle ud fra det som findes der.\n"
-"\n"
-" * Hvis en opstartssektor for Windows bliver fundet, vil den erstatte denne "
-"med\n"
-"en grub- eller LILO-opstartsektor. På denne måde kan du indlæse enten\n"
-"GNU/Linux eller et andet operativsystem.\n"
-"\n"
-" * Hvis en opstartsektor for grub eller LILO bliver fundet, vil den blive "
-"erstattet\n"
-"med en ny.\n"
-"\n"
-"Hvis det ikke er mulig at afgøre dette automatisk, vil DrakX spørge dig "
-"hvor\n"
-"opstartsindlæseren skal installeres."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "Udbyder DNS 2 (valgfri)"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "Opstartsenhed"
+"Det er ikke plads for 1 MB bootstrap! Installationen vil fortsætte, men for "
+"at starte dit system op, skal du lave en bootstrap partition i DiskDrake"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Hvilken partition ønsker du at ændre størrelse på?"
+#: ../../install_steps_interactive.pm_.c:395
+msgid "No root partition found to perform an upgrade"
+msgstr "Ingen rodpartition fundet til opgradering"
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr "Fjerne, mindre øer, USA"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr "Rod-partition"
-#: ../../lang.pm:1
-#, c-format
-msgid "Djibouti"
-msgstr "Djibouti"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Et værktøj til at overvåge dine logfiler"
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr "Hvilken partition indeholder systemets rod-partition (/)?"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected on port %s"
-msgstr "Detekteret på port %s"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Grafikkort: %s\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Set som _standard"
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr "Du skal genstarte for at aktivere ændringerne i partitionstabellen"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
-msgstr "Acceptér icmp echo"
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr "Vælg partitioner der skal formateres"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
+msgstr "Led efter beskadigede blokke?"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Serien med hjul-emulering"
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr "Formaterer partitioner"
-#: ../../partition_table.pm:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "Udvidet partition ikke understøttet på denne platform"
+msgid "Creating and formatting file %s"
+msgstr "Opretter og formaterer fil %s"
-#: ../../standalone/drakboot:1
+#: ../../install_steps_interactive.pm_.c:470
#, c-format
-msgid "Splash selection"
-msgstr "Valg af opstartsskærm"
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+"Kontrol af filsystem %s mislykkedes. Ønsker du at reparere fejlene (bemærk, "
+"du kan miste data)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "ISDN konfiguration"
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Ikke nok swap-plads til at gennemføre installationen, tilføj mere"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "high"
-msgstr "høj"
+#: ../../install_steps_interactive.pm_.c:479
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Leder efter tilgængelige pakker og genopbygger rpm-database..."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Deling af internetforbindelse"
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr "Leder efter tilgængelige pakker"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Choose file"
-msgstr "Vælg fil"
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Looking at packages already installed..."
+msgstr "Leder efter pakker der allerede er installeret..."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Summary: "
-msgstr "Oversigt: "
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr "Leder efter pakker som skal opgraderes"
-#: ../../network/shorewall.pm:1
+#: ../../install_steps_interactive.pm_.c:505
#, c-format
msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
-"Advarsel! En eksisterende brandmurkonfiguration er blevet fundet. Du skal "
-"muligvis lave manuelle rettelser efter installationen."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Udskriver/Adgang til fotokort på '%s'"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
-msgstr "Dagligt sikkerhedstjek"
+"Dit system har ikke nok plads tilbage til en installation eller opgradering "
+"(%d > %d)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:541
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
msgstr ""
-"Vil du aktivere udskrift på printerne som nævnes ovenfor eller på printerne "
-"i det lokale netværk?\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer default settings"
-msgstr "Standardindstillinger for printer"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Standard PS2 mus med hjul"
+"Vælg indlæs eller gem pakkevalg på diskette.\n"
+"Formatet er det samme som for auto_install-genererede disketter."
-#: ../../standalone/harddrake2:1
-#, 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)"
-msgstr ""
-"WP-flaget i CR0-registret på cpu'en gennemtvinger skrivebeskyttelse på "
-"hukommelsessideniveauet, og derved tillade prosessoren at forhindre utjekket "
-"kerne-adgang til brugerhukommelse (dvs. dette er et værn mod fejl)"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Load from floppy"
+msgstr "Indlæs fra diskette"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Fjerner gammel printer \"%s\"..."
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr "Gem på diskette"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Select a device !"
-msgstr "Vælg en enhed!"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Loading from floppy"
+msgstr "Indlæser fra diskette"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected server"
-msgstr "Fjern valgte server"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Package selection"
+msgstr "Valg af pakker"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using dhcp) usb"
-msgstr "Sagem (der bruger dhcp) usb"
+#: ../../install_steps_interactive.pm_.c:552
+msgid "Insert a floppy containing package selection"
+msgstr "Indsæt en diskette med pakkevalget"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Southern Territories"
-msgstr "Franske sydlige territorier"
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
+msgstr "Valgt størrelse er større end tilgængelig plads"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "navnet på producenten af processoren"
+#: ../../install_steps_interactive.pm_.c:649
+msgid "Type of install"
+msgstr "Installationstype"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:650
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."
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
msgstr ""
-" - Vedligeholdelse af %s:\n"
-" \t\tFor at brugere skal kunne logge ind på systemet fra en diskløs "
-"klient, så må deres indgang i\n"
-" \t\t/etc/shadow kopieres ind i %s. drakTermServ hjælper til\n"
-" \t\tved at tilføje og slette brugere fra denne fil."
+"Du har ikke valgt nogen gruppe af pakker.\n"
+"Vælg den minimale installation du ønsker"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr "Det bør laves en backup af alle data på denne partition"
+#: ../../install_steps_interactive.pm_.c:653
+msgid "With X"
+msgstr "Med X"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "Installerer pakke %s"
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
+msgstr "Med basal dokumentation (anbefalet!)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr "Tjekker enhed og konfigurerer HPOJ..."
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Virkelig minimal installation (specielt ingen urpmi)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:741
msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
+"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 ""
-"For at du kan få flere partitioner, skal du slette én, så der kan oprettes "
-"en udvidet partition"
+"Hvis du har alle cd'erne i listen nedenunder, klik Ok.\n"
+"Hvis du ikke har nogen af disse cd'er, klik Annullér.\n"
+"Hvis kun nogen cd'er mangler, fravælg dem, og klik så Ok."
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:746
+#, c-format
+msgid "Cd-Rom labeled \"%s\""
+msgstr "Cdrom med etikette '%s'"
+
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr "Forbereder installationen"
+
+#: ../../install_steps_interactive.pm_.c:776
#, 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."
+"Installing package %s\n"
+"%d%%"
msgstr ""
-"Din printer blev konfigureret automatisk til at give dig adgang til fotokort-"
-"drevene fra din PC. Nu kan du få adgang til dine fotokort med det grafiske "
-"program 'MtoolsFM' (Menu: 'Programmer' -> 'Filværktøjer' -> 'Mtools "
-"Filadministration') eller kommandolinjeværktøjet 'mtools' (indtast 'man "
-"mtools' på kommandolinjen for mere information). Du finder kortets filsystem "
-"under drevbogstavet 'p:', eller følgende drevbogstaver hvis du har mere end "
-"én HP-printer med fotokortdrev. I 'MtoolsFM' kan du skifte mellem "
-"drevbogstaver med feltet i de øverste højre hjørner af fillisterne."
+"Installerer pakke %s\n"
+"%d%%"
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "Vælg pakker til installation"
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
+msgstr "Konfiguration efter installation"
-#: ../../install_interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:828
#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "Alle eksisterende partitioner og deres data vil gå tabt på drev %s"
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Indsæt opstartsdisketten i diskette-drevet %s"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:834
#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Dit system har ikke nok plads tilbage til en installation eller opgradering "
-"(%d > %d)"
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "Indsæt Opdater moduler-disketten i drev %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:861
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."
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates ?"
msgstr ""
-"Alle printere behøver et navn (f.eks. 'printer').\n"
-"Beskrivelsen og lokaliseringsfelterne behøver ikke \n"
-"udfyldes. De er kommentarer til brugerne."
+"Du har nu mulighed for at hente opdaterede pakker som er blevet udgivet\n"
+"efter distributionen blev gjort tilgængelig.\n"
+"\n"
+"Du vil få sikkerhedsrettelser eller fejlrettelser, men du skal have en\n"
+"internet-opkobling for at fortsætte.\n"
+"\n"
+"Ønsker du at installere opdateringerne?"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:876
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."
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-"'%s': Et klik på '%s'-knappen vil åbne vejlederen for printerkonfigurering. "
-"Kig i det tilhørende kapitel i 'Startvejledningen' for mere information om "
-"hvordan man opsætter en ny printer. Grænsefladen\n"
-"præsenteret der ligner den som bruges på installationstidspunktet."
+"Kontakter Mandrake Linux netsted for at hente listen over tilgængelige spejle"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr "Bhutan"
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
+msgstr "Vælg det spejl hvorfra pakkerne skal hentes"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "Netværksgrænsesnit"
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Kontakter spejlet for at hente listen af tilgængelige pakker"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Nedkobling fra Internet mislykkedes."
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr "Hvad er din tidszone?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
-msgstr "Læser printerdata ..."
+#: ../../install_steps_interactive.pm_.c:923
+msgid "Hardware clock set to GMT"
+msgstr "Maskin-ur sat til GMT"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "Koreansk tastatur"
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Automatisk tidssynkronisering (ved hjælp af NTP)"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Not connected"
-msgstr "Ikke tilsluttet"
+#: ../../install_steps_interactive.pm_.c:931
+msgid "NTP Server"
+msgstr "NTP-server"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "Konfiguration af Internetforbindelse"
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
+msgstr "Ekstern CUPS server"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
-msgstr "Græsk"
+#: ../../install_steps_interactive.pm_.c:966
+msgid "No printer"
+msgstr "Ingen printer"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts og Nevis"
+#: ../../install_steps_interactive.pm_.c:982
+msgid "Do you have an ISA sound card?"
+msgstr "Har du et ISA-lydkort?"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Standard 3-knaps mus med hjul-emulering"
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
+msgstr "Kør \"sndconfig\" efter installation for at konfigurere dit lydkort"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
-msgstr "Skal det være muligt at starte fra OF?"
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr "Intet lydkort genkendt. Prøv at køre \"harddrake\" efter installation"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Du kan ikke bruge JFS på partitioner mindre end 16Mb"
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
+msgstr "Oversigt"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Slet dit CDRW-medie (1. session)"
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
+msgstr "Mus"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Skærms lodrette frekvens: %s\n"
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
+msgstr "Tidszone"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "Monteringssti"
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "Printer"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"En fejl indtraf:\n"
-"%s\n"
-"Prøv at ændre nogen parametre"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
+msgstr "Internt ISDN-kort"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "TCP/IP vært \"%s\", port %s"
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
+msgstr "Lydkort"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "User :"
-msgstr "Bruger:"
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
+msgstr "TV-kort"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore system"
-msgstr "Genskab system"
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
+msgstr "LDAP"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr ""
-"Dette er maskinerne på hvilke de lokalt forbundne skannere skal gøres "
-"tilgængelige:"
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+msgid "NIS"
+msgstr "NIS"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
-msgstr "Stutnings-ip på DHCP"
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+msgid "Windows Domain"
+msgstr "Windows Domain"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Another one"
-msgstr "En anden"
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+msgid "Local files"
+msgstr "Lokale filer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr "Sæt root-adgangskode"
-#: ../../lang.pm:1
-#, c-format
-msgid "Colombia"
-msgstr "Columbia"
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr "Ingen adgangskode"
-#: ../../standalone/drakgw:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-"Nuværende konfiguration af `%s':\n"
-"\n"
-"Netværk: %s\n"
-"IP-adresse: %s\n"
-"IP-attribut: %s\n"
-"Driver: %s"
+"Denne adgangskode er for nemt at gætte (det skal mindst være på %d tegn)"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n Play"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "Identifikation"
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr "Réunion"
+#: ../../install_steps_interactive.pm_.c:1088
+msgid "Authentication LDAP"
+msgstr "Autentificering LDAP"
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "Detaljer"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
+msgstr "LDAP grundlæggende dn"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Af sikkerhedsgrunde vil det blive afbrudt nu."
+#: ../../install_steps_interactive.pm_.c:1090
+msgid "LDAP Server"
+msgstr "LDAP-server"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Synchronization tool"
-msgstr "Synkroniseringsværktøj"
+#: ../../install_steps_interactive.pm_.c:1096
+msgid "Authentication NIS"
+msgstr "Autentificering NIS"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking your system..."
-msgstr "Tjekker dit system..."
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "NIS-domæne"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print"
-msgstr "Udskriv"
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr "NIS-server"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1104
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+"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 ""
-"Indsæt båndet med volumeetiket %s\n"
-" i båndenheden %s"
+"For at dette kan virke på en W2K PDC skal du nok have administratoren til at "
+"køre: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add og genstarte serveren.\n"
+"Du skal også have et brugernavn og en adgangskode for at maskinen kan "
+"tilsluttes Windows(TM)-domænet.\n"
+"Hvis netværket ikke er aktiveret vil Drakx prøve at slutte til domænet efter "
+"trinnet med opsætning af netværk.\n"
+"Skulle denne opsætning fejle af nogen årsag, og domæneautentifikation ikke "
+"virke, så kør 'smbpasswd -j DOMAIN -U USER%PASSWORD' med dit Windows(tm) "
+"domæne og administrators brugernavn/adgangskode, efter genstart af "
+"systemet.\n"
+"Kommandoen 'wbinfo -t' vil afprøve om dine hemmelige autentifikationsdata er "
+"i orden."
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "Mongoliet"
+#: ../../install_steps_interactive.pm_.c:1106
+msgid "Authentication Windows Domain"
+msgstr "Autentifikations Windowsdomæne"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
-msgstr "Monteret\n"
+#: ../../install_steps_interactive.pm_.c:1108
+msgid "Domain Admin User Name"
+msgstr "Brugernavn for domæneadministrator"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS"
-msgstr "Konfigurér CUPS"
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
+msgstr "Adgangskode for domæneadministrator"
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Interface"
-msgstr "Grafisk grænseflade"
+#: ../../install_steps_interactive.pm_.c:1144
+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\"."
+msgstr ""
+"En tilpasset opstartsdiskette lader dig starte Linux systemet op uden at "
+"være afhængig af den normale opstarter. Det kan være nyttigt, hvis du ikke "
+"vil installere SILO på dit system - eller hvis et andet operativsystem "
+"fjerner SILO, eller hvis SILO ikke virker med dit maskinel. En tilpasset "
+"opstartsdiskette kan også bruges sammen med Mandrakes `rescue image', "
+"hvilket gør det meget nemmere at reparere systemet i tilfælde af "
+"systemnedbrud.\n"
+"\n"
+"Hvis du ønsker at lave en opstartsdiskette til dit system, indsæt en "
+"diskette i dit første diskettedrev og tryk 'Ok'."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Users"
-msgstr "Genskab brugere"
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr "Første diskette-drev"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Krypteringsnøgle for %s"
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "Andet diskette-drev"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to recover your system?"
-msgstr "Ønsker du at genskabe dit system?"
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "Spring over"
-#: ../../services.pm:1
+#: ../../install_steps_interactive.pm_.c:1167
#, 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."
+"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"
msgstr ""
-"Portmapper håndterer RPC tilslutninger, som bliver brugt af protokoller som "
-"NFS og NIS. Portmap serveren skal køre på maskiner som bruger protokoller "
-"der udnytter RPC mekanismen"
+"En tilpasset opstartsdiskette lader dig opstarte Linux systemet uden at være "
+"afhængig af den normale opstarter. Det kan være nyttigt, hvis du ikke vil "
+"installere LILO (eller grub) på dit system - eller hvis et andet "
+"operativsystem fjerner LILO, eller hvis LILO ikke virker med din hardware. "
+"En tilpasset opstartsdiskette kan også bruges sammen med Mandrakes `rescue "
+"image', hvilket gør det meget nemmere at reparere systemet i tilfælde af "
+"systemnedbrud. \n"
+"Vil du lave en opstartsdiskette til dit system?\n"
+"%s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detected hardware"
-msgstr "Fundet maskinel"
+#: ../../install_steps_interactive.pm_.c:1173
+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)."
+msgstr ""
+"\n"
+"\n"
+"(ADVARSEL! Du bruger XFS til din root-partition,\n"
+"oprettelse af en opstartsdiskette på en 1.44 Mb diskette vil formentlig\n"
+"mislykkes, fordi XFS kræver en meget stor driver)."
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr "Mauritius"
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "Der er desværre ikke noget tilgængeligt diskette-drev"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
-msgstr "Myanmar (Burmesisk)"
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr "Vælg det diskette-drev, du vil benytte til at lave boot-disketten"
-#: ../../fs.pm:1
+#: ../../install_steps_interactive.pm_.c:1189
#, c-format
-msgid "Enabling swap partition %s"
-msgstr "Formaterer swap-partition %s"
+msgid "Insert a floppy in %s"
+msgstr "Indsæt en diskette i %s"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"Der er ingen FAT-partitioner at bruge som loopback (eller ikke nok plads "
-"tilbage)"
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr "Opretter opstartsdiskette..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr "Armensk (gammel)"
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr "Forbereder opstarter..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1210
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."
+"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 to boot your machine"
msgstr ""
-"En printer med navnet \"%s\" eksisterer allerede på %s. \n"
-"Klik \"Overfør\" for at overskrive.\n"
-"Du kan også give et nyt printernavn, eller overspringe denne printer."
-
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
-msgstr "Find løsningerne på dine problemer via MandrakeSofts online-support."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", vært \"%s\", port %s"
+"Det virker som om du har en OldWorld eller ukendt maskine, yaboot "
+"opstartsindlæseren vil ikke virke for dig. Installationen vil fortsætte, men "
+"du skal bruge BootX for at starte din maskine."
-#: ../../lang.pm:1
-#, c-format
-msgid "Monaco"
-msgstr "Monaco"
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
+msgstr "Ønsker du at bruge aboot?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Partitionering mislykkedes: %s"
+#: ../../install_steps_interactive.pm_.c:1219
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Fejl ved installation af aboot, \n"
+"forsøg at gennemtvinge installation selv om dette kan ødelægge den første "
+"partition?"
-#: ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formatering af %s mislykkedes"
+#: ../../install_steps_interactive.pm_.c:1226
+msgid "Installing bootloader"
+msgstr "Installerer systemopstarter"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Canada (cable)"
-msgstr "Canada (kabel)"
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Installation af opstarter mislykkedes. Den følgende fejl opstod:"
-#: ../../standalone/drakfloppy:1
+#: ../../install_steps_interactive.pm_.c:1240
#, c-format
-msgid "Floppy creation completed"
-msgstr "Fremstilling af diskette fuldført."
+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 ""
+"Du behøver måske at ændre din Åben Firmware opstartsenhed for at slå "
+"systemstarteren til. Hvis du ikke ser systemstarter-beskeden ved genstart, "
+"så hold Command-Option-O-F nede og indtast:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+" Skriv så: shut-down\n"
+"Ved næste opstart burde du se systemstarteren."
-#: ../../help.pm:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "Upgrade"
-msgstr "Opgradér"
+msgid "Insert a blank floppy in drive %s"
+msgstr "Indsæt en tom diskette i drev %s"
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
-msgstr "Arbejdsstation"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
+msgstr "Laver autoinstallations-diskette"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1289
msgid ""
-"Installing package %s\n"
-"%d%%"
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
msgstr ""
-"Installerer pakke %s\n"
-"%d%%"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
-msgstr "Kirgisistan"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "Multi-funktions-enhed på USB"
+"Nogen dele af installationen er ikke færdig\n"
+"\n"
+"Er du sikker på du ønsker du at lukke nu?"
-#: ../../../move/move.pm:1
+#: ../../install_steps_interactive.pm_.c:1300
#, 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"
+"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"
-"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."
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-"Vi fandt ikke nogen USB-nøgle på dit system. Hvis du\n"
-"indsætter en USB-nøgle nu, vil Mandrake Move have mulighed\n"
-"for automatisk at gemme dataene fra dit hjemmekatalog og systemets\n"
-"konfiguration, for den næste opstart af denne eller en anden maskine.\n"
-"Bemærk: Hvis du indsætter en nøgle nu skal du vente nogen sekunder\n"
-"før du prøver at finde den igen.\n"
+"Tillykke, installationen er færdig.\n"
+"Fjern boot-mediet og tryk retur for at genstarte.\n"
+"\n"
+"\n"
+"For information om rettelser til denne udgivelse af Mandrake Linux, se "
+"Errata på:\n"
"\n"
"\n"
-"Du kan også fortsætte uden en USB-nøgle - du vil så stadig\n"
-"kunne bruge Mandrake Move som et normalt levende Mandrake \n"
-"operativsystem."
+"%s\n"
+"\n"
+"\n"
+"Information om konfigurering af dit system kan du finde i kapitlet om efter-"
+"installation i den Officielle Mandrake Linux Brugervejledning."
-#: ../../help.pm:1
-#, c-format
-msgid "With basic documentation"
-msgstr "Med basal dokumentation"
+#: ../../install_steps_interactive.pm_.c:1313
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr "Anacron en periodisk kommando planlægger"
+#: ../../install_steps_interactive.pm_.c:1318
+msgid "Generate auto install floppy"
+msgstr "Laver autoinstallations-diskette"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1320
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 `/'"
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
msgstr ""
-"Du skal have en rod partition. For at få dette, lav en ny partition (eller "
-"vælg en eksisterende).\n"
-"Vælg så kommandoen \"Monterings-sti\" og sæt den til `/'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "Vestlig Sahara"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Proxy skal være http://..."
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr "Sydafrika"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Skub båndet ud efter sikkerhedskopieringen"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot diskette/ISO"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Ændr printerkonfiguration"
+"Autoinstallation kan ske fuldautomatisk hvis ønsket. I så tilfælde vil den "
+"overtage hele harddisken!! (dette er beregnet til at installere på en anden "
+"maskine).\n"
+"\n"
+"Du foretrækker måske at afspille installationen igen\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
-msgstr "Vælg en partition"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
+msgstr "Automatisk"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Edit current rule"
-msgstr "Redigér aktuelle regel"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Replay"
+msgstr "Afspil igen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
-msgstr "%s"
+#: ../../install_steps_interactive.pm_.c:1328
+msgid "Save packages selection"
+msgstr "Gem pakke-valg"
-#: ../../mouse.pm:1
+#: ../../install_steps_newt.pm_.c:20
#, c-format
-msgid "Please test the mouse"
-msgstr "Test musen"
+msgid "Mandrake Linux Installation %s"
+msgstr "Mandrake Linux Installation %s"
-#: ../../fs.pm:1
-#, c-format
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
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)."
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-"Opdatér ikke inode tilgangstider på dette filsystem\n"
-"(fx for hurtigere adgang på nyhedskøen for at gøre nyhedsservere hurtigere)."
+" <Tab>/<Alt-Tab> mellem elementer | <Space> vælger | <F12> næste skærm "
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3 knapper med hjul-emulering"
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
+msgstr "kdesu mangler"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Sticky-bit"
-msgstr "Sticky-bit"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
+msgstr "konsolhjælper mangler"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other Media"
-msgstr "Andet medie"
+#: ../../interactive.pm_.c:152
+msgid "Choose a file"
+msgstr "Vælg en fil"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
+msgstr "Avanceret"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files"
-msgstr "Lav sikkerhedskopi af systemfiler"
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
+msgstr "Basal"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Sector"
-msgstr "Sektor"
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
+msgstr "<- Forrige"
-#: ../../lang.pm:1
-#, c-format
-msgid "Qatar"
-msgstr "Qatar"
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+msgid "Next"
+msgstr "Næste"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr "Dårligt valg, prøv igen\n"
-#: ../../any.pm:1
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "LDAP Base dn"
-msgstr "LDAP grundlæggende dn"
+msgid "Your choice? (default %s) "
+msgstr "Dit valg? (standard %s) "
-#: ../../install_steps_gtk.pm:1
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
-"You can't select this package as there is not enough space left to install it"
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-"Du kan ikke vælge denne pakke, da der ikke er nok plads tilbage til at "
-"installere den"
-
-#: ../../help.pm:1
-#, c-format
-msgid "generate auto-install floppy"
-msgstr "lav autoinstallations-diskette"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr "Opringningsmåde"
-
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr "Fildeling"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "Rens /tmp ved hver systemopstart"
+"Indgange som du skal udfylde:\n"
+"%s"
-#: ../../lang.pm:1
+#: ../../interactive/stdio.pm_.c:70
#, c-format
-msgid "Malawi"
-msgstr "Malawi"
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Dit valg? (0/1, standard '%s') "
-#: ../../standalone/drakTermServ:1
+#: ../../interactive/stdio.pm_.c:95
#, c-format
-msgid "local config: false"
-msgstr "Lokal konfigurering: falsk"
+msgid "Button `%s': %s"
+msgstr "Knap '%s': %s"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "System settings"
-msgstr "Systemindstillinger"
+#: ../../interactive/stdio.pm_.c:96
+msgid "Do you want to click on this button?"
+msgstr "Ønsker du at klikke på denne knap?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Vælg muse-type."
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
+msgstr " indtast 'void' for tom indgang"
-#: ../../services.pm:1
+#: ../../interactive/stdio.pm_.c:105
#, c-format
-msgid "running"
-msgstr "kører"
+msgid "Your choice? (default `%s'%s) "
+msgstr "Dit valg? (standard '%s'%s) "
-#: ../../standalone/harddrake2:1
+#: ../../interactive/stdio.pm_.c:123
#, c-format
-msgid "class of hardware device"
-msgstr "Klasse af maskinenhed"
+msgid "=> There are many things to choose from (%s).\n"
+msgstr "=> Der er mange ting at vælge imellem (%s).\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../interactive/stdio.pm_.c:126
msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
msgstr ""
-"Dette er maskinerne og netværkerne på hvilke de lokalt forbundne printere "
-"skal gøres tilgængelige:"
-
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "Storbritannien"
+"Vælg det første tal i 10-området som du ønsker at redigere,\n"
+"Eller tryk retur for at fortsætte.\n"
+"Dit valg? "
-#: ../../lang.pm:1
+#: ../../interactive/stdio.pm_.c:139
#, c-format
-msgid "Indonesia"
-msgstr "Indonesien"
+msgid ""
+"=> Notice, a label changed:\n"
+"%s"
+msgstr ""
+"=> Bemærk, en etikette ændredes:\n"
+"%s"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "standard"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
+msgstr "Indsend igen"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "France [SECAM]"
-msgstr "Frankrig [SECAM]"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "Tjekkisk (QWERTZ)"
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "begræns"
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "Tysk"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "must have"
-msgstr "skal have"
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Dvorak"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS understøtter ikke printere på Novellservere eller printere som sender "
-"dataene ind i en frit-formet kommando.\n"
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "Spansk"
-#: ../../lang.pm:1
-#, c-format
-msgid "Senegal"
-msgstr "Senegal"
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "Finsk"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Command line"
-msgstr "Kommandolinje"
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "Fransk"
-#: ../advertising/08-store.pl:1
-#, 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:"
-msgstr ""
-"Vores komplette linje af Linux-løsninger, så vel som specialtilbud på "
-"produkter og andre godbidder, kan findes på nettet i vores e-butik:"
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "Norsk"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "March"
-msgstr "Marts"
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "Polsk"
-#: ../../any.pm:1
-#, c-format
-msgid "access to administrative files"
-msgstr "adgang til administrative filer"
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "Russisk"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
-msgstr ""
-"Fejl ved sendmail.\n"
-" Din rapport blev ikke sendt.\n"
-" Konfigurér venligst sendmail"
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
+msgstr "Svensk"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Do not allow set-user-identifier or set-group-identifier\n"
-"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
-"have suidperl(1) installed.)"
-msgstr ""
-"Tillad ikke set-user-identifier eller set-group-identifier bit at tage "
-"effekt. \n"
-"(Dette ser sikkert ud, men er faktisk ret usikkert hvis du har suidperl(1) "
-"installeret)."
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "Britisk"
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
-msgstr "Montserrat"
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "Amerikansk"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Automatiske afhængigheder"
+#: ../../keyboard.pm_.c:167
+msgid "Albanian"
+msgstr "Albansk"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "Swap"
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
+msgstr "Armensk (gammel)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom settings"
-msgstr "Brugerdefinerede indstillinger"
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
+msgstr "Armensk (skrivemaskine)"
-#: ../../../move/move.pm:1
-#, 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."
-msgstr ""
-"USB-nøglen ser ud til at have skrivebeskyttelse aktiveret, men vi kan ikke\n"
-"tage den ud på en sikker måde nu.\n"
-"\n"
-"\n"
-"Klik på knappen for at genstarte maskinen, tag den ud, fjern "
-"skrivebeskyttelsen,\n"
-"sæt nøglen ind igen, og start Mandrake Move igen."
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
+msgstr "Armensk (fonetisk)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Other"
-msgstr "Genskab andet"
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
+msgstr "Azerbaidiansk (latin)"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "TV-kort"
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "Belgisk"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Printer på SMB/Windows 95/98/NT server"
+#: ../../keyboard.pm_.c:178
+msgid "Bengali"
+msgstr "Bengali"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_Konfigurér CUPS"
+#: ../../keyboard.pm_.c:179
+msgid "Bulgarian (phonetic)"
+msgstr "Bulgarsk (fonetisk)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
-msgstr ", "
+#: ../../keyboard.pm_.c:180
+msgid "Bulgarian (BDS)"
+msgstr "Bulgarsk (BDS)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
-msgstr "lspci"
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
+msgstr "Brasiliansk (ABNT-2)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Fjern valgte vært/netværk"
+#: ../../keyboard.pm_.c:184
+msgid "Bosnian"
+msgstr "Bosnisk"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix er en transport-agent for post, som bruges af programmer der flytter "
-"post fra en maskine til en anden."
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
+msgstr "Hviderussisk"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "Uzbek (kyrillisk)"
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "Schweizisk (Tysk layout)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Her kan du vælge tasten eller tastekombinationen som \n"
-"lader dig skifte mellem forskellige tastaturlayouter\n"
-"(dvs latinsk eller ikke-latinsk)."
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "Schweizisk (Fransk layout)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Hotplugging af netværk"
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "Tjekkisk (QWERTY)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr "hvis sat til ja, så rapportér kontrolresultat på tty-en."
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr "Tysk (ingen døde taster)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From CD"
-msgstr "Genskab fra cd"
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
+msgstr "Devanagari"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Du er ved at konfigurere din maskine til at dele sin internetforbindelse.\n"
-"Med denne mulighed vil andre maskiner på dit lokale netværk kunne bruge "
-"internetforbindelsen på denne maskine.\n"
-"\n"
-"Forsikr dig om at du har konfigureret din internetforbindelse med "
-"drakconnect før du går videre.\n"
-"\n"
-"Bemærk: du skal bruge en dediceret netværksadapter, for at lave et lokalt "
-"netværk (LAN)."
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "Dansk"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr ""
-"Vælg hvilken netværksadapter du ønsker at bruge til at lave forbindelse til "
-"Internettet med."
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Dvorak (US)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Adgang til fotohukommelseskort på din HP-multifunktionsenhed"
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (norsk)"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
-msgstr ""
-"Forbedr din maskines ydelse med hjælp fra en række firmaer som tilbyder "
-"professionelle løsninger til med Mandrake Linux. "
+#: ../../keyboard.pm_.c:196
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (svensk)"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
-msgstr "Forfattere: "
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "Estisk"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Deling af internetforbindelse er nu slået fra"
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Georgisk (russisk layout)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr "hvis sat til ja, så efterprøv tjeksummer på suid/sgid-filer."
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Georgisk (Latin layout)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latin American"
-msgstr "Latinamerikansk"
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "Græsk"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Printertilstand for japansk tekst"
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
+msgstr "Gujarati"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Old device file"
-msgstr "Gammel enhedsfil"
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
+msgstr "Gurmukhi"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "Info: "
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "Ungarsk"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Knap '%s': %s"
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "Kroatisk"
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Vent venligst"
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
+msgstr "Israelsk"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr "Israelsk (Fonetisk)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "None"
-msgstr "Ingen"
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr "Iransk"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Den indtastede IP er ikke korrekt.\n"
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr "Islandsk"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Forsikr dig gerne om at cron-dæmonen er med i dine tjenester."
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "Italiensk"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
-msgstr "Ethernet-kort"
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
+msgstr "Inuktitut"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete selected printer"
-msgstr "Slet valgte printer"
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
+msgstr "Japansk 106 taster"
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "Info"
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
+msgstr "Koreansk tastatur"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "Installér"
+#: ../../keyboard.pm_.c:218
+msgid "Latin American"
+msgstr "Latinamerikansk"
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Klik på '%s ->' hvis du ønsker at slette alle data og partitioner der ligger "
-"på dette diskdrev. Vær omhyggelig, efter klik på '%s ->' vil du ikke være i "
-"stand til at redde nogen data eller partitioner, der ligger på dette "
-"diskdrev, inklusive alle Windows data.\n"
-"Klik på '<- %s' for at stoppe denne handling uden at tabe nogen data og "
-"partitioner der er tilstede på dette diskdrev."
+#: ../../keyboard.pm_.c:219
+msgid "Laotian"
+msgstr "Laotisk"
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "Afslut installation"
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
+msgstr "Litauisk AZERTY (gammel)"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
-msgstr "Behøver en nøgle for at gemme dine data"
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
+msgstr "Litauisk AZERTY (ny)"
-#: ../../standalone/drakgw:1
-#, 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)."
-msgstr ""
-"Alt er blevet konfigureret.\n"
-"Du kan nu dele din internetforbindelse med andre maskiner på dit lokale "
-"netværk, ved at bruge DHCP."
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Litauisk \"talrække\" QWERTY"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Ekstern CUPS server"
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Litauisk \"fonetisk\" QWERTY"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun-mus"
+#: ../../keyboard.pm_.c:225
+msgid "Latvian"
+msgstr "Lettisk"
-#: ../../standalone/drakgw:1
-#, 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."
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
msgstr ""
-"Der er kun én konfigureret netværksadapter i dit system:\n"
-"\n"
-"%s\n"
-"\n"
-"Jeg skal til at sætte dit lokalnet på med den adapter."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
-msgstr "Cpuinfo"
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
+msgstr "Makedonisk"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Minimal install"
-msgstr "Minimal installation"
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
+msgstr "Myanmar (Burmesisk)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "Etiopien"
+#: ../../keyboard.pm_.c:229
+msgid "Mongolian (cyrillic)"
+msgstr "Mongolsk (kyrillisk)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
-msgstr "JA"
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
+msgstr "Maltesisk (UK)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
-msgstr "Aktivér 'crontab' og 'at' for brugere"
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
+msgstr "Maltesisk (US)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr "Devanagari"
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
+msgstr "Hollandsk"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- pci-enheder: dette giver PCI slottet, enheden og funktionen for dette "
-"kort\n"
-"- eide-enheder: enheden er enten en slave- eller mester-enhed\n"
-"- scsi-enheder: scsi-bussen og scsi enheds-id'er"
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
+msgstr "Polsk (polsk layout)"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Total størrelse: %d / %d Mb"
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
+msgstr "Polsk (polsk layout)"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "disabled"
-msgstr "deaktiveret"
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
+msgstr "Portugisisk"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Search for new scanners"
-msgstr "Søg efter nye skannere..."
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr "Canadisk (Québec)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Disabling servers..."
-msgstr "Slår servere fra..."
+#: ../../keyboard.pm_.c:239
+msgid "Romanian (qwertz)"
+msgstr "Russisk (qwertz)"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Installationen af %s mislykkedes. Følgende fejl opstod:"
+#: ../../keyboard.pm_.c:240
+msgid "Romanian (qwerty)"
+msgstr "Russisk (qwerty)"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr "Kan ikke opstarte mkinitrd -f /boot/initrd-%s.img %s."
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "Russisk (Yawerty)"
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"Du har valgt følgende servere: %s\n"
-"\n"
-"\n"
-"Disse servere er aktiveret som standard. De har ingen kendte "
-"sikkerhedsproblemer, men nogen nye kan blive fundet. I så tilfælde skal du "
-"opgradere så snart som mulig.\n"
-"\n"
-"\n"
-"Ønsker du virkelig at installere disse servere?\n"
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
+msgstr "Slovensk"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Netværksprinter (TCP/sokkel)"
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "Slovakisk (QWERTZ)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup User files..."
-msgstr "Sikkerhedskopiér brugerfiler..."
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "Slovakisk (QWERTY)"
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "Installér system"
+#: ../../keyboard.pm_.c:248
+msgid "Serbian (cyrillic)"
+msgstr "Serbisk (kyrillisk)"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Første DNS-server (valgfri)"
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
+msgstr "Tamil (Unicode)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr "Alternaltivt kan duangive et enhedsnavn/filnavn på inddatalinjen"
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
+msgstr "Tamil (TSCII)"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
-"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
-"symlink /etc/security/msec/server to point to\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
-"add a service if it is present in the file during the installation of\n"
-"packages."
-msgstr ""
-"Hvis SERVER_LEVEL (eller SECURE_LEVEL hvis fraværende) er større end 3\n"
-"i /etc/security/msec/security.conf, oprettes symlænken /etc/security/msec/"
-"server\n"
-"til at pege på /etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"Serveren /etc/security/msec/ bruges af 'chkconfig --add' til at bestemme\n"
-"om en tjeneste skal tilføjes hvis den er til stede i filen under "
-"installationen af pakker."
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr "Thailandsk"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "Russisk (Fonetisk)"
+#: ../../keyboard.pm_.c:254
+msgid "Tajik keyboard"
+msgstr "Tajik tastatur"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Config..."
-msgstr "Konfigurér dhcpd..."
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Tyrkisk (traditionel \"F\" model)"
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "LILO/grub-installering"
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Tyrkisk (moderne \"Q\" model)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "Israelsk"
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr "Ukrainsk"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Printer \"%s\" på server \"%s\""
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "Amerikansk (internaltionalt)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Diskette kan fjernes nu"
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vietnamesisk \"talrække\" QWERTY"
-#: ../../help.pm:1
-#, c-format
-msgid "Truly minimal install"
-msgstr "Virkeligt minimale installation"
+#: ../../keyboard.pm_.c:263
+msgid "Yugoslavian (latin)"
+msgstr "Jugoslavisk (latinsk)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "Danmark"
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
+msgstr "Højre alt-tast"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "Flytter partition..."
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
+msgstr "Begge taster samtidigt"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "(This) DHCP Server IP"
-msgstr "(Denne) DHCP-servers IP-adresse"
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
+msgstr "Kontrol- og skiftetaster samtidigt"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Test of the configuration"
-msgstr "Test konfigurationen"
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
+msgstr "CapsLock-tast"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing %s ..."
-msgstr "Installerer %s..."
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
+msgstr "Ctrl- og alt-taster samtidigt"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Hvis du fortalte installeringen at du ønskede at vælge individuelle pakker, "
-"vil den vise et træ med alle pakker opdelt i grupper og undergrupper. Under "
-"gennembladring af træet kan du udvælge hele grupper, undergrupper eller "
-"individuelle pakker.\n"
-"\n"
-"Hver gang du udvælger en pakke i træet vil en beskrivelse fremkomme til "
-"højre for at lade dig vide formålet med pakken. \n"
-"\n"
-"!! Når en server-pakke er blevet valgt, enten fordi du specielt valgte den "
-"individuelle pakke, eller fordi den var en del af en gruppe af pakker, vil "
-"du blive spurgt om at bekræfte atdu virkelig ønsker at installere disse "
-"servere. Som standard under Linux Mandrake bliver installerede servere "
-"startet op ved opstart af maskinen. Selvom de er sikre og ikke har nogen "
-"kendte problemer på udgivelsestidspunktet for distributionen, er det absolut "
-"muligt at sikkerhedshuller blev opdaget efter at denne version af Mandrake "
-"Linux blev færdiggjort. Hvis du ikke véd hvad en bestemt tjeneste vil gøre "
-"eller hvorfor den skal installeres, så klik '%s' her. Et klik med '%s' her "
-"vil installere de nævnte servere og de vil som standard blive startet "
-"automatisk under opstarten!!\n"
-"\n"
-"'%s'-valget deaktiverer advarselsdialogen, som vises hver gang "
-"installeringsprogrammet automatisk vælger en pakke for at løse et "
-"afhængighedsproblem Nogen pakker har relationer mellem hinanden så "
-"installation af en pakke kræver at nogen andre programmer skal være "
-"installeret. Installationsprogrammet kan beregne hvilke pakker der er krævet "
-"for at tilfredsstille en afhængighed for at kunne færdiggøre en installation "
-"problemfrit.\n"
-"\n"
-"Det klejne disketteikon i bunden af listen muliggør indlæsning af en "
-"pakkeliste udvalgt ved en tidligere installation. Dette er nyttigt hvis du "
-"har et antal maskiner som du ønsker at konfigurere på samme måde. Klik på "
-"denne ikon vil bede dig om at indsætte en diskette tidligere frembragt ved "
-"slutningen på en anden installation. Se råd nr to i det sidste trin for "
-"hvordan en sådan diskette kan laves."
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
+msgstr "Alt og Shift-taster samtidigt"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr "Vælg din krypteringsnøgle for filsystemet"
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
+msgstr "'Menu'-tast"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr "Venstre Windows-tast"
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
-msgstr "Botswana"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
+msgstr "Højre Windows-tast"
-#: ../../lang.pm:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid "Andorra"
-msgstr "Andorra"
+msgid "Circular mounts %s\n"
+msgstr "Cirkulære monteringer %s\n"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "(default value: %s)"
-msgstr "(Forvalgt: %s)"
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
+msgstr "Fjern de logiske delarkiver først\n"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
+#: ../../modules.pm_.c:290
+msgid ""
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-"Sæt adgangskodeforældelse til 'max' dage, og forsinkelse for ændring til "
-"'inactive'."
+"PCMCIA-understøttelse eksisterer ikke længere for 2.2-kerner. Brug en 2.4-"
+"kerne."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Alternativ testside (letter)"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
+msgstr "Du kan konfigurere hver parameter for modulet her."
-#: ../../standalone/drakgw:1
-#, c-format
-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 ""
-"Konfiguration af DHCP-server.\n"
-"\n"
-"Her kan du vælge forskellige muligheder for konfigurationen af DHCP-"
-"serveren.\n"
-"Hvis du ikke kender betydningen af en valgmulighed, så lad den blot være som "
-"den er.\n"
-"\n"
+#: ../../modules/parameters.pm_.c:18
+#, fuzzy
+msgid "modinfo is not available"
+msgstr "Intet tilgængeligt diskettedrev"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Choose an X server"
-msgstr "Vælg en X-server"
+#: ../../modules/parameters.pm_.c:50
+msgid "a number"
+msgstr "et tal"
-#: ../../../move/tree/mdk_totem:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr ""
+msgid "%d comma separated numbers"
+msgstr "%d kommaseparerede tal"
-#: ../../install_interactive.pm:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Swap-partitions størrelse i Mb: "
+msgid "%d comma separated strings"
+msgstr "%d kommaseparerede strenge"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No changes to backup!"
-msgstr "Ingen ændringer til sikkerhedskopi!"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
+msgstr "kommaseparerede tal"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "Formateret\n"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated strings"
+msgstr "kommaseparerede strenge"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Type of install"
-msgstr "Installationstype"
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun-mus"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Printer '%s' på SMB/Windows server '%s'"
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d kommaseparerede tal"
+#: ../../mouse.pm_.c:33
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Standard PS2 mus med hjul"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"rusers protokollen tillader brugere på et netværk a identificere\n"
-"hvem der er logget på andre maskiner"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Konfiguration af automatiske skridt"
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking-mus"
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "Barbados"
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
-msgstr ""
-"Ønsker du at vide mere om Åben Kildetekst-samfundet? Vær med i det frie "
-"programmels verden!"
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Vælg data for sikkerhedskopi..."
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+msgid "Microsoft Explorer"
+msgstr "Microsoft Explorer"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
-msgstr ""
-"Tilslutning mislykkedes.\n"
-"Kontrollér konfigurationen i Mandrakes kontrolcentral."
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
+msgstr "1 knap"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
-msgstr "modtaget"
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "Standard 2-knaps mus"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr ""
-"Aktiverer 'su' kun fra medlemmer af wheel-gruppen, eller tillad 'su' fra "
-"enhver bruger"
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "Hjul"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
-msgstr "/Fil/_Ny"
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "seriel"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DNS Server IP"
-msgstr "DHCP-serverens IP-adresse"
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "Standard 3-knaps mus"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range End:"
-msgstr "Slut på IP-område:"
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
-msgstr "Høj"
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Tilføj en ny printer til systemet"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr "Ingen video"
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Logitech CC Serien (seriel)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
-msgstr "dette felt beskriver enheden"
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Tilføjer printer til Star Office/OpenOffice.org/GIMP.org"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "MM Serien"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printers"
-msgstr "Lokale printere"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation image directory"
-msgstr "Katalog for installationsaftryk"
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech mus (seriel, gammel C7 type)"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "NIS-server"
+#: ../../mouse.pm_.c:68
+msgid "busmouse"
+msgstr "Busmus"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Port: %s"
-msgstr "Vært: %s"
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "2 knapper"
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "Spanien"
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "3 knapper"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
-msgstr "lokal konfig: %s"
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "ingenting"
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "Dette brugernavn eksisterer allerede"
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "Ingen mus"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
-msgstr "Vælg en fil"
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
+msgstr "Test musen"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr "Anvend"
+#: ../../mouse.pm_.c:491
+msgid "To activate the mouse,"
+msgstr "For at aktivere musen,"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Auto-detektér tilgængelige porte"
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr "FLYT PÅ HJULET!"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr "San Marino"
+#: ../../my_gtk.pm_.c:65
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Deling af internetforbindelse er slået fra"
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
+msgstr "Afslut"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Belgium"
-msgstr "Belgien"
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
+msgstr "Næste ->"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
-msgstr "Kuwait"
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "Er dette korrekt?"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "Vælg den vindueshåndtering du ønsker at benytte:"
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "Info"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
-msgstr "December"
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
+msgstr "Udvid træ"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "undergeneration af cpu'en"
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
+msgstr "Sammenfold træ"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
-msgstr "Førstegangshjælper"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr "Skift mellem flad og gruppesorteret"
-#: ../../lang.pm:1
-#, c-format
-msgid "Taiwan"
-msgstr "Taiwan"
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "brug pppoe"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "Pakistan"
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
+msgstr "brug pptp"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "vent venligst, fortolker filen: %s"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
+msgstr "brug dhcp"
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
+msgstr "Alcatel speedtouch usb"
+
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
msgstr ""
-"Der opstod en fejl, men jeg ved ikke hvordan den kan håndteres på en\n"
-"pæn måde.\n"
-"Fortsæt på eget ansvar!"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Importance: "
-msgstr "Vigtighed: "
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
+msgstr "Lav forbindelse til Internettet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:30
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."
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-"For at kunne udskrive på din Lexmark inkjet fra denne konfigurering skal du "
-"bruge inkjet printerdriverne leveret af Lexmark (http://www.lexmark.com/). "
-"Klik på 'Drivers'-knappen. Vælg så din model og derefter 'Linux' som "
-"operativsystem. Driverne kommer som RPM-pakker eller skal-skripter med "
-"interaktiv grafisk installation. Du behøver ikke lave denne konfiguration "
-"via de grafiske grænseflader. Annullér direkte efter licensaftalen. Udskriv "
-"derefter justeringssider for skrivehovedet med 'lexmarkmaintain', og justér "
-"opsætningen af justeringen af hovedet med dette program."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Permissions"
-msgstr "Rettigheder"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Navn på udbyder (f.eks. udbyder.net)"
+"Den mest almindelige måde at forbinde med ADSL er pppoe.\n"
+"Nogen forbindelser bruger pptp, og nogle få bruger DHCP.\n"
+"Hvis du ikke ved noget, vælg 'brug pppoe'"
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:166
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'."
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-"Dit system har kun få resurser. Du kan få problemer med at installere\n"
-"Mandrake Linux. Hvis dette sker, kan du prøve en tekst-baseret installation "
-"i stedet\n"
-"Dette gøres ved at trykke 'F1' ved opstart fra cdrommen, og så skrive 'text'."
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "Brug Windows partitionen til Loopback"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
-msgstr "Armensk (skrivemaskine)"
-
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection type: "
-msgstr "Type af forbindelse"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Graphical interface"
-msgstr "Grafisk grænseflade"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "Tchad"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "Indien"
-
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s med 3D hardware acceleration"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr "Slovakiet"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "Singapore"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "Cambodja"
+#: ../../network/drakfirewall.pm_.c:12
+msgid "Web Server"
+msgstr "Webserver"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Skærms vandrette frekvens: %s\n"
+#: ../../network/drakfirewall.pm_.c:17
+msgid "Domain Name Server"
+msgstr "Server for domænenavne (DNS)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr "Sti"
+#: ../../network/drakfirewall.pm_.c:32
+msgid "Mail Server"
+msgstr "Postserver"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
-msgstr "IKKE FUNDET"
+#: ../../network/drakfirewall.pm_.c:37
+msgid "POP and IMAP Server"
+msgstr "POP- og IMAP-server"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-"Her kan du angive en vilkårlig kommandolinje som jobbet skal kanaliseres ind "
-"i i stedet for at blive sendt direkte til en printer."
+#: ../../network/drakfirewall.pm_.c:111
+msgid "No network card"
+msgstr "Intet netkort"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:129
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"
+"drakfirewall configurator\n"
"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"Printsystemet (%s) vil ikke blive startet automatisk, når maskinen startes "
-"op.\n"
-"Det er muligt at den automatiske opstart blev slået fra ved ændring til et "
-"højere sikkerhedsniveau, fordi printsystemet er et muligt angrebspunkt.\n"
+"drakfirewall-konfigurator\n"
"\n"
-"Ønsker du at have den automatiske opstart af printsystemet slået til igen?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Printer %s\n"
-"Hvad ønsker du at forandre på, på denne printer?"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add host"
-msgstr "Tilføj vært"
+"Dette konfigurerer en personlig brandmur for denne Mandrake Linux-maskine.\n"
+"For en stærk dedikeret brandmurs-løsning se venligst den specialiserede "
+"MandrakeSecurity Firewall-distribution."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:135
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"
+"drakfirewall configurator\n"
"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-"Hvis du virkelig mener du véd hvilken driver der er den rette til dit kort "
-"kan du vælge én fra listen ovenfor.\n"
+"konfigurering med drakfirewall\n"
"\n"
-"Den aktuelle driver for dit %s-lydkort er \"%s\" "
+"Forsikr dig om at du har konfigureret din internetforbindelse med "
+"drakconnect før du går videre."
-#: ../../any.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr "Hvilke tjenester vil du tillade at Internettet kan koble op med?"
+
+#: ../../network/drakfirewall.pm_.c:153
msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-"Ønsker du at tillade brugere at eksportere nogle kataloger i deres "
-"hjemmekatalog?\n"
-"Tilladelse af dette vil sætte brugere i stand til simpelthen at klikke på "
-"'Fildeling' i konqueror og nautilus.\n"
+"Du kan angive diverse porte. \n"
+"Gyldige eksempler er: 139/tcp 139/udp.\n"
+"Se /etc/services for information."
-#: ../../install_steps_interactive.pm:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-"Vælg indlæs eller gem pakkevalg på diskette.\n"
-"Formatet er det samme som for auto_install-genererede disketter."
-
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "No CDROM support"
-msgstr "Radio-understøttelse:"
+"Ugyldig port angivet: %s.\n"
+"Det korrekte format er \"port/tcp\" eller \"port/udp\", \n"
+"hvor port er mellem 1 og 65535."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "China (broadcast)"
-msgstr "Kina (broadcast)"
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
+msgstr "Alt (ingen brandmur)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use quota for backup files."
-msgstr "Brug kvoter for sikkerhedskopieringsfiler"
+#: ../../network/drakfirewall.pm_.c:169
+msgid "Other ports"
+msgstr "Andre porte"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Konfigurerer printer '%s'..."
+#: ../../network/ethernet.pm_.c:37
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
+msgstr ""
+"Hvilken DHCP klient ønsker du at bruge?\n"
+"Standard er dhcp-client"
-#: ../../fs.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:88
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."
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-"Tillad ikke udførelse af nogen som helst binære på det monterede \n"
-"filsystem. Denne mulighed kan være nyttig for en server som har \n"
-"filsystemer med binære for andre arkitekturer end dets egen."
+"Der blev ikke fundet nogen ethernet netværksadapter på dit system.\n"
+"Kan ikke sætte denne forbindelsetype op."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection"
-msgstr "Internet opkobling"
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
+msgstr "Vælg netværksgrænsesnit"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:93
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
+"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
-"Indlæsning af modul %s mislykkedes.\n"
-"Ønsker du at prøve igen med andre parametre?"
+"Vælg hvilken netværksadapter du ønsker at bruge til at lave forbindelse til "
+"Internettet med."
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr "Velkommen til en verden med åben kildetekst."
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "kunne ikke finde noget netkort"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnien-Hercegovina"
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "Konfigurerer netværk"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:201
msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
-"Du skal have et rigtigt filsystem (ext2/ext3, reiserfs, xfs eller jfs) til "
-"dette monteringspunkt\n"
+"Indtast dit værtsnavn hvis du kender det.\n"
+"Nogle DHCP-servere kræver værtsnavnet for at fungere.\n"
+"Dit værtsnavn bør være et fuldt kvalificeret værtsnavn,\n"
+"fx 'minpc.mitfirma.dk'."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Du skal indtaste et værtsnavn eller en IP-adresse.\n"
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "Værtsnavn"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "Holland"
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+msgid "Network Configuration Wizard"
+msgstr "Konfigurér netværk"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Sender filer via FTP"
+#: ../../network/isdn.pm_.c:22
+msgid "External ISDN modem"
+msgstr "Eksternt ISDN modem"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
msgstr "Internt ISDN-kort"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
+msgstr "Hvad slags type er din ISDN-forbindelse?"
+
+#: ../../network/isdn.pm_.c:45
msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
msgstr ""
-"Der findes intet kendt alternativt OSS/ALSA-drivprogram for lydkortet (%s) "
-"som i øjeblikket bruger '%s'"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Title"
-msgstr "Titel"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Installér og konvertér skrifttyper"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
-msgstr "ADVARSEL"
+"Hvilken ISDN-konfigurering foretrækker du?\n"
+"\n"
+"* Den gamle konfiguration bruger isdn4net. Det har stærke\n"
+" værktøjer, men det er vanskeligt at konfigurere for en nybegynder,\n"
+" og er ikke standardbaseret.\n"
+"\n"
+"' Det nye konfigurationsværktøj er enklere at forstå,\n"
+" mere standardiseret, men med færre værktøjer.\n"
+"\n"
+"Vi anbefaler den nye konfiguration.\n"
+"\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
-msgstr "Installerer systemopstarter"
+#: ../../network/isdn.pm_.c:54
+msgid "New configuration (isdn-light)"
+msgstr "Ny konfiguration (isdn-light)"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "replay"
-msgstr "afspil igen"
+#: ../../network/isdn.pm_.c:54
+msgid "Old configuration (isdn4net)"
+msgstr "Gammel konfiguration (isdn4net)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
-msgstr "Detekteret %s"
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "ISDN konfiguration"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/isdn.pm_.c:166
msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
-"Expect er en udvidelse til skriptingsproget Tcl som tillader interaktive "
-"sessioner uden indblanding fra brugeren."
+"Vælg din udbyder.\n"
+" Hvis de ikke er i listen, vælg Ikke listet"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr "Jomfruøerne (USA)"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol"
+msgstr "Europaprotokollen"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "Fejl i sikkerhedskopien"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol (EDSS1)"
+msgstr "Protokol for Europa (EDSS1)"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/isdn.pm_.c:181
+msgid "Protocol for the rest of the world"
+msgstr "Protokol for resten af verden"
+
+#: ../../network/isdn.pm_.c:181
msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
-"Indstilling af deling af internetforbindelse er allerede gjort.\n"
-"Den er de-aktiveret for nærværende\n"
-"Hvad ønsker du at gøre?"
+"Protokol for resten af verden \n"
+" ingen D-kanal (lejet linje)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-"Indtast IP-adresse og port på værten, hvis printere du ønsker at bruge."
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
+msgstr "Hvilken protokol ønsker du at bruge?"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid "Pipe into command"
-msgstr "kanalisér ind i kommando"
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr "Fandt \"%s\" grænsesnit, ønsker du at bruge det?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Noget maskinel på din maskine skal bruge ''proprietære'' drivere for at "
-"virke.\n"
-"Du kan finde information om dem hos: %s"
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
+msgstr "Hvad slags kort har du?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "Haiti"
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
+msgstr "Det ved jeg ikke"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "Detekterer enheder..."
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"Tilpasset lader dig angive dine egne datoer og tidspunkter. De andre "
-"valgmuligheder bruger kørsels-delen i /etc/crontab"
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/isdn.pm_.c:210
msgid ""
-"Description of the fields:\n"
"\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
-"Beskrivelse af felterne:\n"
"\n"
+"Hvis du har et ISA kort burde værdiene i næste billede være rigtige.\n"
+"\n"
+"Hvis du har et PCMCIA kort skal du vide irq og io for kortet.\n"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Basic options"
-msgstr "Basale valgmuligheder"
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "Afbryd"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
-msgstr "navnet på CPU'en"
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
+msgstr "Fortsæt"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr "Acceptér falske IPv4-fejlmeddelelser."
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
+msgstr "Hvilket er dit ISDN-kort?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Opfrisker printerdata ..."
+#: ../../network/isdn.pm_.c:239
+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 ""
+"Jeg har opdaget et ISDN PCI-kort, men jeg ved ikke hvilken type. Vælg et PCI-"
+"kort i næste skærmbillede."
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr "Du skal også formatere %s"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "Ingen ISDN PCI-kort fundet. Vælg ét i næste skærmbillede."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "Vær forsigtig: denne operation er farlig."
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Angiv hvilken seriel port dit modem er forbundet til."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "Indsæt en diskette med pakkevalget"
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "Opkaldsindstillinger"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server: "
-msgstr "Server: "
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr "Navn på forbindelsen"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Alerts:"
-msgstr "Sikkerhedspåmindelser:"
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
+msgstr "Telefonnummer"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
-msgstr "Sverige"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "Brugernavn"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Brug Expect for SSH"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr "CHAP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "Polen"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Other ports"
-msgstr "Andre porte"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "Skript-baseret"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "Antal fangningsbuffere for mmap-fangning"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "Terminal-baseret"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid " - detected"
-msgstr " - detekteret"
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "Domænenavn"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr "SMBus-kontrollers"
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+msgid "First DNS Server (optional)"
+msgstr "Første DNS-server (valgfri)"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Opkoblingens tidsudløb (i sekunder)"
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+msgid "Second DNS Server (optional)"
+msgstr "Anden DNS-server (valgfri)"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/modem.pm_.c:95
msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-"Nogen af de tidlige i486DX-100-chip kan ikke altid returnere til kørende "
-"tilstand efter 'halt'-instruktionen er brugt"
-#: ../../keyboard.pm:1
+#: ../../network/modem.pm_.c:97
#, c-format
-msgid "Croatian"
-msgstr "Kroatisk"
+msgid ""
+"\"%s\" based winmodem detected, do you want to install needed software ?"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Use existing partition"
-msgstr "Brug eksisterende partition"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Do nothing"
+msgstr "Men ikke samstemmende"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Kan ikke kontakte spejl: %s"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Install rpm"
+msgstr "Installér"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Hjælp/_Om..."
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Title"
+msgstr "Tabel"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Fjern brugerkataloger før genskabning."
+#: ../../network/netconnect.pm_.c:29
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
+msgstr ""
+"\n"
+"Du kan lukke forbindelsen til Internettet eller genkonfigurere din "
+"forbindelse."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
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?"
+"\n"
+"You can reconfigure your connection."
msgstr ""
-"Du er ved at konfigurere en ekstern printer. Dette kræver en virkende "
-"netværksadgang, men dit netværk er endnu ikke konfigureret. Hvis du vil "
-"fortsætte uden en netværkskonfiguration, vil du ikke kunne bruge printeren "
-"som du konfigurerer nu. Hvordan ønsker du at fortsætte?"
+"\n"
+"Du kan genkonfigurere din forbindelse"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "Konfiguration af CUPS-printere"
+#: ../../network/netconnect.pm_.c:29
+msgid "You are currently connected to internet."
+msgstr "Du har forbindelse til Internettet nu."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr "Kunne ikke finde nogen skrifttyper i dine monterede partitioner"
+#: ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr ""
+"\n"
+"Du kan lave forbindelse til Internettet eller omkonfigurere din forbindelse."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
-msgstr "F00f-fejl"
+#: ../../network/netconnect.pm_.c:32
+msgid "You are not currently connected to Internet."
+msgstr "Du er ikke forbundet til Internettet nu."
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
+#: ../../network/netconnect.pm_.c:36
+msgid "Connect"
+msgstr "Tilslut"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Domain Name:"
-msgstr "Domænenavn:"
+#: ../../network/netconnect.pm_.c:37
+msgid "Disconnect"
+msgstr "Afbryd"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Root umask"
-msgstr "Umask for root"
+#: ../../network/netconnect.pm_.c:38
+msgid "Configure the connection"
+msgstr "Konfigurér forbindelsen"
-#: ../../any.pm:1
-#, c-format
-msgid "On Floppy"
-msgstr "På diskette"
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
+msgstr "Internetforbindelse & -konfiguration"
-#: ../../security/l10n.pm:1
+#: ../../network/netconnect.pm_.c:94
#, c-format
-msgid "Reboot by the console user"
-msgstr "Genstart af konsolbrugeren"
+msgid "We are now going to configure the %s connection."
+msgstr "Vi skal nu konfigurere opkoblingen '%s'."
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm_.c:103
#, c-format
-msgid "Restore"
-msgstr "Genskab"
+msgid ""
+"\n"
+"\n"
+"\n"
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press OK to continue."
+msgstr ""
+"\n"
+"\n"
+"\n"
+"Vi skal nu konfigurere opkoblingen '%s'.\n"
+"\n"
+"\n"
+"Tryk OK for at begynde."
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Server:"
-msgstr "Server:"
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr "Konfigurér netværk"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
+#: ../../network/netconnect.pm_.c:133
+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 ""
-"hvis sat til ja, så tjek om netværksgrænsesnittene er fuldstændigt åbne."
+"Da du er i gang med en netværksinstallation er dit netværk allerede "
+"konfigureret.\n"
+"Klik OK for at beholde din konfiguration, eller annullér for at "
+"omkonfigurere din Internet- og netværksforbindelse.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Leder efter tilgængelige pakker"
+#: ../../network/netconnect.pm_.c:157
+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 ""
+"Velkommen til Netværkskonfigurations-vejlederen\n"
+"\n"
+"Vi skal til at konfigurere din internet- eller netværksforbindelse.\n"
+"Hvis du ikke ønsker at bruge autodetektering, så fravælg afkrydsningsboksen\n"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Vent venligst, opsætter systemkonfigurationsfiler på USB-nøgle..."
+#: ../../network/netconnect.pm_.c:163
+msgid "Choose the profile to configure"
+msgstr "Vælg profilen der skal konfigureres"
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
-msgstr "Init-besked"
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
+msgstr "Brug automatisk detektion"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "Redder partitionstabel"
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
+msgstr "Eksperttilstand"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "Cypern"
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
+msgstr "Detekterer enheder..."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection complete."
-msgstr "Opkobling fuldført."
+#: ../../network/netconnect.pm_.c:214
+msgid "Normal modem connection"
+msgstr "Normal modemforbindelse"
-#: ../../diskdrake/interactive.pm:1
+#: ../../network/netconnect.pm_.c:214
#, c-format
-msgid "Remove from RAID"
-msgstr "Fjern fra RAID"
+msgid "detected on port %s"
+msgstr "Detekteret på port %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Denne krypteringsnøgle er for nem at gætte (skal mindst være på %d tegn)"
+#: ../../network/netconnect.pm_.c:215
+#, fuzzy
+msgid "Winmodem connection"
+msgstr "Normal modemforbindelse"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Vejledere til konfiguration"
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "detected"
+msgstr "Detekteret %s"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:216
msgid "ISDN connection"
msgstr "ISDN-forbindelse"
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CDROM / DVDROM"
+msgid "detected %s"
+msgstr "Detekteret %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
-msgstr "primær"
+#: ../../network/netconnect.pm_.c:217
+msgid "ADSL connection"
+msgstr "ADSL opkobling"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr " på Windows-server \"%s\", deling \"%s\""
+#: ../../network/netconnect.pm_.c:218
+msgid "Cable connection"
+msgstr "Kabelforbindelse"
-#: ../../help.pm:1
-#, 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"
-"!!"
-msgstr ""
-"Denne dialog bruges til at vælge hvilke tjenester du ønsker skal startes ved "
-"opstart af maskinen.\n"
-"\n"
-"DrakX vil præsentere alle de tjenester, som er med i den aktuelle "
-"installation. Gennemse hver enkelt omhyggeligt og vælg dem fra som ikke er "
-"nødvendige på opstartstidspunktet.\n"
-"\n"
-"En kort forklarende tekst om en tjeneste bliver vist når den vælges. Hvis du "
-"ikke er sikker på om en tjeneste er nyttig eller ej, er det dog sikrere at "
-"bruge den foreslåede opførsel.\n"
-"\n"
-"Vær specielt varsom på dette trin hvis du planlægger at bruge maskinen som "
-"server: du vil formentlig ønske ikke at starte nogensomhelst tjeneste op som "
-"du ikke har brug for. Husk at adskillige tjenester kan være farlige hvis de "
-"er aktiveret på en server. Vælg som hovedregel kun de tjenester som du "
-"virkelig behøver."
+#: ../../network/netconnect.pm_.c:218
+msgid "cable connection detected"
+msgstr "Kabelopkobling detekteret"
-#: ../../lang.pm:1
-#, c-format
-msgid "Niue"
-msgstr "Niue"
+#: ../../network/netconnect.pm_.c:219
+msgid "LAN connection"
+msgstr "Lokalnet-konfiguration"
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "Spring over"
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
+msgstr "ethernet-kort detekteret"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Aktiverer/deaktiverer alle netværks-kort som er konfigureret\n"
-"til at starte ved opstart"
+#: ../../network/netconnect.pm_.c:222
+msgid "Choose the connection you want to configure"
+msgstr "Vælg den opkobling, du ønsker at konfigurere"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/netconnect.pm_.c:246
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)"
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
-"CPU-frekvensen i MHz (Megahertz, hvilket som en første tilnærmelse kan groft "
-"regnes som antal instruktioner cpu'en kan udføre per sekund)"
+"Du har konfigureret flere måder at koble dig mod internet på.\n"
+"Venligst vælg den du ønsker at bruger.\n"
+"\n"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "important"
-msgstr "vigtigt"
+#: ../../network/netconnect.pm_.c:247
+msgid "Internet connection"
+msgstr "Internet opkobling"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "Mandrake Linux' værktøj til printeradministration"
+#: ../../network/netconnect.pm_.c:253
+msgid "Do you want to start the connection at boot?"
+msgstr "Ønsker du at starte din forbindelse ved opstart?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
-msgstr "Total fremdrift"
+#: ../../network/netconnect.pm_.c:267
+msgid "Network configuration"
+msgstr "Netværks konfiguration"
-#: ../../help.pm:1
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
+msgstr "Netværket skal startes op igen"
+
+#: ../../network/netconnect.pm_.c:272
#, 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"
+"A problem occured while restarting the network: \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."
+"%s"
msgstr ""
-"DrakX vil først finde alle IDE-enheder der er tilstede på din maskine. Den "
-"vil også lede efter en eller flere PCI SCSI-kort på dit system. Hvis et SCSI-"
-"kort findes, vil DrakX automatisk installere en driver til det.\n"
+"Et problem opstod ved genstart af netværket: \n"
"\n"
-"Da maskineleftersøgningen ikke er idiotsikker, kan DrakX fejle i at finde "
-"dine diskdrev. I så fald må du angive dit maskinel manuelt.\n"
+"%s"
+
+#: ../../network/netconnect.pm_.c:282
+msgid ""
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
"\n"
-"Hvis du måtte angive dit PCI SCSI-kort manuelt, vil DrakX spørge om du vil "
-"specificere nogle indstillingsmuligheder for den. Du bør lade DrakX spørge "
-"udstyret om opsætning af kortspecifikke indstillinger, som er nødvendige for "
-"at initialisere kortet. De fleste gange vil DrakX finde ud af dette uden "
-"problemer.\n"
+msgstr ""
+"Tillykke, netværks- og internetkonfigurationen er færdig.\n"
+"Konfigurationen vil nu blive anvendt på dit system.\n"
"\n"
-"Hvis DrakX ikke kan få oplysninger om indstillinger ud af udstyret, som skal "
-"bruges til opsætningen, skal du angive opsætningsinformation til driveren. "
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr "Aruba"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "Brugere"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Forbereder opstarter..."
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
+#: ../../network/netconnect.pm_.c:286
+msgid ""
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
-"Indtast dine brugeroplysninger, adgangskode vil blive brugt til pauseskærm"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Gateway (fx %s)"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
-msgstr "Adgangskoderne stemmer ikke overens"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Eksempler på korrekte IP'er:\n"
+"Derefter anbefaler vi at du genstarter dit X-miljø for\n"
+"at undgå problemer med det ændrede værtsnavn"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "Vælg mediet for sikkerhedskopiering."
+#: ../../network/netconnect.pm_.c:287
+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 ""
+"Problemer indtraf under konfigurationen.\n"
+"Afprøv din forbindelse med net_monitor eller mcc. Hvis din forbindelse ikke "
+"virker, kan du prøve at genstarte konfigurationen."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Frekvens (MHz)"
+#: ../../network/network.pm_.c:278
+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 ""
+"ADVARSEL: Denne enhed er tidligere blevet konfigureret til at lave "
+"forbindelse til Internettet.\n"
+"Ved kun at trykke på OK beholder du den nuværende konfiguration.\n"
+"Ændringer i felterne nedenunder vil overskrive denne konfiguration."
-#: ../../install_any.pm:1
-#, c-format
+#: ../../network/network.pm_.c:283
msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
+"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 ""
-"For at bruge dette gemte pakkevalg, start installationen op med``linux "
-"defcfg=floppy''"
+"Indtast IP konfigurationen for denne maskine. Hvert felt skal udfyldes\n"
+"med en IP adresse i `dotted-decimal' notation (for eksempel 1.2.3.4)."
-#: ../../standalone/harddrake2:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "the number of the processor"
-msgstr "nummeret på processoren"
+msgid "Configuring network device %s"
+msgstr "Konfigurerer netværksenheden %s"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../network/network.pm_.c:294
#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Maskin-ur sat til GMT"
+msgid " (driver %s)"
+msgstr " (drivprogram %s)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "Ønsker du at starte en ny konfiguration?"
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "IP-adresse"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Give a file name"
-msgstr "Giv et filnavn"
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr "Netmaske"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Angiv hvilken port din printer er forbundet til."
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "Skift cdrom"
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "Automatisk IP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "Paraguay"
+#: ../../network/network.pm_.c:299
+msgid "Start at boot"
+msgstr "Start ved opstart"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "Konfiguration er færdig, ønsker du at effektuere indstillinger?"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP adresse skal have formatet 1.2.3.4"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
+#: ../../network/network.pm_.c:326
+msgid ""
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-"Brug inkremental/forskels-backup (overskriv ikke gamle sikkerhedskopier)"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../network/network.pm_.c:330
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 ""
-" - Vedligeholdelse af /etc/dhcpd.conf:\n"
-" \t\tFor at starte klientene over netværk behøver hver klient en "
-"indgang i dhcpd.conf, som udleverer en IP-adresse\n"
-" \t\tog netværksopstart-aftryksfiler til maskinen. drakTermServ "
-"hjælper til med at lave/fjerne disse indgange.\n"
-"\t\t\t\n"
-" \t\t(PCI-kort kan undlade aftryksfilen - etherboot vil efterspørge "
-"den rigtige aftryksfil. Du bør\n"
-" \t\togså bemærke at når etherboot ser efter aftryksfilerne forventer "
-"den navne som\n"
-" \t\tboot-3c59x.nbi, fremfor boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tEt typisk dhcpd.conf-afsnit for at understøtte diskløse klienter "
-"ser sådan ud:"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
+msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr "Der findes intet kendt drivprogram for lydkortet (%s)"
+#: ../../network/network.pm_.c:350
+msgid ""
+"Please enter your host name.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''.\n"
+"You may also enter the IP address of the gateway if you have one"
+msgstr ""
+"Indtast domænenavn, værtsnavn og IP adressen for evt. ekstra navne-servere.\n"
+"Dit værtsnavn skal være et fuldt kvalificeret værtsnavn inklusive domæne,\n"
+"f.eks. minpc.mitfirma.dk. Hvis du ikke har nogen ekstra navne-servere,\n"
+"så lad navne-server-felterne være blanke."
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "force"
-msgstr "tving"
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "DNS-server"
-#: ../../diskdrake/interactive.pm:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "Exit"
-msgstr "Afslut"
+msgid "Gateway (e.g. %s)"
+msgstr "Gateway (fx %s)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
-"Bemærk: Afhængig af printermodel og udskriftssystem vil op til %d MB "
-"yderligere programmel blive installeret."
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "Gateway enhed"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Du har ingen konfigurerede grænsesnit.\n"
-"Konfigurér disse først ved at klikke på 'Konfigurér'"
+#: ../../network/network.pm_.c:363
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "Adresse på DNS-server skal have formatet 1.2.3.4"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "Estisk"
+#: ../../network/network.pm_.c:367
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Gateway-adresse skal have formatet 1.2.3.4"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr "Apache er en webserver. Den bruges til at betjene HTML-filer og CGI."
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
+msgstr "Konfiguration af mellemvært (proxy)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-"Indtast din CD-brænders enhedsnavn\n"
-" fx: 0,1,0"
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "HTTP-proxy"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ALL"
-msgstr "ALL"
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "FTP-proxy"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Tilføj/slet klienter"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
+msgstr "Følg id for netværkskort (nyttigt for bærbare)"
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Choose the network interface"
-msgstr "Vælg netværksgrænsesnit"
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
+msgstr "Proxy skal være http://..."
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown Model"
-msgstr "Ukendt model"
+#: ../../network/network.pm_.c:388
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Url burde begynde med 'ftp:' eller 'http:'"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
-msgstr "CD/DVD-brændere"
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
+msgstr "Brandmurkonfiguration fundet!"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../network/shorewall.pm_.c:27
msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
-"Partition som opstartes som standard\n"
-" (gælder kun MS-DOS-opstart, ikke LILO)\n"
+"Advarsel! En eksisterende brandmurkonfiguration er blevet fundet. Du skal "
+"muligvis lave manuelle rettelser efter installationen."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Aktivér '%s' for at læse filen"
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
+msgstr "Internet-konfiguration"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image"
-msgstr "vælg billede"
+#: ../../network/tools.pm_.c:58
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Ønsker du at forsøge at skabe forbindelse til Internettet nu?"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Brandmurkonfiguration fundet!"
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+msgid "Testing your connection..."
+msgstr "Tester din forbindelse..."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "Navn på forbindelsen"
+#: ../../network/tools.pm_.c:70
+msgid "The system is now connected to Internet."
+msgstr "Systemet er ikke forbundet til Internettet nu."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"x coordinate of text box\n"
-"in number of characters"
-msgstr "antal tegn i tekstrudens x-led"
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
+msgstr "Af sikkerhedsgrunde vil det blive afbrudt nu."
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/tools.pm_.c:72
msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-"Du kan muligvis ikke installere lilo (da lilo ikke kan håndtere en LV på "
-"flere PV'er)"
+"Det lader ikke til at dit system har forbindelse til Internettet.\n"
+"Prøv at omkonfigurere din forbindelse."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Updating package selection"
-msgstr "Opdaterer pakkevalg"
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
+msgstr "Forbindelses-konfiguration"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "Hvor ønsker du at montere loopback-filen %s?"
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
+msgstr "Udfyld eller markér feltet nedenunder"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Disketten er blevet genereret.\n"
-"Du kan nu gennemføre installationen igen."
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr "Kort IRQ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Brug CD/DVDROM til sikkerhedskopiering"
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "Kort mem (DMA)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "antal knapper som musen har"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "Kort IO"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
-msgstr "Afspil igen"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "Kort IO_0"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup other files"
-msgstr "Lav sikkerhedskopi af andre filer"
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "Kort IO_1"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "Intet tilgængeligt diskettedrev"
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
+msgstr "Dit personlige telefonnummer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Sikkerhedskopifiler er ødelagte"
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
+msgstr "Navn på udbyder (f.eks. udbyder.net)"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
-msgstr "Tv-standard:"
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
+msgstr "Udbyders telefonnummer"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr "Cpuid-familie"
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+msgid "Provider dns 1 (optional)"
+msgstr "Udbyder DNS 1 (valgfri)"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 Mb"
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+msgid "Provider dns 2 (optional)"
+msgstr "Udbyder DNS 2 (valgfri)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: thin"
-msgstr "type: tynd"
+#: ../../network/tools.pm_.c:109
+msgid "Choose your country"
+msgstr "Vælg dit land"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "Litauisk AZERTY (ny)"
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
+msgstr "Opringningsmåde"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
-"ja betyder at den aritmetiske koprocessor har tilknyttet en undtagelsesvektor"
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+msgid "Connection speed"
+msgstr "Opkoblingshastighed"
-#: ../../fsedit.pm:1
-#, c-format
-msgid ""
-"You've selected a software RAID partition as root (/).\n"
-"No bootloader is able to handle this without a /boot partition.\n"
-"Please be sure to add a /boot partition"
-msgstr ""
-"Du har valgt en programmeret RAID-partition som rod (/).\n"
-"Ingen systemopstarter kan håndtere dette uden en /boot partition.\n"
-"Vær sikker på at tilføje en /boot partition"
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+msgid "Connection timeout (in sec)"
+msgstr "Opkoblingens tidsudløb (i sekunder)"
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "Andet styresystem (MacOS...)"
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
+msgstr "Konto-login (brugernavn)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
-msgstr "For at aktivere musen,"
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
+msgstr "Adgangskode for konto"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "Bringer netværket op"
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
+msgstr "Storbritannien"
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Øjebliksbilleder vil være tilgængelige efter installation i %s"
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
+msgstr "montering mislykkedes: "
-#: ../../help.pm:1
-#, c-format
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
+msgstr "Udvidet partition ikke understøttet på denne platform"
+
+#: ../../partition_table.pm_.c:685
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:\")."
+"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 ""
-"Mere end én Microsoft Windows partition er blevet genkendt på dit diskdrev. "
-"Vælg den som du ønsker at ændre størrelse på for at kunne installere dit nye "
-"Mandrake Linux operativsystem.\n"
-"\n"
-"Hver partition er listet som følger: 'Linux navn', 'Windows navn', "
-"'Kapacitet'.\n"
-"\n"
-"'Linux navn' er kodet som følger: 'drevtype', 'drevnummer', "
-"'partitionsnummer' (for eksempel '/hda1').\n"
-"\n"
-"'drevtype' er 'hd' hvis dit diskdrev er et IDE drev, og 'sd' hvis det er et "
-"SCSI drev.\n"
-"\n"
-"'drevnummer' er altid et bogstav efter 'hd' eller 'sd'. For IDE drev:\n"
-"\n"
-" * 'a' betyder 'hoved-drev på den primære IDE controller',\n"
-"\n"
-" * 'b' betyder 'slave-drev på den primære IDE controller',\n"
-"\n"
-" * 'c' betyder 'hoved-drev på den sækundære IDE controller',\n"
-"\n"
-" * 'd' betyder 'slave-drev på den sækundære IDE controller'.\n"
-"\n"
-"For SCSI drev betyder 'a' det 'første drev', 'b' betyder det 'andet drev', "
-"osv.\n"
-"\n"
-"'Windows navn' er det bogstav som dit drev har under Windows (den første\n"
-"disk eller partition kaldes 'C:')."
+"Du har plads tilovers i din partitionstabel, men jeg kan ikke udnytte den.\n"
+"Den eneste løsning er at flytte dine primære partitioner, således at\n"
+"\"hullet\" bliver placeret ved siden af de udvidede partitioner."
-#: ../../lang.pm:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "Tanzania"
-msgstr "Tanzania"
+msgid "Restoring from file %s failed: %s"
+msgstr "Genskabning fra fil %s mislykkedes: %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "Udregner FAT-filsystemets grænser"
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
+msgstr "Fejl i sikkerhedskopien"
-#: ../../standalone/drakbackup:1
+#: ../../partition_table.pm_.c:796
#, c-format
+msgid "Error writing to file %s"
+msgstr "Fejl ved skrivning til fil %s"
+
+#: ../../partition_table/raw.pm_.c:192
msgid ""
-"\n"
-"Backup Sources: \n"
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
msgstr ""
-"\n"
-"Kilder for sikkerhedskopi: \n"
+"Noget slemt sker på dit drev. \n"
+"En test for at tjekke integriteten af data er mislykkedes. \n"
+"Dette betyder at alt på disken vil ende som tilfældigt snavs"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "custom"
-msgstr "tilpasset"
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr "skal have"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Content of the file"
-msgstr "Indhold af filen"
+#: ../../pkgs.pm_.c:27
+msgid "important"
+msgstr "vigtigt"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
-msgstr "Autentificering LDAP"
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr "meget rart"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
-msgstr "for at beholde %s"
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr "rart"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
-msgstr "Lad mig vælge hvilkensomhelst driver"
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr "måske"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
-msgstr "transmitteret"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
+msgstr "PDQ - Print, Don't Queue"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palestine"
-msgstr "Palæstina"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
+msgstr "PDQ"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
+msgstr "LPD - Line Printer Dæmon"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d kommaseparerede strenge"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
+msgstr "LPD"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " isdn"
-msgstr " isdn"
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
+msgstr "LPRng - LPR New Generation"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "Her er den komplette liste over tilgængelige tastaturer"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
+msgstr "LPRng"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Theme name"
-msgstr "Tema-navn"
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
+msgstr "CUPS - Common Unix Printing System"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/_Hjælp"
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
+msgstr "CUPS"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitrary driver"
-msgstr "Vælger en vilkårlig driver"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+msgid "Unknown Model"
+msgstr "Ukendt model"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "Cooks øer"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "Lokal printer"
-#: ../../standalone/scannerdrake:1
-#, 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."
-msgstr ""
-"Hær kan du vælge om skannere koblede til denne maskine skal gøres "
-"tilgængelige for eksterne maskiner og i så fald på hvilke eksterne maskiner."
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
+msgstr "Ekstern printer"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the width of the progress bar"
-msgstr "bredden på forløbslinjen"
+#: ../../printer/main.pm_.c:28
+msgid "Printer on remote CUPS server"
+msgstr "Printer på ekstern CUPS server"
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formaterer partition %s"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+msgid "Printer on remote lpd server"
+msgstr "Printer på ekstern lpd server"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hostname required"
-msgstr "Værtsnavn krævet"
+#: ../../printer/main.pm_.c:30
+msgid "Network printer (TCP/Socket)"
+msgstr "Netværksprinter (TCP/sokkel)"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "Fravælg installerede skrifttyper"
+#: ../../printer/main.pm_.c:31
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "Printer på SMB/Windows 95/98/NT server"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Hjul"
+#: ../../printer/main.pm_.c:32
+msgid "Printer on NetWare server"
+msgstr "Printer på en NetWare server"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit kernel version"
-msgstr "Kerne-version"
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+msgid "Enter a printer device URI"
+msgstr "Indtast en printerenheds-URI"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Cancel"
-msgstr "Annullér"
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
+msgstr "kanalisér opgave ind i kommando"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for configured scanners ..."
-msgstr "Søger efter konfigurerede skannere ..."
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
+msgstr "Ukendt model"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Videocard"
-msgstr "Videokort"
+#: ../../printer/main.pm_.c:317
+msgid "Local Printers"
+msgstr "Lokale printere"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tSikkerhedskopiering bruger tar og bzip2\n"
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+msgid "Remote Printers"
+msgstr "Eksterne printere"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid "Remove Selected"
-msgstr "Fjern valgte"
+msgid " on parallel port \\/*%s"
+msgstr " på parallelport \\/*%s"
-#: ../../standalone/harddrake2:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Auto-detektér modemmer"
+msgid ", USB printer \\/*%s"
+msgstr ", USB printer \\/*%s"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid "Remove printer"
-msgstr "Fjern printer"
+msgid ", multi-function device on parallel port \\/*%s"
+msgstr ", multi-funktions-enhed på parallel port \\/*%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Last Log"
-msgstr "Vis seneste log"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
+msgstr ", multi-funktions-enhed på USB"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "Hvilke tjenester vil du tillade at Internettet kan koble op med?"
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
+msgstr ", multi-funktions-enhed på HP JetDirect"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Connection Type"
-msgstr "Opkoblingstype"
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
+msgstr ", multi-funktions-enhed"
-#: ../../standalone/logdrake:1
+#: ../../printer/main.pm_.c:344
#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Velkommen til programmet for postkonfigurering.\n"
-"\n"
-"Her vil du kunne opsætte påmindelsessystemet\n"
+msgid ", printing to %s"
+msgstr ", skriver til %s"
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakperm:1
+#: ../../printer/main.pm_.c:346
#, c-format
-msgid "Other"
-msgstr "Andet"
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr " på LPD-server \"%s\", printer \"%s\""
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
+#: ../../printer/main.pm_.c:348
#, c-format
-msgid "Default"
-msgstr "Forvalgt"
+msgid ", TCP/IP host \"%s\", port %s"
+msgstr ", TCP/IP vært \"%s\", port %s"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid "Button 2 Emulation"
-msgstr "Emulering af knap 2"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr " på Windows-server \"%s\", deling \"%s\""
-#: ../../standalone/drakbug:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid "Please enter a package name."
-msgstr "Indtast et pakkenavn"
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr " på Novell-server \"%s\", printer \"%s\""
-#: ../../security/l10n.pm:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid "Run chkrootkit checks"
-msgstr "Kør chkrootkit-kontroller"
+msgid ", using command %s"
+msgstr ", med kommando %s"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "type1inst building"
-msgstr "opbyg type1inst"
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
+msgstr "Rå printer (ingen driver)"
-#: ../../standalone/drakfont:1
+#: ../../printer/main.pm_.c:647
#, c-format
-msgid "Abiword"
-msgstr "Abiword"
+msgid "(on %s)"
+msgstr "(på %s)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image file"
-msgstr "vælg billedfil"
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
+msgstr "(på denne maskine)"
-#: ../../Xconfig/card.pm:1
+#: ../../printer/main.pm_.c:674
#, c-format
-msgid "X server"
-msgstr "X-server"
+msgid "On CUPS server \"%s\""
+msgstr "På CUPS-server '%s'"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin User Name"
-msgstr "Brugernavn for domæneadministrator"
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
+msgstr " (Forvalgt)"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Der opstod en fejl ved skanningen efter tv-kanaler"
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
+msgstr "Vælg printer-forbindelse"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
-msgstr "Amerikansk (internaltionalt)"
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
+msgstr "Hvordan er printeren tilsluttet?"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Not installed"
-msgstr "Ikke installeret"
+#: ../../printer/printerdrake.pm_.c:30
+msgid ""
+"\n"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
+msgstr ""
+"\n"
+"Eksterne CUPS-servere behøver du ikke at konfigurere her: \n"
+"disse printere vil automatisk blive fundet."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Begge Alt-taster samtidigt"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+"Automatisk identifikation af printere (Lokal, TCP/Socket og SMB-skrivere)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "LAN connection"
-msgstr "Lokalnet-konfiguration"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+msgid "CUPS configuration"
+msgstr "CUPS-konfiguration"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/-"
-msgstr "/Fil/-"
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+msgid "Specify CUPS server"
+msgstr "Angiv CUPS server"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Italian"
-msgstr "Italiensk"
+#: ../../printer/printerdrake.pm_.c:83
+msgid ""
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
+msgstr ""
+"Du behøver ikke at konfigurere nogen printere hér for at få adgang til "
+"eksterne CUPS-servere; CUPS-serverne informerer automatisk din maskine "
+"information om deres printere. Alle printere som for øjeblikket er kendt af "
+"din maskine vil være opført under \"Eksterne printere\". Når CUPS-serveren "
+"ikke er på dit lokalnetværk skal du opgive CUPS-serverens IP-adresse og "
+"eventuelle portnummer for at få printerinformation fra serveren, ellers kan "
+"du lade disse felter være blanke."
+
+#: ../../printer/printerdrake.pm_.c:84
+msgid ""
+"\n"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
+msgstr ""
+"\n"
+"Normalt bliver CUPS konfigureret automatisk i overensstemmelse med dit "
+"netværksmiljø, så du kan få fat i printerne på CUPS-serverne på dit "
+"lokalnetværk. Hvis dette ikke virker ordentligt, så deaktivér 'Automatisk "
+"CUPS-konfiguration' og redigér din fil /etc/cups/cupsd.conf selv. Glem ikke "
+"at genstarte CUPS bagefter. (kommando: 'service cups restart')."
+
+#: ../../printer/printerdrake.pm_.c:88
+msgid "The IP address should look like 192.168.1.20"
+msgstr "IP-adressen bør se ud som 192.168.1.20"
+
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
+msgstr "Port-nummeret bør være et heltal!"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Basic"
-msgstr "Basal"
+#: ../../printer/printerdrake.pm_.c:99
+msgid "CUPS server IP"
+msgstr "CUPS-serverens IP"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
+msgstr "Port"
-#: ../../lang.pm:1
-#, c-format
-msgid "Honduras"
-msgstr "Honduras"
+#: ../../printer/printerdrake.pm_.c:102
+msgid "Automatic CUPS configuration"
+msgstr "Automatisk CUPS-konfiguration"
-#: ../../help.pm:1
-#, c-format
-msgid "pdq"
-msgstr "pdq"
+#: ../../printer/printerdrake.pm_.c:159
+msgid "Checking your system..."
+msgstr "Tjekker dit system..."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO"
-msgstr "Kort IO"
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+msgid "Printerdrake"
+msgstr "Printerdrake"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Samba server"
-msgstr "Samba-server"
+#: ../../printer/printerdrake.pm_.c:167
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+"Der blev ikke fundet nogen printere som er direkte tilsluttede til din "
+"maskine"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:179
msgid ""
+"The following printers\n"
"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
msgstr ""
+"De følgende printere\n"
"\n"
-"Denne specielle Bootstrap-\n"
-"partition er for at\n"
-"dual-boote dit system.\n"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:180
msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
+"The following printer\n"
+"\n"
msgstr ""
-"Vælg for hvert skridt om det skal være som under installationen, eller "
-"manuelt"
+"Den følgende printer\n"
+"\n"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:182
msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
+"\n"
+"and one unknown printer are "
msgstr ""
-"Du kan også her bestemme om skannere på eksterne maskiner skal gøres "
-"tilgængelige på denne maskine"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Netværk via FTP.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reports check result to tty"
-msgstr "Rapportér kontrolresultat på tty-en."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Du skal indtaste en enhed eller et filnavn!"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Quit"
-msgstr "/_Afslut"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Grafik-hukommelse: %s kb\n"
+"\n"
+"og en ukendt printer er "
-#: ../../standalone.pm:1
+#: ../../printer/printerdrake.pm_.c:184
#, 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"
+"and %d unknown printers are "
msgstr ""
-"Dette program er gratis programmel; du kan redistribuere det og/eller ændre\n"
-"det i henhold til betingelserne i GNU General Public License, som publiceret "
-"af\n"
-"Free Software Foundation; enten version 2, eller enhver senere udgave\n"
-"af licensen.\n"
-"\n"
-"Dette program er udgivet i håb om at det vil være anvendeligt, men\n"
-"UDEN NOGEN FORM FOR GARANTI; heller ikke garanti om\n"
-"SALGBARHED eller EGNETHED TIL ET BESTEMT FORMÅL. Se GNU\n"
-"General Public License for flere detaljer.\n"
"\n"
-"Du skulle have modtaget en kopi af GNU General Public License\n"
-"sammen med dette program; hvis ikke, skriv til Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n"
-"USA.\n"
+"og %d ukendte printere er "
-#: ../../any.pm:1
-#, c-format
-msgid "access to compilation tools"
-msgstr "adgang til oversættelsesværktøjer"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"are "
+msgstr ""
+"\n"
+"er "
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Global statistics"
-msgstr "Overordnet statistik"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"is "
+msgstr ""
+"\n"
+"er "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Udvælg de data du vil genskabe..."
+#: ../../printer/printerdrake.pm_.c:189
+msgid "directly connected to your system"
+msgstr "direkte forbundet til dit system"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:192
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"
+"\n"
+"There is one unknown printer directly connected to your system"
msgstr ""
-"Hvis du planlægger at bruge Yaboot, skal du huske at efterlade fri plads på\n"
-"begyndelsen af disken (2048 sektorer skulle være nok)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Standard test page"
-msgstr "Standard testside"
+"\n"
+"Der findes en ukendt printer direkte tilsluttet til dit system"
-#: ../../standalone/drakclock:1
+#: ../../printer/printerdrake.pm_.c:194
#, c-format
-msgid "Time Zone"
-msgstr "Tidszone"
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+"\n"
+"Der findes %d ukendte printere direkte tilsluttet til dit system"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create"
-msgstr "Opret"
+#: ../../printer/printerdrake.pm_.c:200
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr " (Forsikr dig om at alle dine printere er tilsluttede og tændte).\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "What"
-msgstr "Hvad"
+#: ../../printer/printerdrake.pm_.c:214
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+"Vil du aktivere udskrift på printerne som nævnes ovenfor eller på printerne "
+"i det lokale netværk?\n"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Der opstod en fejl ved sorteringen af pakkerne:"
+#: ../../printer/printerdrake.pm_.c:215
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Vil du aktivere udskrift på printerne i det lokale netværk?\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "Bulgarsk (BDS)"
+#: ../../printer/printerdrake.pm_.c:217
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Vil du aktivere udskrift på printerne som nævnes ovenfor?\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Server"
-msgstr "Deaktivér server"
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr "Er du sikker på at du vil opsætte udskrift på denne maskine?\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:219
#, c-format
-msgid "Filesystem encryption key"
-msgstr "Krypteringsnøgle for filsystem"
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+"Bemærk: Afhængig af printermodel og udskriftssystem vil op til %d MB "
+"yderligere programmel blive installeret."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
-msgstr "Gujarati"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+msgid "Add a new printer"
+msgstr "Tilføj en ny printer"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:259
msgid ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by drakTermServ. Clients can "
-"either be 'thin'\n"
-" or 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, %s is\n"
-" written for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-" modified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-" using xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-" subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by drakTermServ. "
-"Clients can either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-msgstr ""
-"\t\t\tMens du kan bruge en pøl af IP-adresser, fremfor at opsætte en "
-"specifik opsætningsindgang for\n"
-"\t\t\ten klientmaskine, vil brug af faste adresser lette\n"
-"brugen\n"
-"\t\t\taf klientspecifikke konfigurationsfiler som ClusterNFS tilbyder.\n"
-"\t\t\t\n"
-"\t\t\tBemærk: \"#type\"-indgangen er kun brugt af drakTermServ. Klienter "
-"kan enten være 'tynde'\n"
-"\t\t\teller 'tykke'. Tynde klienter kører størsteparten af programmellet "
-"via xdmcp, mens tykke klienter kører størsteparten\n"
-"af programmellet på klientmaskinen. En speciel inttab, %s bliver\n"
-"\t\t\tskrevet for tynde klienter. Systemkonfigurationsfilerne xdm-config, "
-"kdmrc, og gdm.conf bliver ændrede hvis tynde klienter bliver brugt, for at "
-"aktivere xdmcp. Idet der er sikkerhedsproblematikker omkring brugen af "
-"xdmcp, så bliver hosts.deny og hosts.allow ændret for at begrænse adgangen "
-"til det lokale subnet.\n"
-"Bemærk: Indgangen '#hdw_config' bruges også kun af drakTermServ. \n"
-"\t\t\tKlienter kan enten være 'true' eller 'false'. 'true' aktiverer root-"
-"logind på \n"
-"\t\t\tklientmaskinen og tillader lokal udstyrskonfiguration af lyd, mus og "
-"X \n"
-"\t\t\tmed brug af 'drak'-værktøjer. Dette aktiveres ved oprettelse af "
-"separate \n"
-"\t\t\tkonfigureringsfiler tilknyttet klientens IP-adresse og oprettelse af \n"
-"\t\t\tmonteringspunkter med skriveadgang for at tillade klienten at ændre "
-"filen. \n"
-"\t\t\tNår du er tilfreds med konfigurationen kan du fjerne root-"
-"rettighederne \n"
-"\t\t\tfra klienterne.\n"
-"\n"
-"Bemærk: Du skal stoppe/starte serveren efter at have tilføjet eller ændret "
-"klienter."
-
-#: ../../interactive/stdio.pm:1
-#, 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? "
+"\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 ""
-"Vælg det første tal i 10-området som du ønsker at redigere,\n"
-"Eller tryk retur for at fortsætte.\n"
-"Dit valg? "
+"\n"
+"Velkommen til vejlederen for printeropsætning\n"
+"\n"
+"Denne vejleder lader dig installere lokale eller eksterne printere som skal "
+"bruges fra denne maskine, og også fra andre maskiner i netværket.\n"
+"\n"
+"Den spørger dig om alle nødvendige oplysninger til at opsætte printere og "
+"giver dig adgang til alle tilgængelige printerdrivere, drivermuligheder og "
+"opkoblingstyper for printere."
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:272
msgid ""
"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\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"
+"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) and you 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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
"\n"
-"Ophavsret © 2002 MandrakeSoft\n"
-"Stew Benedict sbenedict@mandrakesoft.com\n"
+"Velkommen til guiden for printerinstallation\n"
"\n"
+"Denne guide lader dig installere printere sluttet til denne maskine, direkte "
+"til netværket eller til en ekstern Windows-maskine.\n"
+"\n"
+"Hvis du har printere sluttet til denne maskine, så tilslut og tænd dem nu så "
+"de kan identificeres automatisk. Netværksprinterne og Windows-maskinerne "
+"skal også være tilsluttede og tændte.\n"
+"\n"
+"Bemærk at det tager længere tid at identificere netværksprintere end at "
+"identificere lokalt tilsluttede printere. Så deaktivér autoidentifikation af "
+"netværksprintere og/eller printere sluttede til Windows-maskiner hvis du "
+"ikke har brug for dette.\n"
+"\n"
+"Klik på \"Næste\" når du er klar og på \"Annullér\" hvis du ikke vil "
+"installere printere nu."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Save theme"
-msgstr "gem temaer"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "Brasilien"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install"
-msgstr "Autoinstallation"
-
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration Wizard"
-msgstr "Konfigurér netværk"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
-msgstr "Automontering af flytbare medier"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Printing"
-msgstr "Printning"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save:"
-msgstr "Indtast kataloget der skal gemmes:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
msgid ""
-"There are no printers found which are directly connected to your machine"
+"\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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Der blev ikke fundet nogen printere som er direkte tilsluttede til din "
-"maskine"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "Opret en ny partition"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Driver:"
-msgstr "Drivprogram:"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
-msgstr "ukendt"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "Brug fdisk"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "FLYT PÅ HJULET!"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "sent: "
-msgstr "sendt: "
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "Automatisk IP"
+"\n"
+"Velkommen til guiden for printerinstallation\n"
+"\n"
+"Denne guide lader dig installere printere sluttet til denne maskine.\n"
+"\n"
+"Hvis du har printere sluttet til denne maskine, så tilslut og tænd dem nu så "
+"de kan identificeres automatisk.\n"
+"\n"
+"Klik på \"Næste\" når du er klar og på \"Annullér\" hvis du ikke vil "
+"installere printere nu."
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:289
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"
+"Welcome to the Printer Setup Wizard\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"
+"This wizard will help you to install your printer(s) connected to this "
+"computer or connected directly to the network.\n"
"\n"
-" Note that two different options are available after clicking the button:\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"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\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"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
"\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"
+"Velkommen til guiden for printerinstallation\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"
+"Denne guide lader dig installere printere sluttet til denne maskine eller "
+"direkte til netværket.\n"
"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"Værsgo'. Installationen en nu færdig og dit GNU/Linux-system er nu klar til "
-"brug. Klik bare '%s' for at genstarte systemet. Den første ting, som du "
-"burde se, efter din maskine har lavet sine test af maskinel, er "
-"opstartsmenuen, som giver dig valg af det operativsystem der skal startes.\n"
+"Hvis du har printere sluttet til denne maskine, så tilslut og tænd dem nu så "
+"de kan identificeres automatisk. Netværksprinterne skal også være "
+"tilsluttede og tændte.\n"
"\n"
-"'%s'-knappen viser to ekstra knapper for at:\n"
+"Bemærk at det tager længere tid at identificere netværksprintere end at "
+"identificere lokalt tilsluttede printere. Så deaktivér autoidentifikation af "
+"netværksprintere hvis du ikke har brug for dette.\n"
"\n"
-" * '%s': for at oprette en installerings- diskette, som automatisk vil "
-"udføre en hel installation uden hjælp fra en operatør, magen til den "
-"installation du lige har konfigureret.\n"
+"Klik på \"Næste\" når du er klar og på \"Annullér\" hvis du ikke vil "
+"installere printere nu."
+
+#: ../../printer/printerdrake.pm_.c:307
+msgid "Auto-detect printers connected to this machine"
+msgstr "Auto-opdagelse af printere tilsluttet denne maskine"
+
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
+msgstr "Auto-opdagelse af printere tilsluttet direkte til det lokale netværk"
+
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+"Auto-opdagelse af printere tilsluttet maskiner der køre Microsoft Windows"
+
+#: ../../printer/printerdrake.pm_.c:329
+msgid ""
"\n"
-" Bemærk at to forskellige muligheder er tilstede efter klik på knappen:\n"
+"Congratulations, your printer is now installed and configured!\n"
"\n"
-" * '%s': Dette er en delvist automatiseret installering. "
-"Partitioneringstrinnet er den eneste interaktive procedure.\n"
+"You can print using the \"Print\" command of your application (usually in "
+"the \"File\" menu).\n"
"\n"
-" * '%s': Fuldautomatisk installering: harddisken bliver fuldstændig "
-"genoverskrevet, alle data forsvinder.\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 ""
"\n"
-" Denne facilitet er meget nyttig ved installering af et antal lignende "
-"maskiner. Se afsnittet om autoinstallering på vores websted for yderligere "
-"oplysninger.\n"
+"Tillykke, din printer er nu installeret og konfigureret!\n"
"\n"
-" * '%s'(*): Gemmer en liste med pakkevalget. For at bruge dette pakkevalg i "
-"en anden installation kan disketten indsættes i drevet og installeringen kan "
-"startes. Brug [F1]-tasten på opstartsskærmen og indtast >>linux defcfg="
-"\"floppy\"<<.\n"
+"Du kan udskrive med 'Udskriv'-kommandoen i dit program (normalt i 'Filer'-"
+"menuen).\n"
"\n"
-"(*) Du skal have en diskette formateret til FAT (denne oprettes i GNU/Linux "
-"ved at skive \"mformat a:\")"
+"Hvis du ønsker at tilføje, fjerne eller omdøbe en printer, eller hvis du "
+"ønsker at ændre på standard-indstillingerne (papirbakke, printkvalitet ...), "
+"så vælg 'Printer' i 'Udstyr'-afsnittet i Mandrake Kontrolcentret."
-#: ../../lang.pm:1
-#, c-format
-msgid "Moldova"
-msgstr "Moldova"
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Printer auto-detection"
+msgstr "Auto-opdagelse af printere"
-#: ../../mouse.pm:1
+#: ../../printer/printerdrake.pm_.c:385
#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking-mus"
+msgid ", network printer \"%s\", port %s"
+msgstr ", netværksprinter \"%s\", port %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:387
#, c-format
-msgid "Configuration of a remote printer"
-msgstr "Konfiguration af en ekstern printer"
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr ", printer \"%s\" på SMB/Windows-server \"%s\""
-#: ../advertising/13-mdkexpert_corporate.pl:1
+#: ../../printer/printerdrake.pm_.c:391
#, c-format
-msgid "An online platform to respond to enterprise support needs."
-msgstr "En platform på nettet som tilgodesér firmaers specifikke supportbehov."
+msgid "Detected %s"
+msgstr "Fandt %s"
-#: ../../network/network.pm:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "Url burde begynde med 'ftp:' eller 'http:'"
+msgid "Printer on parallel port \\/*%s"
+msgstr "Printer på parallel port \\/*%s"
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "Oriya"
-msgstr "Oriya"
+msgid "USB printer \\/*%s"
+msgstr "USB-printer \\/*%s"
-#: ../../standalone/drakperm:1
+#: ../../printer/printerdrake.pm_.c:399
#, c-format
-msgid "Add a new rule at the end"
-msgstr "Tilføj en ny regel i slutningen"
+msgid "Network printer \"%s\", port %s"
+msgstr "Netværksprinter '%s', port %s"
-#: ../../standalone/drakboot:1
+#: ../../printer/printerdrake.pm_.c:401
#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr "Problemfri installation af temaer for LiLo- og opstartsskærm"
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Printer '%s' på SMB/Windows server '%s'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-"Du kan også bestemme her om dine printere på eksterne maskiner bør være "
-"automatisk tilgængelige på denne maskine."
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+msgid "Local Printer"
+msgstr "Lokal printer"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:526
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''"
+"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 ""
-"Du kan nu sætte parametre til modulet %s.\n"
-"Parametrene er i formatet ``navn=værdi navn2=værdi2 ...''.\n"
-"F.eks., ``io=0x300 irq=7''"
+"Ingen lokal printer fundet! For at installere en printer i hånden skal du "
+"indtaste et enhedsnavn/filnavn i inddatalinjen (parallelporte: /dev/lp0, /"
+"dev/lp1 ..., svarende til LPT1:, LPT2: ..., første USB-printer: /dev/usb/"
+"lp0, 2. USB-printer: /dev/usb/lp1 ...)."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "Afslut uden at skrive partitionstabellen?"
+#: ../../printer/printerdrake.pm_.c:530
+msgid "You must enter a device or file name!"
+msgstr "Du skal indtaste en enhed eller et filnavn!"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
+#: ../../printer/printerdrake.pm_.c:539
+msgid "No printer found!"
+msgstr "Ingen printer fundet!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Hard Drive"
-msgstr "på diskdrev"
+#: ../../printer/printerdrake.pm_.c:548
+msgid "Available printers"
+msgstr "Tilgængelige printer"
-#: ../../standalone.pm:1
-#, c-format
-msgid "Installing packages..."
-msgstr "Installerer pakker..."
+#: ../../printer/printerdrake.pm_.c:552
+msgid ""
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
+msgstr ""
+"Den følgende printer blev opdaget automatisk. Hvis det ikke er den du ønsker "
+"at opsætte så indtast et enhedsnavn/filnavn på inddatalinjen"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dutch"
-msgstr "Hollandsk"
+#: ../../printer/printerdrake.pm_.c:553
+msgid ""
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
+msgstr ""
+"Her er en liste over alle automatisk opdagede printere. Vælg den printer du "
+"ønsker at opsætte eller indtast et enhedsnavn/filnavn på inddatalinjen"
-#: ../../lang.pm:1
-#, c-format
-msgid "Angola"
-msgstr "Angola"
+#: ../../printer/printerdrake.pm_.c:555
+msgid ""
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
+msgstr ""
+"Den følgende printer blev opdaget automatisk. Konfigurationen af printeren "
+"vil ske fuldstændigt automatisk. Hvis din printer ikke blev fundet korrekt "
+"eller hvis du foretrækker en tilpasset printerkonfiguration, så slå 'Manuel "
+"konfiguration' til."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "De følgende pakker behøver at blive installeret\n"
+#: ../../printer/printerdrake.pm_.c:556
+msgid ""
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
+msgstr ""
+"Her er en liste over alle automatisk opdagede printere. Vælg den printer du "
+"ønsker at opsætte. Konfigurationen af printeren vil ske fuldstændigt "
+"automatisk. Hvis din printer ikke blev fundet korrekt eller hvis du "
+"foretrækker en tilpasset printerkonfiguration, så slå 'Manuel konfiguration' "
+"til."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "service setting"
-msgstr "opsætning af tjenester"
+#: ../../printer/printerdrake.pm_.c:558
+msgid ""
+"Please choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
+msgstr ""
+"Angiv hvilken port din printer er forbundet til eller indtast et enhedsnavn/"
+"filnavn på inddatalinjen"
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "Tilpasset"
+#: ../../printer/printerdrake.pm_.c:559
+msgid "Please choose the port where your printer is connected to."
+msgstr "Angiv hvilken port din printer er forbundet til."
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
-msgstr "Letland"
+#: ../../printer/printerdrake.pm_.c:561
+msgid ""
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+msgstr ""
+"(parallelporte: /dev/lp0, /dev/lp1 ..., svarende til LPT1:, LPT2: ..., "
+"første USB-printer: /dev/usb/lp0, 2. USB-printer: /dev/usb/lp1 ...)."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr "Filen er allerede brugt af en anden loopback, vælg en anden fil"
+#: ../../printer/printerdrake.pm_.c:565
+msgid "You must choose/enter a printer/device!"
+msgstr "Du skal vælge eller indtaste en printer/enhed!"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr "Skrivebeskyttet"
+#: ../../printer/printerdrake.pm_.c:584
+msgid "Manual configuration"
+msgstr "Manuel konfiguration"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
+msgstr "Parametre til ekstern lpd"
+
+#: ../../printer/printerdrake.pm_.c:634
msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
-"Aktivér/deaktivér beskyttelse mod spoofning af navneopslag. Hvis\n"
-"'alert' er sand rapporteres også til syslog."
+"For at bruge en ekstern printer, skal du opgive værtsnavnet\n"
+"for printerserveren og navnet på printeren på denne server."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
-msgstr "Ingen kendt driverrutine"
+#: ../../printer/printerdrake.pm_.c:635
+msgid "Remote host name"
+msgstr "Eksternt værtsnavn"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "1 Mb"
+#: ../../printer/printerdrake.pm_.c:636
+msgid "Remote printer name"
+msgstr "Eksternt printernavn"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
-"Hvis det ikke er den du ønsker at opsætte så indtast et enhedsnavn/filnavn "
-"på inddatalinjen"
+#: ../../printer/printerdrake.pm_.c:639
+msgid "Remote host name missing!"
+msgstr "Eksternt værtsnavn mangler"
+
+#: ../../printer/printerdrake.pm_.c:643
+msgid "Remote printer name missing!"
+msgstr "Det eksterne værtsnavn mangler!"
-#: ../../standalone/draksound:1
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
#, 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"
-msgstr ""
-"Intet lydkort blev genkendt på din maskine. Tjek venligst at et lydkort der "
-"understøttes af Linux er korrekt isat.\n"
-"\n"
-"\n"
-"Du kan besøge vores database over udstyr på:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+msgid "Detected model: %s %s"
+msgstr "Fandt model: %s %s"
-#: ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Scanning network..."
+msgstr "Skanner netværk ..."
+
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Konfigurér lokalnetværk..."
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ", printer \"%s\" på server \"%s\""
-#: ../../../move/move.pm:1
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
#, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Printer \"%s\" på server \"%s\""
+
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "SMB (Windows 9x/NT)-printer indstillinger"
+
+#: ../../printer/printerdrake.pm_.c:796
msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
+"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 ""
-"USB-nøglen ser ud til at have skrivebeskyttelse aktiveret. Tag den ud, \n"
-"fjern skrivebeskyttelsen, og sæt den ind igen,"
+"For at skrive til en SMB printer skal du angive værtsnavnet på SMB maskinen "
+"(bemærk at dette navn kan være forskelligt fra TCP/IP-navnet!) og muligvis "
+"IP-adressen på printerserveren, så vel som delenavnet for printeren du vil "
+"bruge samt nødvendig information om brugernavn, adgangskode og arbejdsgruppe."
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr "Start lydsystemet på din maskine"
+#: ../../printer/printerdrake.pm_.c:797
+msgid ""
+" If the desired printer was auto-detected, simply choose it from the list "
+"and then add user name, password, and/or workgroup if needed."
+msgstr ""
+" Hvis den ønskede printer blev fundet, så vælg den fra listen og tilføj "
+"dernæst brugernavn, adgangskode og/eller arbejdsgruppe om nødvendigt."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
-msgstr "Efterprøv tjeksummer på suid/sgid-filer"
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
+msgstr "SMB-servervært"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run some checks against the rpm database"
-msgstr "Kør nogle tjek på rpm-databasen"
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr "SMB-serverens IP"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Execute"
-msgstr "Udfør"
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr "Dele-navn"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Forbereder printerdatabase: ..."
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "Arbejdsgruppe"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Information"
-msgstr "Informationer"
+#: ../../printer/printerdrake.pm_.c:806
+msgid "Auto-detected"
+msgstr "Auto-detekteret"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "No network card"
-msgstr "Intet netkort"
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
+msgstr "Enten servernavnet eller serverens IP skal angives!"
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "3 knapper"
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
+msgstr "Samba-delenavn mangler!"
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Which filesystem do you want?"
-msgstr "Hvilket filsystem ønsker du at bruge?"
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
+msgstr "SIKKERHEDSADVARSEL!"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:827
#, c-format
-msgid "Malta"
-msgstr "Malta"
+msgid ""
+"You are about to set up printing to a Windows account with password. Due to "
+"a fault in the architecture of the Samba client software the password is put "
+"in clear text into the command line of the Samba client used to transmit the "
+"print job to the Windows server. So it is possible for every user on this "
+"machine to display the password on the screen by issuing commands as \"ps "
+"auxwww\".\n"
+"\n"
+"We recommend to make use of one of the following alternatives (in all cases "
+"you have to make sure that only machines from your local network have access "
+"to your Windows server, for example by means of a firewall):\n"
+"\n"
+"Use a password-less account on your Windows server, as the \"GUEST\" account "
+"or a special account dedicated for printing. Do not remove the password "
+"protection from a personal account or the administrator account.\n"
+"\n"
+"Set up your Windows server to make the printer available under the LPD "
+"protocol. Then set up printing from this machine with the \"%s\" connection "
+"type in Printerdrake.\n"
+"\n"
+msgstr ""
+"Du er ved at opsætte udskrivning til en Windows-konto med adgangskode. "
+"Grundet en fejl i arkitekturen af Sambas klientprogrammel bliver "
+"adgangskoden lagt i klar tekst i Samba-klientens kommandolinje, som bruges "
+"til at sende printjobbet til Windows-serveren. Så det er muligt for enhver "
+"bruger på denne maskine at vise adgangskoden på skærmen ved at angive "
+"kommandoer som 'ps auxwww'.\n"
+"\n"
+"Vi anbefaler at bruge en af de følgende alternativer (i alle tilfælde skal "
+"du forsikre dig om at kun maskiner fra dit lokalnetværk har adgang til din "
+"Windows-server, for eksempel ved hjælp af en brandmur):\n"
+"\n"
+"Brug en konto uden adgangskode på din Windows-server, såsom 'GUEST'-kontoen "
+"eller en speciel konto som kun anvendes til udskrift. Fjern ikke "
+"adgangskodebeskyttelsen fra en personlig konto eller en administrator-"
+"konto.\n"
+"\n"
+"Opsæt din Windows-server så printeren er tilgængelig under LPD-protokollen. "
+"Opsæt dernæst udskrift fra denne maskine med '%s'-opkoblingstypen i "
+"Printerdrake.\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
-msgid "Detailed information"
-msgstr "Detaljeret information"
+msgid ""
+"Set up your Windows server to make the printer available under the IPP "
+"protocol and set up printing from this machine with the \"%s\" connection "
+"type in Printerdrake.\n"
+"\n"
+msgstr ""
+"Opsæt din Windows-server til at gøre printeren tilgængelig under IPP-"
+"protokollen, og opsæt udskrift fra denne maskine med '%s'-opkoblingstypen i "
+"Printerdrake.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:840
msgid ""
-"Printer default settings\n"
+"Connect your printer to a Linux server and let your Windows machine(s) "
+"connect to it as a client.\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."
+"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-"Standardprinterens indstillinger\n"
+"Forbind din printer til en Linux-server og lad dine Windows-maskiner "
+"tilslutte sig til den som klienter.\n"
"\n"
-"Du bør tjekke at sidestørrelsen og blæktypen/udskriftstilstanden (hvis til "
-"stede) og også konfigurationen af laserprinterudstyr (hukommelse, duplex-"
-"enhed, ekstra bakker) er sat rigtigt. Bemærk at en meget god "
-"udskriftskvalitet kan gøre udskriften betydeligt langsommere."
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
-msgstr "Denne diskette er ikke formatteret til FAT"
+"Ønsker du virkelig at fortsætte med at opsætte din printer som du gør nu?"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "Konfigurerer netværk"
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
+msgstr "NetWare printer-parametre"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:912
msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
+"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 ""
-"Denne valgmulighed vil gemme filer som er blevet ændret. Den nøjagtige "
-"opførsel afhænger af om inkremental eller differentiel tilstand er valgt."
+"For at skrive til en NetWare printer skal du angive navnet på NetWare "
+"printerserveren (bemærk at dette navn kan være forskelligt fra TCP/IP-"
+"navnet!) såvel som kønavnet for den printer du vil benytte samt om "
+"nødvendigt et brugernavn og en adgangskode."
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Graphic Card"
-msgstr "Grafikkort"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr "Printer-server"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing Windows partition"
-msgstr "Udregner Windows-filsystemets grænser"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
+msgstr "Printerkø-navn"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "Cameroun"
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
+msgstr "NCP-servernavn mangler!"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "Udbyder DNS 1 (valgfri)"
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
+msgstr "NCP-kønavn mangler!"
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Du kan nu partitionere %s.\n"
-"Når du er færdig, så husk at gemme med 'w'"
+msgid ", host \"%s\", port %s"
+msgstr ", vært \"%s\", port %s"
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
-msgid "Saami (swedish/finnish)"
-msgstr "Samisk (svensk/finsk)"
+msgid "Host \"%s\", port %s"
+msgstr "Vært \"%s\", port %s"
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Close"
-msgstr "Luk"
+#: ../../printer/printerdrake.pm_.c:1030
+msgid "TCP/Socket Printer Options"
+msgstr "TCP/Sokkel-printer-parametre"
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1032
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."
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-"'%s': Tjek det aktuelle valg af land. Hvis du ikke er i dette land, så klik "
-"på '%s'-knappen og vælg et andet. Hvis dit land ikke er på den første liste "
-"der vistes, så klik på '%s'-knappen for at få den komplette liste over lande."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Calendar"
-msgstr "Kalender"
+"Vælg en af de fundne printere fra listen eller angiv værtsnavnet eller IP-"
+"adressen og eventuelt portnummer (standard er 9100) i indtastningsfelterne."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1033
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+"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 ""
-"Genskab valgt\n"
-"katalogpost"
+"For at skrive til en TCP eller sokkel-printer skal du angive værtsnavnet "
+"eller IP-adressen på printeren, og eventuelt portnummer (standard er 9100). "
+"På HP JetDirect-servere er portnummeret normalt 9100, på andre servere "
+"varierer det. Tjek manualen for dit udstyr."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1037
+msgid "Printer host name or IP missing!"
+msgstr "Værtsnavn eller IP-adresse på printer mangler!"
+
+#: ../../printer/printerdrake.pm_.c:1059
+msgid "Printer host name or IP"
+msgstr "Værtsnavn eller IP-adresse på printer mangler!"
+
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
+msgstr "Printer-enheds URI"
+
+#: ../../printer/printerdrake.pm_.c:1108
msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
+"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 ""
-"For at bruge en ekstern printer, skal du opgive værtsnavnet\n"
-"for printerserveren og navnet på printeren på denne server."
+"Du kan direkte opgive URI til printeren. URIen skal være i henhold til enten "
+"CUPS- eller Foomatic-standarden. Bemærk at ikke alle typer URIer "
+"understøttes af alle kø-behandlere."
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
-msgstr "Island"
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
+msgstr "En korrekt URI skal opgives!"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Konfigurér netværk og internet"
+#: ../../printer/printerdrake.pm_.c:1463
+msgid ""
+"Every printer needs a name (for example \"printer\"). The Description and "
+"Location fields do not need to be filled in. They are comments for the users."
+msgstr ""
+"Alle printere behøver et navn (f.eks. 'printer').\n"
+"Beskrivelsen og lokaliseringsfelterne behøver ikke \n"
+"udfyldes. De er kommentarer til brugerne."
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
-msgstr "konsolhjælper mangler"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr "Navn på printer"
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr "stoppet"
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
+msgstr "Beskrivelse"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "Om FPU-en har en irq-vektor"
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
+msgstr "Placering"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Ext2"
-msgstr "Ext2"
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+msgid "Reading printer database..."
+msgstr "Læser database over printere ..."
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr "Udvid træ"
+#: ../../printer/printerdrake.pm_.c:1482
+msgid "Preparing printer database..."
+msgstr "Forbereder printerdatabase: ..."
+
+#: ../../printer/printerdrake.pm_.c:1578
+msgid "Your printer model"
+msgstr "Din printermodel"
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm_.c:1579
#, c-format
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
+"Printerdrake has compared the model name resulting from the printer auto-"
+"detection with the models listed in its printer database to find the best "
+"match. This choice can be wrong, especially when your printer is not listed "
+"at all in the database. So check whether the choice is correct and click "
+"\"The model is correct\" if so and if not, click \"Select model manually\" "
+"so that you can choose your printer model manually on the next screen.\n"
"\n"
-"It has been reported to oops the kernel on unloading.\n"
+"For your printer Printerdrake has found:\n"
"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+"%s"
msgstr ""
-"Den gamle \"%s\"-driver er sortlistet.\n"
+"Printerdrake har sammenlignet modelnavnet fra den automatiske genkendelse af "
+"printeren med modellerne listet i dens printerdatabase for at finde den "
+"bedste match. Dette valg kan være forkert, især når din printer slet ikke er "
+"listet i databasen. Så tjek om valget er korrekt og klik \"Modellen er "
+"korrekt\" hvis den er, og hvis ikke så klik \"Vælg model manuelt\" så du kan "
+"udvælge din printermodel manuelt på den næste skærm.\n"
"\n"
-"Den er blevet rapporteret at lave fejl i kernen ved afslutningen.\n"
+"Som din printer har Printerdrake fundet:\n"
"\n"
-"Den nye \"%s\"-driver vil først blive brugt ved næste systemopstart."
-
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Expert Mode"
-msgstr "Eksperttilstand"
+"%s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "Printer-muligheder"
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+msgid "The model is correct"
+msgstr "Modellen er korrekt"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Local Network adress"
-msgstr "Adresse på lokalnetværk"
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+msgid "Select model manually"
+msgstr "Vælg model manuelt"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Lav sikkerhedkopi af dine systemfiler. (/etc kataloget)"
+#: ../../printer/printerdrake.pm_.c:1606
+msgid "Printer model selection"
+msgstr "Valg af printermodel"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the user umask."
-msgstr "Sæt brugerens umask."
+#: ../../printer/printerdrake.pm_.c:1607
+msgid "Which printer model do you have?"
+msgstr "Hvilken printermodel har du?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1608
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 ?"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-"Du har nu mulighed for at hente opdaterede pakker som er blevet opdateret\n"
-"efter distributionen blev gjort tilgængelig.\n"
"\n"
-"Du vil få sikkerhedsrettelser eller fejlrettelser, men du skal have en\n"
-"internet-opkobling for at fortsætte.\n"
"\n"
-"Ønsker du at installere opdateringerne?"
+"Tjek venligst om Printerdrake udførte \n"
+"autodetekteringen af din printermodel\n"
+"korrekt. Opsøg den korrekte model i listen\n"
+"når markøren står på en forkert model, eller\n"
+"på 'Rå printer'."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Samba Server"
-msgstr "Samba-server"
+#: ../../printer/printerdrake.pm_.c:1611
+msgid ""
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
+msgstr ""
+"Hvis din printer ikke er listet, så vælg en kompatibel (se printermanual) "
+"eller en lignende printer."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Australsk Optus kabel-tv"
+#: ../../printer/printerdrake.pm_.c:1697
+msgid "OKI winprinter configuration"
+msgstr "OKI konfiguration af winprinter"
-#: ../../install_steps_newt.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1698
msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+"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 ""
-" <Tab>/<Alt-Tab> mellem elementer | <Space> vælger | <F12> næste skærm "
+"Du konfigurerer en OKI laser-winprinter. Disse printere bruger en meget "
+"speciel kommunikationsprotokol og derfor virker de kun når de er forbundet "
+"til den første parallelle port. Når din printer er forbundet til en anden "
+"port eller til en printserverboks, så forbind printeren til den første "
+"parallelle port før du udskriver en prøveside. Ellers vil printeren ikke "
+"virke. Din opsætning af forbindelsestype vil blive ignoreret af driveren."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet:"
-msgstr "Undernet:"
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+msgid "Lexmark inkjet configuration"
+msgstr "Lexmark inkjet konfiguration"
-#: ../../lang.pm:1
-#, c-format
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: ../../printer/printerdrake.pm_.c:1719
+msgid ""
+"The inkjet printer drivers provided by Lexmark only support local printers, "
+"no printers on remote machines or print server boxes. Please connect your "
+"printer to a local port or configure it on the machine where it is connected "
+"to."
+msgstr ""
+"Printerdriverne til inkjet som leveres af Lexmark understøtter kun lokale "
+"printere, ikke printere på eksterne maskiner eller printserverbokse. Forbind "
+"din printer til en lokal port eller konfigurér den på den maskine, den er "
+"forbundet til."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "When"
-msgstr "Hvornår"
+#: ../../printer/printerdrake.pm_.c:1746
+msgid ""
+"To be able to print with your Lexmark inkjet and this configuration, you "
+"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
+"For at kunne udskrive på din Lexmark inkjet fra denne konfigurering skal du "
+"bruge inkjet printerdriverne leveret af Lexmark (http://www.lexmark.com/). "
+"Klik på 'Drivers'-knappen. Vælg så din model og derefter 'Linux' som "
+"operativsystem. Driverne kommer som RPM-pakker eller skal-skripter med "
+"interaktiv grafisk installation. Du behøver ikke lave denne konfiguration "
+"via de grafiske grænseflader. Annullér direkte efter licensaftalen. Udskriv "
+"derefter justeringssider for skrivehovedet med 'lexmarkmaintain', og justér "
+"opsætningen af justeringen af hovedet med dette program."
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr "GDI Laserprinter med Zenographics ZJ-Stream-Format"
+
+#: ../../printer/printerdrake.pm_.c:1750
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+"Din printer tilhører gruppen af GDI-laserprintere (winprintere) solgt af "
+"forskellige producenter som bruger Zenographics ZJ-stream rasterformat for "
+"data sendt til printeren. Drivprogrammet til disse printere er stadig i et "
+"meget tidligt udviklingstrin og det vil således måske ikke altid virke "
+"rigtigt. Især er det muligt at printeren kun virker når du har valgt "
+"papirstørrelsen A4.\n"
+"\n"
+"Nogen af disse printere, såsom HP Laserjet 1000, som dette drivprogram først "
+"blev udviklet til, behøver at deres programmel bliver lagt op på dem efter "
+"at de er blevet tændt. I tilfældet med HP LaserJet 1000 skal du søge i "
+"printerens Windows drivprogram-cd på din Windows-partition efter filen "
+"\"sihp1000.img\" og lægge den op på printeren med en af de følgende "
+"kommandoer:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"Den første kommando kan gives af enhver normal bruger, den anden skal gives "
+"som root. Efter at have gjort dette kan du udskrive normalt.\n"
+
+#: ../../printer/printerdrake.pm_.c:1972
msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
+"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 ""
-"Du behøver alcatel mikrokoden.\n"
-"Hjemhent den fra\n"
-"%s\n"
-"og kopiér filen mgmt.o i /usr/share/speedtouch"
+"Standardprinterens indstillinger\n"
+"\n"
+"Du bør tjekke at sidestørrelsen og blæktypen/udskriftstilstanden (hvis til "
+"stede) og også konfigurationen af laserprinterudstyr (hukommelse, duplex-"
+"enhed, ekstra bakker) er sat rigtigt. Bemærk at en meget god "
+"udskriftskvalitet kan gøre udskriften betydeligt langsommere."
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid "Hour"
-msgstr "Time"
+msgid "Option %s must be an integer number!"
+msgstr "Valg %s skal være et helt tal!"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Anden DNS-server (valgfri)"
+msgid "Option %s must be a number!"
+msgstr "Valg %s skal være et tal!"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:1989
#, c-format
-msgid "Finland"
-msgstr "Finland"
+msgid "Option %s out of range!"
+msgstr "Valg %s er udenfor område!"
-#: ../../Xconfig/various.pm:1
+#: ../../printer/printerdrake.pm_.c:2028
#, c-format
-msgid "Color depth: %s\n"
-msgstr "Farvedybde: %s\n"
+msgid ""
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
+msgstr ""
+"Ønsker du fremover at bruge printeren \"%s\"\n"
+"som standard?"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Du kan ikke fravælge denne pakke. Den skal opgraderes"
+#: ../../printer/printerdrake.pm_.c:2051
+msgid "Test pages"
+msgstr "Testsider"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "Indlæser fra diskette"
+#: ../../printer/printerdrake.pm_.c:2052
+msgid ""
+"Please select the test pages you want to print.\n"
+"Note: the photo test page can take a rather long time to get printed and on "
+"laser printers with too low memory it can even not come out. In most cases "
+"it is enough to print the standard test page."
+msgstr ""
+"Vælg testsiderne du ønsker at udskrive.\n"
+"Bemærk: fototestsiden kan tage ret lang tid at skrive ud, og på "
+"laserprintere med for lidt hukommelse vil den måske ikke skrives ud i det "
+"hele taget. Som regel vil det være nok at udskrive standard-testsiden."
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "Timezone - DrakClock"
+#: ../../printer/printerdrake.pm_.c:2056
+msgid "No test pages"
+msgstr "Ingen testsider"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
-msgstr "Aktivér/deaktivér logning af mærkelige IPv4-pakker."
+#: ../../printer/printerdrake.pm_.c:2057
+msgid "Print"
+msgstr "Udskriv"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr "Slovenien"
+#: ../../printer/printerdrake.pm_.c:2114
+msgid "Standard test page"
+msgstr "Standard testside"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse test"
-msgstr "Test af musen"
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
+msgstr "Alternativ testside (letter)"
-#: ../../standalone/drakperm:1
-#, 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."
-msgstr ""
-"Drakperm bruges til at se filer i brug for at rette tilladelser, ejere og "
-"grupper via msec.\n"
-"Du kan også redigere dine egne regler som vil tilsidesætte standard-reglerne."
+#: ../../printer/printerdrake.pm_.c:2120
+msgid "Alternative test page (A4)"
+msgstr "Alternativ testside (A4)"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Indtast en bruger\n"
-"%s"
+#: ../../printer/printerdrake.pm_.c:2122
+msgid "Photo test page"
+msgstr "Fototestside"
+
+#: ../../printer/printerdrake.pm_.c:2126
+msgid "Do not print any test page"
+msgstr "Udskriv ikke nogen testsider"
+
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
+msgstr "Udskriver testsider..."
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:2159
#, c-format
msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"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 ""
-"- PCI- og USB-enheder: dette viser producenten, enheden, underproducent og "
-"underenhed PCI/USB id'er"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "ProgressBar color selection"
-msgstr "Valg af farve for forløbslinje"
+"Testsider er blevet sendt til printeren.\n"
+"Dette kan tage lidt tid før printeren starter.\n"
+"Udskrivningsstatus:\n"
+"%s\n"
+"\n"
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2163
msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
msgstr ""
-"Her er følgende typer indgange.\n"
-"Du kan tilføje flere eller ændre de eksisterende."
+"Testsider er sendt til printeren.\n"
+"Det kan tage lidt tid før printeren starter.\n"
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
+msgstr "Fungerer det korrekt?"
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+msgid "Raw printer"
+msgstr "Rå printer"
-#: ../../standalone/drakbug:1
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
msgid ""
-"Application Name\n"
-"or Full Path:"
+"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 ""
-"Programnavn\n"
-"eller fuld sti:"
+"For at skrive en fil fra kommandolinjen (terminalvinduet) kan du enten bruge "
+"programmet '%s <fil>' eller et grafisk printerværktøj: 'xpp <fil>' eller "
+"'kprinter <fil>'. De grafiske værktøjer lader dig vælge printeren og ændre "
+"indstillingerne på en nem måde.\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2218
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."
+"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 ""
-"Kører planlagte kommandoer med 'at' kommandoen på tiden specificeret da 'at' "
-"blev kørt, og kører batch kommandoer når den gennemsnitlige systembelastning "
-"er lav nok"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
-msgstr "Radio-understøttelse:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "Installerer SANE-pakker..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Change type"
-msgstr "Skift type"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", USB printer #%s"
-
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "SILO-installering"
+"Disse kommandoer kan du også bruge fra 'udskrivningskommando'-feltet i "
+"udskriftsdialogerne i mange programmer, men lad være med at angive filnavnet "
+"her, fordi filen der skal udskrives leveres af programmet.\n"
-#: ../../install_messages.pm:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, 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"
+"The \"%s\" command also allows to modify the option settings for a "
+"particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\". "
+msgstr ""
"\n"
+"'%s'-kommandoen tillader også ændring af indstillingsmulighederne for et "
+"bestemt udskriftsjob. Tilføj blot de ønskede indstillinger til "
+"kommandolinjen, fx '%s <fil>\". "
+
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
+#, 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\n"
"\n"
+msgstr ""
+"Hvilke muligheder der er for den aktuelle printer kan du enten læse på "
+"listen vist nedenfor, eller klikke på knappen 'liste med printermuligheder'%s"
"%s\n"
"\n"
+
+#: ../../printer/printerdrake.pm_.c:2228
+msgid ""
+"Here is a list of the available printing options for the current printer:\n"
"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-"Tillykke, installationen er færdig.\n"
-"Fjern boot-mediet og tryk retur for at genstarte.\n"
-"\n"
-"\n"
-"For information om rettelser til denne udgivelse af Mandrake Linux, se "
-"Errata på:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
+"Her er en liste over tilgængelige printmuligheder for den aktuelle printer:\n"
"\n"
-"Information om konfigurering af dit system kan du finde i kapitlet om efter-"
-"installation i den Officielle Mandrake Linux Brugervejledning."
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Aktivér Network Time Protocol"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "paranoid"
-msgstr "paranoid"
-#: ../../security/l10n.pm:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "Send ikke unødvendig post"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "Dinne skannere vil ikke være tilgængelige på netværket."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Send epost-rapport efter hver sikkerhedskopiering til:"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
+msgstr ""
+"For at udskrive en fil fra kommandolinjen (terminalvinduet) brug da "
+"kommandoen '%s <fil>'.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
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 "
@@ -12209,742 +8902,744 @@ msgstr ""
"udskriftsdialogerne i mange programmer, men lad være med at angive filnavnet "
"her, fordi filen der skal udskrives leveres af programmet.\n"
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolution"
-msgstr "Opløsning"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
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."
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
msgstr ""
-"For at skrive til en SMB printer skal du angive værtsnavnet på SMB maskinen "
-"(bemærk at dette navn kan være forskelligt fra TCP/IP-navnet!) og muligvis "
-"IP-adressen på printerserveren, så vel som delenavnet for printeren du vil "
-"bruge samt nødvendig information om brugernavn, adgangskode og arbejdsgruppe."
+"For at få en liste af tilgængelige muligheder for den aktuelle printer kan "
+"du klikke på knappen 'Liste med printermuligheder'."
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2253
#, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
msgstr ""
-"Aktiverer 'su' kun fra medlemmer af wheel-gruppen, eller tillad 'su' fra "
-"enhver bruger."
+"For at udskrive en fil fra kommandolinjen (terminalvinduet) brug da "
+"kommandoen '%s <fil>' eller '%s <fil>'.\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
-msgstr "genkonfigurér"
+#: ../../printer/printerdrake.pm_.c:2257
+msgid ""
+"You can also use the graphical interface \"xpdq\" for setting options and "
+"handling printing jobs.\n"
+"If you are using KDE as desktop environment you have a \"panic button\", an "
+"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
+"jobs immediately when you click it. This is for example useful for paper "
+"jams.\n"
+msgstr ""
+"Du kan også bruge den grafiske grænseflade 'xpdq' til at sætte "
+"valgmuligheder og behandle udskriftsopgaver.\n"
+"Hvis du bruger KDE som skrivebordsmiljø, har du en 'panik-knap', en ikon på "
+"skrivebordet, benævnt med 'STOP printer!', som stopper alle udskriftsopgaver "
+"øjeblikkeligt når du klikker på den. Dette er fx nyttigt hvis papiret "
+"krøller sammen.\n"
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm_.c:2261
#, 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."
+"\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 ""
-"Dit kort kan have 3D acceleration understøttelse, men kun med XFree %s,\n"
-"VIGTIGT: Dette er eksperimentelt og kan få din maskine til at låse eller gå "
-"ned."
+"\n"
+"'%s'- og '%s'-kommandoerne tillader også ændring af indstillingsmulighederne "
+"for et bestemt udskriftsjob. Tilføj blot de ønskede indstillinger til "
+"kommandolinjen, fx '%s <fil>'.\n"
-#: ../../security/l10n.pm:1
+#: ../../printer/printerdrake.pm_.c:2271
#, c-format
-msgid "Shell timeout"
-msgstr "Udløbstid for skál"
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Udskriver/Skanner/Fotokort på '%s'"
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm_.c:2272
#, c-format
-msgid "Xinetd Service"
-msgstr "Xinetd-tjeneste"
+msgid "Printing/Scanning on \"%s\""
+msgstr "Udskriver/Skanner på '%s'"
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:2274
#, c-format
-msgid "access to network tools"
-msgstr "adgang til netværksværktøjer"
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Udskriver/Adgang til fotokort på '%s'"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2275
#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "Oplægning af firmware for HP LaserJet 1000"
+msgid "Printing on the printer \"%s\""
+msgstr "Udskriver på printeren '%s'"
+
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+msgid "Close"
+msgstr "Luk"
+
+#: ../../printer/printerdrake.pm_.c:2281
+msgid "Print option list"
+msgstr "Liste med printermuligheder"
-#: ../advertising/03-software.pl:1
+#: ../../printer/printerdrake.pm_.c:2301
#, 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."
+"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 ""
-"Mandrake Linux 9.2 giver dig mulighed for at bruge det allernyeste "
-"programmel til at afspille musik, redigere og organisere dine billeder eller "
-"foto, og se videoer."
+"Din multifunktionsenhed blev konfigureret automatisk til at kunne skanne. Nu "
+"kan du skanne med 'scanimage' ('scanimage -d hp:%s' for at angive skanneren "
+"hvis du har mere end én) fra kommandolinjen eller med de grafiske "
+"grænseflader 'xscanimage' eller 'xsane'. Hvis du bruger GIMP kan du også "
+"skanne ved at vælge det rigtige punkt i menuen 'Filer/Hent'. Brug også 'man "
+"scanimage' på kommandolinjen for at få mere information\n"
+"\n"
+"Brug ikke \"scannerdrake\" på denne enhed!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Her er en liste med alle autodetekterede printere. "
+#: ../../printer/printerdrake.pm_.c:2322
+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 ""
+"Din printer blev konfigureret automatisk til at give dig adgang til fotokort-"
+"drevene fra din PC. Nu kan du få adgang til dine fotokort med det grafiske "
+"program 'MtoolsFM' (Menu: 'Programmer' -> 'Filværktøjer' -> 'Mtools "
+"Filadministration') eller kommandolinjeværktøjet 'mtools' (indtast 'man "
+"mtools' på kommandolinjen for mere information). Du finder kortets filsystem "
+"under drevbogstavet 'p:', eller følgende drevbogstaver hvis du har mere end "
+"én HP-printer med fotokortdrev. I 'MtoolsFM' kan du skifte mellem "
+"drevbogstaver med feltet i de øverste højre hjørner af fillisterne."
+
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+msgid "Reading printer data..."
+msgstr "Læser printerdata ..."
+
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+msgid "Transfer printer configuration"
+msgstr "Overfør printerkonfiguration"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2365
#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"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 ""
-"Fejl ved installation af aboot, \n"
-"forsøg at gennemtvinge installation selv om dette kan ødelægge den første "
-"partition?"
+"Du kan kopiere printerkonfigurationen du har sat op for køserveren %s til %"
+"s, din nuværende køserver. Al konfigurationsdata (printernavn, beskrivelse, "
+"opkoblingstype og standardindstillinger) bliver overtaget, men ikke "
+"opgaver.\n"
+"Ikke alle køer kan overføres på grund af:\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2368
msgid ""
-"Restore Selected\n"
-"Files"
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
msgstr ""
-"Genskab valgte\n"
-"filer"
+"CUPS understøtter ikke printere på Novellservere eller printere som sender "
+"dataene ind i en frit-formet kommando.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2370
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."
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
msgstr ""
-"%s-eksisterer, skal den fjernes?\n"
-"\n"
-"Advarsel: Hvis du allerede har lavet denne proces skal du nok\n"
-" fjerne indgangen fra authorized_keys på serveren."
+"PDQ understøtter kun lokale printere, eksterne LPD printere, og Sokkel/TCP "
+"printere.\n"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Udfyld eller markér feltet nedenunder"
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr "LPD og LPRng understøtter ikke IPP printere.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Ønsker du at gemme /etc/fstab-ændringerne?"
+#: ../../printer/printerdrake.pm_.c:2374
+msgid ""
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
+msgstr ""
+"Desuden kan køer lavet med dette program eller \"foomatic -configure\" ikke "
+"overflyttes."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
-msgstr "Opstartsprotokol"
+#: ../../printer/printerdrake.pm_.c:2375
+msgid ""
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
+msgstr ""
+"\n"
+"Printere konfigureret med PPD-filerne, som producenten har lavet, eller med "
+"CUPS egne drivere kan heller ikke overflyttes."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-diske %s\n"
+#: ../../printer/printerdrake.pm_.c:2376
+msgid ""
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
+msgstr ""
+"\n"
+"Vælg printerene som du vil overflytte og klik\n"
+"\"Overfør\"."
-#: ../../services.pm:1
-#, c-format
-msgid "On boot"
-msgstr "Ved opstart"
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
+msgstr "Overfør ikke printere"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "Pakken %s kræves. Ønsker du at installere den?"
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
+msgstr "Overfør"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:2392
#, c-format
-msgid "Bus identification"
-msgstr "Bus-identifikation"
+msgid ""
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
+msgstr ""
+"En printer med navnet \"%s\" eksisterer allerede på %s. \n"
+"Klik \"Overfør\" for at overskrive.\n"
+"Du kan også give et nyt printernavn, eller overspringe denne printer."
-#: ../../lang.pm:1
-#, c-format
-msgid "Vatican"
-msgstr "Vatikansk"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr "Navn på printer bør kun indeholde bogstaver, tal og understregen _"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
-msgid "Please make a backup of your data first"
-msgstr "Lav gerne en sikkerhedkopi af dine data først"
+msgid ""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
+msgstr ""
+"Printeren \"%s\" eksisterer allerede,\n"
+"ønsker du virkelig at overskrive dens konfiguration?"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ADSL adapters"
-msgstr "ADSL-kort"
+#: ../../printer/printerdrake.pm_.c:2413
+msgid "New printer name"
+msgstr "Nyt printernavn"
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Du har mere end et diskdrev, hvilken ønsker du at installere Linux på?"
+msgid "Transferring %s..."
+msgstr "Overfører %s ..."
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:2427
#, c-format
-msgid "Eritrea"
-msgstr "Eritrea"
+msgid ""
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
+msgstr ""
+"Du har overført din tidligere standard-printer '%s', skal den også være "
+"standard-printer under det nye printersystem %s?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot ISO"
-msgstr "Start fra ISO"
+#: ../../printer/printerdrake.pm_.c:2437
+msgid "Refreshing printer data..."
+msgstr "Opfrisker printerdata ..."
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Firmware needed"
-msgstr "Firmware krævet"
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+msgid "Configuration of a remote printer"
+msgstr "Konfiguration af en ekstern printer"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove List"
-msgstr "Fjern liste"
+#: ../../printer/printerdrake.pm_.c:2446
+msgid "Starting network..."
+msgstr "Starter netværk ..."
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
-msgstr "Et miljø der kan tilpasses"
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+msgid "Configure the network now"
+msgstr "Konfigurér netværket nu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
-msgstr "Inuktitut"
+#: ../../printer/printerdrake.pm_.c:2480
+msgid "Network functionality not configured"
+msgstr "Netværksfunktionalitet ikke konfigureret"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2481
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."
+"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 ""
-"Nogen protokoller, såsom rsync, kan være konfigureret i server-enden. I "
-"stedet for at bruge en katalogsti bør du bruge 'module'-navnet for "
-"tjenestestien."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "Marokko"
+"Du er ved at konfigurere en ekstern printer. Dette kræver en virkende "
+"netværksadgang, men dit netværk er endnu ikke konfigureret. Hvis du vil "
+"fortsætte uden en netværkskonfiguration, vil du ikke kunne bruge printeren "
+"som du konfigurerer nu. Hvordan ønsker du at fortsætte?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Hvilken printermodel har du?"
+#: ../../printer/printerdrake.pm_.c:2484
+msgid "Go on without configuring the network"
+msgstr "Fortsæt med konfigurering af netværk"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add a new printer"
-msgstr "Tilføj en ny printer"
+#: ../../printer/printerdrake.pm_.c:2518
+msgid ""
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
+"Netværksopsætningen lavet under installationen kan ikke startes nu. Tjek om "
+"netværket bliver tilgængeligt efter opstart af dit system, og ret "
+"konfigurationen med Mandrake Kontrolcenter, afsnittet 'Netværk og internet'/ "
+"'Forbindelse', og konfigurér derefter printeren også med Mandrake "
+"Kontrolcenter, afsnittet om 'Maskinel'/'Printer'"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " All of your selected data have been "
-msgstr " Alle dine valgte data er blevet "
+#: ../../printer/printerdrake.pm_.c:2519
+msgid ""
+"The network access was not running and could not be started. Please check "
+"your configuration and your hardware. Then try to configure your remote "
+"printer again."
+msgstr ""
+"Netværksadgangen kørte ikke og kunne ikke startes. Tjek din konfiguration og "
+"dit udstyr. Prøv derefter at konfigurere din eksterne printer igen."
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "Nepal"
+#: ../../printer/printerdrake.pm_.c:2529
+msgid "Restarting printing system..."
+msgstr "Genstarter printsystemet ..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Slet"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "high"
+msgstr "høj"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
-msgstr "cpu-nummer "
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "paranoid"
+msgstr "paranoid"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid "chunk size"
-msgstr "enhedsstørrelse"
+msgid "Installing a printing system in the %s security level"
+msgstr "Installerer et printersystem på sikkerhedsniveauet %s"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2570
#, c-format
msgid ""
-"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
+"You are about to install the printing system %s on a system running in the %"
+"s security level.\n"
"\n"
-"If set to NONE, no issues are allowed.\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"
-"Else only /etc/issue is allowed."
+"Do you really want to configure printing on this machine?"
msgstr ""
-"Hvis sat til 'ALL' tillades /etc/issue og /etc/issue.net at eksistere.\n"
+"Du er ved at installere printsystemet %s på et system kørende på "
+"sikkerhedsniveau %s.\n"
"\n"
-"Hvis sat til 'NONE' er ingen issue-fil tilladt.\n"
+"Dette printsystem kører som en dæmon (baggrundsproces) som venter på "
+"printeropgaver og behandler dem. Denne dæmon er også tilgængelig for "
+"eksterne maskiner via netværket, og derfor er det et muligt angrebspunkt. "
+"Derfor bliver kun nogle få udvalgte dæmoner startet op som standard i dette "
+"sikkerhedsniveau.\n"
"\n"
-"Ellers er kun /etc/issue tilladt."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr "Aktivér/deaktivér sulogin(8) på enkeltbrugerniveau."
+"Ønsker du virkelig at konfigurere udskrivning på denne maskine?"
-#. -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
-#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "kommandoerne før opstart, eller 'c' for en kommandolinie."
+#: ../../printer/printerdrake.pm_.c:2604
+msgid "Starting the printing system at boot time"
+msgstr "Starter printsystemet ved opstart"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
+#: ../../printer/printerdrake.pm_.c:2605
#, c-format
-msgid "Problems installing package %s"
-msgstr "Problemer med installation af %s"
+msgid ""
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\n"
+"\n"
+"It is possible that the automatic starting was turned off by changing to a "
+"higher security level, because the printing system is a potential point for "
+"attacks.\n"
+"\n"
+"Do you want to have the automatic starting of the printing system turned on "
+"again?"
+msgstr ""
+"Printsystemet (%s) vil ikke blive startet automatisk, når maskinen startes "
+"op.\n"
+"Det er muligt at den automatiske opstart blev slået fra ved ændring til et "
+"højere sikkerhedsniveau, fordi printsystemet er et muligt angrebspunkt.\n"
+"\n"
+"Ønsker du at have den automatiske opstart af printsystemet slået til igen?"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Du vil modtage en advarsel hvis belastningen er højere end denne værdi"
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
+msgstr "Tjekker installeret programmel..."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Håndpluk skanner"
+#: ../../printer/printerdrake.pm_.c:2630
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "Fjerner %s"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh"
-msgstr "Genopfrisk"
+#: ../../printer/printerdrake.pm_.c:2636
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "Installerer pakker..."
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Reload partition table"
-msgstr "Genindlæs partitionstabel"
+#: ../../printer/printerdrake.pm_.c:2685
+msgid "Select Printer Spooler"
+msgstr "Vælg printerkø-behandler"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Ja, jeg ønsker automatisk login med denne (bruger, skrivebord)"
+#: ../../printer/printerdrake.pm_.c:2686
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Hvilket printersystem (spooler) ønsker du at bruge?"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2720
#, c-format
-msgid "Restore Selected"
-msgstr "Genskab valgte"
+msgid "Configuring printer \"%s\"..."
+msgstr "Konfigurerer printer '%s'..."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Søg efter skrifttyper i installeret liste"
+#: ../../printer/printerdrake.pm_.c:2731
+msgid "Installing Foomatic..."
+msgstr "Installerer Foomatic..."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Lokalnetværket endte ikke med `.0', står af."
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr "Printer-muligheder"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Boot"
-msgstr "Opstart"
+#: ../../printer/printerdrake.pm_.c:2810
+msgid "Preparing Printerdrake..."
+msgstr "Forbereder Printerdrake..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " og CD'en er i drevet"
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+msgid "Configuring applications..."
+msgstr "Konfigurerer programmer..."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Tuner type:"
-msgstr "Tuner-type:"
+#: ../../printer/printerdrake.pm_.c:2845
+msgid "Would you like to configure printing?"
+msgstr "Vil du gerne konfigurere udskrivning?"
-#: ../../help.pm:1
-#, 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"
-"\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 ""
-"Nu er det tid til at vælge et udskrivningssystem for din maskine. Andre "
-"styresystemer tilbyder måske ét, men Mandrake tilbyder to.Printersystemerne "
-"er hver især bedst til en bestemt konfigurationstype.\n"
-"\n"
-" * '%s' - som betyder 'print, don't queue' (udskriv, kø ej), er valget, hvis "
-"du har en direkte forbindelse til din printer, og du ønsker at kunne klare "
-"printproblemer med det samme, og du ikke har nogen printere via netværk. ('%"
-"s' vil kun behandle meget simple netværkstilfælde, og er lidt sløvt på "
-"netværk.) Vælg 'pdq' hvis dette er din første erfaring med GNU/Linux.\n"
-"\n"
-" * '%s' - 'Common Unix Printing System' (Fælles printersystem for Unix) er "
-"fremragende til at udskrive på din lokale printer, og også på den, der står "
-"på den anden side af jordkloden. Det er nemt at konfigurere, og kan virke "
-"som en server eller klient for det bedagede 'lpd'-printsystem, så det er "
-"kompatibelt med de tidligere systemer, som stadig kan have brug for "
-"udskriftstjenester. Det er ganske stærkt, men den basale opsætning er næsten "
-"lige så nem som for '%s'. Hvis du har brug for at dette efterligner en 'lpd'-"
-"server, skal du aktivere 'cups-lpd'-dæmonen. CUPS har grafiske grænseflader "
-"for udskrivning og valg af printermuligheder, og for administration af "
-"printeren.\n"
-"\n"
-"Du kan ændre dit valg senere ved at køre PrinterDrake fra Mandrakes "
-"Kontrolcenter, og klikke på ekspert-knappen."
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
+msgstr "Printsystem: "
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
-msgstr "'Menu'-tast"
+#: ../../printer/printerdrake.pm_.c:2915
+msgid ""
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
+msgstr ""
+"De følgende printere er konfigureret. Dobbeltklik på en printer for at ændre "
+"dens indstillinger; for at gøre den til standard-printer: for at se "
+"information om den; eller for at gøre en ekstern CUPS-printer tilgængelig "
+"for Star Office/OpenOffice.org/GIMP.org."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2916
msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
+"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 ""
-"\n"
-"\n"
-"Tjek venligst om Printerdrake udførte \n"
-"autodetekteringen af din printermodel\n"
-"korrekt. Find den korrekte model i listen\n"
-"når en forkert model, eller 'Rå printer' er fremhævet."
+"De følgende printere er konfigureret. Dobbeltklik på en printer for at ændre "
+"dens indstillinger, for at gøre den til standard-printer, eller for at se "
+"information om den."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Administrator:"
-msgstr "Sikkerhedsadministrator:"
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
+msgstr ""
+"Opfrisk printerliste (for at vise alle tilgængelige eksterne CUPS-printere)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
-msgstr "Sæt skallens tidsudløb. En værdi på nul betyder intet tidsudløb."
+#: ../../printer/printerdrake.pm_.c:2960
+msgid "Change the printing system"
+msgstr "Ændr printsystemet"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "Kopiering af firmware færdig"
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+msgid "Normal Mode"
+msgstr "Normal udgave"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid ""
-"You can't use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+msgid "Do you want to configure another printer?"
+msgstr "Ønsker du at konfigurere en anden printer?"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
-msgstr ""
-"hvis sat til ja, så tjek rettigheder på filer i brugernes hjemmekataloger."
+#: ../../printer/printerdrake.pm_.c:3211
+msgid "Modify printer configuration"
+msgstr "Ændr printerkonfiguration"
-#: ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:3213
#, c-format
msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
-"Du har ingen internet-opkobling.\n"
-"Opret én først ved at klikke på 'Konfigurér'"
+"Printer %s\n"
+"Hvad ønsker du at forandre på, på denne printer?"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Fonts copy"
-msgstr "Kopi af skrifttyper"
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
+msgstr "Gør det!"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
-msgstr "Automatisk"
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+msgid "Printer connection type"
+msgstr "Printeropkoblingstype"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Ønsker du at afprøve konfigurationen?"
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+msgid "Printer name, description, location"
+msgstr "Printernavn, beskrivelse, sted"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
-msgstr "Printeren \"%s\" blev fjernet fra Star Office/OpenOffice.org/GIMP.org."
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
+msgstr "Printerproducent, model, driver"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save packages selection"
-msgstr "Gem pakke-valg"
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
+msgstr "Printerproducent, model"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Actions"
-msgstr "/_Handlinger"
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
+msgstr "Sæt printeren som standard-printer"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Remove the last item"
-msgstr "Fjern det sidste element"
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Tilføj denne printer til Star Office/OpenOffice.org/GIMP.org"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr "Brugerliste at genskabe (kun den nyeste dato per bruger er vigtig)"
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Fjern denne printer fra Star Office/OpenOffice.org/GIMP.org"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
-msgstr "Ingen opstartsbilleder oprettet!"
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+msgid "Print test pages"
+msgstr "Udskriver testsider"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "brug pptp"
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+msgid "Know how to use this printer"
+msgstr "Véd hvordan denne printer bruges"
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Vælg hvilke tjenester der skal startes automatisk ved opstart"
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+msgid "Remove printer"
+msgstr "Fjern printer"
-#: ../../security/l10n.pm:1
+#: ../../printer/printerdrake.pm_.c:3282
#, c-format
-msgid "Check files/directories writable by everybody"
-msgstr "Kontrollér filer og kataloger skrivbare for alle."
+msgid "Removing old printer \"%s\"..."
+msgstr "Fjerner gammel printer \"%s\"..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Lær hvordan denne printer bruges"
+#: ../../printer/printerdrake.pm_.c:3307
+msgid "Default printer"
+msgstr "Standard printer"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3308
#, c-format
-msgid "Configure the network now"
-msgstr "Konfigurér netværket nu"
+msgid "The printer \"%s\" is set as the default printer now."
+msgstr "Printeren '%s' er nu sat som standard-printer."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Vælg det spejl hvorfra pakkerne skal hentes"
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Tilføjer printer til Star Office/OpenOffice.org/GIMP.org"
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:3312
#, c-format
msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Programmet til at ændre størrelse på FAT kan ikke behandle din partition, \n"
-"den følgende fejl opstod: %s"
+"Printeren \"%s\" blev tilføjet til Star Office/OpenOffice.org/GIMP.org."
-#: ../../install_steps_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:3313
#, c-format
-msgid "Size: "
-msgstr "Størrelse: "
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgstr ""
+"Kunne ikke tilføje printeren \"%s\" til Star Office/OpenOffice.org/GIMP.org."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "Hvilken sektor ønsker du at flytte den til?"
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Fjerner printer fra Star Office/OpenOffice.org/GIMP.org"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:3317
#, c-format
-msgid "Bahamas"
-msgstr "Bahamas"
+msgid ""
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
+msgstr "Printeren \"%s\" blev fjernet fra Star Office/OpenOffice.org/GIMP.org."
-#: ../../interactive/stdio.pm:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
-msgid "Do you want to click on this button?"
-msgstr "Ønsker du at klikke på denne knap?"
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+msgstr ""
+"Kunne ikke fjerne printeren \"%s\" fra Star Office/OpenOffice.org/GIMP.org."
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3325
#, c-format
-msgid "Manual configuration"
-msgstr "Manuel konfiguration"
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Ønsker du virkelig at fjerne printeren \"%s\"?"
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm_.c:3329
#, c-format
-msgid "search"
-msgstr "søg"
+msgid "Removing printer \"%s\"..."
+msgstr "Fjerner printer \"%s\"..."
-#: ../../services.pm:1
+#: ../../raid.pm_.c:35
#, c-format
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Denne pakke indlæser den valgte tastatur-tabel, som valgt i /etc/sysconfig/"
-"keyboard. Dette kan vælges i kbdconfig programmet. Dette bør være slået til "
-"på de fleste maskiner."
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "Kan ikke tilføje en partition til _formatéret_ RAID md%d"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (installations-skærmdriver)"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
+msgstr "mkraid fejlede"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "Zeroconf værtsnavn må ikke indeholde et ."
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid fejlede (måske mangler raidtools?)"
-#: ../../security/help.pm:1
+#: ../../raid.pm_.c:153
#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr "Acceptér/afvis icmp echo."
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "Ikke nok partitioner til at benytte RAID level %d\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../security/main.pm_.c:36
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."
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
+"\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
+"\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\n"
+"\n"
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
+"\n"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
-"Syslog er en facilitet som mange dæmoner bruger til log beskeder\n"
-"Det er en god idé altid at køre syslog"
+"Standard: Dette er den normale sikkerhed anbefalet for en maskine der vil "
+"blive brugt til at \n"
+" køre på internettet som en klient.\n"
+"\n"
+"Høj: Her er en del restriktioner, og flere automatiske kontroller vil "
+"blive kørt hver nat.\n"
+"\n"
+"Højere: Sikkerheden er nu høj nok til at bruge systemet som en server som "
+"kan tage imod forbindelser fra mange klienter. Hvis din "
+"maskine kun er en klient på internettet, bør du\n"
+"\t vælge et lavere niveau.\n"
+"\n"
+"Paranoid: Dette er svarende til det foregående niveau, men systemet er helt "
+"lukket og\n"
+" sikkerhedsfaciliteter er på deres højeste\n"
+"\n"
+"Sikkerhedsadministrator:\n"
+" Hvis 'Sikkerhedspåmindelser' valgmuligheden er sat, vil "
+"sikkerhedpåmindelser blive sendt til denne bruger (brugernavn eller "
+"epostadresse)"
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown/Others"
-msgstr "Ukendt|andre"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Sikkerhedsniveau:"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
-msgstr "Intet tv-kort genkendt!"
+#: ../../security/main.pm_.c:77
+#, fuzzy, c-format
+msgid " (default value: %s)"
+msgstr " (Forvalgt: %s)"
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Options"
-msgstr "Valg"
+#: ../../security/main.pm_.c:113
+msgid "Security Alerts:"
+msgstr "Sikkerhedspåmindelser:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Printeren '%s' er nu sat som standard-printer."
+#: ../../security/main.pm_.c:115
+msgid "Security Administrator:"
+msgstr "Sikkerhedsadministrator:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../security/main.pm_.c:128
+msgid "Network Options"
+msgstr "Netværkstilvalg"
+
+#: ../../security/main.pm_.c:128
+msgid "System Options"
+msgstr "Systemtilvalg"
+
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
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."
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
msgstr ""
-"Du konfigurerer en OKI laser-winprinter. Disse printere bruger en meget "
-"speciel kommunikationsprotokol og derfor virker de kun når de er forbundet "
-"til den første parallelle port. Når din printer er forbundet til en anden "
-"port eller til en printserverboks, så forbind printeren til den første "
-"parallelle port før du udskriver en prøveside. Ellers vil printeren ikke "
-"virke. Din opsætning af forbindelsestype vil blive ignoreret af driveren."
+"De følgende tilvalg kan sættes for at tilpasse din\n"
+"systemsikkerhed. Hvis du har brug for forklaringer kan du klikke på Hjælp.\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr "processorens generation (fx 8 for PentiumIII,...)"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
+msgstr "Periodiske kontroller"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detected"
-msgstr "Auto-detekteret"
+#: ../../security/main.pm_.c:191
+msgid "Please wait, setting security level..."
+msgstr "Vent venligst, sætter sikkerhedsniveau..."
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../security/main.pm_.c:197
+msgid "Please wait, setting security options..."
+msgstr "Vent venligst, sætter sikkerhedstilvalg..."
+
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr "Start ALSA (Advanced Linux Sound Architecture) lydsystemet"
+
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
+msgstr "Anacron en periodisk kommando planlægger"
+
+#: ../../services.pm_.c:21
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)."
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-"Du er ved at konfigurere din maskine til at installere en PXE-server som en "
-"DHCP-server og en TFTP-server for at bygge en installationsserver.\n"
-"Med denne mulighed vil andre maskiner på dit lokale netværk kunne "
-"installeres ved brug af denne maskine.\n"
-"\n"
-"Forsikr dig om at du har konfigureret din internetforbindelse med "
-"drakconnect før du går videre.\n"
-"\n"
-"Bemærk: du skal bruge en dediceret netværksadapter, for at lave et lokalt "
-"netværk (LAN)."
+"apmd bruges til at overvåge batteristatus og skrive log til syslog.\n"
+"Den kan også bruges til at lukke maskinen når batteriet er på lav."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../services.pm_.c:23
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"
+"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 ""
-"OSS (Open Sound System) var den første lyd-API. Det er en OS-uafhængig lyd-"
-"API (den er tilgængelig på de fleste Unix(tm)-systemer), men den er en meget "
-"basal og begrænset API.\n"
-"Ydermere genopfandt alle OSS-drivere hjulet.\n"
-"\n"
-"ALSA (Advanced Linux Sound Architecture) er en modulær arkitektur som\n"
-"understøtter en ganske lang række ISA-, USB- og PCI-kort.\n"
-"\n"
-"Den tilbyder også en meget højere API end OSS.\n"
-"\n"
-"For at bruge ALSA kan man enten bruge:\n"
-"- den gamle OSS-kompatibilitetes-api\n"
-"- den nye ALSA API som tilbyder mange forbedrede faciliteter men som kræver "
-"brug af ALSA-biblioteket.\n"
+"Kører planlagte kommandoer med 'at' kommandoen på tiden specificeret da 'at' "
+"blev kørt, og kører batch kommandoer når den gennemsnitlige systembelastning "
+"er lav nok"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:25
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"
+"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 ""
-"Det er ikke plads for 1 MB bootstrap! Installationen vil fortsætte, men for "
-"at starte dit system op, skal du lave en bootstrap partition i DiskDrake"
+"cron er et standard UNIX program der kører bruger-specifikke programmer på "
+"planlagte tidspunkter. Vixie cron tilføjer en del forbedringer til den "
+"basale UNIX cron, inklusive bedre sikkerhed og stærkere "
+"konfigurationsmuligheder."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:28
msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
+"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 ""
-"Angiv hvilken printer dine udskriftsopgaver skal gå til, eller indtast et "
-"enhedsnavn/filnavn på inddatalinjen"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
-msgstr "Nægt"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
-msgstr "LOCAL"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
-msgstr "HFS"
+"GPM tilføjer muse-support til tekst-baserede Linux applikationer såsom "
+"Midnight Commander. Den tillader muse-baseret kopiér-og-sætind operationer "
+"på konsollen og inkluderer support for pop-op-menuer i konsollen."
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:31
msgid ""
"HardDrake runs a hardware probe, and optionally configures\n"
"new/changed hardware."
@@ -12952,306 +9647,134 @@ msgstr ""
"HardDrake kører en søgning efter maskinel, og kan konfigurere nyt/ændret "
"maskinel."
-#: ../../fs.pm:1
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Opretter og formaterer fil %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
-msgstr "hvis sat til ja, så tjek tilføjelser og fjernelser af sgid-filer."
+#: ../../services.pm_.c:33
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+msgstr "Apache er en webserver. Den bruges til at betjene HTML-filer og CGI."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:34
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"
+"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 ""
-"HP LaserJet 1000 skal have lagt sin firmware op efter at være blevet tændt. "
-"Hjemhent pakken med Windows-drivere fra HP's websted (firmwaren fra "
-"printerens CD virker ikke) og hiv firmware-filen ud af den ved at "
-"dekomprimere den selvudpakkende .exe-fil med 'unzip'-programmet og lede "
-"efter filen 'sihp1000.img'. Kopiér denne fil til kataloget '/etc/printer'. "
-"Dér vil den blive fundet af det automatiske oplæggerskript og lagt op hver "
-"gang printeren er sluttet til og tændt.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "Vælg en eksisterende LVM som skal udvides"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "xfs restart"
-msgstr "genstart af xfs"
+"Internet superserver-dæmonen (kaldet inetd) starter forskellige internet-"
+"tjenester efter behov. Den er ansvarlig for at starte tjenester som telnet, "
+"ftp, rsh og rlogin. Hvis inetd deaktiveres, deaktiveres alle de tjenester, "
+"den er ansvarlig for."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:38
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
msgstr ""
-"Printeren \"%s\" eksisterer allerede,\n"
-"ønsker du virkelig at overskrive dens konfiguration?"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Brug skannerne på følgende værtsmaskiner:"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
-msgstr "Fravalgte alt"
-
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "ingen ledige partitioner"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Management \n"
-msgstr "Administration af printere \n"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Løser for domænenavn"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
-msgstr "Krypteringsnøgle (igen)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Samba-delenavn mangler!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
-msgstr "Installation af True Type færdig"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detection in progress"
-msgstr "Søgning udføres"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Opbyg hele kernen -->"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "modem"
-msgstr "modem"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "Velkommen til %s"
+"Start pakkefiltrering for Linux kerne 2.2 serien for at opsætte en brandmur "
+"til at beskytte din maskine mod netværksangreb."
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../services.pm_.c:40
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"
+"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 ""
-" drakhelp 0.1\n"
-"Copyright © 2003 MandrakeSoft.\n"
-"Dette er frit programmel og kan redistribueres under betingelserne i GNU "
-"GPL.\n"
-"\n"
-"Brug: \n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Indsæt Opdater moduler-disketten i drev %s"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
-msgstr "Opstartsskærm"
+"Denne pakke indlæser den valgte tastatur-tabel, som valgt i /etc/sysconfig/"
+"keyboard. Dette kan vælges i kbdconfig programmet. Dette bør være slået til "
+"på de fleste maskiner."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:43
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
msgstr ""
-"Den følgende printer\n"
-"\n"
-"%s%s\n"
-"er direkte tilsluttet til dit system"
+"Automatisk regenerering af kernehoved i /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Printerdeling på vært eller netværk:"
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr "automatisk opdagelse og konfigurering af maskinel ved opstart."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:46
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>\". "
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
msgstr ""
-"\n"
-"'%s'-kommandoen tillader også ændring af indstillingsmulighederne for et "
-"bestemt udskriftsjob. Tilføj blot de ønskede indstillinger til "
-"kommandolinjen, fx '%s <fil>\". "
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "DrakClock"
-msgstr "DrakClock"
+"Linuxconf vil nogen gange arrangere udførelse af forskellige opgaver ved "
+"opstart for at vedligeholde systemkonfigurationen."
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:48
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."
+"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 ""
-"I nogen tilfælde behøver %s driveren at have ekstra information for at "
-"virke\n"
-"ordentligt, selv om den normalt virker fint uden. Ønsker du at angive "
-"ekstra\n"
-"parametre for den eller tillade driveren at sondere din maskine for\n"
-"den information den behøver? Af og til vil sondering stoppe maskinen, men "
-"burde\n"
-"ikke forårsage nogen skader."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "Ikke korrekt cd-etiket. Cd'en har etiket %s."
+"lpd er printer-dæmonen som er nødvendig for at lpr virker.\n"
+"Den er basalt en server der håndterer udskrifts-opgaver."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:50
msgid ""
-"\n"
-"- Daemon, %s via:\n"
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
msgstr ""
-"\n"
-"- Dæmon, %s via:\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "Cuba"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr "Oktober"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belize"
-msgstr "Belize"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Søger efter nye printere..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
-msgstr " (multi-session)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
-msgstr "Ventetid før kerneopstart"
+"Linux Virtuel Server, brugt til at bygge en server med høj ydelse og\n"
+"tilgængelighed."
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../services.pm_.c:52
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."
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
msgstr ""
-"Dit kort kan have 3D acceleration, men kun med XFree %s.\n"
-"Dit kort er understøttet af XFree %s som kan have bedre understøttelse i 2D."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Activate/Disable daily security check."
-msgstr "Aktivér/deaktivér daglig sikkerhedskontrol."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-cdrom.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
-msgstr "Aktivér/deaktivér libsafe hvis libsafe findes på systemet"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX partitionerings-vejlederen fandt de følgende løsninger:"
+"named (BIND) er en domæne-navneserver (DNS) der bruges til opslag af IP-"
+"adresser for værtsnavne."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "Ungarsk"
+#: ../../services.pm_.c:53
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
+msgstr ""
+"Monterer og afmonterer alle netværks filsystemer (NFS), SMB (LanManager/"
+"Windows) og NCP (NetWare) monterings-stier"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../services.pm_.c:55
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
-"Vælg din udbyder.\n"
-" Hvis de ikke er i listen, vælg Ikke listet"
+"Aktiverer/deaktiverer alle netværks-kort som er konfigureret\n"
+"til at starte ved opstart"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automatisk tidssynkronisering (ved hjælp af NTP)"
+#: ../../services.pm_.c:57
+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 ""
+"NFS er en populær protokol til fildeling over TCP/IP netværk.\n"
+"Denne tjeneste giver NFS-serverfunktionalitet, som konfigureres gennem /etc/"
+"exports filen"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Brug min Windows-partition"
+#: ../../services.pm_.c:60
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
+msgstr ""
+"NFS er en populær protokol til fildeling over TCP/IP\n"
+"netværk. Denne service giver NFS fillåsnings funktionalitet"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
-msgstr "8 Mb"
+#: ../../services.pm_.c:62
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+"Aktiverer automatisk numlock-tast i konsol og XFree ved\n"
+"opstart."
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Server"
-msgstr "LDAP-server"
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr "Støtter OKI 4w og kompatible winprintere."
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:65
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 "
@@ -13263,426 +9786,486 @@ msgstr ""
"konfigureret, så det er sikkert at have den installeret på maskiner der ikke "
"har behov for den."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Choose your country"
-msgstr "Vælg dit land"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:68
msgid ""
-"\n"
-"- System Files:\n"
+"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 ""
-"\n"
-"- Systemfiler:\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
-msgstr "Fritstående værktøjer"
+"Portmapper håndterer RPC tilslutninger, som bliver brugt af protokoller som "
+"NFS og NIS. Portmap serveren skal køre på maskiner som bruger protokoller "
+"der udnytter RPC mekanismen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Where"
-msgstr "Hvor"
+#: ../../services.pm_.c:71
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
+msgstr ""
+"Postfix er en transport-agent for post, som bruges af programmer der flytter "
+"post fra en maskine til en anden."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "but not matching"
-msgstr "Men ikke samstemmende"
+#: ../../services.pm_.c:72
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
+"Gemmer og henter systemets entropipøl for en højre kvalitet\n"
+"ved generering af tilfældige tal."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../services.pm_.c:74
msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
msgstr ""
-"Her kan du vælge et alternativ drivprogram (enten OSS eller ALSA) for "
-"lydkortet (%s)"
+"Tilordn rå enheder til blokenheder (som harddisk-\n"
+"partitioner) til brug af applikationer som Oracle"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Konfigurerer PCMCIA kort..."
+#: ../../services.pm_.c:76
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
+msgstr ""
+"Routed dæmonen giver mulighed for automatisk IP rutetabel opdatering via RIP "
+"protokollen. RIP kan bruges til små netværk, men når det kommer til mere "
+"komplekse netværk er der behov for en mere kompleks protokol."
-#: ../../common.pm:1
-#, c-format
-msgid "kdesu missing"
-msgstr "kdesu mangler"
+#: ../../services.pm_.c:79
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
+msgstr ""
+"rstat protokollen tillader brugere på et netværk at hente systeminformation "
+"fra enhver maskine på dette netværk."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s kræver et brugernavn...\n"
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"rusers protokollen tillader brugere på et netværk a identificere\n"
+"hvem der er logget på andre maskiner"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
-msgstr "Krypteringsnøgle"
+#: ../../services.pm_.c:83
+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 ""
+"rwho protokollen tillader eksterne brugere at hente en liste over alle "
+"brugere der er logget ind på en maskine, der kører rwho dæmonen (minder om "
+"finger)."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
+msgstr "Start lydsystemet på din maskine"
-#: ../../keyboard.pm:1
-#, c-format
+#: ../../services.pm_.c:86
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."
+"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 ""
-"Denne indstilling vil blive aktiveret efter installationen.\n"
-"Under installationen skal du bruge den højre Ctrl-tast\n"
-"for at skifte mellem de forskellige tastaturudlægninger."
+"Syslog er en facilitet som mange dæmoner bruger til log beskeder\n"
+"Det er en god idé altid at køre syslog"
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "Juleøerne"
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr "Indlæs driverne for dine usb-enheder."
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Automatic"
-msgstr "Automatisk IP"
+#: ../../services.pm_.c:89
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+msgstr ""
+"Starter X-font serveren (dette er obligatorisk for at XFree skal køre)."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Installation af opstarter mislykkedes. Den følgende fejl opstod:"
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Vælg hvilke tjenester der skal startes automatisk ved opstart"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "EIDE/SCSI-kanal"
+#: ../../services.pm_.c:127
+msgid "Printing"
+msgstr "Printning"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Sæt printeren som standard-printer"
+#: ../../services.pm_.c:128
+msgid "Internet"
+msgstr "Internet"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Kontrollér at %s er den korrekte sti"
+#: ../../services.pm_.c:131
+msgid "File sharing"
+msgstr "Fildeling"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "partition %s"
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+msgid "System"
+msgstr "System"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Paranoid"
-msgstr "Paranoid"
+#: ../../services.pm_.c:138
+msgid "Remote Administration"
+msgstr "Ekstern administration"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS"
-msgstr "NIS"
+#: ../../services.pm_.c:146
+msgid "Database Server"
+msgstr "Databaseserver"
-#: ../../standalone/drakTermServ:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "<-- Del User"
-msgstr "<-- Slet bruger"
+msgid "Services: %d activated for %d registered"
+msgstr "Tjenester: %d aktiverede for %d registrerede"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Location on the bus"
-msgstr "Plads på bussen"
+#: ../../services.pm_.c:191
+msgid "Services"
+msgstr "Tjenester"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No printer found!"
-msgstr "Ingen printer fundet!"
+#: ../../services.pm_.c:203
+msgid "running"
+msgstr "kører"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
-msgstr "navnet på producenten af enheden"
+#: ../../services.pm_.c:203
+msgid "stopped"
+msgstr "stoppet"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Erase entire disk"
-msgstr "Slet hele disken"
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
+msgstr "Tjenester og dæmoner"
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Default)"
-msgstr " (Forvalgt)"
+#: ../../services.pm_.c:222
+msgid ""
+"No additional information\n"
+"about this service, sorry."
+msgstr ""
+"Beklager, der er ingen ekstra\n"
+"information om denne tjeneste."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Automatic reconfiguration"
-msgstr "Automatisk rekonfiguration"
+#: ../../services.pm_.c:229
+msgid "On boot"
+msgstr "Ved opstart"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Receiving Speed:"
-msgstr "Modtagelseshastighed:"
+#: ../../services.pm_.c:241
+msgid "Start"
+msgstr "Start"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
-msgstr "Turks- og Caicosøerne"
+#: ../../services.pm_.c:241
+msgid "Stop"
+msgstr "Stop"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Ip"
-msgstr "Ingen IP"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Tak fordi du valgte Mandrake Linux 9.0"
-#: ../../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
-#, c-format
-msgid "<- Previous"
-msgstr "<- Forrige"
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
+msgstr "Velkommen til en verden af åben kildetekst"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Transfer Now"
-msgstr "Overfør nu"
+#: ../../share/advertising/01-thanks.pl_.c:11
+msgid ""
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
+msgstr ""
+"MandrakeSofts succes er baseret på princippet om frit programmel. Dit nye "
+"operativsystem er resultatet af et samarbejde i det verdensomspændende Linux-"
+"samfund"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password and network authentication methods"
-msgstr "Sæt root-adgangskode og netværksautentifikationsmetoder"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
+msgstr "Vær med i det frie programmels verden"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "Skift mellem flad og gruppesorteret"
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr "Ønsker du at vide mere om Åben Kildetekst-samfundet?"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Themes"
-msgstr "Temaer"
+#: ../../share/advertising/02-community.pl_.c:11
+msgid ""
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
+msgstr ""
+"For at dele din viden og hjælpe med at bygge Linux-værktøjer kan du være med "
+"i diskussionsfora som du finder på vores 'Samfunds'-netsider."
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "Valg: %s"
+#: ../../share/advertising/03-internet.pl_.c:9
+msgid "Get the most from the Internet"
+msgstr "Få det meste fra Internettet"
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-"Du bruger for øjeblikket % som opstartshåndterer.\n"
-"Klik på Konfigurér for at starte opsætnings-vejlederen."
+"Mandrake Linux 9.0 har udvalgt det bedste programmel til dig. Surf på nettet "
+"og se animationer med Mozilla og Konqueror, eller læs post og organisér dine "
+"personlige informationer med Evolution og Kmail."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "OKI konfiguration af winprinter"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr "Opdag de mest moderne grafik- og multimedie-værktøjer!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
-msgstr "Sankt Helena"
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr "Pres multimedie til det yderste!"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Parallelport #%s"
+#: ../../share/advertising/04-multimedia.pl_.c:11
+msgid ""
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
+msgstr ""
+"Mandrake Linux 9.0 giver dig mulighed for at bruge det allernyeste "
+"programmel til at afspille musik, redigere og organisere dine billeder eller "
+"foto, og se videoer."
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Security Level"
-msgstr "Sikkerhedsniveau"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Spil"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
msgstr ""
-"Nogen dele af installationen er ikke færdig\n"
-"\n"
-"Er du sikker på du ønsker du at lukke nu?"
+"Mandrake Linux 9.0 tilbyder det bedste i Åben Kildetekst-spil - arkade, "
+"action, strategi, ..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "Sudan"
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+msgid "Mandrake Control Center"
+msgstr "Mandrake Kontrolcenter"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "Polsk (polsk layout)"
+#: ../../share/advertising/06-mcc.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
+msgstr ""
+"Mandrake Linux 9.0 tilbyder et stærkt værktøj til fuldt ud at tilpasse og "
+"konfigurere din maskine"
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
-msgstr "Syrien"
+#: ../../share/advertising/07-desktop.pl_.c:9
+msgid "User interfaces"
+msgstr "Brugergrænseflader"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/07-desktop.pl_.c:10
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?"
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
-"Er din printer en multi-funktionenhed fra HP eller Sony (OfficeJet, PSC, "
-"LaserJet 1100/1200/1220/3200/3300 med skanner, DeskJet 450, Sony IJP-V100), "
-"en HP PhotoSmart eller en HP LaserJet 2200?"
+"Mandrake Linux 9.0 tilbyder dig 11 brugergrænseflader hvor alt kan "
+"tilpasses: KDE 3, Gnome 2, WindowMaker..."
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
-#, c-format
+#: ../../share/advertising/08-development.pl_.c:9
+msgid "Development simplified"
+msgstr "Nem udvikling"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr "Mandrake Linux 9.0 er den ultimative udviklingsplatform."
+
+#: ../../share/advertising/08-development.pl_.c:11
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"
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-"Velkommen til %s styresystems-vælgeren!\n"
-"\n"
-"Vælg et styresystem i den ovenstående liste eller\n"
-"vent %d sekunder for at starte standard.\n"
-"\n"
+"Brug den fulde styrke i GNU gcc 3-oversætteren og de bedste Åben Kildetekst-"
+"udviklingsmiljøer."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "Portugisisk"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr "Lav din maskine om til en pålidelig server"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
-msgstr "Loopback-filnavn: "
+#: ../../share/advertising/09-server.pl_.c:10
+msgid ""
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
+msgstr ""
+"Lav din maskine om til en stærk server med bare nogen få klik med musen: "
+"Webserver, post, brandmur, ruter, fil- og print-server, ..."
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "Adresse på DNS-server skal have formatet 1.2.3.4"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr "Optimér din sikkerhed"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Control key"
-msgstr "Venstre kontol-tast"
+#: ../../share/advertising/10-mnf.pl_.c:10
+msgid ""
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr ""
+"Produktkataloget MandrakeSecurity indeholder produktet Multi Network "
+"Firewall (M.N.F.)."
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
-msgstr "Serbien"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
+msgstr ""
+"Dette brandmursprodukt indholder netværksfunktioner som lader dig opfylde "
+"alle dine sikkerhedsbehov."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Newzealand"
-msgstr "New Zealand"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr "Produktet findes tilgængeligt på MandrakeStores netsted"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
-msgstr "Dette katalog bør ligge på rod-filsystemet"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr "Den officielle MandrakeSoft-butik"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
-msgstr "over netværk"
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
+msgstr ""
+"Vores komplette udvalg af Linux-løsninger, så vel som specialtilbud på "
+"produkter og andre godbidder, er tilgængelige via nettet i vores e-butik:"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
-msgstr "CapsLock-tast"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr "Strategiske samarbejdspartnere"
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "Installér systemopstarter"
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
+msgstr ""
+"MandrakeSoft arbejder sammen med et antal firmaer som tilbyder "
+"professionelle løsninger kompatible med Mandrake Linux. En liste over disse "
+"samarbejdspartnere findes tilgængelig på MandrakeStore"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Vælg hukommelsesmængde for dit grafikkort"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr "Opdag MandrakeSofts træningskatalog Linux-Campus"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
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))."
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
msgstr ""
-"Aktivér/deaktivér 'crontab' og 'at' for brugere.\n"
-"\n"
-"Put tilladte brugere i /etc/cron.allow og /etc/at.allow\n"
-"(se man at(1) og crontab(1))."
+"Træningsprogrammet er blevet lavet for at tilgodese både brugeres og "
+"eksperters behov (netværk- and system-administration)"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr "Certificér dig på Linux."
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
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."
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-"[VALGMULIGHEDER]\n"
-"Program til netværks- & Internet forbindelse og overvågning\n"
-"\n"
-"--defaultintf grænseflade : vís denne grænseflade som standard\n"
-"--connect : kobl op til internettet hvis ikke allerede opkoblet\n"
-"--disconnect : kobl fra internettet hvis allerede opkoblet\n"
-"--force : brugt med (dis)connect : gennemtving (dis)connect.\n"
-"--status : returnerer 1 hvis opkoblet, ellers 0; afslut derefter.\n"
-"--quiet : vær ikke interaktiv. Bruges med (dis)connect."
+"Hvadenten du vælger at undervise dig selv på nettet eller via vores net af "
+"undervisningspartnere, vil Linux-Campus kataloget forberede dig til det "
+"anerkendte LPI-certificeringsprogram (verdensomspændende professionel "
+"teknisk certificering)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
-msgstr "Adresse-rum for ynamisk IP"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+msgid "Become a MandrakeExpert"
+msgstr "Bliv en MandrakeExpert"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "LVM-navn?"
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
+msgstr "Find løsningerne på dine problemer via MandrakeSofts online-support."
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "Nogen enheder i maskinelklassen '%s' blev fjernet:\n"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+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 ""
+"Slut dig til MandrakeSofts supporthold og Linux-samfundet på nettet for at "
+"dele din viden og hjælpe andre ved at blive en anerkendt Ekspert på det "
+"tekniske supportnetsted:"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Fandt %s %s grænsesnit"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert for firmaer"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Install"
-msgstr "Efterbehandling for installering"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr "En platform på nettet som tilgodesér firmaers specifikke supportbehov"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The internal domain name"
-msgstr "Det interne domænenavn"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+"Alle hændelser følges op af en teknisk kvalificeret MandrakeSoft-ekspert."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "Kort IRQ"
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
+msgstr "Opdag MandrakeClub og Mandrake Corporate Club"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "logdrake"
+#: ../../share/advertising/17-mdkclub.pl_.c:10
+msgid ""
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
+msgstr ""
+"MandrakeClub og Mandrake Corporate Club er blevet skabt til "
+"forretningsbrugere private brugere af Mandrake Linux, som gerne vil støtte "
+"deres foretrukne Linux-distribution direkte og samtidig også modtage særlige "
+"privilegier. Hvis du kan lide vores produkter, hvis dit firma har gavn af "
+"vores produkter til at få et konkurrencemæssigt forspring, eller hvis du "
+"ønsker at støtte udviklingen af Mandrake Linux, så slut dig til MandrakeClub!"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../standalone.pm_.c:21
+#, fuzzy
+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 ""
+"Dette program er gratis programmel; du kan redistribuere det og/eller ændre\n"
+"det i henhold til betingelserne i GNU General Public License, som publiceret "
+"af\n"
+"Free Software Foundation; enten version 2, eller enhver senere udgave\n"
+"af licensen.\n"
+"\n"
+"Dette program er udgivet i håb om at det vil være anvendeligt, men\n"
+"UDEN NOGEN FORM FOR GARANTI; heller ikke garanti om\n"
+"SALGBARHED eller EGNETHED TIL ET BESTEMT FORMÅL. Se GNU\n"
+"General Public License for flere detaljer.\n"
+"\n"
+"Du skulle have modtaget en kopi af GNU General Public License\n"
+"sammen med dette program; hvis ikke, skriv til Free Software\n"
+"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n"
+"USA."
+
+#: ../../standalone.pm_.c:40
+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 name.\n"
+msgstr ""
+
+#: ../../standalone.pm_.c:51
+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.pm_.c:57
msgid ""
"Font Importation and monitoring "
"application \n"
@@ -13697,7195 +10280,4487 @@ msgid ""
" : name_of_application like so for staroffice \n"
" : and gs for ghostscript for only this one."
msgstr ""
-"Skrifttype-import og "
-"overvågningsapplikation \n"
-"--windows_import : importér fra alle tilgængelige windowspartitioner.\n"
-"--xls_fonts : vis alle skrifttyper som allerede eksisterer fra xls\n"
-"--strong : stærk verifikation af skrifttyper.\n"
-"--install : installér alle skrifttyper og kataloger.\n"
-"--uninstall : afinstallér alle skrifttyper og kataloger.\n"
-"--replace : erstat skrifttyper som eksisterer fra før\n"
-"--application : 0 ingen applikation.\n"
-" : 1 alle tilgængelige understøttede applikationer.\n"
-" : applikationsnavn, som \"so\" for staroffice \n"
-" : og gs for ghostscript."
-
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Vælg det diskette-drev, du vil benytte til at lave boot-disketten"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr "LILO med tekstmenu"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
+#: ../../standalone.pm_.c:68
+msgid ""
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Alt (ingen brandmur)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
-msgstr "Du skal angive en kerne-fil"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", multi-funktions-enhed på USB"
-
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Do"
-msgstr "Lav"
+#: ../../standalone.pm_.c:70
+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)"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Kontakter spejlet for at hente listen af tilgængelige pakker"
+#: ../../standalone.pm_.c:82
+#, fuzzy
+msgid "[keyboard]"
+msgstr "Tastatur"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "Litauisk AZERTY (gammel)"
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasiliansk (ABNT-2)"
+#: ../../standalone.pm_.c:84
+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 ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
-msgstr "IP-adresse på vært eller netværk:"
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone.pm_.c:94
msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
+"[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 ""
-"y-koordinatet for forløbsindikatorens\n"
-"øvre venstre hjørne"
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System installation"
-msgstr "System-installering"
+#: ../../standalone.pm_.c:99
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
-msgstr "Sankt Vincent og Grenadinerne"
+#: ../../standalone.pm_.c:100
+msgid ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
+msgstr ""
-#: ../../security/help.pm:1
+#: ../../standalone.pm_.c:114
#, c-format
-msgid "Allow/Forbid reboot by the console user."
-msgstr "Tillad/forbyd genstart via konsolbruger."
+msgid ""
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Open"
-msgstr "/Fil/_Åbn"
+#: ../../standalone.pm_.c:168
+msgid "Installing packages..."
+msgstr "Installerer pakker..."
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "Placering af auto_installations .cfg-fil"
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Log ud og tryk herefter på Ctrl-Alt-Bak"
-#: ../../any.pm:1
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "Open Firmware Delay"
-msgstr "Åben firmwareforsinkelse"
+msgid "Please relog into %s to activate the changes"
+msgstr "Log ind i %s igen for at aktivere ændringerne"
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
-msgstr "Ungarn"
+#: ../../standalone/drakTermServ_.c:239
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Konfiguration af Mandrake Terminalserver"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Zealand"
-msgstr "New Zealand"
+#: ../../standalone/drakTermServ_.c:253
+msgid "Enable Server"
+msgstr "Aktivér server"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Color configuration"
-msgstr "Farve-konfiguration"
+#: ../../standalone/drakTermServ_.c:260
+msgid "Disable Server"
+msgstr "Deaktivér server"
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Der er allerede nogle begrænsninger, og flere automatiske kontroller bliver "
-"kørt hver nat."
+#: ../../standalone/drakTermServ_.c:268
+msgid "Start Server"
+msgstr "Start server"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "please choose the date to restore"
-msgstr "Vælg dato for genskabning"
+#: ../../standalone/drakTermServ_.c:275
+msgid "Stop Server"
+msgstr "Stop server"
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
-msgstr "Hollandske Antiller"
+#: ../../standalone/drakTermServ_.c:283
+msgid "Etherboot Floppy/ISO"
+msgstr "Etherboot diskette/ISO"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr "Skifter fra ext2 til ext3"
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
+msgstr "Opstartsbilleder for netopstart"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
+#: ../../standalone/drakTermServ_.c:294
+msgid "Add/Del Users"
+msgstr "Tilføj/slet brugere"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Bladr til nyt genskabelseslager."
+#: ../../standalone/drakTermServ_.c:299
+msgid "Add/Del Clients"
+msgstr "Tilføj/slet klienter"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:328
+#, fuzzy
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\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 ""
+" opdateringer 2002 MandrakeSoft ved Stew Benedict <sbenedict\\@mandrakesoft."
+"com>"
+
+#: ../../standalone/drakTermServ_.c:332
+msgid ""
"\n"
-"Velkommen til vejlederen for printeropsætning\n"
"\n"
-"Denne vejleder lader dig installere lokale eller eksterne printere som skal "
-"bruges fra denne maskine, og også fra andre maskiner i netværket.\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
-"Den spørger dig om alle nødvendige oplysninger til at opsætte printere og "
-"giver dig adgang til alle tilgængelige printerdrivere, drivermuligheder og "
-"opkoblingstyper for printere."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and %d unknown printers"
-msgstr "og %d ukendte printere"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
msgstr ""
-"Tidlige Intel Pentium chips har en bug i deres flydendetalsprocessor, "
-"hvilket gør at de ikke kan lave den krævede precision når de udfører en "
-"flydendetalsdivision (FDIV)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-"Kvote til sikkerhedskopiering overskredet!\n"
-"%d MB brugt mod %d MB tildelt."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Ingen ISDN PCI-kort fundet. Vælg ét i næste skærmbillede."
-
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
-msgstr "Gb"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
-msgstr "Indtast et brugernavn"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
-msgstr "Skal det være muligt at starte fra CD?"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Simply reboot"
-msgstr ""
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid " enter `void' for void entry"
-msgstr " indtast 'void' for tom indgang"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr ""
-"Sikkerhedskopier på ikke-monterbart medie - Brug Katalog til at genskabe"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
-msgstr "Januar"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password history length"
-msgstr "Længde af historik for adgangskode"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Winmodem connection"
-msgstr "Winmodem-forbindelse"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:365
msgid ""
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\n"
"\n"
-"Congratulations, your printer is now installed and configured!\n"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\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 ""
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
"\n"
-"Tillykke, din printer er nu installeret og konfigureret!\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
"\n"
-"Du kan udskrive med 'Udskriv'-kommandoen i dit program (normalt i 'Filer'-"
-"menuen).\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
"\n"
-"Hvis du ønsker at tilføje, fjerne eller omdøbe en printer, eller hvis du "
-"ønsker at ændre på standard-indstillingerne (papirbakke, printkvalitet ...), "
-"så vælg 'Printer' i 'Udstyr'-afsnittet i Mandrake Kontrolcentret."
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "Nu kan du køre xawtv (under X Window!)!\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Ikke nok swap-plads til at gennemføre installationen, tilføj mere"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \n"
+"\n"
+msgstr ""
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "%s on %s"
-msgstr "%s på %s"
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
+msgstr "Start fra diskette"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid remote root login."
-msgstr "Tillad/forbyd ekstern root-logind."
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
+msgstr "Start fra ISO"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"GNU/Linux håndterer tiden i GMT (Greenwich Mean Time) og oversætter den til "
-"lokal tid ifølge den tidszone du har valgt. Hvis uret på bundkortet er sat "
-"til lokal tid, kan du deaktivere dette ved at fravælge '%s', hvilket vil "
-"lade GNU/Linux vide at systemuret og maskinens ur er i samme tidszone. Dette "
-"er nyttigt når maskinen også bruges til andre operativsystemer som Windows.\n"
-"\n"
-"Muligheden '%s' vil automatisk tilpasse uret ved at forbinde til en ekstern "
-"tidsserver på internettet. For at denne facilitet kan virke, skal du have en "
-"fungerende internetforbindelse. Det er bedst at vælge en tidsserver med en "
-"placering nær ved dig. Denne mulighed installerer faktisk en tidsserver som "
-"også kan bruges af andre maskiner på dit lokalnetværk."
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
+msgstr "Opbyg hele kernen -->"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
-msgstr "Kan ikke oprette logfil!"
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
+msgstr "Dette vil tage nogle få minutter."
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Hvad er din tidszone?"
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
+msgstr "Ingen kerne valgt!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Brug .backupignore-filer"
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
+msgstr "Byg enkel NIC -->"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
-msgstr "Guinea"
+#: ../../standalone/drakTermServ_.c:587
+msgid "No nic selected!"
+msgstr "Ingen NIC valgt!"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Systemet er nu forbundet til Internettet."
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
+msgstr "Byg alle kerner -->"
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Syd-Georgia og Syd-Sandwich-øerne"
+#: ../../standalone/drakTermServ_.c:604
+msgid "<-- Delete"
+msgstr "<-- Slet"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Japan (broadcast)"
+#: ../../standalone/drakTermServ_.c:611
+msgid "Delete All NBIs"
+msgstr "Slet alle NBI'er"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:668
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."
+"!!! 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 ""
-"Skærm\n"
-"\n"
-" Installationsprogrammet vil normalt automatisk finde ud af at konfigurere "
-"skærmen tilsluttet din maskine. Hvis dette ikke er den rigtige, kan du i "
-"denne liste vælge den skærm du faktisk har tilsluttet din maskine."
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "Mocambique"
+#: ../../standalone/drakTermServ_.c:673
+msgid "Add User -->"
+msgstr "Tilføj bruger -->"
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "Ikon"
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
+msgstr "<-- Slet bruger"
-#: ../../../move/tree/mdk_totem:1
+#: ../../standalone/drakTermServ_.c:720
#, fuzzy, c-format
-msgid "Kill those programs"
-msgstr "adgang til X-programmer"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Vælg hvad du vil sikkerhedkopiere"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 farver (8 bit)"
+msgid "type: %s"
+msgstr "Type: "
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "Læs-skriv"
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
+msgstr "Ingen opstartsbilleder oprettet!"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "Størrelse: %s\n"
+#: ../../standalone/drakTermServ_.c:773
+#, fuzzy
+msgid "Thin Client"
+msgstr "DHCP-Klient"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Hostname: "
-msgstr "Værtsnavn: "
+#: ../../standalone/drakTermServ_.c:775
+#, fuzzy
+msgid "Allow Thin Clients"
+msgstr "Tilføj/slet klienter"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a rule"
-msgstr "Tilføj en regel"
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
+msgstr "Tilføj klient -->"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Enhedsstørrelse %s\n"
+#: ../../standalone/drakTermServ_.c:821
+#, fuzzy
+msgid "<-- Edit Client"
+msgstr "<-- Slet klient"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
-msgstr "Byg fremtiden for Linux!"
+#: ../../standalone/drakTermServ_.c:837
+#, fuzzy
+msgid "Delete Client"
+msgstr "<-- Slet klient"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printer"
-msgstr "Lokal printer"
+#: ../../standalone/drakTermServ_.c:843
+msgid "dhcpd Config..."
+msgstr "Konfigurér dhcpd..."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Fejl ved adgang til diskette, kan ikke montere enhed %s"
+#: ../../standalone/drakTermServ_.c:876
+msgid ""
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
+msgstr ""
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr "[--file=minfil] [--word=mitord] [--explain=regudtryk] [--alert]"
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL opkobling"
+#: ../../standalone/drakTermServ_.c:901
+#, fuzzy
+msgid "Netmask:"
+msgstr "Netmaske"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Ingen konfiguration, klik på Vejleder eller Avanceret.\n"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
+msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Error!"
-msgstr "Fejl!"
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "cable connection detected"
-msgstr "Kabelopkobling detekteret"
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "Adgang nægtet ved overførsel af %s til %s"
+#: ../../standalone/drakTermServ_.c:929
+#, fuzzy
+msgid "Domain Name:"
+msgstr "Domænenavn"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Rapportér fejl"
+#: ../../standalone/drakTermServ_.c:937
+#, fuzzy
+msgid "Name Servers:"
+msgstr "Samba-server"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
-msgstr "Dominica"
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "Størrelsesændring"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Opløsninger %s\n"
+#: ../../standalone/drakTermServ_.c:1001
+msgid "dhcpd Server Configuration"
+msgstr "Konfiguration af dhcp-server"
-#: ../../install2.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:1002
+#, fuzzy
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)"
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-"Kunne ikke få adgang til kernemoduler svarende til din kerne (fil %s "
-"mangler), dette betyder normalt at din opstartsdiskette ikke stemmer overens "
-"med installationsmediet (lav en nyere opstartsdiskette)"
+"De fleste af disse værdier blev fundet\n"
+"fra dit kørende system. Du kan ændre dem efter behov."
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
msgstr ""
-"Vælg den rigtige port. For eksempel er navnet for COM1-porten under MS "
-"Windows 'ttyS0' under GNU/Linux."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "De følgende pakker vil blive afinstalleret"
+#: ../../standalone/drakTermServ_.c:1018
+msgid "Write Config"
+msgstr "Udskriv konfiguration"
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr "Lav forbindelse til Internettet"
+#: ../../standalone/drakTermServ_.c:1120
+msgid "Please insert floppy disk:"
+msgstr "Indsæt diskette:"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
-msgstr "Brug eksisterende partition"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
+msgstr "Kunne ikke få adgang til disketten!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "Canadisk (Québec)"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
+msgstr "Diskette kan fjernes nu"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Muse-enhed: %s\n"
+#: ../../standalone/drakTermServ_.c:1129
+msgid "No floppy drive available!"
+msgstr "Intet tilgængeligt diskettedrev!"
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakTermServ_.c:1138
#, c-format
-msgid "Reselect correct fonts"
-msgstr "Genvælg korrekte skrifttyper"
+msgid "Etherboot ISO image is %s"
+msgstr "Etherboot ISO-aftryk er %s"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Til sidst valgmulighederne\n"
-"\n"
-"Hér kan du vælge om du ønsker automatisk at skifte til en grafisk "
-"grænseflade ved opstart. Selvfølgelig vil du ønske at svare '%s', hvis din "
-"maskine skal bruges som server, eller hvis ikke lykkedes dig at få skærmen "
-"konfigureret."
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Noget gik galt! - er mkisofs installeret?"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert for firmaer"
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "Skal oprette /etc/dhcpd.conf først!"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
-" [everything]\n"
-" XFdrake [--noauto] skærm\n"
-" XFdrake opløsning"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Write protection"
-msgstr "Skrivebeskyttelse"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "You've not selected any font"
-msgstr "Du har ikke valgt nogen skrifttyper."
+#: ../../standalone/drakautoinst_.c:40
+msgid "Error!"
+msgstr "Fejl!"
-#: ../../steps.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, c-format
-msgid "Language"
-msgstr "Vælg sprog"
+msgid "I can't find needed image file `%s'."
+msgstr "Jeg kan ikke finde filen '%s' som jeg behøver."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer model selection"
-msgstr "Valg af printermodel"
+#: ../../standalone/drakautoinst_.c:43
+msgid "Auto Install Configurator"
+msgstr "Autoinstallationskonfigurering"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:44
msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
+"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 ""
-"Efter type-ændring af partition %s vil alle data på denne partition gå tabt"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ISDN adapters"
-msgstr "ISDN-kort"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekunder"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Indsæt en tom diskette i drev %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "En korrekt URI skal opgives!"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr "Fandt \"%s\" grænsesnit, ønsker du at bruge det?"
+"Du er ved at konfigurere en automatisk installationsdiskette. Denne mulighed "
+"er lidt farlig, og må bruges med forsigtighed.\n"
+"\n"
+"Med denne mulighed vil du igen kunne køre installationen du gennemførte på "
+"denne maskine, med muligheden for at selv kunne ændre på nogen af "
+"indstillingerne.\n"
+"\n"
+"For maksimal sikkerhed vil partitioneringen og formateringen aldrig blive "
+"gennemført automatisk, uanset hvad du valgte under installationen.\n"
+"\n"
+"Ønsker du at fortsætte?"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
-msgstr "Rekonfigurér grænsesnit og DHCP-server"
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
+msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound configuration"
-msgstr "Lyd-konfiguration"
+#: ../../standalone/drakautoinst_.c:62
+#, fuzzy
+msgid "replay"
+msgstr "Afspil igen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
-msgstr "Fototestside"
+#: ../../standalone/drakautoinst_.c:66
+msgid "Automatic Steps Configuration"
+msgstr "Konfiguration af automatiske skridt"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Brugerdefineret disk-opdeling"
+#: ../../standalone/drakautoinst_.c:67
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
+msgstr ""
+"Vælg for hvert skridt om det skal være som under installationen, eller "
+"manuelt"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Indtast printernavn og kommentarer"
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+msgid "Creating auto install floppy"
+msgstr "Laver autoinstallations-diskette"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:139
msgid ""
-"The following printers\n"
"\n"
-"%s%s\n"
-"are directly connected to your system"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-"De følgende printere\n"
"\n"
-"%s%s\n"
-"er direkte tilsluttet til dit system"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "You don't have any winmodem"
-msgstr "Du har ikke noget winmodem"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: %s"
-msgstr "type: %s"
+"Velkommen.\n"
+"\n"
+"Parametrene for autokonfigurationen kan ses i afsnittene til venstre"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "Slovakisk (QWERTY)"
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
+msgstr "Tillykke!"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:235
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."
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
msgstr ""
-"Dette bør være en kommasepareret liste af lokale brugere eller epost-"
-"adresser som du ønsker at sende resultatet af sikkerhedskopieringen til. Du "
-"har brug for en fungerende opsætning af en epostoverførselsagent på dit "
-"system."
-
-#: ../../standalone/draksound:1
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Intet lydkort genkendt!"
+"Disketten er blevet genereret.\n"
+"Du kan nu gennemføre installationen igen."
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "Muse-port"
+#: ../../standalone/drakautoinst_.c:273
+msgid "Auto Install"
+msgstr "Autoinstallation"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
-msgstr "Tjek for usikrede konti"
+#: ../../standalone/drakautoinst_.c:343
+msgid "Add an item"
+msgstr "Tilføj et element"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-"Skal genstarte Display Manager for at de fulde ændringer kan tage effekt. \n"
-"(service dm restart - fra konsollen)"
+#: ../../standalone/drakautoinst_.c:350
+msgid "Remove the last item"
+msgstr "Fjern det sidste element"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Ftp Server"
-msgstr "FTP-server"
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
+msgstr "Cron er ikke tilgængelig endnu som ikke-root"
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr "Uganda"
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
+msgstr "ADVARSEL"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
-msgstr "Konvertering af %s-skrifttyper"
+#: ../../standalone/drakbackup_.c:691
+msgid "FATAL"
+msgstr "FATAL"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "bustypen som musen er forbundet til"
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
+msgstr "INFORMATION"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:704
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"
+" DrakBackup Report \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 ""
-"Som en opsummering vil DrakX give dig en oversigt over information\n"
-"som den har om dit system. Afhængig af installeret maskinel kan du have\n"
-"et eller flere af de følgende punkter. Hvert punkt består af en overskrift\n"
-"fulgt af en kort opsummering af den nuværende konfiguration. Klik på\n"
-"den tilsvarende \"%s\"-knap for at ændre på opsætningen.\n"
"\n"
-" * \"%s\": Tjek at din tastaturopsætning er korrekt og ændr om nødvendigt.\n"
+" DrakBackup Rapport \n"
"\n"
-" * \"%s\": Tjek at du har valgt korrekt land. Hvis du ikke er i dette land,\n"
-"så klik på \"%s\"-knappen og vælg et andet land. Hvis dit land ikke er i\n"
-"listen, så klik på \"%s\"-knappen for at få en fuldstændig liste.\n"
+
+#: ../../standalone/drakbackup_.c:705
+msgid ""
"\n"
-" ' \"%s\": DrakX bestemmer din tidszone ud fra hvilket land du har valgt.\n"
-"Du kan klikke på \"%s\" her, hvis dette ikke er korrekt.\n"
+" DrakBackup Daemon Report\n"
"\n"
-" * \"%s\" :Tjek museopsætningen og klik på knappen for at ændre om "
-"nødvendigt.\n"
"\n"
-" * \"%s\": Ved at klikke på \"%s\"-knappen åbnes printeropsætnings-\n"
-"hjælperen. Konsultér det tilhørende kapitel i opstartsguiden for mere\n"
-"information om hvordan en printer kan sættes op. Grænsefladen som er vist\n"
-"dér ligner den som benyttes under installationen.\n"
+msgstr ""
"\n"
-" * '%s': Hvis et lydkort er blevet fundet på dit system, vil det blive vist "
-"hér. Hvis du bemærker at det viste lydkort ikke er det som faktisk er til "
-"stede på systemet, kan du klikke på knappen og vælge en anden driver.\n"
+" DrakBackup Dæmon-Rapport\n"
"\n"
-" * \"%s\": DrakX vil opsætte din grafiske grænseflade i opløsning\n"
-"800x600 eller 1024x768. Hvis det ikke passer til dine behov, så klik på \"%s"
-"\"-\n"
-"knappen for at ændre på opsætningen.\n"
"\n"
-" * \"%s\": Hvis et TV-kort er fundet i din maskine, er det vist her. Hvis du "
-"har\n"
-"et TV-kort som ikke er fundet, så klik \"%s\" for at sætte det op manuelt.\n"
+
+#: ../../standalone/drakbackup_.c:709
+msgid ""
"\n"
-" * \"%s\": Hvis der er fundet et ISDN-kort, vil det vises her. Du kan klikke "
-"på\n"
-"\"%s\" for at ændre på parameterne til kortet.\n"
+" DrakBackup Report Details\n"
"\n"
-" * \"%s\": Vælg dette for at ændre på internetforbindelsen eller den lokale\n"
-"netværksopsætning.\n"
"\n"
-" * \"%s\": Du kan her ændre på sikkerhedsniveauet som er defineret "
-"tidligere.\n"
+msgstr ""
"\n"
-" * \"%s\": Hvis du skal koble din maskine direkte til internet, er det en "
-"god idé\n"
-"at beskytte sig mod angreb med en brandmur. Begyndervejledningen har mere "
-"om\n"
-"dette.\n"
+" DrakBackup Rapportdetaljer\n"
"\n"
-" * \"%s\": Hvis du vil ændre på konfigurationen for opstartsindlæseren,\n"
-"så klik på denne knap. Dette bør forbeholdes avancerede brugere.\n"
"\n"
-" * \"%s\": Her kan du bestemme hvilke tjenester som skal startes på din\n"
-"maskine. Hvis du skal bruge maskinen som server er det en god idé at "
-"kontrollere dette."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr "Comorerne"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "May"
-msgstr "Maj"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yaboot mode"
-msgstr "Yaboot modus"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Standard 3-knaps mus"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
-msgstr "USA (kabel)"
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+msgid "Total progess"
+msgstr "Total fremdrift"
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakbackup_.c:785
#, c-format
msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+"%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 ""
-"Kan ikke genstarte LiLo!\n"
-"Start \"lilo\" som root på kommandolinjen for at færdiggøre installationen "
-"af Lilo-tema."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Vælg et andet medie at genskabe fra"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Software Manager"
-msgstr "Programadministration"
+"%s-eksisterer, skal den fjernes?\n"
+"\n"
+"Advarsel: Hvis du allerede har lavet denne proces skal du nok\n"
+" fjerne indgangen fra authorized_keys på serveren."
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
-msgstr "Indsend igen"
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
+msgstr "Det kan tage lidt tid at generere nøglerne."
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:801
#, c-format
-msgid "CD in place - continue."
-msgstr "Cd'en er på plads - fortsæt."
+msgid "ERROR: Cannot spawn %s."
+msgstr "Fejl: Kan ikke starte %s."
-#: ../../common.pm:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid "KB"
-msgstr "Kb"
+msgid "No password prompt on %s at port %s"
+msgstr "Ingen forespørgsel om adgangskode på %s ved port %s"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:819
#, c-format
-msgid "Network & Internet"
-msgstr "Netværk og Internet"
+msgid "Bad password on %s"
+msgstr "Dårlig adgangskode på %s"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Litauisk \"fonetisk\" QWERTY"
+msgid "Permission denied transferring %s to %s"
+msgstr "Adgang nægtet ved overførsel af %s til %s"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup_.c:821
#, c-format
-msgid "Net Boot Images"
-msgstr "Opstartsbilleder for netopstart"
+msgid "Can't find %s on %s"
+msgstr "Kan ikke finde %s på %s"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid "Sharing of local scanners"
-msgstr "Deling af lokale skannere"
+msgid "%s not responding"
+msgstr "%s svarer ikke"
-#: ../../Xconfig/monitor.pm:1
+#: ../../standalone/drakbackup_.c:828
#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
msgstr ""
-"Undersøgning for Plug'n Play mislykkedes. Vælg venligst den rigtige skærm"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Detect again USB key"
-msgstr "Søg igen efter USB-nøgle"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Services and deamons"
-msgstr "Tjenester og dæmoner"
+"Overførsel klar.\n"
+"Du vil måske kontrollere at du kan logge ind på serveren med:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"uden at blive spurgt om en adgangskode."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Eksternt værtsnavn mangler"
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
+msgstr "WebDAV eksternt netsted allerede synkroniseret!"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "with /usr"
-msgstr "med /usr"
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
+msgstr "WebDAV overførsel mislykkedes!"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Network"
-msgstr "Netværk"
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
+msgstr "Ingen CDR/DVDR i drevet!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
-"Auto-opdagelse af printere tilsluttet maskiner der køre Microsoft Windows"
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
+msgstr "Ser ikke ud til at være et skrivbart medie!"
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "Adgangskoden er for simpel"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
+msgstr "Ikke sletbart medie!"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "Chkconfig følger msec regler"
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
+msgstr "Det kan tage lidt tid at slette mediet."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovakisk (QWERTZ)"
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
+msgstr "Problem med rettigheder ved adgang til CD."
-#: ../advertising/06-development.pl:1
+#: ../../standalone/drakbackup_.c:1060
#, 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."
-msgstr ""
-"At rette og nyudvikle i forskellige sprog som Perl, Python, C og C++ har "
-"aldrig før været så nemt, takket være GNU gcc 3 og de bedste "
-"udviklingsmiljøer baseret på åben kildekode."
+msgid "No tape in %s!"
+msgstr "Intet bånd i %s."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No devices found"
-msgstr "Ingen enheder fundet"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
+msgstr "Sikkerhedskopiér systemfiler..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Virkelig minimal installation (specielt ingen urpmi)"
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+msgid "Hard Disk Backup files..."
+msgstr "Sikkerhedskopifiler for disk..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use daemon"
-msgstr "Brug dæmon"
+#: ../../standalone/drakbackup_.c:1236
+msgid "Backup User files..."
+msgstr "Sikkerhedskopiér brugerfiler..."
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "Identifikation"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
+msgstr "Fremdrift for sikkerhedskopiering af disk..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Tilføj denne printer til Star Office/OpenOffice.org/GIMP.org"
+#: ../../standalone/drakbackup_.c:1290
+msgid "Backup Other files..."
+msgstr "Sikkerhedskopiér andre filer..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Yderligere CUPS-servere: "
+#: ../../standalone/drakbackup_.c:1296
+msgid "No changes to backup!"
+msgstr "Ingen ændringer til sikkerhedskopi!"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, 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."
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-"Vælg en af de fundne printere fra listen eller angiv værtsnavnet eller IP-"
-"adressen og eventuelt portnummer (standard er 9100) i indtastningsfelterne."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr "Hvor ønsker du at montere %s?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "Algeriet"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network"
-msgstr "Genskab via netværk"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
-msgstr "Brug tar med bzip2 (i stedet for tar med gzip) "
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd-størrelse"
+"\n"
+"Drakbackup aktiviteter via %s:\n"
+"\n"
-#: ../../help.pm:1
+#: ../../standalone/drakbackup_.c:1319
#, 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."
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-"I tilfælde af at forskellige servere er tilgængelige til dit kort, med eller "
-"uden 3D-accelleration, bliver du foreslået at vælge den server der bedst "
-"opfylder dine behov."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tSikkerhedskopiering bruger tar og gzip\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set as default"
-msgstr "Sæt som standard"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 Mb"
-
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on this machine"
-msgstr "Konfigureret på denne maskine"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Begge kontrol-taster samtidigt"
-
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - vis denne hjælpetekst \n"
+"filliste sendt via FTP: %s\n"
+" "
-#: ../../standalone.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1322
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"
+"\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
msgstr ""
-"[OPTION]...\n"
-" --no-confirmation spørg ikke det første bekræftelsesspørgsmål i "
-"MandrakeUpdate-tilstand\n"
-" --no-verify-rpm efterprøv ikke pakke-signaturer\n"
-" --changelog-first vís changelog før filliste i beskrivelsesvinduet\n"
-" --merge-all-rpmnew foreslå at flette alle .rpmnew/.rpmsave filer fundet"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Sætter standard printer..."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Grænseflade %s (benytter modul %s)"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Generating preview ..."
-msgstr "Genererer smugkig ..."
+"\n"
+"FTP forbindelsesproblem: Det var ikke muligt at sende dine backupfiler via "
+"FTP.\n"
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1340
msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-"Frek bør have endelsen k, M or G (for eksempel, \"2.46G\" for 2.46 GHz "
-"frekvens), eller tilføj nok '0'."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ignore"
-msgstr "ignorér"
+"\n"
+"Drakbackup aktiviteter via CD:\n"
+"\n"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1345
msgid ""
-"Allow/Forbid X connections:\n"
"\n"
-"- ALL (all connections are allowed),\n"
-"\n"
-"- LOCAL (only connection from local machine),\n"
+"Drakbackup activities via tape:\n"
"\n"
-"- NONE (no connection)."
msgstr ""
-"Tillad/forbyd X-forbindelser.\n"
"\n"
-"- ALL (alle forbindelser er tilladt),\n"
-"\n"
-"- LOCAL (kun forbindelse fra lokal maskine),\n"
+"Drakbackup aktiviteter via bånd:\n"
"\n"
-"- NONE (ingen forbindelse)."
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", multi-funktions-enhed på parallel port #%s"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "seriel"
+#: ../../standalone/drakbackup_.c:1354
+msgid " Error during mail sending. \n"
+msgstr " Fejl ved afsendelse af post. \n"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
-msgstr "DVD-ROM"
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
+msgstr "Kan ikke oprette katalog!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgisk (Latin layout)"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+msgid "File Selection"
+msgstr "Valg af filer"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
-msgstr "Få fat i de bedste sager fra Mandrake Linux strategiske partnere"
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
+msgstr "Vælg filerne eller katalogerne og klik på 'Tilføj'"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1573
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+"\n"
+"Please check all options that you need.\n"
msgstr ""
-"Du kan nu angive parametre til modul %s.\n"
-"Bemærk at alle adresser bør indtastes med foranstillet 0x, fx '0x123'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "Kenya"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Benyt ``Afmontér'' først"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing mtools packages..."
-msgstr "Installerer mtools-pakker..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a root partition"
-msgstr "Du skal angive en root-partition"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "first step creation"
-msgstr "opretter første trin"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Begge taster samtidigt"
+"\n"
+"Markér alle muligheder som du behøver.\n"
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1574
msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
+"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-" --id <id_label> - indlæs html-hjælpesiden som refererer til id_label\n"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select a scanner model"
-msgstr "Vælg en skannermodel"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
-msgstr "Acceptér/afvis falske IPv4-fejlmeddelelser."
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
+"Disse valgmuligheder kan sikkerhedskopiere og genskabe alle filer i dit /etc "
+"katalog.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Drakbackup konfiguration"
+#: ../../standalone/drakbackup_.c:1575
+msgid "Backup your System files. (/etc directory)"
+msgstr "Lav sikkerhedkopi af dine systemfiler. (/etc kataloget)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr "Gem som..."
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
+msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr "Korea (Nord)"
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
+msgstr "Medtag ikke kritiske filer (passwd, group, fstab)"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1578
msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
msgstr ""
-"Dette grænsesnit er ikke blevet konfigureret endnu.\n"
-"Start konfigurationsvejlederen i hovedvinduet"
-
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System configuration"
-msgstr "Systemkonfiguration"
-
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "Autologin"
+"Med denne valgmulighed vil du være i stand til at kunne genskabe\n"
+"enhver version af dit /etc katalog."
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin Password"
-msgstr "Adgangskode for domæneadministrator"
+#: ../../standalone/drakbackup_.c:1595
+msgid "Please check all users that you want to include in your backup."
+msgstr "Markér alle brugere som du vil have med i din sikkerhedskopi."
-#: ../advertising/05-desktop.pl:1
-#, 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, ..."
-msgstr ""
-"Perfekt tilpasning af din maskine takket være de 11 Mandrake Linux-"
-"vinduesbrugergrænseflader hvor alt kan tilpasses: KDE 3.1, Gnome 2.2, Window "
-"Maker..."
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
+msgstr "Medtag ikke cache for netlæser"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer ..."
-msgstr "Konfigurerer printer ..."
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
+msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, 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)"
-msgstr ""
-"For at sikre dataintegritet efter ændring af størrelse på partitioner \n"
-"vil filsystemtjek blive kørt ved din næste opstart af Windows(TM)"
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+msgid "Remove Selected"
+msgstr "Fjern valgte"
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "Mb"
+#: ../../standalone/drakbackup_.c:1679
+msgid "Windows (FAT32)"
+msgstr "Windows (FAT32)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
-msgstr "hvis sat til ja, så kør nogle tjek på rpm-databasen."
+#: ../../standalone/drakbackup_.c:1714
+msgid "Users"
+msgstr "Brugere"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr "Jomfruøerne (britiske)"
+#: ../../standalone/drakbackup_.c:1740
+msgid "Use network connection to backup"
+msgstr "Brug netværksforbindelse til sikkerhedskopiering"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bermuda"
-msgstr "Bermuda"
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
+msgstr "Netmetode:"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
-msgstr "Klik her hvis du er sikker."
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
+msgstr "Brug Expect for SSH"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1747
msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-"ingen konfigurationsfil fundet \n"
-"klik på Vejleder eller Avanceret."
+"Opret/overfør\n"
+"sikkerhedskopieringsnøgler for SSH"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1748
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."
+" Transfer \n"
+"Now"
msgstr ""
-"Her er listet de eksisterende Linux-partitioner genkendt på din disk. Du kan "
-"beholde valgene gjort af vejlederen, de er velegnede til almindelig brug. "
-"Hvis du ændrer disse valg skal du i det mindste definere en rod-partition "
-"'/'. Lad være med at vælge en for lille partition, ellers vil du ikke kunne "
-"installere nok programmel. Hvis du ønsker at lagre data på en separat "
-"partition, skal du også vælge en '/home' (kun muligt hvis du har mere end én "
-"Linux-partition). \n"
-"Hver partition er listet som følger: 'Navn', 'Kapacitet'.\n"
-"\n"
-"'Navn' er kodet som følger: 'drevtype', 'drevnummer', "
-"'partitionsnummer' (for eksempel '/hda1').\n"
-"\n"
-"'drevtype' er 'hd' hvis dit diskdrev er et IDE drev, og 'sd' hvis det er et "
-"SCSI drev.\n"
-"\n"
-"'drevnummer' er altid et bogstav efter 'hd' eller 'sd'. For IDE drev:\n"
-"\n"
-" * 'a' betyder 'hoved-drev på den primære IDE controller',\n"
-"\n"
-" * 'b' betyder 'slave-drev på den primære IDE controller',\n"
-"\n"
-" * 'c' betyder 'hoved-drev på den sækundære IDE controller',\n"
-"\n"
-" * 'd' betyder 'slave-drev på den sækundære IDE controller'.\n"
-"\n"
-"For SCSI drev betyder 'a' det 'første drev', 'b' betyder det 'andet drev', "
-"osv."
+" Overfør \n"
+"Nu"
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Remove"
-msgstr "Fjern"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr "utopia 25"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
-msgstr "kanalisér opgave ind i kommando"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "Fjern loopback-filen?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "Elfenbenskysten"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "Nyt dynamisk enhedsnavn genereret af den kørende kernes devfs"
-
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "Ja"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Hvilken protokol ønsker du at bruge?"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Progress"
-msgstr "Fremskridt for genskabelse"
+#: ../../standalone/drakbackup_.c:1749
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
+msgstr ""
+"Andet (ikke drakbackup)\n"
+"nøglerne findes allerede"
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
-msgstr "Estland"
+#: ../../standalone/drakbackup_.c:1753
+msgid "Please enter the host name or IP."
+msgstr "Indtast værtsnavn eller IP."
-#: ../../partition_table.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1758
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."
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-"Du har plads tilovers i din partitionstabel, men jeg kan ikke udnytte den.\n"
-"Den eneste løsning er at flytte dine primære partitioner, således at\n"
-"\"hullet\" bliver placeret ved siden af de udvidede partitioner."
+"Indtast kataloget (eller modulet) hvori\n"
+" sikkerhedskopien skal lægges på denne maskine."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr "Vælg værten på hvilken de lokale skannere skal gøres tilgængelige: "
+#: ../../standalone/drakbackup_.c:1763
+msgid "Please enter your login"
+msgstr "Indtast dit brugernavn"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Channel"
-msgstr "Kanal"
+#: ../../standalone/drakbackup_.c:1768
+msgid "Please enter your password"
+msgstr "Indtast din adgangskode"
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Add"
-msgstr "Tilføj"
+#: ../../standalone/drakbackup_.c:1774
+msgid "Remember this password"
+msgstr "Husk denne adgangskode"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr " Fejl ved afsendelse af post. \n"
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
+msgstr "Behøver værtsnavn, brugernavn og adgangskode!"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "Tastatur"
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
+msgstr "Brug CD/DVDROM til sikkerhedskopiering"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1882
msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-"Indsæt cd'en med volumetiket %s\n"
-" i cd-enheden monteret på /mnt/cdrom"
+"Vælg cd/dvd-enhed.\n"
+"(Tryk Enter for at overføre indstillinger til andre felter.\n"
+"Dette felt behøves ikke, det er kun et værktøj for at udfylde formularen.)"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-"Hastighed bør have endelsen k, M or G (for eksempel, \"11M\" for 11M), eller "
-"tilføj nok '0'."
+#: ../../standalone/drakbackup_.c:1887
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Vælg cd/dvd-mediastørrelse"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Vælg den opkobling, du ønsker at konfigurere"
+#: ../../standalone/drakbackup_.c:1893
+msgid "Please check for multisession CD"
+msgstr "Markér om du bruger en multisessions-cd"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Vent venligst, sætter sikkerhedsniveau..."
+#: ../../standalone/drakbackup_.c:1899
+msgid "Please check if you are using CDRW media"
+msgstr "Markér om du bruger et CDRW-medie"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfigurerer netværksenheden %s"
+#: ../../standalone/drakbackup_.c:1905
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Markér om du vil slette dit CDRW-medie (1. session"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
-msgstr "aktiveret"
+#: ../../standalone/drakbackup_.c:1906
+msgid " Erase Now "
+msgstr " Slet nu "
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
-msgstr "Vælg hvilken netværksgrænseflade som skal bruges til dhcp-serveren."
+#: ../../standalone/drakbackup_.c:1912
+msgid "Please check if you are using a DVDR device"
+msgstr "Markér om du bruger en CDRW-enhed"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Leder efter pakker som skal opgraderes"
+#: ../../standalone/drakbackup_.c:1918
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Markér om du bruger en DVDRAM-enhed"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
-msgstr "Monteringssti: "
+#: ../../standalone/drakbackup_.c:1931
+msgid ""
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
+msgstr ""
+"Indtast din CD-brænders enhedsnavn\n"
+" fx: 0,1,0"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
-msgstr "fortolk alle skrifttyper"
+#: ../../standalone/drakbackup_.c:1964
+msgid "No CD device defined!"
+msgstr "Ingen cd-enhed defineret!"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid direct root login."
-msgstr "Tillad/forbyd direkte root-logind."
+#: ../../standalone/drakbackup_.c:2012
+msgid "Use tape to backup"
+msgstr "brug bånd til sikkerhedskopieringen"
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr "Acceptér/afvis rundkastet icmp echo."
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
+msgstr "Indtast endhedsnavnet der skal bruges til sikkerhedskopiering"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
-msgstr "Med X"
+#: ../../standalone/drakbackup_.c:2021
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Markér om du vil bruge den ikke-tilbagespolende enhed."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Flerskærms-konfiguration"
+#: ../../standalone/drakbackup_.c:2027
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Markér om du vil slette dit bånd før sikkerhedskopi laves"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "No browser available! Please install one"
-msgstr "Ingen netlæser til stede! Installér venligst én"
+#: ../../standalone/drakbackup_.c:2033
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Markér om du vil udskyde dit bånd før sikkerhedskopi laves"
-#: ../../Xconfig/main.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
msgstr ""
-"Behold ændringer?\n"
-"Nuværende konfiguration er:\n"
-"\n"
-"%s"
+"Indtast den maksimale størrelse\n"
+" tilladt for Drakbackup"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Du kan ikke bruge ReiserFS på partitioner mindre end 32Mb"
+#: ../../standalone/drakbackup_.c:2103
+msgid "Please enter the directory to save to:"
+msgstr "Indtast kataloget hvortil der skal gemmes:"
-#: ../../services.pm:1
-#, 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)."
-msgstr ""
-"rwho protokollen tillader eksterne brugere at hente en liste over alle "
-"brugere der er logget ind på en maskine, der kører rwho dæmonen (minder om "
-"finger)."
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+msgid "Use quota for backup files."
+msgstr "Brug kvoter for sikkerhedskopieringsfiler"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "Domænenavn"
+#: ../../standalone/drakbackup_.c:2180
+msgid "Network"
+msgstr "Netværk"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Deling af lokale printere"
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
+msgstr "CDROM / DVDROM"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
-msgstr "Aktivér/deaktivér libsafe hvis libsafe findes på systemet."
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
+msgstr "Diskdrev / NFS"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Available printers"
-msgstr "Tilgængelige printer"
+#: ../../standalone/drakbackup_.c:2195
+msgid "Tape"
+msgstr "Bånd"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "NO"
-msgstr "NEJ"
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
+msgstr "timeligt"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "Tom"
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
+msgstr "dagligt"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
-msgstr "tekstbredde"
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
+msgstr "ugentligt"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Hvor ønsker du at montere partitionen %s?"
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
+msgstr "månedligt"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Normal udlejningsperiode (i sekunder)"
+#: ../../standalone/drakbackup_.c:2229
+msgid "Use daemon"
+msgstr "Brug dæmon"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2234
msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
+"Please choose the time \n"
+"interval between each backup"
msgstr ""
-"Vi skal nu konfigurere opkoblingen '%s'.\n"
-"\n"
-"\n"
-"Tryk '%s' for at fortsætte."
+"Vælg tidsinterval mellem\n"
+"hver sikkerhedskopiering"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Grænseflade '%s'"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Med basal dokumentation (anbefalet!)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr "1 knap"
+#: ../../standalone/drakbackup_.c:2240
+msgid ""
+"Please choose the\n"
+"media for backup."
+msgstr ""
+"Vælg mediet for\n"
+"sikkerhedskopiering."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2247
msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
"\n"
-"There are %d unknown printers directly connected to your system"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-"\n"
-"Der findes %d ukendte printere direkte tilsluttet til dit system"
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Test"
-msgstr "Afprøv"
+"Forsikr dig gerne om at cron-dæmonen er med i dine tjenester.\n"
+"Bemærk at alle 'net'-medier også bruger disken for nærværende."
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea"
-msgstr "Korea"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
+msgstr "Send epost-rapport efter hver sikkerhedskopiering til:"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Dit valg? (standard '%s'%s) "
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr "Slet tar-filer på disken efter sikkerhedskopiering til andet medie."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer"
-msgstr "Rå printer"
+#: ../../standalone/drakbackup_.c:2324
+msgid "What"
+msgstr "Hvad"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "officielt producentnavn på processoren"
+#: ../../standalone/drakbackup_.c:2329
+msgid "Where"
+msgstr "Hvor"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
-msgstr "Ubrugelig uden terminalserver"
+#: ../../standalone/drakbackup_.c:2334
+msgid "When"
+msgstr "Hvornår"
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Vendor"
-msgstr "Producent"
+#: ../../standalone/drakbackup_.c:2339
+msgid "More Options"
+msgstr "Flere muligheder"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s"
-msgstr "Grænseflade %s"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+msgid "Drakbackup Configuration"
+msgstr "Drakbackup konfiguration"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "Konfigurér mus"
+#: ../../standalone/drakbackup_.c:2376
+msgid "Please choose where you want to backup"
+msgstr "Vælg hvor du ønsker at sikkerhedskopiere"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
-msgstr "Vælg monterings-stierne"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
+msgstr "på diskdrev"
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr "O.k."
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
+msgstr "over netværk"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslavisk (latinsk)"
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
+msgstr "på cd-rom"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "Installerer"
+#: ../../standalone/drakbackup_.c:2406
+msgid "on Tape Device"
+msgstr "på båndenhed"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan med hjul-emulering"
+#: ../../standalone/drakbackup_.c:2449
+msgid "Please choose what you want to backup"
+msgstr "Vælg hvad du vil sikkerhedkopiere"
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
-msgstr "Start userdrake"
+#: ../../standalone/drakbackup_.c:2450
+msgid "Backup system"
+msgstr "Lav sikkerhedskopi af system"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Er dette en nyinstallation eller en opgradering?"
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
+msgstr "Lav sikkerhedskopi af brugere"
-#: ../../help.pm:1
-#, c-format
-msgid "ISDN card"
-msgstr "ISDN-kort"
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
+msgstr "Håndpluk bruger"
-#: ../advertising/02-community.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2537
msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
+"\n"
+"Backup Sources: \n"
msgstr ""
-"For at dele din viden og hjælpe med at bygge Linux-værktøjer kan du være med "
-"i diskussionsfora, som du finder på vores 'Samfunds'-netsider."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-Diskdrev.\n"
+"\n"
+"Kilder for sikkerhedskopi: \n"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2538
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"
+"- System Files:\n"
+msgstr ""
"\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"
+"- Systemfiler:\n"
+
+#: ../../standalone/drakbackup_.c:2540
+msgid ""
"\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."
+"- User Files:\n"
msgstr ""
-"Dette trin bliver kun aktiveret hvis der bliver fundet en eksisterende\n"
-"GNU/Linux partition på din maskine.\n"
"\n"
-"DrakX skal vide om du vil udføre en ny installation eller en opgradering\n"
-"af et eksisterende Mandrake Linux-system.\n"
-"\n"
-" * \"%s\": Dette vil stort sét slette hele det gamle system. Hvis du\n"
-"ønsker at ændre hvordan diskene bliver partitioneret, eller ændre på\n"
-"filsystemene, bør du vælge dette. Afhængigt af hvordan du partitionerer kan\n"
-"nogen af de gamle data eventuelt beholdes. \n"
+"- Brugerfiler:\n"
+
+#: ../../standalone/drakbackup_.c:2542
+msgid ""
"\n"
-" * \"%s\": Denne installationsklasse lader dig opgradere pakkene som\n"
-"er installeret på dit nuværende Mandrake Linux-system. Dine nuværende\n"
-"partitioner og brugerdata bliver ikke berørt. De fleste andre "
-"konfigurationstrin\n"
-"forbliver tilgængelige, i lighed med en standardinstallation.\n"
+"- Other Files:\n"
+msgstr ""
"\n"
-"\"Opgradér\"-valget bør fungere på Mandrake Linux-systemer som kører\n"
-"version 8.1 eller nyere. Opgradering af versioner tidligere end 8.1 er ikke\n"
-"anbefalet. "
+"- Andre filer:\n"
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakbackup_.c:2544
#, 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"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
-" Copyright © 2001-2002 ved MandrakeSoft \n"
-"\tDUPONT Sebastien (oprindelig version)\n"
-" CHAUMETTE Damien <dchaumette@mandrakesoft.com>\n"
-"\n"
-" Dette program er frit programmel; du kan redistribuere det og/eller ændre\n"
-" det i henhold til betingelserne i GNU General Public License, som "
-"publiceret af\n"
-" Free Software Foundation; enten version 2, eller enhver senere udgave\n"
-" af licensen.\n"
-"\n"
-" Dette program er udgivet i håb om at det vil være anvendeligt, men\n"
-" UDEN NOGEN FORM FOR GARANTI; heller ikke garanti om\n"
-" SALGBARHED eller EGNETHED TIL ET BESTEMT FORMÅL. Se GNU\n"
-" General Public License for flere detaljer.\n"
+"- Gem til diskdrev på stien: %s\n"
+
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
"\n"
-" Du skulle have modtaget en kopi af GNU General Public License\n"
-" sammen med dette program; hvis ikke, skriv til Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
"\n"
-" Tak til:\n"
-" - pfm2afm: \n"
-"\t af Ken Borgendale:\n"
-"\t Konvertér en Windows .pfm-fil til en .afm (Adobe Font Metrics)\n"
-" - type1inst:\n"
-"\t af James Macnicol: \n"
-"\t type1inst genererer filerne fonts.dir fonts.scale & Fontmap.\n"
-" - ttf2pt1: \n"
-"\t af Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Konvertér ttf-skrifttypefiler til afm- og pfb-skrifttyper\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Printer på ekstern CUPS server"
+"- Slet tar-filer på disken efter sikkerhedskopiering.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2553
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+"\n"
+"- Burn to CD"
msgstr ""
-"Kunne ikke fjerne printeren \"%s\" fra Star Office/OpenOffice.org/GIMP.org."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
-msgstr "Her hvis ikke."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DHCP host name"
-msgstr "DHCP-værtsnavn"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Største udlejningsperiode (i sekunder)"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Vælg hvilken seriel port din mus er forbundet til."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
-msgstr "Fungerer det korrekt?"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
-msgstr "Moner filsystem skrivebeskyttet"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "Ringe"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result by mail"
-msgstr "Rapportér kontrolresultat per epost."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
-msgstr "Grenada"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
-msgstr "Begyndelsen på DHCP-området"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "Usikker"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "SSH server"
-msgstr "SSH-server"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektorer"
-
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "Nej"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Kannada"
-msgstr "Kannada"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
-msgstr "Kunne ikke finde nogen skrifttyper.\n"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Vil du have at Bak-tasten giver Delete i konsollen?"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Lodret opdateringsfrekvens"
-
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Går til trin `%s'\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niger"
-msgstr "Niger"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing %s ..."
-msgstr "Fjerner %s ..."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No printer"
-msgstr "Ingen printer"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "alert configuration"
-msgstr "advarsels-konfiguration"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "NetWare printer-parametre"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "%s BootSplash (%s) preview"
-msgstr "%s smugkig af opstartsskærm (%s)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "February"
-msgstr "Februar"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
-msgstr "Generelt"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
-msgstr "/etc/issue* eksisterer"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "Tilføj bruger"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netværkskonfiguration (%d adaptorer)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "April"
-msgstr "April"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Deactivate now"
-msgstr "Deaktivér nu"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Krævet pakke %s mangler"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Filippinerne"
+"\n"
+"- Brænd på CD"
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "O.k."
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
+msgstr "RW"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup_.c:2555
#, c-format
-msgid "drakTermServ Overview"
-msgstr "drakTermServ-oversigt"
+msgid " on device: %s"
+msgstr " på enhed: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
-msgstr "Printerkø-navn"
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
+msgstr " (multi-session)"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:2557
#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Ønsker du at bruge aboot?"
+msgid ""
+"\n"
+"- Save to Tape on device: %s"
+msgstr ""
+"\n"
+"- Gem på bånd på enhed: %s"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "Belarusian"
-msgstr "Hviderussisk"
+msgid "\t\tErase=%s"
+msgstr "\t\tErase=%s"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2561
#, c-format
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"\n"
+"- Save via %s on host: %s\n"
msgstr ""
-"PDQ understøtter kun lokale printere, eksterne LPD printere, og Sokkel/TCP "
-"printere.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move files to the new partition"
-msgstr "Flyt filer til den nye partition"
+"\n"
+"- Gem via %s på vært: %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2562
#, 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."
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
msgstr ""
-"Tilføj hér de CUPS-servere hvis prontere du ønsker at bruge. Du behøver kun "
-"gøre dette, hvis serverne ikke rundkaster deres printerinformation på "
-"lokalnetværket."
+"\t\t brugernavn: %s\n"
+"\t\t på sti: %s \n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2563
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."
+"- Options:\n"
msgstr ""
"\n"
-"Velkommen til guiden for printerinstallation\n"
-"\n"
-"Denne guide lader dig installere printere sluttet til denne maskine.\n"
-"\n"
-"Tilslut og tænd venligst alle printere tilsluttet denne maskine nu så de kan "
-"identificeres automatisk.\n"
-"\n"
-"Klik på \"Næste\" når du er klar og på \"Annullér\" hvis du ikke vil "
-"installere printere nu."
+"- Muligheder:\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
-msgstr "Pitcairn"
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
+msgstr "\tMedtag ikke systemfiler\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Genskab fra katalog"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
+msgstr "\tSikkerhedskopiering bruger tar og bzip2\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "IDE"
-msgstr "IDE"
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
+msgstr "\tSikkerhedskopiering bruger tar og gzip\n"
-#: ../../fs.pm:1
+#: ../../standalone/drakbackup_.c:2572
#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "montering af partition %s i katalog %s mislykkedes"
+msgid ""
+"\n"
+"- Daemon (%s) include:\n"
+msgstr ""
+"\n"
+"- Dæmon (%s) indeholder:\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
-msgstr "Lilo-skærm"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
+msgstr "\t-Diskdrev.\n"
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO med grafisk menu"
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
+msgstr "\t-cdrom.\n"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "Beregnes"
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
+msgstr "\t-Tape \n"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
-msgstr "Du kan ikke fravælge denne pakke. Den er allerede installeret"
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
+msgstr "\t-Netværk via FTP.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", printer \"%s\" på SMB/Windows-server \"%s\""
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
+msgstr "\t-Netværk via SSH.\n"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "Fortsæt alligevel?"
+#: ../../standalone/drakbackup_.c:2578
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Netværk via rsync.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Leder efter tilgængelige pakker og genopbygger rpm-database..."
+#: ../../standalone/drakbackup_.c:2579
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Netværk via webdav.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
+msgstr "Ingen konfiguration, klik på Vejleder eller Avanceret.\n"
+
+#: ../../standalone/drakbackup_.c:2587
msgid ""
+"List of data to restore:\n"
"\n"
-" DrakBackup Report \n"
msgstr ""
+"Liste over data som skal genskabes:\n"
"\n"
-" DrakBackup Rapport \n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Ser ikke ud til at være et skrivbart medie!"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "Specificér parametre"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "New user list:\n"
-msgstr "Ny brugerliste:\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Enten servernavnet eller serverens IP skal angives!"
-
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2754
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"
+"List of data corrupted:\n"
"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
msgstr ""
-"En tilpasset opstartsdiskette lader dig starte Linux systemet op uden at "
-"være afhængig af den normale opstarter. Det kan være nyttigt, hvis du ikke "
-"vil installere SILO på dit system - eller hvis et andet operativsystem "
-"fjerner SILO, eller hvis SILO ikke virker med dit maskinel. En tilpasset "
-"opstartsdiskette kan også bruges sammen med Mandrakes `rescue image', "
-"hvilket gør det meget nemmere at reparere systemet i tilfælde af "
-"systemnedbrud.\n"
+"Liste over data der er ødelagt:\n"
"\n"
-"Hvis du ønsker at lave en opstartsdiskette til dit system, indsæt en "
-"diskette i dit første diskettedrev og tryk 'O.k.'."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Du kan ikke bruge et krypteret filsystem for monteringspunkt %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password history length to prevent password reuse."
-msgstr ""
-"Sæt længden på adgangskodehistorik for at forhindre genbrug af adgangskoder."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
-msgstr "Norfolk Øen"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Theme installation failed!"
-msgstr "Installation af tema mislykkedes"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
-msgstr "Ingenting at lave"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "Loopback anvendelse"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr "Mandrake værktøj til fejlrapportering"
+#: ../../standalone/drakbackup_.c:2756
+msgid "Please uncheck or remove it on next time."
+msgstr "Afmarkér eller fjern det gerne næste gang."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
-msgstr "Udfør filter"
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
+msgstr "Sikkerhedskopifiler er ødelagte"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pppoe"
-msgstr "brug pppoe"
+#: ../../standalone/drakbackup_.c:2787
+msgid " All of your selected data have been "
+msgstr " Alle dine valgte data er blevet "
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "Moving files to the new partition"
-msgstr "Flytter filer til den nye partition"
+msgid " Successfuly Restored on %s "
+msgstr " genskabt uden fejl på %s "
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s med EKSPERMENTAL 3d hardware acceleration"
+#: ../../standalone/drakbackup_.c:2906
+msgid " Restore Configuration "
+msgstr " Genskab konfiguration "
-#: ../../help.pm:1 ../../interactive.pm:1
-#, c-format
-msgid "Advanced"
-msgstr "Avanceret"
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
+msgstr "O.k. at genskabe de andre filer."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer"
-msgstr "Overfør"
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
+msgstr "Brugerliste at genskabe (kun den nyeste dato per bruger er vigtig)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (svensk)"
+#: ../../standalone/drakbackup_.c:3019
+msgid "Backup the system files before:"
+msgstr "Lav sikkerhedskopi af systemfiler før:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Afghanistan"
-msgstr "Afghanistan"
+#: ../../standalone/drakbackup_.c:3021
+msgid "please choose the date to restore"
+msgstr "Vælg dato for genskabning"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "More Options"
-msgstr "Flere muligheder"
+#: ../../standalone/drakbackup_.c:3057
+msgid "Use Hard Disk to backup"
+msgstr "Brug disk til sikkerhedskopiering"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr "Slet tar-filer på disken efter sikkerhedskopiering til andet medie."
+#: ../../standalone/drakbackup_.c:3060
+msgid "Please enter the directory to save:"
+msgstr "Indtast kataloget der skal gemmes:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "Burundi"
+#: ../../standalone/drakbackup_.c:3103
+msgid "FTP Connection"
+msgstr "FTP forbindelse"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron er et standard UNIX program der kører bruger-specifikke programmer på "
-"planlagte tidspunkter. Vixie cron tilføjer en del forbedringer til den "
-"basale UNIX cron, inklusive bedre sikkerhed og stærkere "
-"konfigurationsmuligheder."
+#: ../../standalone/drakbackup_.c:3110
+msgid "Secure Connection"
+msgstr "Sikker forbindelse"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr "Tilføj klient -->"
+#: ../../standalone/drakbackup_.c:3134
+msgid "Restore from Hard Disk."
+msgstr "Genskab fra disk."
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "Læs omhyggeligt!"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
+msgstr "Indtast kataloget hvor sikkerhedskopier gemmes"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
-msgstr "RW"
+#: ../../standalone/drakbackup_.c:3204
+msgid "Select another media to restore from"
+msgstr "Vælg et andet medie at genskabe fra"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr "Indtast din tv-standard og land"
+#: ../../standalone/drakbackup_.c:3206
+msgid "Other Media"
+msgstr "Andet medie"
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "Port"
+#: ../../standalone/drakbackup_.c:3211
+msgid "Restore system"
+msgstr "Genskab system"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
-msgstr "Nej (kun eksperter)"
+#: ../../standalone/drakbackup_.c:3212
+msgid "Restore Users"
+msgstr "Genskab brugere"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-msgstr "Ingen kerne valgt!"
+#: ../../standalone/drakbackup_.c:3213
+msgid "Restore Other"
+msgstr "Genskab andet"
-#. -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
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Tryk 'enter' for at starte det valgte OS, 'e' for at redigere"
+#: ../../standalone/drakbackup_.c:3215
+msgid "select path to restore (instead of /)"
+msgstr "vælg sti at genskabe (i stedet for /)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
+msgstr "Lav ny sikkerhedskopi før genskabning (kun for inkrementalbackupper)."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The encryption keys do not match"
-msgstr "Krypteringsnøglerne stemmer ikke overens"
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
+msgstr "Fjern brugerkataloger før genskabning."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3334
msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-"For en multisessions-cd vil kun den første session slette cdrw'en. Ellers "
-"bliver cdrw'en slettet før hver sikkerhedskopiering."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "USB printer"
-msgstr "USB printer"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Højre Windows-tast"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr "hvis sat til ja, så tjek for tomme adgangskoder i /etc/shadow."
+"Genskab valgt\n"
+"katalogpost"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3344
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."
+"Restore Selected\n"
+"Files"
msgstr ""
-"Før du går videre bør du læse betingelserne i licensen omhyggeligt. Den "
-"omfatter hele Mandrake Linux distributionen. Hvis du er enig i alle "
-"betingelserne i den, så klik på '%s'-knappen. Hvis ikke, så kan du bare "
-"slukke for maskinen."
+"Genskab valgte\n"
+"filer"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3361
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
+"Change\n"
+"Restore Path"
msgstr ""
-"Her er en liste over tilgængelige printmuligheder for den aktuelle printer:\n"
-"\n"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "Opløsninger"
+"Ændr\n"
+"Genskabelsessti"
-#: ../../network/drakfirewall.pm:1
+#: ../../standalone/drakbackup_.c:3427
#, 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."
-msgstr ""
-"drakfirewall-konfigurator\n"
-"\n"
-"Dette konfigurerer en personlig brandmur for denne Mandrake Linux-maskine.\n"
-"For en stærk dedikeret brandmurs-løsning se venligst den specialiserede "
-"MandrakeSecurity Firewall-distribution."
+msgid "Backup files not found at %s."
+msgstr "Sikkerhedskopier fandtes ikke på %s."
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../standalone/drakbackup_.c:3440
#, c-format
msgid ""
-"Please enter your username, password and domain name to access this host."
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-"Indtast venligst dit brugernavn, din adgangskode og dit domænenavn for at få "
-"adgang til denne vært."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Remove selected host"
-msgstr "Fjern valgte vært"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network configuration"
-msgstr "Netværks konfiguration"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Autodetektér _jaz-drev"
-
-#: ../../any.pm:1
-#, c-format
-msgid "No sharing"
-msgstr "Ingen fildeling"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Flyt valgte regel et niveau ned"
-
-#: ../../common.pm:1
-#, c-format
-msgid "TB"
-msgstr "Tb"
+"Indsæt cd'en med volumetiket %s\n"
+" i cd-enheden monteret på /mnt/cdrom"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "FATAL"
-msgstr "FATAL"
+#: ../../standalone/drakbackup_.c:3440
+msgid "Restore From CD"
+msgstr "Genskab fra cd"
-#: ../../standalone/printerdrake:1
+#: ../../standalone/drakbackup_.c:3442
#, c-format
-msgid "Refresh the list"
-msgstr "Genopfrisk listen"
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr "Ikke korrekt cd-etiket. Cd'en har etiket %s."
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup_.c:3452
#, 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."
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
-" - Per klient %s:\n"
-" \t\tVia clusternfs kan hver diskløs klient have deres egen unikke "
-"konfigurationsfil\n"
-" \t\tpå rod-filsystemet på serveren. I fremtiden vil drakTermServ "
-"kunne hjælpe til med at lave disse\n"
-" \t\tfiler."
+"Indsæt båndet med volumeetiket %s\n"
+" i båndenheden %s"
-#: ../../standalone/drakpxe:1
-#, 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"
-msgstr ""
-"DHCP-serveren vil muliggøre at andre maskiner kan starte op med PXE ved brug "
-"af det opgivne adresseområde.\n"
-"\n"
-"Netværksadressen er %s med en netmaske på %s.\n"
-"\n"
+#: ../../standalone/drakbackup_.c:3452
+msgid "Restore From Tape"
+msgstr "Genskab fra bånd"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../standalone/drakbackup_.c:3454
#, c-format
-msgid "Delete"
-msgstr "Slet"
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr "Ikke korrekt båndetiket. Båndet har etiket %s."
-#: ../../Xconfig/various.pm:1
-#, 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?"
-msgstr ""
-"Jeg kan sætte din maskine op til automatisk at starte X ved\n"
-"opstart. Ønsker du at starte X hver gang du genstarter?"
+#: ../../standalone/drakbackup_.c:3474
+msgid "Restore Via Network"
+msgstr "Genskab via netværk"
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/drakbackup_.c:3474
#, c-format
-msgid "Build the disk"
-msgstr "Opbyg disken"
+msgid "Restore Via Network Protocol: %s"
+msgstr "Genskab via netværksprotokol: %s"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnect %s"
-msgstr "Frakobl %s"
+#: ../../standalone/drakbackup_.c:3475
+msgid "Host Name"
+msgstr "Værtsnavn"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
-msgstr "Status:"
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
+msgstr "Stil til vært eller modul"
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP-proxy"
+#: ../../standalone/drakbackup_.c:3483
+msgid "Password required"
+msgstr "Adgangskode krævet"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "SSH Server"
-msgstr "SSH-server"
+#: ../../standalone/drakbackup_.c:3489
+msgid "Username required"
+msgstr "Brugernavn krævet"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-Netværk via rsync.\n"
+#: ../../standalone/drakbackup_.c:3492
+msgid "Hostname required"
+msgstr "Værtsnavn krævet"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
-msgstr "Europæisk protokol"
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
+msgstr "Sti eller modul krævet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", printer \"%s\" på server \"%s\""
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
+msgstr "Filer genskabte..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
-msgstr "Bemærk at alle 'net'-medier også bruger disken for nærværende."
+#: ../../standalone/drakbackup_.c:3513
+msgid "Restore Failed..."
+msgstr "Genskabelse mislykkedes..."
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
-#, c-format
-msgid "Error"
-msgstr "Fejl"
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
+msgstr "Genskab alle sikkerhedskopier"
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
-msgstr "tillad \"su\""
+#: ../../standalone/drakbackup_.c:3760
+msgid "Custom Restore"
+msgstr "Tilpasset genskabelse"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Australia"
-msgstr "Australien"
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
+msgstr "Cd'en er på plads - fortsæt."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "Vent venligst på ttmkfdir..."
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
+msgstr "Bladr til nyt genskabelseslager."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Konfigurér kun kort \"%s\"%s"
+#: ../../standalone/drakbackup_.c:3813
+msgid "Restore From Catalog"
+msgstr "Genskab fra katalog"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Level"
-msgstr "Niveau"
+#: ../../standalone/drakbackup_.c:3841
+msgid "Restore Progress"
+msgstr "Fremskridt for genskabelse"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Change the printing system"
-msgstr "Ændr printsystemet"
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+msgid "Previous"
+msgstr "Forrige"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Dit system understøtter konfiguration af flere skærme\n"
-"Hvad vil du gøre?"
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+msgid "Save"
+msgstr "Gem"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr "montering mislykkedes: "
+#: ../../standalone/drakbackup_.c:3946
+msgid "Build Backup"
+msgstr "Opbyg sikkerhedskopien"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "Konfigurér tjenester"
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+msgid "Restore"
+msgstr "Genskab"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Rundkastningsadresse:"
+#: ../../standalone/drakbackup_.c:4189
+msgid ""
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
+msgstr ""
+"Fejl ved sendmail.\n"
+" Din rapport blev ikke sendt.\n"
+" Konfigurér venligst sendmail"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4195
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."
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
msgstr ""
-"GNU/Linux-kernen skal køre en bergningsløkke ved opstaten for at "
-"initialisere en tidstæller. Dets resultat lagres som bogomips, hvilket er en "
-"måde at måle hastigheden på cpu'en."
+"Fejl ved sending af fil via FTP.\n"
+" Ret venligst din FTP-konfiguration."
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "Billede"
+#: ../../standalone/drakbackup_.c:4209
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "De følgende pakker vil blive installeret @list_of_rpm_to_install"
-#: ../../services.pm:1
-#, c-format
-msgid "Remote Administration"
-msgstr "Ekstern administration"
+#: ../../standalone/drakbackup_.c:4232
+msgid "Please select data to restore..."
+msgstr "Udvælg de data du vil genskabe..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-msgstr ""
-"Kunne ikke tilføje printeren \"%s\" til Star Office/OpenOffice.org/GIMP.org."
+#: ../../standalone/drakbackup_.c:4267
+msgid "Please select media for backup..."
+msgstr "Vælg medie for sikkerhedskopi..."
-#: ../../modules.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4275
+msgid "Please select data to backup..."
+msgstr "Vælg data for sikkerhedskopi..."
+
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-"PCMCIA-understøttelse eksisterer ikke længere for 2.2-kerner. Brug en 2.4-"
-"kerne."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Selected All"
-msgstr "Valgte alt"
+"ingen konfigurationsfil fundet \n"
+"klik på Vejleder eller Avanceret."
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
+msgstr "Under udvikling ... vent venligst:-)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Webmin Service"
-msgstr "Webmin-tjeneste"
+#: ../../standalone/drakbackup_.c:4382
+msgid "Backup system files"
+msgstr "Lav sikkerhedskopi af systemfiler"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
-msgstr "enhed"
+#: ../../standalone/drakbackup_.c:4384
+msgid "Backup user files"
+msgstr "Lav sikkerhedskopi af brugerfiler"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Indtast kataloget hvortil der skal gemmes:"
+#: ../../standalone/drakbackup_.c:4386
+msgid "Backup other files"
+msgstr "Lav sikkerhedskopi af andre filer"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
-msgstr "Grækenland"
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
+msgstr "Total fremdrift"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "Alt"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
+msgstr "Filer sendes via FTP"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Hvilket printersystem (spooler) ønsker du at bruge?"
+#: ../../standalone/drakbackup_.c:4416
+msgid "Sending files..."
+msgstr "Sender filer..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
-msgstr "Juli"
+#: ../../standalone/drakbackup_.c:4500
+msgid "Backup Now from configuration file"
+msgstr "Lav sikkerhedskopi nu ud fra konfigurationsfil"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Prints into %s"
-msgstr "Skriver på %s"
+#: ../../standalone/drakbackup_.c:4505
+msgid "View Backup Configuration."
+msgstr "Se konfiguration af sikkerhedskopiering."
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "Der er opstået en fejl"
+#: ../../standalone/drakbackup_.c:4526
+msgid "Wizard Configuration"
+msgstr "Konfiguration med vejleder"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Denne pakke skal opgraderes\n"
-"Er du sikker på at du vil fravælge den?"
+#: ../../standalone/drakbackup_.c:4531
+msgid "Advanced Configuration"
+msgstr "Avanceret konfiguration"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "Tamil (skrivemaskine-layout)"
+#: ../../standalone/drakbackup_.c:4536
+msgid "Backup Now"
+msgstr "Lav sikkerhedskopiering nu"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
-msgstr "Brug adgangskode til at autentificere brugere."
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
+msgstr "Drakbackup"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4624
msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
+"options description:\n"
+"\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
msgstr ""
-"Tillad/forbyd listen af brugere på systemet på skærmhåndteringer (kdm og "
-"gdm)."
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
-msgstr "manuel"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
-msgstr "Filnavn der skal søges efter:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Printerproducent, model, driver"
+"beskrivelse af valgmuligheder:\n"
+"\n"
+" På dette trin vil Drakbackup lade dig ændre:\n"
+"\n"
+" - Komprimeringsmåden:\n"
+" \n"
+" Hvis du markerer bzip2-komprimering, vil du komprimere\n"
+" dine data bedre end gzip (omkring 2-10 %).\n"
+" Denne valgmulighed er ikke markeret som standard fordi\n"
+" denne komprimeringsmåde kræver mere tid (omkring 1000% mere).\n"
+" \n"
+" - Opdateringsmåden:\n"
+"\n"
+" Denne valgmulighed vil opdatere din backup, men denne\n"
+" valgmulighed er ikke rigtigt nyttig fordi du skal\n"
+" dekomprimere din backup før du kan opdatere den.\n"
+" \n"
+" - Måden for .backupignore:\n"
+"\n"
+" som med cvs vil Drakbackup ignorere alle referencer\n"
+" indeholdt i .backupignore-filer i hvert katalog.\n"
+" fx: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4654
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-"Der er ikke noget media, eller det er skrivebeskyttet, i enhed %s.\n"
-"Indsæt venligst noget."
+"\n"
+" Nogle fejl under sendmail kommer fra \n"
+" en dårlig konfiguration af postfix. For at løse dette skal du\n"
+" sætte myhostname eller mydomain i /etc/postfix/main.cf\n"
+"\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4662
msgid ""
-"Directory %s already contains data\n"
-"(%s)"
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
msgstr ""
-"Katalog %s indeholder allerede nogen data\n"
-"(%s)"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Printer på en NetWare server"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Angiv RAM-størrelse i Mb"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr "Fredag"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Nedkobling fra Internet klar."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "Rigtige navn"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "done"
-msgstr "færdig"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Afmarkér eller fjern det gerne næste gang."
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Higher"
-msgstr "Højere"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Vælg partitioner der skal formateres"
+"beskrivelse af valgmuligheder:\n"
+"\n"
+" - Lav sikkerhedskopi af systemfiler:\n"
+" \n"
+"\tDenne mulighed lader dig sikkerhedskopiere dit /etc katalog,\n"
+"\tsom indeholder alle konfigurationsfiler. Vær \n"
+"\tforsigtig på genskabelsestrinnet med ikke at overskrive:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Lav sikkerhedskopi af brugerfiler: \n"
+"\n"
+"\tDenne mulighed lader dig vælge alle de brugere som du vil lave\n"
+"\tsikkerhedskopier for.\n"
+"\tFor at spare på diskplads anbefales du ikke medtager netlæseres\n"
+"\tcache.\n"
+"\n"
+" - Lav sikkerhedskopi af andre filer: \n"
+"\n"
+"\tDenne mulighed lader dig tilføje mere data som skal gemmes.\n"
+"\tMed denne sikkerhedskopieringsmåde er det ikke muligt i øjeblikket \n"
+"\tat vælge inkrementalbackup.\t\t\n"
+" \n"
+" - Inkrementalbackupper:\n"
+"\n"
+"\tInkrementalbackup er den stærkeste valgmulighed for \n"
+"\tsikkerhedskopiering. Denne mulighed lader dig sikkerhedskopiere \n"
+"\talle dine data den første gang, og derefter kun de ændrede data.\n"
+"\tSå vil du i genskabelsestrinnet kunne genskabe dine data fra en \n"
+"\tangivet dato.\n"
+"\tHvis du ikke har valgt denne mulighed vil alle gamle\n"
+"\tsikkerhedskopier blive slettet før hver sikkerhedskopiering. \n"
+"\n"
+"\n"
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4701
msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
"\n"
-"You can visit our hardware database at:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Intet tv-kort blev genkendt på din maskine. Tjek venligst at et video/tv-"
-"kort der understøttes af Linux er korrekt isat.\n"
+"beskrivelse af genskabelse:\n"
+" \n"
+"Kun den nyeste dato vil blive brugt fordi med inkrementalbackup \n"
+"er det nødvendigt at genskabe hver gammel sikkerhedskopi én for én.\n"
"\n"
+"Så hvis du ikke ønsker at genskabe en bruger, så fravælg helt dennes bokse.\n"
+"\n"
+"Ellers kan du vælge kun én af disse.\n"
+"\n"
+" - Inkrementalbackupper:\n"
+"\n"
+"\tInkrementalbackup er den stærkeste valgmulighed for \n"
+"\tsikkerhedskopiering. Denne mulighed lader dig sikkerhedskopiere \n"
+"\talle dine data den første gang, og derefter kun de ændrede data.\n"
+"\tSå vil du i genskabelsestrinnet kunne genskabe dine data fra en \n"
+"\tangivet dato.\n"
+"\tHvis du ikke har valgt denne mulighed vil alle gamle\n"
+"\tsikkerhedskopier blive slettet før hver sikkerhedskopiering. \n"
"\n"
-"Du kan besøge vores database over udstyr på:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't find %s on %s"
-msgstr "Kan ikke finde %s på %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "Japansk 106 taster"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
+#: ../../standalone/drakbackup_.c:4727
+#, fuzzy
+msgid ""
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
-"Kunne ikke installere de nødvendige pakker til deling af dine skannere."
+" Copyright (C) 2001 MandrakeSoft ved DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Dette vil tage nogle få minutter."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
+#: ../../standalone/drakbackup_.c:4729
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+" opdateringer 2002 MandrakeSoft ved Stew Benedict <sbenedict\\@mandrakesoft."
+"com>"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "June"
-msgstr "Juni"
+#: ../../standalone/drakbackup_.c:4732
+#, fuzzy
+msgid ""
+"Description:\n"
+"\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
+"\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
+"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
+"\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
+"\n"
+"\n"
+msgstr ""
+"Beskrivelse:\n"
+"\n"
+" Drakbackup bruges til at lave sikkehedskopier af dit system.\n"
+" I konfigurationen kan du vælge: \n"
+"\t- Systemfiler, \n"
+"\t- Brugeres filer, \n"
+"\t- Andre filer.\n"
+"\teller Hele dit system ... eller Andet (såsom Windows partitioner)\n"
+"\n"
+" Drakbackup lader dig tage sikkerhedskopier af dit system på:\n"
+"\t- Ddisk.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (med autoboot, redning og autoinstallering.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Bånd.\n"
+"\n"
+" Drakbackup lader dig genskabe dit system på\n"
+" et katalog valgt af brugeren.\n"
+"\n"
+" Som standard vil alle sikkerhedskopier blive lagret i dit\n"
+" /var/lib/drakbackup katalog\n"
+"\n"
+" Konfigurationsfil:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Genskabelsestrin:\n"
+" \n"
+" I genskabelsestrinnet vil Drakbackup fjerne dit nuværende katalog \n"
+" og kontrollere at alle dine backupfiler ikke er ødelagte. Det \n"
+" anbefales at du laver en sidste sikkerhedskopiering før genskabelse.\n"
+" \n"
+"\n"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Brug skannere på eksterne maskiner"
+#: ../../standalone/drakbackup_.c:4769
+msgid ""
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
+msgstr ""
+"beskrivelse af valgmuligheder:\n"
+"\n"
+"Vær forsigtig når du bruger ftp-backup, fordi kun \n"
+"sikkerhedskopier som er opbygget allerede bliver sendt til serveren.\n"
+"Så for øjeblikket skal du bygge sikkerhedskopien på din disk \n"
+"før den sendes til ftp-serveren.\n"
+"\n"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Delete selected rule"
-msgstr "Slet valgte regel"
+#: ../../standalone/drakbackup_.c:4778
+msgid ""
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
+msgstr ""
+"\n"
+"Problemer med genskabelse af sikkerhedskopier:\n"
+"\n"
+"I genskabelsestrinnet vil Drakbackup kontrollere alle dine\n"
+"backupfiler før genskabelse af dem.\n"
+"Før genskabelsen vil Drakbackup fjerne \n"
+"dit nuværende katalog, og alle dine data vil gå tabt.\n"
+"Det er vigtigt at være forsigtig og ikke ændre sikkerhedskopieringens\n"
+"datafiler i hånden.\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Tilgår printere på eksterne CUPS-servere"
+msgid "Installation of %s failed. The following error occured:"
+msgstr "Installationen af %s mislykkedes. Følgende fejl opstod:"
-#: ../../any.pm:1
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Indsæt en diskette i %s"
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
+msgstr "Mandrake værktøj til fejlrapportering"
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
-msgstr "Maldiverne"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Førstegangshjælper"
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "kompakt"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Synkroniseringsværktøj"
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
-msgstr "1 minut"
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+msgid "Standalone Tools"
+msgstr "Fritstående værktøjer"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: fat"
-msgstr "type: tyk"
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "on channel %d id %d\n"
-msgstr "på kanal %d id %d\n"
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
-msgstr ", multi-funktions-enhed"
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr "Lagos"
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msek"
-#: ../advertising/04-configuration.pl:1
-#, 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!"
-msgstr ""
-"Mandrake Linux 9.2 indeholder Mandrake Kontrolcenter, et stærkt værktøj til "
-"helt at tilpasse din maskine til den brug du har behov for. Konfigurér og "
-"tilret ting som sikkerhedsniveau, tilbehør (skærm, mus, tastatur), "
-"internetforbindelse og meget mere!"
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Ekstern kontrol"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
-msgstr "Aktivér/deaktivér åbenhedstjek på ethernetkort."
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Programmeladministration"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr ""
-"Der er ingen FAT-partitioner at ændre størrelse på (eller ikke nok plads "
-"tilbage)"
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr "Op"
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Migrationsværktøj for MS Windows"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
-msgstr "Brandmur"
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr "Område:"
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Vejledere til konfiguration"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr "(E)IDE/ATA kontrolkort"
+#: ../../standalone/drakbug_.c:75
+msgid "Application:"
+msgstr "Applikation:"
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
-msgstr "Al I/O til filsystemet bør gøres synkront."
+#: ../../standalone/drakbug_.c:76
+msgid "Package: "
+msgstr "Pakke: "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "Printer-server"
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
+msgstr "Kerne:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Custom configuration"
-msgstr "Tilrettet konfiguration"
+#: ../../standalone/drakbug_.c:78
+msgid "Release: "
+msgstr "Udgave: "
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbug_.c:93
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"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
"\n"
msgstr ""
-"Angiv venligst hvor installationsaftrykket vil være tilgængeligt.\n"
"\n"
-"Hvis du ikke har et eksisterende katalog, så kopiér venligst indholdet af "
-"CD'en eller DVD'en.\n"
+"\n"
+"For at indsende en fejlrapport klik da på rapport-knappen.\n"
+"Dette vil åbne et vindue i en netlæser på https://drakbug.mandrakesoft.com\n"
+" hvor du vil finde en formular der kan udfyldes. Informationen vist ovenfor "
+"vil blive overført til den server\n"
"\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr "Sankt Pierre og Miquelon"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
-msgstr "September"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "gemmer startskærmstema..."
+#: ../../standalone/drakbug_.c:112
+msgid "Report"
+msgstr "Rapport"
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
-msgstr "Portugal"
+#: ../../standalone/drakbug_.c:148
+msgid "Not installed"
+msgstr "Ikke installeret"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "Har du én til?"
+#: ../../standalone/drakbug_.c:160
+#, fuzzy
+msgid "Package not installed"
+msgstr "Ikke installeret"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", printing to %s"
-msgstr ", skriver til %s"
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
+msgstr "Opkobler til vejleder for Bugzilla"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Tildel værtsnavn fra DHCP-adresse"
+#: ../../standalone/drakbug_.c:180
+msgid "No browser available! Please install one"
+msgstr "Ingen netlæser til stede! Installér venligst én"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakconnect_.c:75
#, c-format
-msgid "Toggle to normal mode"
-msgstr "Ekspert -> Normal"
+msgid "Network configuration (%d adapters)"
+msgstr "Netværkskonfiguration (%d adaptorer)"
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
-msgstr "Standard"
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+msgid "Profile: "
+msgstr "Profil: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Cylinder %d til %d\n"
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
+msgstr "Slet profil..."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
-msgstr "DIN TEKST HER"
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
+msgstr "Profil der skal slettes:"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakconnect_.c:125
msgid "New profile..."
msgstr "Ny profil..."
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
-#, c-format
-msgid "NONE"
-msgstr "NONE"
+#: ../../standalone/drakconnect_.c:131
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Navnet på profilen der skal oprettes (den nye profil oprettes som en \n"
+"kopi af den nuværende) :"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "Hvilken disk ønsker du at flytte den til?"
+#: ../../standalone/drakconnect_.c:157
+msgid "Hostname: "
+msgstr "Værtsnavn: "
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Display logo on Console"
-msgstr "Vis logo på konsol"
+#: ../../standalone/drakconnect_.c:164
+msgid "Internet access"
+msgstr "Internetadgang"
-#: ../../any.pm:1
-#, c-format
-msgid "Windows Domain"
-msgstr "Windows Domain"
+#: ../../standalone/drakconnect_.c:177
+msgid "Type:"
+msgstr "Type:"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (norwegian)"
-msgstr "Samisk (norsk)"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "Gateway:"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Interface %s (on network %s)"
-msgstr "Grænseflade %s (på netværk %s)"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Interface:"
+msgstr "Grænseflade:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
-msgstr "INFORMATION"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
+msgstr "Status:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
-msgstr "Wallis og Futuna"
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
+msgstr "Vent venligst"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Skal oprette /etc/dhcpd.conf først!"
+#: ../../standalone/drakconnect_.c:216
+msgid "Configure Internet Access..."
+msgstr "Konfigurér Internetadgang..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
-msgstr "Er FPU tilstede"
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+msgid "LAN configuration"
+msgstr "LAN konfiguration"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Beklager, der er ingen ekstra\n"
-"information om denne tjeneste."
+#: ../../standalone/drakconnect_.c:228
+msgid "Driver"
+msgstr "Drivprogram"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr ""
-"Der blev ikke fundet nogen skannere som er tilgængelige på dit system.\n"
+#: ../../standalone/drakconnect_.c:228
+msgid "Interface"
+msgstr "Grænseflade"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Byg enkel NIC -->"
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
+msgstr "Protokol"
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "Marshalløerne"
+#: ../../standalone/drakconnect_.c:228
+msgid "State"
+msgstr "Status"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "Er dette korrekt?"
+#: ../../standalone/drakconnect_.c:240
+msgid "Configure Local Area Network..."
+msgstr "Konfigurér lokalnetværk..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
+msgstr "Klik her for at starte vejlederen ->"
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr "Adgangskode for root"
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "Vejleder..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Byg alle kerner -->"
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
+msgstr "Anvend"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVDRAM device"
-msgstr "DVDRAM-enhed"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Connected"
+msgstr "Tilsluttet"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
-msgstr "hvis sat til ja, så rapportér filer der ikke er ejede af nogen."
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Not connected"
+msgstr "Ikke tilsluttet"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
+msgstr "Tilslut..."
+
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
+msgstr "Afbrud..."
+
+#: ../../standalone/drakconnect_.c:400
msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Du har ingen Swap partition\n"
-"\n"
-"Fortsæt alligevel?"
+"Advarsel, en anden internetforbindelse er blevet fundet, der måske bruger "
+"dit netværk"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Version: "
-msgstr "Version: "
+#: ../../standalone/drakconnect_.c:427
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Du har ingen konfigurerede grænsesnit.\n"
+"Konfigurér disse først ved at klikke på 'Konfigurér'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Server IP missing!"
-msgstr "Server-IP mangler!"
+#: ../../standalone/drakconnect_.c:449
+msgid "LAN Configuration"
+msgstr "LAN konfiguration"
-#: ../../lang.pm:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Suriname"
-msgstr "Surinam"
+msgid "Adapter %s: %s"
+msgstr "Adapter %s: %s"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use a floppy"
-msgstr "Brug en diskette"
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
+msgstr "Opstartsprotokol"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
-msgstr "Aktivér ACPI"
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
+msgstr "Startede med opstart"
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
-msgstr "Giv skriveadgang til almindelige brugere"
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
+msgstr "DHCP-klient"
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
-msgstr "Grafisk miljø"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "activate now"
+msgstr "aktivér nu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
-msgstr "Gibraltar"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "deactivate now"
+msgstr "deaktivér nu"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Do nothing"
-msgstr "Gør ingenting"
+#: ../../standalone/drakconnect_.c:499
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Dette grænsesnit er ikke blevet konfigureret endnu.\n"
+"Start konfigurationsvejlederen i hovedvinduet"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete Client"
-msgstr "Slet klient"
+#: ../../standalone/drakconnect_.c:556
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Du har ingen internet-opkobling.\n"
+"Opret én først ved at klikke på 'Konfigurér'"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "Filsystemstype: "
+#: ../../standalone/drakconnect_.c:580
+msgid "Internet connection configuration"
+msgstr "Konfiguration af Internetforbindelse"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting network..."
-msgstr "Starter netværk ..."
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet Connection Configuration"
+msgstr "Konfiguration af Internetforbindelse"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
-msgstr "Vietnam"
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+msgid "Connection type: "
+msgstr "Type af forbindelse"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Feltbeskrivelse"
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
+msgstr "Parametre"
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr "Optimér din sikkerhed ved at bruge Mandrake Linux."
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Gateway"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-" Tak til:\n"
-"\t- LTSP-projektet http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
+msgstr "Ethernet-kort"
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Help"
-msgstr "Hjælp"
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
+msgstr "DHCP-Klient"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
-msgstr "Tjek om netværksgrænsesnittene er fuldstændigt åbne."
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Your personal phone number"
-msgstr "Dit personlige telefonnummer"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Module name"
+msgstr "Modulnavn"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which size do you want to keep for Windows on"
-msgstr "Hvilken størrelse ønsker du at at beholde Windows på?"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Size"
+msgstr "Størrelse"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Testsider er sendt til printeren.\n"
-"Det kan tage lidt tid før printeren starter.\n"
+#: ../../standalone/drakfloppy_.c:45
+msgid "drakfloppy"
+msgstr "drakfloppy"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Username required"
-msgstr "Brugernavn krævet"
+#: ../../standalone/drakfloppy_.c:63
+msgid "boot disk creation"
+msgstr "fremstilling af opstartsdiskette"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Device"
-msgstr "Enhed"
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr "standard"
-#: ../../help.pm:1
+#: ../../standalone/drakfloppy_.c:87
#, 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."
-msgstr ""
-"Afhængigt af det foretrukne sprog du har valgt vil DrakX automatisk vælge en "
-"bestemt type tastatur. Men du har måske ikke et tastatur som svarer "
-"nøjagtigt til dit sprog: for eksempel hvis du er en engelsktalende svejtser, "
-"vil du måske stadig ønske at dit tastatur skal være et svejtsisk tastatur. "
-"Eller hvis du taler engelsk men bor i Québec, er du måske i samme "
-"situation, hvor dit modersmål og tastatur ikke passer sammen. I begge "
-"tilfælde giver dette installationstrin mulighed for at vælge et passende "
-"tastatur fra listen.\n"
-"\n"
-"Klik på '%s'-tasten for at blive præsenteret for den fulde \n"
-"liste af understøttede tastaturer.\n"
-"\n"
-"Hvis du vælger en tastaturudlægning baseret på et ikke-latinsk alfabet, vil "
-"den næste dialog give dig mulighed for at vælge den tastekombination, der "
-"vil skifte mellem den latinske og den ikke-latinske udlægning."
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy fejl: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT)-printer indstillinger"
+#: ../../standalone/drakfloppy_.c:98
+msgid "kernel version"
+msgstr "kerne-version"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
+#: ../../standalone/drakfloppy_.c:104
+msgid "General"
+msgstr "Generelt"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr "Listen over gyldige brugere er ændret, genskriver konfigurationsfil."
+#: ../../standalone/drakfloppy_.c:109
+msgid "Expert Area"
+msgstr "Ekspertområde"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakfloppy_.c:112
msgid "mkinitrd optional arguments"
msgstr "mkinitrd valgfrie argumenter"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
-msgstr ""
-"Surf på nettet med Mozilla eller Konqueror, læs din post med Evolution eller "
-"Kmail, og lav dine dokumenter med OpenOffice.org."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protokol for resten af verden"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print test pages"
-msgstr "Udskriver testsider"
+#: ../../standalone/drakfloppy_.c:113
+msgid "Add a module"
+msgstr "Tilføj et modul"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Activate now"
-msgstr "Aktivér nu"
+#: ../../standalone/drakfloppy_.c:133
+msgid "force"
+msgstr "tving"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
-msgstr "64 Mb eller mere"
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
+msgstr "hvis nødvendigt"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Vælg testsiderne du ønsker at udskrive.\n"
-"Bemærk: fototestsiden kan tage ret lang tid at skrive ud, og på "
-"laserprintere med for lidt hukommelse vil den måske ikke skrives ud i det "
-"hele taget. Som regel vil det være nok at udskrive standard-testsiden."
+#: ../../standalone/drakfloppy_.c:135
+msgid "omit scsi modules"
+msgstr "undgå scsi-moduler"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Vælg venligst enheden hvor din %s er isat"
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
+msgstr "undgå raid-moduler"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Not formatted\n"
-msgstr "Ikke formateret\n"
+#: ../../standalone/drakfloppy_.c:172
+msgid "Remove a module"
+msgstr "Fjern et modul"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Periodic Checks"
-msgstr "Periodiske kontroller"
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
+msgstr "Uddata"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "PXE Server Configuration"
-msgstr "Konfiguration af PXE-server"
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
+msgstr "Opbyg disken"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "Backup the system files before:"
-msgstr "Lav sikkerhedskopi af systemfiler før:"
+msgid "Be sure a media is present for the device %s"
+msgstr "Forsikr dig at der er et medie tilstede i enheden %s"
-#: ../../security/level.pm:1
+#: ../../standalone/drakfloppy_.c:341
#, c-format
msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
-"Dette er standard sikkerheds-anbefalingen for en maskine\n"
-" med forbindelse til Internettet som klient. "
-
-#: ../../any.pm:1
-#, c-format
-msgid "First floppy drive"
-msgstr "Første diskette-drev"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Fil/_Afslut"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose the new size"
-msgstr "Vælg den nye størrelse"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Media class"
-msgstr "Medieklasse"
+"Der er ikke noget media, eller det er skrivebeskyttet, i enhed %s.\n"
+"Indsæt venligst noget."
-#: ../../standalone/XFdrake:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr "Du skal logge ud og ind igen for at ændringerne skal gælde"
+msgid "Unable to fork: %s"
+msgstr "Kan ikke fork(): %s"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakfloppy_.c:349
#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
-msgstr "%s kendes ikke af denne version af Scannerdrake."
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Kan ikke lukke mkbootdisk ordentligt: \n"
+" %s \n"
+" %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Faroe Islands"
-msgstr "Færøerne"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
+msgstr "Søg efter installerede skrifttyper"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Restart XFS"
-msgstr "Genstart XFS"
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
+msgstr "Fravælg installerede skrifttyper"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
-msgstr "Tilføj vært/netværk"
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
+msgstr "fortolk alle skrifttyper"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Scannerdrake vil ikke blive startet nu."
+#: ../../standalone/drakfont_.c:242
+msgid "no fonts found"
+msgstr "kunne ikke finde nogen skrifttyper"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model name"
-msgstr "Modelnavn"
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+msgid "done"
+msgstr "færdig"
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
-msgstr "Albanien"
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
+msgstr "Kunne ikke finde nogen skrifttyper i dine monterede partitioner"
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr "British Indian Ocean Territory"
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
+msgstr "Genvælg korrekte skrifttyper"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Normal Mode"
-msgstr "Normal udgave"
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
+msgstr "Kunne ikke finde nogen skrifttyper.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "Ingen CDR/DVDR i drevet!"
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
+msgstr "Søg efter skrifttyper i installeret liste"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer connection type"
-msgstr "Printeropkoblingstype"
+#: ../../standalone/drakfont_.c:359
+msgid "Fonts copy"
+msgstr "Kopi af skrifttyper"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
-msgstr "Ikke nogen netværksadapter i dit system!"
+#: ../../standalone/drakfont_.c:363
+msgid "True Type fonts installation"
+msgstr "Installation af True Type-skrifttyper"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network %s"
-msgstr "Netværk %s"
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
+msgstr "Vent venligst på ttmkfdir..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
-msgstr "Malayalam"
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
+msgstr "Installation af True Type færdig"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Valg %s er udenfor område!"
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
+msgstr "Konvertering af skrifttyper"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connect %s"
-msgstr "Tilslut %s"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
+msgstr "opbyg type1inst"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "Genstarter CUPS..."
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
+msgstr "Ghostscript referencer"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Udskriver/Skanner/Fotokort på '%s'"
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
+msgstr "Konvertering af ttf-skrifttyper"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
-msgstr "Fortsæt uden USB-nøgle"
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
+msgstr "Konvertering af pfm-skrifttyper"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Duplikér monterings-sti %s"
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
+msgstr "Undertryk midlertidige filer"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
-msgstr "hvis sat til ja, så kør chkrootkit-kontroller."
+#: ../../standalone/drakfont_.c:459
+msgid "Restart XFS"
+msgstr "Genstart XFS"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "Forbindelses-konfiguration"
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
+msgstr "Undertryk skrifttypefiler"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|Generic"
-msgstr "Ukendt|generisk"
+#: ../../standalone/drakfont_.c:528
+msgid "xfs restart"
+msgstr "genstart af xfs"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
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"
+"Before installing any fonts, be sure that you have the right to use and "
+"install them on your system.\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."
+"-You can install the fonts using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
msgstr ""
-"På det tidspunkt hvor du installerer Mandrake Linux er det sandsynligt at "
-"nogen af pakkerne er blevet opdaterede siden den oprindelige udgivelse. Fejl "
-"er måske blevet rettet, og sikkerhedsproblemer måske løst. Det er nu muligt "
-"for dig at hente disse ned fra internettet for at disse opdateringer kan "
-"komme dig til gode. Vælg '%s' hvis du har en fungerende internet- "
-"forbindelse eller '%s' hvis du foretrækker at installere opdaterede pakker "
-"senere.\n"
+"Før du installerer nogen skrifttyper bør du være sikker på at du har lov til "
+"at bruge og installere dem på dit system. \n"
"\n"
-"Valg af '%s' viser en liste af steder hvorfra opdateringer kan hentes. Du "
-"bør vælge en der er nær ved dig. Så vil et træ med pakkevalg fremkomme: "
-"gennemse valget og tryk '%s' for at modtage og installere den valgte pakke "
-"eller '%s' for at afbryde."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-msgstr "Myanmar"
-
-#: ../../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
-#, c-format
-msgid "Quit"
-msgstr "Afslut"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "Allokér automatisk"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Led efter beskadigede blokke?"
+"-Du kan installere skrifttyperne på normal måde. I sjældne tilfælde kan "
+"fejlbehæftede skrifttyper få din X-server til at hænge."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Other MultiMedia devices"
-msgstr "Andre multimedie-enheder"
+#: ../../standalone/drakfont_.c:621
+msgid "Fonts Importation"
+msgstr "Import af skrifttyper"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "burner"
-msgstr "brænder"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
+msgstr "Hent skrifttyper fra Windows"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Bug Description/System Information"
-msgstr "Fejlbeskrivelse/Systeminformation"
+#: ../../standalone/drakfont_.c:658
+msgid "Uninstall Fonts"
+msgstr "Afinstallér skrifttyper"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (Default is all users)"
-msgstr " (Standard er alle brugere)"
+#: ../../standalone/drakfont_.c:669
+msgid "Advanced Options"
+msgstr "Avancerede muligheder"
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "No remote machines"
-msgstr "Ingen ekstern maskine"
+#: ../../standalone/drakfont_.c:677
+msgid "Font List"
+msgstr "Liste over skrifttyper"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:737
+#, fuzzy
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@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."
-msgstr ""
+" 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"
-"Velkommen til guiden for printerinstallation\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"
"\n"
-"Denne guide lader dig installere printere sluttet til denne maskine.\n"
"\n"
-"Hvis du har printere sluttet til denne maskine, så tilslut og tænd dem nu så "
-"de kan identificeres automatisk.\n"
+msgstr ""
+"Dette program er gratis programmel; du kan redistribuere det og/eller ændre\n"
+"det i henhold til betingelserne i GNU General Public License, som publiceret "
+"af\n"
+"Free Software Foundation; enten version 2, eller enhver senere udgave\n"
+"af licensen.\n"
"\n"
-"Klik på \"Næste\" hvis du er klar og på \"Annullér\" hvis du ikke vil "
-"installere printere nu."
+"Dette program er udgivet i håb om at det vil være anvendeligt, men\n"
+"UDEN NOGEN FORM FOR GARANTI; heller ikke garanti om\n"
+"SALGBARHED eller EGNETHED TIL ET BESTEMT FORMÅL. Se GNU\n"
+"General Public License for flere detaljer.\n"
+"\n"
+"Du skulle have modtaget en kopi af GNU General Public License\n"
+"sammen med dette program; hvis ikke, skriv til Free Software\n"
+"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n"
+"USA."
+
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:862
+msgid "Choose the applications that will support the fonts:"
+msgstr "Vælg de programpakker som vil understøtte skrifttyperne:"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "Autentificering NIS"
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
+msgstr "Ghostscript"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Indstillingen ``Begræns kommandolinie-indstillinger'' er intet værd uden\n"
-"en adgangskode"
+#: ../../standalone/drakfont_.c:877
+msgid "StarOffice"
+msgstr "StarOffice"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Deling af internetforbindelse er slået til"
+#: ../../standalone/drakfont_.c:884
+msgid "Abiword"
+msgstr "Abiword"
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "Forenede Arabiske Emirater"
+#: ../../standalone/drakfont_.c:891
+msgid "Generic Printers"
+msgstr "Generelle printere"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "Kort IO_0"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
+msgstr "Vælg skrifttypefilen eller -kataloget oh klik på 'Tilføj'"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
-msgstr "Deaktivér lokal konfiguration"
+#: ../../standalone/drakfont_.c:1005
+msgid "Install List"
+msgstr "Installationsliste"
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "Thailand"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
+msgstr "Klik her hvis du er sikker."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "Kort IO_1"
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
+msgstr "Her hvis ikke."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
-msgstr "Søg:"
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
+msgstr "Fravalgte alt"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "Kazakhstan"
+#: ../../standalone/drakfont_.c:1116
+msgid "Selected All"
+msgstr "Valgte alt"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
-msgstr "Rutere:"
+#: ../../standalone/drakfont_.c:1120
+msgid "Remove List"
+msgstr "Fjern liste"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Write"
-msgstr "Skriv"
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+msgid "Initials tests"
+msgstr "Begyndelsestester"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Vís alle tilgængelige eksterne CUPS-printere"
+#: ../../standalone/drakfont_.c:1145
+msgid "Copy fonts on your system"
+msgstr "Kopiér skrifttyper på dit system"
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux Installation %s"
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
+msgstr "Installér og konvertér skrifttyper"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
-msgstr "Ukendt drivprogram"
+#: ../../standalone/drakfont_.c:1153
+msgid "Post Install"
+msgstr "Efterbehandling for installering"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "Thailandsk"
+#: ../../standalone/drakfont_.c:1178
+msgid "Remove fonts on your system"
+msgstr "Fjern skrifttyper på dit system"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr "Bouvet-øen"
+#: ../../standalone/drakfont_.c:1182
+msgid "Post Uninstall"
+msgstr "Efterbehandling for afinstallering"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "Opkaldsindstillinger"
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
+msgstr "Deling af internetforbindelse"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "Hvis ingen port er angivet, vil port 631 blive brugt som standard."
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Desværre, vi understøtter kun 2.4-kerner."
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Per klient systemkonfigurationsfiler:\n"
-" \tVia clusternfs kan hver diskløs klient have deres egne unikke "
-"konfigurationsfiler\n"
-" \tpå rod-filesystemet på serveren. Ved at tillade lokal "
-"klientudstyrskonfiguration kan klienter tilrette filer\n"
-" \tsom feks. /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
-"keyboard på per klient\n"
-" \tbasis. \n"
-"........Bemærk: Aktivering af lokal klientudstyrskonfiguration aktiverer "
-"ikke root logind til terminalserveren \n"
-"........fra hver klientmaskine som har denne facilitet aktiveret. Lokal "
-"konfiguration kan blive \n"
-"........slået fra igen, idet konfigurationsfilerne beholdes, når først "
-"klientmaskinen er blevet konfigureret."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Deling af internetforbindelse er slået til"
+
+#: ../../standalone/drakgw_.c:126
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 ""
-"Skift din cdrom!\n"
+"Indstilling af deling af internetforbindelse er allerede gjort.\n"
+"Deling er aktiveret.\n"
"\n"
-"Indsæt cdrom'en med navnet \"%s\" i dit cdrom-drev og tryk på O.k., når det "
-"gjort.\n"
-"Hvis du ikke har den så tryk på Annullér, så undgås installation fra denne cd"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "Polsk"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Online"
-msgstr "Mandrake Online"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
-msgstr "\t-Netværk via webdav.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", multi-funktions-enhed på en parallel port"
-
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Ingen ethernet netværksadapter er blevet fundet på dit system. Kør venligst "
-"værktøjet til maskinel konfiguration."
-
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "Netmaske"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "No hard drives found"
-msgstr "Ingen diskdrev fundet"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "2 knapper"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Serien (seriel)"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "Hvad slags type er din ISDN-forbindelse?"
+"Hvad ønsker du at gøre?"
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "Mærkat"
+#: ../../standalone/drakgw_.c:130
+msgid "disable"
+msgstr "deaktivér"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "Gem på diskette"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
+msgstr "forkast"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check open ports"
-msgstr "Tjek åbne porte"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "reconfigure"
+msgstr "genkonfigurér"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Edit selected printer"
-msgstr "Redigér valgte printer"
+#: ../../standalone/drakgw_.c:133
+msgid "Disabling servers..."
+msgstr "Slår servere fra..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Auto-opdagelse af printere"
+#: ../../standalone/drakgw_.c:142
+msgid "Internet connection sharing is now disabled."
+msgstr "Deling af internetforbindelse er nu slået fra"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Hvilket af de følgende er dit ISDN-kort?"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Deling af internetforbindelse er slået fra"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:150
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."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"NFS er en populær protokol til fildeling over TCP/IP netværk.\n"
-"Denne tjeneste giver NFS-serverfunktionalitet, som konfigureres gennem /etc/"
-"exports filen"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Msec"
-msgstr "Msek"
+"Indstilling af deling af internetforbindelse er allerede gjort.\n"
+"Den er de-aktiveret for nærværende\n"
+"Hvad ønsker du at gøre?"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Bemærk, en etikette ændredes:\n"
-"%s"
+#: ../../standalone/drakgw_.c:154
+msgid "enable"
+msgstr "aktivér"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
-msgstr "Antal fangningsbuffere:"
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
+msgstr "Aktiverer servere..."
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Dit valg? (0/1, standard '%s') "
+#: ../../standalone/drakgw_.c:166
+msgid "Internet connection sharing is now enabled."
+msgstr "Deling af internetforbindelse er nu slået til"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:183
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"
+"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"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
"\n"
-"Click on \"%s\" if you wish to select partitions that will be checked for\n"
-"bad blocks on the disk."
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
-"Enhver partition der netop er blevet defineret, skal formateres til brug "
-"(formatering betyder oprettelse af et filsystem).\n"
-"\n"
-"Nu kan du også ønske at omformatere nogle allerede eksisterende partitioner "
-"for at slette de data som de indeholder. Hvis du ønsker dette, så markér "
-"også de partitioner som du ønsker at formatere.\n"
-"\n"
-"Bemærk at det ikke er nødvendigt at omformatere alle allerede eksisterende "
-"partitioner. Det er nødvendigt at omformatere de partitioner, der indeholder "
-"operativsystemet (såsom '/', '/usr' og '/var', men du er ikke nødt til at "
-"omformatere partitioner som du ønsker at beholde (typisk /home).\n"
-"\n"
-"Vær forsigtig med valg af partitioner; efter formatering vil alle data være "
-"slettede på de valgte partitioner, og du vil ikke kunne redde nogetsomhelst "
-"af det.\n"
-"\n"
-"Klik på '%s' når du er klar til at formatere partitioner.\n"
+"Du er ved at konfigurere din maskine til at dele sin internetforbindelse.\n"
+"Med denne mulighed vil andre maskiner på dit lokale netværk kunne bruge "
+"internetforbindelsen på denne maskine.\n"
"\n"
-"Klik på '%s' hvis du ønsker at vælge andre partitioner til at installere dit "
-"nye Mandrake Linux operativsystem.\n"
+"Forsikr dig om at du har konfigureret din internetforbindelse med "
+"drakconnect før du går videre.\n"
"\n"
-"Klik på '%s' for at vælge partitioner som du ønsker at tjekke for dårlige "
-"blokke."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "French"
-msgstr "Fransk"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTY)"
-msgstr "Tjekkisk (QWERTY)"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow X Window connections"
-msgstr "Tillad X Window-forbindelser"
+"Bemærk: du skal bruge en dediceret netværksadapter, for at lave et lokalt "
+"netværk (LAN)."
-#: ../../standalone/service_harddrake:1
+#: ../../standalone/drakgw_.c:211
#, c-format
-msgid "Hardware probing in progress"
-msgstr "Søgning efter udstyr udføres"
+msgid "Interface %s (using module %s)"
+msgstr "Grænseflade %s (benytter modul %s)"
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
+#: ../../standalone/drakgw_.c:212
#, c-format
-msgid "Net Device"
-msgstr "Net-enhed"
+msgid "Interface %s"
+msgstr "Grænseflade %s"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "Oversigt"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr "Ikke nogen netværksadapter i dit system!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:221
msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
msgstr ""
-"(parallelporte: /dev/lp0, /dev/lp1 ..., svarende til LPT1:, LPT2: ..., "
-"første USB-printer: /dev/usb/lp0, 2. USB-printer: /dev/usb/lp1 ...)."
-
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Next"
-msgstr "Næste"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Du kan ikke installere opstartsindlæseren på en %s-partition\n"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
+"Ingen ethernet netværksadapter er blevet fundet på dit system. Kør venligst "
+"værktøjet til maskinel konfiguration."
-#: ../../network/network.pm:1
-#, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp/zeroconf)"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr "Netværksgrænsesnit"
-#: ../../standalone/drakautoinst:1
+#: ../../standalone/drakgw_.c:228
#, c-format
msgid ""
+"There is only one configured network adapter on your system:\n"
"\n"
-"Welcome.\n"
+"%s\n"
"\n"
-"The parameters of the auto-install are available in the sections on the left"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
+"Der er kun én konfigureret netværksadapter i dit system:\n"
"\n"
-"Velkommen.\n"
+"%s\n"
"\n"
-"Parametrene for autokonfigurationen kan ses i afsnittene til venstre"
+"Jeg skal til at sætte dit lokalnet på med den adapter."
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/drakgw_.c:235
msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
-msgstr ""
-"pakken ImageMagick kræves for at det skal fungere korrekt. Klik på 'O.k.' "
-"for at installere 'ImageMagick' eller 'Annullér' for at afslutte"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Telnet server"
-msgstr "Telnet-server"
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr "Vælg hvilken netværksadapter som skal forbindes til dit lokalnet."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Litauisk \"talrække\" QWERTY"
+#: ../../standalone/drakgw_.c:261
+msgid "Network interface already configured"
+msgstr "Netværksgrænsesnit allerede konfigureret"
-#: ../../install_any.pm:1
+#: ../../standalone/drakgw_.c:262
#, c-format
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
+"Warning, the network adapter (%s) is already configured.\n"
"\n"
+"Do you want an automatic re-configuration?\n"
"\n"
-"Do you really want to remove these packages?\n"
+"You can do it manually but you need to know what you're doing."
msgstr ""
-"De følgende pakker vil blive fjernet for at kunne opdatere systemet: %s\n"
+"Advarsel, netværkskortet (%s) er allerede konfigureret.\n"
"\n"
+"Ønsker du en automatisk re-konfiguration?\n"
"\n"
-"Ønsker du virkelig at fjerne disse pakker?\n"
+"Du kan gøre det i hånden, men du skal vide hvad du gør."
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
-msgstr "Anguilla"
+#: ../../standalone/drakgw_.c:267
+msgid "Automatic reconfiguration"
+msgstr "Automatisk rekonfiguration"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "NIS-domæne"
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "Antarktis"
+#: ../../standalone/drakgw_.c:268
+msgid "Show current interface configuration"
+msgstr "Vis aktuelle grænsesnitskonfiguration"
+
+#: ../../standalone/drakgw_.c:269
+#, fuzzy
+msgid "Current interface configuration"
+msgstr "Vis aktuelle grænsesnitskonfiguration"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:270
#, c-format
msgid ""
+"Current configuration of `%s':\n"
"\n"
-"- User Files:\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
msgstr ""
+"Nuværende konfiguration af `%s':\n"
"\n"
-"- Brugerfiler:\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
-msgstr "Modulindstillinger"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Jamaica"
-msgstr "Jamaica"
+"Netværk: %s\n"
+"IP-adresse: %s\n"
+"IP-attribut: %s\n"
+"Driver: %s"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:283
+#, fuzzy
msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
+"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"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
+"\n"
msgstr ""
-"Tilordn rå enheder til blokenheder (som harddisk-\n"
-"partitioner) til brug af applikationer som Oracle eller DVD-afspillere"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Vent venligst, forbereder installationen"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "Tjekkisk (QWERTZ)"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Følg id for netværkskort (nyttigt for bærbare)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Port-nummeret bør være et heltal!"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "You must choose an image file first!"
-msgstr "Du skal vælge en biledfil først!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Genskab fra disk."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "Tilføj til LVM"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "DNS-server"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr "Trinidad og Tobago"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD og LPRng understøtter ikke IPP printere.\n"
+"Jeg kan beholde din aktuelle konfiguration og antage at du allerede har sat "
+"en DHCP-server op; i så tilfælde kontrollér da gerne at jeg har læst det C-"
+"klasse-netværk korrekt, som du bruger for dit lokalnetværk; jeg vil ikke "
+"genkonfigurere det og jeg vil ikke røre ved din konfiguration af DHCP-"
+"serveren.\n"
+"\n"
+"Ellers kan jeg genkonfigurere dit grænsesnit og genkonfigurere en DHCP-"
+"server for dig.\n"
+"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host name or IP."
-msgstr "Værtsnavn eller IP."
+#: ../../standalone/drakgw_.c:290
+msgid "Local Network adress"
+msgstr "Adresse på lokalnetværk"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Edit"
-msgstr "/_Redigér"
+#: ../../standalone/drakgw_.c:294
+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 ""
+"Konfiguration af DHCP-server.\n"
+"\n"
+"Her kan du vælge forskellige muligheder for konfigurationen af DHCP-"
+"serveren.\n"
+"Hvis du ikke kender betydningen af en valgmulighed, så lad den blot være som "
+"den er.\n"
+"\n"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "simpel"
+#: ../../standalone/drakgw_.c:300
+msgid "(This) DHCP Server IP"
+msgstr "(Denne) DHCP-servers IP-adresse"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "Slet alt"
+#: ../../standalone/drakgw_.c:301
+msgid "The DNS Server IP"
+msgstr "DHCP-serverens IP-adresse"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No test pages"
-msgstr "Ingen testsider"
+#: ../../standalone/drakgw_.c:302
+msgid "The internal domain name"
+msgstr "Det interne domænenavn"
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falklandsøerne (Malvinas)"
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
+msgstr "Begyndelsen på DHCP-området"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
+msgstr "Stutningen på DHCP-området"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Boot disk creation"
-msgstr "Fremstilling af opstartsdiskette"
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
+msgstr "Normal udlejningsperiode (i sekunder)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
-msgstr "Mandag"
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
+msgstr "Største udlejningsperiode (i sekunder)"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown model"
-msgstr "Ukendt model"
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
+msgstr "Rekonfigurér grænsesnit og DHCP-server"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
-msgstr "hvis sat til ja, så kontrollér filer og kataloger skrivbare for alle."
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
+msgstr "Lokalnetværket endte ikke med `.0', står af."
-#: ../../help.pm:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid "authentication"
-msgstr "autentifikation"
+msgid "Potential LAN address conflict found in current config of %s!\n"
+msgstr "Mulig LAN-adresse konflikt fundet i konfigurationen til %s!\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now"
-msgstr "Lav sikkerhedskopiering nu"
+#: ../../standalone/drakgw_.c:335
+msgid "Configuring..."
+msgstr "Konfigurerer..."
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/_Fil"
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "Konfigurerer skript, installerer programmel, starter servere..."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:372
#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Fjerner printer fra Star Office/OpenOffice.org/GIMP.org"
+msgid "Problems installing package %s"
+msgstr "Problemer med installation af %s"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:505
msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
+"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 ""
-"Start pakkefiltrering for Linux kerne 2.2 serien for at opsætte en brandmur "
-"til at beskytte din maskine mod netværksangreb."
+"Alt er blevet konfigureret.\n"
+"Du kan nu dele din internetforbindelse med andre maskiner på dit lokale "
+"netværk, ved at bruge DHCP."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Editable"
-msgstr "Kan redigeres"
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
+msgstr "Indstilling er allerede gjort. men er de-aktiveret for nærværende."
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
-msgstr "Hvilken DHCP klient ønsker du at bruge? (Standard er dhcp-client)"
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
+msgstr "Indstilling er allerede gjort. og er for nærværende aktiv."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr "Tamil (ISCII-layout)"
+#: ../../standalone/drakgw_.c:525
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Deling af Internetforbindelse har aldrig været konfigureret."
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
-msgstr "Mayotte"
+#: ../../standalone/drakgw_.c:531
+msgid "Internet connection sharing configuration"
+msgstr "Konfiguration af deling af internetforbindelse"
-#: ../../security/help.pm:1
+#: ../../standalone/drakgw_.c:539
#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
+msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"Sæt historiklængden for kommandoskallen. En værdi på -1 betyder ubegrænset."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d KB\n"
-msgstr " %d KB\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Laver autoinstallations-diskette"
+"Velkommen til værktøjet til deling af internetforbindelse!\n"
+"%s\n"
+"\n"
+"Klik på Konfigurér for at starte programmet til at dele din "
+"internetforbindelse!"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for scanners ..."
-msgstr "Søger efter skannere ..."
+#: ../../standalone/drakperm_.c:36
+msgid "group"
+msgstr "gruppe"
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
-msgstr "Rusland"
+#: ../../standalone/drakperm_.c:36
+msgid "path"
+msgstr "sti"
-#: ../../steps.pm:1
-#, c-format
-msgid "Partitioning"
-msgstr "Opdeling af disk"
+#: ../../standalone/drakperm_.c:36
+msgid "permissions"
+msgstr "rettigheder"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
-msgstr "ethernet-kort detekteret"
+#: ../../standalone/drakperm_.c:36
+msgid "user"
+msgstr "bruger"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
-msgstr "System"
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
+msgstr "Op"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create catalog!"
-msgstr "Kan ikke oprette katalog!"
+#: ../../standalone/drakperm_.c:44
+msgid "delete"
+msgstr "slet"
-#: ../advertising/11-mnf.pl:1
-#, 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."
-msgstr ""
-"Færdiggør din sikkerhedsopsætning med dette meget brugervenlige programmel, "
-"som kombinerer højydelseskomponenter som brandmur, en server og klient for "
-"virtuelle private netværk (VPN), et indbrudsopdagelsessystem og en "
-"trafikadministrator."
+#: ../../standalone/drakperm_.c:45
+msgid "edit"
+msgstr "redigér"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
-msgstr "Ikke nok fri plads til at tildele nye partitioner automatisk"
+#: ../../standalone/drakperm_.c:46
+msgid "Down"
+msgstr "Ned"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "Sæt root-adgangskode"
+#: ../../standalone/drakperm_.c:47
+msgid "add a rule"
+msgstr "Tilføj en regel"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable IP spoofing protection"
-msgstr "Aktivér beskyttelse mod IP-spoofing."
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
+msgstr "vælg perm-fil at se eller redigere"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:51
msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
-msgstr ""
-"Der findes ingen fri driver for lydkortet (%s) men der er en leverandørejet "
-"driver på '%s'"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group :"
-msgstr "Gruppe:"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Efter ændring af størrelsen af partition %s vil alle data på denne partition "
-"gå tabt"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Konfiguration af Internetforbindelse"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
+"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 ""
-"Tilføj navn som en undtagelse for håndteringen af adgangskodeforældelse af "
-"msec."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "Skanner for tv-kanaler"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
-msgstr "Kerne:"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_About..."
-msgstr "/_Om..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
-msgstr "Bengali"
+"Drakperm bruges til at se filer i brug for at rette tilladelser, ejere og "
+"grupper via msec.\n"
+"Du kan også redigere dine egne regler som vil tilsidesætte standard-reglerne."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
-msgstr "Præference: "
+#: ../../standalone/drakperm_.c:56
+msgid "Add a new rule at the end"
+msgstr "Tilføj en ny regel i slutningen"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Tjenester: %d aktiverede for %d registrerede"
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
+msgstr "Redigér aktuelle regel"
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "Opret opstartsdiskette"
+#: ../../standalone/drakperm_.c:58
+msgid "Up selected rule one level"
+msgstr "Flyt valgte regel et niveau op"
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "Salomonøerne"
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
+msgstr "Flyt valgte regel et niveau ned"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Afprøv venligst din mus:"
+#: ../../standalone/drakperm_.c:60
+msgid "Delete selected rule"
+msgstr "Slet valgte regel"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
+msgstr "bladr"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
-msgstr "Arbejdsgruppe"
+#: ../../standalone/drakperm_.c:231
+msgid "Current user"
+msgstr "Aktuelle bruger"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Værtsnavn eller IP-adresse på printer mangler!"
+#: ../../standalone/drakperm_.c:236
+msgid "Permissions"
+msgstr "Rettigheder"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "down"
-msgstr "ned"
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
+msgstr "Sti"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Path or Module"
-msgstr "Stil til vært eller modul"
+#: ../../standalone/drakperm_.c:238
+msgid "Property"
+msgstr "Egenskab"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Navn på printer bør kun indeholde bogstaver, tal og understregen _"
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
+msgstr "sticky-bit"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Show current interface configuration"
-msgstr "Vis aktuelle grænsesnitskonfiguration"
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
+msgstr "Set-UID"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add Printer"
-msgstr "Tilføj printer"
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
+msgstr "Set-GID"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:296
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."
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
msgstr ""
-"Argumentet angiver om klienter er autoriseret til at koble op til X-serveren "
-"på tcp-port 6000 eller ej."
+"Brugt til katalog:\n"
+" kun ejeren af kataloget eller filen i dette katalog kan slette den"
-#: ../../help.pm:1
-#, c-format
-msgid "Development"
-msgstr "Udvikling"
+#: ../../standalone/drakperm_.c:297
+msgid "Use owner id for execution"
+msgstr "Brug ejers id ved udførelsen"
-#: ../../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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Done"
-msgstr "Færdig"
+#: ../../standalone/drakperm_.c:298
+msgid "Use group id for execution"
+msgstr "Brug gruppe-id ved udførelsen"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Web Server"
-msgstr "Webserver"
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
+msgstr "ved kontrol vil ejer og gruppe ikke blive ændret"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "Chile"
+#: ../../standalone/drakperm_.c:304
+msgid "Path selection"
+msgstr "Valg af sti"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tUdelad systemfiler\n"
+#: ../../standalone/drakperm_.c:350
+msgid "user :"
+msgstr "bruger:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Printerdriverne til inkjet som leveres af Lexmark understøtter kun lokale "
-"printere, ikke printere på eksterne maskiner eller printserverbokse. Forbind "
-"din printer til en lokal port eller konfigurér den på den maskine, den er "
-"forbundet til."
+#: ../../standalone/drakperm_.c:352
+msgid "group :"
+msgstr "gruppe:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/draksound_.c:46
+msgid "No Sound Card detected!"
+msgstr "Intet lydkort genkendt!"
+
+#: ../../standalone/draksound_.c:47
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"
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Din multifunktionsenhed blev konfigureret automatisk til at kunne skanne. Nu "
-"kan du skanne med 'scanimage' ('scanimage -d hp:%s' for at angive skanneren "
-"hvis du har mere end én) fra kommandolinjen eller med de grafiske "
-"grænseflader 'xscanimage' eller 'xsane'. Hvis du bruger GIMP kan du også "
-"skanne ved at vælge det rigtige punkt i menuen 'Filer/Hent'. Brug også 'man "
-"scanimage' på kommandolinjen for at få mere information\n"
"\n"
-"Brug ikke \"scannerdrake\" på denne enhed!"
-
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "(har allerede tilføjet %s)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation in progress"
-msgstr "Installation af systemopstarteren er i gang"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
-msgstr ", med kommando %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt og Shift-taster samtidigt"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
-msgstr "Flag"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Users"
-msgstr "Tilføj/slet brugere"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "IP-adresse på vært eller netværk mangler."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
-msgstr "ugentligt"
-
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "Indstillinger"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "Den indtastede vært/netværk er ikke korrekt.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "Opret/overfør sikkerhedskopieringsnøgler for SSH"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr "Her er den komplette liste over tilgængelige lande"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Alternativ testside (A4)"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"Hvis du har alle cd'erne i listen nedenunder, klik O.k.\n"
-"Hvis du ikke har nogen af disse cd'er, klik Annullér.\n"
-"Hvis kun nogen cd'er mangler, fravælg dem, og klik så O.k."
-
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
-msgstr "Vent venligst"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup user files"
-msgstr "Lav sikkerhedskopi af brugerfiler"
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "New"
-msgstr "Ny"
-
-#: ../../help.pm:1
-#, 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"
+"You can visit our hardware database at:\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"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+"Intet lydkort blev genkendt på din maskine. Tjek venligst at et lydkort der "
+"understøttes af Linux er korrekt isat.\n"
"\n"
-"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"
+"Du kan besøge vores database over udstyr på:\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 ""
-"Dette er den vanskeligste beslutning omkring sikkerheden af dit GNU/Linux- "
-"system: Du skal indtaste din root-adgangskode. Root er systemadministratoren "
-"og er den eneste bruger, der har lov til at lave opdateringer, tilføje "
-"brugere, ændre i den overordnede systemkonfiguration og så videre. Kort "
-"sagt, root kan gøre alt! Derfor skal du vælge en adgangskode der er svær at "
-"gætte - DrakX vil fortælle dig hvis adgangskoden du valgte er for nem. Som "
-"víst er du ikke tvunget til at indtaste en adgangskode, men vi advarer dig "
-"på det kraftigste mod dette. GNU/Linux er lige så udsat for behandlingsfejl "
-"som andre operativsystemer. Da root kan overvinde alle forhindringer og "
-"uforvarende slette alle data på partitioner ved sorgløst at behandle "
-"partitionerne selv, er det vigtigt at det er vanskeligt at blive root.\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+
+#: ../../standalone/draksound_.c:54
+msgid ""
"\n"
-"Adgangskoden bør være en blanding af bogstaver og tal og mindst 8 tegn "
-"langt. Skriv aldrig en adgangskode ned for root - det gør det alt for nemt "
-"at bryde ind i et system.\n"
"\n"
-"Gør dog ikke adgangskoden for lang eller kompliceret da du skal være i stand "
-"til at huske den uden for stort besvær!\n"
"\n"
-"Adgangskoden vil ikke blive vist på skærmen når du indtaster den. Du skal "
-"derfor indtaste adgangskoden to gange, for at begrænse risikoen for "
-"tastefejl. Hvis du kommer til at lave den samme tastefejl to gange, vil "
-"denne 'ukorrekte' adgangskode være den du skal bruge første gang du "
-"forbinder dig til systemet.\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 ""
"\n"
-"Hvis du ønsker at adgang til denne maskine skal være styret af en "
-"autenticerings-server, så klik på '%s'-knappen.\n"
"\n"
-"Hvis dit netværk bruger LDAP, NIS eller PDC Windows domæne-"
-"autentificeringstjenester, vælg da den rigtige som '%s'. Hvis du ikke véd "
-"hvilken der skal bruges, så bør du spørge din systemadministrator.\n"
"\n"
-"Hvis du har problemer med at huske adgangskoder, så kan du vælge '%s' hvis "
-"din maskine ikke vil være forbundet til Internettet, og du stoler på alle "
-"som kan få adgang til maskinen. "
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
-msgstr "Beskyttelse mod falske navneoplysninger"
+"Bemærk: Hvis du har et ISA PnP lydkort skal du bruge programmet sndconfig. "
+"Du skal blot indtaste \"sndconfig\" i et konsol-program."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:21
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."
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-"Nu vil DrakX give dig mulighed for at vælge det ønskede sikkerhedsniveau for "
-"maskinen. Hovedreglen er at sikkerhedsniveauet bør sættes højere, hvis "
-"maskinen skal indeholde vigtige data, eller hvis makinen vil være direkte "
-"offentligt på Internettet. Men et højere sikkerhedsniveau vindes normalt på "
-"bekostning af letheden af anvendelsen.\n"
-"\n"
-"Hvis du ikke véd hvad du skal vælge, så behold den foreslåede mulighed."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "Indlæs fra diskette"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "De følgende printere blev fundet automatisk:"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Uses command %s"
-msgstr "Anvender kommando %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
-msgstr "Start fra diskette"
+"pakken ImageMagick kræves for at det skal fungere korrekt. Klik på 'O.k.' "
+"for at installere 'ImageMagick' eller 'Annullér' for at afslutte"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "Norsk"
+#: ../../standalone/draksplash_.c:67
+msgid "first step creation"
+msgstr "opretter første trin"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for new scanners ..."
-msgstr "Søger efter nye skannere..."
+#: ../../standalone/draksplash_.c:70
+msgid "final resolution"
+msgstr "endelig opløsning"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Apache World Wide Web Server"
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+msgid "choose image file"
+msgstr "vælg billedfil"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "serie af processoren (undermodel- (generations) nummer)"
+#: ../../standalone/draksplash_.c:72
+msgid "Theme name"
+msgstr "Tema-navn"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "select path to restore (instead of /)"
-msgstr "vælg sti at genskabe (i stedet for /)"
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
+msgstr "Bladr"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
msgid "Configure bootsplash picture"
msgstr "Konfigurér startskærmsbilled"
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr "Georgien"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "Kina"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr " (Forsikr dig om at alle dine printere er tilsluttede og tændte).\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "Læser data for nye printere..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
-msgstr " Slet nu "
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "server"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Indsæt en tom diskette i diskette-drev %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "ja betyder at processoren har en aritmetisk koprocessor"
-
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Vent venligst... Sætter konfigurationen i anvendelse"
-
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Velkommen til GRUB styresystemsvælgeren!"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
-msgstr "SCSI-kontrolkort"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr " på LPD-server \"%s\", printer \"%s\""
-
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Vælger en fremvisningshåndtering"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Zeroconf-værtsnavn"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
-msgstr "Tilpasset opsætning/crontab indgang"
-
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP adresse bør have formatet 1.2.3.4"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Konfigurér CUPS-printsystemet"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "Ecuador"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Add an item"
-msgstr "Tilføj et element"
+#: ../../standalone/draksplash_.c:90
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
+msgstr "antal tegn i tekstrudens x-led"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Printerne på denne maskine er tilgængelige for andre maskiner"
+#: ../../standalone/draksplash_.c:91
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr "antal tegn i tekstrudens y-led"
-#: ../../lang.pm:1
-#, c-format
-msgid "China (Hong Kong)"
-msgstr "Kina (Hong Kong)"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
+msgstr "tekstbredde"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Jeg kan ikke finde filen '%s' som jeg behøver."
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
+msgstr "højde på tekstrude"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr "Intet lydkort genkendt. Prøv at køre \"harddrake\" efter installation"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
+"x-koordinatet for forløbsindikatorens\n"
+"øvre venstre hjørne"
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:95
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
-"Ugyldig port angivet: %s.\n"
-"Det korrekte format er \"port/tcp\" eller \"port/udp\", \n"
-"hvor port er mellem 1 og 65535."
+"y-koordinatet for forløbsindikatorens\n"
+"øvre venstre hjørne"
-#: ../../any.pm:1
-#, c-format
-msgid "Shell"
-msgstr "Skal"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
+msgstr "bredden på forløbslinjen"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sao Tome and Principe"
-msgstr "São Tomé og Príncipe"
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
+msgstr "højden på forløbslinjen"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
+msgstr "farven på forløbslinjen"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
-msgstr "Kan ikke logge ind med brugernavn %s (forkert adgangskode?)"
+#: ../../standalone/draksplash_.c:113
+msgid "Preview"
+msgstr "smugkig"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaidiansk (latin)"
+#: ../../standalone/draksplash_.c:115
+msgid "Save theme"
+msgstr "gem temaer"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package not installed"
-msgstr "Pakke ikke installeret"
+#: ../../standalone/draksplash_.c:116
+msgid "Choose color"
+msgstr "vælg farve"
-#: ../../lang.pm:1
-#, c-format
-msgid "American Samoa"
-msgstr "Amerikansk Samoa"
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
+msgstr "Vis logo på konsol"
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Become a MandrakeExpert"
-msgstr "Bliv en MandrakeEkspert"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
+msgstr "Skjul kernens beskeder som standard"
-#: ../../standalone/drakconnect:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, c-format
-msgid "Protocol"
-msgstr "Protokol"
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr "Dette tema har endnu ikke nogen startskærm i %s!"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Kopiér skrifttyper på dit system"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
+msgstr "gemmer startskærmstema..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
-msgstr "Harddrake hjælp"
+#: ../../standalone/draksplash_.c:428
+msgid "ProgressBar color selection"
+msgstr "Valg af farve for forløbslinje"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
+#: ../../standalone/draksplash_.c:449
+msgid "You must choose an image file first!"
+msgstr "Du skal vælge en biledfil først!"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Konfiguration af Mandrake Terminalserver"
+#: ../../standalone/draksplash_.c:458
+msgid "Generating preview ..."
+msgstr "Genererer smugkig ..."
-#: ../../standalone/drakbackup:1
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "%s smugkig af opstartsskærm (%s)"
+
+#: ../../standalone/drakxtv_.c:46
msgid ""
+"XawTV isn't installed!\n"
"\n"
-" DrakBackup Report Details\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
"\n"
"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
+"XawTV er ikke installeret!\n"
"\n"
-" DrakBackup Rapportdetaljer\n"
+"\n"
+"Hvis du har et tv-kort, men DrakX hverken har fundet det (intet bttv\n"
+"eller saa7134 modul i \"/etc/modules\") eller installeret xawtv, så indsend "
+"venligst\n"
+"resultaterne af \"lspcidrake -v -f\" til \"install\\@mandrakesoft.com\"\n"
+"med emnet \"undetected TV card\".\n"
"\n"
"\n"
+"Du kan installere det ved at indtaste \"urpmi xawtv\" som root, på en "
+"kommandolinje."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
-msgstr "Genskab alle sikkerhedskopier"
+#: ../../standalone/drakxtv_.c:63
+msgid "Canada (cable)"
+msgstr "Canada (kabel)"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
-msgstr " på parallelport #%s"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
+msgstr "USA (broadcast)"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
-msgstr ""
-"Sæt mindste længde for adgangskoder, mindste antal cifre og mindste antal "
-"store bogstaver "
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
+msgstr "USA (kabel)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr "hvis sat til ja, så tjek åbne porte."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
+msgstr "USA (kabel-hrc)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Det kan tage lidt tid at slette mediet."
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
+msgstr "Kina (broadcast)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "Du kan ikke vælge/fravælge denne pakke"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
+msgstr "Japan (broadcast)"
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "Advarsel"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
+msgstr "Japan (kabel)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Andre filer:\n"
+#: ../../standalone/drakxtv_.c:65
+msgid "East Europe"
+msgstr "Østeuropa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name"
-msgstr "Eksternt værtsnavn"
+#: ../../standalone/drakxtv_.c:65
+msgid "France [SECAM]"
+msgstr "Frankrig [SECAM]"
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr "adgang til X-programmer"
+#: ../../standalone/drakxtv_.c:65
+msgid "Ireland"
+msgstr "Irland"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "Beregner størrelsen på Windows-partitionen"
+#: ../../standalone/drakxtv_.c:65
+msgid "West Europe"
+msgstr "Vesteuropa"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Genopfrisk"
+#: ../../standalone/drakxtv_.c:66
+msgid "Australia"
+msgstr "Australien"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Italy"
-msgstr "Italien"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
+msgstr "New Zealand"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
-msgstr "Caymanøerne"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
+msgstr "Sydafrika"
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "fejl ved afmontering af %s: %s"
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
+msgstr "Argentina"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "Navn på printer"
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
+msgstr "Australsk Optus kabel-tv"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
-msgstr "deaktivér"
+#: ../../standalone/drakxtv_.c:102
+msgid ""
+"Please,\n"
+"type in your tv norm and country"
+msgstr "Indtast din tv-standard og land"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do it!"
-msgstr "Gør det!"
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
+msgstr "Tv-standard:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
-msgstr "%s svarer ikke"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
+msgstr "Område:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select model manually"
-msgstr "Vælg model manuelt"
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
+msgstr "Skanning for tv-kanaler i gang..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Format"
-msgstr "Formatér"
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
+msgstr "Skanner for tv-kanaler"
-#: ../../network/adsl.pm:1
-#, 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'"
-msgstr ""
-"Den mest almindelige måde at forbinde med ADSL er pppoe.\n"
-"Nogen forbindelser bruger pptp, og nogle få bruger DHCP.\n"
-"Hvis du ikke ved noget, vælg 'brug pppoe'"
+#: ../../standalone/drakxtv_.c:120
+msgid "There was an error while scanning for TV channels"
+msgstr "Der opstod en fejl ved skanningen efter tv-kanaler"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
-msgstr "Diverse"
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
+msgstr "XawTV er ikke installeret!"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
-msgstr "Zip"
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
+msgstr "Hav det godt!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
-msgstr "Venstre Alt-tast"
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Nu kan du køre xawtv (under X Window!)!\n"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Load setting"
-msgstr "Indlæs opsætning"
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
+msgstr "Intet tv-kort genkendt!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:148
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"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"Intet tv-kort blev genkendt på din maskine. Tjek venligst at et video/tv-"
+"kort der understøttes af Linux er korrekt isat.\n"
"\n"
"\n"
-"Printerdrake kunne ikke finde ud af hvilken model din printer %s er. Vælg "
-"venligst den korrekte model fra listen."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Sæt valgte printer som standard-printer"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"Du kan besøge vores database over udstyr på:\n"
"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
"\n"
-"Vælg printerene som du vil overflytte og klik\n"
-"\"Overfør\"."
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
-msgstr "Albansk"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "Litauen"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "Kompakt"
+"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Fandt model: %s %s"
+#: ../../standalone/harddrake2_.c:17
+msgid "Alternative drivers"
+msgstr "Alternative drivprogrammer"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
-msgstr "MandrakeSoft har fundet det bedste programmel frem til dig"
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
+msgstr "listen af alternative drivprogrammer for dette lydkort"
-#: ../../any.pm:1
-#, c-format
-msgid "Local files"
-msgstr "Lokale filer"
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
+msgstr "Bus"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "måske"
+#: ../../standalone/harddrake2_.c:21
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr "Dette er den fysiske bus som enheden er tilsuttet (fx PCI, USB, ...)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
-msgstr "Panama"
+#: ../../standalone/harddrake2_.c:22
+msgid "Channel"
+msgstr "Kanal"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Can't open %s!"
-msgstr "Kan ikke åbne %s!"
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
+msgstr "EIDE/SCSI-kanal"
-#: ../../Xconfig/various.pm:1
-#, 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?"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
msgstr ""
-"Grafikkortet ser ud til at have en TV-UD-forbindelse.\n"
-"Den kan konfigureres så den fungerer med billedbuffer\n"
-"\n"
-"Til dette skal du tilslutte grafikkortet til tv'et inden du starter "
-"maskinen.\n"
-"Vælg dernæst indgangen \"TVout\" i starthåntereren.\n"
-"\n"
-"Har du denne funktion?"
-
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "Skærm"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:23
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"
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
msgstr ""
-"Du er ved at opsætte udskrivning til en Windows-konto med adgangskode. "
-"Grundet en fejl i arkitekturen af Sambas klientprogrammel bliver "
-"adgangskoden lagt i klar tekst i Samba-klientens kommandolinje, som bruges "
-"til at sende printjobbet til Windows-serveren. Så det er muligt for enhver "
-"bruger på denne maskine at vise adgangskoden på skærmen ved at angive "
-"kommandoer som 'ps auxwww'.\n"
-"\n"
-"Vi anbefaler at bruge en af de følgende alternativer (i alle tilfælde skal "
-"du forsikre dig om at kun maskiner fra dit lokalnetværk har adgang til din "
-"Windows-server, for eksempel ved hjælp af en brandmur):\n"
-"\n"
-"Brug en konto uden adgangskode på din Windows-server, såsom 'GUEST'-kontoen "
-"eller en speciel konto som kun anvendes til udskrift. Fjern ikke "
-"adgangskodebeskyttelsen fra en personlig konto eller en administrator-"
-"konto.\n"
-"\n"
-"Opsæt din Windows-server så printeren er tilgængelig under LPD-protokollen. "
-"Opsæt dernæst udskrift fra denne maskine med '%s'-opkoblingstypen i "
-"Printerdrake.\n"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tusinde farver (16 bit)"
+#: ../../standalone/harddrake2_.c:26
+msgid "Bus identification"
+msgstr "Bus-identifikation"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/harddrake2_.c:27
msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-"\n"
-"- Gem til diskdrev på stien: %s\n"
+"- PCI- og USB-enheder: dette viser producenten, enheden, underproducent og "
+"underenhed PCI/USB id'er"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Fjern skrifttyper på dit system"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
+msgstr "Plads på bussen"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../standalone/harddrake2_.c:30
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."
+"- 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 ""
-"Advarsel, netværkskortet (%s) er allerede konfigureret.\n"
-"\n"
-"Ønsker du en automatisk re-konfiguration?\n"
-"\n"
-"Du kan gøre det i hånden, men du skal vide hvad du gør."
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "Start X ved systemstart"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
-msgstr " adsl"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Ikke nok partitioner til at benytte RAID level %d\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "disketteformater som drevet accepterer"
+"- pci-enheder: dette giver PCI slottet, enheden og funktionen for dette "
+"kort\n"
+"- eide-enheder: enheden er enten en slave- eller mester-enhed\n"
+"- scsi-enheder: scsi-bussen og scsi enheds-id'er"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "Kopiering af firmware mislykkedes, filen %s ikke fundet"
+#: ../../standalone/harddrake2_.c:33
+#, fuzzy
+msgid "Cache size"
+msgstr "enhedsstørrelse"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: true"
-msgstr "lokal konfigurering: sand"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
msgstr ""
-"De følgende printere er konfigureret. Dobbeltklik på en printer for at ændre "
-"dens indstillinger, for at gøre den til standard-printer, eller for at se "
-"information om den."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connected"
-msgstr "Tilsluttet"
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
-msgstr "Makedonisk"
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "Mali"
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
-msgstr "Broer og system-kontrolkort"
+#: ../../standalone/harddrake2_.c:36
+#, fuzzy
+msgid "Cpuid level"
+msgstr "Sikkerhedsniveau"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "/Fil/_Gem"
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "No details"
-msgstr "Ingen detaljer"
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
+msgstr ""
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "meget rart"
+#: ../../standalone/harddrake2_.c:37
+msgid ""
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Preview"
-msgstr "smugkig"
+#: ../../standalone/harddrake2_.c:38
+#, fuzzy
+msgid "This field describes the device"
+msgstr "Dette felt beskriver enheden"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Remote Control"
-msgstr "Ekstern kontrol"
+#: ../../standalone/harddrake2_.c:39
+msgid "Old device file"
+msgstr "Gammel enhedsfil"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select media for backup..."
-msgstr "Vælg medie for sikkerhedskopi..."
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
+msgstr "gammel statisk enhedsnavn brugt i dev-pakke"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
-msgstr "Forkert epost"
+#: ../../standalone/harddrake2_.c:41
+msgid "New devfs device"
+msgstr "Ny devfs-enhed"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86-server: %s\n"
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr "Nyt dynamisk enhedsnavn genereret af den kørende kernes devfs"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "Tillad tynde klienter"
+#: ../../standalone/harddrake2_.c:43
+msgid "Module"
+msgstr "Modul"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgisk (russisk layout)"
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr "modulet i GNU/Linux-kernen som håndterer denne enhed"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_Indstillinger"
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Your printer model"
-msgstr "Din printermodel"
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
+msgstr ""
-#: ../../any.pm:1
-#, 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)."
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
msgstr ""
-"\n"
-"\n"
-"(ADVARSEL! Du bruger XFS til din root-partition,\n"
-"oprettelse af en opstartsdiskette på en 1.44 Mb diskette vil formentlig\n"
-"mislykkes, fordi XFS kræver en meget stor driver)."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/harddrake2_.c:46
msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-"\n"
-"- Slet tar-filer på disken efter sikkerhedskopiering.\n"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
msgstr ""
-"Intet CD- eller DVD-aftryk fundet, kopiér venligst installationsprogrammet "
-"og rpm-filerne."
-#: ../advertising/04-configuration.pl:1
-#, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "Mandrakes multifunktions-konfigurationsværktøj"
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
+msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Save"
-msgstr "Gem"
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
-msgstr "Denne %s er ikke understøttet"
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr "Indlæs driverne for dine usb-enheder."
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Disk"
-msgstr "Disk"
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
+msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Indtast en printerenheds-URI"
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
+msgstr ""
-#: ../advertising/01-thanks.pl:1
-#, c-format
+#: ../../standalone/harddrake2_.c:53
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."
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-"MandrakeSofts succes er baseret på princippet om frit programmel. Dit nye "
-"operativsystem er resultatet af et samarbejde i det verdensomspændende Linux-"
-"samfund"
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "Israel"
+#: ../../standalone/harddrake2_.c:55
+#, fuzzy
+msgid "Floppy format"
+msgstr "Formatér"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "Fransk Guinea"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "default:LTR"
+#: ../../standalone/harddrake2_.c:56
+#, fuzzy
+msgid "Level"
+msgstr "niveau"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
-msgstr "En kommandolinje skal opgives!"
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
-msgstr "Håndpluk bruger"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
+msgstr "Medieklasse"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Overfør printerkonfiguration"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
+msgstr "Klasse af maskinenhed"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Vil du aktivere udskrift på printerne som nævnes ovenfor?\n"
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+msgid "Model"
+msgstr "Model"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of suid root files"
-msgstr "Tjek tilføjelser og fjernelser af suid root-filer"
+#: ../../standalone/harddrake2_.c:58
+msgid "hard disk model"
+msgstr "Disk-model"
-#: ../../any.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
msgstr ""
-"For at dette kan virke på en W2K PDC skal du nok have administratoren til at "
-"køre: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
-"add og genstarte serveren.\n"
-"Du skal også have et brugernavn og en adgangskode for at maskinen kan "
-"tilsluttes Windows(TM)-domænet.\n"
-"Hvis netværket ikke er aktiveret vil Drakx prøve at slutte til domænet efter "
-"trinnet med opsætning af netværk.\n"
-"Skulle denne opsætning fejle af nogen årsag, og domæneautentifikation ikke "
-"virke, så kør 'smbpasswd -j DOMAIN -U USER%%PASSWORD' med dit Windows(tm) "
-"domæne og administrators brugernavn/adgangskode, efter genstart af "
-"systemet.\n"
-"Kommandoen 'wbinfo -t' vil afprøve om dine hemmelige autentifikationsdata er "
-"i orden."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (port %s)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Brug netværksforbindelse til sikkerhedskopiering"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Kernel version"
-msgstr "Kerne-version"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Det er nu tid til at angive hvilke pakker du vil installere på dit system. "
-"Der er tusindvis af pakker til dit Mandrake Linux system, og for at gøre det "
-"nemmere at håndtere dem er pakker blevet placeret i grupper af lignende "
-"programmer.\n"
-"\n"
-"Pakkerne er ordnet i grupper svarende til en bestemt anvendelse af din "
-"maskine. Mandrake Linux har 4 foruddefinerede installationer tilgængelige. "
-"Du kan tænke på installationsklasserne som beholdere for forskellige pakker. "
-"Du kan vælge og vrage programmer fra de forskellige grupper, så en "
-"installation af 'Arbejdsstation' kan også have programmer fra "
-"udviklingsgruppen installeret.\n"
-"\n"
-" * '%s': Hvis din maskine skal bruges som en arbejdsstation, vælg da en "
-"eller flere af programmerne der er i arbejdsstationsgruppen.\n"
-"\n"
-" * '%s': hvis du vil bruge maskinen til programmering vælg da de relevante "
-"pakker fra denne gruppe.\n"
-"\n"
-" * '%s': hvis det er planen at maskinen skal være en server, så vælg de mere "
-"almindelige tjenester, som du ønsker at installere på maskinen.\n"
-"\n"
-" * '%s': her skal du vælge foretrukne grafiske miljø. Vælg mindst ét, hvis "
-"du ønsker at have en grafisk grænseflade tilgængelig.\n"
-"\n"
-"Ved flytning af musen over et gruppenavn vises en kort forklarende tekst om "
-"denne gruppe. Hvis du ikke vælger nogen grupper ved installation (i "
-"modsætning til en opgradering), vil en dialog komme frem som foreslår dig "
-"forskellige former for minimal installation: \n"
-"\n"
-" * '%s' installerer de færrest mulige antal pakker for at få en fungerende "
-"grafisk arbejdsstation.\n"
-"\n"
-" * '%s' installerer det basale system plus basale nytteprogrammer og "
-"tilhørende dokumentation. Denne installation er passende til at sætte en "
-"server op.\n"
-"\n"
-" * '%s' vil installere det absolut mindst mulige antal pakker nødvendigt for "
-"at få et virkende Linux-system. Med denne installation fås kun en "
-"grænseflade med kommandolinjer. Den totale størrelse af denne installation "
-"er omkring 65 megabyte.\n"
-"\n"
-"Du kan afkrydse boksen '%s', hvilket er nyttigt, hvis du kender de tilbudte "
-"pakker godt, eller hvis du ønsker at have fuld kontrol over hvad der skal "
-"installeres.\n"
-"\n"
-"Hvis du har startet installationen i '%s'-tilstand, kan du fravælge alle "
-"grupper for at undgå at installere nogen nye pakker. Dette er nyttigt ved "
-"reparation eller opdatering af det eksisterende system."
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "Acceptér bruger"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Model name"
+msgstr "Modulnavn"
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
-msgstr "Server"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Official vendor name of the cpu"
+msgstr "navnet på producenten af enheden"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
-msgstr "Venstre skifte-tast"
+#: ../../standalone/harddrake2_.c:61
+msgid "Number of buttons"
+msgstr "Antal knapper"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " local network"
-msgstr " lokalnetværk"
+#: ../../standalone/harddrake2_.c:62
+#, fuzzy
+msgid "Name"
+msgstr "Navn: "
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "Dårligt valg, prøv igen\n"
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "network printer port"
+msgstr ", netværksprinter \"%s\", port %s"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
-msgstr "Syslog rapporterer til konsol 12"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
+msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search new servers"
-msgstr "Søg efter nye servere"
+#: ../../standalone/harddrake2_.c:64
+#, fuzzy
+msgid "the number of the processor"
+msgstr "farven på forløbslinjen"
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
-msgstr "Heard- og McDonald-øerne"
+#: ../../standalone/harddrake2_.c:65
+#, fuzzy
+msgid "Model stepping"
+msgstr "indlæs opsætning"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
-msgstr "Intet alternativ drivprogram"
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "Normal -> Ekspert"
+#: ../../standalone/harddrake2_.c:66
+#, fuzzy
+msgid "The type of bus on which the mouse is connected"
+msgstr "Vælg hvilken seriel port din mus er forbundet til."
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
-msgstr "(på denne maskine)"
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
+msgstr "navnet på producenten af enheden"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Gateway-adresse skal have formatet 1.2.3.4"
+#: ../../standalone/harddrake2_.c:68
+#, fuzzy
+msgid "the vendor name of the processor"
+msgstr "navnet på producenten af enheden"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
-msgstr ""
-"\"%s\" baseret winmodem opdaget, ønsker du at installere krævet programmel?"
+#: ../../standalone/harddrake2_.c:82
+msgid "/_Quit"
+msgstr "/_Afslut"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Leder efter pakker der allerede er installeret..."
+#: ../../standalone/harddrake2_.c:83
+#, fuzzy
+msgid "/Autodetect _printers"
+msgstr "Auto-detekteret"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Brug forskelsbackupper"
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
+msgstr "/_Indstillinger"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Driver"
-msgstr "Drivprogram"
+#: ../../standalone/harddrake2_.c:85
+#, fuzzy
+msgid "/Autodetect _modems"
+msgstr "Auto-detekteret"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf vil nogen gange arrangere udførelse af forskellige opgaver ved "
-"opstart for at vedligeholde systemkonfigurationen."
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
+msgstr "/_Hjælp"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVD-R device"
-msgstr "DVDR-enhed"
+#: ../../standalone/harddrake2_.c:89
+msgid "/_Help..."
+msgstr "/_Hjælp..."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Printer på ekstern lpd server"
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
+msgstr "Harddrake hjælp"
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/harddrake2_.c:93
msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
+"Description of the fields:\n"
"\n"
-"-You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
msgstr ""
-"Før du installerer nogen skrifttyper bør du være sikker på at du har lov til "
-"at bruge og installere dem på dit system. \n"
+"Beskrivelse af felterne:\n"
"\n"
-"-Du kan installere skrifttyperne på normal måde. I sjældne tilfælde kan "
-"fejlbehæftede skrifttyper få din X-server til at hænge."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:96
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."
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
msgstr ""
-"Yaboot er en systemopstarter til NewWorld MacIntosh-maskinel. Den kan starte "
-"enten GNU/Linux, MacOS eller MacOSX, hvis de er til stede på din maskine. "
-"Sædvanligvis vil disse andre styresystemer blive korrekt opdaget og "
-"installeret. Hvis dette ikke skulle være tilfældet kan du her tilføje en "
-"indgang i hånden. Vær omhyggelig med at vælge de korrekte parametre.\n"
-"\n"
-"Yaboots hovedvalg er:\n"
-"\n"
-" * Init-besked: En enkel tekstbesked som vises før valg af opstart.\n"
-"\n"
-" * Opstartsenhed: Angiver hvor du ønsker at placere informationen som er "
-"nødvendig for at starte GNU/Linux. Du vil generelt have indstillet en "
-"bootstrap-partition tidligere til at have denne information.\n"
-"\n"
-" * Open firmwareforsinkelse: Til forskel fra LILO er der to forsinkelser "
-"mulige med yaboot. Den første forsinkelse bliver målt i sekunder og du kan "
-"ved det punkt vælge mellem CD, OF-opstart, MacOS eller Linux.\n"
-"\n"
-" * Ventetid før kerneopstart: Denne er lig LILO-opstartsforsinkelsen. Efter "
-"at have valgt Linux vil du have denne ventetid gange 0,1 sekunder før din "
-"forvalgte kernebeskrivelse bliver valgt.\n"
-"\n"
-" * Aktivér CD-opstart?: Hvis du vælger dette valg vil du kunne trykke 'C' "
-"for CD ved det første opstartsvalg.\n"
-"\n"
-" * Aktiver OF-opstart?: Hvis du vælger dette valg vil du kunne trykke 'N' "
-"for 'Open Firmware' ved det første opstartsvalg.\n"
-"\n"
-" * Forvalgt styresystem: Du kan vælge hvilket forvalgt styresystem der skal "
-"startes når Open Firmwareforsinkelsen er udløbet."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
-msgstr "Onsdag"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "Tyskland"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
-msgstr "Østrig"
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "Ingen mus"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "Vælg din cd/dvd-mediastørrelse (MB)"
+#: ../../standalone/harddrake2_.c:96
+#, fuzzy
+msgid "Select a device !"
+msgstr "Vælg en skanner"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check permissions of files in the users' home"
-msgstr "Tjek rettigheder på filer i brugernes hjemmekataloger."
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
+msgstr "/_Rapportér fejl"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr "Kør \"sndconfig\" efter installation for at konfigurere dit lydkort"
+#: ../../standalone/harddrake2_.c:102
+msgid "/_About..."
+msgstr "/_Om..."
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "Sammenfold træ"
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
+msgstr "Om Harddrake"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Autoinstallationskonfigurering"
+#: ../../standalone/harddrake2_.c:105
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Dette er HardDrake, et Mandrake-værktøj for konfigurering af maskinel.\n"
+"Version:"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "Konfigurér netværk"
+#: ../../standalone/harddrake2_.c:106
+msgid "Author:"
+msgstr "Forfatter:"
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "Hvor vil du placere opstartsprogrammet?"
+#: ../../standalone/harddrake2_.c:113
+msgid "Detection in progress"
+msgstr "Søgning udføres"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Dit valg af foretrukkent sprog vil påvirke sproget for dokumentationen, "
-"installeringen og systemet generelt. Vælg først den verdensdel du befinder "
-"dig i, og så det sprog, du taler.\n"
-"\n"
-"Hvis du klikker på '%s'-knappen kan du vælge andre sprog, der installeres "
-"på maskinen, og derved installeres de sprogspecifikke filer for "
-"systemdokumentation og programmer. Hvis du for eksempel beværter folk fra "
-"Spanien på din maskine, vælg da engelsk som standardsproget i træ-visningen, "
-"og '%s' i den avancerede afdeling.\n"
-"\n"
-"Bemærk at du ikke er begrænset til at vælge et enkelt yderligere sprog. Du "
-"kan vælge flere sprog, eller endog installere dem alle ved at markere '%s'-"
-"boksen. Valg af understøttelse for et sprog betyder at oversættelser, "
-"skrifttyper, stavekontrol mv for dette sprog bliver installeret. Ydermere "
-"vil '%s'-boksen gøre at systemet tvinges til at bruge ISO 10646 (UTF-8). "
-"Bemærk dog at dette er en eksperimentel facilitet. Hvis du vælger "
-"forskellige sprog der kræver forskellige kodninger, vil ISO 10646-"
-"understøttelse blive installeret under alle omstændigheder.\n"
-"\n"
-"For at skifte mellem de forskellige sprog installeret på systemet kan du "
-"starte programmet '/usr/sbin/localedrake' som 'root' for at ændre det sprog "
-"der bruges af hele systemet. Kørsel af dette program som almindelig bruger "
-"vil kun ændre sprogindstillingerne for denne bruger."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr "%s understøttes ikke af denne version af Mandrake Linux."
+#: ../../standalone/harddrake2_.c:119
+msgid "Harddrake2 version "
+msgstr "Harddrake2 version "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "tape"
-msgstr "bånd"
+#: ../../standalone/harddrake2_.c:126
+msgid "Detected hardware"
+msgstr "Fundet maskinel"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr "DHCP-klient"
+#: ../../standalone/harddrake2_.c:129
+msgid "Information"
+msgstr "Informationer"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "List brugere på skærmhåndteringer (kdm og gdm)."
+#: ../../standalone/harddrake2_.c:131
+msgid "Configure module"
+msgstr "Konfigurér modul"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech mus (seriel, gammel C7 type)"
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
+msgstr "Kør konfigurationsværktøj"
-#: ../../partition_table.pm:1
+#: ../../standalone/harddrake2_.c:143
#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Genskabning fra fil %s mislykkedes: %s"
+msgid "Running \"%s\" ..."
+msgstr "Kører \"%s\" ..."
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:159
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"
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-"Jeg kan ikke læse partitionstabellen for enhed %s, den er for ødelagt for "
-"mig :( Jeg kan forsøge fortsat at udblanke dårlige partitioner (ALLE DATA "
-"vil gå tabt!). Den anden mulighed er at forbyde DrakX at ændre "
-"partitionstabellen. (fejlen er %s)\n"
-"\n"
-"Er du indforstået med at ødelægge alle partitionerne?\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Find Package"
-msgstr "Find pakke"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Er du sikker på at du vil opsætte udskrift på denne maskine?\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "New devfs device"
-msgstr "Ny devfs-enhed"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
-msgstr "Fejl: Kan ikke starte %s."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Boot Style Configuration"
-msgstr "Konfiguration af opstartsudseende"
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
+msgstr "primær"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Automatisk tidssynkronisering"
+#: ../../standalone/harddrake2_.c:231
+msgid "secondary"
+msgstr "sekundær"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "Sikkerhedskopier fandtes ikke på %s."
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect modems"
+msgstr "Auto-detekteret"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "Armensk (fonetisk)"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect printers"
+msgstr "Auto-detekteret"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Card model:"
-msgstr "Kortmodel:"
+#: ../../standalone/harddrake2_.c:261
+#, fuzzy
+msgid "/Options"
+msgstr "/_Indstillinger"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
-msgstr "Tynd klient"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "Vælg tastaturlayout."
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
-msgstr "Tak fordi du valgte Mandrake Linux 9.2!"
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr "Vil du have at Bak-tasten giver Delete i konsollen?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Start Server"
-msgstr "Start server"
+#: ../../standalone/livedrake_.c:18
+msgid "Change Cd-Rom"
+msgstr "Skift cdrom"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
+#: ../../standalone/livedrake_.c:19
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"Indsæt installations-cdrom'en i dit cdrom-drev og tryk på Ok, når det gjort\n"
+"Hvis du ikke har den - tryk på Annullér, så undgås levende opgradering"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "All remote machines"
-msgstr "Alle eksterne maskiner"
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Kan ikke starte levende opgradering!!!\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Install themes"
-msgstr "Installér temaer"
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
+msgstr "Ændringen er fortaget, men for at være effektiv skal du logge ud"
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
-msgstr "Spansk"
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
+msgstr "logdrake"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "Forbereder installationen"
+#: ../../standalone/logdrake_.c:68
+msgid "Show only for the selected day"
+msgstr "Vis kun for den valgte dag"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Redigér valgte vært/netværk"
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
+msgstr "/Fil/_Ny"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add User -->"
-msgstr "Tilføj bruger -->"
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
+msgstr "<Ctrl>N"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "Nauru"
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
+msgstr "/Fil/_Åbn"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Installation af True Type-skrifttyper"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
+msgstr "<Ctrl>O"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Auto-opdagelse af printere tilsluttet direkte til det lokale netværk"
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr "/Fil/_Gem"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN configuration"
-msgstr "LAN konfiguration"
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
+msgstr "<Ctrl>S"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "hard disk model"
-msgstr "Disk-model"
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
+msgstr "/Fil/Gem _som"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Vedligeholdelse af /etc/exports:\n"
-" \t\tClusternfs lader dig eksportere rod-filsystemet til diskløse "
-"klienter, drakTermServ\n"
-" \t\topsætter de rigtige indgange for at tillade anonym adgang til "
-"rod-filsystemet fra\n"
-" \t\tdiskløse klienter.\n"
-"\n"
-" \t\tEn typisk eksporterings-indgang for clusternfs er:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t\t/home SUBNET/MASKE(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tHvor SUBNET/MASKE bliver defineret for dit netværk."
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr "/Fil/-"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Du kan ikke bruge et LVM logisk delarkiv for monteringspunkt %s"
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
+msgstr "/Indstillinger/Test"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "Hent skrifttyper fra Windows"
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
+msgstr "/Hjælp/_Om..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
+#: ../../standalone/logdrake_.c:145
+msgid "User"
+msgstr "Bruger"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-"Din maskine kan synkronisere sit ur\n"
-"med en ekstern tidsserver med NTP "
+#: ../../standalone/logdrake_.c:146
+msgid "Messages"
+msgstr "Beskeder"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "Iransk"
+#: ../../standalone/logdrake_.c:147
+msgid "Syslog"
+msgstr "System"
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
-msgstr "Kroatien"
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
+msgstr "Forklaringer til Mandrake-værktøjer"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "Gateway:"
+#: ../../standalone/logdrake_.c:151
+msgid "search"
+msgstr "søg"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add server"
-msgstr "Tilføj server"
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
+msgstr "Et værktøj til at overvåge dine logfiler"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name"
-msgstr "Eksternt printernavn"
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
+msgstr "Indstillinger"
-#: ../advertising/10-security.pl:1
-#, 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."
-msgstr ""
-"MandrakeSoft har designet eksklusive værktøjer for at lave den mest sikre "
-"Linux-version nogensinde: Draksec, et systemsikkerheds-"
-"administrationsværktøj, og en stærk brandmur bevirker tilsammen at "
-"indbrudsrisikoen reduceres betragteligt."
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
+msgstr "Samstemmende:"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "Enhed: "
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
+msgstr "Men ikke samstemmende"
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
+msgstr "Vælg fil"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "Licensaftale"
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
+msgstr "Kalender"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "System Options"
-msgstr "Systemtilvalg"
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
+msgstr "Indhold af filen"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Please choose the desired security level"
-msgstr "Vælg det ønskede sikkerhedniveau"
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+msgid "Mail alert"
+msgstr "Post-påmindelse"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/logdrake_.c:245
#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "Denne vært er allerede på listen, og kan ikke blive tilføjet igen.\n"
+msgid "please wait, parsing file: %s"
+msgstr "vent venligst, fortolker filen: %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", USB printer"
-msgstr ", USB printer"
+#: ../../standalone/logdrake_.c:392
+msgid "Mail alert configuration"
+msgstr "Konfiguration af postpåmindelse"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/logdrake_.c:393
msgid ""
-"Unable to properly close mkbootdisk:\n"
+"Welcome to the mail configuration utility.\n"
"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Kan ikke lukke mkbootdisk ordentligt: \n"
+"Velkommen til programmet for postkonfigurering.\n"
"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-"Inkrementale sikkerhedskopier gemmer kun filer der er ændret eller er nye i "
-"forhold til den seneste sikkerhedskopi."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Vælg de programpakker som vil understøtte skrifttyperne:"
+"Her vil du kunne opsætte påmindelsessystemet\n"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "Konfigurér X"
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
+msgstr "Apache World Wide Web Server"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hd"
-msgstr "disk"
+#: ../../standalone/logdrake_.c:401
+msgid "Domain Name Resolver"
+msgstr "Løser for domænenavn"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Tyrkisk (traditionel \"F\" model)"
+#: ../../standalone/logdrake_.c:402
+msgid "Ftp Server"
+msgstr "FTP-server"
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "Tillykke!"
+#: ../../standalone/logdrake_.c:403
+msgid "Postfix Mail Server"
+msgstr "Postfix postserver"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Brug ejers id ved udførelsen"
+#: ../../standalone/logdrake_.c:404
+msgid "Samba Server"
+msgstr "Samba-server"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow remote root login"
-msgstr "Tillad ekstern root-logind."
+#: ../../standalone/logdrake_.c:405
+msgid "SSH Server"
+msgstr "SSH-server"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Down"
-msgstr "Ned"
+#: ../../standalone/logdrake_.c:406
+msgid "Webmin Service"
+msgstr "Webmin-tjeneste"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Rå printer (ingen driver)"
+#: ../../standalone/logdrake_.c:407
+msgid "Xinetd Service"
+msgstr "Xinetd-tjeneste"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Install rpm"
-msgstr "Installér rpm"
+#: ../../standalone/logdrake_.c:414
+msgid "service setting"
+msgstr "opsætning af tjenester"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/logdrake_.c:415
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"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
-"For at skrive en fil fra kommandolinjen (terminalvinduet) kan du enten bruge "
-"programmet '%s <fil>' eller et grafisk printerværktøj: 'xpp <fil>' eller "
-"'kprinter <fil>'. De grafiske værktøjer lader dig vælge printeren og ændre "
-"indstillingerne på en nem måde.\n"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "Resterende tid "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "Britisk"
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "Afmontér"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "Afinstallér skrifttyper"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Vent venligst, finder og konfigurerer enheder..."
+"Du vil modtage en advarsel hvis en af de valgte tjenester ikke længere kører"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "Tysk (ingen døde taster)"
+#: ../../standalone/logdrake_.c:428
+msgid "load setting"
+msgstr "indlæs opsætning"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tSend epost til %s\n"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
+msgstr "Du vil modtage en advarsel hvis belastningen er højere end denne værdi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
-msgstr "Overfører %s ..."
+#: ../../standalone/logdrake_.c:444
+msgid "alert configuration"
+msgstr "advarsels-konfiguration"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tusinde farver (15 bit)"
+#: ../../standalone/logdrake_.c:445
+msgid "Please enter your email address below "
+msgstr "Indtast din adgangskode for epost nedenfor"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
-msgstr "Du kan eksportere med NFS eller Samba. Hvilken vil du bruge"
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
+msgstr "Gem som..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "Gambia"
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "Vælg muse-type."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Mandrake Kontrolcenter"
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
+msgstr "Emulering af tredje knap?"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Reboot"
-msgstr "Genstart"
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Konfigurér netværk"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device"
-msgstr "Multi-funktions-enhed"
+#: ../../standalone/net_monitor_.c:96
+#, fuzzy
+msgid "Profile "
+msgstr "Profil: "
-#: ../../network/drakfirewall.pm:1
-#, 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."
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
msgstr ""
-"Du kan angive diverse porte. \n"
-"Gyldige eksempler er: 139/tcp 139/udp.\n"
-"Se /etc/services for information."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Tape \n"
+#: ../../standalone/net_monitor_.c:103
+#, fuzzy
+msgid "Sending Speed:"
+msgstr "Sender filer..."
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
msgstr ""
-"Ingen weblæser er installeret på dit system. Installér venligst én hvis du "
-"ønsker at bladre i hjælpesystemet."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remember this password"
-msgstr "Husk denne adgangskode"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "grundet uopfyldt %s"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Deling af internetforbindelse er nu slået til"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Netværk via SSH.\n"
+#: ../../standalone/net_monitor_.c:106
+#, fuzzy
+msgid "Connection Time: "
+msgstr "Type af forbindelse"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
msgstr ""
-" Hvis den ønskede printer blev fundet, så vælg den fra listen og tilføj "
-"dernæst brugernavn, adgangskode og/eller arbejdsgruppe om nødvendigt."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " cable"
-msgstr " kabel"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
-msgstr "Brug den frie plads på Windows-partitionen"
+#: ../../standalone/net_monitor_.c:147
+#, fuzzy
+msgid "Wait please, testing your connection..."
+msgstr "Tester din forbindelse..."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s fundet på %s, skal det konfigureres automatisk?"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Lav forbindelse til Internettet"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 driver: %s\n"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Lav forbindelse til Internettet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
msgstr ""
-"Denne vært eller dette netværk er allerede på listen, og kan ikke blive "
-"tilføjet igen.\n"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Vælg pakker som skal installeres"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
-msgstr "Papua Ny Guinea"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Multi-funktions-enhed på en parallel port"
-
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Busy files"
-msgstr "Lav sikkerhedskopi af systemfiler"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "Serbisk (kyrillisk)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Indtast kataloget hvor sikkerhedskopier gemmes"
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
-msgstr "Skjul kernens beskeder som standard"
+#: ../../standalone/net_monitor_.c:225
+#, fuzzy
+msgid "Connection complete."
+msgstr "Opkoblingshastighed"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:226
msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-"Ønsker du fremover at bruge printeren \"%s\"\n"
-"som standard?"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
-msgstr "Stutningen på DHCP-området"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "Opretter opstartsdiskette..."
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Tester din forbindelse, vent venligst..."
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "Lukker netværket ned"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "Brugernavn"
+#: ../../standalone/net_monitor_.c:330
+#, fuzzy
+msgid "Color configuration"
+msgstr "advarsels-konfiguration"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
msgstr ""
-"NFS er en populær protokol til fildeling over TCP/IP\n"
-"netværk. Denne service giver NFS fillåsnings funktionalitet"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
-msgstr "DHCP-Klient"
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, 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"
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
msgstr ""
-"Dette er HardDrake, et Mandrake-værktøj for konfigurering af maskinel.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author: </span> Thierry Vignaud &lt;tvignaud "
-"@mandrakesoft.com&gt;\n"
-"\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
-msgstr "forkast"
+#: ../../standalone/net_monitor_.c:400
+#, fuzzy
+msgid "Local measure"
+msgstr "Lokale filer"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Udskriver/Skanner på '%s'"
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
+msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit raid modules"
-msgstr "undgå raid-moduler"
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:453
+#, fuzzy
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)."
+"Warning, another internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"lpd er printer-dæmonen som er nødvendig for at lpr virker.\n"
-"Den er basalt en server der håndterer udskrifts-opgaver."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
-msgstr "Irsk"
+"Advarsel, en anden internetforbindelse er blevet fundet, der måske bruger "
+"dit netværk"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sunday"
-msgstr "Søndag"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "Tilslut"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Konfiguration af Internetforbindelse"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Disconnect %s"
+msgstr "Afbryd"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
-msgstr "kommaseparerede tal"
+#: ../../standalone/printerdrake_.c:47
+msgid "Reading printer data ..."
+msgstr "Læser printerdata ..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Once you've selected a device, you'll be able to see the device information "
-"in fields displayed on the right frame (\"Information\")"
-msgstr ""
-"Når du har valgt en enhed kan du se enhedsinformationen på felter som vises "
-"i den højre ramme (\"Information\")"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Detecting devices ..."
+msgstr "Søger efter enheder..."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Flyt valgte regel et niveau op"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
+msgstr "Afprøv porte"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr ""
-"Den følgende skanner\n"
-"\n"
-"%s\n"
-"er tilgængelig på dit system.\n"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr "%s understøttes ikke af denne version af Mandrake Linux."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/scannerdrake_.c:54
#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Ønsker du virkelig at fjerne printeren \"%s\"?"
+msgid "%s found on %s, configure it?"
+msgstr "%s fundet på %s, skal det konfigureres?"
-#: ../../install_interactive.pm:1
+#: ../../standalone/scannerdrake_.c:57
#, c-format
-msgid "I can't find any room for installing"
-msgstr "Kan ikke finde plads til installering"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Default printer"
-msgstr "Standard printer"
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr "%s findes ikke skannerdatabasen, skal den konfigureres manuelt?"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Du har konfigureret flere måder at koble dig mod internet på.\n"
-"Venligst vælg den du ønsker at bruger.\n"
-"\n"
+#: ../../standalone/scannerdrake_.c:63
+msgid "Select a scanner"
+msgstr "Vælg en skanner"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/scannerdrake_.c:91
#, c-format
-msgid "Modify RAID"
-msgstr "Ændr RAID"
+msgid "This %s scanner is unsupported"
+msgstr "Denne %s-skanner er ikke understøttet"
-#: ../../network/isdn.pm:1
+#: ../../standalone/scannerdrake_.c:105
#, 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."
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
msgstr ""
-"Jeg har opdaget et ISDN PCI-kort, men jeg ved ikke hvilken type. Vælg et PCI-"
-"kort i næste skærmbillede."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr "Tilføj bruger"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-diske %s\n"
+"Scannerdrake kunne ikke genkende din %s-skanner.\n"
+"Vælg venligst den enhed hvor din skanner er isat"
-#: ../../lang.pm:1
-#, c-format
-msgid "Liberia"
-msgstr "Liberia"
+#: ../../standalone/scannerdrake_.c:107
+msgid "choose device"
+msgstr "vælg enhed"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:113
#, c-format
msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
msgstr ""
-"Kunne ikke installere de nødvendige pakker til at opsætte en skanner med "
-"Scannerdrake."
+"Denne %s-skanner skal være konfigureret af printerdrake.\n"
+"Du kan starte printerdrake fra Mandrake Kontrolcenter i Udstyr-afsnittet."
-#: ../../standalone/drakgw:1
+#: ../../standalone/scannerdrake_.c:118
#, 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"
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
msgstr ""
-"Indtast venligst navnet på grænsefladen som er koblet på internettet.\n"
-"\n"
-"Eksempler:\n"
-"\t\tppp+ for modem- eller DSL-opkoblinger, \n"
-"\t\teth0 eller eth1 for kabelopkobling eller ADSL-opkobling via "
-"lokalnetværk, \n"
-"\t\tippp+ for isdn-opkobling.\n"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Vælg tastatur"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Format partitions"
-msgstr "Formatér partitioner"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Automatisk rettelse af CUPS-konfiguration"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Running \"%s\" ..."
-msgstr "Kører \"%s\" ..."
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "enable radio support"
-msgstr "aktivér radio-understøttelse"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Skannerdeling til værter: "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Loopback-filnavn: %s"
+"Din %s-skanner er blevet konfigureret.\n"
+"Du kan nu skanne dokumenter med 'XSane' fra Multimedie/grafik i "
+"programmenuen."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Angiv hvilken printer som udskriftsopgaverne skal gå til."
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Nogen enheder i maskinelklassen '%s' blev fjernet:\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not transfer printers"
-msgstr "Overfør ikke printere"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
+msgstr "Nogen enheder blev tilføjet:\n"
-#: ../../help.pm:1
-#, c-format
-msgid "Delay before booting the default image"
-msgstr "Ventetid før opstart af forvalgt styresystem"
+#: ../../standalone/service_harddrake_.c:64
+#, fuzzy
+msgid "Hardware probing in progress"
+msgstr "Søgning udføres"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Hard Disk to backup"
-msgstr "Brug disk til sikkerhedskopiering"
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "Vælg sprog"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Configure"
-msgstr "Konfigurér"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "Vælg installations-metode"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake"
-msgstr "Skannerdrake"
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
+msgstr "Harddisk bestemmelse"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Advarsel, en anden internetforbindelse er blevet fundet, der måske bruger "
-"dit netværk"
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "Konfigurér mus"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
-msgstr "Lav sikkerhedskopi af brugere"
+#: ../../steps.pm_.c:18
+msgid "Choose your keyboard"
+msgstr "Vælg tastatur"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Indtast domænenavn, værtsnavn og IP adressen for evt. ekstra navne-servere.\n"
-"Dit værtsnavn skal være et fuldt kvalificeret værtsnavn inklusive domæne,\n"
-"f.eks. minpc.mitfirma.dk. Hvis du ikke har nogen ekstra navne-servere,\n"
-"så lad navne-server-felterne være blanke."
+#: ../../steps.pm_.c:19
+msgid "Security"
+msgstr "Sikkerhed"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Vælg printerkø-behandler"
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "Vælg filsystemer"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Create new theme"
-msgstr "Opret nyt tema"
+#: ../../steps.pm_.c:21
+msgid "Format partitions"
+msgstr "Formatér partitioner"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
-msgstr "Forklaringer til Mandrake-værktøjer"
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "Vælg pakker til installation"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "No image found"
-msgstr "Intet aftryk fundet!"
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "Installér system"
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
-"Nogle vigtige pakker blev ikke installeret rigtigt.\n"
-"Enten er dit cdrom-drev eller din cdrom fejlbehæftet.\n"
-"Tjek cdrom'en på en færdiginstalleret maskine ved brug af \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "Tilføj bruger"
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
-msgstr "Mandrake Linux 9.2 er den ultimative udviklingsplatform."
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "Konfigurér netværk"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Detected model: %s"
-msgstr "Fandt model: %s"
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "Konfigurér tjenester"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
-msgstr "'%s' er ikke en gyldig epostadresse!"
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "Installér systemopstarter"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"X11 skærmhåndtering giver dig mulighed for grafisk indlogning på dit system "
-"med X Windowssystemet kørende, og understøtter flere forskellige X-sessioner "
-"på din lokale maskine samtidigt."
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "Opret opstartsdiskette"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr "hvis sat til ja, så kør de daglige sikkerhedskontroller."
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "Konfigurér X"
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
-msgstr "Aserbajdsjan"
+#: ../../steps.pm_.c:34
+msgid "Install system updates"
+msgstr "Installér opdateringer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Endhedsnavnet der skal bruges til sikkerhedskopiering"
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "Afslut installation"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
-msgstr "Intet bånd i %s."
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
msgstr ""
-" --doc <link> - henvis til en anden webside ( for WM-"
-"velkomstforside)\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "Web/FTP"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr "dette er den fysiske bus som enheden er tilsuttet (fx PCI, USB, ...)"
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
+msgstr "Netværksmaskine (klient)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Hvordan er printeren tilsluttet?"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS-vært, SMB-vært, mellemvært (proxy), SSH-vært"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security level"
-msgstr "Sikkerhedsniveau"
+#: ../../share/compssUsers:999
+msgid "Office"
+msgstr "Kontor"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "final resolution"
-msgstr "endelig opløsning"
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Gnome-arbejdsstation"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
-msgstr "Tjenester"
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Værktøjer til Palm Pilot og Visor"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Auto configuration"
-msgstr "Auto-konfiguration"
+#: ../../share/compssUsers:999
+msgid "Workstation"
+msgstr "Arbejdsstation"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 Mb"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Brandmur/router"
#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Kontor-arbejdsstation"
+msgid "Domain Name and Network Information Server"
+msgstr "Server for domænenavne (DNS) og netværksinformation (NIS)"
#: ../../share/compssUsers:999
msgid ""
@@ -20896,68 +14771,76 @@ msgstr ""
"gnumeric), pdf-visere, o.lign."
#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Spillemaskine"
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "Lyd-relaterede værktøjer: mp3 eller midi-afspillere, mixere o.lign."
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Underholdnings-programmer: arkade, bræt, strategi, osv."
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Understøttelse for tredjeparts-programmer"
#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimedie-station"
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Bøger og vejledninger om Linux og Frit Programmel"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Lyd- og video-afspillere og redigeringsværktøjer"
+msgid "KDE Workstation"
+msgstr "KDE-arbejdsstation"
#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internet-station"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Værktøjssæt til at læse samt sende post og nyheder (mutt, tin..) , og til at "
-"browse på nettet"
+msgid "Multimedia - Video"
+msgstr "Multimedie - Video"
#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Netværksmaskine (klient)"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr "Samling af værktøjer til post, nyheder, filoverførsel og chat"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Klienter for forskellige protokoller inklusiv ssh"
+msgid "Database"
+msgstr "Database"
#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Konfiguration"
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL eller MySQL database-server"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
msgstr "Værktøjer til at lette indstillingen af din maskine"
#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Videnskabelig arbejdsstation"
+msgid "Multimedia - Sound"
+msgstr "Multimedie - Lyd"
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
-msgstr "Videnskabelige programmer såsom gnuplot"
+msgid "Documentation"
+msgstr "Dokumentation"
#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr "Konsolværktøjer"
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Redigeringsværktøjer, skaller, filværktøjer, terminaler"
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix postserver, Inn nyhedsserver"
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE-arbejdsstation"
+msgid "Internet station"
+msgstr "Internet-station"
+
+#: ../../share/compssUsers:999
+msgid "Multimedia station"
+msgstr "Multimedie-station"
+
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Konfiguration"
+
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "Flere grafiske miljøer (Gnome, IceWM)"
#: ../../share/compssUsers:999
msgid ""
@@ -20968,241 +14851,294 @@ msgstr ""
"supplerende værktøjer."
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome-arbejdsstation"
+msgid "Graphical Environment"
+msgstr "Grafisk miljø"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr "Et grafisk miljø med brugervenlig samling af programmer og værktøjer"
+msgid "Development"
+msgstr "Udvikling"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Andre grafiske miljøer"
+msgid "Apache, Pro-ftpd"
+msgstr "Apache og Pro-ftpd"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgid "Tools to create and burn CD's"
+msgstr "Værktøjer til at skabe og brænde CD-er"
+
+#: ../../share/compssUsers:999
+msgid "Office Workstation"
+msgstr "Kontor-arbejdsstation"
+
+#: ../../share/compssUsers:999
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, o.lign."
+
+#: ../../share/compssUsers:999
+msgid "Graphics programs such as The Gimp"
+msgstr "Grafiske programmer som fx The Gimp"
+
+#: ../../share/compssUsers:999
+msgid "DNS/NIS "
+msgstr "DNS/NIS "
#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr "C og C++ udviklingsbiblioteker, programmer, og include-filer."
#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentation"
+msgid "Network Computer server"
+msgstr "Netværksmaskine server"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Bøger og vejledninger om Linux og Frit Programmel"
+msgid "Mail/Groupware/News"
+msgstr "Post/nyhedsgrupper"
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr "LSB"
+msgid "Game station"
+msgstr "Spillemaskine"
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Linux Standard Base. Understøttelse for tredjeparts-programmer"
+msgid "Video players and editors"
+msgstr "Videoafspillere og redigeringsværktøjer"
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
+msgid "Multimedia - Graphics"
+msgstr "Multimedie - Grafik"
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache og Pro-ftpd"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Underholdnings-programmer: arkade, bræt, strategi, osv."
#: ../../share/compssUsers:999
-msgid "Mail"
-msgstr "Post"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"Værktøjssæt til at læse samt sende post og nyheder (pine, mutt, tin..) , og "
+"til at browse på nettet"
#: ../../share/compssUsers:999
-msgid "Postfix mail server"
-msgstr "Postfix postserver"
+msgid "Personal Finance"
+msgstr "Personlig økonomi"
#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Database"
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "Et grafisk miljø med brugervenlig samling af programmer og værktøjer"
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL eller MySQL database-server"
+msgid "Clients for different protocols including ssh"
+msgstr "Klienter for forskellige protokoller inklusiv ssh"
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Brandmur/ruter"
+msgid "LSB"
+msgstr "LSB"
#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Internetadgang"
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
+msgid "Sound and video playing/editing programs"
+msgstr "Lyd- og video-afspillere og redigeringsværktøjer"
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Server for domænenavne (DNS) og netværksinformation (NIS)"
+msgid "Other Graphical Desktops"
+msgstr "Andre grafiske miljøer"
#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Netværksmaskine server"
+msgid "Editors, shells, file tools, terminals"
+msgstr "Redigeringsværktøjer, skaller, filværktøjer, terminaler"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS-vært, SMB-vært, mellemvært (proxy), SSH-vært"
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "Programmer til at håndtere din økonomi, som fx gnucash"
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
-msgstr ""
-"Værktøjssæt til at læse samt sende post og nyheder, og til at browse på "
-"nettet"
+msgid "Personal Information Management"
+msgstr "Personlig informationshåndtering"
-#~ msgid "The setup has already been done, and it's currently enabled."
-#~ msgstr "Indstilling er allerede gjort. og er for nærværende aktiv."
+#: ../../share/compssUsers:999
+msgid "Multimedia - CD Burning"
+msgstr "Multimedie - CD-brænding"
-#~ msgid "Logs"
-#~ msgstr "Logger"
+#: ../../share/compssUsers:999
+msgid "Scientific Workstation"
+msgstr "Videnskabelig arbejdsstation"
-#~ msgid "The setup has already been done, but it's currently disabled."
-#~ msgstr "Indstilling er allerede gjort. men er de-aktiveret for nærværende."
+#~ msgid "can not open /etc/inittab for reading: %s"
+#~ msgstr "kan ikke læse /etc/inittab: %s"
-#~ msgid "Profile "
-#~ msgstr "Profil "
+#, fuzzy
+#~ msgid "cpu number "
+#~ msgstr "et tal"
#~ msgid ""
-#~ "Welcome to the Internet Connection Sharing utility!\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ "Click on Configure to launch the setup wizard."
+#~ "You now have the opportunity to download encryption software.\n"
+#~ "\n"
+#~ "WARNING:\n"
+#~ "\n"
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
+#~ "\n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
+#~ "\n"
+#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
+#~ "\n"
+#~ "\n"
+#~ "For any queries relating to these agreement, please contact \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
#~ msgstr ""
-#~ "Velkommen til værktøjet til deling af internetforbindelse!\n"
-#~ "%s\n"
-#~ "\n"
-#~ "Klik på Konfigurér for at starte programmet til at dele din "
-#~ "internetforbindelse!"
-
-#~ msgid "Internet Connection Sharing configuration"
-#~ msgstr "Konfiguration af deling af internetforbindelse"
-
-#~ msgid "No Internet Connection Sharing has ever been configured."
-#~ msgstr "Deling af Internetforbindelse har aldrig været konfigureret."
-
-#~ msgid "when checked, owner and group won't be changed"
-#~ msgstr "ved kontrol vil ejer og gruppe ikke blive ændret"
-
-#~ msgid ""
-#~ "XawTV isn't installed!\n"
+#~ "Du har nu mulighed for at nedlæse programmel, der bruger kryptering.\n"
#~ "\n"
+#~ "ADVARSEL:\n"
#~ "\n"
-#~ "If you do have a TV card but DrakX has neither detected it (no bttv nor "
-#~ "saa7134\n"
-#~ "module in \"/etc/modules\") nor installed xawtv, please send the\n"
-#~ "results of \"lspcidrake -v -f\" to \"install@mandrakesoft.com\"\n"
-#~ "with subject \"undetected TV card\".\n"
+#~ "Grundet forskellige krav til programmel der bruger kryptering, og "
+#~ "påtvunget af forskellige lokale lovområder, bør kunder og/eller "
+#~ "slutbrugere af dette programmel sikre sig at lokale love fra dit/jeres "
+#~ "lokalområde tillader dig/jer at nedlæse, gemme og/eller bruge dette "
+#~ "programmel.\n"
#~ "\n"
+#~ "Derudover skal kunder og/eller slutbrugere være opmærksomme på ikke at "
+#~ "bryde lokale love fra dit/jeres lokalområde. Skulle en kunde og/eller "
+#~ "slutbruger ikke respektere det lokale områdes love, vil han/de blive "
+#~ "udsat for alvorlige sanktioner.\n"
#~ "\n"
-#~ "You can install it by typing \"urpmi xawtv\" as root, in a console."
-#~ msgstr ""
-#~ "XawTV er ikke installeret!\n"
+#~ "Under ingen omstændigheder kan Mandrakesoft eller deres producenter og/"
+#~ "eller leverandører holdes ansvarlig for speciel, indirekte eller "
+#~ "tilfældig skade (inkluderet, men ikke begrænset til tab af overskud, "
+#~ "forretningsafbrydelser, tab af kommercielle data og andre pekuniære tab, "
+#~ "eventuelle risici og erstatninger der skal betales i overensstemmelse med "
+#~ "retlig beslutning) som følge af brug, besiddelse eller nedlæsning af "
+#~ "dette programmel, som kunder og/eller slutbrugere kunne få adgang til "
+#~ "efter at have accepteret denne aftale.\n"
#~ "\n"
#~ "\n"
-#~ "Hvis du har et tv-kort, men DrakX hverken har fundet det (intet bttv\n"
-#~ "eller saa7134 modul i \"/etc/modules\") eller installeret xawtv, så "
-#~ "indsend venligst\n"
-#~ "resultaterne af \"lspcidrake -v -f\" til \"install@mandrakesoft.com\"\n"
-#~ "med emnet \"undetected TV card\".\n"
+#~ "For spørgsmål om denne aftale, vær venlig at kontakte \n"
+#~ "MandrakeSoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
+
+#~ msgid "Proxy configuration"
+#~ msgstr "Konfiguration af proxy (mellemvært)"
+
+#~ msgid ""
+#~ "Welcome to the proxy configuration utility.\n"
#~ "\n"
+#~ "Here, you'll be able to set up your http and ftp proxies\n"
+#~ "with or without login and password\n"
+#~ msgstr ""
+#~ "Velkommen til programmet for proxy-konfigurering.\n"
#~ "\n"
-#~ "Du kan installere det ved at indtaste \"urpmi xawtv\" som root, på en "
-#~ "kommandolinje."
+#~ "Her vil du kunne opsætte dine http- og ftp-proxyer\n"
+#~ "med eller uden brugernavn og adgangskode\n"
+
+#~ msgid ""
+#~ "Please fill in the http proxy informations\n"
+#~ "Leave it blank if you don't want an http proxy"
+#~ msgstr ""
+#~ "Udfyld venligst oplysningerne om http-proxy\n"
+#~ "Lad det være blankt hvis du ikke ønsker en http-proxy"
-#~ msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgid "URL"
+#~ msgstr "URL"
-#~ msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+#~ msgid "port"
+#~ msgstr "port"
-#~ msgid "Error while parsing \"MODULES\" line from %s"
-#~ msgstr "Fejl ved fortolkning af \"MODULES\" linje fra %s"
+#~ msgid "Url should begin with 'http:'"
+#~ msgstr "Url burde begynde med 'http:'"
-#~ msgid "Hostname configuration"
-#~ msgstr "Konfiguration af værtsnavn"
+#~ msgid "The port part should be numeric"
+#~ msgstr "Port-delen bør være numerisk"
-#~ msgid "Hostname"
-#~ msgstr "Værtsnavn"
+#~ msgid ""
+#~ "Please fill in the ftp proxy informations\n"
+#~ "Leave it blank if you don't want an ftp proxy"
+#~ msgstr ""
+#~ "Udfyld venligst oplysningerne om ftp-proxy\n"
+#~ "Lad det være blankt hvis du ikke ønsker en ftp-proxy"
-#~ msgid "Remote Printers"
-#~ msgstr "Eksterne printere"
+#~ msgid ""
+#~ "Please enter proxy login and password, if any.\n"
+#~ "Leave it blank if you don't want login/passwd"
+#~ msgstr ""
+#~ "Indtast brugernavn og adgangskode på proxy, om nødvendigt.\n"
+#~ "Lad det være blankt hvis du ikke ønsker brugernavn/adgangskode"
-#~ msgid "Printing system: "
-#~ msgstr "Printsystem: "
+#~ msgid "login"
+#~ msgstr "brugernavn"
-#~ msgid "Level 1"
-#~ msgstr "Niveau 1"
+#~ msgid "password"
+#~ msgstr "adgangskode"
-#~ msgid "Level 2"
-#~ msgstr "Niveau 2"
+#~ msgid "re-type password"
+#~ msgstr "genindtast adgangskode"
-#~ msgid "Level 3"
-#~ msgstr "Niveau 2"
+#~ msgid "The passwords don't match. Try again!"
+#~ msgstr "Adgangskoderne stemmer ikke overens. Prøv igen!"
-#~ msgid "Level 4"
-#~ msgstr "Niveau 4"
+#~ msgid "Can't write file %s"
+#~ msgstr "Kan ikke skrive filen %s"
-#~ msgid "Level 5"
-#~ msgstr "Niveau 5"
+#~ msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-#~ msgid "Load"
-#~ msgstr "Indlæs"
+#~ msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#, fuzzy
#~ msgid ""
-#~ "Unable to properly close mkbootdisk: \n"
-#~ " %s \n"
-#~ " %s"
+#~ "Warning, another internet connexion has been detected, maybe using your "
+#~ "network"
#~ msgstr ""
-#~ "Kan ikke lukke mkbootdisk ordentligt: \n"
-#~ " %s \n"
-#~ " %s"
+#~ "Advarsel, en anden internetforbindelse er blevet fundet, der måske bruger "
+#~ "dit netværk"
-#~ msgid "Bad Ip"
-#~ msgstr "Dårlig IP"
+#~ msgid "no help implemented yet.\n"
+#~ msgstr "endnu er ingen hjælp implementeret.\n"
-#~ msgid "Bad Mask"
-#~ msgstr "Dårlig maske"
+#~ msgid "Please click on a medium"
+#~ msgstr "Klik på et medie"
-#~ msgid "Output"
-#~ msgstr "Uddata"
+#~ msgid "Removing LPRng..."
+#~ msgstr "Fjerner LPRng..."
-#~ msgid "activate now"
-#~ msgstr "aktivér nu"
-
-#~ msgid "Total progess"
-#~ msgstr "Total fremdrift"
-
-#~ msgid "deactivate now"
-#~ msgstr "deaktivér nu"
-
-#~ msgid "Please relog into %s to activate the changes"
-#~ msgstr "Log ind i %s igen for at aktivere ændringerne"
-
-#~ msgid "Start Search..."
-#~ msgstr "Start søgning"
-
-#~ msgid ""
-#~ "Search For...\n"
-#~ "%s"
-#~ msgstr ""
-#~ "Søg efter...\n"
-#~ "%s"
+#~ msgid "Removing LPD..."
+#~ msgstr "Fjerner LPD..."
#~ msgid ""
#~ "Description:\n"
#~ "\n"
#~ " Drakbackup is used to backup your system.\n"
-#~ " During the configuration you can select: \n"
+#~ " During the configuration you can select \n"
#~ "\t- System files, \n"
#~ "\t- Users files, \n"
#~ "\t- Other files.\n"
@@ -21220,25 +15156,25 @@ msgstr ""
#~ " Drakbackup allows you to restore your system to\n"
#~ " a user selected directory.\n"
#~ "\n"
-#~ " Per default all backups will be stored on your\n"
+#~ " Per default all backup will be stored on your\n"
#~ " /var/lib/drakbackup directory\n"
#~ "\n"
#~ " Configuration file:\n"
-#~ "\t/etc/drakconf/drakbackup/drakbackup.conf\n"
+#~ "\t/etc/drakconf/drakbackup/drakbakup.conf\n"
#~ "\n"
#~ "Restore Step:\n"
#~ " \n"
-#~ " During the restore step, DrakBackup will remove \n"
-#~ " your original directory and verify that all \n"
-#~ " backup files are not corrupted. It is recommended \n"
+#~ " During the restore step, Drakbackup will remove\n"
+#~ " your original directory and verify that all\n"
+#~ " backup files are not corrupted. It is recommended\n"
#~ " you do a last backup before restoring.\n"
-#~ "\n"
+#~ " \n"
#~ "\n"
#~ msgstr ""
#~ "Beskrivelse:\n"
#~ "\n"
#~ " Drakbackup bruges til at lave sikkehedskopier af dit system.\n"
-#~ " I konfigurationen kan du vælge: \n"
+#~ " I konfigurationen kan du vælge \n"
#~ "\t- Systemfiler, \n"
#~ "\t- Brugeres filer, \n"
#~ "\t- Andre filer.\n"
@@ -21260,7 +15196,7 @@ msgstr ""
#~ " /var/lib/drakbackup katalog\n"
#~ "\n"
#~ " Konfigurationsfil:\n"
-#~ "\t/etc/drakconf/drakbackup/drakbackup.conf\n"
+#~ "\t/etc/drakconf/drakbackup/drakbakup.conf\n"
#~ "\n"
#~ "Genskabelsestrin:\n"
#~ " \n"
@@ -21271,770 +15207,135 @@ msgstr ""
#~ "\n"
#~ msgid ""
-#~ "Options Description:\n"
-#~ "\n"
-#~ " - Backup System Files:\n"
-#~ " \n"
-#~ "\tThis option allows you to backup your /etc directory,\n"
-#~ "\twhich contains all configuration files. Please be\n"
-#~ "\tcareful during the restore step to not overwrite:\n"
-#~ "\t\t/etc/passwd \n"
-#~ "\t\t/etc/group \n"
-#~ "\t\t/etc/fstab\n"
-#~ "\n"
-#~ " - Backup User Files: \n"
-#~ "\n"
-#~ "\tThis option allows you select all users that you want to \n"
-#~ "\tbackup. To preserve disk space, it is recommended that\n"
-#~ "\tyou do not include the web browser's cache.\n"
-#~ "\n"
-#~ " - Backup Other Files: \n"
-#~ "\n"
-#~ "\tThis option allows you to include additional data to save.\n"
-#~ "\tIf you want to add individual files, select them from the\n"
-#~ "\trighthand 'Files' list pane. To add directories, enter the \n"
-#~ "\tdirectory by clicking on it in the lefthand 'Folders' pane, \n"
-#~ "\tand at that point click 'OK' without selecting any files.\n"
-#~ " \n"
-#~ " - Incremental Backups:\n"
-#~ "\n"
-#~ "\tThe incremental backup is the most powerful option for \n"
-#~ "\tbackup. This option allows you to backup all your data \n"
-#~ "\tthe first time, and only the changed data afterward.\n"
-#~ "\tThen you will be able, during the restore step, to restore \n"
-#~ "\tyour data from a specified date. If you have not selected \n"
-#~ "\tthis option all old backups are deleted before each backup. \n"
+#~ "drakbug version %s\n"
+#~ "Copyright (C) 2002 MandrakeSoft.\n"
+#~ "This is free software and may be redistributed under the terms of the GNU "
+#~ "GPL.\n"
#~ "\n"
-#~ " - Differential Backups:\n"
-#~ " \n"
-#~ "\tThe differential backup, rather than comparing changes in the\n"
-#~ "\tdata to the previous incremental backup, always compares the\n"
-#~ "\tdata to the initial base backup. This method allows one to\n"
-#~ "\trestore the base and then the differential from a certain date.\n"
+#~ "usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
#~ "\n"
+#~ "OPTIONS:\n"
#~ msgstr ""
-#~ "Beskrivelse af valgmuligheder:\n"
-#~ "\n"
-#~ " - Lav sikkerhedskopi af systemfiler:\n"
-#~ " \n"
-#~ "\tDenne mulighed lader dig sikkerhedskopiere dit /etc katalog,\n"
-#~ "\tsom indeholder alle konfigurationsfiler. Vær \n"
-#~ "\tforsigtig på genskabelsestrinnet med ikke at overskrive:\n"
-#~ "\t\t/etc/passwd \n"
-#~ "\t\t/etc/group \n"
-#~ "\t\t/etc/fstab\n"
-#~ "\n"
-#~ " - Lav sikkerhedskopi af brugerfiler: \n"
-#~ "\n"
-#~ "\tDenne mulighed lader dig vælge alle de brugere som du vil lave\n"
-#~ "\tsikkerhedskopier for.\n"
-#~ "\tFor at spare på diskplads anbefales du ikke medtager netlæseres\n"
-#~ "\tcache.\n"
-#~ "\n"
-#~ " - Lav sikkerhedskopi af andre filer: \n"
-#~ "\n"
-#~ "\tDenne mulighed lader dig tilføje mere data som skal gemmes.\n"
-#~ "\tHvis du ønsker at tilføje individuelle filer, så vælg dem fra \n"
-#~ "\t'Filer'-vinduet til højre. Ønsker du at tilføje et katalog, kan du \n"
-#~ "\tklikke på det i 'Katalog'-vinduet til venstre, og så klikke 'O.k.' \n"
-#~ "\tuden at vælge nogen filer. \n"
-#~ " \n"
-#~ " - Inkrementalbackupper:\n"
-#~ "\n"
-#~ "\tInkrementalbackup er den stærkeste valgmulighed for \n"
-#~ "\tsikkerhedskopiering. Denne mulighed lader dig sikkerhedskopiere \n"
-#~ "\talle dine data den første gang, og derefter kun de ændrede data.\n"
-#~ "\tSå vil du i genskabelsestrinnet kunne genskabe dine data fra en \n"
-#~ "\tangivet dato.\n"
-#~ "\tHvis du ikke har valgt denne mulighed vil alle gamle\n"
-#~ "\tsikkerhedskopier blive slettet før hver sikkerhedskopiering. \n"
+#~ "Drakbug version %s\n"
+#~ "Copyright (C) 2002 MandrakeSoft.\n"
+#~ "Dette er frit programmel og må distribueres ifølge vilkårene i GNU GPL.\n"
#~ "\n"
-#~ " - Forskelsbackupper:\n"
-#~ " \n"
-#~ "\tEn forskelsbackup vil i stedet for at sammenligne ændringer med den \n"
-#~ "\tforegående inkrementalbakup altid sammenligne med den første fulde \n"
-#~ "\tsikkerhedskopi. Denne metode tillader en at genskabe den fulde \n"
-#~ "\t sikkerhedskopi, og derefter blot forskellene fra en bestemt dato.\n"
+#~ "brug: drakbug [FLAG] [PROGRAMNAVN]\n"
#~ "\n"
+#~ "Flag:\n"
-#~ msgid "Please check if you want to use the non-rewinding device."
-#~ msgstr "Markér om du vil bruge den ikke-tilbagespolende enhed."
-
-#~ msgid "Please enter your password"
-#~ msgstr "Indtast din adgangskode"
+#~ msgid " --help - print this help message.\n"
+#~ msgstr " --help - vis denne hjælpebesked.\n"
-#~ msgid ""
-#~ "\n"
-#~ " Some errors during sendmail are caused by \n"
-#~ " a bad configuration of postfix. To solve it you have to\n"
-#~ " set myhostname or mydomain in /etc/postfix/main.cf\n"
-#~ "\n"
+#~ msgid " --report - program should be one of mandrake tools\n"
#~ msgstr ""
-#~ "\n"
-#~ " Nogle fejl under sendmail kommer fra \n"
-#~ " en dårlig konfiguration af postfix. For at løse dette skal du\n"
-#~ " sætte myhostname eller mydomain i /etc/postfix/main.cf\n"
-#~ "\n"
+#~ " --report - programmet bør være et af Mandrakes værktøjer\n"
-#~ msgid ""
-#~ "Options Description:\n"
-#~ "\n"
-#~ " In this step Drakbackup allow you to change:\n"
-#~ "\n"
-#~ " - the .backupignore mode:\n"
-#~ "\n"
-#~ " Like with cvs, drakbackup will ignore all references\n"
-#~ " included in .backupignore files in each directory.\n"
-#~ " \n"
-#~ "\t Example: \n"
-#~ " #> cat .backupignore\n"
-#~ " *.o\n"
-#~ " *~\n"
-#~ " ...\n"
-#~ " \n"
-#~ " - The user(s) to whom drakbackup reports should be mailed to.\n"
-#~ " \n"
-#~ " This can be a comma sperated lists of local users, or\n"
-#~ " internet email addresses if your system is setup to\n"
-#~ " do internet mail.\n"
-#~ " \n"
-#~ " - The compression mode (not enabled):\n"
-#~ " \n"
-#~ " If you check bzip2 compression, you will compress\n"
-#~ " your data better than gzip (about 2-10 %%).\n"
-#~ " This option is not checked by default because\n"
-#~ " this compression mode needs more time (about 1000%% more).\n"
-#~ " \n"
-#~ " - The update mode (not enabled):\n"
-#~ "\n"
-#~ " This option will update your backup, but this\n"
-#~ " option is not really useful because you need to\n"
-#~ " decompress your backup before you can update it.\n"
-#~ " \n"
+#~ msgid " --incident - program should be one of mandrake tools\n"
#~ msgstr ""
-#~ "Beskrivelse af valgmuligheder:\n"
-#~ "\n"
-#~ " På dette trin tillader Drakbackup at ændre:\n"
-#~ "\n"
-#~ " - tilstanden af .drakbackupignore:\n"
-#~ "\n"
-#~ " Som ved cvs vil drakbackup ignorere alle referencer\n"
-#~ " indeholdt i .backupignore-filer i hvert katalog.\n"
-#~ " \n"
-#~ "\t Eksempel:\n"
-#~ " #> cat .backupignore\n"
-#~ " *.o\n"
-#~ " *~\n"
-#~ " ...\n"
-#~ " \n"
-#~ " - Brugerne som drakbackup-rapporterne bør sendes til.\n"
-#~ " \n"
-#~ " Dette kan være en kommasepareret liste af lokale brugere, eller\n"
-#~ " internet postadresser, hvis dit system er sat op til at lave "
-#~ "internet post.\n"
-#~ " \n"
-#~ " - Komprimerings-tilstand (ikke aktiveret):\n"
-#~ " \n"
-#~ " Hvis du markerer bzip2-komprimering, vil du komprimere dine data\n"
-#~ " bedre end med gzip (omkring 2 - 10 %%)\n"
-#~ " Denne valgmulighed er ikke markeret som standard fordi denne "
-#~ "komprimeringstilstand behøver mere tid (omkring 1000 %% mere)\n"
-#~ " \n"
-#~ " - Opdaterings-tilstand (ikke aktiveret):\n"
-#~ "\n"
-#~ " Denne valgmulighed vil opdatere din sikkerhedskopi, men denne\n"
-#~ " valgmulighed er ikke rigtigt nyttig fordi du behøver at "
-#~ "dekomprimere\n"
-#~ " din sikkerhedskopi før du kan opdatere den.\n"
-#~ " \n"
-
-#~ msgid ""
-#~ "Please choose your CD/DVD device\n"
-#~ "(Press Enter to propogate settings to other fields.\n"
-#~ "This field isn't necessary, only a tool to fill in the form.)"
-#~ msgstr ""
-#~ "Vælg cd/dvd-enhed.\n"
-#~ "(Tryk Enter for at overføre indstillinger til andre felter.\n"
-#~ "Dette felt behøves ikke, det er kun et værktøj for at udfylde formularen.)"
+#~ " --report - programmet bør være et af Mandrakes værktøjer\n"
-#~ msgid "Please check if you want to eject your tape after the backup."
-#~ msgstr "Markér om du vil udskyde dit bånd før sikkerhedskopi laves"
-
-#~ msgid "Please check if you want to erase your tape before the backup."
-#~ msgstr "Markér om du vil slette dit bånd før sikkerhedskopi laves"
-
-#~ msgid "Please enter the host name or IP."
-#~ msgstr "Indtast værtsnavn eller IP."
-
-#~ msgid ""
-#~ " Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s@epita."
-#~ "fr>"
-#~ msgstr ""
-#~ " Copyright (C) 2001-2002 MandrakeSoft ved DUPONT Sebastien "
-#~ "<dupont_s@epita.fr>"
+#~ msgid "usage: drakfloppy\n"
+#~ msgstr "brug: drakfloppy\n"
#~ msgid ""
-#~ "Options Description:\n"
-#~ "\n"
-#~ "Please be careful when you are using ftp backup, because only \n"
-#~ "backups that are already built are sent to the server.\n"
-#~ "So at the moment, you need to build the backup on your hard \n"
-#~ "drive before sending it to the server.\n"
#~ "\n"
+#~ "Usage: harddrake [-h|--help] [--test]\n"
#~ msgstr ""
-#~ "Beskrivelse af valgmuligheder:\n"
-#~ "\n"
-#~ "Vær forsigtig når du bruger ftp-backup, fordi kun \n"
-#~ "sikkerhedskopier som er opbygget allerede bliver sendt til serveren.\n"
-#~ "Så for øjeblikket skal du bygge sikkerhedskopien på din disk \n"
-#~ "før den sendes til ftp-serveren.\n"
#~ "\n"
+#~ "brug: harddrake [-h|--help] [--test]\n"
-#~ msgid ""
-#~ "\n"
-#~ "Restore Backup Problems:\n"
-#~ "\n"
-#~ "During the restore step, Drakbackup will verify all your\n"
-#~ "backup files before restoring them.\n"
-#~ "Before the restore, Drakbackup will remove \n"
-#~ "your original directory, and you will loose all your \n"
-#~ "data. It is important to be careful and not modify the \n"
-#~ "backup data files by hand.\n"
-#~ msgstr ""
-#~ "\n"
-#~ "Problemer med genskabelse af sikkerhedskopier:\n"
-#~ "\n"
-#~ "I genskabelsestrinnet vil Drakbackup kontrollere alle dine\n"
-#~ "backupfiler før genskabelse af dem.\n"
-#~ "Før genskabelsen vil Drakbackup fjerne \n"
-#~ "dit nuværende katalog, og alle dine data vil gå tabt.\n"
-#~ "Det er vigtigt at være forsigtig og ikke ændre sikkerhedskopieringens\n"
-#~ "datafiler i hånden.\n"
+#~ msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+#~ msgstr "brug: keyboarddrake [--expert] [tastatur]\n"
-#~ msgid ""
-#~ "Restore Description:\n"
-#~ "\n"
-#~ "Drakbackup now allows you to search the backup lists for a particular\n"
-#~ "file or files to restore. If the search is successful, you will be \n"
-#~ "presented with a list of matches, along with backup media and dates.\n"
-#~ "You can then select individual files to restore from your backup media.\n"
-#~ " \n"
-#~ "For 'normal' restores, only the most recent date will be used, \n"
-#~ "because with incremental backups it is necessary to restore \n"
-#~ "one by one each older backup.\n"
-#~ "\n"
-#~ "So if you don't want to restore a user please unselect all their\n"
-#~ "check boxes.\n"
-#~ "\n"
-#~ "Otherwise, you are able to select only one of these.\n"
-#~ "\n"
-#~ " - Incremental Backups:\n"
-#~ "\n"
-#~ "\tThe incremental backup is the most powerful option for \n"
-#~ "\tbackup. This option allows you to backup all your data \n"
-#~ "\tthe first time, and only the changed data afterward.\n"
-#~ "\tThen you will be able, during the restore step, to restore \n"
-#~ "\tyour data from a specified date. If you have not selected \n"
-#~ "\tthis option all old backups are deleted before each backup. \n"
-#~ "\n"
-#~ " - Differential Backups:\n"
-#~ " \n"
-#~ "\tThe differential backup, rather than comparing changes in the\n"
-#~ "\tdata to the previous incremental backup, always compares the\n"
-#~ "\tdata to the initial base backup. This method allows one to\n"
-#~ "\trestore the base and then the differential from a certain date.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Beskrivelse af genskabelse:\n"
-#~ "\n"
-#~ "Drakbackup tillader nu at søge i backup-listerne efter en eller flere \n"
-#~ "bestemte filer, der skal gendannes. Hvis søgningen gav resultat, vil du "
-#~ "blive \n"
-#~ "vist en liste af træffere, sammen med sikkerhedkopieringsmedie og "
-#~ "tidspunkter.\n"
-#~ "Du kan derefter vælge individuelle filer der skal genskabes fra dine \n"
-#~ "sikkerhedskopier.\n"
-#~ "\n"
-#~ "For normale genskabelser vil kun den nyeste dato blive brugt, fordi det \n"
-#~ "med inkrementalbackup er det nødvendigt at genskabe hver gammel \n"
-#~ "sikkerhedskopi én for én.\n"
-#~ "\n"
-#~ "Så hvis du ikke ønsker at genskabe en bruger, så fravælg helt dennes "
-#~ "bokse.\n"
-#~ "\n"
-#~ "Ellers kan du vælge kun én af disse.\n"
-#~ "\n"
-#~ " - Inkrementalbackupper:\n"
-#~ "\n"
-#~ "\tInkrementalbackup er den stærkeste valgmulighed for \n"
-#~ "\tsikkerhedskopiering. Denne mulighed lader dig sikkerhedskopiere \n"
-#~ "\talle dine data den første gang, og derefter kun de ændrede data.\n"
-#~ "\tSå vil du i genskabelsestrinnet kunne genskabe dine data fra en \n"
-#~ "\tangivet dato.\n"
-#~ "\tHvis du ikke har valgt denne mulighed vil alle gamle\n"
-#~ "\tsikkerhedskopier blive slettet før hver sikkerhedskopiering. \n"
-#~ "\n"
-#~ " - Forskelsbackupper:\n"
-#~ " \n"
-#~ "\tEn forskelsbackup vil i stedet for at sammenligne ændringer med den \n"
-#~ "\tforegående inkrementalbakup altid sammenligne med den første fulde \n"
-#~ "\tsikkerhedskopi. Denne metode tillader en at genskabe den fulde \n"
-#~ "\t sikkerhedskopi, og derefter blot forskellene fra en bestemt dato.\n"
-#~ "\n"
+#~ msgid "Probing %s class\n"
+#~ msgstr "Undersøger %s-klasse\n"
-#~ msgid ""
-#~ " updates 2002 MandrakeSoft by Stew Benedict <sbenedict@mandrakesoft.com>"
-#~ msgstr ""
-#~ " opdateringer 2002 MandrakeSoft ved Stew Benedict <sbenedict@mandrakesoft."
-#~ "com>"
+#~ msgid "detected on interface %s"
+#~ msgstr "Detekteret på grænseflade %s"
-#~ msgid ""
-#~ "Arguments: (arg, expr='*.*', dev='tty12')\n"
-#~ "\n"
-#~ "Enable/Disable syslog reports to console 12. \\fIexpr\\fP is the\n"
-#~ "expression describing what to log (see syslog.conf(5) for more details) "
-#~ "and\n"
-#~ "dev the device to report the log."
-#~ msgstr ""
-#~ "Argumenter: (arg, udtryk='*.*', dev='tty12')\n"
-#~ "\n"
-#~ "Aktivér/deaktivér syslog-rapporter til konsol 12. \\fIudtryk\\fP er\n"
-#~ "udtrykket der beskriver hvad der skal logges (se syslog.conf(5) for flere "
-#~ "detaljer) og\n"
-#~ "'dev' enheden som loggen skal rapporteres på."
+#~ msgid "Periodic Checks 2"
+#~ msgstr "Periodiske kontroller 2"
-#~ msgid "edit"
-#~ msgstr "redigér"
+#~ msgid "<-- Del Client"
+#~ msgstr "<-- Slet klient"
#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ " Accept/Refuse broadcasted icmp echo."
+#~ "Most of these values were extracted\n"
+#~ "from your running system. You can modify as needed."
#~ msgstr ""
-#~ "Argumenter: (arg)\n"
-#~ "\n"
-#~ " Acceptér/afvis rundkastet icmp echo."
+#~ "De fleste af disse værdier blev fundet\n"
+#~ "fra dit kørende system. Du kan ændre dem efter behov."
#~ msgid ""
-#~ "Arguments: (arg)\n"
+#~ "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"
-#~ "Enable/Disable libsafe if libsafe is found on the system."
-#~ msgstr ""
-#~ "Argumenter: (arg)\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"
#~ "\n"
-#~ "Aktivér/deaktivér libsafe hvis libsafe findes på systemet."
-
-#~ msgid ""
-#~ "Arguments: (arg)\n"
+#~ "Else, I can reconfigure your interface and (re)configure a DHCP server "
+#~ "for you.\n"
#~ "\n"
-#~ "Allow/Forbid remote root login."
#~ msgstr ""
-#~ "Argumenter: (arg)\n"
+#~ "Jeg kan beholde din aktuelle konfiguration og antage at du allerede har "
+#~ "sat en DHCP-server op; i så tilfælde kontrollér da gerne at jeg har læst "
+#~ "det netværk korrekt, som du bruger for dit lokalnetværk; jeg vil ikke "
+#~ "genkonfigurere det og jeg vil ikke røre ved din konfiguration af DHCP-"
+#~ "serveren.\n"
#~ "\n"
-#~ "Tillad/forbyd ekstern root-logind."
-
-#~ msgid "select perm file to see/edit"
-#~ msgstr "vælg perm-fil at se eller redigere"
-
-#~ msgid "path"
-#~ msgstr "sti"
-
-#~ msgid ""
-#~ "Arguments: (arg)\n"
+#~ "Den normale DNS-indgang er den Cachende Navneserver konfigureret på "
+#~ "brandmuren. Du kan erstatte denne med for eksempel adressen på din ISPs "
+#~ "DNS.\n"
#~ "\n"
-#~ "Enable/Disable the logging of IPv4 strange packets."
-#~ msgstr ""
-#~ "Argumenter: (arg)\n"
+#~ "Ellers kan jeg genkonfigurere dit grænsesnit og genkonfigurere en DHCP-"
+#~ "server for dig.\n"
#~ "\n"
-#~ "Aktivér/deaktivér logning af IPv4 mærkelige pakker."
-#~ msgid ""
-#~ "Arguments: (arg, alert=1)\n"
-#~ "\n"
-#~ "Enable/Disable IP spoofing protection."
-#~ msgstr ""
-#~ "Argumenter: (arg, alert=1)\n"
-#~ "\n"
-#~ "Aktivér/deaktivér beskyttlse mod IP-spoofing."
+#~ msgid "unable to backup lilo message"
+#~ msgstr "kunne ikke lave sikkerhedskopi af lilo-besked"
-#~ msgid "permissions"
-#~ msgstr "rettigheder"
+#~ msgid "can't change lilo message"
+#~ msgstr "kan ikke ændre lilo-besked"
#~ msgid ""
-#~ "Arguments: (arg)\n"
+#~ "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"
-#~ "Enable/Disable msec hourly security check."
+#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
+#~ "(LAN)."
#~ msgstr ""
-#~ "Argumenter: (arg)\n"
+#~ "Du er ved at konfigurere din maskine til at dele sin "
+#~ "internetforbindelse.\n"
+#~ "Med denne mulighed vil andre maskiner på dit lokale netværk kunne bruge "
+#~ "internetforbindelsen på denne maskine.\n"
#~ "\n"
-#~ "Aktivér/deaktivér msec timevise sikkerhedskontrol."
-
-#~ msgid "delete"
-#~ msgstr "slet"
+#~ "Bemærk: du skal bruge en dediceret netværksadapter, for at lave et lokalt "
+#~ "netværk (LAN)."
#~ msgid ""
-#~ "Arguments: (arg)\n"
+#~ "I can keep your current configuration and assume you already set up a "
+#~ "DHCP server; in that case please verify I correctly read the C-Class "
+#~ "Network that you use for your local network; I will not reconfigure it "
+#~ "and I will not touch your DHCP server configuration.\n"
#~ "\n"
-#~ "Accept/Refuse bogus IPv4 error messages."
-#~ msgstr ""
-#~ "Argumenter: (arg)\n"
+#~ "Else, I can reconfigure your interface and (re)configure a DHCP server "
+#~ "for you.\n"
#~ "\n"
-#~ "Acceptér/afvis falske IPv4-fejlmeddelelser."
-
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Use password to authenticate users."
-#~ msgstr ""
-#~ "Argumenter: (arg)\n"
-#~ "\n"
-#~ "Brug adgangskode til at autentificere brugere."
-
-#~ msgid "user"
-#~ msgstr "bruger"
-
-#~ msgid ""
-#~ "Standard: This is the standard security recommended for a computer that "
-#~ "will be used to connect\n"
-#~ " to the Internet as a client.\n"
-#~ "\n"
-#~ "High: There are already some restrictions, and more automatic "
-#~ "checks are run every night.\n"
-#~ "\n"
-#~ "Higher: The security is now high enough to use the system as a server "
-#~ "which can accept\n"
-#~ " connections from many clients. If your machine is only a "
-#~ "client on the Internet, you\n"
-#~ " should choose a lower level.\n"
-#~ "\n"
-#~ "Paranoid: This is similar to the previous level, but the system is "
-#~ "entirely closed and security\n"
-#~ " features are at their maximum\n"
-#~ "\n"
-#~ "Security Administrator:\n"
-#~ " If the 'Security Alerts' option is set, security alerts "
-#~ "will be sent to this user (username or\n"
-#~ " email)"
#~ msgstr ""
-#~ "Standard: Dette er den normale sikkerhed anbefalet for en maskine der vil "
-#~ "blive brugt til at \n"
-#~ " køre på internettet som en klient.\n"
-#~ "\n"
-#~ "Høj: Her er en del restriktioner, og flere automatiske kontroller "
-#~ "vil blive kørt hver nat.\n"
-#~ "\n"
-#~ "Højere: Sikkerheden er nu høj nok til at bruge systemet som en server "
-#~ "som kan tage imod forbindelser fra mange klienter. Hvis din "
-#~ "maskine kun er en klient på internettet, bør du\n"
-#~ "\t vælge et lavere niveau.\n"
-#~ "\n"
-#~ "Paranoid: Dette er svarende til det foregående niveau, men systemet er "
-#~ "helt lukket og\n"
-#~ " sikkerhedsfaciliteter er på deres højeste\n"
-#~ "\n"
-#~ "Sikkerhedsadministrator:\n"
-#~ " Hvis 'Sikkerhedspåmindelser' valgmuligheden er sat, vil "
-#~ "sikkerhedpåmindelser blive sendt til denne bruger (brugernavn eller "
-#~ "epostadresse)"
-
-#~ msgid "Expert Area"
-#~ msgstr "Ekspertområde"
-
-#~ msgid "Wizard..."
-#~ msgstr "Vejleder..."
-
-#~ msgid " / Region"
-#~ msgstr " / Region"
-
-#~ msgid "Country"
-#~ msgstr "Land"
-
-#~ msgid "Previous"
-#~ msgstr "Forrige"
-
-#~ msgid ""
-#~ "Options Description:\n"
-#~ "\n"
-#~ " In this step Drakbackup allow you to change:\n"
-#~ "\n"
-#~ " - The compression mode:\n"
-#~ " \n"
-#~ " If you check bzip2 compression, you will compress\n"
-#~ " your data better than gzip (about 2-10 %%).\n"
-#~ " This option is not checked by default because\n"
-#~ " this compression mode needs more time (about 1000%% more).\n"
-#~ " \n"
-#~ " - The update mode:\n"
-#~ "\n"
-#~ " This option will update your backup, but this\n"
-#~ " option is not really useful because you need to\n"
-#~ " decompress your backup before you can update it.\n"
-#~ " \n"
-#~ " - the .backupignore mode:\n"
-#~ "\n"
-#~ " Like with cvs, Drakbackup will ignore all references\n"
-#~ " included in .backupignore files in each directories.\n"
-#~ " ex: \n"
-#~ " #> cat .backupignore\n"
-#~ " *.o\n"
-#~ " *~\n"
-#~ " ...\n"
-#~ " \n"
-#~ "\n"
-#~ msgstr ""
-#~ "Beskrivelse af valgmuligheder:\n"
-#~ "\n"
-#~ " På dette trin vil Drakbackup lade dig ændre:\n"
-#~ "\n"
-#~ " - Komprimeringsmåden:\n"
-#~ " \n"
-#~ " Hvis du markerer bzip2-komprimering, vil du komprimere\n"
-#~ " dine data bedre end gzip (omkring 2-10 %%).\n"
-#~ " Denne valgmulighed er ikke markeret som standard fordi\n"
-#~ " denne komprimeringsmåde kræver mere tid (omkring 1000%% mere).\n"
-#~ " \n"
-#~ " - Opdateringsmåden:\n"
-#~ "\n"
-#~ " Denne valgmulighed vil opdatere din backup, men denne\n"
-#~ " valgmulighed er ikke rigtigt nyttig fordi du skal\n"
-#~ " dekomprimere din backup før du kan opdatere den.\n"
-#~ " \n"
-#~ " - Måden for .backupignore:\n"
-#~ "\n"
-#~ " Som med cvs vil Drakbackup ignorere alle referencer\n"
-#~ " indeholdt i .backupignore-filer i hvert katalog.\n"
-#~ " fx: \n"
-#~ " #> cat .backupignore\n"
-#~ " *.o\n"
-#~ " *~\n"
-#~ " ...\n"
-#~ " \n"
-#~ "\n"
-
-#~ msgid "Please check if you are using CDRW media"
-#~ msgstr "Markér om du bruger et CDRW-medie"
-
-#~ msgid "Please check if you are using a DVDRAM device"
-#~ msgstr "Markér om du bruger en DVDRAM-enhed"
-
-#~ msgid "Please check if you are using a DVDR device"
-#~ msgstr "Markér om du bruger en CDRW-enhed"
-
-#~ msgid "Please check for multisession CD"
-#~ msgstr "Markér om du bruger en multisessions-cd"
-
-#~ msgid "We are now going to configure the %s connection."
-#~ msgstr "Vi skal nu konfigurere opkoblingen '%s'."
-
-#~ msgid "Name: %s\n"
-#~ msgstr "Navn: %s\n"
-
-#~ msgid ""
-#~ "Which ISDN configuration do you prefer?\n"
-#~ "\n"
-#~ "* The Old configuration uses isdn4net. It contains powerful\n"
-#~ " tools, but is tricky to configure, and not standard.\n"
-#~ "\n"
-#~ "* The New configuration is easier to understand, more\n"
-#~ " standard, but with less tools.\n"
-#~ "\n"
-#~ "We recommand the light configuration.\n"
-#~ msgstr ""
-#~ "Hvilken ISDN-konfigurering foretrækker du?\n"
-#~ "\n"
-#~ "* Den gamle konfiguration bruger isdn4net. Det har stærke\n"
-#~ " værktøjer, men det er vanskeligt at konfigurere for en nybegynder,\n"
-#~ " og er ikke standardbaseret.\n"
-#~ "\n"
-#~ "' Det nye konfigurationsværktøj er enklere at forstå,\n"
-#~ " mere standardiseret, men med færre værktøjer.\n"
+#~ "Jeg kan beholde din aktuelle konfiguration og antage at du allerede har "
+#~ "sat en DHCP-server op; i så tilfælde kontrollér da gerne at jeg har læst "
+#~ "det C-klasse-netværk korrekt, som du bruger for dit lokalnetværk; jeg vil "
+#~ "ikke genkonfigurere det og jeg vil ikke røre ved din konfiguration af "
+#~ "DHCP-serveren.\n"
#~ "\n"
-#~ "Vi anbefaler den nye konfiguration.\n"
+#~ "Ellers kan jeg genkonfigurere dit grænsesnit og genkonfigurere en DHCP-"
+#~ "server for dig.\n"
#~ "\n"
-#~ msgid "New configuration (isdn-light)"
-#~ msgstr "Ny konfiguration (isdn-light)"
-
-#~ msgid "Old configuration (isdn4net)"
-#~ msgstr "Gammel konfiguration (isdn4net)"
-
-#~ msgid "Internet connection & configuration"
-#~ msgstr "Internetforbindelse & -konfiguration"
-
-#~ msgid "Disconnect"
-#~ msgstr "Afbryd"
-
-#~ msgid "Connect"
-#~ msgstr "Tilslut"
-
-#~ msgid ""
-#~ "\n"
-#~ "You can reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "Du kan genkonfigurere din forbindelse"
-
-#~ msgid ""
-#~ "\n"
-#~ "You can connect to the Internet or reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "Du kan lave forbindelse til Internettet eller omkonfigurere din "
-#~ "forbindelse."
-
-#~ msgid "You are not currently connected to the Internet."
-#~ msgstr "Du er ikke forbundet til Internettet nu."
-
-#~ msgid ""
-#~ "\n"
-#~ "You can disconnect or reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "Du kan lukke forbindelsen til Internettet eller genkonfigurere din "
-#~ "forbindelse."
-
-#~ msgid "You are currently connected to the Internet."
-#~ msgstr "Du har forbindelse til Internettet nu."
-
-#~ msgid "files sending by FTP"
-#~ msgstr "Filer sendes via FTP"
-
-#~ msgid "Use incremental backup (do not replace old backups)"
-#~ msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-
-#~ msgid "Relaunch 'lilo'"
-#~ msgstr "Genstart 'lilo'"
-
-#~ msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#~ msgstr "Lav initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-
-#~ msgid "Copy %s to %s"
-#~ msgstr "Kopiér %s til %s"
-
-#~ msgid "Backup %s to %s.old"
-#~ msgstr "Sikkerhedskopiér %s til %s.old"
-
-#~ msgid "ttf fonts conversion"
-#~ msgstr "Konvertering af ttf-skrifttyper"
-
-#~ msgid "Fonts conversion"
-#~ msgstr "Konvertering af skrifttyper"
-
-#~ msgid "Author:"
-#~ msgstr "Forfatter:"
-
-#~ msgid "Audio station"
-#~ msgstr "Lyd-station"
-
-#~ msgid "Sound playing/editing programs"
-#~ msgstr "Lyd-afspillere og -redigeringsværktøjer"
-
-#~ msgid "Video station"
-#~ msgstr "Video-maskine"
-
-#~ msgid "Video playing programs"
-#~ msgstr "Video-afspilningsprogrammer"
-
-#~ msgid "Graphic station"
-#~ msgstr "Grafisk maskine"
-
-#~ msgid "Graphics programs"
-#~ msgstr "Grafiske programmer"
-
-#~ msgid "Printer sharing"
-#~ msgstr "Printerdeling"
-
-#~ msgid ""
-#~ "Your printer belongs to the group of GDI laser printers (winprinters) "
-#~ "sold by different manufacturers which uses the Zenographics ZJ-stream "
-#~ "raster format for the data sent to the printer. The driver for these "
-#~ "printers is still in a very early development stage and so it will "
-#~ "perhaps not always work properly. Especially it is possible that the "
-#~ "printer only works when you choose the A4 paper size.\n"
-#~ "\n"
-#~ "Some of these printers, as the HP LaserJet 1000, for which this driver "
-#~ "was originally created, need their firmware to be uploaded to them after "
-#~ "they are turned on. In the case of the HP LaserJet 1000 you have to "
-#~ "search the printer's Windows driver CD or your Windows partition for the "
-#~ "file \"sihp1000.img\" and upload the file to the printer with one of the "
-#~ "following commands:\n"
-#~ "\n"
-#~ " lpr -o raw sihp1000.img\n"
-#~ " cat sihp1000.img > /dev/usb/lp0\n"
-#~ "\n"
-#~ "The first command can be given by any normal user, the second must be "
-#~ "given as root. After having done so you can print normally.\n"
-#~ msgstr ""
-#~ "Din printer tilhører gruppen af GDI-laserprintere (winprintere) solgt af "
-#~ "forskellige producenter som bruger Zenographics ZJ-stream rasterformat "
-#~ "for data sendt til printeren. Drivprogrammet til disse printere er stadig "
-#~ "i et meget tidligt udviklingstrin og det vil således måske ikke altid "
-#~ "virke rigtigt. Især er det muligt at printeren kun virker når du har "
-#~ "valgt papirstørrelsen A4.\n"
-#~ "\n"
-#~ "Nogen af disse printere, såsom HP Laserjet 1000, som dette drivprogram "
-#~ "først blev udviklet til, behøver at deres programmel bliver lagt op på "
-#~ "dem efter at de er blevet tændt. I tilfældet med HP LaserJet 1000 skal du "
-#~ "søge i printerens Windows drivprogram-cd på din Windows-partition efter "
-#~ "filen \"sihp1000.img\" og lægge den op på printeren med en af de følgende "
-#~ "kommandoer:\n"
-#~ "\n"
-#~ " lpr -o raw sihp1000.img\n"
-#~ " cat sihp1000.img > /dev/usb/lp0\n"
-#~ "\n"
-#~ "Den første kommando kan gives af enhver normal bruger, den anden skal "
-#~ "gives som root. Efter at have gjort dette kan du udskrive normalt.\n"
-
-#~ msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
-#~ msgstr "GDI Laserprinter med Zenographics ZJ-Stream-Format"
-
-#~ msgid "Office"
-#~ msgstr "Kontor"
-
-#~ msgid "Set of tools for mail, news, web, file transfer, and chat"
-#~ msgstr "Samling af værktøjer til post, nyheder, filoverførsel og chat"
-
-#~ msgid "Games"
-#~ msgstr "Spil"
-
-#~ msgid "Multimedia - Graphics"
-#~ msgstr "Multimedie - Grafik"
-
-#~ msgid "Multimedia - Sound"
-#~ msgstr "Multimedie - Lyd"
-
-#~ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-#~ msgstr "Lyd-relaterede værktøjer: mp3 eller midi-afspillere, mixere o.lign."
-
-#~ msgid "Multimedia - Video"
-#~ msgstr "Multimedie - Video"
-
-#~ msgid "Video players and editors"
-#~ msgstr "Videoafspillere og redigeringsværktøjer"
-
-#~ msgid "Multimedia - CD Burning"
-#~ msgstr "Multimedie - CD-brænding"
-
-#~ msgid "Tools to create and burn CD's"
-#~ msgstr "Værktøjer til at skabe og brænde CD-er"
-
-#~ msgid "More Graphical Desktops (Gnome, IceWM)"
-#~ msgstr "Flere grafiske miljøer (Gnome, IceWM)"
-
-#~ msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-#~ msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, o.lign."
-
-#~ msgid "Personal Information Management"
-#~ msgstr "Personlig informationshåndtering"
-
-#~ msgid "Tools for your Palm Pilot or your Visor"
-#~ msgstr "Værktøjer til Palm Pilot og Visor"
-
-#~ msgid "Personal Finance"
-#~ msgstr "Personlig økonomi"
-
-#~ msgid "Programs to manage your finances, such as gnucash"
-#~ msgstr "Programmer til at håndtere din økonomi, som fx gnucash"
-
-#~ msgid "Findish"
-#~ msgstr "Finsk"
+#~ msgid "C-Class Local Network"
+#~ msgstr "C-klasse lokalnetværk"
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index 3d68136c3..19c5fe702 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -1,3404 +1,1878 @@
-# translation of DrakX-de.po to
-# translation of DrakX-de.po to German
-# translation of DrakX-de.po to german.
-# german transltion of the MandrakeInstaller.
-# Copyright (C) 2000-2003 MandrakeSoft S.A.
-# Stefan Siegel <siegel@linux-mandrake.com>, 2000, 2001, 2002, 2003.
-# Ronny Standtke <Ronny.Standtke@gmx.de>, 2003.
-# Sebastian Deutscher <sebastian_deutscher@web.de>, 2003.
-# Gerhard Ortner <gerhard.ortner@aon.at>, 2003.
+# german transltion of the MandrakeInstaller
+# Copyright (C) 2000, 2001, 2002 MandrakeSoft S.A.
+# Stefan Siegel <siegel@linux-mandrake.com>, 2000, 2001, 2002.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX-de\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
-"PO-Revision-Date: 2003-11-22 19:11+0100\n"
-"Last-Translator: Gerhard Ortner <gerhard.ortner@aon.at>\n"
-"Language-Team: <de@li.org>\n"
+"Project-Id-Version: MandrakeInstaller\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"PO-Revision-Date: 2002-09-17 01:12+0200\n"
+"Last-Translator: Stefan Siegel <siegel@mandrakesoft.com>\n"
+"Language-Team: Deutsch <siegel@mandrakesoft.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.2\n"
+"X-Generator: KBabel 0.9.6\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Durchsuche die Partitionen, um die Einhängepunkte zu finden"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr "Falls ja, Suche von Veränderungen bei \"suid root\" Dateien."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s benötigt Rechnername, MAC Adresse, IP, nbi-image, 0/1 für "
-"THIN_CLIENT, 0/1 für Lokale Konfiguration ...\n"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr "Konfiguration geändert - Neustart von clusternfs/dhcpd?"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tLöschen=%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Inkrementelle Archivierung speichert nur Dateien, die seit der letzten "
-"kompletten Archivierung verändert wurden."
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 KB"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "network printer port"
-msgstr "Port des Netzwerkdruckers"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 KB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Bitte legen Sie eine Diskette ein:"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Die gesicherte Partitionstabelle hat nicht dieselbe Größe.\n"
-"Soll trotzdem fortgefahren werden?"
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Which username"
-msgstr "Welchen Benutzernamen"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "Welche Art Eintrag wollen Sie hinzufügen?"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Restore partition table"
-msgstr "Partitionstabelle wiederherstellen"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB oder mehr"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure hostname..."
-msgstr "Rechnername wählen ..."
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "Wählen Sie einen X Server"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Auf CUPS-Server \"%s\""
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "X Server"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Post-install configuration"
-msgstr "Bereite weitere Konfiguration vor ..."
+#: ../../Xconfig/card.pm_.c:230
+msgid "Multi-head configuration"
+msgstr "Mehrkarten-Einstellung"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-"Aktuelle Sicherheitsebene: %s\n"
-"Wählen Sie die Rechte, die Sie sehen/ändern wollen."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Stattdessen \"%s\" verwenden"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Type"
-msgstr "Typ"
+"Ihr System erlaubt die Verwendung einer Mehrkarten Konfiguration.\n"
+"Was wollen Sie tun?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Drucker, die mit den PPD-Dateien ihrer Hersteller oder CUPS-spezifischen "
-"Treibern eingerichtet wurden, können nicht übertragen werden."
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
+msgstr "Wählen Sie die Speichergröße Ihrer Grafikkarte"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "XFree konfigurieren"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Die folgenden Drucker\n"
-"\n"
-"%s%s\n"
-"sind direkt an Ihr System angeschlossen."
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Welche XFree-Konfiguration wollen Sie verwenden?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
-msgstr "Zentralafrikanische Republik"
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
+msgstr "Alle Karten getrennt konfigurieren"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "Gateway-Gerät"
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
+msgstr "Xinerama Erweiterung verwenden"
-#: ../../standalone/drakfloppy:1
+#: ../../Xconfig/card.pm_.c:389
#, c-format
-msgid "Advanced preferences"
-msgstr "Erweiterte Einstellungen"
+msgid "Configure only card \"%s\"%s"
+msgstr "Nur Karte „%s“ (%s) konfigurieren"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Net Method:"
-msgstr "Netz-Methode:"
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Ethernetcard"
-msgstr "Netzwerkkarten"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s mit 3D-Hardwarebeschleunigung"
-#: ../../security/l10n.pm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-"Wenn ausgefüllt, wird E-Mail an diese Adresse geschickt, sonst an \"root\"."
-
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr "Parameter"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "no"
-msgstr "Nein"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Auto-detect"
-msgstr "Autoerkennung"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface:"
-msgstr "Schnittstelle:"
+"Ihre Grafikkarte kann 3D-hardwarebeschleunigt werden, allerdings nur mit \n"
+"XFree %s. Ihre Karte wird auch von XFree %s unterstützt, wodurch Sie \n"
+"bessere 2D-Unterstützung erhalten können."
-#: ../../steps.pm:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid "Select installation class"
-msgstr "Installationsart auswählen"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "Ihre Grafikkarte kann mit XFree %s 3D-hardwarebeschleunigt werden."
-#: ../../network/tools.pm:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Das System scheint nicht mit dem Internet verbunden zu sein.\n"
-"Versuchen Sie noch einmal Ihre Verbindung zu konfigurieren."
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s mit EXPERIMENTELLER 3D-Hardwarebeschleunigung"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+"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."
msgstr ""
-"Verbinden Sie Ihren Drucker mit einem Linux-Server und lassen Sie Ihre(n) "
-"Windows-Rechner als Client auf ihn zugreifen.\n"
-" \n"
-"Möchten Sie Ihren Drucker wirklich so einrichten, wie Sie es jetzt tun?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belarus"
-msgstr "Weißrussland"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Fehler beim Schreiben in Datei %s"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result to syslog"
-msgstr "Ergebnis in SysLog speichern"
+"Ihre Karte kann 3D-hardwarebeschleunigt werden, allerdings nur mit \n"
+"XFree %s. BEM: DIESE FUNKTION IST NOCH IM EXPERIMENTIERSTADIUM UND KANN \n"
+"ZUM STEHENBLEIBEN IHRES RECHNERS FÜHREN. Ihre Karte wird auch von \n"
+"XFree %s unterstützt, wodurch Sie bessere 2D-Unterstützung erhalten \n"
+"können."
-#: ../../services.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"Der APM-Dienst (apmd) wird von Laptops verwendet, um den Ladestatus \n"
-"der Batterie durch den Syslog-Dienst erfassen zu lassen. Mit seiner \n"
-"Hilfe kann man den Computer auch rechtzeitig herunterfahren lassen, \n"
-"bevor die Batterien leer sind."
+"Ihre Karte kann 3D-hardwarebeschleunigt werden, allerdings nur mit \n"
+"XFree %s. BEMERKUNG: DIESE FUNKTION IST NOCH IM EXPERIMENTIERSTADIUM \n"
+"UND KANN ZUM STEHENBLEIBEN IHRES RECHNERS FÜHREN."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tape to backup"
-msgstr "Auf Bandlaufwerk sichern"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (Installationsbildschirmtreiber)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Die folgenden Pakete werden installiert"
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "Benutzerdefiniert"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS configuration"
-msgstr "CUPS-Konfiguration"
+#: ../../Xconfig/main.pm_.c:102
+msgid "Graphic Card"
+msgstr "Grafikkarte"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total progress"
-msgstr "Fortschritt (komplett)"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "Monitor"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Nicht genug freier Platz, um die neue Partition anlegen zu können."
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "Auflösung"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "wechsele"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
+msgstr "Test"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-"\n"
-"DrakBackup Aktivitäten via %s:\n"
-"\n"
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Optionen"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "yes"
-msgstr "Ja"
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "OK"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr "("
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "Verlassen"
-#: ../../network/netconnect.pm:1
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
-"Welcome to The Network Configuration Wizard.\n"
+"Keep the changes?\n"
+"The current configuration is:\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"
+"%s"
msgstr ""
-"Willkommen zum Netzwerk-Konfigurationsassistent.\n"
+"Die Änderungen beibehalten?\n"
+"Momentan wäre dies:\n"
"\n"
-"Ich versuche nun Ihre Internet-/Netzwerk-Verbindung zu konfigurieren.\n"
-"Falls Sie keine Autoerkennung wünschen, entfernen Sie bitte die Markierung.\n"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ")"
+"%s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "Libanon"
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "Wählen Sie Ihren Monitor"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
+msgstr "Plug'n'Play"
-#: ../../services.pm:1
-#, c-format
-msgid "Stop"
-msgstr "Stopp"
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "Generisch"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Edit selected host"
-msgstr "Änderung des markierten Rechners"
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+msgid "Vendor"
+msgstr "Hersteller"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD device defined!"
-msgstr "Kein CD-Gerät angegeben!"
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr "Das Plug'n'Play testen schlug fehl. Bitte wählen Sie einen Monitor."
-#: ../../network/shorewall.pm:1
-#, fuzzy, c-format
+#: ../../Xconfig/monitor.pm_.c:114
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 ""
-"Bitte geben Sie den Namen der Schnittstelle ein, über die Sie ins Internet "
-"gehen.\n"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"Beispiele:\n"
-"\t\tppp+ für Modem- oder DSL-Verbindungen, \n"
-"\t\teth0, oder eth1 für eine Kabel-Verbindung, \n"
-"\t\tippp+ für eine ISDN-Verbindung.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\t\".backupignore\"-Dateien verwenden.\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "Bulgarien (Phonetisch)"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP start ip"
-msgstr "Die erste DHCP-IP"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Don't rewind tape after backup"
-msgstr "Band nach der Sicherung nicht zurückspulen"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "Haupt-Optionen des Betriebssystemstarters"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
-
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Tape"
-msgstr "Bandlaufwerke"
+"Die beiden kritischen Parameter sind die vertikale Wiederholfrequenz\n"
+"(wie oft der gesamte Bildschirm neu angezeigt wird) und insbesondere die\n"
+"horizontale Synchronisationsfrequenz (wie oft Scanlinien angezeigt werden).\n"
+"Es ist SEHR WICHTIG, dass Sie keinen Monitortyp mit einer falschen \n"
+"Synchronisationsrate auswählen, da Sie sonst Ihren Monitor beschädigen \n"
+"könnten. Im Zweifelsfall wählen Sie bitte eine konservativere \n"
+"Einstellung."
-#: ../../lang.pm:1
-#, c-format
-msgid "Malaysia"
-msgstr "Malaysia"
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "Horizontale Wiederholfrequenz"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning network..."
-msgstr "Durchsuche Netzwerk..."
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "Vertikale Wiederholfrequenz"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Mit dieser Option sind Sie in der Lage, jede Version Ihres \n"
-"\"/etc\" Verzeichnisses wiederherzustellen."
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 Farben (8 Bit)"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr "Die Änderungen wurden ausgeführt, soll ich den dm-Dienst neu starten?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32.000 Farben (15 Bit)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (French layout)"
-msgstr "Schweiz (französisches Layout)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65.000 Farben (16 Bit)"
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid schlug fehl (Möglicherweise fehlen die RAID-Tools)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 Millionen Farben (24 Bit)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "August"
-msgstr "August"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 Milliarden Farben (32 Bit)"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "FTP server"
-msgstr "FTP-Server"
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "Auflösungen"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Webcam"
-msgstr "Webcam"
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "Wählen Sie bitte Auflösung und Farbtiefe"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "Größe des (Second Level) Prozessor-Caches."
+msgid "Graphics card: %s"
+msgstr "Grafikkarte: %s"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Soundcard"
-msgstr "Soundkarten"
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr " Abbruch "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Month"
-msgstr "Monat"
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "Prüfen der Einstellungen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search for files to restore"
-msgstr "Suche wiederherzustellende Dateien."
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "Möchten Sie die vorgenommenen Einstellungen prüfen?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Luxembourg"
-msgstr "Luxemburg"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Warnung: Testen dieser Grafikkarte kann Ihren Rechner anhalten"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Verwenden Sie den Befehl \"%s <Datei>\", um die Datei <Datei> in der "
-"Kommandozeile auszudrucken.\n"
+msgid "Keyboard layout: %s\n"
+msgstr "Tastaturtyp: %s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid "Level %s\n"
-msgstr "Level %s\n"
+msgid "Mouse type: %s\n"
+msgstr "Maustyp: %s\n"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid "Syriac (phonetic)"
-msgstr "Syrien (Phonetisch)"
+msgid "Mouse device: %s\n"
+msgstr "Mausschnittstelle: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid "Iran"
-msgstr "Iran"
+msgid "Monitor: %s\n"
+msgstr "Monitor: %s\n"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Bus"
-msgstr "Bus"
+msgid "Monitor HorizSync: %s\n"
+msgstr "Monitor Horiz. Frequenz: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Iraq"
-msgstr "Irak"
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Monitor Vert. Frequenz: %s\n"
-#: ../../standalone/drakbug:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid "connecting to %s ..."
-msgstr "Verbinde mit %s ..."
+msgid "Graphics card: %s\n"
+msgstr "Grafikkarte: %s\n"
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"Es liegt ein möglicher LAN-Adressen-Konflikt in der Konfiguration\n"
-"von %s vor!\n"
+msgid "Graphics memory: %s kB\n"
+msgstr "Grafikkartenspeicher: %s KB\n"
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid "Configuring..."
-msgstr "Konfiguriere ..."
+msgid "Color depth: %s\n"
+msgstr "Farbtiefe: %s\n"
-#: ../../harddrake/v4l.pm:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
-msgstr ""
-"Für die meisten modernen TV-Karten erkennt das bttv-Modul des Linux-Kernels "
-"automatisch die richtigen Parameter.\n"
-"Falls Ihre Karte falsch erkannt wird, können Sie Tuner- und Kartentyp hier "
-"einstellen. Geben Sie einfach die benötigten Parameter an."
+msgid "Resolution: %s\n"
+msgstr "Auflösung: %s\n"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Password (again)"
-msgstr "Passwort (erneut)"
+msgid "XFree86 server: %s\n"
+msgstr "XFree86 Server: %s\n"
-#: ../../standalone/drakfont:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Search installed fonts"
-msgstr "Installierte Schriftarten suchen"
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 Treiber: %s\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default desktop"
-msgstr "Standard Arbeitsumgebung"
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "X zur Startzeit"
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:62
msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
+"Ich kann GNU/Linux so einrichten, dass bei jedem Systemstart\n"
+"automatisch die grafische Oberfläche (= der X Server) aktiviert wird.\n"
+"Wollen Sie, dass X nach jedem Neustart direkt zur Verfügung steht?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr "Venezuela"
-
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "IP address"
-msgstr "IP-Adresse"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "Wählen Sie die Größen"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:73
msgid ""
-"List of data corrupted:\n"
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
"\n"
-msgstr ""
-"Liste der beschädigten Daten:\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"
-
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
-msgstr ""
-"Kann nur explizit eingehängt werden (so wird\n"
-"etwa das Dateisystem nicht bei \"-a\" eingehängt)."
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
+"Do you have this feature?"
msgstr ""
-"Ihr Modem wird nicht durch das System unterstützt.\n"
-"Schauen Sie unter http://www.linmodems.org"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose another partition"
-msgstr "Wählen Sie eine andere Partition"
+"Ihre Grafikkarte scheint einen TV-Ausgang zu haben, der mittels Frame-Buffer "
+"angesprochen werden kann.\n"
+"\n"
+"Wenn Sie das wünschen, schließen Sie bitte Ihren Fernseher an die "
+"Grafikkarte an, bevor Sie den Rechner neu starten.\n"
+"Wählen Sie „TV-Ausgang“ im Betriebssystemstarter.\n"
+"\n"
+"Haben Sie einen solchen Ausgang und wollen Sie ihn verwenden?"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Current user"
-msgstr "Aktueller Benutzer"
+#: ../../Xconfig/various.pm_.c:85
+msgid "What norm is your TV using?"
+msgstr "Um welche Fernsehnorm handelt es sich?"
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
-msgstr "Benutzername"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
+msgstr "Erster Sektor der Boot-Partition"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Linke \"Windows\"-Taste"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
+msgstr "Erster Sektor der Platte (MBR)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "Guyana"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "SILO Installation"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "dhcpd-Server-Konfiguration"
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
+msgstr "Wo soll der Betriebssystemstarter installiert werden?"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Für Verzeichnisse:\n"
-" nur der Besitzer des Verzeichnisses kann es oder enthaltene Dateien löschen."
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "LILO/Grub Installation"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr "auf dem Novell-Server \"%s\", Drucker \"%s\""
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
+msgstr "SILO"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Name"
-msgstr "Druckername"
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
+msgstr "LILO mit Textmenü"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
-msgstr ""
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
+msgstr "LILO mit grafischem Menü"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
-msgstr "Modul entfernen"
+#: ../../any.pm_.c:142
+msgid "Grub"
+msgstr "Grub"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Password"
-msgstr "Passwort"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "Boot von DOS/Windows aus (loadlin)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Expertenkonfiguration"
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr "Scannen auf Ihrem HP-Multifunktionsgerät"
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "Haupt-Optionen des Betriebssystemstarters"
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "Wurzelverzeichnis (Root)"
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
+msgstr "Zu verwendender Betriebssystemstarter"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "Wählen Sie einen vorhandenen RAID"
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "Installation des Betriebssystemstarters"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Türkei (modernes \"Q\" Modell)"
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "Boot Gerät"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo message not found"
-msgstr "Ich kann die LILO-Nachricht nicht finden."
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "Kompakt"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Automatische Neuerstellung der Kernel-Header in /boot für\n"
-"/usr/include/linux/{autoconf,version}.h"
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "Kompakt"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
-msgstr " falls nötig "
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "Video Modus"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
-msgstr ""
-"Das ntp Programmpaket muss installiert werden\n"
-"um das Network Time Protocol zu aktivieren"
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
+msgstr "Wartezeit vorm Starten des Standard Betriebssystems"
+
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
+msgid "Password"
+msgstr "Passwort"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Failed..."
-msgstr "Wiederherstellen fehlgeschlagen..."
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "Passwort (erneut)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "Passwort dieses Systems in der DrakBackup Konfiguration speichern."
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "Gebrauch der Kommandozeilen-Parameter einschränken"
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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 ""
-"Bei dieser Übersetzung handelt es sich um eine inoffizielle Übersetzung\n"
-"der Mandrake Linux-Lizenz in die deutsche Sprache. Sie ist keine\n"
-"rechtsverbindliche Darstellung der Lizenzbedingungen der Software in\n"
-"dieser Distribution - nur der ursprüngliche französische Text der\n"
-"Mandrake Linux-Lizenz ist rechtsverbindlich. Wir hoffen aber, dass diese\n"
-"Übersetzung den deutschsprechenden Benutzern das Verständnis dieser\n"
-"Lizenz erleichtert.\n"
-"\n"
-"\n"
-"Einführung\n"
-"\n"
-"Das Betriebssystem und die anderen Komponenten, die in Mandrake Linux\n"
-"enthalten sind, werden hier \"Software-Produkte\" genannt. Die\n"
-"Software-Produkte umfassen, aber sind nicht beschränkt auf, die\n"
-"Gesamtheit der Programme, Methoden, Regeln, und Dokumentation, welche\n"
-"zum Betriebssystem und den anderen Komponenten der Mandrake Linux\n"
-"Distribution gehören.\n"
-"\n"
-"\n"
-"1. Lizenzabkommen\n"
-"\n"
-"Bitte lesen Sie dieses Dokument sorgfältig. Dieses Dokument ist ein\n"
-"Lizenzabkommen zwischen Ihnen und MandrakeSoft S. A. welches sich auf\n"
-"die Software-Produkte bezieht.\n"
-"Durch Installation, Duplizierung oder Benutzung der Software-Produkte in\n"
-"irgendeiner Art und Weise erklären Sie sich mit den Bedingungen dieser\n"
-"Lizenz einverstanden.\n"
-"Wenn Sie mit irgendeinem Punkt dieser Lizenz nicht einverstanden sind,\n"
-"ist es Ihnen nicht erlaubt, die Software-Produkte zu installieren,\n"
-"duplizieren oder zu benutzen.\n"
-"Mit jedem Versuch, die Software-Produkte in einer Art und Weise zu\n"
-"benutzen, die nicht den Bedingungen dieser Lizenz entspricht, verlieren\n"
-"Sie die Ihnen mit dieser Lizenz eingeräumten Rechte. In diesem Fall\n"
-"haben Sie unverzüglich alle Kopien der Software-Produkte zu vernichten.\n"
-"\n"
-"\n"
-"2. Eingeschränkte Garantie\n"
-"\n"
-"Die Software-Produkte und die beigefügte Dokumentation werden dem\n"
-"Benutzer lediglich zur Verfügung gestellt, es wird keinerlei Garantie\n"
-"gegeben soweit es gesetzlich zulässig ist.\n"
-"MandrakeSoft S. A. haftet unter keinen Umständen, soweit gesetzlich\n"
-"zulässig, für direkte oder indirekte Schäden irgendwelcher Art,\n"
-"(inklusive uneingeschränkten Schäden aufgrund Verlust von\n"
-"Geschäftsbeziehungen, Unterbrechung von Geschäftsvorgängen,\n"
-"finanziellen Verlust, Gebühren oder Strafen aufgrund gerichtlicher\n"
-"Entscheide, oder jegliche Folgeschäden) die aufgrund der Benutzung oder\n"
-"der Unmöglichkeit der Benutzung der Software-Produkte entstehen, auch\n"
-"wenn MandrakeSoft S. A. über die Möglichkeit und das Auftreten\n"
-"derartiger Schäden unterrichtet wurde.\n"
-"\n"
-"\n"
-"EINGESCHRÄNKTE VERANTWORTLICHKEIT BEZOGEN AUF DEN BESITZ UND DIE\n"
-"BENUTZUNG VON SOFTWARE, DIE IN EINIGEN LÄNDERN VERBOTEN IST.\n"
-"\n"
-"\n"
-"Soweit gesetzlich zulässig, haften MandrakeSoft S. A. und deren\n"
-"Vertreiber unter keinen Umständen für direkte oder indirekte Schäden\n"
-"irgendwelcher Art, (inklusive uneingeschränkten Schäden aufgrund Verlust\n"
-"von Geschäftsbeziehungen, Unterbrechung von Geschäftsvorgängen,\n"
-"finanziellen Verlust, Gebühren oder Strafen aufgrund gerichtlicher\n"
-"Entscheide, oder jegliche Folgeschäden) die aufgrund des Besitzes und\n"
-"der Benutzung von Software-Komponenten oder aufgrund des Ladens von\n"
-"Software-Komponenten von den Internet-Servern von MandrakeSoft S. A.,\n"
-"deren Besitz und Benutzung in einigen Ländern aufgrund lokaler Gesetze\n"
-"nicht gestattet ist, entstehen.\n"
-"Diese Einschränkung der Verantwortlichkeit bezieht sich auch, aber nicht\n"
-"nur, auf die Komponenten für starke Kryptografie enthalten in den\n"
-"Software-Produkten.\n"
-"\n"
-"\n"
-"3. Die GPL und verwandte Lizenzen\n"
-"\n"
-"Die Software-Produkte bestehen aus Komponenten, die von verschiedenen\n"
-"Personen und Einrichtungen erstellt wurden. Die meisten Komponenten\n"
-"unterliegen den Bedingungen der GNU General Public License, im folgenden\n"
-"\"GPL\" genannt, oder ähnlichen Lizenzen. Die meisten dieser Lizenzen\n"
-"erlauben es, die Komponenten, die diesen Lizenzen unterliegen, zu\n"
-"benutzen, zu duplizieren, anzupassen, und weiterzugeben. Bitte lesen sie\n"
-"sorgfältig die Bedingungen der Lizenzabkommen von jeder Komponente,\n"
-"bevor Sie sie benutzen. Jegliche Frage zur Lizenz einer Komponente ist an\n"
-"den Autor der Komponente und nicht an MandrakeSoft S. A. zu richten. Die\n"
-"von MandrakeSoft S. A. erstellten Programme unterliegen der GPL.\n"
-"Von MandrakeSoft S. A. geschriebene Dokumentation unterliegt einer\n"
-"spezifischen Lizenz. Bitte lesen Sie die Dokumentation für weitere\n"
-"Details.\n"
-"\n"
-"\n"
-"4. Geistiges Eigentum\n"
-"\n"
-"Alle Rechte an den Komponenten der Software-Produkte liegen bei den\n"
-"entsprechenden Autoren und sind durch die Urheberrechtsgesetze für\n"
-"Softwareprodukte geschützt.\n"
-"MandrakeSoft S. A. behält sich das Recht vor, die Software-Produkte zu\n"
-"modifizieren und anzupassen.\n"
-"\"Mandrake\", \"Mandrake Linux\" und entsprechende Logos sind eingetragene\n"
-"Warenzeichen der MandrakeSoft S. A..\n"
-"\n"
-"\n"
-"5. Gesetzliche Bestimmungen\n"
-"\n"
-"Wenn irgendein Teil dieses Lizenzabkommens durch einen Gerichtsentscheid\n"
-"für ungültig, illegal oder inakzeptabel erklärt wird, wird dieser Teil\n"
-"aus dem Abkommen ausgeschlossen. Sie bleiben weiterhin an die anderen,\n"
-"anwendbaren Teile gebunden.\n"
-"Die Bedingungen dieses Lizenzabkommens unterliegen den Gesetzen von\n"
-"Frankreich. Alle Unstimmigkeiten bezüglich der Bedingungen dieser Lizenz\n"
-"werden vorzugsweise außergerichtlich beigelegt. Letztes Mittel ist das\n"
-"zuständige Gericht in Paris, Frankreich.\n"
-"Zu jeglicher Frage zu diesem Dokument kontaktieren Sie bitte\n"
-"MandrakeSoft S. A.\n"
-"\n"
-"\n"
-"\n"
-"Hier die französische Version:\n"
-"\n"
-"\n"
-"Introduction\n"
-"\n"
-"Le système d'exploitation et les divers composants disponibles dans la \n"
-"distribution Mandrake Linux sont ci-après dénommés ensemble les \n"
-"« Logiciels ». Les Logiciels comprennent notamment, mais de façon non \n"
-"limitative, l'ensemble des programmes, procédés, règles et documentations \n"
-"relatifs au système d'exploitation et aux divers composants de la \n"
-"distribution Mandrake Linux.\n"
-"\n"
-"\n"
-"1. Licence\n"
-"\n"
-"Veuillez lire attentivement le présent document. Ce document constitue \n"
-"un contrat de licence entre vous (personne physique ou personne morale) et \n"
-"MandrakeSoft S.A. portant sur les Logiciels.\n"
-"Le fait d'installer, de reproduire ou d'utiliser les Logiciels de quelque \n"
-"manière que ce soit indique que vous reconnaissez avoir préalablement eu \n"
-"connaissance et que vous acceptez de vous conformer aux termes et "
-"conditions \n"
-"du présent contrat de licence. En cas de désaccord avec le présent "
-"document \n"
-"vous n'êtes pas autorisé à installer, reproduire et utiliser de quelque \n"
-"manière que ce soit ce produit.\n"
-"Le contrat de licence sera résilié automatiquement et sans préavis dans le \n"
-"cas où vous ne vous conformeriez pas aux dispositions du présent document. \n"
-"En cas de résiliation vous devrez immédiatement détruire tout exemplaire "
-"et \n"
-"toute copie de tous programmes et de toutes documentations qui constituent \n"
-"le système d'exploitation et les divers composants disponibles dans la \n"
-"distribution Mandrake Linux.\n"
-"\n"
-"\n"
-"2. Garantie et limitations de garantie\n"
-"\n"
-"Les Logiciels et la documentation qui les accompagne sont fournis en "
-"l'état \n"
-"et sans aucune garantie. MandrakeSoft S.A. décline toute responsabilité \n"
-"découlant d'un dommage direct, spécial, indirect ou accessoire, de quelque \n"
-"nature que ce soit, en relation avec l'utilisation des Logiciels, "
-"notamment \n"
-"et de façon non limitative, tout dommage entraîné par les pertes de \n"
-"bénéfices, interruptions d'activité, pertes d'informations commerciales ou \n"
-"autres pertes pécuniaires, ainsi que des éventuelles condamnations et \n"
-"indemnités devant être versées par suite d'une décision de justice, et ce \n"
-"même si MandrakeSoft S.A. a été informée de la survenue ou de \n"
-"l'éventualité de tels dommages.\n"
-"\n"
-"AVERTISSEMENT QUANT A LA DETENTION OU L'UTILISATION DE LOGICIELS \n"
-"PROHIBES DANS CERTAINS PAYS \n"
-"\n"
-"En aucun cas, ni MandrakeSoft S.A. ni ses fournisseurs ne pourront être \n"
-"tenus responsable à raison d'un préjudice spécial, direct, indirect ou \n"
-"accessoire, de quelque nature que ce soit (notamment et de façon non \n"
-"limitative les pertes de bénéfices, interruptions d'activité, pertes \n"
-"d'informations commerciales ou autres pertes pécuniaires, ainsi que \n"
-"des éventuelles condamnations et indemnités devant être versées par suite \n"
-"d'une décision de justice) qui ferait suite à l'utilisation, la détention \n"
-"ou au simple téléchargement depuis l'un des sites de téléchargement de \n"
-"Mandrake Linux de logiciels prohibés par la législation à laquelle vous \n"
-"êtes soumis. Cet avertissement concerne notamment certains logiciels de \n"
-"cryptographie fournis avec les Logiciels.\n"
-"\n"
-"\n"
-"3. Licence GPL et autres licences\n"
-"\n"
-"Les Logiciels sont constitués de modules logiciels créés par diverses \n"
-"personnes (physiques ou morales). Nombre d'entre eux sont distribués sous \n"
-"les termes de la GNU General Public Licence (ci-après dénommée « GPL ») ou \n"
-"d'autres licences similaires. La plupart de ces licences vous permettent \n"
-"de copier, d'adapter ou de redistribuer les modules logiciels qu'elles \n"
-"régissent. Veuillez lire et agréer les termes et conditions des licences \n"
-"accompagnant chacun d'entre eux avant de les utiliser. Toute question \n"
-"concernant la licence de chaque Logiciel est à soumettre à l'auteur (ou \n"
-"ses représentants) du Logiciel et non à MandrakeSoft. \n"
-"Les programmes conçus par MandrakeSoft sont régis par la licence GPL. \n"
-"La documentation rédigée par MandrakeSoft fait l'objet d'une licence \n"
-"spécifique. Veuillez vous référez à la documentation pour obtenir plus \n"
-"de précisions.\n"
-"\n"
-"\n"
-"4. Propriété intellectuelle\n"
-"\n"
-"Tous les droits, titres et intérêts des différents Logiciels sont la \n"
-"propriété exclusive de leurs auteurs respectifs et sont protégés au titre \n"
-"des droits de propriété intellectuelle et autres lois régissant le droit \n"
-"des Logiciels. Les marques « Mandrake » et « Mandrake Linux » ainsi que "
-"les \n"
-"logotypes associés sont déposés par MandrakeSoft S.A. \n"
-"\n"
-"\n"
-"5. Dispositions diverses\n"
-"\n"
-"Si une disposition de ce contrat de licence devait être déclarée nulle, \n"
-"illégale ou inapplicable par un tribunal compétent, cette disposition sera \n"
-"exclue du présent contrat. Vous continuerez à être liés aux autres \n"
-"dispositions, qui recevront leurs pleins effets. Le contrat de licence \n"
-"est soumis à la Loi française. Toute contestation relative aux présentes \n"
-"sera réglée préalablement par voie amiable. A défaut d'accord avec \n"
-"MandrakeSoft S.A., les tribunaux compétents de Paris seront saisis du \n"
-"litige. Pour toute question relative au présent document, veuillez \n"
-"contacter MandrakeSoft S.A.\n"
+#: ../../any.pm_.c:171
+msgid "restrict"
+msgstr "Einschränken"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default user"
-msgstr "Standardkennzeichen"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "Die Partition /tmp bei jedem Systemstart säubern"
-#: ../../standalone/draksplash:1
+#: ../../any.pm_.c:174
#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"Linke obere Ecke des\n"
-"Fortschrittsbalkens"
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Geben Sie, falls nötig, die genaue RAM Größe an (%d MB gefunden)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Current interface configuration"
-msgstr "Aktuelle Schnittstellenkonfiguration"
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
+msgstr "Mehrere Profile einschalten"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "Geben Sie die RAM Größe in MB an"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../any.pm_.c:182
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"
+"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-"\n"
-"Falls Sie eine ISA-Karte besitzen, sollten die Einstellungen auf dem "
-"nächsten Schirm korrekt sein.\n"
-"\n"
-"Falls Sie eine PCMCIA-Karte besitzen, müssen Sie IRQ und E/A-Bereich Ihrer "
-"Karte kennen.\n"
+"Die Option „Gebrauch der Kommandozeilen-Parameter einschränken“ ist ohne \n"
+"Angabe eines Passworts wirkungslos"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not print any test page"
-msgstr "Keine Testseite(n) drucken"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "Bitte versuchen Sie es erneut"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr "Indien (Gurmukhi)"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "Die Passwörter stimmen nicht überein"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s bereits anderweitig genutzt\n"
+#: ../../any.pm_.c:191
+msgid "Init Message"
+msgstr "Init Nachricht"
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
-msgstr "\"No APIC\" erzwingen"
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
+msgstr "Open Firmware Verzögerung"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr ""
-"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
+msgstr "BS-Startverzögerung für den Kern"
-#: ../../standalone.pm:1
-#, c-format
-msgid "[keyboard]"
-msgstr "[Tastatur]"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
+msgstr "BS-Start von CD erlauben"
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP-Proxy"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
+msgstr "Open Firmware Start erlauben"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install List"
-msgstr "Liste installieren"
+#: ../../any.pm_.c:197
+msgid "Default OS?"
+msgstr "Standard BS"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:231
msgid ""
-"Change\n"
-"Restore Path"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
+"\n"
+"On which drive are you booting?"
msgstr ""
-"Ändern\n"
-"Pfad wiederherstellen"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Nur für diesen Tag zeigen"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tPlattenplatz auf %s MB begrenzen\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Anmerkung: Parallelports können nicht automatisch erkannt werden)"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Welchen Kartentyp haben Sie?"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Security"
-msgstr "Sicherheit"
+"Sie haben sich entschieden, Ihren Betriebssystemstarter auf einer Partition "
+"zu starten.\n"
+"Das impliziert, dass Sie einen anderen Betriebssystemstarter im Master-Boot-"
+"Record haben (etwa System Commander).\n"
+"\n"
+"Von welchem Verzeichnis wollen Sie starten?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:247
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"
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
-"Sie können auch das Grafikwerkzeug \"xpdq\" zum Setzen der Optionen und "
-"Verwalten der Druckjobs verwenden.\n"
-"Falls Sie KDE als Arbeitsoberfläche nutzen, haben Sie eine Panik-Abschaltung "
-"in Form des Arbeitsflächensymbols \"Drucker anhalten!\", dass sofort alle "
-"Druckaufträge anhält, wenn Sie es betätigen. Das kann beispielsweise dann "
-"hilfreich sein, wenn Sie einen Papierstau in Ihrem Drucker haben.\n"
+"Hier sind die verschiedenen Einträge.\n"
+"Sie können weitere hinzufügen oder existierende ändern."
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "Hinzufügen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Kann kein Archiv zum Wiederherstellen finden...\n"
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "Fertig"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown"
-msgstr "Unbekannt"
+#: ../../any.pm_.c:257
+msgid "Modify"
+msgstr "Ändern"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr ""
-"Der Server ist bereits in der Liste, er kann nicht erneut hinzugefügt "
-"werden.\n"
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "Welche Art Eintrag wollen Sie hinzufügen?"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Network Configuration"
-msgstr "Netzwerk konfigurieren"
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "Linux"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "Anderes Betriebssystem (SunOS ...)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Protokoll für den Rest der Welt \n"
-"ohne D-Kanal (Leased Lines)"
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "Anderes Betriebssystem (MacOS ...)"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, 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."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" s\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"."
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "Anderes Betriebssystem (Windows ...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Der Parameter %s muss eine Zahl sein!"
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "Kern"
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, c-format
-msgid "Notice"
-msgstr "Anmerkung"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "Verzeichnisbaumwurzel"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "Sie haben X nicht konfiguriert. Sind Sie sicher?"
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
+msgstr "Übergeben"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Die Einrichtung des Druckers wird vollautomatisch erfolgen. Sollte Ihr "
-"Drucker nicht richtig erkannt worden sein oder wollen Sie die Einrichtung "
-"selbst vornehmen, wählen Sie \"Manuelle Konfiguration\"."
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Init-RamDisk"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "What type of partitioning?"
-msgstr "Welcher Partitionstyp?"
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "Schreiben/Lesen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-" "
-msgstr ""
-"Dateiliste gesendet per FTP: %s\n"
-" "
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "Tabelle"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface"
-msgstr "Schnittstelle"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "Unsicher"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Multisession CD"
-msgstr "Multisession CD"
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "Identifikator"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated strings"
-msgstr "durch Kommas getrennte Textfelder"
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "Standard"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "Das sind die Rechner, für die der Scanner zugänglich sein soll:"
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
+msgstr "Größe der Init-RamDisk"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Messages"
-msgstr "Nachrichten"
+#: ../../any.pm_.c:318
+msgid "NoVideo"
+msgstr "NoVideo"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Unbekannt|CPH06X (bt878) [Zahlreiche Hersteller]"
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "Eintrag löschen"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP und IMAP-Server"
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "Leere Einträge sind nicht erlaubt"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mexico"
-msgstr "Mexiko"
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
+msgstr "Sie Müssen ein Kern-Abbild angeben"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model stepping"
-msgstr "Modell-Stepping"
+#: ../../any.pm_.c:330
+msgid "You must specify a root partition"
+msgstr "Sie müssen die Verzeichnisbaumwurzel festlegen"
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
-msgstr "Ruanda"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "Dieser Eintrag existiert bereits"
-#: ../../lang.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Switzerland"
-msgstr "Schweiz"
+msgid "Found %s %s interfaces"
+msgstr "Schnittstelle(n) %s %s gefunden"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr "Brunei "
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "Verfügen Sie über weitere?"
-#: ../../modules/interactive.pm:1
+#: ../../any.pm_.c:642
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Verfügen Sie über %s Schnittstellen?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "Sie müssen \"root\" sein, um die Kunfiguration lesen zu können.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Optionen für Netzwerk-Druckerspooler"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"GNU/Linux ist ein Mehrbenutzer-System, das bedeutet konkret, jeder\n"
-"Benutzer hat eigene Präferenzen (Grafische Umgebung,\n"
-"Programmeinstellungen, etc.), sowie ein eigenes Heimverzeichnis, in dem\n"
-"diese Einstellungen gespeichert werden. Falls Sie mehr wissen wollen,\n"
-"können Sie im \"Starter-Handbuch\" nachsehen. Sie können mehrere normale\n"
-"Benutzerkonten einrichten, im Gegensatz zum \"privilegierten\" "
-"Benutzerkonto:\n"
-"»root«, das einmalig ist. Im Gegensatz zu »root« können diese normalen\n"
-"Benutzer jedoch nur ihre eigenen Dateien und Konfigurationen verändern. Sie\n"
-"können sogar mehrere Benutzerkonten pro Person einrichten, denen Sie\n"
-"Zugang zu Ihrem GNU/Linux-System gewähren wollen. Erstellen Sie sich ein\n"
-"eigenes Benutzerkonto, auch wenn Sie der einzige Anwender sind, der\n"
-"diesen Rechner nutzt. Sie sollten nicht ständig mit dem privilegierten\n"
-"Benutzerkonto arbeiten! Das ist ein hohes Sicherheitsrisiko! Wenn Sie einen\n"
-"schweren Fehler als einfacher Benutzer machen, dann können Sie maximal\n"
-"Daten verlieren, jedoch nicht Ihr gesamtes System unbrauchbar machen.\n"
-"\n"
-"Zuerst geben Sie bitte einen normalen Namen an. Das muss nicht\n"
-"notwendigerweise Ihr richtiger Name sein. \"DrakX\" wird das erste Wort, "
-"das\n"
-"Sie eingegeben haben, in das Feld \"%s\" eintragen. Dies ist der Name, den\n"
-"Sie zum Anmelden für dieses Konto benötigen. Natürlich können Sie ihn\n"
-"hier nach Belieben verändern. Dann geben Sie Ihrem Konto ein Passwort. Für\n"
-"ein Benutzerkonto ist dieses zwar nicht von so herausragender\n"
-"Bedeutung wie das für »root«, doch Sie sollten trotzdem etwas Sorgfalt\n"
-"walten lassen. Immerhin sind es Ihre Daten ...\n"
-"\n"
-"Klicken Sie auf \"%s\", um das Benutzerkonto zu erstellen. Anschließend "
-"können\n"
-"Sie direkt weitere Benutzer hinzufügen. Wenn Sie alle Benutzer erstellt\n"
-"haben, klicken Sie auf \"%s\".\n"
-"\n"
-"Durch Anwahl der Schaltfläche \"%s\" haben Sie auch die Möglichkeit, die\n"
-"Standard-Shell dieses Benutzers zu ändern (normalerweise ist dies die \"Bash"
-"\").\n"
-"\n"
-"Wenn Sie alle Benutzerkonten erstellt haben, wird Ihnen die Möglichkeit\n"
-"eröffnet, einen Benutzer automatisch beim Betriebssystemstart\n"
-"angemeldet zu bekommen. Falls Sie sich für diese\n"
-"Funktionalität entscheiden (und wenig Wert auf Sicherheit legen) wählen Sie\n"
-"einfach die gewünschte Arbeitsumgebung und den Benutzer aus. Bestätigen\n"
-"Sie Ihre Auswahl durch Betätigen der Schaltfläche \"%s\". Andernfalls "
-"löschen\n"
-"Sie einfach die Markierung des Punktes \"%s\"."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Internet Access..."
-msgstr "Konfiguriere Internet-Zugang..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Bitte wählen Sie das Zeitintervall zwischen zwei Sicherungen."
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "Nein"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Norway"
-msgstr "Norwegen"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "Ja"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Delete profile"
-msgstr "Profil löschen"
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "Hardware Informationen anzeigen"
-#: ../../keyboard.pm:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Danish"
-msgstr "Dänemark"
+msgid "Installing driver for %s card %s"
+msgstr "Installation des Treibers für die Karte %s %s"
-#: ../../services.pm:1
+#: ../../any.pm_.c:663
#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Schaltet beim Betriebssystemstart automatisch die \"Num\"-Taste für \n"
-"die virtuellen Konsolen und XFree ein."
+msgid "(module %s)"
+msgstr "(Modul %s)"
-#: ../../network/network.pm:1
+#: ../../any.pm_.c:674
#, 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)."
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-"Bitte geben Sie die IP-Parameter dieser Maschine ein.\n"
-"Jeder Eintrag muss als dezimale IP-Adresse in Punktschreibweise \n"
-"angegeben werden (etwa \"192.168.1.42\")."
+"Sie können nun die Optionen für Modul %s angeben.\n"
+"Denken Sie daran, dass Adressen mit „0x“ beginnen müssen, etwa „0x300“"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
+#: ../../any.pm_.c:680
#, 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."
+"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 ""
-"Da die Mandrake Linux-Distribution stetig wächst, wurde sie in mehrere\n"
-"CD-ROMs unterteilt. Es kann daher vorkommen, dass \"DrakX\" Pakete von\n"
-"anderen, als der Installations-CD-ROM installieren will. In diesem Fall\n"
-"wird es die aktuelle CD-ROM auswerfen und nach einer anderen fragen."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
-msgstr "wenn markiert, werden Eigentümer und Gruppe nicht geändert"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "Bulgarien"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
-msgstr "Dienstag"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "Prozessoren"
+"Sie müssen nun die Optionen für Modul %s angeben.\n"
+"Optionen haben die Form „name=wert name2=wert2“.\n"
+"Beispielsweise: „io=0x300 irq=7“"
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "Svalbard and Jan Mayen Islands (Norwegen)"
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "Modul-Optionen:"
-#: ../../standalone/drakTermServ:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "No NIC selected!"
-msgstr "Keine Netzwerkkarte ausgewählt!"
+msgid "Which %s driver should I try?"
+msgstr "Welchen %s-Treiber soll ich versuchen?"
-#: ../../network/netconnect.pm:1
+#: ../../any.pm_.c:703
#, 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."
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
-"Während der Konfiguration traten Fehler auf.\n"
-"Kontrollieren Sie Ihre Verbindung mit \"net_monitor\" oder dem Mandrake "
-"Kontrollzentrum. Falls die Verbindung nicht funktioniert, sollten Sie erneut "
-"die Konfiguration starten."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "Die Partition %s heißt nun %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Other files..."
-msgstr "Andere Dateien sichern ..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
-msgstr "Kongo (Kinshasa)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "SMB-Server-IP"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Die Partitionstabelle der Platte \"%s\" wird gespeichert!"
+"In einigen Fällen benötigt der „%s“ Treiber zusätzliche Informationen,\n"
+"um korrekt zu funktionieren, meistens sollte er jedoch auch ohne \n"
+"funktionieren. Wollen Sie solche Informationen angeben oder es dem Treiber "
+"überlassen, nach geeigneten Parametern zu suchen? (Das Austesten durch den "
+"Treiber kann in seltenen Fällen zum „Hängenbleiben“ des Rechners führen, was "
+"jedoch keine Hardwareschäden nach sich ziehen sollte)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing HPOJ package..."
-msgstr "Installiere HPOJ-Paket..."
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
+msgstr "Automatische Erkennung"
-#: ../../any.pm:1
-#, 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"
-msgstr ""
-"Mit einer individuellen Startdiskette können Sie Ihr LINUX-System starten, \n"
-"ohne auf den normalen Betriebssystemstarter angewiesen zu sein. Dies ist "
-"nützlich, wenn \n"
-"Sie weder LILO noch Grub auf Ihrem System installieren möchten, wenn ein \n"
-"anderes Betriebssystem Ihren Betriebssystemstarter entfernt hat oder Ihre "
-"Hardware-Konfiguration die Verwendung eines Betriebssystemstarters nicht "
-"korrekt \n"
-"verarbeitet. Eine individuelle Startdiskette kann auch mit der Linux \n"
-"Mandrake Rettungsdiskette verwendet werden, wodurch das System nach \n"
-"schwerwiegenden Fehlern viel einfacher wiederhergestellt werden kann.\n"
-"\n"
-"Möchten Sie jetzt eine Startdiskette für Ihr System erstellen?\n"
-"%s"
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "Optionen angeben"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:719
#, c-format
msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
-"\n"
-" DrakBackup Dämon-Report\n"
-"\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latvian"
-msgstr "Lettland"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr "monatlich"
+"Laden von Modul %s schlug Fehl.\n"
+"Wollen Sie es erneut mit anderen Parametern versuchen?"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Retry"
-msgstr "Wiederholen"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
+msgstr "Zugriff auf X-Programme"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr " Modulname "
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
+msgstr "Zugriff auf RPM-Werkzeuge"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Start at boot"
-msgstr "Beim Systemstart aktivieren"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
+msgstr "„su“ erlauben"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Inkrementelle Archivierung"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
+msgstr "Zugriff auf Verwaltungsdateien"
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "Erster Sektor der Platte (MBR)"
+#: ../../any.pm_.c:738
+msgid "access to network tools"
+msgstr "Zugriff auf Netzwerk-Werkzeuge"
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "El Salvador"
+#: ../../any.pm_.c:739
+msgid "access to compilation tools"
+msgstr "Zugriff auf Compiler"
-#: ../../harddrake/data.pm:1
+#: ../../any.pm_.c:744
#, c-format
-msgid "Joystick"
-msgstr "Joystick"
+msgid "(already added %s)"
+msgstr "(%s wurde bereits hinzugefügt)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "DVD"
-msgstr "DVD"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "Dieses Passwort ist zu einfach"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
-msgstr "Standardmäßig Unicode verwenden"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
+msgstr "Bitte geben Sie ein Benutzerkennzeichen an"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
+#: ../../any.pm_.c:751
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
-"Das Linux Kernel-Modul, das Unterstützung für dieses Gerät bereitstellt"
+"Das Benutzerkennzeichen sollte nur aus Kleinbuchstaben, Ziffern, \n"
+"„-“ und „_“ bestehen"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Ist Ihre Hardware Uhr auf GMT eingestellt?"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "Ich versuche, die Partitionstabelle zu retten"
+#: ../../any.pm_.c:752
+msgid "The user name is too long"
+msgstr "Dieses Benutzerkennzeichen ist zu lang"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Der Parameter %s muss eine ganzzahlige Zahl sein!"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "Dieses Benutzerkennzeichen existiert bereits"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
-msgstr "Benutzer müssen sich mit Passwort authentifizieren."
+#: ../../any.pm_.c:757
+msgid "Add user"
+msgstr "Benutzer hinzufügen"
-#: ../../interactive/stdio.pm:1
+#: ../../any.pm_.c:758
#, c-format
msgid ""
-"Entries you'll have to fill:\n"
+"Enter a user\n"
"%s"
msgstr ""
-"Angaben, die Sie machen müssen:\n"
+"Benutzerkennzeichen einrichten\n"
"%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-"Bei Sicherung auf andere Medien wird dennoch zuerst eine Datei auf der "
-"Festpaltte erstellt, anschließend auf das andere Medium kopiert. Aktivierung "
-"dieser Möglichkeit, sorgt für das Löschen der Kopie auf der Platte nach "
-"beendeter Sicherung."
-
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Ich bin nicht in der Lage, eine Live-Aktualisierung durchzuführen!!!\n"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "Name: "
+#: ../../any.pm_.c:759
+msgid "Accept user"
+msgstr "Benutzer akzeptieren"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
-msgstr ""
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "Benutzername"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 Millionen Farben (24 Bit)"
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "Benutzerkennzeichen"
-#: ../../any.pm:1
-#, c-format
-msgid "Allow all users"
-msgstr "Allen Benutzern erlauben"
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "Shell"
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr "Der offizielle MandrakeSoft-Shop"
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "Symbol"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "Neuberechnen der Größe"
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "Autologin"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:804
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
-"Bitte geben Sie die Maximalgröße \n"
-"(MB) ۛfür DrakBackup an."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Cable connection"
-msgstr "Kabel-Verbindung"
-
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, c-format
-msgid "User"
-msgstr "Benutzer"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-"Erstelle Sicherung vor dem Wiederherstellen (nur für inkrementelle "
-"Sicherungen)."
-
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "mkraid schlug fehl"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Name"
-msgstr "Name"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Emulation der 3. Taste"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
-msgstr "Suche Änderungen von \"sgid\" Dateien"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files..."
-msgstr "Sende Dateien ..."
+"Ich kann GNU/Linux so einrichten, dass beim Systemstart automatisch \n"
+"ein Benutzer angemeldet wird.\n"
+"Wollen Sie davon Gebrauch machen?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "Israel (Phonetisch)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
-msgstr "Zugriff auf RPM-Werkzeuge"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Sie müssen einen Drucker wählen/ein Gerät eingeben!"
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "Wählen Sie den Standard-Nutzer:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Problem beim Zugriff auf die CD."
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
+msgstr "Wählen Sie den Window-Manager, den Sie verwenden wollen:"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "Telefonnummer"
+#: ../../any.pm_.c:824
+msgid "Please choose a language to use."
+msgstr "Bitte wählen Sie die zu verwendende Sprache."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr "Fehler: Es gibt keinen bekannten Treiber für Ihre Soundkarte (%s)"
+#: ../../any.pm_.c:826
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
+msgstr ""
+"Sie können andere Sprachen auswählen, die nach der Installation zur "
+"Verfügung stehen."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Druckername, Beschreibung, Standort"
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "Alle"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
-msgstr "USA (terrestrisch)"
+#: ../../any.pm_.c:961
+msgid "Allow all users"
+msgstr "Allen Benutzern erlauben"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Xinerama-Erweiterung verwenden"
+#: ../../any.pm_.c:961
+msgid "No sharing"
+msgstr "Kein Teilen"
-#: ../../diskdrake/interactive.pm:1
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
#, c-format
-msgid "Loopback"
-msgstr "Loopback"
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr "Das Paket %s muss installiert sein. Soll ich es installieren?"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "West Europe"
-msgstr "Westeuropa"
+#: ../../any.pm_.c:973
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
+msgstr ""
+"Sie können die Dateien mittels Samba oder NFS anbieten. Welche Variante "
+"wollen Sie?"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
-msgid "On CD-R"
-msgstr "auf CD-ROM"
+msgid "Mandatory package %s is missing"
+msgstr "Das zwingend benötigte Paket „%s“ fehlt."
-#: ../../standalone.pm:1
-#, c-format
+#: ../../any.pm_.c:987
msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
+"Would you like to allow users to share some of their directories?\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror "
+"and nautilus.\n"
"\n"
-"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"
+"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-"[OPTIONEN] [PROGRAMMNAME]\n"
+"Wollen Sie Benutzern erlaubern, Verzeichnisse freizugeben?\n"
+"Wenn Sie das erlauben, können die Anwender Verzeichnisse in Konqueror oder "
+"Nautilus im Kontextmenü der eintsprechenden Verzeichnisses freigeben.\n"
"\n"
-"OPTIONEN:\n"
-" --help - Asgabe dieses Hilfetextes.\n"
-" --report - Name eines Mandrake-Programms.\n"
-" --incident - Name eines Mandrake-Programms."
+"Mit „Benutzerdefiniert“ können Sie eine Einstellung pro Kennzeichen "
+"vornehmen.\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake2 version %s"
-msgstr "HardDrake2-Version %s"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
+msgstr "Userdrake starten"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Preferences"
-msgstr "Einstellungen"
+#: ../../any.pm_.c:1003
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
+msgstr ""
+"Das Teilen zwichen Benutzern verwendet die Gruppe „fileshare“.\n"
+"Sie können UserDrake verwenden, um Benutzerkennzeichen in diese Gruppe "
+"aufzunehmen."
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr "Swaziland"
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
+msgstr "Cracker-Spielplatz"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "Dominikanische Republik"
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Schwach"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr "Kopiere %s"
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
+msgstr "Standard"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Choose color"
-msgstr "Farbauswahl"
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Hoch"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac"
-msgstr "Syrien"
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+msgid "Higher"
+msgstr "Höher"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "Paranoid"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1061
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!"
+"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 ""
-"Bitte wählen Sie die Festplatte, die Sie löschen wollen, um Ihr neues\n"
-"Mandrake Linux zu installieren. Bedenken Sie dabei, dass alle Daten auf\n"
-"dieser Platte nach diesem Schritt unwiederbringlich verloren sind!"
-
-#. -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
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Verwenden Sie die Tasten %c und %c um ein Betriebssystem zu w„hlen."
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Generische 2 Tasten Maus"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Aktivierung von \"%s\", um die Datei auszuführen"
-
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr "Entfernen Sie erst die Logischen Medien\n"
-
-#. -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
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "In %d Sekunden wird das markierte BS automatisch gestartet."
+"Diese Ebene ist mit Vorsicht zu verwenden. Zwar macht sie Ihr System \n"
+"einfacher handhabbar, aber auch leichter angreifbar: In dieser Form darf \n"
+"der Rechner nicht als Netzwerkrechner (LAN oder Modem) verwendet werden, \n"
+"da Angreifer mangels Passwort an Ihre Daten gelangen können!"
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../any.pm_.c:1064
msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
-msgstr "Ich kann \"/etc/sysconfig/bootsplash\" nicht anlegen."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet access"
-msgstr "Internetzugang"
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
+msgstr ""
+"Passwortabfragen sind nun eingeschaltet, aber die Verwendung als \n"
+"Netzwerkrechner kann hier nicht empfohlen werden."
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../any.pm_.c:1065
msgid ""
-"y coordinate of text box\n"
-"in number of characters"
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
-"Y-Koordinate des Textfeldes\n"
-"in Anzahl-Zeichen"
+"Das ist die Standard-Sicherheitsebene für Rechner, mit Internetzugang \n"
+"als Klient."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1066
msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
-"Um eine Liste der Drucker-Parameter Ihres Druckers zu erhalten, betätigen "
-"Sie bitte die Schaltfläche \"Liste der Drucker-Optionen\"."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr "Aktiviere Server..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Druck der Testseite(n) ..."
+"Es gibt bereits mehr Restriktionen und jede Nacht werden automatische "
+"Sicherheitstests durchgeführt."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1067
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."
+"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 ""
-"Übertragung erfolgreich\n"
-"Probieren Sie das Anmelden auf dem Server mit dem Befehl:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"ohne das Sie jetzt nach einem Passwort gefragt werden."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Es gibt bereits eine Partition, mit dem Einhängepunkt %s\n"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
-msgstr "Stündliche Sicherheitschecks aktivieren/deaktivieren."
+"Mit dieser Sicherheitsebene wird es möglich, das System als einen \n"
+"Server zu verwenden.\n"
+"Die Sicherheit ist nun ausreichend hoch, um das System als Server \n"
+"einzusetzen, der einer Vielzahl von Klienten einen Verbindungsaufbau \n"
+"erlaubt. Es sei hier angemerkt, dass Ihr Rechner, wenn Sie nur als \n"
+"Klient ins Internet gehen, besser eine niedrigere Sicherhetsebene \n"
+"verwenden sollte."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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''."
+#: ../../any.pm_.c:1070
+msgid ""
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-"Sie müssen nun entscheiden, wo auf Ihrer/n Festplatte(n) Ihr Mandrake Linux\n"
-"System installiert werden soll. Sofern alles leer ist bzw. ein\n"
-"Betriebssystem alles belegt, müssen die Platte(n) neu partitioniert werden.\n"
-"Prinzipiell besteht das Partitionieren der Platte(n) darin, den\n"
-"Plattenplatz so aufzuteilen, dass Ihr Mandrake Linux darauf installiert\n"
-"werden kann.\n"
-"\n"
-"Da dieser Schritt normalerweise irreversibel ist, kann das Partitionieren\n"
-"für unerfahrene Anwender unangenehm und stressig sein. Dieser Assistent\n"
-"kann Ihnen diesen Schritt abnehmen. Lesen Sie dennoch vor Beginn im\n"
-"Handbuch die entsprechenden Passagen und lassen Sie sich Zeit mit der\n"
-"Entscheidung.\n"
-"\n"
-"Abhängig vom aktuellen Zustand Ihrer Platte(n) haben Sie verschiedene\n"
-"Alternativen:\n"
-"\n"
-" * \"%s\": Dies führt einfach dazu, dass Ihre leere(n) Festplatte(n)\n"
-"automatisch partitioniert werden; Sie müssen sich also um nichts weiter\n"
-"kümmern.(*)\n"
-"\n"
-" * \"%s\": Der Assistent hat eine oder mehrere existierende Linux-"
-"Partitionen\n"
-"auf Ihrer Platte gefunden. Wählen Sie diese Schaltfläche, falls Sie sie\n"
-"behalten wollen. Sie werden dann gebeten, die Einhängepunkte der "
-"Partitionen\n"
-"anzugeben. Als Vorgabe erhalten Sie die Einhängepunkte der gefundenen\n"
-"Distribution, normalerweise ist es nicht nötig diese zu ändern.\n"
-"\n"
-" * \"%s\": Falls der gesamte Plattenplatz aktuell für Microsoft Windows(TM)\n"
-"verschwendet ist, müssen Sie für GNU/Linux Platz schaffen. Um dies zu\n"
-"erreichen, können Sie entweder Ihre Microsoft Windows(TM) Partition(en)\n"
-"samt Daten löschen (siehe \"Komplette Platte löschen\") oder Ihre Windows-\n"
-"Partition verkleinern. Letzteres geht ohne Datenverlust. Sie sollten diese\n"
-"Variante wählen, falls Sie beide Betriebssysteme (Windows und Mandrake\n"
-"Linux) nebeneinander nutzen wollen.\n"
-"\n"
-" Bevor Sie sich für diese Variante entscheiden, sei hier noch einmal\n"
-"betont, dass das bedeutet, Sie haben weniger Platz für Windows als\n"
-"momentan.\n"
-"\n"
-" * \"%s\": Falls Sie alle Daten Ihrer Platte verlieren, und sie durch Ihr\n"
-"neues Mandrake Linux System ersetzen wollen, wählen Sie diese Schaltfläche.\n"
-"Beachten Sie, dass dieser Schritt nicht rückgängig gemacht werden kann.\n"
-"\n"
-" !! Wenn Sie diese Variante wählen, werden alle Ihre Daten auf der Platte\n"
-"gelöscht! !!\n"
-"\n"
-" * \"%s\": Bei dieser Variante werden alle Windows Partitionen gelöscht und\n"
-"die Platte(n) komplett neu partitioniert.\n"
-"\n"
-" !! Wenn Sie diese Variante wählen, werden alle Ihre Daten auf der Platte\n"
-"gelöscht! !!\n"
-"\n"
-" * \"%s\": Wenn Sie Ihre Festplatte selber von Hand partitionieren wollen,\n"
-"dann können Sie diese Option wählen. Seien Sie bitte sehr sorgfältig, wenn\n"
-"Sie diese Lösung wählen, da Sie zwar alle möglichen Einstellungen\n"
-"vornehmen, aber gleichzeitig auch sehr leicht Daten verlieren können. Diese\n"
-"Option ist nur geeignet, wenn Sie wissen, was Sie tun. Um zu erfahren, wie\n"
-"Sie DiskDrake verwenden können, lesen Sie bitte das Kapitel \"Ihre\n"
-"Partitionen verwalten\" im \"Starter Handbuch.\""
+"Diese Ebene bietet die selbe Funktionalität, wie die vorherige. Jedoch ist \n"
+"das System nun komplett geschlossen. Es ist die höchste Sicherheitsebene."
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
-msgstr "Ukraine"
+#: ../../any.pm_.c:1076
+msgid "DrakSec Basic Options"
+msgstr "DrakSec Grundeinstellungen"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Application:"
-msgstr "Anwendung:"
+#: ../../any.pm_.c:1077
+msgid "Please choose the desired security level"
+msgstr "Wählen Sie Ihre Sicherheitsebene"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "External ISDN modem"
-msgstr "Externes ISDN-Modem"
+#: ../../any.pm_.c:1080
+msgid "Security level"
+msgstr "Sicherheitsebene"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr "Falls markiert, Ergebnis per E-Mail zustellen."
+#: ../../any.pm_.c:1082
+msgid "Use libsafe for servers"
+msgstr "„libsafe“ bei Servern verwenden"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Ihre Wahl? (Standard ‚%s‘) "
+#: ../../any.pm_.c:1083
+msgid ""
+"A library which defends against buffer overflow and format string attacks."
+msgstr "Eine Bibliothek, die gegen sog. „buffer overflow“-Angriffe schützt."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr "Fehlerbehandlung"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
+msgstr "Sicherheitsadministrator (Kennzeichen oder E-Mail)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1166
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"
+"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 ""
-"Die Testseite(n) wurden an den Drucker gesandt.\n"
-"Es kann einen Augenblick dauern, bevor der Drucker seine Arbeit aufnimmt.\n"
-"Druckstatus:\n"
-"%s\n"
-"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
-msgstr "täglich"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and one unknown printer"
-msgstr "und ein unbekannter Drucker"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Ireland"
-msgstr "Irland"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Restore Configuration "
-msgstr " Konfiguration wiederherstellen "
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Ist dies die richtige Einstellung?"
+"Hier können Sie die Taste, bzw Tastenkombination wählen, \n"
+"mit der Sie zwischen verschiedenen Tastaturbelegugen \n"
+"umschalten können, etwa zwischen deutschem und US-Layout."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, 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"
+"Welcome to %s the operating system chooser!\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"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\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 ""
-"Wenn Sie Ihren Computer mit dem Internet oder mit einem lokalen Netzwerk\n"
-"verbinden wollen, dann betätigen Sie die Schaltfläche \"%s\". Bitte "
-"schalten\n"
-"Sie jedoch zuvor, falls nötig, die dafür benötigten Geräte ein, damit\n"
-"\"DrakX\" sie automatisch erkennen kann. Sollte die automatische Erkennung\n"
-"nicht korrekt erfolgen, können Sie es erneut versuchen, nachdem Sie die\n"
-"Markierung der Option \"%s\" entfernt haben. Betätigung der Schaltfläche \"%s"
-"\"\n"
-"bringt Sie weiter zum nächsten Installationsschritt ohne Ihr Netzwerk\n"
-"einzurichten.\n"
-"\n"
-"Zur Auswahl stehen folgende Verbindungsarten: Herkömmliches Modem, ISDN-\n"
-"Modem, ADSL-Verbindung, Kabelmodem oder eine einfache LAN-Verbindung\n"
-"(Ethernet).\n"
+"Willkommen zum Betriebssystem-Starter %s\n"
"\n"
-"Wir wollen hier nicht weiter ins Detail gehen, nur soviel: Stellen Sie\n"
-"sicher, dass Sie die nötigen Parameter von Ihrem Internet-Provider oder\n"
-"Systemadministrator erhalten haben.\n"
+"Markieren Sie in obiger Liste ein Betriebssystem\n"
+"oder warten Sie %d Sekunden, dann starte ich Ihr Standard-System.\n"
"\n"
-"Weitere Einzelheiten, die hier bereits hilfreich sein können, erhalten Sie\n"
-"im \"Starter-Handbuch\". Falls Sie unsicher sind, warten Sie ab, bis die\n"
-"Installation beendet ist und verwenden Sie danach das beschriebene\n"
-"Programm, um Ihre Verbindung einzurichten."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Assistentengestützte Konfiguration"
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Willkommen zum Betriebssystem-Starter GRUB!"
-#: ../../modules/interactive.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:986
#, c-format
-msgid "Autoprobe"
-msgstr "Automatische Erkennung"
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Verwenden Sie die Tasten %c und %c um ein Betriebssystem zu w„hlen."
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"if set to yes, check for :\n"
-"\n"
-"- empty passwords,\n"
-"\n"
-"- no password in /etc/shadow\n"
-"\n"
-"- for users with the 0 id other than root."
-msgstr ""
-"Falls \"Ja\", kontrolliere:\n"
-"\n"
-"- leere Passwörter,\n"
-"\n"
-"- fehlende Passwörter in \"/etc/shadow\",\n"
-"\n"
-"- Kennzeichen außer \"root\" mit ID 0."
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Zum Starten des BS drÂcken Sie <Return>. Mit <e> k”nnen Sie das"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files..."
-msgstr "Systemdateien sichern ..."
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "Kommando vorher editieren, mit <c> erhalten Sie eine Kommandozeile."
-#: ../../any.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:995
#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr ""
-"Ich kann kein Broadcast machen,\n"
-"da keine NIS-Domäne angegeben wurde."
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "In %d Sekunden wird das gew„hlte BS automatisch gestartet."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Entferne Drucker \"%s\"..."
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
+msgstr "Sie haben nicht genug Platz in „/boot“"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell history size"
-msgstr "Anzal gespeicherter Kommandozeilenaufrufe"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "Arbeitsoberfläche"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "drakfloppy"
-msgstr "DrakFloppy"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "Start-Menü"
-#: ../../standalone/drakpxe:1
+#: ../../bootloader.pm_.c:1120
#, 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 "You can't install the bootloader on a %s partition\n"
msgstr ""
-"Bitte geben Sie an, wo sich die Datei \"auto_install.cfg\" befindet.\n"
-"\n"
-"Lassen Sie das Feld leer, wenn Sie keine automatische Installaton wollen.\n"
-"\n"
-
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on other machines"
-msgstr "Auf anderen Rechnern konfiguriert"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "Informationsgehalt, der durch den Befehl CPUID erhalten werden kann."
+"Sie können den Betriebssystemstarter\n"
+"nicht auf einer %s Partition installieren!\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Peru"
-msgstr "Peru"
+#: ../../bootlook.pm_.c:53
+msgid "Boot Style Configuration"
+msgstr "Konfiguration der Boot-Einstellungen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " on device: %s"
-msgstr " an Gerät: %s"
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
+msgstr "/_Datei"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "Windows(TM) löschen"
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
+msgstr "/Datei/B_eenden"
-#: ../../services.pm:1
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"Dieser Dienst startet den X-Font-Server. Er ist notwendig, \n"
-"damit XFree gestartet werden kann!"
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
+msgstr "<control>Q"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"Die meisten Werte wuden Ihrem\n"
-"laufenden System entnommen.\n"
-"Sie können diese nach Bedarf anpassen."
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
+msgstr "Neuer kategorisierter Monitor"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-"Wählen Sie eine Schriftartdatei bzw. ein Verzeichnis und betätigen Sie "
-"\"Hinzufügen\""
+#: ../../bootlook.pm_.c:83
+msgid "NewStyle Monitor"
+msgstr "Neuer Stil"
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "Madagaskar"
+#: ../../bootlook.pm_.c:84
+msgid "Traditional Monitor"
+msgstr "Herkömmlicher Stil"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
+msgstr "Herkömmlicher Gtk+ Stil"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
-msgstr "Cron ist noch nicht für unprivilegierte Kennzeichen nutzbar"
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
+msgstr "Aurora beim Hochfahren starten"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "System"
-msgstr "System"
+#: ../../bootlook.pm_.c:89
+msgid "Lilo/grub mode"
+msgstr "LILO/GRUB Modus"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Möchten Sie diese Möglichkeit nutzen?"
+#: ../../bootlook.pm_.c:89
+msgid "Yaboot mode"
+msgstr "Yaboot Modus"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr "Arabisch"
+#: ../../bootlook.pm_.c:138
+msgid "Install themes"
+msgstr "Themen installieren"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:139
msgid ""
-"\n"
-"- Options:\n"
+"Display theme\n"
+"under console"
msgstr ""
-"\n"
-"- Optionen:\n"
+"Bildschirm-Thema\n"
+"für die Konsole"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Password required"
-msgstr "Passwort nötig"
+#: ../../bootlook.pm_.c:140
+msgid "Create new theme"
+msgstr "Ein neues Thema erzeugen"
-#: ../../common.pm:1
+#: ../../bootlook.pm_.c:184
#, c-format
-msgid "%d minutes"
-msgstr "%d Minuten"
+msgid "Backup %s to %s.old"
+msgstr "Anlegen einer Sicherheitskopie von „%s“ unter „%s.old“."
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: ../../bootlook.pm_.c:187
#, c-format
-msgid "Graphics card: %s"
-msgstr "Grafikkarte: %s"
+msgid "Copy %s to %s"
+msgstr "Kopiere „%s“ nach „%s“"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV transfer failed!"
-msgstr "WebDAV-Übertragung schlug fehl!"
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+msgstr "Fehler"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "XFree konfigurieren"
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
+msgstr "Ich kann die LILO Nachricht nicht finden."
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Choose action"
-msgstr "Wählen Sie ein Aktion aus"
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr "Ich kann „/etc/sysconfig/bootsplash“ nicht anlegen."
-#: ../../lang.pm:1
+#: ../../bootlook.pm_.c:222
#, c-format
-msgid "French Polynesia"
-msgstr "Französisch Polinesien"
+msgid "Write %s"
+msgstr "Schreiben von %s"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:224
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."
-msgstr ""
-"\"DrakX\" versucht normalerweise die Anzahl der Tasten Ihrer Maus zu\n"
-"erkennen. Sollte das nicht möglich sein, so behandelt es Ihre Maus als\n"
-"Zwei-Tasten-Maus und emuliert die mittlere Taste. Es erkennt üblicherweise\n"
-"korrekt, ob es sich um eine serielle, eine PS/2- oder um eine USB-Maus\n"
-"handelt.\n"
-"\n"
-"Sollte dies nicht Ihren Vorstellungen entsprechen: Wählen Sie einfach Ihren\n"
-"Maustyp aus der Liste, die Ihnen angezeigt wird.\n"
-"\n"
-"Sollten Sie einen anderen Maustyp gewählt haben, als DrakX Ihnen vorschlug,\n"
-"können Sie die Funktionstüchtigkeit Ihrer Maus im angezeigten Dialog\n"
-"überprüfen. Verwenden Sie auch die Knöpfe und gegebenenfalls das Mausrad,\n"
-"um sicherzustellen, dass die festgelegten Einstellungen funktionieren.\n"
-"Falls nicht, drücken Sie die [Leertaste] oder die Eingabetaste, um zurück\n"
-"zum Auswahlmenü zu gelangen und suchen Sie einen anderen Treiber aus.\n"
-"\n"
-"Es kommt vor, dass Mäuse mit Rädern nicht korrekt erkannt werden. Wählen\n"
-"Sie in diesem Fall die richtige Maus aus der vorgegebenen Liste. Stellen\n"
-"Sie sicher, dass Sie auch den Anschluss richtig angegeben haben. Nach\n"
-"Betätigen der Schaltfläche \"%s\", wird Ihnen ein Bild der gewählten Maus\n"
-"gezeigt. Bewegen Sie Räder und Tasten, um sicherzustellen, dass die Maus\n"
-"richtig erkannt wurde."
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr "Ich kann „/etc/sysconfig/bootsplash“ nicht anlegen."
-#: ../../services.pm:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Unterstützung für den OKI 4w und kompatible WinDrucker."
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr "Ich kann „mkinitrd -f /boot/initrd-%s.img %s“ nicht ausführen."
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:238
#, c-format
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr "Erstellen der RamDisk: „mkinitrd -f /boot/initrd-%s.img %s“."
+
+#: ../../bootlook.pm_.c:244
msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-"Dateien sowie Platzhalter in \".backupignore\" Dateien im Startverzeichnis "
-"eines Verzeichnisbaums werden nicht archiviert."
-
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Startet das ALSA (Advanced Linux Sound Architecture) Sound-System"
+"Ich kann LILO nicht ausführen!Führen Sie bitte mit dem privilegierten "
+"Benutzerkennzeichen „lilo“ in einer Konsole aus, um die Themen-Installation "
+"zu beenden."
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Installiere den Treiber für die %s Karte %s"
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
+msgstr "LILO ausführen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Sie haben Ihren alten Standarddrucker (\"%s\") übertragen, soll es auch Ihr "
-"Standarddrucker unter dem neuen Drucksystem \"%s\" werden?"
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+msgid "Notice"
+msgstr "Anmerkung"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Enable Server"
-msgstr "Server aktivieren"
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr "Installation des LILO- und Start-Themas erfolgreich."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ukrainian"
-msgstr "Ukraine"
+#: ../../bootlook.pm_.c:251
+msgid "Theme installation failed!"
+msgstr "Die Installation des Themas schlug fehl!"
-#: ../../printer/printerdrake.pm:1
+#: ../../bootlook.pm_.c:259
#, 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."
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"Es wurde kein aktives Netzwerk gefunden und es konnte auch keine "
-"Netzwerkverbindung hergestellt werden. Kontrollieren Sie bitte Ihre Hardware "
-"und Ihre Softwareeinstellungen. Versuchen Sie anschließend erneut den "
-"Netzwerkdrucker einzurichten."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "\"%s\" aktivieren, um die Datei zu schreiben"
+"Sie verwenden momentan „%s“ als Betriebssystemstarter.\n"
+"Wählen Sie „Konfigurieren“, wenn Sie den Assistenten starten wollen."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Bitte legen Sie die Startdiskette in Laufwerk %s ein."
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
+msgstr "Konfigurieren"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local network(s)"
-msgstr "Lokale Netzwerke"
+#: ../../bootlook.pm_.c:268
+msgid "Splash selection"
+msgstr "Startschirmauswahl"
-#: ../../help.pm:1
-#, c-format
-msgid "Remove Windows"
-msgstr "Windows(TM) löschen"
+#: ../../bootlook.pm_.c:271
+msgid "Themes"
+msgstr "Themen"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../bootlook.pm_.c:273
msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-"Ihr %s wurde konfiguriert.\n"
-"Sie können nun Dokumente mit \"XSane\" scannen (unter \"Multimedia/Graphik\" "
-"im Mandrake-Menü)."
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Firewire controllers"
-msgstr "Firewire-Controller"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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!"
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
msgstr ""
-"Nachdem Sie die allgemeinen Parameter eingestellt haben,\n"
-"bekommen Sie die Liste möglicher Betriebssystemalternativen für das\n"
-"Startmenü angezeigt.\n"
"\n"
-"Sollte sich auf Ihrem Rechner bereits ein anderes Betriebssystem befinden,\n"
-"so wird dieses - sofern es erkannt wird - automatisch zu dem Startmenü\n"
-"hinzugefügt. Hier können Sie noch einige Feineinstellungen für die\n"
-"bestehenden Optionen vornehmen. Markieren Sie einen bestehenden Eintrag und\n"
-"betätigen Sie die Schaltfläche \"%s\", um einen neuen Eintrag zu erzeugen;\n"
-"\"%s\" oder \"%s\" ändert oder löscht einen Eintrag; \"%s\" bringt Sie zum "
-"nächsten\n"
-"Installationsschritt.\n"
-"\n"
-"Möglicherweise wollen Sie auch nicht, dass andere Anwender Zugriff auf die\n"
-"übrigen installierten Betriebssysteme bekommen. In diesem Fall können Sie\n"
-"die jeweiligen Einträge entfernen, Sie müssen jedoch selbst für\n"
-"Startdisketten sorgen, um diese Systeme erreichen zu können!"
+"Wählen Sie sich\n"
+"das Aussehen von\n"
+"LILO und dem\n"
+"Startschirm.\n"
+"Sie können\n"
+"unterschiedliche\n"
+"Varianten wählen."
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
+msgstr "LILO-Menü"
+
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
+msgstr "Startschirm"
+
+#: ../../bootlook.pm_.c:316
msgid "System mode"
msgstr "System-Modus"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Um auf einem NetWare-Drucker zu drucken sind folgende Angaben erforderlich: "
-"Name des NetWare-Drucker-Servers (entspricht nicht immer dem TCP/IP-"
-"Rechnernamen des Computers), Name der Drucker-Warteschlange, sowie falls "
-"notwendig, den entsprechenden Benutzernamen samt Passwort."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Netmask:"
-msgstr "Netzmaske:"
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
+msgstr "X-Window nach dem Hochfahren automatisch starten "
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
-msgstr "Später"
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
+msgstr "Nein ich will kein Autologin"
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "Übergeben"
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "Ja ich will Autologin mit diesem Kennzeichen und dieser Oberfläche"
+
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
+msgstr " Ok "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr "Aktualisiere Druckerliste (um alle entfernten CUPS-Drucker anzuzeigen)"
+#: ../../common.pm_.c:107
+msgid "GB"
+msgstr "GB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
+#: ../../common.pm_.c:107
+msgid "KB"
+msgstr "KB"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Die automatische Installation kann, falls Sie wollen,\n"
-"vollautomatisch erfolgen. In diesem Fall wird die\n"
-"Festplatte vollständig durch DrakX rekonfiguriert\n"
-"(diese Möglichkeit ist für die Replikation auf anderen\n"
-"Rechnern gedacht).\n"
-"\n"
-"Vermutlich werden Sie es vorziehen, erneut eine normale\n"
-"Installation durchzuführen.\n"
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Netzwerkdrucker \"%s\", Port %s"
+#: ../../common.pm_.c:115
+msgid "TB"
+msgstr "TB"
-#: ../../standalone/drakgw:1
+#: ../../common.pm_.c:123
#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Bitte wählen Sie die Netzwerkkarte, die mit Ihrem lokalen Netzwerk \n"
-"verbunden ist."
+msgid "%d minutes"
+msgstr "%d Minuten"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
-msgstr "Bereit um die anderen Dateien wiederherzustellen"
+#: ../../common.pm_.c:125
+msgid "1 minute"
+msgstr "1 Minute"
-#: ../../install_steps_interactive.pm:1
+#: ../../common.pm_.c:127
#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Bitte wählen Sie Ihren Tastaturtyp."
+msgid "%d seconds"
+msgstr "%d Sekunden"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "Druckeranschluss URI"
+#: ../../common.pm_.c:172
+msgid "Can't make screenshots before partitioning"
+msgstr ""
+"Vor der Partitionierung kann ich keine Bildschirm-Schnappschüsse machen."
-#: ../../standalone/drakbackup:1
+#: ../../common.pm_.c:179
#, c-format
-msgid "Not erasable media!"
-msgstr "Das Medium ist nicht löschbar!"
+msgid "Screenshots will be available after install in %s"
+msgstr "Die Bildschirm-Schnappschüsse liegen nach der Installation unter „%s“"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "Terminal-basiert"
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+msgid "France"
+msgstr "Frankreich"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr "Aktiviere/Deaktiviere IP Spoofing Schutz"
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
+msgstr "Costa Rica"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Installiere ein Drucksystem in Sicherheitsebene %s"
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+msgid "Belgium"
+msgstr "Belgien"
-#: ../../any.pm:1
-#, c-format
-msgid "The user name is too long"
-msgstr "Dieser Benutzername ist zu lang"
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
+msgstr "Tschechische Republik"
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "Anderes Betriebssystem (Windows ...)"
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+msgid "Germany"
+msgstr "Deutschland"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr "Die entfernte WebDAV Seite ist bereits synchronisiert!"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+msgid "Greece"
+msgstr "Griechenland"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
-msgstr "Lesen der Drucker-Datenbank ..."
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+msgid "Norway"
+msgstr "Norwegen"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Erstellen einer Auto-Installationsdiskette"
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+msgid "Sweden"
+msgstr "Schweden"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t Benutzer: %s\n"
-"\t\t Pfad: %s \n"
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
+msgstr "Holland"
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr "Somalia"
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+msgid "Italy"
+msgstr "Italien"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr "Kein OpenSource-Treiber"
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+msgid "Austria"
+msgstr "Östereich"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
-msgstr "Def."
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
+msgstr "Vereinigte Staaten von Amerika"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../diskdrake/dav.pm_.c:19
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"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 ""
-"Diese Ebene bietet die selbe Funktionalität, wie die vorherige. Jedoch ist \n"
-"das System nun komplett geschlossen. Es ist die höchste Sicherheitsebene."
+"WebDAV ist ein Protokoll, dass es Ihnen erlaubt, Webserver-Verzeichnisse\n"
+"einzuhängen, sodass Sie diese wie bei lokalen Dateisystemen verwenden\n"
+"können (sofern der Webserver als WebDAV-Server eingerichtet wurde). \n"
+"Falls Sie Einhängpunkte für WebDAV hinzufügen wollen, wählen Sie\n"
+"„Neu“."
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "Nicaragua"
+#: ../../diskdrake/dav.pm_.c:27
+msgid "New"
+msgstr "Neu"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "Neukaledonien"
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Aushängen"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Europäisches Protokoll (EDSS1)"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Einhängen"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Delete"
-msgstr "/_Löschen"
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
+msgstr "Server"
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "Video Modus"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Einhängpunkt"
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
-msgstr "Oman"
+#: ../../diskdrake/dav.pm_.c:85
+msgid "Please enter the WebDAV server URL"
+msgstr "Bitte geben Sie die WebDAV-Server URL an"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Bitte geben Sie Ihre E-Mail-Adresse ein"
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
+msgstr "Die URL muss mit „http://“ oder „https://“ beginnen!"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Network Monitoring"
-msgstr "Netzwerküberwachung"
+#: ../../diskdrake/dav.pm_.c:109
+msgid "Server: "
+msgstr "Server: "
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "SunOS"
-msgstr "SunOS"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
+msgstr "Einhängpunkt: "
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "New size in MB: "
-msgstr "Neue Größe in MB:"
+msgid "Options: %s"
+msgstr "Optionen: %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Partitionstabellentyp: %s\n"
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
+msgstr "Bitte machen Sie erst eine Sicherheitskopie Ihrer Daten!"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication Windows Domain"
-msgstr "Windows-Domänenauthentifizierung"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "Lesen Sie bitte aufmerksam!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "Vereinigte Staaten von Amerika"
+#: ../../diskdrake/hd_gtk.pm_.c:100
+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 ""
+"Wenn Sie aboot verwenden wollen, müssen Sie ausreichend Platz am Anfang \n"
+"der Platte lassen (2048 Sektoren reichen aus)."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr "Tastenemulation"
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "Assistent"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", Netzwerkdrucker \"%s\", Port %s"
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
+msgstr "Wählen Sie ein Aktion aus"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
-"\n"
-"Drakbackup-Aktivitäten über Bandlaufwerk:\n"
-"\n"
+"Sie haben eine große FAT Partition \n"
+"(diese enthält häufig nur Microsoft DOS/Windows).\n"
+"Ich rate Ihnen, diese Partition erst zu verkleinern\n"
+"(Wählen Sie sie an und drücken Sie dann „Größe verändern“)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-" FTP-Verbindungsproblem: Es war nicht möglich, Ihre Dateien per FTP zu "
-"übertragen.\n"
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "Bitte klicken Sie auf eine Partition"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Sending Speed:"
-msgstr "Sendegeschwindigkeit: "
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "Details"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"The classic bug sound tester is to run the following commands:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
-"currently uses\n"
-"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services're configured to be run on\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:254
+msgid "No hard drives found"
+msgstr "Keine Festplatten gefunden"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Halt bug"
-msgstr "Herunterfahren Fehler"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Mail-Benachrichtigungskonfiguration"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "FAT"
-# drakfw:278 (Neuse
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr "Tokelau (Neuseeland)"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Matching"
-msgstr "Übereinstimmung mit"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Journalised FS"
+msgstr "Journalisierendes FS"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bosnian"
-msgstr "Bosnien"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Release: "
-msgstr "Ausgabe:"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "Auslagerung"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection speed"
-msgstr "Verbindungsgeschwindigkeit"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "Leer"
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr "Namibia"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "Andere"
-#: ../../services.pm:1
-#, c-format
-msgid "Database Server"
-msgstr "Datenbankserver"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "Dateisystemtypen:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
-"spezielle Fähigkeiten des Treibers (Brennfähigkeit oder DVD-Unterstützung)"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "Erzeugen"
-#: ../../raid.pm:1
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Ich kann keine Partition zu dem _formatierten_ RAID md%d hinzufügen"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "Typ"
-#: ../../standalone/drakclock:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid "Network Time Protocol"
-msgstr "Network Time Protocol"
+msgid "Use ``%s'' instead"
+msgstr "Verwenden Sie stattdessen „%s“"
-#: ../../Xconfig/card.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "Löschen"
+
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
+msgstr "Verwenden Sie erst „umount“"
+
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, 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."
+"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-"Ihre Karte kann 3D-hardwarebeschleunigt werden, allerdings nur mit \n"
-"XFree %s. BEMERKUNG: DIESE FUNKTION IST NOCH IM EXPERIMENTIER-\n"
-"STADIUM UND KANN ZUM STEHENBLEIBEN IHRES RECHNERS FÜHREN.\n"
-"Ihre Karte wird auch von XFree %s unterstützt, wodurch Sie bessere 2D-\n"
-"Unterstützung erhalten können."
+"Nach Änderung des Partitionstyps von %s, werden sämtliche Daten darauf "
+"gelöscht"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Bitte warten, Sicherheitsoptionen werden eingestellt..."
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose a partition"
+msgstr "Wählen Sie eine Partition"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "Unbekannt|CPH05X (bt878) [Zahlreiche Hersteller]"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose another partition"
+msgstr "Wählen Sie eine andere Partition"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Arbeitsoberfläche nach dem Hochfahren automatisch starten "
+#: ../../diskdrake/interactive.pm_.c:202
+msgid "Exit"
+msgstr "Verlassen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr "stündlich"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
+msgstr "In den Experten-Modus wechseln"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
-msgstr "Rechte Shift-Taste"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
+msgstr "In den Normal-Modus wechseln"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " erfolgreich auf %s wiederhergestellt "
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "Rückgängig"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Bereite Druckerport für CUPS vor..."
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "Wollen Sie trotzdem fortfahren?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr "Antigua und Barbuda"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "Beenden ohne speichern"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! Zeigt an, dass das Passwort in der Systemdatenbank sich von dem\n"
-"in der Terminal Server Datenbank unterscheidet.\n"
-"Entfernen/erneutes Hinzufügen des Benutzers zum Terminal Server \n"
-"nötig, um das Anmelden zu ermöglichen."
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "Beenden ohne die Partitionstabelle zu speichern?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "Spanien"
+#: ../../diskdrake/interactive.pm_.c:257
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "Möchten Sie die vorgenommenen Änderungen in „/etc/fstab“ speichern?"
-#: ../../services.pm:1
-#, c-format
-msgid "Start"
-msgstr "Start"
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "Alles löschen"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
-msgstr "Direkte Root Anmeldung"
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
+msgstr "Automatisches Erstellen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring applications..."
-msgstr "Konfiguriere Anwendungen ..."
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+msgid "More"
+msgstr "Mehr"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, 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 ""
-"\n"
-"Willkommen zum Druckerassistenten\n"
-"\n"
-"Dieser Assistent möchte Ihnen helfen, Ihre(n) lokalen und Netzwerkdrucker "
-"sowie Drucker an Windows-Rechnern im lokalen Netz zu konfigurieren.\n"
-"\n"
-"Falls Sie Drucker haben, die direkt mit dem Rechner verbunden sind, stellen "
-"Sie sicher, dass diese richtig angeschlossen und eingeschaltet sind. Ebenso "
-"müssen die Netzwerkdrucker bzw. Windows-Rechner eingeschaltet sein.\n"
-"\n"
-"Es sei angemerkt, dass die Erkennung von Netzwerkdruckern etwas länger "
-"dauert, als das Finden von Druckern, die direkt an Ihrem Rechner hängen. Sie "
-"sollten daher diesen Punkt ausschalten, sofern Sie nur direkt am Rechner "
-"hängende Drucker verwenden wollen.\n"
-"\n"
-"Betätigen Sie die Schaltfläche \"Weiter\", wenn Sie soweit sind, bzw. "
-"\"Abbrechen\", wenn Sie keine Drucker konfigurieren wollen."
+#: ../../diskdrake/interactive.pm_.c:278
+msgid "Hard drive information"
+msgstr "Festplatten-Informationen"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
-msgstr "Normale Modem-Verbindung"
+#: ../../diskdrake/interactive.pm_.c:310
+msgid "All primary partitions are used"
+msgstr "Alle Primärpartitionen sind in Gebrauch"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "File Selection"
-msgstr "Dateiauswahl"
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "Ich kann keinen weiteren Partitionen hinzufügen"
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
+#: ../../diskdrake/interactive.pm_.c:312
+msgid ""
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
+msgstr ""
+"Um mehr Partitionen einrichten zu können, müssen Sie zunächst eine Partition "
+"löschen und anschließend eine erweiterte Partition erzeugen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Band vor Sicherung löschen"
+#: ../../diskdrake/interactive.pm_.c:322
+msgid "Save partition table"
+msgstr "Partitionstabelle schreiben"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
-msgstr "Konfigurationswerkzeug starten"
+#: ../../diskdrake/interactive.pm_.c:323
+msgid "Restore partition table"
+msgstr "Partitionstabelle wiederherstellen"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "Installation des Betriebssystemstarters"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
+msgstr "Partitionstabelle retten"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Größe der root-Partition in MB: "
+#: ../../diskdrake/interactive.pm_.c:326
+msgid "Reload partition table"
+msgstr "Partitionstabelle neu laden"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Dieses Paket ist existenziell, sie können es nicht abwählen!"
+#: ../../diskdrake/interactive.pm_.c:331
+msgid "Removable media automounting"
+msgstr "Wechselmedien automatisch Einhängen"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "Datei auswählen"
+
+#: ../../diskdrake/interactive.pm_.c:347
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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"The backup partition table has not the same size\n"
+"Still continue?"
msgstr ""
-"\n"
-" An diskette\n"
-" sequence\n"
-" An\n"
-"\n"
-" diskette\n"
-"\n"
-"\n"
+"Die gesicherte Partitionstabelle hat nicht dieselbe Größe\n"
+"Soll trotzdem fortgefahren werden?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "Etherboot ISO Image ist %s"
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "Warnung"
-#: ../../services.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:362
msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
-"Der Dienst named (BIND) stellt ihnen einen Server zur Verfügung, \n"
-"mit dessen Hilfe Rechnernamen in IP-Adressen umgesetzt werden. \n"
-"Ein solcher Dienst wird \"Domain Name Server\" (DNS) genannt. \n"
-"Falls Sie nur einen Rechner besitzen, mit dem Sie per Modem/ISDN ins \n"
-"Netz gehen, benötigen Sie diesen Dienst nicht."
+"Legen Sie eine Diskette in das Laufwerk\n"
+"Alle Daten auf dieser Diskette werden gelöscht!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr "St. Lucia"
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
+msgstr "Ich Versuche, die Partitionstabelle zu retten"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "November"
+#: ../../diskdrake/interactive.pm_.c:379
+msgid "Detailed information"
+msgstr "Ausführliche Informationen"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
-msgstr "Trenne Verbindung ..."
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "Größe verändern"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Report"
-msgstr "Report"
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "Bewegen"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr "Palau"
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "Formatieren"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "Level"
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "Zum RAID hinzufügen"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr ""
-"Alle Vorfälle werden von einem einzelnen qualifizierten MandrakeSoft "
-"Experten bearbeitet."
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "Zum LVM hinzufügen"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "Auswahl der Paketgruppen"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "Löschen aus dem RAID"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Erlaube lokale Hardware-\n"
-"Konfiguration"
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "Löschen aus dem LVM"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Wiederherstellen mit Netzwerkprotokoll: %s"
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "RAID modifizieren"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr "Sie können alle Modulparamerter hier einstellen."
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
+msgstr "Als Loopback verwenden"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Wählen Sie bitte Auflösung und Farbtiefe"
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "Erzeuge eine neue Partition"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
-msgstr "Die dritte Maustaste emulieren?"
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "Anfangssektor: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "Größe in MB:"
+
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "Dateisystemtyp: "
+
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Einstellung: "
+
+#: ../../diskdrake/interactive.pm_.c:481
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
@@ -3406,1915 +1880,1734 @@ msgid ""
msgstr ""
"Sie können keine weiteren Partitionen anlegen (da Sie die maximale \n"
"Anzahl primärer Partitionen erstellt haben). Bitte löschen Sie \n"
-"eine primäre Partition und legen Sie stattdessen eine erweiterte \n"
+"eine primäre Partioion und legen Sie stattdessen eine erweiterte \n"
"Partition an."
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr "Einhängen"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Erstellen einer Auto-Installationsdiskette"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Install updates"
-msgstr "Aktualisieren"
+#: ../../diskdrake/interactive.pm_.c:511
+msgid "Remove the loopback file?"
+msgstr "Die Loopback-Datei entfernen?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
-msgstr "Höhe des Textfelds"
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "Partitionstyp ändern"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "State"
-msgstr "Status"
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+msgid "Which filesystem do you want?"
+msgstr "Welches Dateisystem wollen Sie verwenden?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Stellen Sie sicher, dass ein Medium in Laufwerk %s liegt."
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
+msgstr "Konvertiere ext2 zu ext3"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Enable multiple profiles"
-msgstr "Mehrere Profile erlauben"
+msgid "Where do you want to mount loopback file %s?"
+msgstr "Wo wollen Sie die Loopback-Datei %s einhängen?"
-#: ../../fs.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr ""
+msgid "Where do you want to mount device %s?"
+msgstr "Wo wollen Sie das Gerät %s einhängen?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
-"Diese Optionen kann alle Ihre Dateien im Verzeichnis \"/etc\" sichern und "
-"wiederherstellen\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Local printer"
-msgstr "Lokaler Drucker"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Files Restored..."
-msgstr "Dateien wiederhergestellt..."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
-msgstr "Auswahl der Pakete"
+"Ich kann diesen Einhängpunkt nicht zurücksetzen, da diese Partition als \n"
+"Loopback verwendet wird. Bitte entfernen Sie erst diesen Loopback."
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:606
#, c-format
-msgid "Mauritania"
-msgstr "Mauretanien"
+msgid "Where do you want to mount %s?"
+msgstr "Wo wollen Sie „%s“ einhängen?"
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
-"Ich kann Ihre aktuelle Konfiguration beibehalten und annehmen, dass Sie "
-"bereits einen DHCP-Server eingerichtet haben. Stellen Sie in diesem Fall "
-"sicher, dass ich Ihr Klasse-C-Netzwerk korrekt erkannt habe. Ich werde es "
-"weder neu konfigurieren, noch Ihre DHCP-Konfiguration ändern.\n"
-"\n"
-"Ihr standardmäßiger DNS Eintrag ist der Caching-Nameserver Ihrer Firewall. "
-"Sie können diesen etwa durch den DNS-Server Ihres Internetanbieters "
-"ersetzen.\n"
-"\n"
-"Ich kann jedoch auch Ihre Schnittstelle neu konfigurieren und einen DHCP-"
-"Server für Sie aufsetzen.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "Errechne die Grenzen des FAT Dateisystems"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Es wurde kein lokaler Drucker erkannt! Um ihn manuell hinzuzufügen geben Sie "
-"einfach einen Geräte- oder Dateinamen in der Eingabezeile an (Parallele "
-"Anschlüsse: /dev/lp0, /dev/lp1, ..., äquivalent zu LPT1:, LPT2:, ...; Erster "
-"USB Drucker: /dev/usb/lp0, zweier USB Drucker: /dev/usb/lp1, ...)."
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "Neuberechnen der Größe"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All primary partitions are used"
-msgstr "Alle Primärpartitionen sind in Gebrauch"
+#: ../../diskdrake/interactive.pm_.c:662
+msgid "This partition is not resizeable"
+msgstr "Die Größe dieser Partition kann ich nicht ändern"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "LDP-Server \"%s\", Drucker \"%s\""
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
+msgstr "Sie sollten ein Backup sämtlicher Daten dieser Partition erstellen"
-#: ../../network/netconnect.pm:1
+#: ../../diskdrake/interactive.pm_.c:669
#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
+msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-"Es ist sehr empfehlenswert, im Anschluss Ihre X-Oberfläche\n"
-"neu zu starten, um Probleme, die durch die Änderung des\n"
-"Rechnernamens hervorgerufen werden, zu vermeiden."
+"Durch Veränderung der Partitionsgröße von %s, gehen sämtliche Daten darauf "
+"verloren"
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-"Automatische Erkennung und Konfiguration neuer Hardware während des \n"
-"Systemstarts."
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "Wählen Sie die neue Größe"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation Server Configuration"
-msgstr "Konfiguration des Installations-Servers"
+#: ../../diskdrake/interactive.pm_.c:675
+msgid "New size in MB: "
+msgstr "Neue Größe in MB:"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "IDE konfigurieren"
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "Zu welcher Platte wollen Sie wechseln?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Ihr Netzwerk ist nicht konfiguriert"
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "Sektor"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Configure module"
-msgstr "Modul konfigurieren"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "Zu welchem Sektor wollen Sie wechseln?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "Cocos (Keeling) Inseln"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "wechsele"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr ""
-"Sie müssen Ihren Rechner neu starten, damit die Veränderungen wirksam werden"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "Bewege Partition..."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
-msgstr "Telefonnummer des Providers"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr "Wählen Sie einen vorhandenen RAID"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Host %s"
-msgstr "Rechner %s"
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "Neu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
-msgstr "Fidschi"
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
+msgstr "Wählen Sie einen vorhandenen LVM"
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
-msgstr "Armenien"
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
+msgstr "LVM Name?"
-# zweite? nicht zweites?
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "zweites Disketten-Laufwerk"
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
+msgstr "Diese Partition kann nicht als Loopback verwendet werden"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
-msgstr "Über HardDrake"
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
+msgstr "Loopback"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
-msgstr "Erlaube TCP Verbindungen zum X Windows System"
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
+msgstr "Name der Loopback-Datei: "
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr "Laufwerkskapazität"
+#: ../../diskdrake/interactive.pm_.c:831
+msgid "Give a file name"
+msgstr "Dateinamen angeben"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
msgstr ""
-"Legen Sie eine Diskette in das Laufwerk.\n"
-"Alle Daten auf dieser Diskette werden gelöscht!"
+"Diese Datei wird bereits von einer anderen Loopback-Verknüpfung verwendet, "
+"wählen Sie eine andere Datei."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "Größe: %s"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
+msgstr ""
+"Es existiert bereits eine Datei mit diesem Namen. Soll ich sie verwenden?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Strg und Umschalttaste gleichzeitig"
+#: ../../diskdrake/interactive.pm_.c:858
+msgid "Mount options"
+msgstr "Einhäng-Optionen"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "secondary"
-msgstr "sekundär"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
+msgstr "Verschiedene"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Sicherungskonfiguration anzeigen"
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "Gerät"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr "Wenn ja, Prüfergebnisse an syslog schicken"
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "Level"
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "Kein Passwort"
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "Blockgröße"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nigeria"
-msgstr "Nigeria"
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
+msgstr "Vorsicht: Diese Aktion ist gefährlich."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s benötigt hostname...\n"
+#: ../../diskdrake/interactive.pm_.c:962
+msgid "What type of partitioning?"
+msgstr "Welcher Partitionstyp?"
-#: ../../install_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:978
#, c-format
-msgid "There is no existing partition to use"
-msgstr "Es gibt keine existierende Partition, die ich verwenden kann."
+msgid "The package %s is needed. Install it?"
+msgstr "Das Paket %s wird benötigt. Soll ich es installieren?"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:992
msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
-"Die folgenden Scanner\n"
-"\n"
-"%s\n"
-"sind direkt an Ihr System angeschlossen.\n"
+"Es tut mir Leid, aber ich weigere mich, eine „/boot“ Partition \n"
+"hinter dem Zylinder 1024 anzulegen.\n"
+"Entweder verwenden Sie LILO und es wird nicht funktionieren, oder Sie "
+"verwenden \n"
+"LILO nicht, dann benötigen Sie keine „/boot“ Partition."
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Multifunktionsgerät am Parallelport #%s"
+#: ../../diskdrake/interactive.pm_.c:996
+msgid ""
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
+msgstr ""
+"Die Partition, die Sie als Verzeichnisbaumwurzel (/) ausgewählt haben, ist "
+"physikalisch hinter dem 1024ten Zylinder Ihrer Festplatte gelegen und Sie "
+"haben keine „/boot“ Partition eingerichtet. Falls Sie den LILO "
+"Betriebssystemstarter einsetzen wollen, vergessen Sie bitte nicht, eine „/"
+"boot“ Partition anzulegen!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1002
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."
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
msgstr ""
-"Um einen TCP- oder Socket-Drucker verwenden zu können, müssen Sie auf alle "
-"Fälle dessen Rechnernamen, bzw. IP-Adresse - möglicherweise auch den Port - "
-"angeben. Bei HP JetDirect-Servern ist dies normalerweise die Port-Adresse "
-"9100, bei anderen Servern kann es eine andere sein. Schauen Sie im "
-"Zweifelsfall in die Unterlagen des Herstellers."
+"Sie haben eine Software-RAID-Partition als Verzeichnisbaumwurzel "
+"ausgewählt. \n"
+"Zur Zeit kann kein Betriebssystemstarter damit ohne Verwendung einer \n"
+"„/boot“-Partition arbeiten. Sie sollten also daran denken, eine solche \n"
+"Partition zu erstellen."
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid "Hard drive information"
-msgstr "Festplatten-Informationen"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "Die Partitionstabelle der Platte „%s“ wird gespeichert!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian"
-msgstr "Russland"
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
+msgstr ""
+"Sie müssen Ihren Rechner neu starten, damit die Veränderungen wirksam werden"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1037
#, c-format
-msgid "Jordan"
-msgstr "Jordanien"
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr ""
+"Nach Formatieren der Partition %s, werden sämtliche Daten darauf gelöscht"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Hide files"
-msgstr "Dateien verstecken"
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "Formatiere"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Selbsterkennung von direkt am Rechner angeschlossenen Druckern"
+msgid "Formatting loopback file %s"
+msgstr "Formatiere Loopback-Datei „%s“"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "Ich kann kein Disketten-Laufwerk finden"
+msgid "Formatting partition %s"
+msgstr "Formatiere Partition „%s“"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bolivia"
-msgstr "Bolivien"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Hide files"
+msgstr "Dateien verstecken"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Move files to the new partition"
+msgstr "Dateien auf die neue Partition verschieben."
+
+#: ../../diskdrake/interactive.pm_.c:1053
#, c-format
msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-"Richten Sie Ihren Windows-Server so ein, dass Ihr Drucker über das IPP-"
-"Protokoll erreichbar ist und konfigurieren sie ihn auf dieser Maschine mit "
-"dem Verbindungstyp \"%s\" in PrinterDrake.\n"
-"\n"
+"Das Verzeichnis „%s“ enthält bereits Daten\n"
+"(%s)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "Ungültiges Paket"
+#: ../../diskdrake/interactive.pm_.c:1064
+msgid "Moving files to the new partition"
+msgstr "Dateien auf die neue Partition verschieben."
-#: ../advertising/07-server.pl:1
+#: ../../diskdrake/interactive.pm_.c:1068
#, 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!"
-msgstr ""
-"Verwandeln Sie Ihren Rechner mit ein paar Mausklicks in einen "
-"leistungsfähigen Server: Web, E-Mail, Firewall, Router, Datei- und "
-"Druckserver, ..."
+msgid "Copying %s"
+msgstr "Kopiere: %s"
-#: ../../security/level.pm:1
+#: ../../diskdrake/interactive.pm_.c:1072
#, c-format
-msgid "DrakSec Basic Options"
-msgstr "DrakSec-Grundeinstellungen"
+msgid "Removing %s"
+msgstr "Entferne: %s"
-#: ../../standalone/draksound:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Hinweis: Wenn Sie eine ISA PnP Sound Karte haben, müssen Sie das Programm "
-"sndconfig verwenden. Einfach in einer Konsole \"sndconfig\" eingeben."
+msgid "partition %s is now known as %s"
+msgstr "Die Partition %s heißt nun %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Romania"
-msgstr "Rumänien"
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "Gerät: "
-#: ../../standalone/drakperm:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "Group"
-msgstr "Gruppe"
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "DOS Laufwerksbuchstabe: %s (vermutlich?)\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Canada"
-msgstr "Kanada"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "Typ:"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "choose device"
-msgstr "Gerät wählen"
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "Name: "
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "Remove from LVM"
-msgstr "Aus dem LVM löschen"
+msgid "Start: sector %s\n"
+msgstr "Anfang: Sektor %s\n"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "Timezone"
-msgstr "Zeitzone"
+msgid "Size: %s"
+msgstr "Größe: %s"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid "German"
-msgstr "Deutschland"
+msgid ", %s sectors"
+msgstr ", %s Sektoren"
-#: ../../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
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
-msgid "Next ->"
-msgstr "Weiter ->"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"Turning on this allows to print plain text files in japanese language. Only "
-"use this function if you really want to print text in japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Aktivieren dieser Option erlaubt es Ihnen einfachen Text in der japanischen "
-"Sprache zu drucken. Benutzen Sie diese Funktion nur, wenn Sie wirklich "
-"japanischen Text drucken wollen, wenn diese Funktion aktiviert ist, können "
-"Sie keine Akzente in Latin Schriftarten mehr drucken und auch die Abstände, "
-"die Buchstaben Grösse , etc. nicht mehr anpassen. Diese Einstellung betrifft "
-"nur Drucker auf diesem Rechner, wenn Sie japanischen Text auf einem Drucker "
-"an einem entfernten Computer drucken wolllen, müssen Sie diese Funktion auf "
-"diesem Computer aktivieren."
+msgid "Cylinder %d to %d\n"
+msgstr "Zylinder %d bis %d\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Es handelt sich mit großer\n"
-"Wahrscheinlichkeit um eine\n"
-"Treiber-Partition. Sie sollten\n"
-"sie daher besser unverändert\n"
-"lassen.\n"
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "Formatiert\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "Nicht formatiert\n"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Horizontale Wiederholfrequenz"
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
+msgstr "Eingehängt\n"
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Edit"
-msgstr "Bearbeiten"
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, c-format
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+"Loopback file(s):\n"
+" %s\n"
msgstr ""
-"Ich kann diesen Einhängepunkt nicht zurücksetzen, da diese Partition als \n"
-"Loopback verwendet wird. Bitte entfernen Sie erst diesen Loopback."
+"Loopback Datei(en):\n"
+" %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1132
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\""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"Das von Ihnen während der Installation eingerichtete Netzwerk kann jetzt "
-"nicht gestartet werden. Testen Sie bitte, ob es nach einem Neustart zur "
-"Verfügung steht. Falls nicht, berichtigen Sie die Einstellungen im Mandrake "
-"Kontrollzentrum unter \"Netzwerk & Internet/Verbindung\". Versuchen Sie "
-"anschließend erneut den Drucker mittels \"Hardware/Drucker\"im "
-"Kontrollzentrum einzurichten."
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "USB controllers"
-msgstr "USB-Controller"
+"Partition wird standardmäßig geladen\n"
+" (für MS-DOS Boot, nicht jedoch für LILO)\n"
-#: ../../Xconfig/various.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "What norm is your TV using?"
-msgstr "Um welche Fernsehnorm handelt es sich?"
+msgid "Level %s\n"
+msgstr "Level %s\n"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "Type:"
-msgstr "Typ:"
+msgid "Chunk size %s\n"
+msgstr "Blockgröße %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Share name"
-msgstr "Freigabename"
+msgid "RAID-disks %s\n"
+msgstr "RAID Platten %s\n"
-#: ../../standalone/drakgw:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "enable"
-msgstr "aktivieren"
+msgid "Loopback file name: %s"
+msgstr "Dateiname des Loopbacks: %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-"Kontaktiere Mandrake Linux Web-Server, um eine Liste verfügbarer Pakete zu "
-"erhalten..."
+"\n"
+"Es besteht die Wahrscheinlichkeit,\n"
+"dass es sich um eine Treiber-\n"
+"Partition handelt. Sie sollten sie\n"
+"daher unverändert lassen.\n"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"Beim Neustart des Netzwerks trat ein Fehler auf: \n"
"\n"
-"%s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove the loopback file?"
-msgstr "Die Loopback-Datei entfernen?"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Gewünschte Größe übersteigt den verfügbaren Platz"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP server name missing!"
-msgstr "Der NCP-Servername fehlt!"
+"Diese spezielle Start-Partition\n"
+"ist für die Verwendung mehrerer\n"
+"Betriebssysteme auf dem selben\n"
+"Rechner.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose your country."
-msgstr "Bitte wählen Sie Ihren Staat."
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
+msgstr "Nur lesbar"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Backup-Dateien auf der Festplatte ..."
+msgid "Size: %s\n"
+msgstr "Größe: %s\n"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "Laotian"
-msgstr "Laos"
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Geometrie: %s Zylinder, %s Köpfe, %s Sektoren\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Samoa"
-msgstr "Samoa"
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
+msgstr "Info: "
-#: ../../services.pm:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Der Dienst rstat ermöglicht es Anwendern anderer Rechner des \n"
-"Netzwerks Preformance-Daten dieses Rechners zu erhalten."
+msgid "LVM-disks %s\n"
+msgstr "LVM Platten %s\n"
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid "Re-generating list of configured scanners ..."
-msgstr "Erneuere die Liste der konfigurierten Scanner..."
+msgid "Partition table type: %s\n"
+msgstr "Partitionstabellen Typ: %s\n"
-#: ../../modules/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1169
#, c-format
-msgid "Module configuration"
-msgstr "Modul-Konfiguration"
+msgid "on channel %d id %d\n"
+msgstr "auf Kanal %d ID %d\n"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Scanner"
-msgstr "Scanner"
+#: ../../diskdrake/interactive.pm_.c:1199
+msgid "Filesystem encryption key"
+msgstr "Dateisystem-Schlüssel"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Warnung: Testen dieser Grafikkarte kann Ihren Rechner anhalten"
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
+msgstr "Wählen Sie Ihren Dateisystem-Schlüssel (Passwort)"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1203
#, c-format
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-"Der Benutzername sollte nur aus Kleinbuchstaben, Ziffern, \n"
-"\"-\" und \"_\" bestehen"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Menudrake"
-msgstr "MenuDrake"
+"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "Cracker-Spielplatz"
+#: ../../diskdrake/interactive.pm_.c:1204
+msgid "The encryption keys do not match"
+msgstr "Die Passwörter stimmen nicht überein"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "Modul-Optionen:"
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
+msgstr "Schlüssel"
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
-msgstr "Sicher Sie Ihr Netzwerk mit der Multi-Netzwerk-Firewall ab!"
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
+msgstr "Schlüssel (erneut)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Weiter ohne Netzwerkkonfiguration"
+#: ../../diskdrake/removable.pm_.c:47
+msgid "Change type"
+msgstr "Typ ändern"
-#: ../../network/isdn.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "Abort"
-msgstr "Abbruch"
+msgid "Can't login using username %s (bad password?)"
+msgstr "Ich mich unter „%s“ micht anmelden! Stimmt das Passwort?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "Keine Passwortaufforderung auf %s am Port %s"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Domänen-Authentifizierung nötig"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Maus mit Mausrad Emulation"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Anderer"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Scanner an anderen Rechnern nutzen"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Benutzerkennzeichen"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
+"Please enter your username, password and domain name to access this host."
msgstr ""
-"Ihre Windows-Partition ist zu sehr fragmentiert.\n"
-"Starten Sie bitte erst \"defrag\" unter Windows."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norwegen)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Festplattenbackup in Bearbeitung ..."
-
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Ich kann nicht forken: %s"
+"Bitte geben Sie Benutzerkennzeichen, Passwort und Domäne des Rechners an."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "Typ:"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Client bearbeiten"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+msgid "Username"
+msgstr "Benutzerkennzeichen"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "no fonts found"
-msgstr "Keine Schriftarten gefunden"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Domäne"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Mouse"
-msgstr "Maus"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+msgid "Search servers"
+msgstr "Server suchen"
-#: ../../bootloader.pm:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "not enough room in /boot"
-msgstr "Sie haben nicht genug Platz in \"/boot\""
+msgid "%s formatting of %s failed"
+msgstr "%s formatieren von %s schlug Fehl"
-#: ../../install_steps_gtk.pm:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "trying to promote %s"
+msgid "I don't know how to format %s in type %s"
msgstr ""
+"Ich bin nicht in der Lage, %s mit einem Dateisystem vom Typ %s zu "
+"formatieren."
-#: ../../lang.pm:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
+msgid "mounting partition %s in directory %s failed"
+msgstr "Das Einhängen der Partition %s in das Verzeichnis %s schlug fehl."
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid "Host name"
-msgstr "Rechnername"
+msgid "error unmounting %s: %s"
+msgstr "Fehler beim Aushängen von %s: %s"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the color of the progress bar"
-msgstr "Die Farbe des Fortschrittbalkens"
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "Einfach"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Schriftartdateien unterdrücken"
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
+msgstr "mit „/usr“"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to RAID"
-msgstr "Zum RAID hinzufügen"
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "Server"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
+#: ../../fsedit.pm_.c:240
#, c-format
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"
+"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"
-" * 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."
+"Do you agree to loose all the partitions?\n"
msgstr ""
-"Sie können weitere yaboot Einträge angeben, etwa für andere\n"
-"Betriebssysteme, alternative Kernel oder ein Rettungssystem.\n"
-"\n"
-"Für ein anderes Betriebssystem können Sie nur einen Namen und\n"
-"die Start-Partition angeben.\n"
-"\n"
-"Für Linux gibt es einige Parameter:\n"
-"\n"
-" * \"Label\": Es handelt sich um den Namen, den Sie an der yaboot\n"
-"Eingabeaufforderung angeben müssen, um diese Alternative zu wählen.\n"
-"\n"
-" * \"Image\": Der Name des Kernels, den sie starten wollen. Normalerweise\n"
-"handelt es sich um \"vmlinuz\" oder eine Variante von \"vmlinuz\" mit einer\n"
-"Versionsnummer.\n"
-"\n"
-" * \"Root\": Das Wurzelverzeichnis \"/\" Ihrer Linux-Installation.\n"
-"\n"
-" * \"Append\": Auf Apple-Hardware, wird die Übergabemöglichkeit weiterer\n"
-"Kernelparameter häufig verwendet, um die Grafikausgabe richtig zu\n"
-"konfigurieren oder die Tastaturemulation der Mausknöpfe einzuschalten, da\n"
-"klassische Apple-Mäuse von Haus aus mit 2 fehlenden Maustasten\n"
-"ausgeliefert werden. Hier einige Beispiele:\n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * \"Initrd\": Dieser Parameter kann entweder verwendet werden, um beim\n"
-"Betriebssystemstart bereits zusätzliche Kernel-Module zur Verfügung zu "
-"haben,\n"
-"ohne daß das Start-Gerät zur Verfügung steht oder um ein RamDisk-Abbild\n"
-"für den BS-Start in Notfällen zur Verfügung zu haben.\n"
-"\n"
-" * \"Initrd-size\": Standardmäßig ist eine RamDisk 4096 KBytes groß. Sollten "
-"Sie eine\n"
-"größere RamDisk benötigen, können Sie das mit diesem Parameter einstellen.\n"
-"\n"
-" * \"Read-write\": Normalerweise wird das Wurzelverzeichnis zuerst im\n"
-"Nur-Lese-Modus eingehängt, um eine Dateisystemcheck durchführen zu\n"
-"können, bevor das Betriebssystem seinen Dienst aufnimmt. Diesen Umstand\n"
-"können Sie hier abstellen.\n"
-"\n"
-" * \"NoVideo\": Sollte sich die Apple-Grafik-Hardware als extrem "
-"problematisch\n"
-"erweisen, können Sie diesen Parameter verwenden um im sog. \"novideo\"-"
-"Modus,\n"
-"also im FrameBuffer-Modus zu starten.\n"
+"Ich kann die Partitionstabelle von „%s“ nicht verstehen. Sie scheint \n"
+"fehlerhaft zu sein :-(\n"
+"Ich kann fortfahren, indem ich die fehlerhaften Partitionen lösche \n"
+"(dabei gehen ALLE darauf vorhandenen DATEN VERLOREN!). Alternativ können \n"
+"Sie mir jedoch auch verbieten, die Partitionstabelle zu verändern.\n"
+"(Folgender Fehler trat auf: „%s“).\n"
"\n"
-" * \"Default\": Wählt diesen Eintrag als Standard-Linux-Kernel, den Sie "
-"durch\n"
-"Drücken von Enter an der yaboot-Eingabeaufforderung gestartet bekommen.\n"
-"Wenn Sie die [Tab]-Taste an der Eingabeaufforderung drücken, erhalten Sie\n"
-"eine Liste der verfügbaren Alternativen. Der Standardeintrag wird mit einem\n"
-"Stern \"*\" markiert."
+"Sind Sie einverstanden, dass ich die problematischen Partitionen lösche?\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-"Der Drucker \"%s\" wurde erfogreich zu StarOffice/OpenOffice.org/GIMP "
-"hinzugefügt."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Kein Disketten-Laufwerk verfügbar!"
+"Sie können JFS nicht für Partitionen verwenden, die kleiner als 16MB sind!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-"Um alle existierenden Optionen des Druckers zu erfahren, lesen Sie entweder "
-"die unten angegebene Liste oder betätigen Sie die Schaltfläche \"Liste der "
-"Drucker-Optionen\". %s%s%s\n"
-"\n"
+"Sie können ReiserFS nicht für Partitionen verwenden, die kleiner als 32MB "
+"sind!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saudi Arabia"
-msgstr "Saudi Arabien"
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
+msgstr "Einhängpunkte müssen mit einem / beginnen."
-#: ../../services.pm:1
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "Internet"
-msgstr "Internet"
+msgid "There is already a partition with mount point %s\n"
+msgstr "Es gibt bereits eine Partition, mit dem Einhängpunkt %s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../fsedit.pm_.c:526
#, c-format
-msgid "Continue anyway?"
-msgstr "Wollen Sie trotzdem fortfahren?"
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr ""
+"Sie können kein logisches LVM Medium für den Einhängpunkt %s verwenden."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
+msgstr "Dieses Verzeichnis muss in der Verzeichnisbaumwurzel bleiben"
+
+#: ../../fsedit.pm_.c:530
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Falls Ihr Drucker nicht aufgeführt ist wählen Sie bitte ein kompatibles bzw "
-"ähnliches Modell (Für Einzelheiten schauen Sie bitte in Ihr Druckerhandbuch)."
+"Sie benötigen ein echtes GNU/Linux Dateisystem (Ext2/Ext3, ReiserFS, XFS "
+"oder JFS) für diesen Einhängpunkt.\n"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:532
#, c-format
-msgid "Printer"
-msgstr "Drucker"
+msgid "You can't use an encrypted file system for mount point %s"
+msgstr ""
+"Sie können kein verschlüsseltes Medium für den Einhängpunkt %s verwenden."
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices were added:\n"
-msgstr "Einige Geräte wurden hinzugefügt:\n"
+# ../../diskdrak1
+#: ../../fsedit.pm_.c:599
+msgid "Not enough free space for auto-allocating"
+msgstr "Nicht genug freier Platz, damit ich selbst Partition anlegen kann."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometrie: %s Zylinder, %s Köpfe, %s Sektoren\n"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
+msgstr "Nichts zu tun."
-#: ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:694
#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Drucken auf Drucker \"%s\""
+msgid "Error opening %s for writing: %s"
+msgstr "Fehler beim Öffnen von %s zum Schreiben: %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
msgstr ""
-"/etc/hosts.allow und /etc/hosts.deny sind bereits konfiguriert - keine "
-"Änderung"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Tape"
-msgstr "Von Band wiederherstellen"
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
+msgstr "Kein alternativer Treiber"
-#: ../../standalone/drakbug:1
+#: ../../harddrake/sound.pm_.c:171
#, 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's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
+"Es existiert kein alternativer OSS/ALSA Treiber für Ihre Soundkarte (%s), "
+"die momentan „%s“ verwendet."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the profile to configure"
-msgstr "Wählen Sie das Profil, dass eingestellt werden soll"
+#: ../../harddrake/sound.pm_.c:173
+msgid "Sound configuration"
+msgstr "Sound Konfiguration"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Password minimum length and number of digits and upcase letters"
-msgstr "Minimale Passwortlänge und die Anzahl der Ziffern und Buchstaben"
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
+msgstr ""
+"Hier können Sie einen alternativen Treiber (entweder OSS odr ALSA) für Ihre "
+"Soundkarte (%s) auswählen"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../harddrake/sound.pm_.c:176
#, c-format
msgid ""
"\n"
"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
"\n"
"\n"
-"Geben Sie einen Zeroconf-Rechnernamen ohne Punkte an,\n"
-"wenn Sie nicht die Vorgabe beibehalten wollen."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Jetzt Sicherung anhand der Konfigurationsdatei erstellen"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr ""
-"Einhängepunkte sollten nur Buchstaben, Ziffern und den Unterstrich "
-"unterhalten"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Drucksystem neu starten ..."
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr ""
+"Ihre Karte verwendet momentan den %s „%s“ Treiber (Voreinstellung für Ihre "
+"Karte ist „%s“)"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "Hardware-Informationen anzeigen"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
-msgstr "Tag"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr "Erster Sektor der Boot-Partition"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Druckerproduzent, Modell"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
-
-#: ../../standalone.pm:1
-#, 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)"
-msgstr ""
-"[OPTIONS]...\n"
-"Mandrake Terminal-Server-Konfigurator\n"
-"--enable : MTS einschalten\n"
-"--disable : MTS ausschalten\n"
-"--start : MTS starten\n"
-"--stop : MTS anhalten\n"
-"--adduser : einen existierenden Systemnutzer zu MTS hinzufügen "
-"(benötigt Nutzernamen)\n"
-"--deluser : einen existierenden Systemnutzer von MTS löschen "
-"(benötigt Nutzernamen)\n"
-"--addclient : einen Client zu MTS hinzufügen (benötigt MAC Adresse, IP, "
-"NBI Image Name)\n"
-"--delclient : einen Client von MTS löschen (benötigt MAC Adresse, IP, "
-"NBI Image Name)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Subnetzmaske:"
+#: ../../harddrake/sound.pm_.c:178
+msgid "Driver:"
+msgstr "Treiber:"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Set password expiration and account inactivation delays"
-msgstr ""
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+msgid "Help"
+msgstr "Hilfe"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Systemauslastung"
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
+msgstr "Hilfe zum Wechsel zwischen ALSA und OSS"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
+#: ../../harddrake/sound.pm_.c:186
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"
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"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."
+"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 ""
-"Die beiden kritischen Parameter sind die vertikale Wiederholfrequenz\n"
-"(wie oft der gesamte Bildschirm neu angezeigt wird) und insbesondere die\n"
-"horizontale Synchronisationsfrequenz (wie oft Scanlinien angezeigt werden).\n"
-"Es ist SEHR WICHTIG, dass Sie keinen Monitortyp mit einer falschen \n"
-"Synchronisationsrate auswählen, da Sie sonst Ihren Monitor beschädigen \n"
-"könnten. Im Zweifelsfall wählen Sie bitte eine konservativere \n"
-"Einstellung."
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
-msgstr "Ändern"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../harddrake/sound.pm_.c:202
#, c-format
msgid ""
+"The old \"%s\" driver is blacklisted.\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 ""
+"It has been reported to oopses the kernel on unloading.\n"
"\n"
-"Die Befehle \"%s\" und \"%s\" erlauben es Ihnen ebenfalls die Optionen eines "
-"speziellen Druckjobs zu konfigurieren. Fügen Sie einfach die gewünschten "
-"Einstellungen in der Kommandozeile ein, etwa \"%s <Datei>\".\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Brauche Rechnername, Benutzername und Passwort!"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Insert floppy"
-msgstr "Bitte Diskette einlegen"
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid ""
-"WebDAV is a protocol that allows you to mount a web server's directory\n"
-"locally, and treat it like a local filesystem (provided the web server is\n"
-"configured as a WebDAV server). If you would like to add WebDAV mount\n"
-"points, select \"New\"."
-msgstr ""
-"WebDAV ist ein Protokoll, dass es Ihnen erlaubt, Webserver-Verzeichnisse\n"
-"einzuhängen, sodass Sie diese wie bei lokalen Dateisystemen verwenden\n"
-"können (sofern der Webserver als WebDAV-Server eingerichtet wurde). \n"
-"Falls Sie Einhängepunkte für WebDAV hinzufügen wollen, wählen Sie\n"
-"\"Neu\"."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
-msgstr "Neu"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable syslog reports to console 12"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Wollen Sie es nochmal versuchen?"
-
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "Assistent"
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+msgid "Please Wait... Applying the configuration"
+msgstr "Einen Moment ... ich richte die Konfiguration ein"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected server"
-msgstr "Änderung des markierten Servers"
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "Bitte warten"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Bitte wählen Sie wohin Sie die Sicherungskopien machen wollen."
+#: ../../harddrake/sound.pm_.c:210
+msgid "No known driver"
+msgstr "Kein bekannter Treiber"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Sie müssen Ihren Rechner neu starten, um die Änderungen \n"
-"der Partitionstabelle wirksam werden zu lassen."
+msgid "There's no known driver for your sound card (%s)"
+msgstr "Es gibt keinen bekannten Treiber für Ihre Soundkarte (%s)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Die Browser-Caches nicht archivieren"
+#: ../../harddrake/sound.pm_.c:214
+msgid "Unkown driver"
+msgstr "Unbekannter Treiber"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, c-format
msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-"Es traten Fehler beim Prüfen des Dateisystems %s auf. Wollen Sie, dass ich "
-"versuche sie zu beheben? (Achtung: das kann zu Datenverlust führen)"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Bitte wählen Sie Ihren Tastaturtyp."
-
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "Standard"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Bitte wählen Sie Ihren Maustyp."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
-msgstr "Verbinde ..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Konnte Drucker \"%s\" nicht konfigurieren!"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "not configured"
-msgstr "Nicht eingerichtet"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "About"
-msgstr "Über"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "Proxies einstellen"
+"Der Treiber „%s“ für Ihre Karte ist nicht in der Treiberliste\n"
+"\n"
+"Bitte senden Sie die Ausgabe von „lspcidrake -v“ an \n"
+"<install(at)mandrakesoft.com>\n"
+"Mit der Bretreffzeile: unlisted sound driver „%s“"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Anfang: Sektor %s\n"
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+msgid "Auto-detect"
+msgstr "Autoerkennung"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Mask"
-msgstr "Keine Maske"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+msgid "Unknown|Generic"
+msgstr "Unbekannt|Generisch"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface already configured"
-msgstr "Ihr Netzwerk ist bereits konfiguriert"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Unbekannt|CPH05X (bt878) [Zahlreiche Hersteller]"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
-msgstr "Kein Diskettenzugriff möglich!"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Unbekannt|CPH06X (bt878) [Zahlreiche Hersteller]"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
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."
+"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 ""
+"Für die meisten modernen TV-Karten erkennt das bttv-Modul des Linux Kerns "
+"automatisch die richtigen Parameter.\n"
+"Falls Ihre Karte falsch erkannt wird, können Sie Tuner- und Kartentyp hier "
+"eintellen. Geben Sie einfach die benötigten Parameter an."
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Mail Server"
-msgstr "E-Mailserver"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "Bitte klicken Sie auf eine Partition"
+#: ../../harddrake/v4l.pm_.c:227
+msgid "Card model:"
+msgstr "Kartentyp:"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Multifunktionsgerät am HP JetDirect"
+#: ../../harddrake/v4l.pm_.c:228
+msgid "Tuner type:"
+msgstr "Tunertyp:"
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linux"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
+msgstr "Anzahl der Aufnahmepuffer:"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
-msgstr "Bis bald!"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "Anzahl der Puffer für MMAP Aufnahmen"
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
+#: ../../harddrake/v4l.pm_.c:231
+msgid "PLL setting:"
+msgstr "PLL-Einstellung:"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Upgrade %s"
-msgstr "Aktualisiere %s"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
+msgstr "Radiobetrieb:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Wählen Sie die Drucker-Anbindung"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
+msgstr "Radiobetrieb aktivieren"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
-msgstr "Sendersuche ..."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+"GNU/Linux ist ein Mehrbenutzer-System, das bedeutet konkret jedes\n"
+"Benutzerkennzeichen hat eigene Präferenzen (Grafische Umgebung,\n"
+"Programmeinstellungen, etc.), sowie ein eigenes Heim-Verzeichnis, in dem\n"
+"diese Einstellungen gespeichert werden. Falls Sie mehr wissen wollen,\n"
+"können Sie im „Benutzerhandbuch“ nachsehen. Sie können mehrere normale\n"
+"Benutzerkonten einrichten, im Gegensatz zum „privilegierten“ Kennzeichen:\n"
+"»root«, das einmalig ist. Im Gegensatz zu »root« können diese normalen\n"
+"Benutzer jedoch nur ihre eigenen Dateien und Konfigurationen verändern. Sie\n"
+"können sogar mehrere Benutzerkennzeichen pro Person einrichten, denen Sie\n"
+"Zugang zu Ihrem GNU/Linux-System gewähren wollen. Erstellen Sie sich ein\n"
+"eigenes Benutzerkennzeichen, auch wenn Sie der einzige Anwender sind, der\n"
+"diesen Rechner nutzt. Sie sollten nicht ständig mit dem privilegierten\n"
+"Kennzeichen arbeiten! Das ist ein hohes Sicherheitsrisiko! Wenn Sie einen\n"
+"schweren Fehler als einfacher Benutzer machen, dann können Sie maximal\n"
+"Daten verlieren, jedoch nicht Ihr gesamtes System unbrauchbar machen.\n"
+"\n"
+"Zuerst geben Sie bitte einen normalen Namen an. Das muss nicht\n"
+"notwendigerweise Ihr richtiger Name sein. „DrakX“ wird das erste Wort, das\n"
+"Sie eingegeben haben, in das Feld „Benutzerkennzeichen“ eintragen. Dies ist\n"
+"der Name, den Sie zum Anmelden für dieses Kennzeichen benötigen. Natürlich\n"
+"können Sie ihn hier nach Belieben verändern. Dann geben Sie Ihrem Konto ein\n"
+"Passwort. Für ein Benutzerkennzeichen ist dieses zwar nicht von so\n"
+"herausragender Bedeutung wie das für »root«, doch Sie sollten trotzdem\n"
+"etwas Sorgfalt walten lassen. Immerhin sind es Ihre Daten ...\n"
+"\n"
+"Klicken Sie auf „Benutzer akzeptieren“, um das Kennzeichen zu erstellen.\n"
+"Anschließend können Sie direkt weitere Benutzer hinzufügen. Wenn Sie alle\n"
+"Kennzeichen erstellt haben, klicken Sie auf „Fertig“.\n"
+"\n"
+"Durch Anwahl der Schaltfläche „Fortgeschritten“ haben Sie auch die\n"
+"Möglichkeit, die Standard-Shell dieses Benutzers ändern (normalerweise ist\n"
+"dies die „Bash“)."
-#: ../../standalone/drakbackup:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:48
msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/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 ""
-"Fehler bei der Übertragung via FTP.\n"
-" Bitte korrigieren Sie Ihre FTP-Konfiguration."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr "Anfang des IP-Bereichs:"
+"Sie erhalten die Liste, der auf Ihren Festplatten gefundenen GNU/Linux\n"
+"Partitionen. Sie können die Auswahl des Assistenten beibehalten - sie\n"
+"sollte normalerweise Ihren Bedürfnissen entsprechen. Falls Sie es vorziehen\n"
+"die Einhängpunkte selbst zu definieren, denken Sie bitte daran, dass Sie\n"
+"zumindest eine Verzeichnisbaumwurzel („/“ benötigen. Wählen Sie die\n"
+"Partitionen nicht zu klein, da Sie sonst nicht genügend Programme\n"
+"installieren können. Wenn Sie Ihre peröchen Daten auf einer eigenen\n"
+"Partition halten wollen, legen Sie sich eine Partition namens „/home“ an.\n"
+"\n"
+"Die Partitionen werden folgendermaßen aufgelistet: „Name“, „Kapazität“.\n"
+"\n"
+"„Name“ hat folgende Struktur: „Festplattentyp“, „Festplattennummer“,\n"
+"„Partitionsnummer“ (etwa „hda1“).\n"
+"\n"
+"„Hard drive type“ ist „„hd““, falls Ihre Platte eine IDE/ATAPI Platte ist\n"
+"und „„sd““, wenn es sich um eine SCSI Platte handelt.\n"
+"\n"
+"„Festplattennummer“ ist immer der Buchstabe hinter dem Festplattentyp. Bei\n"
+"IDE Platten bedeutet:\n"
+"\n"
+" * „„a““ bedeutet „Master Platte am primären IDE-Controller“;\n"
+"\n"
+" * „„b““ bedeutet „Slave Platte am primären IDE-Controller“;\n"
+"\n"
+" * „„c““ bedeutet „Master Platte am sekundären IDE-Controller“;\n"
+"\n"
+" * „„d““ bedeutet „Slave Platte am sekundären IDE-Controller“;\n"
+"\n"
+"Bei SCSI Platten steht „„a““ für „niedrigste SCSI ID“, „„b““ für\n"
+"„zweitniedrigste SCSI ID“, etc."
-#: ../../services.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:79
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."
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
-"Der Internet Superserver-Dienst (inetd) startet je nach Bedarf \n"
-"etliche andere Internet-Dienste, so etwa telnet, ftp, rsh oder \n"
-"rlogin. Dies jedoch nur, wenn die entsprechenden Dienste in der \n"
-"Datei \"/etc/inetd.conf\" freigeschaltet sind. \n"
-"Schalten Sie diesen Dienst ab, können Sie auf keine der von inetd \n"
-"verwalteten Dienste mehr zugreifen."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
-msgstr "Die Höhe des Fortschrittbalkens"
+"Da die Mandrake Linux-Distribution stetig wächst, wurde sie in mehrere\n"
+"CD-ROMs unterteilt. Es kann daher vorkommen, dass „DrakX“ Pakete von\n"
+"anderen, als der Installations-CD-ROM installieren will. In diesem Fall\n"
+"wird es die aktuelle CD-ROM auswerfen und nach einer anderen fragen."
-#: ../../standalone/drakbackup:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:84
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"
+"you are not supposed to know them all by heart.\n"
"\n"
-"- Save via %s on host: %s\n"
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
+"\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
+"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
+"\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
+"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
+"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
+"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
+"\n"
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
+"Nun ist es Zeit sich zu entscheiden, welche Programme Sie auf Ihrem Rechner\n"
+"installieren wollen. Es gibt tausende von Paketen für Mandrake Linux, und\n"
+"Sie müssen sie nicht alle auswendig kennen.\n"
"\n"
-"- via %s auf Rechner %s sichern\n"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "Argentinien"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Domain Name Server"
-msgstr "Domänen-Namenserver (DNS)"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Level:"
-msgstr "Sicherheitsebene:"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr "Einhängepunkte müssen mit einem / beginnen."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Bitte wählen Sie ihr CD/DVD-Gerät"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "CUPS server"
-msgstr "CUPS-Server"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Postfix E-Mail-Server"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "Beenden ohne speichern"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "Yemen"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
-msgstr "Sie erhalten das Produkt in unserem WebShop: MadrakeStore."
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Es gibt zahlreiche Auswahlmöglichkeiten von (%s).\n"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "GMT - DrakClock"
+"Wenn Sie eine klassische CD-ROM-Installation vornehmen, werden Sie zuerst\n"
+"nach den Ihnen zur Verfügung stehenden CDs gefragt (nur im Expertenmodus).\n"
+"Markieren Sie die Zeilen anhand der CDs die Sie vorliegen haben und klicken\n"
+"Sie auf die Schaltfläche „OK“.\n"
+"\n"
+"Die Pakete sind nach ihrer Verwendung in Gruppen eingeteilt. Diese Gruppen\n"
+"wiederum enthalten vier Abschnitte:\n"
+"\n"
+" * „Arbeitsplatzrechner“: Falls Ihr Rechner als Arbeitsplatzrechner\n"
+"verwendet werden soll, markieren Sie eine oder mehrere Gruppen.\n"
+"\n"
+" * „Entwicklungsplattform“: Falls Sie mit Ihrem Rechner programmieren\n"
+"wollen, sollten Sie diese Gruppe markieren.\n"
+"\n"
+" * „Server“: Wenn Ihre Maschine ein Server werden soll, können Sie hier die\n"
+"wichtigsten Dienste auswählen, die auf Ihren Rechner installiert werden\n"
+"sollen.\n"
+"\n"
+" * „Grafische Oberfläche“: Wählen Sie hier Ihre bevorzugte grafische\n"
+"Arbeitsoberfläche. Wenn Sie eine grafische Oberfläche verwenden wollen, so\n"
+"müssen Sie hier zumindest eine Gruppe auswählen.\n"
+"\n"
+"Wenn Sie die Maus über eine Gruppe bewegen, erhalten Sie einen kurzen\n"
+"erklärenden Text über die Gruppe. Falls Sie bei einer Installation alle\n"
+"Markierungen entfernen, erscheint ein Dialog, in dem Sie zwischen\n"
+"verschiedenen Minimalinstallationen wählen können:\n"
+"\n"
+" * „Mit X“ Installiert eine rudimentäre grafische Oberfläche;\n"
+"\n"
+" * „Mit minimaler Dokumentation“ Installiert das Basissystem zuzüglich\n"
+"grundlegender Werkzeuge inklusive deren Dokumentation. Dies ist die\n"
+"sinnvollste Wahl für eine Serverinstallation.\n"
+"\n"
+" * „Extrem minimale Installation“ Sie erhalten eine komplett „nackte“ 65MB\n"
+"große GNU/Linux-Distribution (speziell auch ohne urpmi!). Es versteht sich\n"
+"von selbst, dass das nur eine Kommandozeileninstallation sein kann.\n"
+"\n"
+"Wenn Sie die Schaltfläche „Fortgeschritten“ anwählen, erhalten Sie die\n"
+"Möglichkeit, eine „Individuelle Paketauswahl“ durchzuführen. Das macht nur\n"
+"Sinn, wenn Sie die Pakete genau kennen oder wenn Sie volle Kontrolle\n"
+"darüber haben wollen, was installiert werden soll.\n"
+"\n"
+"Haben Sie die Installation als „Aktualisierung“ gestartet, können Sie die\n"
+"Markierungen aller Gruppen entfernen, um die Installation neuer Pakete zu\n"
+"vermeiden. Hierdurch werden nur bereits installierte Pakete aktualisiert\n"
+"oder repariert."
-#: ../../../move/move.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:135
msgid ""
-"An error occurred:\n"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
+msgstr ""
+"Schlussendlich erhalten Sie (falls Sie sich für „Individuelle Paketauswahl“\n"
+"entschieden haben) eine Baumliste aller Pakete die zu den von Ihnen\n"
+"gewünschten Gruppen gehören. Diese Pakete sind nach Gruppen und\n"
+"Untergruppen klassifiziert. Beim Durchstöbern des Baums, können Sie\n"
+"Gruppen, Untergruppen oder einzelne Pakete markieren oder deren Markierung\n"
+"entfernen.\n"
"\n"
-"%s\n"
+"Sobald Sie ein Paket auswählen, erscheint rechts eine kurze Beschreibung.\n"
+"Sobald Sie die Auswahl abgeschlossen haben, bestätigen Sie das durch\n"
+"Drücken der Schaltfläche „Installation“. Nun beginnt die eigentliche\n"
+"Installation. Falls Sie eine Vielzahl von Paketen installieren wollen,\n"
+"können Sie nun getrost einen Kaffee trinken gehen.\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"
+"!! Es kommt vor, dass Server- und Dienst-Pakete angewählt wurden - entweder\n"
+"absichtlich, oder als Paket einer ganzen Gruppe; sollte das der Fall sein,\n"
+"werden Sie nun gefragt, ob Sie diese wirklich installiert haben wollen.\n"
+"Unter Mandrake Linux werden installierte Server und Dienste automatisch\n"
+"beim Betriebssystemstart gestartet. Selbst wenn zum Zeitpunkt, als die\n"
+"Distribution zusammengestellt wurde, keine Sicherheitslücken oder Fehler in\n"
+"diesen Paketen bekannt waren, ist natürlich nicht auszuschließen, dass\n"
+"später solche Fehler gefunden werden. Sollten Sie also nicht wissen, wovon\n"
+"hier die Rede ist, wählen Sie sicherheitshalber lieber „Nein“. Falls Sie\n"
+"mit „Ja“ antworten, werden die Dienste und Server installiert und stehen\n"
+"Ihnen nach der Installation standardmäßig zur Verfügung. !!\n"
"\n"
+"Die Option „Automatische Abhängigkeiten“ unterdrückt nur die Warnungen, die\n"
+"erscheinen, wenn das Installationsprogramm Pakete automatisch markiert, um\n"
+"Paketabhängigkeiten aufzulösen, wenn Sie ein Paket auswählen.\n"
"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "Festplatten suchen"
+"Das kleine Diskettensymbol am unteren Rand der Liste ermöglicht es Ihnen,\n"
+"die während einer vorangegangenen Installation gespeicherte Paketauswahl\n"
+"erneut zu verwenden. Durch Betätigen der Schaltfläche öffnen Sie einen\n"
+"Dialog, der Sie auffordert, die Diskette einzulegen, die die Auswahl der\n"
+"früheren Installation enthält. Um zu erfahren, wie Sie diese Diskette\n"
+"erstellen, lesen Sie bitte den zweiten Tipp des vorangegangenen\n"
+"Installationsschrittes."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:171
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-"Sie haben keine Paketgruppe ausgewählt.\n"
-"Bitte wählen Sie die minimale Installation, die Sie wünschen."
+"Wenn Sie Ihren Computer mit dem Internet oder mit einem lokalen Netzwerk\n"
+"verbinden wollen, dann wählen Sie bitte die entsprechende Option aus. Bitte\n"
+"schalten Sie jedoch zuvor, falls nötig, die dafür benötigten Geräte ein,\n"
+"damit „DrakX“ sie automatisch erkennen kann.\n"
+"\n"
+"Mandrake Linux bietet Ihnen die Möglichkeit, Ihre Internet-Verbindung\n"
+"bereits während der Installation zu konfigurieren. Zur Auswahl stehen\n"
+"folgende Verbindungsarten: Herkömmliches Modem, ISDN Modem, ADSL\n"
+"Verbindung, Kabelmodem oder eine einfache LAN Verbindung (Ethernet).\n"
+"\n"
+"Wir wollen hier nicht weiter ins Detail gehen, nur soviel: Stellen Sie\n"
+"sicher, dass Sie die nötigen Parameter von Ihrem Internet Provider oder\n"
+"Systemadministrator erhalten haben.\n"
+"\n"
+"Weitere Einzelheiten, die hier bereits hilfreich sein können, erhalten Sie\n"
+"im Kapitel DrakNet. Falls Sie unsicher sind, warten Sie ab, bis die\n"
+"Installation beendet ist und verwenden Sie danach das beschriebene\n"
+"Programm, um Ihre Verbindung einzurichten.\n"
+"\n"
+"Wenn Sie Ihr Netzwerk erst nach Abschluss der Installation einrichten\n"
+"wollen oder sobald Sie die Konfiguration beendet haben, klicken Sie auf\n"
+"„Abbrechen“."
-#: ../../network/adsl.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:193
msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-"Sie brauchen den Alcatel Microcode\n"
-"Sie können diesen jetzt von Diskette oder einer Windows Partition laden\n"
-"oder diesen Schritt überspringen und es später machen."
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "Bitte geben Sie die WebDAV-Server-URL an"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "Tadschikistan"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "Akzeptieren"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "Beschreibung"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter summary text."
+"You may now choose which services you wish to start at boot time.\n"
+"\n"
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
+"\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
+"Als nächstes können Sie die Dienste auswählen, die während des\n"
+"Betriebssystemstarts aktiviert werden sollen.\n"
+"\n"
+"Hier werden alle Dienste, die nach der aktuellen Installation zum BS-Start\n"
+"zur Verfügung stehen, angezeigt. Lesen Sie diese Liste sorgfältig durch und\n"
+"markieren Sie nur die Dienste, die Sie immer ab dem BS-Start zur Verfügung\n"
+"haben wollen.\n"
+"\n"
+"Wenn Sie einen Dienst anwählen, erhalten Sie eine kurze Erklärung dazu.\n"
+"Wenn Sie nicht sicher sind, ob ein Dienst bzw. Server sinnvoll ist oder\n"
+"nicht, verändern Sie am Besten die voreingestellten Markierungen nicht.\n"
+"\n"
+"!! Sollten Sie Ihren Rechner als Server verwenden wollen, so müssen Sie an\n"
+"dieser Stelle besonders vorsichtig sein: wählen Sie alle Dienste ab, die\n"
+"Sie nicht benötigen. Denken Sie daran, dass etliche Dienste eine\n"
+"potentielle Einbruchstelle in das System von außen darstellen, wenn diese\n"
+"im Serverbetrieb laufen. Also, nur die Dienste einschalten, die Sie\n"
+"wirklich brauchen! !!"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Fehler beim Öffnen von %s zum Schreiben: %s"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Maustyp: %s\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Ihre Grafikkarte kann mit XFree %s 3D-hardwarebeschleunigt werden."
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "Wählen Sie Ihren Monitor"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "Leere Einträge sind nicht erlaubt"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
-msgstr "Malta (GB)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "Ich kann keinen weiteren Partitionen hinzufügen"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "Größe in MB:"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "Entfernter Drucker"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
-msgstr "Bitte wählen Sie die zu verwendende Sprache."
-
-#: ../../network/network.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:210
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."
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
msgstr ""
-"WARNUNG: Dieses Gerät wurde bereits zum Herstellen einer Internetverbindung "
-"konfiguriert.\n"
-"Drücken Sie einfach \"OK\", um die Einstellungen zu behalten.\n"
-"Fall Sie Felder verändern, wird die Konfiguration überschrieben."
+"GNU/Linux arbeitet mit GMT (Greenwich Mean Time) und übersetzt diese anhand\n"
+"der Zeitzone in Ihre lokale Zeit.\n"
+"\n"
+"Da Microsoft Windows(TM) nicht sinnvoll mit GMT umgehen kann, müssen Sie\n"
+"„Nein“ wählen, falls Sie auch ein Betriebssystem aus dem Hause Microsoft\n"
+"auf Ihrem Rechner „beherbergen“\n"
+"\n"
+"Die Verwendung der Option „Automatische Zeit-Synchronisation“ reguliert\n"
+"Ihre Uhr, indem sie Verbindung mit einem Zeitserver im Internet aufnimmt.\n"
+"Wählen Sie aus der Liste einen Server in Ihrer Nähe. Damit die funktioniert\n"
+"benötigen Sie eine ständige Internetverbindung."
-#: ../../any.pm:1
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:224
+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.\n"
+"\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-"Ich kann Ihren Computer so einrichten, dass ein Benutzer automatisch "
-"angemeldet wird."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Floppy format"
-msgstr "Diskettenformat"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Generic Printers"
-msgstr "Generische Drucker"
+"X (das X Window System) ist das Herz der grafischen Benutzeroberfläche von\n"
+"GNU/Linux. Es bildet die Grundlage für die Vielzahl grafischer\n"
+"Benutzerumgebungen, die Mandrake Linux Ihnen anbietet (wie etwa KDE, GNOME,\n"
+"AfterStep oder WindowMaker). Auch hier wird „DrakX“ die Konfiguration\n"
+"soweit wie möglich selbstständig vollziehen.\n"
+"\n"
+"Sollten Sie nicht gerade sehr alte, sehr neue oder exotische Grafikhardware\n"
+"einsetzen, wird „DrakX“ die Konfiguration erfolgreich durchführen und\n"
+"anschließend die grafische Oberfläche mit der bestmöglichen Auflösung\n"
+"starten! Es erscheint ein Testfenster und Sie werden anschließend gefragt,\n"
+"ob die Anzeige einwandfrei war.\n"
+"\n"
+"Falls Sie eine „Experte“n-Installation vornehmen, werden Sie in den\n"
+"folgenden Schritten von dem „DrakX“-Konfigurationsassistenten begleitet.\n"
+"\n"
+"Falls das Bild korrekt dargestellt wird, wählen Sie bitte die Schaltfläche\n"
+"„Ja“ an, „DrakX“ wird dann mit dem nächsten Schritt der Installation\n"
+"fortfahren. Sollte der Schirm aus irgendwelchen Gründen nicht lesbar sein,\n"
+"müssen Sie nur 10 Sekunden warten. Anschließend sollte wieder das\n"
+"Konfigurationsmenü erscheinen."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:246
msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
msgstr ""
-"Bitte wählen Sie den Drucker, an den die Druckaufträge gehen sollen oder "
-"geben Sie einen Geräte- oder Dateinamen in der Eingabezeile an."
+"Nun werden Sie gefragt, ob Sie in die grafische Ungebug starten wollen.\n"
+"Es sei angemerkt, dass Sie das auch gefragt werden, wenn die Grafikkarte \n"
+"vorher nicht getestet wurde. Sie sollten mit „Nein“ anworten, falls Ihr\n"
+"Rechner als Server dienen sollte oder der Test der Grafikumgebung zu\n"
+"Problemen führte."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr "Die Scanner dieses Rechners sind für andere Rechner nutzbar"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of the root partition"
-msgstr "Erster Sektor der Root-Partition"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Alternative drivers"
-msgstr "Alternative Treiber"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:253
+msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
+msgstr ""
+"Die Mandrake Linux CD-ROM hat einen eingebauten Rettungsmo­dus. Sie\n"
+"erreichen ihn durch Starten von CD-ROM, und Drücken von »F1« bei\n"
+"Bootbeginn. Geben Sie dann »rescue« an der Eingabeaufforderung ein. Falls\n"
+"Ihr Rechner nicht von CD-ROM starten kann, sollten Sie diesen Punkt\n"
+"unbedingt aus zwei Gründen abarbeiten:\n"
+"\n"
+" * Wenn DrakX den Betriebssystemstarter installiert, schreibt es den\n"
+"Boot-Sektor (MBR) Ihrer primären Festplatte neu (außer Sie wollen einen\n"
+"anderen Betriebssystemstarter verwenden), damit Sie die verschiedenen,\n"
+"vorhandenen Betriebssysteme starten können (etwa Windows und GNU/Linux).\n"
+"Sollten Sie etwa Windows neu installieren, wird dieses - ohne Sie zu fragen\n"
+"- Ihren Boot-Sektor überschreiben. Somit werden Sie Ihr GNU/Linux nicht\n"
+"mehr starten können! Mit einer Startdiskette können Sie Ihr\n"
+"GNU/Linux-System dann trotzdem hochfahren und diese Änderungen rückgängig\n"
+"machen.\n"
+"\n"
+" * Sollten Ihnen andere schwerwiegende Systemfehler das Starten von\n"
+"GNU/Linux von der Festplatte unmöglich machen, ist diese Startdiskette so\n"
+"ziemlich die einzige Möglichkeit, auf Ihr System zuzugreifen. Zudem enthält\n"
+"sie eine Anzahl von Systemprogrammen, die Ihnen bei der Behebung von\n"
+"Systemfehlern (nach einem Stromausfall, einen unglücklichen Tippfehler in\n"
+"einem Passwort, etc.) helfen werden.\n"
+"\n"
+"Wenn Sie diesen Schritt anwählen, wird „DrakX“ Sie bitten, eine Diskette in\n"
+"ein Laufwerk zu legen. Die Diskette sollte natürlich leer sein (zumindest\n"
+"keine relevanten Daten enthalten). Sie muss nicht formatiert sein, „DrakX“\n"
+"kümmert sich um alles."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:277
+msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-"Please check all options that you need.\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
+"\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
msgstr ""
+"Sie müssen nun entscheiden, wo auf Ihrer/n Festplatte(n) Ihr Mandrake Linux\n"
+"System installiert werden soll. Sofern alles leer ist bzw. ein\n"
+"Betriebssystem alles belegt, müssen die Platte(n) neu partitioniert werden.\n"
+"Prinzipiell besteht das Partitionieren der Platte(n) darin, den\n"
+"Plattenplatz so aufzuteilen, dass Ihr Mandrake Linux darauf installiert\n"
+"werden kann.\n"
"\n"
-"Bitte wählen Sie alle benötigten Parameter.\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Init-RamDisk"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
-msgstr "Kap Verde"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "Angabe, ob der Prozessor den Cyrix 6x86 Coma-Fehler aufweist."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr "Lade Drucker-Einstellungen...bitte warten"
+"Da dieser Schritt normalerweise irreversibel ist, kann das Partitionieren\n"
+"für unerfahrene Anwender unangenehm und stressig sein. Dieser Assistent\n"
+"kann Ihnen diesen Schritt abnehmen. Lesen Sie dennoch vor Beginn im\n"
+"Handbuch die entsprechenden Passagen und lassen Sie sich Zeit mit der\n"
+"Entscheidung.\n"
+"\n"
+"Wenn Sie die Installation im Expertenmodus durchführen, werden Sie nun das\n"
+"Mandrake Linux Partitionier-Werkzeug kennen lernen: „DiskDrake“. Es erlaubt\n"
+"Ihnen Ihre Partitionen genau auf Ihre Bedürfnisse abzustimmen. Falls Sie\n"
+"keine Ahnung haben, wie Sie die Festplatte partitionieren sollen, wählen\n"
+"Sie die Schaltfläche „Assistent“ und überlassen diesem damit die gesamte\n"
+"Arbeit.\n"
+"\n"
+"Sollten Sie bereits Partitionen haben (etwa von einer alten GNU/Linux\n"
+"Installation oder solche, die mit einem anderen Partitionierungswerkzeug\n"
+"erstellt wurden), die Sie für die Installation von Mandrake Linux verwenden\n"
+"wollen, wählen Sie diese hier einfach aus.\n"
+"\n"
+"Falls noch keine Partitionen existieren, müssen Sie sie erstellen.\n"
+"Verwenden Sie dafür obigen Assistenten. Abhängig vom aktuellen Zustand\n"
+"Ihrer Platte(n) haben Sie verschiedene Alternativen:\n"
+"\n"
+" * „Freien Platz verwenden“: Dies führt einfach dazu, dass Ihre leere(n)\n"
+"Festplatte(n) automatisch partitioniert werden; Sie müssen sich also um\n"
+"nichts weiter kümmern.(*)\n"
+"\n"
+" * „Verwende existierende“: Der Assistent hat eine oder mehrere\n"
+"existierende Linux Partitionen auf Ihrer Platte gefunden. Wählen Sie diese\n"
+"Schaltfläche, falls Sie sie behalten wollen. Sie werden dann gebeten, die\n"
+"Einhängpunkte der Partitionen anzugeben. Als Vorgabe erhalten Sie die\n"
+"Einhängpunkte der gefundenen Distribution, normalerweise ist es nicht nötig\n"
+"diese zu ändern.\n"
+"\n"
+" * „Freien Platz der Windows Partition verwenden“: Falls der gesamte\n"
+"Plattenplatz aktuell für Microsoft Windows(TM) verschwendet ist, müssen Sie\n"
+"für Linux Platz schaffen. Um dies zu erreichen, können Sie entweder Ihre\n"
+"Microsoft Windows(TM) Partition(en) samt Daten löschen (siehe „Komplette\n"
+"Platte löschen“ oder „Experten-Modus“) oder Ihre Windows Partition\n"
+"verkleinern. Letzteres geht ohne Datenverlust. Sie sollten diese Variante\n"
+"wählen, falls Sie beide Betriebssysteme (Windows und Mandrake Linux)\n"
+"nebeneinander nutzen wollen.\n"
+"\n"
+" Bevor Sie sich für diese Variante entscheiden, sei hier noch einmal\n"
+"betont, dass das bedeutet, Sie haben weniger Platz für Windows als\n"
+"momentan.\n"
+"\n"
+" * „Komplette Platte löschen“: Falls Sie alle Daten Ihrer Platte verlieren,\n"
+"und sie durch Ihr neues Mandrake Linux System ersetzen wollen, wählen Sie\n"
+"diese Schaltfläche. Beachten Sie, dass dieser Schritt nicht rückgängig\n"
+"gemacht werden kann.\n"
+"\n"
+" !! Wenn Sie diese Variante wählen, werden alle Ihre Daten auf der Platte\n"
+"gelöscht! !!\n"
+"\n"
+" * „Windows(TM) löschen“: Bei dieser Variante werden alle Windows\n"
+"Partitionen gelöscht und die Platte(n) komplett neu partitioniert.\n"
+"\n"
+" !! Wenn Sie diese Variante wählen, werden alle Ihre Daten auf der Platte\n"
+"gelöscht! !!\n"
+"\n"
+" * „Expertenmodus“: Wenn Sie Ihre Festplatte selber von Hand partitionieren\n"
+"wollen, dann können Sie diese Option wählen. Seien Sie bitte sehr\n"
+"sorgfältig, wenn Sie diese Lösung wählen, da Sie zwar alle möglichen\n"
+"Einstellungen vornehmen, aber gleichzeitig auch sehr leicht Daten verlieren\n"
+"können. Diese Option ist nur geeignet, wenn Sie wissen, was Sie tun. Um zu\n"
+"erfahren, wie Sie DiskDrake verwenden können, lesen Sie bitte das Kapitel\n"
+"„Managing Your Partitions“ im „„User Guide““\n"
+"\n"
+"(*) In Deutschland ist es quasi unmöglich, Komplettrechner mit leeren\n"
+"Festplatten zu erhalten, da laut Gesetz nur Rechner mit BS verkauft werden\n"
+"dürfen. Diese Regelung stammt noch aus der Zeit, als Politiker nur\n"
+"proprietäre kommerzielle BSe kannten und sich nicht vorstellen konnten,\n"
+"dass es freie und sogar kostenlose Alternativen gibt. Jeder Käufer eines\n"
+"Komplettrechners ohne BS wurde quasi mit einem Raubkopierer von Produkten\n"
+"aus Redmond gleichgesetzt."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:347
+msgid ""
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-"frühe Pentium waren fehleranfällig und stürzten beim dekodieren des F00F "
-"Bytecodes ab"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr "Guam"
+"Nun ist es soweit, die Installation ist abgeschlossen und Ihr neues\n"
+"Betriebssystem sollte einsatzbereit sein. Bei einem Neustart können Sie\n"
+"zwischen den auf Ihrer Platte installierten Betriebssystemen auswählen.\n"
+"Klicken Sie nur noch auf „OK“ und das System wird neu gestartet.\n"
+"\n"
+"Die Schaltfläche „Fortgeschritten“ liefert zwei weitere Schaltflächen:\n"
+"\n"
+" * „Erstellen einer Auto-Installationsdiskette“: Hiermit können Sie eine\n"
+"Installationsdiskette erstellen, mit deren Hilfe Sie eine identische\n"
+"automatische Installation ohne Interaktion eines Administrators\n"
+"durchzuführen können.\n"
+"\n"
+" Es gibt zwei verschiedene Alternativen, nachdem Sie diese Schaltfläche\n"
+"aktiviert haben:\n"
+"\n"
+" * „Erneut abspielen“: Diese Installation ist nur teilweise automatisch,\n"
+"da der Partitionierungsschritt (aber nur dieser!) immer noch interaktiv\n"
+"vonstatten geht.\n"
+"\n"
+" * „Automatisiert“: Vollautomatische Installation: Die Festplatte wird\n"
+"vollständig reorganisiert. Alle darauf vorhandenen Daten gehen verloren!\n"
+"\n"
+" Diese Funktion ist besonders nützlich, wenn man eine Menge von\n"
+"identischer Rechner einrichten will. Weitere Informationen erhalten Sie\n"
+"auch auf der Seite Auto install\n"
+"\n"
+" * „Paketauswahl speichern“: (*) Sie speichern damit die Paketauswahl, die\n"
+"Sie vorher getroffen haben. Wenn Sie später eine erneute Installation\n"
+"vornehmen wollen, legen Sie einfach die Diskette ins Laufwerk und starten\n"
+"Sie die Installation mittels [F1] an der ersten Eingabeaufforderung. Geben\n"
+"Sie dann »linux defcfg=\"floppy\"« ein.\n"
+"\n"
+"(*) Sie benötigen eine FAT formatierte Diskette (Mittels „mformat a:“\n"
+"können Sie unter GNU/Linux eine solche erstellen)."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:378
msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-"Bitte wählen Sie den Anschluss, an dem der Drucker hängt oder geben Sie "
-"einen Geräte- oder Dateinamen in der Eingabezeile an."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/Optionen/Test"
+"Alle Partitionen, die gerade neu erzeugt wurden, müssen formatiert werden\n"
+"(d.h. es muss ein Dateisystem auf der Partition erstellt werden), bevor sie\n"
+"verwendet werden können.\n"
+"\n"
+"Sie erhalten hier auch die Möglichkeit bereits existierende Partitionen neu\n"
+"zu formatieren, um die darauf vorhandenen Daten zu löschen. Markieren Sie\n"
+"diese einfach ebenfalls in der Liste.\n"
+"\n"
+"Es sei angemerkt, dass nicht alle Partitionen neu formatiert werden müssen.\n"
+"Sie sollten normalerweise nur die Partitionen neu formatieren, die\n"
+"Systemdaten, jedoch keine Privatdaten enthalten (etwa „/“, „/usr“ oder\n"
+"„/var“). Partitionen wie etwa „/home“ sollten Sie normalerweise nicht neu\n"
+"formatieren.\n"
+"\n"
+"Seien Sie sorgfältig bei der Auswahl der Partitionen. Nach dem formatieren\n"
+"sind alle zuvor darauf existierenden Daten unwiederbringlich verloren.\n"
+"\n"
+"Wenn Sie alle Einstellungen vorgenommen haben, betätigen Sie die\n"
+"Schaltfläche „OK“, um mit dem Formatieren dere Partitionen zu beginnen.\n"
+"\n"
+"Betätigen Sie „Abbruch“, wenn Sie eine andere Partition für Ihr neues\n"
+"Mandrake Linux vorgesehen haben.\n"
+"\n"
+"Betätigen Sie die Schaltfläche „Fortgeschritten“, falls Sie Partitionen auf\n"
+"defekte Blöcke untersuchen wollen."
-#: ../../security/level.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:404
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."
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
+"\n"
+"Please be patient."
msgstr ""
-"Diese Ebene ist mit Vorsicht zu verwenden. Zwar macht sie Ihr System \n"
-"einfacher handhabbar, aber auch leichter angreifbar: In dieser Form darf \n"
-"der Rechner nicht als Netzwerkrechner (LAN oder Modem) verwendet werden, \n"
-"da Angreifer mangels Passwort an Ihre Daten gelangen können!"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mounting partition %s"
-msgstr "Partition \"%s\" einhängen"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "Benutzername"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Userdrake"
-msgstr "UserDrake"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Auf welche Partition wollen Sie Linux4Win installieren?"
-
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "due to missing %s"
-msgstr "Ich kann \"kdesu\" nicht finden!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Test pages"
-msgstr "Testseiten"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Logical volume name "
-msgstr "Logischer Dateisystemname"
+"Ihr neues Mandrake Linux System wird nun installiert. Abhängig von der\n"
+"Anzahl Pakete und der Geschwindigkeit Ihres Rechners kann dies zwischen\n"
+"einigen Minuten und mehreren Stunden dauern.\n"
+"\n"
+"Haben Sie noch etwas Gerduld."
-#: ../../standalone/drakbackup:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:412
msgid ""
-"List of data to restore:\n"
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-"Liste der wiederherzustellenden Daten:\n"
+"Es ist sehr wahrscheinlich, dass zum Zeitpunkt Ihrer Mandrake Linux\n"
+"Installation bereits einige Pakete aktualisiert wurden, etwa da noch Fehler\n"
+"entdeckt und beseitigt wurden oder da in Paketen Sicherheitslücken entdeckt\n"
+"wurden, für die bereits Lösungen existieren. Um von diesen aktualisierten\n"
+"Paketen Gebrauch zu machen, wird Ihnen nun angeboten, diese aus dem\n"
+"Internet nachzuladen. Betätigen Sie die Schaltfläche „Ja“, wenn Sie einen\n"
+"Internetzugang haben, um die Pakete zu installieren, andernfalls betätigen\n"
+"Sie die Schaltfläche „Nein“. Sie können diese Pakete natürlich auch\n"
+"jederzeit nach der Installation noch installieren.\n"
"\n"
+"Betätigen der Schaltfläche „Ja“ zeigt Ihnen eine Liste von Servern, von\n"
+"denen Sie die Aktualisierungen herunterladen können. Wählen Sie einen in\n"
+"Ihrer Nähe. Sie erhalten dann einen Paketauswahldialog: Kontrollieren Sie\n"
+"die Auswahl und bestätigen Sie diese durch Betätigen von „Installieren“.\n"
+"Die Pakete werden nun angefordert und installiert. Sollten Sie das nicht\n"
+"wünschen, betätigen Sie einfach die Schaltfläche „Abbruch“."
-#: ../../fs.pm:1
-#, c-format
-msgid "Checking %s"
-msgstr "Überprüfung von %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "Optionen für TCP/Socket-Drucker"
-
-# Speicher ?
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Karten Mem (DMA)"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Vom Internet trennen"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "Frankreich"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
-msgstr "durchsuchen"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
-msgstr "Suche nach installierter Software..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Der Name des Netzwerkdruckers fehlt!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Wollen Sie Drucker im lokalen Netzwerk zum Drucken konfigurieren?\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "Türkei"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch USB"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Number of buttons"
-msgstr "Anzahl Tasten"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnam QWERTY (\"number row\")"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Module"
-msgstr "Modul"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:425
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
msgstr ""
-"Warteschlangen, die nicht mit diesem Programm oder \"foomatic-configure\" "
-"erstellt wurden, können nicht übertragen werden."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
-msgstr "Hardware"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Strg und Alt gleichzeitig"
+"Lesen Sie bitte aufmerksam die die Lizenz, bevor Sie fortfahren. Sie\n"
+"umfasst die gesamte Mandrake Linux Distribution. Sollten Sie nicht in allen\n"
+"Punkten zustimmen, betätigen Sie bitte die Schaltfläche „Zurückweisen“, um\n"
+"die Installation abzubrechen. Um mit der Installation fortzufahren\n"
+"betätigen Sie die Schaltfläche „Akzeptieren“."
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "Vereinigte Staaten von Amerika"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "User umask"
-msgstr "User umask"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "Standard-BS?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "Schweiz (deutsches Layout)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Alle Karten getrennt konfigurieren"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:432
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\"."
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
msgstr ""
-"Bitte wählen Sie den Drucker, den Sie einrichten wollen. Die Einrichtung "
-"wird vollautomatisch erfolgen. Sollte Ihr Drucker nicht richtig erkannt "
-"worden sein oder wollen Sie die Einrichtung selbst vornehmen, wählen Sie "
-"\"Manuelle Konfiguration\"."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "NTP-Server"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Sulogin(8) in single user level"
-msgstr "Superuser(8) anmelden in Einzel User runlevel"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Load/Save on floppy"
-msgstr "Laden von/Speichern auf Diskette"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
-msgstr "Dieses Design hat noch keinen Bootsplash in %s!"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "angenehm"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Abbruch in %d Sekunden"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Bitte wählen Sie den seriellen Anschluss, an dem Ihr Modem hängt."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Property"
-msgstr "Eigenschaft"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr "LAN-Konfiguration"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "Ghana"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
-msgstr "Pfad oder Modul benötigt"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Advanced Options"
-msgstr "Erweiterte Einstellungen"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Configuration"
-msgstr "Einstellung anschauen"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
-msgstr "Coma-Fehler"
+"Nun ist es an der Zeit, die gewünschte Sicherheitsebene für Ihr System\n"
+"festzulegen. Als Faustregel sollte hier dienen: Je zugänglicher die\n"
+"Maschine ist und je kritischer die auf ihr gesicherten Daten sind, desto\n"
+"höher sollte die Sicherheitsebene sein. Andererseits geht die gewonnene\n"
+"Sicherheit zulasten der Benutzerfreundlichkeit und Einfachheit, mit der\n"
+"gewisse Befehle/Abläufe durchgeführt werden können. Ausführlichere\n"
+"Erläuterungen zu den verschiedenen Sicherheitsebenen erhalten Sie im\n"
+"Kapitel MSEC des „Referenzhandbuchs“.\n"
+"\n"
+"Sollten Sie sich an dieser Stelle nicht sicher sein, so behalten Sie die\n"
+"Standardeinstellung bei."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:442
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"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -5324,2121 +3617,1555 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"Sie müssen nun entscheiden, auf welche(n) Partition(en) Ihr neues Mandrake\n"
-"Linux-System installiert werden soll. Falls bereits Partitionen existieren\n"
+"Sie müssen nun entscheiden auf welche(n) Partition(en) Ihr neues Mandrake\n"
+"Linux System installiert werden soll. Falls bereits Partitionen existieren\n"
"(etwa von einer früheren Installation von GNU/Linux oder durch das Erzeugen\n"
"mit einem anderen Partitionierungswerkzeug), können Sie diese verwenden.\n"
"Anderenfalls müssen Sie Partitionen definieren.\n"
"\n"
"Um Partitionen zu erzeugen müssen Sie erst eine Festplatte wählen. Sie\n"
-"können die Platte wählen in dem Sie \"hda\" für die erste IDE-Platte "
-"wählen,\n"
-"\"sda\" für die erste SCSI-Platte, usw.\n"
+"können die Platte wählen in dem Sie „hda“ für die erste IDE-Platte wählen,\n"
+"„sda“ für die erste SCSI-Platte, usw.\n"
"\n"
"Um die gewählte Platte zu partitionieren stehen folgende Möglichkeiten zur\n"
"Verfügung:\n"
"\n"
-" * \"%s\": Betätigen dieser Schaltfläche löscht alle Partitionen auf der\n"
-"markierten Festplatte.\n"
+" * „Alles löschen“: Betätigen dieser Schaltfläche löscht alle Partitionen\n"
+"auf der markierten Festplatte.\n"
"\n"
-" * \"%s\": Dieser Punkt aktiviert die automatische ext3- und\n"
-"Swap-Partitionen-Erstellung im ungenutzten Bereich Ihrer Festplatte.\n"
+" * „Automatisches Erstellen“: Diese Schaltfläche erstellt automatisch ext3-\n"
+"und Swap-Partitionen im ungenutzten Bereich Ihrer Festplatte.\n"
"\n"
-"\"%s\": bietet Zugriff auf weitere Möglichkeiten:\n"
+"„Mehr“: bietet weitere Möglichkeiten:\n"
"\n"
-" * \"%s\": Falls Sie Ihre aktuelle Partitionstabelle auf Diskette speichern\n"
-"wollen, falls Sie sie später wiederherstellen wollen, können Sie das mit\n"
-"Hilfe dieser Schaltfläche tun.\n"
+" * „Partitionstabelle schreiben“: Falls Sie Ihre aktuelle Partitionstabelle\n"
+"auf Diskette speichern wollen, falls Sie sie später wiederherstellen\n"
+"wollen, können Sie das mit Hilfe dieser Schaltfläche tun.\n"
"\n"
-" * \"%s\": Mit dieser Schaltfläche können Sie eine vorher auf Diskette\n"
-"gesicherte Partitionstabelle wieder herstellen.\n"
+" * „Partitionstabelle wiederherstellen“: Mit dieser Schaltfläche können Sie\n"
+"eine vorher auf Diskette gesicherte Partitionstabelle wieder herstellen.\n"
"\n"
-" * \"%s\": Sollte Ihre Partitionstabelle zerstört worden sein, können Sie\n"
-"versuchen, mit dieser Schaltfläche eine Restaurierung vorzunehmen. Seien\n"
-"Sie vorsichtig! Es ist nicht unwahrscheinlich, dass dieser Versuch fehl\n"
-"schlägt.\n"
+" * „Partitionstabelle retten“: Sollte Ihre Partitionstabelle zerstört\n"
+"worden sein, können Sie versuchen, mit dieser Schaltfläche eine\n"
+"Restaurierung vorzunehmen. Seien Sie vorsichtig! es ist nicht\n"
+"unwahrscheinlich, dass dieser Versuch fehl schlägt.\n"
"\n"
-" * \"%s\": Alle Änderungen verwerfen und mit der ursprünglichen\n"
-"Partitionstabelle neu beginnen.\n"
+" * „Partitionstabelle neu laden“: Alle Änderungen verwerfen und mit der\n"
+"ursprünglichen Partitionstabelle neu beginnen.\n"
"\n"
-" * \"%s\": Entfernen dieser Markierung führt dazu, dass die Anwender\n"
-"hinterher die Wechselmedien manuell ein- und aushängen müssen.\n"
+" * „Wechselmedien automatisch Einhängen“: Entfernen dieser Markierung führt\n"
+"dazu, dass die Anwender hinterher die Wechselmedien manuell ein- und\n"
+"aushängen müssen.\n"
"\n"
-" * \"%s\": Falls Sie keine Ahnung haben wie Sie die Festplatte "
-"partitionieren\n"
-"sollen, wählen Sie diese Schaltfläche. Sie überlassen damit die gesamte\n"
-"Arbeit unserem Assistenten.\n"
+" * „Assistent“: Falls Sie keine Ahnung haben wie Sie die Festplatte\n"
+"partitionieren sollen, wählen Sie diese Schaltfläche. Sie überlassen damit\n"
+"die gesamte Arbeit unserem Assistenten, der mittels „Abra Kadabra“(TM) Ihre\n"
+"Platte partitioniert.\n"
"\n"
-" * \"%s\": Mit dieser Schaltfläche können Sie alle Einstellungen rückgängig\n"
-"machen.\n"
+" * „Rückgängig“: Mit dieser Schaltfläche können Sie alle Einstellungen\n"
+"rückgängig machen.\n"
"\n"
-" * \"%s\": Anbieten bzw. Maskieren von Zusatzmöglichkeiten.\n"
+" * „In den Experten-/ Normal-Modus wechseln“: Anbieten bzw. Maskieren von\n"
+"Zusatzmöglichkeiten.\n"
"\n"
-" * \"%s\": Nachdem Sie das Partitionieren Ihrer Festplatte beendet haben,\n"
+" * „Fertig“: Nachdem Sie das Partitionieren Ihrer Festplatte beendet haben,\n"
"aktivieren Sie diese Schaltfläche, um Ihre Änderungen zu speichern.\n"
"\n"
-"Wenn Sie die Größe einer Partition festlegen wollen, können Sie die\n"
-"Feineinstellungen mit den Rechts- / Links-Pfeiltasten Ihrer Tastatur\n"
-"vornehmen.\n"
-"\n"
-"Information: Sie können alle Einstellungen per Tastatur vornehmen. Mittels\n"
-"[Tab] und den Hoch-/Runter Pfeiltasten bewegen.\n"
+"Information: Sie können alle Einstellungen per Tastatur vornehmen. Sie\n"
+"können sich mittels [Tab] und den Pfeiltasten bewegen.\n"
"\n"
"Wenn eine Partition ausgewählt ist, können Sie mittels:\n"
"\n"
-" * Ctrl-C - eine neue Partition erstellen (wenn Sie auf einer leeren\n"
+" * Ctrl- C - eine neue Partition erstellen (wenn Sie auf einer leeren\n"
"Partition sind)\n"
"\n"
-" * Ctrl-D - die Partition löschen\n"
+" * Ctrl- D - die Partition löschen\n"
"\n"
-" * Ctrl-M - den Einhängepunkt festlegen.\n"
+" * Ctrl- M - dem Einhängpunkt festlegen.\n"
"\n"
"Um mehr Informationen über die verschiedenen Dateisystemtypen zu erhalten,\n"
-"lesen Sie bitte das Kapitel ext2FS in der \"Referenz\".\n"
+"lesen Sie bitte das Kapitel ext2FS in der „Reference Manual“.\n"
"\n"
"Falls Sie die Installation auf einem PPC-Rechner vornehmen, sollten Sie\n"
"eine mindestens 1MB, große HFS Start-Partition für den\n"
"Betriebssystemstarter yaboot erstellen. Wenn Sie diese Partition etwas\n"
"größer dimensionieren, etwa 50MB, haben Sie einen geeigneten Platz, um\n"
-"einen Rettungskernel samt RamDisk abzulegen, und diesen in Notfällen zu\n"
-"starten."
+"einen Rettungskern samt RamDisk abzulegen, um in Notfällen starten zu\n"
+"können."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:513
msgid ""
-"Graphic Card\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-" 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"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\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 ""
-"Grafikkarte\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-" DrakX erkennt normalerweise automatisch Ihre Grafikkarte und richtet sie\n"
-"entsprechend ein. Sollten dabei Probleme auftreten, können Sie in der hier\n"
-"aufgeführten Liste Ihr Modell auswählen.\n"
+"\"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"
-" Falls für Ihre Karte verschiedene Server zur Verfügung stehen, etwa mit\n"
-"und ohne 3D-Beschleunigung, werden Sie gebeten, den zu wählen, der Ihren\n"
-"Bedürfnissen am besten entspricht."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Bei der Installation der Pakete trat ein Fehler auf:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Lexmark-Tintenstrahl-Konfiguration"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "Rückgängig"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Save partition table"
-msgstr "Partitionstabelle schreiben"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "Finnland"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "Mazedonien"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
-msgstr ""
-"Das Teilen zwischen Benutzern verwendet die Gruppe \"fileshare\".\n"
-"Sie können UserDrake verwenden, um Benutzer in diese Gruppe aufzunehmen."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "Slowenien"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Authorize:\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-"- only local ones if set to \"LOCAL\"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
-"- none if set to \"NONE\".\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr "Lybien"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Konfiguriere Skripte, installiere Software, starte Dienste..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Drucker an Parallelport #%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- Burn to CD"
-msgstr ""
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
"\n"
-"- Auf CD brennen"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "Tabelle"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
msgstr ""
-"Ich bin nicht in der Lage, %s mit einem Dateisystem vom Typ %s zu "
-"formatieren."
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Model"
-msgstr "Modell"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "USB printer #%s"
-msgstr "USB-Drucker #%s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Stop Server"
-msgstr "Server stoppen"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
+"Es wurde mehr als eine Windows Partition gefunden. Wählen Sie bitte, welche\n"
+"sie verleinern wollen, um Platz für Ihr neues Mandrake Linux zu schaffen.\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
+"Die Partitionen werden folgendermaßen aufgelistet: „Linux Name“, „Windows\n"
+"Name“, „Kapazität“.\n"
"\n"
-"Wählen Sie sich\n"
-"das Aussehen von\n"
-"LILO und dem\n"
-"Bootsplash.\n"
-"Sie können\n"
-"unterschiedliche\n"
-"Varianten wählen."
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Modem"
-msgstr "Modem"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr "Tuvalu"
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr "Autoerkennung benutzen"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
-msgstr ""
-"Der GPM-Dienst stellt Ihnen eine Mausunterstützung in textbasierten Linux-\n"
-"Programmen, wie dem Midnight Commander, zur Verfügung. Es erlaubt\n"
-"auch mausbasierte Ausschneiden-und-Einfügen-Operationen auf der\n"
-"Konsole und unterstützt Pop-Up-Menüs auf der Konsole."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr "Beim Hochfahren gestartet"
-
-#: ../advertising/12-mdkexpert.pl:1
-#, fuzzy, 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:"
-msgstr ""
-"Treten Sie in das MandrakeSoft Unterstützer Team und die Linux Gemeinschaft "
-"ein , um Ihr Wissen zu teilen und anderen zu helfen, indem Sie ein "
-"anerkannter Experte auf der Online technischer Support Seite werden."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "No password aging for"
-msgstr "Kein Passwort Ablaufdatum für"
-
-#: ../../standalone/draksec:1
-#, 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"
-msgstr ""
-"Die folgenden Optionen können verwendet werden, um Ihre Systemsicherheit\n"
-"anzupassen. Wenn Sie eine Erklärung brauchen, verwenden Sie den Hilfe "
-"Tooltip\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Automatische Suche nutzbarer Drucker auf anderen Rechnern"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr "Ost Timor"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
-msgstr "auf Bandlaufwerk (Streamer)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"„Linux Name“ hat folgende Struktur: „Festplattentyp“, „Festplattennummer“,\n"
+"„Partitionsnummer“ (etwa „hda1“).\n"
"\n"
-"- Save to Tape on device: %s"
-msgstr ""
+"„Hard drive type“ ist „„hd““, falls Ihre Platte eine IDE/ATAPI Platte ist\n"
+"und „„sd““, wenn es sich um eine SCSI Platte handelt.\n"
"\n"
-"- Auf Band an Gerät %s sichern"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Login name"
-msgstr "Benutzername"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
-msgstr "Dateien ohne Eigentümer melden"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr "Profil löschen..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Installiere das Paket Foomatic ..."
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Bitte melden Sie sich ab und drücken Sie Ctrl-Alt-Rücktaste"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected"
-msgstr "gefunden"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "Das Netzwerk muss neu gestartet werden. Soll ich es neu starten?"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package: "
-msgstr "Paket:"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr "Ich kann \"/etc/sysconfig/bootsplash\" nicht anlegen."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "SICHERHEITSWARNUNG!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
-msgstr "Nein, ich will kein Autologin"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Windows-Migrationswerkzeug"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr "Alle Sprachen"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "Entferne %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s nicht gefunden...\n"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Testing your connection..."
-msgstr "Ich teste gerade Ihre Verbindung..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cache size"
-msgstr "Cachegröße"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Passwortabfragen sind nun eingeschaltet, aber die Verwendung als \n"
-"Netzwerkrechner kann hier nicht empfohlen werden."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr "Anfangssektor: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr "Kongo (Brazzaville)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Read"
-msgstr "Lesen"
+"„Festplattennummer“ ist immer der Buchstabe hinter dem Festplattentyp. Bei\n"
+"IDE Platten bedeutet:\n"
+"\n"
+" * „„a““ bedeutet „Master Platte am primären IDE-Controller“;\n"
+"\n"
+" * „„b““ bedeutet „Slave Platte am primären IDE-Controller“;\n"
+"\n"
+" * „„c““ bedeutet „Master Platte am sekundären IDE-Controller“;\n"
+"\n"
+" * „„d““ bedeutet „Slave Platte am sekundären IDE-Controller“;\n"
+"\n"
+"Bei SCSI Platten steht „„a““ für „niedrigste SCSI ID“, „„b““ für\n"
+"„zweitniedrigste SCSI ID“, etc.\n"
+"\n"
+"„Windows Name“ ist der Buchstabe, den die Partition unter Windows erhalten\n"
+"würde (die erste Partition der ersten Platte heißt „„C:““)."
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Das Paket %s muss installiert sein. Soll ich es installieren?"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
+msgstr "Haben Sie bitte etwas Geduld. Diese Aktion kann einige Minuten dauern."
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
-msgstr "Seychellen"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:547
+msgid ""
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
+"\n"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
+"\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
+"\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
+"\n"
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
+"\n"
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
+"\n"
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
+"\n"
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
+msgstr ""
+"„DrakX“ fragt Sie nun nach der gewünschten Installationsart. Sie haben die\n"
+"Wahl zwischen einer Standardinstallation („Empfehlenswert“) und einer\n"
+"Variante, in der Sie mehr Einfluss ausüben können („Experte“). Sie müssen\n"
+"sich nun auch entscheiden, ob Sie eine Installation oder eine\n"
+"Aktualisierung einer bereits vorhandenen Mandrake Linux-Version vornehmen\n"
+"wollen. Es ist möglich, die Installation über ein existierendes BS zu\n"
+"installieren und dieses damit zu entfernen. Sie können auch eine\n"
+"Aktualisierung vornehmen, um eine existierende Installation zu reparieren.\n"
+"Wählen Sie:\n"
+"\n"
+" * „Installieren“: Entfernt komplett ältere Versionen von Mandrake Linux,\n"
+"die noch installiert sind - um genau zu sein können Sie je nach aktuellem\n"
+"Inhalt Ihrer Platte auch einige ältere Linux- oder anderweitige Partitionen\n"
+"unangetastet behalten.\n"
+"\n"
+" * „Aktualisieren“: Mit dieser Variante können Sie eine existierende\n"
+"Mandrake Linux Version aktualisieren. Die Partitionstabellen sowie die\n"
+"persönlichen Verzeichnisse der Anwender bleiben erhalten. Alle anderen\n"
+"Installationsschritte werden wie bei einer Installation ausgeführt.\n"
+"\n"
+" * „Nur Pakete aktualisieren“: In dieser Variante werden alle Schritte der\n"
+"Installation, bis auf die Auswahl der zu installierenden Pakete,\n"
+"übersprungen.\n"
+"\n"
+"Aktualisierungen von Mandrake Linux „8.1“ oder aktuelleren Systemen sollten\n"
+"problemlos funktionieren.\n"
+"\n"
+"Je nachdem, wie viel Erfahrung Sie mit GNU/Linux haben, können Sie sich für\n"
+"eine der folgenden Installations- oder Aktualisierungsarten für Ihr\n"
+"Mandrake Linux System entscheiden:\n"
+"\n"
+" * Empfehlenswert: Falls Sie noch nie ein GNU/Linux Betriebssystem\n"
+"installiert haben. Die Installation wird sehr einfach sein und es werden\n"
+"Ihnen nur sehr wenige Fragen gestellt werden.\n"
+"\n"
+" * Experte: Wenn Sie den Umgang mit GNU/Linux „im Schlaf“ beherrschen und\n"
+"hochgranulare Wahlmöglichkeiten wünschen, ist dies Ihre\n"
+"Installationsmethode. Wie bei der benutzerdefinierten Installation können\n"
+"Sie die hauptsächliche Verwendung festlegen: „Arbeitsplatzrechner“,\n"
+"„Entwicklungsplattform“ oder „Server“. Seien Sie sehr vorsichtig, wenn Sie\n"
+"sich für diese Installationsklasse entscheiden. Die Antworten auf einige\n"
+"Fragen können sehr schwierig sein und Auswirkungen auf Sicherheit und\n"
+"Stabilität Ihrer Distribution haben. Wählen Sie diese Installationsklasse\n"
+"also wirklich nur wenn Sie wissen, was Sie tun!\n"
+"\n"
+"Dieses Handbuch wird sich auf die Installationsart „Experte“ konzentrieren.\n"
+"Sollten Sie sich stattdessen für die Klasse „Empfehlenswert“ entscheiden,\n"
+"überlesen Sie bitte einfach die Abschnitte, die für Sie nicht zutreffen."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:582
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"
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
-"For your printer Printerdrake has found:\n"
+"Click on the \"More\" button to be presented with the complete list of\n"
+"supported keyboards.\n"
"\n"
-"%s"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
msgstr ""
-"PrinterDrake hat den Modellnamen der Selbsterkennung mit den Modellen in der "
-"Datenbank verglichen, um den besten Treiber zu finden. Die Auswahl kann "
-"jedoch falsch sein, etwa wenn Ihr Drucker nicht in der Datenbank vorhanden "
-"ist. Kontrollieren Sie, ob die Wahl korrekt ist und wählen Sie die "
-"Schaltfläche \"Das Modell ist richtig\", wenn der Treiber Ihren Wünschen "
-"entspricht, andernfalls betägen Sie \"Modell manuell auswählen\", um die "
-"Auswahl selbst vorzunehmen.\n"
+"„DrakX“ wird aufgrund Ihrer Sprachauswahl das für Sie passende\n"
+"Tastaturlayout bereits ausgewählt haben, Sie sollten diesen Schritt\n"
+"eigentlich nicht einmal angezeigt bekommen. Doch vielleicht sind Sie mit\n"
+"dieser Auswahl nicht zufrieden (wenn Sie beispielsweise eine vom Layout\n"
+"abweichende Sprache bevorzugen). Dann gehen Sie zu diesem\n"
+"Konfigurationsschritt zurück und wählen Sie ein passendes Layout aus der\n"
+"Liste.\n"
"\n"
-"Folgender Drucker wurde gefunden:\n"
+"Sollten Sie eine andere als die zur gewählten Sprache gehörende Tastatur\n"
+"verwenden wollen, wählen Sie die Schaltfläche „Mehr“. Sie erhalten dann\n"
+"eine Liste aller unterstützten Tastaturen.\n"
"\n"
-"%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Bad password on %s"
-msgstr "Falsches Passwort auf %s"
+"Sollten Sie sich für ein Tastaturlayout einer nicht lateinischen Sprache\n"
+"entschieden haben, werden Sie im nächsten Schritt gefragt, mit welcher\n"
+"Tastenkombination Sie zwischen dem von Ihnen gewählten und dem lateinischen\n"
+"Layout umschalten wollen."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:598
msgid ""
+"The first step is to choose your preferred language.\n"
"\n"
-"There is one unknown printer directly connected to your system"
+"Please choose your preferred language for installation and system usage.\n"
+"\n"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
+"\n"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
+"Als ersten Schritt, wählen Sie bitte die gewünschte Sprache.\n"
"\n"
-"Ich konnte einen unbekannten Drucker direkt an Ihrem Rechner finden."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Control key"
-msgstr "Rechte STRG-Taste"
+"Wählen Sie Ihre bevorzugte Sprache für den Installationsvorgang und\n"
+"Systemlaufzeit.\n"
+"\n"
+"Durch Betätigen der Schaltfläche „Fortgeschritten“ erhalten Sie die\n"
+"Möglichkeit, weitere Sprachen auf Ihrem Rechner zu installieren, um diese\n"
+"später verwenden zu können. Wollen Sie etwa Spaniern muttersprachlichen\n"
+"Zugang zu Ihrem System erlauben, wählen Sie deutsch als Hauptsprache in der\n"
+"Liste und im Fortgeschrittenen-Bereich „Spanish|Spain“.\n"
+"\n"
+"Haben Sie eine Sprache markiert und die Wahl mit „OK“ bestätigt, gelangen\n"
+"Sie automatisch zum nächsten Schritt."
-#: ../../network/tools.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:617
msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"Legen Sie eine FAT-formatierte Diskette in Laufwerk %s mit %s im "
-"Wurzelverzeichnis ein und drücken %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "Sambia"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr "Sicherheitsadministrator (Benutzername oder E-Mail)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr "Tja, wir unterstützen nur 2.4-Kernel."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr "Rumänien (QWERTY)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
-msgstr "In Entwicklung, haben Sie noch etwas Geduld ..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "Ägypten"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "Tschechische Republik"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "Soundkarte"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Import Fonts"
-msgstr "Schriftarten einbinden"
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
+"\n"
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
+"\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
+msgstr ""
+"„DrakX“ versucht normalerweise die Anzahl Tasten Ihrer Maus zu erkennen.\n"
+"Sollte das nicht möglich sein, so behandelt es Ihre Maus als\n"
+"Zwei-Tasten-Maus und emuliert die mittlere Taste. Es erkennt üblicherweise\n"
+"korrekt, ob es sich um eine serielle, eine PS/2- oder um eine USB-Maus\n"
+"handelt.\n"
+"\n"
+"Sollte dies nicht Ihren Vorstellungen entsprechen: Wählen Sie einfach Ihren\n"
+"Maustyp aus der Liste, die Ihnen angezeigt wird.\n"
+"\n"
+"Anschließend können Sie die Funktionstüchtigkeit Ihrer Maus überprüfen.\n"
+"Verwenden Sie auch die Knöpfe und gegebenenfalls das Mausrad, um\n"
+"sicherzustellen, dass die festgelegten Einstellungen funktionieren. Falls\n"
+"nicht, drücken Sie die [Leertaste] oder die Eingabetaste, um die\n"
+"Schaltfläche „Abbrechen“ zu betätigen und wählen Sie einen anderen Treiber\n"
+"aus.\n"
+"\n"
+"Es kommt vor, dass Mäuse mit Rädern nicht korrekt erkannt werden. Wählen\n"
+"Sie in diesem Fall die richtige Maus aus der vorgegebenen Liste. Stellen\n"
+"Sie sicher, dass Sie auch den Anschluss richtig angegeben haben. Nach\n"
+"betätigen der Schaltfläche „OK“, wird Ihnen ein Bild der gewählten Maus\n"
+"gezeigt. Bewegen Sie Räder und Tasten, um sicherzustellen, dass die Maus\n"
+"richtig erkannt wurde."
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:638
msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"Sie haben nur eine große FAT-Partition \n"
-"(diese enthält häufig nur Microsoft DOS/Windows).\n"
-"Ich rate Ihnen, diese Partition erst zu verkleinern\n"
-"(Wählen Sie sie an und drücken Sie dann \"Größe verändern\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Temporäre Dateien löschen"
+"Wählen Sie bitte den richtigen Anschluss. So ist etwa der unter Windows\n"
+"„COM1“ genannte Anschluss in GNU/Linux unter „ttyS0“ erreichbar."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:642
+msgid ""
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
"\n"
-msgstr ""
-"Herzlichen Glückwunsch, die Netzwerk-/Internet-Einrichtung ist beendet.\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
"\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "Partitionstyp ändern"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
+"\n"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
+"\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
+"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
+msgstr ""
+"Sie können nun das »root« Passwort für Ihr Mandrake Linux System eingeben.\n"
+"Das Passwort muss zweimal eingegeben werden, um sicher zu stellen, dass Sie\n"
+"es korrekt eingegeben haben.\n"
+"\n"
+"»root« ist das Benutzerkennzeichen des Systemadministrators. Er ist der\n"
+"einzige der berechtigt ist, neue Software zu installieren, Systemdateien zu\n"
+"ändern oder neue Benutzerkennzeichen anzulegen. Kurz gesagt: »root« darf\n"
+"alles! Wählen Sie deshalb das Passwort sehr sorgfältig aus! Unberechtigter\n"
+"Zugang zu diesem Kennzeichen ist extrem gefährlich für die Integrität Ihres\n"
+"Systems und der darauf enthaltenen Daten. Daher müssen Sie auch ein\n"
+"Passwort auswählen, was nicht leicht zu erraten ist; „DrakX“ teilt Ihnen\n"
+"mit, wenn das Passwort zu einfach ist. Sie sehen, dass es auch möglich ist,\n"
+"kein Passwort zu vergeben. Wir raten Ihnen jedoch dringend davon ab!\n"
+"Glauben Sie nicht, dass nur, weil Sie GNU/Linux geladen haben, Ihre anderen\n"
+"Betriebssysteme vor Fehlern sicher sind. »root« hat keine Beschränkungen.\n"
+"Er könnte beispielsweise unbeabsichtigterweise alle Daten auf allen\n"
+"Partitionen löschen, weil er unvorsichtigerweise auf die Partitionen selber\n"
+"zugegriffen hat!\n"
+"\n"
+"Das Passwort sollte eine Mischung aus alphanumerischen Zeichen sein und\n"
+"mindestens 8 Zeichen lang. Es sollte niemals irgendwo aufgeschrieben\n"
+"werden.\n"
+"\n"
+"Machen Sie das Passwort aber nicht zu lang oder zu kompliziert: Sie sollten\n"
+"es sich ohne großen Aufwand merken können.\n"
+"\n"
+"Sie müssen das Passwort zweimal eingeben - ein Tippfehler beim ersten\n"
+"Versuch könnte sonst zu einem Problem werden, da Sie anschließend das\n"
+"„falsche“ Passwort bei der Verbindung mit dem System eingeben müssten.\n"
+"\n"
+"Im Expertenmodus werden Ihnen zusätzliche Optionen zur Verfügung gestellt.\n"
+"Diese hängen davon ab, ob Sie mit sich mit einem Authentifizierungsserver\n"
+"verbinden wollen oder nicht.\n"
+"\n"
+"Falls in Ihrem Netzwerk LDAP, NIS oder PDC zur Authentifizierung verwendet\n"
+"wird, wählen Sie bitte den entsprechenden Menüpunkt. Falls Sie nicht\n"
+"wissen, welches Protokoll Sie verwenden, fragen Sie Ihren\n"
+"Netzwerkadministrator.\n"
+"\n"
+"Falls Ihr Rechner nicht an einem administrierten Netzwerk hängt, wählen Sie\n"
+"bitte „Lokale Dateien“ zur Authentifizierung."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:678
msgid ""
-"Resolution\n"
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
+"OS;\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."
+" * if a grub or LILO boot sector is found, it will replace it with a new\n"
+"one.\n"
+"\n"
+"if in doubt, DrakX will display a dialog with various options.\n"
+"\n"
+" * \"Bootloader to use\": you have three choices:\n"
+"\n"
+" * \"GRUB\": if you prefer grub (text menu);\n"
+"\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\n"
+"\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
+"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
+"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
+"\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\n"
+"\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
msgstr ""
-"Auflösung\n"
+"LILO und grub sind Betriebssystemstarter für GNU/Linux. Diese\n"
+"Installationsphase läuft in den meisten Fällen völlig automatisch ab. DrakX\n"
+"analysiert den Bootsektor und ergreift dann die passenden Maßnahmen:\n"
"\n"
-" Sie können hier Auflösung und Farbtiefe für Ihre Hardware wählen.\n"
-"Entscheiden Sie sich, welche Variante Ihren Wünschen am ehesten entspricht\n"
-"(Sie können diese Angaben natürlich nach der Installation noch ändern). Sie\n"
-"können sich einen Eindruck anhand des abgebildeten Monitors bilden."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Network Options"
-msgstr "Netzwerkoptionen"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Enable msec hourly security check"
-msgstr "Aktiviere msec stündlichen Sicherheits Check"
+" * Findet DrakX einen Windows-Bootsektor, ersetzt es ihn durch einen grub\n"
+"oder LILO-Bootsektor. Sie erhalten dadurch die Möglichkeit, beim\n"
+"Systemstart zwischen Windows (bzw. anderen Betriebssystemen, sofern\n"
+"vorhanden) und Windows auszuwählen;\n"
+"\n"
+" * Findet DrakX einen Linux-Bootsektor vor, ersetzt es ihn durch einen\n"
+"neuen;\n"
+"\n"
+"Im Zweifelsfall bietet DrakX Ihnen einen Dialog mit verschiedenen\n"
+"Auswahlmöglichkeiten.\n"
+"\n"
+" * „Zu verwendender Betriebssystemstarter“: Hier erhalten Sie drei\n"
+"Alternativen:\n"
+"\n"
+" * „Grub“: Falls Sie grub (Textmenü) bevorzugen.\n"
+"\n"
+" * „LILO mit grafischem Menü“: Falls Sie LILO mit seiner grafischen\n"
+"Oberfläche bevorzugen.\n"
+"\n"
+" * „LILO mit Textmenü“: Falls Sie LILO mit Textmenü als Ihren Favoriten\n"
+"ansehen.\n"
+"\n"
+" * „Boot Gerät“: Normalerweise müssen Sie hier nichts ändern („/dev/hda“),\n"
+"Sie könnten jedoch den Starter auch auf der zweiten Platte installieren,\n"
+"(„/dev/hdb“) oder sogar auf einer Diskette („/dev/fd0“).\n"
+"\n"
+" * „Wartezeit vorm Starten des Standard Betriebssystems“: Wenn Sie Ihren\n"
+"Rechner neu starten erhalten Sie im Menü der zur Verfügung stehenden BSe\n"
+"eine gewisse Zeit um auszuwählen, was Sie starten möchten. Sollten Sie\n"
+"während dieser Zeit keine Wahl getroffen haben, wird Ihr Standard-BS\n"
+"gestartet.\n"
+"\n"
+"!! Machen Sie sich klar, dass Sie sich selbst darum kümmern müssen,\n"
+"irgendwie Ihr Mandrake Linux-System zu starten, wenn Sie hier keinen\n"
+"Betriebssystemstarter installieren (durch Auswahl von „Abbruch“). Stellen\n"
+"Sie auch sicher, dass Sie wissen was Sie tun, wenn Sie hier Einstellungen\n"
+"verändern ... !!\n"
+"\n"
+"Durch wählen der Schaltfläche „Fortgeschritten“ erhalten Sie etliche\n"
+"Optionen, die dem fortgeschrittenen Anwender vorbehalten bleiben."
-#: ../../standalone/drakboot:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:718
msgid ""
-"Display theme\n"
-"under console"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"Design in der\n"
-"Konsole anzeigen"
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr "(an %s)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "MM Serie"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr "Eine Bibliothek, die gegen sog. \"buffer overflow\"-Angriffe schützt."
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr "Durchschnitt"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "New printer name"
-msgstr "Neuer Druckername"
+"Nachdem Sie die allgemeinen BS-Startetr Parameter eingestellt haben,\n"
+"bekommen Sie die Liste möglicher Betriebssystemalternativen für das\n"
+"Startmenü gezeigt.\n"
+"\n"
+"Sollte sich auf Ihrem Rechner bereits ein anderes Betriebssystem befinden,\n"
+"so wird dieses - sofern es erkannt wird - automatisch zu dem Startmenü\n"
+"hinzugefügt. Hier können Sie noch einige Feineinstellungen für die\n"
+"bestehenden Optionen vornehmen. Markieren Sie einen bestehenden Eintrag und\n"
+"betätigen Sie die Schaltfläche „Ändern“, um ihn anzupassen oder zu löschen;\n"
+"„Hinzufügen“ erzeugt einen neuen Eintrag und „Fertig“ bringt Sie zum\n"
+"nächsten Installationsschritt.\n"
+"\n"
+"Möglicherweise wollen Sie auch nicht, dass andere Anwender Zugiff auf die\n"
+"übrigen installierten Betriebssysteme bekommen. In diesem Fall können Sie\n"
+"die jeweiligen Einträge entfernen, Sie müssen jedoch selbst für\n"
+"Startdisketten sorgen, um diese Syteme erreichen zu können!"
-#: ../../fs.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:732
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 )."
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\n"
+"\n"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
msgstr ""
+"\"Sie müssen nun entscheiden, wo die Informationen zum Starten Ihrer\n"
+"GNU/Linux Distribution erstellt werden sollen.\n"
+"\n"
+"Sofern Sie nicht genau wissen, was sie machen sollen, wählen Sie „Erster\n"
+"Sektor der Platte (MBR)“."
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr "Äquatorial-Guinea"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup System"
-msgstr "System sichern"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Build Backup"
-msgstr "Sicherung erstellen"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:739
+msgid ""
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
+"\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
+"\n"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
msgstr ""
-"Verwenden Sie einen der Befehle \"%s <Datei>\" oder \"%s <Datei>\", um die "
-"Datei <Datei> in der Kommandozeile auszudrucken.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Im Moment ist keine alternative Möglichkeit verfügbar."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwertz)"
-msgstr "Rumänien (QWERTZ)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Write Config"
-msgstr "Konfiguration speichern"
+"Hier können Sie das Drucksystem für Ihren Rechner wählen. Andere\n"
+"Betriebssysteme bieten Ihnen nur eines, bei Mandrake Linux können Sie\n"
+"zwischen drei verschiedenen wählen.\n"
+"\n"
+" * „pdq“ - Es steht für „print, don't queue“ (engl. für „Drucken ohne\n"
+"Warteschlange“). Falls Sie einen Drucker haben, der direkt an Ihrem Rechner\n"
+"hängt und Sie keine Netzwerkdrucker verwenden wollen, ist dies das\n"
+"Drucksystem Ihrer Wahl. Es kann zwar auch mit Netzwerkdruckern umgehen, ist\n"
+"dabei aber extrem langsam. Wählen Sie „pdq“, wenn Sie ein GNU/Linux Neuling\n"
+"sind. Sie können diese Wahl später immer wieder ändern, indem Sie\n"
+"PrinterDrake im Mandrake Kontrollzentrum starten und dort die Schaltfläche\n"
+"„>Expertenmodus“ betätigen.\n"
+"\n"
+" * „CUPS“ - Mit dem „Common Unix Printing System“ (engl. für „Allgemeines\n"
+"Unix-Drucksystem“) können Sie ebenso gut um auf Ihrem direkt\n"
+"angeschlossenen Drucker drucken, wie auf einem Drucker, der an einem Server\n"
+"auf der anderen Seite der Welt hängt. Es ist einfach zu bedienen und kann\n"
+"sowohl als Server als auch als Klient für das alte „LPD“-Drucksystem\n"
+"verwendet werden - Es ist somit rückwärtskompatibel. Es ist sehr mächtig,\n"
+"in seiner Grundeinstellung verhält es sich jedoch genau wie „pdq“. Wenn Sie\n"
+"einen „LPD“ Server benötigen, müssen Sie einfach nur den „cups-lpd“ Dämon\n"
+"starten. CUPS bietet grafische Konfigurations- und Druckmenüs.\n"
+"\n"
+" * „lprNG“ - „line printer daemon New Generation“ (engl. für\n"
+"„Zeilendrucker-Dämon - Neue Generation“). Dieses System bietet etwa das\n"
+"gleiche, was die beiden vorherigen können, es erlaubt Ihnen jedoch auch auf\n"
+"Drucker in Novell Netzwerken zuzugreifen, da es das IPX Protokoll\n"
+"beherrscht. Falls Sie das benötigen, verwenden Sie „lprNG“. Andernfalls ist\n"
+"„CUPS“ vorzuziehen, da es benutzerfreundlicher ist und in\n"
+"Nicht-IPX-Netzwerken besser funktioniert."
-#: ../../services.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:759
msgid ""
-"The routed daemon allows for automatic IP router table updated via\n"
-"the RIP protocol. While RIP is widely used on small networks, more complex\n"
-"routing protocols are needed for complex networks."
-msgstr ""
-"Der Dienst routed ermöglicht ein automatisches Aktualisieren der \n"
-"IP-Routing-Tabellen mittels RIP-Protokoll. Zwar wird RIP in kleinen \n"
-"Netzwerken verwendet, jedoch wird für komplexere Netzwerke ein \n"
-"anderer Dienst benötigt."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr "Kiribati"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech Maus (Seriell, alter C7 Typ) mit Mausrad Emulation"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr ""
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"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 does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
+"\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
+msgstr ""
+"„DrakX“ versucht nun alle IDE Festplatten Ihres Systems zu finden. Unter\n"
+"Anderem sucht „DrakX“ auch nach PCISCSI-Karten, die es kennt, um sie\n"
+"automatisch mit dem richtigen Treiber einzubinden.\n"
+"\n"
+"Falls Sie über keinen SCSI Adapter verfügen, es sich um einen ISASCSI\n"
+"Adapter handelt oder um einen PCISCSI Adapter, bei dem „DrakX“ nicht weiß,\n"
+"welcher Treiber funktioniert, werden Sie gebeten, „DrakX“ zu helfen.\n"
+"\n"
+"Ist in Ihrem Rechner kein SCSI Adapter, wählen Sie einfach „Nein“. Sollten\n"
+"Sie Sich für „Ja“ entscheiden, erscheint eine Liste, aus der Sie Ihren\n"
+"Adapter auswählen können.\n"
+"\n"
+"Mussten Sie den Adapter aus der Liste wählen, fragt „DrakX“ Sie, ob Sie dem\n"
+"Modul Optionen übergeben wollen. Sie können „DrakX“ ruhig erlauben, erst\n"
+"einmal selbst zu versuchen, diese herauszufinden. In den meisten Fällen\n"
+"funktioniert das.\n"
+"\n"
+"Falls nicht, müssen Sie die Optionen angeben. Schauen Sie im\n"
+"„Installationshandbuch“, wie Sie diese Informationen erhalten können: etwa\n"
+"unter Windows (sofern das auf Ihren Rechner installiert ist), aus den\n"
+"Handbüchern, die sie mit dem Adapter erhalten haben oder von den Web-Seiten\n"
+"des Hardware-Anbieters (sofern Sie einen WWW-Zugang haben)."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:781
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"
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
"\n"
-"You will be presented with a list of different parameters to change to get\n"
-"an optimal graphical display: Graphic Card\n"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\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"
+"For Linux, there are a few possible options:\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"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
"\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
"\n"
-"Monitor\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
"\n"
-" 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"
+" 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"
-"Resolution\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
"\n"
-" 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"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
"\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support;\n"
"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
+msgstr ""
+"Sie können weitere yaboot Einträge angeben, etwa für andere\n"
+"Betriebssysteme, alternative Kerne oder ein Rettungssystem.\n"
"\n"
-"Test\n"
+"Für ein anderes BS können Sie nur einen Namen und die Start-Partition\n"
+"angeben.\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"
+"Für Linux gibt es einige Parameter:\n"
"\n"
+" * „Identifikator“: Es handelt sich um den Namen, den Sie an der yaboot\n"
+"Eingabeaufforderung angeben müssen, um diese Alternative zu wählen.\n"
"\n"
+" * „Kern“: Der Name des BS-Kerns, den sie starten wollen. Normalerweise\n"
+"handelt es sich um „vmlinuz“ oder eine Variante von „vmlinuz“ mit einer\n"
+"Versionsnummer.\n"
"\n"
-"Options\n"
+" * „Verzeichnisbaumwurzel“: Die Verzeichnisbaumwurzel „„/““ Ihrer Linux\n"
+"Installation.\n"
"\n"
-" Here you can choose whether you want to have your machine automatically\n"
-"switch to a graphical interface at boot. Obviously, you want to check\n"
-"\"%s\" if your machine is to act as a server, or if you were not successful\n"
-"in getting the display configured."
-msgstr ""
-"X (das X Window System) ist das Herz der grafischen Benutzeroberfläche von\n"
-"GNU/Linux. Es bildet die Grundlage für die Vielzahl grafischer\n"
-"Benutzerumgebungen, die Mandrake Linux Ihnen anbietet (KDE, GNOME,\n"
-"AfterStep oder WindowMaker). Auch hier wird \"DrakX\" die Konfiguration\n"
-"soweit wie möglich selbstständig vollziehen.\n"
+" * „Übergeben“: Auf Apple Hardware, wird die Übergabemöglichkeit weiterer\n"
+"Kernparameter häufig verwendet, um die Grafikausgabe richtig zu\n"
+"konfigurieren oder die Tastaturemulation der Mausknöpfe einzuschalten, da\n"
+"klassische Apple-Mäuse von Hause aus mit 2 fehlenden Maustasten\n"
+"ausgeliefert werden. Hier einige Beispiele:\n"
"\n"
-"Sie erhalten eine Liste möglicher Parameter, mit deren Hilfe Sie die\n"
-"Grafikausgabe ändern können:\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"hda=autotune\n"
"\n"
-"Grafikkarte\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
-" DrakX erkennt normalerweise automatisch Ihre Grafikkarte und richtet sie\n"
-"entsprechend ein. Sollten dabei Probleme auftreten, können Sie in der hier\n"
-"aufgeführten Liste Ihr Modell auswählen.\n"
+" * „Init-RamDisk“: Dieser Parameter kann entweder verwendet werden, um beim\n"
+"Betriebssystemstart bereits zusätzliche Kern-Module zur Verfügung zu haben,\n"
+"ohne dass das Start-Gerät zur Verfügung steht oder um ein RamDisk Abbild\n"
+"für den BS-Start in Notfällen zur Verfügung zu haben.\n"
"\n"
-" Falls für Ihre Karte verschiedene Server zur Verfügung stehen, etwa mit\n"
-"und ohne 3D-Beschleunigung, werden Sie gebeten, den zu wählen, der Ihren\n"
-"Bedürfnissen am besten entspricht.\n"
+" * „Größe der Init-RamDisk“: Standardmäßig ist eine RamDisk 4096 Bytes\n"
+"groß. Sollten Sie eine größere RamDisk benötigen, können Sie das mit diesem\n"
+"Parameter einstellen.\n"
"\n"
+" * „Schreiben/Lesen“: Normalerweise wird die Verzeichnisbaumwurzel zuerst\n"
+"im Nur-Lese-Modus eingehängt, um eine Dateisystem Verifikation durchführen\n"
+"zu können, bevor das Betriebssystem seinen Dienst aufnimmt. Diesen Umstand\n"
+"können Sie hier abstellen.\n"
"\n"
+" * „NoVideo“: Sollte sich die Apple Grafik-Hardware als extrem\n"
+"problematisch erweisen, können Sie diesen Parameter verwenden um im sog.\n"
+"„novideo“-Modus, also im FrameBuffer-Modus zu starten.\n"
"\n"
-"Monitor\n"
+" * „Standard“: Wählt diesen Eintrag als Standard Linux-Kern, den Sie durch\n"
+"Drücken von Enter an der yaboot Eingabeaufforderung gestartet bekommen.\n"
+"Wenn Sie die [Tab]-Taste an der Eingabeaufforderung drücken, erhalten Sie\n"
+"eine Liste der verfügbaren Alternativen. Der Standardeintrag wird mit einem\n"
+"Stern „*“ markiert."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:828
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
"\n"
-" DrakX erkennt normalerweise automatisch Ihren Monitor. Sollten dabei\n"
-"Probleme auftreten, können Sie in der hier aufgeführten Liste Ihr Modell\n"
-"auswählen.\n"
+"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"
-"Auflösung\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"
-" Sie können hier Auflösung und Farbtiefe für Ihre Hardware wählen.\n"
-"Entscheiden Sie sich, welche Variante Ihren Wünschen am ehesten entspricht\n"
-"(Sie können diese Angaben natürlich nach der Installation noch ändern). Sie\n"
-"können sich einen Eindruck anhand des abgebildeten Monitors bilden.\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\n"
"\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
-"Test\n"
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
+msgstr ""
+"Yaboot ist ein BS-Starter für NewWorld MacIntosh Rechner. Er kann sowohl\n"
+"GNU/Linux als auch MacOS oder MacOS X starten, falls diese auf Ihrem\n"
+"Rechner installiert sind. Normalerweise werden diese Betriebssysteme alle\n"
+"automatisch gefunden und eingebunden. Sollte dies nicht der Fall sein,\n"
+"können Sie diese hier manuell hinzufügen. Stellen Sie jedoch sicher, die\n"
+"richtigen Parameter zu verwenden.\n"
"\n"
-" DrakX versucht eine Testbild mit denen von Ihnen gewünschten\n"
-"Einstellungen zu öffnen. Falls Sie während des Tests einen Dialog sehen, in\n"
-"dem Sie gefragt werden, ob sie die getroffenen Einstellungen behalten\n"
-"wollen, antworten Sie mit \"%s\", damit DrakX mit dem nächsten\n"
-"Installationsschritt fortfährt. Sollten Sie die Nachricht nicht sehen,\n"
-"bedeutet das, dass eine oder mehrere getroffene Einstellungen nicht korrekt\n"
-"sind. Nach 12 Sekunden sollten Sie wieder das Installationsmenü sehen. Sie\n"
-"können nun die Einstellungen ändern, bis Sie das Testbild sehen.\n"
+"Die Hauptparameter von yaboot sind:\n"
"\n"
+" * „Init Nachricht“: Ein Text, der vor der Eingabeaufforderung angezeigt\n"
+"wird.\n"
"\n"
+" * „Boot Gerät“: Hiermit wird angegeben, wohin die Informationen zum\n"
+"Starten Ihres GNU/Linux Systems geschrieben werden sollen. Sie sollten in\n"
+"einem früheren Schritt bereits eine Boot-Partition angelegt haben, um diese\n"
+"Daten zu beherbergen.\n"
"\n"
-"Options\n"
+" * „Open Firmware Verzögerung“: Im Gegensatz zu LILO, stehen mit yaboot\n"
+"zwei Verzögerungen zur Verfügung. Die erste Verzögerung wird in Sekunden\n"
+"angegeben und dient zur Auswahl zwischen CD, OF Boot, MacOS oder Linux.\n"
"\n"
-" Hier können Sie auswählen ob beim Start von Linux automatisch eine\n"
-"grafische Benutzerumgebung (KDE,GNOME ...) geladen werden soll. Wenn Ihre\n"
-"Maschine als Server dienen soll, oder aber Ihre Grafikeinstellungen "
-"fehlerhaft\n"
-"sind, wollen Sie bestimmt \"%s\" überprüfen."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr "Durchsuchen"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr "CD-ROM"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Möchten Sie jetzt versuchen eine Internetverbindung aufzubauen?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "Belgien"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Verfügen Sie über eine ISA-Soundkarte?"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Ich habe keine Ethernet-Netzwerkkarte finden können, daher kann dieser "
-"Verbindungstyp nicht konfiguriert werden."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Windows"
-msgstr "Windows"
-
-#: ../../common.pm:1
-#, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "Vor der Partitionierung kann ich keine Screenshots machen."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Name"
-msgstr "Rechnername"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Datei/Speichern _unter ..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
-"%s ist nicht in der Scanner-Datenbank vorhanden. Wollen Sie ihn manuell "
-"einrichten?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "Wartezeit vor dem Starten des Standard-Betriebssystems"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Restrict command line options"
-msgstr "Gebrauch der Kommandozeilen-Parameter einschränken"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "East Europe"
-msgstr "Osteuropa"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "Freien Platz verwenden"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "DHCP verwenden"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr "E-Mail-Benachrichtigung"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Internet configuration"
-msgstr "Internet-Konfiguration"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr "Usbekistan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected %s"
-msgstr "%s gefunden"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/_Drucker automatisch erkennen"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "Assistent beenden"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Automatisch markierte Pakete anzeigen"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr "Togo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "CPU flags, die vom Kernel gemeldet werden"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Es trat ein Fehler auf! Ist \"mkisofs\" installiert?"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "Bitte versuchen Sie es erneut"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The model is correct"
-msgstr "Das Modell ist richtig"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT-Größenanpassung schlug fehl: %s"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr "Individuelle Paketauswahl"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr "Die Größe dieser Partition kann ich nicht ändern"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr "Standort"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "USA (Kabel-hrc)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr "Journalisierendes FS"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
-msgstr "Dieser Rechner"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS Laufwerksbuchstabe: %s (vermutlich?)\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr "Bahrain"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr ""
-"Wählen Sie die Dateien oder Verzeichnisse und betätigen Sie die Schaltfläche "
-"\"Hinzufügen\""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit scsi modules"
-msgstr " SCSI-Module weglassen "
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "CPU-Familie (z.B.:6 steht für i686)."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Da Sie eine Netzwerkinstallation durchführen, ist Ihr Netzwerk bereits\n"
-"konfiguriert. Wählen Sie \"OK\", um diese Einstellung beizubehalten oder\n"
-"\"Abbrechen\", um Ihre Internet- und Netzwerk-Konfiguration neu zu\n"
-"konfigurieren.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
-msgstr "Tägliche Sicherheitschecks durchführen"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Tastaturtyp: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"Hier können Sie einstellen, ob die Drucker, die an diesem Rechner hängen, "
-"für andere Rechner nutzbar sein sollen und falls ja, für welche."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr "Malta (USA)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "Das Erstellen der Bootdiskette wurde erfolgreich abgeschlossen \n"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Dieser Dienst ist verantwortlich dafür, dass alle Netzwerk-Dateisysteme \n"
-"(NFS) beim Systemstart eingehängt werden, etwa SMB (Lan Manager/Windows) \n"
-"und NCP (NetWare)."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Launch the wizard"
-msgstr "Hier starten Sie den Assistenten "
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Tvcard"
-msgstr "TV-Karten"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "In den Normal-Modus wechseln"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr " Größe "
-
-#: ../../help.pm:1
-#, c-format
-msgid "GRUB"
-msgstr "GRUB"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr "Grönland"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MausMan+/FirstMaus+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "Donnerstag"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Nicht das richtige Band. Das richtige Band heißt %s"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
+" * „BS-Startverzögerung für den Kern“: Diese Verzögerung entspricht der\n"
+"LILO Start-Verzögerung. Sie haben nach der Auswahl von GNU/Linux diese\n"
+"Verzögerung (in 0,1 Sekunden Schritten) Zeit, bis der Standardkern geladen\n"
+"wird.\n"
"\n"
-"What would you like to do?"
-msgstr ""
-"Es wurde bereits eine gemeinsame Internet-Verbindung aufgesetzt.\n"
-"Momentan ist sie aktiviert.\n"
+" * „BS-Start von CD erlauben“: Markieren dieses Punkts erlaubt es Ihnen an\n"
+"der ersten Eingabeaufforderung [C] für den Start von CD zu wählen.\n"
"\n"
-"Was wollen Sie tun?"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Alle NBIs löschen"
+" * „Open Firmware Start erlauben“: Markieren dieses Punkts erlaubt es Ihnen\n"
+"an der ersten Eingabeaufforderung [N] für den Open Firmware Start zu\n"
+"wählen.\n"
+"\n"
+" * „Standard BS“: Hiermit stellen Sie ein, welches Betriebssystem nach\n"
+"Ablauf der Open Firmware Verzögerung automatisch gestartet werden soll."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:860
+#, fuzzy
msgid ""
-"This dialog allows you to fine tune your bootloader:\n"
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
"\n"
-" * \"%s\": there are three choices for your bootloader:\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
"\n"
-" * \"%s\": if you prefer grub (text menu).\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
"\n"
-" * \"%s\": if you prefer LILO with its text menu interface.\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
-" * \"%s\": if you prefer LILO with its graphical interface.\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\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"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\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"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\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."
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
msgstr ""
-"Dieser Dialog erlaubt Ihnen die Feineinstellung des Betriebssystemstarters:\n"
+"Hier bekommen Sie verschiedene Parameter Ihres Systems angezeigt. Je nach\n"
+"vorhandener Hardware sehen Sie hier (oder eben nicht) folgende Einträge:\n"
"\n"
-" * \"%s\": Hier erhalten Sie drei Alternativen:\n"
+" * „Maus“: Kontrollieren Sie die konfigurierte Maus und betätigen Sie,\n"
+"falls notwendig, die Schaltfläche.\n"
"\n"
-" * \"%s\": falls Sie grub (Textmenü) bevorzugen.\n"
+" * „Tastatur“: Kontrollieren Sie die aktuelle Tastaturvorgabe und wählen\n"
+"Sie die Schaltfläche, falls Sie die Vorgabe ändern wollen.\n"
"\n"
-" * \"%s\": falls Sie LILO mit Textmenü als Ihren Favoriten ansehen.\n"
+" * „Zeitzone“: „DrakX“ versucht die Zeitzone anhand der gewählten Sprache\n"
+"zu „erraten“. Es ist jedoch möglich, dass Sie sich nicht in dem Land\n"
+"befinden, das die vorgegebene Sprache erahnen lässt. In diesem Fall sollten\n"
+"Sie die Schaltfläche anwählen, um die Uhr entsprechend Ihrer lokalen\n"
+"Zeitzone zu setzen.\n"
"\n"
-" * \"%s\": falls Sie LILO mit seiner grafischen Oberfläche bevorzugen.\n"
+" * „Drucker“: Durch Anwahl der Schaltfläche „Kein Drucker“ starten Sie den\n"
+"Druckerassistenten.\n"
"\n"
-" * \"%s\": Normalerweise müssen Sie hier nichts ändern (\"%s\"), Sie "
-"könnten\n"
-"jedoch den Starter auch auf der zweiten Platte installieren, (\"%s\") oder\n"
-"sogar auf einer Diskette (\"%s\").\n"
+" * „Soundkarte“: Falls eine Soundkarte in Ihrem Rechner gefunden wurde,\n"
+"wird sie hier angezeigt. Es ist jedoch keine Änderung während der\n"
+"Installation möglich.\n"
"\n"
-" * \"%s\": Wenn Sie Ihren Rechner neu starten erhalten Sie im Menü der zur\n"
-"Verfügung stehenden BSe eine gewisse Zeit um auszuwählen, was Sie starten\n"
-"möchten. Sollten Sie während dieser Zeit keine Wahl getroffen haben, wird\n"
-"Ihr Standard-BS gestartet.\n"
-"\n"
-"!! Machen Sie sich klar, dass Sie sich selbst darum kümmern müssen,\n"
-"irgendwie Ihr Mandrake Linux-System zu starten, wenn Sie hier keinen\n"
-"Betriebssystemstarter installieren (durch Auswahl von \"%s\"). Stellen Sie\n"
-"auch sicher, dass Sie wissen was Sie tun, wenn Sie hier Einstellungen\n"
-"verändern ...!!\n"
+" * „TV-Karte“: Falls eine TV-Karte in Ihrem Rechner gefunden wurde, wird\n"
+"sie hier angezeigt. Es ist jedoch keine Änderung während der Installation\n"
+"möglich.\n"
"\n"
-"Durch Wählen der Schaltfläche \"%s\" erhalten Sie etliche Optionen, die dem\n"
-"fortgeschrittenen Anwender vorbehalten bleiben."
+" * „ISDN Karte“: Falls eine ISDN Karte in Ihrem Rechner gefunden wurde,\n"
+"wird sie hier angezeigt. Durch Anwahl der Schaltfläche können Sie die\n"
+"Parameter ändern."
-#: ../../security/help.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:891
msgid ""
-"if set, send the mail report to this email address else send it to root."
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
-"Wenn ausgefüllt, wird E-Mail an diese Adresse geschickt, sonst an \"root\"."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Welche XFree-Konfiguration wollen Sie verwenden?"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "More"
-msgstr "Mehr"
+"Bitte wählen Sie die Festplatte, die Sie löschen wollen, um Ihr neues\n"
+"Mandrake Linux zu installieren. Bedenken Sie dabei, dass alle Daten auf\n"
+"dieser Platte nach diesem Schritt unwiederbringlich verloren sind!"
-#: ../../standalone/drakbackup:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#: ../../help.pm_.c:896
msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
+"Betätigen Sie die Schaltfläche „OK“, wenn Sie alle Partitionen und die\n"
+"darauf befindlichen Daten löschen wollen. Bedenken Sie, dass Sie nach\n"
+"betätigen der Schaltfläche auch an die möglichweise noch vorhandenen\n"
+"Windows Daten nicht mehr gelangen werden!\n"
+"\n"
+"Wählen Sie „Abbruch“, um ohne Datenverlust die Aktion abtzubrechen."
-#: ../../security/level.pm:1
+#: ../../install2.pm_.c:111
#, 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."
+"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 ""
-"Mit dieser Sicherheitsebene wird es möglich, das System als einen \n"
-"Server zu verwenden.\n"
-"Die Sicherheit ist nun ausreichend hoch, um das System als Server \n"
-"einzusetzen, der einer Vielzahl von Clients einen Verbindungsaufbau \n"
-"erlaubt. Es sei hier angemerkt, dass Ihr Rechner, wenn Sie nur als \n"
-"Client ins Internet gehen, besser eine niedrigere Sicherheitsebene \n"
-"verwenden sollte."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Server Name"
-msgstr "Server Name"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Password"
-msgstr "Passwort"
+"Ich kann die Kernmodule, die zu diesem Kern passen, nicht finden (Datei %s "
+"fehlt). Das bedeutet normalerweise das Ihre Startdiskette nicht mit dem "
+"Installationsmedium übereinstimmt (Bitte erstellen Sie eine neue "
+"Startdiskette). "
-#: ../../standalone/drakhelp:1
+#: ../../install2.pm_.c:167
#, c-format
-msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
-msgstr ""
-"%s kann nicht angezeigt werden\n"
-". Kein Eintrag in der Hilfedatei\n"
+msgid "You must also format %s"
+msgstr "Sie müssen auch %s formatieren."
-#: ../../any.pm:1
+#: ../../install_any.pm_.c:423
#, 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"
+"You have selected the following server(s): %s\n"
"\n"
-"On which drive are you booting?"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
msgstr ""
-"Sie haben sich entschieden, Ihren Betriebssystemstarter auf eine Partition "
-"zu installieren.\n"
-"Das impliziert, dass Sie einen anderen Betriebssystemstarter im Master-Boot-"
-"Record haben (etwa System Commander).\n"
+"Sie haben die folgenden Server ausgewählt: %s\n"
"\n"
-"Von welchem Verzeichnis wollen Sie starten?"
+"\n"
+"Diese Server werden standardmäßig aktiviert. Sie haben keine bekannten\n"
+"Sicherheitsprobleme, es können jedoch irgendwann welche gefunden werden.\n"
+"In diesem Fall müssen Sie sicherstellen, dass Sie so schnell wie möglich\n"
+" eine Paketaktualisierung vornehmen.\n"
+"\n"
+"\n"
+"Wollen Sie diese Server wirklich installieren?\n"
-#: ../../install_interactive.pm:1
+#: ../../install_any.pm_.c:441
#, c-format
msgid ""
-"WARNING!\n"
+"The following packages will be removed to allow upgrading your system: %s\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."
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-"WARNUNG!\n"
+"Folgende Pakete werden entfernt, um das Aktualisieren Ihres Rechners zu "
+"ermöglichen: %s\n"
"\n"
-"DrakX wird nun die Größe Ihrer Windows-Partition verändern.\n"
-"Seien Sie vorsichtig: Diese Aktion ist gefährlich. Falls Sie es noch\n"
-"nicht getan haben, sollten Sie nun die Installation abbrechen, um\n"
-"\"chkdsk c:\" von einem DOS Prompt unter Windows auf die\n"
-"Partition anzuwenden (Achtung:scandisk unter der grafischen\n"
-"Windows Oberfläche reicht nicht aus, bitte \"chkdsk\" in einem DOS Prompt "
-"ausführen!)\n"
-"Defragmentieren. Anschließend können Sie die Installation erneut starten.\n"
-"Sie sollten natürlich generell Sicherheitskopien Ihrer Daten angelegt\n"
-"haben. Falls dies der Fall ist, können Sie mit OK fortfahren."
+"\n"
+"Wollen Sie diese Pakete wirklich entfernen?\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tajik keyboard"
-msgstr "Tadschikistan"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
+msgstr ""
+"Ich kann kein Broadcast machen,\n"
+"da keine NIS Domäne angegeben wurde"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:879
#, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Legen Sie eine leere, FAT formatierte Diskette in Laufwerk %s ein."
+
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
+msgstr "Diese Diskette ist nich FAT formatiert"
+
+#: ../../install_any.pm_.c:895
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"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-"Sie können die Druckerkonfiguration, die Sie für den Spooler \"%s\" "
-"vorgenommen haben für \"%s\", ihren aktuellen Spooler, verwenden. Alle Daten "
-"(Name, Beschreibung, Standort, Verbindungsart und Standard- "
-"Optionseinstellungen) werden übernommen, Druckjobs in der alten "
-"Warteschlange gehen jedoch verloren.\n"
-"Nicht alle Warteschlangen können übernommen werden:\n"
+"Um diese gespeicherte Paketauswahl zu verwenden, starten Sie die \n"
+"Installation bitte mit: „boot defcfg=floppy“"
-#: ../../standalone/drakfont:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, c-format
-msgid "Font List"
-msgstr "Font-Liste"
+msgid "Error reading file %s"
+msgstr "Fehler beim Lesen der Datei %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_any.pm_.c:1040
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."
+"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 ""
-"Sie müssen Ihr Open-Firmware-Boot-Gerät anpassen, dass es den \n"
-"Betriebssytemstarter erkennt. Falls Sie beim Neustart nicht die \n"
-"Eingabeaufforderung des Betriebssytemstarters sehen, drücken Sie \n"
-"Strg-Option-O-F und geben Sie folgendes ein:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-"Tippen Sie dann: shut-down\n"
-"Beim darauffolgenden Neustart sollte Sie die Eingabeaufforderung sehen."
+"Ein Fehler ist aufgetreten - es wurden keine gültigen Geräte gefunden, auf "
+"denen neue Dateisysteme erstellt werden können. Bitte überprüfen Sie Ihre "
+"Hardware(-Konfiguration) auf mögliche Fehler und falsche Einstellungen."
-#: ../../install_steps_interactive.pm:1
+#: ../../install_interactive.pm_.c:21
#, 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"
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"Sie scheinen einen \"OldWorld\" oder unbekannten\n"
-"Rechner zu verwenden. Der Betriebssystemstarter\n"
-"\"yaboot\" wird daher leider nicht funktionieren.\n"
-"Die Installation wird fortgesetzt, sie werden jedoch \n"
-"\"BootX\" verwenden müssen um LINUX auf Ihrem Rechner\n"
-"zu starten."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Select file"
-msgstr "Datei auswählen"
+"Einige Hardware Komponenten Ihres Rechners benötigen „proprietäre“\n"
+"Treiber. Weitere Infos hierzu finden Sie unter: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:56
msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
+"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 ""
-"Wählen Sie Netzwerke bzw. Rechner, denen lokale Drucker bekannt gemacht "
-"werden sollen:"
+"Sie brauchen eine Verzeichnisbaumwurzel.\n"
+"Erzeugen Sie eine Partition (oder klicken Sie auf eine existierende).\n"
+"Wählen Sie „Einhängpunkt“ und setzen Sie ihn auf „/“"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
+msgstr "Sie benötigen eine Auslagerungspartition"
+
+#: ../../install_interactive.pm_.c:62
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"
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"Sie können diese Befehle auch in dem \"Druck-Kommando\"-Feld des "
-"Druckdialogs zahlreicher Anwendungen angeben, lassen Sie jedoch den "
-"Dateinamen weg, da die zu druckende Datei von der Anwendung geliefert wird.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "Japan"
+"Sie haben keine Auslagerungspartition\n"
+"\n"
+"Wollen Sie trotzdem fortfahren?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print option list"
-msgstr "Liste der Drucker-Optionen"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Sie müssen eine FAT Partition in „/boot/efi“ eingehängt haben."
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-"Die Einstellungen wurden vorgenommen, werden jedoch erst nach einer "
-"Neuanmeldung wirksam"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
+msgstr "Freien Platz verwenden"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
-msgstr "Staat / Region"
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
+msgstr "Nicht genug freier Platz, um die neue Partition anlegen zu können."
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search servers"
-msgstr "Server suchen"
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
+msgstr "Verwende existierende Partition(en)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "Der NCP-Warteschlangen-Name fehlt!"
+#: ../../install_interactive.pm_.c:102
+msgid "There is no existing partition to use"
+msgstr "Es gibt keine existierende Partition, die ich verwenden kann."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"WARNUNG: Es wurde bereits eine Internetverbindung gefunden. Vielleicht nutzt "
-"diese ihr Netzwerk."
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
+msgstr "Auf der Windows Partition Loopbacks anlegen"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM \"%s\""
+#: ../../install_interactive.pm_.c:112
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Auf welche Partition wollen Sie Linux4Win installieren?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr "CD-RW Medium"
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
+msgstr "Wählen Sie die Größen"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Dieser Dienst speichert beim Herunterfahren des Rechners den Zustand \n"
-"des Zufallszahlengenerators, um ihn beim nächsten Systemstart \n"
-"wieder zu restaurieren. Die Qualität erzeugter Zufallszahlen \n"
-"wird dadurch verbessert."
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
+msgstr "Größe der Verzeichnisbaumwurzel-Partition in MB: "
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr "Verwandeln Sie Ihren Rechner in einen zuverlässigen Server."
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr "Größe der Auslagerungspartition in MB: "
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr "Prüfe auf leere Passwörter in /etc/shadow"
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
+msgstr "Den freien Platz der Windows Partition verwenden"
-#: ../../network/network.pm:1
-#, c-format
-msgid " (driver %s)"
-msgstr " (Treiber %s)"
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
+msgstr "Bei welcher Partition wollen Sie die Größe ändern?"
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
-msgstr "Starten wenn verlangt"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "Errechne die Grenzen des Windows Dateisystems"
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
-"Loopback file(s):\n"
-" %s\n"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-"Loopback Datei(en):\n"
-" %s\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr "Keine Ahnung"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP-Rechner \"%s\", Port %s"
+"Das Werkzeug zum Verändern der FAT Partitionsgröße kann mit der \n"
+"Partition nicht arbeiten. Folgender Fehler trat auf:\n"
+"%s"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../install_interactive.pm_.c:137
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?"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-"Sie sind dabei, eine Auto-Installationsdiskette zu erstellen. Diese\n"
-"Möglichkeit ist gefährlich und sollte mit Vorsicht verwendet werden!\n"
-"\n"
-"Sie können mit diesem Werkzeug die Installation, die Sie vorher\n"
-"gemacht haben wiederholen, wobei Sie an einigen Stellen interaktiv\n"
-"Einfluss nehmen zu können.\n"
-"\n"
-"Aus Sicherheitsgründen wird die Partitionierung und Formatierung nie\n"
-"automatisch durchgeführt.\n"
-"\n"
-"Wollen Sie fortfahren?"
-
-# drakfw:278 (Neuse
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Telugu"
-msgstr "Telugu"
+"Ihre Windows-Partition ist zu sehr fragmentiert.\n"
+"Starten Sie bitte erst „defrag“ unter Windows."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:138
msgid ""
+"WARNING!\n"
"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
+"WARNUNG!\n"
"\n"
-"\n"
-"Ihre Karte verwendet momentan den %s \"%s\" Treiber (Voreinstellung für Ihre "
-"Karte ist \"%s\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Uninstall"
-msgstr "Nach dem Entfernen"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Mit dem Internet verbinden"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid level"
-msgstr "CPUID-Ebene"
+"DrakX wird nun die Größe Ihrer Windows Partition verändern.\n"
+"Seien Sie Vorsichtig: Diese Aktion ist gefährlich. Falls Sie es noch\n"
+"nicht getan haben, sollten Sie nun die Installation abbrechen, um\n"
+"scandisk (sowie möglicherweise defrag) unter Windows auf die Partition \n"
+"anzuwenden. Anschließend können Sie die Installation erneut starten.\n"
+"Sie sollten natürlich generell Sicherheitskopien Ihrer Daten angelegt\n"
+"haben. Falls dies der Fall ist, können Sie mit OK fortfahren."
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "auf dem Novell-Server \"%s\", Drucker \"%s\""
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Wieviel Platz benötigen sie noch für Windows auf"
-#: ../../keyboard.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "Mongolei (Kyrillisches Layout)"
+msgid "partition %s"
+msgstr "Partition %s"
-#: ../../standalone/drakfloppy:1
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid "Add a module"
-msgstr "Modul hinzufügen"
+msgid "FAT resizing failed: %s"
+msgstr "FAT Größenanpassung schlug Fehl: %s"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr "Zu löschendes Profil: "
+#: ../../install_interactive.pm_.c:171
+msgid ""
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Sie haben keine FAT Partition, deren Größe ich anpassen kann, bzw. die\n"
+"ich als Loopback verwenden kann (möglicherweise haben Sie auch einfach\n"
+"nur nichtmehr genügend freien Speicher)."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Local measure"
-msgstr "Lokale Messung"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr "Komplette Platte löschen"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
-msgstr "Warnung : IP address %s ist üblicherweise reserviert !"
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr "Windows(TM) löschen"
-#: ../../mouse.pm:1
-#, c-format
-msgid "busmouse"
-msgstr "Bus-Maus"
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+"Sie haben mehr als eine Festplatte.\n"
+"Auf welche soll GNU/Linux installiert werden?"
-#: ../../standalone/drakTermServ:1
+#: ../../install_interactive.pm_.c:183
#, 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 "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
+"SÄMTLICHE existierende Partitionen samt der derauf befindlichen Daten \n"
+"auf Laufwerk %s gehen dabei verloren"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Benutzername (Login)"
+#: ../../install_interactive.pm_.c:191
+msgid "Custom disk partitioning"
+msgstr "Benutzerdefinierte Partitionierung"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
-msgstr "Fdiv Fehler"
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr "Fdisk verwenden"
-#: ../../network/drakfirewall.pm:1
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-"DrakFirewall-Konfigurator\n"
-"\n"
-"Stellen Sie sicher, dass Sie Ihre Netzwerk-/Internetverbindung\n"
-"mit DrakConnect eingerichtet haben, bevor Sie fortfahren."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr "Broadcast-ICMP-Echo akzeptieren"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr "Uruguay"
+"Sie können nun %s partitionieren.\n"
+"Vergessen Sie nicht die Einstellungen mittels ,w` zu speichern, \n"
+"sobald Sie fertig sind."
-#: ../../lang.pm:1
-#, c-format
-msgid "Benin"
-msgstr "Benin"
+#: ../../install_interactive.pm_.c:227
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Sie haben nicht genug freien Platz auf Ihrer Windows Partition."
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "auf SMB/Windows-Server \"%s\", Freigabe \"%s\""
+#: ../../install_interactive.pm_.c:243
+msgid "I can't find any room for installing"
+msgstr "Ich finde nicht genug Platz für die Installation."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path selection"
-msgstr "Pfad-Auswahl"
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Der DrakX Partitionierungsassistent fand folgende Lösung:"
-#: ../../standalone/scannerdrake:1
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid "Name/IP address of host:"
-msgstr "Name/IP-Adresse des Rechners:"
+msgid "Partitioning failed: %s"
+msgstr "Das Partitionieren schlug Fehl: %s"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr "Netzwerkverbindung herstellen"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom & system settings"
-msgstr "Benutzerdefinierte & Systemeinstellungen"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr "Netzwerkverbindung trennen"
-#: ../../partition_table/raw.pm:1
-#, c-format
+#: ../../install_steps.pm_.c:76
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."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"Mit Ihrer Platte stimmt etwas nicht!\n"
-"Der vorgenommene Integritätstest schlug fehl.\n"
-"Das bedeutet, dass jeder Schreibvorgang auf der Platte zu zufälligen oder "
-"beschädigten Daten führen wird."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Der Rechnername, bzw die IP-Adresse des Druckers fehlt!"
+"Es trat ein Fehler auf. Ich weiß jedoch nicht, wie ich damit sinnvoll \n"
+"umgehen soll. Sie können fortfahren, jedoch auf eigenes Risiko!"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr ""
-"Bitte wählen Sie alle Benutzer, deren Dateien mitgesichert werden sollen."
+msgid "Duplicate mount point %s"
+msgstr "Den Einhängpunkt %s kopieren"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps.pm_.c:380
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+"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 ""
-"Der Scanner \"%s\" muss von PrinterDrake konfiguriert werden.\n"
-"Sie können PrinterDrake im Mandrake Kontrollzentrum im Hardware-Bereich "
-"starten."
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Key isn't writable"
-msgstr "Schlüssel kann nicht geschrieben werden"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bangladesh"
-msgstr "Bangladesch"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
-msgstr "Japan (Kabel)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Initial tests"
-msgstr "Vortests"
+"Einige wichtige Pakete wurden nicht richtig installiert. \n"
+"Entweder ist Ihr CD-ROM-Laufwerk oder Ihre CD-ROM defekt. \n"
+"Testen Sie die CD-ROM auf einem Linux-Rechner mittels „rpm -qpl \n"
+"Mandrake/rpms/*.rpm“\n"
-#: ../../network/isdn.pm:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "Continue"
-msgstr "Fortfahren"
+msgid "Welcome to %s"
+msgstr "Willkommen auf %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom Restore"
-msgstr "Benutzerdefinierte Wiederherstellung"
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr "Kein Disketten-Laufwerk verfügbar"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "Saturday"
-msgstr "Samstag"
+msgid "Entering step `%s'\n"
+msgstr "Beginn von Schritt „%s“\n"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:146
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."
+"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 ""
-"\"%s\": Falls eine Soundkarte in Ihrem Rechner gefunden wurde, wird sie "
-"hier\n"
-"angezeigt. Sollte die von DrakX getroffene Auswahl nicht korrekt sein,\n"
-"betätigen Sie einfach die Schaltfläche, um sie zu korrigieren."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the root umask."
-msgstr "Setzen der Root Umask"
-
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "Fehler beim Lesen der Datei %s"
+"Ihr Rechner hat nicht genug Ressourcen. Vermutlich werden bei der \n"
+"Installation Probleme auftreten. In diesem Fall sollten Sie eine \n"
+"Text-Installation versuchen. Drücken Sie dafür <F1> während dem \n"
+"Installationsstart und geben Sie „text“ an der Eingabeaufforderung \n"
+"ein."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr "Skript-basiert"
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr "Installationsart"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "PLL setting:"
-msgstr "PLL-Einstellung:"
+#: ../../install_steps_gtk.pm_.c:160
+msgid "Please choose one of the following classes of installation:"
+msgstr "Bitte wählen Sie eine der folgenden Installationsklassen:"
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Sie müssen eine FAT-Partition in \"/boot/efi\" eingehängt haben."
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
+msgstr "Auswahl der Paketgruppen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
-msgstr " auf "
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
+msgstr "Individuelle Paketauswahl"
-#: ../../diskdrake/dav.pm:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid "The URL must begin with http:// or https://"
-msgstr "Die URL muss mit \"http://\" oder \"https://\" beginnen!"
+msgid "Total size: %d / %d MB"
+msgstr "Gesamtgröße: %d / %d MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Sie können hier direkt die URI eines Druckers angeben. Die URI muss den CUPS-"
-"bzw. den Foomatic-Spezifikationen genügen. Es sei hier noch angemerkt, dass "
-"nicht alle URI-Typen von allen Drucksystemem unterstützt werden."
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
+msgstr "Ungültiges Paket"
-#: ../../any.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "Anderes Betriebssystem (SunOS ...)"
+msgid "Name: %s\n"
+msgstr "Name: %s\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid "Install/Upgrade"
-msgstr "Installation/Aktualisierung"
+msgid "Version: %s\n"
+msgstr "Version: %s\n"
-#: ../../install_steps_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid "%d packages"
-msgstr "%d Pakete"
+msgid "Size: %d KB\n"
+msgstr "Größe: %d KB\n"
-#: ../../crypto.pm:1 ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
-msgid "Costa Rica"
-msgstr "Costa Rica"
+msgid "Importance: %s\n"
+msgstr "Wichtigkeit: %s\n"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:360
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"
+"You can't select this package as there is not enough space left to install it"
msgstr ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Archivierungs- und Restaurierungs-Programm\n"
-"\n"
-"--default - Speichern der Standardverzeichnisse.\n"
-"--debug - Ausgabe aller Debug-Informationen.\n"
-"--show-conf - Liste der zu archivierenden Dateien/Verzeichnisse.\n"
-"--config-info - Erklärung der Konfigurationsdatei-Parameter (für nicht-X "
-"Anwender).\n"
-"--daemon - Verwende die Dienst-Konfiguration. \n"
-"--help - Ausgabe dieses Hilfetextes.\n"
-"--version - Ausgabe der Versionsnummer.\n"
+"Sie können dieses Paket nicht auswählen, da Sie nicht genug Plattenplatz "
+"haben."
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain Authentication Required"
-msgstr "Domänen-Authentifizierung nötig"
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
+msgstr "Die folgenden Pakete werden installiert werden"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Use libsafe for servers"
-msgstr "\"libsafe\" bei Servern verwenden"
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
+msgstr "Die folgenden Pakete werden entfernt"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Icelandic"
-msgstr "Island"
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
+msgstr "Sie können dieses Paket nicht auswählen/es aus der Auswahl entfernen."
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Dieses Paket ist existenziell, sie können es nicht deselektieren"
+
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
msgstr ""
-"\n"
-"Verwendung: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+"Sie können dieses Paket nicht aus der Auswahl entfernen. \n"
+"Es ist bereits installiert!"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#: ../../install_steps_gtk.pm_.c:395
msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
-"Bitte geben Sie die Maximalgröße \n"
-"für DrakBackup an."
+"Dieses Paket muss aktualisiert werden.\n"
+"Sind Sie sicher, dass Sie es aus der Auswahl entfernen wollen?"
-#: ../../loopback.pm:1
-#, fuzzy, c-format
-msgid "Circular mounts %s\n"
-msgstr "Schleife bei den Einhängepunkten %s\n"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
+msgstr ""
+"Sie können dieses Paket nicht aus der Auswahl entfernen. \n"
+"Es muss aktualisiert werden!"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo/grub mode"
-msgstr "LILO/GRUB-Modus"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
+msgstr "Anzeige automatisch markierter Pakete"
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "Martinique"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr "Installation"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Festplatte/NFS"
+#: ../../install_steps_gtk.pm_.c:407
+msgid "Load/Save on floppy"
+msgstr "Laden von/Speichern auf Diskette"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Old user list:\n"
-msgstr "Liste alter Benutzer:\n"
+#: ../../install_steps_gtk.pm_.c:408
+msgid "Updating package selection"
+msgstr "Erneuere Paket Auswahl"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
-msgstr "Durchsuche Sicherheitskopien"
+#: ../../install_steps_gtk.pm_.c:413
+msgid "Minimal install"
+msgstr "Minimal-Installation"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "a number"
-msgstr "eine Nummer"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
+msgstr "Zu installierende Pakete auswählen"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "Schweden"
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr "Installation wird durchgeführt"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Welchen %s-Treiber soll ich versuchen?"
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr "Schätzung"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr ""
-"Sie werden benachrichtigt, falls einer der gewählten Dienste nicht mehr läuft"
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr "Verbleibende Zeit "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Weekday"
-msgstr "Wochentag"
+#: ../../install_steps_gtk.pm_.c:469
+msgid "Please wait, preparing installation..."
+msgstr "Bitte warten, bereite Installation vor"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid "Filesystem types:"
-msgstr "Dateisystemtypen:"
+msgid "%d packages"
+msgstr "%d Pakete"
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "Northern Mariana Islands"
-msgstr "Nördliche Mariannen-Inseln"
+msgid "Installing package %s"
+msgstr "Installation des Pakets %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", Multifunktionsgerät am HP JedDirect"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "Akzeptieren"
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "keine"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
+msgstr "Zurückweisen"
-#: ../../standalone/drakconnect:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr "Name des neuen Profils (es wird als Kopie des aktuellen erstellt):"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Floppy"
-msgstr "Diskettenlaufwerke"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "Ghostscriptreferenz"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Bootloader"
-msgstr "Betriebssystemstarter"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
+"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 ""
+"Bitte wechseln Sie die CD!\n"
+"\n"
+"Bitte legen Sie die CD-ROM „%s“ in Ihr Laufwerk,\n"
+"dann drücken Sie OK.\n"
+"Falls Sie sie nicht vorliegen haben, drücken Sie Abbruch."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "Bewegen"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Bootloader to use"
-msgstr "Zu verwendender Betriebssystemstarter"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "SMB-Server"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
+msgstr "Wollen Sie trotzdem fortfahren?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Name Servers:"
-msgstr "DNS-Server:"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
+msgstr "Bei der Anforderung folgender Pakete trat ein Fehler auf:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Minute"
-msgstr "Minute"
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
+msgstr "Bei der Installation der Pakete trat ein Fehler auf:"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:10
msgid ""
"\n"
"Warning\n"
@@ -7474,7 +5201,7 @@ msgstr ""
"\n"
"Bitte lesen Sie die nachfolgenden Ausführungen sorgfältig. Wenn Sie mit\n"
"irgendeinem Teil nicht einverstanden sind, dürfen Sie nicht den Inhalt\n"
-"der folgenden CDs installieren. Klicken Sie auf \"Zurückweisen\", um die\n"
+"der folgenden CDs installieren. Klicken Sie auf „Zurückweisen“, um die\n"
"Installation ohne Verwendung dieser CDs fortzusetzen.\n"
"\n"
"\n"
@@ -7501,727 +5228,535 @@ msgstr ""
"jeweiligen Autoren und sind durch die Urheberrechtsgesetze für\n"
"Softwareprodukte geschützt.\n"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Expert mode"
-msgstr "/-Expertenmodus"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Diesen Drucker von StarOffice/OpenOffice.org/GIMP entfernen"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Der Linux Virtual Server kann verwendet werden, um ein \n"
-"hochperformanten Hochverfügbarkeitsserver aufzusetzen."
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
+msgstr "Es ist ein Fehler aufgetreten"
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr "Mikronesien"
+#: ../../install_steps_interactive.pm_.c:85
+msgid "Do you really want to leave the installation?"
+msgstr "Möchten Sie die Installation wirklich beenden?"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 Milliarden Farben (32 Bit)"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
msgstr "Lizenz"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "Das Generieren der Schlüssel kann einen Moment dauern."
-
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
+"Introduction\n"
"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
-"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"
+"1. License Agreement\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"
+"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"
-"<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"
+"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"
-"<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"
+"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"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\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"
-"<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"
+"5. Governing Laws \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"
+"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 ""
-"Hier können Sie die Sicherheitstsstufe und den Administrator ihres Computers "
-"festlegen\n"
+"Bei dieser Übersetzung handelt es sich um eine inoffizielle Übersetzung\n"
+"der Mandrake Linux-Lizenz in die deutsche Sprache. Sie ist keine\n"
+"rechtsverbindliche Darstellung der Lizenzbedingungen der Software in\n"
+"dieser Distribution - nur der ursprüngliche französische Text der\n"
+"Mandrake Linux-Lizenz ist rechtsverbindlich. Wir hoffen aber, dass diese\n"
+"Übersetzung den deutschsprechenden Benutzern das Verständnis dieser\n"
+"Lizenz erleichtert.\n"
"\n"
"\n"
-"Der Sicherheits Administrator ist derjenige, der Sicherheits Alarme erhält\n"
-"wenn die Sicherheits Alarm Option ausgewählt wurde. Das kann in Form eines\n"
-"Benutzernamens oder einer Emailadresse festgelegt werden.\n"
+"Einführung\n"
"\n"
+"Das Betriebssystem und die anderen Komponenten, die in Mandrake Linux\n"
+"enthalten sind, werden hier „Software-Produkte“ genannt. Die\n"
+"Software-Produkte umfassen, aber sind nicht beschränkt auf, die\n"
+"Gesamtheit der Programme, Methoden, Regeln, und Dokumentation, welche\n"
+"zum Betriebssystem und den anderen Komponenten der Mandrake Linux\n"
+"Distribution gehören.\n"
"\n"
-"Das Sicherheitsstufen Menü gibt Ihnen die Wahl zwischen sechs vordefinierten "
-"Sicherheitsstufen\n"
-"Diese Stufen reichen von schwacher Sicherheit mit einfacher Benutzung, bis\n"
-"Paranoider Einstellung, passend für sensible Server Anwendungen:\n"
"\n"
+"1. Lizenzabkommen\n"
"\n"
-"<span foreground=\"royalblue3\">Schwach</span>: Dies ist eine total "
-"unsichere, aber einfach\n"
-"zu nutzende Sicherheitstufe. Sie sollte nur für Rechner verwendet werden, "
-"die nicht mit einem\n"
-"Netzwerk verbunden sind und auf die nicht jeder Zugriff hat.\n"
+"Bitte lesen Sie dieses Dokument sorgfältig. Dieses Dokument ist ein\n"
+"Lizenzabkommen zwischen Ihnen und MandrakeSoft S. A. welches sich auf\n"
+"die Software-Produkte bezieht.\n"
+"Durch Installation, Duplizierung oder Benutzung der Software-Produkte in\n"
+"irgendeiner Art und Weise erklären Sie sich mit den Bedingungen dieser\n"
+"Lizenz einverstanden.\n"
+"Wenn Sie mit irgendeinem Punkt dieser Lizenz nicht einverstanden sind,\n"
+"ist es Ihnen nicht erlaubt, die Software-Produkte zu installieren,\n"
+"duplizieren oder zu benutzen.\n"
+"Mit jedem Versuch, die Software-Produkte in einer Art und Weise zu\n"
+"benutzen, die nicht den Bedingungen dieser Lizenz entspricht, verlieren\n"
+"Sie die Ihnen mit dieser Lizenz eingeräumten Rechte. In diesem Fall\n"
+"haben Sie unverzüglich alle Kopien der Software-Produkte zu vernichten.\n"
"\n"
"\n"
-"<span foreground=\"royalblue3\">Standard</span>: Dies ist die Standard "
-"Sicherheitsstufe\n"
-"empfohlen für Rechner, die als Client mit dem Internet verbunden\n"
-"sind.\n"
+"2. Eingeschränkte Garantie\n"
"\n"
+"Die Software-Produkte und die beigefügte Dokumentation werden dem\n"
+"Benutzer lediglich zur Verfügung gestellt, es wird keinerlei Garantie\n"
+"gegeben soweit es gesetzlich zulässig ist.\n"
+"MandrakeSoft S. A. haftet unter keinen Umständen, soweit gesetzlich\n"
+"zulässig, für direkte oder indirekte Schäden irgendwelcher Art,\n"
+"(inklusive uneingeschränkten Schäden aufgrund Verlust von\n"
+"Geschäftsbeziehungen, Unterbrechung von Geschäftsvorgängen,\n"
+"finanziellen Verlust, Gebühren oder Strafen aufgrund gerichtlicher\n"
+"Entscheide, oder jegliche Folgeschäden) die aufgrund der Benutzung oder\n"
+"der Unmöglichkeit der Benutzung der Software-Produkte entstehen, auch\n"
+"wenn MandrakeSoft S. A. über die Möglichkeit und das Auftreten\n"
+"derartiger Schäden unterrichtet wurde.\n"
"\n"
-"<span foreground=\"royalblue3\">Hoch</span>: Hier gibt es bereits ein paar\n"
-"Einschränkungen, und mehr automatische Überprüfungen laufen jede Nacht.\n"
"\n"
+"EINGESCHRÄNKTE VERANTWORTLICHKEIT BEZOGEN AUF DEN BESITZ UND DIE\n"
+"BENUTZUNG VON SOFTWARE, DIE IN EINIGEN LÄNDERN VERBOTEN IST.\n"
"\n"
-"<span foreground=\"royalblue3\">Höher</span>: Die Sicherheit ist jetzt hoch "
-"genug \n"
-"um das System als Server zu nutzen, der Verbindungen zu vielen Clients "
-"akzeptiert. Wenn\n"
-"Ihr Rechner nur als Client im Internet ist, sollten Sie eine niedrigere "
-"Stufe wählen.\n"
"\n"
+"Soweit gesetzlich zulässig, haften MandrakeSoft S. A. und deren\n"
+"Vertreiber unter keinen Umständen für direkte oder indirekte Schäden\n"
+"irgendwelcher Art, (inklusive uneingeschränkten Schäden aufgrund Verlust\n"
+"von Geschäftsbeziehungen, Unterbrechung von Geschäftsvorgängen,\n"
+"finanziellen Verlust, Gebühren oder Strafen aufgrund gerichtlicher\n"
+"Entscheide, oder jegliche Folgeschäden) die aufgrund des Besitzes und\n"
+"der Benutzung von Software-Komponenten oder aufgrund des Ladens von\n"
+"Software-Komponenten von den Internet-Servern von MandrakeSoft S. A.,\n"
+"deren Besitz und Benutzung in einigen Ländern aufgrund lokaler Gesetze\n"
+"nicht gestattet ist, entstehen.\n"
+"Diese Einschränkung der Verantwortlichkeit bezieht sich auch, aber nicht\n"
+"nur, auf die Komponenten für starke Kryptografie enthalten in den\n"
+"Software-Produkten.\n"
"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: Diese Einstellung ähnelt "
-"der vorherigen \n"
-"Stufe, aber das System ist vollständig abgeschlossen und die "
-"Sicherheitsregeln\n"
-"sind auf Maximum"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr "Autoerkennung von Druckern (Lokal, TCP/Socket und SMB-Drucker)"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr "Sagem-USB (verwendet pppoa)"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"Ein Fehler ist aufgetreten - es wurden keine gültigen Geräte gefunden, auf "
-"denen neue Dateisysteme erstellt werden können. Bitte überprüfen Sie Ihre "
-"Hardware(-Konfiguration) auf mögliche Fehler und falsche Einstellungen."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Drucksystem beim Systemstart aktivieren"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Möchten Sie die Verbindung beim Systemstart herstellen?"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr "Prozessor ID"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr "Sound-Fehlerbehandlung"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "Polen (QWERTY Layout)"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Drucker hinzufügen"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
"\n"
-"Drakbackup activities via CD:\n"
+"3. Die GPL und verwandte Lizenzen\n"
"\n"
-msgstr ""
+"Die Software-Produkte bestehen aus Komponenten, die von verschiedenen\n"
+"Personen und Einrichtungen erstellt wurden. Die meisten Komponenten\n"
+"unterliegen den Bedingungen der GNU General Public License, im folgenden\n"
+"„GPL“ genannt, oder ähnlichen Lizenzen. Die meisten dieser Lizenzen\n"
+"erlauben es, die Komponenten, die diesen Lizenzen unterliegen, zu\n"
+"benutzen, zu duplizieren, anzupassen, und weiterzugeben. Bitte lesen sie\n"
+"sorgfältig die Bedingungen der Lizenzabkommen von jeder Komponente,\n"
+"bevor Sie sie benutzen. Jegliche Frage zur Lizenz einer Komponente ist an\n"
+"den Autor der Komponente und nicht an MandrakeSoft S. A. zu richten. Die\n"
+"von MandrakeSoft S. A. erstellten Programme unterliegen der GPL.\n"
+"Von MandrakeSoft S. A. geschriebene Dokumentation unterliegt einer\n"
+"spezifischen Lizenz. Bitte lesen Sie die Dokumentation für weitere\n"
+"Details.\n"
"\n"
-"Drakbackup Aktivitäten über CD:\n"
"\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
+"4. Geistiges Eigentum\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"
+"Alle Rechte an den Komponenten der Software-Produkte liegen bei den\n"
+"entsprechenden Autoren und sind durch die Urheberrechtsgesetze für\n"
+"Softwareprodukte geschützt.\n"
+"MandrakeSoft S. A. behält sich das Recht vor, die Software-Produkte zu\n"
+"modifizieren und anzupassen.\n"
+"„Mandrake“, „Mandrake Linux“ und entsprechende Logos sind eingetragene\n"
+"Warenzeichen der MandrakeSoft S. A..\n"
"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Sie sind dabei das Drucksystem %s auf einem Rechner mit Sicherheitsebene %s "
-"zu installieren.\n"
"\n"
-"Dieses Drucksystem läuft als Dämon (Hintergrundprozess), der auf "
-"Druckaufträge wartet, um sie abzuarbeiten. Da der Dämon auch für andere "
-"Rechner Ihres Netzwerks erreichbar ist,schaffen Sie damit einen möglichen "
-"Angriffspunkt. Aus Sicherheitsgründen werden in dieser Sicherheitsebene "
-"standardmäßig nur einige ausgewählte Dämons gestartet.\n"
+"5. Gesetzliche Bestimmungen\n"
"\n"
-"Wollen Sie wirklich dieses Drucksystem auf diesem Rechner installieren?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Rechner \"%s\", Port %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "Diese Partition kann nicht als Loopback verwendet werden"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr ""
-"Es existiert bereits eine Datei mit diesem Namen. Soll ich sie verwenden?"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
-msgstr "Empfangen: "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr "AltGr-Taste"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "Liste alternativer Soundtreiber für diese Soundkarte"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr "Tonga"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "Tunesien"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing"
-msgstr "Gemeinsamer Scannerzugriff"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
-"Klicken Sie auf ein Gerät in der linken Leiste, um die entsprechende "
-"Information anzuzeigen"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr "Das automatische Anmelden eines Benutzers erlauben/verbieten."
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
-msgstr "XawTV ist nicht installiert!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Keine kritischen Dateien (passwd, group, fstab) archivieren"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "Alter statischer Name im \"dev\" Paket"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
-msgstr "Aktiviere das Protokollieren von seltsamen IPv4 Packeten"
-
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
-msgstr "Dieser Eintrag existiert bereits"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"Wenn irgendein Teil dieses Lizenzabkommens durch einen Gerichtsentscheid\n"
+"für ungültig, illegal oder inakzeptabel erklärt wird, wird dieser Teil\n"
+"aus dem Abkommen ausgeschlossen. Sie bleiben weiterhin an die anderen,\n"
+"anwendbaren Teile gebunden.\n"
+"Die Bedingungen dieses Lizenzabkommens unterliegen den Gesetzen von\n"
+"Frankreich. Alle Unstimmigkeiten bezüglich der Bedingungen dieser Lizenz\n"
+"werden vorzugsweise außergerichtlich beigelegt. Letztes Mittel ist das\n"
+"zuständige Gericht in Paris, Frankreich.\n"
+"Zu jeglicher Frage zu diesem Dokument kontaktieren Sie bitte\n"
+"MandrakeSoft S. A.\n"
"\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"
+"Hier die französche Version:\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 ""
+"Introduction\n"
"\n"
-"Willkommen zum Druckerassistenten\n"
+"Le système d'exploitation et les divers composants disponibles dans la \n"
+"distribution Mandrake Linux sont ci-après dénommés ensemble les \n"
+"« Logiciels ». Les Logiciels comprennent notamment, mais de façon non \n"
+"limitative, l'ensemble des programmes, procédés, règles et documentations \n"
+"relatifs au système d'exploitation et aux divers composants de la \n"
+"distribution Mandrake Linux.\n"
"\n"
-"Dieser Assistent möchte Ihnen helfen, Ihre(n) lokalen und Netzwerkdrucker zu "
-"konfigurieren.\n"
"\n"
-"Falls Sie Drucker haben, die direkt mit dem Rechner verbunden sind, stellen "
-"Sie sicher, dass diese richtig angeschlossen und eingeschaltet sind. Ebenso "
-"müssen die Netzwerkdrucker eingeschaltet und mit dem Netz verbunden sein.\n"
+"1. Licence\n"
"\n"
-"Es sei angemerkt, dass die Erkennung von Netzwerkdruckern etwas länger "
-"dauert, als das Finden von Druckern, die direkt an Ihrem Rechner hängen. Sie "
-"sollten daher diesen Punkt ausschalten, sofern Sie nur direkt am Rechner "
-"hängende Drucker verwenden wollen.\n"
+"Veuillez lire attentivement le présent document. Ce document constitue \n"
+"un contrat de licence entre vous (personne physique ou personne morale) et \n"
+"MandrakeSoft S.A. portant sur les Logiciels.\n"
+"Le fait d'installer, de reproduire ou d'utiliser les Logiciels de quelque \n"
+"manière que ce soit indique que vous reconnaissez avoir préalablement eu \n"
+"connaissance et que vous acceptez de vous conformer aux termes et "
+"conditions \n"
+"du présent contrat de licence. En cas de désaccord avec le présent "
+"document \n"
+"vous n'êtes pas autorisé à installer, reproduire et utiliser de quelque \n"
+"manière que ce soit ce produit.\n"
+"Le contrat de licence sera résilié automatiquement et sans préavis dans le \n"
+"cas où vous ne vous conformeriez pas aux dispositions du présent document. \n"
+"En cas de résiliation vous devrez immédiatement détruire tout exemplaire "
+"et \n"
+"toute copie de tous programmes et de toutes documentations qui constituent \n"
+"le système d'exploitation et les divers composants disponibles dans la \n"
+"distribution Mandrake Linux.\n"
"\n"
-"Betätigen Sie die Schaltfläche \"Weiter\", wenn Sie soweit sind, bzw. "
-"\"Abbrechen\", wenn Sie keine Drucker konfigurieren wollen."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
-msgstr "Griechisch (polytonic)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"Nach Formatieren der Partition %s, werden sämtliche Daten darauf gelöscht"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection Time: "
-msgstr "Verbindungszeit: "
-
-#: ../../standalone/livedrake:1
-#, 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."
-msgstr ""
-"Bitte legen Sie die Installations-CD-ROM in Ihr Laufwerk und drücken \n"
-"Sie dann \"OK\". Falls Sie sie nicht vorliegen haben, drücken Sie \n"
-"\"Abbrechen\"."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use group id for execution"
-msgstr "Gruppen-ID zur Ausführung benutzen"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "Wählen Sie den Standard-Nutzer:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "Gabun"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
+"2. Garantie et limitations de garantie\n"
"\n"
-"Drucker an entfernten CUPS-Servern müssen hier nicht konfiguriert werden; "
-"diese Drucker werden automatisch erkannt."
-
-#: ../../any.pm:1
-#, 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."
-msgstr ""
-"Mandrake Linux unterstützt verschiedene Sprachen. Wählen\n"
-"Sie die Sprachen, die Sie installieren wollen.Diese stehen Ihnen zur\n"
-"Verfügung, nachdem die Installation fertig ist und Sie einen Neustart\n"
-"durchgeführt habe."
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
-"Bitte geben Sie das Verzeichnis (oder Modul) an,\n"
-" in dem die Archive auf diesem Rechner erstellt werden sollen."
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain"
-msgstr "Domäne"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Geben Sie, falls nötig, die genaue RAM-Größe an (%d MB gefunden)"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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"
+"Les Logiciels et la documentation qui les accompagne sont fournis en "
+"l'état \n"
+"et sans aucune garantie. MandrakeSoft S.A. décline toute responsabilité \n"
+"découlant d'un dommage direct, spécial, indirect ou accessoire, de quelque \n"
+"nature que ce soit, en relation avec l'utilisation des Logiciels, "
+"notamment \n"
+"et de façon non limitative, tout dommage entraîné par les pertes de \n"
+"bénéfices, interruptions d'activité, pertes d'informations commerciales ou \n"
+"autres pertes pécuniaires, ainsi que des éventuelles condamnations et \n"
+"indemnités devant être versées par suite d'une décision de justice, et ce \n"
+"même si MandrakeSoft S.A. a été informée de la survenue ou de \n"
+"l'éventualité de tels dommages.\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"
+"AVERTISSEMENT QUANT A LA DETENTION OU L'UTILISATION DE LOGICIELS \n"
+"PROHIBES DANS CERTAINS PAYS \n"
"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
+"En aucun cas, ni MandrakeSoft S.A. ni ses fournisseurs ne pourront être \n"
+"tenus responsable à raison d'un préjudice spécial, direct, indirect ou \n"
+"accessoire, de quelque nature que ce soit (notamment et de façon non \n"
+"limitative les pertes de bénéfices, interruptions d'activité, pertes \n"
+"d'informations commerciales ou autres pertes pécuniaires, ainsi que \n"
+"des éventuelles condamnations et indemnités devant être versées par suite \n"
+"d'une décision de justice) qui ferait suite à l'utilisation, la détention \n"
+"ou au simple téléchargement depuis l'un des sites de téléchargement de \n"
+"Mandrake Linux de logiciels prohibés par la législation à laquelle vous \n"
+"êtes soumis. Cet avertissement concerne notamment certains logiciels de \n"
+"cryptographie fournis avec les Logiciels.\n"
"\n"
-"If it cannot make a determination, DrakX will ask you where to place the\n"
-"bootloader."
-msgstr ""
-"LILO und grub sind Betriebssystemstarter für GNU/Linux. Diese\n"
-"Installationsphase läuft in den meisten Fällen völlig automatisch ab. DrakX\n"
-"analysiert den Bootsektor und ergreift dann die passenden Maßnahmen:\n"
"\n"
-" * Findet DrakX einen Windows-Bootsektor, ersetzt es ihn durch einen grub-\n"
-"oder LILO-Bootsektor. Sie erhalten dadurch die Möglichkeit, beim\n"
-"Systemstart zwischen Windows (bzw. anderen Betriebssystemen, sofern\n"
-"vorhanden) und GNU/Linux auszuwählen;\n"
+"3. Licence GPL et autres licences\n"
+"\n"
+"Les Logiciels sont constitués de modules logiciels créés par diverses \n"
+"personnes (physiques ou morales). Nombre d'entre eux sont distribués sous \n"
+"les termes de la GNU General Public Licence (ci-après dénommée « GPL ») ou \n"
+"d'autres licences similaires. La plupart de ces licences vous permettent \n"
+"de copier, d'adapter ou de redistribuer les modules logiciels qu'elles \n"
+"régissent. Veuillez lire et agréer les termes et conditions des licences \n"
+"accompagnant chacun d'entre eux avant de les utiliser. Toute question \n"
+"concernant la licence de chaque Logiciel est à soumettre à l'auteur (ou \n"
+"ses représentants) du Logiciel et non à MandrakeSoft. \n"
+"Les programmes conçus par MandrakeSoft sont régis par la licence GPL. \n"
+"La documentation rédigée par MandrakeSoft fait l'objet d'une licence \n"
+"spécifique. Veuillez vous référez à la documentation pour obtenir plus \n"
+"de précisions.\n"
"\n"
-" * Findet DrakX einen Linux-Bootsektor vor, ersetzt es ihn durch einen\n"
-"neuen.\n"
"\n"
-"Falls DrakX nicht weiß, wo der Betriebssystemstarter installiert werden\n"
-"soll, wird es Sie um Ihre Meinung bitten."
+"4. Propriété intellectuelle\n"
+"\n"
+"Tous les droits, titres et intérêts des différents Logiciels sont la \n"
+"propriété exclusive de leurs auteurs respectifs et sont protégés au titre \n"
+"des droits de propriété intellectuelle et autres lois régissant le droit \n"
+"des Logiciels. Les marques « Mandrake » et « Mandrake Linux » ainsi que "
+"les \n"
+"logotypes associés sont déposés par MandrakeSoft S.A. \n"
+"\n"
+"\n"
+"5. Dispositions diverses\n"
+"\n"
+"Si une disposition de ce contrat de licence devait être déclarée nulle, \n"
+"illégale ou inapplicable par un tribunal compétent, cette disposition sera \n"
+"exclue du présent contrat. Vous continuerez à être liés aux autres \n"
+"dispositions, qui recevront leurs pleins effets. Le contrat de licence \n"
+"est soumis à la Loi française. Toute contestation relative aux présentes \n"
+"sera réglée préalablement par voie amiable. A défaut d'accord avec \n"
+"MandrakeSoft S.A., les tribunaux compétents de Paris seront saisis du \n"
+"litige. Pour toute question relative au présent document, veuillez \n"
+"contacter MandrakeSoft S.A.\n"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "Zweiter DNS des Providers (optional)"
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
+msgstr "Sind Sie sicher, dass Sie die Lizenz zurückweisen wollen?"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "Boot-Gerät"
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "Tastatur"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Bei welcher Partition wollen Sie die Größe ändern?"
+#: ../../install_steps_interactive.pm_.c:218
+msgid "Please choose your keyboard layout."
+msgstr "Bitte wählen Sie Ihren Tastaturtyp."
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr "United States Minor Outlying Islands"
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
+msgstr "Hier die Liste aller Tastaturen"
-#: ../../lang.pm:1
-#, c-format
-msgid "Djibouti"
-msgstr "Djibouti"
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
+msgstr "Welche Installationsart wollen Sie durchführen?"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Ein Werkzeug zum Überwachen Ihrer Logbücher"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
+msgstr "Installation/Aktualisierung"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected on port %s"
-msgstr "an Prot %s gefunden"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
+msgstr "Handelt es sich um eine Installation oder eine Aktualisierung?"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD"
-msgstr "LPD"
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr "Empfehlenswert"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Grafikkarte: %s\n"
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Experte"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/Set as _Default"
-msgstr "/Als Standard setzen"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade"
+msgstr "Aktualisierung"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
-msgstr "Akzeptiere ICMP Echo"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade packages only"
+msgstr "Nur Pakete aktualisieren"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
+#: ../../install_steps_interactive.pm_.c:282
+msgid "Please choose the type of your mouse."
+msgstr "Bitte wählen Sie Ihren Maustyp."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Serie mit Mausrad Emulation"
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr "Maus Port"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "Diese Rechnerarchitektur kennt keine erweiterten Partitionen"
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
+msgstr "Bitte wählen Sie den seriellen Anschluss, an dem Ihre Maus hängt."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Splash selection"
-msgstr "Startschirmauswahl"
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
+msgstr "Tastenemulation"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "ISDN-Konfiguration"
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
+msgstr "Emulation der 2. Taste"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "high"
-msgstr "Hoch"
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
+msgstr "Emulation der 3. Taste"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Teilen der Internet-Verbindung"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr "PCMCIA Karten konfigurieren ..."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Choose file"
-msgstr "Datei wählen"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Summary: "
-msgstr "Zusammenfassung:"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr "IDE konfigurieren"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-"WARNUNG: Ich habe eine Firewall-Konfiguration gefunden. \n"
-"Möglicherweise müssen Sie nach der Installation einige Einstellungen \n"
-"von Hand vornehmen."
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Drucken/Fotokartenzugriff mit \"%s\""
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr "Keine Partition verfügbar"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
-msgstr "Täglicher Sicherheitscheck"
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
+msgstr "Durchsuchen der Partitionen, um die Einhängpunkte zu finden."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr "Wählen Sie die Einhängpunkte"
+
+#: ../../install_steps_interactive.pm_.c:386
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-"Wollen Sie oben aufgeführte Drucker oder Drucker im lokalen Netzwerk zum "
-"Drucken konfigurieren?\n"
+"Sie haben keinen Platz für die 1 MB große Start-Partition vorgesehen! Die "
+"Installation wird fortgesetzt, Sie müssen jedoch eine Start-Partition mit "
+"DiskDrake erstellen."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer default settings"
-msgstr "Standard-Einstellungen des Druckers"
+#: ../../install_steps_interactive.pm_.c:395
+msgid "No root partition found to perform an upgrade"
+msgstr ""
+"Es wurde keine Verzeichnisbaumwurzel gefunden, die aktualisiert werden kann."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Generische PS2 Rad-Maus"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr "Verzeichnisbaumwurzel"
-#: ../../standalone/harddrake2:1
-#, fuzzy, 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)"
-msgstr "memory Zustand Prozessor memory"
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr "Welche Partition ist Ihre Verzeichnisbaumwurzel?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Entferne alten Drucker \"%s\"..."
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+"Sie müssen Ihren Rechner neu starten, um die Änderungen \n"
+"der Partitionstabelle wirksam werden zu lassen."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Select a device !"
-msgstr "Wählen Sie ein Gerät!"
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr "Zu formatierende Partitionen auswählen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected server"
-msgstr "Löschen des markierten Servers"
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
+msgstr "Soll ich nach defekten Blöcken suchen?"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using dhcp) usb"
-msgstr "Sagem-USB (verwendet dhcp)"
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr "Partitionen formatieren"
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid "French Southern Territories"
-msgstr "French Southern Territories"
+msgid "Creating and formatting file %s"
+msgstr "Erzeugen und formatieren der Datei %s"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm_.c:470
#, c-format
-msgid "the vendor name of the processor"
-msgstr "Herstellername des Prozessors"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
msgid ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
-" \thelps in this respect by adding or removing system users from this "
-"file."
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-"\n"
-" system\n"
-"\n"
-" system file."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr "Sie sollten ein Backup sämtlicher Daten dieser Partition erstellen"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "Installation des Paketes %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr "Überprüfe Gerät und konfiguriere HPOJ..."
+"Es traten Fehler beim Kontrollieren des Dateisystems %s auf. Wollen Sie, "
+"dass ich versuche sie zu beheben? (Achtung: das kann zu Datenverlust führen)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-"Um mehr Partitionen einrichten zu können, müssen Sie zunächst eine Partition "
-"löschen und anschließend eine erweiterte Partition erzeugen"
+"Der Swap-Bereich ist zu klein, um die Installation zu ermöglichen! \n"
+"Bitte vergrößern Sie den Bereich."
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"Ihr Drucker wurde automatisch so konfiguriert, dass Sie von Ihrem Rechner "
-"auf die Foto-Speicherkartenlaufwerke zugreifen können. Sie können jetzt "
-"entweder mit dem grafischen Programm MToolsFM (Menü: \"Programme\" -> "
-"\"Dateiwerkzeuge\" -> \"MTools-Datei-Manager\") oder auf der Kommandozeile "
-"mit den mtools (Für mehr Informationen geben Sie \"man mtools\" auf der "
-"Kommandozeile ein) auf die eingelegte Karte zugreifen. Sie finden das "
-"Dateisystem der Karte unter dem Laufwerksbuchstaben \"p:\" oder, wenn Sie "
-"mehr als einen HP-Drucker mit Foto-Speicherkartenlaufwerken haben, unter den "
-"nachfolgenden Buchstaben. In MToolsFM können Sie zwischen den "
-"Laufwerksbuchstaben mit dem Feld über der oberen rechten Ecke der Dateiliste "
-"umschalten."
+#: ../../install_steps_interactive.pm_.c:479
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Suche nach vorhandenen Paketen und aktualisieren der RPM-Datenbank ..."
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "Zu installierende Pakete"
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr "Suche nach vorhandenen Paketen..."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"SÄMTLICHE existierende Partitionen samt der darauf befindlichen Daten \n"
-"auf Laufwerk %s gehen dabei verloren"
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Looking at packages already installed..."
+msgstr "Suche nach bereits installierten Paketen ..."
+
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr "Finden der zu aktualisierenden Pakete ..."
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:505
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -8230,4910 +5765,4303 @@ msgstr ""
"Es steht auf Ihrem System nicht genügend Speicherplatz für die \n"
"Installation bzw. Aktualisierung zur Verfügung (%d > %d)."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Jeder Drucker benötigt einen Namen (etwa \"Drucker\").\n"
-"Beschreibung und Standort müssen nicht ausgefüllt werden.\n"
-"Sie dienen nur als Kommentare für den Anwender."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:541
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."
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
msgstr ""
-"\"%s\": Durch Anwahl der Schaltfläche \"%s\" startet der Druckerassistent.\n"
-"Weitere Informationen zu diesem Assistenten erhalten Sie im Drucker-Kapitel\n"
-"des \"Starter-Handbuchs\". Das dort vorgestellte Programm entspricht dem\n"
-"während der Installation angebotenen."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr "Butan"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "Netzwerkkarte"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Die Trennung vom Internet schlug fehl!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
-msgstr "Lesen der Treiber-Datenbank ..."
+"Bitte wählen Sie, ob die Paketauswahl von Diskette geladen \n"
+"oder darauf gespeichert werden soll. Es handelt sich um das \n"
+"selbe Format, wie die unter „auto_install“ erzeugten Disketten."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "Korea"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Load from floppy"
+msgstr "Von Diskette laden"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Not connected"
-msgstr "Nicht Verbunden"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr "Auf Diskette speichern"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "Konfiguration der Internetverbindung"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Loading from floppy"
+msgstr "Laden von Diskette ..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
-msgstr "Griechenland"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Package selection"
+msgstr "Auswahl der Pakete"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr "St. Kitts und Nevis"
+#: ../../install_steps_interactive.pm_.c:552
+msgid "Insert a floppy containing package selection"
+msgstr ""
+"Legen Sie eine Diskette ein, auf der Ihre Paketauswahl gespeichert ist."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Generische 3 Tasten Maus mit Mausrad Emulation"
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
+msgstr "Gewünschte Größe übersteigt den verfügbaren Platz"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
-msgstr "Open-Firmware-Start erlauben"
+#: ../../install_steps_interactive.pm_.c:649
+msgid "Type of install"
+msgstr "Installationsklasse"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
+#: ../../install_steps_interactive.pm_.c:650
+msgid ""
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
msgstr ""
-"Sie können JFS nicht für Partitionen verwenden, die kleiner als 16MB sind!"
+"Sie haben keine Paketgruppe ausgewählt\n"
+"Bitte wählen Sie die minimale Installation, die Sie wünschen."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "RW-Medium löschen (erste Session)"
+#: ../../install_steps_interactive.pm_.c:653
+msgid "With X"
+msgstr "Mit X"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Monitor Vert. Frequenz: %s\n"
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
+msgstr "Mit minimaler Dokumentation (Empfohlen)"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "Einhängepunkt"
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Extrem minimale Installation (ohne „urpmi“)"
-#: ../../Xconfig/test.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:741
msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
+"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 ""
-"Es trat ein Fehler auf:\n"
-"%s\n"
-"Versuchen Sie, einen Parameter zu ändern."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP-Rechner \"%s\", Port %s"
+"Falls Sie alle aufgeführten CDs haben, wählen Sie „OK“, \n"
+"falls Sie keine der aufgeführten CDs haben, wählen Sie „Abbruch“,\n"
+"falls nur einige der aufgeführten CDs fehlen, entfernen Sie die \n"
+"entsprechende Markierung und wählen Sie dann „OK“."
-#: ../../standalone/drakperm:1
+#: ../../install_steps_interactive.pm_.c:746
#, c-format
-msgid "User :"
-msgstr "Benutzer :"
+msgid "Cd-Rom labeled \"%s\""
+msgstr "CD-ROM „%s“"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore system"
-msgstr "System wiederherstellen"
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr "Installation vorbereiten"
-#: ../../standalone/scannerdrake:1
+#: ../../install_steps_interactive.pm_.c:776
#, c-format
msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
+"Installing package %s\n"
+"%d%%"
msgstr ""
-"Das sind die Rechner und Netzwerke, für die die lokalen Scanner zugänglich "
-"sein sollen:"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
-msgstr "Die letzte DHCP-IP"
+"Installiere Paket %s\n"
+"%d%%"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Another one"
-msgstr "Anderer"
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
+msgstr "Einstellungen für nach der Installation"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:828
#, c-format
-msgid "Drakbackup"
-msgstr "DrakBackup"
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Bitte legen Sie die Startdiskette in Laufwerk %s ein."
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:834
#, c-format
-msgid "Colombia"
-msgstr "Kolumbien"
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr ""
+"Bitte legen Sie die Diskette der zu aktualisiernden Module in Laufwerk %s "
+"ein."
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:861
msgid ""
-"Current configuration of `%s':\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates ?"
msgstr ""
-"Aktuelle Konfiguration von \"%s\":\n"
+"Sie haben nun die Möglichkeit Pakete zu installieren, die nach Erscheinen\n"
+"der Distribution aktualisiert wurden. Es handelt sich um \n"
+"Sicherheitsaktualisierungen und Fehlerkorrekturen.\n"
"\n"
-"Netzwerk: %s\n"
-"IP-Adresse: %s\n"
-"IP-Eigenschaften: %s\n"
-"Treiber: %s"
+"Allerdings benötigen Sie dafür eine funktionierende Internertverbindung.\n"
+"\n"
+"Möchten Sie die Aktualisierungen vornehmen?"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n'Play"
+#: ../../install_steps_interactive.pm_.c:876
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgstr ""
+"Verbindung mit dem Mandrake Linux Web-Server aufbauen, um eine Liste\n"
+"verfügbarer Pakete zu erhalten."
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr "Réunion"
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
+msgstr "Bitte wählen Sie einen Mirror, von dem Sie die Pakete holen wollen."
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "Details"
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr ""
+"Verbindung mit dem Mirror aufbauen, um eine Liste verfügbarer Pakete zu "
+"erhalten."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Aus Sicherheitsgründen wird die Verbindung nun unterbrochen."
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr "Wählen Sie Ihre Zeitzone"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Synchronization tool"
-msgstr "Synchronisationsprogramm"
+#: ../../install_steps_interactive.pm_.c:923
+msgid "Hardware clock set to GMT"
+msgstr "Hardware Uhr liefert GMT"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking your system..."
-msgstr "Untersuchung Ihres Rechners ..."
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Automatische Zeit-Synchronisation (durch NTP)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print"
-msgstr "Drucken"
+#: ../../install_steps_interactive.pm_.c:931
+msgid "NTP Server"
+msgstr "NTP Server"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-"Legen Sie das Band mit dem Namen %s\n"
-"in das Bandlaufwerk %s"
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
+msgstr "CUPS-Server im Netzwerkbetrieb"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "Mongolei"
+#: ../../install_steps_interactive.pm_.c:966
+msgid "No printer"
+msgstr "Kein Drucker"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
-msgstr "Eingehängt\n"
+#: ../../install_steps_interactive.pm_.c:982
+msgid "Do you have an ISA sound card?"
+msgstr "Verfügen Sie über eine ISA soundkarte?"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS"
-msgstr "CUPS konfigurieren"
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
+msgstr ""
+"Starten Sie „sndconfig“ nach der Installation, um Ihre Soundkarte "
+"einzurichten."
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Interface"
-msgstr "Grafikumgebung"
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
+"Es wurde keine Soundkarte gefunden. Versuchen Sie „harddrake“nach der "
+"Installation."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Users"
-msgstr "Benutzer wiederherstellen"
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
+msgstr "Zusammenfassung"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Schlüssel für %s"
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
+msgstr "Maus"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to recover your system?"
-msgstr "Möchten Sie ihr System wiederherstellen?"
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
+msgstr "Zeitzone"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"Mittels portmapper werden RPC-Verbindungen verwaltet, die etwa von \n"
-"den Protokollen NFS und NIS verwendet werden. Auf Rechnern, die \n"
-"solche Server (RPC-basierte) beherbergen, muss dieser Dienst \n"
-"aktiviert sein."
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "Drucker"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detected hardware"
-msgstr "Gefundene Hardware"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
+msgstr "ISDN Karte"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr "Mauritius"
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
+msgstr "Soundkarte"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
-msgstr "Myanmar (Burmesien)"
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
+msgstr "TV-Karte"
-#: ../../fs.pm:1
-#, c-format
-msgid "Enabling swap partition %s"
-msgstr "Swap Partition \"%s\" aktivieren"
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
+msgstr "LDAP"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"Sie haben keine FAT-Partition, die ich als Loopback verwenden kann\n"
-"(möglicherweise haben Sie auch einfach nur nicht mehr genügend\n"
-"freien Speicher)."
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+msgid "NIS"
+msgstr "NIS"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr "Armenien (alt)"
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+msgid "Windows Domain"
+msgstr "Windows Domäne"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"Es existiert bereits ein Drucker mit Namen \"%s\" unter %s.\n"
-"Durch Betätigen der Schaltfäche \"Übertragen\" können Sie ihn\n"
-"überschreiben. Sie können dem Drucker auch einen neuen \n"
-"Namen geben oder ihn einfach überspringen."
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+msgid "Local files"
+msgstr "Lokale Dateien"
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
-msgstr ""
-"Finden Sie für jedes Problem eine Lösung auf Mandrake's Online-Support-"
-"Plattform."
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr "Root-Passwort setzen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", Rechner \"%s\", Port %s"
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr "Kein Passwort"
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "Monaco"
-msgstr "Monaco"
+msgid "This password is too short (it must be at least %d characters long)"
+msgstr ""
+"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Das Partitionieren schlug fehl: %s"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "Authentifizierung"
-#: ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formatieren von %s schlug fehl"
+#: ../../install_steps_interactive.pm_.c:1088
+msgid "Authentication LDAP"
+msgstr "LDAP Authentifizierung"
-# ../../standalone/drakxtv_.c:37ç
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Canada (cable)"
-msgstr "Kanada (Kabel)"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
+msgstr "LDAP Base dn"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Floppy creation completed"
-msgstr "Diskette erfolgreich erstellt"
+#: ../../install_steps_interactive.pm_.c:1090
+msgid "LDAP Server"
+msgstr "LDAP Server"
-#: ../../help.pm:1
-#, c-format
-msgid "Upgrade"
-msgstr "Aktualisierung"
+#: ../../install_steps_interactive.pm_.c:1096
+msgid "Authentication NIS"
+msgstr "NIS Authentifizierung"
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
-msgstr "Arbeitsplatzrechner"
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr "NIS Server"
+
+#: ../../install_steps_interactive.pm_.c:1104
msgid ""
-"Installing package %s\n"
-"%d%%"
+"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 ""
-"Installiere Paket %s\n"
-"%d%%"
+"Damit dies mit einem Windows 2000-Domänen-Controller funktioniert, muss der "
+"Administrator folgendes Ausführen: „C:\\>net localgroup \"Pre-Windows 2000 "
+"Compatible Access\" everyone /add“. Anschließend muss der Server neu "
+"gestartet werden.\n"
+"Damit Sie Ihren Mandrake Linux Rechner zur Windows(TM) Domäne hinzufügen "
+"können, benötigen Sie noch Kennzeichen und Passwort des "
+"Domänenadministrators.\n"
+"Sollte das Netzwerk noch nicht aktiv sein, wird DrakX nach der "
+"Netzwerkkonfiguration versuchen, sich in die Domäne zu integrieren.\n"
+"Sollte dies schief gehen, und die Domänenauthentifizierung funktioniert "
+"nicht, verwenden Sie nach der Instalation von Mandrake Linux folgenden "
+"Befehl: „smbpasswd -j DOMÄNE -U KENNZEICEN%PASSWORT“, wobei „DOMÄNE“ die "
+"Windows(TM) Domäne ist, „KENNZEICHEN“ und „PASSWORT“ das Kennzeichen und das "
+"Passwort des Domänenadministrators.\n"
+"Mit „wbinfo -t“ können Sie anschließend testetn, ob die Anmeldung "
+"erfolgreich war."
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
-msgstr "Kirgisistan"
+#: ../../install_steps_interactive.pm_.c:1106
+msgid "Authentication Windows Domain"
+msgstr "Windows Domänenauthentifizierung"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "USB-Multifunktionsgerät"
+#: ../../install_steps_interactive.pm_.c:1108
+msgid "Domain Admin User Name"
+msgstr "Name des Domänenadministrators"
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
+msgstr "Paswort des Administrators"
+
+#: ../../install_steps_interactive.pm_.c:1144
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"
+"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"
-"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."
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
msgstr ""
+"Mit einer individuellen Startdiskette können Sie Ihr LINUX-System starten, \n"
+"ohne auf einen Betriebssystemstarter angewiesen zu sein. Dies ist "
+"nützlich, \n"
+"wenn Sie SILO nicht auf Ihrem System installieren möchten, wenn ein \n"
+"anderes Betriebssystem SILO entfernt hat oder Ihre Hardware-Konfiguration \n"
+"die Verwendung eines BS-Starters nicht korrekt verarbeitet. \n"
+"Eine individuelle Startdiskette kann auch in Verbindung mit der \n"
+"Mandrake Linux Rettungsdiskette verwendet werden, wodurch das System \n"
+"nach schwerwiegenden Fehlern viel einfacher wiederhergestellt werden \n"
+"kann.\n"
+"\n"
+"Falls Sie eine Startdiskette erstellen wollen, legen Sie eine Diskette \n"
+"ohne relevante Daten in ihr erstes Laufwerk und drücken Sie „OK“."
-#: ../../help.pm:1
-#, c-format
-msgid "With basic documentation"
-msgstr "Mit minimaler Dokumentation (Empfohlen)"
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr "erste Disketten-Laufwerk"
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr ""
-"Mit dem Dienst anacron können cron-Prozesse auch zu anderen als den \n"
-"vorgegebenen Zeiten gestartet werden. Dies ist vor Allem dann \n"
-"sinnvoll, wenn Ihr Rechner nicht rund um die Uhr läuft, da sonst \n"
-"Prozesse, die etwa zwischen Mitternacht und 6:00 Uhr gestartet \n"
-"werden sollten, nie ausgeführt würden."
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "zweite Disketten-Laufwerk"
+
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "Überspringen"
-#: ../../install_interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:1167
#, 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 `/'"
+"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"
msgstr ""
-"Sie brauchen eine root-Partition.\n"
-"Erzeugen Sie eine Partition (oder klicken Sie auf eine existierende).\n"
-"Wählen Sie \"Einhängepunkt\" und setzen Sie ihn auf \"/\""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "Westsahara"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Proxy muss \"http://...\" sein"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr "Südafrika"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Band nach der Sicherung auswerfen"
+"Mit einer individuellen Startdiskette können Sie Ihr LINUX-System starten, \n"
+"ohne auf den normalen Betriebssystemstarter angewiesen zu sein. Dies ist "
+"nützlich, wenn \n"
+"Sie weder LILO noch Grub auf Ihrem System installieren möchten, wenn ein \n"
+"anderes Betriebssystem Ihren Betriebssystemstarter entfernt hat oder Ihre "
+"Hardware-Konfiguration die Verwendung eines Betriebssystemstarters nicht "
+"korrekt \n"
+"verarbeitet. Eine individuelle Startdiskette kann auch mit der Linux \n"
+"Mandrake Rettungsdiskette verwendet werden, wodurch das System nach \n"
+"schwerwiegenden Fehlern viel einfacher wiederhergestellt werden kann.\n"
+"\n"
+"Möchten Sie jetzt eine Startdiskette für Ihr System erstellen?\n"
+"%s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot Diskette/ISO"
+#: ../../install_steps_interactive.pm_.c:1173
+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)."
+msgstr ""
+"\n"
+"\n"
+"(WARNUNG! Sie verwenden XFS für Ihre Verzeichnisbaumwurzel.\n"
+"Das Erstellen einer Startdiskette auf einem 1,44 MB Medium \n"
+"schlä sicher fehl, da XFS einen sehr großen Treiber benötigt)."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Drucker-Konfiguration ändern"
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "Ich kann kein Laufwerk finden"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
-msgstr "Wählen Sie eine Partition"
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr ""
+"Wählen Sie das Laufwerk, in dem Sie die Start-Diskette erstellen wollen"
-#: ../../standalone/drakperm:1
+#: ../../install_steps_interactive.pm_.c:1189
#, c-format
-msgid "Edit current rule"
-msgstr "Aktuelle Regel bearbeiten"
+msgid "Insert a floppy in %s"
+msgstr ""
+"Legen Sie eine Diskette, die keine relevanten Daten mehr enthält in „%s“ ein."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
-msgstr "%s"
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr "Startdiskette wird erstellt..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Please test the mouse"
-msgstr "Bitte testen Sie Ihre Maus"
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr "Betriebssystemstarter vorbereiten"
-#: ../../fs.pm:1
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1210
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 "An file system An news news."
+"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 to boot your machine"
+msgstr ""
+"Sie scheinen einen „OldWorld“ oder unbekannten\n"
+"Rechner zu verwenden. Der Betriebssystemstarter\n"
+"„yaboot“ wird daher leider nicht funktionieren.\n"
+"Die Installation wird fortgesetzt, sie werden jedoch \n"
+"„BootX“ verwenden müssen um LINUX auf Ihrem Rechner\n"
+"zu starten."
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3 Tasten mit Mausrad Emulation"
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
+msgstr "Möchten Sie „aboot“ verwenden?"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Sticky-bit"
-msgstr "Sticky-bit"
+#: ../../install_steps_interactive.pm_.c:1219
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Fehler bei der Installation von aboot. Soll ich die Installation \n"
+"mit Gewalt versuchen, auch wenn dies die Zerstörung der ersten \n"
+"Partition verursachen kann?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other Media"
-msgstr "Anderes Medium"
+#: ../../install_steps_interactive.pm_.c:1226
+msgid "Installing bootloader"
+msgstr "Betriebssystemstarter installieren"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MausMan/FirstMaus (Seriell)"
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr ""
+"Die Installation des BS-Starters schlug Fehl. Folgender Fehler trat auf:"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:1240
#, c-format
-msgid "Backup system files"
-msgstr "Systemdateien sichern"
+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 ""
+"Sie müssen Ihr Open Firmware Startgerät anpassen, dass es den \n"
+"BS-Starter erkennt. Falls Sie beim Neustart nicht die \n"
+"Eingabeaufforderung des BS-Starters sehen, drücken Sie \n"
+"Strg-Option-O-F und geben Sie folgendes ein:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+"Tippen Sie dann: shut-down\n"
+"Beim darauffolgenden Neustart sollte Sie die Eingabeaufforderung sehen."
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "Sector"
-msgstr "Sektor"
+msgid "Insert a blank floppy in drive %s"
+msgstr "Legen Sie eine leere Diskette in das %s ein."
-#: ../../lang.pm:1
-#, c-format
-msgid "Qatar"
-msgstr "Quatar"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
+msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Base dn"
-msgstr "LDAP-Base dn"
+#: ../../install_steps_interactive.pm_.c:1289
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Einige Schritte sind noch nicht komplett.\n"
+"\n"
+"Wollen Sie DrakX wirklich beenden?"
-#: ../../install_steps_gtk.pm:1
+#: ../../install_steps_interactive.pm_.c:1300
#, c-format
msgid ""
-"You can't select this package as there is not enough space left to install it"
+"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 ""
-"Sie können dieses Paket nicht auswählen, da Sie nicht genug Plattenplatz "
-"haben."
+"Herzlichen Glückwunsch, die Installation ist abgeschlossen.\n"
+"Entfernen Sie die Startmedien (CD-ROMs / Disketten) und drücken Sie die "
+"Eingabetaste zum Neustart Ihres Rechners.\n"
+"\n"
+"Für Informationen zu Sicherheitsaktualisierungen dieser Version von Mandrake "
+"Linux informieren Sie sich bitte unter \n"
+"\n"
+"%s\n"
+"\n"
+"Wie Sie Ihr System warten können, erfahren Sie im Kapitel „Nach der "
+"Installation“ im offiziellen Benutzerhandbuch von Mandrake Linux."
-#: ../../help.pm:1
-#, c-format
-msgid "generate auto-install floppy"
-msgstr "Erstellen einer Auto-Installationsdiskette"
+#: ../../install_steps_interactive.pm_.c:1313
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr "Wählmodus"
+#: ../../install_steps_interactive.pm_.c:1318
+msgid "Generate auto install floppy"
+msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr "Gemeinsamer Dateizugriff"
+#: ../../install_steps_interactive.pm_.c:1320
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Die automatische Installation kann, falls Sie wollen,\n"
+"vollautomatisch erfolgen. In diesem Fall wird die\n"
+"Festplatte vollständig durch DrakX rekonfiguriert\n"
+"(diese Möglichkeit ist für die Replikation auf anderen\n"
+"Rechnern gedacht).\n"
+"\n"
+"Vermutlich werden Sie es vorziehen, erneut eine normale\n"
+"Installation durchzuführen.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "Die Partition /tmp bei jedem Systemstart säubern"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
+msgstr "Automatisiert"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malawi"
-msgstr "Malawi"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Replay"
+msgstr "Erneut abspielen"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: false"
-msgstr "Lokale Einstellung: fehlerhaft"
+#: ../../install_steps_interactive.pm_.c:1328
+msgid "Save packages selection"
+msgstr "Paketauswahl speichern"
-#: ../../standalone/drakperm:1
+#: ../../install_steps_newt.pm_.c:20
#, c-format
-msgid "System settings"
-msgstr "System Einstellungen"
+msgid "Mandrake Linux Installation %s"
+msgstr "Mandrake Linux Installation %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Bitte wählen Sie Ihren Maustyp."
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
+msgid ""
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr ""
+" <Tab>/<Alt-Tab> nächstes Element | <Leertaste> auswählen | <F12> weiter "
-#: ../../services.pm:1
-#, c-format
-msgid "running"
-msgstr "aktiv"
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
+msgstr "Ich kann „kdesu“ nicht finden!"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "class of hardware device"
-msgstr "Hardwareklasse"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
+msgstr "Das Programm „consolehelper“ wurde nicht gefunden."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-"Das sind die Rechner und Netzwerke, für die die lokalen Drucker zugänglich "
-"sein sollen:"
+#: ../../interactive.pm_.c:152
+msgid "Choose a file"
+msgstr "Wählen Sie eine Datei"
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "Großbritannien"
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
+msgstr "Fortgeschritten"
-#: ../../lang.pm:1
-#, c-format
-msgid "Indonesia"
-msgstr "Indonesien"
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
+msgstr "Einfach"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr " Standard "
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
+msgstr "<- Zurück"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "France [SECAM]"
-msgstr "Frankreich (SECAM)"
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+msgid "Next"
+msgstr "Weiter"
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "Einschränken"
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr "Schlechte Wahl, bitte versuchen Sie es noch einmal\n"
-#: ../../pkgs.pm:1
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "must have"
-msgstr "unbedingt notwendig"
+msgid "Your choice? (default %s) "
+msgstr "Ihre Wahl? (Standard ‚%s‘) "
-#: ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-"CUPS unterstützt keine Drucker an Novell-Servern oder Drucker, die ihre "
-"Daten in ein frei gewähltes Kommando senden.\n"
+"Angaben, die Sie machen müssen:\n"
+"%s"
-#: ../../lang.pm:1
+#: ../../interactive/stdio.pm_.c:70
#, c-format
-msgid "Senegal"
-msgstr "Senegal"
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Ihre Wahl? (0/1, Standard ‚%s‘) "
-#: ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm_.c:95
#, c-format
-msgid "Command line"
-msgstr "Kommandozeile"
+msgid "Button `%s': %s"
+msgstr "Schaltfläche „%s“: %s"
-#: ../advertising/08-store.pl:1
-#, 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:"
-msgstr ""
-"Unser komplettes Angebot an Linux-Lösungen, sowie Sonderangebote und "
-"Fanartikel sind in unserem e-Store erhältlich:"
+#: ../../interactive/stdio.pm_.c:96
+msgid "Do you want to click on this button?"
+msgstr "Möchten Sie diese Schaltfläche betätigen?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "March"
-msgstr "März"
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
+msgstr "Geben Sie „void“ füen Leeren Eintrag an"
-#: ../../any.pm:1
+#: ../../interactive/stdio.pm_.c:105
#, c-format
-msgid "access to administrative files"
-msgstr "Zugriff auf Verwaltungsdateien"
+msgid "Your choice? (default `%s'%s) "
+msgstr "Ihre Wahl? (Standard „%s“ %s) "
-#: ../../standalone/drakbackup:1
+#: ../../interactive/stdio.pm_.c:123
#, c-format
+msgid "=> There are many things to choose from (%s).\n"
+msgstr "=> Es gibt zahlreiche Auswahlmöglichkeiten (%s).\n"
+
+#: ../../interactive/stdio.pm_.c:126
msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
msgstr ""
-"Sendmail-Fehler\n"
-" Ihre Bericht-Mail konnte nicht versandt werden.\n"
-" Bitte richten Sie Sendmail ein."
+"Bitte wählen Sie die Nummer aus dem Bereich, die Sie bearbeiten wollen,\n"
+"oder betägen Sie die Eingabetaste um fort zu fahren.Ihre Wahl? "
-#: ../../fs.pm:1
+#: ../../interactive/stdio.pm_.c:139
#, 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.)"
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
+"=> Anmerkung: Ein Eintrag wurde geändert:\n"
+"%s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Automatische Abhängigkeiten"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "Swap"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
+msgstr "Erneut verschicken"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom settings"
-msgstr "Benutzerdefinierte Einstellungen"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "Tschechien (QWERTZ)"
-#: ../../../move/move.pm:1
-#, 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."
-msgstr ""
-"Der Schreibschutz des USB Schlüsseln scheint aktiv zu sein, aber das "
-"sichere\n"
-"Entfernen ist jetzt nicht möglich.\n"
-"\n"
-"\n"
-"Klicken Sie auf die Schaltfläche, um den Rechner neu zu starten, entfernen "
-"sie\n"
-"den USB Schlüssel, deaktivieren Sie den Schreibschutz und starten Sie\n"
-"Mandrake Move erneut. "
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "Deutschland"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Other"
-msgstr "Sonstiges wiederherstellen"
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Dvorak"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "TV-Karte"
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "Spanien"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Drucker an SMB/Windows 9x/ME/NT"
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "Finnland"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_CUPS konfigurieren"
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "Frankreich"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
-msgstr ", "
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "Norwegen"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
-msgstr ""
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "Polen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Löschen der markierten Rechner/Netzwerke"
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "Russland"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix ist ein E-Mail-Transport-Dienst. Mit seiner Hilfe werden \n"
-"E-Mails zwischen verschiedenen Rechnern ausgetauscht."
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
+msgstr "Schweden"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "Usbekistan (Kyrillisches Layout)"
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "Grßbritannien"
-#: ../../keyboard.pm:1
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Hier können Sie die Taste, bzw Tastenkombination wählen, \n"
-"mit der Sie zwischen verschiedenen Tastaturbelegungen \n"
-"umschalten können, etwa zwischen deutschem und US-Layout."
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "Vereinigte Staaten von Amerika"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Netzwerk Hotplugging"
+#: ../../keyboard.pm_.c:167
+msgid "Albanian"
+msgstr "Albanien"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr "Wenn ja, werden Prüfergebnisse nach tty gesendet."
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
+msgstr "Armenien (alt)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From CD"
-msgstr "Von CD wiederherstellen"
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
+msgstr "Armenien (Schreibmaschine)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Sie sind dabei, Ihren Rechner zu konfigurieren, dass er die eingerichtete \n"
-"Internetverbindung mit einem lokalen Netzwerk teilt.\n"
-"\n"
-"Stellen Sie sicher, dass Sie Ihre Netzwerk-/Internetverbindung\n"
-"mit DrakConnect eingerichtet haben, bevor Sie fortfahren.\n"
-"Anmerkung: Sie benötigen eine Netzwerkkarte, mit deren Hilfe Sie ein \n"
-"lokales Netz (LAN) aufsetzen können."
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
+msgstr "Armenien (Phonetisch)"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr ""
-"Bitte wählen Sie, über welches Netzwerkgerät Sie die \n"
-"Internetverbindung herstellen wollen."
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
+msgstr "Aserbeidschan (Lateinisches Layout)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Photo Speicherkarten Zugriff auf Ihrem HP Multifunktionsgerät"
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "Belgien"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
-msgstr ""
-"Erweitern Sie die Einsatzmöglichkeiten Ihres Computers mit der Hilfe einer "
-"erlesenen Auswahl an Partnerfirmen, die professionelle Lösungen für Mandrake "
-"Linux anbieten"
+#: ../../keyboard.pm_.c:178
+msgid "Bengali"
+msgstr "Bangladesh"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
-msgstr "Autoren: "
+#: ../../keyboard.pm_.c:179
+msgid "Bulgarian (phonetic)"
+msgstr "Bulgarien (Phonetisch)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Gemeinsame Internet-Verbindung ist nun abgeschaltet."
+#: ../../keyboard.pm_.c:180
+msgid "Bulgarian (BDS)"
+msgstr "Bulgarien (BDS)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr "Wenn ja, kontrolliere die Prüfsumme der suid/sgid Dateien"
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
+msgstr "Brasilien (ABNT-2)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latin American"
-msgstr "Lateinamerika"
+#: ../../keyboard.pm_.c:184
+msgid "Bosnian"
+msgstr "Bosnien"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Druck Modus für Japanischen Text"
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
+msgstr "Weißrussland"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Old device file"
-msgstr "Alte Gerätedatei"
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "Schweiz (deutsches Layout)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "Info: "
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "Schweiz (französisches Layout)"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Schaltfläche \"%s\": %s"
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "Tschechien (QWERTY)"
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Bitte warten"
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr "Deutschland (ohne Akzenttasten)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMaus"
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
+msgstr "Devanagari"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "None"
-msgstr "Keine"
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "Dänemark"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Die eingegebene IP ist nicht korrekt.\n"
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Dvorak (USA)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Stellen Sie sicher, dass der Cron-Dämon als Dienst aktiviert ist."
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Norwegen)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
-msgstr "Netzwerkkarte"
+#: ../../keyboard.pm_.c:196
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (Schweden)"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete selected printer"
-msgstr "Ausgewählte Drucker entfernen"
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "Estland"
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "Info"
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Georgien (Kyrillisches Layout)"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "Installation"
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Georgien (Lateinisches Layout)"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Betätigen Sie die Schaltfläche \"%s\", wenn Sie alle Partitionen und die\n"
-"darauf befindlichen Daten löschen wollen. Bedenken Sie, dass Sie nach\n"
-"Betätigen der Schaltfläche \"%s\" auch an die möglicherweise noch "
-"vorhandenen\n"
-"Windows-Daten nicht mehr gelangen werden!\n"
-"\n"
-"Wählen Sie \"%s\", um die Aktion ohne Datenverlust abzubrechen."
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "Griechenland"
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "Installation beenden"
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
+msgstr "Indien (Gujarati)"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
-msgstr "Brauche einen Schlüssel, um Ihre Daten zu speichern"
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
+msgstr "Indien (Gurmukhi)"
-#: ../../standalone/drakgw:1
-#, 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)."
-msgstr ""
-"Es wurde alles eingerichtet.\n"
-"Sie können Ihre Internetverbindung nun anderen Rechnern in Ihrem \n"
-"lokalen Netz mittels automatischer Netzwerk-Konfiguration (DHCP) \n"
-"teilen."
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "Ungarn"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
-msgstr "CUPS-Server im Netzwerkbetrieb"
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "Kroatien"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - Maus"
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
+msgstr "Israel"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Sie haben nur eine konfiguriertes Netzwerkgerät an Ihrem Rechner:\n"
-"\n"
-"%s\n"
-"\n"
-"Ich setze ihr lokales Netz damit auf."
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr "Israel (Phonetisch)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
-msgstr ""
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr "Iran"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Minimal install"
-msgstr "Minimal-Installation"
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr "Island"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "Äthiopien"
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "Italien"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
-msgstr "JA"
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
+msgstr "Grönland (Inuktitut)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
-msgstr "Aktiviere \"crontab\" und \"at\" für Benutzer"
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
+msgstr "Japan (106 Tasten)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr "Devanagari"
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
+msgstr "Korea"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- PCI Geräte: PCI-Slot, Gerät und Gerätetyp\n"
-"- EIDE Geräte: Master- oder Slave-Gerät\n"
-"- SCSI Geräte: Der SCSI-Bus und die Geräte-ID"
+#: ../../keyboard.pm_.c:218
+msgid "Latin American"
+msgstr "Lateinamerika"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Gesamtgröße: %d / %d MB"
+#: ../../keyboard.pm_.c:219
+msgid "Laotian"
+msgstr "Laos"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "disabled"
-msgstr "deaktiviert"
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
+msgstr "Litauen (AZERTY - alt)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Search for new scanners"
-msgstr "Suche nach neuen Scannern"
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
+msgstr "Litauen (AZERTY - neu)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Disabling servers..."
-msgstr "Deaktiviere Server ..."
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Litauen (QWERTY - „number row“)"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Die Installation von %s schlug fehl. Folgender Fehler trat auf:"
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Litauen (QWERTY - Phonetisch)"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr "Ich kann \"mkinitrd -f /boot/initrd-%s.img %s\" nicht ausführen."
+#: ../../keyboard.pm_.c:225
+msgid "Latvian"
+msgstr "Lettland"
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
msgstr ""
-"Sie haben die folgenden Server ausgewählt: %s\n"
-"\n"
-"\n"
-"Diese Server werden standardmäßig aktiviert. Sie haben keine bekannten\n"
-"Sicherheitsprobleme, jedoch könnten einige neue entdeckt werden. Stellen\n"
-"Sie deshalb sicher, dass Sie diese Pakete so zeitig wie möglich "
-"aktualisieren.\n"
-"\n"
-"\n"
-"Wollen Sie diese Server wirklich installieren?\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Netzwerkdrucker (TCP/Socket)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup User files..."
-msgstr "Benutzerdateien sichern ..."
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "System installieren"
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
+msgstr "Mazedonien"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Erster DNS-Server (optional)"
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
+msgstr "Myanmar (Burmesien)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-"Alternativ können Sie einen Geräte- oder Dateinamen in der Eingabezeile "
-"angeben"
+#: ../../keyboard.pm_.c:229
+msgid "Mongolian (cyrillic)"
+msgstr "Mongolei (Kyrillisches Layout)"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid ""
-"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
-"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
-"symlink /etc/security/msec/server to point to\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
-"add a service if it is present in the file during the installation of\n"
-"packages."
-msgstr "Server Server<SERVER_LEVEL> Server file."
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
+msgstr "Malta (GB)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "Russland (Phonetisch)"
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
+msgstr "Malta (USA)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Config..."
-msgstr "DHCP Konfigurieren ..."
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
+msgstr "Niederlande"
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "LILO/Grub Installation"
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
+msgstr "Polen (QWERTY Layout)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "Israel"
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
+msgstr "Polen (QWERTZ Layout)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Drucker \"%s\", auf Server \"%s\""
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
+msgstr "Portugal"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Sie können die Diskette nun entfernen"
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr "Kanada (Québec)"
-#: ../../help.pm:1
-#, c-format
-msgid "Truly minimal install"
-msgstr "Minimal-Installation"
+#: ../../keyboard.pm_.c:239
+msgid "Romanian (qwertz)"
+msgstr "Rumänien (QWERTZ)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "Dänemark"
+#: ../../keyboard.pm_.c:240
+msgid "Romanian (qwerty)"
+msgstr "Rumänien (QWERTY)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "Bewege Partition..."
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "Russland (YaWERTY)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "(This) DHCP Server IP"
-msgstr "(Diese) DHCP-Server-IP"
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
+msgstr "Slowenien"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Test of the configuration"
-msgstr "Prüfen der Einstellungen"
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "Slowakei (QWERTZ)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing %s ..."
-msgstr "Installiere %s ..."
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "Slowakei (QWERTY)"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Wenn Sie sich für eine individuelle Paketauswahl entschieden haben,\n"
-"erscheint eine Baumliste aller Pakete die nach Gruppen und Untergruppen\n"
-"klassifiziert sind. Beim Durchstöbern des Baums, können Sie Gruppen,\n"
-"Untergruppen oder einzelne Pakete markieren oder deren Markierung "
-"entfernen.\n"
-"\n"
-"Sobald Sie ein Paket auswählen, erscheint rechts eine kurze Beschreibung,\n"
-"die den Zweck des Paketes erklärt.\n"
-"!! Es kommt vor, dass Server- und Dienst-Pakete angewählt wurden - entweder\n"
-"absichtlich, oder als Paket einer ganzen Gruppe; sollte das der Fall sein,\n"
-"werden Sie nun gefragt, ob Sie diese wirklich installiert haben wollen.\n"
-"Unter Mandrake Linux werden installierte Server und Dienste automatisch\n"
-"beim Betriebssystemstart gestartet. Selbst wenn zum Zeitpunkt, als die\n"
-"Distribution zusammengestellt wurde, keine Sicherheitslücken oder Fehler in\n"
-"diesen Paketen bekannt waren, ist natürlich nicht auszuschließen, dass\n"
-"später solche Fehler gefunden werden. Sollten Sie also nicht wissen, wovon\n"
-"hier die Rede ist, wählen Sie sicherheitshalber lieber \"%s\". Falls Sie "
-"mit\n"
-"\"%s\" antworten, werden die Dienste und Server installiert und stehen "
-"Ihnen\n"
-"nach der Installation standardmäßig zur Verfügung. !!\n"
-"\n"
-"Die Option \"%s\" unterdrückt nur die Warnungen, die erscheinen, wenn das\n"
-"Installationsprogramm Pakete automatisch markiert, um Paketabhängigkeiten\n"
-"aufzulösen, wenn Sie ein Paket auswählen.\n"
-"\n"
-"Das kleine Diskettensymbol am unteren Rand der Liste ermöglicht es Ihnen,\n"
-"die während einer vorangegangenen Installation gespeicherte Paketauswahl\n"
-"erneut zu verwenden. Durch Betätigen der Schaltfläche öffnen Sie einen\n"
-"Dialog, der Sie auffordert, die Diskette einzulegen, die die Auswahl der\n"
-"früheren Installation enthält. Um zu erfahren, wie Sie diese Diskette\n"
-"erstellen, lesen Sie bitte den zweiten Tipp des vorangegangenen\n"
-"Installationsschrittes."
+#: ../../keyboard.pm_.c:248
+msgid "Serbian (cyrillic)"
+msgstr "Serbien (Kyrillisches Layout)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr "Wählen Sie Ihren Dateisystem-Schlüssel (Passwort)"
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
+msgstr "Indien (Tamilisches Layout - Unicode)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
+msgstr "Indien (Tamilisches Layout - TSCII)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
-msgstr "Botswana"
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr "Thailändische Tastatur"
-#: ../../lang.pm:1
-#, c-format
-msgid "Andorra"
-msgstr "Andorra"
+#: ../../keyboard.pm_.c:254
+msgid "Tajik keyboard"
+msgstr "Tadschikistan"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "(default value: %s)"
-msgstr " (Voreinstellung: %s)"
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Türkei (traditionelles „F“ Modell)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
-msgstr ""
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Türkei (modernes „Q“ Modell)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Alternative Testseite (US-Format - \"Letter\")"
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr "Ukraine"
-#: ../../standalone/drakgw:1
-#, c-format
-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 ""
-"DHCP Server Konfiguration.\n"
-"\n"
-"Hier können Sie verschiedene Optionen für die DHCP Server Konfiguration "
-"wählen.\n"
-"Wenn Sie die Bedeutung einer Option nicht verstehen, lassen Sie sie so wie "
-"sie ist.\n"
-"\n"
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "Vereinigte Staaten von Amerika (international)"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Choose an X server"
-msgstr "Wählen Sie einen X-Server"
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vietnam QWERTY („number row“)"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr ""
+#: ../../keyboard.pm_.c:263
+msgid "Yugoslavian (latin)"
+msgstr "Jugoslawien (Lateinisches Layout)"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Größe der Auslagerungspartition in MB: "
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
+msgstr "AltGr-Taste"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "No changes to backup!"
-msgstr "Keine Änderungen zu sichern!"
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
+msgstr "Beide Umschalttasten gleichzeitig"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "Formatiert\n"
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
+msgstr "Strg und Umschalttaste gleichzeititg"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Type of install"
-msgstr "Installationstyp"
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
+msgstr "CapsLock Taste"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Drucker \"%s\" am SMB/Windows-Server \"%s\""
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
+msgstr "Strg und Alt gleichzeitig"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d durch Kommas getrennte Nummern"
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
+msgstr "Alt und Umschalttaste gleichzeitig"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Der Dienst rusers ermöglicht es Anwendern anderer Rechner \n"
-"herauszubekommen, welche Benutzer auf diesem Rechner \n"
-"gerade angemeldet sind."
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
+msgstr "Menütaste"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Automatische Konfiguration der Schritte"
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr "Linke „Windows“-Taste"
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "Barbados"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
+msgstr "Rechte „Windows“-Taste"
-#: ../advertising/02-community.pl:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
-msgstr ""
-"Wollen Sie mehr über die Open Source Gemeinde wissen? Betreten Sie die Welt "
-"der Freien Software!"
+msgid "Circular mounts %s\n"
+msgstr "Schleife bei den Einhängpunkten %s\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Bitte wählen Sie die zu sichernden Daten..."
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
+msgstr "Entfernen Sie erst die Logischen Medien\n"
-#: ../../standalone/net_monitor:1
-#, c-format
+#: ../../modules.pm_.c:290
msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-"Verbinden fehlgeschlagen.\n"
-"Überprüfen Sie Ihre Konfiguration im Mandrake Kontrollzentrum."
+"Die PCMCIA-Unterstützung für 2.2er Kerne wurde eingestellt. Verwenden Sie "
+"bitte einen 2.4er Kern."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
-msgstr "Empfangen"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr "Erlaube su nur für Mitglieder der Wheel Gruppe oder für alle Benutzer"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
+msgstr "Sie können alle Modulparamerter hier einstellen."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
-msgstr "/Datei/_Neu"
+#: ../../modules/parameters.pm_.c:18
+#, fuzzy
+msgid "modinfo is not available"
+msgstr "Kein Disketten-Laufwerk verfügbar"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DNS Server IP"
-msgstr "Die IP des DNS-Servers"
+#: ../../modules/parameters.pm_.c:50
+msgid "a number"
+msgstr "eine Nummer"
-#: ../../standalone/drakTermServ:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "IP Range End:"
-msgstr "Ende des IP-Bereichs:"
+msgid "%d comma separated numbers"
+msgstr "%d durch Kommas getrennte Nummern"
-#: ../../security/level.pm:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "High"
-msgstr "Hoch"
+msgid "%d comma separated strings"
+msgstr "%d durch Kommas getrennte Textfelder"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Neuen Drucker hinzufügen"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
+msgstr "durch Kommas getrennte Nummern"
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr "NoVideo"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated strings"
+msgstr "durch Kommas getrennte Textfelder"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
-msgstr "Dieses Feld beschreibt das Gerät"
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - Maus"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Drucker für StarOffice/OpenOffice.org/GIMP hinzufügen"
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MausMan/FirstMaus (Seriell)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printers"
-msgstr "Lokale Drucker"
+#: ../../mouse.pm_.c:33
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Generische PS2 Rad-Maus"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation image directory"
-msgstr "Verzeichnis des Installationsabbildes"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "NIS-Server"
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Maus"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Port: %s"
-msgstr "Port: %s"
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genius NetMaus"
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "Spanien"
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
-msgstr "lokale Konfiguration: %s"
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+msgid "Microsoft Explorer"
+msgstr "Microsoft Explorer"
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "Dieser Benutzername existiert bereits"
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
+msgstr "1 Taste"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
-msgstr "Wählen Sie eine Datei"
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "Generische 2 Tasten Maus"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr "Anwenden"
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "Rad"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Verfügbare Ports automatisch erkennen"
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "Seriell"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr "San Marino"
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "Generische 3 Tasten Maus"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Gemeinsame Internet-Verbindung momentan abgeschaltet."
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMaus"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Belgium"
-msgstr "Belgien"
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Logitech MausMan/FirstMaus"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
-msgstr "Kuwait"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "Wählen Sie den Window-Manager, den Sie verwenden wollen:"
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Logitech CC Serie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
-msgstr "Dezember"
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MausMan+/FirstMaus+"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "Untertyp der CPU"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "MM Serie"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
-msgstr "First Time Assistent"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../lang.pm:1
-#, c-format
-msgid "Taiwan"
-msgstr "Taiwan"
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Maus (Seriell, alter C7 Typ)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "Pakistan"
+#: ../../mouse.pm_.c:68
+msgid "busmouse"
+msgstr "Bus-Maus"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "Einen Moment, ich durchsuche: %s"
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "2 Tasten"
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Es trat ein Fehler auf. Ich weiß jedoch nicht, wie ich damit sinnvoll \n"
-"umgehen soll. Sie können fortfahren, jedoch auf eigenes Risiko!"
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "3 Tasten"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Importance: "
-msgstr "Wichtigkeit: "
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "keine"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-"Um mit Ihrem Lexmark-Tintenstrahldrucker drucken zu können, benötigen Sie "
-"die Treiber, die von Lexmark bereitgestellt werden (http://www.lexmark."
-"com/). Klicken Sie auf den \"Drivers\"-Link. Wählen Sie dann das "
-"Druckermodell und geben Sie \"Linux\" als Betriebssystem an. Sie erhalten "
-"die Treiber als RPM-Paket oder als Shellskript mit interaktiver grafischer "
-"Installation. Sie müssen die Einrichtung nicht mit dem Lexmark-Klicktool "
-"vornehmen. Sie können direkt nach der Lizenz auf \"Abbrechen\" drücken. "
-"Drucken Sie dann die Druckkopf-Justierungsseiten mit \"lexmarkmaintain\" und "
-"justieren Sie damit den Druckkopf."
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "Keine Maus"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Permissions"
-msgstr "Berechtigungen"
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
+msgstr "Bitte testen Sie Ihre Maus"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Name des Providers (z.B. provider.net) "
+#: ../../mouse.pm_.c:491
+msgid "To activate the mouse,"
+msgstr "Um Ihre Maus zu aktivieren:"
-#: ../../install_steps_gtk.pm:1
-#, 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'."
-msgstr ""
-"Ihr Rechner hat nicht genug Ressourcen. Vermutlich werden bei der \n"
-"Installation Probleme auftreten. In diesem Fall sollten Sie eine \n"
-"Text-Installation versuchen. Drücken Sie dafür <F1> während dem \n"
-"Installationsstart und geben Sie \"text\" an der Eingabeaufforderung \n"
-"ein."
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr "BEWEGEN SIE IHR MAUS-RAD!"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "Auf der Windows-Partition Loopbacks anlegen"
+#: ../../my_gtk.pm_.c:65
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
-msgstr "Armenien (Schreibmaschine)"
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
+msgstr "Assistent beenden"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection type: "
-msgstr "Verbindungstyp: "
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
+msgstr "Weiter ->"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Graphical interface"
-msgstr "Grafikumgebung"
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "Ist dies richtig?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "Tschad"
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "Info"
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "Indien"
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
+msgstr "Baum erweitern"
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s mit 3D-Hardwarebeschleunigung"
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
+msgstr "Baum verkleinern"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr "Slowakei"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr "Umschalten zwischen unsortiert und gruppiert"
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "Singapur"
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "PPPOE verwenden"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "Kambodscha"
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
+msgstr "PPTP verwenden"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Monitor Horiz. Frequenz: %s\n"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
+msgstr "DHCP verwenden"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr "Pfad"
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
+msgstr "Alcatel speedtouch USB"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
-msgstr "NICHT GEFUNDEN"
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr "command line."
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
+msgstr "Internetverbindung"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:30
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?"
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-"Das Drucksystem (%s) wird nicht automatisch beim Systemstart aktiviert.\n"
-"Es ist möglich, dass der Start durch den Wechsel in eine höhere "
-"Sicherheitsebene deaktiviert wurde, da das Drucksystem einen potentiellen "
-"Angriffspunkt darstellt.\n"
-"\n"
-"Wollen sie den automatischen Start des Drucksystems wiederherstellen?"
+"Der gebräuchlichste Weg mit ADSL eine Verbindung aufzubauen ist pppoe.\n"
+"Einige Verbindungen benutzen jedoch pptp, andere dhcp.\n"
+"Wenn Sie nicht wissen was Sie brauchen, wählen Sie „pppoe verwenden“"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:166
msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-"Drucker %s\n"
-"Was wollen Sie an diesem Drucker ändern?"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add host"
-msgstr "Hinzufügen eines Rechners"
+#: ../../network/drakfirewall.pm_.c:12
+msgid "Web Server"
+msgstr "Webserver"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:17
+msgid "Domain Name Server"
+msgstr "Domänen-Namenserver (DNS)"
+
+#: ../../network/drakfirewall.pm_.c:32
+msgid "Mail Server"
+msgstr "E-Mailserver"
+
+#: ../../network/drakfirewall.pm_.c:37
+msgid "POP and IMAP Server"
+msgstr "POP und IMAP Server"
+
+#: ../../network/drakfirewall.pm_.c:111
+msgid "No network card"
+msgstr "Keine Netzwerkkarte"
+
+#: ../../network/drakfirewall.pm_.c:129
+#, fuzzy
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"
+"drakfirewall configurator\n"
"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"Wenn Sie wirklich wissen, welcher Treiber der Richtige für Ihre Karte ist,\n"
-"wählen Sie einen aus der Liste aus.\n"
+"TinyFirewall Konfigurierer\n"
"\n"
-"Der gerade verwendete Treiber für Ihre \"%s\" Soundkarte ist \"%s\" "
+"Hiermit konfigurieren Sie eine persönliche Firewall für diesen\n"
+"Mandrake Linux Rechner. Sollten Sie an einer speziellen ausgereiften\n"
+"Firewall-Lösung interessiert sein, schauen Sie sich nach der speziell\n"
+"dafür entwickelten MandrakeSecurity Firewall Distribution um."
-#: ../../any.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:135
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"
+"drakfirewall configurator\n"
"\n"
-"\"Custom\" permit a per-user granularity.\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-"Wollen Sie Benutzern erlaubern, Verzeichnisse freizugeben?\n"
-"Wenn Sie das erlauben, können die Anwender Verzeichnisse in Konqueror oder "
-"Nautilus im Kontextmenü des entsprechenden Verzeichnisses freigeben.\n"
-"\n"
-"Mit \"Benutzerdefiniert\" können Sie eine Einstellung pro Benutzer "
-"vornehmen.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr "Auf welche Dienste daf aus dem Internet zugegeriffenwerden?"
+
+#: ../../network/drakfirewall.pm_.c:153
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-"Bitte wählen Sie, ob die Paketauswahl von Diskette geladen \n"
-"oder darauf gespeichert werden soll. Es handelt sich um das \n"
-"selbe Format, wie die unter \"auto_install\" erzeugten Disketten."
-
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "No CDROM support"
-msgstr "Radiobetrieb:"
+"Sie können verschiedene Ports angeben. \n"
+"Korrekte Beispiele sind: 139/tcp 139/udp.\n"
+"Für weitere Informationen schauen Sie in „/etc/services“."
-#: ../../standalone/drakxtv:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
-msgid "China (broadcast)"
-msgstr "China (terrestrisch)"
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+"Angabe eines ungültigen Ports: „%s“.\n"
+"Das Format lautet: „port/tcp“ oder „port/udp“, \n"
+"wobei Port eine Zahl zwischen 1 und 65535."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use quota for backup files."
-msgstr "Quota für Backup-Datei verwenden."
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
+msgstr "Alles (Keine Firewall)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Konfiguriere Drucker \"%s\"..."
+#: ../../network/drakfirewall.pm_.c:169
+msgid "Other ports"
+msgstr "Andere Ports"
-#: ../../fs.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:37
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."
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
msgstr ""
+"Welchen DHCP Klienten wollen Sie verwenden?\n"
+"Voreingestellt ist „dhcp-client“"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection"
-msgstr "Internet-Verbindung"
-
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:88
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-"Laden von Modul %s schlug fehl.\n"
-"Wollen Sie es erneut mit anderen Parametern versuchen?"
-
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr "Willkommen in der Open Source Welt."
+"Ich habe keine Ethernet-Netzwerkkarte finden können, daher kanndieser "
+"Verbindungstyp nicht konfiguriert werden."
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnien-Herzegovina"
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
+msgstr "Wählen Sie die Netzwerkkarte"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:93
msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
-"Sie benötigen ein echtes GNU/Linux-Dateisystem (ext2/ext3, reiserfs, xfs "
-"oder jfs) für diesen Einhängepunkt.\n"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Sie müssen einen Rechnernamen oder eine IP eingeben.\n"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "Niederlande (Holland)"
+"Bitte wählen Sie, über welches Netzwerkgerät Sie die \n"
+"Internetverbindung herstellen wollen."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Dateien mittels FTP übertragen"
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "Keine Netzwerkkarte gefunden"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Interne ISDN-Karte"
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "Netzwerk konfigurieren"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:201
msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
-"Es existiert kein alternativer OSS/ALSA-Treiber für Ihre Soundkarte (%s), "
-"die momentan \"%s\" verwendet."
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Title"
-msgstr "Titel"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Schriftarten installieren und konvertieren"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
-msgstr "WARNUNG"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
-msgstr "Installiere Betriebssystemstarter"
+"Bitte geben Sie ihren Rechnernamen an.\n"
+"Einige DHCP-Server benötigen ihn, um korrekt zu arbeiten.\n"
+"Ihr Rechnername sollte auch die Domain beinhalten,\n"
+"etwa „meinrechner.meineabteilung.meinefirma.de“."
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "replay"
-msgstr "wiederholen"
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "Rechnername"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
-msgstr "%s gefunden"
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+msgid "Network Configuration Wizard"
+msgstr "Netzwerk Konfigurationsassistent"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
-msgstr "Expect."
+#: ../../network/isdn.pm_.c:22
+msgid "External ISDN modem"
+msgstr "Externes ISDN Modem"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr "Jungfern-Inseln (U.S.)"
+#: ../../network/isdn.pm_.c:22
+msgid "Internal ISDN card"
+msgstr "Interne ISDN Karte"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "Fehlerhafte Backup-Datei"
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
+msgstr "Um welchen Typ ISDN-Verbindung handelt es sich?"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/isdn.pm_.c:45
msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
+"Which ISDN configuration do you prefer?\n"
"\n"
-"What would you like to do?"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
msgstr ""
-"Die Einrichtung einer gemeinsamen Internet-Verbindung wurde bereits "
-"durchgeführt.\n"
-"Momentan ist sie deaktiviert.\n"
+"Welche ISDN Konfiguration wollen Sie durchführen?\n"
"\n"
-"Was wollen Sie tun?"
+"* Die alte Konfiguration verwendet „isdn4net“. Sie \n"
+" enthällt mächtigere Werkzeuge, ist jedoch komplizierter \n"
+" einzurichten und nicht voll standardkonform.\n"
+"\n"
+"* Die neue Konfiguration mit „isdn-light“ ist \n"
+" verständlicher und standardkonformer, sie enthällt \n"
+" jedoch weniger Werkzeuge.\n"
+"\n"
+"Wir empfehlen die „isdn-light“ Variante.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-"Geben Sie die IP-Adresse und den Port des Rechners ein, dessen Drucker Sie "
-"verwenden wollen. "
+#: ../../network/isdn.pm_.c:54
+msgid "New configuration (isdn-light)"
+msgstr "Neue Konfiguration (isdn-light)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Pipe into command"
-msgstr "An ein Kommando weiterleiten"
+#: ../../network/isdn.pm_.c:54
+msgid "Old configuration (isdn4net)"
+msgstr "Alte Konfiguration (isdn4net)"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "ISDN Konfiguration"
+
+#: ../../network/isdn.pm_.c:166
msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
-"Einige Hardware-Komponenten Ihres Rechners benötigen \"proprietäre\"\n"
-"Treiber. Weitere Infos hierzu finden Sie unter: %s"
+"Wählen Sie Ihren Netzanbieter.\n"
+"Sollte er nicht aufgeführt sein, wählen Sie „Nicht aufgeführt“"
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "Haiti"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol"
+msgstr "Europäisches Protokoll"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "Geräteerkennung..."
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol (EDSS1)"
+msgstr "Europäisches Protokoll (EDSS1)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
+#: ../../network/isdn.pm_.c:181
+msgid "Protocol for the rest of the world"
+msgstr "Protokoll für den Rest der Welt"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/isdn.pm_.c:181
msgid ""
-"Description of the fields:\n"
-"\n"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
-"Beschreibung der Felder:\n"
-"\n"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Basic options"
-msgstr "grundlegende Optionen"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
-msgstr "Name der CPU"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr "Akzeptiere gefälschte IPv4 Fehlermeldungen"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Aktualisieren der Druckerdaten ..."
-
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr "Sie müssen auch %s formatieren."
+"Protokoll für den Rest der Welt \n"
+"ohne D-Kanal (Leased Lines)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "Vorsicht: Diese Aktion ist gefährlich."
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
+msgstr "Welches Protokoll wollen Sie verwenden?"
-#: ../../install_steps_interactive.pm:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid "Insert a floppy containing package selection"
+msgid "Found \"%s\" interface do you want to use it ?"
msgstr ""
-"Legen Sie eine Diskette ein, auf der Ihre Paketauswahl gespeichert ist."
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server: "
-msgstr "Server: "
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Alerts:"
-msgstr "Sicherheitswarnungen:"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
-msgstr "Schweden"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use Expect for SSH"
-msgstr "Expect"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "Polen"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Other ports"
-msgstr "Andere Ports"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "Anzahl der Puffer für MMAP-Aufnahmen"
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
+msgstr "Welchen Kartentyp verwenden Sie?"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid " - detected"
-msgstr "- gefunden"
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
+msgstr "Keine Ahnung"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr "SMBus-Controller"
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA/PCMCIA"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Verbindungs-Timeout (in Sec)"
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/isdn.pm_.c:210
msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
+"\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
-"Einige der früheren i486DX-100 Chips wechseln nicht verlässlich in "
-"Betriebsmodus nachdem der \"halt\" Befehl benutz wurde."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Croatian"
-msgstr "Kroatien"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Use existing partition"
-msgstr "Verwende existierende Partition(en)"
+"\n"
+"Falls Sie eine ISA-Karte besitzen, sollten die Einstellungen auf dem "
+"nächsten Schirm korrekt sein.\n"
+"\n"
+"Falls Sie eine PCMCIA-Karte besitzen, müssen Sie IRQ und E/A-Bereich Ihrer "
+"Karte kennen.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Mirror %s nicht erreichbar"
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "Abbruch"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Hilfe/_Über ..."
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
+msgstr "Fortfahren"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Verzeichnisse der Benutzer vor dem Wiederherstellen entfernen."
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
+msgstr "Bitte wählen Sie Ihre ISDN Karte"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:239
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?"
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
-"Sie wollen einen Netzwerkdrucker einrichten. Sie benötigen dafür ein "
-"funktionerendes Netzwerk, aber Ihr Netzwerk ist noch nicht eingerichtet. "
-"Wenn Sie dennoch fortfahren, ohne Ihr Netzwerk einzurichten, ist der Drucker "
-"hinterher nicht zu verwenden. Wie wollen Sie verfahren?"
+"Ich habe eine PCI ISDN-Karte gefunden, \n"
+"kenne sie jedoch nicht. Bitte helfen Sie mir,\n"
+"indem Sie im nächsten Menü eine auswählen."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "CUPS-Drucker-Konfiguration"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr "Ich konnte keine Schriften in Ihren eingehängten Partitionen finden"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
-msgstr "F00f: Fehler"
-
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Domain Name:"
-msgstr "Name der Domäne:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Root umask"
-msgstr "Root umask"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+"Ich konnte keine PCI ISDN-Karte finden.\n"
+"Bitte wählen Sie im nächsten Menü eine aus."
-#: ../../any.pm:1
-#, c-format
-msgid "On Floppy"
-msgstr "Auf Diskette"
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Bitte wählen Sie den seriellen Anschluss, an dem Ihr Modem hängt."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reboot by the console user"
-msgstr "Neustart durch den Konsolen Benutzer"
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "Einwahl Parameter"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore"
-msgstr "Wiederherstellen"
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr "Name der Verbindung"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Server:"
-msgstr "Server: "
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
+msgstr "Telefonnummer"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
-msgstr "Wenn ja, überprüfe ob die Netzwerk Geräte im gemischten Modus sind"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "Login ID"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Suche nach vorhandenen Paketen..."
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr "CHAP"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Bitte warten, schreibe Systemkonfiguration auf den USB Schlüssel..."
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP"
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Init Message"
-msgstr "Init Nachricht"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "Skript-basiert"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "Partitionstabelle retten"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "Terminal-basiert"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "Zypern"
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "Name der Domäne"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection complete."
-msgstr "Verbindung fertiggestellt."
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+msgid "First DNS Server (optional)"
+msgstr "Erster DNS Server (optional)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "Aus dem RAID löschen"
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+msgid "Second DNS Server (optional)"
+msgstr "Zweiter DNS Server (optional)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
+#: ../../network/modem.pm_.c:95
+msgid ""
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"
-#: ../../standalone/drakbug:1
+#: ../../network/modem.pm_.c:97
#, c-format
-msgid "Configuration Wizards"
-msgstr "Konfigurationsassistenten"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN-Verbindung"
+msgid ""
+"\"%s\" based winmodem detected, do you want to install needed software ?"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CD-ROM / DVD-ROM"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Do nothing"
+msgstr "keine Übereinstimmung mit"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
-msgstr "primär"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Install rpm"
+msgstr "Installation"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr "auf SMB/Windows-Server \"%s\", Freigabe \"%s\""
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Title"
+msgstr "Tabelle"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:29
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"
-"!!"
+"You can disconnect or reconfigure your connection."
msgstr ""
-"Als nächstes können Sie die Dienste auswählen, die während des\n"
-"Betriebssystemstarts aktiviert werden sollen.\n"
"\n"
-"Hier werden alle Dienste, die in der aktuellen Installation zur Verfügung "
-"stehen,\n"
-"angezeigt. Lesen Sie diese Liste sorgfältig durch und markieren Sie nur die\n"
-" Dienste, die Sie immer ab dem BS-Start zur Verfügung haben wollen.\n"
+"Sie können die Verbindung trennen oder sie neu konfigurieren."
+
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+msgid ""
"\n"
-"Wenn Sie einen Dienst anwählen, erhalten Sie eine kurze Erklärung dazu.\n"
-"Wenn Sie nicht sicher sind, ob ein Dienst bzw. Server sinnvoll ist oder\n"
-"nicht, verändern Sie am Besten die voreingestellten Markierungen nicht.\n"
+"You can reconfigure your connection."
+msgstr ""
"\n"
-"!! Sollten Sie Ihren Rechner als Server verwenden wollen, so müssen Sie an\n"
-"dieser Stelle besonders vorsichtig sein: wählen Sie alle Dienste ab, die\n"
-"Sie nicht benötigen. Denken Sie daran, dass etliche Dienste eine\n"
-"potentielle Einbruchstelle in das System von außen darstellen, wenn diese\n"
-"im Serverbetrieb laufen. Also, nur die Dienste einschalten, die Sie\n"
-"wirklich brauchen! !!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niue"
-msgstr "Niue"
+"Sie können Ihre Internetverbindung neu konfigurieren"
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "Überspringen"
+#: ../../network/netconnect.pm_.c:29
+msgid "You are currently connected to internet."
+msgstr "Sie sind momentan mit dem Internet verbunden."
-#: ../../services.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:32
msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
+"\n"
+"You can connect to Internet or reconfigure your connection."
msgstr ""
-"Dieser Dienst aktiviert Netzwerkgeräte (etwa Netzwerkkarten), die \n"
-"so konfiguriert wurden, dass sie ab dem Systemstart zur Verfügung \n"
-"stehen sollen."
+"\n"
+"Sie können eine Internetverbindung aufbauen oder die Verbindung neu "
+"konfigurieren"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr ""
-"Die CPU-Frequenz in MHz (Megahertz), sie gibt eine erste Näherung für die "
-"Anzahl der Befehle, die der Prozessor pro Sekunde ausführen kann."
+#: ../../network/netconnect.pm_.c:32
+msgid "You are not currently connected to Internet."
+msgstr "Sie sind momentan nicht mit dem Internet verbunden."
-#: ../../pkgs.pm:1
-#, c-format
-msgid "important"
-msgstr "wichtig"
+#: ../../network/netconnect.pm_.c:36
+msgid "Connect"
+msgstr "Verbinden"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "Mandrake Linux Drucker Verwaltungs Programm"
+#: ../../network/netconnect.pm_.c:37
+msgid "Disconnect"
+msgstr "Verbindung trennen"
+
+#: ../../network/netconnect.pm_.c:38
+msgid "Configure the connection"
+msgstr "Die Verbindung konfigurieren"
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
+msgstr "Internetverbindung und -einrichtung"
+
+#: ../../network/netconnect.pm_.c:94
#, c-format
-msgid "Total Progress"
-msgstr "Fortschritt"
+msgid "We are now going to configure the %s connection."
+msgstr "Wir werden nun die Verbindung „%s“ konfigurieren."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
+#: ../../network/netconnect.pm_.c:103
#, c-format
msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"\"DrakX\" versucht nun alle IDE-Festplatten Ihres Systems zu finden. Unter\n"
-"Anderem sucht \"DrakX\" auch nach PCI-SCSI-Karten, die es kennt, um sie\n"
-"automatisch mit dem richtigen Treiber einzubinden.\n"
+"We are now going to configure the %s connection.\n"
"\n"
-"Falls \"DrakX\" nicht weiß, welcher Treiber funktioniert, werden Sie "
-"gebeten,\n"
-"\"DrakX\" zu helfen.\n"
"\n"
-"Falls \"DrakX\" nicht in der Lage ist, die Parameter selbst zu finden, die\n"
-"dem Modul zu übergeben sind, müssen Sie diese angeben.\n"
+"Press OK to continue."
+msgstr ""
"\n"
"\n"
"\n"
+"Wir werden nun die Verbindung „%s“ konfigurieren.\n"
"\n"
-"Sie können die benötigten Informationen etwa unter Windows (sofern es auf\n"
-"Ihren Rechner installiert ist) finden, aus den Handbüchern, die sie mit der\n"
-"Hardware erhalten haben oder von den Web-Seiten des Hardware-Anbieters."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr "Aruba"
+"\n"
+"Wählen Sie „OK“, um fortzufahren."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "Benutzer"
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr "Netzwerk konfigurieren"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Bereite Betriebssystemstarter vor ..."
+#: ../../network/netconnect.pm_.c:133
+msgid ""
+"Because you are doing a network installation, your network is already "
+"configured.\n"
+"Click on Ok to keep your configuration, or cancel to reconfigure your "
+"Internet & Network connection.\n"
+msgstr ""
+"Da Sie eine Netzwerkinstallation durchführen, ist Ihr Netzwerk bereits\n"
+"konfiguriert. Wählen Sie „OK“, um diese Einstellung beizubehalten oder\n"
+"„Abbruch“, um Ihre Internet- und Netzwerk-Konfiguration neu zu\n"
+"konfigurieren.\n"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
+#: ../../network/netconnect.pm_.c:157
+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 ""
-"Geben Sie Ihre Benutzer Information ein, das Passwort wird für den "
-"Bildschirmschoner benutzt"
+"Willkommen zum Netzwerk Konfigurationsassistent.\n"
+"\n"
+"Ich versuche nun Ihre Internet-/Netzwerk-Verbindung zu konfigurieren.\n"
+"Falls Sie keine Autodetektion wünschen, entfernen Sie bitte die Markierung.\n"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Gateway (etwa %s)"
+#: ../../network/netconnect.pm_.c:163
+msgid "Choose the profile to configure"
+msgstr "Wählen Sie das Profil, dass eingestellt werden soll"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
-msgstr "Die Passwörter stimmen nicht überein"
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
+msgstr "Autoerkennung benutzen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Beispiele für korrekte IPs:\n"
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
+msgstr "Expertenmodus"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "Bitte wählen Sie ein Sicherungsmedium."
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
+msgstr "Geräteerkennung..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Frequenz (MHz)"
+#: ../../network/netconnect.pm_.c:214
+msgid "Normal modem connection"
+msgstr "Normale Modem Verbindung"
-#: ../../install_any.pm:1
+#: ../../network/netconnect.pm_.c:214
#, c-format
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Um diese gespeicherte Paketauswahl zu verwenden, starten Sie die \n"
-"Installation bitte mit: \"boot defcfg=floppy\""
+msgid "detected on port %s"
+msgstr "an Prot %s gefunden"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of the processor"
-msgstr "die Nummer des Prozessors"
+#: ../../network/netconnect.pm_.c:215
+#, fuzzy
+msgid "Winmodem connection"
+msgstr "Normale Modem Verbindung"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Hardware Uhr gestellt auf GMT"
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "detected"
+msgstr "%s gefunden"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "Möchten Sie eine neue Einstellung vornehmen?"
+#: ../../network/netconnect.pm_.c:216
+msgid "ISDN connection"
+msgstr "ISDN Verbindung"
-#: ../../diskdrake/interactive.pm:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid "Give a file name"
-msgstr "Dateinamen angeben"
+msgid "detected %s"
+msgstr "%s gefunden"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Bitte wählen Sie den Anschluss, an dem Ihr Drucker hängt."
+#: ../../network/netconnect.pm_.c:217
+msgid "ADSL connection"
+msgstr "ADSL Verbindung"
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "CD-ROM wechseln"
+#: ../../network/netconnect.pm_.c:218
+msgid "Cable connection"
+msgstr "Kabel Verbindung"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "Paraguay"
+#: ../../network/netconnect.pm_.c:218
+msgid "cable connection detected"
+msgstr "Kabel Verbindung gefunden"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "Konfiguration ist vollständig, wollen Sie diese jetzt anwenden ?"
+#: ../../network/netconnect.pm_.c:219
+msgid "LAN connection"
+msgstr "LAN Verbindung"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr "Inkrementelle Archivierung (alte Archive nicht ersetzen)"
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
+msgstr "Netzwerkkarte(n) gefunden"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../network/netconnect.pm_.c:222
+msgid "Choose the connection you want to configure"
+msgstr "Wählen Sie die Verbindung, die Sie konfigurieren wollen"
+
+#: ../../network/netconnect.pm_.c:246
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:"
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
+"Sie haben verschiedene Varianten eingerichtet, sich mit dem\n"
+"Internet zu verbinden. Bitte wählen Sie, welche Verbindungsart\n"
+"ich versuchen soll.\n"
+"\n"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr "Es gibt keinen bekannten Treiber für Ihre Soundkarte (%s)"
+#: ../../network/netconnect.pm_.c:247
+msgid "Internet connection"
+msgstr "Internet-Verbindung"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "force"
-msgstr " mit Gewalt "
+#: ../../network/netconnect.pm_.c:253
+msgid "Do you want to start the connection at boot?"
+msgstr "Möchten Sie die Verbindung bei Betriebssystemstart herstellen?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Exit"
-msgstr "Verlassen"
+#: ../../network/netconnect.pm_.c:267
+msgid "Network configuration"
+msgstr "Netzwerk Konfiguration"
+
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
+msgstr "Das Netzwerk muss neu gestartet werden"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/netconnect.pm_.c:272
#, c-format
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
msgstr ""
-"ANMERKUNG: Je nach Drucker und Drucksystem werden bis zu %d MB zusätzlicher "
-"Software auf Ihrem Rechner installiert."
+"Beim Neustart des Netzwerks trat ein Fehler auf: \n"
+"\n"
+"%s"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../network/netconnect.pm_.c:282
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
-"Sie haben noch keine Schnittstelle eingerichtet.\n"
-"Sie können dies tun, indem Sie die Schaltfläche \n"
-"\"Konfigurieren\" betätigen."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "Estland"
+"Herzlichen Glückwunsch, die Netzwerk-/Internet-Einrichtung ist beendet.\n"
+"\n"
+"Die Konfiguration wird nun in Ihr System integriert.\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:286
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
-"Apache ist ein World-Wide-Web-Server. Mit seiner Hilfe können Sie \n"
-"HTML-Dateien über HTTP publizieren. Der Server ist CGI-fähig."
+"Es ist sehr empfehlenswert, im Anschluss Ihre X-Oberfläche\n"
+"neu zu starten, um Probleme, die durch die Änderung des\n"
+"Rechnernamens hervorgerufen werden, zu vermeiden."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/netconnect.pm_.c:287
msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
+"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 ""
-"Bitte geben Sie den Gerätenamen \n"
-"Ihres CD-Brenners an, etwa \"0,1,0\"."
+"Während der Konfiguration traten Fehler auf.\n"
+"Kontrollieren Sie Ihre Verbindung mit „net_monitor“ oder dem Mandrake "
+"Kontrollzentrum. Falls die Verbindung nicht funktioniert, sollten Sie erneut "
+"die Konfguration starten."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ALL"
-msgstr "Alle"
+#: ../../network/network.pm_.c:278
+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 ""
+"WARNUNG: Dieses Gerät wurde bereits zum Herstellen einer Internetverbindung "
+"konfiguriert.\n"
+"Drücken Sie einfach „OK“, um die Einstellungen zu behalten.\n"
+"Fall Sie Felder verändern, wird die Konfiguration überschrieben."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Clients hinzufügen/löschen"
+#: ../../network/network.pm_.c:283
+msgid ""
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
+msgstr ""
+"Bitte geben Sie die IP Parameter dieser Maschine ein.\n"
+"Jeder Eintrag muss als dezimale IP-Adresse in Punktschreibweise \n"
+"angegeben werden (etwa „192.168.1.42“)."
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "Choose the network interface"
-msgstr "Wählen Sie die Netzwerkkarte"
+msgid "Configuring network device %s"
+msgstr "Konfigurieren der Netzwerkkarte %s"
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../network/network.pm_.c:294
#, c-format
-msgid "Unknown Model"
-msgstr "Unbekanntes Modell"
+msgid " (driver %s)"
+msgstr " (Treiber %s)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
-msgstr "CD/DVD-Brenner"
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "IP Adresse"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Partition wird standardmäßig geladen\n"
-" (für MS-DOS-Boot, nicht jedoch für LILO)\n"
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr "Netzmaske"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Aktiviere \"%s\" um die Datei zu lesen"
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(BOOTP/DHCP)"
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "choose image"
-msgstr "Abbild-Datei auswählen"
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "Automatische IP-Adressen Zuweisung"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Ich habe eine Firewall-Konfiguration gefunden!"
+#: ../../network/network.pm_.c:299
+msgid "Start at boot"
+msgstr "Beim BS-Start aktivieren"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "Name der Verbindung"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
+msgstr "Die IP Adresse sollte etwa die Form „192.168.1.42“ haben!"
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
+#: ../../network/network.pm_.c:326
msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-"x Koordinaten des Textfeldes\n"
-"in der Zahl der Buchstaben"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/network.pm_.c:330
msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Updating package selection"
-msgstr "Erneuere Paket Auswahl"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "Wo wollen Sie die Loopback-Datei %s einhängen?"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../network/network.pm_.c:350
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"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 ""
-"Die Diskette wurde erfolgreich erstellt.\n"
-"Sie können die Installation nun automatisch durchführen."
+"Bitte geben Sie ihren Rechnernamen an.\n"
+"Ihr Rechnername sollte auch die Domain beinhalten,\n"
+"etwa „meinrechner.meineabteilung.meinefirma.de“.\n"
+"Falls Sie ein Gateway verwenden, sollten Sie auch dessen IP-Adresse angeben."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Sicherungskopie auf CD/DVD-ROM"
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "DNS-Server"
-#: ../../standalone/harddrake2:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "Anzahl der Maustasten"
+msgid "Gateway (e.g. %s)"
+msgstr "Gateway (etwa %s)"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
-msgstr "Erneut abspielen"
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "Gateway Gerät"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup other files"
-msgstr "Andere Dateien sichern"
+#: ../../network/network.pm_.c:363
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr ""
+"Die IP Adresse des DNS-Servers sollte etwa die Form „192.168.1.42“ haben!"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "Kein Disketten-Laufwerk verfügbar"
+#: ../../network/network.pm_.c:367
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Die IP Adresse des Gateways sollte etwa die Form „192.168.1.42“ haben!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Die Sicherungen sind beschädigt."
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
+msgstr "Proxies einstellen"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
-msgstr "Fernsehnorm:"
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "HTTP Proxy"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr "CPUID-Familie"
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "FTP Proxy"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
+msgstr "Netzwerkkarten-ID überwachen (sinnvoll für Laptops)"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "type: thin"
-msgstr "Typ: Dünn"
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
+msgstr "Proxy muss „http://...“ sein"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "Litauen (AZERTY - neu)"
+#: ../../network/network.pm_.c:388
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Die URL muss mit „http://“ oder „ftp://“ beginnen"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
+msgstr "Ich habe eine Firewall-Konfiguration gefunden!"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/shorewall.pm_.c:27
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"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
-"Sie haben eine Software-RAID-Partition als Wurzelverzeichnis (/)"
-"ausgewählt. \n"
-"Zur Zeit kann kein Betriebssystemstarter damit ohne Verwendung einer \n"
-"\"/boot\"-Partition arbeiten. Stellen Sie sicher, dass Sie eine solche \n"
-"Partition erstellen."
+"WARNUNG: Ich habe eine eine Firewall-Konfiguration gefunden. \n"
+"Möglicherweise müssen Sie nach der Installation einige Einstellungen \n"
+"von Hand vornehmen."
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "Anderes Betriebssystem (MacOS ...)"
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
+msgstr "Internet Konfiguration"
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Um Ihre Maus zu aktivieren,"
+#: ../../network/tools.pm_.c:58
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Möchten Sie jetzt versuchen eine Internetverbindung aufzubauen?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "Netzwerkverbindung herstellen"
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+msgid "Testing your connection..."
+msgstr "Ich teste gerade Ihre Verbindung..."
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Die Screenshots liegen nach der Installation unter \"%s\""
+#: ../../network/tools.pm_.c:70
+msgid "The system is now connected to Internet."
+msgstr "Sie sind jetzt mit dem Internet verbunden."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
+msgstr "Aus Sicherheitsgründen wird die Verbindung nun unterbrochen."
+
+#: ../../network/tools.pm_.c:72
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:\")."
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-"Es wurde mehr als eine Windows-Partition gefunden. Wählen Sie bitte, welche\n"
-"Sie verkleinern wollen, um Platz für Ihr neues Mandrake Linux zu schaffen.\n"
-"\n"
-"Die Partitionen werden folgendermaßen aufgelistet: \"Linux-Name\",\n"
-"\"Windows-Name\", \"Kapazität\".\n"
-"\n"
-"\"Linux-Name\" hat folgende Struktur: \"Festplattentyp\", \"Festplattennummer"
-"\",\n"
-"\"Partitionsnummer\" (etwa \"hda1\").\n"
-"\n"
-"\"Festplattentyp\" ist \"hd\", falls Ihre Platte eine IDE/ATAPI-Platte ist, "
-"und\n"
-"\"sd\", wenn es sich um eine SCSI-Platte handelt.\n"
-"\n"
-"\"Festplattennummer\" ist immer der Buchstabe hinter dem Festplattentyp. "
-"Bei\n"
-"IDE-Platten bedeutet:\n"
-"\n"
-" * \"a\" bedeutet \"Master-Platte am primären IDE-Controller\";\n"
-"\n"
-" * \"b\" bedeutet \"Slave-Platte am primären IDE-Controller\";\n"
-"\n"
-" * \"c\" bedeutet \"Master-Platte am sekundären IDE-Controller\";\n"
-"\n"
-" * \"d\" bedeutet \"Slave-Platte am sekundären IDE-Controller\";\n"
-"\n"
-"Bei SCSI-Platten steht \"a\" für \"niedrigste SCSI-ID\", \"b\" für\n"
-"\"zweitniedrigste SCSI-ID\", etc.\n"
-"\n"
-"\"Windows-Name\" ist der Buchstabe, den die Partition unter Windows "
-"erhalten\n"
-"würde (die erste Partition der ersten Platte heißt \"C:\")."
+"Sie sind momentan nicht mit dem Internet verbunden.\n"
+"Versuchen Sie Ihre Internetverbindung wieder zu konfigurieren."
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
-msgstr "Tansania"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "Errechne die Grenzen des FAT-Dateisystems"
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
+msgstr "Verbindungskonfiguration"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
msgstr ""
-"\n"
-"Sicherungsquellen: \n"
+"Bitte füllen Sie die folgen Felder aus \n"
+"bzw. makieren Sie die korrekten Angaben"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "custom"
-msgstr "Benutzerdefiniert"
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr "Karten IRQ"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Content of the file"
-msgstr "Inhalt der Logbücher"
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "Karten Mem (DMA)"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
-msgstr "LDAP-Authentifizierung"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "Karten E/A"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
-msgstr ""
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "Karten IO_0"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
-msgstr "Lassen Sie mich irgendeinen Treiber auswählen"
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "Karten IO_1"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
-msgstr "Gesendet"
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
+msgstr "Ihre eigene Telefonnummer"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palestine"
-msgstr "Palästina"
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
+msgstr "Name des Providers (z.B. provider.net) "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
+msgstr "Telefonnummer des Providers"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d durch Kommas getrennte Textfelder"
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+msgid "Provider dns 1 (optional)"
+msgstr "Erster DNS des Providers (optional)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " isdn"
-msgstr " isdn"
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+msgid "Provider dns 2 (optional)"
+msgstr "Zweiter DNS des Providers (optional)"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "Hier die Liste aller Tastaturen"
+#: ../../network/tools.pm_.c:109
+msgid "Choose your country"
+msgstr "Land auswählen"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Theme name"
-msgstr "Design-Name"
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
+msgstr "Wahlmodus"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/_Hilfe"
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+msgid "Connection speed"
+msgstr "Verbindungsgeschwindigkeit"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitrary driver"
-msgstr "Ich wähle einen willkürlichen Treiber"
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+msgid "Connection timeout (in sec)"
+msgstr "VerbindungsTimeout (in Sec)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "Cook-Inseln"
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
+msgstr "Kennzeichen (Login)"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
+msgstr "Passwort"
+
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
+msgstr "Großbritannien"
+
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
+msgstr "Fehler beim Einhängen: "
+
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
+msgstr "Diese Rechnerarchitektur kennt keine erweiterten Partitionen"
+
+#: ../../partition_table.pm_.c:685
msgid ""
-"Here you can choose whether the scanners connected to this machine should be "
-"accessable by remote machines and by which remote machines."
+"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 ""
-"Hier können Sie einstellen, ob die Scanner, die an diesem Rechner hängen, "
-"für andere Rechner nutzbar sein sollen und falls ja, für welche."
+"Sie haben einen unbenutzten Bereich in Ihrer Partitionstabelle, \n"
+"den ich nicht ansprechen kann. Die einzige Lösung ist, dass Sie \n"
+"Ihre primären Partitionen so verschieben, dass der Bereich direkt \n"
+"neben der erweiterten Partition zu liegen kommt."
-#: ../../standalone/draksplash:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "the width of the progress bar"
-msgstr "Die Breite des Fortschrittbalkens"
+msgid "Restoring from file %s failed: %s"
+msgstr "Restaurieren aus der Datei %s schlug Fehl: %s"
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formatiere Partition \"%s\""
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
+msgstr "Fehlerhafte Backup-Datei"
-#: ../../standalone/drakbackup:1
+#: ../../partition_table.pm_.c:796
#, c-format
-msgid "Hostname required"
-msgstr "Rechnername nötig"
+msgid "Error writing to file %s"
+msgstr "Fehler beim Schreiben in Datei %s"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "Auswahl installierter Schriftarten zurücksetzen"
+#: ../../partition_table/raw.pm_.c:192
+msgid ""
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
+msgstr ""
+"Mit Ihrer Platte stimmt etwas nicht!\n"
+"Der vorgenommene Integritätstest schlug Fehl.\n"
+"Das bedeutet, dass jeder Schreibvorgang auf der Platte zu einem \n"
+"unvorhersagbaren Ergebnis führen wird."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Rad"
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr "unbedingt notwendig"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit kernel version"
-msgstr "Angabe der Kernelversion"
+#: ../../pkgs.pm_.c:27
+msgid "important"
+msgstr "wichtig"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Cancel"
-msgstr "Abbrechen "
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr "sehr angenehm"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for configured scanners ..."
-msgstr "Suche nach eingerichteten Scannern ..."
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr "angenehm"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Videocard"
-msgstr "Videokarten"
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr "eventuell"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tSicherungen verwenden \"tar\" und \"bzip2\"\n"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
+msgstr "PDQ - Print, Don't Queue"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Remove Selected"
-msgstr "Markierte entfernen"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
+msgstr "PDQ"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/_Modems automatisch erkennen"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
+msgstr "LPD - Line Printer Daemon"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove printer"
-msgstr "Drucker entfernen"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
+msgstr "LPD"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Last Log"
-msgstr "Letzten Log Eintrag betrachten"
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
+msgstr "LPRng - LPR New Generation"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "Auf welche Dienste darf aus dem Internet zugegeriffen werden?"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
+msgstr "LPRng"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Connection Type"
-msgstr "Verbindungstyp:"
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
+msgstr "CUPS - Common Unix Printing System"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Herzlich willkommen zum E-Mail-Benachrichtigungsassistenten.\n"
-"\n"
-"Hier können Sie Ihr Benachrichtigungssystem einrichten.\n"
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
+msgstr "CUPS"
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Other"
-msgstr "Andere"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+msgid "Unknown Model"
+msgstr "Unbekanntes Modell"
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
-msgstr "Standard"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "Lokaler Drucker"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Emulation der 2. Taste"
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
+msgstr "Entfernter Drucker"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter a package name."
-msgstr "Bitte geben Sie einen Packet Namen an."
+#: ../../printer/main.pm_.c:28
+msgid "Printer on remote CUPS server"
+msgstr "Drucker an CUPS-Server auf der Gegenseite"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run chkrootkit checks"
-msgstr "Starte chkrootkit Überprüfung"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+msgid "Printer on remote lpd server"
+msgstr "Drucker an LPD-Server im Netzwerk"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "type1inst building"
-msgstr "Erzeuge \"type1inst\""
+#: ../../printer/main.pm_.c:30
+msgid "Network printer (TCP/Socket)"
+msgstr "Netzwerkdrucker (TCP/Socket)"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
+#: ../../printer/main.pm_.c:31
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "Drucker an SMB/Windows 9x/ME/NT"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image file"
-msgstr "Abbild-Datei auswählen"
+#: ../../printer/main.pm_.c:32
+msgid "Printer on NetWare server"
+msgstr "Drucker an NetWare Server"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "X server"
-msgstr "X-Server"
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+msgid "Enter a printer device URI"
+msgstr "Druckeranschluss URI"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin User Name"
-msgstr "Name des Domänen-Administrators"
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
+msgstr "Den Auftrag an ein Kommando weiterleiten"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Bei der Suche der TV-Kanäle trat ein Fehler auf"
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
+msgstr "Unbekanntes Modell"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
-msgstr "Vereinigte Staaten von Amerika (international)"
+#: ../../printer/main.pm_.c:317
+msgid "Local Printers"
+msgstr "Lokale Drucker"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Not installed"
-msgstr "Nicht installiert"
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+msgid "Remote Printers"
+msgstr "Netzwerkdrucker"
-#: ../../keyboard.pm:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Beide ALT-Tasten gleichzeitig"
+msgid " on parallel port \\/*%s"
+msgstr " an Parallelport \\/*%s"
-#: ../../network/netconnect.pm:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid "LAN connection"
-msgstr "LAN-Verbindung"
+msgid ", USB printer \\/*%s"
+msgstr ", USB-Drucker \\/*%s"
-#: ../../standalone/logdrake:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid "/File/-"
-msgstr "/Datei/-"
+msgid ", multi-function device on parallel port \\/*%s"
+msgstr ", Multifunktionsgerät am Parallelport \\/*%s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Italian"
-msgstr "Italien"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
+msgstr ", USB Multifunktionsgerät"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Basic"
-msgstr "Einfach"
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
+msgstr ", Multifunktionsgerät am HP JedDirect"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
+msgstr ", Multifunktionsgerät"
-#: ../../lang.pm:1
+#: ../../printer/main.pm_.c:344
#, c-format
-msgid "Honduras"
-msgstr "Honduras"
+msgid ", printing to %s"
+msgstr ", drucken auf %s"
-#: ../../help.pm:1
+#: ../../printer/main.pm_.c:346
#, c-format
-msgid "pdq"
-msgstr "pdq"
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr "auf LDP-Server „%s“, Drucker „%s“"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../printer/main.pm_.c:348
#, c-format
-msgid "Card IO"
-msgstr "Karten-E/A"
+msgid ", TCP/IP host \"%s\", port %s"
+msgstr ", TCP/IP Drucker „%s“, Port %s"
-#: ../../network/drakfirewall.pm:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid "Samba server"
-msgstr "Samba Server"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr "auf SMB/Windows-Server „%s“, Freigabe „%s“"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Diese spezielle Start-Partition\n"
-"ist für die Verwendung mehrerer\n"
-"Betriebssysteme auf dem selben\n"
-"Rechner.\n"
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr "auf dem Novell-Server „%s“, Drucker „%s“"
-#: ../../standalone/drakautoinst:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Bitte wählen Sie für jeden Schritt, ob er wie bei Ihrer Installation "
-"vorgenommen werden soll, oder ob Sie ihn manuell durchführen wollen."
+msgid ", using command %s"
+msgstr ", mittels Kommando „%s“"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"Sie können hier entscheiden, ob Scanner von anderen Rechnern automatisch auf "
-"diesem Rechner zur Verfügung gestellt werden sollen."
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
+msgstr "Rohdaten-Drucker (kein Treiber)"
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:647
#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t- Netzwerk per FTP.\n"
+msgid "(on %s)"
+msgstr "(an %s)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reports check result to tty"
-msgstr "Sendet Prüfbericht an tty"
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
+msgstr "(an diesem Rechner)"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:674
#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Sie müssen einen Geräte- oder Dateinamen eingeben!"
+msgid "On CUPS server \"%s\""
+msgstr "Auf CUPS-Server „%s“"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Quit"
-msgstr "/_Beenden"
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
+msgstr " (Standard)"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Grafikkartenspeicher: %s KB\n"
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
+msgstr "Wählen Sie die Drucker-Anbindung"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
+msgstr "Wie ist der Drucker mit Ihrem Rechner verbunden?"
+
+#: ../../printer/printerdrake.pm_.c:30
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"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
msgstr ""
-"This program is free software; you can redistribute it and/or modify\n"
-"it under the terms of the GNU General Public License as published by\n"
-"the Free Software Foundation; either version 2, or (at your option)\n"
-"any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful,\n"
-"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-"GNU General Public License for more details.\n"
"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"Falls es sich bei Ihrem Druckserver um einen CUPS-Server handelt, müssen Sie "
+"hier keine Einstellungen vornehmen, die Drucker werden automatisch erkannt "
+"und übernommen."
-#: ../../any.pm:1
-#, c-format
-msgid "access to compilation tools"
-msgstr "Zugriff auf Compilier-Werkzeuge"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr "Autoerkennung von Druckern (Lokal, TCP/Socket und SMB Drucker)"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Global statistics"
-msgstr "Globale Statistiken"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+msgid "CUPS configuration"
+msgstr "CUPS Konfiguration"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Bitte wählen Sie die wiederherzustellenden Daten..."
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+msgid "Specify CUPS server"
+msgstr "CUPS-Server angeben"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:83
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 ""
-"Wenn Sie aboot verwenden wollen, müssen Sie ausreichend Platz am Anfang \n"
-"der Platte lassen (2048 Sektoren reichen aus)."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Standard test page"
-msgstr "Standard-Testseite"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Time Zone"
-msgstr "Zeitzone"
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
+msgstr ""
+"Falls im Netzwerk ein CUPS-Server läuft, müssen Sie hier keine Einstellungen "
+"vornehmen; CUPS Server informieren Ihren Rechner über die von ihnen "
+"verwalteten Drucker. Alle Drucker, die Ihr Rechner momentan kennt sind unter "
+"„Netzwerkdrucker“ aufgeführt. Sollte der entfernte CUPS Server jedoch in "
+"einem anderen Subnetz beheimatet sein, müssen Sie mindestens seine IP-"
+"Adresse, evtl. auch die Port Nummer angeben. Im lokalen Subnetz können Sie "
+"die Felder frei lassen."
+
+#: ../../printer/printerdrake.pm_.c:84
+msgid ""
+"\n"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
+msgstr ""
+"\n"
+"Normalerweise wird CUPS automatisch entsprechend Ihres Netzwerks "
+"eingerichtet, damit Sie alle Drucker im lokalen Netzwerk verwenden können. "
+"Falls das nicht funktioniert, schalten Sie „Automatische CUPS Konfiguration“ "
+"aus und editieren Sie die Datei „/etc/cups/cupsd.conf“ selbst. Vergessen Sie "
+"nicht, CUPS anschließend neu zu starten (Befehl: „service cups restart“)."
+
+#: ../../printer/printerdrake.pm_.c:88
+msgid "The IP address should look like 192.168.1.20"
+msgstr "Die IP Adresse sollte etwa die Form „192.168.1.42“ haben!"
+
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
+msgstr "Die Port Nummer muss eine ganze Zahl sein!"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create"
-msgstr "Erzeugen"
+#: ../../printer/printerdrake.pm_.c:99
+msgid "CUPS server IP"
+msgstr "CUPS-Server-IP"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "What"
-msgstr "Was"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
+msgstr "Port"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Bei der Anforderung folgender Pakete trat ein Fehler auf:"
+#: ../../printer/printerdrake.pm_.c:102
+msgid "Automatic CUPS configuration"
+msgstr "Automatische CUPS Konfiguration"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "Bulgarien (BDS)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Server"
-msgstr "Server deaktivieren"
+#: ../../printer/printerdrake.pm_.c:159
+msgid "Checking your system..."
+msgstr "Untersuchung Ihres Rechners ..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem encryption key"
-msgstr "Dateisystem-Schlüssel"
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+msgid "Printerdrake"
+msgstr "PrinterDrake"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
-msgstr "Indien (Gujarati)"
+#: ../../printer/printerdrake.pm_.c:167
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr "Ich konnte keine Drucker direkt an Ihrem Rechner finden."
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:179
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."
+"The following printers\n"
+"\n"
msgstr ""
+"Die folgenden Drucker\n"
+"\n"
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:180
msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
+"The following printer\n"
+"\n"
msgstr ""
-"Bitte wählen Sie die Nummer aus dem Bereich, die Sie bearbeiten wollen,\n"
-"oder betägen Sie die Eingabetaste um fortzufahren. Ihre Wahl? "
+"Der folgende Drucker\n"
+"\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:182
msgid ""
"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
+"and one unknown printer are "
msgstr ""
"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
+"und ein unbekannter Drucker sind "
-#: ../../standalone/draksplash:1
+#: ../../printer/printerdrake.pm_.c:184
#, c-format
-msgid "Save theme"
-msgstr "Design speichern"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "Brasilien"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install"
-msgstr "Auto-Installation"
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+"\n"
+"und %d unbekannte Drucker sind "
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration Wizard"
-msgstr "Netzwerk-Konfigurationsassistent"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"are "
+msgstr ""
+"\n"
+"sind "
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
-msgstr "Wechselmedien automatisch einhängen"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"is "
+msgstr ""
+"\n"
+"ist "
-#: ../../services.pm:1
-#, c-format
-msgid "Printing"
-msgstr "Drucken"
+#: ../../printer/printerdrake.pm_.c:189
+msgid "directly connected to your system"
+msgstr "direkt mit Ihrem Rechner verbunden."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save:"
-msgstr "Bitte geben Sie das zu speichernde Verzeichnis an:"
+#: ../../printer/printerdrake.pm_.c:192
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+"\n"
+"Ich konnte einen unbekannten Rechner direkt an Ihrem Rechner finden."
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:194
#, c-format
msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "Ich konnte keine Drucker direkt an Ihrem Rechner finden."
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+"\n"
+"Ich konnte %d unbekannte Rechner direkt an Ihrem Rechner finden."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "Erzeuge eine neue Partition"
+#: ../../printer/printerdrake.pm_.c:200
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr ""
+"(Stellen Sie bitte sicher, dass alle Drucker angeschlossen und angeschaltet "
+"sind).\n"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Driver:"
-msgstr "Treiber:"
+#: ../../printer/printerdrake.pm_.c:214
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+"Wollen Sie oben aufgeführte Drucker oder Drucker im lokalen Netzwerk zum "
+"Drucken konfigurieren?\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
-msgstr "Unbekannt"
+#: ../../printer/printerdrake.pm_.c:215
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Wollen Sie Drucker im lokalen Netzwerk zum Drucken konfigurieren?\n"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "Fdisk verwenden"
+#: ../../printer/printerdrake.pm_.c:217
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Wollen Sie oben aufgeführte Drucker zum Drucken konfigurieren?\n"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "BEWEGEN SIE IHR MAUS-RAD!"
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr "Sind Sie sicher, dass Sie mit diesem Rechner drucken wollen?\n"
-#: ../../standalone/net_monitor:1
+#: ../../printer/printerdrake.pm_.c:219
#, c-format
-msgid "sent: "
-msgstr "Gesendet: "
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+"ANMERKUNG: Je nach Drucker und Drucksystem werden bis zu %d MB zusätzlicher "
+"Software auf Ihrem Rechner installiert."
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "Automatische IP-Adressen-Zuweisung"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+msgid "Add a new printer"
+msgstr "Drucker hinzufügen"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:259
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"
+"Welcome to the Printer Setup Wizard\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"
+"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"
-" Note that two different options are available after clicking the button:\n"
+"It asks you for all necessary information to set up the printer and gives "
+"you access to all available printer drivers, driver options, and printer "
+"connection types."
+msgstr ""
"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
+"Willkommen zum Druckereinrichtungsassistenten\n"
"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
+"Dieser Assistent hilft Ihnen lokale oder Netzwerkdrucker so einzurichten, "
+"dass dieser Rechner bzw. andere in Ihrem Netzwerk darauf drucken können.\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"
+"Sie werden nur nach den nötigen Informationen über den Drucker gefragt, um "
+"Ihnen dann Zugriff auf Treiber, Druckoptionen und Anschlussart zu erhalten."
+
+#: ../../printer/printerdrake.pm_.c:272
+msgid ""
"\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"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"Nun ist es soweit, die Installation ist abgeschlossen und Ihr neues\n"
-"Betriebssystem sollte einsatzbereit sein. Bei einem Neustart können Sie\n"
-"zwischen den auf Ihrer Platte installierten Betriebssystemen auswählen.\n"
-"Klicken Sie nur noch auf \"%s\" und das System wird neu gestartet.\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"
-"Die Schaltfläche \"%s\" liefert zwei weitere Schaltflächen:\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) and you Windows machines must be connected and "
+"turned on.\n"
"\n"
-" * \"%s\": Hiermit können Sie eine Installationsdiskette erstellen, mit "
-"deren\n"
-"Hilfe Sie eine identische automatische Installation ohne Interaktion eines\n"
-"Administrators durchführen können.\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"
-" Es gibt zwei verschiedene Alternativen, nachdem Sie diese Schaltfläche\n"
-"aktiviert haben:\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
"\n"
-" * \"%s\": Diese Installation ist nur teilweise automatisch, da der\n"
-"Partitionierungsschritt (aber nur dieser!) immer noch interaktiv vonstatten\n"
-"geht.\n"
+"Willkommen zum Druckerassistenten\n"
"\n"
-" * \"%s\": Vollautomatische Installation: Die Festplatte wird "
-"vollständig\n"
-"reorganisiert. Alle darauf vorhandenen Daten gehen verloren!\n"
+"Dieser Assistent möchte Ihnen helfen, Ihre(n) lokalen und Netzwerkdrucker "
+"sowie Drucker an Windowsrechnern im lokalen Netz zu konfigurieren.\n"
"\n"
-" Diese Funktion ist besonders nützlich, wenn man eine Menge von\n"
-"identischer Rechner einrichten will. Weitere Informationen erhalten Sie\n"
-"auch auf unserer Web-Seite in der Sektion \"Auto install\".\n"
+"Falls Sie Drucker haben, die direkt mit dem Rechner verbunden sind, stellen "
+"Sie sicher, dass diese richtig angeschlossen und eingeschaltet sind. Ebenso "
+"müssen die Netzwerkdrucker bzw. Windows-Rechner eingeschaltet sein.\n"
"\n"
-" * \"%s\":(*) Sie speichern damit die Paketauswahl, die Sie vorher "
-"getroffen\n"
-"haben. Wenn Sie später eine erneute Installation vornehmen wollen, legen\n"
-"Sie einfach die Diskette ins Laufwerk und starten die Installation\n"
-"mittels [F1] an der ersten Eingabeaufforderung. Geben Sie dann »linux\n"
-"defcfg=\"floppy\"« ein.\n"
+"Es sei angemerkt, dass sie Erkennung von Netzwerkdruckern etwas länger "
+"dauert, als das Finden von Druckern, die direkt an Ihrem Rechner hängen. "
+"Schalten Sie daher die Erkennung von Netzwerkrechnern aus, sofern Sie diese "
+"Funktionalität nicht benötigen.\n"
"\n"
-"(*) Sie benötigen eine FAT formatierte Diskette (Mittels \"mformat a:\"\n"
-"können Sie unter GNU/Linux eine solche erstellen)."
+"Betätigen Sie die Schaltfläche „Weiter“, wenn Sie soweit sind, bzw. "
+"„Abbruch“, wenn Sie keine Drucker konfigurieren wollen."
-#: ../../lang.pm:1
-#, c-format
-msgid "Moldova"
-msgstr "Moldawien"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Maus"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuration of a remote printer"
-msgstr "Konfiguration eines Netzwerkdruckers"
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
+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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Eine Online-Plattform, die speziell auf die Bedürfnisse von Firmenkunden "
-"zugeschnitten wurde."
+"\n"
+"Willkommen zum Druckerassistenten\n"
+"\n"
+"Dieser Assistent möchte Ihnen helfen, Ihre(n) lokalen Drucker zu "
+"konfigurieren.\n"
+"\n"
+"Falls Sie Drucker haben, die direkt mit dem Rechner verbunden sind, stellen "
+"Sie sicher, dass diese richtig angeschlossen und eingeschaltet sind.\n"
+"\n"
+"Betätigen Sie die Schaltfläche „Weiter“, wenn Sie soweit sind, bzw. "
+"„Abbruch“, wenn Sie keine Drucker konfigurieren wollen."
-#: ../../network/network.pm:1
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "Die URL muss mit \"http://\" oder \"ftp://\" beginnen"
+#: ../../printer/printerdrake.pm_.c:289
+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\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+"\n"
+"Willkommen zum Druckerassistenten\n"
+"\n"
+"Dieser Assistent möchte Ihnen helfen, Ihre(n) lokalen und Netzwerkdrucker zu "
+"konfigurieren.\n"
+"\n"
+"Falls Sie Drucker haben, die direkt mit dem Rechner verbunden sind, stellen "
+"Sie sicher, dass diese richtig angeschlossen und eingeschaltet sind. Ebenso "
+"müssen die Netzwerkdrucker eingeschaltet sein.\n"
+"\n"
+"Es sei angemerkt, dass sie Erkennung von Netzwerkdruckern etwas länger "
+"dauert, als das Finden von Druckern, die direkt an Ihrem Rechner hängen. "
+"Schalten Sie daher die Erkennung von Netzwerkrechnern aus, sofern Sie diese "
+"Funktionalität nicht benötigen.\n"
+"\n"
+"Betätigen Sie die Schaltfläche „Weiter“, wenn Sie soweit sind, bzw. "
+"„Abbruch“, wenn Sie keine Drucker konfigurieren wollen."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Oriya"
-msgstr "Orissa"
+#: ../../printer/printerdrake.pm_.c:307
+msgid "Auto-detect printers connected to this machine"
+msgstr "Selbsterkennung von direkt am Rechner angeschlossenen Druckern"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Neue Regel am Ende hinzufügen"
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
+msgstr "Selbsterkennung von Druckern, die im lokalen Netzwerk hängen"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr "Installation von LILO- und des-Bootsplash erfolgreich."
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr "Selbsterkennung von Druckern, die an Windows Rechnern hängen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:329
msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
+"\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 ""
-"Sie können hier entscheiden, ob Drucker von anderen Rechnern automatisch auf "
-"diesem Rechner zur Verfügung gestellt werden sollen."
+"\n"
+"Herzlichen Glückwunsch, Ihr Drucker ist nun installiert und eingerichtet!\n"
+"\n"
+"Sie können nun mit dem „Drucken“ Befehl Ihrer Anwendungen (meistens im "
+"„Datei“-Menü zu finden) drucken.\n"
+"\n"
+"Falls Sie einen Drucker hinzufügen, entfernen oder umbenennen wollen,\n"
+"oder wenn Sie die Standardeinstellungen wie Papierschacht oder \n"
+"Druckqualität) anpassen wollen, wählen Sie „Drucker“ im „Hardware“\n"
+"Bereich des Mandrake Kontrollzentrums."
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid ""
-"You may now provide options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Sie müssen nun die Optionen für Modul %s angeben.\n"
-"Optionen haben die Form \"name=wert name2=wert2\".\n"
-"Beispielsweise: \"io=0x300 irq=7\""
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Printer auto-detection"
+msgstr "Selbsterkennung von Druckern"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:385
#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "Beenden ohne die Partitionstabelle zu speichern?"
+msgid ", network printer \"%s\", port %s"
+msgstr ", Netzwerkdrucker „%s“, Port %s"
-#: ../../mouse.pm:1
+#: ../../printer/printerdrake.pm_.c:387
#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr ", Drucker „%s“ an SMB/Windows Server „%s“"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:391
#, c-format
-msgid "On Hard Drive"
-msgstr "auf Festplatte"
+msgid "Detected %s"
+msgstr "%s gefunden"
-#: ../../standalone.pm:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "Installing packages..."
-msgstr "Installiere Pakete..."
+msgid "Printer on parallel port \\/*%s"
+msgstr "Drucker an Parallelport \\/*%s"
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "Dutch"
-msgstr "Niederlande"
+msgid "USB printer \\/*%s"
+msgstr "USB-Drucker \\/*%s"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:399
#, c-format
-msgid "Angola"
-msgstr "Angola"
+msgid "Network printer \"%s\", port %s"
+msgstr "Netzwerkdrucker „%s“, Port %s"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:401
#, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "Die folgenden Pakete müssen installiert werden:\n"
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Drucker „%s“ am SMB/Windows Server „%s“"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "service setting"
-msgstr "Dienste einstellen"
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+msgid "Local Printer"
+msgstr "Lokaler Drucker"
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "Benutzerdefiniert"
+#: ../../printer/printerdrake.pm_.c:526
+msgid ""
+"No local printer found! To manually install a printer enter a device name/"
+"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
+"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
+"printer: /dev/usb/lp1, ...)."
+msgstr ""
+"Es wurde kein lokaler Drucker erkannt! Um ihn manuell hinzuzufügen geben Sie "
+"einfach einen Geräte- oder Dateinamen in der Eingabezeile an (Parallele "
+"Anschlüsse: /dev/lp0, /dev/lp1, ..., äquivalent zu LPT1:, LPT2:, ...; Erster "
+"USB Drucker: /dev/usb/lp0, zweier USB Drucker: /dev/usb/lp1, ...)."
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
-msgstr "Litauen"
+#: ../../printer/printerdrake.pm_.c:530
+msgid "You must enter a device or file name!"
+msgstr "Sie müssen einen Geräte- oder Dateinamen eingeben!"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr ""
-"Diese Datei wird bereits von einer anderen Loopback-Verknüpfung verwendet, "
-"wählen Sie eine andere Datei."
+#: ../../printer/printerdrake.pm_.c:539
+msgid "No printer found!"
+msgstr "Kein Drucker erkannt!"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr "Nur lesbar"
+#: ../../printer/printerdrake.pm_.c:548
+msgid "Available printers"
+msgstr "Vorhandene Drucker"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:552
msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
msgstr ""
+"Der folgende Drucker wurde automatisch erkannt, falls es sich nicht um den "
+"Drucker handelt, den Sie einrichten wollen, geben Sie einen Geräte- oder "
+"Dateinamen in der Eingabezeile an."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
-msgstr "Kein bekannter Treiber"
+#: ../../printer/printerdrake.pm_.c:553
+msgid ""
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
+msgstr ""
+"Hier eine Liste aller automatisch erkannten Drucker. Bitte wählen Sie den "
+"gewünschten Drucker oder geben Sie einen Geräte- oder Dateinamen in der "
+"Eingabezeile an."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
+#: ../../printer/printerdrake.pm_.c:555
+msgid ""
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
+msgstr ""
+"Der folgende Drucker wurde automatisch erkannt. Die Einrichtung wird voll "
+"automatisch erfolgen. Sollte Ihr Drucker nicht richtig erkannt worden sein, "
+"oder wollen Sie die Einrichtung selbst vornehmen, wählen Sie „Manuelle "
+"Konfiguration“."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:556
msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-"Falls das nicht der Drucker ist, den Sie einrichten wollen, geben Sie einen "
-"Geräte- oder Dateinamen in der Eingabezeile an."
+"Hier eine Liste aller automatisch erkannten Drucker. Bitte wählen Sie den "
+"gewünschten Drucker. Die Einrichtung wird voll automatisch erfolgen. Sollte "
+"Ihr Drucker nicht richtig erkannt worden sein, oder wollen Sie die "
+"Einrichtung selbst vornehmen, wählen Sie „Manuelle Konfiguration“."
-#: ../../standalone/draksound:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:558
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 choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-"Auf Ihrem System wurde keine Soundkarte gefunden. Bitte stellen Sie sicher, "
-"daß\n"
-"eine Soundkarte korrekt installiert ist und diese Linux unterstützt.\n"
-"\n"
-"\n"
-"Sie können unsere Hardware-Datenbank einsehen unter:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"Bitte wählen Sie den Anschluss, an dem der Drucker hängt oder geben Sie "
+"einen Geräte- oder Dateinamen in der Eingabezeile an."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Netzwerk konfigurieren"
+#: ../../printer/printerdrake.pm_.c:559
+msgid "Please choose the port where your printer is connected to."
+msgstr "Bitte wählen Sie den Anschluss, an dem Ihr Drucker hängt."
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:561
msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
+" (Parallele Anschlüsse: /dev/lp0, /dev/lp1, ..., äquivalent zu LPT1:, "
+"LPT2:, ..., Erster USB Drucker: /dev/usb/lp0, zweiter USB Drucker: /dev/usb/"
+"lp1, ...)."
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr "Starten des Sound-Systems Ihres Rechners"
+#: ../../printer/printerdrake.pm_.c:565
+msgid "You must choose/enter a printer/device!"
+msgstr "Sie müssen einen Drucker wählen/ein Gerät eingeben!"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:584
+msgid "Manual configuration"
+msgstr "Manuelle Konfiguration"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run some checks against the rpm database"
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
+msgstr "Optionen für Netzwerk-Druckerspooler"
+
+#: ../../printer/printerdrake.pm_.c:634
+msgid ""
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
+"Um einen LPD-Drucker im Netzwerk zu verwenden, müssen Sie den Rechnernamen "
+"des Drucker-Servers sowie den Druckernamen auf diesem Server angeben, an den "
+"die Aufträge übertragen werden sollen."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Execute"
-msgstr "Ausführen"
+#: ../../printer/printerdrake.pm_.c:635
+msgid "Remote host name"
+msgstr "Name des entfernten Rechners"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Vorbereiten der Drucker-Datenbank ..."
+#: ../../printer/printerdrake.pm_.c:636
+msgid "Remote printer name"
+msgstr "Name des entfernten Druckers"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Information"
-msgstr "Informationen"
+#: ../../printer/printerdrake.pm_.c:639
+msgid "Remote host name missing!"
+msgstr "Der Name des entfernten Rechners fehlt!"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "No network card"
-msgstr "Keine Netzwerkkarte"
+#: ../../printer/printerdrake.pm_.c:643
+msgid "Remote printer name missing!"
+msgstr "Der Name des entfernten Druckers fehlt!"
-#: ../../mouse.pm:1
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
#, c-format
-msgid "3 buttons"
-msgstr "3 Tasten"
+msgid "Detected model: %s %s"
+msgstr "Gefundendenes Modell: %s %s"
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Which filesystem do you want?"
-msgstr "Welches Dateisystem wollen Sie verwenden?"
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Scanning network..."
+msgstr "Netzwerk durchsuchen ..."
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, c-format
-msgid "Malta"
-msgstr "Malta"
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ", Drucker „%s“, auf Server „%s“"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
#, c-format
-msgid "Detailed information"
-msgstr "Ausführliche Informationen"
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Drucker „%s“, auf Server „%s“"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "SMB (Windows 9x/NT) Drucker-Parameter"
+
+#: ../../printer/printerdrake.pm_.c:796
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."
+"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 ""
-"Standard-Einstellungen des Druckers\n"
-"\n"
-"Sie sollten sicherstellen, dass Papiergröße, Farbangaben, Druckqualität "
-"sowie Informationen zu vorhandenem Speicher, Duplexeinheit und Papierfächern "
-"richtig eingestellt sind. Es sei auch angemerkt, dass häufig mit steigender "
-"Druckqualität die Druckgeschwindigkeit sinkt."
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
-msgstr "Diese Diskette ist nicht FAT-formatiert"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "Konfiguriere Netzwerk"
+"Um auf einem SMB-Drucker zu drucken sind folgende Angaben erforderlich: Der "
+"SMB-Rechnername des Drucker-Servers (entspricht nicht immer dem TCP/IP-"
+"Rechnernamen des Computers) und möglicherweise die IP-Adresse, Freigabename "
+"für den Drucker, auf den Sie zugreifen möchten, sowie entsprechender "
+"Benutzername, Passwort und Arbeitsgruppe."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:797
msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
+" 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 ""
-"Diese Option sichert Daten, die sich geändert haben. Das exakte Verhalten "
-"hängt davon ab, ob der inkrementelle oder differentielle Modus verwendet "
-"wird."
+"Falls der gewünschte Drucker bereits gefunden wurde, wählen Sie ihn einfach "
+"aus der Liste unten aus und geben Sie - falls notwendig - Name, Passwort und/"
+"oder Domäne an."
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Graphic Card"
-msgstr "Grafikkarte"
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
+msgstr "SMB-Server"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing Windows partition"
-msgstr "Größe der Windows-Partition wird geändert"
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr "SMB-Server-IP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "Kamerun"
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr "Freigabename"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "Erster DNS des Providers (optional)"
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "Arbeitsgruppe"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Sie können nun %s partitionieren.\n"
-"Vergessen Sie nicht die Einstellungen mittels ,w` zu speichern, \n"
-"sobald Sie fertig sind."
+#: ../../printer/printerdrake.pm_.c:806
+msgid "Auto-detected"
+msgstr "Selbst gefunden"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finnish)"
-msgstr "Saamen (schwedisch/finnisch)"
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
+msgstr "Sie müssen entweder Den Servernamen oder seine IP-Adresse angeben!"
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Close"
-msgstr "Schließen"
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
+msgstr "Der Name der Samba-Freigabe fehlt!"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
+msgstr "SICHERHEITSWARNUNG!"
+
+#: ../../printer/printerdrake.pm_.c:827
#, 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."
+"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 ""
-"\"%s\": Kontrollieren Sie, ob die Auswahl des Staates, in dem Sie sich\n"
-"befinden korrekt ist. Falls nicht, betätigen Sie bitte die Schaltfläche\n"
-"\"%s\" und wählen Sie den richtigen. Ist Ihr Staat nicht in der Liste, die\n"
-"Sie gezeigt bekommen, können Sie über die Schaltfläche \"%s\" die\n"
-"vollständige Liste bekommen."
+"Sie sind dabei, einen Drucker einzurichten, der über ein Windows-"
+"Benutzerkonto mit Passwort druckt. Aufgrund eines Fehlers in der Architektur "
+"der Samba-Client-Software wird das Passwort im Klartext in die Kommandozeile "
+"der Samba-Komponente eingefügt, welche die zu druckenden Daten auf den "
+"Windows-Server überträgt. So ist es für jeden Benutzer möglich, das Passwort "
+"auf dem Bildschirm anzuzeigen, indem er Kommandos wie zum Beispiel „ps "
+"auxwww“ ausführt.\n"
+"\n"
+"Wir empfehlen von einer der folgenden Alternativen Gebrauch zu machen (in "
+"allen Fällen muss sichergestellt werden dass nur Maschinen des lokalen "
+"Netzwerks auf den Windows-Server zugreifen können, zum Beispiel mit Hilfe "
+"einer Firewall):\n"
+"\n"
+"Drucken Sie über ein Benutzerkonto ohne Passwort auf Ihrem Windows-Server, "
+"zum Beispiel über das „GUEST“-Benutzerkonto oder über ein speziell zum "
+"Drucken eingerichtetes Benutzerkonto. Entfernen Sie nicht den Passwortschutz "
+"von einem persönlichen Benutzerkonto oder vom Administratorkonto.\n"
+"\n"
+"Richten Sie Ihren Windows-Server so ein, dass der Drucker unter dem LPD-"
+"Protokoll erreichbar ist. Dann richten sie den Drucker auf dieser Maschine "
+"mit dem Verbindungstyp „%s“ ein.\n"
+"\n"
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
-msgid "Calendar"
-msgstr "Kalender"
+msgid ""
+"Set up your Windows server to make the printer available under the IPP "
+"protocol and set up printing from this machine with the \"%s\" connection "
+"type in Printerdrake.\n"
+"\n"
+msgstr ""
+"Richten Sie Ihren Windows-Server so ein, dass Ihr Drucker über das IPP-"
+"Protokoll erreichbar ist und konfigurieren sie ihn auf dieser Maschine mit "
+"dem Verbindungstyp „%s“ in Printerdrake.\n"
+"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:840
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+"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 ""
-"Ausgewählte Katalogeinträge\n"
-"wieder herstellen"
+"Verbinden Sie Ihren Drucker mit einem Linux-Server und lassen Sie Ihre(n) "
+"Windows-Rechner als Client auf ihn zugreifen.\n"
+" \n"
+"Möchten Sie Ihren Drucker wirklich so einrichten, wie Sie es jetzt tun?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
+msgstr "Optionen für NetWare-Drucker"
+
+#: ../../printer/printerdrake.pm_.c:912
msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
+"To print on a NetWare printer, you need to provide the NetWare print server "
+"name (Note! it may be different from its TCP/IP hostname!) as well as the "
+"print queue name for the printer you wish to access and any applicable user "
+"name and password."
msgstr ""
-"Um einen LPD-Drucker im Netzwerk zu verwenden, müssen Sie den Rechnernamen "
-"des Drucker-Servers sowie den Druckernamen auf diesem Server angeben, an den "
-"die Aufträge übertragen werden sollen."
+"Um auf einem NetWare-Drucker zu drucken sind folgende Angaben erforderlich: "
+"Name des NetWare-Drucker-Servers (entspricht nicht immer dem TCP/IP-"
+"Rechnernamen des Computers), Name der Drucker-Warteschlange, sowie falls "
+"notwendig, den entsprechenden Benutzernamen samt Passwort."
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
-msgstr "Island"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr "Drucker-Server"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Netzwerk & Internet konfigurieren"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
+msgstr "Name der Druckerwarteschlange"
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
-msgstr "Das Programm \"consolehelper\" wurde nicht gefunden."
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
+msgstr "Der NCP Servername fehlt!"
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr "gestoppt"
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
+msgstr "Der NCP Warteschlangen-Name fehlt!"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "Ob die FPU einen IRQ Vector hat"
+msgid ", host \"%s\", port %s"
+msgstr ", Rechner „%s“, Port %s"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
-msgid "Ext2"
-msgstr "Ext2"
+msgid "Host \"%s\", port %s"
+msgstr "Rechner „%s“, Port %s"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr "Baum erweitern"
+#: ../../printer/printerdrake.pm_.c:1030
+msgid "TCP/Socket Printer Options"
+msgstr "Optionen für TCP/Socket-Drucker"
-#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:1032
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
-"\n"
-"It has been reported to oops the kernel on unloading.\n"
-"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-"Der alte \"%s\" Treiber steht auf einer Schwarzen Liste.\n"
-"\n"
-"Der Treiber soll Fehlfunktionen verursachen.\n"
-"\n"
-"Der neue \"%s\" Treiber steht nach einem Neustart zur Verfügung."
+"Wählen Sie einen der automatisch erkanneten Drucker aus der Liste oder geben "
+"Sie den Hostnamen oder die IP-Adresse und optional die Portnummer (wenn Port "
+"nicht angegeben, wird 9100 verwendet) ein."
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Expert Mode"
-msgstr "Expertenmodus"
+#: ../../printer/printerdrake.pm_.c:1033
+msgid ""
+"To print to a TCP or socket printer, you need to provide the host name or IP "
+"of the printer and optionally the port number (default is 9100). On HP "
+"JetDirect servers the port number is usually 9100, on other servers it can "
+"vary. See the manual of your hardware."
+msgstr ""
+"Um einen TCP- oder Socket-Drucker verwenden zu können, müssen Sie auf alle "
+"Fälle dessen Rechnernamen, bzw. IP-Adresse - möglicherweise auch den Port - "
+"angeben. Bei HP JetDirect Servern ist dies normalerweise die Port-Adresse "
+"9100, bei anderen Servern kann es eine andere sein. Schauen Sie im "
+"Zweifelsfall in die Unterlagen des Herstellers."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "Drucker-Optionen"
+#: ../../printer/printerdrake.pm_.c:1037
+msgid "Printer host name or IP missing!"
+msgstr "Der Rechnername, bzw die IP-Adresse des Druckers fehlt!"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Local Network adress"
-msgstr "Lokale Netzwerkadresse"
+#: ../../printer/printerdrake.pm_.c:1059
+msgid "Printer host name or IP"
+msgstr "Rechnername/IP des Druckers"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Sichern Sie Ihre Systemdateien. (Verzeichnis /etc)."
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
+msgstr "Druckeranschluss URI"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Set the user umask."
+#: ../../printer/printerdrake.pm_.c:1108
+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 ""
-"Argumente: (umask)\n"
-"\n"
-"Setzen der Benutzerzugriffsmaske."
+"Sie können hier direkt die URI eines Druckers angeben. Die URI muss den CUPS "
+"bzw. den Foomatic Spezifikationen genügen. Es sei hier noch angemerkt, dass "
+"nicht alle URI-Typen von allen Drucksystemem unterstützt werden."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
+msgstr "Sie müssen eine gültige URI eingeben!"
+
+#: ../../printer/printerdrake.pm_.c:1463
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 ?"
+"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 ""
-"Sie haben nun die Möglichkeit Pakete zu installieren, die seit Erscheinen\n"
-"der Distribution aktualisiert wurden. Es handelt sich um \n"
-"Sicherheitsaktualisierungen und Fehlerkorrekturen.\n"
-"\n"
-"Allerdings benötigen Sie dafür eine funktionierende Internetverbindung.\n"
-"\n"
-"Möchten Sie die Aktualisierungen vornehmen?"
+"Jeder Drucker benötigt einen Namen (etwa „Drucker“).\n"
+"Beschreibung und Standort müssen nicht ausgefüllt werden.\n"
+"Sie dienen nur als Kommentare für den Anwender."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Samba Server"
-msgstr "Samba-Server"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr "Druckername"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Australisches Optus Kabel TV"
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
+msgstr "Beschreibung"
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> nächstes Element | <Leertaste> auswählen | <F12> weiter "
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
+msgstr "Standort"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet:"
-msgstr "Subnetz:"
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+msgid "Reading printer database..."
+msgstr "Lesen der Drucker-Datenbank ..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Zimbabwe"
-msgstr "Simbabwe"
+#: ../../printer/printerdrake.pm_.c:1482
+msgid "Preparing printer database..."
+msgstr "Vorbereiten der Drucker-Datenbank ..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "When"
-msgstr "Wann"
+#: ../../printer/printerdrake.pm_.c:1578
+msgid "Your printer model"
+msgstr "Ihr Druckermodell"
-#: ../../network/adsl.pm:1
+#: ../../printer/printerdrake.pm_.c:1579
#, c-format
msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
+"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 ""
-"Sie brauchen den Alcatel-Mikrocode.\n"
-"Laden Sie es sich von\n"
-"%s\n"
-"herunter und kopieren Sie die Datei \"mgmt.o\"\n"
-"nach \"/usr/share/speedtouch\""
+"PrinterDrake hat den Modellnamen der Selbsterkennung mit den Modellen in der "
+"Datenbank verglichen, um den besten Treiber zu finden. Die Auswahl kann "
+"jedoch falsch sein, etwa wenn Ihr Drucker nicht in der Datenbank vorhanden "
+"ist. Kontrollieren Sie, ob die Wahl korrekt ist und wählen Sie die "
+"Schaltfläche „Das Modell ist richtig“, wenn der Treiber Ihren Wün "
+"entspricht, andernfalls betägen Sie „Modell auswählen“, um die Auswahl "
+"selbst vorzunehmen.\n"
+"\n"
+"Folgender Drucker wurde gefunden:\n"
+"\n"
+"%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hour"
-msgstr "Stunde"
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+msgid "The model is correct"
+msgstr "Das Modell ist richtig"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Zweiter DNS-Server (optional)"
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+msgid "Select model manually"
+msgstr "Modell auswählen"
-#: ../../lang.pm:1
-#, c-format
-msgid "Finland"
-msgstr "Finnland"
+#: ../../printer/printerdrake.pm_.c:1606
+msgid "Printer model selection"
+msgstr "Auswahl des Druckertyps"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Farbtiefe: %s\n"
+#: ../../printer/printerdrake.pm_.c:1607
+msgid "Which printer model do you have?"
+msgstr "Über welchen Druckertyp verfügen Sie?"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It must be upgraded"
+#: ../../printer/printerdrake.pm_.c:1608
+msgid ""
+"\n"
+"\n"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-"Sie können dieses Paket nicht aus der Auswahl entfernen. \n"
-"Es muss aktualisiert werden!"
+"\n"
+"\n"
+"Kontrollieren Sie bitte, ob PrinterDrake Ihern Drucker korrekt erkannt hat. "
+"Falls die Markierung auf einem falschen Gerät oder auf „Rohdaten-Drucker“ "
+"steht, suchen Sie bitte selbst Ihren Drucker in der Liste."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "Laden von Diskette ..."
+#: ../../printer/printerdrake.pm_.c:1611
+msgid ""
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
+msgstr ""
+"Falls Ihr Drucker nicht aufgeführt ist wählen Sie bitte ein kompatibles bzw "
+"ähnliches Modell (Für Einzelheiten schauen Sie bitte in Ihr Druckerhandbuch)."
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "Zeitzone - DrakClock"
+#: ../../printer/printerdrake.pm_.c:1697
+msgid "OKI winprinter configuration"
+msgstr "OKI Win-Drucker Konfiguration"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
+#: ../../printer/printerdrake.pm_.c:1698
+msgid ""
+"You are configuring an OKI laser winprinter. These printers\n"
+"use a very special communication protocol and therefore they work only when "
+"connected to the first parallel port. When your printer is connected to "
+"another port or to a print server box please connect the printer to the "
+"first parallel port before you print a test page. Otherwise the printer will "
+"not work. Your connection type setting will be ignored by the driver."
msgstr ""
+"Sie versuchen, eine OKI Win-Laserdrucker einzurichten. Da diese Drucker ein "
+"sehr eigenwilliges Protokol verwenden, funktionieren sie nur, wenn sie am "
+"ersten Parallelport angeschlossen sind. Sollte Ihr Druker an einer anderen "
+"Schnittstelle oder an einer Printserver-Box hängen, schließen Sie ihn bitte "
+"an den ersten Parallelport, bevor Sie versuchen eine Testseite zu drucken ..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr "Slowenien"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse test"
-msgstr "Maus Test"
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+msgid "Lexmark inkjet configuration"
+msgstr "Lexmark Tintenstrahl-Konfiguration"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1719
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."
+"The inkjet printer drivers provided by Lexmark only support local printers, "
+"no printers on remote machines or print server boxes. Please connect your "
+"printer to a local port or configure it on the machine where it is connected "
+"to."
msgstr ""
+"Der Lexmark Tintenstrahl-Druckertriber unterstützt nur lokale Drucker, keine "
+"Drucker auf entfernten Rechnern oder an Printserver-Boxen. Bitte schließen "
+"Sie den Druker direkt an Ihren Rechner oder richten Sie ihn auf dem Rechner "
+"ein, an den er angeschlossen ist."
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1746
msgid ""
-"Enter a user\n"
-"%s"
+"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 ""
-"Benutzer einrichten\n"
-"%s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
+"Um mit Ihrem Lexmark-Tintenstrahldrucker drucken zu können, benötigen Sie "
+"die Treiber, die von Lexmark bereitgestellt werden (http://www.lexmark."
+"com/). Klicken Sie auf den „Drivers“-Link. Wählen Sie dann das Druckermodell "
+"und geben Sie „Linux“ als Betriebssystem an. Sie erhalten die Treiber als "
+"RPM-Paket oder als Shellskript mit interaktiver grafischer Installation. Sie "
+"müssen die Einrichtung nicht mit dem Lexmark-Klicktool vornehmen. Sie können "
+"direkt nach der Lizenz auf „Abbruch“ drücken. Drucken Sie dann die Druckkopf-"
+"Justierungsseiten mit „lexmarkmaintain“ und justieren Sie damit den "
+"Druckkopf."
+
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr "GDI-Laserdrucker, der das Zenographics-ZJ-Stream-Format benutzt"
+
+#: ../../printer/printerdrake.pm_.c:1750
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+"Ihr Drucker gehört zu der Gruppe von GDI-Laserdruckern (winprinters), welche "
+"das Zenographics-ZJ-Stream-Rasterformat für die zum Drucker zu übertragenden "
+"Daten erwarten. Der Treiber für dieses Format ist noch in einem frühen "
+"Entwicklungsstadium und daher wird er wahrscheinlich nicht immer perfekt "
+"funktionieren. Insbesondere ist es möglich, dass der Drucker nur "
+"funktioniert, wenn Sie A4 als Papierformat wählen.\n"
+"\n"
+"Bei einige dieser Drucker, wie zum Beispiel der HP LaserJet 1000, für den "
+"dieser Treiber ursprünglich entwickelt wurde, muss die Firmware nach jedem "
+"Einschalten in den Drucker geladen werden. Im Falle des HP LaserJet 1000 "
+"müssen Sie die mit dem Drucker mitgelieferte Windows-Treiber-CD oder Ihre "
+"Windows-Partition nach der Datei sihp1000.img durchsuchen und diese mit "
+"einem der folgenden Kommandos in den Drucker laden:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"Das erste Kommando kann von jedem Benutzer gegeben werden, das Zweite muss "
+"als root gegeben werden. Danach können Sie dann ganz normal drucken.\n"
+
+#: ../../printer/printerdrake.pm_.c:1972
msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"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 ""
-"- PCI- und USB-Geräte: Eine Auflistung der IDs der Hersteller, Geräte, "
-"Subhersteller und Subgeräte von PCI- / USB-Geräten."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "ProgressBar color selection"
-msgstr "Farbauswahl für den Fortschrittsbalken"
+"Standard-Einstellungen des Druckers\n"
+"\n"
+"Sie sollten sicherstellen, dass Papiergröße, Farbangaben, Druckqualität "
+"sowie Informationen zu vorhandenem Speicher, Duplexeinheit und Papierfächern "
+"richtig eingestellt sind. Es sei auch angemerkt, dass häufig mit steigender "
+"Druckqualität die Druckgeschwindigkeit sinkt."
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
-msgstr ""
-"Hier sind die verschiedenen Einträge.\n"
-"Sie können weitere hinzufügen oder existierende ändern."
+msgid "Option %s must be an integer number!"
+msgstr "Der Parameter %s muss eine Zahl sein!"
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
+msgid "Option %s must be a number!"
+msgstr "Der Parameter %s muss eine Zahl sein!"
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:1989
#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
+msgid "Option %s out of range!"
+msgstr "Der Parameter %s ist yu groß oder zu klein!"
-#: ../../standalone/drakbug:1
+#: ../../printer/printerdrake.pm_.c:2028
#, c-format
msgid ""
-"Application Name\n"
-"or Full Path:"
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
+"Möchten Sie diesen Drucker („%s“)\n"
+"als Standarddrucker verwenden?"
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2051
+msgid "Test pages"
+msgstr "Testseiten"
+
+#: ../../printer/printerdrake.pm_.c:2052
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."
+"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 ""
-"Dieser Dienst startet Applikationen der at-Warteschlange wenn der \n"
-"dafür vorgesehene Zeitpunkt erreicht ist. Lässt die Systemauslastung \n"
-"es zu, werden sog. Batch-Anwendungen gestartet."
+"Bitte wählen Sie, welche Testseiten Sie drucken wollen.\n"
+"\n"
+"Bemerkung: Der Druck der Foto-Testseite dauert häufig extrem lange. Bei "
+"Laserdruckern mit wenig Speicher kann es auch vorkommen, dass sie gar nicht "
+"gedruckt wird. Normalerweise sollte es ausreichen, die Standard-Testseiten "
+"auszudrucken."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
-msgstr "Radiobetrieb:"
+#: ../../printer/printerdrake.pm_.c:2056
+msgid "No test pages"
+msgstr "Keine Testseiten"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "Installiere SANE-Pakete..."
+#: ../../printer/printerdrake.pm_.c:2057
+msgid "Print"
+msgstr "Drucken"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
-msgstr "LDAP"
+#: ../../printer/printerdrake.pm_.c:2114
+msgid "Standard test page"
+msgstr "Standard-Testseite"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
-msgstr "SILO"
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
+msgstr "Alternative Testseite (US-Format - „Letter“)"
-#: ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Change type"
-msgstr "Typ ändern"
+#: ../../printer/printerdrake.pm_.c:2120
+msgid "Alternative test page (A4)"
+msgstr "Alternative Testseite (A4)"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", USB-Drucker #%s"
+#: ../../printer/printerdrake.pm_.c:2122
+msgid "Photo test page"
+msgstr "Foto-Testseite"
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "SILO Installation"
+#: ../../printer/printerdrake.pm_.c:2126
+msgid "Do not print any test page"
+msgstr "Keine Testseite(n) drucken"
-#: ../../install_messages.pm:1
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
+msgstr "Druck der Testseite(n) ..."
+
+#: ../../printer/printerdrake.pm_.c:2159
#, 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"
+"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"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-"Herzlichen Glückwunsch, die Installation ist abgeschlossen.\n"
-"Entfernen Sie die Startmedien (CD-ROMs / Disketten) und drücken Sie die "
-"Eingabetaste zum Neustart Ihres Rechners.\n"
-"\n"
-"Für Informationen zu Sicherheitsaktualisierungen dieser Version von Mandrake "
-"Linux informieren Sie sich bitte unter \n"
-"\n"
+"Die Testseite(n) wurden an den Drucker gesandt.\n"
+"Es kann einen Augenblick dauern, bevor der Drucker seine Arbeit aufnimmt.\n"
+"Druckstatus:\n"
"%s\n"
"\n"
-"Wie Sie Ihr System warten können, erfahren Sie im Kapitel \"Nach der "
-"Installation\" im offiziellen Benutzerhandbuch von Mandrake Linux."
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Aktiviere das Network Time Protocol"
+#: ../../printer/printerdrake.pm_.c:2163
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+msgstr ""
+"Die Testseite(n) wurden an den Drucker gesandt.\n"
+"Es kann einen Augenblick dauern, bevor der Drucker seine Arbeit aufnimmt.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "paranoid"
-msgstr "Paranoid"
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
+msgstr "War der Ausdruck korrekt?"
+
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+msgid "Raw printer"
+msgstr "Rohdaten-Drucker"
-#: ../../security/l10n.pm:1
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "Keine unnötigen Emails senden"
+msgid ""
+"To print a file from the command line (terminal window) you can either use "
+"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
+"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
+"to modify the option settings easily.\n"
+msgstr ""
+"Sie können sowohl den Befehl „%s <datei>“ verwenden, wenn Sie in einer "
+"Konsole die Datei „<datei>“ drucken wollen, als auch ein grafisches "
+"Hilfsprogramm verwenden: „xpp <datei>“ oder „kprinter <datei>“. Die "
+"grafischen Hilfsprogramme erlauben Ihnen auf einfache Weise den richtigen "
+"Drucker zu wählen und die notwendigen Druckerparameter anzugeben.\n"
+
+#: ../../printer/printerdrake.pm_.c:2218
+msgid ""
+"These commands you can also use in the \"Printing command\" field of the "
+"printing dialogs of many applications, but here do not supply the file name "
+"because the file to print is provided by the application.\n"
+msgstr ""
+"Sie können diese Befehle auch in der „Druck-Kommando“-Zeile des Druckdialogs "
+"zahlreicher Anwendungen angeben, lassen Sie jedoch den Dateinamen weg, da "
+"die zu druckende Datei von der Anwendung geliefert wird.\n"
-#: ../../standalone/scannerdrake:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "Ihr(e) Scanner wird nicht im Netzwerk verfügbar sein"
+msgid ""
+"\n"
+"The \"%s\" command also allows to modify the option settings for a "
+"particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\". "
+msgstr ""
+"\n"
+"Der Befehl „%s“ erlaubt es Ihnen auch zahlreiche Einstellungen für einen "
+"bestimmten Druckauftrag zu ändern. Geben Sie die gewünschten Angaben einfach "
+"in der Kommandozeile mit an, etwa: „%s <Datei>“. "
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "E-Mail-Bericht nach jedem Sicherungsvorgang an: "
+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\n"
+"\n"
+msgstr ""
+"Um alle existierenden Optionen des Druckers zu erfahren, lesen Sie entweder "
+"die unten angegebene Liste oder betätigen Sie die Schaltfläche „Liste der "
+"Drucker-Optionen“. %s%s\n"
+"\n"
+
+#: ../../printer/printerdrake.pm_.c:2228
+msgid ""
+"Here is a list of the available printing options for the current printer:\n"
+"\n"
+msgstr ""
+"Hier die Liste vorhandener Drucker-Parameter des aktuellen Druckers:\n"
+"\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, c-format
msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
+msgstr ""
+"Verwenden Sie den Befehl „%s <Datei>“, um die Datei <Datei> in der "
+"Kommandozeile auszudrucken.\n"
+
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
+msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-"Sie können diesen Befehl auch im \"Druckkommando\"-Feld vieler Programme "
+"Sie können diesen Befehl auch im „Druckkommando“-Feld vieler Programme "
"angeben. Tragen Sie bitte keinen Dateinamen ein, da dieser vom Programm "
"ergänzt wird.\n"
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolution"
-msgstr "Auflösung"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
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."
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
msgstr ""
-"Um auf einem SMB-Drucker zu drucken sind folgende Angaben erforderlich: Der "
-"SMB-Rechnername des Drucker-Servers (entspricht nicht immer dem TCP/IP-"
-"Rechnernamen des Computers) und möglicherweise die IP-Adresse, Freigabename "
-"für den Drucker, auf den Sie zugreifen möchten, sowie entsprechender "
-"Benutzername, Passwort und Arbeitsgruppe."
+"Um eine Liste der Drucker-Parameter Ihres Druckers zu erhalten, betätigen "
+"Sie bitte die Schaltfläche „Liste der Drucker-Optionen“."
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2253
#, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
msgstr ""
+"Verwenden Sie einen der Befehle „%s <Datei>“ oder „%s <Datei>“, um die Datei "
+"<Datei> in der Kommandozeile auszudrucken.\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
-msgstr "neu konfigurieren"
+#: ../../printer/printerdrake.pm_.c:2257
+msgid ""
+"You can also use the graphical interface \"xpdq\" for setting options and "
+"handling printing jobs.\n"
+"If you are using KDE as desktop environment you have a \"panic button\", an "
+"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
+"jobs immediately when you click it. This is for example useful for paper "
+"jams.\n"
+msgstr ""
+"Sie können auch das Grafikwerkzeug „xpdq“ zum setzen der Optionen und "
+"Verwalten der Druckjobs verwenden.\n"
+"Falls Sie KDE als Arbeitsoberfläche nutzen, haben Sie eine Panik-Abschaltung "
+"in Forma des Arbeitsflächensymbols „STOP Printer!“, dass sofort alle "
+"Druckaufträge anhä, wenn Sie es betägen. Das kann beispielsweise dann "
+"hilfreich sein, wenn Sie einen Papierstau in Ihrem Drucker haben.\n"
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm_.c:2261
#, 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."
+"\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 ""
-"Ihre Karte kann 3D-hardwarebeschleunigt werden, allerdings nur mit \n"
-"XFree %s. BEMERKUNG: DIESE FUNKTION IST NOCH IM EXPERIMENTIER-\n"
-"STADIUM UND KANN ZUM STEHENBLEIBEN IHRES RECHNERS FÜHREN."
+"\n"
+"Die Befehle „%s“ und „%s“ erlauben es Ihnen ebenfals die Optionen eines "
+"spezeiellen Druckjobs zu konfigurieren. Fügen Sie einfach die gewünschten "
+"Einstellungen in der Kommandozeile ein, etwa „%s <Datei>“.\n"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Shell timeout"
-msgstr "BS-Startverzögerung für den Kernel"
+#: ../../printer/printerdrake.pm_.c:2271
+#, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Drucken/Scannen/Fotokarten mit „%s“"
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm_.c:2272
#, c-format
-msgid "Xinetd Service"
-msgstr "Xinetd-Dienst"
+msgid "Printing/Scanning on \"%s\""
+msgstr "Drucken/Scannen mit „%s“"
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:2274
#, c-format
-msgid "access to network tools"
-msgstr "Zugriff auf Netzwerk-Werkzeuge"
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Drucken/Fotokartenzugriff mit „%s“"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2275
#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "Firmware-Upload an HP LaserJet 1000"
+msgid "Printing on the printer \"%s\""
+msgstr "Drucken auf Drucker „%s“"
+
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+msgid "Close"
+msgstr "Schließen"
+
+#: ../../printer/printerdrake.pm_.c:2281
+msgid "Print option list"
+msgstr "Liste der Drucker-Optionen"
-#: ../advertising/03-software.pl:1
+#: ../../printer/printerdrake.pm_.c:2301
#, 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."
+"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 ""
-"Mandrake Linux 9.2 reizt Ihren Multimediarechner voll aus! Verwenden Sie die "
-"neueste Software, um Audiodateien abzuspielen, Ihre Fotos und Bilder zu "
-"bearbeiten sowie Videos abzuspielen ..."
+"Ihr Multifunktionsgerät wurde automatisch auch zum Scannen eingerichtet. Sie "
+"können nun mit dem Befehl „scanimage“ („scanimage -d hp:%s“ um den Scanner "
+"auszuwählen, falls Sie mehrere angeschlossen haben), eingegeben in der "
+"Kommandozeile, scannen. Wenn Sie eine grafisches Werkzeug verwenden wollen: "
+"„xscanimage“ bzw. „xsane“. Sie können auch den GIMP verwenden. Wählen Sie "
+"einfach im Menü „Datei/Holen“ den entsprechenden Eintrag. Sie können sich "
+"auch mittels „man scanimage“ bzw „man sane-hp“ in der Kommandozeile weitere "
+"Informationen ausgeben lassen.\n"
+"\n"
+"Verwenden Sie für dieses Gerät nicht „ScannerDrake“!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Hier ist eine Liste aller automatisch erkannten Drucker."
+#: ../../printer/printerdrake.pm_.c:2322
+msgid ""
+"Your printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
+msgstr ""
+"Ihr Drucker wurde automatisch so konfiguriert, dass Sie von Ihrem Rechner "
+"auf die Foto-Speicherkartenlaufwerke zugreifen können. Sie können jetzt "
+"entweder mit dem grafischen Programm MToolsFM (Menu: \"Programme\" -> "
+"\"Dateiwerkzeuge\" -> \"MTools File Manager\") oder auf der Kommandozeile "
+"mit den mtools (Für mehr Information geben Sie \"man mtools\" auf der "
+"Kommandozeile ein) auf die eingelegte Karte zugreifen. Sie finden das "
+"Dateisystem der Karte unter dem Laufwerksbuchstaben \"p:\" oder, wenn Sie "
+"mehr als einen HP-Drucker mit Foto-Speicherkartenlaufwerken haben, unter den "
+"nachfolgenden Buchstaben. In MToolsFM können Sie zwischen den "
+"Laufwerksbuchstaben mit dem Feld über der oberen rechten Ecke der Dateiliste "
+"umschalten."
+
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+msgid "Reading printer data..."
+msgstr "Lesen der Treiber-Datenbank ..."
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+msgid "Transfer printer configuration"
+msgstr "Drucker-Einstellung transferieren"
+
+#: ../../printer/printerdrake.pm_.c:2365
#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"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 ""
-"Fehler bei der Installation von aboot. Soll ich die Installation \n"
-"mit Gewalt versuchen, auch wenn dies die Zerstörung der ersten \n"
-"Partition verursachen kann?"
+"Sie können die Druckerkonfiguration, die Sie für den Spooler „%s“ "
+"vorgenommen haben für „%s“, ihren aktuellen Spooler, verwenden. Alle Daten "
+"(Name, Beschreibung, Standort, Verbindungsart und standard "
+"Optionseinstellungen) werden übernommen, Druckjobs in der alten "
+"Warteschlange gehen jedoch verloren.\n"
+"Nicht alle Warteschlangen können übernommen werden:\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2368
msgid ""
-"Restore Selected\n"
-"Files"
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
msgstr ""
-"Markierte Dateien\n"
-"wiederherstellen"
+"CUPS unterstützt keine Druker an Novel Servern oder Drucker, die ihre Daten "
+"in ein frei gewähltes Kommando senden.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2370
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."
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
msgstr ""
-"%s existiert, soll ich es löschen?\n"
-"\n"
-"Warnung: Wenn Sie dies schon gemacht haben, müssen Sie wahrscheinlich\n"
-"den Eintrag in der Datei authorized_keys auf dem Server löschen."
+"PDQ unterstützt nur lokale Drucker, entfernte LPD Drucker und Socket/TCP "
+"Drucker.\n"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr "LPD und LPRng unterstükeine IPP Drucker.\n"
+
+#: ../../printer/printerdrake.pm_.c:2374
+msgid ""
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
msgstr ""
-"Bitte füllen Sie die folgen Felder aus \n"
-"bzw. makieren Sie die korrekten Angaben"
+"Warteschlangen, die nicht mit diesem Programm oder „foomatic-configure“ "
+"ertellt wurden, können nicht übertragen werden."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Möchten Sie die vorgenommenen Änderungen in \"/etc/fstab\" speichern?"
+#: ../../printer/printerdrake.pm_.c:2375
+msgid ""
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
+msgstr ""
+"\n"
+"Drucker, die mit den PPD-Dateien ihrer Hersteller oder CUPS-spezifischen "
+"Treibern eingerichtet wurden, können nicht übertragen werden."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
-msgstr "Boot-Protokoll"
+#: ../../printer/printerdrake.pm_.c:2376
+msgid ""
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
+msgstr ""
+"\n"
+"Markieren Sie die Druckerwarteschlangen, die sie übertragen wollen und "
+"betätigen Sie die Schaltfläche „Übertragen“."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-Platten %s\n"
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
+msgstr "Druckerdaten nicht übertragen"
-#: ../../services.pm:1
-#, c-format
-msgid "On boot"
-msgstr "Beim Systemstart"
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
+msgstr "Übertragen"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2392
#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "Das Paket %s wird benötigt. Soll ich es installieren?"
+msgid ""
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
+msgstr ""
+"Es existiert bereits ein Drucker mit Namen „%s“ unter %s.\n"
+"Durch betätigen der Schaltfäche „Übertragen“ können Sie ihn\n"
+"überschreiben. Sie können dem Drucker auch einen neuen \n"
+"Namen geben oder ihn einfach überspringen."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus identification"
-msgstr "Bus"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr ""
+"Druckernamen sollten nur Buchstaben, Ziffern und den Unterstrich unterhalten"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
-msgid "Vatican"
-msgstr "Vatikan"
+msgid ""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
+msgstr ""
+"Der Drucker „%s“ existiert bereits. Wollen Sie ihn wirklich \n"
+"ersetzen?"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please make a backup of your data first"
-msgstr "Bitte machen Sie erst eine Sicherheitskopie Ihrer Daten!"
+#: ../../printer/printerdrake.pm_.c:2413
+msgid "New printer name"
+msgstr "Neuer Druckername"
-#: ../../harddrake/data.pm:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "ADSL adapters"
-msgstr "ADSL Adapter"
+msgid "Transferring %s..."
+msgstr "Übertragen von „%s“ ..."
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2427
#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
+msgid ""
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
msgstr ""
-"Sie haben mehr als eine Festplatte.\n"
-"Auf welche soll GNU/Linux installiert werden?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Eritrea"
-msgstr "Eritrea"
+"Sie haben Ihren alten Standarddrucker („%s“) übertragen, soll es auch Ihr "
+"Standarddrucker unter dem neuen Drucksystem „%s“ werden?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot ISO"
-msgstr "Boot ISO"
+#: ../../printer/printerdrake.pm_.c:2437
+msgid "Refreshing printer data..."
+msgstr "Aktualisieren der Druckerdaten ..."
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Firmware needed"
-msgstr "Firmware wird benötigt"
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+msgid "Configuration of a remote printer"
+msgstr "Konfiguration eines entfernten Druckers"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove List"
-msgstr "Liste entfernen"
+#: ../../printer/printerdrake.pm_.c:2446
+msgid "Starting network..."
+msgstr "Netzwerk starten ..."
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
-msgstr "Eine individuell einstellbare Umgebung"
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+msgid "Configure the network now"
+msgstr "Netzwerk jetzt konfigurieren"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
-msgstr "Grönland (Inuktitut)"
+#: ../../printer/printerdrake.pm_.c:2480
+msgid "Network functionality not configured"
+msgstr "Ihr Netzwerk ist nicht konfiguriert"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2481
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."
+"You are going to configure a remote printer. This needs working network "
+"access, but your network is not configured yet. If you go on without network "
+"configuration, you will not be able to use the printer which you are "
+"configuring now. How do you want to proceed?"
msgstr ""
+"Sie wollen einen entfernten Drucker einrichten. Sie benötigen dafür ein "
+"funktionerendes Netzwerk, aber Ihr Netzwerk ist noch nicht eingerichtet. "
+"Sollten Sie dennoch fortfahren, ohne Ihr Netzwerk einzurichten, ist der "
+"Drucker hinterher nicht zu verwenden. Wie wollen Sie fortfahren?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "Marokko"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Welches Druckermodell haben Sie?"
+#: ../../printer/printerdrake.pm_.c:2484
+msgid "Go on without configuring the network"
+msgstr "Weiter ohne Netzwerkkonfiguration"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add a new printer"
-msgstr "Drucker hinzufügen"
+#: ../../printer/printerdrake.pm_.c:2518
+msgid ""
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
+"Das von Ihnen während der Installation eingerichtete Netzwerk kann jetzt "
+"nicht gestartet werden. Testen Sie bitte, ob es nach einem Neustart zur "
+"Verfügung steht. Falls nicht, berichtigen Sie die Einstellungen im Mandrake "
+"Kontrollzentrum unter „Netzwerk & Internet/Verbindung“. Versuchen Sie "
+"anschließend erneut den Drucker mittels „Hardware/Drucker“im Kontrollzentrum "
+"einzurichten."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " All of your selected data have been "
-msgstr " Alle Ihre gewählten Daten wurden "
+#: ../../printer/printerdrake.pm_.c:2519
+msgid ""
+"The network access was not running and could not be started. Please check "
+"your configuration and your hardware. Then try to configure your remote "
+"printer again."
+msgstr ""
+"Es wurde kein aktives Netzwerk gefunden und es konnte auch keine "
+"Netzwerkverbindung hergestellt werden. Kontrollieren Sie bitte Ihre Hardware "
+"und Ihre Softwareeinstellngen. Versuchen Sie anschließend erneut den "
+"entfernten Drucker einzurichten."
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "Nepal"
+#: ../../printer/printerdrake.pm_.c:2529
+msgid "Restarting printing system..."
+msgstr "Drucksystem neu starten ..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Löschen"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "high"
+msgstr "Hoch"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
-msgstr "CPU #"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "paranoid"
+msgstr "Paranoid"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid "chunk size"
-msgstr "Blockgröße"
+msgid "Installing a printing system in the %s security level"
+msgstr "Installation eines Drucksystems in Sicherheitsebene %s"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2570
#, c-format
msgid ""
-"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
+"You are about to install the printing system %s on a system running in the %"
+"s security level.\n"
"\n"
-"If set to NONE, no issues are allowed.\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"
-"Else only /etc/issue is allowed."
+"Do you really want to configure printing on this machine?"
msgstr ""
+"Sie sind dabei das Drucksystem %s auf einem Rechner mit Sicherheitsebene %s "
+"zu installieren.\n"
+"\n"
+"Dieses Drucksystem läuft als Dämon (Hintergrundprozess), der auf "
+"Druckaufträge wartet, um sie abzuarbeiten. Da der Dämon auch für andere "
+"Rechner Ihres Netzwerks erreichbar ist,schaffen Sie damit einen möglichen "
+"Angriffspunkt. Aus Sicherheitsgründen werden in dieser Sicherheitsebene "
+"standardmäßig nur einige ausgewählte Dämons gestartet.\n"
+"\n"
+"Wollen Sie wirklich dieses Drucksystem auf diesem Rechner installieren?"
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr "Erlaube/Verbiete sulogin(8) im Single User Level"
+#: ../../printer/printerdrake.pm_.c:2604
+msgid "Starting the printing system at boot time"
+msgstr "Drucksystem beim BS-Start aktivieren"
-#. -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
+#: ../../printer/printerdrake.pm_.c:2605
#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "Kommando vorher editieren, mit <c> erhalten Sie eine Kommandozeile."
+msgid ""
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\n"
+"\n"
+"It is possible that the automatic starting was turned off by changing to a "
+"higher security level, because the printing system is a potential point for "
+"attacks.\n"
+"\n"
+"Do you want to have the automatic starting of the printing system turned on "
+"again?"
+msgstr ""
+"Das Drucksystem (%s) wird nicht automatisch beim Betriebssystemstart "
+"aktiviert.\n"
+"Es ist möglich, dass der Start durch den Wechsel in eine höhere "
+"Sicherheitsebene deaktiviert wurde, da das Drucksystem einen potentienllen "
+"Angriffspunkt darstellt.\n"
+"\n"
+"Wollen sie den automatischen Start des Drucksystems wieder herstellen?"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Probleme beim Installieren von Paket %s"
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
+msgstr "Suche nach installierter Software"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Sie erhalten eine Nachricht, wenn die Load über diesen Wert steigt"
+#: ../../printer/printerdrake.pm_.c:2630
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "Entferne: %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Scanner manuell hinzufügen"
+#: ../../printer/printerdrake.pm_.c:2636
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "Pakete Installieren ..."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh"
-msgstr "Aktualisieren"
+#: ../../printer/printerdrake.pm_.c:2685
+msgid "Select Printer Spooler"
+msgstr "Wählen Sie das Drucksystem"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Reload partition table"
-msgstr "Partitionstabelle neu laden"
+#: ../../printer/printerdrake.pm_.c:2686
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Welches Drucksystem (Spooler) wollen Sie verwenden?"
-#: ../../standalone/drakboot:1
+#: ../../printer/printerdrake.pm_.c:2720
#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Ja, ich will Autologin mit diesem Benutzer und dieser Oberfläche"
+msgid "Configuring printer \"%s\"..."
+msgstr "Drucker „%s“ konfigurieren ..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Selected"
-msgstr "Markierte Dateien wiederherstellen"
+#: ../../printer/printerdrake.pm_.c:2731
+msgid "Installing Foomatic..."
+msgstr "Installieren des Pakets Foomatic ..."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Suche installierter Schriften"
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr "Drucker-Optionen"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Das lokale Netzwerk endet nicht auf \".0\" - bereinige."
+#: ../../printer/printerdrake.pm_.c:2810
+msgid "Preparing Printerdrake..."
+msgstr "PrinterDrake vorbereiten ..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Boot"
-msgstr "Start"
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+msgid "Configuring applications..."
+msgstr "Anwendungen konfigurieren ..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " und die CD im Laufwerk ist"
+#: ../../printer/printerdrake.pm_.c:2845
+msgid "Would you like to configure printing?"
+msgstr "Möchten Sie einen Drucker konfigurieren?"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Tuner type:"
-msgstr "Tunertyp:"
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
+msgstr "Drucksystem: "
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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"
-"\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."
+#: ../../printer/printerdrake.pm_.c:2915
+msgid ""
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
-"Hier können Sie das Drucksystem für Ihren Rechner wählen. Andere\n"
-"Betriebssysteme bieten Ihnen nur eines, bei Mandrake Linux können Sie\n"
-"zwischen zwei verschiedenen wählen.\n"
-"\n"
-" * \"%s\" - Es steht für \"print, don't queue\" (engl. für \"Drucken ohne\n"
-"Warteschlange\"). Falls Sie einen Drucker haben, der direkt an Ihrem "
-"Rechner\n"
-"hängt und Sie keine Netzwerkdrucker verwenden wollen, ist dies das\n"
-"Drucksystem Ihrer Wahl. \"%s\" kann zwar auch mit Netzwerkdruckern umgehen,\n"
-"ist dabei aber extrem langsam. Wählen Sie \"pdq\", wenn Sie ein \n"
-"GNU/Linux-Neuling sind.\n"
-"\n"
-" * \"%s\" - Mit dem \"Common Unix Printing System\" (engl. für "
-"\"Allgemeines\n"
-"Unix-Drucksystem\") können Sie ebenso gut auf Ihrem direkt\n"
-"angeschlossenen Drucker drucken, wie auf einem Drucker, der an einem Server\n"
-"auf der anderen Seite der Welt hängt. Es ist einfach zu bedienen und kann\n"
-"sowohl als Server als auch als Client für das alte \"lpd\"-Drucksystem\n"
-"verwendet werden - Es ist somit rückwärtskompatibel. Es ist sehr mächtig,\n"
-"in seiner Grundeinstellung verhält es sich jedoch genau wie \"pdq\". Wenn "
-"Sie\n"
-"einen \"lpd\" Server benötigen, müssen Sie einfach nur den \"cups-lpd\"-"
-"Dämon\n"
-"starten. CUPS bietet grafische Konfigurations- und Druckmenüs.\n"
-"\n"
-"Sie können diese Wahl später immer wieder ändern, indem Sie PrinterDrake im\n"
-"Mandrake Kontrollzentrum starten und dort die Schaltfläche \"%s\" betätigen."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
-msgstr "Menütaste"
+"Die folgenden Drucker sind bereits eingerichtet. Führen Sie einen "
+"Doppelklick auf einem aus, um ihn zu ändern, als Standarddrucker zu "
+"verwenden, Informtionen über ihn zu erhalten oder einen entfernten CUPS-"
+"Drucker für Star Office/OpenOffice.org/GIMP zugänglich zu machen."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2916
msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
+"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 ""
-"\n"
-"\n"
-"Kontrollieren Sie bitte, ob PrinterDrake Ihren Drucker korrekt erkannt hat. "
-"Falls die Markierung auf einem falschen Gerät oder auf \"Rohdaten-Drucker\" "
-"steht, suchen Sie bitte selbst Ihren Drucker in der Liste."
+"Die folgenden Drucker sind bereits eingerichtet. Führen Sie einen "
+"Doppelklick auf einem aus, um ihn zu ändern, als Standarddrucker zu "
+"verwenden oder Informtionen über ihn zu erhalten."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Administrator:"
-msgstr "Sicherheitsadministrator (Benutzername oder E-Mail):"
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
+msgstr "Aktualisiere Druckerliste (um alle entfernten CUPS-Drucker anzuzeigen)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
-msgstr "Setzen des Shell-Timeouts. Der Wert Null bedeutet kein Timeout."
+#: ../../printer/printerdrake.pm_.c:2960
+msgid "Change the printing system"
+msgstr "Drucksystem ändern"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "Kopieren der Firmware erfolgreich"
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+msgid "Normal Mode"
+msgstr "Normaler Modus"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid ""
-"You can't use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+msgid "Do you want to configure another printer?"
+msgstr "Möchten Sie einen weiteren Drucker einrichten?"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:3211
+msgid "Modify printer configuration"
+msgstr "Drucker-Konfiguration ändern"
-#: ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:3213
#, c-format
msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
-"Sie haben noch keine Internetverbindung eingerichtet.\n"
-"Sie können dies tun, indem Sie die Schaltfläche \n"
-"\"Konfigurieren\" betätigen."
+"Drucker %s\n"
+"Was wollen Sie an diesem Drucker ändern?"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Fonts copy"
-msgstr "Kopiere Schriften"
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
+msgstr "Ausführen!"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
-msgstr "Automatisiert"
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+msgid "Printer connection type"
+msgstr "Art der Druckeranbindung"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Möchten Sie die vorgenommenen Einstellungen prüfen?"
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+msgid "Printer name, description, location"
+msgstr "Druckername, Beschreibung, Standort"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
-msgstr ""
-"Der Drucker \"%s\" wurde erfogreich für StarOffice/OpenOffice.org/GIMP "
-"entfernt."
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
+msgstr "Druckerproduzent, Modell, Treiber"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save packages selection"
-msgstr "Paketauswahl speichern"
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
+msgstr "Druckerproduzent, Modell"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Actions"
-msgstr "Bearbeiten"
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
+msgstr "Als Standarddrucker verwenden"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Remove the last item"
-msgstr "Letzten Eintrag entfernen?"
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Diesen Drucker für StarOffice/OpenOffice.org/GIMP hinzufügen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Liste wiederherzustellender Benutzer (letztes Datum pro Benutzer ist wichtig)"
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Diesen Drucker für StarOffice/OpenOffice.org/GIMP entfernen"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
-msgstr "Keine Net Boot Images erstellt!"
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+msgid "Print test pages"
+msgstr "Testseite(n) drucken"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "PPTP verwenden"
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+msgid "Know how to use this printer"
+msgstr "Wie dieser Drucker genutzt werden kann"
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-"Wählen Sie, welche Dienste\n"
-"automatisch beim Systemstart\n"
-"aktiviert werden sollen"
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+msgid "Remove printer"
+msgstr "Drucker entfernen"
-#: ../../security/l10n.pm:1
+#: ../../printer/printerdrake.pm_.c:3282
#, c-format
-msgid "Check files/directories writable by everybody"
-msgstr "Überprüfe Dateien/Verzeichnisse die schreibbar für alle sind"
+msgid "Removing old printer \"%s\"..."
+msgstr "Alten Drucker „%s“ entfernen ..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Wie dieser Drucker genutzt werden kann"
+#: ../../printer/printerdrake.pm_.c:3307
+msgid "Default printer"
+msgstr "Standarddrucker"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3308
#, c-format
-msgid "Configure the network now"
-msgstr "Netzwerk jetzt konfigurieren"
+msgid "The printer \"%s\" is set as the default printer now."
+msgstr "Der Drucker „%s“ ist jetzt Ihr Standarddrucker“"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Bitte wählen Sie einen Mirror, von dem Sie die Pakete holen wollen."
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Drucker für StarOffice/OpenOffice.org/GIMP hinzufügen"
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:3312
#, c-format
msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Das Werkzeug zum Verändern der FAT-Partitionsgröße kann mit der \n"
-"Partition nicht arbeiten. Folgender Fehler trat auf:%s"
+"Der Drucker „%s“ wurde erfogrich zu StarOffice/OpenOffice.org/GIMP "
+"hinzugefügt."
-#: ../../install_steps_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:3313
#, c-format
-msgid "Size: "
-msgstr "Größe: "
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgstr "Fehler beim Hinzufügen von „%s“ für StarOffice/OpenOffice.org/GIMP."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "Zu welchem Sektor wollen Sie wechseln?"
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Drucker für StarOffice/OpenOffice.org/GIMP entfernen"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:3317
#, c-format
-msgid "Bahamas"
-msgstr "Bahamas"
+msgid ""
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
+msgstr ""
+"Der Drucker „%s“ wurde erfogrich für StarOffice/OpenOffice.org/GIMP entfernt."
-#: ../../interactive/stdio.pm:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
-msgid "Do you want to click on this button?"
-msgstr "Möchten Sie diese Schaltfläche betätigen?"
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+msgstr "Fehler beim Entfernen von „%s“ für StarOffice/OpenOffice.org/GIMP."
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3325
#, c-format
-msgid "Manual configuration"
-msgstr "Manuelle Konfiguration"
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Möchten Sie den Drucker „%s“ wirklich entfernen?"
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm_.c:3329
#, c-format
-msgid "search"
-msgstr "Suche"
+msgid "Removing printer \"%s\"..."
+msgstr "Drucker „%s“ entfernen ..."
-#: ../../services.pm:1
+#: ../../raid.pm_.c:35
#, c-format
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Dieser Dienst lädt die Tastaturbelegung, die in der Datei \n"
-"\"/etc/sysconfig/keyboard\" angegeben ist. Mittels \"kbdconfig\" \n"
-"können Sie diese Einstellung ändern. Schalten Sie diesen Dienst ab, \n"
-"müssen Sie ab dem nächsten Systemstart mit der amerikanischen \n"
-"Tastatur vorlieb nehmen."
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "Ich kann keine Partition zu dem _formatierten_ RAID md%d hinzufügen"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (Installationsbildschirmtreiber)"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
+msgstr "mkraid schlug Fehl"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr ""
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid schlug Fehl (Möglicherweise fehlen die RAID-Tools)"
-#: ../../security/help.pm:1
+#: ../../raid.pm_.c:153
#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr "Das ICMP-Echo akzeptieren/ablehnen."
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "Nicht genügend Partitionen für RAID Level %d\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../security/main.pm_.c:36
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."
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
+"\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
+"\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\n"
+"\n"
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
+"\n"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
-"Mittels Syslog versuchen zahlreiche Dienste Verlaufsprotokolle \n"
-"in vorgesehene Dateien zu sichern. Es ist sinnvoll Syslog immer \n"
-"aktiviert zu haben."
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown/Others"
-msgstr "Unbekannt/Andere"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Sicherheitsebene:"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
-msgstr "Keine TV-Karte gefunden!"
+#: ../../security/main.pm_.c:77
+#, fuzzy, c-format
+msgid " (default value: %s)"
+msgstr " (Standard: %s)"
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Options"
-msgstr "Optionen"
+#: ../../security/main.pm_.c:113
+msgid "Security Alerts:"
+msgstr "Sicherheitswarnungen:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Der Drucker \"%s\" ist jetzt Ihr Standarddrucker\""
+#: ../../security/main.pm_.c:115
+msgid "Security Administrator:"
+msgstr "Sicherheitsadministrator (Kennzeichen oder E-Mail):"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../security/main.pm_.c:128
+msgid "Network Options"
+msgstr "Netzwerkoptionen"
+
+#: ../../security/main.pm_.c:128
+msgid "System Options"
+msgstr "Systemoptionen"
+
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
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."
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
msgstr ""
-"Sie versuchen, einen OKI Win-Laserdrucker einzurichten. Da diese Drucker ein "
-"sehr eigenwilliges Protokoll verwenden, funktionieren sie nur, wenn sie am "
-"ersten Parallelport angeschlossen sind. Sollte Ihr Drucker an einer anderen "
-"Schnittstelle oder an einer Printserver-Box hängen, schließen Sie ihn bitte "
-"an den ersten Parallelport, bevor Sie versuchen eine Testseite zu drucken ..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr "CPU-Familie (8 steht etwa für PentiumIII,...)"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detected"
-msgstr "Selbst gefunden"
+#: ../../security/main.pm_.c:191
+msgid "Please wait, setting security level..."
+msgstr "Bitte warten, Sicherheitsebene wird eingestellt..."
-#: ../../standalone/drakpxe:1
-#, 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)."
+#: ../../security/main.pm_.c:197
+msgid "Please wait, setting security options..."
+msgstr "Bitte warten, Sicherheitsoptionen werden eingestellt..."
+
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr "Startet das ALSA (Advanced Linux Sound Architecture) Sound System"
+
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
msgstr ""
-"Sie sind dabei, auf Ihrem Rechner einen PXE-Server als DHCP-Server sowie "
-"einen TFTP-Server einzurichten. Damit ermöglichen Sie es anderen Rechnern "
-"Ihres Netzwerks eine Installation von diesem Rechner aus vorzunehmen.\n"
-"\n"
-"Stellen Sie sicher, dass Sie Ihre Netzwerk-/Internetverbindung mit "
-"DrakConnect eingerichtet haben, bevor Sie fortfahren.\n"
-"Anmerkung: Sie benötigen eine Netzwerkkarte, mit deren Hilfe Sie ein lokales "
-"Netz (LAN) aufsetzen können."
+"Mit dem Dienst anacron können cron-Prozesse auch zu anderen als den \n"
+"vorgegebenen Zeiten gestartet werden. Dies ist vor Allem dann \n"
+"sinnvoll, wenn Ihr Rechner nicht rund um die Uhr läuft, da sonst \n"
+"Prozesse, die etwa zwischen Mitternacht und 6:00 Uhr gestartet \n"
+"werden sollten, nie ausgeführt würden."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../services.pm_.c:21
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"
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
+"Der APM-Dienst (apmd) wird von Laptops verwendet, um den Ladestatus \n"
+"der Batterie durch den Syslog-Dienst erfassen zu lassen. Mit seiner \n"
+"Hilfe kann man den Rechner auch rechtzeitig herunterfahren lassen, \n"
+"bevor die Batterien leer sind."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:23
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"
+"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 ""
-"Sie haben keinen Platz für die 1 MB große Start-Partition vorgesehen! Die "
-"Installation wird fortgesetzt, Sie müssen jedoch eine Start-Partition mit "
-"DiskDrake erstellen."
+"Dieser Dienst startet Applikationen der at-Warteschlange wenn der \n"
+"dafür vorgesehene Zeitpunkt erreicht ist. Lässt die Systemauslastung \n"
+"es zu, werden sog. Batch-Anwendungen gestartet."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:25
msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
+"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 ""
-"Bitte wählen Sie den Drucker den sie einrichten wollen oder geben Sie einen "
-"Geräte- oder Dateinamen in der Eingabezeile an."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
-msgstr "Ablehnen"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
-msgstr "LOKAL"
+"Der Befehl cron wird unter UNIX/Linux dazu verwendet, Benutzerprogramme \n"
+"zu vordefinierten regelmäßigen Zeiten abzuarbeiten. \n"
+"Der Dienst vixie cron erweitert dieses Konzept um weitere Funktionen, etwa \n"
+"ein verbessertes Sicherheitskonzept und einfachere Konfiguration."
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
-msgstr "HFS"
+#: ../../services.pm_.c:28
+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 ""
+"Der GPM-Dienst stellt Ihnen Mausunterstützung auf Text-Konsolen zur \n"
+"Verfügung. Sie erhalten damit die Möglichkeit Ausschneiden und \n"
+"Einfügen von Text wie unter X zu verwenden. In einigen Applikationen \n"
+"können Sie auch Pop-Up-Menüs damit bedienen."
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:31
msgid ""
"HardDrake runs a hardware probe, and optionally configures\n"
"new/changed hardware."
@@ -13141,300 +10069,154 @@ msgstr ""
"HardDrake führt Hardwaretests durch, und konfiguriert (falls nötig) \n"
"neue/geänderte Hardware."
-#: ../../fs.pm:1
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Erzeugen und Formatieren der Datei %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
+#: ../../services.pm_.c:33
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
+"Apache ist ein World-Wide-Web-Server. Mit seiner Hilfe können Sie \n"
+"HTML-Dateien über HTTP publizieren. Der Server ist CGI-fähig."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:34
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"
+"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 ""
+"Der Internet Superserver-Dienst (inetd) startet je nach Bedarf \n"
+"etliche andere Internet-Dienste, so etwa telnet, ftp, rsh oder \n"
+"rlogin. Dies jedoch nur, wenn die entsprechenden Dienste in der \n"
+"Datei „/etc/inetd.conf“ freigeschaltet sind. \n"
+"Schalten Sie diesen Dienst ab, können Sie keine der von inetd \n"
+"verwalteten Dienste mehr zugreifen."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "Wählen Sie einen vorhandenen LVM"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "xfs restart"
-msgstr "Neustart des X-Font-Servers"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:38
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
msgstr ""
-"Der Drucker \"%s\" existiert bereits. Wollen Sie ihn wirklich \n"
-"ersetzen?"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Verwende die Scanner am Rechner:"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
-msgstr "Markierung löschen"
-
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "Keine Partition verfügbar"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Management \n"
-msgstr "Drucker Verwaltung \n"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "DNS"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
-msgstr "Schlüssel (erneut)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Der Name der Samba-Freigabe fehlt!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
-msgstr "TrueType-Installation beendet"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detection in progress"
-msgstr "Erkennung läuft"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Ganzen Kernel erstellen -->"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "modem"
-msgstr "Modem"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "Willkommen zu %s"
+"Startet Paketfilterung für Linux 2.2er Kerne, um Ihren Rechner \n"
+"durch eine Firewall vor Angriffen aus dem Netz zu schützen."
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../services.pm_.c:40
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"
+"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 ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003 MandrakeSoft.\n"
-"Dies ist freie Software und kann unter der den Bedingungen der GNU GPL "
-"weitergegeben werden.\n"
-"\n"
-"Aufruf: \n"
+"Dieser Dienst lädt die Tastaturbelegung, die in der Datei \n"
+"„/etc/sysconfig/keyboard“ angegeben ist. Mittels „kbdconfig“ \n"
+"können Sie diese Einstellung ändern. Schalten Sie diesen Dienst ab, \n"
+"müssen Sie ab dem nächsten Systemstart mit der amerikanischen \n"
+"Tastatur vorlieb nehmen."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
+#: ../../services.pm_.c:43
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
msgstr ""
-"Bitte legen Sie die Diskette der zu aktualisierenden Module in Laufwerk %s "
-"ein."
+"Automatische Neuerstellung der Kern-Header in /boot für\n"
+"/usr/include/linux/{autoconf,version}.h"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
-msgstr "Startschirm"
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr ""
+"Automatische Erkennung und Konfiguration neuer Hardware während des \n"
+"Betriebssystemstarts."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:46
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
msgstr ""
-"Der folgende Drucker\n"
-"\n"
-"%s%s\n"
-"ist direkt an Ihr System angeschlossen"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Gemeinsamer Druckerzugriff auf Rechnern/Netzwerken:"
+"Linuxconf versucht beim Betriebssystemstart einige Verwaltungsaufgaben \n"
+"auszuführen."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:48
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>\". "
+"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 ""
-"\n"
-"Der Befehl \"%s\" erlaubt es Ihnen auch zahlreiche Einstellungen für einen "
-"bestimmten Druckauftrag zu ändern. Geben Sie die gewünschten Angaben einfach "
-"in der Kommandozeile mit an, etwa: \"%s <Datei>\". "
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "DrakClock"
-msgstr "DrakClock"
+"Der Dienst LPD ist der Drucker-Server Ihres Rechners. Wenn Sie \n"
+"diesen Dienst abschalten werden Druckaufträge nicht mehr abgearbeitet.\n"
+"Hauptaufgabe von LPD ist es, Druckaufträge an den jeweiligen \n"
+"zuständigen Drucker (dieser kann auch einen anderen Rechner hängen) \n"
+"zu senden."
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:50
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."
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
msgstr ""
-"In einigen Fällen benötigt der \"%s\" Treiber zusätzliche Informationen,\n"
-"um korrekt zu funktionieren, meistens sollte er jedoch auch ohne \n"
-"funktionieren. Wollen Sie solche Informationen angeben oder es dem Treiber "
-"überlassen, nach geeigneten Parametern zu suchen? (Das Austesten durch den "
-"Treiber kann in seltenen Fällen zum \"Hängenbleiben\" des Rechners führen, "
-"was jedoch keine Hardwareschäden nach sich ziehen sollte.)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "Nicht die korrekte CD. Die richtige CD heißt %s"
+"Der Linux Virtual Server kann verwendet werden, um um ein \n"
+"hochperformanten Hochverfügbarkeitsserver aufzusetzen."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#: ../../services.pm_.c:52
msgid ""
-"\n"
-"- Daemon, %s via:\n"
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
msgstr ""
-"\n"
-"- Dämon (%s) enthält:\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "Kuba"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr "Oktober"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belize"
-msgstr "Belize"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Suche nach neuen Druckern..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
-msgstr " (Multisession)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
-msgstr "BS-Startverzögerung für den Kernel"
+"Der Dienst named (BIND) stellt ihnen einen Server zur Verfügung, \n"
+"mit dessen Hilfe Rechnernamen in IP-Adressen umgesetzt werden. \n"
+"Ein solcher Dienst wird „Domain Name Server“ (DNS) genannt. \n"
+"Falls Sie nur einen Rechner besitzen, mit dem Sie per Modem/ISDN ins \n"
+"Netz gehen, benötigen Sie diesen Dienst nicht."
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../services.pm_.c:53
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."
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
-"Ihre Grafikkarte kann 3D-hardwarebeschleunigt werden, allerdings nur mit \n"
-"XFree %s. Ihre Karte wird auch von XFree %s unterstützt, wodurch Sie \n"
-"bessere 2D-Unterstützung erhalten können."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Activate/Disable daily security check."
-msgstr " Tägliche Sicherheitschecks aktivieren/deaktivieren.."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t- CD-ROM.\n"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Enable libsafe if libsafe is found on the system"
-msgstr "Libsafe aktivieren, falls auf dem System vorhanden"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Der DrakX-Partitionierungsassistent fand folgende Lösung:"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "Ungarn"
+"Dieser Dienst ist verantwortlich dafür, dass alle Netzwerk-Dateisysteme \n"
+"(NFS) bei Systemstart eingehängt werden, etwa SMB (Lan Manager/Windows) \n"
+"und NCP (NetWare)."
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../services.pm_.c:55
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
-"Wählen Sie Ihren Netzanbieter.\n"
-"Sollte er nicht aufgeführt sein, wählen Sie \"Nicht aufgeführt\""
+"Dieser Dienst aktiviert Netzwerkgeräte (etwa Netzwerkkarten), die \n"
+"so konfiguriert wurden, dass sie ab dem Systemstart zur Verfügung \n"
+"stehen sollen."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automatische Zeit-Synchronisation (durch NTP)"
+#: ../../services.pm_.c:57
+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 ""
+"NFS ist ein geläufiges Protokoll in TCP/IP Netzwerken um Dateien \n"
+"durch verschiedene Rechner gemeinsam nutzen zu können. \n"
+"Dieser Dienst stellt Ihnen einen solchen Server zur Verfügung. \n"
+"Konfiguriert wird er in der Datei „/etc/exports“."
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Windows-Partition benutzen"
+#: ../../services.pm_.c:60
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
+msgstr ""
+"NFS ist ein geläufiges Protokoll in TCP/IP Netzwerken um Dateien \n"
+"durch verschiedene Rechner gemeinsam nutzen zu können. \n"
+"Der Dienst nfslock stellt Ihnen hierfür Locking-Mechanismen zur \n"
+"Verfügung, damit eine Datei nicht durch mehrere Personen \n"
+"gleichzeitig verändert werden kann."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
+#: ../../services.pm_.c:62
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+"Schaltet beim Betriebssystemstart automatisch die „Num“-Taste für \n"
+"die virtuellen Konsolen und XFree ein."
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Server"
-msgstr "LDAP-Server"
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr "Unterstützung für den OKI 4w und kompatible WinDrucker."
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:65
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 "
@@ -13446,429 +10228,492 @@ msgstr ""
"wenn Sie ihn vorher konfiguriert haben. Daher schadet es nicht, \n"
"wenn Sie ihn auf Rechnern aktivieren, auf denen er nutzlos ist."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Choose your country"
-msgstr "Staat auswählen"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:68
msgid ""
-"\n"
-"- System Files:\n"
+"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 ""
-"\n"
-"- Systemdateien:\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
-msgstr "Eingenständige Werkzeuge"
+"Mittels portmapper werden RPC-Verbindungen verwaltet, die etwa von \n"
+"den Protokollen NFS und NIS verwendet werden. Auf Rechnern, die \n"
+"solche Server (RPC-basierte) beherbergen, muss dieser Dienst \n"
+"aktiviert sein."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Where"
-msgstr "Wo"
+#: ../../services.pm_.c:71
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
+msgstr ""
+"Postfix ist ein E-Mail Transport-Dienst. Mit seiner Hilfe werden \n"
+"E-Mails zwischen verschiedenen Rechnern weitergeleitet."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "but not matching"
-msgstr "keine Übereinstimmung mit"
+#: ../../services.pm_.c:72
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
+"Dieser Dienst speichert beim Herunterfahren des Rechners den Zustand \n"
+"des Zufallszahlengenerators, um ihn beim nächsten Systemstart \n"
+"wieder zu restaurieren. Die Qualität erzeugter Zufallszahlen \n"
+"wird dadurch verbessert."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../services.pm_.c:74
msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
msgstr ""
-"Hier können Sie einen alternativen Treiber (entweder OSS oder ALSA) für Ihre "
-"Soundkarte (%s) auswählen"
+"Weist Roh-Geräten ein blockorientiertes Gerät (etwa eine\n"
+"Festplattenpartition) zu. Dies wird für Anwendungen wie\n"
+"etwa ORACLE benötigt"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Konfiguriere PCMCIA-Karten..."
+#: ../../services.pm_.c:76
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
+msgstr ""
+"Der Dienst routed ermöglicht ein automatisches Aktualisieren der \n"
+"IP-Routing-Tabellen mittels RIP Protokoll. Zwar wird RIP in kleinen \n"
+"Netzwerken verwendet, jedoch wird für komplexere Netzwerke ein \n"
+"anderer Dienst benötigt."
-#: ../../common.pm:1
-#, c-format
-msgid "kdesu missing"
-msgstr "Ich kann \"kdesu\" nicht finden!"
+#: ../../services.pm_.c:79
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
+msgstr ""
+"Der Dienst rstat ermöglicht es Anwendern anderer Rechner des \n"
+"Netzwerks Preformance-Daten dieses Rechners zu erhalten."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s benötigt einen Benutzernamen...\n"
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"Der Dienst rusers ermöglicht es Anwendern anderer Rechner \n"
+"herauszubekommen, welche Benutzerkennzeichen auf diesem Rechner \n"
+"gerade angemeldet sind."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
-msgstr "Schlüssel"
+#: ../../services.pm_.c:83
+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 ""
+"Der Dienst rwho erlaubt es Benutzern entfernter Rechner eine Liste\n"
+"momentan angemeldeter Benutzerkennzeichen übermittelt zu bekommen \n"
+"(ähnlich wie finger)."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMaus"
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
+msgstr "Starten des Sound-Systems Ihres Rechners"
-#: ../../keyboard.pm:1
-#, c-format
+#: ../../services.pm_.c:86
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."
+"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 ""
-"Diese Einstellung wird nach der Installation aktiviert.\n"
-"Während der Installation, benutzen Sie die rechte STRG-Taste,\n"
-"um zwischen den verschiedenen Tastatur Layouts zu wechseln."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "Osterinsel"
+"Mittels Syslog versuchen zahlreiche Dienste Verlaufsprotokolle \n"
+"in vorgesehene Dateien zu sichern. Es ist sinnvoll Syslog immer \n"
+"aktiviert zu haben."
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Automatic"
-msgstr "Automatische IP-Adressen-Zuweisung"
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr "Lädt die Treiber für Ihre USB-Geräte."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
+#: ../../services.pm_.c:89
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr ""
-"Die Installation des Betriebssytemstarters schlug fehl. Folgender Fehler "
-"trat auf:"
+"Dieser Dienst startet den X-Font-Server. Er ist notwendig, \n"
+"damit XFree gestartet werden kann!"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "EIDE/SCSI-Kanal"
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
+msgstr ""
+"Wählen Sie, welche Dienste\n"
+"automatisch beim Systemstart\n"
+"aktiviert werden sollen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Als Standarddrucker verwenden"
+#: ../../services.pm_.c:127
+msgid "Printing"
+msgstr "Drucken"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Stellen Sie sicher dass %s der richtige Pfad ist"
+#: ../../services.pm_.c:128
+msgid "Internet"
+msgstr "Internet"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "Partition %s"
+#: ../../services.pm_.c:131
+msgid "File sharing"
+msgstr "Gemeinsamer Dateizugriff"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Paranoid"
-msgstr "Paranoid"
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+msgid "System"
+msgstr "System"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS"
-msgstr "NIS"
+#: ../../services.pm_.c:138
+msgid "Remote Administration"
+msgstr "Fernwartung"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- Benutzer löschen"
+#: ../../services.pm_.c:146
+msgid "Database Server"
+msgstr "Datenbankserver"
-#: ../../standalone/harddrake2:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "Location on the bus"
-msgstr "Standort auf dem Bus"
+msgid "Services: %d activated for %d registered"
+msgstr "Dienste: %d aktiviert von %d registrierten."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No printer found!"
-msgstr "Kein Drucker erkannt!"
+#: ../../services.pm_.c:191
+msgid "Services"
+msgstr "Dienste"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
-msgstr "Herstellername des Geräts"
+#: ../../services.pm_.c:203
+msgid "running"
+msgstr "aktiv"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Erase entire disk"
-msgstr "Komplette Platte löschen"
+#: ../../services.pm_.c:203
+msgid "stopped"
+msgstr "gestoppt"
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Default)"
-msgstr " (Standard)"
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
+msgstr "Dienste und Dämonen"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Automatic reconfiguration"
-msgstr "Automatische Rekonfiguration"
+#: ../../services.pm_.c:222
+msgid ""
+"No additional information\n"
+"about this service, sorry."
+msgstr ""
+"Es existieren leider keine\n"
+"weiteren Informationen zu\n"
+"diesem Dienst."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Receiving Speed:"
-msgstr "Enpfangsgeschwindigkeit: "
+#: ../../services.pm_.c:229
+msgid "On boot"
+msgstr "Bei BS-Start"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
-msgstr "Turks und Caicos Inseln"
+#: ../../services.pm_.c:241
+msgid "Start"
+msgstr "Start"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "No Ip"
-msgstr "Keine lp"
+#: ../../services.pm_.c:241
+msgid "Stop"
+msgstr "Stopp"
-#: ../../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
-#, c-format
-msgid "<- Previous"
-msgstr "<- Zurück"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Danke, dass Sie sich für Mandrake Linux 9.0 entschieden haben"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Transfer Now"
-msgstr "Übertrage jetzt"
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
+msgstr "Willkommen in der Open Source Welt."
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Set root password and network authentication methods"
+#: ../../share/advertising/01-thanks.pl_.c:11
+msgid ""
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
msgstr ""
-"Argumente: (arg)\n"
-"\n"
-"Benutzer müssen sich mit einem Passwort authentifizieren."
+"Der Erfolg von MandrakeSoft basiert auf dem Prinzip freier Software. Ihr "
+"neues Betriebssystem ist das Ergebnis einer weltweiten Zusammenarbeit der "
+"GNU/Linux-Gemeinde."
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "Umschalten zwischen unsortiert und gruppiert"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
+msgstr "Betreten Sie die Welt der Freien Software"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Themes"
-msgstr "Designs"
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr "Wollen Sie mehr über die Open Source Gemeinde wissen?"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "Optionen: %s"
+#: ../../share/advertising/02-community.pl_.c:11
+msgid ""
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
+msgstr ""
+"Beteiligen Sie sich an den Diskussionsforen, die Sie auf unseren „Community“-"
+"Seiten finden, um Ihre wissen mit Anderen zu teilen."
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../share/advertising/03-internet.pl_.c:9
+msgid "Get the most from the Internet"
+msgstr "Nutzen Sie das Internet nach Ihren Wünschen"
+
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-"Sie verwenden momentan \"%s\" als Betriebssystemstarter.\n"
-"Wählen Sie \"Konfigurieren\", wenn Sie den Assistenten starten wollen."
+"Mandrake Linux 9.0 stellt Ihnen die beste Softwareauswahl bereit, um auf "
+"alles, was das Internet bietet, zugreifen zu können. Surfen Sie im Web mit "
+"Mozilla oder Konqueror, bearbeiten Sie E-Mails und verwalten Sie persönliche "
+"Informationen mit Evolution, KMail oder zahlreichen anderen Programmen."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "OKI Win-Drucker-Konfiguration"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr "Entdecken Sie die atuellsten Grafik- und Multimedia-Programme!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
-msgstr "Sankt Helena"
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr "Gehen Sie bis an die Grenzen Ihrer multimedialen Möglichkeiten"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Parallel port #%s"
-msgstr "Parallelport#%s"
+#: ../../share/advertising/04-multimedia.pl_.c:11
+msgid ""
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
+msgstr ""
+"Mandrake Linux 9.0 reizt Ihren Multimediarechner voll aus! Verwenden Sie die "
+"neuste Software, um Audiodateien abzuspielen, Ihre Fotos und Bilder zu "
+"bearbeiten sowie Videos abzuspielen ..."
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Security Level"
-msgstr "Sicherheitsebene"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Spiele"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
msgstr ""
-"Einige Schritte sind noch nicht komplett.\n"
-"\n"
-"Wollen Sie DrakX wirklich beenden?"
+"Mandrake Linux 9.0 bietet die besten Open Source Spiele der Bereiche: "
+"Arcade, Karten, Action, Strategie, ..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "Sudan"
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+msgid "Mandrake Control Center"
+msgstr "Mandrake Kontrollzentrum"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "Polen (QWERTZ Layout)"
+#: ../../share/advertising/06-mcc.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
+msgstr ""
+"Das Mandrake Linux Kontrollzentrum ist der zentrale Ort, an dem Sie Ihr "
+"System nach Ihren Wünschen anpassen können."
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
-msgstr "Syrien"
+#: ../../share/advertising/07-desktop.pl_.c:9
+msgid "User interfaces"
+msgstr "Arbeitsumgebungen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/07-desktop.pl_.c:10
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?"
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
-"Ist Ihr Drucker ein Multifunktionsgerät von HP oder Sony (OfficeJet, PSC, "
-"LaserJet 1100/1200/1220/3200/3300 mit Scanner, DeskJet 450, Sony IJP-V100), "
-"ein HP PhotoSmart oder ein HP LaserJet 2200?"
+"Mandrake Linux 9.0 bietet 11 Arbeitsumgebungen, die Sie nach Ihren Wünschen "
+"gestalten können, darunter: KDE 3, Gnome 2 und WindowMaker"
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
-#, c-format
+#: ../../share/advertising/08-development.pl_.c:9
+msgid "Development simplified"
+msgstr "Softwareentwicklung leicht gemacht"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr "Mandrake Linux 9.0 ist die ultimative Entwicklungsplattform."
+
+#: ../../share/advertising/08-development.pl_.c:11
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"
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-"Willkommen zum Betriebssystemstarter %s!\n"
-"\n"
-"Markieren Sie in obiger Liste ein Betriebssystem\n"
-"oder warten Sie %d Sekunden, dann starte ich Ihr Standard-System.\n"
-"\n"
+"Mandrake Linux 9.0 ist die ultimative Entwicklungsplattform. Nutzen Sie die "
+"volle Power des GNU C Compilers sowie der besten Open Source "
+"Entwicklungsumgebungen."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "Portugal"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr "Verwandeln Sie Ihren Rechner in einen zuverlässigen Server."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
-msgstr "Name der Loopback-Datei: "
+#: ../../share/advertising/09-server.pl_.c:10
+msgid ""
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
+msgstr ""
+"Verwandeln Sie Ihren Rechner mit ein paar Mausklicks in einen "
+"leistungsfähigen Server: Web, E-Mail, Firewall, Router, Datei- und "
+"Druckserver, ..."
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr "Optimieren Sie Ihre Sicherheit"
+
+#: ../../share/advertising/10-mnf.pl_.c:10
+msgid ""
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-"Die IP-Adresse des DNS-Servers sollte etwa die Form \"192.168.1.42\" haben!"
+"Die MandrakeSecurity Palette bietet unter Anderem die „Multi Network "
+"Firewall“ (M.N.F.)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Control key"
-msgstr "Linke STRG Taste"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
+msgstr ""
+"Dieses Firewall-Produkt enthält die Netzwerkkomponenten, um all Ihren "
+"Sicherheitsansprüchen gerecht werden zu können."
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
-msgstr "Serbien"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr "Sie erhalten das Produkt in unserem WebShop: MadrakeStore."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Newzealand"
-msgstr "Neuseeland"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr "Der offizille MandrakeSoft Laden"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
-msgstr "Dieses Verzeichnis muss innerhalb des Wurzelverzeichnisses bleiben"
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
+msgstr ""
+"Unser komplettes Angebot an Linux-Lösungen, sowie Sonderangebote und "
+"Fanartikel sind in unseremm e-Store erhältlich:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
-msgstr "über Netzwerk"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr "Strategische Partner"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
-msgstr "CapsLock Taste"
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
+msgstr ""
+"MandrakeSoft arbeitet mit einer Reihe von Firmen zusammen, die "
+"professionelle Linux-Lösungen anbieten, die Mandrake-kompatibel sind. Sie "
+"finden eine Liste im MandrakeStore."
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "BS-Starter installieren"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr "Entdecken Sie MandrakeSofts Training-Katalog: Linux-Campus"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Wählen Sie die Speichergröße Ihrer Grafikkarte"
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
+msgid ""
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
+msgstr ""
+"Das Trainingsprogramm wurde für die Bedürfnisse sowohl von Endanwendern, als "
+"auch von Experten (Netzwerk- und Systemadministratoren)"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr "Zertifizueren Sie sich selbst in Sachen Linux"
+
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
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 "crontab cron crontab."
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+"Ob Sie sich online fortbilden wollen, oder mit Hilfe unseres Netzes an "
+"Trainingspartnern, der Linux-Campus Katalog bereitet Sie auf die anerkannte "
+"LPI zerifizierung vor."
-#: ../../standalone.pm:1
-#, c-format
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+msgid "Become a MandrakeExpert"
+msgstr "Werden Sie ein „MandrakeExpert“"
+
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
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."
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"[OPTIONS]\n"
-"Anwendung zur Verbindung und Überwachung von Netzwerk und Internet\n"
-"\n"
-"--defaultintf interface : zeige diese Schnittstelle als Voreinstellung\n"
-"--connect : verbinde mit dem Internet wenn nicht schon verbunden\n"
-"--disconnect : trenne vom Internet wenn verbunden\n"
-"--force : bei (dis)connect : erzwinge Verbinden/Trennen.\n"
-"--status : gibt 1 zurück wenn verbunden sonst 0, beendet sich danach.\n"
-"--quiet : nicht interaktiv. benutzt mit (dis)connect."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
-msgstr "Pool dynamischer IP-Adressen:"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+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 ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "LVM-Name?"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert Corporate"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "Einige Geräte in der Klasse %s wurden entfernt:\n"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
+"Eine Online-Plattform, die speziell auf die Bedürfnisse von Firmenkunden "
+"zugeschnitten wurde."
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Schnittstelle(n) %s %s gefunden"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+"Alle Vorfälle werden werden von einem einzelnen qualifizierten MandrakeSoft "
+"Experten bearbeitet."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Install"
-msgstr "Nach der Installation"
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
+msgstr "Entdecken Sie den MandrakeClub und den Mandrake Corporate Club"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The internal domain name"
-msgstr "Der interne Domänen-Name"
+#: ../../share/advertising/17-mdkclub.pl_.c:10
+msgid ""
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
+msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "Karten-IRQ"
+#: ../../standalone.pm_.c:21
+#, fuzzy
+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 ""
+" 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."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "LogDrake"
+#: ../../standalone.pm_.c:40
+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 name.\n"
+msgstr ""
-#: ../../standalone.pm:1
-#, fuzzy, c-format
+#: ../../standalone.pm_.c:51
+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.pm_.c:57
msgid ""
"Font Importation and monitoring "
"application \n"
@@ -13883,7276 +10728,4484 @@ msgid ""
" : name_of_application like so for staroffice \n"
" : and gs for ghostscript for only this one."
msgstr ""
-"Schriftarten-Import und "
-"Programmüberwachung \n"
-"--windows_import : importiert von allen verfügbaren Windows-Partitionen.\n"
-"--xls_fonts : show all fonts that already exist from xls\n"
-"--strong : starke Prüfung der Schriftart.\n"
-"--install : alle Schriftart-Dateien und Verzeichnisse akzeptieren.\n"
-"--uninstall : jede Schriftart oder jedes Schriftartverzeichnis "
-"löschen.\n"
-"--replace : alle schon existierenden Schriftarten ersetzen.\n"
-"--application : 0 kein Programm.\n"
-" : 1 alle Programme werden unterstützt.\n"
-" : name_of_application like so for staroffice \n"
-" : and gs for ghostscript for only this one."
-
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Wählen Sie das Laufwerk, in dem Sie die Startdiskette erstellen wollen"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr "LILO mit Textmenü"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
+#: ../../standalone.pm_.c:68
+msgid ""
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Alles (Keine Firewall)"
+#: ../../standalone.pm_.c:70
+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)"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
-msgstr "Sie müssen ein Kernel-Abbild angeben"
+#: ../../standalone.pm_.c:82
+#, fuzzy
+msgid "[keyboard]"
+msgstr "Tastatur"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", USB-Multifunktionsgerät"
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
+msgstr ""
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Do"
-msgstr "Los"
+#: ../../standalone.pm_.c:84
+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 ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Kontaktiere Mirror, um eine Liste verfügbarer Pakete zu erhalten..."
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "Litauen (AZERTY - alt)"
+#: ../../standalone.pm_.c:94
+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 ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasilien (ABNT-2)"
+#: ../../standalone.pm_.c:99
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
-msgstr "IP-Adresse des Rechners/Netzwerks:"
+#: ../../standalone.pm_.c:100
+msgid ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
+msgstr ""
-#: ../../standalone/draksplash:1
+#: ../../standalone.pm_.c:114
#, c-format
msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System installation"
-msgstr "Installation"
+#: ../../standalone.pm_.c:168
+msgid "Installing packages..."
+msgstr "Pakete Installieren ..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
-msgstr "St. Vincent und die Grenadinen"
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Bitte loggen Sie sich aus, und drücken Sie Ctrl-Alt-Rücktaste"
-#: ../../security/help.pm:1
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "Allow/Forbid reboot by the console user."
+msgid "Please relog into %s to activate the changes"
msgstr ""
-"Den Neustart des Rechners durch den Konsolen Benutzer erlauben/verbieten."
+"Bitte loggen Sie sich erneut in %s ein, \n"
+"um die Änderungen wirksam werden zu lassen."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Open"
-msgstr "/Datei/_Öffnen"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "Ort der auto_install.cfg-Datei"
+#: ../../standalone/drakTermServ_.c:239
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Drucker-Einstellung transferieren"
-#: ../../any.pm:1
-#, c-format
-msgid "Open Firmware Delay"
-msgstr "Open-Firmware-Verzögerung"
+#: ../../standalone/drakTermServ_.c:253
+msgid "Enable Server"
+msgstr "Server aktivieren"
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
-msgstr "Ungarn"
+#: ../../standalone/drakTermServ_.c:260
+msgid "Disable Server"
+msgstr "Server deaktivieren"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Zealand"
-msgstr "Neuseeland"
+#: ../../standalone/drakTermServ_.c:268
+msgid "Start Server"
+msgstr "Server starten"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Color configuration"
-msgstr "Farbkonfiguration"
+#: ../../standalone/drakTermServ_.c:275
+msgid "Stop Server"
+msgstr "Server stoppen"
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
+#: ../../standalone/drakTermServ_.c:283
+msgid "Etherboot Floppy/ISO"
msgstr ""
-"Es gibt bereits mehr Restriktionen und jede Nacht werden automatische "
-"Sicherheitstests durchgeführt."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "please choose the date to restore"
-msgstr "Bitte wählen Sie, welches Datum wiederhergestellt werden soll."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
-msgstr "Niederländische Antillen"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr "Konvertiere ext2 zu ext3"
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
+msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
+#: ../../standalone/drakTermServ_.c:294
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Benutzer hinzufügen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Zum neuen Wiederherstellungsverzeichnis wechseln"
+#: ../../standalone/drakTermServ_.c:299
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP-Klient"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:328
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\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/drakTermServ_.c:332
+msgid ""
"\n"
-"Willkommen zum Druckereinrichtungsassistenten\n"
"\n"
-"Dieser Assistent hilft Ihnen lokale oder Netzwerkdrucker so einzurichten, "
-"dass dieser Rechner bzw. andere in Ihrem Netzwerk darauf drucken können.\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
-"Sie werden nun nach den nötigen Informationen über den Drucker gefragt, um "
-"dann Zugriff auf Treiber, Druckoptionen und Anschlussart zu erhalten."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and %d unknown printers"
-msgstr "und %d unbekannte Drucker"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr "Prozessor"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-"Ich konnte keine PCI-ISDN-Karte finden.\n"
-"Bitte wählen Sie im nächsten Menü eine aus."
-
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
-msgstr "GB"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
-msgstr "Bitte geben Sie einen Benutzernamen an"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
-msgstr "BS-Start von CD erlauben?"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Simply reboot"
-msgstr ""
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid " enter `void' for void entry"
-msgstr "Geben Sie \"void\" für einen leeren Eintrag an"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr "An"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
-msgstr "Januar"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Password history length"
-msgstr "Dieses Passwort ist zu einfach"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Winmodem connection"
-msgstr "Winmodem-Verbindung"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:365
msgid ""
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\n"
"\n"
-"Congratulations, your printer is now installed and configured!\n"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\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 ""
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
"\n"
-"Herzlichen Glückwunsch, Ihr Drucker ist nun installiert und eingerichtet!\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
"\n"
-"Sie können nun mit dem \"Drucken\" Befehl Ihrer Anwendungen (meistens im "
-"\"Datei\"-Menü zu finden) drucken.\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
"\n"
-"Falls Sie einen Drucker hinzufügen, entfernen oder umbenennen wollen,\n"
-"oder wenn Sie die Standardeinstellungen wie Papierschacht oder \n"
-"Druckqualität) anpassen wollen, wählen Sie \"Drucker\" im \"Hardware\"\n"
-"Bereich des Mandrake Kontrollzentrums."
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \n"
+"\n"
+msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "Sie können nun (unter X-Windows) \"xawtv\" starten.\n"
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
+msgstr "Bootdiskette"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr ""
-"Der Swap-Bereich ist zu klein, um die Installation zu ermöglichen! \n"
-"Bitte vergrößern Sie den Bereich."
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
+msgstr "Boot ISO"
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "%s on %s"
-msgstr "%s auf %s"
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
+msgstr "Ganzen Kern erstellen -->"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid remote root login."
-msgstr "Erlaube/Verbiete Root Login von entferntem Rechner "
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
+msgstr "Das dauert einige Minuten"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"GNU/Linux verwaltet die Zeit als GMT (Grenwich Mean Time) und übersetzt es "
-"in\n"
-"eine Lokalzeit, abhängig von der gewählten Zeitzone. Wenn die Uhr auf Ihrem\n"
-"Mainboard auf Lokalzeit gestellt ist, wollen Sie dies bestimmt abstellen, "
-"indem\n"
-"Sie \"%s\" wählen. Dann weiss GNU/Linux, dass sich die System-Uhr und die\n"
-"Hardware-Uhr in der selben Zeitzone befinden. Dies ist sinnvoll, wenn auf "
-"dieser\n"
-"Maschine auch ein anderes Betriebssystem wie Windows(TM) installiert ist.\n"
-"\n"
-"Die Verwendung der Option \"%s\" reguliert Ihre Uhr, indem sie eine "
-"Verbindung\n"
-"mit einem Zeitserver im Internet aufnimmt. Wählen Sie aus der Liste einen\n"
-"Server in Ihrer Nähe. Damit diese funktioniert, benötigen Sie eine ständige\n"
-"Internetverbindung. Diese Option installiert einen Zeitserver, der auch von "
-"anderen\n"
-" Rechnern im Netzwerk genutzt werden kann."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
-msgstr "Kann die Log Datei nicht erstellen!"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Wählen Sie Ihre Zeitzone"
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
+msgstr "Kein Kern ausgewählt!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Verwende .backupignore Dateien"
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
-msgstr "Guinea"
+#: ../../standalone/drakTermServ_.c:587
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nicht Verbunden"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Das System ist jetzt mit dem Internet verbunden."
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
+msgstr "Alle Kerne erstellen -->"
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "South Georgia und die South Sandwich Islands"
+#: ../../standalone/drakTermServ_.c:604
+msgid "<-- Delete"
+msgstr "<-- Löschen"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Japan (terrestrisch)"
+#: ../../standalone/drakTermServ_.c:611
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Alle auswählen"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:668
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."
+"!!! 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 ""
-"Monitor\n"
-"\n"
-" DrakX erkennt normalerweise automatisch Ihren Monitor. Sollten dabei\n"
-"Probleme auftreten, können Sie in der hier aufgeführten Liste Ihr Modell\n"
-"auswählen."
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "Mosambik"
+#: ../../standalone/drakTermServ_.c:673
+msgid "Add User -->"
+msgstr "Benutzer hinzufügen -->"
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "Symbol"
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
+msgstr "<-- Benutzer löschen"
-#: ../../../move/tree/mdk_totem:1
+#: ../../standalone/drakTermServ_.c:720
#, fuzzy, c-format
-msgid "Kill those programs"
-msgstr "Zugriff auf X-Programme"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Bitte wählen Sie, was Sie sichern wollen"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 Farben (8 Bit)"
+msgid "type: %s"
+msgstr "Typ:"
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "Schreiben/Lesen"
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "Größe: %s\n"
+#: ../../standalone/drakTermServ_.c:773
+#, fuzzy
+msgid "Thin Client"
+msgstr "DHCP-Klient"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Hostname: "
-msgstr "Rechnername: "
+#: ../../standalone/drakTermServ_.c:775
+#, fuzzy
+msgid "Allow Thin Clients"
+msgstr "DHCP-Klient"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a rule"
-msgstr "eine Regel hinzufügen"
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
+msgstr "Klient hinzufügen -->"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Blockgröße %s\n"
+#: ../../standalone/drakTermServ_.c:821
+#, fuzzy
+msgid "<-- Edit Client"
+msgstr "<-- Klient löschen"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
-msgstr "Gestalten Sie die Zukunft von Linux!"
+#: ../../standalone/drakTermServ_.c:837
+#, fuzzy
+msgid "Delete Client"
+msgstr "<-- Klient löschen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printer"
-msgstr "Lokaler Drucker"
+#: ../../standalone/drakTermServ_.c:843
+msgid "dhcpd Config..."
+msgstr "DHCP Konfigurieren ..."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Fehler beim Zugriff auf Diskette, kann Gerät %s nicht einbinden"
+#: ../../standalone/drakTermServ_.c:876
+msgid ""
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
+msgstr ""
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr "[--file=datei] [--word=word] [--explain=ausdruck] [--alert]"
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL-Verbindung"
+#: ../../standalone/drakTermServ_.c:901
+#, fuzzy
+msgid "Netmask:"
+msgstr "Netzmaske"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
msgstr ""
-"Keine Konfiguration. Wählen Sie den Assistenten oder Fortgeschritten.\n"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Error!"
-msgstr "Fehler!"
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "cable connection detected"
-msgstr "Kabel-Verbindung gefunden"
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "Erlaubnis verweigert beim übertragen von %s nach %s"
+#: ../../standalone/drakTermServ_.c:929
+#, fuzzy
+msgid "Domain Name:"
+msgstr "Name der Domäne"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Fehler melden"
+#: ../../standalone/drakTermServ_.c:937
+#, fuzzy
+msgid "Name Servers:"
+msgstr "Samba Server"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
-msgstr "Dominikanische Republik"
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "Größe verändern"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Auflösung: %s\n"
+#: ../../standalone/drakTermServ_.c:1001
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Expertenkonfiguration"
-#: ../../install2.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:1002
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)"
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-"Ich kann die Kernel-Module, die zu diesem Kernel passen, nicht finden (Datei "
-"%s fehlt). Das bedeutet normalerweise das Ihre Startdiskette nicht mit dem "
-"Installationsmedium übereinstimmt (Bitte erstellen Sie eine neue "
-"Startdiskette). "
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
msgstr ""
-"Wählen Sie bitte den richtigen Anschluss. So ist etwa der unter Windows\n"
-"\"COM1\" genannte Anschluss in GNU/Linux unter \"ttyS0\" erreichbar."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Die folgenden Pakete werden entfernt"
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr "Internetverbindung"
+#: ../../standalone/drakTermServ_.c:1018
+msgid "Write Config"
+msgstr "Konfiguration speichern"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
-msgstr "Verwende existierende Partition(en)"
+#: ../../standalone/drakTermServ_.c:1120
+msgid "Please insert floppy disk:"
+msgstr "Bitte legen Sie eine Diskette ein:"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "Kanada (Québec)"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
+msgstr "Kein Diskettenzugriff möglich!"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Mausschnittstelle: %s\n"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
+msgstr "Sie können die Diskette nun entfernen"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Neuwahl korrekter Schriftarten"
+#: ../../standalone/drakTermServ_.c:1129
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Kein Disketten-Laufwerk verfügbar"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
+#: ../../standalone/drakTermServ_.c:1138
#, 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 "Etherboot ISO image is %s"
msgstr ""
-"Optionen\n"
-"\n"
-" Hier können Sie auswählen ob beim Start von Linux automatisch eine\n"
-"grafische Benutzerumgebung (KDE,GNOME ...) geladen werden soll. Wenn Ihre\n"
-"Maschine als Server dienen soll, oder aber Ihre Grafikeinstellungen "
-"fehlerhaft\n"
-"sind, wollen Sie bestimmt \"%s\" überprüfen."
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert Corporate"
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Es trat ein Fehler auf! Ist „mkisofs“ installiert?"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
-msgstr ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "„/etc/dhcpd.conf“ muss erst angelegt werden!"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Write protection"
-msgstr "Schreibschutz"
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "You've not selected any font"
-msgstr "Sie haben keine Schriftart ausgewählt"
+#: ../../standalone/drakautoinst_.c:40
+msgid "Error!"
+msgstr "Fehler!"
-#: ../../steps.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, c-format
-msgid "Language"
-msgstr "Sprache auswählen"
+msgid "I can't find needed image file `%s'."
+msgstr "Ich kann die benötigte Abbild-Datei „%s“ nicht finden."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer model selection"
-msgstr "Auswahl des Druckermodells"
+#: ../../standalone/drakautoinst_.c:43
+msgid "Auto Install Configurator"
+msgstr "Auto-Installationskonfigurator"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:44
msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
+"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 ""
-"Nach Änderung des Partitionstyps von %s, werden sämtliche Daten darauf "
-"gelöscht"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ISDN adapters"
-msgstr "ISDN Karten"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d Sekunden"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Legen Sie eine leere Diskette in das %s ein."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Sie müssen eine gültige URI eingeben!"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr "Schnittstelle \"%s\" gefunden. Wollen Sie sie verwenden?"
+"Sie sind dabei, eine Auto-Installationsdiskette zu erstellen. Diese\n"
+"Möglichkeit ist gefährlich und sollte mit Vorsicht verwendet werden!\n"
+"\n"
+"Sie können mit diesem Werkzeug die Installation, die Sie auf Ihrem\n"
+"Rechner erneut durchspielen, wobei Sie an einigen Stellen interaktiv\n"
+"Einfluss nehmen zu können.\n"
+"\n"
+"Aus Sicherheitsgründen wird die Partitionierung und Formatierung nie\n"
+"automatisch durchgeführt.\n"
+"\n"
+"Wollen Sie fortfahren?"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
-msgstr "Neukonfiguration des Geräts und des DHCP-Servers"
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
+msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound configuration"
-msgstr "Sound-Konfiguration"
+#: ../../standalone/drakautoinst_.c:62
+#, fuzzy
+msgid "replay"
+msgstr "Erneut abspielen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
-msgstr "Foto-Testseite"
+#: ../../standalone/drakautoinst_.c:66
+msgid "Automatic Steps Configuration"
+msgstr "Automatische Konfiguration der Schritte"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Benutzerdefinierte Partitionierung"
+#: ../../standalone/drakautoinst_.c:67
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
+msgstr ""
+"Bitte wählen Sie für jeden Schritt, ob er wie bei Ihrer Installation "
+"vorgenommen werden soll, oder ob Sie ihn manuell durchführen wollen."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Geben Sie Druckername und Kommentare ein"
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+msgid "Creating auto install floppy"
+msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:139
msgid ""
-"The following printers\n"
"\n"
-"%s%s\n"
-"are directly connected to your system"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-"Die folgenden Drucker\n"
"\n"
-"%s%s\n"
-"sind direkt an Ihr System angeschlossen."
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "You don't have any winmodem"
-msgstr "Sie haben kein WinModem!"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: %s"
-msgstr "Typ: %s"
+"Willkommen.\n"
+"\n"
+"Die Parameter der Autoinstallation sind in den Abschnitten rechts verfügbar."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "Slowakei (QWERTY)"
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
+msgstr "Gratuliere!"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#: ../../standalone/drakautoinst_.c:235
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 "list An system."
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
+msgstr ""
+"Die Diskette wurde erfolgreich erstellt.\n"
+"Sie können die Installation nun automatisch durchführen."
-#: ../../standalone/draksound:1
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Keine Soundkarte erkannt!"
+#: ../../standalone/drakautoinst_.c:273
+msgid "Auto Install"
+msgstr "Auto-Installation"
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "Maus-Port"
+#: ../../standalone/drakautoinst_.c:343
+msgid "Add an item"
+msgstr "Eintrag hinzufügen"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
-msgstr "Prüfe auf ungesicherte Benutzerkonten"
+#: ../../standalone/drakautoinst_.c:350
+msgid "Remove the last item"
+msgstr "Letzten Eintrag entfernen?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
msgstr ""
-"Sie müssen den Display-Manager neu starten, damit alle Änderungen\n"
-"wirksam werden. (Geben Sie auf der Konsole ein: service dm restart)"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Ftp Server"
-msgstr "FTP-Server"
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr "Uganda"
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
-msgstr "%sSchriftkonvertierung"
+#: ../../standalone/drakbackup_.c:691
+msgid "FATAL"
+msgstr "FATAL"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "Der Typ des Busses, an dem die Maus angeschlossen ist."
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
+msgstr "INFO"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:704
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"
+" DrakBackup Report \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 ""
-"Nun bekommen Sie eine Zusammenfassung verschiedener Informationen Ihres\n"
-"Systems. Je nach vorhandener Hardware sehen Sie hier (oder eben nicht) die\n"
-"folgenden Einträge. Jeder Eintrag besteht aus einem konfigurierbaren Gerät\n"
-"gefolgt von dessen aktuellem Zustand. Durch Betätigen der Schaltfläche \"%s"
-"\"\n"
-"können Sie diesen Zustand ändern.\n"
-"\n"
-" * \"%s\": Kontrollieren Sie die aktuelle Tastaturvorgabe und wählen Sie "
-"die\n"
-"Schaltfläche, falls Sie die Vorgabe ändern wollen.\n"
"\n"
-" * \"%s\": Kontrollieren Sie, ob die Auswahl des Staates, in dem Sie\n"
-"sich befinden korrekt ist. Falls nicht, betätigen Sie bitte die\n"
-"Schaltfläche \"%s\" und wählen Sie den richtigen. Ist Ihr Staat nicht in "
-"der\n"
-"Liste, die Sie gezeigt bekommen, können Sie über die Schaltfläche \"%s\" "
-"eine\n"
-"vollständige Liste bekommen.\n"
-"\n"
-" * \"%s\": \"DrakX\" versucht die Zeitzone anhand des gewählten Staates zu\n"
-"setzen. Sollte diese Auswahl nicht korrekt sein (manche Staaten etwa\n"
-"überspannen mehrere Zeitzonen) können Sie durch Betätigen der Schaltfläche\n"
-"\"%s\" Ihre lokale Zeitzone setzen.\n"
+" DrakBackup Report \n"
"\n"
-" * \"%s\": Kontrollieren Sie die konfigurierte Maus und betätigen Sie, "
-"falls\n"
-"notwendig, die Schaltfläche.\n"
+
+#: ../../standalone/drakbackup_.c:705
+msgid ""
"\n"
-" * \"%s\": Durch Anwahl der Schaltfläche \"%s\" startet der "
-"Druckerassistent.\n"
-"Weitere Informationen zu diesem Assistenten erhalten Sie im Drucker-Kapitel\n"
-"des \"Starter-Handbuchs\". Das dort vorgestellte Programm entspricht dem\n"
-"während der Installation angebotenen.\n"
+" DrakBackup Daemon Report\n"
"\n"
-" * \"%s\": Falls eine Soundkarte in Ihrem Rechner gefunden wurde, wird sie\n"
-"hier angezeigt. Sollte die von DrakX getroffene Auswahl nicht korrekt sein,\n"
-"betätigen Sie einfach die Schaltfläche, um sie zu korrigieren.\n"
"\n"
-" * \"%s\": DrakX richtet Ihre Grafikumgebung normalerweise in der Auflösung\n"
-"\"800×600\" bzw. \"1024×768\" ein. Sollte Ihnen das nicht zusagen, können "
-"Sie\n"
-"es durch Betätigen der Schaltfläche \"%s\" ändern.\n"
+msgstr ""
"\n"
-" * \"%s\": Falls eine TV-Karte in Ihrem Rechner gefunden wurde, wird sie "
-"hier\n"
-"angezeigt. Falls Sie eine TV-Karte besitzen, die hier nicht richtig erkannt\n"
-"wurde, können Sie versuchen, diese manuell einzurichten. Betätigen Sie\n"
-"einfach die Schaltfläche \"%s\".\n"
+" DrakBackup Dämon Report\n"
"\n"
-" * \"%s\": Falls eine ISDN-Karte in Ihrem Rechner gefunden wurde, wird sie\n"
-"hier angezeigt. Durch Anwahl der Schaltfläche \"%s\" können Sie die "
-"Parameter\n"
-"ändern.\n"
+
+#: ../../standalone/drakbackup_.c:709
+msgid ""
"\n"
-" * \"%s\": Falls Sie Ihren Internetzugang oder Ihr lokales Netzwerk nun\n"
-"einrichten wollen, können Sie das hier tun.\n"
+" DrakBackup Report Details\n"
"\n"
-" * \"%s\": Dieser Eintrag ermöglicht es Ihnen, die Sicherheitsebene Ihres\n"
-"Systems zu ändern, die Sie in einem früheren Installationsschritt ()\n"
-"gewählt haben.\n"
"\n"
-" * \"%s\": Falls Sie Ihren Rechner mit dem Internet verbinden wollen, ist "
-"es\n"
-"sinnvoll sich vor ungebetenen Eindringlingen durch das Einrichten einer\n"
-"Firewall zu schützen. Lesen Sie das entsprechende Kapitel im \"Starter-\n"
-"Handbuch\", wenn Sie weitere Informationen benötigen.\n"
+msgstr ""
"\n"
-" * \"%s\": Falls Sie die Konfiguration Ihres Betriebssystemstarters ändern\n"
-"wollen, wählen Sie diese Schaltfläche. Es sei angemerkt, dass dieser Punkt\n"
-"sich an fortgeschrittene Nutzer richtet.\n"
+" DrakBackup Report Details\n"
"\n"
-" * \"%s\": Sie können hier die Dienste wählen, die ab dem Start von "
-"Mandrake\n"
-"Linux zur Verfügung gestellt werden sollen. Wollen Sie den Rechner als\n"
-"Server verwenden, sollten Sie unbedingt einen Blick auf diese Liste werfen."
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr "Komoren"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "May"
-msgstr "Mai"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yaboot mode"
-msgstr "Yaboot-Modus"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Generische 3 Tasten Maus"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
-msgstr "USA (Kabel)"
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+msgid "Total progess"
+msgstr "Fortschritt"
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakbackup_.c:785
#, c-format
msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+"%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 ""
-"Ich kann LILO nicht ausführen! Führen Sie bitte mit dem privilegierten "
-"Benutzer root \"lilo\" in einer Konsole aus, um die Design-Installation zu "
-"beenden."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Wählen Sie ein anderes Medium von dem Sie wiederherstellen wollen."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Software Manager"
-msgstr "Software-Verwaltung"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
-msgstr "Erneut verschicken"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD in place - continue."
-msgstr "Aktuelle CD - fortfahren."
-#: ../../common.pm:1
-#, c-format
-msgid "KB"
-msgstr "KB"
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
+msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:801
#, c-format
-msgid "Network & Internet"
-msgstr "Netzwerk & Internet"
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Litauen (QWERTY - Phonetisch)"
+msgid "No password prompt on %s at port %s"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Net Boot Images"
-msgstr "Net Boot Images"
+#: ../../standalone/drakbackup_.c:819
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Kein Passwort"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "Sharing of local scanners"
-msgstr "Gemeinsamer Zugriff auf lokale Scanner"
+msgid "Permission denied transferring %s to %s"
+msgstr ""
-#: ../../Xconfig/monitor.pm:1
+#: ../../standalone/drakbackup_.c:821
#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "Das Plug'n'Play-Testen schlug fehl. Bitte wählen Sie einen Monitor."
+msgid "Can't find %s on %s"
+msgstr ""
-#: ../../../move/move.pm:1
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid "Detect USB key again"
+msgid "%s not responding"
msgstr ""
-#: ../../services.pm:1
+#: ../../standalone/drakbackup_.c:828
#, c-format
-msgid "Services and deamons"
-msgstr "Dienste und Dämonen"
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Der Name des Netzwerkrechners fehlt!"
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "with /usr"
-msgstr "mit \"/usr\""
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Network"
-msgstr "Netzwerk"
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr "Selbsterkennung von Druckern, die an Windows-Rechnern hängen"
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "Dieses Passwort ist zu einfach"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "Der Befehl Chkconfig folget den msec Regeln"
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "Slowakei (QWERTZ)"
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
+msgstr ""
-#: ../advertising/06-development.pl:1
+#: ../../standalone/drakbackup_.c:1060
#, 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 "No tape in %s!"
msgstr ""
-"Das Programmieren in verschiedenen Sprachen wie Perl, Python, C und C++ war "
-"nie so einfach dank GNU gcc 3 und den besten Open Source "
-"Entwicklungsumgebungen."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No devices found"
-msgstr "Keine Geräte gefunden"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
+msgstr "Systemdateien sichern ..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Extrem minimale Installation (ohne \"urpmi\")"
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+msgid "Hard Disk Backup files..."
+msgstr "Backup-Dateien auf der Festplatte ..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use daemon"
-msgstr "Dämon verwenden"
+#: ../../standalone/drakbackup_.c:1236
+msgid "Backup User files..."
+msgstr "Benutzerdateien sichern ..."
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "Authentifizierung"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
+msgstr "Festplattenbackup in Bearbeitung ..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Diesen Drucker für StarOffice/OpenOffice.org/GIMP hinzufügen"
+#: ../../standalone/drakbackup_.c:1290
+msgid "Backup Other files..."
+msgstr "Andere Dateien sichern ..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Weitere CUPS-Server: "
+#: ../../standalone/drakbackup_.c:1296
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Auf Bandlaufwerk sichern"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, 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."
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-"Wählen Sie einen der automatisch erkannten Drucker aus der Liste oder geben "
-"Sie den Hostnamen oder die IP-Adresse und optional die Portnummer (wenn Port "
-"nicht angegeben, wird 9100 verwendet) ein."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr "Wo wollen Sie \"%s\" einhängen?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "Algerien"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network"
-msgstr "Über Netzwerk wiederherstellen"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
-msgstr "Benutze tar und bzip2 (besser als tar und gzip)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "Größe der Init-RamDisk"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1319
+#, fuzzy, 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."
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-"Falls für Ihre Karte verschiedene Server zur Verfügung stehen, etwa mit und\n"
-"ohne 3D-Beschleunigung, werden Sie gebeten, den zu wählen, der Ihren\n"
-"Bedürfnissen am besten entspricht."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tSicherungen verwenden \"tar\" und \"gzip\"\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set as default"
-msgstr "Als Standard setzen"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configured on this machine"
-msgstr "(an diesem Rechner)"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Beide Umschalttasten gleichzeitig"
-
-#: ../../standalone/drakhelp:1
-#, fuzzy, c-format
-msgid " --help - display this help \n"
-msgstr " --help - diesen Hilfetext anzeigen \n"
+"Dateiliste per FTP senden: %s\n"
+" "
-#: ../../standalone.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1322
+#, fuzzy
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"
+"\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
msgstr ""
-"[OPTION]...\n"
-" --no-confirmation keine Fragen im MandrakeUpdate-Modus stellen\n"
-" --no-verify-rpm Paketsignaturen nicht überprüfen\n"
-" --changelog-first Änderungsprotokoll vor Dateiliste anzeigen\n"
-" --merge-all-rpmnew Zusammenlegen aller .rpmnew/.rpmsave-Dateien "
-"vorschlagen"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Standarddrucker wählen ..."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Schnittstelle %s (verwendet Modul %s)"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Generating preview ..."
-msgstr "Erzeuge Vorschau..."
+"\n"
+"(!) FTP Verbindungsprobleme: Es war nicht möglich, Ihre Dateien per FTP zu "
+"übertragen.\n"
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1340
msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-"Die Frequenz sollte entweder eine Mengeneinheit aus ‚K‘, ‚M‘ und ‚G‘ nutzen "
-"(etwa \"2.46G\" für 2,46GHz) oder die entsprechende Anzahl Nullen angehängt "
-"werden."
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "ignore"
-msgstr "Singapur"
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1345
msgid ""
-"Allow/Forbid X connections:\n"
"\n"
-"- ALL (all connections are allowed),\n"
-"\n"
-"- LOCAL (only connection from local machine),\n"
+"Drakbackup activities via tape:\n"
"\n"
-"- NONE (no connection)."
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", Multifunktionsgerät am Parallelport \\#%s"
+#: ../../standalone/drakbackup_.c:1354
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "(!) Fehler beim Verschicken der Mail. \n"
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "Seriell"
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
-msgstr "DVD-ROM"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+msgid "File Selection"
+msgstr "Dateiauswahl"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgien (Lateinisches Layout)"
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
+msgstr ""
+"Wählen Sie die Dateien oder Verzeichnisse und betätigen Sie die Schaltfläche "
+"„Hinzufügen“"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
+#: ../../standalone/drakbackup_.c:1573
+msgid ""
+"\n"
+"Please check all options that you need.\n"
msgstr ""
-"Bekommen Sie die besten Zusatzprodukte von ausgewählten Mandrake Linux-"
-"Partnern"
+"\n"
+"Bitte wählen Sie alle benötigten Parameter.\n"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1574
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-"Sie können nun die Optionen für Modul %s angeben.\n"
-"Denken Sie daran, dass Adressen mit \"0x\" beginnen müssen, etwa \"0x300\""
+"Diese Optionen kön alle Ihre Dateien im Verzeichnis „/etc“ sichern und "
+"wiederherstellen\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "Kenia"
+#: ../../standalone/drakbackup_.c:1575
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Sichern Ihrer Systemdateien (Verzeicnis „/etc“)"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Verwenden Sie erst \"umount\""
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
+msgstr "Inkrementelles Backup (alte Backups nicht überschreiben)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing mtools packages..."
-msgstr "Installiere mtools-Pakete..."
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
+msgstr "Keine kritischen Dateien (passwd, group, fstab)"
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a root partition"
-msgstr "Sie müssen die Root-Partition festlegen"
+#: ../../standalone/drakbackup_.c:1578
+msgid ""
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
+msgstr ""
+"Mit dieser Option sind Sie in der Lage, jede Version Ihres \n"
+"„/etc“ Verzeichnisses wiederherzustellen."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "first step creation"
-msgstr "Erster Schritt-Erstellung"
+#: ../../standalone/drakbackup_.c:1595
+msgid "Please check all users that you want to include in your backup."
+msgstr ""
+"Bitte wählen Sie alle Kennzeichen, deren Dateinen mitgesichert werden sollen."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Beide Umschalttasten gleichzeitig"
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
+msgstr "Die Browser-Caches nicht archivieren."
-#: ../../standalone/drakhelp:1
-#, fuzzy, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr "<id_label> Laden"
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
+msgstr "Inkrementelle Archivierung (alte Archive nicht ersetzen)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select a scanner model"
-msgstr "Wählen Sie einen Scanner"
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+msgid "Remove Selected"
+msgstr "Markierte entfernen"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
-msgstr "error."
+#: ../../standalone/drakbackup_.c:1679
+msgid "Windows (FAT32)"
+msgstr "Windows (FAT32)"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
+#: ../../standalone/drakbackup_.c:1714
+msgid "Users"
+msgstr "Benutzer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "DrakBackup-Konfiguration"
+#: ../../standalone/drakbackup_.c:1740
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "FTP-Verbindung zum erstellen der Sicherungskopien verwenden"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr "Speichern unter..."
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr "Nordkorea"
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1747
msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-"Diese Schnittstelle wurde noch nicht eingerichtet.\n"
-"Starten Sie den Konfigurationsassistenten im Hauptfenster."
-
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System configuration"
-msgstr "Systemkonfiguration"
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "Autologin"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin Password"
-msgstr "Passwort des Domänen-Administrators"
+#: ../../standalone/drakbackup_.c:1748
+#, fuzzy
+msgid ""
+" Transfer \n"
+"Now"
+msgstr "Übertragen"
-#: ../advertising/05-desktop.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1749
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, ..."
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-"Mandrake Linux 9.2 bietet 11 Arbeitsumgebungen, die Sie nach Ihren Wünschen "
-"gestalten können, darunter: KDE 3.1, Gnome 2.2 und Window Maker,..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer ..."
-msgstr "Konfiguriere Drucker ..."
+#: ../../standalone/drakbackup_.c:1753
+msgid "Please enter the host name or IP."
+msgstr "Rechnernamen oder IP eingeben."
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1758
+#, fuzzy
msgid ""
-"To ensure data integrity after resizing the partition(s), \n"
-"filesystem checks will be run on your next boot into Windows(TM)"
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-"Um nach der Größenänderung der Partition(en) die Datenintegrität\n"
-"zu gewährleisten, wird Windows(TM) beim nächsten Hochfahren eine\n"
-"Dateisystemprüfung durchführen."
+"Bitte geben Sie das Verzeichnis an,\n"
+" in dem die Archive erstellt werden sollen."
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "MB"
+#: ../../standalone/drakbackup_.c:1763
+msgid "Please enter your login"
+msgstr "Bitte geben Sie Ihr Benutzerkennzeichen ein"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
-msgstr ""
+#: ../../standalone/drakbackup_.c:1768
+msgid "Please enter your password"
+msgstr "Bitte geben Sie Ihr Passwort ein"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr "Jungferninseln (britisch)"
+#: ../../standalone/drakbackup_.c:1774
+msgid "Remember this password"
+msgstr "Passwort behalten"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bermuda"
-msgstr "Bermuda"
+#: ../../standalone/drakbackup_.c:1785
+#, fuzzy
+msgid "Need hostname, username and password!"
+msgstr "Ich mich unter „%s“ micht anmelden! Stimmt das Passwort?"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
-msgstr "Klicken Sie hier, wenn Sie sicher sind."
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
+msgstr "Sicherungskopie auf CD/DVDROM"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1882
msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-"Keine Konfigurationsdatei gefunden.\n"
-"Bitte wählen Sie den \"Assistenten\" oder \"Erweitert\"."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Sie erhalten die Liste, der auf Ihren Festplatten gefundenen GNU/Linux\n"
-"Partitionen. Sie können die Auswahl des Assistenten beibehalten - sie\n"
-"sollte normalerweise Ihren Bedürfnissen entsprechen. Falls Sie es vorziehen\n"
-"die Einhängepunkte selbst zu definieren, denken Sie bitte daran, dass Sie\n"
-"zumindest eine root-Partition (\"/\") benötigen. Wählen Sie die\n"
-"Partitionen nicht zu klein, da Sie sonst nicht genügend Programme\n"
-"installieren können. Wenn Sie Ihre persönlichen Daten auf einer eigenen\n"
-"Partition halten wollen, legen Sie sich eine Partition namens \"/home\" an.\n"
-"\n"
-"Die Partitionen werden folgendermaßen aufgelistet: \"Name\", \"Kapazität\".\n"
-"\n"
-"\"Name\" hat folgende Struktur: \"Festplattentyp\", \"Festplattennummer\",\n"
-"\"Partitionsnummer\" (etwa \"hda1\").\n"
-"\n"
-"\"Festplattentyp\" ist \"hd\", falls Ihre Platte eine IDE/ATAPI-Platte ist, "
-"und\n"
-"\"sd\", wenn es sich um eine SCSI-Platte handelt.\n"
-"\n"
-"\"Festplattennummer\" ist immer der Buchstabe hinter dem Festplattentyp. "
-"Bei\n"
-"IDE-Platten bedeutet:\n"
-"\n"
-" * \"a\" bedeutet \"Master-Platte am primären IDE-Controller\";\n"
-"\n"
-" * \"b\" bedeutet \"Slave-Platte am primären IDE-Controller\";\n"
-"\n"
-" * \"c\" bedeutet \"Master-Platte am sekundären IDE-Controller\";\n"
-"\n"
-" * \"d\" bedeutet \"Slave-Platte am sekundären IDE-Controller\";\n"
-"\n"
-"Bei SCSI-Platten steht \"a\" für \"niedrigste SCSI-ID\", \"b\" für\n"
-"\"zweitniedrigste SCSI-ID\", etc."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Remove"
-msgstr "Entfernen"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr "utopia 25"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Den Auftrag an ein Kommando weiterleiten"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "Die Loopback-Datei entfernen?"
+#: ../../standalone/drakbackup_.c:1887
+#, fuzzy
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Bitte wählen Sie Ihren CD-Paltz"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "Elfenbeinküste"
+#: ../../standalone/drakbackup_.c:1893
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "Neuer vom DevFS des Kernels vergebener dynamischer Gerätename"
+#: ../../standalone/drakbackup_.c:1899
+msgid "Please check if you are using CDRW media"
+msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "Ja"
+#: ../../standalone/drakbackup_.c:1905
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Kontrollieren Sie, ob Sie die CDRW vorher löschen wollen."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Welches Protokoll wollen Sie verwenden?"
+#: ../../standalone/drakbackup_.c:1906
+#, fuzzy
+msgid " Erase Now "
+msgstr "Übertragen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Progress"
-msgstr "Wiederherstellungs-Fortschritt"
+#: ../../standalone/drakbackup_.c:1912
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
-msgstr "Estland"
+#: ../../standalone/drakbackup_.c:1918
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../partition_table.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1931
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."
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-"Sie haben einen unbenutzten Bereich in Ihrer Partitionstabelle, \n"
-"den ich nicht ansprechen kann. Die einzige Lösung ist, dass Sie \n"
-"Ihre primären Partitionen so verschieben, dass der Bereich direkt \n"
-"neben der erweiterten Partition zu liegen kommt."
+"Bitte geben Sie den Gerätenamen \n"
+"Ihres Brenners an, etwa „0,1,0“."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr ""
-"Wählen Sie den Rechner, dem der lokale Scanner bekannt gemacht werden soll:"
+#: ../../standalone/drakbackup_.c:1964
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Datei auswählen"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Channel"
-msgstr "Kanal"
+#: ../../standalone/drakbackup_.c:2012
+msgid "Use tape to backup"
+msgstr "Auf Bandlaufwerk sichern"
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Add"
-msgstr "Hinzufügen"
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
+msgstr "Bitte geben Sie den Gerätenamen fü Archivierung an."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr " Fehler beim Verschicken der E-Mail. \n"
+#: ../../standalone/drakbackup_.c:2021
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Kontrollieren Sie, ob Sie die CDRW vorher löschen wollen."
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "Tastatur"
+#: ../../standalone/drakbackup_.c:2027
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Kontrollieren Sie, ob Sie die CDRW vorher löschen wollen."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-"Legen Sie die Cd mit Namen %s\n"
-"in das CD Laufwerk, welches auf /mnt/cdrom gemountet ist"
+#: ../../standalone/drakbackup_.c:2033
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Kontrollieren Sie, ob Sie die CDRW vorher löschen wollen."
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
msgstr ""
-"Die Rate sollte entweder eine Mengeneinheit aus ‚K‘, ‚M‘ und ‚G‘ nutzen "
-"(etwa \"11M\" für 11M) oder die entsprechende Anzahl Nullen angehängt werden."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Wählen Sie die Verbindung, die Sie konfigurieren wollen"
+"Bitte geben Sie die Maximalgröße \n"
+"für DrakBackup an."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Bitte warten, Sicherheitsebene wird eingestellt..."
+#: ../../standalone/drakbackup_.c:2103
+#, fuzzy
+msgid "Please enter the directory to save to:"
+msgstr "Bitte geben Sie das Archivverzeichnis an:"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfigurieren der Netzwerkkarte %s"
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+msgid "Use quota for backup files."
+msgstr "Quota für Backup-Datei verwenden."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
-msgstr "aktiviert"
+#: ../../standalone/drakbackup_.c:2180
+msgid "Network"
+msgstr "Netzwerk"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
msgstr ""
-"Bitte wählen Sie, welches Netzwerkgerät für den DHCP-Server verwendet wird."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Finde die zu aktualisierenden Pakete ..."
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
-msgstr "Einhängepunkt: "
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
+msgstr "Festplatte/NFS"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
-msgstr "Alle Schriftarten analysieren"
+#: ../../standalone/drakbackup_.c:2195
+#, fuzzy
+msgid "Tape"
+msgstr "Typ"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Allow/Forbid direct root login."
-msgstr "Erlaube/Verbiete diirekte Root Anmeldung"
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
+msgstr "stündlich"
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr " Das ICMP-Echo akzeptieren/ablehnen."
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
+msgstr "täglich"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
-msgstr "Mit X"
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
+msgstr "wöchendlich"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Mehrmonitor-Einstellung"
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
+msgstr "monatlich"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "No browser available! Please install one"
-msgstr "Kein Browser installiert! Bitte installieren Sie einen."
+#: ../../standalone/drakbackup_.c:2229
+msgid "Use daemon"
+msgstr "Dämon verwenden"
-#: ../../Xconfig/main.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2234
msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
+"Please choose the time \n"
+"interval between each backup"
msgstr ""
-"Die Änderungen beibehalten?\n"
-"Momentan wäre dies:\n"
-"\n"
-"%s"
+"Bitte wählen Sie das Zeitintervall \n"
+"zwischen zwei Sicherungen."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr ""
-"Sie können ReiserFS nicht für Partitionen verwenden, die kleiner als 32MB "
-"sind!"
-
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2240
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)."
+"Please choose the\n"
+"media for backup."
msgstr ""
-"Der Dienst rwho erlaubt es Benutzern entfernter Rechner eine Liste\n"
-"momentan angemeldeter Benutzer übermittelt zu bekommen \n"
-"(ähnlich wie finger)."
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "Name der Domäne"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Gemeinsamer Zugriff auf lokale Drucker"
-
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
-msgstr "An system."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Available printers"
-msgstr "Vorhandene Drucker"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "NO"
-msgstr "INFO"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "Leer"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
-msgstr "Text Breite"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Wo wollen Sie das Gerät %s einhängen?"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Standard-IP-Verleihdauer (in Sekunden)"
+"Bitte wählen Sie ein\n"
+"Sicherungsmedium."
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2247
+#, fuzzy
msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-"Wir werden nun die Verbindung %s konfigurieren.\n"
+"Please be sure that the cron daemon is included in your services. \n"
"\n"
-"\n"
-"Wählen Sie\"%s\" , um fortzufahren."
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Schnittstelle \"%s\""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Mit minimaler Dokumentation (Empfohlen)"
+"Note that currently all 'net' medias also use the hard drive."
+msgstr "Stellen Sie sicher, dass der Cron-Dämon als Dienst aktiviert ist."
-#: ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr "1 Taste"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
+msgstr "E-Mail Bericht nach jedem Sicherungsvorgang an: "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-"\n"
-"Ich konnte %d unbekannte Drucker direkt an Ihrem Rechner finden."
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Test"
-msgstr "Test"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea"
-msgstr "Korea"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Ihre Wahl? (Standard \"%s\" %s) "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer"
-msgstr "Rohdaten-Drucker"
+#: ../../standalone/drakbackup_.c:2324
+msgid "What"
+msgstr "Was"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "Offizieller Herstellername der CPU"
+#: ../../standalone/drakbackup_.c:2329
+msgid "Where"
+msgstr "Wo"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
-msgstr "Nicht sinnvoll ohne Terminal Server"
+#: ../../standalone/drakbackup_.c:2334
+msgid "When"
+msgstr "Wann"
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Vendor"
-msgstr "Hersteller"
+#: ../../standalone/drakbackup_.c:2339
+msgid "More Options"
+msgstr "Mehr Parameter"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s"
-msgstr "Schnittstelle: %s"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+msgid "Drakbackup Configuration"
+msgstr "DrakBackup Konfiguration"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "Maus konfigurieren"
+#: ../../standalone/drakbackup_.c:2376
+msgid "Please choose where you want to backup"
+msgstr "Bitte wählen Sie wohin Sie die Sicherungskopien machen wollen."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
-msgstr "Wählen Sie die Einhängepunkte"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
+msgstr "auf Festplatte"
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr " OK "
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
+msgstr "über Netzwerk"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslawien (Lateinisches Layout)"
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
+msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "Installation wird durchgeführt"
+#: ../../standalone/drakbackup_.c:2406
+msgid "on Tape Device"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MausMan mitMausrad Emulation"
+#: ../../standalone/drakbackup_.c:2449
+msgid "Please choose what you want to backup"
+msgstr "Bitte wählen Sie, was Sie sichern wollen"
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
-msgstr "UserDrake starten"
+#: ../../standalone/drakbackup_.c:2450
+msgid "Backup system"
+msgstr "System sichern"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Handelt es sich um eine Installation oder eine Aktualisierung?"
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
+msgstr "Benutzerkennzeichen sichern"
-#: ../../help.pm:1
-#, c-format
-msgid "ISDN card"
-msgstr "ISDN-Karte"
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
+msgstr "Benutzerkennzeichen auswählen"
-#: ../advertising/02-community.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2537
msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
+"\n"
+"Backup Sources: \n"
msgstr ""
-"Beteiligen Sie sich an den Diskussionsforen, die Sie auf unseren \"Community"
-"\"-Seiten finden, um Ihr Wissen mit Anderen zu teilen."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t- Festplatte.\n"
+"\n"
+"Sicherungsquellen: \n"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2538
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."
+"- System Files:\n"
msgstr ""
-"Dieser Schritt wird nur aufgerufen, wenn mindestens eine GNU/Linux\n"
-"Partition auf Ihren Festplatten gefunden wurde.\n"
-"\n"
-"DrakX fragt Sie nun nach der gewünschten Installationsart. Sie haben die\n"
-"Wahl zwischen einer Aktualisierung einer bereits vorhandenen Mandrake\n"
-"Linux-Version oder einer kompletten Neuinstallation:\n"
"\n"
-" * \"%s\": Entfernt komplett ältere Versionen von Mandrake Linux, die noch\n"
-"installiert sind - um genau zu sein, können Sie je nach aktuellem Inhalt\n"
-"Ihrer Platte auch einige ältere Linux- oder anderweitige Partitionen\n"
-"unangetastet behalten.\n"
-"\n"
-" * \"%s\": Mit dieser Variante können Sie eine existierende Mandrake Linux-\n"
-"Version aktualisieren. Die Partitionstabellen sowie die persönlichen\n"
-"Verzeichnisse der Anwender bleiben erhalten. Alle anderen\n"
-"Installationsschritte werden wie bei einer Installation ausgeführt.\n"
-"\n"
-"Aktualisierungen von Mandrake Linux \"8.1\" oder neueren Systemen sollten\n"
-"problemlos funktionieren. Ältere Versionen von Mandrake Linux sollten Sie\n"
-"nicht versuchen zu aktualisieren."
+"- Systemdateien:\n"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2540
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"
+"- User Files:\n"
+msgstr ""
"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"- Benutzerdateien:\n"
+
+#: ../../standalone/drakbackup_.c:2542
+msgid ""
"\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"
+"- Other Files:\n"
msgstr ""
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" 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."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Drucker an CUPS-Server auf der Gegenseite"
+"- Sonstige Dateien:\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2544
#, c-format
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
-msgstr "Fehler beim Entfernen von \"%s\" für StarOffice/OpenOffice.org/GIMP."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
-msgstr "Hier, falls nicht."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DHCP host name"
-msgstr "DHCP-Rechnername"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Maximale IP-Verleihdauer (in Sekunden)"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Bitte wählen Sie den seriellen Anschluss, an dem Ihre Maus hängt."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
-msgstr "War der Ausdruck korrekt?"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
-msgstr "Das Dateisystem read only einhängen/mounten"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "Schwach"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result by mail"
-msgstr "Ergebnis per E-Mail bekanntgeben"
+"\n"
+"- Save on Hard drive on path: %s\n"
+msgstr ""
+"\n"
+"- Auf Festplatte sichern unter: %s\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
-msgstr "Grenada"
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
+#: ../../standalone/drakbackup_.c:2553
+msgid ""
+"\n"
+"- Burn to CD"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "Unsicher"
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
+msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: ../../standalone/drakbackup_.c:2555
#, fuzzy, c-format
-msgid "SSH server"
-msgstr "SSH-Server"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s Sektoren"
-
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "Nein"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "Gouadeloupe"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Kannada"
-msgstr "Kanada"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
-msgstr "Konnte keine Schriftarten finden.\n"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Wollen Sie, dass die Rücktaste auf den Konsolen Entfernen sendet?"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Vertikale Wiederholfrequenz"
-
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Beginn von Schritt \"%s\"\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niger"
-msgstr "Niger"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MausMan/FirstMaus"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing %s ..."
-msgstr "Entferne %s ..."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No printer"
-msgstr "Kein Drucker"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "alert configuration"
-msgstr "Benachrichtigungskonfiguration"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "Optionen für NetWare-Drucker"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "%s BootSplash (%s) preview"
-msgstr "%s BootSplash (%s) Vorschau"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "February"
-msgstr "Februar"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
-msgstr "Allgemein"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
-msgstr "/etc/issue* existiert"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "Benutzer hinzufügen"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netzwerk-Konfiguration (%d Karten)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "April"
-msgstr "April"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Deactivate now"
-msgstr "Jetzt deaktivieren"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Das zwingend benötigte Paket \"%s\" fehlt."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Philippinen"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "OK"
+msgid " on device: %s"
+msgstr "Mausschnittstelle: %s\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "drakTermServ Overview"
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
-msgstr "Name der Druckerwarteschlange"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Möchten Sie \"aboot\" verwenden?"
+#: ../../standalone/drakbackup_.c:2557
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device: %s"
+msgstr ""
+"\n"
+"- Via FTP sichern auf: %s\n"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "Belarusian"
-msgstr "Weißrussland"
+msgid "\t\tErase=%s"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2561
+#, fuzzy, c-format
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"\n"
+"- Save via %s on host: %s\n"
msgstr ""
-"PDQ unterstützt nur lokale Drucker, entfernte LPD-Drucker und Socket/TCP-"
-"Drucker.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move files to the new partition"
-msgstr "Dateien auf die neue Partition verschieben"
+"\n"
+"- Via FTP sichern auf: %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2562
#, 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."
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
msgstr ""
-"Fügen Sie hier die CUPS-Server hinzu, deren Drucker Sie verwenden wollen. "
-"Sie müssen dies jedoch nur tun, wenn die Server ihre Druckerinformationen "
-"nicht ins lokale Netzwerk senden (broadcast)."
+"\t\t Benutzer: %s\n"
+"\t\t Pfad: %s \n"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2563
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."
+"- Options:\n"
msgstr ""
"\n"
-"Willkommen zum Druckerassistenten\n"
-"\n"
-"Dieser Assistent möchte Ihnen helfen, Ihre(n) lokalen Drucker zu "
-"konfigurieren.\n"
-"\n"
-"Falls Sie Drucker haben, die direkt mit dem Rechner verbunden sind, stellen "
-"Sie sicher, dass diese richtig angeschlossen und eingeschaltet sind.\n"
-"\n"
-"Betätigen Sie die Schaltfläche \"Weiter\", wenn Sie soweit sind, bzw. "
-"\"Abbrechen\", wenn Sie keine Drucker konfigurieren wollen."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
-msgstr "Pitcairn"
+"- Optionen:\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Wiederherstellen aus Katalog"
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
+msgstr "\tKeine Systemdateien\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "IDE"
-msgstr "IDE"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
+msgstr "\tSicherungen verwenden „tar“ und „bzip2“\n"
-#: ../../fs.pm:1
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "Das Einhängen der Partition %s in das Verzeichnis %s schlug fehl."
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
+msgstr "\tSicherungen verwenden „tar“ und „gzip“\n"
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakbackup_.c:2572
#, c-format
-msgid "Lilo screen"
-msgstr "LILO-Menü"
+msgid ""
+"\n"
+"- Daemon (%s) include:\n"
+msgstr ""
+"\n"
+"- Dämon (%s) enthält:\n"
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO mit grafischem Menü"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
+msgstr "\t- Festplatte.\n"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "Schätzung"
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
+msgstr "\t- CD-ROM.\n"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
msgstr ""
-"Sie können dieses Paket nicht aus der Auswahl entfernen. \n"
-"Es ist bereits installiert!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", Drucker \"%s\" an SMB/Windows-Server \"%s\""
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
+msgstr "\t- Netzwerk per FTP.\n"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "Wollen Sie trotzdem fortfahren?"
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
+msgstr "\t- Netzwerk per SSH.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Suche nach vorhandenen Paketen und aktualisiere RPM-Datenbank ..."
+#: ../../standalone/drakbackup_.c:2578
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t- Netzwerk per FTP.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2579
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t- Netzwerk per FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
+msgstr ""
+"Keine Konfiguration. Wählen Sie dein Assistenten oder Fortgeschritten.\n"
+
+#: ../../standalone/drakbackup_.c:2587
msgid ""
+"List of data to restore:\n"
"\n"
-" DrakBackup Report \n"
msgstr ""
-"\n"
-" DrakBackup-Report \n"
+"Liste der wiederherzustellenden Daten:\n"
"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Das Medium ist nicht beschreibbar!"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "Optionen angeben"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "New user list:\n"
-msgstr "Liste der neuen Benutzer:\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Sie müssen entweder den Servernamen oder seine IP-Adresse angeben!"
-
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2754
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"
+"List of data corrupted:\n"
"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
msgstr ""
-"Mit einer individuellen Startdiskette können Sie Ihr LINUX-System starten, \n"
-"ohne auf einen Betriebssystemstarter angewiesen zu sein. Dies ist "
-"nützlich, \n"
-"wenn Sie SILO nicht auf Ihrem System installieren möchten, wenn ein \n"
-"anderes Betriebssystem SILO entfernt hat oder Ihre Hardware-Konfiguration \n"
-"die Verwendung eines Betriebssystemstarters nicht korrekt verarbeitet. \n"
-"Eine individuelle Startdiskette kann auch in Verbindung mit der \n"
-"Mandrake Linux Rettungsdiskette verwendet werden, wodurch das System \n"
-"nach schwerwiegenden Fehlern viel einfacher wiederhergestellt werden \n"
-"kann.\n"
+"Liste der beschädigten Daten:\n"
"\n"
-"Falls Sie eine Startdiskette erstellen wollen, legen Sie eine Diskette \n"
-"ohne relevante Daten in Ihr erstes Laufwerk und drücken Sie \"OK\"."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
+#: ../../standalone/drakbackup_.c:2756
+msgid "Please uncheck or remove it on next time."
msgstr ""
-"Sie können kein verschlüsseltes Medium für den Einhängepunkt %s verwenden."
+"Bitte entfernen Sie die Markierung oder löschen Sie sie das nächste Mal."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password history length to prevent password reuse."
-msgstr ""
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
+msgstr "Die Sicherungen sind beschädigt."
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
-msgstr "Norfolkinsel"
+#: ../../standalone/drakbackup_.c:2787
+#, fuzzy
+msgid " All of your selected data have been "
+msgstr " Alle Ihre gewälhten Daten wurden "
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "Theme installation failed!"
-msgstr "Die Installation des Designs schlug fehl!"
+msgid " Successfuly Restored on %s "
+msgstr " erfolgreich auf %s wiederhergestellt "
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
-msgstr "Nichts zu tun."
+#: ../../standalone/drakbackup_.c:2906
+msgid " Restore Configuration "
+msgstr " Konfiguration wiederherstellen "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "Als Loopback verwenden"
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
+msgstr "OK, die übrigen Dateien zu aktualisieren."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr "Mandrake BugReport Werkzeug"
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
+msgstr ""
+"Liste wiederherzustellender Kennzeichen (letztes Datum per Kennzeichen ist "
+"wichtig)"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
-msgstr "Filter anwenden"
+#: ../../standalone/drakbackup_.c:3019
+msgid "Backup the system files before:"
+msgstr "Systemdateien sichern vor:"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pppoe"
-msgstr "PPPOE verwenden"
+#: ../../standalone/drakbackup_.c:3021
+msgid "please choose the date to restore"
+msgstr "Bitte wählen Sie, welches Datum wiederhergestellt werden soll."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving files to the new partition"
-msgstr "Verschiebe Dateien auf die neue Partition"
+#: ../../standalone/drakbackup_.c:3057
+msgid "Use Hard Disk to backup"
+msgstr "Auf Festpaltte sichern"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s mit EXPERIMENTELLER 3D-Hardwarebeschleunigung"
+#: ../../standalone/drakbackup_.c:3060
+msgid "Please enter the directory to save:"
+msgstr "Bitte geben Sie das Archivverzeichnis an:"
-#: ../../help.pm:1 ../../interactive.pm:1
-#, c-format
-msgid "Advanced"
-msgstr "Fortgeschritten"
+#: ../../standalone/drakbackup_.c:3103
+msgid "FTP Connection"
+msgstr "FTP Verbindung"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer"
-msgstr "Übertragen"
+#: ../../standalone/drakbackup_.c:3110
+msgid "Secure Connection"
+msgstr "Sichere Verbindung"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Schweden)"
+#: ../../standalone/drakbackup_.c:3134
+msgid "Restore from Hard Disk."
+msgstr "Von Festplatte wiederherstellen"
-#: ../../lang.pm:1
-#, c-format
-msgid "Afghanistan"
-msgstr "Afghanistan"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
+msgstr "Bitte geben Sie das Verzeichnis an, in dem die Sicherungskopien liegen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "More Options"
-msgstr "Mehr Parameter"
+#: ../../standalone/drakbackup_.c:3204
+msgid "Select another media to restore from"
+msgstr "Wählen Sie ein anderes Medium von dem Sie wiederherstellen wollen."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
-"Nach dem Backup auf ein anderes Medium die tar-Dateien von der Festplatte "
-"löschen."
+#: ../../standalone/drakbackup_.c:3206
+msgid "Other Media"
+msgstr "Anderes Medium"
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "Burundi"
+#: ../../standalone/drakbackup_.c:3211
+msgid "Restore system"
+msgstr "System wiederherstellen"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"Der Befehl cron wird unter UNIX/Linux dazu verwendet, Benutzerprogramme \n"
-"zu vordefinierten regelmäßigen Zeiten abzuarbeiten. \n"
-"Der Dienst vixie cron erweitert dieses Konzept um weitere Funktionen, etwa \n"
-"ein verbessertes Sicherheitskonzept und einfachere Konfiguration."
+#: ../../standalone/drakbackup_.c:3212
+msgid "Restore Users"
+msgstr "Benutzerkennzeichen wiederherstellen"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr "Client hinzufügen -->"
+#: ../../standalone/drakbackup_.c:3213
+msgid "Restore Other"
+msgstr "Sonstiges wiederherstellen"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "Lesen Sie bitte aufmerksam!"
+#: ../../standalone/drakbackup_.c:3215
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Auswahl des Pfades der wiederhergestellt werden soll (statt „/“"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "RW"
-msgstr "RW (Rewritable)"
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
+msgstr ""
+"Erstelle Sicherung vor dem Wiederherstellen (nur für inkrementelle "
+"Sicherungen)."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr "Bitte geben Sie Ihre Fernsehnorm und Staat ein"
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
+msgstr "Benutzerkennzeichen vor dem Wiederherstellen entfernen."
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "Port"
+#: ../../standalone/drakbackup_.c:3334
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
-msgstr "Nein (nur für Experten)"
+#: ../../standalone/drakbackup_.c:3344
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Markierte entfernen"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-msgstr "Kein Kernel ausgewählt!"
+#: ../../standalone/drakbackup_.c:3361
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Sonstiges wiederherstellen"
-# ü und ö sichtbar?
-#. -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_.c:3427
#, fuzzy, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Zum Starten des BS drÂcken Sie <Return>. Mit <e> k”nnen Sie das"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
-msgstr "GID setzen"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The encryption keys do not match"
-msgstr "Die Passwörter stimmen nicht überein"
+msgid "Backup files not found at %s."
+msgstr "Anlegen einer Sicherheitskopie von „%s“ unter „%s.old“."
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:3440
#, c-format
msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "USB printer"
-msgstr "USB-Drucker"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Rechte \"Windows\"-Taste"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr "Wenn ja, prüfe auf leere Passwörter in /etc/shadow."
+#: ../../standalone/drakbackup_.c:3440
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Von Festplatte wiederherstellen"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
+#: ../../standalone/drakbackup_.c:3442
#, 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 "Not the correct CD label. Disk is labelled %s."
msgstr ""
-"Lesen Sie bitte aufmerksam die Lizenz, bevor Sie fortfahren. Sie umfasst\n"
-"die gesamte Mandrake Linux Distribution. Wenn Sie in allen Punkten\n"
-"zustimmen, betätigen Sie bitte die Schaltfläche \"%s\". Wenn nicht, \n"
-"schalten Sie einfach Ihren Computer aus."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:3452
#, c-format
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
-"Hier die Liste vorhandener Drucker-Parameter des aktuellen Druckers:\n"
-"\n"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "Auflösungen"
+#: ../../standalone/drakbackup_.c:3452
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Partitionstabelle wiederherstellen"
-#: ../../network/drakfirewall.pm:1
+#: ../../standalone/drakbackup_.c:3454
#, 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 "Not the correct tape label. Tape is labelled %s."
msgstr ""
-"DrakFirewall-Konfigurator\n"
-"\n"
-"Hiermit konfigurieren Sie eine persönliche Firewall für diesen\n"
-"Mandrake Linux-Rechner. Sollten Sie an einer speziellen ausgereiften\n"
-"Firewall-Lösung interessiert sein, schauen Sie sich nach der speziell\n"
-"dafür entwickelten MandrakeSecurity-Firewall-Distribution um."
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid ""
-"Please enter your username, password and domain name to access this host."
-msgstr "Bitte geben Sie Benutzername, Passwort und Domäne des Rechners an."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Remove selected host"
-msgstr "Löschen des markierten Rechners"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network configuration"
-msgstr "Netzwerk-Konfiguration"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/_Jaz-Laufwerke automatisch erkennen"
-
-#: ../../any.pm:1
-#, c-format
-msgid "No sharing"
-msgstr "Kein Teilen"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Markierte Regel eine Ebene heruntersetzen"
-
-#: ../../common.pm:1
-#, c-format
-msgid "TB"
-msgstr "TB"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "FATAL"
-msgstr "FATAL"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh the list"
-msgstr "Liste aktualisieren"
-
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
+#: ../../standalone/drakbackup_.c:3474
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Benutzerkennzeichen wiederherstellen"
-#: ../../standalone/drakpxe:1
+#: ../../standalone/drakbackup_.c:3474
#, 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"
+msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete"
-msgstr "Löschen"
+#: ../../standalone/drakbackup_.c:3475
+#, fuzzy
+msgid "Host Name"
+msgstr "Rechnername"
-#: ../../Xconfig/various.pm:1
-#, 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?"
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
msgstr ""
-"Ich kann GNU/Linux so einrichten, dass bei jedem Systemstart\n"
-"automatisch die grafische Oberfläche (= der X-Server) aktiviert wird.\n"
-"Wollen Sie, dass X nach jedem Neustart direkt zur Verfügung steht?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
-msgstr " Diskette erstellen "
+#: ../../standalone/drakbackup_.c:3483
+#, fuzzy
+msgid "Password required"
+msgstr "Passwort"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnect %s"
-msgstr "Trenne %s"
+#: ../../standalone/drakbackup_.c:3489
+#, fuzzy
+msgid "Username required"
+msgstr "Benutzerkennzeichen"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
-msgstr "Status:"
+#: ../../standalone/drakbackup_.c:3492
+#, fuzzy
+msgid "Hostname required"
+msgstr "Rechnername: "
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP-Proxy"
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "SSH Server"
-msgstr "SSH-Server"
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t- Netzwerk per rsync.\n"
+#: ../../standalone/drakbackup_.c:3513
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Sonstiges wiederherstellen"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
-msgstr "Europäisches Protokoll"
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
+msgstr "Alle Sicherungen wiederherstellen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", Drucker \"%s\", auf Server \"%s\""
+#: ../../standalone/drakbackup_.c:3760
+msgid "Custom Restore"
+msgstr "Benutzergeführte Wiederherstellung"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
msgstr ""
-"Beachten Sie, dass zur Zeit alle \"Netzmedien\" auch die Festplatte "
-"verwenden."
-
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
-#, c-format
-msgid "Error"
-msgstr "Fehler"
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
-msgstr "\"su\" erlauben"
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
+msgstr ""
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Australia"
-msgstr "Australien"
+#: ../../standalone/drakbackup_.c:3813
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Partitionstabelle wiederherstellen"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "Bitte warten Sie - ttmkfdir arbeitet ..."
+#: ../../standalone/drakbackup_.c:3841
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Benutzerkennzeichen wiederherstellen"
+
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+msgid "Previous"
+msgstr "<- Zurück"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Nur Karte \"%s\" (%s) konfigurieren"
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+msgid "Save"
+msgstr "Speichern"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Level"
-msgstr "Ebene"
+#: ../../standalone/drakbackup_.c:3946
+msgid "Build Backup"
+msgstr "Sicherung erstellen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Change the printing system"
-msgstr "Drucksystem ändern"
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+msgid "Restore"
+msgstr "Wiederherstellen"
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4189
+#, fuzzy
msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
msgstr ""
-"Ihr System unterstützt die gleichzeitige Verwendung mehrerer Monitore.\n"
-"Was wollen Sie machen?"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr "Fehler beim Einhängen: "
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "Dienste konfigurieren"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Broadcast-Adresse:"
+"Sendmail Fehler\n"
+" Ihre Bericht-Mail konnte nicht versandt werden.\n"
+" Bitte richten Sie Sendmail korrekt ein."
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4195
+#, fuzzy
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."
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
msgstr ""
+"Fehler bei der Üertragung via FTP.\n"
+"Bitte korrigieren Sie Ihre FTP-Konfiguration."
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "Image"
+#: ../../standalone/drakbackup_.c:4209
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Die folgenden Pakete werden installiert werden"
-#: ../../services.pm:1
-#, c-format
-msgid "Remote Administration"
-msgstr "Fernwartung"
+#: ../../standalone/drakbackup_.c:4232
+msgid "Please select data to restore..."
+msgstr "Bitte wählen Sie die wiederherzustellenden Daten..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-msgstr "Fehler beim Hinzufügen von \"%s\" für StarOffice/OpenOffice.org/GIMP."
+#: ../../standalone/drakbackup_.c:4267
+msgid "Please select media for backup..."
+msgstr "Bitte wählen Sie ein Sicherungsmedium..."
-#: ../../modules.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4275
+msgid "Please select data to backup..."
+msgstr "Bitte wählen Sie die zu sichernden Daten..."
+
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-"Die PCMCIA-Unterstützung für 2.2-Kernel wurde eingestellt. Verwenden Sie "
-"bitte einen 2.4-Kernel."
+"Keine Konfigurationsdatei gefunde.\n"
+"Bitte wählen Sie den „Assistenten“ oder „Erweitert“."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Selected All"
-msgstr "Alle auswählen"
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
+msgstr "In Entwicklung, haben Sie noch etwas Geduld ..."
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
+#: ../../standalone/drakbackup_.c:4382
+msgid "Backup system files"
+msgstr "Systemdateien sichern"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Webmin Service"
-msgstr "Webmin-Dienst"
+#: ../../standalone/drakbackup_.c:4384
+msgid "Backup user files"
+msgstr "Benutzerdateien sichern"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
-msgstr "Gerät"
+#: ../../standalone/drakbackup_.c:4386
+msgid "Backup other files"
+msgstr "Andere Dateien sichern"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Enter the directory to save to:"
-msgstr "Bitte geben Sie das Archivverzeichnis an:"
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
+msgstr "Fortschritt"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
-msgstr "Griechenland"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
+msgstr "Datenüagung via FTP"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "Alle"
+#: ../../standalone/drakbackup_.c:4416
+msgid "Sending files..."
+msgstr "Dateien übertragen ..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Welches Drucksystem (Spooler) wollen Sie verwenden?"
+#: ../../standalone/drakbackup_.c:4500
+msgid "Backup Now from configuration file"
+msgstr "Jetzt Sicherung anhand der Konfigurationsdatei erstellen."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
-msgstr "Juli"
+#: ../../standalone/drakbackup_.c:4505
+msgid "View Backup Configuration."
+msgstr "Sicherungskonfiguration anzeiegen"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Prints into %s"
-msgstr ", drucken auf %s"
+#: ../../standalone/drakbackup_.c:4526
+msgid "Wizard Configuration"
+msgstr "Assistentengestützte Konfiguration"
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "Es ist ein Fehler aufgetreten"
+#: ../../standalone/drakbackup_.c:4531
+msgid "Advanced Configuration"
+msgstr "Expertenkonfiguration"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Dieses Paket muss aktualisiert werden.\n"
-"Sind Sie sicher, dass Sie es aus der Auswahl entfernen wollen?"
+#: ../../standalone/drakbackup_.c:4536
+msgid "Backup Now"
+msgstr "Jetzt sichern"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "Tamilisch (Schreibmaschine)"
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
+msgstr "DrakBackup"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
-msgstr "Benutzer müssen sich mit einem Passwort authentifizieren."
+#: ../../standalone/drakbackup_.c:4624
+#, fuzzy
+msgid ""
+"options description:\n"
+"\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
+msgstr ""
+"Parameter:\n"
+"\n"
+" In diesem Schritt erlaubt Ihnen DrakBackup folgende Änderungen:\n"
+"\n"
+" - Kompressionsmodus:\n"
+" \n"
+" Mit der „bzip2“ Kompression, werden Ihre Daten\n"
+" besser als mit „gzip“ komprimiert (ca. 2-10 %).\n"
+" Standardmäßig ist dier Modus deaktiviert, da er\n"
+" mehr Zeit benötigt (bis zu 1.000%).\n"
+" \n"
+" - Aktualisierungsmodus:\n"
+"\n"
+" Mit dieser Option können Sie Ihre Sicherungskopie\n"
+" aktuialisieren. Das ist momentan nicht sehr sinnvoll,\n"
+" da Sie Ihre Kopie auspacken müssen, um sie \n"
+" aktualisieren zu können.\n"
+" \n"
+" - Der „.backupignore“-Mode:\n"
+"\n"
+" Vie bei dem Programm „cvs“, wird DrakBackup alle\n"
+" Dateien/Ordner, die in der Datei „.backupignore“\n"
+" des aktuellen Verzeichnisses aufgeführt sind,\n"
+" von der Sicherung ausschließen.\n"
+" Beispiel:\n"
+" > cat .backupignore\n"
+" *.o\n"
+" *~\n"
+" \n"
+"\n"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4654
msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
+"\n"
+" Einige der Sendmail-Fehler beruhen auf einer\n"
+" fehlerhaften PostFix Konfiguration. Um sie zu\n"
+" beheben müssen Sie „myhostname“ oder „mydomain“\n"
+" in „/etc/postfix/main.cf“ korrigieren.\n"
+"\n"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
-msgstr "manuell"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
+#: ../../standalone/drakbackup_.c:4662
+msgid ""
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
msgstr ""
+"Parameter:\n"
+"\n"
+" - Systemdateien sichern:\n"
+" \n"
+"\tDiese Option erlaub es Ihnen Ihr „/etc“ Verzeichnis\n"
+"\tmit den darin enthaltenen Konfigurationsdateien zu\n"
+"\tsichern. Seien Sie vorsichtig, damit Sie während der\n"
+"\tWiederherstellung folgende Dateien nicht überschreiben:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Benutzerdateien sichern:\n"
+"\n"
+"\tDiese Option erlaubt es Ihnen die Benutzerkenn-\n"
+"\tzeichen zu wählen, deren Daten gesichert werden\n"
+"\tsollen.\n"
+"\tEs ist sinnvoll, die Browser-Caches vom Sichern\n"
+"\tauszunehmen, um Sicherungsplatz zu sparen.\n"
+"\n"
+" - Andere Dateien sichern:\n"
+"\n"
+"\tMit dieser Option können Sie weitere Dateienn\n"
+"\tzum Sichern vorsehen. Sollten Sie diese Version\n"
+"\tverwenden, können Sie momentan keine inkre-\n"
+"\tmentellen Aktualisierungen vornehmen.\n"
+"\n"
+" - Inkrementelle Archivierung:\n"
+"\n"
+"\tInkrementelle Archivierung ist die mächtigste\n"
+"\tder vorhandenen Optionen. Sie erlaubt es\n"
+"\tIhnen beim ersten Aufruf eine komplette\n"
+"\tSicherungskopie Ihres Systems zu erstellen und\n"
+"\tanschließnd nur noch Änderungen zu speichern.\n"
+"\tSomit sind Sie in der Lage, während des Wieder-\n"
+"\therstellens, den Datenbestand eines bestimmten\n"
+"\tZeitpunkts zu erzeugen.\n"
+"\tSollten sie diese Alernative nicht gewählt haben,\n"
+"\twerden die alten Sicherungen vor dem Ertellen\n"
+"\teiner neuen Sicherungskopie gelöscht.\n"
+"\n"
+"\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Druckerproduzent, Modell, Treiber"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4701
+#, fuzzy
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
+"\n"
msgstr ""
-"In Laufwerk %s liegt kein Medum oder es ist schreibgeschützt.\n"
-"Bitte legen Sie eins ein."
+"Parameter:\n"
+"\n"
+" - Systemdateien sichern:\n"
+" \n"
+"\tDiese Option erlaub es Ihnen Ihr „/etc“ Verzeichnis\n"
+"\tmit den darin enthaltenen Konfigurationsdateien zu\n"
+"\tsichern. Seien Sie vorsichtig, damit Sie während der\n"
+"\tWiederherstellung folgende Dateien nicht überschreiben:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Benutzerdateien sichern:\n"
+"\n"
+"\tDiese Option erlaubt es Ihnen die Benutzerkenn-\n"
+"\tzeichen zu wählen, deren Daten gesichert werden\n"
+"\tsollen.\n"
+"\tEs ist sinnvoll, die Browser-Caches vom Sichern\n"
+"\tauszunehmen, um Sicherungsplatz zu sparen.\n"
+"\n"
+" - Andere Dateien sichern:\n"
+"\n"
+"\tMit dieser Option können Sie weitere Dateienn\n"
+"\tzum Sichern vorsehen. Sollten Sie diese Version\n"
+"\tverwenden, können Sie momentan keine inkre-\n"
+"\tmentellen Aktualisierungen vornehmen.\n"
+"\n"
+" - Inkrementelle Archivierung:\n"
+"\n"
+"\tInkrementelle Archivierung ist die mächtigste\n"
+"\tder vorhandenen Optionen. Sie erlaubt es\n"
+"\tIhnen beim ersten Aufruf eine komplette\n"
+"\tSicherungskopie Ihres Systems zu erstellen und\n"
+"\tanschließnd nur noch Änderungen zu speichern.\n"
+"\tSomit sind Sie in der Lage, während des Wieder-\n"
+"\therstellens, den Datenbestand eines bestimmten\n"
+"\tZeitpunkts zu erzeugen.\n"
+"\tSollten sie diese Alernative nicht gewählt haben,\n"
+"\twerden die alten Sicherungen vor dem Ertellen\n"
+"\teiner neuen Sicherungskopie gelöscht.\n"
+"\n"
+"\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4727
+#, fuzzy
msgid ""
-"Directory %s already contains data\n"
-"(%s)"
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
-"Das Verzeichnis \"%s\" enthält bereits Daten\n"
-"(%s)"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Drucker an NetWare-Server"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Geben Sie die RAM-Größe in MB an"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr "Freitag"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Trennung vom Internet erfolgreich."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "Vollständiger Name"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "done"
-msgstr "Fertig"
+" Copyright (C) 2001 MandrakeSoft by Sebastien DUPONT <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please uncheck or remove it on next time."
+#: ../../standalone/drakbackup_.c:4729
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-"Bitte entfernen Sie die Markierung oder löschen Sie sie das nächste Mal."
-#: ../../security/level.pm:1
-#, c-format
-msgid "Higher"
-msgstr "Höher"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Zu formatierende Partitionen auswählen"
-
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4732
msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
+"Description:\n"
"\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
"\n"
-"You can visit our hardware database at:\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-"Auf Ihrem System wurde keine TV-Karte gefunden. Bitte stellen Sie sicher, "
-"daß\n"
-"eine Video/TV-Karte korrekt installiert ist und diese Linux unterstützt.\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
"\n"
-"Sie können unsere Hardware-Datenbank einsehen unter:\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't find %s on %s"
-msgstr "Kann %s auf %s nicht finden"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "Japan (106 Tasten)"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""
-"Konnte die notwendigen Programmpakete zum Teilen des Scanners mit Anderen "
-"nicht installieren."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Das dauert einige Minuten"
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "June"
-msgstr "Juni"
+#: ../../standalone/drakbackup_.c:4769
+msgid ""
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
+msgstr ""
+"Parameter:\n"
+"\n"
+"Seien Sie vorsichtig, wenn Sie FTP-Sicherungskopien verwenden, \n"
+"da nur vollständig erstelle Sicherungskopien sum Server kopiert.\n"
+"werden. Die Sicherungskopie muss also erst lokal auf Ihrem \n"
+"Rechner erstellt werden.\n"
+"\n"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Benutze Scanner auf entfernten Computern"
+#: ../../standalone/drakbackup_.c:4778
+msgid ""
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
+msgstr ""
+"\n"
+"Wiederherstellungsprobleme:\n"
+"\n"
+"DrakBackup wird bei der Wiederherstellung alle Dateien \n"
+"kontrollieren, bevor sie wiederhergestellt werden.\n"
+"Da vor der Wiederherstellung alle Dateien im \n"
+"Zielverzeichnis von DrakBackup gelöscht werden, \n"
+"gehen alle darin entghaltenen Daten verloren! \n"
+"Seien Sie daher vorsichtig und ändern Sie die Sicherungskopien \n"
+"nicht manuell.\n"
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Delete selected rule"
-msgstr "Markierte Regel entfernen"
+msgid "Installation of %s failed. The following error occured:"
+msgstr "Die Installation von %s schlug Fehl. Folgender Fehler trat auf:"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Zugriff auf Drucker an einem entfernetn CUPS-Server"
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Legen Sie eine Diskette ohne relevante Daten in \"%s\" ein."
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
-msgstr "Malediven"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "Kompakt"
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konsolen-Werkzeuge"
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
-msgstr "1 Minute"
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "auf Festplatte"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: fat"
-msgstr "Typ: FAT"
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "on channel %d id %d\n"
-msgstr "auf Kanal %d ID %d\n"
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
-msgstr ", Multifunktionsgerät"
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Maus"
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr "Laos"
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Entfernter Drucker"
-#: ../advertising/04-configuration.pl:1
-#, 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!"
-msgstr ""
-"Mandrake Linux 9.2 bietet Ihnen mit dem Mandrake Kontrollzentrum ein "
-"mächtiges Werkzeug, um Ihren Computer an ihre Bedürfnisse anzupassen. Sie "
-"können Dinge wie die Sicherheitsebene, die Peripheriegeräte (Bilschirm, "
-"Maus, Keyboard ...), die Internetverbindung konfigurieren und vieles mehr!"
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Freigabename"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
msgstr ""
-"Sie haben keine FAT-Partition, deren Größe ich anpassen kann\n"
-"(möglicherweise haben Sie auch einfach nur nicht mehr genügend\n"
-"freien Speicher)."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr "Hoch"
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
-msgstr "Firewall"
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Netzwerk Konfigurationsassistent"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr "Region:"
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Application:"
+msgstr "Authentifizierung"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr "(E)IDE/ATA-Controller"
+#: ../../standalone/drakbug_.c:76
+#, fuzzy
+msgid "Package: "
+msgstr "Auswahl der Pakete"
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "Drucker-Server"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Custom configuration"
-msgstr "Angepasste Konfiguration"
+#: ../../standalone/drakbug_.c:78
+#, fuzzy
+msgid "Release: "
+msgstr "Bitte warten"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbug_.c:93
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"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
"\n"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr "St. Pierre und Miquelon"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
-msgstr "September"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "Sichere das Bootsplash-Design..."
+#: ../../standalone/drakbug_.c:112
+#, fuzzy
+msgid "Report"
+msgstr "Port"
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
-msgstr "Portugal"
+#: ../../standalone/drakbug_.c:148
+#, fuzzy
+msgid "Not installed"
+msgstr "Nach dem Entfernen"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "Verfügen Sie über weitere?"
+#: ../../standalone/drakbug_.c:160
+#, fuzzy
+msgid "Package not installed"
+msgstr "Nach dem Entfernen"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", printing to %s"
-msgstr ", drucken auf %s"
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Sie müssen einen Rechnernamen oder eine IP eingeben.\n"
+#: ../../standalone/drakbug_.c:180
+msgid "No browser available! Please install one"
+msgstr "Kein Browser installiert! Bitte installieren Sie einen."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakconnect_.c:75
#, c-format
-msgid "Toggle to normal mode"
-msgstr "In den Normal-Modus wechseln"
+msgid "Network configuration (%d adapters)"
+msgstr "Netzwerk Konfiguration (%d Karten)"
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
-msgstr "Generisch"
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+msgid "Profile: "
+msgstr "Profil: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Zylinder %d bis %d\n"
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
+msgstr "Profil löschen..."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
-msgstr ""
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
+msgstr "Zu löschendes Profil: "
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakconnect_.c:125
msgid "New profile..."
msgstr "Neues Profil..."
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "NONE"
-msgstr "KEINER"
+#: ../../standalone/drakconnect_.c:131
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr "Name des neuen Profils (es wird als Kopie des aktuellen erstellt):"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "Zu welcher Platte wollen Sie wechseln?"
+#: ../../standalone/drakconnect_.c:157
+msgid "Hostname: "
+msgstr "Rechnername: "
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Display logo on Console"
-msgstr "Logo auf Konsole anzeigen"
+#: ../../standalone/drakconnect_.c:164
+msgid "Internet access"
+msgstr "Internetzugang"
-#: ../../any.pm:1
-#, c-format
-msgid "Windows Domain"
-msgstr "Windows-Domäne"
+#: ../../standalone/drakconnect_.c:177
+msgid "Type:"
+msgstr "Typ:"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (norwegian)"
-msgstr "Saamen (Norwegen)"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "Gateway:"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Interface %s (on network %s)"
-msgstr "Schnittstelle %s (an Netzwerk %s)"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Interface:"
+msgstr "Schnittstelle:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
-msgstr "INFO"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
+msgstr "Status:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
-msgstr "Wallis und Futuna"
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
+msgstr "Bitte Warten"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "\"/etc/dhcpd.conf\" muss erst angelegt werden!"
+#: ../../standalone/drakconnect_.c:216
+msgid "Configure Internet Access..."
+msgstr "Internet-Zugang konfigurieren"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
-msgstr "Ist FPU vorhanden"
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+msgid "LAN configuration"
+msgstr "LAN Konfiguration"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Es existieren leider keine\n"
-"weiteren Informationen zu\n"
-"diesem Dienst."
+#: ../../standalone/drakconnect_.c:228
+msgid "Driver"
+msgstr "Treiber"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "Ich konnte keine Scanner direkt an Ihrem Rechner finden.\n"
+#: ../../standalone/drakconnect_.c:228
+msgid "Interface"
+msgstr "Schnittstelle"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
-msgstr ""
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
+msgstr "Protokoll"
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "Marshall Inseln"
+#: ../../standalone/drakconnect_.c:228
+msgid "State"
+msgstr "Status"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "Ist dies richtig?"
+#: ../../standalone/drakconnect_.c:240
+msgid "Configure Local Area Network..."
+msgstr "Netzwerk konfigurieren"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
+msgstr "Hier starten Sie den Assistenten ->"
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr "Root-Passwort"
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "Assistent..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Alle Kernel erstellen -->"
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
+msgstr "Anwenden"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVDRAM device"
-msgstr "DVD-RAM Laufwerk"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Connected"
+msgstr "Verbunden"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
-msgstr "Wenn auf \"Ja\" gesetzt, werden Dateien ohne Eigentümer gemeldet."
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Not connected"
+msgstr "Nicht Verbunden"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
+msgstr "Verbinden ..."
+
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
+msgstr "Trenne Verbindung ..."
+
+#: ../../standalone/drakconnect_.c:400
msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Sie haben keine Auslagerungspartition.\n"
-"\n"
-"Wollen Sie trotzdem fortfahren?"
+"WARNUNG: Es wurde bereits eine Internetverbindung gefunden. Vielleicht nutzt "
+"diese ihr Netzwerk."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Version: "
-msgstr "Version: "
+#: ../../standalone/drakconnect_.c:427
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Sie haben noch keine Schnittstelle eingerichtet.\n"
+"Sie können dies tun, indem Sie die Schaltfläche \n"
+"„Konfigurieren“ betätigen."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Server IP missing!"
-msgstr "Die Server-IP fehlt!"
+#: ../../standalone/drakconnect_.c:449
+msgid "LAN Configuration"
+msgstr "LAN Konfiguration"
-#: ../../lang.pm:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Suriname"
-msgstr "Surinam"
+msgid "Adapter %s: %s"
+msgstr "Adapter %s: %s"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use a floppy"
-msgstr "Benutze eine Diskette"
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
+msgstr "Boot-Protokoll"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
-msgstr "ACPI aktivieren"
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
+msgstr "Beim Hochfahren gestartet"
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
-msgstr "Schreib Zugriff für den normalen Benutzer"
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
+msgstr "DHCP Klient"
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
-msgstr "Grafische Arbeitsoberfläche"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "activate now"
+msgstr "Jetzt aktivieren"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
-msgstr "Gibraltar"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "deactivate now"
+msgstr "Jetzt deaktivieren"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Do nothing"
-msgstr "Tu nichts"
+#: ../../standalone/drakconnect_.c:499
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Diese Schnittstelle wurde noch nicht eingerichtet.\n"
+"Starten Sie den Konfigurationsassistenten im Hauptfenster."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete Client"
-msgstr "Client löschen"
+#: ../../standalone/drakconnect_.c:556
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Sie haben noch keine Internetverbindung eingerichtet.\n"
+"Sie können dies tun, indem Sie die Schaltfläche \n"
+"„Konfigurieren“ betätigen."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "Dateisystemtyp: "
+#: ../../standalone/drakconnect_.c:580
+msgid "Internet connection configuration"
+msgstr "Konfiguration der Internetverbindung"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting network..."
-msgstr "Netzwerk starten ..."
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet Connection Configuration"
+msgstr "Konfiguration der Internetverbindung"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
-msgstr "Vietnam"
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+msgid "Connection type: "
+msgstr "Verbindungstyp: "
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Felderbeschreibung"
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
+msgstr "Parameter"
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr "Optimieren Sie Ihre Sicherheit mit Mandrake Linux"
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Gateway"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-" Danke an:\n"
-"\t- LTSP-Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
+msgstr "Netzwerkkarte"
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Help"
-msgstr "Hilfe"
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
+msgstr "DHCP-Klient"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
-msgstr ""
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Your personal phone number"
-msgstr "Ihre eigene Telefonnummer"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Module name"
+msgstr " Modulname "
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which size do you want to keep for Windows on"
-msgstr "Wieviel Platz benötigen sie noch für Windows auf"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Size"
+msgstr " Größe "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Die Testseite(n) wurden an den Drucker gesandt.\n"
-"Es kann einen Augenblick dauern, bevor der Drucker seine Arbeit aufnimmt.\n"
+#: ../../standalone/drakfloppy_.c:45
+msgid "drakfloppy"
+msgstr "DrakFloppy"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Username required"
-msgstr "Benutzername nötig"
+#: ../../standalone/drakfloppy_.c:63
+msgid "boot disk creation"
+msgstr "Boot-Disketten Erstellung"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Device"
-msgstr "Gerät"
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr " Standard "
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
+#: ../../standalone/drakfloppy_.c:87
#, 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."
-msgstr ""
-"\"DrakX\" sucht aufgrund Ihrer Sprachauswahl das für Sie passende\n"
-"Tastaturlayout aus. Möglicherweise haben Sie jedoch eine Tastatur, die\n"
-"nicht dieser Einstellung entspricht: wenn Sie beispielsweise in der Schweiz\n"
-"eine deutsche Tastatur verwenden wollen oder wenn Sie in Québec (dem\n"
-"französischsprachigen Teil Kanadas) eine französischsprachige Tastatur\n"
-"besitzen. Wählen Sie einfach ein passendes Layout aus der Liste.\n"
-"\n"
-"Sollten Sie eine andere als die zur gewählten Sprache gehörende Tastatur\n"
-"verwenden wollen, wählen Sie die Schaltfläche \"%s\". Sie erhalten dann "
-"eine\n"
-"Liste aller unterstützten Tastaturen.\n"
-"\n"
-"Sollten Sie sich für ein Tastaturlayout einer nicht-lateinischen Sprache\n"
-"entschieden haben, werden Sie im nächsten Schritt gefragt, mit welcher\n"
-"Tastenkombination Sie zwischen dem von Ihnen gewählten und dem lateinischen\n"
-"Layout umschalten wollen."
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy Fehler: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) Drucker-Parameter"
+#: ../../standalone/drakfloppy_.c:98
+msgid "kernel version"
+msgstr "Kernversion"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
+#: ../../standalone/drakfloppy_.c:104
+msgid "General"
+msgstr "Allgemein"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr ""
-"Liste der gültigen Benutzer hat sich geändert, aktualisiere "
-"Konfigurationsdatei"
+#: ../../standalone/drakfloppy_.c:109
+msgid "Expert Area"
+msgstr "Experten Bereich"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakfloppy_.c:112
msgid "mkinitrd optional arguments"
-msgstr "Optionale Parameter für \"mkinitrd\""
-
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
-msgstr ""
-"Surfen Sie im Internet mit Mozilla oder Konqueror, lesen Sie Ihre E-Mails "
-"mit Evolution oder Kmail, erstellen Sie Dokumente mit OpenOffice.org."
+msgstr "Optionale Parameter für „mkinitrd“"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protokoll für den Rest der Welt"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print test pages"
-msgstr "Testseite(n) drucken"
+#: ../../standalone/drakfloppy_.c:113
+msgid "Add a module"
+msgstr "Modul hinzufügen"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Activate now"
-msgstr "Jetzt aktivieren"
+#: ../../standalone/drakfloppy_.c:133
+msgid "force"
+msgstr " mit Gewalt "
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
-msgstr "64 MB oder mehr"
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
+msgstr " falls Nötig "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Bitte wählen Sie, welche Testseiten Sie drucken wollen.\n"
-"\n"
-"Bemerkung: Der Druck der Foto-Testseite dauert häufig extrem lange. Bei "
-"Laserdruckern mit wenig Speicher kann es auch vorkommen, dass sie gar nicht "
-"gedruckt wird. Normalerweise sollte es ausreichen, die Standard-Testseiten "
-"auszudrucken."
+#: ../../standalone/drakfloppy_.c:135
+msgid "omit scsi modules"
+msgstr " SCSI Module weglassen "
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Bitte wählen Sie den Gerätenamen, an dem Ihr \"%s\" hängt."
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
+msgstr " RAID-Module weglassen "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Not formatted\n"
-msgstr "Nicht formatiert\n"
+#: ../../standalone/drakfloppy_.c:172
+msgid "Remove a module"
+msgstr "Modul entfernen"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Periodic Checks"
-msgstr "Periodische Checks"
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
+msgstr "Ausgabe"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "PXE Server Configuration"
-msgstr "Konfiguration des PXE-Servers"
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
+msgstr " Diskette erstellen "
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "Backup the system files before:"
-msgstr "Systemdateien sichern vor:"
+msgid "Be sure a media is present for the device %s"
+msgstr "Stellen Sie sicher, dass ein Medium in Laufwerk %s liegt."
-#: ../../security/level.pm:1
-#, c-format
+#: ../../standalone/drakfloppy_.c:341
+#, fuzzy, c-format
msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
-"Das ist die Standard-Sicherheitsebene für Rechner, mit Internetzugang \n"
-"als Client."
-
-# erste? nicht erstes?
-#: ../../any.pm:1
-#, c-format
-msgid "First floppy drive"
-msgstr "erstes Disketten-Laufwerk"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Datei/B_eenden"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose the new size"
-msgstr "Wählen Sie die neue Größe"
+"In Laufwerk %s liegt kein Medum.\n"
+"Bitte legen Sie eins ein."
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "Media class"
-msgstr "Medienklasse"
+msgid "Unable to fork: %s"
+msgstr "Ich kann nicht forken: %s"
-#: ../../standalone/XFdrake:1
+#: ../../standalone/drakfloppy_.c:349
#, c-format
-msgid "You need to log out and back in again for changes to take effect"
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
msgstr ""
-"Sie müssen sich abmelden und wieder anmelden, damit die Änderungen wirksam "
-"werden"
+"Ich kann „mkbootdisk“ nicht richtig beenden: \n"
+" %s \n"
+" %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
-msgstr "Der %s wird nicht von dieser Version von ScannerDrake unterstützt."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Faroe Islands"
-msgstr "Faröische Inseln"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
+msgstr "Suche installierte Schriften"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Restart XFS"
-msgstr "Neustart des X-Font-Servers"
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
+msgstr "Auswahl installierter Schriften zurücksetzen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
-msgstr "Hinzufügen eines Rechners/Netzwerks"
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
+msgstr "Alle Schriften analysieren"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Scannerdrake wird jetzt nicht gestartet."
+#: ../../standalone/drakfont_.c:242
+msgid "no fonts found"
+msgstr "Keine Schriften gefunden"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model name"
-msgstr "Modellname"
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+msgid "done"
+msgstr "Fertig"
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
-msgstr "Albanien"
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
+msgstr "Ich konnte keine Schriften in Ihren eingehängten Partitionen finden"
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr "Britisches Territorium im Indischen Ozean"
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
+msgstr "Neuwahl korrekter Schriften"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Normal Mode"
-msgstr "Normaler Modus"
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
+msgstr "Konnte keine Schriften finden.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "Keine CD/DVDR im Laufwerk!"
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
+msgstr "Suche installierter Schriften"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer connection type"
-msgstr "Art der Druckeranbindung"
+#: ../../standalone/drakfont_.c:359
+msgid "Fonts copy"
+msgstr "Kopiere Schriften"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
-msgstr "Sie haben keine Netzwerkkarte!"
+#: ../../standalone/drakfont_.c:363
+msgid "True Type fonts installation"
+msgstr "Installation von TrueType Schriften"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network %s"
-msgstr "Netzwerk %s"
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
+msgstr "Bitte warten Sie ttmkfdir arbeitet ..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
-msgstr "Malayalam"
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
+msgstr "TrueType Installation beendet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Der Parameter %s ist groß oder zu klein!"
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
+msgstr "Konvertieren der Schriften"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connect %s"
-msgstr "Verbinde %s"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
+msgstr "Erzeuge „type1inst“"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "CUPS wird neu gestartet..."
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
+msgstr "Ghostscriptreferenz"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Drucken/Scannen/Fotokarten mit \"%s\""
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
+msgstr "ttf-Schriftkonvertierung"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
-msgstr ""
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
+msgstr "pfm-Schriftkonvertierung"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Den Einhängepunkt %s kopieren"
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
+msgstr "Temporäre Dateien löschen"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
-msgstr "Wenn ja, starte chkrootkit Überprüfung"
+#: ../../standalone/drakfont_.c:459
+msgid "Restart XFS"
+msgstr "Neustart des X-FontServers"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "Verbindungskonfiguration"
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
+msgstr "Schriftdateien löschen"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|Generic"
-msgstr "Unbekannt|Generisch"
+#: ../../standalone/drakfont_.c:528
+msgid "xfs restart"
+msgstr "xfs Neustart"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
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"
+"Before installing any fonts, be sure that you have the right to use and "
+"install them on your system.\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."
+"-You can install the fonts using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
msgstr ""
-"Es ist sehr wahrscheinlich, dass zum Zeitpunkt Ihrer Mandrake Linux\n"
-"Installation bereits einige Pakete aktualisiert wurden, etwa da noch Fehler\n"
-"entdeckt und beseitigt wurden oder da in Paketen Sicherheitslücken entdeckt\n"
-"wurden, für die bereits Lösungen existieren. Um von diesen aktualisierten\n"
-"Paketen Gebrauch zu machen, wird Ihnen nun angeboten, diese aus dem\n"
-"Internet nachzuladen. Betätigen Sie die Schaltfläche \"%s\", wenn Sie einen\n"
-"Internetzugang haben, um die Pakete zu installieren, andernfalls betätigen\n"
-"Sie die Schaltfläche \"%s\". Sie können diese Pakete natürlich auch "
-"jederzeit\n"
-"nach der Installation noch installieren.\n"
+"Stellen Sie sicher, das Sie das Recht haben, die Schriften die Sie \n"
+"in Ihr System einbinden wollen, zu verwenden.\n"
"\n"
-"Betätigen der Schaltfläche \"%s\" zeigt Ihnen eine Liste von Servern, von\n"
-"denen Sie die Aktualisierungen herunterladen können. Wählen Sie einen in\n"
-"Ihrer Nähe. Sie erhalten dann einen Paketauswahldialog: Kontrollieren Sie\n"
-"die Auswahl und bestätigen Sie diese durch Betätigen von \"%s\". Die Pakete\n"
-"werden nun angefordert und installiert. Sollten Sie das nicht wünschen,\n"
-"betätigen Sie einfach die Schaltfläche \"%s\"."
+"- Sie können die Schriften auf normalem Weg einbinden. In seltenen Fällen \n"
+"können defekte Schriften den X-Server lahmlegen."
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-msgstr "Burma"
+#: ../../standalone/drakfont_.c:621
+msgid "Fonts Importation"
+msgstr "Schriften einbinden"
-#: ../../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
-#, c-format
-msgid "Quit"
-msgstr "Verlassen"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "Automatisches Erstellen"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Soll ich nach defekten Blöcken suchen?"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Other MultiMedia devices"
-msgstr "Andere Multimedia-Geräte"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "burner"
-msgstr "Brenner"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
+msgstr "Windows-Schriften verwenden"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Bug Description/System Information"
-msgstr ""
+#: ../../standalone/drakfont_.c:658
+msgid "Uninstall Fonts"
+msgstr "Schiften deinstallieren"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (Default is all users)"
-msgstr " (Standard: alle Benutzer)"
+#: ../../standalone/drakfont_.c:669
+msgid "Advanced Options"
+msgstr "Erweiterte Einstellungen"
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "No remote machines"
-msgstr "Keine Netzwerkrechner"
+#: ../../standalone/drakfont_.c:677
+msgid "Font List"
+msgstr "Font-Liste"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:737
+#, fuzzy
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@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."
-msgstr ""
+" 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"
-"Willkommen zum Druckerassistenten\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"
"\n"
-"Dieser Assistent möchte Ihnen helfen, Ihre(n) lokalen Drucker zu "
-"konfigurieren.\n"
"\n"
-"Falls Sie Drucker haben, die direkt mit dem Rechner verbunden sind, stellen "
-"Sie sicher, dass diese richtig angeschlossen und eingeschaltet sind.\n"
+msgstr ""
+" This program is free software; you can redistribute it and/or modify\n"
+" it under the terms of the GNU General Public License as published by\n"
+" the Free Software Foundation; either version 2, or (at your option)\n"
+" any later version.\n"
"\n"
-"Betätigen Sie die Schaltfläche \"Weiter\", wenn Sie soweit sind, bzw. "
-"\"Abbrechen\", wenn Sie keine Drucker konfigurieren wollen."
+" 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."
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "NIS-Authentifizierung"
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:862
+msgid "Choose the applications that will support the fonts:"
+msgstr "Wählen Sie die Programme, die die Schriften verwenden sollen:"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Die Option \"Gebrauch der Kommandozeilen-Parameter einschränken\" ist ohne \n"
-"Angabe eines Passwortes wirkungslos"
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
+msgstr "Ghostscript"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Gemeinsame Internetverbindung momentan eingeschaltet."
+#: ../../standalone/drakfont_.c:877
+msgid "StarOffice"
+msgstr "StarOffice"
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "Vereinigte arabische Emirate"
+#: ../../standalone/drakfont_.c:884
+msgid "Abiword"
+msgstr "Abiword"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "Karten-E/A_0"
+#: ../../standalone/drakfont_.c:891
+msgid "Generic Printers"
+msgstr "Generische Drucker"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
msgstr ""
+"Wählen Sie eine Schriftdatei bzw. ein Verzeichnis und betätigen Sie "
+"„Hinzufügen“"
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "Thailand"
+#: ../../standalone/drakfont_.c:1005
+msgid "Install List"
+msgstr "Liste installieren"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "Karten-E/A_1"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
+msgstr "Klicken Sie hier, wenn Sie sicher sind."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
-msgstr "Suche:"
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
+msgstr "Hier, falls nicht."
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "Kasachstan"
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
+msgstr "Markierung löschen"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
-msgstr "Router:"
+#: ../../standalone/drakfont_.c:1116
+msgid "Selected All"
+msgstr "Alle auswählen"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Write"
-msgstr "Schreiben"
+#: ../../standalone/drakfont_.c:1120
+msgid "Remove List"
+msgstr "Liste entfernen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Alle Netzwerk-CUPS-Drucker anzeigen"
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+msgid "Initials tests"
+msgstr "Vortests"
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux-Installation %s"
+#: ../../standalone/drakfont_.c:1145
+msgid "Copy fonts on your system"
+msgstr "Schriften auf Ihren Rechner kopieren"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
-msgstr "Unbekannter Treiber"
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
+msgstr "Installiere und konvertiere Fonts"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "Thailändisch"
+#: ../../standalone/drakfont_.c:1153
+msgid "Post Install"
+msgstr "Nach der Installation"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr "Bouvet-Insel"
+#: ../../standalone/drakfont_.c:1178
+msgid "Remove fonts on your system"
+msgstr "Entfernen von Schriftarten auf Ihrem Rechner"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "Einwahl-Parameter"
+#: ../../standalone/drakfont_.c:1182
+msgid "Post Uninstall"
+msgstr "Nach dem Entfernen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "Wenn kein Port angegeben wird, wird Port 631 als Vorgabe genommen."
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
+msgstr "Teilen der Internet-Verbindung"
-#: ../../standalone/drakTermServ:1
-#, 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."
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Teilen der Internetverbindung momentan eingeschaltet."
+
+#: ../../standalone/drakgw_.c:126
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 ""
-"Bitte wechseln Sie die CD!\n"
+"Es wurde bereits eine geteilte Internet-Verbindung aufgesetzt.\n"
+"Momentan ist sie aktiviert.\n"
"\n"
-"Bitte legen Sie die CD-ROM \"%s\" in Ihr Laufwerk,\n"
-"dann drücken Sie OK.\n"
-"Falls Sie sie nicht vorliegen haben, drücken Sie \"Abbrechen\"."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "Polen"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Online"
-msgstr "Mandrake Online"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
-msgstr "\t- Netzwerk per webdav.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", Multifunktionsgerät am Parallelport "
-
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"Ihr Rechner hat keine konfigurierte Netzwerkkarte. Bitte verwenden Sie erst "
-"HardDrake, bevor Sie weiter machen."
-
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "Netzmaske"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "No hard drives found"
-msgstr "Keine Festplatten gefunden"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "2 Tasten"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Serie"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "Um welchen Typ ISDN-Verbindung handelt es sich?"
+"Was wollen Sie tun?"
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "Identifikator"
+#: ../../standalone/drakgw_.c:130
+msgid "disable"
+msgstr "deaktivieren"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "Auf Diskette speichern"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
+msgstr "Verwerfen"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check open ports"
-msgstr "Prüfe offene Ports"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "reconfigure"
+msgstr "neu konfigurieren"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Edit selected printer"
-msgstr "Änderung des markierten Druckers"
+#: ../../standalone/drakgw_.c:133
+msgid "Disabling servers..."
+msgstr "Server deaktivieren ..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Autoerkennung von Druckern"
+#: ../../standalone/drakgw_.c:142
+msgid "Internet connection sharing is now disabled."
+msgstr "Teilen der Internet-Verbindung ist nun abgeschaltet."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Welche der folgenden ist Ihre ISDN-Karte?"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Teilen der Internet-Verbindung momentan abgeschaltet."
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:150
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."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"NFS ist ein geläufiges Protokoll in TCP/IP Netzwerken um Dateien \n"
-"durch verschiedene Rechner gemeinsam nutzen zu können\n"
-" (File sharing). \n"
-"Dieser Dienst stellt Ihnen einen solchen Server zur Verfügung. \n"
-"Konfiguriert wird er in der Datei \"/etc/exports\"."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Msec"
-msgstr "Msec"
+"Es wurde bereits eine geteilte Internet-Verbindung aufgesetzt.\n"
+"Momentan ist sie deaktiviert.\n"
+"\n"
+"Was wollen Sie tun?"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Anmerkung: Ein Eintrag wurde geändert:\n"
-"%s"
+#: ../../standalone/drakgw_.c:154
+msgid "enable"
+msgstr "aktivieren"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
-msgstr "Anzahl der Aufnahmepuffer:"
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
+msgstr "Server aktivieren ..."
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Ihre Wahl? (0/1, Standard ‚%s‘) "
+#: ../../standalone/drakgw_.c:166
+msgid "Internet connection sharing is now enabled."
+msgstr "Teilen der Internetverbindung ist nun eingeschaltet."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:183
+#, fuzzy
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"
+"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"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
"\n"
-"Click on \"%s\" if you wish to select partitions that will be checked for\n"
-"bad blocks on the disk."
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
-"Alle Partitionen, die gerade neu erzeugt wurden, müssen formatiert werden\n"
-"(d.h. es muss ein Dateisystem auf der Partition erstellt werden), bevor sie\n"
-"verwendet werden können.\n"
-"\n"
-"Sie erhalten hier auch die Möglichkeit bereits existierende Partitionen neu\n"
-"zu formatieren, um die darauf vorhandenen Daten zu löschen. Markieren Sie\n"
-"diese einfach ebenfalls in der Liste.\n"
-"\n"
-"Es sei angemerkt, dass nicht alle Partitionen neu formatiert werden müssen.\n"
-"Sie sollten normalerweise nur die Partitionen neu formatieren, die\n"
-"Systemdateien, jedoch keine Privatdaten enthalten (etwa \"/\", \"/usr\" "
-"oder\n"
-"\"/var\"). Partitionen wie etwa \"/home\" sollten Sie normalerweise nicht "
-"neu\n"
-"formatieren.\n"
-"\n"
-"Seien Sie sorgfältig bei der Auswahl der Partitionen. Nach dem Formatieren\n"
-"sind alle zuvor darauf existierenden Daten unwiederbringlich verloren.\n"
-"\n"
-"Wenn Sie alle Einstellungen vorgenommen haben, betätigen Sie die\n"
-"Schaltfläche \"%s\", um mit dem Formatieren der Partitionen zu beginnen.\n"
-"\n"
-"Betätigen Sie \"%s\", wenn Sie eine andere Partition für Ihr neues Mandrake\n"
-"Linux vorgesehen haben.\n"
+"Sie sind dabei, Ihren Rechner zu konfigurieren, dass er die eingerichtete \n"
+"Internetverbindung mit einem lokalem Netzwerk teilt.\n"
"\n"
-"Betätigen Sie die Schaltfläche \"%s\", falls Sie Partitionen auf defekte\n"
-"Blöcke untersuchen wollen."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "French"
-msgstr "Frankreich"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTY)"
-msgstr "Tschechien (QWERTY)"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Allow X Window connections"
-msgstr "Erlaube Verbindungen zum X Windows System"
+"Anmerkung: Sie benötigen eine Netzwerkkarte, mit deren Hilfe Sie ein \n"
+"lokales Netz (LAN) aufsetzen können."
-#: ../../standalone/service_harddrake:1
+#: ../../standalone/drakgw_.c:211
#, c-format
-msgid "Hardware probing in progress"
-msgstr "Hardwareerkennung läuft"
+msgid "Interface %s (using module %s)"
+msgstr "Schnittstelle %s (verwendet Modul %s)"
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
+#: ../../standalone/drakgw_.c:212
#, c-format
-msgid "Net Device"
-msgstr "Netz-Gerät:"
+msgid "Interface %s"
+msgstr "Schnittstelle: %s"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "Zusammenfassung"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr "Sie haben keine Netzwerkkarte!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:221
msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Parallele Anschlüsse: /dev/lp0, /dev/lp1, ..., äquivalent zu LPT1:, "
-"LPT2:, ..., Erster USB-Drucker: /dev/usb/lp0, zweiter USB-Drucker: /dev/usb/"
-"lp1, ...)."
-
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Next"
-msgstr "Weiter"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
msgstr ""
-"Sie können den Betriebssystemstarter\n"
-"nicht auf einer %s Partition installieren!\n"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
+"Ihr Rechner hat keine konfigurierte Netzwerkkarte. Bitte verwenden Sie erst "
+"HardDrake, bevor Sie weiter machen."
-#: ../../network/network.pm:1
-#, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(BOOTP/DHCP/ZEROCONF)"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr "Netzwerkkarte"
-#: ../../standalone/drakautoinst:1
+#: ../../standalone/drakgw_.c:228
#, c-format
msgid ""
+"There is only one configured network adapter on your system:\n"
"\n"
-"Welcome.\n"
+"%s\n"
"\n"
-"The parameters of the auto-install are available in the sections on the left"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
+"Sie haben nur eine konfiguriertes Netzwerkgerät an Ihrem Rechner:\n"
"\n"
-"Willkommen.\n"
+"%s\n"
"\n"
-"Die Parameter der Auto-Installation sind in den Abschnitten rechts verfügbar."
+"Ich setze ihr lokales Netz damit auf."
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/drakgw_.c:235
msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
msgstr ""
-"Das Paket ‚ImageMagick‘ wird zur Beendigung der Konfiguration benötigt.\n"
-"Wählen Sie \"OK\", um ‚ImageMagick‘ zu installieren oder \"Abbrechen\" zum "
-"Beenden."
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Telnet server"
-msgstr "X-Server"
+"Bitte wählen Sie die Netzwerkkarte, die mit Ihrem lokalen Netzwerk \n"
+"verbunden ist."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Litauen (QWERTY - \"number row\")"
+#: ../../standalone/drakgw_.c:261
+msgid "Network interface already configured"
+msgstr "Ihr Netzwerk ist bereits konfiguriert"
-#: ../../install_any.pm:1
+#: ../../standalone/drakgw_.c:262
#, c-format
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
+"Warning, the network adapter (%s) is already configured.\n"
"\n"
+"Do you want an automatic re-configuration?\n"
"\n"
-"Do you really want to remove these packages?\n"
+"You can do it manually but you need to know what you're doing."
msgstr ""
-"Folgende Pakete werden entfernt, um das Aktualisieren Ihres Rechners zu "
-"ermöglichen: %s\n"
+"Warnung, das Netzwerkgerät „%s“ ist bereits konfiguriert.\n"
"\n"
+"Wollen Sie eine automatische Neukonfiguration?\n"
"\n"
-"Wollen Sie diese Pakete wirklich entfernen?\n"
+"Sie können auch eine manuelle Einrichtung vornehmen - dafür sollten Sie "
+"jedoch wissen, wie das funktioniert."
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
-msgstr "Anguilla"
+#: ../../standalone/drakgw_.c:267
+msgid "Automatic reconfiguration"
+msgstr "Automatische Rekonfiguration"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "NIS-Domain"
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "Antarktis"
+#: ../../standalone/drakgw_.c:268
+msgid "Show current interface configuration"
+msgstr "Aktuelle Schnittstellenkonfiguration anzeigen"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:269
+#, fuzzy
+msgid "Current interface configuration"
+msgstr "Aktuelle Schnittstellenkonfiguration anzeigen"
+
+#: ../../standalone/drakgw_.c:270
#, c-format
msgid ""
+"Current configuration of `%s':\n"
"\n"
-"- User Files:\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
msgstr ""
+"Aktuelle Konfiguration von „%s“:\n"
"\n"
-"- Benutzerdateien:\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
-msgstr "Einhänge-Optionen"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Jamaica"
-msgstr "Jamaika"
+"Netzwerk: %s\n"
+"IP-Adresse: %s\n"
+"IP-Eigenschaften: %s\n"
+"Treiber: %s"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:283
+#, fuzzy
msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
+"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"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
+"\n"
msgstr ""
-"Weist Roh-Geräten ein blockorientiertes Gerät (etwa eine\n"
-"Festplattenpartition) zu. Dies wird für Anwendungen wie\n"
-"etwa ORACLE-Datenbankem oder DVD-Playern benötigt"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Bitte warten, Installation wird vorbereitet ..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "Tschechien (QWERTZ)"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Netzwerkkarten-ID überwachen (sinnvoll für Laptops)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Die Port Nummer muss eine ganze Zahl sein!"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "You must choose an image file first!"
-msgstr "Sie müssen zuerst eine Abbild-Datei auswählen!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Von Festplatte wiederherstellen"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "Zum LVM hinzufügen"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "DNS-Server"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr "Trinidad und Tobago"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD und LPRng unterstützen keine IPP-Drucker.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host name or IP."
-msgstr "Rechnername oder IP"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Edit"
-msgstr "/_Ändern"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "Einfach"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "Alles löschen"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No test pages"
-msgstr "Keine Testseiten"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falkland Inseln"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Boot disk creation"
-msgstr "Boot-Disketten-Erstellung"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
-msgstr "Montag"
+"Ich kann Ihre aktuelle Konfiguration beibehalten und annehmen, dass Sie "
+"bereits einen DHCP-Server eingerichtet haben. Stellen Sie in diesem Fall "
+"sicher, dass ich Ihr Klasse-C Netzwerk korrekt erkannt habe. Ich werde es "
+"weder neukonfigurieren, noch Ihre DHCP-Konfiguration ändern.\n"
+"\n"
+"Ich kann jedoch auch Ihre Schnittstelle neu konfigurieren und einen DHCP-"
+"Server für Sie aufsetzen.\n"
+"\n"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown model"
-msgstr "Unbekanntes Modell"
+#: ../../standalone/drakgw_.c:290
+#, fuzzy
+msgid "Local Network adress"
+msgstr "Lokales Klasse-C Netzwerk"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "if set to yes, check files/directories writable by everybody."
+#: ../../standalone/drakgw_.c:294
+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 ""
-"Wenn ja, überprüfe Dateien/Verzeichnisse die für alle beschreibbar sind"
-
-#: ../../help.pm:1
-#, c-format
-msgid "authentication"
-msgstr "Authentifizierung"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now"
-msgstr "Jetzt sichern"
+#: ../../standalone/drakgw_.c:300
+msgid "(This) DHCP Server IP"
+msgstr "(Diese) DHCP-Server IP"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/_Datei"
+#: ../../standalone/drakgw_.c:301
+#, fuzzy
+msgid "The DNS Server IP"
+msgstr "(Diese) DHCP-Server IP"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Entferne Drucker von StarOffice/OpenOffice.org/GIMP"
+#: ../../standalone/drakgw_.c:302
+#, fuzzy
+msgid "The internal domain name"
+msgstr "Neuer Druckername"
-#: ../../services.pm:1
-#, 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."
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
msgstr ""
-"Startet Paketfilterung für Linux 2.2-Kernel, um Ihren Rechner \n"
-"durch eine Firewall vor Angriffen aus dem Netz zu schützen."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Editable"
-msgstr "änderbar"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
msgstr ""
-"Welchen DHCP-Client wollen Sie verwenden?(Voreingestellt ist \"dhcp-client\")"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr "Tamilisch (TSCII Layout)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
-msgstr "Mayotte (Frankreich)"
-
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
msgstr ""
-"Setzen der Größe des Kommandozeilenarchivs. Der Wert \"-1\" steht für "
-"unbegrenzt."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d KB\n"
-msgstr "%d KB\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Erstelle eine Auto-Installationsdiskette"
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for scanners ..."
-msgstr "Suche nach neuen Scannern ..."
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
+msgstr "Neu konfigurieren des Geräts und des DHCP-Servers"
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
-msgstr "Russland"
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
+msgstr "Das lokale Netzwerk endet nicht auf „.0“ - bereinige."
-#: ../../steps.pm:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid "Partitioning"
-msgstr "Partitionierung"
+msgid "Potential LAN address conflict found in current config of %s!\n"
+msgstr ""
+"Es liegt ein möglicher LAN-Adressen Konflikt in der Konfiguration\n"
+"von %s vor!\n"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
-msgstr "Netzwerkkarte(n) gefunden"
+#: ../../standalone/drakgw_.c:335
+msgid "Configuring..."
+msgstr "Konfigurieren ..."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
-msgstr "SysLog"
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "Skripte konfigurieren, Software installieren, Dienste starten ..."
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:372
#, c-format
-msgid "Can't create catalog!"
-msgstr "Ich kann den Katalog nicht erstellen!"
+msgid "Problems installing package %s"
+msgstr "Probleme beim Installieren von Paket %s"
-#: ../advertising/11-mnf.pl:1
-#, c-format
+#: ../../standalone/drakgw_.c:505
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."
+"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 ""
-"Komplettieren Sie Ihre Sicherheit mit dieser einfach zu benutzenden "
-"Software, welche hochperformante Komponenten kombiniert, wie eine Firewall, "
-"einen virtuellen privaten Netzwerk (VPN) Server und Client, ein Intrusion-"
-"Detection-System und einen Traffic-Manager."
+"Es wurde alles eingerichtet.\n"
+"Sie können Ihre Internetverbindung nun anderen Rechnern in Ihrem \n"
+"lokalen Netz mittels automatischer Netzwerk-Konfiguration (DHCP) \n"
+"teilen."
-# ../../diskdrak1
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-"Nicht genug freier Platz, damit ich selbst eine Partition anlegen kann."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "Root-Passwort setzen"
+"Die Einstellungen wurden bereits vorgenommen, sie sind nur nicht aktiviert."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable IP spoofing protection"
-msgstr "Aktiviere Schutz gegen IP Spoofing"
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
+msgstr "Die Einstellungen wurden bereits vorgenommen und sind aktiv."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
-msgstr ""
-"Es existiert kein freier Treiber für Ihre Soundkarte (%s), aber es gibt "
-"einen proprietären Treiber unter \"%s\"."
+#: ../../standalone/drakgw_.c:525
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Teilen der Internetverbindung wurde noch nicht konfiguriert."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group :"
-msgstr "Gruppe :"
+#: ../../standalone/drakgw_.c:531
+msgid "Internet connection sharing configuration"
+msgstr "Teilen der Internetverbindung - Konfiguration"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakgw_.c:539
#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
+msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"Durch Veränderung der Partitionsgröße von %s, gehen sämtliche Daten darauf "
-"verloren"
+"Willkommen zu DrakGW -\n"
+"das Werkzeug zum Teilen Ihrer Internetverbindung\n"
+"\n"
+"%s\n"
+"\n"
+"Wählen Sie „Konfigurieren“ wenn Sie den Assistenten starten wollen."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Konfiguration der Internetverbindung"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "group"
+msgstr "Arbeitsgruppe"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
+#: ../../standalone/drakperm_.c:36
+msgid "path"
msgstr ""
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "USB"
-msgstr "Linux Standard Base (LSB)"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "Sendersuche..."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
-msgstr "Kernel:"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_About..."
-msgstr "/_Über ..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
-msgstr "Bangladesh"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
-msgstr "Einstellung: "
-
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Dienste: %d aktiviert von %d registrierten"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "Startdiskette erstellen"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "Solomon-Inseln"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "permissions"
+msgstr "Partition %s"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Bitte testen Sie Ihre Maus"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "user"
+msgstr "Benutzer"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(Modul %s)"
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
-msgstr "Arbeitsgruppe"
+#: ../../standalone/drakperm_.c:44
+#, fuzzy
+msgid "delete"
+msgstr "Löschen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Rechnername/IP des Druckers"
+#: ../../standalone/drakperm_.c:45
+msgid "edit"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "down"
+#: ../../standalone/drakperm_.c:46
+#, fuzzy
+msgid "Down"
msgstr "Fertig"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Path or Module"
-msgstr "Rechnerpfad oder Modul"
+#: ../../standalone/drakperm_.c:47
+#, fuzzy
+msgid "add a rule"
+msgstr "Modul hinzufügen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
msgstr ""
-"Druckernamen sollten nur Buchstaben, Ziffern und den Unterstrich unterhalten"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Show current interface configuration"
-msgstr "Aktuelle Schnittstellenkonfiguration anzeigen"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add Printer"
-msgstr "Drucker hinzufügen"
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:51
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."
+"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 ""
-#: ../../help.pm:1
-#, c-format
-msgid "Development"
-msgstr "Entwicklung"
-
-#: ../../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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Done"
-msgstr "Fertig"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Web Server"
-msgstr "Webserver"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "Chile"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tKeine Systemdateien\n"
+#: ../../standalone/drakperm_.c:56
+#, fuzzy
+msgid "Add a new rule at the end"
+msgstr "Drucker hinzufügen"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
msgstr ""
-"Der Lexmark-Tintenstrahl-Druckertreiber unterstützt nur lokale Drucker, "
-"keine Drucker an anderen Rechnern im Netzwerk oder an Printserver-Boxen. "
-"Bitte schließen Sie den Drucker direkt an Ihren Rechner oder richten Sie ihn "
-"auf dem Rechner ein, an den er angeschlossen ist."
-#: ../../printer/printerdrake.pm:1
-#, 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!"
+#: ../../standalone/drakperm_.c:58
+#, fuzzy
+msgid "Up selected rule one level"
+msgstr "Markierung löschen"
+
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
msgstr ""
-"Ihr Multifunktionsgerät wurde automatisch auch zum Scannen eingerichtet. Sie "
-"können nun mit dem Befehl \"scanimage\" (\"scanimage -d hp:%s\" um den "
-"Scanner auszuwählen, falls Sie mehrere angeschlossen haben), eingegeben in "
-"der Kommandozeile, scannen. Wenn Sie eine grafisches Werkzeug verwenden "
-"wollen: \"xscanimage\" bzw. \"xsane\". Sie können auch den GIMP verwenden. "
-"Wählen Sie einfach im Menü \"Datei/Holen\" den entsprechenden Eintrag. Sie "
-"können sich auch mittels \"man scanimage\" bzw \"man sane-hp\" in der "
-"Kommandozeile weitere Informationen ausgeben lassen.\n"
-"\n"
-"Verwenden Sie für dieses Gerät nicht \"ScannerDrake\"!"
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "(%s wurde bereits hinzugefügt)"
+#: ../../standalone/drakperm_.c:60
+#, fuzzy
+msgid "Delete selected rule"
+msgstr "Markierte entfernen"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation in progress"
-msgstr "Installation des Bootloaders ..."
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
-msgstr ", mittels Kommando \"%s\""
+#: ../../standalone/drakperm_.c:231
+#, fuzzy
+msgid "Current user"
+msgstr "Benutzer akzeptieren"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt und Umschalttaste gleichzeitig"
+#: ../../standalone/drakperm_.c:236
+#, fuzzy
+msgid "Permissions"
+msgstr "Version: %s\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Users"
-msgstr "Benutzer hinzufügen/löschen"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Die Rechner/Netzwerk-IP-Adresse fehlt!"
+#: ../../standalone/drakperm_.c:238
+#, fuzzy
+msgid "Property"
+msgstr "Port"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
-msgstr "wöchentlich"
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
+msgstr ""
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "Einstellungen"
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "Die eingegebene Rechner/Netzwerk-Information ist nicht korrekt.\n"
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
+#: ../../standalone/drakperm_.c:296
+msgid ""
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr "Hier ist die komplette Liste aller Staaten"
+#: ../../standalone/drakperm_.c:297
+#, fuzzy
+msgid "Use owner id for execution"
+msgstr "Autoerkennung benutzen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Alternative Testseite (A4)"
+#: ../../standalone/drakperm_.c:298
+#, fuzzy
+msgid "Use group id for execution"
+msgstr "Autoerkennung benutzen"
-#: ../../install_steps_interactive.pm:1
-#, 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."
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
msgstr ""
-"Falls Sie alle aufgeführten CDs haben, wählen Sie \"OK\", \n"
-"falls Sie keine der aufgeführten CDs haben, wählen Sie \"Abbrechen\",\n"
-"falls nur einige der aufgeführten CDs fehlen, entfernen Sie die \n"
-"entsprechende Markierung und wählen Sie dann \"OK\"."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
-msgstr "Bitte warten"
+#: ../../standalone/drakperm_.c:304
+#, fuzzy
+msgid "Path selection"
+msgstr "Startschirmauswahl"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP"
+#: ../../standalone/drakperm_.c:350
+#, fuzzy
+msgid "user :"
+msgstr "Benutzer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup user files"
-msgstr "Benutzerdateien sichern"
+#: ../../standalone/drakperm_.c:352
+#, fuzzy
+msgid "group :"
+msgstr "Arbeitsgruppe"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "New"
-msgstr "Neu"
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Nicht Verbunden"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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"
+#: ../../standalone/draksound_.c:47
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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 ""
-"Jetzt kommen wir zum wichtigsten Punkt für die Sicherheit Ihres GNU/Linux-\n"
-"Systems: der Eingabe des \"root\" Passwortes. \"Root\" ist der System-\n"
-"administrator und ist als einziger berechtigt, Updates durchzuführen, "
-"Benutzer\n"
-"hinzuzufügen, die Systemkonfiguration zu ändern, usw. Kurz, \"root\" darf "
-"alles!\n"
-"Deshalb müssen Sie ein Passwort wählen, das schwierig zu erraten ist - "
-"DrakX\n"
-"wird meckern, wenn das Passwort zu leicht ist. Wie Sie sehen können, werden\n"
-"Sie nicht zur Eingabe eines Passwortes gezwungen, wir raten Ihnen aber,\n"
-"trotzdem eines einzugeben. Glauben Sie nicht, dass nur, weil Sie GNU/Linux\n"
-"geladen haben, Ihre anderen Betriebssysteme vor Fehlern sicher sind. »root« "
-"hat\n"
-"keine Beschränkungen. Er könnte beispielsweise unbeabsichtigterweise\n"
-" alle Daten auf allen Partitionen löschen, weil er unvorsichtigerweise auf\n"
-" die Partitionen selber zugegriffen hat!\n"
-"\n"
-"Das Passwort sollte eine Mischung aus alphanummerischen Zeichen sein und\n"
-"mindestens 8 Zeichen lang. Es sollte niemals irgendwo aufgeschrieben\n"
-"werden.\n"
"\n"
-"Machen Sie das Passwort aber nicht zu lang oder zu kompliziert: Sie sollten\n"
-"es sich ohne großen Aufwand merken können.\n"
-"\n"
-"Sie müssen das Passwort zweimal eingeben - ein Tippfehler beim ersten\n"
-"Versuch könnte sonst zu einem Problem werden, da Sie anschließend das\n"
-"\"falsche\" Passwort bei der Verbindung mit dem System eingeben müssten.\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+
+#: ../../standalone/draksound_.c:54
+msgid ""
"\n"
-"Wenn Sie wollen, dass der Zugang zu diesem Rechner über einen\n"
-"Authentifizierungsserver verwaltet wird, betätigen Sie die Schaltfläche\n"
-"\"%s\".\n"
"\n"
-"Falls in Ihrem Netzwerk LDAP, NIS oder PDC zur Authentifizierung verwendet\n"
-"wird, wählen Sie bitte \"%s\". Falls Sie nicht wissen, welches Protokoll "
-"Sie\n"
-"verwenden, fragen Sie Ihren Netzwerkadministrator.\n"
"\n"
-"Wenn Sie Probleme haben, sich Passwörter zu merken, wenn Ihr Computer\n"
-"\"niemals mit dem Internet verbunden ist, oder wenn Sie vollstes Vertrauen\n"
-"in alle Personen haben, die Ihren Rechner benutzen, wählen Sie \"%s\"."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:21
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."
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-"Nun ist es an der Zeit, die gewünschte Sicherheitsebene für Ihr System\n"
-"festzulegen. Als Faustregel sollte hier dienen: Je zugänglicher die\n"
-"Maschine ist und je kritischer die auf ihr gesicherten Daten sind, desto\n"
-"höher sollte die Sicherheitsebene sein. Andererseits geht die gewonnene\n"
-"Sicherheit zulasten der Benutzerfreundlichkeit und Einfachheit, mit der\n"
-"gewisse Befehle/Abläufe durchgeführt werden können.\n"
-"\n"
-"Sollten Sie sich an dieser Stelle nicht sicher sein, so behalten Sie die\n"
-"Standardeinstellung bei."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "Von Diskette laden"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Der folgende Drucker wurde automatisch erkannt."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Uses command %s"
-msgstr "benutzt Kommando \"%s\""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
-msgstr "Bootdiskette"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "Norwegen"
+#: ../../standalone/draksplash_.c:67
+#, fuzzy
+msgid "first step creation"
+msgstr "Boot-Disketten Erstellung"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for new scanners ..."
-msgstr "Suche nach neuen Scannern ..."
+#: ../../standalone/draksplash_.c:70
+#, fuzzy
+msgid "final resolution"
+msgstr "Auflösung"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Apache Web-Server"
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+#, fuzzy
+msgid "choose image file"
+msgstr "Wählen Sie eine Datei"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "Stepping der CPU (Submodell (Generations)-Nummer)"
+#: ../../standalone/draksplash_.c:72
+#, fuzzy
+msgid "Theme name"
+msgstr "Freigabename"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "select path to restore (instead of /)"
-msgstr "Pfad zum Wiederherstellen auswählen (anstatt /)"
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
+#, fuzzy
msgid "Configure bootsplash picture"
-msgstr "Bootsplash-Bild konfigurieren"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr "Georgien"
+msgstr "Ich kan keine Start-Vorschau erzeugen"
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "China"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
+#: ../../standalone/draksplash_.c:90
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
-"(Stellen Sie bitte sicher, dass alle Drucker angeschlossen und eingeschaltet "
-"sind).\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "Lese Daten der installierten Drucker ..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
-msgstr " Jetzt löschen"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "Server"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Legen Sie eine FAT-formatierte Diskette in Laufwerk %s ein."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
+#: ../../standalone/draksplash_.c:91
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
-"Ja bedeutet, dass der Prozessor einen arithmetischen Koprozessor besitzt."
-
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Einen Moment ... Ich richte die Konfiguration ein"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-#
-#. -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
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Willkommen zum Bootloader GRUB!"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
-msgstr "SCSI-Controller"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr "auf LDP-Server \"%s\", Drucker \"%s\""
-
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Wähle einen Display-Manager"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Zeroconf-Rechnername"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
msgstr ""
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Die IP-Adresse sollte etwa die Form \"192.168.1.42\" haben!"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Das CUPS Drucker System konfigurieren"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "Ecuador"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Add an item"
-msgstr "Eintrag hinzufügen"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Die Drucker dieses Rechners sind für andere Rechner nutzbar"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "China (Hong Kong)"
-msgstr "Hong Kong"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Ich kann die benötigte Abbild-Datei \"%s\" nicht finden."
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
-"Es wurde keine Soundkarte gefunden. Versuchen Sie \"harddrake\" nach der "
-"Installation."
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:95
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
-"Angabe eines ungültigen Ports: \"%s\".\n"
-"Das Format lautet: \"port/tcp\" oder \"port/udp\", \n"
-"wobei Port eine Zahl zwischen 1 und 65535 ist."
-#: ../../any.pm:1
-#, c-format
-msgid "Shell"
-msgstr "Shell"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome und Principe"
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
+msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
+msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
-msgstr "Ich kann mich unter \"%s\" nicht anmelden! Stimmt das Passwort?"
+#: ../../standalone/draksplash_.c:113
+#, fuzzy
+msgid "Preview"
+msgstr "Gerät"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "Aserbeidschan (Lateinisches Layout)"
+#: ../../standalone/draksplash_.c:115
+#, fuzzy
+msgid "Save theme"
+msgstr "Themen installieren"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package not installed"
-msgstr "Paket nicht installiert"
+#: ../../standalone/draksplash_.c:116
+msgid "Choose color"
+msgstr "Farbe einstellen"
-#: ../../lang.pm:1
-#, c-format
-msgid "American Samoa"
-msgstr "Samoa"
+#: ../../standalone/draksplash_.c:119
+#, fuzzy
+msgid "Display logo on Console"
+msgstr "Bildschirm-Thema für die Konsole"
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Become a MandrakeExpert"
-msgstr "Werden Sie ein \"MandrakeExpert\""
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, c-format
-msgid "Protocol"
-msgstr "Protokoll"
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Schriftarten auf Ihren Rechner kopieren"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
-msgstr "HardDrake Hilfe"
+#: ../../standalone/draksplash_.c:428
+msgid "ProgressBar color selection"
+msgstr "Farbauswahl für den Fortschrittsbalken"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
+#: ../../standalone/draksplash_.c:449
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Sie müssen einen Drucker wählen/ein Gerät eingeben!"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Mandrake Terminal-Server-Konfiguration"
+#: ../../standalone/draksplash_.c:458
+msgid "Generating preview ..."
+msgstr "Vorschau erzeugen ..."
-#: ../../standalone/drakbackup:1
-#, c-format
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Ich kan keine Start-Vorschau erzeugen"
+
+#: ../../standalone/drakxtv_.c:46
msgid ""
-"\n"
-" DrakBackup Report Details\n"
+"XawTV isn't installed!\n"
"\n"
"\n"
-msgstr ""
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
"\n"
-" DrakBackup-Report-Details\n"
"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
-msgstr "Alle Sicherungen wiederherstellen"
+# ../../standalone/drakxtv_.c:37ç
+#: ../../standalone/drakxtv_.c:63
+msgid "Canada (cable)"
+msgstr "Kanada (Kabel)"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
-msgstr " an Parallelport \\#%s"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
+msgstr "USA (terrestrisch)"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
-msgstr ""
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
+msgstr "USA (Kabel)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr "Auf \"Ja\" gestellt, werden offene Ports kontrolliert."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
+msgstr "USA (Kabel-hrc)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Das Löschen des Mediums kann einen Moment dauern."
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
+msgstr "China (terrestrisch)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "Sie können dieses Paket nicht auswählen/abwählen."
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
+msgstr "Japan (terrestrisch)"
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "Warnung"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
+msgstr "Japan (Kabel)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Sonstige Dateien:\n"
+#: ../../standalone/drakxtv_.c:65
+msgid "East Europe"
+msgstr "Osteuropa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name"
-msgstr "Name des Netzwerkrechners"
+#: ../../standalone/drakxtv_.c:65
+msgid "France [SECAM]"
+msgstr "Frankreich (SECAM)"
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr "Zugriff auf X-Programme"
+#: ../../standalone/drakxtv_.c:65
+msgid "Ireland"
+msgstr "Irland"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "Berechne die Größe der Windows-Partition"
+#: ../../standalone/drakxtv_.c:65
+msgid "West Europe"
+msgstr "Westeuropa"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Aktualisieren"
+#: ../../standalone/drakxtv_.c:66
+msgid "Australia"
+msgstr "Australien"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Italy"
-msgstr "Italien"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
+msgstr "Neuseeland"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
-msgstr "Cayman-Inseln"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
+msgstr "Südafrika"
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "Fehler beim Aushängen von %s: %s"
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
+msgstr "Argentinien"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "Druckername"
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
-msgstr "deaktivieren"
+#: ../../standalone/drakxtv_.c:102
+msgid ""
+"Please,\n"
+"type in your tv norm and country"
+msgstr "Bitte geben Sie Ihre Fernsehnorm und Region ein"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do it!"
-msgstr "Ausführen!"
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
+msgstr "Fernsehnorm:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
-msgstr "%s anwortet nicht"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
+msgstr "Region:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select model manually"
-msgstr "Modell manuell auswählen"
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
+msgstr "Sendersuche ..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Format"
-msgstr "Formatieren"
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
+msgstr "Sendersuche..."
-#: ../../network/adsl.pm:1
-#, 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'"
-msgstr ""
-"Der gebräuchlichste Weg mit ADSL eine Verbindung aufzubauen ist pppoe.\n"
-"Einige Verbindungen benutzen jedoch pptp, andere dhcp.\n"
-"Wenn Sie nicht wissen was Sie brauchen, wählen Sie \"pppoe verwenden\""
+#: ../../standalone/drakxtv_.c:120
+msgid "There was an error while scanning for TV channels"
+msgstr "Bei der Suche der TV-Kanäle trat ein Fehler auf"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
-msgstr "Verschiedene"
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
+msgstr "XawTV ist nicht installiert!"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
-msgstr "ZIP"
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
+msgstr "Bis bald!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
-msgstr "Linke Alt-Taste"
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Sie können nun (unter X-Windows) „xawtv“ starten.\n"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Load setting"
-msgstr "Einstellungen laden"
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
+msgstr "Keine TV-Karte gefunden!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:148
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"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-"\n"
+"You can visit our hardware database at:\n"
"\n"
-"PrinterDrake konnte Ihr Druckermodell %s nicht bestimmen. Bitte wählen Sie "
-"das richtige Modell aus der Liste aus."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Als Standarddrucker verwenden"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"\n"
-"Markieren Sie die Drucker, die sie übertragen wollen und betätigen Sie die "
-"Schaltfläche \"Übertragen\"."
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
-msgstr "Albanien"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "Litauen"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "Kompakt"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Gefundendenes Modell: %s %s"
+#: ../../standalone/harddrake2_.c:17
+msgid "Alternative drivers"
+msgstr "Alternative Treiber"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
-msgstr "MandrakeSoft hat die beste Software für Sie ausgesucht."
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
+msgstr "Liste alternativer Soundtreiber für diese Soundkarte."
-#: ../../any.pm:1
-#, c-format
-msgid "Local files"
-msgstr "Lokale Dateien"
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
+msgstr "Bus"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "eventuell"
+#: ../../standalone/harddrake2_.c:21
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+"Der physikalische Bus, an dem sich das Gerät befindet (etwa: PCI, USB, ...)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
-msgstr "Panama"
+#: ../../standalone/harddrake2_.c:22
+msgid "Channel"
+msgstr "Kanal"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Can't open %s!"
-msgstr "Kann %s auf %s nicht finden"
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
+msgstr "EIDE/SCSI Kanal"
-#: ../../Xconfig/various.pm:1
-#, 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?"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
msgstr ""
-"Ihre Grafikkarte scheint einen TV-Ausgang zu haben, der mittels Frame-Buffer "
-"angesprochen werden kann.\n"
-"\n"
-"Wenn Sie das wünschen, schließen Sie bitte Ihren Fernseher an die "
-"Grafikkarte an, bevor Sie den Rechner neu starten.\n"
-"Wählen Sie \"TV-Ausgang\" im Bootloader.\n"
-"\n"
-"Haben Sie einen solchen Ausgang und wollen Sie ihn verwenden?"
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:23
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"
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
msgstr ""
-"Sie sind dabei, einen Drucker einzurichten, der über ein Windows-"
-"Benutzerkonto mit Passwort druckt. Aufgrund eines Fehlers in der Architektur "
-"der Samba-Client-Software wird das Passwort im Klartext in die Kommandozeile "
-"der Samba-Komponente eingefügt, welche die zu druckenden Daten auf den "
-"Windows-Server überträgt. So ist es für jeden Benutzer möglich, das Passwort "
-"auf dem Bildschirm anzuzeigen, indem er Kommandos wie zum Beispiel \"ps "
-"auxwww\" ausführt.\n"
-"\n"
-"Wir empfehlen von einer der folgenden Alternativen Gebrauch zu machen (in "
-"allen Fällen muss sichergestellt werden dass nur Maschinen des lokalen "
-"Netzwerks auf den Windows-Server zugreifen können, zum Beispiel mit Hilfe "
-"einer Firewall):\n"
-"\n"
-"Drucken Sie über ein Benutzerkonto ohne Passwort auf Ihrem Windows-Server, "
-"zum Beispiel über das \"GAST\"-Benutzerkonto oder über ein speziell zum "
-"Drucken eingerichtetes Benutzerkonto. Entfernen Sie nicht den Passwortschutz "
-"von einem persönlichen Benutzerkonto oder vom Administratorkonto.\n"
-"\n"
-"Richten Sie Ihren Windows-Server so ein, dass der Drucker unter dem LPD-"
-"Protokoll erreichbar ist. Dann richten sie den Drucker auf dieser Maschine "
-"mit dem Verbindungstyp \"%s\" ein.\n"
-"\n"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65.000 Farben (16 Bit)"
+#: ../../standalone/harddrake2_.c:26
+msgid "Bus identification"
+msgstr "Bus"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/harddrake2_.c:27
msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-"\n"
-"- Auf Festplatte sichern unter: %s\n"
+"- PCI und USB Geräte: Eine Auflistung der Hersteller- und Geräte-ID, sowie "
+"der Herstellersub- und Gerätesub-ID von PCI und USB Geräten."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Entfernen von Schriftarten auf Ihrem Rechner"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
+msgstr "Standort auf den Bus"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../standalone/harddrake2_.c:30
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."
+"- 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 ""
-"Warnung, das Netzwerkgerät \"%s\" ist bereits konfiguriert.\n"
-"\n"
-"Wollen Sie eine automatische Neukonfiguration?\n"
-"\n"
-"Sie können auch eine manuelle Einrichtung vornehmen - dafür sollten Sie "
-"jedoch wissen, wie das funktioniert."
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "Grafikumgebung zur Startzeit"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
-msgstr " ADSL"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Nicht genügend Partitionen für RAID-Level %d\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "Disketten Formate, die durch das Laufwerk unterstützt werden"
+"- PCI Geräte: PCI-Slot, Gerät und Gerätetyp\n"
+"- EIDE Geräte: Master- oder Slave-Gerät\n"
+"- SCSI Geräte: Der SCSI-Bus und die Geräte-ID"
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "Kopieren der Firmware fehlgeschlagen, Datei %s nicht gefunden"
+#: ../../standalone/harddrake2_.c:33
+#, fuzzy
+msgid "Cache size"
+msgstr "Blockgröße"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "local config: true"
-msgstr "Nicht eingerichtet"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
msgstr ""
-"Die folgenden Drucker sind bereits eingerichtet. Führen Sie einen "
-"Doppelklick auf einen aus, um ihn zu ändern, als Standarddrucker zu "
-"verwenden oder Informationen über ihn zu erhalten."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connected"
-msgstr "Verbunden"
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
-msgstr "Mazedonien"
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "Mali"
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
-msgstr "Brücken und System-Controller"
+#: ../../standalone/harddrake2_.c:36
+#, fuzzy
+msgid "Cpuid level"
+msgstr "Sicherheitsebene"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "/Datei/_Speichern"
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "No details"
-msgstr "Keine Details"
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
+msgstr ""
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "sehr angenehm"
+#: ../../standalone/harddrake2_.c:37
+msgid ""
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Preview"
-msgstr "Vorschau"
+#: ../../standalone/harddrake2_.c:38
+#, fuzzy
+msgid "This field describes the device"
+msgstr "Dieses Feld beschreibt das Gerät"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Remote Control"
-msgstr "Fernsteuerung"
+#: ../../standalone/harddrake2_.c:39
+msgid "Old device file"
+msgstr "Alte Gerätedatei"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select media for backup..."
-msgstr "Bitte wählen Sie ein Sicherungsmedium..."
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
+msgstr "Alter statischer Name im „dev“ Paket"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
-msgstr "falsche Email"
+#: ../../standalone/harddrake2_.c:41
+msgid "New devfs device"
+msgstr "Neues DevFS Gerät"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86-Server: %s\n"
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr "Neuer dynamischer Name des DevFS"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "Erlaube Thin Clients"
+#: ../../standalone/harddrake2_.c:43
+msgid "Module"
+msgstr "Modul"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgien (Kyrillisches Layout)"
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr "Das Linux Kernmodul, das Unterstützung für dieses Gerät bereitstellt"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_Optionen"
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Your printer model"
-msgstr "Ihr Druckermodell"
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
+msgstr ""
-#: ../../any.pm:1
-#, 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)."
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
msgstr ""
-"\n"
-"\n"
-"(WARNUNG! Sie verwenden XFS für Ihre Root-Partition.\n"
-"Das Erstellen einer Startdiskette auf einem 1,44 MB Medium \n"
-"kann fehlschlagen, da XFS einen sehr großen Treiber benötigt)."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/harddrake2_.c:46
msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-"\n"
-"- Nach dem Backup die tar-Dateien von der Festplatte löschen.\n"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
msgstr ""
-"Kein CD oder DVD-Abbild gefunden, bitte kopieren Sie die "
-"Installationprogramme und rpm-Dateien."
-#: ../advertising/04-configuration.pl:1
-#, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "Mandrake's Mehrzweck-Konfigurationswerkzeug"
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
+msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Save"
-msgstr "Speichern"
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
-msgstr "Der Scanner \"%s\" wird NICHT unterstützt"
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr "Lädt die Treiber für Ihre USB-Geräte."
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Disk"
-msgstr "Festplatten"
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
+msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Druckeranschluss URI"
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
+msgstr ""
-#: ../advertising/01-thanks.pl:1
-#, c-format
+#: ../../standalone/harddrake2_.c:53
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."
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-"Der Erfolg von MandrakeSoft basiert auf dem Prinzip freier Software. Ihr "
-"neues Betriebssystem ist das Ergebnis einer weltweiten Zusammenarbeit der "
-"GNU/Linux-Gemeinde."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "Israel"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "Französisch-Guiana"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "Standard:LTR"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
-msgstr "Eine Kommandozeile muss eingegeben werden!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
-msgstr "Benutzer auswählen"
+#: ../../standalone/harddrake2_.c:55
+#, fuzzy
+msgid "Floppy format"
+msgstr "Formatieren"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Drucker-Einstellung übertragen"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Wollen Sie oben aufgeführte Drucker zum Drucken konfigurieren?\n"
+#: ../../standalone/harddrake2_.c:56
+#, fuzzy
+msgid "Level"
+msgstr "Level"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of suid root files"
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"For this to work for a W2K PDC, you will probably need to have the admin "
-"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
-"add and reboot the server.\n"
-"You will also need the username/password of a Domain Admin to join the "
-"machine to the Windows(TM) domain.\n"
-"If networking is not yet enabled, Drakx will attempt to join the domain "
-"after the network setup step.\n"
-"Should this setup fail for some reason and domain authentication is not "
-"working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows(tm) "
-"Domain, and Admin Username/Password, after system boot.\n"
-"The command 'wbinfo -t' will test whether your authentication secrets are "
-"good."
-msgstr ""
-"Damit dies mit einem Windows 2000-Domänen-Controller funktioniert, muss der "
-"Administrator folgendes ausführen: \"C:\\>net localgroup \"Pre-Windows 2000 "
-"Compatible Access\" everyone /add\". Anschließend muss der Server neu "
-"gestartet werden.\n"
-"Damit Sie Ihren Mandrake Linux-Rechner zur Windows(TM)-Domäne hinzufügen "
-"können, benötigen Sie noch Benutzername und Passwort eines Domänen-"
-"Administrators.\n"
-"Sollte das Netzwerk noch nicht aktiv sein, wird DrakX nach der "
-"Netzwerkkonfiguration versuchen, sich in die Domäne zu integrieren.\n"
-"Sollte dies schief gehen, und die Domänenauthentifizierung funktioniert "
-"nicht, verwenden Sie nach der Installation von Mandrake Linux folgenden "
-"Befehl: \"smbpasswd -j DOMÄNE -U BENUTZER%%PASSWORT\", wobei \"DOMÄNE\" die "
-"Windows(TM)-Domäne ist, \"BENUTZER\" und \"PASSWORT\" der Benutzername und "
-"das Passwort des Domänen-Administrators.\n"
-"Mit \"wbinfo -t\" können Sie anschließend testen, ob die Anmeldung "
-"erfolgreich war."
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
+msgstr "Medienklasse"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Port %s)"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
+msgstr "Hardwareklasse"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Netzwerkverbindung zur Datensicherung verwenden"
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+msgid "Model"
+msgstr "Modell"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Kernel version"
-msgstr "Kernelversion"
+#: ../../standalone/harddrake2_.c:58
+msgid "hard disk model"
+msgstr "Festplattenmodell"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
msgstr ""
-"Nun ist es Zeit sich zu entscheiden, welche Programme Sie auf Ihrem Rechner\n"
-"installieren wollen. Es gibt tausende von Paketen für Mandrake Linux, und\n"
-"Sie müssen sie nicht alle auswendig kennen.\n"
-"\n"
-"Die Pakete sind nach ihrer Verwendung in Gruppen eingeteilt. Mandrake\n"
-"Linux bietet 4 vordefinierte Installationsmöglichkeiten. Denken Sie dabei\n"
-"bildhaft an Container die verschiedene Pakete enthalten. Sie können die\n"
-"Programme der verschiedenen Gruppen auch mixen, so kann eine\n"
-"\"Arbeitsplatz\"-Installation auch Programme aus der Gruppe \"Entwicklung\"\n"
-"haben.\n"
-"\n"
-" * \"%s\": Falls Ihr Rechner als Arbeitsplatzrechner verwendet werden soll,\n"
-"markieren Sie eine oder mehrere Gruppen.\n"
-"\n"
-" * \"%s\": Falls Sie mit Ihrem Rechner programmieren wollen, sollten Sie\n"
-"diese Gruppe markieren.\n"
-"\n"
-" * \"%s\": Wenn Ihre Maschine ein Server werden soll, können Sie hier die\n"
-"wichtigsten Dienste auswählen, die auf Ihren Rechner installiert werden\n"
-"sollen.\n"
-"\n"
-" * \"%s\": Wählen Sie hier Ihre bevorzugte grafische Arbeitsfläche. Wenn\n"
-"Sie eine grafische Umgebung verwenden wollen, so müssen Sie hier\n"
-"zumindest eine Gruppe auswählen.\n"
-"\n"
-"Wenn Sie die Maus über eine Gruppe bewegen, erhalten Sie einen kurzen\n"
-"erklärenden Text über die Gruppe. Falls Sie bei einer Installation alle\n"
-"Markierungen entfernen, erscheint ein Dialog, in dem Sie zwischen\n"
-"verschiedenen Minimalinstallationen wählen können:\n"
-"\n"
-" * \"%s\" Installiert ein Minimum an Paketen um eine grafische Oberfläche\n"
-"zu starten.\n"
-"\n"
-" * \"%s\" Installiert das Basissystem zuzüglich grundlegender Werkzeuge\n"
-"inklusive deren Dokumentation. Dies ist die sinnvollste Wahl für eine\n"
-"Serverinstallation.\n"
-"\n"
-" * \"%s\" Sie erhalten eine komplett \"nackte\" 65MB große\n"
-"GNU/Linux-Distribution (speziell auch ohne urpmi!). Es versteht sich von\n"
-"selbst, dass das nur eine Kommandozeileninstallation sein kann.\n"
-"\n"
-"Auf \"%s\" zu klicken macht nur Sinn, wenn Sie die Pakete genau kennen\n"
-"oder wenn Sie volle Kontrolle darüber haben wollen, was installiert werden\n"
-"soll.\n"
-"\n"
-"Haben Sie die Installation im \"%s\" Modus gestartet, können Sie die\n"
-"Markierungen aller Gruppen entfernen, um die Installation neuer Pakete\n"
-" zu vermeiden. Hierdurch werden nur bereits installierte Pakete "
-"aktualisiert\n"
-"oder repariert."
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "Benutzer akzeptieren"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Model name"
+msgstr " Modulname "
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
-msgstr "Server"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Official vendor name of the cpu"
+msgstr "Herstellername des Geräts"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
-msgstr "Linke Umschalt-Taste"
+#: ../../standalone/harddrake2_.c:61
+msgid "Number of buttons"
+msgstr "Anzahl Tasten"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " local network"
-msgstr "Lokale Netzwerk"
+#: ../../standalone/harddrake2_.c:62
+#, fuzzy
+msgid "Name"
+msgstr "Name: "
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "Schlechte Wahl, bitte versuchen Sie es noch einmal\n"
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "network printer port"
+msgstr ", Netzwerkdrucker „%s“, Port %s"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
-msgstr "Syslog berichtet auf Konsole 12"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
+msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search new servers"
-msgstr "Neue Server suchen"
+#: ../../standalone/harddrake2_.c:64
+#, fuzzy
+msgid "the number of the processor"
+msgstr "Herstellername des Geräts"
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
-msgstr "Heard Island und McDonald Island"
+#: ../../standalone/harddrake2_.c:65
+#, fuzzy
+msgid "Model stepping"
+msgstr "Einstellungen laden"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
-msgstr "Kein alternativer Treiber"
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "In den Experten-Modus wechseln"
+#: ../../standalone/harddrake2_.c:66
+#, fuzzy
+msgid "The type of bus on which the mouse is connected"
+msgstr "Bitte wählen Sie den seriellen Anschluss, an dem Ihre Maus hängt."
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
-msgstr "(an diesem Rechner)"
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
+msgstr "Herstellername des Geräts"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr ""
-"Die IP-Adresse des Gateways sollte etwa die Form \"192.168.1.42\" haben!"
+#: ../../standalone/harddrake2_.c:68
+#, fuzzy
+msgid "the vendor name of the processor"
+msgstr "Herstellername des Geräts"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
-msgstr ""
-"\"%s\" basiertes Winmodem erkannt. Wollen Sie die notwendige Software "
-"installieren?"
+#: ../../standalone/harddrake2_.c:82
+msgid "/_Quit"
+msgstr "/_Beenden"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Suche nach bereits installierten Paketen ..."
+#: ../../standalone/harddrake2_.c:83
+#, fuzzy
+msgid "/Autodetect _printers"
+msgstr "Selbst gefunden"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Differentielles Backup verwenden"
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
+msgstr "/_Optionen"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Driver"
-msgstr "Treiber"
+#: ../../standalone/harddrake2_.c:85
+#, fuzzy
+msgid "/Autodetect _modems"
+msgstr "Selbst gefunden"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf versucht beim Systemstart einige Verwaltungsaufgaben \n"
-"auszuführen."
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
+msgstr "/_Hilfe"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVD-R device"
-msgstr "DVDR Gerät"
+#: ../../standalone/harddrake2_.c:89
+msgid "/_Help..."
+msgstr "/_Hilfe ..."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Drucker an LPD-Server im Netzwerk"
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
+msgstr "HardDrake Hilfe"
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/harddrake2_.c:93
msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
+"Description of the fields:\n"
"\n"
-"-You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
msgstr ""
-"Bevor Sie irgendwelche Schriftarten installieren, müssen Sie das Recht "
-"haben, diese zu verwenden und zu installieren.\n"
+"Beschreibung der Felder:\n"
"\n"
-"- Sie können die Schriftarten auf normalem Weg einbinden. In seltenen "
-"Fällenkönnen defekte Schriftarten den X-Server lahmlegen."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:96
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."
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
msgstr ""
-"Yaboot ist ein Bootloader für NewWorld MacIntosh Rechner. \n"
-"Er kann sowohl GNU/Linux als auch MacOS oder MacOS X starten, falls diese\n"
-"auf Ihrem Rechner installiert sind. Normalerweise werden diese "
-"Betriebssysteme\n"
-"alle automatisch gefunden und eingebunden. Sollte dies nicht der Fall sein,\n"
-"können Sie diese hier manuell hinzufügen. Stellen Sie jedoch sicher, die\n"
-"richtigen Parameter zu verwenden.\n"
-"\n"
-"Die Hauptparameter von yaboot sind:\n"
-"\n"
-" * Init-Nachricht: Ein Text, der vor der Eingabeaufforderung angezeigt "
-"wird.\n"
-"\n"
-" * Boot-Gerät: Hiermit wird angegeben, wohin die Informationen zum Starten "
-"Ihres\n"
-"GNU/Linux-Systems geschrieben werden sollen.\n"
-"\n"
-" * Open-Firmware-Verzögerung: Im Gegensatz zu LILO, stehen mit yaboot\n"
-" zwei Verzögerungen zur Verfügung. Die erste Verzögerung wird in Sekunden\n"
-"angegeben und dient zur Auswahl zwischen CD, OF Boot, MacOS oder Linux.\n"
-"\n"
-" * Kernel-Boot-Verzögerung: Diese Verzögerung entspricht der LILO Start-\n"
-"Verzögerung. Sie haben nach der Auswahl von GNU/Linux diese Verzögerung\n"
-"(in 0,1 Sekunden Schritten) Zeit, bis der Standard-Kernel geladen wird.\n"
-"\n"
-" * Start von CD erlauben?: Markieren dieses Punktes erlaubt es Ihnen an der\n"
-"ersten Eingabeaufforderung \"C\" für den Start von CD zu wählen.\n"
-"\n"
-" * Start von OF erlauben?: Markieren dieses Punktes erlaubt es Ihnen an der\n"
-"ersten Eingabeaufforderung \"N\" für den Open Firmware Start zu wählen.\n"
-"\n"
-" * Standard-BS: Hiermit stellen Sie ein, welches Betriebssystem nach Ablauf\n"
-"der Open-Firmware-Verzögerung automatisch gestartet werden soll."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
-msgstr "Mittwoch"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "Deutschland"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
-msgstr "Österreich"
+#: ../../standalone/harddrake2_.c:96
+#, fuzzy
+msgid "Select a device !"
+msgstr "Wählen Sie einen Scanner"
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "Keine Maus"
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
+msgstr "/_Fehler Melden"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "Bitte wählen Sie die Größe des CD/DVD-Mediums (MB)"
+#: ../../standalone/harddrake2_.c:102
+msgid "/_About..."
+msgstr "/_Über ..."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check permissions of files in the users' home"
-msgstr ""
-"Überprüfe Dateiberechtigungen in den persönlichen Verzeichnissen (/home)"
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
+msgstr "Über HardDrake"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
+#: ../../standalone/harddrake2_.c:105
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
msgstr ""
-"Starten Sie \"sndconfig\" nach der Installation, um Ihre Soundkarte "
-"einzurichten."
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "Baum verkleinern"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Auto-Installationskonfigurator"
+"HardDrake - das Mandrake Linux Hardware-Konfigurationswerkzeug.\n"
+"Version:"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "Netzwerk konfigurieren"
+#: ../../standalone/harddrake2_.c:106
+msgid "Author:"
+msgstr "Autor:"
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "Wo soll der Bootloader installiert werden?"
+#: ../../standalone/harddrake2_.c:113
+msgid "Detection in progress"
+msgstr "Erkennung läuft"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Wählen Sie Ihre bevorzugte Sprache für den Installationsvorgang und dem\n"
-"System im Allgemeinen. Wählen Sie zuerst die Region, in der Sie sich "
-"befinden,\n"
-"anschließend die Sprache, die Sie sprechen.\n"
-"\n"
-"Durch Betätigen der Schaltfläche \"%s\" erhalten Sie die Möglichkeit, "
-"weitere\n"
-"Sprachen auf Ihrem Rechner zu installieren, um diese später verwenden zu\n"
-"können. Wollen Sie etwa Spaniern muttersprachlichen Zugang zu Ihrem System\n"
-"erlauben, wählen Sie Deutsch als Hauptsprache in der Liste und im\n"
-"Fortgeschrittenen-Bereich \"%s\".\n"
-"\n"
-"Sie sind nicht auf eine weitere Sprache begrenzt. Sie können so viele\n"
-"auswählen, wie Sie wollen, ja sogar alle, indem Sie die Schaltfläche \"%s\"\n"
-"verwenden. Das Auswählen einer Sprache beeinflusst die installierten\n"
-"Übersetzungen der Programme, Schriften, Rechtschreibkorrekturen, etc. Durch\n"
-"Auswahl des Menüpunktes \"%s\" wird das System als Standardkodierung UTF-8\n"
-"verwenden. Es sei angemerkt, dass diese Funktionalität momentan noch als\n"
-"experimentell eingestuft ist. Sollten Sie jedoch verschiedene Sprachen\n"
-"auswählen, die unterschiedliche Kodierungen notwendig machen würden, wird\n"
-"die Unicode-Unterstützung auf jeden Fall installiert.\n"
-"\n"
-"Um zwischen den verschiedenen auf Ihrem System installierten Sprachen\n"
-"umzuschalten, geben Sie als \"root\" den Befehl \"/usr/sbin/localedrake\" "
-"ein.\n"
-"Es gilt dann für alle Benutzer. Starten Sie den Befehl als normaler "
-"Benutzer,\n"
-"ändert sich nur dessen Spracheinstellung."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr "Der %s wird von dieser Mandrake Linux-Version NICHT unterstützt."
+#: ../../standalone/harddrake2_.c:119
+msgid "Harddrake2 version "
+msgstr "HardDrake Version "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "tape"
-msgstr "Bandlaufwerk"
+#: ../../standalone/harddrake2_.c:126
+msgid "Detected hardware"
+msgstr "Gefundene Hardware"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr "DHCP-Client"
+#: ../../standalone/harddrake2_.c:129
+msgid "Information"
+msgstr "Informationen"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Zeige Benutzer in Anmeldungsmanager (kdm und gdm)"
+#: ../../standalone/harddrake2_.c:131
+msgid "Configure module"
+msgstr "Modul konfigurieren"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Maus (Seriell, alter C7 Typ)"
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
+msgstr "Konfigurationswerkzeug starten"
-#: ../../partition_table.pm:1
+#: ../../standalone/harddrake2_.c:143
#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Restaurieren aus der Datei %s schlug fehl: %s"
+msgid "Running \"%s\" ..."
+msgstr "„%s“ ausführen ..."
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:159
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"
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-"Ich kann die Partitionstabelle von \"%s\" nicht lesen. Sie scheint \n"
-"fehlerhaft zu sein :-(\n"
-"Ich kann fortfahren, indem ich die fehlerhaften Partitionen lösche \n"
-"(dabei gehen ALLE darauf vorhandenen DATEN VERLOREN!). Alternativ können \n"
-"Sie mir jedoch auch verbieten, die Partitionstabelle zu verändern.\n"
-"(Folgender Fehler trat auf: \"%s\").\n"
-"\n"
-"Sind Sie einverstanden, dass ich die problematischen Partitionen lösche?\n"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Find Package"
-msgstr "%d Pakete"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Sind Sie sicher, dass Sie mit diesem Rechner drucken wollen?\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "New devfs device"
-msgstr "Neues DevFS-Gerät"
-
-# spawn=laichen?????????????
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "ERROR: Cannot spawn %s."
-msgstr "FEHLER: Kann auf %s nicht zugreifen."
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Boot Style Configuration"
-msgstr "Konfiguration der Boot-Einstellungen"
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
+msgstr "Primär"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Automatische Zeit-Synchronisation (durch NTP)"
+#: ../../standalone/harddrake2_.c:231
+msgid "secondary"
+msgstr "Sekundär"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "Backup-Dateien nicht unter %s gefunden."
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect modems"
+msgstr "Selbst gefunden"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "Armenien (Phonetisch)"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect printers"
+msgstr "Selbst gefunden"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Card model:"
-msgstr "Kartentyp:"
+#: ../../standalone/harddrake2_.c:261
+#, fuzzy
+msgid "/Options"
+msgstr "/_Optionen"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
-msgstr "Thin Client"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "Bitte wählen Sie Ihren Tastaturtyp."
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
-msgstr "Danke, dass Sie sich für Mandrake Linux 92 entschieden haben"
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr "Wollen Sie, dass die Rücktaste auf den Konsolen Entfernen sendet?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Start Server"
-msgstr "Server starten"
+#: ../../standalone/livedrake_.c:18
+msgid "Change Cd-Rom"
+msgstr "CD-ROM wechseln"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
+#: ../../standalone/livedrake_.c:19
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"Bitte legen Sie die Installations-CD-ROM in Ihr Laufwerk und drücken \n"
+"Sie dann „OK“. Falls Sie sie nicht vorliegen haben, drücken Sie \n"
+"„Abbruch“."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "All remote machines"
-msgstr "Alle entfernten Maschinen"
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Ich bin nicht in der Lage, eine Live Aktualisierung durchzuführen!!!\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Install themes"
-msgstr "Designs installieren"
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
+msgstr ""
+"Die Einstellungen wurden vorgenommen, werden jedoch erst nach einer "
+"Neuanmeldung wirksam"
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
-msgstr "Spanisch"
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
+msgstr "LogDrake"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "Bereite Installation vor"
+#: ../../standalone/logdrake_.c:68
+msgid "Show only for the selected day"
+msgstr "Nur für diesen Tag zeigen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Markierte Rechner/Netzwerke bearbeiten"
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
+msgstr "/Datei/_Neu"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add User -->"
-msgstr "Benutzer hinzufügen -->"
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
+msgstr "<control>N"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "Nauru"
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
+msgstr "/Datei/_Öffnen"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Installation von TrueType-Schriftarten"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
+msgstr "<control>O"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Drucker automatisch erkennen, die im lokalen Netzwerk hängen"
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr "/Datei/_Speichern"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN configuration"
-msgstr "LAN-Konfiguration"
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
+msgstr "<control>S"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "hard disk model"
-msgstr "Festplattenmodell"
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
+msgstr "/Datei/Speichern _unter ..."
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr "/Datei/-"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr ""
-"Sie können kein logisches LVM-Medium für den Einhängepunkt %s verwenden."
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
+msgstr "/Optionen/Test"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "Windows-Schriftarten verwenden"
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
+msgstr "/Hilfe/_Über ..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Maus-Systeme"
+#: ../../standalone/logdrake_.c:145
+msgid "User"
+msgstr "Benutzer"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
+#: ../../standalone/logdrake_.c:146
+msgid "Messages"
+msgstr "Nachrichten"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "Iran"
+#: ../../standalone/logdrake_.c:147
+msgid "Syslog"
+msgstr "SysLog"
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
-msgstr "Kroatien"
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
+msgstr "Erklärung der Mandrake Programme"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "Gateway:"
+#: ../../standalone/logdrake_.c:151
+msgid "search"
+msgstr "Suche starten"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add server"
-msgstr "Server hinzufügen"
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
+msgstr "Ihre Logbücher betrachen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name"
-msgstr "Name des entfernten Druckers"
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
+msgstr "Einstellungen"
-#: ../advertising/10-security.pl:1
-#, 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."
-msgstr ""
-"Mandrake Linux hat exklusive Werkzeuge geschaffen, um die sicherste Linux-"
-"Version hervorzubringen: Draksec, ein Systemsicherheits-Management-Werkzeug, "
-"und eine starke Firewall , die beide zusammenarbeiten um die Angriffe von "
-"außen zu minimieren."
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
+msgstr "Übereinstimmung mit"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "Gerät: "
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
+msgstr "keine Übereinstimmung mit"
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Printerdrake"
-msgstr "PrinterDrake"
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
+msgstr "Dateien wählen"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "Lizenzvereinbarung"
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
+msgstr "Kalender"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "System Options"
-msgstr "Systemoptionen"
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
+msgstr "Inhalt der Logbücher"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Please choose the desired security level"
-msgstr "Wählen Sie die gewünschte Sicherheitsebene"
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+msgid "Mail alert"
+msgstr "E-Mail Benachrichtigung"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/logdrake_.c:245
#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr ""
-"Der Computer ist bereits in der Liste, er kann nicht erneut hinzugefügt "
-"werden.\n"
+msgid "please wait, parsing file: %s"
+msgstr "Einen Moment, ich durchsuche: %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", USB printer"
-msgstr ", USB-Drucker"
+#: ../../standalone/logdrake_.c:392
+msgid "Mail alert configuration"
+msgstr "Mail Benachrichtigungskonfiguration"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/logdrake_.c:393
msgid ""
-"Unable to properly close mkbootdisk:\n"
+"Welcome to the mail configuration utility.\n"
"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Ich kann \"mkbootdisk\" nicht richtig beenden: \n"
+"Herzlich willkommen zum E-Mail Benachrichtigungsassistenten.\n"
"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-"Inkrementelle Sicherung speichert nur Dateien, die sich geändert haben oder "
-"seit der letzten Sicherung neu hinzugekommen sind."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Wählen Sie die Programme, die die Schriftarten verwenden sollen:"
+"Hier können Sie Ihr Benachrichtigungssystem einrichten.\n"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "X konfigurieren"
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
+msgstr "Apache Web-Server"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "hd"
-msgstr "hd"
+#: ../../standalone/logdrake_.c:401
+msgid "Domain Name Resolver"
+msgstr "DNS"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Türkei (traditionelles \"F\" Modell)"
+#: ../../standalone/logdrake_.c:402
+msgid "Ftp Server"
+msgstr "FTP Server"
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "Herzlichen Glückwunsch!"
+#: ../../standalone/logdrake_.c:403
+msgid "Postfix Mail Server"
+msgstr "Postfix E-Mail-Server"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Benutzer ID zur Ausführung benutzen"
+#: ../../standalone/logdrake_.c:404
+msgid "Samba Server"
+msgstr "Samba Server"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow remote root login"
-msgstr "Remote-Root-Login erlauben"
+#: ../../standalone/logdrake_.c:405
+msgid "SSH Server"
+msgstr "SSH Server"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Down"
-msgstr "Runter"
+#: ../../standalone/logdrake_.c:406
+msgid "Webmin Service"
+msgstr "Webmin"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Rohdaten-Drucker (kein Treiber)"
+#: ../../standalone/logdrake_.c:407
+msgid "Xinetd Service"
+msgstr "xinetd"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Install rpm"
-msgstr "RPM installieren"
+#: ../../standalone/logdrake_.c:414
+msgid "service setting"
+msgstr "Dienste einstellen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/logdrake_.c:415
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"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
-"Sie können sowohl den Befehl \"%s <datei>\" verwenden, wenn Sie in einer "
-"Konsole die Datei \"<datei>\" drucken wollen, als auch ein grafisches "
-"Hilfsprogramm verwenden: \"xpp <datei>\" oder \"kprinter <datei>\". Die "
-"grafischen Hilfsprogramme erlauben Ihnen auf einfache Weise den richtigen "
-"Drucker zu wählen und die notwendigen Drucker-Parameter anzugeben.\n"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "Verbleibende Zeit "
+"Sie weden benachrtichtigt, falls einer der gewählten Dienste nichtmehr läuft."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "Großbritannien"
+#: ../../standalone/logdrake_.c:428
+msgid "load setting"
+msgstr "Einstellungen laden"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "Aushängen"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
+msgstr "Sie erhalten eine Nachricht, wen die Load über diesen Wert steigt"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
+#: ../../standalone/logdrake_.c:444
+msgid "alert configuration"
+msgstr "Benachrichtigungskonfiguration"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "Schriftarten entfernen"
+#: ../../standalone/logdrake_.c:445
+msgid "Please enter your email address below "
+msgstr "Bitte geben Sie Ihre E-Mail-Adresse ein"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Bitte warten, Sicherheitsebene wird eingestellt..."
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
+msgstr "Speichern unter..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "Deutschland (ohne Akzenttasten)"
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "Bitte wählen Sie Ihren Maustyp."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tSendw Email an %s\n"
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
+msgstr "Die dritte Maustaste emulieren?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
-msgstr "Übertrage \"%s\" ..."
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Netzwerk konfigurieren"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32.000 Farben (15 Bit)"
+#: ../../standalone/net_monitor_.c:96
+#, fuzzy
+msgid "Profile "
+msgstr "Profil: "
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
msgstr ""
-"Sie können die Dateien mittels Samba oder NFS anbieten. Welche Variante "
-"wollen Sie?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "Gambia"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Mandrake Kontrollzentrum"
+#: ../../standalone/net_monitor_.c:103
+#, fuzzy
+msgid "Sending Speed:"
+msgstr "Dateien übertragen ..."
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Reboot"
-msgstr "Neustart"
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device"
-msgstr "Multifunktionsgerät"
+#: ../../standalone/net_monitor_.c:106
+#, fuzzy
+msgid "Connection Time: "
+msgstr "Verbindungstyp: "
-#: ../../network/drakfirewall.pm:1
-#, 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."
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
msgstr ""
-"Sie können verschiedene Ports angeben. \n"
-"Korrekte Beispiele sind: 139/tcp 139/udp.\n"
-"Für weitere Informationen schauen Sie in \"/etc/services\"."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Band \n"
+#: ../../standalone/net_monitor_.c:147
+#, fuzzy
+msgid "Wait please, testing your connection..."
+msgstr "Ich teste gerade Ihre Verbindung..."
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
-msgstr ""
-"Es ist kein Browser auf Ihrem System installiert. Bitte installieren Sie "
-"einen, wenn Sie das Hilfe-System durchsuchen wollen."
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Internetverbindung"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remember this password"
-msgstr "Passwort behalten"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Internetverbindung"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Die Internetverbindungsfreigabe ist nun eingeschaltet."
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t- Netzwerk per SSH.\n"
+#: ../../standalone/net_monitor_.c:225
+#, fuzzy
+msgid "Connection complete."
+msgstr "Verbindungsgeschwindigkeit"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:226
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."
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-"Falls der gewünschte Drucker bereits gefunden wurde, wählen Sie ihn einfach "
-"aus der Liste unten aus und geben Sie - falls notwendig - Name, Passwort und/"
-"oder Domäne an."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " cable"
-msgstr " Kabel"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
-msgstr "Den freien Platz der Windows-Partition verwenden"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s an %s gefunden. Wollen Sie eine automatische Einrichtung?"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86-Treiber: %s\n"
+#: ../../standalone/net_monitor_.c:330
+#, fuzzy
+msgid "Color configuration"
+msgstr "Benachrichtigungskonfiguration"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
msgstr ""
-"IP-Adresse bzw. Netzwerk sind bereits in der Liste, \n"
-"Sie können sie nicht erneut hinzufügen.\n"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Zu installierende Pakete auswählen"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
-msgstr "Papua-Neuguinea"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Multifunktionsgerät am Parallelport"
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
+msgstr ""
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Busy files"
-msgstr "Systemdateien sichern"
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "Serbien (Kyrillisches Layout)"
+#: ../../standalone/net_monitor_.c:400
+#, fuzzy
+msgid "Local measure"
+msgstr "Lokale Dateien"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Bitte geben Sie das Verzeichnis an, in dem die Sicherungskopien liegen"
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:453
+#, fuzzy
msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
+"Warning, another internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Möchten Sie diesen Drucker (\"%s\")\n"
-"als Standarddrucker verwenden?"
+"WARNUNG: Es wurde bereits eine Internetverbindung gefunden. Vielleicht nutzt "
+"diese ihr Netzwerk."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
-msgstr ""
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "Verbinden"
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "Startdiskette wird erstellt..."
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Disconnect %s"
+msgstr "Verbindung trennen"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Bitte warten, Test Ihrer Verbindung..."
+#: ../../standalone/printerdrake_.c:47
+msgid "Reading printer data ..."
+msgstr "Lesen der Druckertreiber-Datenbank ..."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "Netzwerkverbindung trennen"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Detecting devices ..."
+msgstr "Geräteerkennung..."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "Login ID"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
+msgstr "Test der Anschlüsse"
-#: ../../services.pm:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS ist ein geläufiges Protokoll in TCP/IP-Netzwerken um Dateien \n"
-"durch verschiedene Rechner gemeinsam nutzen zu können. \n"
-"Der Dienst nfslock stellt Ihnen hierfür Sperr-Mechanismen zur \n"
-"Verfügung, damit eine Datei nicht durch mehrere Personen \n"
-"gleichzeitig verändert werden kann."
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr "Der %s wird nicht von dieser Version von Madrake Linux unterstüzt."
-#: ../../standalone/drakconnect:1
+#: ../../standalone/scannerdrake_.c:54
#, c-format
-msgid "DHCP Client"
-msgstr "DHCP-Client"
+msgid "%s found on %s, configure it?"
+msgstr "%s an %s gefunden. Wolen Sie ihn einrichten?"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/scannerdrake_.c:57
#, 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 "%s is not in the scanner database, configure it manually?"
msgstr ""
-"HardDrake - das Mandrake Linux Hardware-Konfigurationswerkzeug.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Autor:</span> Thierry Vignaud &lt;"
-"tvignaud@mandrakesoft.com&gt;\n"
-"\n"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
-msgstr "Verwerfen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Drucken/Scannen mit \"%s\""
+#: ../../standalone/scannerdrake_.c:63
+msgid "Select a scanner"
+msgstr "Wählen Sie einen Scanner"
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/scannerdrake_.c:91
#, c-format
-msgid "omit raid modules"
-msgstr " RAID-Module weglassen"
+msgid "This %s scanner is unsupported"
+msgstr "Dieser %s Scanner wird nicht unterstützt"
-#: ../../services.pm:1
+#: ../../standalone/scannerdrake_.c:105
#, 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)."
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
msgstr ""
-"Der Dienst lpd ist der Drucker-Server Ihres Rechners. Wenn Sie \n"
-"diesen Dienst abschalten werden Druckaufträge nicht mehr abgearbeitet.\n"
-"Hauptaufgabe von lpd ist es, Druckaufträge an den jeweiligen \n"
-"zuständigen Drucker (dieser kann auch einen anderen Rechner hängen) \n"
-"zu senden."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
-msgstr "Irisch"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sunday"
-msgstr "Sonntag"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Konfiguration der Internetverbindung"
-
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
-msgstr "durch Kommas getrennte Nummern"
+#: ../../standalone/scannerdrake_.c:107
+msgid "choose device"
+msgstr "Gerät wählen"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/scannerdrake_.c:113
#, 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\")"
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
msgstr ""
-"Wenn Sie ein Gerät auswählen, werden im rechten Rahmen die Geräte-"
-"Informationen angezeigt (\"Informationen\")."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Markierte Regel eine Ebene höher verschieben"
+"Dieser %s Scanner muss von PrinterDrake konfiguriert werden.\n"
+"Sie können Pronterdrake im Mandrake-Kontrollzentrum im Hardware-Bereich "
+"starten."
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:118
#, c-format
msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
msgstr ""
-"Der folgende Scanner\n"
-"\n"
-"%s\n"
-"ist direkt an Ihr System angeschlossen.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Möchten Sie den Drucker \"%s\" wirklich entfernen?"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "I can't find any room for installing"
-msgstr "Ich finde nicht genug Platz für die Installation"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "Default printer"
-msgstr "Standarddrucker"
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Einige Geräte in der Klasse %s wurden entfernt:\n"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+#: ../../standalone/service_harddrake_.c:48
+#, fuzzy
+msgid "Some devices were added:\n"
msgstr ""
-"Sie haben verschiedene Varianten eingerichtet, sich mit dem\n"
-"Internet zu verbinden. Bitte wählen Sie eine aus.\n"
"\n"
+"Einige Geräte in der Klasse %s wurden hinzugefügt:\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Modify RAID"
-msgstr "RAID modifizieren"
-
-#: ../../network/isdn.pm:1
-#, 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."
-msgstr ""
-"Ich habe eine PCI-ISDN-Karte gefunden, kenne sie jedoch nicht. Bitte helfen "
-"Sie mir, indem Sie im nächsten Menü eine auswählen."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr "Benutzer hinzufügen"
+#: ../../standalone/service_harddrake_.c:64
+#, fuzzy
+msgid "Hardware probing in progress"
+msgstr "Erkennung läuft"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-Platten %s\n"
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "Sprache auswählen"
-#: ../../lang.pm:1
-#, c-format
-msgid "Liberia"
-msgstr "Liberia"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "Installationsart auswählen"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-"Konnte die notwendigen Programmpakete zum Einrichten eines Scanners mit "
-"Scannerdrake nicht installieren."
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
+msgstr "Festplatten suchen"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-"Bitte geben Sie den Namen der Schnittstelle ein, über die Sie ins Internet "
-"gehen.\n"
-"\n"
-"Beispiele:\n"
-"\t\tppp+ für Modem- oder DSL-Verbindungen, \n"
-"\t\teth0, oder eth1 für eine Kabel-Verbindung, \n"
-"\t\tippp+ für eine ISDN-Verbindung.\n"
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "Maus konfigurieren"
-#: ../../steps.pm:1
-#, c-format
+#: ../../steps.pm_.c:18
msgid "Choose your keyboard"
msgstr "Tastatur auswählen"
-#: ../../steps.pm:1
-#, c-format
-msgid "Format partitions"
-msgstr "Partitionen formatieren"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Automatische Korrektur der CUPS-Konfiguration"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Running \"%s\" ..."
-msgstr "\"%s\" ausführen ..."
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "enable radio support"
-msgstr "Radio Unterstützung aktivieren"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Scanner mit folgenden Rechnern teilen:"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Dateiname des Loopbacks: %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Bitte wählen Sie den Drucker, an den die Druckaufträge gehen sollen."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not transfer printers"
-msgstr "Druckerdaten nicht übertragen"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Delay before booting the default image"
-msgstr "Wartezeit vor dem Starten des Standard-Betriebssystems"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Hard Disk to backup"
-msgstr "Auf Festplatte sichern"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Configure"
-msgstr "Konfigurieren"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake"
-msgstr "ScannerDrake"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"WARNUNG: Es wurde bereits eine Internetverbindung gefunden. Vielleicht nutzt "
-"diese ihr Netzwerk."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
-msgstr "Benutzer sichern"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Bitte geben Sie ihren Rechnernamen an.\n"
-"Ihr Rechnername sollte auch die Domäne beinhalten,\n"
-"etwa \"meinrechner.meineabteilung.meinefirma.de\".\n"
-"Falls Sie ein Gateway verwenden, sollten Sie auch dessen IP-Adresse angeben."
+#: ../../steps.pm_.c:19
+msgid "Security"
+msgstr "Sicherheit"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Wählen Sie das Drucksystem"
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "Dateisysteme einrichten"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Create new theme"
-msgstr "Ein neues Design erzeugen"
+#: ../../steps.pm_.c:21
+msgid "Format partitions"
+msgstr "Partitionen formatieren"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
-msgstr "Erklärung der Mandrake-Programme"
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "Zu installierende Pakete"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "No image found"
-msgstr "Kein Abbild gefunden"
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "System installieren"
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
-"Einige wichtige Pakete wurden nicht richtig installiert. \n"
-"Entweder ist Ihr CD-ROM-Laufwerk oder Ihre CD-ROM defekt. \n"
-"Testen Sie die CD-ROM auf einem Linux-Rechner mittels \"rpm -qpl \n"
-"Mandrake/rpms/*.rpm\"\n"
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "Benutzer hinzufügen"
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
-msgstr "Mandrake Linux 9.2 ist die ultimative Entwicklungsplattform."
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "Netzwerk konfigurieren"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Detected model: %s"
-msgstr "Gefundendenes Modell: %s"
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "Dienste konfigurieren"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
-msgstr "\"%s\" ist keine gültige Email Adresse!"
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "BS-Starter installieren"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"Der X11-Display-Manager erlaubt das grafische Anmelden\n"
-"an das System, sowie das gleichzeitige Ausführen mehrerer verschiedener \n"
-"lokaler X-Sitzungen."
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "Startdiskette erstellen"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr ""
-"Wenn auf \"Ja\" gesetzt, werden täglich Sicherheitschecks durchgeführt."
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "X konfigurieren"
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
-msgstr "Aserbaidschan"
+#: ../../steps.pm_.c:34
+msgid "Install system updates"
+msgstr "Systemaktualisierungen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Bitte geben Sie den Gerätenamen für Archivierung an."
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "Installation beenden"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
-msgstr "Es liegt kein Band in %s!"
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Dvorak (USA)"
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "Server, Web/FTP"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-"der physikalische Bus, an dem sich das Gerät befindet (etwa: PCI, USB, ...)"
+#
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
+msgstr "Netzwerk-Computer (Klient)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Wie ist der Drucker mit Ihrem Computer verbunden?"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS-Server, SMB-Server, Proxy-Server, SSH-Server"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security level"
-msgstr "Sicherheitsebene"
+#: ../../share/compssUsers:999
+msgid "Office"
+msgstr "Office"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "final resolution"
-msgstr "endgültige Auflösung"
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Gnome-Arbeitsplatz"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
-msgstr "Dienste"
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Werkzeuge für Ihren Palm Pilot oder Ihren Visor"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Auto configuration"
-msgstr "Angepasste Konfiguration"
+#: ../../share/compssUsers:999
+msgid "Workstation"
+msgstr "Arbeitsplatzrechner"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Server, Firewall/Router"
#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Büro-Arbeitsplatz"
+msgid "Domain Name and Network Information Server"
+msgstr "Domänen- (DNS) und Netzwerk Informationsserver (NIS)"
#: ../../share/compssUsers:999
msgid ""
@@ -21163,239 +15216,413 @@ msgstr ""
"(KSpread, Gnumeric), PDF-Betrachter, usw."
#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Spiele-Station"
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "Audio Programme: MP3- und Midi-Abspieler, Mixer, usw."
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Spiele: Arcade-, Brett-, Strategiespiele, usw."
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Drittanbieterunterstützung"
#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimedia-Station"
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Bücher und HOWTOs zu GNU/Linux und Freier Software"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Sound- und Video-Player/Editoren"
+msgid "KDE Workstation"
+msgstr "KDE-Arbeitsplatz"
-#
#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internet-Station"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, usw."
#: ../../share/compssUsers:999
-#, fuzzy
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Programme um E-Mails und News zu lesen und zu versenden (pine, mutt, tin..) "
-"und um im Internet zu surfen"
+msgid "Multimedia - Video"
+msgstr "Multimedia / Video"
-#
#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Netzwerk-Computer (Client)"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr "Programme für Mail, News, WWW, FTP und Chat"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Clients für verschiedene Protokolle, u.a. SSH"
+msgid "Database"
+msgstr "Server, Datenbank"
#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Konfiguration"
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgeSQL oder MySQL Datenbankserver"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
-msgstr "Werkzeuge, die die Konfiguration Ihres Computers erleichtern"
+msgstr "Werkzeuge, die die Konfiguration Ihres Rechners erleichtern"
#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Wissenschaftliche Tools"
+msgid "Multimedia - Sound"
+msgstr "Multimedia / Sound"
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
-msgstr "Wissenschaftliche Programme wie gnuplot"
+msgid "Documentation"
+msgstr "Dokumentation"
#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr "Konsolen-Werkzeuge"
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editoren, Shells, Dateiwerkzeuge, Konsolen"
+msgid "Postfix mail server, Inn news server"
+msgstr ""
+"Postfix E-Mail-Server und\n"
+"Inn Diskussionsforen-Server"
+#
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE-Arbeitsplatz"
+msgid "Internet station"
+msgstr "Internetrechner"
+
+#: ../../share/compssUsers:999
+msgid "Multimedia station"
+msgstr "Multimediarechner"
+
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Konfiguration"
+
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "Weitere Arbeitsoberflächen (GNOME, IceWM)"
#: ../../share/compssUsers:999
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
"of accompanying tools"
msgstr ""
-"Die K Desktop Umgebung, die Standard-Arbeitsfläche mit einer Sammlung "
+"Das K Desktop Environment, die Standard-Arbeitsoberfläche mit einer Sammlung "
"zugehöriger Programme"
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome-Arbeitsplatz"
+msgid "Graphical Environment"
+msgstr "Grafische Arbeitsoberfläche"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Eine grafische Umgebung mit anwenderfreundlichen Anwendungen und Werkzeugen"
+msgid "Development"
+msgstr "Entwicklungsplattform"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Andere grafische Arbeitsflächen"
+msgid "Apache, Pro-ftpd"
+msgstr "Apache und Pro-ftpd"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, usw."
+msgid "Tools to create and burn CD's"
+msgstr "Werkzeuge zur Erstellung und zum Brennen von CDs"
+
+#: ../../share/compssUsers:999
+msgid "Office Workstation"
+msgstr "Büro-Arbeitsplatz"
+
+#: ../../share/compssUsers:999
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "GNOME, IceWM, Window Maker, Enlightenment, Fvwm, usw."
+
+#: ../../share/compssUsers:999
+msgid "Graphics programs such as The Gimp"
+msgstr "Bildverarbeitungsprogramme wie der GIMP"
+
+#: ../../share/compssUsers:999
+msgid "DNS/NIS "
+msgstr "DNS/NIS"
#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr "C und C++ Entwicklung: Bibliotheken, Programme und Include-Dateien"
#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentation"
+msgid "Network Computer server"
+msgstr "Netzwerkrechner Server"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Bücher und HOWTOs zu GNU/Linux und Freier Software"
+msgid "Mail/Groupware/News"
+msgstr "Server, Mail/Groupware/News"
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr "Linux Standard Base (LSB)"
+msgid "Game station"
+msgstr "Spiel-Station"
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Linux Standard Base. Drittanbieterunterstützung"
+msgid "Video players and editors"
+msgstr "Videoabspieler und Editoren"
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Server, Web/FTP"
+msgid "Multimedia - Graphics"
+msgstr "Multimedia / Grafik"
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache und Pro-ftpd"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Spiele: Arcade-, Brett-, Strategiespiele, usw."
#: ../../share/compssUsers:999
-msgid "Mail"
-msgstr "E-Mail"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"Programme zum E-Mail bzw. News lesen und senden (pine, mutt, tin, ...)sowie "
+"zum durchstöbern des WWW"
#: ../../share/compssUsers:999
-msgid "Postfix mail server"
-msgstr "Postfix E-Mail-Server"
+msgid "Personal Finance"
+msgstr "Finanzverwaltung"
#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Server, Datenbank"
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Eine grafische Oberfläche mit anwenderfreundlichen Anwendungen und Werkzeugen"
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgeSQL oder MySQL-Datenbankserver"
+msgid "Clients for different protocols including ssh"
+msgstr "Klienten für verschiedene Protokolle, u.a. SSH"
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Server, Firewall/Router"
+msgid "LSB"
+msgstr ""
#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Internet-Gateway"
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS"
+msgid "Sound and video playing/editing programs"
+msgstr "Sound- und Video-Abspieler/Editoren"
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Domänen- (DNS) und Netzwerk-Informations-Server (NIS)"
+msgid "Other Graphical Desktops"
+msgstr "Andere grafische Arbeitsoberflächen"
#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Netzwerkrechner-Server"
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editoren, Shells, Dateiwerkzeuge, Konsolen"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS-Server, SMB-Server, Proxy-Server, SSH-Server"
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "Finanzverwaltungsprogramme, etwa Gnucash"
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
-msgstr ""
-"Programme um E-Mails und News zu lesen und zu versenden und um im Internet "
-"zu surfen"
+msgid "Personal Information Management"
+msgstr "Persönliches Informationsmanagement"
-#~ msgid "The setup has already been done, and it's currently enabled."
-#~ msgstr "Die Einstellungen wurden bereits vorgenommen und sind aktiv."
+#: ../../share/compssUsers:999
+msgid "Multimedia - CD Burning"
+msgstr "Multimedia / CD-Brenner"
-#~ msgid "Logs"
-#~ msgstr "Logs"
+#: ../../share/compssUsers:999
+msgid "Scientific Workstation"
+msgstr "Wissenschaftlicher Arbeitsplatzrechner"
-#~ msgid "The setup has already been done, but it's currently disabled."
-#~ msgstr ""
-#~ "Die Einstellungen wurden bereits vorgenommen, sie sind nur nicht "
-#~ "aktiviert."
+#~ msgid "can not open /etc/inittab for reading: %s"
+#~ msgstr "Ich kann „/etc/inittab“ nicht zum lesen öffnen: %s"
-#~ msgid "Profile "
-#~ msgstr "Profil "
+#, fuzzy
+#~ msgid "cpu number "
+#~ msgstr "eine Nummer"
#~ msgid ""
-#~ "Welcome to the Internet Connection Sharing utility!\n"
+#~ "You now have the opportunity to download encryption software.\n"
#~ "\n"
-#~ "%s\n"
+#~ "WARNING:\n"
#~ "\n"
-#~ "Click on Configure to launch the setup wizard."
-#~ msgstr ""
-#~ "Willkommen beim Internetverbindungs-Freigabe-Tool!\n"
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
#~ "\n"
-#~ "%s\n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
#~ "\n"
-#~ "Wählen Sie \"Konfigurieren\" wenn Sie den Assistenten starten wollen."
-
-#~ msgid "Internet Connection Sharing configuration"
-#~ msgstr "Teilen der Internetverbindung - Konfiguration"
-
-#~ msgid "No Internet Connection Sharing has ever been configured."
-#~ msgstr "Teilen der Internetverbindung wurde noch nicht konfiguriert."
-
-#~ msgid "when checked, owner and group won't be changed"
-#~ msgstr "wenn markiert, werden Eigentümer und Gruppe nicht geändert"
-
-#~ msgid ""
-#~ "XawTV isn't installed!\n"
+#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
#~ "\n"
#~ "\n"
-#~ "If you do have a TV card but DrakX has neither detected it (no bttv nor "
-#~ "saa7134\n"
-#~ "module in \"/etc/modules\") nor installed xawtv, please send the\n"
-#~ "results of \"lspcidrake -v -f\" to \"install@mandrakesoft.com\"\n"
-#~ "with subject \"undetected TV card\".\n"
+#~ "For any queries relating to these agreement, please contact \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
+#~ msgstr ""
+#~ "Sie haben nun die Möglichkeit Software mit starker Verschlüsselung aus "
+#~ "dem \n"
+#~ "Internet zu laden.\n"
#~ "\n"
+#~ "WARNUNG:\n"
#~ "\n"
-#~ "You can install it by typing \"urpmi xawtv\" as root, in a console."
-#~ msgstr ""
-#~ "XawTV ist nicht installiert!\n"
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
+#~ "\n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
#~ "\n"
+#~ "In no event shall MandrakeSoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
#~ "\n"
-#~ "Wenn Sie eine TV Karte haben, aber DrakX hat sie weder entdeckt (kein "
-#~ "bttv oder saa7134\n"
-#~ "Modul in \"/etc/modules\") noch xawtv installiert, dann senden Sie bitte "
-#~ "die\n"
-#~ "das Resultat des Befehls \"lspcidrake -v -f\" an \"install@mandrakesoft."
-#~ "com\"\n"
-#~ "mit dem Betreff \"nicht erkannte TV Karte\".\n"
#~ "\n"
+#~ "Bitte wenden Sie sich für alle weiteren Fragen bzgl. dieser Übereinkunft "
+#~ "an: \n"
+#~ "MandrakeSoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
+
+#~ msgid "Proxy configuration"
+#~ msgstr "Proxies einstellen"
+
+#~ msgid ""
+#~ "Welcome to the proxy configuration utility.\n"
+#~ "\n"
+#~ "Here, you'll be able to set up your http and ftp proxies\n"
+#~ "with or without login and password\n"
+#~ msgstr ""
+#~ "Herzlich willkommen zum Proxy Konfigurationsassistenten.\n"
#~ "\n"
-#~ "Sie können xawtv installieren, indem Sie als Root in einer Konsole "
-#~ "\"urpmi xawtv\" eingeben"
+#~ "Hier können Sie Ihre HTTP und FTP Proxies mit oder ohne\n"
+#~ "Anmeldung und Passwortabfrage einrichten\n"
+
+#~ msgid ""
+#~ "Please fill in the http proxy informations\n"
+#~ "Leave it blank if you don't want an http proxy"
+#~ msgstr ""
+#~ "Bitte füllen Sie die HTTP Proxy Informationen aus\n"
+#~ "Falls sie keinen HTTP Proxy wolen, lassen Sie einfach\n"
+#~ "alle Felder leer."
+
+#~ msgid "URL"
+#~ msgstr "URL"
+
+#~ msgid "port"
+#~ msgstr "Port"
+
+#~ msgid "Url should begin with 'http:'"
+#~ msgstr "Die URL muss mit „http:“ beginnen"
+
+#~ msgid "The port part should be numeric"
+#~ msgstr "Die Prot Nummer muss eine Zahl sein!"
+
+#~ msgid ""
+#~ "Please fill in the ftp proxy informations\n"
+#~ "Leave it blank if you don't want an ftp proxy"
+#~ msgstr ""
+#~ "Bitte füllen Sie die FTP Proxy Informationen aus\n"
+#~ "Falls sie keinen FTP Proxy wolen, lassen Sie einfach\n"
+#~ "alle Felder leer."
+
+#~ msgid ""
+#~ "Please enter proxy login and password, if any.\n"
+#~ "Leave it blank if you don't want login/passwd"
+#~ msgstr ""
+#~ "Bitte geben Sie - falls nötig - Kennzeichen und Passwort für den Proxy \n"
+#~ "an. Lassen Sie die Felder leer, falls Sie sie kein Kennzeichen/Passwort \n"
+#~ "wollen."
+
+#~ msgid "login"
+#~ msgstr "Kennzeichen"
+
+#~ msgid "password"
+#~ msgstr "Passwort"
+
+#~ msgid "re-type password"
+#~ msgstr "Passwort (erneut)"
+
+#~ msgid "The passwords don't match. Try again!"
+#~ msgstr "Die Passwörter stimmen nicht überein. Bitte versuchen Sie es eneut!"
+
+#~ msgid "Can't write file %s"
+#~ msgstr "Ich kann Datei „%s“ nicht schreiben"
+
+#~ msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+
+#~ msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+
+#, fuzzy
+#~ msgid ""
+#~ "Warning, another internet connexion has been detected, maybe using your "
+#~ "network"
+#~ msgstr ""
+#~ "WARNUNG: Es wurde bereits eine Internetverbindung gefunden. Vielleicht "
+#~ "nutzt diese ihr Netzwerk."
+
+#~ msgid "no help implemented yet.\n"
+#~ msgstr "Es steht noch keine Hilfe zur Verfügung.\n"
+
+#~ msgid "Please click on a medium"
+#~ msgstr "Bitte wählen Sie ein Medium"
+
+#~ msgid "Removing LPRng..."
+#~ msgstr "Entfernen von LPRng ..."
+
+#~ msgid "Removing LPD..."
+#~ msgstr "Entfernen des LPD ..."
+
+#~ msgid "usage: drakfloppy\n"
+#~ msgstr "Verwendung: drakfloppy\n"
+
+#, fuzzy
+#~ msgid ""
+#~ "\n"
+#~ "Usage: harddrake [-h|--help] [--test]\n"
+#~ msgstr "Verwendung: keyboarddrake [--expert] [keyboard]\n"
+
+#~ msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+#~ msgstr "Verwendung: keyboarddrake [--expert] [keyboard]\n"
+
+#~ msgid "Probing %s class\n"
+#~ msgstr "Testen der Klasse %s\n"
+
+#~ msgid "detected on interface %s"
+#~ msgstr "an Schnittstelle %s gefunden"
+
+#~ msgid "~#*#~"
+#~ msgstr "iStefan Siegel"
+
+#~ msgid "~#@#~"
+#~ msgstr "256 KB"
-#~ msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgid "unable to backup lilo message"
+#~ msgstr "Ich kann keine Sicherheitskopie der LILO-Nachricht anlegen."
-#~ msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+#~ msgid "can't change lilo message"
+#~ msgstr "Ich kann die LILO-Nachricht nicht ändern."
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index efc3cb8b7..f967f3efa 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -1,1846 +1,1296 @@
-# translation of DrakX-el.po to Greek
# Greek translation for drakfloppy.
-# Copyright (C) 2001,2003 Free Software Foundation, Inc.
+# Copyright (C) 2001 Free Software Foundation, Inc.
# Thanos Kyritsis <djart@hellug.gr>, 2001.
-# Íßêïò Íýêôáñçò (Nick Niktaris) <niktarin@yahoo.com>, 2003
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX-el\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
-"PO-Revision-Date: 2003-06-14 23:44+0300\n"
-"Last-Translator: Íßêïò Íýêôáñçò (Nick Niktaris) <niktarin@yahoo.com>\n"
-"Language-Team: Greek <nls@tux.hellug.gr>\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"PO-Revision-Date: 2002-09-04 00:12+0300\n"
+"Last-Translator: Íßêïò Íýêôáñçò (Nick Niktaris) <niktaris@yahoo.com>\n"
+"Language-Team: Greek <nls@hellug.gr>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-7\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
+"X-Generator: KBabel 0.9.6\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "ÁíÜëõóç êáôáôìÞóåùí ãéá ðñïóäéïñéóìü óçìåßùí óýíäåóçò."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr "áí ïñéóôåß íáé, Ýëåã÷ïò ãéá ðñïèÝóåéò/áöáéñÝóåéò áñ÷åßùí suid root."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tÓâÞóéìï=%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "network printer port"
-msgstr "èýñá åêôõðùôÞ äéêôýïõ"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Ðáñáêáëþ åéóÜãåôå äéóêÝôá Åêêßíçóçò:"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Ï åöåäñéêüò ðßíáêáò êáôáôìÞóåùí Ý÷åé äéáöïñåôéêü ìÝãåèïò\n"
-"Íá óõíå÷ßóù;"
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Which username"
-msgstr "Ðïßï üíïìá ÷ñÞóôç"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "Ôé ôýðïõ åðéëïãÞ èÝëåôå íá ðñïóèÝóåôå;"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Restore partition table"
-msgstr "ÅðáíáöïñÜ ðßíáêá êáôáôìÞóåùí"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB Þ ðåñéóóüôåñá"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Configure hostname..."
-msgstr "Ñýèìéóç ðïíôéêéïý"
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "ÅðéëÝîôå ôïí åîõðçñåôçôÞ ×"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Óôïí åîõðçñåôçôÞ CUPS \"%s\""
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "åîõðçñåôçôÞò X"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Post-install configuration"
-msgstr "Ñõèìßóåéò ìåôÜ ôçí åãêáôÜóôáóç"
+#: ../../Xconfig/card.pm_.c:230
+msgid "Multi-head configuration"
+msgstr "Ñýèìéóç ðïëëþí êåöáëþí"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
+"Ôï óýóôçìÜ óáò õðïóôçñßæåé ñýèìéóç ðïëëáðëþí êåöáëþí.\n"
+"Ôé èÝëåôå íá êÜíåôå;"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "×ñçóéìïðïéÞóôå ``%s'' óôç èÝóç ôïõ"
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
+msgstr "ÅðéëÝîôå ôï ìÝãåèïò ìíÞìçò ôçò êÜñôáò ãñáöéêþí"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Type"
-msgstr "Ôýðïò"
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "Ñõèìßóåéò XFree"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Åðßóçò åêôõðùôÝò ðïõ Ý÷ïõí ñõèìéóôåß ìå áñ÷åßá PPD ðïõ ðáñÝ÷ïíôáé áðü ôïõò "
-"êáôáóêåõáóôÝò ôïõò Þ ìå ôïðéêïýò ïäçãïýò CUPS äåí ìðïñïýí íá ìåôáöåñèïýí."
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Ôé ñýèìéóç XFree èÝëåôå íá Ý÷åôå;"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "Óñé ËÜíêá"
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
+msgstr "Ñýèìéóç üëùí ôùí êåöáëþí áíåîÜñôçôá"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Ï ðáñáêÜôù åêôõðùôÞò\n"
-"\n"
-"%s%s\n"
-"åßíáé Üìåóá óõíäåìÝíïé óôï óýóôçìÜ óáò"
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
+msgstr "×ñÞóç åðÝêôáóçò Xinerama"
-#: ../../lang.pm:1
+#: ../../Xconfig/card.pm_.c:389
#, c-format
-msgid "Central African Republic"
-msgstr "Äçìïêñáôßá ÊåíôñéêÞò ÁöñéêÞò"
+msgid "Configure only card \"%s\"%s"
+msgstr "Ñýèìéóç ìüíï ôçò êÜñôáò \"%s\" %s"
-#: ../../network/network.pm:1
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Gateway device"
-msgstr "ÓõóêåõÞ ðýëçò"
-
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Advanced preferences"
-msgstr "Ðñï÷ùñçìÝíåò ÅðéëïãÝò"
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Net Method:"
-msgstr "ÌÝèïäïò äéêôýïõ:"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s ìå åðéôÜ÷õíóç ôñéóäéÜóôáôùí ãñáöéêþí"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
-msgid "Ethernetcard"
-msgstr "ÊÜñôá Äéêôýïõ Ethernet"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "If set, send the mail report to this email address else send it to root"
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-"áí íáé, áðïóôïëÞ ôçò áíáöïñÜò ôá÷õäñïìåßïõ óå áõôÞí ôçí äéåýèõíóç Þ áëëéþò "
-"óôïí root."
-
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr "ÐáñÜìåôñïé"
-
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "no"
-msgstr "Ðëçñïöïñßåò"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Auto-detect"
-msgstr "Áõôüìáôç áíß÷íåõóç"
+"Ç êÜñôá ãñáöéêþí óáò õðïóôçñßæåé åðéôÜ÷õíóç ôñéóäéÜóôáôùí ãñáöéêþí ìüíï ìå "
+"ôá XFree %s.\n"
+"Ç êÜñôá óáò õðïóôçñßæåôáé áðü ôá XFree %s ôá ïðïßá ìðïñåß íá äßíïõí êáëýôåñç "
+"õðïóôÞñéîç ãéá äéóäéÜóôáôá ãñáöéêÜ."
-#: ../../standalone/drakconnect:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid "Interface:"
-msgstr "ÄéåðáöÞ:"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+"Ç êÜñôá ãñáöéêþí óáò õðïóôçñßæåé åðéôÜ÷õíóç ôñéóäéÜóôáôùí ãñáöéêþí óôá XFree "
+"%s."
-#: ../../steps.pm:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid "Select installation class"
-msgstr "ÅðéëÝîôå åãêáôÜóôáóç"
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s ìå ÐÅÉÑÁÌÁÔÉÊÇ åðéôÜ÷õíóç ôñéóäéÜóôáôùí ãñáöéêþí"
-#: ../../network/tools.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
+"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."
msgstr ""
-"Ôï óýóôçìá öáßíåôáé íá ìçí åßíáé óõíäåìÝíï óôï Äéáäßêôõï\n"
-"ÐñïóðáèÞóôå íá îáíáñõèìßóåôå ôç óýíäåóÞ óáò."
+"Ç êÜñôá ãñáöéêþí óáò õðïóôçñßæåé åðéôÜ÷õíóç ôñéóäéÜóôáôùí ãñáöéêþí ìüíï ìå "
+"ôá XFree %s.\n"
+"ÐÑÏÓÏ×Ç: ÐÅÉÑÁÌÁÔÉÊÇ ÕÐÏÓÔÇÑÉÎÇ - ÌÐÏÑÅÉ ÍÁ ÐÁÃÙÓÅÉ ÔÏÍ ÕÐÏËÏÃÉÓÔÇ ÓÁÓ!\n"
+"Ç êÜñôá óáò õðïóôçñßæåôáé áðü ôá XFree %s ôá ïðïßá ìðïñåß íá äßíïõí êáëýôåñç "
+"õðïóôÞñéîç ãéá äéóäéÜóôáôá ãñáöéêÜ."
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"ÓõíäÝóôå ôïí åêôõðùôÞ óáò óå Ýíáí åîõðçñåôçôÞ Linux êáé óõíäÝóôå óå áõôüí ôá "
-"ìç÷áíÞìáôá Windows óáí ðåëÜôåò\n"
-"\n"
-"ÈÝëåôå ðñáãìáôéêÜ íá óõíå÷ßóåôå ôéò ñõèìßóåéò ôïõ åêôõðùôÞ óáò ðïõ êÜíåôå;"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belarus"
-msgstr "Ëåõêïñùóßá"
+"Ç êÜñôá ãñáöéêþí óáò õðïóôçñßæåé åðéôÜ÷õíóç ôñéóäéÜóôáôùí ãñáöéêþí óôá XFree "
+"%s,\n"
+"ÐÑÏÓÏ×Ç: ÐÅÉÑÁÌÁÔÉÊÇ ÕÐÏÓÔÇÑÉÎÇ - ÌÐÏÑÅÉ ÍÁ ÐÁÃÙÓÅÉ ÔÏÍ ÕÐÏËÏÃÉÓÔÇ ÓÁÓ."
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Error writing to file %s"
-msgstr "ÓöÜëìá åããñáöÞò óôï áñ÷åßï %s"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (ïäçãüò ðñïâïëÞò åãêáôÜóôáóçò)"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Report check result to syslog"
-msgstr "áí ïñéóôåß íáé, áðïôÝëåóìá áíáöïñÜò åëÝã÷ïõ óôï syslog."
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "ÐñïóáñìïóìÝíï"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
-msgstr ""
-"Ôï apmd ðáñáêïëïõèåß êáé êáôáãñÜöåé ôçí êáôÜóôáóç ôçò ìðáôáñßáò.\n"
-"Ìðïñåß åðßóçò íá ÷ñçóéìïðïéçèåß ãéá ôï áõôüìáôï êëåßóéìï ôïõ óõóôÞìáôïò óå \n"
-"ðåñßðôùóç ÷áìçëÞò öüñôéóçò ôçò ìðáôáñßáò."
+#: ../../Xconfig/main.pm_.c:102
+msgid "Graphic Card"
+msgstr "ÊÜñôá Ãñáöéêþí"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tape to backup"
-msgstr "×ñÞóç ôáéíßáò ãéá ôá áñ÷åßá áóöáëåßáò"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "Ïèüíç"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Èá åãêáôáóôáèïýí ôá ðáñáêÜôù ðáêÝôá"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "ÁíÜëõóç"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS configuration"
-msgstr "Ñýèìéóç CUPS"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
+msgstr "ÄïêéìÞ"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Total progress"
-msgstr "ÓõíïëéêÞ ðñüïäïò"
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "ÅðéëïãÝò"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Äåí õðÜñ÷åé áñêåôüò åëåýèåñïò ÷þñïò ãéá äçìéïõñãßá íÝùí êáôáôìÞóåùí"
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "ÅíôÜîåé"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "Ìåôáêßíçóç óå åîÝëéîç"
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "¸îïäïò"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
"\n"
-"Drakbackup activities via %s:\n"
-"\n"
+"%s"
msgstr ""
+"ÄéáôÞñçóç õðáñ÷üíôùí ñõèìßóåùí;\n"
+"Ïé ôñÝ÷ïõóåò ñõèìßóåéò åßíáé:\n"
"\n"
-"Äñáóôçñéüôçôåò Drakbackup ìÝóù %s:\n"
-"\n"
+"%s"
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "yes"
-msgstr "Íáé"
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "ÅðéëÝîôå ïèüíç"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr "("
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
+msgstr "¶ìåóçò ôïðïèÝôçóçò êáé ëåéôïõñãßáò"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "ÃåíéêÞ"
+
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+msgid "Vendor"
+msgstr "ÊáôáóêåõáóôÞò"
+
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
-"Welcome to The Network Configuration Wizard.\n"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"We are about to configure your internet/network connection.\n"
-"If you don't want to use the auto detection, deselect the checkbox.\n"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
-"Êáëþò Þëèáôå óôïí Ïäçãü Ñýèìéóçò Äéêôýïõ\n"
+"Ïé äýï êñßóéìåò ðáñÜìåôñïé åßíáé ç óõ÷íüôçôá êáôáêüñõöçò áíáíÝùóçò åßíáé ç\n"
+"óõ÷íüôçôá ìå ôçí ïðïßá áíáíåþíåôáé ïëüêëçñç ç ïèüíç, êáèþò êáé ç óõ÷íüôçôá\n"
+"ïñéæüíôéáò áíáíÝùóçò, ç ïðïßá åßíáé ç óõ÷íüôçôá ìå ôçí ïðïßá áíáíåþíïíôáé\n"
+"ïé ïñéæüíôéåò ãñáììÝò.\n"
"\n"
-"Åßìáóôå Ýôïéìïé íá ñõèìßóïõìå ôç óýíäåóÞ óáò óôï äéáäßêôõï/äßêôõï.\n"
-"Áí äåí èÝëåôå íá ÷ñçóéìïðïéÞóåôå ôçí áõôüìáôç áíß÷íåõóç, áðïåðéëÝîôå ôï "
-"êïõôÜêé.\n"
+"Åßíáé ÐÏËÕ ÓÇÌÁÍÔÉÊÏ íá ìçí åðéëÝîåôå ôýðï ïèüíçò ôïõ ïðïßïõ ïé óõ÷íüôçôåò\n"
+"áíáíÝùóçò åßíáé åêôüò ôùí ïñßùí ôçò ïèüíçò óáò: õðÜñ÷åé êßíäõíïò "
+"êáôáóôñïöÞò\n"
+"ôçò ïèüíçò óáò. Áí äåí åßóôå óßãïõñïé, êÜíôå ìéá óõíôçñçôéêÞ åðéëïãÞ."
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ")"
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "Óõ÷íüôçôá ïñéæüíôéáò áíáíÝùóçò"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "Ëßâáíïò"
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "Óõ÷íüôçôá êáôáêüñõöçò áíáíÝùóçò"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 ÷ñþìáôá (8 bits)"
-#: ../../services.pm:1
-#, c-format
-msgid "Stop"
-msgstr "Ôåñìáôéóìüò"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 ÷éëéÜäåò ÷ñþìáôá (15 bits)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Edit selected host"
-msgstr "Åðåîåñãáóßá åðéëåãìÝíïõ õðïëïãéóôÞ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 ÷éëéÜäåò ÷ñþìáôá (16 bits)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD device defined!"
-msgstr "Äåí êáèïñßóôçêå óõóêåõÞ CD"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 åêáôïììýñéá ÷ñþìáôá (24 bits)"
-#: ../../network/shorewall.pm:1
-#, c-format
-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 ""
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 äéóåêáôïììýñéá ÷ñþìáôá (32 bits)"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "Áíôßãñáöá áóöáëåßáò Üëëùí áñ÷åßùí"
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "Áíáëýóåéò"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "Âïõëãáñéêü (öùíçôéêü)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "ÅðéëÝîôå áíÜëõóç êáé âÜèïò ÷ñþìáôïò"
-#: ../../standalone/drakpxe:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "The DHCP start ip"
-msgstr "Ç IP åêêßíçóçò ôïõ DHCP"
+msgid "Graphics card: %s"
+msgstr "ÊÜñôá ãñáöéêþí: %s"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "256 kB"
-msgstr "256 kB"
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr "¶êõñï"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Don't rewind tape after backup"
-msgstr "×ñÞóç ôáéíßáò ãéá ôá áñ÷åßá áóöáëåßáò"
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "ÄïêéìÞ ñõèìßóåùí"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "ÂáóéêÝò åðéëïãÝò ðñïãñÜììáôïò åêêßíçóçò"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "ÈÝëåôå íá äïêéìÜóåôå ôéò ñõèìßóåéò;"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+"Ðñïóï÷Þ: Ç äïêéìÞ óå áõôÞ ôçí êÜñôá ãñáöéêþí ìðïñåß íá ðáãþóåé ôïí "
+"õðïëïãéóôÞ óáò"
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid "Tape"
-msgstr "Ôáéíßá"
+msgid "Keyboard layout: %s\n"
+msgstr "ÄéÜôáîç ðëçêôñïëïãßïõ: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid "Malaysia"
-msgstr "Ìáëáéóßá"
+msgid "Mouse type: %s\n"
+msgstr "Ôýðïò ðïíôéêéïý: %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid "Scanning network..."
-msgstr "ÁíáæÞôçóç óôï äßêôõï..."
+msgid "Mouse device: %s\n"
+msgstr "ÓõóêåõÞ ðïíôéêéïý: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Ìå áõôÞ ôçí åðéëïãÞ èá ìðïñåßôå íá åðáíáöÝñåôå ïðïéáäÞðïôå\n"
-"Ýêäïóç ôïõ êáôáëüãïõ /etc."
-
-#: ../../standalone/drakedm:1
-#, fuzzy, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr "Ôï äßêôõï ðñÝðåé íá åðáíåêêéíçèåß, ÈÝëåôå íá ôï åðáíåêêéíÞóåôå ;"
+msgid "Monitor: %s\n"
+msgstr "Ïèüíç: %s\n"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Swiss (French layout)"
-msgstr "Åëâåôéêü (ÃáëëéêÞ äéÜôáîç)"
+msgid "Monitor HorizSync: %s\n"
+msgstr "Óõ÷íüôçôá ïñéæüíôéáò áíáíÝùóçò: %s\n"
-#: ../../raid.pm:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "áðïôõ÷ßá mkraid (ìÞðùò áðïõóéÜæïõí ôá raidtools;)"
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Óõ÷íüôçôá êáôáêüñõöçò áíáíÝùóçò: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid "August"
-msgstr "Áýãïõóôïò"
+msgid "Graphics card: %s\n"
+msgstr "ÊÜñôá ãñáöéêþí: %s\n"
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "FTP server"
-msgstr "ÅîõðçñåôçôÞò NTP"
+#: ../../Xconfig/various.pm_.c:36
+#, c-format
+msgid "Graphics memory: %s kB\n"
+msgstr "ÌíÞìç êÜñôáò ãñáöéêþí: %s kB\n"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid "Webcam"
-msgstr ""
+msgid "Color depth: %s\n"
+msgstr "ÂÜèïò ÷ñþìáôïò: %s\n"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "ÌÝãåèïò ôçò (äåõôÝñïõ åðéðÝäïõ) cpu cache"
+#: ../../Xconfig/various.pm_.c:39
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "ÁíÜëõóç: %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Soundcard"
-msgstr "ÊÜñôá Þ÷ïõ"
+msgid "XFree86 server: %s\n"
+msgstr "ÅîõðçñåôçôÞò XFree86: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Month"
-msgstr "ÌÞíáò"
+msgid "XFree86 driver: %s\n"
+msgstr "Ïäçãüò XFree86: %s\n"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Search for files to restore"
-msgstr "ÅðéëÝîôå Üëëï ìÝóï ãéá ôçí áíÜêôçóç"
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "Ãñáöéêü ðåñéâÜëëïí óôçí åêêßíçóç"
-#: ../../lang.pm:1
-#, c-format
-msgid "Luxembourg"
-msgstr "Ëïõîåìâïýñãï"
+#: ../../Xconfig/various.pm_.c:62
+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?"
+msgstr ""
+"Ìðïñþ íá ñõèìßóù ôï óýóôçìÜ óáò Ýôóé þóôå íá îåêéíÜåé áõôüìáôá óå\n"
+"ãñáöéêü ðåñéâÜëëïí (XFree).\n"
+"Åðéèõìåßôå ôçí áõôüìáôç åêêßíçóç ãñáöéêïý ðåñéâÜëëïíôïò;"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:73
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
msgstr ""
-"Ãéá íá åêôõðþóåôå áðü ôç ãñáììÞ åíôïëþí (ðáñÜèõñï ôåñìáôéêïý) êÜíôå ÷ñÞóç "
-"ôçò åíôïëÞò \"%s <áñ÷åßï>\".\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Level %s\n"
-msgstr "Åðßðåäï %s\n"
+#: ../../Xconfig/various.pm_.c:85
+msgid "What norm is your TV using?"
+msgstr "Ðïéï óýóôçìá ÷ñçóéìïðïéåß ç ôçëåüñáóç óáò;"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Syriac (phonetic)"
-msgstr "Áñìåíéêü (öùíçôéêü)"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
+msgstr "Ðñþôïò ôïìÝáò ôçò êáôÜôìçóçò åêêßíçóçò"
-#: ../../lang.pm:1
-#, c-format
-msgid "Iran"
-msgstr "ÉñÜí"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
+msgstr "Ðñþôïò ôïìÝáò ôïõ äßóêïõ (MBR)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus"
-msgstr "Bus"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "ÅãêáôÜóôáóç SILO"
-#: ../../lang.pm:1
-#, c-format
-msgid "Iraq"
-msgstr "ÉñÜê"
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
+msgstr "Ðïý èÝëåôå íá åãêáôáóôÞóåôå ôï ðñüãñáììá åêêßíçóçò;"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "connecting to %s ..."
-msgstr "óýíäåóç óôïí ïäçãü Bugzilla ..."
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "ÅãêáôÜóôáóç LILO/grub"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "ÐéèáíÞ äéðëÞò äéåýèõíóçò LAN óôçí ôñÝ÷ïõóá ñýèìéóç ôïõ %s!\n"
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
+msgstr "SILO"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring..."
-msgstr "Ñýèìéóç..."
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
+msgstr "LILO ìå ìåíïý êåéìÝíïõ"
-#: ../../harddrake/v4l.pm:1
-#, fuzzy, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
-msgstr ""
-"Linux\n"
-" ìåôÜ âßáò."
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
+msgstr "LILO ìå ãñáöéêü ìåíïý"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Password (again)"
-msgstr "Êùäéêüò Ðñüóâáóçò (îáíÜ)"
+#: ../../any.pm_.c:142
+msgid "Grub"
+msgstr "Grub"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search installed fonts"
-msgstr "ÁíáæÞôçóç åãêáôåóôçìÝíùí ãñáììáôïóåéñþí"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "Åêêßíçóç áðü ôï DOS/Windows (loadlin)"
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Default desktop"
-msgstr "ÐñïåðéëåãìÝíï"
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
-msgstr ""
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "ÂáóéêÝò åðéëïãÝò ðñïãñÜììáôïò åêêßíçóçò"
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr "ÂåíåæïõÝëá"
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
+msgstr "×ñÞóç ðñïãñÜììáôïò åêêßíçóçò"
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "IP address"
-msgstr "Äéåýèõíóç IP"
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "Ðñüãñáììá åêêßíçóçò"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "ÅðéëÝîôå ôá ìåãÝèç"
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "ÓõóêåõÞ åêêßíçóçò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Ëßóôá ôùí êáôåóôñáììÝíùí äåäïìÝíùí:\n"
-"\n"
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "ÓõìðáãÞò"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
-msgstr ""
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "óõìðáãÞò"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"Ôï ìüíôåì óáò äåí õðïóôçñßæåôáé áðü ôï óýóôçìá.\n"
-"Ñßîôå ìéá ìáôéÜ óôï http://www.linmodems.org"
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "ÁíÜëõóç ïèüíçò"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose another partition"
-msgstr "ÅðéëÝîôå Üëëç êáôÜôìçóç"
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
+msgstr "ÊáèõóôÝñçóç ðñéí ôçí åêêßíçóç"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Current user"
-msgstr "ÔñÝ÷ïí ÷ñÞóôç"
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
+msgid "Password"
+msgstr "Êùäéêüò Ðñüóâáóçò"
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
-msgstr "¼íïìá ÷ñÞóôç"
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "Êùäéêüò Ðñüóâáóçò (îáíÜ)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Áñéóôåñü ðëÞêôñï \"Windows\""
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "Áðáãüñåõóç åðéëïãþí ãñáììÞò åíôïëÞò"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "ÃïõéÜíá"
+#: ../../any.pm_.c:171
+msgid "restrict"
+msgstr "áðáãüñåõóç"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Ñõèìßóåéò ÅîõðçñåôçôÞ dhcpd"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "Êáèáñéóìüò /tmp óå êÜèå åêêßíçóç"
-#: ../../standalone/drakperm:1
+#: ../../any.pm_.c:174
#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "ÁêñéâÞò ðïóüôçôáò ìíÞìçò áí ÷ñåéÜæåôáé (åíôïðßóôçêáí %d MB)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr "óôïí åîõðçñåôçôÞ Novell \"%s\", óôïí åêôõðùôÞ \"%s\""
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
+msgstr "Åíåñãïðïßçóç ðïëëáðëþí ðñïößë"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Printer Name"
-msgstr "¼íïìá ÏõñÜò ÅêôõðùôÞ"
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "ÅéóÜãåôå ìÝãåèïò ìíÞìçò óå MB"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
+#: ../../any.pm_.c:182
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
+"Ç åðéëïãÞ ``Áðáãüñåõóç åðéëïãþí ãñáììÞò åíôïëÞò'' åßíáé Ü÷ñçóôç ÷ùñßò êùäéêü "
+"ðñüóâáóçò"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
-msgstr "ÁðïìÜêñõíóç áñèñþìáôïò"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "Ðáñáêáëþ ðñïóðáèÞóôå îáíÜ"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Password"
-msgstr "Êùäéêüò Ðñüóâáóçò"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "Ïé êùäéêïß ðñüóâáóçò åßíáé áíüìïéïé"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Ðñï÷ùñçìÝíåò Ñõèìßóåéò"
+#: ../../any.pm_.c:191
+msgid "Init Message"
+msgstr "ÌÞíõìá Init"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr "ÓÜñùóç óôç ðïëõ÷ñçóôéêÞ óõóêåõÞ HP ðïõ äéáèÝôåôå"
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
+msgstr "¶íïéãìá ÊáèõóôÝñçóçò Firmware"
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "Root"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
+msgstr "ÔÝëïò ×ñüíïõ Åêêßíçóçò ÐõñÞíá"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "ÅðéëÝîôå Ýíá õðÜñ÷ïí RAID óôï ïðïßï èá ãßíåé ç ðñïóèÞêç"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
+msgstr "Åíåñãïðïßçóç åêêßíçóçò áðü CD;"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Ôïõñêéêü (ìïíôÝñíï \"Q\" ìïíôÝëï)"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
+msgstr "Åíåñãïðïßçóç OF åêêßíçóçò;"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo message not found"
-msgstr "Äåí âñÝèçêå ôï ìÞíõìá lilo"
+#: ../../any.pm_.c:197
+msgid "Default OS?"
+msgstr "Åî ïñéóìïý ëåéôïõñãéêü;"
-#: ../../services.pm:1
-#, c-format
+#: ../../any.pm_.c:231
msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
+"\n"
+"On which drive are you booting?"
msgstr ""
-"Áõôüìáôç ðáñáãùãÞ ôçò åðéêåöáëßäáò ôïõ ðõñÞíá óôï /boot ãéá ôï\n"
-"/usr/include/linux/{autoconf,version}.h"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
-msgstr "áí ÷ñåéÜæåôáé"
+"ÅðéëÝîáôå íá åãêáôáóôÞóåôå ôï ðñüãñáììá åêêßíçóçò óå ìéá êáôÜôìçóç.\n"
+"Åííïåßôå üôé Ý÷åôå Þäç åãêáôÜóôáóç Ýíá Üëëï ðñüãñáììá åêêßíçóçò óôïí óêëçñü "
+"óáò äßóêï (ð.÷. System Commander).\n"
+"\n"
+"Áðü ðïéüí äßóêï îåêéíÜôå;"
-#: ../../standalone/drakclock:1
-#, c-format
+#: ../../any.pm_.c:247
msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
+"ÕðÜñ÷ïõí ïé áêüëïõèåò åðéëïãÝò.\n"
+"Ìðïñåßôå íá ðñïóèÝóåôå êé Üëëåò Þ íá áëëÜîåôå ôéò õðÜñ÷ïõóåò."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Failed..."
-msgstr "Ç ÅðáíáöïñÜ ÁðÝôõ÷å..."
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "ÐñïóèÞêç"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr ""
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "Ïëïêëçñþèçêå"
-#: ../../install_messages.pm:1
-#, fuzzy, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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 ""
-"\n"
-"\n"
-" Linux\n"
-"\n"
-"\n"
-" Linux\n"
-"\n"
-"\n"
-" ¶äåéá\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" ¶äåéá\n"
-" ¶äåéá\n"
-"\n"
-"\n"
-" ¶äåéá\n"
-" ¶äåéá ¶äåéá\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Linux\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" ¶äåéá\n"
-"\n"
-"\n"
-" ÃåíéêÜ\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" ¶äåéá Ôåêìçñßùóç\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Èýñá\n"
-"\n"
-" ¼ëá\n"
-"\n"
-"\n"
-"\n"
-" Linux\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" ¶äåéá Ãáëëßá\n"
-" ¼ëá\n"
-" Ãáëëßá\n"
+#: ../../any.pm_.c:257
+msgid "Modify"
+msgstr "Ôñïðïðïßçóç"
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Default user"
-msgstr "ÐñïåðéëåãìÝíïò åêôõðùôÞò"
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "Ôé ôýðïõ åðéëïãÞ èÝëåôå íá ðñïóèÝóåôå;"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"óõíôåôáãìÝíç y ôçò ãñáììÞò ðñïüäïõ\n"
-"áðü ôçí åðÜíù áñéóôåñÞ ãùíßá"
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "Linux"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Current interface configuration"
-msgstr "Ñýèìéóç ôñÝ÷ïõóáò äéåðáöÞò"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "¶ëëï ëåéôïõñãéêü (SunOS...)"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "¶ëëï ëåéôïõñãéêü (MacOS...)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"ÅÜí Ý÷åôå ISA êÜñôá, ïé ôéìÝò óôçí åðüìåíç ïèüíç èá ðñÝðåé íá åßíáé óùóôÝò.\n"
-"\n"
-"ÅÜí Ý÷åôå PCMCIA êÜñôá, ðñÝðåé íá îÝñåôå ôï irq êáé ôï io ôçò êÜñôáò óáò.\n"
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "¶ëëï ëåéôïõñãéêü (windows...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not print any test page"
-msgstr "×ùñßò åêôýðùóç äïêéìáóôéêÞò óåëßäáò"
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "Åéêüíá"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr "Ãêïõñìïýêé"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "Root"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
-msgstr ""
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr ""
-"Áõôüò ï êùäéêüò ðñüóâáóçò åßíáé ðïëý áðëüò (ðñÝðåé íá Ý÷åé ôïõëÜ÷éóôïí %d "
-"÷áñáêôÞñåò)"
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "Read-write"
-#: ../../standalone.pm:1
-#, c-format
-msgid "[keyboard]"
-msgstr "[ðëçêôñïëüãéï]"
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "Ðßíáêáò"
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP proxy"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "ÁíáóöáëÝò"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install List"
-msgstr "Ëßóôá ÅãêáôÜóôáóçò"
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "ÅôéêÝôá"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Change\n"
-"Restore Path"
-msgstr ""
-"ÁëëáãÞ\n"
-"ÈÝóç ÅðáíáöïñÜò"
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "ÐñïåðéëåãìÝíï"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
-msgstr "ÅìöÜíéóç ìüíï ãéá ôçí åðéëåãìÝíç çìÝñá"
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
+msgstr "ìÝãåèïò Initrd"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr ""
+#: ../../any.pm_.c:318
+msgid "NoVideo"
+msgstr "×ùñßòVideo"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 kB"
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "Áöáßñåóç åðéëïãÞò"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr ""
-"(Óçìåßùóç: Óôéò ðáñÜëëçëåò èýñåò äåí ìðïñåß íá ãßíåé áõôüìáôïò åíôïðéóìüò)"
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "Äåí åðéôñÝðåôáé Üäåéá åôéêÝôá"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
+msgstr "ÐñÝðåé íá ïñßóåôå ìéá åéêüíá ðõñÞíá"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Ôé åßäïõò êÜñôáò Ý÷åôå;"
+#: ../../any.pm_.c:330
+msgid "You must specify a root partition"
+msgstr "ÐñÝðåé íá ïñßóåôå ìéá êáôÜôìçóç root"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "ÁõôÞ ç åôéêÝôá ÷ñçóéìïðïéåßôáé Þäç"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Security"
-msgstr "ÁóöÜëåéá"
+msgid "Found %s %s interfaces"
+msgstr "ÂñÝèçêáí %s %s ðñïóáñìïãåßò"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"\n"
-" ÅêôõðùôÞò"
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "¸÷åôå Üëëïí;"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
+#: ../../any.pm_.c:642
#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
+msgid "Do you have any %s interfaces?"
+msgstr "¸÷åôå êÜðïéïí ðñïóáñìïãÝá %s;"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Ðáñáêáëþ åðéëÝîôå ôá äåäïìÝíá ðñïò åðáíáöïñÜ..."
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "¼÷é"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown"
-msgstr "¶ãíùóôï"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "Íáé"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr ""
-"O åîõðçñåôçôÞò åßíáé Þäç óôç ëßóôá, äåí ìðïñåßôå íá ôïí ðñïóèÝóåôå îáíÜ.\n"
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "ÐñïâïëÞ ðëçñïöïñéþí õëéêïý"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Network Configuration"
-msgstr "Ñõèìßóåéò äéêôýïõ"
+msgid "Installing driver for %s card %s"
+msgstr "ÅãêáôÜóôáóç ïäçãïý ãéá %s êÜñôá %s"
-#: ../../standalone/logdrake:1
+#: ../../any.pm_.c:663
#, c-format
-msgid "<control>S"
-msgstr "<control>S"
+msgid "(module %s)"
+msgstr "(Üñèñùìá %s)"
-#: ../../network/isdn.pm:1
+#: ../../any.pm_.c:674
#, c-format
msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-"Ðñùôüêïëëï õðüëïéðïõ êüóìïõ\n"
-" ÷ùñßò D-Channel (ìéóèùìÝíåò ãñáììÝò)"
+"Ìðïñåßôå ôþñá íá äþóåôå ôéò ðáñáìÝôñïõò ãéá ôï Üñèñùìá %s.\n"
+"Óçìåéþóôå üôé êÜèå äéåýèõíóç ðñÝðåé íá åéóÜãåôáé ìå ôï ðñüèåìá 0x üðùò "
+"'0x123'"
-#: ../../standalone/drakTermServ:1
+#: ../../any.pm_.c:680
#, 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."
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
msgstr ""
+"Ìðïñåßôå ôþñá íá äþóåôå ôéò ðáñáìÝôñïõò ãéá ôï Üñèñùìá %s.\n"
+"Ïé ðáñÜìåôñïé Ý÷ïõí ôçí ìïñöÞ ``üíïìá=ôéìÞ üíïìá2=ôéìÞ2 ...''.\n"
+"Ãéá ðáñÜäåéãìá, ``io=0x300 irq=7''"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Ç åðéëïãÞ %s ðñÝðåé íá åßíáé áñéèìüò!"
-
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, c-format
-msgid "Notice"
-msgstr "Óçìåßùóç"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "Äåí Ý÷åôå ñõèìßóåé ôï ×. Åßóôå âÝâáéïé üôé èÝëåôå íá ôï êÜíåôå;"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr "áíé÷íåýèçêå."
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "ÅðéëïãÝò áñèñþìáôïò:"
-#: ../../diskdrake/interactive.pm:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "What type of partitioning?"
-msgstr "Ôé ôýðïò êáôÜôìçóçò;"
+msgid "Which %s driver should I try?"
+msgstr "Ðïéüí ïäçãü %s íá äïêéìÜóù;"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:703
#, c-format
msgid ""
-"file list sent by FTP: %s\n"
-" "
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
-"áðïóôïëÞ ëßóôáò áñ÷åßùí ìÝóù FTP: %s\n"
-" "
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface"
-msgstr "ÄéåðáöÞ"
+"Óå ìåñéêÝò ðåñéðôþóåéò, ï ïäçãüò %s ÷ñåéÜæåôáé åðéðëÝïí ðáñáìÝôñïõò ãéá\n"
+"íá ëåéôïõñãÞóåé óùóôÜ, ðáñ' üëï ðïõ óõíÞèùò ëåéôïõñãåß êáé ÷ùñßò áõôÝò.\n"
+"Èá èÝëáôå íá äþóåôå åðéðëÝïí åðéëïãÝò Þ íá áöÞóåôå ôïí ïäçãü íá åîåôÜóåé\n"
+"ôï õëéêü óáò ãéá ôéò ðáñáìÝôñïõò ðïõ ÷ñåéÜæåôáé; Ç åîÝôáóç áõôÞ ßóùò\n"
+"ðñïêáëÝóåé ðÜãùìá ôïõ óõóôÞìáôïò, áëëÜ äåí èá ðñïêáëÝóåé âëÜâç."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Multisession CD"
-msgstr "Óôáèìüò ðïëõìÝóùí"
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
+msgstr "Áõôüìáôç åîÝôáóç"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated strings"
-msgstr ""
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "Ðñïóäéïñéóìüò ðáñáìÝôñùí"
-#: ../../standalone/scannerdrake:1
+#: ../../any.pm_.c:719
#, c-format
-msgid "These are the machines from which the scanners should be used:"
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
-"ÁõôÜ åßíáé ôá ìç÷áíÞìáôá áðü üðïõ ïé óáñùôÝò èá ðñÝðåé íá ÷ñçóéìïðïéçèïýí:"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Messages"
-msgstr "Ìçíýìáôá"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "¶ãíùóôï|CPH06X (bt878) [ðïëëïß êáôáóêåõáóôÝò]"
+"Ç öüñôùóç ôïõ áñèñþìáôïò %s áðÝôõ÷å.\n"
+"ÈÝëåôå íá äïêéìÜóåôå îáíÜ ìå äéáöïñåôéêÝò ðáñáìÝôñïõò;"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "ÅîõðçñåôçôÞò POP êáé IMAP"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
+msgstr "ðñüóâáóç óå ðñïãñÜììáôá ×"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mexico"
-msgstr "Ìåîéêü"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
+msgstr "ðñüóâáóç óå åñãáëåßá rpm"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model stepping"
-msgstr "ÌïíôÝëï âçìáôéóìïý"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
+msgstr "äõíáôüôçôá \"su\""
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
-msgstr "ÑïõÜíôá"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
+msgstr "ðñüóâáóç óå äéá÷åéñéóôéêÜ áñ÷åßá"
-#: ../../lang.pm:1
-#, c-format
-msgid "Switzerland"
-msgstr "Åëâåôßá"
+#: ../../any.pm_.c:738
+msgid "access to network tools"
+msgstr "ðñüóâáóç óå åñãáëåßá äéêôýïõ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr "ÌðñïõíÝé ÍôáñïõóáëÜì"
+#: ../../any.pm_.c:739
+msgid "access to compilation tools"
+msgstr ""
-#: ../../modules/interactive.pm:1
+#: ../../any.pm_.c:744
#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "¸÷åôå êÜðïéïí ðñïóáñìïãÝá %s;"
+msgid "(already added %s)"
+msgstr "(ôï %s Ý÷åé Þäç ðñïóôåèåß)"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "Äçìéïõñãßá ÁíôéãñÜöùí Áóöáëåßáò áðü ôï áñ÷åßï ñõèìßóåùí"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "Ï êùäéêüò ðñüóâáóçò åßíáé ðïëý áðëüò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "ÅðéëïãÝò áðïìáêñõóìÝíïõ lpd åêôõðùôÞ"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
+msgstr "Ðáñáêáëþ åéóÜãåôå üíïìá ÷ñÞóôç"
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../any.pm_.c:751
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 ""
-"Linux ÷ñÞóôçò ÷ñÞóôçò\n"
-"\n"
-" ÷ñÞóôçò\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" ÷ñÞóôçò\n"
-"\n"
-"\n"
-"\n"
-" ÷ñÞóôçò\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" ×ñÞóôçò\n"
-" ÷ñÞóôçò\n"
-" åî' ïñéóìïý\n"
-" ÷ñÞóôçò\n"
-"\n"
-" áðëü\n"
-"\n"
-"\n"
-" Áðïäï÷Þ ÷ñÞóôçò ÐñïóèÞêç ÷ñÞóôçò\n"
-"\n"
-" Åðüìåíï\n"
-"\n"
-" Ãéá Ðñï÷ùñçìÝíïõò åî' ïñéóìïý\n"
-" ÷ñÞóôçò åî' ïñéóìïý\n"
-"\n"
-" Ðüôå ÷ñÞóôçò\n"
-"\n"
-"\n"
-" ÷ñÞóôçò Åðüìåíï\n"
-" Ïëïêëçñþèçêå\n"
-"."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Internet Access..."
-msgstr "Ñýèìéóç Ðñüóâáóçò óôï Äéáäßêôõï..."
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please choose the time interval between each backup"
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
-"Ðáñáêáëþ åðéëÝîôå ôï \n"
-"äéÜóôçìá ìåôáîý ôïõ êÜèå\n"
-"áíôßãñáöïõ áóöáëåßáò"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Norway"
-msgstr "Íïñâçãßá"
+"Ôï êùäéêü üíïìá ìðïñåß íá ðåñéÝ÷åé ìüíï ðåæÜ ãñÜììáôá, áñéèìïýò, `-' êáé `_'"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Delete profile"
-msgstr "ÄéáãñáöÞ ðñïößë..."
+#: ../../any.pm_.c:752
+msgid "The user name is too long"
+msgstr "Áõôü ôï üíïìá ÷ñÞóôç åßíáé ðïëý ìáêñý"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Danish"
-msgstr "Äáíéêü"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "Áõôü ôï üíïìá ÷ñÞóôç õðÜñ÷åé Þäç"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Áõôüìáôç åíåñãïðïßçóç ôïõ numlock ðëÞêôñïõ óôçí êïíóüëá\n"
-"êáé ôï XFree êáôÜ ôçí åêêßíçóç ôïõ óõóôÞìáôïò."
+#: ../../any.pm_.c:757
+msgid "Add user"
+msgstr "ÐñïóèÞêç ÷ñÞóôç"
-#: ../../network/network.pm:1
+#: ../../any.pm_.c:758
#, c-format
msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Ðáñáêáëþ åéóÜãåôå ôéò IP ñõèìßóåéò ãéá áõôü ôï óýóôçìá.\n"
-"ÊÜèå óôïé÷åßï ðñÝðåé íá åéóá÷èåß ùò IP äéåýèõíóç ìå áñéèìïýò\n"
-"÷ùñéóìÝíïõò ìå ôåëåßåò (ðáñÜäåéãìá: 1.2.3.4)."
-
-#: ../../help.pm:1
-#, fuzzy, 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."
+"Enter a user\n"
+"%s"
msgstr ""
-"Ç åãêáôÜóôáóç ôïõ Mandrake Linux åßíáé ìïéñáóìÝíï óå áñêåôÜ CD-ROM. Ôï \n"
-"DrakX îÝñåé áí Ýíá åðéëåãìÝíï ðáêÝôï õðÜñ÷åé óå Üëëï CD-ROM, èá åîÜãåé ôï \n"
-"ôñÝ÷ïí CD êáé èá æçôÞóåé íá åéóÜãåôå Ýíá Üëëï üôáí áõôü èá ÷ñåéáóôåß."
+"ÅéóÜãåôå ÷ñÞóôç\n"
+"%s"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "When checked, owner and group won't be changed"
-msgstr "üôáí åðéëåãåß, ï éäéïêôÞôçò êáé ïìÜäá äåí èá áëëÜîïõí"
+#: ../../any.pm_.c:759
+msgid "Accept user"
+msgstr "Áðïäï÷Þ ÷ñÞóôç"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "Âïõëãáñßá"
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "Ðñáãìáôéêü üíïìá"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
-msgstr "Ôñßôç"
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "¼íïìá ÷ñÞóôç"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "ÅðåîåñãáóôÝò"
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "Öëïéüò (shell)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "ÍÞóïé ÓâÜëìðáñíô êáé Ãéáí ÌÜãéåí"
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "Åéêïíßäéï"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No NIC selected!"
-msgstr "Äå åðéëÝ÷ôçêå NIC!"
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "Áõôüìáôç óýíäåóç"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../any.pm_.c:804
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."
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
-"ÐñïâëÞìáôá êáôÜ ôç ñýèìéóç.\n"
-"ÄïêéìÜóôå ôç óýíäåóç ìå ôï net_monitor Þ ôï mcc. Áí äåí ëåéôïõñãÞóåé ç "
-"óýíäåóç, ôüôå èá ðñÝðåé íá åêêéíÞóåôå îáíÜ ôç ñýèìéóç."
+"Ìðïñþ íá ñõèìßóù ôï óýóôçìÜ óáò Ýôóé þóôå íá óõíäÝåôáé áõôüìáôá êáôÜ\n"
+"ôçí åêêßíçóç óå Ýíáí ÷ñÞóôç.\n"
+"ÈÝëåôå áõôÞ ôçí äõíáôüôçôá;"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "Ç êáôÜôìçóç %s åßíáé ôþñá ãíùóôÞ ùò %s "
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "ÅðéëÝîôå ôïí ðñïåðéëåãìÝíï ÷ñÞóôç:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Other files..."
-msgstr "Áíôßãñáöï Áóöáëåßáò ¶ëëùí áñ÷åßùí..."
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
+msgstr "ÅðéëÝîôå ôïí äéá÷åéñéóôÞ ðáñáèýñùí ðïõ èÝëåôå íá ÷ñçóéìïðïéÞóåôå:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
+#: ../../any.pm_.c:824
+msgid "Please choose a language to use."
+msgstr "Ðáñáêáëþ åðéëÝîôå ôç ãëþóóá."
+
+#: ../../any.pm_.c:826
+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 ""
+"Ôï Mandrake Linux õðïóôçñßæåé ðïëëáðëÝò ãëþóóåò.ÅðéëÝîôå \n"
+"ôéò Üëëåò ãëþóóåò ðïõ èá åßíáé äéáèÝóéìåò ìåôÜ ôï ðÝñáò ôçò \n"
+"åãêáôÜóôáóçò êáé ôçí åðáíåêêßíçóç ôïõ óõóôÞìáôüò óáò."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "IP äéåýèõíóç SMB åîõðçñåôçôÞ"
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "¼ëá"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Ï ðßíáêáò êáôáôìÞóåùí ôïõ äßóêïõ %s èá áðïèçêåõôåß óôïí äßóêï!"
+#: ../../any.pm_.c:961
+msgid "Allow all users"
+msgstr "ÅðéôñÝðåôáé ãéá üëïõò ôïõò ÷ñÞóôåò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing HPOJ package..."
-msgstr "ÅãêáôÜóôáóç ðáêÝôïõ HPOJ..."
+#: ../../any.pm_.c:961
+msgid "No sharing"
+msgstr "×ùñßò êïéíÞ ÷ñÞóç"
-#: ../../any.pm:1
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
#, c-format
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr "Ôï ðáêÝôï %s ðñÝðåé íá áíáâáèìéóôåß. ÈÝëåôå íá ôï åãêáôáóôÞóåôå;"
+
+#: ../../any.pm_.c:973
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"
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-"Ìéá ðñïóáñìïóìÝíç äéóêÝôá åêêßíçóçò óáò äßíåé ôçí äõíáôüôçôá íá åêêéíÞóåôå\n"
-"ôï óýóôçìÜ óáò ÷ùñßò ôçí ÷ñÞóç ôïõ ðñïãñÜììáôïò åêêßíçóçò. Áõôü åßíáé "
-"÷ñÞóéìï åÜí äåí èÝëåôå\n"
-"íá åãêáôáóôÞóåôå ôï LILO (Þ ôï grub), åÜí êÜðïéï Üëëï ëåéôïõñãéêü "
-"êáôáóôñÝøåé ôï LILO\n"
-"Þ åÜí ïé ñõèìßóåéò óáò äåí åðéôñÝðïõí ôç ÷ñÞóç LILO. ÁõôÞ ç äéóêÝôá ìðïñåß\n"
-"åðßóçò íá ÷ñçóéìïðïéçèåß óå óõíäõáóìü ìå ôçí äéóêÝôá äéÜóùóçò ôïõ Mandrake,\n"
-"êÜíïíôáò åõêïëüôåñç ôçí åðáíáöïñÜ ôïõ óõóôÞìáôïò ìåôÜ áðü óïâáñÞ âëÜâç.\n"
-"ÈÝëåôå íá äçìéïõñãÞóåôå äéóêÝôá åêêßíçóçò;\n"
-"%s"
+"Ìðïñåßôå íá ãßíåé åîáãùãÞ ìå ôçí ÷ñÞóç NFS Þ Samba. Ðáñáêáëþ åðéëÝîôå ðïßï "
+"èÝëåôå."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
+#, c-format
+msgid "Mandatory package %s is missing"
+msgstr "¸íá áðáñáßôçôï áñ÷åßï (ôï %s ) äåí õðÜñ÷åé"
+
+#: ../../any.pm_.c:987
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 ""
+"ÈÝëåôå íá åðéôñÝøåôå óôïõò ÷ñÞóôåò íá Ý÷ïõí êïéíü÷ñçóôïõò êáôáëüãïõò;\n"
+"Áí íáé ôüôå ïé ÷ñÞóôåò èá ìðïñïýí áðëÜ íá êÜíïõí êëéê óôï \"Êïéíü÷ñçóôï\" "
+"óôïí konqueror êáé ôï nautilus.\n"
"\n"
-" Äáßìïíáò áíáöïñÜò DrakBackup \n"
-"\n"
-"\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latvian"
-msgstr "Ëåôïíéêü"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr "ìçíéáßá"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Retry"
-msgstr "ÅðáíáöïñÜ"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr "¼íïìá áñèñþìáôïò"
+"Ôï \"ÐñïóáñìïóìÝíï\" åðéôñÝðåé ôçí áíÜ ÷ñÞóôç ñýèìéóç.\n"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Start at boot"
-msgstr "Óôçí åêêßíçóç óõóôÞìáôïò"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
+msgstr "Åêêßíçóç userdrake"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
+#: ../../any.pm_.c:1003
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
msgstr ""
+"Ôï êïéíü÷ñçóôï áíÜ ÷ñÞóôç êÜíåé ÷ñÞóç ôçò ïìÜäáò \"fileshare\". \n"
+"Ìðïñåßôå íá ôçí ðñïóèÝóåôå óôïí êÜèå ÷ñÞóôç óå áõôÞ ôçí ïìÜäá ìå ôï "
+"userdrake."
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "Ðñþôïò ôïìÝáò ôïõ äßóêïõ (MBR)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "Åë Óáëâáäüñ"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
-msgstr "Joystick"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "DVD"
-msgstr "DVD-ROM"
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
+msgstr "Êáëþò ïñßóáôå óôïõò Crackers"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
-msgstr "ÐñïåðéëåãìÝíç ç ÷ñÞóç Unicode"
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Öôù÷ü"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "ôï Üñèñùìá ôïõ ðõñÞíá GNU/Linux ðïõ ÷åéñßæåôáé ôçí óõóêåõÞ"
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
+msgstr "Ôõðéêü"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Ôï ñïëüé ôïõ õðïëïãéóôÞ óáò åßíáé ñõèìéóìÝíï óå GMT (þñá Ãêñßíïõéôò)"
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Õøçëü"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "ÐñïóðÜèåéá äéÜóùóçò ðßíáêá êáôáôìÞóåùí"
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+msgid "Higher"
+msgstr "Õøçëüôåñï"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Ç åðéëïãÞ %s ðñÝðåé íá åßíáé áêÝñáéïò áñéèìüò!"
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "Ðáñáíïúêü"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
+#: ../../any.pm_.c:1061
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+"but very sensitive: it must not be used for a machine connected to others\n"
+"or to the Internet. There is no password access."
msgstr ""
+"Áõôü ôï åðßðåäï ðñÝðåé íá ÷ñçóéìïðïéçèåß ìå ðñïóï÷Þ. ÊÜíåé ôï óýóôçìÜ óáò\n"
+"ðéï åý÷ñçóôï, áëëÜ ðïëý åõáßóèçôï. Äåí ðñÝðåé íá ÷ñçóéìïðïéçèåß óå óýóôçìá\n"
+"óõíäåäåìÝíï óôï Äéáäßêôõï Þ LAN. Äåí õðÜñ÷ïõí êùäéêïß ðñüóâáóçò."
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../any.pm_.c:1064
msgid ""
-"Entries you'll have to fill:\n"
-"%s"
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
-"Ðåäßá ðïõ èá ðñÝðåé íá óõìðëçñþóåôå:\n"
-"%s"
+"Ôþñá õðÜñ÷ïõí êùäéêïß ðñüóâáóçò, áëëÜ ç ÷ñÞóç ôïõ óõóôÞìáôïò óå äßêôõï áêüìá "
+"äåí óõíßóôáôáé."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1065
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."
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
+"Áõôü åßíáé ôï óõíçèéóìÝíï åðßðåäï áóöáëåßáò ãéá Ýíá óýóôçìá ðïõ èá óõíäåèåß "
+"ùò ðåëÜôçò óôï Äéáäßêôõï."
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Äåí ìðïñþ íá îåêéíÞóù ôï live upgrade!!!\n"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "¼íïìá: "
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
+#: ../../any.pm_.c:1066
+msgid ""
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
+"ÕðÜñ÷ïõí Þäç êÜðïéïé ðåñéïñéóìïß, êáé ðåñéóóüôåñïé Ýëåã÷ïé åêôåëïýíôáé êÜèå "
+"âñÜäõ."
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 åêáôïììýñéá ÷ñþìáôá (24 bits)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Allow all users"
-msgstr "ÅðéôñÝðåôáé ãéá üëïõò ôïõò ÷ñÞóôåò"
-
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr "Ôï åðßóçìï êáôÜóôçìá ôçò MandrakeSoft"
-
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "ÁëëáãÞ ìåãÝèïõò"
+#: ../../any.pm_.c:1067
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
+"connections from many clients. Note: if your machine is only a client on the "
+"Internet, you should choose a lower level."
+msgstr ""
+"Ìå áõôü ôï åðßðåäï áóöáëåßáò åßíáé äõíáôÞ ç ÷ñÞóç ôïõ óõóôÞìáôïò óôï ùò "
+"åîõðçñåôçôÞ.\n"
+"Ç áóöÜëåéá åßíáé áñêåôÜ õøçëÞ þóôå íá äÝ÷åôáé ôáõôü÷ñïíåò óõíäÝóåéò áðü "
+"ðïëëïýò ðåëÜôåò.\n"
+"Óçì: Áí ôï ìç÷Üíçìá åßíáé ìüíï ãéá ôçí ÷ñÞóç ùò ðåëÜôç óôï Äéáäßêôõï ôüôå "
+"êáëýôåñá íá åðéëÝîåôå ÷áìçëüôåñï åðßðåäï áóöÜëåéáò"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#: ../../any.pm_.c:1070
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-"Ðáñáêáëþ åðéëÝîôå ôï ìÝãéóôï ìÝãåèïò\n"
-"ðïõ åðéôñÝðåôáé óôï Drakbackup"
+"Ç áóöÜëåéá åßíáé ßäéá ôïõ ðñïçãïýìåíïõ åðéðÝäïõ, ìå ôï óýóôçìá ôåëåßùò "
+"êëåéóôü. Ç áóöÜëåéá åßíáé óôï ìÝãéóôï äõíáôü."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Cable connection"
-msgstr "ÊáëùäéáêÞ óýíäåóç"
+#: ../../any.pm_.c:1076
+msgid "DrakSec Basic Options"
+msgstr "ÂáóéêÝò ÅðéëïãÝò DrakSec"
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, c-format
-msgid "User"
-msgstr "×ñÞóôçò"
+#: ../../any.pm_.c:1077
+msgid "Please choose the desired security level"
+msgstr "ÅðéëÝîôå ôï åðéèõìçôü åðßðåäï áóöáëåßáò"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Ïëïêëçñþèçêå íÝï"
+#: ../../any.pm_.c:1080
+msgid "Security level"
+msgstr "Åðßðåäï áóöáëåßáò"
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "áðïôõ÷ßá mkraid"
+#: ../../any.pm_.c:1082
+msgid "Use libsafe for servers"
+msgstr "×ñÞóç libsafe ãéá äéáêïìéóôÝò"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Name"
-msgstr "¼íïìá"
+#: ../../any.pm_.c:1083
+msgid ""
+"A library which defends against buffer overflow and format string attacks."
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Ðñïóïìïßùóç 3 Êïõìðéþí"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
+msgstr "Äéá÷åéñéóôÞò Áóöáëåßáò (ðñïóðÝëáóç Þ ôá÷õäñïìåßï)"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Check additions/removals of sgid files"
-msgstr "áí ïñéóôåß íáé, Ýëåã÷ïò ãéá ðñïóèÞêç/áöáßñåóç áñ÷åßùí sgid."
+#: ../../any.pm_.c:1166
+msgid ""
+"Here you can choose the key or key combination that will \n"
+"allow switching between the different keyboard layouts\n"
+"(eg: latin and non latin)"
+msgstr ""
+"Åäþ ìðïñåßôå íá åðéëÝîåôå ôï ðëÞêôñï Þ ôïí óõíäõáóìü\n"
+"ðëÞêôñùí åíáëëáãÞò ôùí äéáôÜîåùí ðëçêôñïëïãßùí\n"
+"(ð.÷. ÁããëéêÞ Þ ÅëëçíéêÞ)"
-#: ../../standalone/drakbackup:1
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, c-format
-msgid "Sending files..."
-msgstr "ÁðïóôïëÞ áñ÷åßùí..."
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"KALOS HRTHATE STON EPILOGEA LEITOURGIKOU SYSTHMATOS %s!\n"
+"\n"
+"EPILEXTE LEITORGIKO SYSTHMA APO TON PARAPANO KATALOGO \n"
+"H PERIMENETE %d DEUTEROLEPTA GIA THN AYTOMATH EPILOGH.\n"
+"\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "ÉóñáÞë (öùíçôéêü)"
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Welcome to GRUB the operating system chooser!"
-#: ../../any.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:986
#, c-format
-msgid "access to rpm tools"
-msgstr "ðñüóâáóç óå åñãáëåßá rpm"
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Use the %c and %c keys for selecting which entry is highlighted."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must choose/enter a printer/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_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Press enter to boot the selected OS, 'e' to edit the"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Ðñüâëçìá äéêáéùìÜôùí óôçí ðñüóâáóç ôïõ CD."
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "commands before booting, or 'c' for a command-line."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:995
#, c-format
-msgid "Phone number"
-msgstr "Áñéèìüò ôçëåöþíïõ"
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr "ÓöÜëìá: Ï ïäçãüò \"%s\" ôçò êÜñôáò Þ÷ïõ óáò äåí õðÜñ÷åé óôç ëßóôá"
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
+msgstr "äåí õðÜñ÷åé áñêåôüò ÷þñïò óôï /boot"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer name, description, location"
-msgstr "¼íïìá åêôõðùôÞ, ðåñéãñáöÞ, èÝóç"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "Desktop"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
-msgstr "USA (åíáÝñéá)"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "Start Menu"
-#: ../../Xconfig/card.pm:1
+#: ../../bootloader.pm_.c:1120
#, c-format
-msgid "Use Xinerama extension"
-msgstr "×ñÞóç åðÝêôáóçò Xinerama"
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "Äåí ìðïñåßôå íá åãêáôáóôÞóåôå ôï ðñüãñáììá åêêßíçóçò óå êáôÜôìçóç %s\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback"
-msgstr "Loopback"
+#: ../../bootlook.pm_.c:53
+msgid "Boot Style Configuration"
+msgstr "Ñýèìéóç Ôýðïõ Åêêßíçóçò"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "West Europe"
-msgstr "ÄõôéêÞ Åõñþðç"
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
+msgstr "/_Áñ÷åßï"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On CD-R"
-msgstr "óôï CDROM"
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
+msgstr "/Áñ÷åßï/¸_îïäïò"
-#: ../../standalone.pm:1
-#, 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"
-msgstr ""
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
+msgstr "<control>Q"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake2 version %s"
-msgstr "¸êäïóç Harddrake2 %s"
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
+msgstr "NewStyle Categorizing Ïèüíç"
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Preferences"
-msgstr "Ðñïôßìçóç: "
+#: ../../bootlook.pm_.c:83
+msgid "NewStyle Monitor"
+msgstr "NewStyle Ïèüíç"
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr "ÓïõáæéëÜíäç"
+#: ../../bootlook.pm_.c:84
+msgid "Traditional Monitor"
+msgstr "ÐáñáäïóéáêÞ Ïèüíç"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "ÄïìéíéêáíÞ Äçìïêñáôßá"
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
+msgstr "ÐáñáäïóéáêÞ Gtk+ Ïèüíç"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr "ÁíôéãñáöÞ %s"
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
+msgstr "Åêêßíçóç ôïõ Aurora êáôÜ ôçí åêêßíçóç"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Choose color"
-msgstr "ÅðéëÝîôå ÷ñþìá"
+#: ../../bootlook.pm_.c:89
+msgid "Lilo/grub mode"
+msgstr "Ëåéôïõñãßá Lilo/grub"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Syriac"
-msgstr "Óõñßá"
+#: ../../bootlook.pm_.c:89
+msgid "Yaboot mode"
+msgstr "Ëåéôïõñãßá Yaboot"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
-msgstr "Ïñéóìüò UID"
+#: ../../bootlook.pm_.c:138
+msgid "Install themes"
+msgstr "ÅãêáôÜóôáóç èåìÜôùí"
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:139
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!"
+"Display theme\n"
+"under console"
msgstr ""
-"ÅðéëÝîôå ôïí äßóêï ðïõ èÝëåôå íá äéáãñÜøåôå ãéá íá åãêáôáóôÞóåôå \n"
-"ôçí íÝá êáôÜôìçóç Mandrake Linux. ÐÑÏÓÏ×Ç: ¼ëá ôá äåäïìÝíá èá äéáãñáöïýí\n"
-"êáé èá åßíáé áäýíáôç ç åðáíáöïñÜ ôïõò!"
+"ÅìöÜíéóç èÝìáôïò\n"
+"óôçí êïíóüëá"
-#. -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
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Use the %c and %c keys for selecting which entry is highlighted."
+#: ../../bootlook.pm_.c:140
+msgid "Create new theme"
+msgstr "Äçìéïõñãßá íÝïõ èÝìáôïò"
-#: ../../mouse.pm:1
+#: ../../bootlook.pm_.c:184
#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Ãåíéêïý ôýðïõ ìå 2 ðëÞêôñá"
+msgid "Backup %s to %s.old"
+msgstr "Áíôßãñáöï Áóöáëåßáò ôïõ %s óå %s.old"
-#: ../../standalone/drakperm:1
+#: ../../bootlook.pm_.c:187
#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr ""
+msgid "Copy %s to %s"
+msgstr "ÁíôéãñáöÞ %s óå %s"
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr "ÁöáéñÝóôå ðñþôá ôéò ëïãéêÝò ìïíÜäåò\n"
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+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
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "The highlighted entry will be booted automatically in %d seconds."
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
+msgstr "Äåí âñÝèçêå ôï ìÞíõìá lilo"
-#: ../../standalone/drakboot:1
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr "Áäõíáìßá åããñáöÞò ôïõ /etc/sysconfig/bootsplash."
+
+#: ../../bootlook.pm_.c:222
#, c-format
+msgid "Write %s"
+msgstr "ÅããñáöÞ %s"
+
+#: ../../bootlook.pm_.c:224
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1848,3194 +1298,1965 @@ msgstr ""
"Áäõíáìßá åããñáöÞò /etc/sysconfig/bootsplash\n"
"Ôï áñ÷åßï äåí âñÝèçêå."
-#: ../../standalone/drakconnect:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Internet access"
-msgstr "Ðñüóâáóç óôï Äéáäßêôõï"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr "Áäõíáìßá åêêßíçóçò mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../standalone/draksplash:1
+#: ../../bootlook.pm_.c:238
#, c-format
-msgid ""
-"y coordinate of text box\n"
-"in number of characters"
-msgstr ""
-"óõíôåôáãìÝíç y ôïõ ðëáéóßïõ êåéìÝíïõ\n"
-"óå áñéèìü ÷áñáêôÞñùí"
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr "Äçìéïõñãßá initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:244
msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-"Ãéá ìéá ëßóôá ìå ôéò äéáèÝóéìåò åíôïëÝò ãéá ôïí ôñÝ÷ïí åêôõðùôÞ êÜíôå êëéê "
-"óôï ðëÞêôñï \"Åêôýðùóç ëßóôáò åíôïëþí\"."
+"Áäõíáìßá åðáíåêêßíçóçò ôïõ LiLo!\n"
+"ÅêôåëÝóôå \"lilo\" ùò root óôçí ãñáììÞ åíôïëþí ãéá íá ïëïêëçñùèåß ç "
+"åãêáôÜóôáóç ôïõ èÝìáôïò LiLo"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr "Åíåñãïðïßçóç åîõðçñåôçôþí..."
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
+msgstr "Åðáíåêêßíçóç 'lilo'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Åêôýðùóç äïêéìáóôéêþí óåëßäùí..."
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+msgid "Notice"
+msgstr "Óçìåßùóç"
+
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr "Åðéôõ÷Þò åãêáôÜóôáóç èåìÜôùí LiLo êáé Bootsplash"
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:251
+msgid "Theme installation failed!"
+msgstr "Ç åãêáôÜóôáóç èÝìáôïò áðÝôõ÷å!"
+
+#: ../../bootlook.pm_.c:259
#, 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."
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"Åðéôõ÷Þò ìåôáöïñÜ\n"
-"ºóùò íá ÷ñåéáóôåß íá åðáëçèåýóåôå üôé ìðïñåßôå íá ðñïóðåëÜóåôå ôïí "
-"äéáêïìéóôÞ ìå:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"÷ùñßò íá æçôçèåß êùäéêüò ðñüóâáóçò."
+"×ñçóéìïðïéåßôå ôïí %s ùò ðñüãñáììá åêêßíçóçò.\n"
+"ÊÜíôå êëéê óôï Ñýèìéóç ãéá íá îåêéíÞóåôå ôïí ïäçãü åãêáôÜóôáóçò."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "ÕðÜñ÷åé Þäç êáôÜôìçóç ìå óçìåßï óýíäåóçò %s\n"
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
+msgstr "Ñýèìéóç"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Enable/Disable msec hourly security check."
-msgstr ""
-"\n"
-"\n"
-" ùñéáßá."
+#: ../../bootlook.pm_.c:268
+msgid "Splash selection"
+msgstr "ÔìÞìá Splash"
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:271
+msgid "Themes"
+msgstr "ÈÝìáôá"
+
+#: ../../bootlook.pm_.c:273
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''."
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
msgstr ""
"\n"
-" Linux\n"
-"\n"
-"\n"
-" íÝï\n"
-" Linux\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" ÷ñÞóôçò\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" áíé÷íåýèçêå\n"
-" Linux\n"
-"\n"
-" åî' ïñéóìïý\n"
-"\n"
-"\n"
-" ÔïìÝáò Windows ÔïìÝáò Windows \n"
-"\n"
-" Linux ÄéáãñáöÞ\n"
-" ÔïìÝáò Windows \n"
-" ÔïìÝáò Windows ÁëëáãÞ ìåãÝèïõò\n"
-"\n"
-" ÔïìÝáò Windows \n"
-"\n"
-" Linux ÔïìÝáò Windows \n"
-"\n"
-"\n"
-" ÔïìÝáò Windows \n"
-"\n"
-" ÔïìÝáò Windows íÝï\n"
-"\n"
-" ÄéáãñáöÞ\n"
-" íÝï Linux\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Ëßóôá Áöáßñåóçò ÔïìÝáò Windows \n"
-" ¼ëá\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" ÐñïóáñìïóìÝíï\n"
-"\n"
-"\n"
-" Ïëïêëçñþèçêå\n"
-"\n"
-"\n"
-"."
+"ÅðéëÝîôå ôï èÝìá \n"
+"ãéá ôï lilo êáé ôï\n"
+"bootsplash, ìðïñåßôå\n"
+"íá ôá åðéëÝîåôå êáé\n"
+"îå÷ùñéóôÜ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
-msgstr "Ïõêñáíßá"
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
+msgstr "Ïèüíç Lilo"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Application:"
-msgstr "ÅöáñìïãÞ:"
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
+msgstr "Bootsplash"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "External ISDN modem"
-msgstr "Åîùôåñéêü ISDN modem"
+#: ../../bootlook.pm_.c:316
+msgid "System mode"
+msgstr "ÊáôÜóôáóç óõóôÞìáôïò"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr "áí ïñéóôåß íáé, áðïôÝëåóìá áíáöïñÜò åëÝã÷ïõ ìÝóù ôá÷õäñïìåßïõ."
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
+msgstr "Ëåéôïõñãßá ãñáöéêïý ðåñéâÜëëïíôïò êáôÜ ôçí åêêßíçóç ôïõ óõóôÞìáôïò"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Ç åðéëïãÞ óáò; (åî ïñéóìïý %s)"
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
+msgstr "¼÷é, äåí åðéèõìþ áõôüìáôç ðñïóðÝëáóç"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr "Åðßëõóç ðñïâëçìÜôùí"
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "Íáé, åðéèõìþ áõôüìáôç ðñïóðÝëáóç ìå (÷ñÞóôçò, ðåñéâÜëëïí)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Ìßá Þ ðåñéóóüôåñåò äïêéìáóôéêÝò óåëßäåò óôÜëèçêáí óôïí åêôõðùôÞ.\n"
-"Ìðïñåß íá ðåñÜóåé êÜðïéïò ÷ñüíïò ìÝ÷ñé ç åêôýðùóç íá îåêéíÞóåé.\n"
-"ÊáôÜóôáóç åêôýðùóçò:\n"
-"%s\n"
-"\n"
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
+msgstr "ÅíôÜîåé"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
-msgstr "êáèçìåñéíÜ"
+#: ../../common.pm_.c:107
+msgid "GB"
+msgstr "GB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and one unknown printer"
-msgstr "êáé Ýíáò Üãíùóôïò åêôõðùôÞò"
+#: ../../common.pm_.c:107
+msgid "KB"
+msgstr "KB"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Ireland"
-msgstr "Éñëáíäßá"
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "MB"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Restore Configuration "
-msgstr " Ñõèìßóåéò ÅðáíáöïñÜò "
+#: ../../common.pm_.c:115
+msgid "TB"
+msgstr "TB"
-#: ../../Xconfig/test.pm:1
+#: ../../common.pm_.c:123
#, c-format
-msgid "Is this the correct setting?"
-msgstr "Åßíáé óùóôÞ ç ñýèìéóç;"
-
-#: ../../help.pm:1
-#, fuzzy, 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."
-msgstr ""
-"Äéáäßêôõï\n"
-" Äéáäßêôõï Åðüìåíï\n"
-" Linux\n"
-"\n"
-"\n"
-" ¶êõñï\n"
-"\n"
-" Ðüôå\n"
-"\n"
-" áðëü\n"
-"\n"
-"\n"
-" åî' ïñéóìïý\n"
-" Äéáäßêôõï\n"
-"\n"
-" Äéáäßêôõï\n"
-"\n"
-"."
+msgid "%d minutes"
+msgstr "%d ëåðôÜ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Ñõèìßóåéò Ïäçãïý"
+#: ../../common.pm_.c:125
+msgid "1 minute"
+msgstr "1 ëåðôü"
-#: ../../modules/interactive.pm:1
+#: ../../common.pm_.c:127
#, c-format
-msgid "Autoprobe"
-msgstr "Áõôüìáôç åîÝôáóç"
+msgid "%d seconds"
+msgstr "%d äåõôåñüëåðôá"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid ""
-"if set to yes, check for :\n"
-"\n"
-"- empty passwords,\n"
-"\n"
-"- no password in /etc/shadow\n"
-"\n"
-"- for users with the 0 id other than root."
-msgstr ""
-"áí ïñéóôåß íáé, Ýëåã÷ïò ãéá êåíïýò êùäéêïýò ðñüóâáóçò, ãéá êáíÝíáí êùäéêü "
-"ðñüóâáóçò óôï /etc/shadow êáé ãéá ÷ñÞóôåò ìå id 0 åêôüò áðü ôïí root."
+#: ../../common.pm_.c:172
+msgid "Can't make screenshots before partitioning"
+msgstr "Áäýíáôç ç ëÞøç óôéãìéïôýðùí ðñéí áðü ôçí äçìéïõñãßá êáôáôìÞóåùí"
-#: ../../standalone/drakbackup:1
+#: ../../common.pm_.c:179
#, c-format
-msgid "Backup system files..."
-msgstr "Áíôßãñáöï Áóöáëåßáò óõóôÞìáôïò áñ÷åßùí..."
+msgid "Screenshots will be available after install in %s"
+msgstr "Ôá óôéãìéüôõðá èá åßíáé äéáèÝóéìá ìåôÜ ôçí åãêáôÜóôáóçò óôï %s"
-#: ../../any.pm:1
-#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Äåí ìðïñþ íá ÷ñçóéìïðïéÞóù broadcast ÷ùñßò ôïìÝá NIS"
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+msgid "France"
+msgstr "Ãáëëßá"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Ãßíåôáé áöáßñåóç ôïõ åêôõðùôÞ \"%s\"..."
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
+msgstr "Êüóôá Ñßêá"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell history size"
-msgstr ""
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+msgid "Belgium"
+msgstr "ÂÝëãéï"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
+msgstr "ÔóÝ÷éêç Äçìïêñáôßá"
-#: ../../standalone/drakpxe:1
-#, 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"
-msgstr ""
-"Ðáñáêáëþ äçëþóôå ôç èÝóç ôïõ áñ÷åßïõ auto_install.cfg file is located.\n"
-"\n"
-"ÁöÞóôå ôï êåíü áí äåí èÝëåôå íá êÜíåôå ÷ñÞóç ôçò áõôüìáôçò åãêáôÜóôáóçò.\n"
-"\n"
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+msgid "Germany"
+msgstr "Ãåñìáíßá"
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configured on other machines"
-msgstr "Ñýèìéóç ôçò óýíäåóçò"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+msgid "Greece"
+msgstr "ÅëëÜäá"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "Åðßðåäï ðëçñïöïñéþí ðïõ ìðïñïýí íá âñåèïýí ìÝóù ôùí åíôïëþí cpuid"
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+msgid "Norway"
+msgstr "Íïñâçãßá"
-#: ../../lang.pm:1
-#, c-format
-msgid "Peru"
-msgstr "Ðåñïý"
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+msgid "Sweden"
+msgstr "Óïõçäßá"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " on device: %s"
-msgstr "Óôç ÓõóêåõÞ : %s"
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
+msgstr "Ïëëáíäßá"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "Áöáßñåóç Windows(TM)"
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+msgid "Italy"
+msgstr "Éôáëßá"
-#: ../../services.pm:1
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"ÎåêéíÜåé ôçí õðçñåóßá åîõðçñåôçôÞ ãñáììáôïóåéñþí X (áõôü åßíáé áðáñáßôçôï "
-"ãéá íá åêôåëåóôåß ôï XFree)."
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+msgid "Austria"
+msgstr "Áõóôñßá"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
+msgstr "Ç.Ð.Á."
+
+#: ../../diskdrake/dav.pm_.c:19
msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
+"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 ""
-"Ïé ðåñéóóüôåñåò ôéìÝò Ý÷ïõí åîá÷èåß \n"
-"áðü ôï óýóôçìÜ óáò\n"
-"ÁëëÜîôå ôéò áí ÷ñåéÜæåôáé."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-"ÅðéëÝîôå ôï áñ÷åßï ãñáììáôïóåéñÝò Þ ôïí êáôÜëïãï êáé êÜíôå êëéê óôï "
-"'ÐñïóèÞêç'"
+#: ../../diskdrake/dav.pm_.c:27
+msgid "New"
+msgstr "ÍÝï"
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "ÌáäáãáóêÜñç"
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Áðïóýíäåóç"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Óýíäåóç"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
-msgstr "Ôï cron äåí åßíáé áêüìá äéáèÝóéìç óôïõò ìç-root"
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
+msgstr "ÅîõðçñåôçôÞò"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "System"
-msgstr "Óýóôçìá"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Óçìåßï óýíäåóçò"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "ÈÝëåôå íá ÷ñçóéìïðïéÞóåôå áõôÞ ôç ëåéôïõñãßá;"
+#: ../../diskdrake/dav.pm_.c:85
+msgid "Please enter the WebDAV server URL"
+msgstr "Ðáñáêáëþ åéóÜãåôå ôçí äéåýèõíóç ôïõ åîõðçñåôçôÞ WebDAV"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr "Áñáâéêü"
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
+msgstr "Ç äéåýèõíóç ðñÝðåé íá îåêéíÜ ìå http:// Þ https://"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- ÅðéëïãÝò:\n"
+#: ../../diskdrake/dav.pm_.c:109
+msgid "Server: "
+msgstr "ÅîõðçñåôçôÞò:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Password required"
-msgstr "Áðáéôåßôáé êùäéêüò ðñüóâáóçò"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
+msgstr "Óçìåßï óýíäåóçò: "
-#: ../../common.pm:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "%d minutes"
-msgstr "%d ëåðôÜ"
+msgid "Options: %s"
+msgstr "ÅðéëïãÝò: %s"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Graphics card: %s"
-msgstr "ÊÜñôá ãñáöéêþí: %s"
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
+msgstr "Ðáñáêáëþ êÜíôå ðñþôá Ýíá áíôßãñáöï áóöáëåßáò ôùí äåäïìÝíùí óáò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV transfer failed!"
-msgstr "Ç ìåôáöïñÜ WebDAV áðÝôõ÷å!"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "ÄéáâÜóôå ðñïóåêôéêÜ!"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "Ñõèìßóåéò XFree"
+#: ../../diskdrake/hd_gtk.pm_.c:100
+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 ""
+"ÅÜí óêïðåýåôå íá ÷ñçóéìïðïéÞóåôå ôï aboot, ðñïóÝîôå íá áöÞóåôå åëåýèåñï ÷þñï "
+"(2048 ôïìåßò åßíáé áñêåôïß)\n"
+"óôçí áñ÷Þ ôïõ äßóêïõ"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "Ïäçãüò"
+
+#: ../../diskdrake/hd_gtk.pm_.c:187
msgid "Choose action"
msgstr "ÅðéëÝîôå ðñÜîç"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Polynesia"
-msgstr "ÃáëëéêÞ Ðïëõíçóßá"
-
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:191
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."
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" óåéñéáêü\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" åî' ïñéóìïý\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Ìå ñïäÜêé áíé÷íåýèçêå\n"
-"\n"
-"\n"
-" Åðüìåíï\n"
-" åíåñãïðïßçóç ôþñá\n"
-"\n"
-"\n"
-"."
-
-#: ../../services.pm:1
-#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "ÕðïóôÞñéîç ôùí OKI 4w êáé óõìâáôþí winprinters."
+"¸÷åôå ìéá ìåãÜëç FAT êáôÜôìçóç\n"
+"(óõíÞèùò ÷ñçóéìïðïéïýìåíç áðü Dos Þ Windows).\n"
+"Óõíéóôþ íá áëëÜîåôå ôï ìÝãåèüò ôçò ðñþôá\n"
+"(åðéëÝîôå ôçí, ìåôÜ åðéëÝîôå \"ÁëëáãÞ ìåãÝèïõò\")"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "Ðáñáêáëþ êÜíôå êëéê óå ìéá êáôÜôìçóç"
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Åêêßíçóç ôïõ ALSA (Advanced Linux Sound Architecture) óõóôÞìáôïò Þ÷ïõ"
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "ËåðôïìÝñåéåò"
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "ÅãêáôÜóôáóç ïäçãïý ãéá %s êÜñôá %s"
+#: ../../diskdrake/hd_gtk.pm_.c:254
+msgid "No hard drives found"
+msgstr "Äåí âñÝèçêáí äßóêïé!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"'¸÷åôå ìåôáöÝñåé ôïí ðñþçí ðñïåðéëåãìÝíï åêôõðùôÞò óáò (\"%s\"), Íá åßíáé ï "
-"ðñïåðéëåãìÝíïò åêôõðùôÞò êáé óôï íÝï íÝï óýóôçìá åêôýðùóçò %s;"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Enable Server"
-msgstr "Åíåñãïðïßçóç ÅîõðçñåôçôÞ"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "FAT"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ukrainian"
-msgstr "Ïõêñáíéêü"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Ç ðñüóâáóç äéêôýïõ äåí åêôåëåßôï êáé äåí ìðüñåóå íá åêêéíçèåß. Ðáñáêáëþ "
-"åëÝãîôå ôçí ñýèìéóç ôïõ õëéêïý óáò. ÌåôÜ ðñïóðáèÞóôå íá ñõèìßóåôå ôïí "
-"áðïìáêñõóìÝíï åêôõðùôÞ óáò."
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Journalised FS"
+msgstr "Journalised FS"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Ðáñáêáëþ åéóÜãåôå ôç äéóêÝôá Åêêßíçóçò óôïí ïäçãü %s"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "Swap"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local network(s)"
-msgstr "Ôïðéêü Äßêôõï(á)"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "¶äåéï"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Remove Windows"
-msgstr "Áöáßñåóç Windows(TM)"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "¶ëëï"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-"Ôï %s óáò Ý÷åé ñõèìéóôåß. \n"
-"Ìðïñåßôå ôþñá íá óáñþóåôå Ýããñáöá ìå ôï \"XSane\" áðü ôï ÐïëõìÝóá/ÃñáöéêÜ "
-"áðü ìåíïý åöáñìïãþí."
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "Ôýðïé óõóôÞìáôïò áñ÷åßùí:"
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Firewire controllers"
-msgstr "ÅëåãêôÝò USB"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "Äçìéïõñãßá"
-#: ../../help.pm:1
-#, fuzzy, 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!"
-msgstr ""
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" ÐñïóèÞêç íÝï\n"
-" Ôñïðïðïßçóç Ëßóôá Áöáßñåóçò ÅíôÜîåé\n"
-"\n"
-"\n"
-"\n"
-" ÄéáãñáöÞ\n"
-"\n"
-"\n"
-"!"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "Ôýðïò"
-#: ../../standalone/drakboot:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid "System mode"
-msgstr "ÊáôÜóôáóç óõóôÞìáôïò"
+msgid "Use ``%s'' instead"
+msgstr "×ñçóéìïðïéÞóôå ``%s'' óôç èÝóç ôïõ"
+
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "ÄéáãñáöÞ"
+
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
+msgstr "ÊÜíôå ðñþôá ``Áðïóýíäåóç''"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, 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."
+"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-"Ãéá íá åêôõðþóåôå óå Ýíáí åêôõðùôÞ NetWare, ðñÝðåé íá äþóåôå ôï üíïìá ôïõ "
-"åîõðçñåôçôÞ åêôõðþóåùí NetWare (Óçìåßùóç! Ìðïñåß íá åßíáé äéáöïñåôéêü áðü ôï "
-"äéêôõáêü üíïìá TCP/IP!), ôï üíïìá ôïõ åêôõðùôÞ óôïí ïðïßï åðéèõìåßôå "
-"ðñüóâáóç, êáèþò êáé\n"
-"ïðïéáäÞðïôå áðáñáßôçôç ðëçñïöïñßá ðåñß ÷ñÞóôç êáé êùäéêïý ðñüóâáóçò."
+"ÌåôÜ ôçí áëëáãÞ ôýðïõ óôçí êáôÜôìçóç %s, üëá ôá äåäïìÝíá óå áõôÞí ôçí "
+"êáôÜôìçóç èá ÷áèïýí"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Netmask:"
-msgstr "ÌÜóêá äéêôýïõ:"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose a partition"
+msgstr "ÅðéëÝîôå êáôÜôìçóç"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose another partition"
+msgstr "ÅðéëÝîôå Üëëç êáôÜôìçóç"
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "ÐñïóÜñôçóç"
+#: ../../diskdrake/interactive.pm_.c:202
+msgid "Exit"
+msgstr "¸îïäïò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"ÁíáíÝùóç ëßóôáò åêôõðùôþí ( ãéá íá åìöáíßóåé üëïõò ôïõò äéáèÝóéìïõò "
-"áðïìáêñõóìÝíïõò åêôõðùôÝò)"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
+msgstr "ÁëëáãÞ óå ðñï÷ùñçìÝíï ôñüðï ëåéôïõñãßáò"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Ðüôå CUPS\n"
-"\n"
-" LPD LPRng CUPS\n"
-"\n"
-"\n"
-"\n"
-" åîõðçñåôçôÞò\n"
-"\n"
-"."
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
+msgstr "ÁëëáãÞ óå êáíïíéêü ôñüðï ëåéôïõñãßáò"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Ç áõôüìáôç åãêáôÜóôáóç ìðïñåß íá åßíáé ðëÞñùò áõôüìáôç,\n"
-"óå áõôÞí ôçí ðåñßðôùóç èá áíáëÜâåé ôï óêëçñü äßóêï!!\n"
-"(áõôü áíáöÝñåôáé ãéá ðåñéðôþóåéò åãêáôÜóôáóçò óå Üëëï õðïëïãéóôÞ).\n"
-"\n"
-"Ìðïñåß íá ðñïôéìÜôå íá åðáíáëÜâåôå ôçí åãêáôÜóôáóç.\n"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "Áíáßñåóç"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "ÅêôõðùôÞò äéêôýïõ \"%s\", èýñá %s"
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "Íá óõíå÷ßóù;"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Ðáñáêáëþ åðéëÝîôå ôé ðñïóáñìïãÝáò äéêôýïõ èá óõíäåèåß óôï ôïðéêü óáò äßêôõï."
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "¸îïäïò ÷ùñßò áðïèÞêåõóç"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
-msgstr "ÅíôÜîåé ãéá ôçí åðáíáöïñÜ ôùí Üëëùí áñ÷åßùí."
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "¸îïäïò ÷ùñßò áðïèÞêåõóç ôïõ ðßíáêá êáôáôìÞóåùí;"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Ðáñáêáëþ åðéëÝîôå ôçí äéÜôáîç ðëçêôñïëïãßïõ."
+#: ../../diskdrake/interactive.pm_.c:257
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "ÈÝëåôå íá áðïèçêåýóåôå ôéò áëëáãÝò ôïõ /etc/fstab"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "ÓõóêåõÞ åêôõðùôÞ URI"
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "Êáèáñéóìüò üëùí"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not erasable media!"
-msgstr "Ôï ìÝóï äåí ìðïñåß íá óâçóôåß!"
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
+msgstr "Áõôüìáôç êáôáíïìÞ"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "×ñÞóç ôåñìáôéêïý"
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+msgid "More"
+msgstr "¶ëëá"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:278
+msgid "Hard drive information"
+msgstr "Ðëçñïöïñßåò óêëçñïý äßóêïõ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "ÅãêáôÜóôáóç óõóôÞìáôïò åêôýðùóçò óôï åðßðåäï áóöÜëåéáò %s"
+#: ../../diskdrake/interactive.pm_.c:310
+msgid "All primary partitions are used"
+msgstr "¼ëåò ïé ðñùôåýïõóåò êáôáôìÞóåéò åßíáé óå ÷ñÞóç"
-#: ../../any.pm:1
-#, c-format
-msgid "The user name is too long"
-msgstr "Áõôü ôï üíïìá ÷ñÞóôç åßíáé ðïëý ìáêñý"
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "Äåí ìðïñþ íá ðñïóèÝóù êáôáôìÞóåéò"
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "¶ëëï ëåéôïõñãéêü (windows...)"
+#: ../../diskdrake/interactive.pm_.c:312
+msgid ""
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
+msgstr ""
+"Ãéá íá ðñïóèÝóåôå êáôáôìÞóåéò, ðáñáêáëþ äéáãñÜøôå ìßá Ýôóé þóôå íá åßíáé "
+"äõíáôÞ ç ðñïóèÞêç åêôåôáìÝíçò êáôÜôìçóçò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr "Ôï áðïìáêñõóìÝíï WebDAV åßíáé Þäç óå óõã÷ñïíéóìü!"
+#: ../../diskdrake/interactive.pm_.c:322
+msgid "Save partition table"
+msgstr "ÁðïèÞêåõóç ðßíáêá êáôáôìÞóåùí"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
-msgstr "ÁíÜãíùóç âÜóçò äåäïìÝíùí åêôõðùôþí..."
+#: ../../diskdrake/interactive.pm_.c:323
+msgid "Restore partition table"
+msgstr "ÅðáíáöïñÜ ðßíáêá êáôáôìÞóåùí"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Äçìéïõñãßá äéóêÝôáò áõôüìáôçò åãêáôÜóôáóçò"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
+msgstr "Ðßíáêáò êáôáôìÞóåùí äéÜóùóçò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t üíïìá ÷ñÞóôç: %s\n"
-"\t\t óôç èÝóç: %s \n"
+#: ../../diskdrake/interactive.pm_.c:326
+msgid "Reload partition table"
+msgstr "ÁíáíÝùóç ðßíáêá êáôáôìÞóåùí"
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr "Óïìáëßá"
+#: ../../diskdrake/interactive.pm_.c:331
+msgid "Removable media automounting"
+msgstr "Áõôüìáôç óýíäåóç áðïóðþìåíùí ìïíÜäùí"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr "ÊáíÝíáò ïäçãüò áíïé÷ôïý êþäéêá"
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "ÅðéëÝîôå áñ÷åßï"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
+#: ../../diskdrake/interactive.pm_.c:347
+msgid ""
+"The backup partition table has not the same size\n"
+"Still continue?"
msgstr ""
+"Ï åöåäñéêüò ðßíáêáò êáôáôìÞóåùí Ý÷åé äéáöïñåôéêü ìÝãåèïò\n"
+"Íá óõíå÷ßóù;"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "Ðñïóï÷Þ"
+
+#: ../../diskdrake/interactive.pm_.c:362
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
-"Ç áóöÜëåéá åßíáé ßäéá ôïõ ðñïçãïýìåíïõ åðéðÝäïõ, ìå ôï óýóôçìá ôåëåßùò "
-"êëåéóôü. Ç áóöÜëåéá åßíáé óôï ìÝãéóôï äõíáôü."
+"ÅéóÜãåôå ìéá äéóêÝôá óôïí ïäçãü äéóêÝôáò\n"
+"¼ëá ôá äåäïìÝíá óå áõôÞ ôç äéóêÝôá èá ÷áèïýí"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "ÍéêáñÜãïõá"
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
+msgstr "ÐñïóðÜèåéá äéÜóùóçò ðßíáêá êáôáôìÞóåùí"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "ÍÝá Êáëçäïíßá"
+#: ../../diskdrake/interactive.pm_.c:379
+msgid "Detailed information"
+msgstr "Ëåðôïìåñåßò ðëçñïöïñßåò"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Åõñùðáúêü Ðñùôüêïëëï (EDSS1)"
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "ÁëëáãÞ ìåãÝèïõò"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Delete"
-msgstr "ÄéáãñáöÞ"
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "Ìåôáêßíçóç"
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "ÁíÜëõóç ïèüíçò"
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "Ìïñöïðïßçóç"
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
-msgstr "ÏìÜí"
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "ÐñïóèÞêç óôï RAID"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Ðáñáêáëþ åéóÜãåôå ôçí çëåêôñïíéêÞ óáò äéåýèõíóç"
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "ÐñïóèÞêç óôï LVM"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Network Monitoring"
-msgstr "Ðáñáêïëïýèçóç Äéêôýïõ"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "Áöáßñåóç áðü ôï RAID"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "SunOS"
-msgstr "SunOS"
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "Áöáßñåóç áðü ôï LVM"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "New size in MB: "
-msgstr "ÍÝï ìÝãåèïò óå MB:"
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "Ôñïðïðïßçóç RAID"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Ôýðïò ðßíáêá êáôáôìÞóåùí: %s\n"
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
+msgstr "×ñÞóç ãéá loopback"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication Windows Domain"
-msgstr "Ðéóôïðïßçóç ÔïìÝá Windows"
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "Äçìéïõñãßá íÝáò êáôÜôìçóçò"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "Ç.Ð.Á. (US)"
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "Áñ÷éêüò ôïìÝáò: "
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr "Ðñïóïìïßùóç Êïõìðéþí"
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "ÌÝãåèïò óå MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", åêôõðùôÞò äéêôýïõ \"%s\", èýñá %s"
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "Ôýðïò óõóôÞìáôïò áñ÷åßùí: "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-"\n"
-"Äñáóôçñéüôçôåò Drakbackup ìÝóù ôáéíßáò:\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Ðñïôßìçóç: "
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:481
msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
+"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 ""
-"\n"
-" ÓöÜëìá óôç óýíäåóç FTP . Äåí Þôáí äõíáôÞ ç áðïóôïëÞ ôùí áíôéãñÜöùí "
-"áóöáëåßáò ìÝóù FTP.\n"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Sending Speed:"
-msgstr "Ôá÷ýôçôá ÁðïóôïëÞò:"
+#: ../../diskdrake/interactive.pm_.c:511
+msgid "Remove the loopback file?"
+msgstr "Íá áöáéñåèåß ôï áñ÷åßï loopback;"
-#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
-msgid ""
-"The classic bug sound tester is to run the following commands:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
-"currently uses\n"
-"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services're configured to be run on\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"\n"
-"\n"
-"\n"
-"\n"
-" åî' ïñéóìïý\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" åíåñãïðïßçóç\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "ÁëëáãÞ ôýðïõ êáôÜôìçóçò"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+msgid "Which filesystem do you want?"
+msgstr "Ðïéï óýóôçìá áñ÷åßùí ðñïôéìÜôå;"
-#: ../../standalone/logdrake:1
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
+msgstr "ÁëëáãÞ áðü ext2 óå ext3"
+
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Mail alert configuration"
-msgstr "Ñýèìéóç åéäïðïßçóçò Ôá÷õäñïìåßïõ"
+msgid "Where do you want to mount loopback file %s?"
+msgstr "Ðïý èÝëåôå íá óõíäÝóåôå ôï áñ÷åßï loopback %s;"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Tokelau"
-msgstr "ÔïêåëÜïõ"
+msgid "Where do you want to mount device %s?"
+msgstr "Ðïý èÝëåôå íá óõíäÝóåôå ôçí óõóêåõÞ %s;"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Matching"
-msgstr "ôáéñéÜæåé"
+#: ../../diskdrake/interactive.pm_.c:585
+msgid ""
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
+msgstr ""
+"Äåí ìðïñþ íá áöáéñÝóù ôï óçìåßï óýíäåóçò êáèþò áõôÞ ç êáôÜôìçóç "
+"÷ñçóéìïðïéåßôáé\n"
+"ãéá loopback. ÁöáéñÝóôå ðñþôá ôï loopback"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:606
#, c-format
-msgid "Bosnian"
-msgstr "Âïóíßáò"
+msgid "Where do you want to mount %s?"
+msgstr "Ðïý èÝëåôå íá óõíäÝóåôå ôï %s;"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Release: "
-msgstr "¸êäïóç:"
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "Õðïëïãéóìüò FAT filesystem bounds"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection speed"
-msgstr "Ôá÷ýôçôá óýíäåóçò"
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "ÁëëáãÞ ìåãÝèïõò"
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr "Íáìßìðéá"
+#: ../../diskdrake/interactive.pm_.c:662
+msgid "This partition is not resizeable"
+msgstr "ÁõôÞ ç êáôÜôìçóç äåí ìðïñåß í' áëëÜîåé ìÝãåèïò."
-#: ../../services.pm:1
-#, c-format
-msgid "Database Server"
-msgstr "ÅîõðçñåôçôÞò ÂÜóçò ÄåäïìÝíùí"
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
+msgstr ""
+"ÐñÝðåé íá ãßíåé áíôßãñáöï áóöáëåßáò üëùí ôùí äåäïìÝíùí óå áõôÞ ôçí êáôÜôìçóç"
-#: ../../standalone/harddrake2:1
+#: ../../diskdrake/interactive.pm_.c:669
#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
+msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
+"ÌåôÜ ôçí áëëáãÞ ìåãÝèïõò óôçí êáôÜôìçóç %s, üëá ôá äåäïìÝíá óå áõôÞí ôçí "
+"êáôÜôìçóç èá ÷áèïýí"
-#: ../../raid.pm:1
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Äåí ìðïñþ íá ðñïóèÝóù êáôÜôìçóç óôï _ìïñöïðïéçìÝíï_ RAID md%d"
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "ÅðéëÝîôå ôï íÝï ìÝãåèïò"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Network Time Protocol"
-msgstr "ÓõóêåõÞ äéêôýïõ"
+#: ../../diskdrake/interactive.pm_.c:675
+msgid "New size in MB: "
+msgstr "ÍÝï ìÝãåèïò óå MB:"
-#: ../../Xconfig/card.pm:1
-#, 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."
-msgstr ""
-"Ç êÜñôá ãñáöéêþí óáò õðïóôçñßæåé åðéôÜ÷õíóç ôñéóäéÜóôáôùí ãñáöéêþí ìüíï ìå "
-"ôá XFree %s.\n"
-"ÐÑÏÓÏ×Ç: ÐÅÉÑÁÌÁÔÉÊÇ ÕÐÏÓÔÇÑÉÎÇ - ÌÐÏÑÅÉ ÍÁ ÐÁÃÙÓÅÉ ÔÏÍ ÕÐÏËÏÃÉÓÔÇ ÓÁÓ!\n"
-"Ç êÜñôá óáò õðïóôçñßæåôáé áðü ôá XFree %s ôá ïðïßá ìðïñåß íá äßíïõí êáëýôåñç "
-"õðïóôÞñéîç ãéá äéäéÜóôáôá ãñáöéêÜ"
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "Óå ðïéüí äßóêï èÝëåôå íá ìåôáêéíçèåßôå;"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Ðáñáêáëþ ðåñéìÝíåôå, ïñßæïíôáé ïé åðéëïãÝò áóöáëåßáò..."
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "ÔïìÝáò"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "¶ãíùóôï|CPH05X (bt878) [ðïëëïß êáôáóêåõáóôÝò]"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "Óå ðïéüí ôïìÝá èÝëåôå íá ìåôáêéíçèåßôå;"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Ëåéôïõñãßá ãñáöéêïý ðåñéâÜëëïíôïò êáôÜ ôçí åêêßíçóç ôïõ óõóôÞìáôïò"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "Ìåôáêßíçóç óå åîÝëéîç"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr "ùñéáßá"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "Ìåôáêßíçóç êáôÜôìçóçò óå åîÝëéîç..."
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Right Shift key"
-msgstr "Äåîéü ðëÞêôñï Alt"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr "ÅðéëÝîôå Ýíá õðÜñ÷ïí RAID óôï ïðïßï èá ãßíåé ç ðñïóèÞêç"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " Áíáêôçèåß ìå åðéôõ÷ßá óôï %s "
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "íÝï"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Ãßíïíôáé äéáèÝóéìåò ïé èýñåò óôï CUPS..."
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
+msgstr "ÅðéëÝîôå Ýíá õðÜñ÷ïí LVM óôï ïðïßï èá ãßíåé ç ðñïóèÞêç"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr "Áíôßãêïõá êáé Ìðáñìðïýíôá"
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
+msgstr "üíïìá LVM;"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"\n"
-" ÅîõðçñåôçôÞò\n"
-" ÄéáãñáöÞ ÷ñÞóôçò ÅîõðçñåôçôÞò åíåñãïðïßçóç."
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
+msgstr "ÁõôÞ ç êáôÜôìçóç äåí ìðïñåß íá ÷ñçóéìïðïéçèåß ãéá loopback"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "Éóðáíéêü"
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
+msgstr "Loopback"
-#: ../../services.pm:1
-#, c-format
-msgid "Start"
-msgstr "Åêêßíçóç"
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
+msgstr "¼íïìá áñ÷åßïõ loopback: "
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:831
+msgid "Give a file name"
+msgstr "Äþóôå Ýíá üíïìá áñ÷åßïõ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring applications..."
-msgstr "Ñýèìéóç åöáñìïãþí..."
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
+msgstr "Ôï áñ÷åßï ÷ñçóéìïðïéåßôáé Þäç áðü Üëëï loopback, åðéëÝîôå Ýíá Üëëï"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, 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 ""
-"\n"
-" ÅêôõðùôÞò Ïäçãüò\n"
-"\n"
-" ÔïìÝáò Windows \n"
-"\n"
-" áíé÷íåýèçêå ÔïìÝáò Windows \n"
-"\n"
-" ÔïìÝáò Windows \n"
-"\n"
-" Åðüìåíï ¶êõñï."
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
+msgstr "Ôï áñ÷åßï õðÜñ÷åé Þäç. Íá ôï ÷ñçóéìïðïéÞóù;"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
-msgstr "ÁðëÞ óýíäåóç ìå ìüíôåì"
+#: ../../diskdrake/interactive.pm_.c:858
+msgid "Mount options"
+msgstr "ÅðéëïãÝò óýíäåóçò"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "File Selection"
-msgstr "ÅðéëïãÞ Áñ÷åßïõ"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
+msgstr "ÄéÜöïñá"
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "óõóêåõÞ"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Erase tape before backup"
-msgstr "×ñÞóç ôáéíßáò ãéá ôá áñ÷åßá áóöáëåßáò"
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "åðßðåäï"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
-msgstr "ÅêôÝëåóç åñãáëåßï ñýèìéóçò"
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "ìÝãåèïò chunk"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "Ðñüãñáììá åêêßíçóçò"
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
+msgstr "Ðñïóï÷Þ: ÁõôÞ ç äéáäéêáóßá åßíáé åðéêßíäõíç."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "ÌÝãåèïò âáóéêÞò êáôÜôìçóçò óõóôÞìáôïò óå MB:"
+#: ../../diskdrake/interactive.pm_.c:962
+msgid "What type of partitioning?"
+msgstr "Ôé ôýðïò êáôÜôìçóçò;"
-#: ../../install_steps_gtk.pm:1
+#: ../../diskdrake/interactive.pm_.c:978
#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Áõôü åßíáé áðáéôïýìåíï ðáêÝôï, äåí ìðïñåß íá áðïåðéëåãåß"
+msgid "The package %s is needed. Install it?"
+msgstr "Ôï ðáêÝôï %s åßíáé áðáñáßôçôï. Íá åãêáôáóôáèåß;"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:992
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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
+"Óõããíþìç, áëëÜ äåí ìðïñþ íá äçìéïõñãÞóù ôïí êáôÜëïãï /boot óå êýëéíäñï "
+"ìåãáëýôåñï ôïõ 1024.\n"
+"Åßôå ÷ñçóéìïðïéåßôå LILO êáé äåí èá äïõëÝøåé, åßôå äåí ÷ñçóéìïðïéåßôå LILO "
+"êáé äåí ÷ñåéÜæåóôå ôï /boot"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "Ç åéêüíá Etherboot ISO åßíáé ç %s"
+#: ../../diskdrake/interactive.pm_.c:996
+msgid ""
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
+msgstr ""
+"Ç êáôÜôìçóç ðïõ åðéëÝîáôå ùò root (/) âñßóêåôáé ìåôÜ ôïí êýëéíäñï 1024 êáé\n"
+"äåí Ý÷åôå êáôÜôìçóç /boot.\n"
+"Áí óêïðåýåôå íá ÷ñçóéìïðïéÞóåôå LILO, ðñïóèÝóôå ìßá êáôÜôìçóç /boot."
-#: ../../services.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1002
msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
msgstr ""
-"Ï named (BIND) åßíáé Ýíáò ÅîõðçñåôçôÞò Ïíüìáôïò ÔïìÝá (DNS) ðïõ "
-"÷ñçóéìïðïéåßôáé\n"
-"ãéá íá ìåôáôñÝðåé ïíüìáôá óå äéåõèýíóåéò IP."
+"ÅðéëÝîáôå ìéá software RAID êáôÜôìçóç ùò root (/).\n"
+"ÊáíÝíá ðñüãñáììá åêêßíçóçò äåí ìðïñåß íá ôï ÷åéñéóôåß áõôü ÷ùñßò ìéá "
+"êáôÜôìçóç /boot.\n"
+"Öñïíôßóôå ëïéðüí íá ðñïóèÝóåôå ìéá êáôÜôìçóç /boot."
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid "Saint Lucia"
-msgstr "¶ãéïò ËïõêÜò"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "Ï ðßíáêáò êáôáôìÞóåùí ôïõ äßóêïõ %s èá áðïèçêåõôåß óôïí äßóêï!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "ÍïÝìâñéïò"
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
+msgstr "Áðáéôåßôáé åðáíåêêßíçóç ãéá íá åöáñìïóôïýí ïé áëëáãÝò"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1037
#, c-format
-msgid "Disconnect..."
-msgstr "Áðïóýíäåóç..."
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr ""
+"ÌåôÜ ôçí ìïñöïðïßçóç ôçò êáôÜôìçóçò %s, üëá ôá äåäïìÝíá óå áõôÞí ôçí "
+"êáôÜôìçóç èá ÷áèïýí"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Report"
-msgstr "ÁíáöïñÜ"
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "Ìïñöïðïßçóç"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Palau"
-msgstr "ÐáëÜïõ"
+msgid "Formatting loopback file %s"
+msgstr "Ìïñöïðïßçóç áñ÷åßïõ loopback %s"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "level"
-msgstr "åðßðåäï"
+msgid "Formatting partition %s"
+msgstr "Ìïñöïðïßçóç êáôÜôìçóçò %s"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, fuzzy, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr "¼ëá."
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Hide files"
+msgstr "Áðüêñõøç áñ÷åßùí"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "ÅðéëïãÞ ÏìÜäùí ÐáêÝôùí"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Move files to the new partition"
+msgstr "Ìåôáêßíçóç áñ÷åßùí óôçí íÝá êáôÜôìçóç"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:1053
+#, c-format
msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr "Áõôüìáôç åðáíáñýèìéóçò"
+"Directory %s already contains data\n"
+"(%s)"
+msgstr ""
+"Ï êáôÜëïãïò %s ðåñéÝ÷åé Þäç äåäïìÝíá\n"
+"(%s)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "ÅðáíáöïñÜ ÌÝóù Ðñùôüêïëëï Äéêôýïõ: %s"
+#: ../../diskdrake/interactive.pm_.c:1064
+msgid "Moving files to the new partition"
+msgstr "Ìåôáêßíçóç áñ÷åßùí óôçí íÝá êáôÜôìçóç"
-#: ../../modules/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1068
#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr "Åäþ ìðïñåßôå íá ñõèìßóåôå ôéò ðáñáìÝôñïõò ôïõ áñèñþìáôïò."
+msgid "Copying %s"
+msgstr "ÁíôéãñáöÞ %s"
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: ../../diskdrake/interactive.pm_.c:1072
#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "ÅðéëÝîôå áíÜëõóç êáé âÜèïò ÷ñþìáôïò"
+msgid "Removing %s"
+msgstr "Áöáßñåóç %s"
-#: ../../standalone/mousedrake:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid "Emulate third button?"
-msgstr "Åîïìïßùóç ôñßôïõ ðëÞêôñïõ;"
+msgid "partition %s is now known as %s"
+msgstr "Ç êáôÜôìçóç %s åßíáé ôþñá ãíùóôÞ ùò %s "
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, 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."
-msgstr ""
-"íÝï\n"
-" ðñùôåýïõóá\n"
-" ðñùôåýïõóá."
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "ÓõóêåõÞ: "
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "Mount"
-msgstr "Óýíäåóç"
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "Ðéèáíü DOS ãñÜììá äßóêïõ: %s \n"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Äçìéïõñãßá äéóêÝôáò áõôüìáôçò åãêáôÜóôáóçò"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "Ôýðïò: "
-#: ../../steps.pm:1
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "¼íïìá: "
+
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "Install updates"
-msgstr "Áíáâáèìßóåéò"
+msgid "Start: sector %s\n"
+msgstr "Áñ÷Þ: ôïìÝáò %s\n"
-#: ../../standalone/draksplash:1
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "text box height"
-msgstr "ýøïò ðëáéóßïõ êåéìÝíïõ"
+msgid "Size: %s"
+msgstr "ÌÝãåèïò: %s"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid "State"
-msgstr "ÊáôÜóôáóç:"
+msgid ", %s sectors"
+msgstr ", %s ôïìåßò"
-#: ../../standalone/drakfloppy:1
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Óéãïõñåõôåßôå ðùò Ýíá ìÝóï åßíáé ðáñüí ãéá ôç óõóêåõÞ %s"
+msgid "Cylinder %d to %d\n"
+msgstr "Êýëéíäñïò áðü %d Ýùò %d\n"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "ÌïñöïðïéçìÝíïò\n"
+
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "Áìïñöïðïßçôïò\n"
+
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
+msgstr "ÓõíäåäåìÝíïò\n"
+
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Enable multiple profiles"
-msgstr "Åíåñãïðïßçóç ðïëëáðëþí ðñïößë"
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../fs.pm:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid ""
+"Loopback file(s):\n"
+" %s\n"
msgstr ""
+"Áñ÷åßï (á) loopback:\n"
+" %s\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1132
msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"ÁõôÝò ïé åðéëïãÝò ìðïñïýí íá ðÜñïõí áíôßãñáöá áóöáëåßáò êáé íá åðáíáöÝñïõí "
-"ôï /etc\n"
+"ÊáôÜôìçóç åêêßíçóçò åî ïñéóìïý\n"
+" (áðü MS-DOS, ü÷é áðü lilo)\n"
-#: ../../printer/main.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "Local printer"
-msgstr "Ôïðéêüò åêôõðùôÞò"
+msgid "Level %s\n"
+msgstr "Åðßðåäï %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "Files Restored..."
-msgstr ""
+msgid "Chunk size %s\n"
+msgstr "ÌÝãåèïò chunk %s\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Package selection"
-msgstr "ÅðéëïãÞ ðáêÝôùí"
+msgid "RAID-disks %s\n"
+msgstr "Äßóêïé RAID %s\n"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "Mauritania"
-msgstr "Ìáõñéôáíßá"
+msgid "Loopback file name: %s"
+msgstr "¼íïìá áñ÷åßïõ loopback: %s"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
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"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-"Ìðïñþ íá êñáôÞóù ôéò ôñÝ÷ïõóåò ñõèìßóåéò êáé íá õðïèÝóù üôé Þäç Ý÷åé "
-"ñõèìéóôåß ï åîõðçñåôçôÞò DHCP, ðáñáêáëþ åëÝãîôå åÜí Ý÷ù äéáâÜóåé óùóôÜ ôï "
-"Äßêôõï ðïõ ÷ñçóéìïðïéåßôå ãéá ôï ôïðéêü óáò äßêôõï, äåí èá ðåéñÜîùïýôå èá "
-"áëëÜîù ôéò ñõèìßóåéò ôïõ åîõðçñåôçôÞ DHCP.\n"
"\n"
+"Ïé ðéèáíüôçôåò åßíáé, áõôÞ\n"
+"ç êáôÜôìçóç íá åßíáé ìéá\n"
+"êáôÜôìçóç Ïäçãþí, èá \n"
+"ðñÝðåé ðéèáíüôáôá íá ôçí\n"
+"áöÞóåôå Þóõ÷ç.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
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, ...)."
+"\n"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"Äåí âñÝèçêáí ôïðéêïß åêôõðùôÝò! Ãéá íá ñõèìßóåôå ìüíïé óáò Ýíáí åêôõðùôÞ "
-"äþóôå ôï üíïìá åêôõðùôÞ/üíïìá áñ÷åßïõ óôç ãñáììÞ åéóáãùãÞò (ÐáñÜëëçëåò "
-"èýñåò: /dev/lp0, /dev/lp1, ..., áíôßóôïé÷åò ôùí LPT1:, LPT2:, ..., 1ïò "
-"åêôõðùôÞò USB: /dev/usb/lp0, 2ïò USB åêôõðùôÞò: /dev/usb/lp1, ...)."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All primary partitions are used"
-msgstr "¼ëåò ïé ðñùôåýïõóåò êáôáôìÞóåéò åßíáé óå ÷ñÞóç"
+"\n"
+"ÁõôÞ åßíáé åéäéêÞ Bootstrap\n"
+"êáôÜôìçóç ãéá\n"
+"dual-booting ôï óýóôçìÜ óáò.\n"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "óôïí åîõðçñåôçôÞ LPD \"%s\", óôïí åêôõðùôÞ \"%s\""
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
+msgstr "Ìüíï ãéá áíÜãíùóç"
-#: ../../network/netconnect.pm:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Áöïý ãßíåé áõôü, ðñïôåßíïõìå íá åðáíåêêéíÞóåôå ôï × ðåñéâÜëëïí ãéá íá "
-"áðïöýãåôå ôá ðñïâëÞìáôá áëëáãÞò äéêôõáêïý ïíüìáôïò."
+msgid "Size: %s\n"
+msgstr "ÌÝãåèïò: %s\n"
-#: ../../services.pm:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-"Áõôüìáôç áíß÷íåõóç êáé ñýèìéóç óõóêåõþí êáôÜ ôçí åêêßíçóç ôïõ óõóôÞìáôïò."
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Ãåùìåôñßá: %s êýëéíäñïé, %s êåöáëÝò, %s ôïìåßò\n"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation Server Configuration"
-msgstr "ÅãêáôÜóôáóç Ñõèìßóåùí ÄéáêïìéóôÞ"
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
+msgstr "Ðëçñïöïñßåò: "
-#: ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid "Configuring IDE"
-msgstr "Ñýèìéóç IDE"
+msgid "LVM-disks %s\n"
+msgstr "Äßóêïé LVM %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid "Network functionality not configured"
-msgstr "Ç ëåéôïõñãéêüôçôá ôïõ äéêôýïõ äåí ñõèìßóôçêå"
+msgid "Partition table type: %s\n"
+msgstr "Ôýðïò ðßíáêá êáôáôìÞóåùí: %s\n"
-#: ../../standalone/harddrake2:1
+#: ../../diskdrake/interactive.pm_.c:1169
#, c-format
-msgid "Configure module"
-msgstr "Ñýèìéóç áñèñþìáôïò"
+msgid "on channel %d id %d\n"
+msgstr "óôï êáíÜëé %d id %d\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "ÍÞóïé Êüêïò (ÊÞëéíãê)"
+#: ../../diskdrake/interactive.pm_.c:1199
+msgid "Filesystem encryption key"
+msgstr "Êëåéäß êñõðôïãñÜöçóçò óõóôÞìáôïò áñ÷åßùí"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Áðáéôåßôáé åðáíåêêßíçóç ãéá íá åöáñìïóôïýí ïé áëëáãÝò"
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
+msgstr "ÅðéëÝîôå ôï êëåéäß êñõðôïãñÜöçóçò ôïõ óõóôÞìáôïò áñ÷åßùí"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1203
#, c-format
-msgid "Provider phone number"
-msgstr "Áñéèìüò ôçëåöþíïõ ðáñï÷Ýá"
+msgid "This encryption key is too simple (must be at least %d characters long)"
+msgstr ""
+"Áõôüò ï êùäéêüò ðñüóâáóçò åßíáé ðïëý áðëüò (ðñÝðåé íá Ý÷åé ôïõëÜ÷éóôïí %d "
+"÷áñáêôÞñåò)"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Host %s"
-msgstr "¼íïìá óõóôÞìáôïò"
+#: ../../diskdrake/interactive.pm_.c:1204
+msgid "The encryption keys do not match"
+msgstr "Ôá êëåéäéÜ êñõðôïãñÜöçóçò åßíáé áíüìïéá"
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
-msgstr "Ößôæé"
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
+msgstr "Êëåéäß êñõðôïãñÜöçóçò"
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
-msgstr "Áñìåíßá"
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
+msgstr "Êëåéäß êñõðôïãñÜöçóçò (îáíÜ)"
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "Äåýôåñïò ïäçãüò äéóêÝôáò"
+#: ../../diskdrake/removable.pm_.c:47
+msgid "Change type"
+msgstr "ÁëëáãÞ ôýðïõ"
-#: ../../standalone/harddrake2:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "About Harddrake"
-msgstr "Ó÷åôéêÜ ìå ôï Harddrake"
+msgid "Can't login using username %s (bad password?)"
+msgstr "Áäõíáìßá ðñïóðÝëáóçò ìå ôï üíïìá ÷ñÞóôç %s (ëÜèïò êùäéêüò)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
-msgstr ""
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Áðáéôåßôáé Ðéóôïðïßçóç ÔïìÝá"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr ""
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Êáé Üëëï"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Ðïßï üíïìá ÷ñÞóôç"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
+"Please enter your username, password and domain name to access this host."
msgstr ""
-"ÅéóÜãåôå ìéá äéóêÝôá óôïí ïäçãü äéóêÝôáò\n"
-"¼ëá ôá äåäïìÝíá óå áõôÞ ôç äéóêÝôá èá ÷áèïýí"
+"Ðáñáêáëþ åéóÜãåôå ôï üíïìá ÷ñÞóôç ôïí êùäéêü ðñüóâáóçò êáé ôï üíïìá ôïìÝá "
+"ãéá ôç óýíäåóç óôïí host."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "ÌÝãåèïò: %s"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+msgid "Username"
+msgstr "¼íïìá ÷ñÞóôç"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Ôáõôü÷ñïíá ôá ðëÞêôñá Control êáé Shift"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "ÔïìÝáò"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "secondary"
-msgstr "äåõôåñåýïõóá"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+msgid "Search servers"
+msgstr "ÁíáæÞôçóç äéáêïìéóôþí"
-#: ../../standalone/drakbackup:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "View Backup Configuration."
-msgstr "ÐñïâïëÞ Ñõèìßóåùí ÁíôéãñÜöùí Áóöáëåßáò"
+msgid "%s formatting of %s failed"
+msgstr "%s ìïñöïðïßçóç ôïõ %s áðÝôõ÷å"
-#: ../../security/help.pm:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr "áí ïñéóôåß íáé, áðïôÝëåóìá áíáöïñÜò åëÝã÷ïõ óôï syslog."
+msgid "I don't know how to format %s in type %s"
+msgstr "äåí îÝñù ðþò íá ìïñöïðïéÞóù ôï %s óå ôýðï %s"
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "No password"
-msgstr "×ùñßò êùäéêü ðñüóâáóçò"
+msgid "mounting partition %s in directory %s failed"
+msgstr "ç óýíäåóç ôçò êáôÜôìçóçò %s óôïí êáôÜëïãï %s áðÝôõ÷å"
-#: ../../lang.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid "Nigeria"
-msgstr "Íéãçñßá"
+msgid "error unmounting %s: %s"
+msgstr "óöÜëìá êáôÜ ôçí áðïóýíäåóç ôïõ %s: %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr ""
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "áðëü"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "Äåí õðÜñ÷ïõí êáôáôìÞóåéò ðñïò ÷ñÞóç"
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
+msgstr "ìå /usr"
+
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "åîõðçñåôçôÞò"
-#: ../../standalone/scannerdrake:1
+#: ../../fsedit.pm_.c:240
#, c-format
msgid ""
-"The following scanners\n"
+"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"
-"%s\n"
-"are available on your system.\n"
+"Do you agree to loose all the partitions?\n"
msgstr ""
-"Ïé ðáñáêÜôù óáñùôÝò\n"
+"Äåí ìðïñþ íá äéáâÜóù ôïí ðßíáêá êáôáôìÞóåùí ôçò óõóêåõÞò %s,, åßíáé ðïëý\n"
+"êáôåóôñáììÝíïò :( Èá ðñïóðáèÞóù íá óõíå÷ßóù áöáéñþíôáò ôéò ëáíèáóìÝíåò \n"
+"êáôáôìÞóåéò (ÏËÁ ÔÁ ÄÅÄÏÌÅÍÁ èá ÷áèïýí!). Ç Üëëç åðéëïãÞ óáò åßíáé íá\n"
+"ìçí åðéôñÝøåôå óôï DrakX íá áããßîåé ôïí ðßíáêá êáôáôìÞóåùí. \n"
+"Ôï óöÜëìá åßíáé: %s\n"
"\n"
-"%s\n"
-"åßíáé äéáèÝóéìïé óôï óýóôçìÜ óáò\n"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr ", ðïëõ÷ñçóôéêÞ óõóêåõÞ óôçí ðáñÜëëçëç èÞñá #%s"
+"Óõìöùíåßôå íá äéáãñáöïýí üëåò ïé êáôáôìÞóåéò;\n"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-"Ãéá íá åêôõðþóåôå óå Ýíáí åêôõðùôÞ socket Þ TCP , ðñÝðåé íá äþóåôå ôï \n"
-"äéêôõáêü üíïìá ôïõ åêôõðùôÞ êáé ðñïáéñåôéêÜ ôïí áñéèìü èýñáò ( åî ïñéóìïý "
-"9100). Óôïõò åîõðçñåôçôÝò HP JetDirect Þ èýñá óõíÞèùò åßíáé 9100, óå Üëëïõò "
-"åîõðçñåôçôÝò ðïéêßëç. Äåßôå ôï åã÷åéñßäéï ÷ñÞóçò ôïõ õëéêïý óáò."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Hard drive information"
-msgstr "Ðëçñïöïñßåò óêëçñïý äßóêïõ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian"
-msgstr "Ñùóéêü"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Jordan"
-msgstr "Éïñäáíßá"
+"Äåí ìðïñåßôå íá ÷ñçóéìïðïéÞóåôå ôï JFS ãéá êáôáôìÞóåéò ìéêñüôåñåò áðü 16MB"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Hide files"
-msgstr "Áðüêñõøç áñ÷åßùí"
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr ""
+"Äåí ìðïñåßôå íá ÷ñçóéìïðïéÞóåôå ôï ReiserFS ãéá êáôáôìÞóåéò ìéêñüôåñåò áðü "
+"32MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Áõôüìáôç áíß÷íåõóç åêôõðùôþí óõíäåìÝíïé óå áõôü ôï ìç÷Üíçìá"
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
+msgstr "Ôï óçìåßï óýíäåóçò ðñÝðåé íá îåêéíÜåé ìå /"
-#: ../../any.pm:1
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "ËõðÜìáé, äåí õðÜñ÷åé äéáèÝóéìïò ïäçãüò äéóêÝôáò"
+msgid "There is already a partition with mount point %s\n"
+msgstr "ÕðÜñ÷åé Þäç êáôÜôìçóç ìå óçìåßï óýíäåóçò %s\n"
-#: ../../lang.pm:1
+#: ../../fsedit.pm_.c:526
#, c-format
-msgid "Bolivia"
-msgstr "Âïëéâßá"
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr "Äåí ìðïñåßôå íá ÷ñçóéìïðïéÞóåôå ìéá êáôÜôìçóç LVM ãéá ðñïóÜñôçóç %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
msgstr ""
-"Ñõèìßóôå ôïí åîõðçñåôçôÞ Windows þóôå íá åßíáé äéáèÝóéìïò ï åêôõðùôÞò óôï "
-"ðñùôüêïëëï IPP êáé ñõèìßóôå ôéò åêôõðþóåéò áðü áõôü ôï ìç÷Üíçìá ìå ôïí ôýðï "
-"óýíäåóçò \"%s\" óôï Printerdrake.\n"
-"\n"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "ËÜèïò ðáêÝôï"
+"Áõôüò ï êáôÜëïãïò ðñÝðåé íá ðáñáìåßíåé óôï ñéæéêü óýóôçìá áñ÷åßùí (root)"
-#: ../advertising/07-server.pl:1
-#, c-format
+#: ../../fsedit.pm_.c:530
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!"
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Ìåôáìïñöþóôå ôï ìç÷ÜíçìÜ óáò óå Ýíáí äõíáôü äéáêïìéóôÞ Linux ìå ìåñéêÜ êëéê "
-"ôïõðïíôéêéïý óáò: ÄéáêïìéóôÞò Éóôïý, ôá÷õäñïìåßïõ, äñïìïëïãçôÞò, "
-"åîõðçñåôçôÞò áñ÷åßùí êáé åêôõðùôþí, ..."
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "DrakSec Basic Options"
-msgstr "ÂáóéêÝò ÅðéëïãÝò DrakSec"
+"×ñåéÜæåóôå Ýíá ðñáãìáôéêü óýóôçìá áñ÷åßùí (ext2/ext3, reiserfs, xfs, or jfs) "
+"ãéá áõôü ôï óçìåßï óýíäåóçò\n"
-#: ../../standalone/draksound:1
+#: ../../fsedit.pm_.c:532
#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
+msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-"\n"
-"\n"
-"\n"
-"Óçìåßùóç: Áí Ý÷åôå êÜñôá Þ÷ïõ ISA PnP, èá ðñÝðåé íá åêôåëÝóåôå ôï ðñüãñáììá "
-"sndconfig. ÁðëÜ ãñÜøôå \"sndconfig\" óå ìéá êïíóüëá."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Romania"
-msgstr "Ñïõìáíßá"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Group"
-msgstr "oìÜäá"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Canada"
-msgstr "ÊáíáäÜò"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "choose device"
-msgstr "ÅðéëÝîôå óõóêåõÞ"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from LVM"
-msgstr "Áöáßñåóç áðü ôï LVM"
+"Äåí ìðïñåßôå íá ÷ñçóéìïðïéÞóåôå êñõðôïãñáöçìÝíï óýóôçìá áñ÷åßùí ãéá "
+"ðñïóÜñôçóç %s"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Timezone"
-msgstr "ÙñïëïãéáêÞ Æþíç"
+#: ../../fsedit.pm_.c:599
+msgid "Not enough free space for auto-allocating"
+msgstr ""
+"Äåí õðÜñ÷åé áñêåôüò åëåýèåñïò ÷þñïò ãéá ôçí áõôüìáôç äçìéïõñãßá íÝùí "
+"êáôáôìÞóåùí"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German"
-msgstr "Ãåñìáíéêü"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
+msgstr "Êáìßá åíÝñãåéá ðñïò åêôÝëåóç"
-#: ../../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
+#: ../../fsedit.pm_.c:694
#, c-format
-msgid "Next ->"
-msgstr "Åðüìåíï -»"
+msgid "Error opening %s for writing: %s"
+msgstr "ÓöÜëìá êáôÜ ôï Üíïéãìá ôïõ %s ãéá åããñáöÞ: %s"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
+msgstr "ÊáíÝíáò åíáëëáêôéêüò ïäçãüò"
+
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy, c-format
msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-"\n"
-"\n"
-" Ïäçãüò\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
-msgstr "ÃïõúíÝá-ÌðéóÜïõ"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Óõ÷íüôçôá ïñéæüíôéáò áíáíÝùóçò"
+"Äåí õðÜñ÷åé ãíùóôüò åíáëëáêôéêüò ïäçãüò OSS/ALSA ãéá ôçí êÜñôá Þ÷ïõ óáò (%s)"
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Edit"
-msgstr "¸îïäïò"
+#: ../../harddrake/sound.pm_.c:173
+msgid "Sound configuration"
+msgstr "Ñýèìéóç Þ÷ïõ"
-#: ../../diskdrake/interactive.pm:1
+#: ../../harddrake/sound.pm_.c:174
#, c-format
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
msgstr ""
-"Äåí ìðïñþ íá áöáéñÝóù ôï óçìåßï óýíäåóçò êáèþò áõôÞ ç êáôÜôìçóç "
-"÷ñçóéìïðïéåßôáé\n"
-"ãéá loopback. ÁöáéñÝóôå ðñþôá ôï loopback"
+"Åäþ ìðïñåßôå íá åðéëÝîåôå Ýíáí åíáëëáêôéêü ïäçãü (OSS Þ ALSA) ãéá ôçí êÜñôá "
+"Þ÷ïõ óáò (%s)"
-#: ../../printer/printerdrake.pm:1
+#: ../../harddrake/sound.pm_.c:176
#, 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\""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-"Ç ñýèìéóç äéêôýïõ ðïõ Ýãéíå êáôÜ ôç äéÜñêåéá ôçò åãêáôÜóôáóçò äåí Þôáí "
-"äõíáôüí íá åêêéíçèåß. Ðáñáêáëþ åëÝãîôå åÜí ôï äßêôõï åßíáé ðñïóâÜóéìï ìåôÜ "
-"ôçí åêêßíçóç êáé äéïñèþóôå ôéò ñõèìßóåéò ìå ôçí ÷ñÞóç ôïõ ÊÝíôñïõ ÅëÝã÷ïõ "
-"ôçò Mandrake, óôï ôìÞìá \"Äßêôõï & Äéáäßêôõï\" / \"Óýíäåóç\" êáé ìåôÜ "
-"ñõèìßóôå ôïí åêôõðùôÞ åðßóçò ìå ôï ÊÝíôñï ÅëÝã÷ïõ Mandrake óôï ôìÞìá \"Õëéêü"
-"\"/\"ÅêôõðùôÞò\""
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "USB controllers"
-msgstr "ÅëåãêôÝò USB"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "What norm is your TV using?"
-msgstr "Ðïéï óýóôçìá ÷ñçóéìïðïéåß ç ôçëåüñáóç óáò;"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Type:"
-msgstr "Ôýðïò:"
+#: ../../harddrake/sound.pm_.c:178
+msgid "Driver:"
+msgstr "Ïäçãüò:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Share name"
-msgstr "¼íïìá ðüñïõ:"
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+msgid "Help"
+msgstr "ÂïÞèåéá"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "enable"
-msgstr "åíåñãïðïßçóç"
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
+msgstr ""
-# fuzzy
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../harddrake/sound.pm_.c:186
msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
msgstr ""
-"Óýíäåóç ìå ôçí ôïðïèåóßá ôçò Mandrake Linux ãéá ëÞøç ôùí äéáèÝóéìùí ôüðùí "
-"ëÞøçò..."
-#: ../../network/netconnect.pm:1
+#: ../../harddrake/sound.pm_.c:202
#, c-format
msgid ""
-"A problem occured while restarting the network: \n"
+"The old \"%s\" driver is blacklisted.\n"
"\n"
-"%s"
-msgstr ""
-"¸íá ðñüâëçìá åìöáíßóôçêå êáôÜ ôçí åðáíåêêßíçóç ôïõ äéêôýïõ: \n"
+"It has been reported to oopses the kernel on unloading.\n"
"\n"
-"%s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove the loopback file?"
-msgstr "Íá áöáéñåèåß ôï áñ÷åßï loopback;"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Ôï åðéëåãìÝíï ìÝãåèïò åßíáé ìåãáëýôåñï áðü ôï äéáèÝóéìï ÷þñï"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP server name missing!"
-msgstr "Ôï üíïìá ôïõ åîõðçñåôçôÞ NCP ëåßðåé!"
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+msgid "Please Wait... Applying the configuration"
+msgstr "Ðáñáêáëþ ðåñéìÝíåôå... ÅöáñìïãÞ ñõèìßóåùí"
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose your country."
-msgstr "Ðáñáêáëþ åðéëÝîôå ôçí ÷þñá óáò."
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "Ðáñáêáëþ ðåñéìÝíåôå"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Áíôßãñáöá Áóöáëåßáò Óêëçñïý Äßóêïõ"
+#: ../../harddrake/sound.pm_.c:210
+msgid "No known driver"
+msgstr "ÊáíÝíáò ãíùóôüò ïäçãüò"
-#: ../../keyboard.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid "Laotian"
-msgstr ""
+msgid "There's no known driver for your sound card (%s)"
+msgstr "Äåí õðÜñ÷åé êÜðïéïò ãíùóôüò ïäçãüò ãéá ôçí êÜñôá Þ÷ïõ óáò (%s)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Samoa"
-msgstr "Óáìüá"
+#: ../../harddrake/sound.pm_.c:214
+msgid "Unkown driver"
+msgstr "¶ãíùóôïò ïäçãüò"
-#: ../../services.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, c-format
msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-"Ôï ðñùôüêïëëï rstat åðéôñÝðåé óôïõò ÷ñÞóôåò åíüò äéêôýïõ ôçí\n"
-"óõëëïãÞ ìåôñÞóåùí åðéäüóåùí ãéá ïðïéïäÞðïôå óýóôçìá óå áõôü \n"
-"ôï äßêôõï."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Re-generating list of configured scanners ..."
-msgstr "Åðáíáäçìéïõñãßá ëßóôáò ìå ôïõò ñõèìéóìÝíïõò óáñùôÝò ..."
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+msgid "Auto-detect"
+msgstr "Áõôüìáôç áíß÷íåõóç"
-#: ../../modules/interactive.pm:1
-#, fuzzy, c-format
-msgid "Module configuration"
-msgstr "×åéñïêßíçôç ñýèìéóç"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+msgid "Unknown|Generic"
+msgstr "¶ãíùóôï|Ãåíéêü"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Scanner"
-msgstr "ÓáñùôÞò"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "¶ãíùóôï|CPH05X (bt878) [ðïëëïß êáôáóêåõáóôÝò]"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Ðñïóï÷Þ: Ç äïêéìÞ óå áõôÞ ôçí êÜñôá ãñáöéêþí ìðïñåß íá ðáãþóåé ôïí "
-"õðïëïãéóôÞ óáò"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "¶ãíùóôï|CPH06X (bt878) [ðïëëïß êáôáóêåõáóôÝò]"
-#: ../../any.pm:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
+"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 ""
-"Ôï êùäéêü üíïìá ìðïñåß íá ðåñéÝ÷åé ìüíï ðåæÜ ãñÜììáôá, áñéèìïýò, `-' êáé `_'"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "Êáëþò ïñßóáôå óôïõò Crackers"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "ÅðéëïãÝò áñèñþìáôïò:"
+#: ../../harddrake/v4l.pm_.c:227
+msgid "Card model:"
+msgstr "ÌïíôÝëï êÜñôáò:"
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
+#: ../../harddrake/v4l.pm_.c:228
+msgid "Tuner type:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "ÓõíÝ÷éóç ÷ùñßò ôçí ñýèìéóç ôïõ äéêôýïõ"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Abort"
-msgstr "Áêýñùóç"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "×ùñßò åñþôçóç êùäéêïý óôï %s óôç èýñá %s"
-
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "×ñÞóç ôùí áðïìáêñõóìÝíùí óáñùôþí"
-
-#: ../../install_interactive.pm:1
-#, 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."
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
msgstr ""
-"Ç êáôÜôìçóç ôùí Windows åßíáé ðïëý êáôáêåñìáôéóìÝíç, ðáñáêáëþ ôñÝîôå ðñþôá "
-"ôï ``defrag'' ìÝóá áðü ôá Windows êáé îåêéíÞóôå îáíÜ ôçí åãêáôÜóôáóç ôïõ "
-"Mandrake Linux "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Íïñâçãéêü)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Äéáäéêáóßá ÁíôéãñÜöùí áóöáëåßáò óôïí Óêëçñü Äßóêï..."
-
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Áäõíáìßá fork: %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "Ôýðïò: "
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Åðåîåñãáóßá ÐåëÜôç"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "no fonts found"
-msgstr "äåí âñÝèçêáí ãñáììáôïóåéñÝò"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Mouse"
-msgstr "Ðïíôßêé"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "not enough room in /boot"
-msgstr "äåí õðÜñ÷åé áñêåôüò ÷þñïò óôï /boot"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "trying to promote %s"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Liechtenstein"
-msgstr "Ëé÷ôåíóôÜéí"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Host name"
-msgstr "¼íïìá óõóôÞìáôïò"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the color of the progress bar"
-msgstr "Ôï ÷ñþìá ôçò ãñáììÞò ðñïüäïõ"
+#: ../../harddrake/v4l.pm_.c:231
+msgid "PLL setting:"
+msgstr "Ñõèìßóåéò PLL:"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr ""
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
+msgstr "ÕðïóôÞñéîç ñáäéïöþíïõ:"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to RAID"
-msgstr "ÐñïóèÞêç óôï RAID"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
+msgstr "åíåñãïðïßçóç ñáäéïöþíïõ"
-#: ../../help.pm:1
-#, fuzzy, c-format
-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"
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+
+#: ../../help.pm_.c:48
+msgid ""
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
"\n"
-"For Linux, there are a few possible options:\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
"\n"
-" * Label: this is the name you will have to type at the yaboot prompt to\n"
-"select this boot option.\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-" * Image: this is the name of the kernel to boot. Typically, vmlinux or a\n"
-"variation of vmlinux with an extension.\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"
-" * Root: the \"root\" device or ``/'' for your Linux installation.\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\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"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-"hda=autotune\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\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"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\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"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"ÐáñáðÜíù âëÝðåôå Ýíáí êáôÜëïãï ìå ôéò êáôáôìÞóåéò Linux ðïõ åíôïðßóôçêáí \n"
+"óôïí äßóêï óáò. Ìðïñåßôå íá êñáôÞóåôå ôéò áõôüìáôåò åðéëïãÝò, åßíáé êáëÝò "
+"ãéá \n"
+"óõíçèéóìÝíç ÷ñÞóç. ÅÜí áëëÜîåôå áõôÝò ôéò åðéëïãÝò, ðñÝðåé íá Ý÷åôå \n"
+"ôïõëÜ÷éóôïí ìéá âáóéêÞ êáôÜôìçóç (root, \"/\"). Ìçí åðéëÝîåôå ìéá ðïëý "
+"ìéêñÞ\n"
+"êáôÜôìçóç ãéáôß äåí èá Ý÷åôå ÷þñï ãéá åãêáôÜóôáóç ëïãéóìéêïý. ÅÜí èÝëåôå íá\n"
+"áðïèçêåýåôå ôá äåäïìÝíá óáò óå îå÷ùñéóôÞ êáôÜôìçóç, ðñÝðåé íá åðéëÝîåôå ìéá\n"
+"êáôÜôìçóç ãéá \"/home\" (äõíáôüí ìüíï áí Ý÷åôå ðáñáðÜíù áðü ìßá Linux \n"
+"êáôÜôìçóç äéáèÝóéìç).\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"
"\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"
+"\"áñéèìüò êáôÜôìçóçò \"ãéá ðáñÜäåéãìá, \"hda1\").\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 ""
+"Ï \"Ôýðïò äßóêïõ \" åßíáé \"hd\" åÜí ðñüêåéôáé ãéá äßóêï IDE êáé\n"
+" \"sd\" ãéá SCSI äßóêï.\n"
"\n"
+"Ï \"áñéèìüò äßóêïõ \" åßíáé ðÜíôá Ýíá ãñÜììá ìåôÜ ôï \"hd\" Þ \"sd\".\n"
+"Ãéá ôïõò IDE äßóêïõò: \n"
"\n"
+" * \"a\" åßíáé ï \"master äßóêïò óôïí ðñþôï åëåãêôÞ IDE\",\n"
"\n"
+" * \"b\" åßíáé ï \"slave äßóêïò óôïí ðñþôï åëåãêôÞ IDE\",\n"
"\n"
+" * \"c\" åßíáé ï \"master äßóêïò óôïí äåýôåñï åëåãêôÞ IDE\",\n"
"\n"
+" * \"d\" åßíáé ï \"slave äßóêïò óôïí äåýôåñï åëåãêôÞ IDE\".\n"
"\n"
-" Linux\n"
"\n"
-" ÅôéêÝôá\n"
+"Ãéá äßóêïõò SCSI, \"a\" åßíáé ï \"ðñþôïò äßóêïò\", \"b\" åßíáé ï\n"
+" \"äåýôåñïò äßóêïò\" êëð..."
+
+#: ../../help.pm_.c:79
+msgid ""
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
+msgstr ""
+"Ç åãêáôÜóôáóç ôïõ Mandrake Linux åßíáé ìïéñáóìÝíï óå áñêåôÜ CD-ROM. Ôï \n"
+"DrakX îÝñåé áí Ýíá åðéëåãìÝíï ðáêÝôï õðÜñ÷åé óå Üëëï CD-ROM, èá åîÜãåé ôï \n"
+"ôñÝ÷ïí CD êáé èá æçôÞóåé íá åéóÜãåôå Ýíá Üëëï üôáí áõôü èá ÷ñåéáóôåß."
+
+#: ../../help.pm_.c:84
+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"
+"you are not supposed to know them all by heart.\n"
"\n"
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
"\n"
-" Åéêüíá\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
-" Root óõóêåõÞ Linux\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
"\n"
-" åíåñãïðïßçóç\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
"\n"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
"\n"
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
+msgstr ""
+
+#: ../../help.pm_.c:135
+msgid ""
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
"\n"
-" Initrd\n"
-" óõóêåõÞ\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
+msgstr ""
+
+#: ../../help.pm_.c:171
+msgid ""
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
"\n"
-" Initrd åî' ïñéóìïý\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
"\n"
-" åî' ïñéóìïý\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
+msgstr ""
+
+#: ../../help.pm_.c:193
+msgid ""
+"You may now choose which services you wish to start at boot time.\n"
"\n"
-" åî' ïñéóìïý\n"
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
"\n"
-" ×ùñßòVideo\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
+msgstr ""
+"Ìðïñåßôå ôþñá íá åðéëÝîåôå ðïéåò õðçñåóßåò èÝëåôå íá îåêéíïýí êáôÜ ôçí \n"
+"åêêßíçóç.\n"
"\n"
+"Åäþ õðÜñ÷ïõí üëåò ïé äéáèÝóéìåò õðçñåóßåò ãéá ôçí ôñÝ÷ïõóá åãêáôÜóôáóç\n"
+"ÅëÝãîôå ðñïóåêôéêÜ êáé áðïåðéëÝãîôå áõôÝò ðïõ äåí ÷ñåéÜæïíôáé ðÜíôá êáôÜ\n"
+"ôçí åêêßíçóç\n"
"\n"
-" ÐñïåðéëåãìÝíï åî' ïñéóìïý Linux\n"
+"Ìðïñåßôå íá Ý÷åôå ìéá ìéêñÞ åðåîÞãçóç ôçò õðçñåóßáò åðéëÝãïíôáò ôçí\n"
+"Áí äåí åßóôå âÝâáéïé ãéá ôï áí ìéá õðçñåóßá åßíáé Þ äåí åßíáé ÷ñÞóéìç\n"
+"åßíáé êáëýôåñá íá áöÞóåôå ôçí ðñïåðéëåãìÝíç åðéëïãÞ\n"
"\n"
-"."
+"!! ÐñïóÝîôå áõôü ôï âÞìá åÜí óêïðåýåôå íá ÷ñçóéìïðïéÞóåôå óôï óýóôçìá óáí \n"
+"åîõðçñåôçôÞ. Äåí èá èÝëáôå íá îåêéíÞóåôå õðçñåóßåò ðïõ äåí ÷ñåéÜæåóôå, \n"
+"äéüôé ïñéóìÝíåò õðçñåóßåò åìðåñéÝ÷ïõí êéíäýíïõò áóöáëåßáò åÜí õðÜñ÷ïõí \n"
+"óå åîõðçñåôçôÞ.\n"
+"ÃåíéêÜ, åðéëÝîôå ìüíï ôéò õðçñåóßåò ðïõ ÷ñåéÜæåóôå ðñáãìáôéêÜ.!!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:210
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
msgstr ""
-"Ï åêôõðùôÞò \"%s\" ðñïóôÝèçêå ìå åðéôõ÷ßá óôï Star Office/OpenOffice.org/GIMP"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Äåí õðÜñ÷åé äéáèÝóéìïò ïäçãüò äéóêÝôáò!"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../help.pm_.c:224
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"
+"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.\n"
"\n"
-msgstr ""
-"Ãéá íá ìÜèåôå ðåñéóóüôåñá ãéá ôéò äéáèÝóéìåò åíôïëÝò ãéá ôïí ôñÝ÷ïí åêôõðùôÞ "
-"äéáâÜóôå ôçí ëßóôá ðïõ öáßíåôå ðáñáêÜôù Þ êÜíôå êëéê óôï \"Åêôýðùóç ëßóôáò "
-"åðéëïãþí\"%s%s\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
"\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saudi Arabia"
-msgstr "ÓáïõäéêÞ Áñáâßá"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Internet"
-msgstr "Äéáäßêôõï"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "Íá óõíå÷ßóù;"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"Ï åêôõðùôÞò óáò äåí õðÜñ÷åé óôç ëßóôá, ðáñáêáëþ äéáëÝîôå Ýíáí óõìâáôü Þ Ýíáí "
-"ðáñüìïéï åêôõðùôÞ."
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer"
-msgstr "ÅêôõðùôÞò"
-
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices were added:\n"
-msgstr "ÏñéóìÝíåò óõóêåõÝò ðñïóôÝèçêáí:\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Ãåùìåôñßá: %s êýëéíäñïé, %s êåöáëÝò, %s ôïìåßò\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Åêôýðùóç óôïí åêôõðùôÞ \"%s\""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
-"ôï /etc/hosts.allow êáé /etc/hosts.deny Ý÷ïõí Þäç ñõèìéóôåß - äåí "
-"ìåôáôñÜðçêáí"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Tape"
-msgstr "ÅðáíáöïñÜ Áðü Ôáéíßá"
-
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../help.pm_.c:246
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."
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the profile to configure"
-msgstr "ÅðéëÝîôå ôï ðñïößë ãéá ñýèìéóç"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
+#: ../../help.pm_.c:253
+msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
msgstr ""
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, fuzzy, c-format
+#: ../../help.pm_.c:277
+#, fuzzy
msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft 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"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
-msgstr ""
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
"\n"
-" åî' ïñéóìïý."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Äçìéïõñãßá ÁíôéãñÜöùí Áóöáëåßáò áðü ôï áñ÷åßï ñõèìßóåùí"
-
-#: ../../fsedit.pm:1
-#, fuzzy, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr ""
-"Ôï üíïìá ôïõ åêôõðùôÞ ðñÝðåé íá ðåñéÝ÷åé ìüíï ãñÜììáôá, áñéèìïýò êáé ôïí "
-"÷áñáêôÞñá underscore"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Åðáíåêêßíçóç ôïõ óõóôÞìáôïò åêôýðùóçò..."
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr ""
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "ÐñïâïëÞ ðëçñïöïñéþí õëéêïý"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
-msgstr "ÇìÝñá"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr "Ðñþôïò ôïìÝáò ôçò êáôÜôìçóçò åêêßíçóçò"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "ÊáôáóêåõáóôÞ åêôõðùôÞ, ìïíôÝëï"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
-
-#: ../../standalone.pm:1
-#, fuzzy, 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)"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
msgstr ""
+"Óå áõôü ôï óçìåßï, ðñÝðåé íá áðïöáóßóåôå ðïý èá åãêáôáóôÞóåôå ôï GNU/Linux\n"
+"óôïí óêëçñü óáò äßóêï. ÅÜí åßíáé Üäåéïò Þ åÜí Ýíá Üëëï ëåéôïõñãéêü "
+"÷ñçóéìïðïéåß\n"
+"üëïí ôïí ÷þñï, èá ÷ñåéáóôåß íá ôïí êáôáôìÞóåôå, äçëáäÞ íá êÜíåôå Ýíáí ëïãéêü "
+"äéá÷ùñéóìü\n"
+"ôïõ äßóêïõ óå äéáìåñßóìáôá, þóôå íá äçìéïõñãÞóåôå ÷þñï ãéá ôçí åãêáôÜóôáóç "
+"ôïõ Mandrake Linux.\n"
"\n"
-" ÅîõðçñåôçôÞò\n"
-" åíåñãïðïßçóç åíåñãïðïßçóç\n"
-" áðåíåñãïðïßçóç áðåíåñãïðïßçóç\n"
"\n"
+"ÅðåéäÞ ç êáôÜôìçóç åßíáé óõíÞèùò ìéá ìç áíôéóôñåðôÞ åñãáóßá, ìðïñåß íá åßíáé "
+"äýóêïëç êáé \n"
+"áã÷ùôéêÞ ãéá Ýíáí áñ÷Üñéï ÷ñÞóôç.\n"
+"Áõôü ôï ðñüãñáììá áðëïðïéåß ôçí äéáäéêáóßá. Ðñéí áñ÷ßóåôå, ðáñáêáëþ "
+"óõìâïõëåõèåßôå ôï \n"
+"åã÷åéñßäéï ÷ñÞóçò êáé ìçí âéáóôåßôå.\n"
"\n"
-" ÷ñÞóôçò\n"
-" ÄéáãñáöÞ ÷ñÞóôçò\n"
"\n"
-" ÄéáãñáöÞ"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Set password expiration and account inactivation delays"
-msgstr ""
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr ""
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
+"Èá ÷ñåéáóôåßôå ôïõëÜ÷éóôïí äýï êáôáôìÞóåéò. Ìßá ãéá ôï ëåéôïõñãéêü óýóôçìá "
+"êáé Üëëç ìßá ãéá \n"
+"ôçí åéêïíéêÞ ìíÞìç (swap).\n"
"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Ïé äýï êñßóéìåò ðáñÜìåôñïé åßíáé ç óõ÷íüôçôá êáôáêüñõöçò áíáíÝùóçò åßíáé ç\n"
-"óõ÷íüôçôá ìå ôçí ïðïßá áíáíåþíåôáé ïëüêëçñç ç ïèüíç, êáèþò êáé ç óõ÷íüôçôá\n"
-"ïñéæüíôéáò áíáíÝùóçò, ç ïðïßá åßíáé ç óõ÷íüôçôá ìå ôçí ïðïßá áíáíåþíïíôáé\n"
-"ïé ïñéæüíôéåò ãñáììÝò.\n"
"\n"
-"Åßíáé ÐÏËÕ ÓÇÌÁÍÔÉÊÏ íá ìçí åðéëÝîåôå ôýðï ïèüíçò ôïõ ïðïßïõ ïé óõ÷íüôçôåò\n"
-"áíáíÝùóçò åßíáé åêôüò ôùí ïñßùí ôçò ïèüíçò óáò: õðÜñ÷åé êßíäõíïò "
-"êáôáóôñïöÞò\n"
-"ôçò ïèüíçò óáò. Áí äåí åßóôå óßãïõñïé, êÜíôå ìéá óõíôçñçôéêÞ åðéëïãÞ."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
-msgstr "Ôñïðïðïßçóç"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"ÅÜí õðÜñ÷ïõí Þäç êáôáôìÞóåéò áðü ðñïçãïýìåíç åãêáôÜóôáóç Þ áðü Üëëï "
+"åñãáëåßï, èá ÷ñåéáóôåß\n"
+"áðëþò íá åðéëÝîåôå óå ðïéÝò áðü áõôÝò èá åãêáôáóôÞóåôå ôï Linux óáò.\n"
"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
"\n"
-" Åðßóçò ïé åíôïëÝò \"%s\" êáé \"%s\" óáò åðéôñÝðïõí íá ïñßóåôå ôéò ñõèìßóåéò "
-"åðéëïãþí ãéá ìéá óõãêåêñéìÝíç åñãáóßá åêôýðùóçò. ÁðëÜ ðñïóèÝóôå ôéò "
-"åðéèõìçôÝò ñõèìßóåéò áðü ôçí ãñáììÞ åíôïëþí, ð.÷. \"%s <áñ÷åßï>\".\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "×ñåéÜæåôáé ôï äéêôõáêü üíïìá, üíïìá ÷ñÞóôç êáé êùäéêü ðñüóâáóçò!"
-
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Insert floppy"
-msgstr "ÅéóÜãåôå äéóêÝôá óôïí ïäçãü %s"
-
-#: ../../diskdrake/dav.pm:1
-#, fuzzy, c-format
-msgid ""
-"WebDAV is a protocol that allows you to mount a web server's directory\n"
-"locally, and treat it like a local filesystem (provided the web server is\n"
-"configured as a WebDAV server). If you would like to add WebDAV mount\n"
-"points, select \"New\"."
-msgstr ""
-"åîõðçñåôçôÞò\n"
-" åîõðçñåôçôÞò\n"
-" åîõðçñåôçôÞò\n"
-" ÍÝï."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
-msgstr "íÝï"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable syslog reports to console 12"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Would you like to try again?"
-msgstr "Èá èÝëáôå íá ñõèìßóåôå Ýíáí åêôõðùôÞ;"
-
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "Ïäçãüò"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected server"
-msgstr "Åðåîåñãáóßá åðéëåãìÝíïõ åîõðçñåôçôÞ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Ðáñáêáëþ åðéëÝîôå ôçí èÝóç ôùí áíôéãñÜöùí áóöáëåßáò"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Áðáéôåßôáé åðáíåêêßíçóç ãéá íá åíåñãïðïéçèïýí ïé áëëáãÝò óôïí ðßíáêá "
-"êáôáôìÞóåùí"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "×ùñßò ôçí cache ôïõ ðåñéçãçôÞ"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
-msgstr ""
-"ÁðÝôõ÷å ï Ýëåã÷ïò ôïõ óõóôÞìáôïò áñ÷åßùí %s. ÈÝëåôå íá åðéóêåõÜóåôå ôá "
-"óöÜëìáôá; (ðñïóï÷Þ, ìðïñåß íá ÷Üóåôå äåäïìÝíá)"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Ðáñáêáëþ åðéëÝîôå ôçí äéÜôáîç ôïõ ðëçêôñïëïãßïõ."
-
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "Ôõðéêü"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Ðáñáêáëþ åðéëÝîôå ôýðï ðïíôéêéïý."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
-msgstr "Óýíäåóç..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "ÁðÝôõ÷å ç ñýèìéóç ôïõ åêôõðùôÞ \"%s\"!"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "not configured"
-msgstr "äåí ñõèìßóôçêå"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "About"
-msgstr "Ðåñß"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "Ñõèìßóåéò proxies"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Áñ÷Þ: ôïìÝáò %s\n"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "No Mask"
-msgstr "ËÜèïò ðáêÝôï"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface already configured"
-msgstr "Ç äéåðáöÞ Äéêôýïõ Ý÷åé Þäç ñõèìéóôåß"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
-msgstr "Äåí åßíáé äõíáôÞ ç ðñüóâáóç óôç äéóêÝôá!"
-
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Mail Server"
-msgstr "ÅîõðçñåôçôÞò Ôá÷õäñïìåßïõ"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "Ðáñáêáëþ êÜíôå êëéê óå ìéá êáôÜôìçóç"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr ", ðïëõ÷ñçóôéêÞ óõóêåõÞ óôï HP JetDirect"
-
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
-msgstr "ÊáëÞ óáò ìÝñá!"
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Upgrade %s"
-msgstr "ÁíáâÜèìéóç %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Ôñüðïò óýíäåóçò åêôõðùôÞ"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
-msgstr "Ãßíåôáé áíáæÞôçóç óôáèìþí ôçëåüñáóçò ..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"ÓöÜëìá êáôÜ ôçí áðïóôïëÞ áñ÷åßïõ ìÝóù FTP.\n"
-"Ðáñáêáëþ äéïñèþóôå ôç ñýèìéóç ôïõ FTP."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr "¼ñéï Åêêßíçóçò ÉÑ:"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Ç õðçñåóßá õðåñåîõðçñåôçôÞ Äéáäéêôýïõ (inetd) îåêéíÜåé ìéá ðïéêéëßá\n"
-"Üëëùí õðçñåóéþí äéáäéêôýïõ üðïôå ÷ñåéÜæïíôáé. Åßíáé õðåýèõíç ãéá ôçí \n"
-"åêêßíçóç ðïëëþí õðçñåóéþí, üðùò telnet, ftp, rsh êáé rlogin. Ç "
-"áðåíåñãïðïßçóç\n"
-"áõôÞò ôçò õðçñåóßáò áðåíåñãïðïéçèåß åðßóçò êáé ôéò õðçñåóßåò ãéá ôéò ïðïßåò\n"
-"åßíáé õðåýèõíç."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
-msgstr "ôï ýøïò ôçò ãñáììÞò ðñïüäïõ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"ÅÜí äåí õðÜñ÷ïõí êáôáôìÞóåéò, ðñÝðåé íá ôéò äçìéïõñãÞóåôå ìå ôï ðáñáðÜíù "
+"åñãáëÝéï. ÁíÜëïãá ìå \n"
+"ôçí êáôÜóôáóç ôïõ äßóêïõ óáò, õðÜñ÷ïõí äéÜöïñåò ëýóåéò:\n"
"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
+"* ×ñÞóç õðÜñ÷ïíôùí êáôáôìÞóåùí: ÂñÝèçêáí ìßá Þ ðåñéóóüôåñåò êáôáôìÞóåéò "
+"Linux óôï óýóôçìÜ óáò.\n"
+" ÅÜí èÝëåôå íá ôéò êñáôÞóåôå, åðéëÝîôå áõôÞí ôçí åðéëïãÞ.\n"
"\n"
-" ÁðïèÞêåõóç ìÝóù %s óôïí õðïëïãéóôÞ: %s\n"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "ÁñãåíôéíÞ"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Domain Name Server"
-msgstr "ÅîõðçñåôçôÞò ¼íïìá ÔïìÝá"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Level:"
-msgstr "Åðßðåäï áóöáëåßáò:"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr "Ôï óçìåßï óýíäåóçò ðñÝðåé íá îåêéíÜåé ìå /"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Ðáñáêáëþ ïñßóôå ôïí ÷þñï ôïõ CD/DVD "
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "CUPS server"
-msgstr "ÅîõðçñåôçôÞò DNS"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "ÅîõðçñåôçôÞò Ôá÷õäñïìåßïõ Postfix"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "¸îïäïò ÷ùñßò áðïèÞêåõóç"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "ÕåìÝíç"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
-msgstr "Áõôü ôï ðñïúüí åßíáé äéáèÝóéìï óôçí éóôïóåëßäá ôïõ MandrakeStore"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> ÕðÜñ÷ïõí ðïëëÜ ðñÜãìáôá áðü ôá ïðïßá ìðïñåßôå íá åðéëÝîåôå (%s).\n"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
-msgstr ""
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
"\n"
+"* ÄéáãñáöÞ ïëüêëçñïõ ôïõ äßóêïõ: ÅÜí èÝëåôå íá äéáãñÜøåôå üëá ôá äåäïìÝíá "
+"êáé üëåò ôéò õðÜñ÷ïõóåò\n"
+" êáôáôìÞóåéò êáé íá ôá áíéêáôáóôÞóåôå ìå ôï íÝï óáò Mandrake Linux óýóôçìá, "
+"åðéëÝîôå áõôÞí ôçí \n"
+" åðéëïãÞ. ÐÑÏÓÏ×Ç: Äåí õðÜñ÷åé ôñüðïò íá áíôéóôñÝøåôå ôçí äéáäéêáóßá\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"
+"* ×ñÞóç åëåýèåñïõ ÷þñïõ óôçí êáôÜôìçóç ôùí Windows: ÅÜí Ý÷åôå åãêáôåóôçìÝíá "
+"ôá Microsoft Windows\n"
+" êáé êáôáëáìâÜíïõí üëï ôïí ÷þñï ôïõ äßóêïõ, ðñÝðåé íá äçìéïõññãÞóåôå "
+"åëÝõèåñï ÷þñï ãéá ôï Linux.\n"
+" Ãéá íá ãßíåé áõôü, ìðïñåßôå åßôå íá äéáãñÜøåôå ôçí êáôÜôìçóç ôùí Windows "
+"êáé üëá ôá äåäïìÝíá ôïõò\n"
+" (äåò \"ÄéáãñáöÞ ïëüêëçñïõ ôïõ äßóêïõ\" Þ \"Åéäéêüò\") Þ íá óõññéêíþóåôå "
+"ôçí êáôÜôìçóç ôùí Windows.\n"
+" Ç óõññßêíùóç ìðïñåß íá ãßíåé ÷ùñßò áðþëåéá äåäïìÝíùí. ÁõôÞ ç ëýóç "
+"óõíßóôáôáé åÜí èÝëåôå íá ÷ñçóéìïðïéåßôå\n"
+" Microsoft Windows êáé Mandrake Linux óôïí ßäéï õðïëïãéóôÞ.\n"
"\n"
"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "Åíôïðéóìüò äßóêïõ"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Äåí Ý÷åôå åðéëÝîåé ïìÜäá ðáêÝôùí.\n"
-"Ðáñáêáëþ åðéëÝîôå ôçí åëÜ÷éóôç åãêáôÜóôáóç ðïõ èÝëåôå:"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "Ðáñáêáëþ åéóÜãåôå ôçí äéåýèõíóç ôïõ åîõðçñåôçôÞ WebDAV"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "ÔáôæéêéóôÜí"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "Áðïäï÷Þ"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "ÐåñéãñáöÞ"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Please enter summary text."
-msgstr "Ðáñáêáëþ åéóÜãåôå ôï üíïìá ÷ñÞóôç"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "ÓöÜëìá êáôÜ ôï Üíïéãìá ôïõ %s ãéá åããñáöÞ: %s"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Ôýðïò ðïíôéêéïý: %s\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr ""
-"Ç êÜñôá ãñáöéêþí óáò õðïóôçñßæåé åðéôÜ÷õíóç ôñéóäéÜóôáôùí ãñáöéêþí óôá XFree "
-"%s."
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "ÅðéëÝîôå ïèüíç"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "Äåí åðéôñÝðåôáé Üäåéá åôéêÝôá"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "Äåí ìðïñþ íá ðñïóèÝóù êáôáôìÞóåéò"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "ÌÝãåèïò óå MB"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "ÁðïìáêñõóìÝíïò åêôõðùôÞò"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
-msgstr "Ðáñáêáëþ åðéëÝîôå ôç ãëþóóá."
-
-#: ../../network/network.pm:1
-#, 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."
-msgstr ""
-"ÐÑÏÓÏ×Ç: ÁõôÞ ç óõóêåõÞ åßíáé Þäç ñõèìéóìÝíç ãéá íá óõíäÝåôáé ìå ôï "
-"Äéáäßêôõï.\n"
-"ÁðëÜ ðáôÞóôå OK ãéá íá êñáôÞóåôå ôéò õðÜñ÷ïõóåò ñõèìßóåéò.\n"
-"ÁëëÜæïíôáò ôá ðáñáêÜôù ðåäßá èá áëëÜîåôå ôçí õðÜñ÷ïõóá ñýèìéóç."
-
-#: ../../any.pm:1
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
-msgstr ""
-"Ìðïñþ íá ñõèìßóù ôï óýóôçìÜ óáò Ýôóé þóôå íá óõíäÝåé áõôüìáôá Ýíáí ÷ñÞóôç."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Floppy format"
-msgstr "ÖïñìÜ ÄéóêÝôáò"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Generic Printers"
-msgstr "Ãåíéêïß ÅêôõðùôÝò"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-"Ðáñáêáëþ åðéëÝîôå ôïí åêôõðùôÞ óôïí ïðïßï èá áðïóôÝëëïíôáé ïé åñãáóßåò "
-"åêôýðùóçò Þ äþóôå ôï üíïìá óõóêåõÞò/áñ÷åßïõ óôç ãñáììÞ åéóáãùãÞò"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr ""
-"Ïé óáñùôÝò áõôïý ôïõ ìç÷áíÞìáôïò åßíáé äéáèÝóéìïé óå Üëëïõò õðïëïãéóôÝò"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of the root partition"
-msgstr "Ðñþôïò ôïìÝáò ôçò êáôÜôìçóçò åêêßíçóçò"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Alternative drivers"
-msgstr "Åíáëëáêôéêïß ïäçãïß"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+" Ðñéí áðïöáóßóåôå íá óõññéêíþóåôå ôïí äßóêï, ðñÝðåé íá êáôáëÜâåôå üôé ìåôÜ "
+"áðü áõôÞí ôçí äéáäéêáóßá\n"
+" èá Ý÷åôå ëéãüôåñï ÷þñï äéáèÝóéìï áðü ôá Windows ãéá áðïèÞêåõóç äåäïìÝíùí Þ "
+"åãêáôÜóôáóç åöáñìïãþí.\n"
"\n"
-"Please check all options that you need.\n"
-msgstr ""
"\n"
-"Ðáñáêáëþ åðéëÝîôå üëåò ôéò åðéëïãÝò ðïõ ÷ñåéÜæåóôå.\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Initrd"
+"* Åéäéêüò: ÅÜí èÝëåôå íá êáôáôìÞóåôå åóåßò ôïí äßóêï óáò, ÷ùñßò áõôüìáôåò "
+"áðïöÜóåéò. Åßíáé ìéá \n"
+" åðéëïãÞ ìå ðïëëÝò äõíáôüôçôåò áëëÜ åðéêßíäõíç, ìéá êáé ìðïñåßôå íá ÷Üóåôå "
+"üëá ôá äåäïìÝíá óáò\n"
+" åÜí êÜíåôå êÜðïéï ëÜèïò. Âåâáéùèåßôå üôé îÝñåôå ôé êÜíåôå ðñùôïý "
+"ðñï÷ùñÞóåôå."
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
-msgstr "ÐñÜóéíï ÁêñùôÞñéï"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "Áí áõôÞ ç óõóêåõÞ Ý÷åé ôï óöÜëìá Cyrix 6x86 Coma"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr "ÁëëáãÞ ñõèìßóåùí åêôõðùôÞ"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr "ÃêïõÜì"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:347
msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-"Ðáñáêáëþ åðéëÝîôå ôç èýñá üðïõ åßíáé óõíäåäåìÝíïò ï åêôõðùôÞ óáò Þ åéóÜãåôå "
-"Ýíá üíïìá óõóêåõÞò/áñ÷åßïõ óôç ãñáììÞ åéóáãùãÞò"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/ÅðéëïãÝò/Ôåóô"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:378
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."
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-"Áõôü ôï åðßðåäï ðñÝðåé íá ÷ñçóéìïðïéçèåß ìå ðñïóï÷Þ. ÊÜíåé ôï óýóôçìÜ óáò\n"
-"ðéï åý÷ñçóôï, áëëÜ ðïëý åõáßóèçôï. Äåí ðñÝðåé íá ÷ñçóéìïðïéçèåß óå óýóôçìá\n"
-"óõíäåäåìÝíï óôï Äéáäßêôõï Þ LAN. Äåí õðÜñ÷ïõí êùäéêïß ðñüóâáóçò."
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mounting partition %s"
-msgstr "ÐñïóÜñôçóç êáôÜôìçóçò %s"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "¼íïìá ÷ñÞóôç"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Ðïéá êáôÜôìçóç èÝëåôå íá ÷ñçóéìïðïéÞóåôå ãéá ôï Linux4Win;"
-
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "due to missing %s"
-msgstr "ôï kdesu ëåßðåé"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Test pages"
-msgstr "ÄïêéìáóôéêÝò óåëßäåò"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Logical volume name "
-msgstr "ÔïðéêÞ ìÝôñçóç"
+"Ïé íÝåò êáôáôìÞóåéò ðñÝðåé íá äéáìïñöùèïýí (äçëáäÞ íá äçìéïõñãçèåß Ýíá\n"
+"óýóôçìá áñ÷åßùí) ðñïôïý ÷ñçóéìïðïéçèïýí.\n"
+"\n"
+"Ìðïñåßôå åðßóçò íá äéáìïñöþóåôå êÜðïéåò ðñïûðÜñ÷ïõóåò êáôáôìÞóåéò ãéá íá \n"
+"äéáãñÜøåôå ôá äåäïìÝíá ôïõò. ÅÜí èÝëåôå êÜôé ôÝôïéï, ðáñáêáëþ åðéëÝîôå \n"
+"ôéò êáôáôìÞóåéò ðïõ èÝëåôå íá äéáìïñöþóåôå .\n"
+"\n"
+"Óçìåéþóôå üôé äåí åßíáé áðáñáßôçôï íá äéáìïñöþóåôå üëåò ôéò ðñïûðÜñ÷ïõóåò \n"
+"êáôáôìÞóåéò. ÐñÝðåé íá äéáìïñöþóåôå ôéò êáôáôìÞóåéò ðïõ ðåñéÝ÷ïõí ôï\n"
+"ëåéôïõñãéêü óýóôçìá (üðùò ïé \"/\", \"/usr\" êáé \"/var\"), áëëÜ äåí "
+"÷ñåéÜæåôáé\n"
+"íá äéáìïñöþóåôå êáôáôìÞóåéò ðïõ ðåñéÝ÷ïõí äåäïìÝíá ðïõ èÝëåôå íá êñáôÞóåôå\n"
+"(óõíÞèùò ç \"/home\").\n"
+"\n"
+"Ðáñáêáëþ íá åßóôå ðñïóåêôéêïß êáèþò ìåôÜ áðü áõôÞí ôçí äéáäéêáóßá üëá ôá \n"
+"äåäïìÝíá óôéò êáôáôìÞóåéò áõôÝò èá ÷áèïýí áìåôÜêëçôá.\n"
+"\n"
+"ÐáôÞóôå \"OK\" üôáí åßóôå Ýôïéìïé íá îåêéíÞóåôå ôçí äéáäéêáóßá.\n"
+"\n"
+"ÐáôÞóôå \"Áêýñùóç\" åÜí èÝëåôå íá áëëÜîåôå ôéò åðéëïãÝò óáò êáé íá \n"
+" ÷ñçóéìïðïéÞóåôå Üëëåò êáôáôìÞóåéò ãéá ôçí åãêáôÜóôáóç ôïõ Mandrake Linux.\n"
+"\n"
+"ÐáôÞóôå \"Ãéá Ðñï÷ùñçìÝíïõò\" åÜí èÝëåôå íá åðéëÝîåôå êáôáôìÞóåéò ðïõ èá \n"
+"åëåã÷èïýí ãéá åóöáëìÝíá ôìÞìáôá óôïí äßóêï."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:404
msgid ""
-"List of data to restore:\n"
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
"\n"
+"Please be patient."
msgstr ""
-"Ëßóôá ôùí äåäïìÝíùí ðñïò åðáíáöïñÜ:\n"
+"Ôï íÝï óáò ëåéôïõñãéêü óýóôçìá Mandrake Linux åãêáèßóôáôáé.\n"
+"ÁõôÞ ç äéáäéêáóßá èá ðÜñåé êÜðïéá þñá, áíÜëïãá ìå ôïí áñéèìü ôùí ðáêÝôùí \n"
+"ðïõ åðéëÝîáôå êáé ôçí ôá÷ýôçôá ôïõ õðïëïãéóôÞ óáò.\n"
"\n"
+"Ðáñáêáëþ ðåñéìÝíåôå õðïìïíåôéêÜ."
-#: ../../fs.pm:1
-#, c-format
-msgid "Checking %s"
-msgstr "¸ëåã÷ïò %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "ÅðéëïãÝò åêôõðùôÞ TCP/Socket"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "DMA êÜñôáò"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Disconnecting from Internet "
-msgstr "Áðïóýíäåóç áðü ôï Äéáäßêôõï"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "Ãáëëßá"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
-msgstr "áíáæÞôçóç"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
-msgstr "'¸ëåã÷ïò åãêáôåóôçìÝíùí ðñïãñáììÜôùí..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Ôï áðïìáêñõóìÝíï üíïìá åêôõðùôÞ ëåßðåé!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
+#: ../../help.pm_.c:412
+msgid ""
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
+"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-"ÈÝëåôå íá åíåñãïðïéÞóåôå ôçí åêôýðùóç óå åêôõðùôÝò óôï ôïðéêü óáò äßêôõï;\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "Ôïõñêßá"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Number of buttons"
-msgstr "Áñéèìüò ðëÞêôñùí"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "ÂéåôíÜì \"numeric row\" QWERTY"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Module"
-msgstr "¶ñèñùìá"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:425
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
msgstr ""
-"Åðßóçò åñãáóßåò ðïõ äåí äçìéïõñãÞèçêáí ìå áõôü ôï ðñüãñáììá Þ ôï \"foomatic-"
-"configure\" äåí ìðïñïýí íá ìåôáöåñèïýí."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
-msgstr "Õëéêü"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ôáõôü÷ñïíá ôá ðëÞêôñá Ctrl êáé Alt"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "Ç.Ð.Á."
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "User umask"
-msgstr "×ñÞóôåò"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "Åî ïñéóìïý ëåéôïõñãéêü;"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "Åëâåôéêü (ÃåñìáíéêÞ äéÜôáîç)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Ñýèìéóç üëùí ôùí êåöáëþí áíåîÜñôçôá"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../help.pm_.c:432
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 "áíé÷íåýèçêå."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "ÅîõðçñåôçôÞò NTP"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Sulogin(8) in single user level"
-msgstr ""
-"\n"
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
"\n"
-" ÷ñÞóôçò åðßðåäï."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Load/Save on floppy"
-msgstr "Öüñôùóç/ÁðïèÞêåõóç óå äéóêÝôá"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
-msgstr "Áõôü ôï èÝìá äåí Ý÷åé áêüìá êÜðïéï bootsplash óôï %s !"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "êáëü"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "¸îïäïò óå %d äåõôåñüëåðôá"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Óå ðïéá óåéñéáêÞ ðüñôá åßíáé óõíäåäåìÝíï ôï ìüíôåì óáò;"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Property"
-msgstr "Éäéüôçôá"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr "Ñýèìéóç LÁÍ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "ÃêÜíá"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
-msgstr "Ç ÈÝóç Þ ôï ¶ñèñùìá áðáéôåßôáé"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Advanced Options"
-msgstr "Ðñï÷ùñçìÝíåò ÅðéëïãÝò"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "View Configuration"
-msgstr "Ñýèìéóç"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
-msgstr "ÓöÜëìá Coma"
+"If you do not know what to choose, keep the default option."
+msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../help.pm_.c:442
+#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or by another\n"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -5045,1362 +3266,892 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"\n"
-" Linux\n"
-" Linux\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" IDE\n"
-"\n"
-"\n"
+"Óå áõôü ôï óçìåßï, èá ÷ñåéáóôåß íá åðéëÝîåôå óå ðïéÝò êáôáôìÞóåéò èá "
+"åãêáôáóôÞóåôå \n"
+"ôï Mandrake Linux. ÅÜí ðñïûðÜñ÷ïõí êáôáôìÞóåéò, áðü ðáëáéüôåñç åãêáôÜóôáóç Þ "
+"áðü \n"
+"Üëëï åñãáëåßï, ìðïñåßôå íá ôéò ÷ñçóéìïðïéÞóåôå. Áëëéþò, èá ðñÝðåé íá "
+"ïñßóåôå \n"
+"íÝåò êáôáôìÞóåéò.\n"
"\n"
"\n"
+"Ãéá íá äçìéïõñãÞóåôå êáôáôìÞóåéò, ðñÝðåé ðñþôá íá åðéëÝîåôå óêëçñü äßóêï, "
+"êÜíïíôáò\n"
+"êëéê ìå ôï ðïíôßêé óôï \"hda\" óôïí ðñþôï IDE äßóêï, \"hdb\" óôïí äåýôåñï "
+"IDE, \"sda\"\n"
+"óôïí ðñþôï SCSI äßóêï êëð\n"
"\n"
"\n"
+"Ãéá íá êáôáôìÞóåôå äßóêï óáò, ìðïñåßôå íá åðéëÝîåôå:\n"
"\n"
+" * ÐëÞñçò äéáãñáöÞ: áõôÞ ç åðéëïãÞ äéáãñÜöåé üëåò ôéò êáôáôìÞóåéò ôïõ \n"
+" åðéëåãìÝíïõ äßóêïõ.\n"
"\n"
"\n"
+" * Áõôüìáôç åðéëïãÞ: ÁõôÞ ç åðéëïãÞ äçìéïõñãåß áõôüìáôá êáôáôìÞóåéò \n"
+" ext2 êáé swap óôïí åëåýèåñï ÷þñï ôïõ äßóêïõ.\n"
"\n"
-" ¶ëëá\n"
"\n"
-" ÁðïèÞêåõóç\n"
+" * ÄéÜóùóç ðßíáêá êáôáôìÞóåùí: ÅÜí ï ðßíáêáò êáôáôìÞóåùí åßíáé "
+"êáôåóôñáìÝíïò,\n"
+" ìðïñåßôå íá ðñïóðáèÞóåôå íá ôïí åðáíáöÝñåôå. Ðáñáêáëþ íá åßóôå "
+"ðñïóåêôéêïß\n"
+" êáé íá èõìÜóôå üôé ìðïñåß íá áðïôý÷åé.\n"
"\n"
"\n"
+" * Áêýñùóç: Ãéá íá áêõñþóåôå ü,ôé Ý÷åôå êÜíåé.\n"
"\n"
-" ÅðáíáöïñÜ\n"
"\n"
+" * Åðáíáöüñôùóç: Ãéá íá áêõñþóåôå ü,ôé Ý÷åôå êÜíåé êáé íá îáíáöïñôþóåôå "
+"ôïí \n"
+" áñ÷éêü óáò ðßíáêá êáôáôìÞóåùí.\n"
"\n"
"\n"
+" * ÌÜãïò: ÅÜí èÝëåôå íá äçìéïõñãçèïýí ôåëÝéùò áõôüìáôá ïé êáôáôìÞóåéò. "
+"Óõíéóôþìåíç \n"
+" åðéëïãÞ åÜí äåí Ý÷åôå êáëÞ ãíþóç ôçò äéáäéêáóßáò.\n"
"\n"
"\n"
+" * Åðáíáöüñôùóç áðü äéóêÝôôá: ÅÜí åß÷áôå áðïèçêåýóåé ôïí ðßíáêá "
+"êáôáôìÞóåùí óå äéóêÝôôá\n"
+" óå êÜðïéá ðñïçãïýìåíç åãêáôÜóôáóç, ìðïñåßôå íá ôïí åðáíáöÝñåôå. \n"
"\n"
"\n"
+" * ÁðïèÞêåõóç óå äéóêÝôôá: Ãéá íá óþóåôå ôïí ðßíáêá êáôáôìÞóåùí óå "
+"äéóêÝôôá, þóôå íá \n"
+" ìðïñåßôå íá ôïí åðáíáöÝñåôå. Ç ÷ñÞóç áõôÞò ôçò åðéëïãÞò óõíßóôáôáé.\n"
"\n"
"\n"
-" ìåôÜ âßáò\n"
+" * ÔÝëïò: ¼ôáí ôåëåéþóåôå ôçí êáôÜôìçóç, åðéëÝîôå áõôü ãéá íá êÜíåôå ôéò "
+"áëëáãÝò ìüíéìåò.\n"
"\n"
"\n"
+"ÐëçñïöïñéáêÜ, ìðïñåßôå íá åðéëÝîåôå üëåò ôéò åðéëïãÝò êáé ìÝóù "
+"ðëçêôñïëïãßïõ: \n"
+"Ìåôáêéíçèåßôå óôéò êáôáôìÞóåéò ÷ñçóéìïðïéþíôáò ôï ðëÞêôñï Tab êáé ôá "
+"âåëÜêéá.\n"
"\n"
-" Ïäçãüò\n"
"\n"
+"¼ôáí Ý÷åôå åðéëÝîåé ìéá êáôÜôìçóç, ìðïñåßôå íá ðáôÞóåôå:\n"
"\n"
+" * Ctrl-c ãéá äçìéïõñãßá êáôÜôìçóçò (üôáí Ý÷åôå åðéëÝîåé Üäåéï "
+"÷þñï)\n"
"\n"
-" Áíáßñåóç\n"
+" * Ctrl-d ãéá äéáãñáöÞ êáôÜôìçóçò\n"
"\n"
+" * Ctrl-m ãéá ïñéóìü óçìåßïõ óýíäåóçò \n"
"\n"
+" \n"
+"Åáí êÜíåôå åãêáôÜóôáóç óå Ýíá PPC ìç÷Üíçìá, èá èÝëåôå íá äçìéïõñãÞóåôå ìéá "
+"ìéêñÞ HFS 'bootstrap' êáôÜôìçóç ôïõëÜ÷éóôïí 1Ì ãéá ÷ñÞóç\n"
+"áðü ôïí yaboot bootloader. ÅÜí óêïðåýåôå íá êÜíåôå ôçí êáôÜôìçóç ìåãáëýôåñç, "
+"ð.÷. 50ÌÂ, ßóùò ôçí âñåßôå ÷ñÞóéìç ãéá áðïèÞêåõóç \n"
+"åíüò ðõñÞíá êáé ramdisk image ãéá åðßãïõóåò êáôáóôÜóåéò."
+
+#: ../../help.pm_.c:513
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-" Ïëïêëçñþèçêå\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"
-" Ðüôå\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"
-" Ïëïêëçñþèçêå\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-" Ðüôå\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
"\n"
-" íÝï\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"Ðåñéóóüôåñåò ôùí ìßá êáôáôìÞóåéò Windows âñÝèçêáí óôïí äßóêï óáò. Ðáñáêáëþ \n"
+"åðéëÝîôå ðïéá èÝëåôå íá óõññéêíþóåôå ãéá íá åãêáôáóôÞóåôå ôï Mandrake "
+"Linux.\n"
"\n"
-" ÄéáãñáöÞ\n"
+"ÊÜèå êáôÜôìçóç áíáöÝñåôáé ùò: \"¼íïìá Linux\", \"¼íïìá Windows\"\n"
+"\"×ùñçôéêüôçôá\".\n"
"\n"
+"Ôï üíïìá Linux óçìáßíåé ôá åîÞò: \"Ôýðïò äßóêïõ\",\"áñéèìüò äßóêïõ\",\n"
+"\"áñéèìüò êáôÜôìçóçò ãéá ðáñÜäåéãìá, \"hda1\").\n"
"\n"
+"Ï \"Ôýðïò äßóêïõ\" åßíáé \"hd\" åÜí ðñüêåéôáé ãéá äßóêï IDE êáé \"sd\" \n"
+"ãéá SCSI äßóêï.\n"
"\n"
+"Ï \" áñéèìüò äßóêïõ\"åßíáé ðÜíôá Ýíá ãñÜììá ìåôÜ ôï \"hd\" Þ \"sd\". Ãéá\n"
+"ôïõò IDE äßóêïõò: \n"
"\n"
+" * \"a\" åßíáé ï \"master äßóêïò óôïí ðñþôï åëåãêôÞ IDE\",\n"
"\n"
+" * \"b\" åßíáé ï \"slave äßóêïò óôïí ðñþôï åëåãêôÞ IDE\",\n"
"\n"
-" HFS\n"
+" * \"c\" åßíáé ï \"master äßóêïò óôïí äåýôåñï åëåãêôÞ IDE\",\n"
"\n"
+" * \"d\" åßíáé ï \"slave äßóêïò óôïí äåýôåñï åëåãêôÞ IDE\".\n"
"\n"
+"Ãéá äßóêïõò SCSI, \"a\" åßíáé ï ðñþôïò äßóêïò, \"b\" åßíáé ï äåýôåñïò "
+"äßóêïò\n"
+" êëð...\n"
"\n"
-"."
+"Ôï \"¼íïìá Windows\" åßíáé ôï ãñÜììá ôçò êáôÜôìçóçò üðùò öáßíåôáé áðü ôá\n"
+"Windows (ï ðñþôïò äßóêïò Þ êáôÜôìçóç ëÝãåôáé \"C:\")."
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
+msgstr "Ðáñáêáëþ ðåñéìÝíåôå. ÁõôÞ ç äéáäéêáóßá ìðïñåß íá ðÜñåé ìåñéêÜ ëåðôÜ."
+
+#: ../../help.pm_.c:547
+#, fuzzy
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 ""
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
"\n"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
"\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
"\n"
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
"\n"
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
"\n"
-" åîõðçñåôçôÞò\n"
-"."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "ÐñïêëÞèçêå óöÜëìá êáôÜ ôçí åãêáôÜóôáóç ôùí ðáêÝôùí:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Ñõèìßóåéò åêôõðùôÞ ìåëÜíçò Lexmark"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "Áíáßñåóç"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Save partition table"
-msgstr "ÁðïèÞêåõóç ðßíáêá êáôáôìÞóåùí"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "Öéíëáíäéêü"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "Ðñþçí ÃéïõãêïóëáâéêÞ Äçìïêñáôßá ôçò Ìáêåäïíßáò"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
msgstr ""
-"Ôï êïéíü÷ñçóôï áíÜ ÷ñÞóôç êÜíåé ÷ñÞóç ôçò ïìÜäáò \"fileshare\". \n"
-"Ìðïñåßôå íá ôçí ðñïóèÝóåôå óôïí êÜèå ÷ñÞóôç óå áõôÞ ôçí ïìÜäá ìå ôï "
-"userdrake."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "Óëïâåíßáò"
-
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid ""
-"Authorize:\n"
+"Ðáñáêáëþ åðéëÝîôå \"ÅãêáôÜóôáóç\" åÜí äåí õðÜñ÷åé åãêáôåóôçìÝíç ðáëáéüôåñç "
+"Ýêäïóç ôïõ Mandrake Linux\n"
+"Þ åÜí èÝëåôå íá ÷ñçóéìïðïéÞóåôå ðåñéóóüôåñá ôïõ åíüò ëåéôïõñãéêÜ óõóôÞìáôá.\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"
+"ÅðéëÝîôå \"ÁíáâÜèìéóç\" åÜí èÝëåôå íá áíáâáèìßóåôå ìéá ðñïûðÜñ÷ïõóá "
+"åãêáôÜóôáóç ôïõ Mandrake Linux\n"
"\n"
-"- none if set to \"NONE\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
-msgstr ""
+"ÁíÜëïãá ìå ôéò ãíþóåéò óáò óôï GNU/Linux, ìðïñåßôå íá åðéëÝîåôå Ýíá áðü ôá "
+"ðáñáêÜôù åðßðåäá åãêáôÜóôáóçò\n"
+"Þ áíáâÜèìéóçò ôïõ Mandrake Linux:\n"
"\n"
+"* Óõíéóôþìåíï: ÅÜí äåí Ý÷åôå îáíáåãêáôáóôÞóåé ðïôÝ Ýíá GNU/Linux óýóôçìá. Ç "
+"åãêáôÜóôáóç èá åßíáé \n"
+" ðïëý åýêïëç êáé èá óáò æçôçèåß íá áðáíôÞóåôå ëßãåò åñùôÞóåéò.\n"
"\n"
"\n"
-" êáíÝíá\n"
-"."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr "Ëéâýç"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Ñýèìéóç, åãêáôÜóôáóç ëïãéóìéêïý, åêêßíçóç åîõðçñåôçôþí..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "ÅêôõðùôÞò óôçí ðáñÜëëçëç èÞñá #%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"* ÐñïóáñìïóìÝíç: ÅÜí åßóôå åîïéêåéùìÝíïò ìå ôï GNU/Linux, ìðïñåßôå íá "
+"åðéëÝîåôå ôçí âáóéêÞ ÷ñÞóç\n"
+" (åîõðçñåôçôÞò, óôáèìüò åñãáóßáò) ôïõ óõóôÞìáôüò óáò. Èá ÷ñåéáóôåß íá "
+"áðáíôÞóåôå óå ðåñéóóüôåñåò\n"
+" åñùôÞóåéò, ïðüôå èá ðñÝðåé íá Ý÷åôå êÜðïéåò âáóéêÝò ãíþóåéò ó÷åôéêÜ ìå ôçí "
+"ëåéôïõñãßá ôïõ GNU/Linux.\n"
"\n"
-"- Burn to CD"
-msgstr ""
"\n"
-"- ÅããñáöÞ óå CD"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "Ðßíáêáò"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "äåí îÝñù ðþò íá ìïñöïðïéÞóù ôï %s óå ôýðï %s"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Model"
-msgstr "ÌïíôÝëï"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "USB printer #%s"
-msgstr "åêôõðùôÞò USB #%s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Stop Server"
-msgstr "Ôåñìáôéóìüò ÅîõðçñåôçôÞ"
+"* Åéäéêüò: ÅÜí Ý÷åôå åìðåéñßá ìå ôï GNU/Linux. ¼ðùò êáé ðáñáðÜíù, ìðïñåßôå "
+"íá åðéëÝîåôå ôçí âáóéêÞ\n"
+" ÷ñÞóç ôïõ óõóôÞìáôïò. Èá ìðïñÝóåôå åðßóçò íá ðñïóáñìüóåôå ôï óýóôçìá óôéò "
+"áíÜãêåò óáò ëåðôïìåñþò,\n"
+" áëëÜ èá ÷ñåéáóôåß íá áðáíôÞóåôå óå åîåéäéêåõìÝíåò åñùôÞóåéò ðïõ "
+"ðñïûðïèÝôïõí åîåéäéêåõìÝíåò ãíþóåéò.\n"
+" Âåâáéùèåßôå üôé îÝñåôå ôé êÜíåôå ðñùôïý åðéëÝîåôå áõôÞí ôçí åãêáôÜóôáóç."
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../help.pm_.c:582
msgid ""
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
+"Click on the \"More\" button to be presented with the complete list of\n"
+"supported keyboards.\n"
"\n"
-"ÅðéëÝîôå ôï èÝìá \n"
-"ãéá ôï lilo êáé ôï\n"
-"bootsplash, ìðïñåßôå\n"
-"íá ôá åðéëÝîåôå êáé\n"
-"îå÷ùñéóôÜ"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Modem"
-msgstr "Ìüíôåì"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr "Ôïõâáëïý"
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr "×ñÞóç áõôüìáôçò áíß÷íåõóçò"
-
-#: ../../services.pm:1
-#, 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."
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
msgstr ""
-"Ôï GPM ðñïóèÝôåé õðïóôÞñéîç ðïíôéêéïý óå åöáñìïãÝò âáóéóìÝíåò óå êïíóüëá\n"
-"êåéìÝíïõ êáé åðéôñÝðåé ëåéôïõñãßåò áðïêïðÞò êáé åðéêüëëçóçò ìå ÷ñÞóç \n"
-"ðïíôéêéïý óôçí êïíóüëá, êáèþò êáé õðïóôÞñéîç áíáäõïìÝíùí ìåíïý."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr "Îåêßíçóáí óôçí åêêßíçóç"
-#: ../advertising/12-mdkexpert.pl:1
-#, fuzzy, 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:"
-msgstr "Linux:"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "No password aging for"
-msgstr "×ùñßò êùäéêü ðñüóâáóçò"
-
-#: ../../standalone/draksec:1
-#, 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"
-msgstr ""
-"Ïé ðáñáêÜôù åðéëïãÝò áóöáëåßáò ìðïñïýí íá åðéëåãïýí\n"
-"ãéá ôçí ðñïóáñìïãÞ ôçò áóöÜëåéáò. Ãéá åðåîçãÞóåéò äåßôå ôçí âïÞèåéá.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Âñåßôå áõôüìáôá äéáèÝóéìïõò åêôõðùôÝò óå áðïìáêñõóìÝíá ìç÷áíÞìáôá"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr "Áíáôïëéêü Ôéìüñ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
-msgstr "óôç ÓõóêåõÞ Ôáéíßáò"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:598
msgid ""
+"The first step is to choose your preferred language.\n"
"\n"
-"- Save to Tape on device: %s"
-msgstr ""
+"Please choose your preferred language for installation and system usage.\n"
"\n"
-" ÁðïèÞêåõóç óå Ôáéíßá óôç óõóêåõÞ: %s"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Login name"
-msgstr "¼íïìá ÔïìÝá"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Report unowned files"
-msgstr "áí ïñéóôåß íáé, áíáöïñÜ Üãíùóôùí áñ÷åßùí."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr "ÄéáãñáöÞ ðñïößë..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "ÅãêáôÜóôáóç Foomatic..."
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Ðáñáêáëþ áðïóõíäåèåßôå êáé ìåôÜ ðáôÞóôå Ctrl-Alt-BackSpace"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected"
-msgstr "áíé÷íåýèçêå"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "Ôï äßêôõï ðñÝðåé íá åðáíåêêéíçèåß, ÈÝëåôå íá ôï åðáíåêêéíÞóåôå ;"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package: "
-msgstr "ÐáêÝôï:"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr "Áäõíáìßá åããñáöÞò ôïõ /etc/sysconfig/bootsplash."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "ÐÑÏÅÉÄÏÐÏÉÇÓÇ ÁÓÖÁËÅÉÁÓ!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
-msgstr "¼÷é, äåí åðéèõìþ áõôüìáôç ðñïóðÝëáóç"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Åñãáëåßï ÌåôÜâáóçò Windows "
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr "¼ëåò ïé ãëþóóåò"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "Áöáßñåóç %s"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "%s not found...\n"
-msgstr "ôï %s äåí áíôáðïêñßíåôáé"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Testing your connection..."
-msgstr "ÄïêéìÞ óýíäåóçò... "
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cache size"
-msgstr "ìÝãåèïò Cache"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Ôþñá õðÜñ÷ïõí êùäéêïß ðñüóâáóçò, áëëÜ ç ÷ñÞóç ôïõ óõóôÞìáôïò óå äßêôõï áêüìá "
-"äåí óõíßóôáôáé."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr "Áñ÷éêüò ôïìÝáò: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr ""
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Read"
-msgstr "Ìüíï ãéá áíÜãíùóç"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Ôï ðáêÝôï %s ðñÝðåé íá áíáâáèìéóôåß. ÈÝëåôå íá ôï åãêáôáóôÞóåôå;"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
-msgstr "Óåû÷Ýëëåò"
-
-#: ../../printer/printerdrake.pm:1
-#, 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"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
"\n"
-"For your printer Printerdrake has found:\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
"\n"
-"%s"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
-"Ôï Printerdrake óõíÝêñéíå ôï üíïìá ôïõ ìïíôÝëïõ áðü ôïí áõôüìáôï åíôïðéóìü "
-"ìå ôç ëßóôá ôùí ìïíôÝëùí áðü ôçí âÜóç äåäïìÝíùí åêôõðùôþí ãéá íá ôçí "
-"êáëýôåñç åðéëïãÞ. ÁõôÞ ç åðéëïãÞ ìðïñåß íá åßíáé ëÜèïò, åéäéêÜ åÜí ï "
-"åêôõðùôÞò óáò äåí åßíáé êáôá÷ùñçìÝíïò óôçí âÜóç äåäïìÝíùí. Äåßôå ëïéðüí áí ç "
-"åðéëïãÞ ôïõ åêôõðùôÞ åßíáé óùóôÞ êáé êÜíôå êëéê óôï \"Ôï ìïíôÝëï åßíáé óùóôü"
-"\" åÜí ü÷é êÜíôå êëéê óôï \"ÅðéëÝîôå ôï ìïíôÝëï ÷åéñïêßíçôá\" ãéá íá "
-"åðéëÝîåôå ÷åéñïêßíçôá ôï ìïíôÝëï áðü ôçí åðüìåíç ïèüíç\n"
-"Ãéá ôïí åêôõðùôÞ óáò ôï Printerdrake âñÞêå:\n"
-"\n"
-"%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Bad password on %s"
-msgstr "ÅóöáëìÝíïò êùäéêüò óôï %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:617
msgid ""
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
"\n"
-"¸íáò Üãíùóôïò åêôõðùôÞò åßíáé óõíäåìÝíïò áðåõèåßáò óôï óýóôçìÜ óáò"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Right Control key"
-msgstr "Äåîéü ðëÞêôñï Alt"
-
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr "ÅéóÜãåôå ìéá ìïñöïðïéçìÝíç äéóêÝôá FAT óôïí ïäçãü %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "ÆÜìðéá"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr "Äéá÷åéñéóôÞò Áóöáëåßáò (ðñïóðÝëáóç Þ ôá÷õäñïìåßï)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr "ËõðÜìáé, õðïóôçñßæïíôáé ìüíï ïé ðõñÞíåò 2.4"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr "Ñïõìáíéêü (qwerty)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
-msgstr "Õðü ÁíÜðôõîç ... ðáñáêáëþ ðåñéìÝíåôå."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "Áßãõðôïò"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "ÔóÝ÷éêç Äçìïêñáôßá"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "ÊÜñôá Þ÷ïõ"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Import Fonts"
-msgstr "ÅéóáãùãÞ Ãñáììáôïóåéñþí"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"¸÷åôå ìéá ìåãÜëç êáôÜôìçóç ôùí MicroSoft Windows \n"
-"Ðñïôåßíù ðñþôá íá áëëÜîåôå ôï ìÝãåèüò ôçò\n"
-"(ÊÜíôå êëéê åðÜíù ôçò êáé åðéëÝîôå \"ÁëëáãÞ ÌåãÝèïõò\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
msgstr ""
-"Óõã÷áñçôÞñéá, ç ñýèìéóç äéêôýïõ êáé äéáäéêôýïõ ôåëåßùóå.\n"
-"Ïé ñõèìßóåéò èá åöáñìïóôïýí ôþñá óôï óýóôçìÜ óáò.\n"
-"\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "ÁëëáãÞ ôýðïõ êáôÜôìçóçò"
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../help.pm_.c:638
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."
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"ÁíÜëõóç\n"
+"Ðáñáêáëþ åðéëÝîôå ôçí êáôÜëëçëç èýñá. Ãéá ðáñÜäåéãìá,\n"
+"ç\"COM1\" óôá Windows ïíïìÜæåôáé \"ttyS0\" óôï GNU/Linux."
+
+#: ../../help.pm_.c:642
+msgid ""
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
"\n"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
"\n"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
"\n"
-"."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Network Options"
-msgstr "ÅðéëïãÝò Äéêôýïõ"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Enable msec hourly security check"
-msgstr ""
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
"\n"
-" ùñéáßá."
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"ÅìöÜíéóç èÝìáôïò\n"
-"óôçí êïíóüëá"
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr "(óôïí %s)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr "ìÝóïò üñïò"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "New printer name"
-msgstr "ÊáíÝíá üíïìá åêôõðùôÞ"
-
-#: ../../fs.pm:1
-#, c-format
+#: ../../help.pm_.c:678
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 ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr "ÉóçìåñéíÞ ÃïõúíÝá"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup System"
-msgstr "Áíôßãñáöï Áóöáëåßáò ÓõóôÞìáôïò"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Build Backup"
-msgstr "Äçìéïõñãßá áíôéãñÜöùí áóöáëåßáò"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"Ãéá íá åêôõðþóåôå áðü ôç ãñáììÞ åíôïëþí (ðáñÜèõñï ôåñìáôéêïý) êÜíôå ÷ñÞóç "
-"ôçò åíôïëÞò \"%s <áñ÷åßï>\" Þ \"%s<áñ÷åßï>\".\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Ðñïò ôï ðáñüí äåí õðÜñ÷åé Üëëç åíáëëáêôéêÞ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwertz)"
-msgstr "Ñïõìáíéêü (qwertz)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Write Config"
-msgstr "ÅããñáöÞ Ñýèìéóçò"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The routed daemon allows for automatic IP router table updated via\n"
-"the RIP protocol. While RIP is widely used on small networks, more complex\n"
-"routing protocols are needed for complex networks."
-msgstr ""
-"Ç õðçñåóßá routed åðéôñÝðåé ôçí áõôüìáôç åíçìÝñùóç ôïõ ðßíáêá äñïìïëüãçóçò \n"
-"IP ìÝóù ôïõ ðñùôïêüëëïõ RIP. Ðáñ' üëï ðïõ ôï RIP åßíáé åõñÝùò äéáäåäïìÝíï "
-"óå \n"
-"ìéêñÜ äßêôõá, ìåãáëýôåñá äßêôõá áðáéôïýí ðåñéðëïêüôåñá ðñùôüêïëëá."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr "ÊéñéìðÜôé"
-
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech Mouse (óåéñéáêü, ðáëéüò C7 ôýðïò)"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "¶ëëï\n"
-
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with 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"
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\n"
"\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
+"OS;\n"
"\n"
-"Monitor\n"
+" * if a grub or LILO boot sector is found, it will replace it with a new\n"
+"one.\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"
+"if in doubt, DrakX will display a dialog with various options.\n"
"\n"
+" * \"Bootloader to use\": you have three choices:\n"
"\n"
+" * \"GRUB\": if you prefer grub (text menu);\n"
"\n"
-"Resolution\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\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"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
"\n"
-"Test\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\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"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
+msgstr ""
+
+#: ../../help.pm_.c:718
+#, fuzzy
+msgid ""
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
+msgstr ""
+"Ôï LILO êáé ôï Grub åßíáé ðñïãñÜììáôá åêêßíçóçò: Ìðïñïýí íá åêêéíÞóïõí \n"
+"ôï GNU/Linux Þ ïðïéïäÞðïôå Üëëï ëåéôïõñãéêü õðÜñ÷åé óôï óýóôçìÜ óáò. "
+"ÊáíïíéêÜ, \n"
+"ôá åðéðëÝïí ëåéôïõñãéêÜ ðñïóäéïñßæïíôáé êáé ñõèìßæïíôáé óùóôÜ. ÅÜí áõôü "
+"äåí \n"
+"óõíÝâç, ìðïñåßôå íá ðñïóèÝóåôå åðéðëÝïí åðéëïãÝò óå áõôÞí ôçí ïèüíç. \n"
+"ÐñïóÝîôå íá åðéëÝîåôå ôéò óùóôÝò ðáñáìÝôñïõò.\n"
"\n"
-"Options\n"
+"Ìðïñåßôå åðßóçò íá áðïêëåßóåôå ôçí ðñüóâáóç óå Üëëá ëåéôïõñãéêÜ óõóôÞìáôá "
+"áöáéñþíôáò\n"
+"ôéò áíôßóôïé÷åò åðéëïãÝò. Óå áõôÞí üìùò ôçí ðåñßðôùóç, èá ÷ñåéáóôåßôå "
+"äéóêÝôôá åêêßíçóçò\n"
+"ãéá íá ôá ÷ñçóéìïðïéÞóåôå!"
+
+#: ../../help.pm_.c:732
+msgid ""
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\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."
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
msgstr ""
-"Óýóôçìá Linux\n"
-"\n"
-" Linux\n"
+"ÐñÝðåé íá ðñïóäéïñßóåôå ðïý èÝëåôå íá åãêáôáóôáèïýí ïé ðëçñïöïñßåò ðïõ \n"
+"åßíáé áðáñáßôçôåò ãéá ôçí åêêßíçóç ôïõ GNU/Linux.\n"
"\n"
+"Åêôüò êáé áí îÝñåôå ðïëý êáëÜ ôé êÜíåôå, åðéëÝîôå \"Ðñþôïò ôïìÝáò\n"
+"ôïõ äßóêïõ (MBR)\"."
+
+#: ../../help.pm_.c:739
+msgid ""
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
"\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
"\n"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
+msgstr ""
+
+#: ../../help.pm_.c:759
+#, fuzzy
+msgid ""
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
"\n"
+"Because hardware detection does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
"\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
+msgstr ""
+"Ôï DrakX èá ðñïóðáèÞóåé íá åíôïðßóåé ðñïóáñìïãåßò SCSI ôýðïõ PCI.\n"
+"ÅÜí ôï DrakX åíôïðßóåé Ýíáí ðñïóáñìïãÝá ðïõ îÝñåé ðþò íá ôïí "
+"÷ñçóéìïðïéÞóåé,\n"
+"èá åãêáôáóôÞóåé áõôüìáôá ôïí êáôÜëëçëï ïäçãü\n"
"\n"
"\n"
+"ÅÜí Ý÷åôå ðñïóáñìïãÝá SCSI ôýðïõ ISA, êÜðïéïí ìÞ áíáãíùñßóéìï PCI "
+"ðñïóáñìïãÝá \n"
+"Þ äåí Ý÷åôå êáíÝíáí ðñïóáñìïãÝá SCSI, ôï DrakX èá óáò ñùôÞóåé åÜí Ý÷åôå "
+"êÜðïéïí \n"
+"ðñïóáñìïãÝá SCSI óôï óýóôçìÜ óáò. ÅÜí äåí Ý÷åôå, ðáôÞóôå áðëþò '¼÷é'. ÅÜí "
+"ðáôÞóåôå\n"
+"'Íáé', èá óáò æçôçèåß íá áðéëÝîåôå ôïí ôýðï ôïõ áðü Ýíáí êáôÜëïãï.\n"
"\n"
-" åîõðçñåôçôÞò\n"
"\n"
+"ÅÜí åðéëÝîåôå ðñïóáñìïãÝá, ôï DrakX èá óáò ñùôÞóåé åÜí èÝëåôå íá ïñßóåôå "
+"åðéëïãÝò.\n"
+"ÓõíÞèùò, áöÞíïíôáò ôï DrakX íá ñõèìßóåé áõôüìáôá ôïí ðñïóáñìïãÝá, äåí èá "
+"Ý÷åôå ðñüâëçìá.\n"
"\n"
"\n"
+"Óå áíôßèåôç ðåñßðôùóç, èá ðñÝðåé íá äþóåôå åðéëïãÝò ãéá ôïí ïäçãü. \n"
+"Óõìâïõëåõôåßôå ôïí Ïäçãü ÅãêáôÜóôáóçò ãéá ôï ðþò èá âñåßôå áõôÝò ôéò \n"
+"ðëçñïöïñßåò áðü ôçí åãêáôÜóôáóç ôùí Windows (áí õðÜñ÷åé), áðü ôçí "
+"ôåêìçñßùóç\n"
+"ôïõ õëéêïý Þ áðü ôçí éóôïóåëßäá ôïõ êáôáóêåõáóôÞ (áí Ý÷åôå ðñüóâáóç óôï "
+"Internet)."
+
+#: ../../help.pm_.c:781
+msgid ""
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
"\n"
-" Ïèüíç\n"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\n"
"\n"
+"For Linux, there are a few possible options:\n"
"\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
"\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
"\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
"\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"hda=autotune\n"
"\n"
-" ÁíÜëõóç\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
+" * Initrd: this option can be used either to load initial modules, before\n"
+"the boot device is available, or to load a ramdisk image for an emergency\n"
+"boot situation;\n"
"\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
"\n"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
"\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support;\n"
"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
+msgstr ""
+
+#: ../../help.pm_.c:828
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
"\n"
+"Yaboot's main options are:\n"
"\n"
+" * Init Message: a simple text message displayed before the boot prompt;\n"
"\n"
-" ÄïêéìÞ\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"
-" Íáé\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\n"
"\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
+msgstr ""
+
+#: ../../help.pm_.c:860
+msgid ""
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
"\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
"\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
-" ÅðéëïãÝò\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\n"
"\n"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\n"
"\n"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\n"
"\n"
-" ¼÷é åîõðçñåôçôÞò\n"
-"."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr "ÁíáæÞôçóç"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr "CDROM"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "ÈÝëåôå íá äïêéìÜóåôå íá óõíäåèåßôå óôï Äéáäßêôõï ôþñá;"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "Âåëãéêü"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "¸÷åôå êÜñôá Þ÷ïõ ISA;"
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
+msgstr ""
-#: ../../network/ethernet.pm:1
-#, c-format
+#: ../../help.pm_.c:891
msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
-"Äåí âñÝèçêå ðñïóáñìïãÝáò äéêôýïõ Ethernet óôï óýóôçìÜ óáò.\n"
-"Äåí ìðïñþ íá ñõèìßóù áõôïý ôïõ ôýðïõ ôç óýíäåóç."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Windows"
-msgstr "Windows "
-
-#: ../../common.pm:1
-#, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "Áäýíáôç ç ëÞøç óôéãìéïôýðùí ðñéí áðü ôçí äçìéïõñãßá êáôáôìÞóåùí"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Name"
-msgstr "¼íïìá ÓõóôÞìáôïò"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Áñ÷åßï/ÁðïèÞêåõóç _Ùò"
+"ÅðéëÝîôå ôïí äßóêï ðïõ èÝëåôå íá äéáãñÜøåôå ãéá íá åãêáôáóôÞóåôå \n"
+"ôçí íÝá êáôÜôìçóç Mandrake Linux. ÐÑÏÓÏ×Ç: ¼ëá ôá äåäïìÝíá èá äéáãñáöïýí\n"
+"êáé èá åßíáé áäýíáôç ç åðáíáöïñÜ ôïõò!"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../help.pm_.c:896
msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr "CUPS CUPS ¼ëá Printerdrake CUPS åîõðçñåôçôÞò åîõðçñåôçôÞò."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"ôï %s äåí åßíáé óôç âÜóç äåäïìÝíùí ôùí óáñùôþí, íá ñõèìéóôåß ÷åéñïêßíçôá;"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "ÊáèõóôÝñçóç ðñéí ôçí åêêßíçóç"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Restrict command line options"
-msgstr "Áðáãüñåõóç åðéëïãþí ãñáììÞò åíôïëÞò"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "East Europe"
-msgstr "ÁíáôïëéêÞ Åõñþðç"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "×ñÞóç åëåýèåñïõ ÷þñïõ"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "÷ñÞóç dhcp"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr "Åéäïðïßçóç Ôá÷õäñïìåßïõ"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Internet configuration"
-msgstr "Ñõèìßóåéò Äéáäéêôýïõ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr "ÏõæìðåêéóôÜí"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected %s"
-msgstr "ÂñÝèçêå ï %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Åíôïðéóìüò _åêôõðùôþí"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "ÔÝëïò"
-#: ../../install_steps_gtk.pm:1
+#: ../../install2.pm_.c:111
#, c-format
-msgid "Show automatically selected packages"
-msgstr "Áõôüìáôç ðñïâïëÞ åðéëåãìÝíùí ðáêÝôùí"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr "Ôüãêï"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "CPU flags reported by the kernel"
+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 ""
+"Áäõíáìßá ðñüóâáóçò ôùí áñèñùìÜôùí ðïõ áíôéóôïé÷ïýí óôïí ðõñÞíá óáò (ôï "
+"áñ÷åßï %s ëåßðåé), ãåíéêÜ áõôü óçìáßíåé üôé ç äéóêÝôá åêêßíçóçò äåí åßíáé óå "
+"óõã÷ñïíéóìü ìå ôï ÌÝóï åãêáôÜóôáóçò ( ðáñáêáëþ äçìéïõñãÞóôå ìéá íÝá äéóêÝôá "
+"åêêßíçóçò)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "ÊÜôé äåí ðÞãå êáëÜ! Åßíáé ôï mkisofs åãêáôåóôçìÝíï;"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "Ðáñáêáëþ ðñïóðáèÞóôå îáíÜ"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The model is correct"
-msgstr "Ôï ìïíôÝëï åßíáé óùóôü"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "ÁëëáãÞ ìåãÝèïõò FAT áðÝôõ÷å: %s"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr "ÅðéëïãÞ îå÷ùñéóôþí ðáêÝôùí"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr "ÁõôÞ ç êáôÜôìçóç äåí ìðïñåß í' áëëÜîåé ìÝãåèïò."
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
+#: ../../install2.pm_.c:167
#, c-format
-msgid "Location"
-msgstr "Ôïðïèåóßá"
+msgid "You must also format %s"
+msgstr "ÐñÝðåé åðßóçò íá ìïñöïðïéÞóåôå ôï %s"
-#: ../../standalone/drakxtv:1
+#: ../../install_any.pm_.c:423
#, c-format
-msgid "USA (cable-hrc)"
+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 could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
msgstr ""
+"¸÷åôå åðéëÝîåé ôïõò ðáñáêÜôù åîõðçñåôçôÝò: %s\n"
+"\n"
+"\n"
+"Áõôïß ïé åîõðçñåôçôÝò åíåñãïðïéïýíôáé åî ïñéóìïý. Äåí Ý÷ïõí êÜðïéá ãíùóôÜ \n"
+"ðñïâëÞìáôá áóöáëåßáò, áëëÜ ìðïñåß íá âñåèïýí êÜðïéá êáéíïýñéá. Óå áõôÞí ôçí "
+"ðåñßðôùóç, ðñÝðåé íá áíáâáèìßóåôå\n"
+"ôï óõíôïìüôåñï äõíáôüí.\n"
+"\n"
+"\n"
+"ÈÝëåôå ðñáãìáôéêÜ íá åãêáôáóôÞóåôå áõôïýò ôïõò åîõðçñåôçôÝò;\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "ÃïõáôåìÜëá"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr "Journalised FS"
-
-#: ../../security/l10n.pm:1
+#: ../../install_any.pm_.c:441
#, c-format
-msgid "Ethernet cards promiscuity check"
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
+"Ôá ðáñáêÜôù ðáêÝôá èá áöáéñåèïýí ãéá íá áíáâáèìéóôåß ôï óýóôçìÜ óáò: %s\n"
+"\n"
+"\n"
+"ÈÝëåôå ðñáãìáôéêÜ íá áöáéñÝóôå áõôÜ ôá ðáêÝôá;\n"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
-msgstr "Áõôü ôï ìç÷Üíçìá"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
+msgstr "Äåí ìðïñþ íá ÷ñçóéìïðïéÞóù broadcast ÷ùñßò ôïìÝá NIS"
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_any.pm_.c:879
#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Ðéèáíü DOS ãñÜììá äßóêïõ: %s \n"
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "ÅéóÜãåôå ìéá ìïñöïðïéçìÝíç äéóêÝôá FAT óôïí ïäçãü %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr "Ìðá÷ñÝéí"
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
+msgstr "ÁõôÞ ç äéóêÝôá äåí Ý÷åé ìïñöïðïßçóç FAT"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Select the files or directories and click on 'OK'"
+#: ../../install_any.pm_.c:895
+msgid ""
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-"Ðáñáêáëþ åðéëÝîôå ôá áñ÷åßá Þ ôïõò êáôáëüãïõò êáé êÜíôå êëéê óôï 'ðñïóèÞêç'"
+"Ãéá íá ÷ñçóéìïðïéÞóåôå áõôÞí ôçí áðïèçêåõìÝíç åðéëïãÞ ðáêÝôùí, îåêéíÞóôå ôçí "
+"åãêáôÜóôáóç ìå ``linux defcfg=floppy''"
-#: ../../standalone/drakfloppy:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, c-format
-msgid "omit scsi modules"
-msgstr "ðáñÜëåéøç ôùí áñèñùìÜôùí scsi"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "ÏéêïãÝíåéá ôïõ åðåîåñãáóôÞ (ð.÷. 6 ãéá êëÜóç i686)"
+msgid "Error reading file %s"
+msgstr "ÓöÜëìá êáôÜ ôçí áíÜãíùóç ôïõ áñ÷åßïõ %s"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../install_any.pm_.c:1040
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"
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
-"ÅðåéäÞ êÜíåôå ìéá äéêôõáêÞ åãêáôÜóôáóç, ôï äßêôõï åßíáé Þäç ñõèìéóìÝíï.\n"
-"ÊÜíôå êëéê óôï ÅíôÜîåé ãéá íá äéáôçñÞóåôå ôéò ñõèìßóåéò óáò, Þ Üêõñï ãéá íá "
-"îáíáñõèìßóåôå ôç óýíäåóç óôï Äéáäßêôõï.\n"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Run the daily security checks"
-msgstr "áí ïñéóôåß íáé, åêôÝëåóç åëÝã÷ùí áóöáëåßáò êáèçìåñéíÜ."
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "ÄéÜôáîç ðëçêôñïëïãßïõ: %s\n"
+"ÐñïêëÞèçêå óöÜëìá - äåí âñÝèçêáí óõóêåõÝò óôéò ïðïßåò íá åßíáé äõíáôÞ ç "
+"äçìéïõñãßá íÝùí óõóôçìÜôùí áñ÷åßùí. Ðáñáêáëþ åëÝãîôå ôï õëéêü óáò ãéá ôçí "
+"áéôßá áõôïý ôïõ ðñïâëÞìáôïò"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_interactive.pm_.c:21
#, 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."
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"Åäþ ìðïñåßôå íá åðéëÝîåôå áí ïé óõíäåìÝíïé åêôõðùôÝò áõôïý ôï ìç÷áíÞìáôïò èá "
-"åßíáé ðñïóâÜóéìïé áðü áðïìáêñõóìÝíá ìç÷áíÞìáôá êáé áðü ðïéá."
+"¸íá ìÝñïò ôïõ õëéêïý óáò ÷ñåéÜæåôáé ``éäéüêôçôïõò'' ïäçãïýò ãéá íá "
+"ëåéôïõñãÞóåé.\n"
+"Ìðïñåßôå íá âñåßôå ó÷åôéêÝò ðëçñïöïñßåò óôï: %s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
+#: ../../install_interactive.pm_.c:56
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
+"ÐñÝðåé íá Ý÷åôå ìéá âáóéêÞ êáôÜôìçóç.\n"
+"ÄçìéïõñãÞóôå Þ åðéëÝîôå ìéá êáôÜôìçóç.\n"
+"ÌåôÜ ïñßóôå ùò óçìåßï óýíäåóçò ôï `/'"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr ""
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
+msgstr "ÐñÝðåé íá Ý÷åôå ìéá êáôÜôìçóç swap"
-#: ../../services.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:62
msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"ÓõíäÝåé êáé áðïóõíäÝåé üëá ôá äéêôõáêÜ óõóôÞìáôá áñ÷åßùí (NFS), SMB (Lan\n"
-"Manager/Windows), êáé NCP (NetWare) "
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Launch the wizard"
-msgstr "ÊÜíôå êëéê åäþ ãéá íá îåêéíÞóåé ï ïäçãüò ->"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Tvcard"
-msgstr "ÊÜñôá TV"
-
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "ÁëëáãÞ óå êáíïíéêü ôñüðï ëåéôïõñãßáò"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr "ÌÝãåèïò"
-
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "GRUB"
-msgstr "GB"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr "Ãñïéëáíäßá"
+"Äåí Ý÷åôå ïñßóåé êáôÜôìçóç swap\n"
+"\n"
+"Íá óõíå÷ßóù;"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "ÐñÝðåé íá Ý÷åôå ìéá êáôÜôìçóç FAT mounted óôï /boot/efi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "ÐÝìðôç"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
+msgstr "×ñÞóç åëåýèåñïõ ÷þñïõ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
+msgstr "Äåí õðÜñ÷åé áñêåôüò åëåýèåñïò ÷þñïò ãéá äçìéïõñãßá íÝùí êáôáôìÞóåùí"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Ç ñýèìéóç ôçò êïéíÞò óýíäåóçò ôïõ Äéáäéêôýïõ Ý÷åé Þäç ãßíåé.\n"
-"ÁõôÞ ôç óôéãìÞ åßíáé åíåñãÞ.\n"
-"\n"
-"Ôé èÝëåôå íá êÜíåôå;"
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
+msgstr "×ñÞóç õðáñ÷ïõóþí êáôáôìÞóåùí"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete All NBIs"
-msgstr "ÄéáãñáöÞ ¼ëùí ôùí NBIs"
+#: ../../install_interactive.pm_.c:102
+msgid "There is no existing partition to use"
+msgstr "Äåí õðÜñ÷ïõí êáôáôìÞóåéò ðñïò ÷ñÞóç"
-#: ../../help.pm:1
-#, fuzzy, 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."
-msgstr ""
-"\n"
-"\n"
-" ×ñÞóç ðñïãñÜììáôïò åêêßíçóçò\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Root óõóêåõÞ åî' ïñéóìïý\n"
-"\n"
-"\n"
-"\n"
-" åî' ïñéóìïý\n"
-" ÷ñÞóôçò\n"
-" åî' ïñéóìïý\n"
-"\n"
-"\n"
-" ÐáñÜëåéøç Linux\n"
-"\n"
-"\n"
-" Ãéá Ðñï÷ùñçìÝíïõò\n"
-" ÷ñÞóôçò."
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
+msgstr "×ñÞóç êáôÜôìçóçò Windows ãéá loopback"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"if set, send the mail report to this email address else send it to root."
-msgstr ""
-"áí íáé, áðïóôïëÞ ôçò áíáöïñÜò ôá÷õäñïìåßïõ óå áõôÞí ôçí äéåýèõíóç Þ áëëéþò "
-"óôïí root."
+#: ../../install_interactive.pm_.c:112
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Ðïéá êáôÜôìçóç èÝëåôå íá ÷ñçóéìïðïéÞóåôå ãéá ôï Linux4Win;"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Ôé ñýèìéóç XFree èÝëåôå íá Ý÷åôå;"
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
+msgstr "ÅðéëÝîôå ôá ìåãÝèç"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "More"
-msgstr "¶ëëá"
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
+msgstr "ÌÝãåèïò âáóéêÞò êáôÜôìçóçò óõóôÞìáôïò óå MB:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
-msgstr ""
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr "ÌÝãåèïò êáôÜôìçóçò swap óå MB"
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which can "
-"accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should choose a lower level."
-msgstr ""
-"Ìå áõôü ôï åðßðåäï áóöáëåßáò åßíáé äõíáôÞ ç ÷ñÞóç ôïõ óõóôÞìáôïò óôï ùò "
-"åîõðçñåôçôÞ.\n"
-"Ç áóöÜëåéá åßíáé áñêåôÜ õøçëÞ þóôå íá äÝ÷åôáé ôáõôü÷ñïíåò óõíäÝóåéò áðü "
-"ðïëëïýò ðåëÜôåò.\n"
-"Óçì: Áí ôï ìç÷Üíçìá åßíáé ìüíï ãéá ôçí ÷ñÞóç ùò ðåëÜôç óôï Äéáäßêôõï ôüôå "
-"êáëýôåñá íá åðéëÝîåôå ÷áìçëüôåñï åðßðåäï áóöÜëåéáò"
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
+msgstr "×ñÞóç ôïõ åëåýèåñïõ ÷þñïõ óôçí êáôÜôìçóç ôùí Windows"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Server Name"
-msgstr "¼íïìá ÄéáêïìéóôÞ:"
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
+msgstr "Óå ôé ôýðï êáôÜôìçóçò èÝëåôå íá áëëÜîåôå ìÝãåèïò;"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Password"
-msgstr "Êùäéêüò Ðñüóâáóçò"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "Ãßíåôáé áëëáãÞ ôéò êáôÜôìçóçò ôùí Windows"
-#: ../../standalone/drakhelp:1
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
+"Äåí ìðïñþ íá áëëÜîù ìÝãåèïò óôçí êáôÜôìçóç FAT, \n"
+"ðñïêëÞèçêå ôï ðáñáêÜôù ëÜèïò: %s"
-#: ../../any.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:137
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?"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-"ÅðéëÝîáôå íá åãêáôáóôÞóåôå ôï ðñüãñáììá åêêßíçóçò óå ìéá êáôÜôìçóç.\n"
-"Åííïåßôå üôé Ý÷åôå Þäç åãêáôÜóôáóç Ýíá Üëëï ðñüãñáììá åêêßíçóçò óôïí óêëçñü "
-"óáò äßóêï (ð.÷. System Commander).\n"
-"\n"
-"Áðü ðïéüí äßóêï îåêéíÜôå;"
+"Ç êáôÜôìçóç ôùí Windows åßíáé ðïëý êáôáêåñìáôéóìÝíç, ðáñáêáëþ ôñÝîôå ðñþôá "
+"ôï ``defrag'' ìÝóá áðü ôá Windows êáé îåêéíÞóôå îáíÜ ôçí åãêáôÜóôáóç ôïõ "
+"Mandrake Linux "
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
+#: ../../install_interactive.pm_.c:138
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"
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
"installation. You should also backup your data.\n"
"When sure, press Ok."
msgstr ""
@@ -6412,704 +4163,320 @@ msgstr ""
"scandisk ìÝóá áðü ôá Windows êáé êáôÜ ðåñßðôùóç ôçí áðïêáôáêåñìÜôéóç \n"
"(defragment). ÌåôÜ îåêéíÞóôå îáíÜ ôçí åãêáôÜóôáóç.\n"
"ÌåôÜ èá ðñÝðåé íá êñáôÞóåôå áíôßãñáöï áóöáëåßáò ôùí äåäïìÝíùí óáò.\n"
-"ÅÜí åßóôå óßãïõñïé, ðáôÞóôå ÅíôÜîåé."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tajik keyboard"
-msgstr ""
+"ÅÜí åßóôå óßãïõñïé, ðáôÞóôå Ok."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr "Ïëïêëçñþèçêå ¼ëá åî' ïñéóìïý\n"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Ôé ÷þñï èÝëåôå íá êñáôÞóåôå ãéá ôá windows óôï"
-#: ../../standalone/drakfont:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Font List"
-msgstr "Ëßóôá Ãñáììáôïóåéñþí"
+msgid "partition %s"
+msgstr "êáôÜôìçóç %s"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_interactive.pm_.c:156
#, 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."
-msgstr ""
-"Ìðïñåß íá ÷ñåéáóôåß íá áëëÜîåôå ôçí Open Firmware boot-óõóêåõÞ þóôå íá\n"
-" åíåñãïðïéÞóåôå ôï ðñüãñáììá åêêßíçóçò. Áí óôçí åðáíåêêßíçóç äåí äåßôå ôçí "
-"ðñïôñïðÞ ôïõ ðñüãñáììá åêêßíçóçò,\n"
-"ðáôÞóôå ôï Command-Option-O-F êáôÜ ôçí åðáíåêêßíçóç êáé åéóÜãåôå:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" ÌåôÜ ãñÜøôå: shut-down\n"
-"Óôçí åðüìåíç åêêßíçóç èá ðñÝðåé íá äåßôå ôçí ðñïôñïðÞ ôïõ ðñïãñÜììáôïò "
-"åêêßíçóçò ."
+msgid "FAT resizing failed: %s"
+msgstr "ÁëëáãÞ ìåãÝèïõò FAT áðÝôõ÷å: %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:171
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"
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
msgstr ""
-"Öáßíåôáé ðùò Ý÷åôå Ýíá Áñ÷áßï Þ ¶ãíùóôï\n"
-"ìç÷Üíçìá, ï yaboot bootloader äåí èá äïõëÝøåé ãéá óáò.\n"
-"Ç åãêáôÜóôáóç èá óõíå÷éóôåß, áëëÜ\n"
-"èá ÷ñåéáóôåß íá ÷ñçóéìïðïéÞóåôå ôï BootX ãéá íá îåêéíÞóåôå ôï ìç÷ÜíçìÜ óáò"
+"Äåí õðÜñ÷ïõí FAT êáôáôìÞóåéò ãéá áëëáãÞ ìåãÝèïõò Þ ãéá ÷ñÞóç ùò loopback (Þ "
+"äåí õðÜñ÷åé áñêåôüò ÷þñïò)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Select file"
-msgstr "ÅðéëÝîôå áñ÷åßï"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr "ÄéáãñáöÞ ïëüêëçñïõ ôïõ äßóêïõ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr ""
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr "Áöáßñåóç Windows(TM)"
-#: ../../printer/printerdrake.pm:1
-#, 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"
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-"Ôéò åíôïëÝò áõôÝò ìðïñåßôå åðßóçò íá ôéò ÷ñçóéìïðïéÞóåôå óôï ðåäßï \"ÅíôïëÞ "
-"åêôõðþóåùí\" ôùí äéáëüãùí åêôõðþóåùí óå ðïëëÝò åöáñìïãÝò, áëëÜ ìçí ðáñÝ÷åôå "
-"ôï üíïìá áñ÷åßïõ åäþ åðåéäÞ ôï áñ÷åßï ðñïò åêôýðùóç ôï ðáñÝ÷åé ç åöáñìïãÞ.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "Éáðùíßá"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print option list"
-msgstr "Åêôýðùóç ëßóôá åðéëïãþí"
-
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "Ç áëëáãÞ Ýãéíå, áëëÜ ãéá íá éó÷ýóåé èá ðñÝðåé íá ãßíåé áðïóýíäåóç"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
-msgstr "×þñá"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search servers"
-msgstr "ÁíáæÞôçóç äéáêïìéóôþí"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "Ôï üíïìá ôçò NCP ïõñÜò ëåßðåé!"
+"¸÷åôå ðåñéóóüôåñïõò áðü Ýíáí äßóêïõò, óå ðïéüí èÝëåôå íá åãêáôáóôÞóåôå ôï "
+"Linux;"
-#: ../../standalone/net_monitor:1
+#: ../../install_interactive.pm_.c:183
#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
+msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-"Ðñïóï÷Þ áíé÷íåýèçêå ìéá Üëëç óýíäåóç óôï äéáäßêôõï, ðïõ ßóùò ÷ñçóéìïðïéåß ôï "
-"äßêôõü óáò"
+"¼ëåò ïé õðÜñ÷ïõóåò êáôáôìÞóåéò êáé ôá äåäïìÝíá ôïõò óôïí äßóêï %s èá ÷áèïýí"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom ïíüìáôé \"%s\""
+#: ../../install_interactive.pm_.c:191
+msgid "Custom disk partitioning"
+msgstr "ÐñïóáñìïóìÝíåò êáôáôìÞóåéò äßóêïõ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr ""
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr "×ñÞóç fdisk"
-#: ../../services.pm:1
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-"Áðïèçêåýåé êáé åðáíáöÝñåé ôçí ðçãÞ åíôñïðßáò ôïõ óõóôÞìáôïò ãéá \n"
-"ôçí äçìéïõñãßá êáëýôåñçò ðïéüôçôáò ôõ÷áßùí áñéèìþí."
-
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr "ÌåôáôñÝøôå ôï ìç÷ÜíçìÜ óáò óå Ýíáí áîéüðéóôï äéáêïìéóôÞ"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr "áí ïñéóôåß íáé, Ýëåã÷ïò êåíþí êùäéêþí ðñüóâáóçò óôï /etc/shadow."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid " (driver %s)"
-msgstr " (ïäçãüò %s)"
+"Ìðïñåßôå ôþñá íá êáôáôìÞóåôå ôïí äßóêï %s\n"
+"¼ôáí ôåëåéþóåôå, ìçí îå÷Üóåôå íá áðïèçêåýóåôå ðáôþíôáò `w'"
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
-msgstr ""
+#: ../../install_interactive.pm_.c:227
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Äåí Ý÷åôå áñêåôü åëåýèåñï ÷þñï óôçí êáôÜôìçóç ôùí Windows"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Áñ÷åßï (á) loopback:\n"
-" %s\n"
+#: ../../install_interactive.pm_.c:243
+msgid "I can't find any room for installing"
+msgstr "Äåí ìðïñþ íá âñù áñêåôü ÷þñï ãéá åãêáôÜóôáóç"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr "Äåí îÝñù"
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Ï Ïäçãüò ÊáôÜôìçóçò DrakX âñÞêå ôéò ðáñáêÜôù ëýóåéò:"
-#: ../../printer/main.pm:1
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP host \"%s\", èýñá %s"
+msgid "Partitioning failed: %s"
+msgstr "Ç êáôÜôìçóç áðÝôõ÷å: %s"
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat "
-"dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've "
-"performed on this computer, being interactively prompted for some steps, in "
-"order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed "
-"automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
-msgstr ""
-"ÅãêáôÜóôáóç\n"
-"\n"
-" Åðáíáöüñôùóç\n"
-"\n"
-"\n"
-"\n"
-" Ïëïêëçñþèçêå?"
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr "Åêêßíçóç äéêôýïõ"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Telugu"
-msgstr "ÔïêåëÜïõ"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr "ÄéáêïðÞ ëåéôïõñãßáò äéêôýïõ"
-#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
+#: ../../install_steps.pm_.c:76
msgid ""
-"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
-msgstr ""
-"\n"
-"\n"
-" åî' ïñéóìïý"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Uninstall"
-msgstr ""
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connecting to Internet "
-msgstr "Óýíäåóç óôï Äéáäßêôõï"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid level"
-msgstr "Åðßðåäï Cpuid"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "óôïí åîõðçñåôçôÞ Novell \"%s\", óôïí åêôõðùôÞ \"%s\""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "Ìïããïëéêü (ÊõñéëëéêÞ)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Add a module"
-msgstr "ÐñïóèÞêç áñèñþìáôïò"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr "Ðñïößë ãéá äéáãñáöÞ:"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Local measure"
-msgstr "ÔïðéêÞ ìÝôñçóç"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
+"ÐñïêëÞèçêå Ýíá óöÜëìá ðïõ äåí îÝñù ðþò íá ôï ÷åéñéóôþ.\n"
+"Óõíå÷ßóôå ìå äéêÞ óáò åõèýíç."
-#: ../../mouse.pm:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "busmouse"
-msgstr "busmouse"
+msgid "Duplicate mount point %s"
+msgstr "Äéðëü óçìåßï óýíäåóçò %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../install_steps.pm_.c:380
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."
+"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 ""
+"ÌåñéêÜ óçìáíôéêÜ ðáêÝôá äåí åãêáôáóôÜèçêáí óùóôÜ.\n"
+"Ï ïäçãüò CD-ROM Þ ôï CD-ROM åßíáé åëáôôùìáôéêü.\n"
+"ÅëÝãîôå ôï CD-ROM óå Ýíá Üëëï óýóôçìá ÷ñçóéìïðïéþíôáò ôçí åíôïëÞ \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "Account Login (user name)"
-msgstr "Ëïãáñéáóìüò Óýíäåóçò (üíïìá ÷ñÞóôç)"
+msgid "Welcome to %s"
+msgstr "Êáëþò ïñßóáôå óôï %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
-msgstr "ÓöÜëìá Fdiv"
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr "Äåí õðÜñ÷åé äéáèÝóéìïò ïäçãüò äéóêÝôáò"
-#: ../../network/drakfirewall.pm:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
+msgid "Entering step `%s'\n"
+msgstr "ÂÞìá `%s'\n"
+
+#: ../../install_steps_gtk.pm_.c:146
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"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 ""
-"ÑõèìéóôÞò drakfirewall\n"
-"\n"
-"Âåâáéùèåßôå üôé Ý÷åôå ñõèìßóåé ôï Äßêôõï/Ðñüóâáóç Äéáäéêôýïõ ìå ôç ÷ñÞóç ôïõ "
-"drakconnect ðñéí ðñï÷ùñÞóåôå."
+"Ôï óýóôçìÜ óáò äåí Ý÷åé áñêåôïýò ðüñïõò. Ìðïñåß íá áíôéìåôùðßóåôå "
+"ðñïâëÞìáôá\n"
+"óôçí åãêáôÜóôáóç ôïõ Mandrake Linux. ÅÜí óõìâåß áõôü, ìðïñåßôå íá äïêéìÜóåôå "
+"åãêáôÜóôáóç êåéìÝíïõ.\n"
+"ÐáôÞóôå F1 êáôÜ ôçí åêêßíçóç áðü CDROM, ìåôÜ ãñÜøôå `text'."
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr ""
-"\n"
-"\n"
-" Áðïäï÷Þ ¶ñíçóç."
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr "Ôýðïò åãêáôÜóôáóçò"
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr "ÏõñïõãïõÜç"
+#: ../../install_steps_gtk.pm_.c:160
+msgid "Please choose one of the following classes of installation:"
+msgstr "Ðáñáêáëþ åðéëÝîáôå ìéá áðü ôïõò ðáñáêÜôù ôýðïò åãêáôÜóôáóçò:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Benin"
-msgstr "Ìðåíßí"
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
+msgstr "ÅðéëïãÞ ÏìÜäùí ÐáêÝôùí"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "óôïí åîõðçñåôçôÞ SMB/Windows \"%s\", êïéíü÷ñçóôï \"%s\""
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
+msgstr "ÅðéëïãÞ îå÷ùñéóôþí ðáêÝôùí"
-#: ../../standalone/drakperm:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid "Path selection"
-msgstr "ÅðéëïãÞ ÈÝóçò"
+msgid "Total size: %d / %d MB"
+msgstr "Óõíïëéêü ìÝãåèïò: %d / %d MB"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Name/IP address of host:"
-msgstr "¼íïìá/IP äéåýèõíóç ôïõ õðïëïãéóôÞ:"
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
+msgstr "ËÜèïò ðáêÝôï"
-#: ../../Xconfig/various.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "Monitor: %s\n"
-msgstr "Ïèüíç: %s\n"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Custom & system settings"
-msgstr "ÐñïóáñìïóìÝíåò êáôáôìÞóåéò äßóêïõ"
+msgid "Name: %s\n"
+msgstr "¼íïìá: %s\n"
-#: ../../partition_table/raw.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid ""
-"Something bad is happening on your drive. \n"
-"A test to check the integrity of data has failed. \n"
-"It means writing anything on the disk will end up with random, corrupted "
-"data."
-msgstr ""
-"ÊÜôé êáêü óõìâáßíåé óôï äßóêï óáò. \n"
-"¸íá ôåóô åëÝã÷ïõ ôçò áêåñáéüôçôáò ôùí äåäïìÝíùí áðÝôõ÷å. \n"
-"Áõôü óçìáßíåé ðùò ç ïðïéáäÞðïôå åããñáöÞ óôï äßóêï èá êáôáëÞîåé óáí ôõ÷áßá "
-"óêïõðßäéá."
+msgid "Version: %s\n"
+msgstr "¸êäïóç: %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Ôï äéêôõáêü üíïìá ôïõ åêôõðùôÞ Þ ôï IP ëåßðåé!"
+msgid "Size: %d KB\n"
+msgstr "ÌÝãåèïò: %d KB\n"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr ""
-"Ðáñáêáëþ åðéëÝîôå üóïõò ÷ñÞóôåò èÝëåôå íá õðÜñ÷ïõí óôá áíôßãñáöá áóöáëåßáò"
+msgid "Importance: %s\n"
+msgstr "Óðïõäáéüôçôá: %s\n"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:360
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+"You can't select this package as there is not enough space left to install it"
msgstr ""
-"Ôï %s ðñÝðåé íá ñõèìéóôåß áðü ôï printerdrake.\n"
-"Ìðïñåßôå íá åêêéíÞóåôå ôï printerdrake áðü ôï ÊÝíôñï ÅëÝã÷ïõ Mandrake áðü ôï "
-"ôìÞìá Õëéêü."
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Key isn't writable"
-msgstr "Ôï XawTV åãêáôáóôÜèçêå!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bangladesh"
-msgstr "ÌðáíãêëáíôÝò"
+"Äåí ìðïñåßôå íá åðéëÝîåôå áõôü ôï ðáêÝôï äéüôé äåí õðÜñ÷åé áñêåôüò ÷þñïò"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
-msgstr "Éáðùíßá (ÊáëùäéáêÞ)"
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
+msgstr "Èá åãêáôáóôáèïýí ôá ðáñáêÜôù ðáêÝôá"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Initial tests"
-msgstr "Áñ÷éêÜ ôåóô"
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
+msgstr "Èá áöáéñåèïýí ôá ðáñáêÜôù ðáêÝôá "
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Continue"
-msgstr "ÓõíÝ÷åéá"
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
+msgstr "Äåí ìðïñåßôå íá åðéëÝîåôå/áðïåðéëÝîåôå áõôü ôï ðáêÝôï"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom Restore"
-msgstr "ÐñïóáñìïóìÝíç ÅðáíáöïñÜ"
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Áõôü åßíáé áðáéôïýìåíï ðáêÝôï, äåí ìðïñåß íá áðïåðéëåãåß"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Saturday"
-msgstr "ÓÜââáôï"
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
+msgstr "Äåí ìðïñåßôå íá áðïåðéëÝîåôå áõôü ôï ðáêÝôï. Åßíáé Þäç åãêáôåóôçìÝíï"
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../install_steps_gtk.pm_.c:395
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."
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
-"áíé÷íåýèçêå\n"
-"\n"
-"\n"
-"."
+"Áõôü ôï ðáêÝôï ðñÝðåé íá áíáâáèìéóôåß\n"
+"Åßóôå óßãïõñïò üôé èÝëåôå íá ôï áðïåðéëÝîåôå;"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Set the root umask."
-msgstr "Êùäéêüò Root"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "Äåí ìðïñåßôå íá áðïåðéëÝîåôå áõôü ôï ðáêÝôï. ÐñÝðåé íá áíáâáèìéóôåß"
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "ÓöÜëìá êáôÜ ôçí áíÜãíùóç ôïõ áñ÷åßïõ %s"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
+msgstr "Áõôüìáôç ðñïâïëÞ åðéëåãìÝíùí ðáêÝôùí"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr "×ñÞóç script"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr "ÅãêáôÜóôáóç"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "PLL setting:"
-msgstr "Ñõèìßóåéò PLL:"
+#: ../../install_steps_gtk.pm_.c:407
+msgid "Load/Save on floppy"
+msgstr "Öüñôùóç/ÁðïèÞêåõóç óå äéóêÝôá"
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "ÐñÝðåé íá Ý÷åôå ìéá êáôÜôìçóç FAT mounted óôï /boot/efi"
+#: ../../install_steps_gtk.pm_.c:408
+msgid "Updating package selection"
+msgstr "ÁíáíÝùóç åðéëåãìÝíùí ðáêÝôùí"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
-msgstr " óôï "
+#: ../../install_steps_gtk.pm_.c:413
+msgid "Minimal install"
+msgstr "ÅëÜ÷éóôç ÅãêáôÜóôáóç"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "The URL must begin with http:// or https://"
-msgstr "Ç äéåýèõíóç ðñÝðåé íá îåêéíÜ ìå http:// Þ https://"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
+msgstr "ÅðéëÝîôå ôá ðáêÝôá ðïõ èÝëåôå íá åãêáôáóôÞóåôå"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Ìðïñåßôå íá ïñßóåôå êáôåõèåßáí ôï URI ãéá ôçí ðñüóâáóç óôïí åêôõðùôÞ. Ôï URI "
-"ðñÝðåé íá ôçñåß åßôå ôéò CUPS åßôå ôéò Foomatic ðñïäéáãñáöÝò. ¼÷é ðùò äåí "
-"õðïóôçñßæïíôáé üëïé ïé URI ôýðïé áðü üëá ôá spoolers."
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr "ÅãêáôÜóôáóç"
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "¶ëëï ëåéôïõñãéêü (SunOS...)"
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr "Åêôßìçóç"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Install/Upgrade"
-msgstr "ÅãêáôÜóôáóç/ÁíáâÜèìéóç"
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr "ÅíáðïìÝíùí ÷ñüíïò "
+
+#: ../../install_steps_gtk.pm_.c:469
+msgid "Please wait, preparing installation..."
+msgstr "Ðáñáêáëþ ðåñéìÝíåôå, ðñïåôïéìáóßá åãêáôÜóôáóçò..."
-#: ../../install_steps_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
msgid "%d packages"
msgstr "%d ðáêÝôá"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Costa Rica"
-msgstr "Êüóôá Ñßêá"
-
-#: ../../standalone.pm:1
-#, fuzzy, c-format
-msgid ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Backup and Restore application\n"
-"\n"
-"--default : save default directories.\n"
-"--debug : show all debug messages.\n"
-"--show-conf : list of files or directories to backup.\n"
-"--config-info : explain configuration file options (for non-X "
-"users).\n"
-"--daemon : use daemon configuration. \n"
-"--help : show this message.\n"
-"--version : show version number.\n"
-msgstr ""
-"åî' ïñéóìïý\n"
-" ÅðáíáöïñÜ\n"
-"\n"
-" åî' ïñéóìïý åî' ïñéóìïý\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "Domain Authentication Required"
-msgstr "Áðáéôåßôáé Ðéóôïðïßçóç ÔïìÝá"
+msgid "Installing package %s"
+msgstr "ÅãêáôÜóôáóç ðáêÝôïõ %s"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Use libsafe for servers"
-msgstr "×ñÞóç libsafe ãéá äéáêïìéóôÝò"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "Áðïäï÷Þ"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Icelandic"
-msgstr "Éóëáíäéêü"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
+msgstr "¶ñíçóç"
-#: ../../standalone.pm:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
msgid ""
+"Change your Cd-Rom!\n"
"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
-msgstr ""
-"\n"
-"×ñÞóç: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
-msgstr ""
-"Ðáñáêáëþ åðéëÝîôå ôï ìÝãéóôï ìÝãåèïò\n"
-"ðïõ åðéôñÝðåôáé óôï Drakbackup"
-
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "ÊõêëéêÝò óõíäÝóåéò %s\n"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo/grub mode"
-msgstr "Ëåéôïõñãßá Lilo/grub"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "Ìáñôéíßêá"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Óêëçñüò Äßóêïò / NFS"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Old user list:\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 ""
+"ÁëëáãÞ Cd-Rom!\n"
"\n"
-"- Áñ÷åßá ×ñçóôþí:\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
-msgstr ""
-
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "a number"
-msgstr "Ýíáò áñéèìüò"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "Óïõçäéêü"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Ðïéüí ïäçãü %s íá äïêéìÜóù;"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr ""
-"Èá ëÜâåôå ìéá åéäïðïßçóç åÜí ìéá áðü ôéò åðéëåãìÝíåò õðçñåóßåò ðÜøåé íá "
-"åêôåëåßôáé"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Weekday"
-msgstr "ÔåôÜñôç"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Filesystem types:"
-msgstr "Ôýðïé óõóôÞìáôïò áñ÷åßùí:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Northern Mariana Islands"
-msgstr "ÍÞóïé Âïñåßùí ÌáñéÜííùí"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", ðïëõ÷ñçóôéêÞ óõóêåõÞ óôï HP JetDirect"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "êáíÝíá"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"¼íïìá ãéá ôï ðñïößë ðïõ èá äçìéïõñãçèåß (ôï íÝï ðñïößë äçìéïõñãåßôáé óáí "
-"áíôßãñáöï ôïõ õðÜñ÷ïíôïò):"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Floppy"
-msgstr "ÄéóêÝôá"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Ghostscript referencing"
-msgstr "Ghostscript"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Bootloader"
-msgstr "ÐñïãñÜììáôïò åêêßíçóçò"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "Ìåôáêßíçóç"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Bootloader to use"
-msgstr "×ñÞóç ðñïãñÜììáôïò åêêßíçóçò"
+"Ðáñáêáëþ åéóÜãåôå ôï Cd-Rom ìå üíïìá \"%s\" óôïí ïäçãü óáò êáé ðáôÞóôå Ok.\n"
+"ÅÜí äåí ôï Ý÷åôå, ðáôÞóôå Áêýñùóç ãéá áðïöõãÞ åãêáôÜóôáóçò áðü áõôü ôï CdRom."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "Äéêôõáêü üíïìá SMB åîõðçñåôçôÞ"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
+msgstr "Íá óõíå÷ßóù;"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Name Servers:"
-msgstr "¼íïìá Åîõðçñåôçôþí:"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
+msgstr "ÐñïêëÞèçêå óöÜëìá êáôÜ ôçí ôáîéíüìçóç ôùí ðáêÝôùí:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Minute"
-msgstr "Ëåðôü"
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
+msgstr "ÐñïêëÞèçêå óöÜëìá êáôÜ ôçí åãêáôÜóôáóç ôùí ðáêÝôùí:"
-#: ../../install_messages.pm:1
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:10
msgid ""
"\n"
"Warning\n"
@@ -7140,5523 +4507,4441 @@ msgid ""
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
+msgstr "ÐñïêëÞèçêå óöÜëìá"
+
+#: ../../install_steps_interactive.pm_.c:85
+msgid "Do you really want to leave the installation?"
+msgstr "Åßóôå âÝâáéïé ãéá ôïí ôåñìáôéóìü ôçò åãêáôÜóôáóçò;"
+
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
+msgstr "¶äåéá ÷ñÞóçò"
+
+#: ../../install_steps_interactive.pm_.c:113
+msgid ""
+"Introduction\n"
"\n"
-" Ðñïóï÷Þ\n"
-"\n"
-"\n"
-" ¶ñíçóç\n"
-"\n"
-"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
"\n"
-" ¶äåéá\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"
-" ÌåôáöïñÜ\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"
-" ¼ëá\n"
+"5. Governing Laws \n"
"\n"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Expert mode"
-msgstr "Ãéá Ðñï÷ùñçìÝíïõò"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Áöáßñåóç áõôïý ôïõ åêôõðùôÞ áðü ôï Star Office/OpenOffice.org/GIMP"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
+"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 ""
-"Linux Virtual Server, ÷ñçóéìïðïéåßôáé ãéá íá äçìéïõñãÞóåé Ýíáí õøçëÞò\n"
-"áðüäïóçò êáé äéáèåóéìüôçôáò åîõðçñåôçôÞ."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr "Ìéêñïíçóßá"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 äéóåêáôïììýñéá ÷ñþìáôá (32 bits)"
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
-msgstr "¶äåéá ×ñÞóçò"
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
+msgstr "Åßóôå âÝâáéïé ãéá ôçí Üñíçóç ôçò Üäåéáò ÷ñÞóçò;"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr ""
-"Ìðïñåß íá ÷ñåéáóôïýí ìåñéêÜ ëåðôÜ ãéá ôç äçìéïõñãßá ôùí êëåéäéþí:To ../../"
-"standalone/drakbackup:1"
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "Ðëçêôñïëüãéï"
-#: ../../standalone/draksec:1
-#, 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"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:218
+msgid "Please choose your keyboard layout."
+msgstr "Ðáñáêáëþ åðéëÝîôå ôçí äéÜôáîç ðëçêôñïëïãßïõ."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr "Áõôüìáôç áíß÷íåõóç åêôõðùôÝò (Ôïðéêïß, TCP/Socket, êáé åêôõðùôÝò SMB)"
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
+msgstr "ÁõôÞ åßíáé ç ðëÞñçò ëßóôá ôùí äéáèÝóéìùí ðëçêôñïëïãßùí"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr "Sagem (ìå ÷ñÞóç ôïõ pppoa) usb"
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
+msgstr "Ôé ôýðï åãêáôÜóôáóçò ðñïôéìÜôå;"
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"ÐñïêëÞèçêå óöÜëìá - äåí âñÝèçêáí óõóêåõÝò óôéò ïðïßåò íá åßíáé äõíáôÞ ç "
-"äçìéïõñãßá íÝùí óõóôçìÜôùí áñ÷åßùí. Ðáñáêáëþ åëÝãîôå ôï õëéêü óáò ãéá ôçí "
-"áéôßá áõôïý ôïõ ðñïâëÞìáôïò"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
+msgstr "ÅãêáôÜóôáóç/ÁíáâÜèìéóç"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Åêêßíçóç ôïõ óõóôÞìáôïò åêôýðùóçò êáôÜ ôçí åêêßíçóç"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
+msgstr "Ðñüêåéôáé ãéá åãêáôÜóôáóç Þ ãéá áíáâÜèìéóç;"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "ÈÝëåôå íá óõíäÝåóôå êáôÜ ôçí åêêßíçóç;"
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr "Óõíéóôþìåíï"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr "Ôáõôüôçôá åðåîåñãáóôÞ"
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Ãéá åéäéêïýò"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr "Åðßëõóç ðñïâëçìÜôùí ¹÷ïõ"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade"
+msgstr "ÁíáâÜèìéóç"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "Ðïëùíéêü (äéÜôáîç qwerty)"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade packages only"
+msgstr "ÁíáâÜèìéóç ôùí ðáêÝôùí ìüíï"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Add Printer"
-msgstr "ÅêôõðùôÞò"
+#: ../../install_steps_interactive.pm_.c:282
+msgid "Please choose the type of your mouse."
+msgstr "Ðáñáêáëþ åðéëÝîôå ôýðï ðïíôéêéïý."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-"\n"
-"Äñáóôçñéüôçôåò Drakbackup ìÝóù CD:\n"
-"\n"
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr "Èýñá ðïíôéêéïý"
-#: ../../printer/printerdrake.pm:1
-#, 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?"
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
-"Ðñüêåéôáé íá åãêáôáóôÞóåôå ôï óýóôçìá åêôýðùóçò %s óå Ýíá óýóôçìá ðïõ Ý÷åé "
-"åðßðåäï áóöáëåßáò %s\n"
-"\n"
-"Áõôü ôï óýóôçìá åêôýðùóçò åêôåëåß Ýíáí äáßìïíá (äéåñãáóßá óôï öüíôï) ðïõ "
-"ðåñéìÝíåé ôéò åñãáóßåò åêôýðùóçò êáé ôéò äéá÷åéñßæåôáé. Áõôüò ï äáßìïíáò "
-"åßíáé åðßóçò ðñïóâÜóéìïò áðü Ýíá áðïìáêñõóìÝíï ìç÷Üíçìá áðü ôï äßêôõï êáé "
-"åðßóçò åßíáé Ýíá åí äõíÜìåé óçìåßï åðßèåóçò. Ãéá áõôü Ýíáò ðåñéïñéóìÝíïò "
-"áñéèìüò äáéìüíùí îåêéíÜ åî ïñéóìïý óå áõôü ôï åðßðåäï áóöáëåßáò.\n"
-"\n"
-"Åßóôå âÝâáéïé üôé èÝëåôå íá ñõèìßóåôå ôçí åêôýðùóç óå áõôü ôï ìç÷Üíçìá;"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Host \"%s\", èýñá %s"
+"Ðáñáêáëþ åðéëÝîôå óåéñéáêÞ èýñá óôçí ïðïßá åßíáé óõíäåäåìÝíï ôï ðïíôßêé óáò."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "ÁõôÞ ç êáôÜôìçóç äåí ìðïñåß íá ÷ñçóéìïðïéçèåß ãéá loopback"
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
+msgstr "Ðñïóïìïßùóç Êïõìðéþí"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr "Ôï áñ÷åßï õðÜñ÷åé Þäç. Íá ôï ÷ñçóéìïðïéÞóù;"
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
+msgstr "Ðñïóïìïßùóç 2 Êïõìðéþí"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
-msgstr "ëçöèÝíôá:"
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
+msgstr "Ðñïóïìïßùóç 3 Êïõìðéþí"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr "Äåîéü ðëÞêôñï Alt"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr "Ñýèìéóç êáñôþí PCMCIA ..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "ç ëßóôá ìå åíáëëáêôéêïýò ïäçãïýò ãéá ôçí êÜñôá Þ÷ïõ óáò"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Ðýëç äéêôýïõ"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr "Ñýèìéóç IDE"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr "Ôüãêá"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "Ôõíçóßá"
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr "äåí õðÜñ÷ïõí äéáèÝóéìåò êáôáôìÞóåéò"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing"
-msgstr "ÊïéíÞ ÷ñÞóç óáñùôþí"
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
+msgstr "ÁíÜëõóç êáôáôìÞóåùí ãéá ðñïóäéïñéóìü óçìåßùí óýíäåóçò."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile: "
-msgstr "Ðñïößë: "
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr "ÅðéëÝîôå óçìåßá óýíäåóçò"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:386
msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
-"ÊÜíôå êëéê óå ìéá óõóêåõÞ óôï áñéóôåñü ôìÞìá ãéá íá äåßôå åäþ ôéò "
-"ðëçñïöïñßåò."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
+"Äåí õðÜñ÷åé åëåýèåñïò ÷þñïò ãéá 1MB bootstrap! Ç åãêáôÜóôáóç èá óõíå÷éóôåß, "
+"áëëÜ ãéá íá îåêéíÞóåôå ôï óýóôçìÜ óáò, èá ÷ñåéáóôåß íá äçìéïõñãÞóåôå ìéá "
+"êáôÜôìçóç bootstrap ìå ôï DiskDrake"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
-msgstr "Ôï XawTV åãêáôáóôÜèçêå!"
+#: ../../install_steps_interactive.pm_.c:395
+msgid "No root partition found to perform an upgrade"
+msgstr "Äåí âñÝèçêå êáôÜôìçóç root ãéá ôçí ðñáãìáôïðïßçóç ôçò áíáâÜèìéóçò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "×ùñßò ôá êñßóéìá áñ÷åßá ( êùäéêïß, ïìÜäåò, fstab)"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr "Root Partition (âáóéêÞ êáôÜôìçóç óõóôÞìáôïò)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "ðáëáéÜ óôáôéêÞ üíïìá óõóêåõÞò ôïõ ðáêÝôïõ dev"
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr "Ðïéá åßíáé ç âáóéêÞ êáôÜôìçóç (/) ôïõ óõóôÞìáôüò óáò;"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
+"Áðáéôåßôáé åðáíåêêßíçóç ãéá íá åíåñãïðïéçèïýí ïé áëëáãÝò óôïí ðßíáêá "
+"êáôáôìÞóåùí"
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
-msgstr "ÁõôÞ ç åôéêÝôá ÷ñçóéìïðïéåßôáé Þäç"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer 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 ""
-"\n"
-" ÅêôõðùôÞò Ïäçãüò\n"
-"\n"
-"\n"
-"\n"
-" áíé÷íåýèçêå\n"
-"\n"
-"\n"
-"\n"
-" Åðüìåíï ¶êõñï."
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr "ÅðéëÝîôå êáôáôìÞóåéò ðñïò ìïñöïðïßçóç"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
+msgstr "¸ëåã÷ïò ãéá ÷áëáóìÝíá ôìÞìáôá;"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"ÌåôÜ ôçí ìïñöïðïßçóç ôçò êáôÜôìçóçò %s, üëá ôá äåäïìÝíá óå áõôÞí ôçí "
-"êáôÜôìçóç èá ÷áèïýí"
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr "Ìïñöïðïßçóç êáôáôìÞóåùí"
-#: ../../standalone/net_monitor:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid "Connection Time: "
-msgstr "¿ñá Óýíäåóçò: "
+msgid "Creating and formatting file %s"
+msgstr "Äçìéïõñãßá êáé ìïñöïðïßçóç áñ÷åßïõ %s"
-#: ../../standalone/livedrake:1
+#: ../../install_steps_interactive.pm_.c:470
#, 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."
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-"Ðáñáêáëþ åéóÜãåôå ôï CD åãêáôÜóôáóçò óôïí ïäçãü óáò êáé ðáôÞóôå ÅíôÜîåé .\n"
-"ÅÜí äåí ôï Ý÷åôå, ðáôÞóôå Áêýñùóç ãéá ôçí áðïöõãÞ äéêôõáêÞò áíáâÜèìéóçò."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use group id for execution"
-msgstr "×ñÞóç id ïìÜäáò ãéá åêôÝëåóç"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "ÅðéëÝîôå ôïí ðñïåðéëåãìÝíï ÷ñÞóôç:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "Ãêáìðüí"
+"ÁðÝôõ÷å ï Ýëåã÷ïò ôïõ óõóôÞìáôïò áñ÷åßùí %s. ÈÝëåôå íá åðéóêåõÜóåôå ôá "
+"óöÜëìáôá; (ðñïóï÷Þ, ìðïñåß íá ÷Üóåôå äåäïìÝíá)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-"\n"
-"ÅêôõðùôÝò ðïõ åßíáé óõíäåìÝíïé óå áðïìáêñõóìÝíïõò åîõðçñåôçôÝò CUPS äåí "
-"÷ñåéÜæåôáé íá ñõèìéóôïýí åäþ, èá áíé÷íåõèïýí áõôüìáôá."
+"Äåí õðÜñ÷åé áñêåôüò ÷þñïò swap ãéá ôçí ïëïêëÞñùóç ôçò åãêáôÜóôáóçò, ðáñáêáëþ "
+"ðñïóèÝóôå"
-#: ../../any.pm:1
-#, 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."
-msgstr ""
-"Ôï Mandrake Linux õðïóôçñßæåé ðïëëáðëÝò ãëþóóåò.ÅðéëÝîôå \n"
-"ôéò Üëëåò ãëþóóåò ðïõ èá åßíáé äéáèÝóéìåò ìåôÜ ôï ðÝñáò ôçò \n"
-"åãêáôÜóôáóçò êáé ôçí åðáíåêêßíçóç ôïõ óõóôÞìáôüò óáò."
+#: ../../install_steps_interactive.pm_.c:479
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "ØÜ÷íù ãéá äéáèÝóéìá ðáêÝôá êáé äçìéïõñãþ îáíÜ ôç âÜóç äåäïìÝíùí rpm..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr "ØÜ÷íù ãéá äéáèÝóéìá ðáêÝôá..."
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain"
-msgstr "ÔïìÝáò"
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Looking at packages already installed..."
+msgstr "ØÜ÷íù ãéá Þäç åãêáôåóôçìÝíá ðáêÝôá..."
-#: ../../any.pm:1
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "ÁêñéâÞò ðïóüôçôáò ìíÞìçò áí ÷ñåéÜæåôáé (åíôïðßóôçêáí %d MB)"
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr "ÁíáæÞôçóç ðáêÝôùí ðñïò áíáâÜèìéóç..."
-#: ../../help.pm:1
+#: ../../install_steps_interactive.pm_.c:505
#, 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."
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
+"Äåí åðÝìåéíå áñêåôüò ÷þñïò óôï óýóôçìÜ óáò ãéá åãêáôÜóôáóç Þ áíáâÜèìéóç (%d "
+"> %d)"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "dns 2 Ðáñï÷Ýá (ðñïáéñåôéêü)"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "ÓõóêåõÞ åêêßíçóçò"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Óå ôé ôýðï êáôÜôìçóçò èÝëåôå íá áëëÜîåôå ìÝãåèïò;"
+#: ../../install_steps_interactive.pm_.c:541
+msgid ""
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
+msgstr ""
+"Ðáñáêáëþ åðéëÝîôå ôç öüñôùóç Þ áðïèÞêåõóç ôùí åðéëïãÞò ðáêÝôùí óôç äéóêÝôá.\n"
+"Ç ìïñöïðïßçóç åßíáé ç ßäéá ìå ôéò äéóêÝôåò áõôüìáôçò åãêáôÜóôáóçò."
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr "ÌéêñÜ áðïìïíùìÝíá íçóéÜ ÇíùìÝíùí Ðïëéôåéþí"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Load from floppy"
+msgstr "Öüñôùóç áðü äéóêÝôá"
-#: ../../lang.pm:1
-#, c-format
-msgid "Djibouti"
-msgstr "Ôæéìðïõôß"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr "ÁðïèÞêåõóç óå äéóêÝôá"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "¸íá åñãáëåßï ãéá íá âëÝðåôå ôá log óáò"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Loading from floppy"
+msgstr "Öïñôþíåôáé áðü äéóêÝôá"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected on port %s"
-msgstr "áíé÷íåýèçêå óôçí ðüñôá %s"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Package selection"
+msgstr "ÅðéëïãÞ ðáêÝôùí"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD"
-msgstr "LPD"
+#: ../../install_steps_interactive.pm_.c:552
+msgid "Insert a floppy containing package selection"
+msgstr "ÅéóÜãåôå äéóêÝôá ðïõ ðåñéÝ÷åé ôçí åðéëïãÞ ðáêÝôùí"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "ÊÜñôá ãñáöéêþí: %s\n"
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
+msgstr "Ôï åðéëåãìÝíï ìÝãåèïò åßíáé ìåãáëýôåñï áðü ôï äéáèÝóéìï ÷þñï"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/Set as _Default"
-msgstr " (ÐñïåðéëåãìÝíïò)"
+#: ../../install_steps_interactive.pm_.c:649
+msgid "Type of install"
+msgstr "Ôýðïò åãêáôÜóôáóçò"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
+#: ../../install_steps_interactive.pm_.c:650
+msgid ""
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
msgstr ""
+"Äåí Ý÷åôå åðéëÝîåé ïìÜäá ðáêÝôùí.\n"
+"Ðáñáêáëþ åðéëÝîôå ôçí åëÜ÷éóôç åãêáôÜóôáóç ðïõ èÝëåôå:"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Series"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "Ç åêôåôáìÝíç êáôÜôìçóç äåí õðïóôçñßæåôáé óå áõôüí ôïí ôýðï óõóôÞìáôïò"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Splash selection"
-msgstr "ÔìÞìá Splash"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Ñõèìßóåéò ISDN"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "high"
-msgstr "Õøçëü"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "ÊïéíÞ Óýíäåóç Äéáäéêôýïõ"
+#: ../../install_steps_interactive.pm_.c:653
+msgid "With X"
+msgstr "Ìå ×"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Choose file"
-msgstr "ÅðéëÝîôå Ýíá áñ÷åßï"
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
+msgstr "Ìå ôçí âáóéêÞ ôåêìçñßùóç (óõíéóôÜôáé!)"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Summary: "
-msgstr "Ðåñßëçøç"
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "ÐñáãìáôéêÜ åëÜ÷éóôç åãêáôÜóôáóç (åéäéêÜ ÷ùñßò urpmi)"
-#: ../../network/shorewall.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:741
msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
+"If you have all the CDs in the list below, click Ok.\n"
+"If you have none of those CDs, click Cancel.\n"
+"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-"Ðñïóï÷Þ! Áíé÷íåýèçêå ìéá Þäç õðÜñ÷ïõóá ñýèìéóç Ôïß÷ïõò Ðñïóôáóßáò. ºóùò "
-"÷ñåéáóôïýí ïñéóìÝíåò ÷åéñïêßíçôåò ñõèìßóåéò ìåôÜ ôçí åãêáôÜóôáóç."
+"ÅÜí Ý÷åôå üëá ôá ðáñáêÜôù CDs, ðáôÞóôå Ok.\n"
+"ÅÜí äåí Ý÷åôå êáíÝíá áðü ôá ðáñáêÜôù CDs, ðáôÞóôå Áêýñùóç.\n"
+"ÅÜí äåí Ý÷åôå êÜðïéá áðü áõôÜ, áðïåðéëÝîôå ôá êáé ðáôÞóôå Ok."
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:746
#, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Åêôýðùóç/Ðñüóâáóç ÊÜñôáò Öùôïãñáöéþí óôï \"%s\""
+msgid "Cd-Rom labeled \"%s\""
+msgstr "Cd-Rom ïíüìáôé \"%s\""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr "Ðñïåôïéìáóßá åãêáôÜóôáóçò"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:776
#, c-format
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"Installing package %s\n"
+"%d%%"
msgstr ""
-"ÈÝëåôå íá åíåñãïðïéÞóåôå ôçí åêôýðùóç óôïõò ðáñáðÜíù åêôõðùôÝò Þ óå êÜðïéïí "
-"Üëëïí óôï ôïðéêü óáò äßêôõï;\n"
+"ÅãêáôÜóôáóç ðáêÝôïõ %s\n"
+"%d%%"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer default settings"
-msgstr "ÅðéëïãÞ ìïíôÝëïõ åêôõðùôÞ"
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
+msgstr "Ñõèìßóåéò ìåôÜ ôçí åãêáôÜóôáóç"
-#: ../../mouse.pm:1
+#: ../../install_steps_interactive.pm_.c:828
#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Ãåíéêïý ôýðïõ ðïíôßêé PS2 ìå ñïäÜêé"
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Ðáñáêáëþ åéóÜãåôå ôç äéóêÝôá Åêêßíçóçò óôïí ïäçãü %s"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm_.c:834
#, c-format
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "Ðáñáêáëþ åéóÜãåôå ôç äéóêÝôá ÁíáâÜèìéóçò ÁñèñùìÜôùí óôïí ïäçãü %s"
+
+#: ../../install_steps_interactive.pm_.c:861
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)"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates ?"
msgstr ""
+"¸÷åôå ôþñá ôçí åõêáéñßá íá êÜíåôå ëÞøç áíáâáèìéóìÝíùí ðáêÝôùí. Ôá ðáêÝôá\n"
+"áõôÜ åêäüèçêáí ìåôÜ ôçí êõêëïöïñßá ôçò äéáíïìÞò. Ðéèáíüí íá ðåñéÝ÷ïõí\n"
+"äéïñèþóåéò óöáëìÜôùí Þ áóöÜëåéáò.\n"
+"\n"
+"Ãéá íá åãêáôáóôÞóåôå áõôÜ ôá ðáêÝôá, èá ðñÝðåé íá Ý÷åôå ìéá åíåñãÞ óýíäåóç\n"
+"óôï Äéáäßêôõï.\n"
+"\n"
+"ÈÝëåôå íá åãêáôáóôÞóåôå ôéò áíáâáèìßóåéò ;"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Áöáßñåóç ðáëáéïý åêôõðùôÞ \"%s\"..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Select a device !"
-msgstr "ÅðéëÝîôå ìéá óõóêåõÞ !"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected server"
-msgstr "Áöáßñåóç åðéëåãìÝíïõ åîõðçñåôçôÞ"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using dhcp) usb"
-msgstr "Sagem (ìå ÷ñÞóç ôïõ dhcp) usb"
+# fuzzy
+#: ../../install_steps_interactive.pm_.c:876
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgstr ""
+"Óýíäåóç ìå ôçí ôïðïèåóßá ôçò Mandrake Linux ãéá ëÞøç ôùí äéáèÝóéìùí ôüðùí "
+"ëÞøçò..."
-#: ../../lang.pm:1
-#, c-format
-msgid "French Southern Territories"
-msgstr "ÃáëëéêÝò Íüôéåò Ðåñéï÷Ýò"
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
+msgstr "ÅðéëÝîôå ôüðï áðü ôïí ïðïßï èá ãßíåé ç ëÞøç ðáêÝôùí"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "ôï üíïìá êáôáóêåõáóôÞ ôïõ åðåîåñãáóôÞ"
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Óýíäåóç ìå ôïí ôüðï ãéá ôçí ëÞøç ôùí äéáèÝóéìùí ðáêÝôùí..."
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr "Ðïéá åßíáé ç æþíç þñáò;"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr ""
-"ÐñÝðåé íá ãßíåé áíôßãñáöï áóöáëåßáò üëùí ôùí äåäïìÝíùí óå áõôÞ ôçí êáôÜôìçóç"
+#: ../../install_steps_interactive.pm_.c:923
+msgid "Hardware clock set to GMT"
+msgstr "Ôï ñïëüé ôïõ õðïëïãéóôÞ óáò åßíáé ñõèìéóìÝíï óå GMT (þñá Ãêñßíïõéôò)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "ÅãêáôÜóôáóç ðáêÝôïõ %s"
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Áõôüìáôïò óõã÷ñïíéóìüò þñáò (÷ñÞóç NTP)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr "¸ëåã÷ïò êáé ñýèìéóç ôçò óõóêåõÞ HPOJ..."
+#: ../../install_steps_interactive.pm_.c:931
+msgid "NTP Server"
+msgstr "ÅîõðçñåôçôÞò NTP"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Ãéá íá ðñïóèÝóåôå êáôáôìÞóåéò, ðáñáêáëþ äéáãñÜøôå ìßá Ýôóé þóôå íá åßíáé "
-"äõíáôÞ ç ðñïóèÞêç åêôåôáìÝíçò êáôÜôìçóçò"
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
+msgstr "ÁðïìáêñõóìÝíïò åîõðçñåôçôÞò CUPS"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"Ï åêôõðùôÞò ñõèìßóôçêå áõôüìáôá ãéá ðñüóâáóç óôéò êÜñôåò áðïèÞêåõóçò "
-"öùôïãñáöéþí ôïõ áðü ôïí õðïëïãéóôÞ óáò. Ìðïñåßôå íá Ý÷åôå ðñüóâáóç óå áõôÝò "
-"÷ñçóéìïðïéþíôáò ôï ãñáöéêü ðñüãñáììá \"MtoolsFM\" (Ìåíïý: \"ÅöáñìïãÝò\" -> "
-"\"Åñãáëåßá Áñ÷åßùí\" -> \"MTools File Manager\") Þ ôçí åíôïëÞ \"mtools"
-"\" (ãéá ðåñéóóüôåñåò ðëçñïöïñßåò ðëçêôñïëïãÞóôå \"man mtools\" óôç ãñáììÞ "
-"åíôïëþí). Èá âñåßôå ôéò öùôïãñáößåò óáò óôïí äßóêï \"p:\", Þ óå äßóêïõò ìå "
-"ôá åðüìåíá ãñÜììáôá áí Ý÷åôå ðåñéóóüôåñïõò áðü Ýíáí åêôõðùôÝò HP ìå êÜñôåò "
-"áðïèÞêåõóçò öùôïãñáöéþí. Óå áõôÞí ôçí ðåñßðôùóç, óôï ðñüãñáììá \"MtoolsFM\" "
-"ìðïñåßôå íá åðéëÝîåôå ìåôáîý ôùí äéáèÝóéìùí ãñáììÜôùí äßóêïõ ìå ôï ðåäßï "
-"óôçí Üíù äåîéÜ ãùíßá ôïõ êáôáëüãïõ áñ÷åßùí."
+#: ../../install_steps_interactive.pm_.c:966
+msgid "No printer"
+msgstr "ÊáíÝíáò åêôõðùôÞò"
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "ÅðéëïãÞ ðáêÝôùí"
+#: ../../install_steps_interactive.pm_.c:982
+msgid "Do you have an ISA sound card?"
+msgstr "¸÷åôå êÜñôá Þ÷ïõ ISA;"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-"¼ëåò ïé õðÜñ÷ïõóåò êáôáôìÞóåéò êáé ôá äåäïìÝíá ôïõò óôïí äßóêï %s èá ÷áèïýí"
+"ÅêôåëÝóôå \"sndconfig\" ìåôÜ ôçí åãêáôÜóôáóç ãéá ôçí ñýèìéóç ôçò êÜñôáò"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-"Äåí åðÝìåéíå áñêåôüò ÷þñïò óôï óýóôçìÜ óáò ãéá åãêáôÜóôáóç Þ áíáâÜèìéóç (%d "
-"> %d)"
+"Äåí âñÝèçêå êÜñôá Þ÷ïõ. ÄïêéìÜóôå ôï \"harddrake\" ìåôÜ ôçí åãêáôÜóôáóç"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"ÊÜèå åêôõðùôÞò ÷ñåéÜæåôáé Ýíá üíïìá (ð.÷. \"åêôõðùôÞò\").Ôá ðåäßá ÐåñéãñáöÞ "
-"êáé Ôïðïèåóßá äåí ÷ñåéÜæåôáé íá óõìðëçñùèïýí. Åßíáé áðëÜ ó÷üëéá ãéá ôïõò "
-"÷ñÞóôåò."
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
+msgstr "Ðåñßëçøç"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to setup a new printer. The interface presented there is\n"
-"similar to the one used during installation."
-msgstr ""
-"ÅêôõðùôÞò ¼÷é ÅêôõðùôÞò\n"
-"\n"
-" íÝï\n"
-"."
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
+msgstr "Ðïíôßêé"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr "ÌðïõôÜí"
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
+msgstr "ÙñïëïãéáêÞ Æþíç"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "ÓõóêåõÞ äéêôýïõ"
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "ÅêôõðùôÞò"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Ç áðïóýíäåóç áðü ôï äéáäßêôõï áðÝôõ÷å."
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
+msgstr "ÊÜñôá ISDN"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
-msgstr "ÁíÜãíùóç äåäïìÝíùí åêôõðùôÞ..."
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
+msgstr "ÊÜñôá Þ÷ïõ"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "ÊïñåÜôéêï Ðëçêôñïëüãéï"
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
+msgstr "ÊÜñôá TV"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Not connected"
-msgstr "Äå óõíäÝèçêå"
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
+msgstr "LDAP"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "Ñýèìéóç óýíäåóçò Äéáäéêôýïõ"
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+msgid "NIS"
+msgstr "NIS"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
-msgstr "Åëëçíéêü"
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+msgid "Windows Domain"
+msgstr "ÔïìÝáò Windows "
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr "Óáéíô Êéôò êáé ÍÝâéò"
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+msgid "Local files"
+msgstr "ÔïðéêÜ áñ÷åßá"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Ãåíéêïý ôýðïõ ìå 3 ðëÞêôñá"
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr "Êùäéêüò ðñüóâáóçò root"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
-msgstr "Åíåñãïðïßçóç OF åêêßíçóçò;"
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr "×ùñßò êùäéêü ðñüóâáóçò"
-#: ../../fsedit.pm:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-"Äåí ìðïñåßôå íá ÷ñçóéìïðïéÞóåôå ôï JFS ãéá êáôáôìÞóåéò ìéêñüôåñåò áðü 16MB"
+"Áõôüò ï êùäéêüò ðñüóâáóçò åßíáé ðïëý áðëüò (ðñÝðåé íá Ý÷åé ôïõëÜ÷éóôïí %d "
+"÷áñáêôÞñåò)"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "RW"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "Ðéóôïðïßçóç"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Óõ÷íüôçôá êáôáêüñõöçò áíáíÝùóçò: %s\n"
+#: ../../install_steps_interactive.pm_.c:1088
+msgid "Authentication LDAP"
+msgstr "Ðéóôïðïßçóç LDAP"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "Óçìåßï óýíäåóçò"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
+msgstr "LDAP Base dn"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"ÐáñïõóéÜóôçêåÝíá óöÜëìá:\n"
-"%s\n"
-"ÄïêéìÜóôå íá áëëÜîåôå ìåñéêÝò ðáñáìÝôñïõò"
+#: ../../install_steps_interactive.pm_.c:1090
+msgid "LDAP Server"
+msgstr "ÅîõðçñåôçôÞò LDAP"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP host \"%s\", èýñá %s"
+#: ../../install_steps_interactive.pm_.c:1096
+msgid "Authentication NIS"
+msgstr "Ðéóôïðïßçóç NIS"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "User :"
-msgstr "÷ñÞóôçò :"
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "ÔïìÝáò NIS"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore system"
-msgstr "ÅðáíáöïñÜ óõóôÞìáôïò"
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr "ÅîõðçñåôçôÞò NIS"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1104
msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
+"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/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
-msgstr "Ç ôåëåõôáßá ip ôïõ DHCP"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Another one"
-msgstr "Êáé Üëëï"
+#: ../../install_steps_interactive.pm_.c:1106
+msgid "Authentication Windows Domain"
+msgstr "Ðéóôïðïßçóç ÔïìÝá Windows"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
+#: ../../install_steps_interactive.pm_.c:1108
+msgid "Domain Admin User Name"
+msgstr "¼íïìá ×ñÞóôç Äéá÷åéñéóôÞ ÔïìÝá"
-#: ../../lang.pm:1
-#, c-format
-msgid "Colombia"
-msgstr "Êïëïìâßá"
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
+msgstr "Êùäéêüò Ðñüóâáóçò Äéá÷åéñéóôÞ ÔïìÝá"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1144
msgid ""
-"Current configuration of `%s':\n"
+"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"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
msgstr ""
-"ÔñÝ÷ïõóåò ñõèìßóåéò ôïõ %s':\n"
+"Ìéá ðñïóáñìïóìÝíç äéóêÝôá åêêßíçóçò óáò äßíåé ôçí äõíáôüôçôá íá åêêéíÞóåôå\n"
+"ôï óýóôçìÜ óáò ÷ùñßò ôçí ÷ñÞóç ôïõ ðñïãñÜììáôïò åêêßíçóçò. Áõôü åßíáé "
+"÷ñÞóéìï åÜí äåí èÝëåôå\n"
+"íá åãêáôáóôÞóåôå ôï SILO , Þ åÜí êÜðïéï Üëëï ëåéôïõñãéêü êáôáóôñÝøåé ôï "
+"SILOÞ åÜí ïé \n"
+"ñõèìßóåéò óáò äåí åðéôñÝðïõí ôç ÷ñÞóç SILO. ÁõôÞ ç äéóêÝôá ìðïñåß åðßóçò íá "
+"÷ñçóéìïðïéçèåß óå\n"
+" óõíäõáóìü ìå ôçí äéóêÝôá äéÜóùóçò ôïõ Mandrake, êÜíïíôáò åõêïëüôåñç ôçí "
+"åðáíáöïñÜ ôïõ óõóôÞìáôïò ìåôÜ áðü óïâáñÞ âëÜâç.\n"
"\n"
-"Äßêôõï: %s\n"
-"Äéåýèõíóç IP : %s\n"
-"IP attribution: %s\n"
-"Ïäçãüò: %s"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr "¶ìåóçò ôïðïèÝôçóçò êáé ëåéôïõñãßáò"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr "Ñåïõíéüí"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "ËåðôïìÝñåéåò"
+"Áí èÝëåôå íá äçìéïõñãÞóåôå ìéá ôÝôïéá äéóêÝôá åéóÜãåôå ìéá êåíÞ äéóêÝôá óôïí "
+"ïäçãü\n"
+"äéóêÝôáò êáé ðáôÞóôå \"Ok\"."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Ãéá ëüãïõò áóöáëåßáò, èá áðïóõíäåèåßôå ôþñá."
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr "Ðñþôïò ïäçãüò äéóêÝôáò"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Synchronization tool"
-msgstr "Åñãáëåßï Óõã÷ñïíéóìïý"
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "Äåýôåñïò ïäçãüò äéóêÝôáò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking your system..."
-msgstr "¸ëåã÷ïò ôïõ óõóôÞìáôïò óáò..."
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "ÐáñÜëåéøç"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:1167
#, c-format
-msgid "Print"
-msgstr "Åêôýðùóç"
+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"
+msgstr ""
+"Ìéá ðñïóáñìïóìÝíç äéóêÝôá åêêßíçóçò óáò äßíåé ôçí äõíáôüôçôá íá åêêéíÞóåôå\n"
+"ôï óýóôçìÜ óáò ÷ùñßò ôçí ÷ñÞóç ôïõ ðñïãñÜììáôïò åêêßíçóçò. Áõôü åßíáé "
+"÷ñÞóéìï åÜí äåí èÝëåôå\n"
+"íá åãêáôáóôÞóåôå ôï LILO (Þ ôï grub), åÜí êÜðïéï Üëëï ëåéôïõñãéêü "
+"êáôáóôñÝøåé ôï LILO\n"
+"Þ åÜí ïé ñõèìßóåéò óáò äåí åðéôñÝðïõí ôç ÷ñÞóç LILO. ÁõôÞ ç äéóêÝôá ìðïñåß\n"
+"åðßóçò íá ÷ñçóéìïðïéçèåß óå óõíäõáóìü ìå ôçí äéóêÝôá äéÜóùóçò ôïõ Mandrake,\n"
+"êÜíïíôáò åõêïëüôåñç ôçí åðáíáöïñÜ ôïõ óõóôÞìáôïò ìåôÜ áðü óïâáñÞ âëÜâç.\n"
+"ÈÝëåôå íá äçìéïõñãÞóåôå äéóêÝôá åêêßíçóçò;\n"
+"%s"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1173
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+"\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)."
msgstr ""
"\n"
-" óõóêåõÞ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "Ìïããïëßá"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
-msgstr "ÓõíäåäåìÝíïò\n"
+"\n"
+"(Ðñïóï÷Þ!:ÊÜíåôå ÷ñÞóç ôïõ XFS óôçí êáôÜôìçóç root\n"
+"ç äçìéïõñãßá äéóêÝôá åêêßíçóçò ìåãÝèïõò 1.44 Mb ìÜëëïí èá áðïôý÷åé,\n"
+"åðåéäÞ ôï XFS ÷ñåéÜæåôáé ðïëý ìåãÜëïõò ïäçãïýò.)"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configure CUPS"
-msgstr "Ñýèìéóç ×"
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "ËõðÜìáé, äåí õðÜñ÷åé äéáèÝóéìïò ïäçãüò äéóêÝôáò"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Graphical Interface"
-msgstr "Ãñáöéêü ðåñéâÜëëïí"
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr "ÅðéëÝîôå ïäçãü äéóêÝôáò ãéá äçìéïõñãßá äéóêÝôáò åêêßíçóçò"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:1189
#, c-format
-msgid "Restore Users"
-msgstr "ÅðáíáöïñÜ ×ñçóôþí"
+msgid "Insert a floppy in %s"
+msgstr "ÅéóÜãåôå äéóêÝôá óôïí ïäçãü %s"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Encryption key for %s"
-msgstr "Êëåéäß êñõðôïãñÜöçóçò"
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr "Äçìéïõñãßá äßóêïõ åêêßíçóçò..."
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Do you want to recover your system?"
-msgstr "ÈÝëåôå íá ÷ñçóéìïðïéÞóåôå ôï aboot;"
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr "Ðñïåôïéìáóßá ðñïãñÜììáôïò åêêßíçóçò..."
-#: ../../services.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1210
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."
+"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 to boot your machine"
msgstr ""
-"Ï portmapper äéá÷åéñßæåôáé óõíäÝóåéò RPC, ïé ïðïßåò ÷ñçóéìïðïéïýíôáé\n"
-"áðü ðñùôüêïëëá üðùò ôï NFS êáé ôï NIS. ÐñÝðåé íá åßíáé åíåñãïðïéçìÝíï óå \n"
-"óõóôÞìáôá ðïõ äñïõí ùò åîõðçñåôçôÝò ôÝôïéùí ðñùôïêüëëùí."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detected hardware"
-msgstr "Õëéêü ðïõ áíé÷íåýèçêå"
+"Öáßíåôáé ðùò Ý÷åôå Ýíá Áñ÷áßï Þ ¶ãíùóôï\n"
+" ìç÷Üíçìá, ï yaboot bootloader äåí èá äïõëÝøåé ãéá óáò.\n"
+"Ç åãêáôÜóôáóç èá óõíå÷éóôåß, áëëÜ\n"
+"èá ÷ñåéáóôåß íá ÷ñçóéìïðïéÞóåôå ôï BootX ãéá íá îåêéíÞóåôå ôï ìç÷ÜíçìÜ óáò"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr "Ìáõñßêéïò"
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
+msgstr "ÈÝëåôå íá ÷ñçóéìïðïéÞóåôå ôï aboot;"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Myanmar (Burmese)"
-msgstr "ÌéáíìÜñ"
+#: ../../install_steps_interactive.pm_.c:1219
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"ÓöÜëìá êáôÜ ôçí åãêáôÜóôáóç ôïõ aboot, \n"
+"ðñïóðÜèåéá âåâéáóìÝíçò åãêáôÜóôáóçò, áêüìá êáé áí áõôü Ý÷åé óáí áðïôÝëåóìá "
+"ôçí êáôáóôñïöÞ ôçò ðñþôçò êáôÜôìçóçò;"
-#: ../../fs.pm:1
-#, c-format
-msgid "Enabling swap partition %s"
-msgstr "Åíåñãïðïßçóç êáôÜôìçóçò swap %s"
+#: ../../install_steps_interactive.pm_.c:1226
+msgid "Installing bootloader"
+msgstr "Ðñüãñáììá åêêßíçóçò"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-"Äåí õðÜñ÷åé êáôÜôìçóç FAT ãéá ÷ñÞóç ùò loopback (Þ äåí õðÜñ÷åé áñêåôüò ÷þñïò)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr "Áñìåíéêü (ðáëéü)"
+"Ç åãêáôÜóôáóç ôïõ ðñïãñÜììáôïò åêêßíçóçò áðÝôõ÷å. ÐñïêëÞèçêå ôï áêüëïõèï "
+"óöÜëìá:"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:1240
#, 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."
+"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 ""
-"¸íáò åêôõðùôÞò ìå ôï üíïìá \"%s\" õðÜñ÷åé Þäç óôï %s\n"
-"ÊÜíôå êëéê óôï \"ÌåôáöïñÜ\" ãéá íá ôïí åðéêáëýøåôå.\n"
-"Åðßóçò ìðïñåßôå íá ôïõ äþóåôå Ýíá íÝï üíïìá Þ íá ôïí ðáñáâëÝøåôå ."
-
-#: ../advertising/12-mdkexpert.pl:1
-#, fuzzy, c-format
-msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
-msgstr "Åýñåóç"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", host \"%s\",èýñá %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Monaco"
-msgstr "Ìïíáêü"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Ç êáôÜôìçóç áðÝôõ÷å: %s"
-
-#: ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s ìïñöïðïßçóç ôïõ %s áðÝôõ÷å"
+"Ìðïñåß íá ÷ñåéáóôåß íá áëëÜîåôå ôçí Open Firmware boot-óõóêåõÞ þóôå íá\n"
+" åíåñãïðïéÞóåôå ôï ðñüãñáììá åêêßíçóçò. Áí óôçí åðáíåêêßíçóç äåí äåßôå ôçí "
+"ðñïôñïðÞ ôïõ ðñüãñáììá åêêßíçóçò,\n"
+"ðáôÞóôå ôï Command-Option-O-F êáôÜ ôçí åðáíåêêßíçóç êáé åéóÜãåôå:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+" ÌåôÜ ãñÜøôå: shut-down\n"
+"Óôçí åðüìåíç åêêßíçóç èá ðñÝðåé íá äåßôå ôçí ðñïôñïðÞ ôïõ ðñïãñÜììáôïò "
+"åêêßíçóçò ."
-#: ../../standalone/drakxtv:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "Canada (cable)"
-msgstr "Êáíáäéêü (ÊáëùäéáêÞ)"
-
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Floppy creation completed"
-msgstr "Ç óýíäåóç Ýãéíå."
+msgid "Insert a blank floppy in drive %s"
+msgstr "ÅéóÜãåôå Üäåéá äéóêÝôá óôïí ïäçãü %s"
-#: ../../help.pm:1
-#, c-format
-msgid "Upgrade"
-msgstr "ÁíáâÜèìéóç"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
+msgstr "Äçìéïõñãßá äéóêÝôáò áõôüìáôçò åãêáôÜóôáóçò..."
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
-msgstr "Óôáèìüò Åñãáóßáò"
+#: ../../install_steps_interactive.pm_.c:1289
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"ÌåñéêÜ âÞìáôá äåí ïëïêëçñþèçêáí.\n"
+"\n"
+"ÈÝëåôå óßãïõñá íá åãêáôáëåßøåôå ôþñá;"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:1300
#, c-format
msgid ""
-"Installing package %s\n"
-"%d%%"
+"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 ""
-"ÅãêáôÜóôáóç ðáêÝôïõ %s\n"
-"%d%%"
+"Óõã÷áñçôÞñéá, ç åãêáôÜóôáóç ïëïêëçñþèçêå.\n"
+"ÁöáéñÝóôå ôçí äéóêÝôá Þ ôï CD åêêßíçóçò êáé ðáôÞóôå return ãéá "
+"åðáíåêêßíçóç.\n"
+"\n"
+"\n"
+"Ãéá ðëçñïöïñßåò ó÷åôéêÜ ìå äéïñèþóåéò áõôÞò ôçò Ýêäïóçò ôïõ Mandrake Linux,\n"
+"óõìâïõëåõôåßôå ôçí óåëßäá: \n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Ðëçñïöïñßåò ó÷åôéêÜ ìå ôéò ñõèìßóåéò ôïõ óõóôÞìáôüò óáò õðÜñ÷ïõí óôï "
+"ó÷åôéêü\n"
+"êåöÜëáéï ôïõ åðßóçìïõ ïäçãïý ÷ñÞóçò ôïõ Mandrake Linux."
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
-msgstr "ÊéñãéóôÜí"
+#: ../../install_steps_interactive.pm_.c:1313
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Multi-function device on USB"
-msgstr ", ðïëõ÷ñçóôéêÞ óõóêåõÞ óôçí USB"
+#: ../../install_steps_interactive.pm_.c:1318
+msgid "Generate auto install floppy"
+msgstr "Äçìéïõñãßá äéóêÝôáò áõôüìáôçò åãêáôÜóôáóçò"
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1320
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"
+"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 also proceed without an USB key - you'll still be\n"
-"able to use Mandrake Move as a normal live Mandrake\n"
-"Operating System."
+"You may prefer to replay the installation.\n"
msgstr ""
+"Ç áõôüìáôç åãêáôÜóôáóç ìðïñåß íá åßíáé ðëÞñùò áõôüìáôç,\n"
+"óå áõôÞí ôçí ðåñßðôùóç èá áíáëÜâåé ôï óêëçñü äßóêï!!\n"
+"(áõôü áíáöÝñåôáé ãéá ðåñéðôþóåéò åãêáôÜóôáóçò óå Üëëï õðïëïãéóôÞ).\n"
+"\n"
+"Ìðïñåß íá ðñïôéìÜôå íá åðáíáëÜâåôå ôçí åãêáôÜóôáóç.\n"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "With basic documentation"
-msgstr "Ìå ôçí âáóéêÞ ôåêìçñßùóç (óõíéóôÜôáé!)"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
+msgstr "Áõôüìáôï"
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr "Anacron, Ýíá ðñüãñáììá ðåñéïäéêÞò åêôÝëåóçò åíôïëþí."
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Replay"
+msgstr "Åðáíáöüñôùóç"
-#: ../../install_interactive.pm:1
+#: ../../install_steps_interactive.pm_.c:1328
+msgid "Save packages selection"
+msgstr "ÁðïèÞêåõóç åðéëïãÞò ðáêÝôùí"
+
+#: ../../install_steps_newt.pm_.c:20
#, c-format
+msgid "Mandrake Linux Installation %s"
+msgstr "ÅãêáôÜóôáóç Mandrake Linux %s"
+
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
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 `/'"
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-"ÐñÝðåé íá Ý÷åôå ìéá âáóéêÞ êáôÜôìçóç.\n"
-"ÄçìéïõñãÞóôå Þ åðéëÝîôå ìéá êáôÜôìçóç.\n"
-"ÌåôÜ ïñßóôå ùò óçìåßï óýíäåóçò ôï `/'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "ÄõôéêÞ Óá÷Üñá"
+" <Tab>/<Alt-Tab> ÁëëáãÞ ðåäßïõ | <Space> åðéëïãÞ | <F12> åðüìåíç ïèüíç"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Ï proxy ðñÝðåé íá åßíáé http://..."
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
+msgstr "ôï kdesu ëåßðåé"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr "Íüôéïò ÁöñéêÞ"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
+msgstr "ôï consolehelper ëåßðåé"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Eject tape after the backup"
-msgstr "×ñÞóç ôáéíßáò ãéá ôá áñ÷åßá áóöáëåßáò"
+#: ../../interactive.pm_.c:152
+msgid "Choose a file"
+msgstr "ÅðéëÝîôå Ýíá áñ÷åßï"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot Floppy/ISO"
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
+msgstr "Ãéá Ðñï÷ùñçìÝíïõò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Modify printer configuration"
-msgstr "ÁëëáãÞ ñõèìßóåùí åêôõðùôÞ"
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
+msgstr "ÂáóéêÞ"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
-msgstr "ÅðéëÝîôå êáôÜôìçóç"
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
+msgstr "<- Ðñïçãïýìåíï"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Edit current rule"
-msgstr ""
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+msgid "Next"
+msgstr "Åðüìåíï"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
-msgstr ""
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr "ÊáêÞ åðéëïãÞ, îáíáäïêéìÜóôå\n"
-#: ../../mouse.pm:1
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "Please test the mouse"
-msgstr "Ðáñáêáëþ äïêéìÜóôå ôï ðïíôßêé"
+msgid "Your choice? (default %s) "
+msgstr "Ç åðéëïãÞ óáò; (åî ïñéóìïý %s)"
-#: ../../fs.pm:1
+#: ../../interactive/stdio.pm_.c:54
#, 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)."
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
+"Ðåäßá ðïõ èá ðñÝðåé íá óõìðëçñþóåôå:\n"
+"%s"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "Ðñïóïìïßùóç Êïõìðéþí"
-
-#: ../../standalone/drakperm:1
+#: ../../interactive/stdio.pm_.c:70
#, c-format
-msgid "Sticky-bit"
-msgstr ""
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Ç åðéëïãÞ óáò; (0/1, åî ïñéóìïý %s)"
-#: ../../standalone/drakbackup:1
+#: ../../interactive/stdio.pm_.c:95
#, c-format
-msgid "Other Media"
-msgstr "¶ëëá ÌÝóá"
+msgid "Button `%s': %s"
+msgstr "ÐëÞêôñï `%s': %s"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
+#: ../../interactive/stdio.pm_.c:96
+msgid "Do you want to click on this button?"
+msgstr "ÈÝëåôå íá êÜíåôå êëéê óå áõôü ôï êïõìðß;"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files"
-msgstr "Áíôßãñáöá áóöáëåßáò ôïõ óõóôÞìáôïò áñ÷åßùí"
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
+msgstr "åéóÜãåôå ôçí ëÝîç `void' ãéá êåíÞ åéóáãùãÞ"
-#: ../../diskdrake/interactive.pm:1
+#: ../../interactive/stdio.pm_.c:105
#, c-format
-msgid "Sector"
-msgstr "ÔïìÝáò"
+msgid "Your choice? (default `%s'%s) "
+msgstr "Ç åðéëïãÞ óáò; (åî ïñéóìïý `%s'%s) "
-#: ../../lang.pm:1
+#: ../../interactive/stdio.pm_.c:123
#, c-format
-msgid "Qatar"
-msgstr "ÊáôÜñ"
+msgid "=> There are many things to choose from (%s).\n"
+msgstr "=> ÕðÜñ÷ïõí ðïëëÜ ðñÜãìáôá áðü ôá ïðïßá ìðïñåßôå íá åðéëÝîåôå (%s).\n"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Base dn"
-msgstr "LDAP Base dn"
+#: ../../interactive/stdio.pm_.c:126
+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 ""
-#: ../../install_steps_gtk.pm:1
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
-"You can't select this package as there is not enough space left to install it"
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
-"Äåí ìðïñåßôå íá åðéëÝîåôå áõôü ôï ðáêÝôï äéüôé äåí õðÜñ÷åé áñêåôüò ÷þñïò"
+"=> Óçì.:ìéá åôéêÝôá Üëëáîå:\n"
+"%s"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "generate auto-install floppy"
-msgstr "Äçìéïõñãßá äéóêÝôáò áõôüìáôçò åãêáôÜóôáóçò"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
+msgstr "ÅéóÜãåôå îáíÜ"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr "Ôñüðïò êëÞóçò"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "ÔóÝ÷éêï (QWERTZ)"
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr "Êïéíü÷ñçóôá áñ÷åßá"
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "Ãåñìáíéêü"
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "Êáèáñéóìüò /tmp óå êÜèå åêêßíçóç"
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Dvorak"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malawi"
-msgstr "ÌáëÜïõé"
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "Éóðáíéêü"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "local config: false"
-msgstr "ÔïðéêÜ áñ÷åßá"
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "Öéíëáíäéêü"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "System settings"
-msgstr "ÐñïóáñìïóìÝíåò êáôáôìÞóåéò äßóêïõ"
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "Ãáëëéêü"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Ðáñáêáëþ åðéëÝîôå ôýðï ðïíôéêéïý."
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "Íïñâçãéêü"
-#: ../../services.pm:1
-#, c-format
-msgid "running"
-msgstr "åêôåëåßôáé"
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "Ðïëùíéêü"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "class of hardware device"
-msgstr "êëÜóç ôçò óõóêåõÞò "
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "Ñùóéêü"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-"ÁõôÜ åßíáé ôá ìç÷áíÞìáôá üðïõ ïé ôïðéêÜ óõíäåìÝíïé åêôõðùôÝò(çò) ðñÝðåé íá "
-"åßíáé äéáèÝóéìïé:"
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
+msgstr "Óïõçäéêü"
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "ÇíùìÝíï Âáóßëåéï"
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "ÌåãÜëç Âñåôáíßá (UK)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Indonesia"
-msgstr "Éíäïíçóßá"
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "Ç.Ð.Á. (US)"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "åî' ïñéóìïý"
+#: ../../keyboard.pm_.c:167
+msgid "Albanian"
+msgstr "Áëâáíéêü"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "France [SECAM]"
-msgstr "Ãáëëßá [SECAM]"
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
+msgstr "Áñìåíéêü (ðáëéü)"
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "áðáãüñåõóç"
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
+msgstr "Áñìåíéêü (ãñáöïìç÷áíÞ)"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "must have"
-msgstr "ðñÝðåé íá õðÜñ÷åé"
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
+msgstr "Áñìåíéêü (öùíçôéêü)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
+msgstr "ÁæåñìðáúôæÜí (Ëáôéíéêü)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Senegal"
-msgstr "ÓåíåãÜëç"
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "Âåëãéêü"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Command line"
-msgstr "ÃñáììÞ åíôïëþí"
+#: ../../keyboard.pm_.c:178
+msgid "Bengali"
+msgstr ""
-#: ../advertising/08-store.pl:1
-#, fuzzy, 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:"
-msgstr "Linux:"
+#: ../../keyboard.pm_.c:179
+msgid "Bulgarian (phonetic)"
+msgstr "Âïõëãáñéêü (öùíçôéêü)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "March"
-msgstr "ÌÜñôéïò"
+#: ../../keyboard.pm_.c:180
+msgid "Bulgarian (BDS)"
+msgstr "Âïõëãáñéêü (BDS)"
-#: ../../any.pm:1
-#, c-format
-msgid "access to administrative files"
-msgstr "ðñüóâáóç óå äéá÷åéñéóôéêÜ áñ÷åßá"
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
+msgstr "ÂñáæéëéÜíéêï (ABNT-2)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
-msgstr ""
-"ÓöÜëìá óôï sendmail\n"
-" Ç áíáöïñÜ äåí óôÜëèçêå\n"
-" ðáñáêáëþ ñõèìßóôå ôï sendmail"
+#: ../../keyboard.pm_.c:184
+msgid "Bosnian"
+msgstr "Âïóíßáò"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Do not allow set-user-identifier or set-group-identifier\n"
-"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
-"have suidperl(1) installed.)"
-msgstr ""
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
+msgstr "Ëåõêïñùóßáò"
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
-msgstr "ÌïíóåñÜô"
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "Åëâåôéêü (ÃåñìáíéêÞ äéÜôáîç)"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr ""
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "Åëâåôéêü (ÃáëëéêÞ äéÜôáîç)"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "Swap"
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "ÔóÝ÷éêï (QWERTY)"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Custom settings"
-msgstr "ÐñïóáñìïóìÝíåò êáôáôìÞóåéò äßóêïõ"
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr "Ãåñìáíéêü (÷ùñßò íåêñÜ ðëÞêôñá)"
-#: ../../../move/move.pm:1
-#, 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."
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Other"
-msgstr "ÅðáíáöïñÜ ¶ëëùí"
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "Äáíéêü"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "ÊÜñôá TV"
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Dvorak (ÇÐÁ)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "ÅêôõðùôÞò óå åîõðçñåôçôÞ SMB/Windows 95/98/NT"
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Íïñâçãéêü)"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Configure CUPS"
-msgstr "Ñýèìéóç ×"
+#: ../../keyboard.pm_.c:196
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (Óïõçäéêü)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
-msgstr ", "
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "Åóèïíéêü"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
-msgstr ""
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Ãåùñãßá (\"Ñþóéêç\" äéÜôáîç)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Áöáßñåóç åðéëåãìÝíïõ õðïëïãéóôÞ/äßêôõï"
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Ãåùñãßá (\"ËáôéíéêÞ\" äéÜôáîç)"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Ôï postfix åßíáé Ýíá ðñüãñáììá ìåôáöïñÜò áëëçëïãñáößáò, ôï \n"
-"ðñüãñáììá ðïõ öñïíôßæåé ãéá ôçí ìåôáöïñÜ áëëçëïãñáößáò áðü ôï \n"
-"Ýíá óýóôçìá óôï Üëëï."
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "Åëëçíéêü"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "ÓÝñâéêï (êõñéëëéêü)"
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
+msgstr ""
-#: ../../keyboard.pm:1
-#, 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)"
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
msgstr ""
-"Åäþ ìðïñåßôå íá åðéëÝîåôå ôï ðëÞêôñï Þ ôïí óõíäõáóìü\n"
-"ðëÞêôñùí åíáëëáãÞò ôùí äéáôÜîåùí ðëçêôñïëïãßùí\n"
-"(ð.÷. ÁããëéêÞ Þ ÅëëçíéêÞ)"
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Network Hotplugging"
-msgstr "Ñõèìßóåéò äéêôýïõ"
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "Ïõããñéêü"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr "áí ïñéóôåß íáé, áðïôÝëåóìá áíáöïñÜò åëÝã÷ïõ óôï tty"
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "Êñïáôéêü"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From CD"
-msgstr "ÅðáíáöïñÜ áðü CD"
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
+msgstr "ÉóñáÞë"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Ðñüêåéôáé íá ñõèìßóåôå ôïí õðïëïãéóôÞ óáò ãéá íá ìïéñÜæåôáé ôçí óýíäåóÞ ôïõ "
-"óôï Äéáäßêôõï.\n"
-"Ìå áõôÞ ôç äõíáôüôçôá Üëëïé õðïëïãéóôÝò óôï ôïðéêü óáò äßêôõï èá ìðïñïýí "
-"íáêÜíïõí ÷ñÞóç ôçò óýíäåóçò áõôïý ôïõ õðïëïãéóôÞ óôï Äéáäßêôõï.\n"
-" \n"
-"Âåâáéùèåßôå üôé Ý÷åôå ñõèìßóåé ôï Äßêôõï/Ðñüóâáóç Äéáäéêôýïõ ìå ôç ÷ñÞóç ôïõ "
-"drakconnect ðñéí ðñï÷ùñÞóåôå.\n"
-"\n"
-"Óçì. Èá ðñÝðåé íá Ý÷åôå ìéá êÜñôá äéêôýïõ ãéá íá ñõèìßóåôå ôï Ôïðéêü óáò "
-"Äßêôõï (LAN)."
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr "ÉóñáÞë (öùíçôéêü)"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr ""
-"Ðáñáêáëþ åðéëÝîôå ðïéá óõóêåõÞ äéêôýïõ èÝëåôå íá ÷ñçóéìïðïéÞóåôå ãéá ôçí "
-"óýíäåóç óôï Äéáäßêôõï"
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr "Éñáíéêü"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr "Éóëáíäéêü"
-#: ../advertising/09-mdksecure.pl:1
-#, fuzzy, c-format
-msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
-msgstr "Linux"
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "Éôáëéêü"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Ç ÊïéíÞ Óýíäåóç Äéáäéêôýïõ ôþñá áðåíåñãïðïéÞèçêå."
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
+msgstr "Éáðùíéêü 106 ðëÞêôñùí"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr "áí ïñéóôåß íáé, åðáëÞèåõóç checksum ãéá ôá áñ÷åßá suid/sgid."
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
+msgstr "ÊïñåÜôéêï Ðëçêôñïëüãéï"
-#: ../../keyboard.pm:1
-#, c-format
+#: ../../keyboard.pm_.c:218
msgid "Latin American"
msgstr "ËáôéíéêÞò ÁìåñéêÞò"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Japanese text printing mode"
-msgstr "ÁëëáãÞ óõóôÞìáôïò åêôýðùóçò"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Old device file"
-msgstr "Ðáëáéü áñ÷åßï óõóêåõÞò"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "Ðëçñïöïñßåò: "
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
-msgstr "ÐëÞêôñï `%s': %s"
-
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Ðáñáêáëþ ðåñéìÝíåôå"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "None"
-msgstr "ÊáíÝíáò"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Ç äéåýèõíóç IP ðïõ åéóÜãáôå äåí åßíáé óùóôÞ.\n"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../keyboard.pm_.c:219
+msgid "Laotian"
msgstr ""
-"\n"
-"\n"
-" Óçìåßùóç."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
-msgstr "ÊÜñôá Ethernet"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Delete selected printer"
-msgstr "ÄéáãñáöÞ åðéëåãìÝíïõ êáíüíá"
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "Ðëçñïöïñßåò"
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
+msgstr "Ëéèïõáíéêü AZERTY (ðáëéü)"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "ÅãêáôÜóôáóç"
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
+msgstr "Ëéèïõáíéêü AZERTY (íÝï)"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"ÊÜíôå êëéê óôï \"Åðüìåíï ->\" åÜí èÝëåôå íá äéáãñÜøåôå üëá ôá äåäïìÝíá\n"
-"ôéò êáôáôìÞóåéò ðïõ âñßóêïíôáé óôïí óêëçñü óáò äßóêï. Ðñïóï÷Þ ìåôÜ\n"
-"ðïõ èá êëéê óôï \"Åðüìåíï ->\"äåí èá ìðïñåßôå íá áíáêôÞóåôå ôá äåäïìÝíá\n"
-"êáé ôéò êáôáôìÞóåéò ðïõ âñßóêïíôáé óôïí äßóêï ìáæß êáé ôá Windows\n"
-" Åðüìåíï\n"
-"\n"
-"ÊÜíôå êëéê óôï \"<- Ðñïçãïýìåíï\" ãéá íá ôåñìáôßóåôå ôç ëåéôïõñãßá áõôÞ\n"
-"÷ùñßò íá ÷Üóåôå ôá äåäïìÝíá êáé ôéò êáôáôìÞóåéò óáò óôï äßóêï."
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Ëéèïõáíéêü \"number row\" QWERTY"
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "¸îïäïò"
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Ëéèïõáíéêü \"öùíçôéêü\" QWERTY"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
-msgstr ""
+#: ../../keyboard.pm_.c:225
+msgid "Latvian"
+msgstr "Ëåôïíéêü"
-#: ../../standalone/drakgw:1
-#, 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)."
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
msgstr ""
-"¼ëá Ý÷ïõí ñõèìéóôåß.\n"
-"Ìðïñåßôå ôþñá íá ìïéñÜæåóôå ôç óýíäåóÞ óáò óôï Äéáäßêôõï ìå Üëëïõò "
-"õðïëïãéóôÝò óôï ôïðéêü óáò äßêôõï, ìå ôçí ÷ñÞóç áõôüìáôçò ñýèìéóçò äéêôýïõ "
-"(DHCP)."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
-msgstr "ÁðïìáêñõóìÝíïò åîõðçñåôçôÞò CUPS"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - Mouse"
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
+msgstr "Ìáêåäïíéêü Ð.Ã Ä."
-#: ../../standalone/drakgw:1
-#, 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."
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
msgstr ""
-"ÕðÜñ÷åé ìüíï Ýíáò ñõèìéóìÝíïò ðñïóáñìïãÝáò äéêôýïõ óôï óýóôçìÜ óáò:\n"
-"\n"
-"%s\n"
-"\n"
-"Èá ñõèìéóôåß ôï Ôïðéêü óáò Äßêôõï ìå áõôüí ôïí ðñïóáñìïãÝá."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
+#: ../../keyboard.pm_.c:229
+msgid "Mongolian (cyrillic)"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Minimal install"
-msgstr "ÅëÜ÷éóôç ÅãêáôÜóôáóç"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "Áéèéïðßá"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr "Äåâáíáãáñéêü"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- óõóêåõÝò pci: äßíåé ôç èýñá PCI, ôç óõóêåõÞ êáé ëåéôïõñãßá áõôÞò ôçò "
-"êÜñôáò\n"
-"- óõóêåõÝò eide: ç óõóêåõÞ åßíáé óõóêåõÞ slave Þ master\n"
-"- óõóêåõÝò scsi: ï äßáõëïò scsi êáé ôá ÷áñáêôçñéóôéêÜ ôçò óõóêåõÞò scsi"
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
+msgstr "Ïëëáíäéêü"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Óõíïëéêü ìÝãåèïò: %d / %d MB"
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
+msgstr "Ðïëùíéêü (äéÜôáîç qwerty)"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "disabled"
-msgstr "áðåíåñãïðïéçìÝíï"
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
+msgstr "Ðïëùíéêü (äéÜôáîç qwertz)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Search for new scanners"
-msgstr "ÁíáæÞôçóç ãéá íÝïõò óáñùôÝò"
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
+msgstr "Ðïñôïãáëéêü"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Disabling servers..."
-msgstr "Áðåíåñãïðïßçóç åîõðçñåôçôþí..."
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr "Êáíáäéêü (ÊåìðÝê)"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Ç åãêáôÜóôáóç ôïõ %s áðÝôõ÷å. ÐñïêëÞèçêå ôï áêüëïõèï óöÜëìá:"
+#: ../../keyboard.pm_.c:239
+msgid "Romanian (qwertz)"
+msgstr "Ñïõìáíéêü (qwertz)"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr "Áäõíáìßá åêêßíçóçò mkinitrd -f /boot/initrd-%s.img %s."
+#: ../../keyboard.pm_.c:240
+msgid "Romanian (qwerty)"
+msgstr "Ñïõìáíéêü (qwerty)"
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"¸÷åôå åðéëÝîåé ôïõò ðáñáêÜôù äéáêïìéóôÝò(ç): %s\n"
-"\n"
-"\n"
-"Áõôïß ïé äéáêïìéóôÝò åßíáé åî ïñéóìïý åíåñãåß. Äåí Ý÷ïõí êÜðïéï ãíùóôü "
-"ðñüâëçìá\n"
-"áóöÜëåéáò, áëëÜ ìðïñïýí íá âñåèïýí íÝá. Óå áõôÞ ôçí ðåñßðôùóç âåâáéùèåßôå "
-"üôé\n"
-"Ý÷åôå åãêáôáóôÞóåé ôçí ôåëåõôáßá Ýêäïóç ôï óõíôïìüôåñï.\n"
-"\n"
-"\n"
-"Åßóôå âÝâáéïé ãéá ôçí åãêáôÜóôáóç áõôþí ôùí äéáêïìéóôþí;\n"
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "Ñùóéêü (Yawerty)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "ÅêôõðùôÞò äéêôýïõ (TCP/Socket)"
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
+msgstr "Óëïâåíßáò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup User files..."
-msgstr "Áíôßãñáöï Áóöáëåßáò ôùí áñ÷åßùí ×ñçóôþí..."
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "Óëïâáêßáò (QWERTZ)"
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "ÅãêáôÜóôáóç óõóôÞìáôïò"
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "Óëïâáêßáò (QWERTY)"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Ðñþôïò åîõðçñåôçôÞò DNS (ðñïáéñåôéêü)"
+#: ../../keyboard.pm_.c:248
+msgid "Serbian (cyrillic)"
+msgstr "ÓÝñâéêï (êõñéëëéêü)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
msgstr ""
-"ÅíáëëáêôéêÜ, ìðïñåßôå íá åéóÜãåôå Ýíá üíïìá óõóêåõÞò/áñ÷åßïõ óôç ãñáììÞ "
-"åéóáãùãÞò"
-#: ../../security/help.pm:1
-#, fuzzy, 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."
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
msgstr ""
-"\n"
-"\n"
-"\n"
-" åîõðçñåôçôÞò\n"
-" åîõðçñåôçôÞò<SERVER_LEVEL> åîõðçñåôçôÞò\n"
-"\n"
-"."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "Ñùóéêü (öùíçôéêü)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Config..."
-msgstr "Ñýèìéóç dhcpd..."
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr "ÔáúëáíäÝæéêï"
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "ÅãêáôÜóôáóç LILO/grub"
+#: ../../keyboard.pm_.c:254
+msgid "Tajik keyboard"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "ÉóñáÞë"
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Ôïõñêéêü (ðáñáäïóéáêü \"F\" ìïíôÝëï)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "ÅêôõðùôÞò \"%s\"óôïí åîõðçñåôçôÞ \"%s\""
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Ôïõñêéêü (ìïíôÝñíï \"Q\" ìïíôÝëï)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Ôþñá ìðïñåßôå íá áöáéñÝóôå ôç äéóêÝôá"
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr "Ïõêñáíéêü"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Truly minimal install"
-msgstr "ÅëÜ÷éóôç ÅãêáôÜóôáóç"
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "US äéåèíÝò"
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "Äáíßá"
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "ÂéåôíÜì \"numeric row\" QWERTY"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "Ìåôáêßíçóç êáôÜôìçóçò óå åîÝëéîç..."
+#: ../../keyboard.pm_.c:263
+msgid "Yugoslavian (latin)"
+msgstr "Ãéïõãêïóëáâéêü (ëáôéíéêü)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "(This) DHCP Server IP"
-msgstr "(ÁõôÞ ôç) IP ôïõ åîõðçñåôçôÞ DHCP"
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
+msgstr "Äåîéü ðëÞêôñï Alt"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Test of the configuration"
-msgstr "ÄïêéìÞ ñõèìßóåùí"
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
+msgstr "Ôáõôü÷ñïíá ôá äýï ðëÞêôñá Shift"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing %s ..."
-msgstr "ÅãêáôÜóôáóç %s ..."
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
+msgstr "Ôáõôü÷ñïíá ôá ðëÞêôñá Control êáé Shift"
-#: ../../help.pm:1
-#, fuzzy, 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."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" åîõðçñåôçôÞò\n"
-" ÏìÜäá åñãáóßáò:\n"
-"\n"
-" åî' ïñéóìïý Linux\n"
-"\n"
-"\n"
-" Linux\n"
-"\n"
-" ¼÷é Íáé\n"
-"\n"
-" åî' ïñéóìïý\n"
-"\n"
-" áðåíåñãïðïßçóç\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"."
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
+msgstr "ÐëÞêôñï Capslock"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr "ÅðéëÝîôå ôï êëåéäß êñõðôïãñÜöçóçò ôïõ óõóôÞìáôïò áñ÷åßùí"
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
+msgstr "Ôáõôü÷ñïíá ôá ðëÞêôñá Ctrl êáé Alt"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr "ÓéÝññá Ëåüíå"
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
+msgstr "Ôáõôü÷ñïíá ôá ðëÞêôñá Alt êáé Shift"
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
-msgstr "ÌðïôóïõÜíá"
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
+msgstr "ÐëÞêôñï \"Ìåíïý\""
-#: ../../lang.pm:1
-#, c-format
-msgid "Andorra"
-msgstr "Áíäüñá"
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr "Áñéóôåñü ðëÞêôñï \"Windows\""
-#: ../../standalone/draksec:1
-#, c-format
-msgid "(default value: %s)"
-msgstr "(ÐñïåðéëåãìÝíç ôéìÞ: %s)"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
+msgstr "Äåîéü ðëÞêôñï \"Windows\""
-#: ../../security/help.pm:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
-msgstr ""
+msgid "Circular mounts %s\n"
+msgstr "ÊõêëéêÝò óõíäÝóåéò %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "ÅíáëëáêôéêÞ äïêéìáóôéêÞ óåëßäá (Letter)"
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
+msgstr "ÁöáéñÝóôå ðñþôá ôéò ëïãéêÝò ìïíÜäåò\n"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../modules.pm_.c:290
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 ""
-"Ñýèìéóç ÅîõðçñåôçôÞ DHCP\n"
-"\n"
-"Åäþ ìðïñåßôå åðéëÝîåôå ôéò äéÜöïñåò åðéëïãÝò óôç ñýèìéóç ôïõ åîõðçñåôçôÞ "
-"DHCP\n"
-"Áí äåí îÝñåôå ôé óçìáßíåé áõôü, áðëÜ áöÞóôå ôï ùò Ý÷åé\n"
-"\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Choose an X server"
-msgstr "ÅðéëÝîôå ôïí åîõðçñåôçôÞ ×"
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
+"Äåí õðÜñ÷åé ðëÝïí õðïóôÞñéîç PCMCIA ãéá ôïõò ðõñÞíåò 2.2. ÊÜíôå ÷ñÞóç ôïõ "
+"ðõñÞíá 2.4."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "ÌÝãåèïò êáôÜôìçóçò swap óå MB"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No changes to backup!"
-msgstr "Äåí õðÜñ÷ïõí áëëáãÝò ãéá íá ãßíïõí áíôßãñáöá áóöáëåßáò!"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "ÌïñöïðïéçìÝíïò\n"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
+msgstr "Åäþ ìðïñåßôå íá ñõèìßóåôå ôéò ðáñáìÝôñïõò ôïõ áñèñþìáôïò."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Type of install"
-msgstr "Ôýðïò åãêáôÜóôáóçò"
+#: ../../modules/parameters.pm_.c:18
+#, fuzzy
+msgid "modinfo is not available"
+msgstr "Äåí õðÜñ÷åé äéáèÝóéìïò ïäçãüò äéóêÝôáò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "ÅêôõðùôÞò \"%s\" óå åîõðçñåôçôÞ SMB/Windows \"%s\""
+#: ../../modules/parameters.pm_.c:50
+msgid "a number"
+msgstr "Ýíáò áñéèìüò"
-#: ../../modules/parameters.pm:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr "%d áñéèìïß ÷ùñéóìÝíïé ìå êüììá"
-#: ../../services.pm:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
+msgid "%d comma separated strings"
msgstr ""
-"Ôï ðñùôüêïëëï rusers åðéôñÝðåé óôïõò ÷ñÞóôåò åíüò äéêôýïõ íá \n"
-"ðñïóäéïñßóïõí ôïõò óõíäåäåìÝíïõò ÷ñÞóôåò Üëëùí óõóôçìÜôùí."
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Ñýèìéóç Áõôüìáôùí ÂçìÜôùí"
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "ÌðáñìðÜíôïò"
-
-#: ../advertising/02-community.pl:1
-#, fuzzy, c-format
-msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
-msgstr "ÈÝëåôå íá ìÜèåôå ðåñéóóüôåñá ãéá ôçí êïéíüôçôá Áíïé÷ôïý Êþäéêá;"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Ðáñáêáëþ åðéëÝîôå ôá áñ÷åßá ðïõ èá ãßíïõí áíôßãñáöá áóöáëåßáò"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
+msgstr "áñéèìïß ÷ùñéóìÝíïé ìå êüììá"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated strings"
msgstr ""
-"Ç óýíäåóç áðÝôõ÷å.\n"
-"Åðáëçèåýóôå ôéò ñõèìßóåéò óáò óôï ÊÝíôñï ÅëÝã÷ïõ Mandrake."
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
-msgstr "ëçöèÝíôá"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr ""
-"\n"
-"\n"
-" ÏìÜäá åñãáóßáò: ÷ñÞóôçò."
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - Mouse"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
-msgstr "/Áñ÷åßï/_ÍÝï"
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DNS Server IP"
-msgstr "Ç IP ôïõ åîõðçñåôçôÞ DNS"
+#: ../../mouse.pm_.c:33
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Ãåíéêïý ôýðïõ ðïíôßêé PS2 ìå ñïäÜêé"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range End:"
-msgstr "¼ñéï Ôåñìáôéóìïý IP:"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
-msgstr "Õøçëü"
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Add a new printer to the system"
-msgstr "ÐñïóèÞêç ìéáò ïìÜäáò"
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr "×ùñßòVideo"
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "this field describes the device"
-msgstr "Áõôü ðåäßï ðåñéãñáöÞ ôç óõóêåõÞ"
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+msgid "Microsoft Explorer"
+msgstr "Microsoft Explorer"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Ãßíåôáé ðñïóèÞêç ôïõ åêôõðùôÞ óôï Star Office/OpenOffice.org/GIMP"
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
+msgstr "1 ðëÞêôñïõ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printers"
-msgstr "Ôïðéêïß åêôõðùôÝò"
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "Ãåíéêïý ôýðïõ ìå 2 ðëÞêôñá"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation image directory"
-msgstr "ÅãêáôÜóôáóç êáôáëüãïõ åéêüíáò"
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "Ìå ñïäÜêé"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "ÅîõðçñåôçôÞò NIS"
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "óåéñéáêü"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Port: %s"
-msgstr "Èýñá: %s"
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "Ãåíéêïý ôýðïõ ìå 3 ðëÞêôñá"
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "Éóðáíßá"
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
-msgstr ""
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "Áõôü ôï üíïìá ÷ñÞóôç õðÜñ÷åé Þäç"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
-msgstr "ÅðéëÝîôå Ýíá áñ÷åßï"
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr "ÅöáñìïãÞ"
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "ÄéáèÝóéìåò èýñåò áõôüìáôïõ åíôïðéóìïý"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "MM Series"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr "¶ãéïò Ìáñßíïò"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "ÊïéíÞ Óýíäåóç Äéáäéêôýïõ áðåíåñãïðïéçìÝíç"
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (óåéñéáêü, ðáëéüò C7 ôýðïò)"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Belgium"
-msgstr "ÂÝëãéï"
+#: ../../mouse.pm_.c:68
+msgid "busmouse"
+msgstr "busmouse"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
-msgstr "ÊïõâÝéô"
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "Äýï ðëÞêôñùí"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "ÅðéëÝîôå ôïí äéá÷åéñéóôÞ ðáñáèýñùí ðïõ èÝëåôå íá ÷ñçóéìïðïéÞóåôå:"
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "Ôñéþí ðëÞêôñùí"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
-msgstr "ÄåêÝìâñéïò"
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "êáíÝíá"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "sub generation of the cpu"
-msgstr "Sub"
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "×ùñßò ðïíôßêé"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
-msgstr "Ïäçãüò Ðñþôçò ÖïñÜò"
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
+msgstr "Ðáñáêáëþ äïêéìÜóôå ôï ðïíôßêé"
-#: ../../lang.pm:1
-#, c-format
-msgid "Taiwan"
-msgstr "ÔáúâÜí"
+#: ../../mouse.pm_.c:491
+msgid "To activate the mouse,"
+msgstr "Ãéá åíåñãïðïßçóç ðïíôéêéïý"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "ÐáêéóôÜí"
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr "ÊÉÍÇÓÔÅ ÔÏ ÑÏÄÁÊÉ!"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "ðáñáêáëþ ðåñéìÝíåôå, åðåîåñãáóßá áñ÷åßïõ: %s"
+#: ../../my_gtk.pm_.c:65
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"ÐñïêëÞèçêå Ýíá óöÜëìá ðïõ äåí îÝñù ðþò íá ôï ÷åéñéóôþ.\n"
-"Óõíå÷ßóôå ìå äéêÞ óáò åõèýíç."
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
+msgstr "ÔÝëïò"
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Importance: "
-msgstr "Óðïõäáéüôçôá: %s\n"
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
+msgstr "Åðüìåíï -»"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr "http://www.lexmark. Linux ¶êõñï."
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "Óùóôü;"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Permissions"
-msgstr "Äéêáéþìáôá"
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "Ðëçñïöïñßåò"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "¼íïìá ðáñï÷Ýá (ð.÷. provider.net)"
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
+msgstr "ÁíÜðôõîç äÝíôñïõ"
-#: ../../install_steps_gtk.pm:1
-#, 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'."
-msgstr ""
-"Ôï óýóôçìÜ óáò äåí Ý÷åé áñêåôïýò ðüñïõò. Ìðïñåß íá áíôéìåôùðßóåôå "
-"ðñïâëÞìáôá\n"
-"óôçí åãêáôÜóôáóç ôïõ Mandrake Linux. ÅÜí óõìâåß áõôü, ìðïñåßôå íá äïêéìÜóåôå "
-"åãêáôÜóôáóç êåéìÝíïõ.\n"
-"ÐáôÞóôå F1 êáôÜ ôçí åêêßíçóç áðü CDROM, ìåôÜ ãñÜøôå `text'."
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
+msgstr "Óýìðôõîç äÝíôñïõ"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "×ñÞóç êáôÜôìçóçò Windows ãéá loopback"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr "ÅíáëëáãÞ ìåôáîý åðßðåäçò êáé ïìáäéêÞò ôáîéíüìçóçò"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
-msgstr "Áñìåíéêü (ãñáöïìç÷áíÞ)"
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "÷ñÞóç pppoe"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection type: "
-msgstr "Ôýðïò óýíäåóçò: "
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
+msgstr "÷ñÞóç pptp"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Graphical interface"
-msgstr "Ãñáöéêü ðåñéâÜëëïí"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
+msgstr "÷ñÞóç dhcp"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "Ôóáíô"
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
+msgstr "Alcatel speedtouch usb"
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "Éíäßá"
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
+msgstr ""
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s ìå åðéôÜ÷õíóç ôñéóäéÜóôáôùí ãñáöéêþí"
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
+msgstr "Óýíäåóç óôï Äéáäßêôõï"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr "Óëïâáêßá"
+#: ../../network/adsl.pm_.c:30
+msgid ""
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"Ï ðéï êïéíüò ôñüðïò óýíäåóçò adsl åßíáé pppoe.\n"
+"ÏñéóìÝíåò óõíäÝóåéò ÷ñçóéìïðïéïýí pptp, êÜðïéåò ëßãåò dhcp.\n"
+"ÅÜí äåí îÝñåôå, åðéëÝîôå '÷ñÞóç pppoe'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "Óéããáðïýñç"
+#: ../../network/adsl.pm_.c:166
+msgid ""
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "Êáìðüôæç"
+#: ../../network/drakfirewall.pm_.c:12
+msgid "Web Server"
+msgstr "ÅîõðçñåôçôÞò Éóôïóåëßäùí"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Óõ÷íüôçôá ïñéæüíôéáò áíáíÝùóçò: %s\n"
+#: ../../network/drakfirewall.pm_.c:17
+msgid "Domain Name Server"
+msgstr "ÅîõðçñåôçôÞò ¼íïìá ÔïìÝá"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr "ÈÝóç"
+#: ../../network/drakfirewall.pm_.c:32
+msgid "Mail Server"
+msgstr "ÅîõðçñåôçôÞò Ôá÷õäñïìåßïõ"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
-msgstr ""
+#: ../../network/drakfirewall.pm_.c:37
+msgid "POP and IMAP Server"
+msgstr "ÅîõðçñåôçôÞò POP êáé IMAP"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
+#: ../../network/drakfirewall.pm_.c:111
+msgid "No network card"
+msgstr "äåí âñÝèçêå êÜñôá äéêôýïõ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:129
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"
+"drakfirewall configurator\n"
"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"Ôï óýóôçìá åêôýðùóçò (%s) äåí èá îåêéíÜ áõôüìáôá êáôÜ ôçí åêêßíçóç ôïõ "
-"ìç÷áíÞìáôïò\n"
-"\n"
-"ÕðÜñ÷åé ç ðéèáíüôçôá íá Ý÷åé áðåíåñãïðïéçèåß ç áõôüìáôç åêêßíçóç ìå ôçí "
-"áëëáãÞ óå õøçëüôåñï åðßðåäï áóöáëåßáò, åðåéäÞ ôï óýóôçìá åêôýðùóçò åßíáé Ýíá "
-"åí äõíÜìåé óçìåßï åðßèåóçò\n"
+"ñýèìéóç tinyfirewall\n"
"\n"
-"ÈÝëåôå íá îáíáåíåñãïðïéçèåß ç áõôüìáôç åêêßíçóç ôïõ óõóôÞìáôïò åêôýðùóçò;"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"ÅêôõðùôÞò %s\n"
-"Ôé èÝëåôå íá áëëÜîåôå óå áõôüí ôïí åêôõðùôÞ;"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add host"
-msgstr "ÐñïóèÞêç õðïëïãéóôÞ"
+"Áõôü ñõèìßæåé ôï ðñïóùðéêü óáò firewall ãéá áõôü ôï ìç÷Üíçìá Mandrake "
+"Linux.\n"
+"Ãéá ìéá éó÷õñÞ áöïóéùìÝíç ëýóç firewall, ðáñáêáëþ êïéôÜîôå óôçí\n"
+"åéäéêåõìÝíç MandrakeSecurity Firewall äéáíïìÞ."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:135
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"
+"drakfirewall configurator\n"
"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-#: ../../any.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr "Ðïéåò õðçñåóßåò èÝëåôå íá åðéôñÝðïíôáé íá óõíäÝïíôáé óôï Äéáäßêôõï;"
+
+#: ../../network/drakfirewall.pm_.c:153
msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-"ÈÝëåôå íá åðéôñÝøåôå óôïõò ÷ñÞóôåò íá Ý÷ïõí êïéíü÷ñçóôïõò êáôáëüãïõò;\n"
-"Áí íáé ôüôå ïé ÷ñÞóôåò èá ìðïñïýí áðëÜ íá êÜíïõí êëéê óôï \"Êïéíü÷ñçóôï\" "
-"óôïí konqueror êáé ôï nautilus.\n"
-"\n"
-"Ôï \"ÐñïóáñìïóìÝíï\" åðéôñÝðåé ôçí áíÜ ÷ñÞóôç ñýèìéóç.\n"
+"Ìðïñåßôå íá åéóÜãåôå äéÜöïñåò èÞñåò.\n"
+"¸ãêõñá ðáñáäåßãìáôá åßíáé: 139/tcp 139/udp.\n"
+"Äåßôå ôï /etc/services ãéá ðëçñïöïñßåò."
-#: ../../install_steps_interactive.pm:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-"Ðáñáêáëþ åðéëÝîôå ôç öüñôùóç Þ áðïèÞêåõóç ôùí åðéëïãÞò ðáêÝôùí óôç äéóêÝôá.\n"
-"Ç ìïñöïðïßçóç åßíáé ç ßäéá ìå ôéò äéóêÝôåò áõôüìáôçò åãêáôÜóôáóçò."
+"Äüèçêå Üêõñç èÞñá: %s.\n"
+"Ôï óùóôü öïñìÜ åßíáé \"èýñá/tcp\" Þ \"èýñá/udp\", \n"
+"üðïõ èÞñá åßíáé åßíáé áñéèìüò ìåôáîý 1 êáé 65535."
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "No CDROM support"
-msgstr "ÕðïóôÞñéîç ñáäéïöþíïõ:"
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
+msgstr "¼ëåò (÷ùñßò ôïß÷ïò ðñïóôáóßáò)"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "China (broadcast)"
-msgstr "Êßíá (åíáÝñéá)"
+#: ../../network/drakfirewall.pm_.c:169
+msgid "Other ports"
+msgstr "¶ëëåò èýñåò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use quota for backup files."
+#: ../../network/ethernet.pm_.c:37
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
msgstr ""
+"Ðïéüí ðåëÜôç dhcp èÝëåôå íá ÷ñçóéìïðïéÞóåôå;\n"
+"Ç ðñïåðéëïãÞ åßíáé dhcp-client"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Ñýèìéóç åêôõðùôÞ \"%s\"..."
-
-#: ../../fs.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:88
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."
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
+"Äåí âñÝèçêå ðñïóáñìïãÝáò äéêôýïõ Ethernet óôï óýóôçìÜ óáò.\n"
+"Äåí ìðïñþ íá ñõèìßóù áõôïý ôïõ ôýðïõ ôç óýíäåóç."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection"
-msgstr "Óýíäåóç Äéáäéêôýïõ"
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
+msgstr "ÅðéëÝîôå óõóêåõÞ äéêôýïõ"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:93
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
+"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
-"Ç öüñôùóç ôïõ áñèñþìáôïò %s áðÝôõ÷å.\n"
-"ÈÝëåôå íá äïêéìÜóåôå îáíÜ ìå äéáöïñåôéêÝò ðáñáìÝôñïõò;"
+"Ðáñáêáëþ åðéëÝîôå ðïéá óõóêåõÞ äéêôýïõ èÝëåôå íá ÷ñçóéìïðïéÞóåôå ãéá ôçí "
+"óýíäåóç óôï Äéáäßêôõï"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr "Êáëþò ïñßóáôå óôïí êüóìï ôïõ Áíïé÷ôïý Êþäéêá"
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "äåí âñÝèçêå ðñïóáñìïãÝáò äéêôýïõ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr "Âïóíßá-Åñæåãïâßíç"
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "Ñýèìéóç äéêôýïõ"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:201
msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
-"×ñåéÜæåóôå Ýíá ðñáãìáôéêü óýóôçìá áñ÷åßùí (ext2/ext3, reiserfs, xfs, or jfs) "
-"ãéá áõôü ôï óçìåßï óýíäåóçò\n"
+"Ðáñáêáëþ åéóÜãåôå ôï üíïìá ôïõ óõóôÞìáôïò åÜí ôï îÝñåôå.\n"
+"ÏñéóìÝíïé åîõðçñåôçôÝò DHCP äåí ëåéôïõñãïýí ÷ùñßò áõôü.\n"
+"Ôï üíïìá áõôü ðñÝðåé íá åßíáé Ýíá ðëÞñåò üíïìá óõóôÞìáôïò,\n"
+"üðùò ð.÷. ``mybox.mylab.myco.com''."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "ÐñÝðåé íá ïñßóôå ôïí äéêôõáêü üíïìá Þ ôçí IP äéåýèõíóç.\n"
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "¼íïìá óõóôÞìáôïò"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "Ïëëáíäßá"
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+msgid "Network Configuration Wizard"
+msgstr "Ïäçãüò Ñýèìéóçò Äéêôýïõ"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Sending files by FTP"
-msgstr "ÁðïóôïëÞ áñ÷åßùí..."
+#: ../../network/isdn.pm_.c:22
+msgid "External ISDN modem"
+msgstr "Åîùôåñéêü ISDN modem"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
msgstr "ÅóùôåñéêÞ êÜñôá ISDN"
-#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
+msgstr "Ôé åßäïõò åßíáé ç ISDN óýíäåóÞ óáò;"
+
+#: ../../network/isdn.pm_.c:45
msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
msgstr ""
-"Äåí õðÜñ÷åé ãíùóôüò åíáëëáêôéêüò ïäçãüò OSS/ALSA ãéá ôçí êÜñôá Þ÷ïõ óáò (%s)"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Title"
-msgstr "Ôßôëïò"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "ÅãêáôÜóôáóç & ìåôáôñïðÞ Ãñáììáôïóåéñþí"
+"Ðïéá ISDN ñýèìéóç ðñïôéìÜôå;\n"
+"\n"
+"* Ç ðáëéÜ ñýèìéóç ÷ñçóéìïðïéåß ôï isdn4net. ÐåñéÝ÷åé ÷ñÞóéìá åñãáëåßá,\n"
+" áëëÜ åßíáé ëßãï äýóêïëï ãéá Ýíáí áñ÷Üñéï íá ñõèìéóôåß êáé ü÷é óôåñåüôõðï.\n"
+"\n"
+"* Ç ÍÝá ñýèìéóç åßíáé åõêïëüôåñç óôçí êáôáíüçóç, ðåñéóóüôåñï óôåñåüôõðç,\n"
+" áëëÜ ìå ëéãüôåñá åñãáëåßá.\n"
+"\n"
+"Ðñïôåßíïõìå ôçí åëáöñéÜ ñýèìéóç.\n"
+"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
-msgstr "ÐÑÏÓÏ×Ç"
+#: ../../network/isdn.pm_.c:54
+msgid "New configuration (isdn-light)"
+msgstr "ÍÝá ñýèìéóç (isdn-light)"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
-msgstr "Ðñüãñáììá åêêßíçóçò"
+#: ../../network/isdn.pm_.c:54
+msgid "Old configuration (isdn4net)"
+msgstr "ÐáëéÜ ñýèìéóç (isdn4net)"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "replay"
-msgstr "åðáíÜëçøç"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
-msgstr "áíé÷íåýèçêå ôï %s"
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "Ñõèìßóåéò ISDN"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/isdn.pm_.c:166
msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
+"ÅðéëÝîôå ôïí ðáñï÷Ýá óáò\n"
+" ÅÜí äåí åßíáé óôïí êáôÜëïãï, åðéëÝîôå Unlisted"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr "ÐáñèÝíïé ÍÞóïé(ÁìåñéêáíéêÝò)"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol"
+msgstr "Åõñùðáúêü Ðñùôüêïëëï"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "ÊáôåóôñáììÝíï åöåäñéêü áñ÷åßï"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol (EDSS1)"
+msgstr "Åõñùðáúêü Ðñùôüêïëëï (EDSS1)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"Ç ñýèìéóç ôçò êïéíÞò ÷ñÞóçò äéáäéêôýïõ Ý÷åé Þäç ãßíåé.\n"
-"Åßíáé áðåíåñãïðïéçìÝíç.\n"
-"\n"
-"Ôé èÝëåôå íá êÜíåôå:"
+#: ../../network/isdn.pm_.c:181
+msgid "Protocol for the rest of the world"
+msgstr "Ðñùôüêïëëï õðüëïéðïõ êüóìïõ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
+#: ../../network/isdn.pm_.c:181
+msgid ""
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
+"Ðñùôüêïëëï õðüëïéðïõ êüóìïõ\n"
+" ÷ùñßò D-Channel (ìéóèùìÝíåò ãñáììÝò)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Pipe into command"
-msgstr "ÄéáóùëÞíùóç åñãáóßáò óå åíôïëÞ"
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
+msgstr "Ðïéï ðñùôüêïëëï èÝëåôå íá ÷ñçóéìïðïéÞóåôå;"
-#: ../../install_interactive.pm:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
+msgid "Found \"%s\" interface do you want to use it ?"
msgstr ""
-"¸íá ìÝñïò ôïõ õëéêïý óáò ÷ñåéÜæåôáé ``éäéüêôçôïõò'' ïäçãïýò ãéá íá "
-"ëåéôïõñãÞóåé.\n"
-"Ìðïñåßôå íá âñåßôå ó÷åôéêÝò ðëçñïöïñßåò óôï: %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "ÁúôÞ"
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
+msgstr "Ôé åßäïõò êÜñôáò Ý÷åôå;"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "Åíôïðéóìüò óõóêåõþí..."
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
+msgstr "Äåí îÝñù"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../network/isdn.pm_.c:210
msgid ""
-"Description of the fields:\n"
"\n"
-msgstr ""
-"ÐåñéãñáöÞ ôùí ðåäßùí:\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Basic options"
-msgstr "ÂáóéêÝò ÅðéëïãÝò DrakSec"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
-msgstr "ôï üíïìá êáôáóêåõáóôÞ ôïõ åðåîåñãáóôÞ"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Accept bogus IPv4 error messages"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
+"ÅÜí Ý÷åôå ISA êÜñôá, ïé ôéìÝò óôçí åðüìåíç ïèüíç èá ðñÝðåé íá åßíáé óùóôÝò.\n"
"\n"
-" Áðïäï÷Þ ¶ñíçóç."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "ÁíáíÝùóç äåäïìÝíùí åêôõðùôÞ..."
-
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr "ÐñÝðåé åðßóçò íá ìïñöïðïéÞóåôå ôï %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "Ðñïóï÷Þ: ÁõôÞ ç äéáäéêáóßá åßíáé åðéêßíäõíç."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "ÅéóÜãåôå äéóêÝôá ðïõ ðåñéÝ÷åé ôçí åðéëïãÞ ðáêÝôùí"
+"ÅÜí Ý÷åôå PCMCIA êÜñôá, ðñÝðåé íá îÝñåôå ôï irq êáé ôï io ôçò êÜñôáò óáò.\n"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server: "
-msgstr "ÅîõðçñåôçôÞò:"
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "Áêýñùóç"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Alerts:"
-msgstr "ÅéäïðïéÞóåéò Áóöáëåßáò:"
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
+msgstr "ÓõíÝ÷åéá"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
-msgstr "Óïõçäßá"
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
+msgstr "Ðïéá åßíáé ç ISDN êÜñôá óáò;"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
+#: ../../network/isdn.pm_.c:239
+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 ""
+"Åíôüðéóá ìéá ISDN êÜñôá, áëëÜ äåí îÝñù ôïí ôýðï ôçò. Ðáñáêáëþ åðéëÝîôå ìéá "
+"êÜñôá PCI áðü ôçí ðáñáêÜôù ïèüíç."
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "Ðïëùíßá"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "Äåí âñÝèçêå êÜñôá ISDN. Ðáñáêáëþ åðéëÝîôå ìéá áðü ôçí ðáñáêÜôù ïèüíç."
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Other ports"
-msgstr "¶ëëåò èýñåò"
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Óå ðïéá óåéñéáêÞ ðüñôá åßíáé óõíäåäåìÝíï ôï ìüíôåì óáò;"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "ÅðéëïãÝò Óýíäåóçò"
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid " - detected"
-msgstr "áíé÷íåýèçêå"
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr "¼íïìá óýíäåóçò"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr "ÅëåãêôÝò SMBus"
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
+msgstr "Áñéèìüò ôçëåöþíïõ"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "×ñüíïò åêôüò óýíäåóçò (óå äåýôåñá)"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "'¼íïìá ×ñÞóôç"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr "CHAP"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Croatian"
-msgstr "Êñïáôéêü"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Use existing partition"
-msgstr "×ñÞóç õðáñ÷ïõóþí êáôáôìÞóåùí"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "×ñÞóç script"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Áäõíáìßá fork: %s"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "×ñÞóç ôåñìáôéêïý"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr "/ÂïÞèåéá/_Ó÷åôéêÜ ìå..."
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "¼íïìá ÔïìÝá"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Áöáßñåóç êáôáëüãùí ÷ñçóôþí ðñéí áðü ôçí åðáíáöïñÜ."
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+msgid "First DNS Server (optional)"
+msgstr "Ðñþôïò åîõðçñåôçôÞò DNS (ðñïáéñåôéêü)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+msgid "Second DNS Server (optional)"
+msgstr "Äåýôåñïò åîõðçñåôçôÞò DNS (ðñïáéñåôéêü)"
+
+#: ../../network/modem.pm_.c:95
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?"
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-"Èá ñõèìßóåôå Ýíáí áðïìáêñõóìÝíï åêôõðùôÞ. Áõôü áðáéôåß Ýíá ðñïóâÜóéìï "
-"äßêôõï, áëëÜ ôï äßêôõï äåí Ý÷åé ñõèìéóôåß áêüìá. Áí óõíå÷ßóåôå ÷ùñßò íá "
-"ñõèìßóåôå ôï äßêôõï äåí èá ìðïñÝóåôå íá êÜíåôå ÷ñÞóç ôïõ åêôõðùôÞ ðïõ "
-"ñõèìßæåôå. Ôé èÝëåôå íá êÜíåôå;"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "CUPS printer configuration"
-msgstr "Ñõèìßóåéò êïéíÞò ÷ñÞóçò åêôõðùôþí CUPS"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr "äåí âñÝèçêáí ãñáììáôïóåéñÝò óôéò ðñïóáñôçìÝíåò êáôáôìÞóåéò"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
-msgstr "ÓöÜëìá F00f"
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
+#: ../../network/modem.pm_.c:97
#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
+msgid ""
+"\"%s\" based winmodem detected, do you want to install needed software ?"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Domain Name:"
-msgstr "¼íïìá ÔïìÝá:"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Do nothing"
+msgstr "áëëÜ äåí ôáéñéÜæåé"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Root umask"
-msgstr "Êùäéêüò Root"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Install rpm"
+msgstr "ÅãêáôÜóôáóç"
-#: ../../any.pm:1
-#, c-format
-msgid "On Floppy"
-msgstr "Óôçí ÄéóêÝôá"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Title"
+msgstr "Ðßíáêáò"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reboot by the console user"
+#: ../../network/netconnect.pm_.c:29
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
+"\n"
+"Ìðïñåßôå íá áðïóõíäåèåßôå Þ íá åðáíáñõèìßóåôå ôç óýíäåóÞ óáò."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore"
-msgstr "ÅðáíáöïñÜ"
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Server:"
-msgstr "ÅîõðçñåôçôÞò:"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can reconfigure your connection."
msgstr ""
-"áí ïñéóôåß íáé, Ýëåã÷ïò ôùí óõóêåõþí äéêôýïõ ãéá áäéÜêñéôç êáôÜóôáóç "
-"ëåéôïõñãßáò."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "ØÜ÷íù ãéá äéáèÝóéìá ðáêÝôá..."
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Ðáñáêáëþ ðåñéìÝíåôå, ñõèìßæåôáé ôï åðßðåäï áóöáëåßáò..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
-msgstr "ÌÞíõìá Init"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "Ðßíáêáò êáôáôìÞóåùí äéÜóùóçò"
+"\n"
+"Ìðïñåßôå íá åðáíáñõèìßóåôå ôç óýíäåóÞ óáò."
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "Êýðñïò"
+#: ../../network/netconnect.pm_.c:29
+msgid "You are currently connected to internet."
+msgstr "ÁõôÞ ôç óôéãìÞ åßóôå óõíäåäåìÝíïé óôï Äéáäßêôõï."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection complete."
-msgstr "Ç óýíäåóç Ýãéíå."
+#: ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr ""
+"\n"
+"Ìðïñåßôå íá óõíäåèåßôå óôï Äéáäßêôõï Þ íá åðáíáñõèìßóåôå ôç óýíäåóÞ óáò."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "Áöáßñåóç áðü ôï RAID"
+#: ../../network/netconnect.pm_.c:32
+msgid "You are not currently connected to Internet."
+msgstr "ÁõôÞ ôç óôéãìÞ äåí åßóôå óõíäåäåìÝíïé óôï Äéáäßêôõï."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Áõôüò ï êùäéêüò ðñüóâáóçò åßíáé ðïëý áðëüò (ðñÝðåé íá Ý÷åé ôïõëÜ÷éóôïí %d "
-"÷áñáêôÞñåò)"
+#: ../../network/netconnect.pm_.c:36
+msgid "Connect"
+msgstr "Óýíäåóç"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Ïäçãïß Ñýèìéóçò"
+#: ../../network/netconnect.pm_.c:37
+msgid "Disconnect"
+msgstr "Áðïóýíäåóç"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ISDN connection"
-msgstr "Óýíäåóç ISDN"
+#: ../../network/netconnect.pm_.c:38
+msgid "Configure the connection"
+msgstr "Ñýèìéóç ôçò óýíäåóçò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CDROM / DVDROM"
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
+msgstr "Óýíäåóç êáé ñýèìéóç Äéáäéêôýïõ"
-#: ../../standalone/harddrake2:1
+#: ../../network/netconnect.pm_.c:94
#, c-format
-msgid "primary"
-msgstr "ðñùôåýïõóá"
+msgid "We are now going to configure the %s connection."
+msgstr "Ôþñá èá ñõèìßóïõìå ôçí %s óýíäåóç."
-#: ../../printer/main.pm:1
+#: ../../network/netconnect.pm_.c:103
#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr "óôïí åîõðçñåôçôÞ SMB/Windows \"%s\", êïéíü÷ñçóôï \"%s\""
-
-#: ../../help.pm:1
-#, fuzzy, 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"
-"!!"
-msgstr ""
-"\n"
"\n"
"\n"
"\n"
+"We are now going to configure the %s connection.\n"
"\n"
"\n"
+"Press OK to continue."
+msgstr ""
"\n"
"\n"
-" åî' ïñéóìïý\n"
"\n"
+"Ôþñá èá ñõèìßóïõìå ôçí %s óýíäåóç.\n"
"\n"
-" åîõðçñåôçôÞò\n"
"\n"
-" åîõðçñåôçôÞò\n"
-"!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niue"
-msgstr "Íßïõå"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "ÐáñÜëåéøç"
+"ÐáôÞóôå ôï OK ãéá íá îåêéíÞóåôå"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Åíåñãïðïéåß/áðåíåñãïðïéåß üëá ôá õðïóõóôÞìáôá äéêôýïõ ðïõ Ý÷ïõí \n"
-"ñõèìéóôåß íá îåêéíïýí êáôÜ ôçí åêêßíçóç."
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr "Ñõèìßóåéò äéêôýïõ"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/netconnect.pm_.c:133
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)"
+"Because you are doing a network installation, your network is already "
+"configured.\n"
+"Click on Ok to keep your configuration, or cancel to reconfigure your "
+"Internet & Network connection.\n"
msgstr ""
+"ÅðåéäÞ êÜíåôå ìéá äéêôõáêÞ åãêáôÜóôáóç, ôï äßêôõï åßíáé Þäç ñõèìéóìÝíï.\n"
+"ÊÜíôå êëéê óôï Ok ãéá íá äéáôçñÞóåôå ôéò ñõèìßóåéò óáò, Þ Üêõñï ãéá "
+"íáîáíáñõèìßóåôå ôç óýíäåóç óôï Äéáäßêôõï.\n"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "important"
-msgstr "óçìáíôéêü"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "ÅãêáôÜóôáóç Mandrake Linux %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
-msgstr "ÓõíïëéêÞ Ðñüïäïò"
-
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../network/netconnect.pm_.c:157
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"
+"Welcome to The Network Configuration Wizard.\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."
+"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 ""
-"IDE\n"
-" PCI\n"
-"\n"
-"\n"
-"\n"
-" PCI Íáé\n"
-" ¼÷é\n"
-"\n"
-" áíé÷íåýèçêå\n"
-" Åðüìåíï Åðüìåíï\n"
-"\n"
-"\n"
-" PCI\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
+"Êáëþò Þëèáôå óôïí Ïäçãü Ñýèìéóçò Äéêôýïõ\n"
"\n"
-"."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr "Áñïýìðá"
+"Åßìáóôå Ýôïéìïé íá ñõèìßóïõìå ôç óýíäåóÞ óáò óôï äéáäßêôõï/äßêôõï.\n"
+"Áí äåí èÝëåôå íá ÷ñçóéìïðïéÞóåôå ôçí áõôüìáôç áíß÷íåõóç, áðïåðéëÝîôå ôï "
+"êïõôÜêé.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "×ñÞóôåò"
+#: ../../network/netconnect.pm_.c:163
+msgid "Choose the profile to configure"
+msgstr "ÅðéëÝîôå ôï ðñïößë ãéá ñýèìéóç"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Ðñïåôïéìáóßá ðñïãñÜììáôïò åêêßíçóçò..."
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
+msgstr "×ñÞóç áõôüìáôçò áíß÷íåõóçò"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
+msgstr "Ãéá Ðñï÷ùñçìÝíïõò"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Ðýëç (ð.÷. %s)"
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
+msgstr "Åíôïðéóìüò óõóêåõþí..."
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
-msgstr "Ïé êùäéêïß ðñüóâáóçò åßíáé áíüìïéïé"
+#: ../../network/netconnect.pm_.c:214
+msgid "Normal modem connection"
+msgstr "ÁðëÞ óýíäåóç ìå ìüíôåì"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/netconnect.pm_.c:214
#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Ðáñáäåßãìáôá óùóôþí IP:\n"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please choose the media for backup."
-msgstr ""
-"Ðáñáêáëþ åðéëÝîôå ôï \n"
-"ìÝóï ãéá ôá áíôßãñáöá \n"
-"áóöáëåßáò"
+msgid "detected on port %s"
+msgstr "áíé÷íåýèçêå óôçí ðüñôá %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Óõ÷íüôçôá (MHz)"
+#: ../../network/netconnect.pm_.c:215
+#, fuzzy
+msgid "Winmodem connection"
+msgstr "ÁðëÞ óýíäåóç ìå ìüíôåì"
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Ãéá íá ÷ñçóéìïðïéÞóåôå áõôÞí ôçí áðïèçêåõìÝíç åðéëïãÞ ðáêÝôùí, îåêéíÞóôå ôçí "
-"åãêáôÜóôáóç ìå ``linux defcfg=floppy''"
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "detected"
+msgstr "áíé÷íåýèçêå ôï %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of the processor"
-msgstr "Ï áñéèìüò ôïõ åðåîåñãáóôÞ"
+#: ../../network/netconnect.pm_.c:216
+msgid "ISDN connection"
+msgstr "Óýíäåóç ISDN"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Ôï ñïëüé ôïõ õðïëïãéóôÞ óáò åßíáé ñõèìéóìÝíï óå GMT (þñá Ãêñßíïõéôò)"
-
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "ÈÝëåôå íá äïêéìÜóåôå ôéò ñõèìßóåéò;"
+msgid "detected %s"
+msgstr "áíé÷íåýèçêå ôï %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Give a file name"
-msgstr "Äþóôå Ýíá üíïìá áñ÷åßïõ"
+#: ../../network/netconnect.pm_.c:217
+msgid "ADSL connection"
+msgstr "Óýíäåóç ADSL"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "ÅðéëÝîôå óå ðïßá èÞñá åßíáé óõíäåäåìÝíïò ï åêôõðùôÞò óáò."
+#: ../../network/netconnect.pm_.c:218
+msgid "Cable connection"
+msgstr "ÊáëùäéáêÞ óýíäåóç"
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "ÁëëáãÞ Cd-Rom"
+#: ../../network/netconnect.pm_.c:218
+msgid "cable connection detected"
+msgstr "áíé÷íåýèçêå êáëùäéáêÞ óýíäåóç"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "ÐáñáãïõÜç"
+#: ../../network/netconnect.pm_.c:219
+msgid "LAN connection"
+msgstr "Óýíäåóç LAN"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "Ôé ñýèìéóç XFree èÝëåôå íá Ý÷åôå;"
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
+msgstr "áíé÷íåýèçêáí êÜñôá(åò) ethernet"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr ""
+#: ../../network/netconnect.pm_.c:222
+msgid "Choose the connection you want to configure"
+msgstr "ÅðéëÝîôå ôç óýíäåóç ðïõ èÝëåôå íá ñõèìßóåôå"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../network/netconnect.pm_.c:246
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:"
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
+"¸÷åôå ñõèìßóåé ðïëëïýò ôñüðïõò ãéá íá óõíäÝåóôå óôï Äéáäßêôõï.\n"
+"ÅðéëÝîôå áõôüí ðïõ èÝëåôå íá ÷ñçóéìïðïéÞóåôå.\n"
+"\n"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr "Äåí õðÜñ÷åé êÜðïéïò ãíùóôüò ïäçãüò ãéá ôçí êÜñôá Þ÷ïõ óáò (%s)"
+#: ../../network/netconnect.pm_.c:247
+msgid "Internet connection"
+msgstr "Óýíäåóç Äéáäéêôýïõ"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "force"
-msgstr "ìåôÜ âßáò"
+#: ../../network/netconnect.pm_.c:253
+msgid "Do you want to start the connection at boot?"
+msgstr "ÈÝëåôå íá óõíäÝåóôå êáôÜ ôçí åêêßíçóç;"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Exit"
-msgstr "¸îïäïò"
+#: ../../network/netconnect.pm_.c:267
+msgid "Network configuration"
+msgstr "Ñõèìßóåéò äéêôýïõ"
+
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
+msgstr "Ôï äßêôõï ðñÝðåé íá åðáíåêêéíçèåß"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/netconnect.pm_.c:272
#, c-format
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
msgstr ""
-"Óçì.: ÁíÜëïãá ìå ôï ìïíôÝëï ôïõ åêôõðùôÞ êáé ôï óýóôçìá åêôýðùóçò èá "
-"åãêáôáóôáèåß åðéðëÝïí ìÝ÷ñé êáé %d MB ëïãéóìéêü"
+"¸íá ðñüâëçìá åìöáíßóôçêå êáôÜ ôçí åðáíåêêßíçóç ôïõ äéêôýïõ: \n"
+"\n"
+"%s"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../network/netconnect.pm_.c:282
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
-"Äåí Ý÷åôå êÜðïéá ñõèìéóìÝíç äéåðáöÞ.\n"
-"Ñõèìßóôå ôçí êÜíïíôáò êëéê óôï 'Ñýèìéóç'"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "Åóèïíéêü"
+"Óõã÷áñçôÞñéá, ç ñýèìéóç äéêôýïõ êáé äéáäéêôýïõ ôåëåßùóå.\n"
+"Ïé ñõèìßóåéò èá åöáñìïóôïýí ôþñá óôï óýóôçìÜ óáò.\n"
+"\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:286
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
-"Ï Apache åßíáé Ýíáò åîõðçñåôçôÞò WWW. Ìðïñåß íá åîõðçñåôÞóåé áñ÷åßá\n"
-"HTML êáé CGI."
+"Áöïý ãßíåé áõôü, ðñïôåßíïõìå íá åðáíåêêéíÞóåôå ôï ×ðåñéâÜëëïí ãéá íá "
+"áðïöýãåôå ôá ðñïâëÞìáôá áëëáãÞò hostname."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#: ../../network/netconnect.pm_.c:287
msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
+"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 ""
-"Ðáñáêáëþ åéóÜãåôå ôï üíïìá ôçò óõóêåõÞò åããñáöÞò CD\n"
-"ð.÷. : 0,1,0"
+"ÐñïâëÞìáôá êáôÜ ôç ñýèìéóç.\n"
+"ÄïêéìÜóôå ôç óýíäåóç ìå ôï net_monitor Þ ôï mcc. Áí äåí ëåéôïõñãÞóåé ç "
+"óýíäåóç, ôüôå èá ðñÝðåé íá åêêéíÞóåôå îáíÜ ôç ñýèìéóç."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ALL"
+#: ../../network/network.pm_.c:278
+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 ""
+"ÐÑÏÓÏ×Ç: ÁõôÞ ç óõóêåõÞ åßíáé Þäç ñõèìéóìÝíç ãéá íá óõíäÝåôáé ìå ôï "
+"Äéáäßêôõï.\n"
+"ÁðëÜ ðáôÞóôå OK ãéá íá êñáôÞóåôå ôéò õðÜñ÷ïõóåò ñõèìßóåéò.\n"
+"ÁëëÜæïíôáò ôá ðáñáêÜôù ðåäßá èá áëëÜîåôå ôçí õðÜñ÷ïõóá ñýèìéóç."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Clients"
-msgstr "ÐñïóèÞêç/Áöáßñåóç Ðåëáôþí"
+#: ../../network/network.pm_.c:283
+msgid ""
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
+msgstr ""
+"Ðáñáêáëþ åéóÜãåôå ôéò IP ñõèìßóåéò ãéá áõôü ôï óýóôçìá.\n"
+"ÊÜèå óôïé÷åßï ðñÝðåé íá åéóá÷èåß ùò IP äéåýèõíóç ìå áñéèìïýò\n"
+"÷ùñéóìÝíïõò ìå ôåëåßåò (ðáñÜäåéãìá: 1.2.3.4)."
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "Choose the network interface"
-msgstr "ÅðéëÝîôå óõóêåõÞ äéêôýïõ"
+msgid "Configuring network device %s"
+msgstr "Ñýèìéóç óõóêåõÞò äéêôýïõ %s"
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../network/network.pm_.c:294
#, c-format
-msgid "Unknown Model"
-msgstr "¶ãíùóôï ÌïíôÝëï"
+msgid " (driver %s)"
+msgstr " (ïäçãüò %s)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
-msgstr "ÓõóêåõÝò åããñáöÞò CD/DVD"
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "Äéåýèõíóç IP"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"ÊáôÜôìçóç åêêßíçóçò åî ïñéóìïý\n"
-" (áðü MS-DOS, ü÷é áðü lilo)\n"
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr "ÌÜóêá äéêôýïõ"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr ""
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image"
-msgstr "åðéëÝîôå åéêüíá"
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "Áõôüìáôï IP"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Áíé÷íåýèçêå ñýèìéóç ôïõ Ôïß÷ïõò Ðñïóôáóßáò!"
+#: ../../network/network.pm_.c:299
+msgid "Start at boot"
+msgstr "Óôçí åêêßíçóç óõóôÞìáôïò"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "¼íïìá óýíäåóçò"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
+msgstr "Ç IP äéåýèõíóç ðñÝðåé íá åßíáé óå ìïñöÞ 1.2.3.4"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../network/network.pm_.c:326
msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-"óõíôåôáãìÝíç x ôïõ ðëáéóßïõ êåéìÝíïõ\n"
-"óå áñéèìü ÷áñáêôÞñùí"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/network.pm_.c:330
msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Updating package selection"
-msgstr "ÁíáíÝùóç åðéëåãìÝíùí ðáêÝôùí"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "Ðïý èÝëåôå íá óõíäÝóåôå ôï áñ÷åßï loopback %s;"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../network/network.pm_.c:350
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"Please enter your host name.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''.\n"
+"You may also enter the IP address of the gateway if you have one"
msgstr ""
-"Ç äéóêÝôá äçìéïõñãÞèçêå ìå åðéôõ÷ßá.\n"
-"Ìðïñåßôå ôþñá íá åðáíáëÜâåôå ôçí åãêáôÜóôáóç."
+"Ðáñáêáëþ åéóÜãåôå ôï üíïìá ôïõ óõóôÞìáôïò.\n"
+"Ôï üíïìá áõôü ðñÝðåé íá åßíáé Ýíá ðëÞñåò üíïìá óõóôÞìáôïò,\n"
+"üðùò ð.÷. ``mybox.mylab.myco.com''.\n"
+"Ìðïñåßôå åðßóçò íá åéóÜãåôå êáé ôçí äéåýèõíóç IP ôçò ðýëçò äéêôýïõ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "×ñÞóç CD/DVDROM ãéá ôá áñ÷åßá áóöáëåßáò"
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "ÅîõðçñåôçôÞò DNS"
-#: ../../standalone/harddrake2:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "Ï áñéèìüò ôùí ðëÞêôñùí ôïõ ðïíôéêéïý"
+msgid "Gateway (e.g. %s)"
+msgstr "Ðýëç (ð.÷. %s)"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
-msgstr "Åðáíáöüñôùóç"
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "ÓõóêåõÞ ðýëçò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup other files"
-msgstr "Áíôßãñáöá áóöáëåßáò Üëëùí áñ÷åßùí"
+#: ../../network/network.pm_.c:363
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "Ç IP äéåýèõíóç ðñÝðåé íá åßíáé óå ìïñöÞ 1.2.3.4"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "Äåí õðÜñ÷åé äéáèÝóéìïò ïäçãüò äéóêÝôáò"
+#: ../../network/network.pm_.c:367
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Ç IP äéåýèõíóç ðñÝðåé íá åßíáé óå ìïñöÞ 1.2.3.4"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Ôá áíôßãñáöá áóöáëåßáò åßíáé êáôåóôñáììÝíá"
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
+msgstr "Ñõèìßóåéò proxies"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
-msgstr ""
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr "ÏéêïãÝíåéá Cpuid"
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "FTP proxy"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
+msgstr ""
+"ÁíáæÞôçóç ôáõôüôçôáò ôçò êÜñôáò äéêôýïõ (÷ñÞóéìï ãéá öïñçôïýò õðïëïãéóôÝò)"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "type: thin"
-msgstr "ôýðïò: %s"
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
+msgstr "Ï proxy ðñÝðåé íá åßíáé http://..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "Ëéèïõáíéêü AZERTY (íÝï)"
+#: ../../network/network.pm_.c:388
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Ôï URL ðñÝðåé íá îåêéíÜ ìå 'http:' Þ 'ftp:'"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
+msgstr "Áíé÷íåýèçêå ñýèìéóç ôïõ Ôïß÷ïõò Ðñïóôáóßáò!"
-#: ../../fsedit.pm:1
-#, fuzzy, c-format
+#: ../../network/shorewall.pm_.c:27
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"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
-"\n"
-" ¼÷é\n"
+"Ðñïóï÷Þ! Áíé÷íåýèçêå ìéá Þäç õðÜñ÷ïõóá ñýèìéóç Ôïß÷ïõò Ðñïóôáóßáò. ºóùò "
+"÷ñåéáóôïýí ïñéóìÝíåò ÷åéñïêßíçôåò ñõèìßóåéò ìåôÜ ôçí åãêáôÜóôáóç."
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "¶ëëï ëåéôïõñãéêü (MacOS...)"
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
+msgstr "Ñõèìßóåéò Äéáäéêôýïõ"
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Ãéá åíåñãïðïßçóç ðïíôéêéïý"
+#: ../../network/tools.pm_.c:58
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "ÈÝëåôå íá äïêéìÜóåôå íá óõíäåèåßôå óôï Äéáäßêôõï ôþñá;"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "Åêêßíçóç äéêôýïõ"
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+msgid "Testing your connection..."
+msgstr "ÄïêéìÞ óýíäåóçò... "
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Ôá óôéãìéüôõðá èá åßíáé äéáèÝóéìá ìåôÜ ôçí åãêáôÜóôáóçò óôï %s"
+#: ../../network/tools.pm_.c:70
+msgid "The system is now connected to Internet."
+msgstr "Ôï óýóôçìá åßíáé ôþñá óõíäåìÝíï óôï Äéáäßêôõï."
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
+msgstr "Ãéá ëüãïõò Áóöáëåßáò, èá áðïóõíäåèåßôå ôþñá."
+
+#: ../../network/tools.pm_.c:72
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:\")."
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-"Ðåñéóóüôåñåò ôùí ìßá êáôáôìÞóåéò Windows âñÝèçêáí óôïí äßóêï óáò. Ðáñáêáëþ \n"
-"åðéëÝîôå ðïéá èÝëåôå íá óõññéêíþóåôå ãéá íá åãêáôáóôÞóåôå ôï Mandrake "
-"Linux.\n"
-"\n"
-"ÊÜèå êáôÜôìçóç áíáöÝñåôáé ùò: \"¼íïìá Linux\", \"¼íïìá Windows\"\n"
-"\"×ùñçôéêüôçôá\".\n"
-"\n"
-"Ôï üíïìá Linux óçìáßíåé ôá åîÞò: \"Ôýðïò äßóêïõ\",\"áñéèìüò äßóêïõ\",\n"
-"\"áñéèìüò êáôÜôìçóçò ãéá ðáñÜäåéãìá, \"hda1\").\n"
-"\n"
-"Ï \"Ôýðïò äßóêïõ\" åßíáé \"hd\" åÜí ðñüêåéôáé ãéá äßóêï IDE êáé \"sd\" \n"
-"ãéá SCSI äßóêï.\n"
-"\n"
-"Ï \" áñéèìüò äßóêïõ\"åßíáé ðÜíôá Ýíá ãñÜììá ìåôÜ ôï \"hd\" Þ \"sd\". Ãéá\n"
-"ôïõò IDE äßóêïõò: \n"
-"\n"
-" * \"a\" åßíáé ï \"master äßóêïò óôïí ðñþôï åëåãêôÞ IDE\",\n"
-"\n"
-" * \"b\" åßíáé ï \"slave äßóêïò óôïí ðñþôï åëåãêôÞ IDE\",\n"
-"\n"
-" * \"c\" åßíáé ï \"master äßóêïò óôïí äåýôåñï åëåãêôÞ IDE\",\n"
-"\n"
-" * \"d\" åßíáé ï \"slave äßóêïò óôïí äåýôåñï åëåãêôÞ IDE\".\n"
-"\n"
-"Ãéá äßóêïõò SCSI, \"a\" åßíáé ï ðñþôïò äßóêïò, \"b\" åßíáé ï äåýôåñïò "
-"äßóêïò\n"
-" êëð...\n"
-"\n"
-"Ôï \"¼íïìá Windows\" åßíáé ôï ãñÜììá ôçò êáôÜôìçóçò üðùò öáßíåôáé áðü ôá\n"
-"Windows (ï ðñþôïò äßóêïò Þ êáôÜôìçóç ëÝãåôáé \"C:\")."
+"Ôï óýóôçìÜ óáò äåí öáßíåôáé íá åßíáé óõíäåäåìÝíï óôï Äéáäßêôõï.\n"
+"ÄïêéìÜóôå íá åðáíáñõèìßóåôå ôç óýíäåóÞ óáò."
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
-msgstr "Ôáíæáíßá"
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
+msgstr "Ñõèìßóåéò óýíäåóçò"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "Õðïëïãéóìüò FAT filesystem bounds"
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
+msgstr "Ðáñáêáëþ åëÝãîôå Þ óõìðëçñþóôå ôï ðáñáêÜôù ðåäßï"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"- ÐçãÝò ÁíôéãñÜöùí Áóöáëåßáò:\n"
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr "IRQ êÜñôáò"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "custom"
-msgstr "ÐñïóáñìïóìÝíï"
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "DMA êÜñôáò"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Content of the file"
-msgstr "Ðåñéå÷üìåíï ôïõ áñ÷åßïõ"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "IO êÜñôáò"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
-msgstr "Ðéóôïðïßçóç LDAP"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "IO_0 êÜñôáò"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
-msgstr ""
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "IO_1 êÜñôáò"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
-msgstr "Èá äéáëÝîù åãþ ïäçãü"
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
+msgstr "Ðñïóùðéêüò áñéèìüò ôçëåöþíïõ"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
-msgstr "áðåóôáëìÝíá"
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
+msgstr "¼íïìá ðáñï÷Ýá (ð.÷. provider.net)"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Palestine"
-msgstr "ÔìÞìá Splash"
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
+msgstr "Áñéèìüò ôçëåöþíïõ ðáñï÷Ýá"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+msgid "Provider dns 1 (optional)"
+msgstr "dns 1 Ðáñï÷Ýá (ðñïáéñåôéêü)"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
-msgstr ""
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+msgid "Provider dns 2 (optional)"
+msgstr "dns 2 Ðáñï÷Ýá (ðñïáéñåôéêü)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " isdn"
-msgstr ""
+#: ../../network/tools.pm_.c:109
+msgid "Choose your country"
+msgstr "ÅðéëÝîôå ÷þñá"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "ÁõôÞ åßíáé ç ðëÞñçò ëßóôá ôùí äéáèÝóéìùí ðëçêôñïëïãßùí"
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
+msgstr "Ôñüðïò êëÞóçò"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Theme name"
-msgstr "¼íïìá èÝìáôïò"
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+msgid "Connection speed"
+msgstr "Ôá÷ýôçôá óýíäåóçò"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/_ÂïÞèåéá"
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+msgid "Connection timeout (in sec)"
+msgstr "×ñüíïò åêôüò óýíäåóçò (óå äåýôåñá)"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitrary driver"
-msgstr ""
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
+msgstr "Ëïãáñéáóìüò Óýíäåóçò (üíïìá ÷ñÞóôç)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "ÍÞóïé Êïõê"
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
+msgstr "Êùäéêüò Ðñüóâáóçò"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
+msgstr "ÇíùìÝíï Âáóßëåéï"
+
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
+msgstr "óýíäåóç áðÝôõ÷å: "
+
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
+msgstr "Ç åêôåôáìÝíç êáôÜôìçóç äåí õðïóôçñßæåôáé óå áõôüí ôïí ôýðï óõóôÞìáôïò"
+
+#: ../../partition_table.pm_.c:685
msgid ""
-"Here you can choose whether the scanners connected to this machine should be "
-"accessable by remote machines and by which remote machines."
+"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 ""
-"Åäþ ìðïñåßôå íá åðéëÝîåôå áí ïé óõíäåìÝíïé óáñùôÝò áõôïý ôï ìç÷áíÞìáôïò èá "
-"åßíáé ðñïóâÜóéìïé áðü áðïìáêñõóìÝíá ìç÷áíÞìáôá êáé áðü ðïéá."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the width of the progress bar"
-msgstr "ôï ðëÜôïò ôçò ãñáììÞò ðñïüäïõ"
+"ÕðÜñ÷åé Ýíá êåíü óôïí ðßíáêá êáôáôìÞóåùí ìá äåí ìðïñþ íá ôï ÷ñçóéìïðïéÞóù.\n"
+"Ç ìïíáäéêÞ ëýóç åßíáé íá ìåôáêéíÞóåôå ôéò ðñùôåýïõóåò êáôáôìÞóåéò óáò Ýôóé "
+"þóôå ôï êåíü íá âñåèåß äßðëá óôçí åêôåôáìÝíç êáôÜôìçóç"
-#: ../../fs.pm:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "Formatting partition %s"
-msgstr "Ìïñöïðïßçóç êáôÜôìçóçò %s"
+msgid "Restoring from file %s failed: %s"
+msgstr "Ç åðáíáöïñÜ áðü ôï áñ÷åßï %s áðÝôõ÷å: %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hostname required"
-msgstr "áðáéôåßôáé ôï äéêôõáêü üíïìá"
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
+msgstr "ÊáôåóôñáììÝíï åöåäñéêü áñ÷åßï"
-#: ../../standalone/drakfont:1
+#: ../../partition_table.pm_.c:796
#, c-format
-msgid "Unselect fonts installed"
-msgstr "Ïé áðïåðéëåãìÝíåò ãñáììáôïóåéñÝò åãêáôáóôÜèçêáí"
+msgid "Error writing to file %s"
+msgstr "ÓöÜëìá åããñáöÞò óôï áñ÷åßï %s"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Ìå ñïäÜêé"
+#: ../../partition_table/raw.pm_.c:192
+msgid ""
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
+msgstr ""
+"ÊÜôé êáêü óõìâáßíåé óôï äßóêï óáò. \n"
+"¸íá ôåóô åëÝã÷ïõ ôçò áêåñáéüôçôáò ôùí äåäïìÝíùí áðÝôõ÷å. \n"
+"Áõôü óçìáßíåé ðùò ç ïðïéáäÞðïôå åããñáöÞ óôï äßóêï èá êáôáëÞîåé óáí ôõ÷áßá "
+"óêïõðßäéá"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Submit kernel version"
-msgstr "Ýêäïóç ðõñÞíá"
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr "ðñÝðåé íá õðÜñ÷åé"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Cancel"
-msgstr "¶êõñï"
+#: ../../pkgs.pm_.c:27
+msgid "important"
+msgstr "óçìáíôéêü"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for configured scanners ..."
-msgstr "Ãßíåôáé áíáæÞôçóç ãéá ñõèìéóìÝíïõò óáñùôÝò ..."
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr "ðïëý êáëü"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Videocard"
-msgstr "ÊÜñôá ïèüíçò"
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr "êáëü"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tÁíôßãñáöá Áóöáëåßáò ùò tar êáé bzip2\n"
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr "ßóùò"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Remove Selected"
-msgstr "Áöáßñåóç ÅðéëåãìÝíùí"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
+msgstr "PDQ - Print, Don't Queue"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Åíôïðéóìüò _ìüíôåì"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
+msgstr "PDQ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove printer"
-msgstr "Áöáßñåóç åêôõðùôÞ"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
+msgstr "LPD - Line Printer Daemon"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Last Log"
-msgstr ""
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
+msgstr "LPD"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "Ðïéåò õðçñåóßåò èÝëåôå íá åðéôñÝðïíôáé íá óõíäÝïíôáé óôï Äéáäßêôõï;"
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
+msgstr "LPRng - LPR New Generation"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Connection Type"
-msgstr "Ôýðïò Óýíäåóçò :"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
+msgstr "LPRng"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Êáëþò ïñßóáôå óôï åñãáëåßï ñýèìéóçò ôá÷õäñïìåßïõ.\n"
-"\n"
-"Åäþ, èá ìðïñÝóåôå íá ñõèìßóåôå ôï óýóôçìá åéäïðïßçóçò\n"
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
+msgstr "CUPS - Common Unix Printing System"
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Other"
-msgstr "¶ëëï"
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
+msgstr "CUPS"
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
-msgstr "ÐñïåðéëåãìÝíï"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+msgid "Unknown Model"
+msgstr "¶ãíùóôï ÌïíôÝëï"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Ðñïóïìïßùóç 2 Êïõìðéþí"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "Ôïðéêüò åêôõðùôÞò"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Please enter a package name."
-msgstr "Ðáñáêáëþ åéóÜãåôå üíïìá ÷ñÞóôç"
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
+msgstr "ÁðïìáêñõóìÝíïò åêôõðùôÞò"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Run chkrootkit checks"
-msgstr "áí ïñéóôåß íáé, åêôÝëåóç åëÝã÷ùí chkrootkit"
+#: ../../printer/main.pm_.c:28
+msgid "Printer on remote CUPS server"
+msgstr "ÁðïìáêñõóìÝíïò åêôõðùôÞò óå åîõðçñåôçôÞ CUPS"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "type1inst building"
-msgstr "äçìéïõñãßá type1inst"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+msgid "Printer on remote lpd server"
+msgstr "ÁðïìáêñõóìÝíïò åêôõðùôÞò óå åîõðçñåôçôÞ lpd"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
+#: ../../printer/main.pm_.c:30
+msgid "Network printer (TCP/Socket)"
+msgstr "ÅêôõðùôÞò äéêôýïõ (TCP/Socket)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image file"
-msgstr "ÅðéëÝîôå ìéá åéêüíá"
+#: ../../printer/main.pm_.c:31
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "ÅêôõðùôÞò óå åîõðçñåôçôÞ SMB/Windows 95/98/NT"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "X server"
-msgstr "åîõðçñåôçôÞò X"
+#: ../../printer/main.pm_.c:32
+msgid "Printer on NetWare server"
+msgstr "ÅêôõðùôÞ óå åîõðçñåôçôÞ NetWare"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin User Name"
-msgstr "¼íïìá ×ñÞóôç Äéá÷åéñéóôÞ ÔïìÝá"
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+msgid "Enter a printer device URI"
+msgstr "ÅéóÜãåôå óõóêåõÞ åêôõðùôÞ URI"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "ÐñïêëÞèçêå óöÜëìá êáôÜ ôçí áíáæÞôçóç óôáèìþí ôçëåüñáóçò"
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
+msgstr "ÄéáóùëÞíùóç åñãáóßáò óå åíôïëÞ"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
-msgstr "US äéåèíÝò"
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
+msgstr "¶ãíùóôï ìïíôÝëï"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Not installed"
-msgstr "Ìç åãêáôåóôçìÝíï"
+#: ../../printer/main.pm_.c:317
+msgid "Local Printers"
+msgstr "Ôïðéêïß åêôõðùôÝò"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Ôáõôü÷ñïíá ôá äýï ðëÞêôñá Shift"
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+msgid "Remote Printers"
+msgstr "ÁðïìáêñõóìÝíïé åêôõðùôÝò"
-#: ../../network/netconnect.pm:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid "LAN connection"
-msgstr "Óýíäåóç LAN"
+msgid " on parallel port \\/*%s"
+msgstr " óôç ðáñÜëëçëç èÞñá \\/*%s"
-#: ../../standalone/logdrake:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid "/File/-"
-msgstr "/Áñ÷åßï/-"
+msgid ", USB printer \\/*%s"
+msgstr ", åêôõðùôÞò USB \\/*%s"
-#: ../../keyboard.pm:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid "Italian"
-msgstr "Éôáëéêü"
+msgid ", multi-function device on parallel port \\/*%s"
+msgstr ", ðïëõ÷ñçóôéêÞ óõóêåõÞ óôçí ðáñÜëëçëç èÞñá \\/*%s"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Basic"
-msgstr "ÂáóéêÞ"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
+msgstr ", ðïëõ÷ñçóôéêÞ óõóêåõÞ óôçí USB"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
+msgstr ", ðïëõ÷ñçóôéêÞ óõóêåõÞ óôï HP JetDirect"
-#: ../../lang.pm:1
-#, c-format
-msgid "Honduras"
-msgstr "Ïíäïýñá"
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
+msgstr ", ðïëõ÷ñçóôéêÞ óõóêåõÞ"
-#: ../../help.pm:1
+#: ../../printer/main.pm_.c:344
#, c-format
-msgid "pdq"
-msgstr ""
+msgid ", printing to %s"
+msgstr ", åêôýðùóç óôï %s"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../printer/main.pm_.c:346
#, c-format
-msgid "Card IO"
-msgstr "IO êÜñôáò"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Samba server"
-msgstr "ÅîõðçñåôçôÞò Samba"
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr "óôïí åîõðçñåôçôÞ LPD \"%s\", óôïí åêôõðùôÞ \"%s\""
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm_.c:348
#, c-format
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"ÁõôÞ åßíáé åéäéêÞ Bootstrap\n"
-"êáôÜôìçóç ãéá\n"
-"dual-booting ôï óýóôçìÜ óáò.\n"
+msgid ", TCP/IP host \"%s\", port %s"
+msgstr ", TCP/IP host \"%s\", èýñá %s"
-#: ../../standalone/drakautoinst:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Ðáñáêáëþ êáèïñßóôå åÜí ãéá êÜèå âÞìá èá ãßíåé åðáíÜëçøç ôçò åãêáôÜóôáóçò, Þ "
-"åÜí ãßíåé ÷åéñïêßíçôá"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr "óôïí åîõðçñåôçôÞ SMB/Windows \"%s\", êïéíü÷ñçóôï \"%s\""
-#: ../../standalone/scannerdrake:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"Åðßóçò åäþ ìðïñåßôå íá ïñßóåôå áí óáñùôÝò ðïõ âñßóêïíôáé óå áðïìáêñõóìÝíá "
-"ìç÷áíÞìáôá èá åßíáé äéáèÝóéìá óå áõôü ôï ìç÷Üíçìá."
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr "óôïí åîõðçñåôçôÞ Novell \"%s\", óôïí åêôõðùôÞ \"%s\""
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Äßêôõï ìÝóù FTP.\n"
+msgid ", using command %s"
+msgstr ", ìå ôçí åíôïëÞ %s"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Reports check result to tty"
-msgstr "áí ïñéóôåß íáé, áðïôÝëåóìá áíáöïñÜò åëÝã÷ïõ óôï tty"
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
+msgstr "ÁêáôÝñãáóôïò åêôõðùôÞò (×ùñßò ïäçãü)"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:647
#, c-format
-msgid "You must enter a device or file name!"
-msgstr "ÐñÝðåé íá ïñßóåôå ìéá óõóêåõÞ Þ Ýíá üíïìá áñ÷åßïõ!"
+msgid "(on %s)"
+msgstr "(óôïí %s)"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Quit"
-msgstr "/_¸îïäïò"
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
+msgstr "(óå áõôü ôï ìç÷Üíçìá)"
-#: ../../Xconfig/various.pm:1
+#: ../../printer/main.pm_.c:674
#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "ÌíÞìç êÜñôáò ãñáöéêþí: %s kB\n"
+msgid "On CUPS server \"%s\""
+msgstr "Óôïí åîõðçñåôçôÞ CUPS \"%s\""
-#: ../../standalone.pm:1
-#, fuzzy, c-format
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
+msgstr " (ÐñïåðéëåãìÝíïò)"
+
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
+msgstr "Ôñüðïò óýíäåóçò åêôõðùôÞ"
+
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
+msgstr "Ðþò åßíáé óõíäåäåìÝíïò ï åêôõðùôÞò óáò;"
+
+#: ../../printer/printerdrake.pm_.c:30
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"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
msgstr ""
"\n"
-" ÃåíéêÜ ¶äåéá\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" ÃåíéêÜ ¶äåéá\n"
-"\n"
-" ëçöèÝíôá ÃåíéêÜ ¶äåéá\n"
-"\n"
+"Ãéá ôçí åêôýðùóç óå áðïìáêñõóìÝíï åîõðçñåôçôÞ CUPS, äåí ÷ñåéÜæåôáé íá "
+"ñõèìßóåôå ôïõò åêôõðùôÝò åäþ. Ïé åêôõðùôÝò èá áíáãíùñéóôïýí áõôüìáôá."
-#: ../../any.pm:1
-#, c-format
-msgid "access to compilation tools"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr "Áõôüìáôç áíß÷íåõóç åêôõðùôÝò (Ôïðéêïß, TCP/Socket, êáé åêôõðùôÝò SMB)"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Global statistics"
-msgstr "ÓôáôéóôéêÜ"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+msgid "CUPS configuration"
+msgstr "Ñýèìéóç CUPS"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Ðáñáêáëþ åðéëÝîôå ôá äåäïìÝíá ðñïò åðáíáöïñÜ..."
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+msgid "Specify CUPS server"
+msgstr "Äçëþóôå ôïí åîõðçñåôçôÞ CUPS"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:83
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 ""
-"ÅÜí óêïðåýåôå íá ÷ñçóéìïðïéÞóåôå ôï aboot, ðñïóÝîôå íá áöÞóåôå åëåýèåñï ÷þñï "
-"(2048 ôïìåßò åßíáé áñêåôïß)\n"
-"óôçí áñ÷Þ ôïõ äßóêïõ"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Standard test page"
-msgstr "ÔõðéêÞ äïêéìáóôéêÞ óåëßäá"
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Time Zone"
-msgstr "ÙñïëïãéáêÞ Æþíç"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create"
-msgstr "Äçìéïõñãßá"
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
+msgstr ""
+"Ãéá íá áðïêôÞóåôå ðñüóâáóç óå åêôõðùôÝò ðïõ âñßóêïíôáé óå áðïìáêñõóìÝíï "
+"åîõðçñåôçôÞ CUPS óôï ôïðéêü óáò äßêôõï äåí ÷ñåéÜæïíôáé ñõèìßóåéò. Ï "
+"åîõðçñåôçôÞ CUPS åíçìåñþíåé áõôüìáôá ôï ìç÷ÜíçìÜ óáò ãéá ôïõò äéáèÝóéìïõò "
+"åêôõðùôÝò ïé ïðïßïé âñßóêïíôáé óôï ôìÞìá \"ÁðïìáêñõóìÝíïé åêôõðùôÝò\" óôçí "
+"êõñßùò ïèüíç ôïõ Printerdrake. Áí ï åîõðçñåôçôÞ CUPS äåí âñßóêåôáé óôï "
+"ôïðéêü óáò äßêôõï èá ðñÝðåé íá äçëþóåôå ôçí IP äéåýèõíóç êáé ðñïáéñåôéêÜ ôçí "
+"èÞñá ôïõ åîõðçñåôçôÞ ãéá íá ëÜâåôå ôéò ðëçñïöïñßåò áðü ôïí åîõðçñåôçôÞ, "
+"äéáöïñåôéêÜ áöÞóôå ôá ðåäßá êåíÜ."
+
+#: ../../printer/printerdrake.pm_.c:84
+msgid ""
+"\n"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
+msgstr ""
+"\n"
+"ÊáíïíéêÜ ôï CUPS ñõèìßæåôáé áõôüìáôá ìå âÜóç ôï ðåñéâÜëëïí äéêôýïõ ðïõ "
+"äéáèÝôåôå, ãéá íá áðïêôÞóåôå ðñüóâáóç óôïõò åêôõðùôÝò óôïí åîõðçñåôçôÞ CUPS."
+"Áí áõôü äåí ëåéôïõñãÞóåé óùóôÜ ôüôå áðåíåñãïðïéÞóôå ôï \"Áõôüìáôç ñýèìéóç "
+"CUPS\" êáé ñõèìßóôå ìå ôï ÷Ýñé ôï áñ÷åßï /etc/cups/cupsd.conf. Ìçí îå÷Üóåôå "
+"íá ìåôÜ íá åðáíåêêéíÞóåôå ôï CUPS (åíôïëÞ: \"service cups restart\")."
+
+#: ../../printer/printerdrake.pm_.c:88
+msgid "The IP address should look like 192.168.1.20"
+msgstr "Ç IP äéåýèõíóç ðñÝðåé íá åßíáé óå ìïñöÞ 192.168.1.20"
+
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
+msgstr "Ï áñéèìüò èýñáò ðñÝðåé íá åßíáé áêÝñáéïò áñéèìüò!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "What"
-msgstr "Ôé"
+#: ../../printer/printerdrake.pm_.c:99
+msgid "CUPS server IP"
+msgstr "IP äéåýèõíóç åîõðçñåôçôÞ CUPS"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "ÐñïêëÞèçêå óöÜëìá êáôÜ ôçí ôáîéíüìçóç ôùí ðáêÝôùí:"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
+msgstr "Èýñá"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "Âïõëãáñéêü (BDS)"
+#: ../../printer/printerdrake.pm_.c:102
+msgid "Automatic CUPS configuration"
+msgstr "Áõôüìáôç ñýèìéóç CUPS"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Server"
-msgstr "Áðåíåñãïðïßçóç ÅîõðçñåôçôÞ"
+#: ../../printer/printerdrake.pm_.c:159
+msgid "Checking your system..."
+msgstr "¸ëåã÷ïò ôïõ óõóôÞìáôïò óáò..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem encryption key"
-msgstr "Êëåéäß êñõðôïãñÜöçóçò óõóôÞìáôïò áñ÷åßùí"
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+msgid "Printerdrake"
+msgstr "Printerdrake"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
-msgstr "Ãêïõôæáñáôéêü"
+#: ../../printer/printerdrake.pm_.c:167
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr "Äåí âñÝèçêáí åêôõðùôÝò ðïõ íá åßíáé óõíäåìÝíïé óôïí õðïëïãéóôÞ óáò"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:179
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."
+"The following printers\n"
+"\n"
msgstr ""
+"Ïé ðáñáêÜôù åêôõðùôÝò\n"
+"\n"
-#: ../../interactive/stdio.pm:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:180
msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
+"The following printer\n"
+"\n"
msgstr ""
-"åðåîåñãáóßá\n"
+"Ï ðáñáêÜôù åêôõðùôÞò\n"
"\n"
-" "
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:182
msgid ""
"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
+"and one unknown printer are "
msgstr ""
"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Save theme"
-msgstr "AðïèÞêåõóç èÝìáôïò"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "Âñáæéëßá"
+"êáé Ýíáò Üãíùóôïò åêôõðùôÞò åßíáé"
-#: ../../standalone/drakautoinst:1
+#: ../../printer/printerdrake.pm_.c:184
#, c-format
-msgid "Auto Install"
-msgstr "Áõôüìáôç åãêáôÜóôáóç"
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+"\n"
+"êáé %d åêôõðùôÝò åßíáé"
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration Wizard"
-msgstr "Ïäçãüò Ñýèìéóçò Äéêôýïõ"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"are "
+msgstr ""
+"\n"
+"åßíáé"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
-msgstr "Áõôüìáôç óýíäåóç áðïóðþìåíùí ìïíÜäùí"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"is "
+msgstr ""
+"\n"
+"åßíáé"
-#: ../../services.pm:1
-#, c-format
-msgid "Printing"
-msgstr "Åêôýðùóç"
+#: ../../printer/printerdrake.pm_.c:189
+msgid "directly connected to your system"
+msgstr "Áðåõèåßáò óõíäåìÝíïé óôï óýóôçìÜ óáò"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Enter the directory to save:"
-msgstr "Ðáñáêáëþ ïñßóôå ôïí êáôÜëïãï áðïèÞêåõóçò: "
+#: ../../printer/printerdrake.pm_.c:192
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+"\n"
+"¸íáò Üãíùóôïò åêôõðùôÞò åßíáé óõíäåìÝíïò áðåõèåßáò óôï óýóôçìÜ óáò"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:194
#, c-format
msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "Äåí âñÝèçêáí åêôõðùôÝò ðïõ íá åßíáé óõíäåìÝíïé óôïí õðïëïãéóôÞ óáò"
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
+"\n"
+"Åßíáé %d åêôõðùôÝò óõíäåìÝíïé áðåõèåßáò óôï óýóôçìÜ óáò"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "Äçìéïõñãßá íÝáò êáôÜôìçóçò"
+#: ../../printer/printerdrake.pm_.c:200
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr ""
+" (Âåâáéùèåßôå üôé üëïé ïé åêôõðùôÝò óáò åßíáé óõíäåìÝíïé êáé óå "
+"ëåéôïõñãßá).\n"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Driver:"
-msgstr "Ïäçãüò:"
+#: ../../printer/printerdrake.pm_.c:214
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+"ÈÝëåôå íá åíåñãïðïéÞóåôå ôçí åêôýðùóç óôïõò ðáñáðÜíù åêôõðùôÝò Þ óå êÜðïéïí "
+"Üëëïí óôï ôïðéêü óáò äßêôõï;\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
-msgstr "¶ãíùóôï"
+#: ../../printer/printerdrake.pm_.c:215
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"ÈÝëåôå íá åíåñãïðïéÞóåôå ôçí åêôýðùóç óå åêôõðùôÝò óôï ôïðéêü óáò äßêôõï;\n"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "×ñÞóç fdisk"
+#: ../../printer/printerdrake.pm_.c:217
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "ÈÝëåôå íá åíåñãïðïéÞóåôå ôçí åêôýðùóç óôïõò ðáñáðÜíù åêôõðùôÝò ;\n"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "ÊÉÍÇÓÔÅ ÔÏ ÑÏÄÁÊÉ!"
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
+"Åßóôå âÝâáéïé üôé èÝëåôå íá ñõèìßóåôå ôçí åêôýðùóç óå áõôü ôï ìç÷Üíçìá;\n"
-#: ../../standalone/net_monitor:1
+#: ../../printer/printerdrake.pm_.c:219
#, c-format
-msgid "sent: "
-msgstr "áðïóôïëÞ: "
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
+"Óçì.: ÁíÜëïãá ìå ôï ìïíôÝëï ôïõ åêôõðùôÞ êáé ôï óýóôçìá åêôýðùóçò èá "
+"åãêáôáóôáèåß åðéðëÝïí ìÝ÷ñé êáé %d MB ëïãéóìéêü"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "Áõôüìáôï IP"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+msgid "Add a new printer"
+msgstr "ÐñïóèÞêç íÝïõ åêôõðùôÞ"
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:259
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"
+"Welcome to the Printer Setup Wizard\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"
+"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"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
+"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 ""
-"Linux\n"
-" Åðüìåíï\n"
"\n"
+"Êáëþò ïñßóáôå óôïí Ïäçãü Ñýèìéóçò ÅêôõðùôÞ\n"
"\n"
+"Ï ïäçãüò áõôüò óáò âïçèÜåé óôçí åãêáôÜóôáóç ôïðéêþí Þ áðïìáêñõóìÝíùí "
+"åêôõðùôþí ðïõ èá ÷ñçóéìïðïéçèïýí óå áõôü êáé óå Üëëá ìç÷áíÞìáôá óôï äßêôõï\n"
"\n"
+"Óáò æçôÜ üëåò ôéò áðáñáßôçôåò ðëçñïöïñßåò ãéá íá ñõèìßóåôå ôïõò åêôõðùôÝò "
+"êáé íá áðïêôÞóåôå ðñüóâáóç óå üëïõò ôïõò äéáèÝóéìïõò ïäçãïýò åêôõðùôþí, "
+"åðéëïãÝò ôùí ïäçãþí êáé ôïõò ôýðïõò óõíäÝóåùí."
+
+#: ../../printer/printerdrake.pm_.c:272
+msgid ""
"\n"
-" Ãéá Ðñï÷ùñçìÝíïõò\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
+"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) and you 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\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
+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"
-" Åðáíáöüñôùóç\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\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:289
+msgid ""
"\n"
-" Áõôüìáôï\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer 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\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:307
+msgid "Auto-detect printers connected to this machine"
+msgstr "Áõôüìáôç áíß÷íåõóç åêôõðùôþí óõíäåìÝíïé óå áõôü ôï ìç÷Üíçìá"
+
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
+msgstr "Áõôüìáôç áíß÷íåõóç åêôõðùôþí óõíäåìÝíïé óôï ôïðéêü óáò äßêôõï"
+
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+"Áõôüìáôç áíß÷íåõóç åêôõðùôþí óõíäåìÝíïé óå ìç÷áíÞìáôá ðïõ Ý÷ïõí Microsoft "
+"Windows"
+
+#: ../../printer/printerdrake.pm_.c:329
+msgid ""
+"\n"
+"Congratulations, your printer is now installed and configured!\n"
"\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 ""
"\n"
+"Óõã÷áñçôÞñéá, ï åêôõðùôÞò óáò åãêáôáóôÜèçêå êáé ñõèìßóôçêå!\n"
"\n"
+"Ìðïñåßôå ôþñá íá åêôõðþóåôå ìå ôçí åíôïëÞ \"Åêôýðùóç\" ôçò åöáñìïãÞò óáò "
+"(óõíÞèùò êÜôù áðü ôï ìåíïý \"Áñ÷åßï\").\n"
"\n"
-" Linux\n"
+"Áí èÝëåôå íá ðñïóèÝóåôå, íá áöáéñÝóåôå Þ íá ìåôïíïìÜóåôå ôïí åêôõðùôÞ óáò Þ "
+"áí èÝëåôå íá áëëÜîåôå ôéò ðñïåðéëåãìÝíåò ñõèìßóåéò óáò (èÝóç ôïõ ÷áñôéïý, "
+"ðïéüôçôá åêôýðùóçò) åðéëÝîôå \"ÅêôõðùôÞò\" óôï ôìÞìá \"Õëéêü\"ôïõ ÊÝíôñïõ "
+"ÅëÝã÷ïõ Mandrake."
-#: ../../lang.pm:1
-#, c-format
-msgid "Moldova"
-msgstr "Ìïëäáâßá"
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Printer auto-detection"
+msgstr "Áõôüìáôç áíß÷íåõóç åêôõðùôþí"
-#: ../../mouse.pm:1
+#: ../../printer/printerdrake.pm_.c:385
#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
+msgid ", network printer \"%s\", port %s"
+msgstr ", åêôõðùôÞò äéêôýïõ \"%s\", èýñá %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:387
#, c-format
-msgid "Configuration of a remote printer"
-msgstr "Ñýèìéóç áðïìáêñõóìÝíïõ åêôõðùôÞ"
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "ÅêôõðùôÞò \"%s\" óå åîõðçñåôçôÞ SMB/Windows \"%s\""
-#: ../advertising/13-mdkexpert_corporate.pl:1
+#: ../../printer/printerdrake.pm_.c:391
#, c-format
-msgid "An online platform to respond to enterprise support needs."
-msgstr ""
+msgid "Detected %s"
+msgstr "ÂñÝèçêå ï %s"
-#: ../../network/network.pm:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "Ôï URL ðñÝðåé íá îåêéíÜ ìå 'http:' Þ 'ftp:'"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Oriya"
-msgstr "Óõñßá"
+msgid "Printer on parallel port \\/*%s"
+msgstr "ÅêôõðùôÞò óôçí ðáñÜëëçëç èÞñá \\/*%s"
-#: ../../standalone/drakperm:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "Add a new rule at the end"
-msgstr "ÐñïóèÞêç íÝïõ êáíüíá óôï ôÝëïò"
+msgid "USB printer \\/*%s"
+msgstr "åêôõðùôÞò USB \\/*%s"
-#: ../../standalone/drakboot:1
+#: ../../printer/printerdrake.pm_.c:399
#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr "Åðéôõ÷Þò åãêáôÜóôáóç èåìÜôùí LiLo êáé Bootsplash"
+msgid "Network printer \"%s\", port %s"
+msgstr "ÅêôõðùôÞò äéêôýïõ \"%s\", èýñá %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:401
#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-"Åðßóçò åäþ ìðïñåßôå íá ïñßóåôå áí ïé åêôõðùôÝò ðïõ âñßóêïíôáé óå "
-"áðïìáêñõóìÝíá ìç÷áíÞìáôá èá åßíáé áõôüìáôá äéáèÝóéìïé êáé óå áõôü ôï "
-"ìç÷Üíçìá."
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "ÅêôõðùôÞò \"%s\" óå åîõðçñåôçôÞ SMB/Windows \"%s\""
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+msgid "Local Printer"
+msgstr "Ôïðéêüò ÅêôõðùôÞò"
+
+#: ../../printer/printerdrake.pm_.c:526
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''"
+"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 ""
-"Ìðïñåßôå ôþñá íá äþóåôå ôéò ðáñáìÝôñïõò ãéá ôï Üñèñùìá %s.\n"
-"Ïé ðáñÜìåôñïé Ý÷ïõí ôçí ìïñöÞ ``üíïìá=ôéìÞ üíïìá2=ôéìÞ2 ...''.\n"
-"Ãéá ðáñÜäåéãìá, ``io=0x300 irq=7''"
+"Äåí âñÝèçêáí ôïðéêïß åêôõðùôÝò! Ãéá íá ñõèìßóåôå ìüíïé óáò Ýíáí åêôõðùôÞ "
+"äþóôå ôï üíïìá åêôõðùôÞ/üíïìá áñ÷åßïõ óôç ãñáììÞ åéóáãùãÞò (ÐáñÜëëçëåò "
+"èýñåò: /dev/lp0, /dev/lp1, ..., áíôßóôïé÷åò ôùí LPT1:, LPT2:, ..., 1ïò "
+"åêôõðùôÞò USB: /dev/usb/lp0, 2ïò USB åêôõðùôÞò: /dev/usb/lp1, ...)."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "¸îïäïò ÷ùñßò áðïèÞêåõóç ôïõ ðßíáêá êáôáôìÞóåùí;"
+#: ../../printer/printerdrake.pm_.c:530
+msgid "You must enter a device or file name!"
+msgstr "ÐñÝðåé íá ïñßóåôå ìéá óõóêåõÞ Þ Ýíá üíïìá áñ÷åßïõ!"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
+#: ../../printer/printerdrake.pm_.c:539
+msgid "No printer found!"
+msgstr "Äåí âñÝèçêå åêôõðùôÞò!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Hard Drive"
-msgstr "óôïí Óêëçñü Äßóêï"
+#: ../../printer/printerdrake.pm_.c:548
+msgid "Available printers"
+msgstr "ÄéáèÝóéìïé åêôõðùôÞò"
-#: ../../standalone.pm:1
-#, c-format
-msgid "Installing packages..."
-msgstr "ÅãêáôÜóôáóç ðáêÝôùí..."
+#: ../../printer/printerdrake.pm_.c:552
+msgid ""
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
+msgstr ""
+"Ï ðáñáêÜôù åêôõðùôÞò åíôïðßóôçêå áõôüìáôá, áí äåí åßíáé áõôüò ðïõ èÝëåôå íá "
+"ñõèìßóåôå , åéóÜãåôå Ýíá üíïìá óõóêåõÞò/áñ÷åßïõ óôç ãñáììÞ åéóüäïõ"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dutch"
-msgstr "Ïëëáíäéêü"
+#: ../../printer/printerdrake.pm_.c:553
+msgid ""
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
+msgstr ""
+"ÐáñáêÜôù èá äåßôå ìéá ëßóôá ìå ôïõò åêôõðùôÝò ðïõ åíôïðßóôçêáí áõôüìáôá. "
+"Ðáñáêáëþ åðéëÝîôå ôïí åêôõðùôÞ ðïõ èÝëåôå íá ñõèìßóåôå Þ åéóÜãåôå Ýíá üíïìá "
+"óõóêåõÞò/áñ÷åßïõ óôç ãñáììÞ åéóüäïõ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Angola"
-msgstr "Áãêüëá"
+#: ../../printer/printerdrake.pm_.c:555
+msgid ""
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
+msgstr ""
+"Åíôïðßóôçêå ï ðáñáêÜôù åêôõðùôÞò. Ç ñýèìéóç ôïõ åêôõðùôÞ èá ãßíåé áõôüìáôá. "
+"Áí ï åêôõðùôÞò óáò äåí åíôïðßóôçêå óùóôÜ Þ áí èÝëåôå ìéá ðñïóáñìïóìÝíç "
+"ñýèìéóç ôïõ åêôõðùôÞ, åíåñãïðïéÞóåôå ôï \"×åéñïêßíçôç Ñýèìéóç\"."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "Ôá ðáñáêÜôù ðáêÝôá ðñÝðåé íá åãêáôáóôáèïýí:\n"
+#: ../../printer/printerdrake.pm_.c:556
+msgid ""
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
+msgstr ""
+"ÐáñáêÜôù èá äåßôå ìéá ëßóôá ìå ôïõò åêôõðùôÝò ðïõ åíôïðßóôçêáí áõôüìáôá. "
+"Ðáñáêáëþ åðéëÝîôå ôïí åêôõðùôÞ ðïõ èÝëåôå íá ñõèìßóåôå. Ç ñýèìéóç èá "
+"ëåéôïõñãÞóåé áõôüìáôá. Áí ï åêôõðùôÞò óáò äåí åíôïðßóôçêå óùóôÜ Þ áí "
+"ðñïôéìÜôå ìéá ðñïóáñìïóìÝíç ñýèìéóç ôïõ åêôõðùôÞ äéáëÝîôå \"×åéñïêßíçôç "
+"ñýèìéóç\"."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "service setting"
-msgstr "Ñõèìßóåéò õðçñåóßáò"
+#: ../../printer/printerdrake.pm_.c:558
+msgid ""
+"Please choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
+msgstr ""
+"Ðáñáêáëþ åðéëÝîôå ôç èýñá üðïõ åßíáé óõíäåäåìÝíïò ï åêôõðùôÞ óáò Þ åéóÜãåôå "
+"Ýíá üíïìá óõóêåõÞò/áñ÷åßïõ óôç ãñáììÞ åéóüäïõ"
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "ÐñïóáñìïóìÝíï"
+#: ../../printer/printerdrake.pm_.c:559
+msgid "Please choose the port where your printer is connected to."
+msgstr "ÅðéëÝîôå óå ðïßá èÞñá åßíáé óõíäåäåìÝíïò ï åêôõðùôÞò óáò."
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
-msgstr "Ëåôôïíßá"
+#: ../../printer/printerdrake.pm_.c:561
+msgid ""
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+msgstr ""
+"(ÐáñÜëëçëåò èýñåò: /dev/lp0, /dev/lp1, ..., áíôßóôïé÷åò ôùí LPT1:, "
+"LPT2:, ..., 1ïò åêôõðùôÞò USB: /dev/usb/lp0, 2ïò USB åêôõðùôÞò: /dev/usb/"
+"lp1, ...)."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr "Ôï áñ÷åßï ÷ñçóéìïðïéåßôáé Þäç áðü Üëëï loopback, åðéëÝîôå Ýíá Üëëï"
+#: ../../printer/printerdrake.pm_.c:565
+msgid "You must choose/enter a printer/device!"
+msgstr "ÐñÝðåé íá åðéëÝîôå/ïñßóåôå ìéá óõóêåõÞ/åêôõðùôÞ!"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr "Ìüíï ãéá áíÜãíùóç"
+#: ../../printer/printerdrake.pm_.c:584
+msgid "Manual configuration"
+msgstr "×åéñïêßíçôç ñýèìéóç"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
+msgstr "ÅðéëïãÝò áðïìáêñõóìÝíïõ lpd åêôõðùôÞ"
+
+#: ../../printer/printerdrake.pm_.c:634
msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
+"Ãéá íá ÷ñçóéìïðïéÞóåôå Ýíáí áðïìáêñõóìÝíï åêôýðùóç ðñÝðåé íá äþóåôå ôï "
+"äéêôõáêü üíïìá ôïõ åîõðçñåôçôÞ åêôõðþóåùí, êáèþò êáé ôï üíïìá ôïõ åêôõðùôÞ "
+"óå áõôüí ôïí åîõðçñåôçôÞ."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
-msgstr "ÊáíÝíáò ãíùóôüò ïäçãüò"
+#: ../../printer/printerdrake.pm_.c:635
+msgid "Remote host name"
+msgstr "ÁðïìáêñõóìÝíï äéêôõáêü üíïìá"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
+#: ../../printer/printerdrake.pm_.c:636
+msgid "Remote printer name"
+msgstr "ÁðïìáêñõóìÝíïò üíïìá åêôõðùôÞ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
-"Áí äåí åßíáé áõôüò ðïõ èÝëåôå íá ñõèìßóåôå, åéóÜãåôå ôï üíïìá óõóêåõÞò/üíïìá "
-"áñ÷åßïõ óôç ãñáììÞ åéóáãùãÞò"
+#: ../../printer/printerdrake.pm_.c:639
+msgid "Remote host name missing!"
+msgstr "Ôï áðïìáêñõóìÝíï äéêôõáêü üíïìá ëåßðåé!"
-#: ../../standalone/draksound:1
+#: ../../printer/printerdrake.pm_.c:643
+msgid "Remote printer name missing!"
+msgstr "Ôï áðïìáêñõóìÝíï üíïìá åêôõðùôÞ ëåßðåé!"
+
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
#, 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"
-msgstr ""
-"Äåí âñÝèçêå óõóêåõÞ ÊÜñôáò '¹÷ïõ óôï ìç÷ÜíçìÜ óáò. Ðáñáêáëþ âåâáéùèåßôå üôé "
-"ç õðïóôçñéæüìåíç ÊÜñôá ¹÷ïõ óáò åßíáé óùóôÜ ôïðïèåôçìÝíç.\n"
-"\n"
-"\n"
-"Ìðïñåßôå íá åðéóêåöôåßôå ôç âÜóç äåäïìÝíùí õëéêïý óôï:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+msgid "Detected model: %s %s"
+msgstr "ÂñÝèçêå ôï ìïíôÝëï: %s %s"
-#: ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Scanning network..."
+msgstr "ÁíáæÞôçóç óôï äßêôõï..."
+
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Ñýèìéóç ôïðéêïý äéêôýïõ..."
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ", åêôõðùôÞò \"%s\"óôïí åîõðçñåôçôÞ \"%s\""
-#: ../../../move/move.pm:1
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
#, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "ÅêôõðùôÞò \"%s\"óôïí åîõðçñåôçôÞ \"%s\""
+
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "ÅðéëïãÝò åêôõðùôÞ SMB (Windows 9x/NT)"
+
+#: ../../printer/printerdrake.pm_.c:796
msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
+"To print to a SMB printer, you need to provide the SMB host name (Note! It "
+"may be different from its TCP/IP hostname!) and possibly the IP address of "
+"the print server, as well as the share name for the printer you wish to "
+"access and any applicable user name, password, and workgroup information."
msgstr ""
+"Ãéá íá åêôõðþóåôå óå Ýíáí SMB åêôõðùôÞ, ðñÝðåé íá äþóåôå ôï äéêôõáêü üíïìá "
+"SMB (Óçìåßùóç! Ìðïñåß íá åßíáé äéáöïñåôéêü áðü ôï äéêôõáêü üíïìá TCP/IP!) "
+"êáé ßóùò ôçí äéåýèõíóç IP ôïõ åîõðçñåôçôÞ åêôõðþóåùí, ôï üíïìá ôïõ åêôõðùôÞ "
+"óôïí ïðïßï åðéèõìåßôå ðñüóâáóç, êáèþò êáé ïðïéáäÞðïôå áðáñáßôçôç ðëçñïöïñßá "
+"ðåñß êùäéêïý ÷ñÞóôç, êùäéêïý ðñüóâáóçò êáé ôïìÝá Þ ïìÜäáò åñãáóßáò."
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr "Åêêßíçóç ôïõ óõóôÞìáôïò Þ÷ïõ óôï ìç÷ÜíçìÜ óáò"
+#: ../../printer/printerdrake.pm_.c:797
+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 ""
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Verify checksum of the suid/sgid files"
-msgstr "áí ïñéóôåß íáé, åðáëÞèåõóç checksum ãéá ôá áñ÷åßá suid/sgid."
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
+msgstr "Äéêôõáêü üíïìá SMB åîõðçñåôçôÞ"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Run some checks against the rpm database"
-msgstr "áí ïñéóôåß íáé, Ýëåã÷ïò ôçò âÜóçò äåäïìÝíùí rpm."
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr "IP äéåýèõíóç SMB åîõðçñåôçôÞ"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Execute"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr "¼íïìá ðüñïõ:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Preparing printer database..."
-msgstr "ÁíÜãíùóç âÜóçò äåäïìÝíùí åêôõðùôþí..."
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "ÏìÜäá åñãáóßáò:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Information"
-msgstr "Ðëçñïöïñßåò"
+#: ../../printer/printerdrake.pm_.c:806
+msgid "Auto-detected"
+msgstr "Åíôïðßóôçêáí áõôüìáôá"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "No network card"
-msgstr "äåí âñÝèçêå êÜñôá äéêôýïõ"
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
+msgstr "Åßôå ôï üíïìá ôïõ åîõðçñåôçôÞ Þ ç IP ôïõ ðñÝðåé íá äïèïýí!"
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "Ôñéþí ðëÞêôñùí"
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
+msgstr "Ôï üíïìá ãéá ôï Samba ëåßðåé!"
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Which filesystem do you want?"
-msgstr "Ðïéï óýóôçìá áñ÷åßùí ðñïôéìÜôå;"
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
+msgstr "ÐÑÏÅÉÄÏÐÏÉÇÓÇ ÁÓÖÁËÅÉÁÓ!"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:827
#, c-format
-msgid "Malta"
-msgstr "ÌÜëôá"
+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 ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
-msgid "Detailed information"
-msgstr "Ëåðôïìåñåßò ðëçñïöïñßåò"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
msgid ""
-"Printer default settings\n"
+"Set up your Windows server to make the printer available under the IPP "
+"protocol and set up printing from this machine with the \"%s\" connection "
+"type in Printerdrake.\n"
"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
msgstr ""
-"ÅêôõðùôÞò åî' ïñéóìïý\n"
+"Ñõèìßóôå ôïí åîõðçñåôçôÞ Windows þóôå íá åßíáé äéáèÝóéìïò ï åêôõðùôÞò óôï "
+"ðñùôüêïëëï IPP êáé ñõèìßóôå ôéò åêôõðþóåéò áðü áõôü ôï ìç÷Üíçìá ìå ôïí ôýðï "
+"óýíäåóçò \"%s\" óôï Printerdrake.\n"
"\n"
-" Õøçëü."
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
-msgstr "ÁõôÞ ç äéóêÝôá äåí Ý÷åé ìïñöïðïßçóç FAT"
+#: ../../printer/printerdrake.pm_.c:840
+msgid ""
+"Connect your printer to a Linux server and let your Windows machine(s) "
+"connect to it as a client.\n"
+"\n"
+"Do you really want to continue setting up this printer as you are doing now?"
+msgstr ""
+"ÓõíäÝóôå ôïí åêôõðùôÞ óáò óå Ýíáí åîõðçñåôçôÞ Linux êáé óõíäÝóôå óå áõôüí ôá "
+"ìç÷áíÞìáôá Windows óáí ðåëÜôåò\n"
+"\n"
+"ÈÝëåôå ðñáãìáôéêÜ íá óõíå÷ßóåôå ôéò ñõèìßóåéò ôïõ åêôõðùôÞ óáò ðïõ êÜíåôå;"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "Ñýèìéóç äéêôýïõ"
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
+msgstr "ÅðéëïãÝò ÅêôõðùôÞ NetWare"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:912
msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
+"To print on a NetWare printer, you need to provide the NetWare print server "
+"name (Note! it may be different from its TCP/IP hostname!) as well as the "
+"print queue name for the printer you wish to access and any applicable user "
+"name and password."
msgstr ""
+"Ãéá íá åêôõðþóåôå óå Ýíáí åêôõðùôÞ NetWare, ðñÝðåé íá äþóåôå ôï üíïìá ôïõ "
+"åîõðçñåôçôÞ åêôõðþóåùí NetWare (Óçìåßùóç! Ìðïñåß íá åßíáé äéáöïñåôéêü áðü ôï "
+"äéêôõáêü üíïìá TCP/IP!), ôï üíïìá ôïõ åêôõðùôÞ óôïí ïðïßï åðéèõìåßôå "
+"ðñüóâáóç, êáèþò êáé\n"
+"ïðïéáäÞðïôå áðáñáßôçôç ðëçñïöïñßá ðåñß ÷ñÞóôç êáé êùäéêïý ðñüóâáóçò."
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Graphic Card"
-msgstr "ÊÜñôá Ãñáöéêþí"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr "ÅîõðçñåôçôÞò Åêôõðþóåùí"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing Windows partition"
-msgstr "Ãßíåôáé áëëáãÞ ôéò êáôÜôìçóçò ôùí Windows"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
+msgstr "¼íïìá ÏõñÜò ÅêôõðùôÞ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "Êáìåñïýí"
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
+msgstr "Ôï üíïìá ôïõ åîõðçñåôçôÞ NCP ëåßðåé!"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
+msgstr "Ôï üíïìá ôçò NCP ïõñÜò ëåßðåé!"
+
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "dns 1 Ðáñï÷Ýá (ðñïáéñåôéêü)"
+msgid ", host \"%s\", port %s"
+msgstr ", host \"%s\",èýñá %s"
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
+msgid "Host \"%s\", port %s"
+msgstr "Host \"%s\", èýñá %s"
+
+#: ../../printer/printerdrake.pm_.c:1030
+msgid "TCP/Socket Printer Options"
+msgstr "ÅðéëïãÝò åêôõðùôÞ TCP/Socket"
+
+#: ../../printer/printerdrake.pm_.c:1032
msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-"Ìðïñåßôå ôþñá íá êáôáôìÞóåôå ôïí äßóêï %s\n"
-"¼ôáí ôåëåéþóåôå, ìçí îå÷Üóåôå íá áðïèçêåýóåôå ðáôþíôáò `w'"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finnish)"
+#: ../../printer/printerdrake.pm_.c:1033
+msgid ""
+"To print to a TCP or socket printer, you need to provide the host name or IP "
+"of the printer and optionally the port number (default is 9100). On HP "
+"JetDirect servers the port number is usually 9100, on other servers it can "
+"vary. See the manual of your hardware."
msgstr ""
+"Ãéá íá åêôõðþóåôå óå Ýíáí åêôõðùôÞ socket Þ TCP , ðñÝðåé íá äþóåôå ôï \n"
+"äéêôõáêü üíïìá ôïõ åêôõðùôÞ êáé ðñïáéñåôéêÜ ôïí áñéèìü èýñáò ( åî ïñéóìïý "
+"9100). Óôïõò åîõðçñåôçôÝò HP JetDirect Þ èýñá óõíÞèùò åßíáé 9100, óå Üëëïõò "
+"åîõðçñåôçôÝò ðïéêßëç. Äåßôå ôï åã÷åéñßäéï ÷ñÞóçò ôïõ õëéêïý óáò."
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Close"
-msgstr "Êëåßóéìï"
+#: ../../printer/printerdrake.pm_.c:1037
+msgid "Printer host name or IP missing!"
+msgstr "Ôï äéêôõáêü üíïìá ôïõ åêôõðùôÞ Þ ôï IP ëåßðåé!"
-#: ../../help.pm:1
-#, fuzzy, 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 ""
-"\"×þñá\": åëÝãîôå ôçí åðéëïãÞ ÷þñáò. Áí äåí åßóôå óå áõôÞ ôç ÷þñá,\n"
-"êÜíôå êëéê óôï ðëÞêôñï êáé åðéëÝîôå ìéá Üëëç."
+#: ../../printer/printerdrake.pm_.c:1059
+msgid "Printer host name or IP"
+msgstr "Äéêôõáêü üíïìá åêôõðùôÞ Þ IP"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Calendar"
-msgstr "Çìåñïëüãéï"
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
+msgstr "ÓõóêåõÞ åêôõðùôÞ URI"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:1108
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr "ÅðáíáöïñÜ\n"
+"You can specify directly the URI to access the printer. The URI must fulfill "
+"either the CUPS or the Foomatic specifications. Note that not all URI types "
+"are supported by all the spoolers."
+msgstr ""
+"Ìðïñåßôå íá ïñßóåôå êáôåõèåßáí ôï URI ãéá ôçí ðñüóâáóç óôïí åêôõðùôÞ. Ôï URI "
+"ðñÝðåé íá ôçñåß åßôå ôéò CUPS åßôå ôéò Foomatic ðñïäéáãñáöÝò. ¼÷é ðùò äåí "
+"õðïóôçñßæïíôáé üëïé ïé URI ôýðïé áðü üëá ôá spoolers."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
+msgstr "¸íá óùóôü URI ðñÝðåé íá åéóá÷èåß!"
+
+#: ../../printer/printerdrake.pm_.c:1463
msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
+"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 ""
-"Ãéá íá ÷ñçóéìïðïéÞóåôå Ýíáí áðïìáêñõóìÝíï åêôýðùóç ðñÝðåé íá äþóåôå ôï "
-"äéêôõáêü üíïìá ôïõ åîõðçñåôçôÞ åêôõðþóåùí, êáèþò êáé ôï üíïìá ôïõ åêôõðùôÞ "
-"óå áõôüí ôïí åîõðçñåôçôÞ."
+"ÊÜèå åêôõðùôÞò ÷ñåéÜæåôáé Ýíá üíïìá (ð.÷. \"åêôõðùôÞò\").Ôá ðåäßá ÐåñéãñáöÞ "
+"êáé Ôïðïèåóßá äåí ÷ñåéÜæåôáé íá óõìðëçñùèïýí. Åßíáé áðëÜ ó÷üëéá ãéá ôïõò "
+"÷ñÞóôåò."
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
-msgstr "Éóëáíäßá"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr "¼íïìá åêôõðùôÞ"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Network & Internet Configuration"
-msgstr "Ñõèìßóåéò äéêôýïõ"
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
+msgstr "ÐåñéãñáöÞ"
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
-msgstr "ôï consolehelper ëåßðåé"
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
+msgstr "Ôïðïèåóßá"
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr "äåí åêôåëåßôáé"
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+msgid "Reading printer database..."
+msgstr "ÁíÜãíùóç âÜóçò äåäïìÝíùí åêôõðùôþí..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:1482
+msgid "Preparing printer database..."
+msgstr "ÁíÜãíùóç âÜóçò äåäïìÝíùí åêôõðùôþí..."
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Ext2"
-msgstr "Ext2"
+#: ../../printer/printerdrake.pm_.c:1578
+msgid "Your printer model"
+msgstr "Ôï ìïíôÝëï åêôõðùôÞ óáò"
-#: ../../ugtk2.pm:1
+#: ../../printer/printerdrake.pm_.c:1579
#, c-format
-msgid "Expand Tree"
-msgstr "ÁíÜðôõîç äÝíôñïõ"
-
-#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
+"Printerdrake has compared the model name resulting from the printer auto-"
+"detection with the models listed in its printer database to find the best "
+"match. This choice can be wrong, especially when your printer is not listed "
+"at all in the database. So check whether the choice is correct and click "
+"\"The model is correct\" if so and if not, click \"Select model manually\" "
+"so that you can choose your printer model manually on the next screen.\n"
"\n"
-"It has been reported to oops the kernel on unloading.\n"
+"For your printer Printerdrake has found:\n"
"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+"%s"
msgstr ""
+"Ôï Printerdrake óõíÝêñéíå ôï üíïìá ôïõ ìïíôÝëïõ áðü ôïí áõôüìáôï åíôïðéóìü "
+"ìå ôç ëßóôá ôùí ìïíôÝëùí áðü ôçí âÜóç äåäïìÝíùí åêôõðùôþí ãéá íá ôçí "
+"êáëýôåñç åðéëïãÞ. ÁõôÞ ç åðéëïãÞ ìðïñåß íá åßíáé ëÜèïò, åéäéêÜ åÜí ï "
+"åêôõðùôÞò óáò äåí åßíáé êáôá÷ùñçìÝíïò óôçí âÜóç äåäïìÝíùí. Äåßôå ëïéðüí áí ç "
+"åðéëïãÞ ôïõ åêôõðùôÞ åßíáé óùóôÞ êáé êÜíôå êëéê óôï \"Ôï ìïíôÝëï åßíáé óùóôü"
+"\" åÜí ü÷é êÜíôå êëéê óôï \"ÅðéëÝîôå ôï ìïíôÝëï ÷åéñïêßíçôá\" ãéá íá "
+"åðéëÝîåôå ÷åéñïêßíçôá ôï ìïíôÝëï áðü ôçí åðüìåíç ïèüíç\n"
+"Ãéá ôïí åêôõðùôÞ óáò ôï Printerdrake âñÞêå:\n"
"\n"
-"\n"
-"\n"
-"\n"
-" íÝï."
-
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Expert Mode"
-msgstr "Ãéá Ðñï÷ùñçìÝíïõò"
+"%s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "ÅðéëïãÝò åêôõðùôÞ"
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+msgid "The model is correct"
+msgstr "Ôï ìïíôÝëï åßíáé óùóôü"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Local Network adress"
-msgstr "ÔïðéêÞ äéåýèõíóç äéêôýïõ"
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+msgid "Select model manually"
+msgstr "ÅðéëÝîôå ôï ìïíôÝëï ÷åéñïêßíçôá"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Áíôßãñáöï áóöáëåßáò ôùí áñ÷åßùí ÓõóôÞìáôïò (êáôÜëïãïò /etc )"
+#: ../../printer/printerdrake.pm_.c:1606
+msgid "Printer model selection"
+msgstr "ÅðéëïãÞ ìïíôÝëïõ åêôõðùôÞ"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Set the user umask."
-msgstr ""
-"\n"
-"\n"
-" ÷ñÞóôçò."
+#: ../../printer/printerdrake.pm_.c:1607
+msgid "Which printer model do you have?"
+msgstr "Ôé ìïíôÝëï åêôõðùôÞ Ý÷åôå;"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1608
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 ?"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-"Ôþñá Ý÷åôå ôç äõíáôüôçôá íá åãêáôáóôÞóåôå ðáêÝôá áíáâÜèìéóçò. ÁõôÜ ôá\n"
-"ðáêÝôá Ý÷ïõí áíáâáèìéóôåß ìåôÜ ôçí Ýêäïóç ôçò äéáíïìÞò. Ìðïñåß íá ðåñéÝ÷ïõí\n"
-"äéïñèþóåéò óöáëìÜôùí Þ áíáâáèìßóåéò áóöÜëåéáò.\n"
"\n"
-"Ãéá íá êÜíåôå ëÞøç áõôþí ôùí ðáêÝôùí ðñÝðåé íá Ý÷åôå ìéá óýíäåóç óôï "
-"Äéáäßêôõï\n"
-"ðïõ íá ëåéôïõñãåß.\n"
"\n"
-"ÈÝëåôå íá åãêáôáóôÞóåôå ôéò áíáâáèìßóåéò ;"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Samba Server"
-msgstr "ÅîõðçñåôçôÞò Samba"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "ÊáëùäéáêÞ ôçëåüñáóç Optus ôçò Áõóôñáëßáò"
+"Ðáñáêáëþ åëÝãîôå åÜí ôï Printerdrake åíôüðéóå óùóôÜ ôï ìïíôÝëï ôïõ åêôõðùôÞ "
+"óáò .Âñåßôå ôï óùóôü ìïíôÝëï óôç ëßóôá áí ï êÝñóïñáò åßíáé óå ëÜèïò èÝóç Þ "
+"óå ëÜèïò ìïíôÝëï Þ óôï \"ÁêáôÝñãáóôïò åêôõðùôÞò\"."
-#: ../../install_steps_newt.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1611
msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> ÁëëáãÞ ðåäßïõ | <Space> åðéëïãÞ | <F12> åðüìåíç ïèüíç"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet:"
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
+"Ï åêôõðùôÞò óáò äåí õðÜñ÷åé óôç ëßóôá, ðáñáêáëþ äéáëÝîôå Ýíáí óõìâáôü Þ Ýíáí "
+"ðáñüìïéï åêôõðùôÞ."
-#: ../../lang.pm:1
-#, c-format
-msgid "Zimbabwe"
-msgstr "ÆéìðÜìðïõå"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "When"
-msgstr "Ðüôå"
+#: ../../printer/printerdrake.pm_.c:1697
+msgid "OKI winprinter configuration"
+msgstr "Ñõèìßóåéò OKI winprinter"
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1698
msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
+"You are configuring an OKI laser winprinter. These printers\n"
+"use a very special communication protocol and therefore they work only when "
+"connected to the first parallel port. When your printer is connected to "
+"another port or to a print server box please connect the printer to the "
+"first parallel port before you print a test page. Otherwise the printer will "
+"not work. Your connection type setting will be ignored by the driver."
msgstr ""
+"Ñõèìßæåôå Ýíáí åêôõðùôÞ laser OKI winprinter. Áõôïß ïé åêôõðùôÝò\n"
+"êÜíïõí ÷ñÞóç åíüò ðïëý åéäéêïý ðñùôïêüëëïõ åðéêïéíùíßáò êáé ãé' áõôü "
+"ëåéôïõñãïýí ìüíï áí åßíáé óõíäåìÝíïé óôçí ðñþôç ðáñÜëëçëç èýñá. Áí åßíáé "
+"óõíäåìÝíïò óå Üëëç èýñá Þ óå Ýíáí åîõðçñåôçôÞ åêôõðþóåùí ðáñáêáëþ óôçí ðñþôç "
+"ðáñÜëëçëç ðñéí åêôõðþóåôå ôçí ðñþôç äïêéìáóôéêÞ óåëßäá. ÄéáöïñåôéêÜ ï "
+"åêôõðùôÞò äåí èá ëåéôïõñãÞóåé. Ç ñõèìßóåéò ôïõ ôýðïõ óýíäåóçò èá áãíïçèïýí "
+"áðü ôïí ïäçãü."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hour"
-msgstr "¿ñá"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Äåýôåñïò åîõðçñåôçôÞò DNS (ðñïáéñåôéêü)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Finland"
-msgstr "Öéíëáíäßá"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "ÂÜèïò ÷ñþìáôïò: %s\n"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Äåí ìðïñåßôå íá áðïåðéëÝîåôå áõôü ôï ðáêÝôï. ÐñÝðåé íá áíáâáèìéóôåß"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "Öïñôþíåôáé áðü äéóêÝôá"
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+msgid "Lexmark inkjet configuration"
+msgstr "Ñõèìßóåéò åêôõðùôÞ ìåëÜíçò Lexmark"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Timezone - DrakClock"
+#: ../../printer/printerdrake.pm_.c:1719
+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/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
+#: ../../printer/printerdrake.pm_.c:1746
+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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr "Óëïâåíßá"
-
-#: ../../standalone/mousedrake:1
-#, fuzzy, c-format
-msgid "Mouse test"
-msgstr "Mouse Systems"
-
-#: ../../standalone/drakperm:1
-#, 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."
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
msgstr ""
-"Ôï Drakperm ÷ñçóéìïðïéåßôáé ãéá íá äåßôå ôá áñ÷åßá ðïõ ÷ñåéÜæåóôå ãéá íá "
-"öôéÜîåôå äéêáéþìáôá, éäéïêôÞôåò êáé ïìÜäåò ìå ôï msec.\n"
-"Åðßóçò ìðïñåßôå íá åðåîåñãáóôåßôå ôïõò äéêïýò óáò êáíüíåò ðïõ èá "
-"áíôéêáôáóôÞóïõí ôïõò ðñïåðéëåãìÝíïõò êáíüíåò."
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1750
msgid ""
-"Enter a user\n"
-"%s"
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-"ÅéóÜãåôå ÷ñÞóôç\n"
-"%s"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:1972
msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
-msgstr "PCI óõóêåõÞ PCI"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "ProgressBar color selection"
-msgstr "ÅðéëïãÞ ÷ñþìáôïò ãñáììÞò ðñïüäïõ"
+"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 ""
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
-msgstr ""
-"ÕðÜñ÷ïõí ïé áêüëïõèåò åðéëïãÝò.\n"
-"Ìðïñåßôå íá ðñïóèÝóåôå êé Üëëåò Þ íá áëëÜîåôå ôéò õðÜñ÷ïõóåò."
+msgid "Option %s must be an integer number!"
+msgstr "Ç åðéëïãÞ %s ðñÝðåé íá åßíáé áêÝñáéïò áñéèìüò!"
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
+msgid "Option %s must be a number!"
+msgstr "Ç åðéëïãÞ %s ðñÝðåé íá åßíáé áñéèìüò!"
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:1989
#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
+msgid "Option %s out of range!"
+msgstr "ÅðéëïãÞ %s åêôüò ïñßïõ!"
-#: ../../standalone/drakbug:1
+#: ../../printer/printerdrake.pm_.c:2028
#, c-format
msgid ""
-"Application Name\n"
-"or Full Path:"
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
+"ÈÝëåôå íá ïñßóåôå áõôüí ôïí åêôõðùôÞ (\"%s\")\n"
+"óáí ôïí ðñïåðéëåãìÝíï åêôõðùôÞ;"
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2051
+msgid "Test pages"
+msgstr "ÄïêéìáóôéêÝò óåëßäåò"
+
+#: ../../printer/printerdrake.pm_.c:2052
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."
+"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 ""
-"Åêôåëåß åíôïëÝò ðñïãñáììáôéóìÝíåò áðü ôçí åíôïëÞ at êáé äÝóìåò åíôïëþí\n"
-"üôáí ï öüñôïò ôïõ óõóôÞìáôïò åßíáé áñêåôÜ ÷áìçëüò."
+"Ðáñáêáëþ åðéëÝîôå ôéò äïêéìáóôéêÝò óåëßäåò ðïõ èá åêôõðùèïýí.\n"
+"Óçì.: Ç äïêéìáóôéêÞ óåëßäá öùôïãñáößáò ìðïñåß íá äéáñêÝóåé áñêåôü ÷ñüíï ãéá "
+"íá åêôõðùèåß êáé óå åêôõðùôÝò laser ìå ìéêñÞ ìíÞìç ìðïñåß êáé íá ìçí "
+"åêôõðùèåß. Óôéò ðåñéóóüôåñåò ðåñéðôþóåéò ç åêôýðùóç ôéò ôõðéêÞò äïêéìáóôéêÞò "
+"óåëßäáò áñêåß."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
-msgstr "ÕðïóôÞñéîç ñáäéïöþíïõ:"
+#: ../../printer/printerdrake.pm_.c:2056
+msgid "No test pages"
+msgstr "×ùñßò äïêéìáóôéêÝò óåëßäåò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "ÅãêáôÜóôáóç ðáêÝôïõ SANE..."
+#: ../../printer/printerdrake.pm_.c:2057
+msgid "Print"
+msgstr "Åêôýðùóç"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
-msgstr "LDAP"
+#: ../../printer/printerdrake.pm_.c:2114
+msgid "Standard test page"
+msgstr "ÔõðéêÞ äïêéìáóôéêÞ óåëßäá"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
-msgstr "SILO"
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
+msgstr "ÅíáëëáêôéêÞ äïêéìáóôéêÞ óåëßäá (Letter)"
-#: ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Change type"
-msgstr "ÁëëáãÞ ôýðïõ"
+#: ../../printer/printerdrake.pm_.c:2120
+msgid "Alternative test page (A4)"
+msgstr "ÅíáëëáêôéêÞ äïêéìáóôéêÞ óåëßäá (A4)"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", åêôõðùôÞò USB #%s"
+#: ../../printer/printerdrake.pm_.c:2122
+msgid "Photo test page"
+msgstr "ÄïêéìáóôéêÞ óåëßäá öùôïãñáößáò"
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "ÅãêáôÜóôáóç SILO"
+#: ../../printer/printerdrake.pm_.c:2126
+msgid "Do not print any test page"
+msgstr "×ùñßò åêôýðùóç äïêéìáóôéêÞò óåëßäáò"
+
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
+msgstr "Åêôýðùóç äïêéìáóôéêþí óåëßäùí..."
-#: ../../install_messages.pm:1
+#: ../../printer/printerdrake.pm_.c:2159
#, 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"
+"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"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-"Óõã÷áñçôÞñéá, ç åãêáôÜóôáóç ïëïêëçñþèçêå.\n"
-"ÁöáéñÝóôå ôçí äéóêÝôá Þ ôï CD åêêßíçóçò êáé ðáôÞóôå return ãéá "
-"åðáíåêêßíçóç.\n"
-"\n"
-"\n"
-"Ãéá ðëçñïöïñßåò ó÷åôéêÜ ìå äéïñèþóåéò áõôÞò ôçò Ýêäïóçò ôïõ Mandrake Linux,\n"
-"óõìâïõëåõôåßôå ôçí óåëßäá: \n"
-"\n"
-"\n"
+"Ìßá Þ ðåñéóóüôåñåò äïêéìáóôéêÝò óåëßäåò óôÜëèçêáí óôïí åêôõðùôÞ.\n"
+"Ìðïñåß íá ðåñÜóåé êÜðïéïò ÷ñüíïò ìÝ÷ñé ç åêôýðùóç íá îåêéíÞóåé.\n"
+"ÊáôÜóôáóç åêôýðùóçò:\n"
"%s\n"
"\n"
-"\n"
-"Ðëçñïöïñßåò ó÷åôéêÜ ìå ôéò ñõèìßóåéò ôïõ óõóôÞìáôüò óáò õðÜñ÷ïõí óôï "
-"ó÷åôéêü\n"
-"êåöÜëáéï ôïõ åðßóçìïõ ïäçãïý ÷ñÞóçò ôïõ Mandrake Linux."
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Enable Network Time Protocol"
-msgstr "ÅðáíáöïñÜ ÌÝóù Ðñùôüêïëëï Äéêôýïõ: %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "paranoid"
-msgstr "Ðáñáíïúêü"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Do not send mails when unneeded"
+#: ../../printer/printerdrake.pm_.c:2163
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
msgstr ""
+"Ìßá Þ ðåñéóóüôåñåò äïêéìáóôéêÝò óåëßäåò óôÜëèçêáí óôïí åêôõðùôÞ.\n"
+"Ìðïñåß íá ðåñÜóåé êÜðïéïò ÷ñüíïò ìÝ÷ñé ç åêôýðùóç íá îåêéíÞóåé.\n"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
+msgstr "Ëåéôïýñãçóå óùóôÜ;"
+
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+msgid "Raw printer"
+msgstr "ÁêáôÝñãáóôïò åêôõðùôÞò"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
-msgid "Send mail report after each backup to:"
+msgid ""
+"To print a file from the command line (terminal window) you can either use "
+"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
+"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
+"to modify the option settings easily.\n"
msgstr ""
-"ÁðïóôïëÞ çëåêôñïíéêïý ìçíýìáôïò ìåôÜ áðü êÜèå ëÞøç áíôéãñÜöùí áóöáëåßáò óôï:"
+"Ãéá íá åêôõðþóåôå áðü ôç ãñáììÞ åíôïëþí (ðáñÜèõñï ôåñìáôéêïý) ìðïñåßôå íá "
+"êÜíåôå ÷ñÞóç ôçò åíôïëÞò \"%s <áñ÷åßï>\" Þ ìðïñåßôå íá êÜíåôå ÷ñÞóç ãñáöéêïý "
+"åñãáëåßï åêôýðùóçò: \"xpp <áñ÷åßï>\" Þ \" kprinter <áñ÷åßï>\". Ôï ãñáöéêü "
+"åñãáëåßï óáò åðéôñÝðåé íá áëëÜîåôå åýêïëá ôéò ñõèìßóåéò åðéëïãþí.\n"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:2218
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 "
+"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 "Åêôýðùóç"
+msgstr ""
+"Ôéò åíôïëÝò áõôÝò ìðïñåßôå åðßóçò íá ôéò ÷ñçóéìïðïéÞóåôå óôï ðåäßï \"ÅíôïëÞ "
+"åêôýðùóåùí\" ôùí äéáëüãùí åêôõðþóåùí óå ðïëëÝò åöáñìïãÝò, áëëÜ ìçí ðáñÝ÷åôå "
+"ôï üíïìá áñ÷åßïõ åäþ åðåéäÞ ôï áñ÷åßï ðñïò åêôýðùóç ôï ðáñÝ÷åé ç åöáñìïãÞ.\n"
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, c-format
-msgid "Resolution"
-msgstr "ÁíÜëõóç"
+msgid ""
+"\n"
+"The \"%s\" command also allows to modify the option settings for a "
+"particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\". "
+msgstr ""
+"\n"
+"Ç åíôïëÞ \"%s\" åðßóçò óáò åðéôñÝðåé íá ôñïðïðïéÞóåôå ôéò ñõèìßóåéò åðéëïãþí "
+"ãéá ìéá óõãêåêñéìÝíç åñãáóßá åêôýðùóçò. ÁðëÜ ðñïóèÝóåôå ôéò åðéèõìçôÝò "
+"ñõèìßóåéò óôçí ãñáììÞ åíôïëþí, ð.÷. \"%s<áñ÷åßï>\"."
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
#, 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."
+"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\n"
+"\n"
msgstr ""
-"Ãéá íá åêôõðþóåôå óå Ýíáí SMB åêôõðùôÞ, ðñÝðåé íá äþóåôå ôï äéêôõáêü üíïìá "
-"SMB (Óçìåßùóç! Ìðïñåß íá åßíáé äéáöïñåôéêü áðü ôï äéêôõáêü üíïìá TCP/IP!) "
-"êáé ßóùò ôçí äéåýèõíóç IP ôïõ åîõðçñåôçôÞ åêôõðþóåùí, ôï üíïìá ôïõ åêôõðùôÞ "
-"óôïí ïðïßï åðéèõìåßôå ðñüóâáóç, êáèþò êáé ïðïéáäÞðïôå áðáñáßôçôç ðëçñïöïñßá "
-"ðåñß êùäéêïý ÷ñÞóôç, êùäéêïý ðñüóâáóçò êáé ôïìÝá Þ ïìÜäáò åñãáóßáò."
+"Ãéá íá ìÜèåôå ðåñéóóüôåñá ãéá ôéò äéáèÝóéìåò åíôïëÝò ãéá ôïí ôñÝ÷ïí åêôõðùôÞ "
+"äéáâÜóôå ôçí ëßóôá ðïõ öáßíåôå ðáñáêÜôù Þ êÜíôå êëéê óôï \"Åêôýðùóç ëßóôáò "
+"åðéëïãþí\"%s%s\n"
+"\n"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:2228
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
-msgstr ""
+"Here is a list of the available printing options for the current printer:\n"
"\n"
+msgstr ""
+"ÁõôÞ åßíáé ìéá ëßóôá ìå ôéò äéáèÝóéìåò åðéëïãÝò åêôýðùóçò ãéá ôïí ôñÝ÷ïí "
+"åêôõðùôÞ:\n"
"\n"
-" ÏìÜäá åñãáóßáò: ÷ñÞóôçò."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
-msgstr "åðáíáñýèìéóç"
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, 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."
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
msgstr ""
-"Ç êÜñôá ãñáöéêþí óáò õðïóôçñßæåé åðéôÜ÷õíóç ôñéóäéÜóôáôùí ãñáöéêþí óôá XFree "
-"%s,\n"
-"ÐÑÏÓÏ×Ç: ÐÅÉÑÁÌÁÔÉÊÇ ÕÐÏÓÔÇÑÉÎÇ - ÌÐÏÑÅÉ ÍÁ ÐÁÃÙÓÅÉ ÔÏÍ ÕÐÏËÏÃÉÓÔÇ ÓÁÓ."
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Shell timeout"
-msgstr "ÔÝëïò ×ñüíïõ Åêêßíçóçò ÐõñÞíá"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Xinetd Service"
-msgstr "Õðçñåóßá Xinetd"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to network tools"
-msgstr "ðñüóâáóç óå åñãáëåßá äéêôýïõ"
+"Ãéá íá åêôõðþóåôå áðü ôç ãñáììÞ åíôïëþí (ðáñÜèõñï ôåñìáôéêïý) êÜíôå ÷ñÞóç "
+"ôçò åíôïëÞò \"%s <áñ÷åßï>\".\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
+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 ""
-#: ../advertising/03-software.pl:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
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 "Linux åðåîåñãáóßá"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Ïñßóôå ç ëßóôá ôùí åêôõðùôþí ðïõ áíé÷íåýôçêáí áõôüìáôá."
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
+msgstr ""
+"Ãéá ìéá ëßóôá ìå ôéò äéáèÝóéìåò åíôïëÝò ãéá ôïí ôñÝ÷ïí åêôõðùôÞ êÜíôå êëéê "
+"óôï ðëÞêôñï \"Åêôýðùóç ëßóôáò åíôïëþí\"."
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2253
#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
msgstr ""
-"ÓöÜëìá êáôÜ ôçí åãêáôÜóôáóç ôïõ aboot, \n"
-"ðñïóðÜèåéá âåâéáóìÝíçò åãêáôÜóôáóçò, áêüìá êáé áí áõôü Ý÷åé óáí áðïôÝëåóìá "
-"ôçí êáôáóôñïöÞ ôçò ðñþôçò êáôÜôìçóçò;"
+"Ãéá íá åêôõðþóåôå áðü ôç ãñáììÞ åíôïëþí (ðáñÜèõñï ôåñìáôéêïý) êÜíôå ÷ñÞóç "
+"ôçò åíôïëÞò \"%s <áñ÷åßï>\" Þ \"%s<áñ÷åßï>\".\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2257
msgid ""
-"Restore Selected\n"
-"Files"
+"You can also use the graphical interface \"xpdq\" for setting options and "
+"handling printing jobs.\n"
+"If you are using KDE as desktop environment you have a \"panic button\", an "
+"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
+"jobs immediately when you click it. This is for example useful for paper "
+"jams.\n"
msgstr ""
-"ÅðáíáöïñÜ ÅðéëåãìÝíùí\n"
-"Áñ÷åßùí"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2261
#, 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."
+"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
+"a particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\".\n"
msgstr ""
+"\n"
+" Åðßóçò ïé åíôïëÝò \"%s\" êáé \"%s\" óáò åðéôñÝðïõí íá ïñßóåôå ôéò ñõèìßóåéò "
+"åðéëïãþí ãéá ìéá óõãêåêñéìÝíç åñãáóßá åêôýðùóçò. ÁðëÜ ðñïóèÝóôå ôéò "
+"åðéèõìçôÝò ñõèìßóåéò áðü ôçí ãñáììÞ åíôïëþí, ð.÷. \"%s <áñ÷åßï>\".\n"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Ðáñáêáëþ åëÝãîôå Þ óõìðëçñþóôå ôï ðáñáêÜôù ðåäßï"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "ÈÝëåôå íá áðïèçêåýóåôå ôéò áëëáãÝò ôïõ /etc/fstab"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
-msgstr "Ðñùôüêïëëï Åêêßíçóçò"
-
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2271
#, c-format
-msgid "LVM-disks %s\n"
-msgstr "Äßóêïé LVM %s\n"
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Åêôýðùóç/ÓÜñùóç/ÊÜñôåò Öùôïãñáöéþí óôï\"%s\""
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:2272
#, c-format
-msgid "On boot"
-msgstr "Óôçí åêêßíçóç"
+msgid "Printing/Scanning on \"%s\""
+msgstr "Åêôýðùóç/ÓÜñùóç óôï \"%s\""
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2274
#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "Ôï ðáêÝôï %s åßíáé áðáñáßôçôï. Íá åãêáôáóôáèåß;"
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Åêôýðùóç/Ðñüóâáóç ÊÜñôáò Öùôïãñáöéþí óôï \"%s\""
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:2275
#, c-format
-msgid "Bus identification"
-msgstr "Áíáãíùñéóôéêü èýñáò"
+msgid "Printing on the printer \"%s\""
+msgstr "Åêôýðùóç óôïí åêôõðùôÞ \"%s\""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Vatican"
-msgstr "Ëåôïíéêü"
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+msgid "Close"
+msgstr "Êëåßóéìï"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please make a backup of your data first"
-msgstr "Ðáñáêáëþ êÜíôå ðñþôá Ýíá áíôßãñáöï áóöáëåßáò ôùí äåäïìÝíùí óáò"
+#: ../../printer/printerdrake.pm_.c:2281
+msgid "Print option list"
+msgstr "Åêôýðùóç ëßóôá åðéëïãþí"
-#: ../../harddrake/data.pm:1
+#: ../../printer/printerdrake.pm_.c:2301
#, c-format
-msgid "ADSL adapters"
+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!"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
+#: ../../printer/printerdrake.pm_.c:2322
+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 ""
-"¸÷åôå ðåñéóóüôåñïõò áðü Ýíáí äßóêïõò, óå ðïéüí èÝëåôå íá åãêáôáóôÞóåôå ôï "
-"Linux;"
-#: ../../lang.pm:1
-#, c-format
-msgid "Eritrea"
-msgstr "Åñõèñáßá"
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+msgid "Reading printer data..."
+msgstr "ÁíÜãíùóç äåäïìÝíùí åêôõðùôÞ..."
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+msgid "Transfer printer configuration"
+msgstr "ÌåôáöïñÜ ñõèìßóåùí åêôõðùôÞ"
+
+#: ../../printer/printerdrake.pm_.c:2365
#, c-format
-msgid "Boot ISO"
-msgstr "Åêêßíçóç ISO"
+msgid ""
+"You can copy the printer configuration which you have done for the spooler %"
+"s to %s, your current spooler. All the configuration data (printer name, "
+"description, location, connection type, and default option settings) is "
+"overtaken, but jobs will not be transferred.\n"
+"Not all queues can be transferred due to the following reasons:\n"
+msgstr ""
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid "Firmware needed"
-msgstr "áí ÷ñåéÜæåôáé"
+#: ../../printer/printerdrake.pm_.c:2368
+msgid ""
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove List"
-msgstr "Ëßóôá Áöáßñåóçò"
+#: ../../printer/printerdrake.pm_.c:2370
+msgid ""
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
+msgstr ""
+"Ôï PDQ õðïóôçñßæåé ìüíï ôïðéêïýò åêôõðùôÝò, ÁðïìáêñõóìÝíïò åêôõðùôÝò LPD êáé "
+"åêôõðùôÝò Sockete/TCP.\n"
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
-msgstr "¸íá ðñïóáñìïæüìåíï ðåñéâÜëëïí"
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr "Ôï LPD êáé ôï LPRng äåí õðïóôçñßæïõí åêôõðùôÝò IPP.\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
+#: ../../printer/printerdrake.pm_.c:2374
+msgid ""
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
msgstr ""
+"Åðßóçò åñãáóßåò ðïõ äåí äçìéïõñãÞèçêáí ìå áõôü ôï ðñüãñáììá Þ ôï \"foomatic-"
+"configure\" äåí ìðïñïýí íá ìåôáöåñèïýí."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2375
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."
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
msgstr ""
+"\n"
+"Åðßóçò åêôõðùôÝò ðïõ Ý÷ïõí ñõèìéóôåß ìå áñ÷åßá PPD ðïõ ðáñÝ÷ïíôáé áðü ôïõò "
+"êáôáóêåõáóôÝò ôïõò Þ ìå ôïðéêïýò ïäçãïýò CUPS äåí ìðïñïýí íá ìåôáöåñèïýí."
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "Ìáñüêï"
+#: ../../printer/printerdrake.pm_.c:2376
+msgid ""
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
+msgstr ""
+"\n"
+"ÅðéëÝîôå ôïõò åêôõðùôÝò ðïõ èÝëåôå íá ìåôáöÝñåôå êáé êÜíôå\n"
+"êëéê óôï \"ÌåôáöïñÜ\"."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Ôé ìïíôÝëï åêôõðùôÞ Ý÷åôå;"
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
+msgstr "×ùñßò ìåôáöïñÜ åêôõðùôþí"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add a new printer"
-msgstr "ÐñïóèÞêç íÝïõ åêôõðùôÞ"
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
+msgstr "ÌåôáöïñÜ"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2392
#, c-format
-msgid " All of your selected data have been "
-msgstr " ¼ëá ôá åðéëåãìÝíá äåäïìÝíá Ý÷ïõí "
+msgid ""
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
+msgstr ""
+"¸íáò åêôõðùôÞò ìå ôï üíïìá \"%s\" õðÜñ÷åé Þäç óôï %s\n"
+"ÊÜíôå êëéê óôï \"ÌåôáöïñÜ\" ãéá íá ôïí åðéêáëýøåôå.\n"
+"Åðßóçò ìðïñåßôå íá ôïõ äþóåôå Ýíá íÝï üíïìá Þ íá ôïí ðáñáâëÝøåôå ."
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "ÍåðÜë"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr ""
+"Ôï üíïìá ôïõ åêôõðùôÞ ðñÝðåé íá ðåñéÝ÷åé ìüíï ãñÜììáôá, áñéèìïýò êáé ôïí "
+"÷áñáêôÞñá underscore"
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
-msgid "<-- Delete"
-msgstr "<-- ÄéáãñáöÞ"
+msgid ""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
+msgstr ""
+"Ï åêôõðùôÞò \"%s\" õðÜñ÷åé Þäç,\n"
+"Åßóôå âÝâáéïé ãéá ôçí åðéêÜëõøç ôùí ñõèìßóåùí;"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
-msgstr "åðåîåñãáóôÞò # "
+#: ../../printer/printerdrake.pm_.c:2413
+msgid "New printer name"
+msgstr "ÊáíÝíá üíïìá åêôõðùôÞ"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "chunk size"
-msgstr "ìÝãåèïò chunk"
+msgid "Transferring %s..."
+msgstr "ÌåôáöÝñåôáé ï %s..."
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2427
#, 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."
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
msgstr ""
+"'¸÷åôå ìåôáöÝñåé ôïí ðñþçí ðñïåðéëåãìÝíï åêôõðùôÞò óáò (\"%s\"), Íá åßíáé ï "
+"ðñïåðéëåãìÝíïò åêôõðùôÞò êáé óôï íÝï íÝï óýóôçìá åêôýðùóçò %s;"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr ""
-"\n"
-"\n"
-" ÷ñÞóôçò åðßðåäï."
+#: ../../printer/printerdrake.pm_.c:2437
+msgid "Refreshing printer data..."
+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
-#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "commands before booting, or 'c' for a command-line."
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+msgid "Configuration of a remote printer"
+msgstr "Ñýèìéóç áðïìáêñõóìÝíïõ åêôõðùôÞ"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Ðñüâëçìá êáôÜ ôçí åãêáôÜóôáóç ôïõ ðáêÝôïõ %s"
+#: ../../printer/printerdrake.pm_.c:2446
+msgid "Starting network..."
+msgstr "Åêêßíçóç äéêôýïõ..."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
-"Èá ëÜâåôå ìéá åéäïðïßçóç åÜí ôï öïñôßï åßíáé ìåãáëýôåñï áðü áõôÞ ôçí ôéìÞ"
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+msgid "Configure the network now"
+msgstr "Ñýèìéóç äéêôýïõ ôþñá"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
-msgstr "ÐñïóèÞêç óáñùôÞ ÷åéñïêßíçôá"
+#: ../../printer/printerdrake.pm_.c:2480
+msgid "Network functionality not configured"
+msgstr "Ç ëåéôïõñãéêüôçôá ôïõ äéêôýïõ äåí ñõèìßóôçêå"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh"
+#: ../../printer/printerdrake.pm_.c:2481
+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 ""
+"Èá ñõèìßóåôå Ýíáí áðïìáêñõóìÝíï åêôõðùôÞ. Áõôü áðáéôåß Ýíá ðñïóâÜóéìï "
+"äßêôõï, áëëÜ ôï äßêôõï äåí Ý÷åé ñõèìéóôåß áêüìá. Áí óõíå÷ßóåôå ÷ùñßò íá "
+"ñõèìßóåôå ôï äßêôõï äåí èá ìðïñÝóåôå íá êÜíåôå ÷ñÞóç ôïõ åêôõðùôÞ ðïõ "
+"ñõèìßæåôå. Ôé èÝëåôå íá êÜíåôå;"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Reload partition table"
-msgstr "ÁíáíÝùóç ðßíáêá êáôáôìÞóåùí"
+#: ../../printer/printerdrake.pm_.c:2484
+msgid "Go on without configuring the network"
+msgstr "ÓõíÝ÷éóç ÷ùñßò ôçí ñýèìéóç ôïõ äéêôýïõ"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Íáé, åðéèõìþ áõôüìáôç ðñïóðÝëáóç ìå (÷ñÞóôçò, ðåñéâÜëëïí)"
+#: ../../printer/printerdrake.pm_.c:2518
+msgid ""
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
+"Ç ñýèìéóç äéêôýïõ ðïõ Ýãéíå êáôÜ ôç äéÜñêåéá ôçò åãêáôÜóôáóçò äåí Þôáí "
+"äõíáôüí íá åêêéíçèåß. Ðáñáêáëþ åëÝãîôå åÜí ôï äßêôõï åßíáé ðñïóâÜóéìï ìåôÜ "
+"ôçí åêêßíçóç êáé äéïñèþóôå ôéò ñõèìßóåéò ìå ôçí ÷ñÞóç ôïõ ÊÝíôñïõ ÅëÝã÷ïõ "
+"ôçò Mandrake, óôï ôìÞìá \"Äßêôõï & Äéáäßêôõï\" / \"Óýíäåóç\" êáé ìåôÜ "
+"ñõèìßóôå ôïí åêôõðùôÞ åðßóçò ìå ôï ÊÝíôñï ÅëÝã÷ïõ Mandrake óôï ôìÞìá \"Õëéêü"
+"\"/\"ÅêôõðùôÞò\""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Selected"
+#: ../../printer/printerdrake.pm_.c:2519
+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 ""
-"ÅðáíáöïñÜ ÅðéëåãìÝíùí\n"
-"Áñ÷åßùí"
+"Ç ðñüóâáóç äéêôýïõ äåí åêôåëåßôï êáé äåí ìðüñåóå íá åêêéíçèåß. Ðáñáêáëþ "
+"åëÝãîôå ôçí ñýèìéóç ôïõ õëéêïý óáò. ÌåôÜ ðñïóðáèÞóôå íá ñõèìßóåôå ôïí "
+"áðïìáêñõóìÝíï åêôõðùôÞ óáò."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "ÁíáæÞôçóç ãñáììáôïóåéñþí óôçí ëßóôá åãêáôÜóôáóçò"
+#: ../../printer/printerdrake.pm_.c:2529
+msgid "Restarting printing system..."
+msgstr "Åðáíåêêßíçóç ôïõ óõóôÞìáôïò åêôýðùóçò..."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Ôï Ôïðéêü Äßêôõï äåí ôåëåéþíåé ìå `.0', ôåñìáôéóìüò."
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "high"
+msgstr "Õøçëü"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Boot"
-msgstr "Åêêßíçóç"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "paranoid"
+msgstr "Ðáñáíïúêü"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid " and the CD is in the drive"
-msgstr ""
+msgid "Installing a printing system in the %s security level"
+msgstr "ÅãêáôÜóôáóç óõóôÞìáôïò åêôýðùóçò óôï åðßðåäï áóöÜëåéáò %s"
-#: ../../harddrake/v4l.pm:1
+#: ../../printer/printerdrake.pm_.c:2570
#, c-format
-msgid "Tuner type:"
-msgstr ""
-
-#: ../../help.pm:1
-#, fuzzy, 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"
-"\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"
+"You are about to install the printing system %s on a system running in the %"
+"s security level.\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"
+"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"
-"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."
+"Do you really want to configure printing on this machine?"
msgstr ""
-"¶ëëï\n"
-" Linux\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" áðëü\n"
-"\n"
-" Linux\n"
-"\n"
-" CUPS Åêôýðùóç Óýóôçìá\n"
-"\n"
-" áðëü åîõðçñåôçôÞò\n"
-"\n"
-"\n"
-" åîõðçñåôçôÞò\n"
-" CUPS\n"
-"\n"
-"\n"
+"Åßóôå Ýôïéìïé íá åãêáôáóôÞóåôå ôï óýóôçìá åêôýðùóçò %s óå Ýíá óýóôçìá ðïõ "
+"Ý÷åé åðßðåäï áóöáëåßáò %s\n"
"\n"
+"Áõôü ôï óýóôçìá åêôýðùóçò åêôåëåß Ýíáí äáßìïíá (äéåñãáóßá óôï öüíôï) ðïõ "
+"ðåñéìÝíåé ôéò åñãáóßåò åêôýðùóçò êáé ôéò äéá÷åéñßæåôáé. Áõôüò ï äáßìïíáò "
+"åßíáé åðßóçò ðñïóâÜóéìïò áðü Ýíá áðïìáêñõóìÝíï ìç÷Üíçìá áðü ôï äßêôõï êáé "
+"åðßóçò åßíáé Ýíá åí äõíÜìåé óçìåßï åðßèåóçò. Ãéá áõôü Ýíáò ðåñéïñéóìÝíïò "
+"áñéèìüò äáéìüíùí îåêéíÜ åî ïñéóìïý óå áõôü ôï åðßðåäï áóöáëåßáò.\n"
"\n"
-" åêôåëåßôáé\n"
-"."
+"Åßóôå âÝâáéïé üôé èÝëåôå íá ñõèìßóåôå ôçí åêôýðùóç óå áõôü ôï ìç÷Üíçìá;"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
-msgstr "ÐëÞêôñï \"Ìåíïý\""
+#: ../../printer/printerdrake.pm_.c:2604
+msgid "Starting the printing system at boot time"
+msgstr "Åêêßíçóç ôïõ óõóôÞìáôïò åêôýðùóçò êáôÜ ôçí åêêßíçóç"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:2605
+#, 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"
-"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."
+"Do you want to have the automatic starting of the printing system turned on "
+"again?"
msgstr ""
+"Ôï óýóôçìá åêôýðùóçò (%s) äåí èá îåêéíÜ áõôüìáôá êáôÜ ôçí åêêßíçóç ôïõ "
+"ìç÷áíÞìáôïò\n"
"\n"
+"ÕðÜñ÷åé ç ðéèáíüôçôá íá Ý÷åé áðåíåñãïðïéçèåß ç áõôüìáôç åêêßíçóç ìå ôçí "
+"áëëáãÞ óå õøçëüôåñï åðßðåäï áóöáëåßáò, åðåéäÞ ôï óýóôçìá åêôýðùóçò åßíáé Ýíá "
+"åí äõíÜìåé óçìåßï åðßèåóçò\n"
"\n"
-" Printerdrake."
+"ÈÝëåôå íá îáíáåíåñãïðïéçèåß ç áõôüìáôç åêêßíçóç ôïõ óõóôÞìáôïò åêôýðùóçò;"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Administrator:"
-msgstr "Äéá÷åéñéóôÞò Áóöáëåßáò:"
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
+msgstr "'¸ëåã÷ïò åãêáôåóôçìÝíùí ðñïãñáììÜôùí..."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2630
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "Áöáßñåóç %s"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2636
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "ÅãêáôÜóôáóç ðáêÝôùí..."
-#: ../../../move/tree/mdk_totem:1
+#: ../../printer/printerdrake.pm_.c:2685
+msgid "Select Printer Spooler"
+msgstr "ÅðéëïãÞ Spooler ÅêôõðùôÞ"
+
+#: ../../printer/printerdrake.pm_.c:2686
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Ðïéï óýóôçìá åêôýðùóçò èÝëåôå íá ÷ñçóéìïðïéÞóåôå;"
+
+#: ../../printer/printerdrake.pm_.c:2720
#, c-format
+msgid "Configuring printer \"%s\"..."
+msgstr "Ñýèìéóç åêôõðùôÞ \"%s\"..."
+
+#: ../../printer/printerdrake.pm_.c:2731
+msgid "Installing Foomatic..."
+msgstr "ÅãêáôÜóôáóç Foomatic..."
+
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr "ÅðéëïãÝò åêôõðùôÞ"
+
+#: ../../printer/printerdrake.pm_.c:2810
+msgid "Preparing Printerdrake..."
+msgstr "Ðñïåôïéìáóßá PrinterDrake..."
+
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+msgid "Configuring applications..."
+msgstr "Ñýèìéóç åöáñìïãþí..."
+
+#: ../../printer/printerdrake.pm_.c:2845
+msgid "Would you like to configure printing?"
+msgstr "Èá èÝëáôå íá ñõèìßóåôå Ýíáí åêôõðùôÞ;"
+
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
+msgstr "Óýóôçìá åêôýðùóçò: "
+
+#: ../../printer/printerdrake.pm_.c:2915
msgid ""
-"You can't use another CDROM when the following programs are running: \n"
-"%s"
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
+"Oé ðáñáêÜôù åêôõðùôÝò Ý÷ïõí ñõèìéóôåß. ÊÜíôå äéðëü êëéê óå Ýíáí åêôõðùôÞ ãéá "
+"íá áëëÜîåôå ôéò ñõèìßóåéò ôïõ, íá ôïí ïñßóåôå ùò ðñïåðéëåãìÝíï, íá ðñïâÜëåôå "
+"ðëçñïöïñßåò ãéá áõôüí ç ãéá íá êÜíåôå äéáèÝóéìï Ýíáí áðïìáêñõóìÝíï åêôõðùôÞ "
+"óå Ýíáí åîõðçñåôçôÞ CUPS óôï Star Office/OpenOffice.org/GIMP."
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
+#: ../../printer/printerdrake.pm_.c:2916
+msgid ""
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; or to view information about "
+"it."
msgstr ""
-"áí ïñéóôåß íáé, Ýëåã÷ïò äéêáéùìÜôùí ôùí áñ÷åßùí óôïí áñ÷éêü êáôÜëïãï ÷ñÞóôç."
+"Oé ðáñáêÜôù åêôõðùôÝò Ý÷ïõí ñõèìéóôåß. ÊÜíôå äéðëü êëéê óå Ýíáí åêôõðùôÞ ãéá "
+"íá áëëÜîåôå ôéò ñõèìßóåéò ôïõ, íá ôïí ïñßóåôå ùò ðñïåðéëåãìÝíï Þ ãéá íá "
+"ðñïâÜëåôå ðëçñïöïñßåò ãéá áõôüí."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-"Äåí Ý÷åôå óýíäåóç ìå ôï äéáäßêôõï.\n"
-"ÄçìéïõñãÞóôå ìßá êÜíïíôáò êëéê óôï 'Ñýèìéóç'"
+"ÁíáíÝùóç ëßóôáò åêôõðùôþí ( ãéá íá åìöáíßóåé üëïõò ôïõò äéáèÝóéìïõò "
+"áðïìáêñõóìÝíïõò åêôõðùôÝò)"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Fonts copy"
-msgstr "ÁíôéãñáöÞ Ãñáììáôïóåéñþí"
+#: ../../printer/printerdrake.pm_.c:2960
+msgid "Change the printing system"
+msgstr "ÁëëáãÞ óõóôÞìáôïò åêôýðùóçò"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
-msgstr "Áõôüìáôï"
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+msgid "Normal Mode"
+msgstr "ÊáíïíéêÞ ÊáôÜóôáóç"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "ÈÝëåôå íá äïêéìÜóåôå ôéò ñõèìßóåéò;"
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+msgid "Do you want to configure another printer?"
+msgstr "ÈÝëåôå íá ñõèìßóåôå êáé Üëëïí åêôõðùôÞ;"
+
+#: ../../printer/printerdrake.pm_.c:3211
+msgid "Modify printer configuration"
+msgstr "ÁëëáãÞ ñõèìßóåùí åêôõðùôÞ"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3213
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
-"Ï åêôõðùôÞò \"%s\" áöáéñÝèçêå ìå åðéôõ÷ßá áðü ôï Star Office/OpenOffice.org/"
-"GIMP"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save packages selection"
-msgstr "ÁðïèÞêåõóç åðéëïãÞò ðáêÝôùí"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Actions"
-msgstr "ÅíÝñãåéåò"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Remove the last item"
-msgstr "Áöáßñåóç ôïõ ôåëåõôáßïõ óôïé÷åßïõ"
+"ÅêôõðùôÞò %s\n"
+"Ôé èÝëåôå íá áëëÜîåôå óå áõôüí ôïí åêôõðùôÞ;"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr "÷ñÞóôçò"
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
+msgstr "Êáí' ôï!"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
-msgstr "Äåí äçìéïõñãÞèçêáí åéêüíåò åêêßíçóçò äéêôýïõ!"
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+msgid "Printer connection type"
+msgstr "Ôýðï óýíäåóç åêôõðùôÞ"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "÷ñÞóç pptp"
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+msgid "Printer name, description, location"
+msgstr "¼íïìá åêôõðùôÞ, ðåñéãñáöÞ, èÝóç"
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "ÅðéëÝîôå ôéò õðçñåóßåò ðïõ èá îåêéíïýí áõôüìáôá êáôÜ ôçí åêêßíçóç"
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
+msgstr "ÊáôáóêåõáóôÞ åêôõðùôÞ, ìïíôÝëï, ïäçãü"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Check files/directories writable by everybody"
-msgstr "áí ïñéóôåß íáé, Ýëåã÷ïò ôùí áñ÷åßùí/êáôáëüãùí ãéá åããñáöÞ áðü üëïõò."
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
+msgstr "ÊáôáóêåõáóôÞ åêôõðùôÞ, ìïíôÝëï"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "ÌÜèåôå ðùò íá ÷åéñéóèåßôå áõôüí ôïí åêôõðùôÞ"
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
+msgstr "Ïñéóìüò áõôïý ôïõ åêôõðùôÞ ùò ðñïåðéëåãìÝíïõ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configure the network now"
-msgstr "Ñýèìéóç äéêôýïõ ôþñá"
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "ÐñïóèÞêç áõôïý ôïõ åêôõðùôÞ óôï Star Office/OpenOffice.org/GIMP"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "ÅðéëÝîôå ôüðï áðü ôïí ïðïßï èá ãßíåé ç ëÞøç ðáêÝôùí"
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Áöáßñåóç áõôïý ôïõ åêôõðùôÞ áðü ôï Star Office/OpenOffice.org/GIMP"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Äåí ìðïñþ íá áëëÜîù ìÝãåèïò óôçí êáôÜôìçóç FAT, \n"
-"ðñïêëÞèçêå ôï ðáñáêÜôù ëÜèïò: %s"
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+msgid "Print test pages"
+msgstr "Åêôýðùóç äïêéìáóôéêþí óåëßäùí"
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Size: "
-msgstr "ÌÝãåèïò: %s"
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+msgid "Know how to use this printer"
+msgstr "ÌÜèåôå ðùò íá ÷åéñéóèåßôå áõôüí ôïí åêôõðùôÞ"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "Óå ðïéüí ôïìÝá èÝëåôå íá ìåôáêéíçèåßôå;"
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+msgid "Remove printer"
+msgstr "Áöáßñåóç åêôõðùôÞ"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:3282
#, c-format
-msgid "Bahamas"
-msgstr "Ìðá÷Üìåò"
+msgid "Removing old printer \"%s\"..."
+msgstr "Áöáßñåóç ðáëáéïý åêôõðùôÞ \"%s\"..."
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Do you want to click on this button?"
-msgstr "ÈÝëåôå íá êÜíåôå êëéê óå áõôü ôï êïõìðß;"
+#: ../../printer/printerdrake.pm_.c:3307
+msgid "Default printer"
+msgstr "ÐñïåðéëåãìÝíïò åêôõðùôÞò"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3308
#, c-format
-msgid "Manual configuration"
-msgstr "×åéñïêßíçôç ñýèìéóç"
+msgid "The printer \"%s\" is set as the default printer now."
+msgstr "Ï åêôõðùôÞò \"%s\" åßíáé ðëÝïí ï ðñïåðéëåãìÝíïò åêôõðùôÞò."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "search"
-msgstr "áíáæÞôçóç"
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Ãßíåôáé ðñïóèÞêç ôïõ åêôõðùôÞ óôï Star Office/OpenOffice.org/GIMP"
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:3312
#, 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."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Áõôü ôï ðáêÝôï öïñôþíåé ôçí åðéëåãìÝíç äéÜôáîç ðëçêôñïëïãßïõ ðïõ Ý÷åé \n"
-"åðéëåãåß óôï /etc/sysconfig/keyboard. Áõôü ìðïñåß íá ñõèìéóôåß ìå ôçí \n"
-"÷ñÞóç ôïõ åñãáëåßïõ kbdconfig. ÐñÝðåé ó÷åäüí ðÜíôá íá åßíáé åíåñãïðïéçìÝíï."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (ïäçãüò ðñïâïëÞò åãêáôÜóôáóçò)"
+"Ï åêôõðùôÞò \"%s\" ðñïóôÝèçêå ìå åðéôõ÷ßá óôï Star Office/OpenOffice.org/GIMP"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../printer/printerdrake.pm_.c:3313
#, c-format
-msgid "Zeroconf host name must not contain a ."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
+"ÁðÝôõ÷å ç ðñïóèÞêç ôïõ åêôõðùôÞ \"%s\" óôï Star Office/OpenOffice.org/GIMP"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr ""
-"\n"
-"\n"
-" Áðïäï÷Þ ¶ñíçóç."
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Ãßíåôáé áöáßñåóç ôïõ åêôõðùôÞ áðü ôï Star Office/OpenOffice.org/GIMP"
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:3317
#, 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."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-"Ôï Syslog åßíáé ç õðçñåóßá ðïõ ÷ñçóéìïðïéïýí ðïëëÝò Üëëåò õðçñåóßåò \n"
-"ãéá íá êÜíïõí åããñáöÝò óôá áñ÷åßá ðáñáêïëïýèçóçò óõóôÞìáôïò (log files)\n"
-"Óõíßóôáôáé ç óõíå÷Þò ëåéôïõñãßá áõôÞò ôçò õðçñåóßáò."
+"Ï åêôõðùôÞò \"%s\" áöáéñÝèçêå ìå åðéôõ÷ßá áðü ôï Star Office/OpenOffice.org/"
+"GIMP"
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
-msgid "Unknown/Others"
-msgstr "¶ãíùóôï/¶ëëï"
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+msgstr ""
+"ÁðÝôõ÷å ç áöáßñåóç ôïõ åêôõðùôÞ \"%s\" áðü ôï Star Office/OpenOffice.org/GIMP"
-#: ../../standalone/drakxtv:1
+#: ../../printer/printerdrake.pm_.c:3325
#, c-format
-msgid "No TV Card detected!"
-msgstr "Äåí âñÝèçêå êÜñôá ôçëåüñáóçò!"
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Åßóôå âÝâáéïé ãéá ôçí áöáßñåóç ôïõ åêôõðùôÞ \"%s\";"
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:3329
#, c-format
-msgid "Options"
-msgstr "ÅðéëïãÝò"
+msgid "Removing printer \"%s\"..."
+msgstr "Ãßíåôáé áöáßñåóç ôïõ åêôõðùôÞ \"%s\"..."
-#: ../../printer/printerdrake.pm:1
+#: ../../raid.pm_.c:35
#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Ï åêôõðùôÞò \"%s\" åßíáé ðëÝïí ï ðñïåðéëåãìÝíïò åêôõðùôÞò."
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "Äåí ìðïñþ íá ðñïóèÝóù êáôÜôìçóç óôï _ìïñöïðïéçìÝíï_ RAID md%d"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"Ñõèìßæåôå Ýíáí åêôõðùôÞ laser OKI winprinter. Áõôïß ïé åêôõðùôÝò\n"
-"êÜíïõí ÷ñÞóç åíüò ðïëý åéäéêïý ðñùôïêüëëïõ åðéêïéíùíßáò êáé ãé' áõôü "
-"ëåéôïõñãïýí ìüíï áí åßíáé óõíäåìÝíïé óôçí ðñþôç ðáñÜëëçëç èýñá. Áí åßíáé "
-"óõíäåìÝíïò óå Üëëç èýñá Þ óå Ýíáí åîõðçñåôçôÞ åêôõðþóåùí ðáñáêáëþ óôçí ðñþôç "
-"ðáñÜëëçëç ðñéí åêôõðþóåôå ôçí ðñþôç äïêéìáóôéêÞ óåëßäá. ÄéáöïñåôéêÜ ï "
-"åêôõðùôÞò äåí èá ëåéôïõñãÞóåé. Ç ñõèìßóåéò ôïõ ôýðïõ óýíäåóçò èá áãíïçèïýí "
-"áðü ôïí ïäçãü."
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
+msgstr "áðïôõ÷ßá mkraid"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr "ÃåíéÜ ôïõ åðåîåñãáóôÞ (ð.÷. 8 ãéá PentiumIII, ...)"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "áðïôõ÷ßá mkraid (ìÞðùò áðïõóéÜæïõí ôá raidtools;)"
-#: ../../printer/printerdrake.pm:1
+#: ../../raid.pm_.c:153
#, c-format
-msgid "Auto-detected"
-msgstr "Åíôïðßóôçêáí áõôüìáôá"
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "Äåí õðÜñ÷ïõí áñêåôÝò êáôáôìÞóåéò ãéá RAID åðéðÝäïõ %d\n"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../security/main.pm_.c:36
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"
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Ðñüêåéôáé íá ñõèìßóôå ôïí õðïëïãéóôÞ óáò ãéá ôçí åãêáôÜóôáóç ôï äéáêïìéóôÞ "
-"PXE ùò åîõðçñåôçôÞ DHCP \n"
-"êáé äéáêïìéóôÞ TFTP ùò äéáêïìéóôÞ åãêáôáóôÜóåùí.\n"
-"Ìå áõôÞ ôçí åðéëïãÞ, Üëëïé õðïëïãéóôÝò óôï ôïðéêü óáò äßêôõï èá ìðïñïýí íá "
-"åãêáôáóôáèïýí ìå ôç ÷ñÞóç áõôïý ôïõ õðïëïãéóôÞ.\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\n"
"\n"
-"Âåâáéùèåßôå üôé Ý÷åôå ñõèìßóåé ôçí ðñüóâáóç óôï Äßêôõï/Äéáäßêôõï ìå ôç ÷ñÞóç "
-"ôïõ drakconnect ðñéí ðñï÷ùñÞóåôå.\n"
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
"\n"
-"Óçì. Èá ðñÝðåé íá Ý÷åôå ìéá êÜñôá äéêôýïõ ãéá íá ñõèìßóåôå ôï Ôïðéêü óáò "
-"Äßêôõï (LAN)."
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
+msgstr ""
+
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Åðßðåäï áóöáëåßáò"
-#: ../../harddrake/sound.pm:1
+#: ../../security/main.pm_.c:77
#, fuzzy, c-format
+msgid " (default value: %s)"
+msgstr " (ÐñïåðéëåãìÝíïò)"
+
+#: ../../security/main.pm_.c:113
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Åðßðåäï áóöáëåßáò"
+
+#: ../../security/main.pm_.c:115
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Äéá÷åéñéóôÞò Áóöáëåßáò (ðñïóðÝëáóç Þ ôá÷õäñïìåßï)"
+
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "Network Options"
+msgstr "Ðåñéóóüôåñåò ÅðéëïãÝò"
+
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "System Options"
+msgstr "Ðåñéóóüôåñåò ÅðéëïãÝò"
+
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
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"
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
msgstr ""
-"Óýóôçìá\n"
-" Ôé\n"
-"\n"
-" Ãéá Ðñï÷ùñçìÝíïõò Linux\n"
-" PCI\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" íÝï"
-#: ../../install_steps_interactive.pm:1
-#, 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"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
msgstr ""
-"Äåí õðÜñ÷åé åëåýèåñïò ÷þñïò ãéá 1MB bootstrap! Ç åãêáôÜóôáóç èá óõíå÷éóôåß, "
-"áëëÜ ãéá íá îåêéíÞóåôå ôï óýóôçìÜ óáò, èá ÷ñåéáóôåß íá äçìéïõñãÞóåôå ìéá "
-"êáôÜôìçóç bootstrap ìå ôï DiskDrake"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../security/main.pm_.c:191
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Ñýèìéóç åðéðÝäïõ áóöáëåßáò"
+
+#: ../../security/main.pm_.c:197
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Ðáñáêáëþ ðåñéìÝíåôå, ðñïåôïéìáóßá åãêáôÜóôáóçò..."
+
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr "Åêêßíçóç ôïõ ALSA (Advanced Linux Sound Architecture) óõóôÞìáôïò Þ÷ïõ"
+
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
+msgstr "Anacron, Ýíá ðñüãñáììá ðåñéïäéêÞò åêôÝëåóçò åíôïëþí."
+
+#: ../../services.pm_.c:21
msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-"Ðáñáêáëþ åðéëÝîôå ôïí åêôõðùôÞ ðïõ èÝëåôå íá ñõèìßóåôå Þ åéóÜãåôå Ýíá üíïìá "
-"óõóêåõÞò/áñ÷åßïõ óôç ãñáììÞ åéóáãùãÞò"
+"Ôï apmd ðáñáêïëïõèåß êáé êáôáãñÜöåé ôçí êáôÜóôáóç ôçò ìðáôáñßáò.\n"
+"Ìðïñåß åðßóçò íá ÷ñçóéìïðïéçèåß ãéá ôï áõôüìáôï êëåßóéìï ôïõ óõóôÞìáôïò óå \n"
+"ðåñßðôùóç ÷áìçëÞò öüñôéóçò ôçò ìðáôáñßáò."
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
-msgstr "¶ñíçóç"
+#: ../../services.pm_.c:23
+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 ""
+"Åêôåëåß åíôïëÝò ðñïãñáììáôéóìÝíåò áðü ôçí åíôïëÞ at êáé äÝóìåò åíôïëþí\n"
+"üôáí ï öüñôïò ôïõ óõóôÞìáôïò åßíáé áñêåôÜ ÷áìçëüò."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
+#: ../../services.pm_.c:25
+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 ""
+"Ôï cron åßíáé ìéá âáóéêÞ õðçñåóßá UNIX ðïõ ôñÝ÷åé åíôïëÝò êáèïñéóìÝíåò áðü \n"
+"ôïí ÷ñÞóôç óå ôáêôÜ ÷ñïíéêÜ äéáóôÞìáôá. Ôï vixie cron ðñïóèÝôåé Ýíáí "
+"áñéèìü \n"
+"åðéðëÝïí äõíáôïôÞôùí ðïõ ðåñéëáìâÜíïõí êáëýôåñç áóöÜëåéá êáé ðéï éó÷õñÝò "
+"ñõèìßóåéò."
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
-msgstr "HFS"
+#: ../../services.pm_.c:28
+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 ""
+"Ôï GPM ðñïóèÝôåé õðïóôÞñéîç ðïíôéêéïý óå åöáñìïãÝò âáóéóìÝíåò óå êïíóüëá\n"
+"êåéìÝíïõ êáé åðéôñÝðåé ëåéôïõñãßåò áðïêïðÞò êáé åðéêüëëçóçò ìå ÷ñÞóç \n"
+"ðïíôéêéïý óôçí êïíóüëá, êáèþò êáé õðïóôÞñéîç áíáäõïìÝíùí ìåíïý."
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:31
msgid ""
"HardDrake runs a hardware probe, and optionally configures\n"
"new/changed hardware."
@@ -12664,295 +8949,143 @@ msgstr ""
"Ôï HardDrake ôñÝ÷åé ìéá áíß÷íåõóç õëéêïý êáé ðñïáéñåôéêÜ ñõèìßæåé\n"
"ôï íÝï/áëëáãìÝíï õëéêü."
-#: ../../fs.pm:1
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Äçìéïõñãßá êáé ìïñöïðïßçóç áñ÷åßïõ %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
-msgstr "áí ïñéóôåß íáé, Ýëåã÷ïò ãéá ðñïóèÞêç/áöáßñåóç áñ÷åßùí sgid."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:33
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"
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
+"Ï Apache åßíáé Ýíáò åîõðçñåôçôÞò WWW. Ìðïñåß íá åîõðçñåôÞóåé áñ÷åßá\n"
+"HTML êáé CGI."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "ÅðéëÝîôå Ýíá õðÜñ÷ïí LVM óôï ïðïßï èá ãßíåé ç ðñïóèÞêç"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "xfs restart"
-msgstr "åðáíåêêßíçóç xfs"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:34
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"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 ""
-"Ï åêôõðùôÞò \"%s\" õðÜñ÷åé Þäç,\n"
-"Åßóôå âÝâáéïé ãéá ôçí åðéêÜëõøç ôùí ñõèìßóåùí;"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "×ñÞóç ôùí óáñùôþí óôïõò õðïëïãéóôÝò:"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
-msgstr "ÁðïåðéëïãÞ ¼ëùí"
-
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "äåí õðÜñ÷ïõí äéáèÝóéìåò êáôáôìÞóåéò"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Printer Management \n"
-msgstr "ÊïéíÞ ÷ñÞóç åêôõðùôþí"
+"Ç õðçñåóßá õðåñåîõðçñåôçôÞ Äéáäéêôýïõ (inetd) îåêéíÜåé ìéá ðïéêéëßá\n"
+"Üëëùí õðçñåóéþí äéáäéêôýïõ üðïôå ÷ñåéÜæïíôáé. Åßíáé õðåýèõíç ãéá ôçí \n"
+"åêêßíçóç ðïëëþí õðçñåóéþí, üðùò telnet, ftp, rsh êáé rlogin. Ç "
+"áðåíåñãïðïßçóç\n"
+"áõôÞò ôçò õðçñåóßáò áðåíåñãïðïéçèåß åðßóçò êáé ôéò õðçñåóßåò ãéá ôéò ïðïßåò\n"
+"åßíáé õðåýèõíç."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Domain Name Resolver"
+#: ../../services.pm_.c:38
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
msgstr ""
+"Åêêßíçóç ðáêÝôïõ ößëôñïõ ãéá ôïí ðõñÞíá Linux ôçò óåéñÜò 2.2, ãéá ôçí "
+"ñýèìéóç\n"
+"åíüò Ôïß÷ïõò Ðñïóôáóßáò ðïõ èá ðñïóôáôåýåé ôï ìç÷ÜíçìÜ óáò áðü äéêôõáêÝò "
+"åðéèÝóåéò."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
-msgstr "Êëåéäß êñõðôïãñÜöçóçò (îáíÜ)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Ôï üíïìá ãéá ôï Samba ëåßðåé!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
-msgstr "Ç åãêáôÜóôáóçò True Type ïëïêëçñþèçêå"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detection in progress"
-msgstr "Áíß÷íåõóç óå åîÝëéîç"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Äçìéïõñãßá Ïëüêëçñïõ ÐõñÞíá -->"
-
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "modem"
-msgstr "Ìüíôåì"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "Êáëþò ïñßóáôå óôï %s"
-
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../services.pm_.c:40
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"
+"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 ""
+"Áõôü ôï ðáêÝôï öïñôþíåé ôçí åðéëåãìÝíç äéÜôáîç ðëçêôñïëïãßïõ ðïõ Ý÷åé \n"
+"åðéëåãåß óôï /etc/sysconfig/keyboard. Áõôü ìðïñåß íá ñõèìéóôåß ìå ôçí \n"
+"÷ñÞóç ôïõ åñãáëåßïõ kbdconfig. ÐñÝðåé ó÷åäüí ðÜíôá íá åßíáé åíåñãïðïéçìÝíï."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Ðáñáêáëþ åéóÜãåôå ôç äéóêÝôá ÁíáâÜèìéóçò ÁñèñùìÜôùí óôïí ïäçãü %s"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
-msgstr "Bootsplash"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:43
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
msgstr ""
-"Ï ðáñáêÜôù åêôõðùôÞò\n"
-"\n"
-"%s%s\n"
-"åßíáé Üìåóá óõíäåìÝíïò óôï óýóôçìÜ óáò"
+"Áõôüìáôç ðáñáãùãÞ ôçò åðéêåöáëßäáò ôïõ ðõñÞíá óôï /boot ãéá ôï\n"
+"/usr/include/linux/{autoconf,version}.h"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Êïéíü÷ñçóôïé åêôõðùôÝò óôïõò õðïëïãéóôÝò/äßêôõá: "
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr ""
+"Áõôüìáôç áíß÷íåõóç êáé ñýèìéóç óõóêåõþí êáôÜ ôçí åêêßíçóç ôïõ óõóôÞìáôïò."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:46
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>\". "
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
msgstr ""
-"\n"
-"Ç åíôïëÞ \"%s\" åðßóçò óáò åðéôñÝðåé íá ôñïðïðïéÞóåôå ôéò ñõèìßóåéò åðéëïãþí "
-"ãéá ìéá óõãêåêñéìÝíç åñãáóßá åêôýðùóçò. ÁðëÜ ðñïóèÝóåôå ôéò åðéèõìçôÝò "
-"ñõèìßóåéò óôçí ãñáììÞ åíôïëþí, ð.÷. \"%s<áñ÷åßï>\"."
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "DrakClock"
-msgstr "Drakbackup"
+"Ôï Linuxconf êáìéÜ öïñÜ êÜíåé äéÜöïñåò åñãáóßåò\n"
+"êáôÜ ôçí åêêßíçóç ôïõ óõóôÞìáôïò ãéá íá äéáôçñÞóåé ôç ñýèìéóç ôïõ óõóôÞìáôïò."
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:48
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."
+"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 ""
-"Óå ìåñéêÝò ðåñéðôþóåéò, ï ïäçãüò %s ÷ñåéÜæåôáé åðéðëÝïí ðáñáìÝôñïõò ãéá\n"
-"íá ëåéôïõñãÞóåé óùóôÜ, ðáñ' üëï ðïõ óõíÞèùò ëåéôïõñãåß êáé ÷ùñßò áõôÝò.\n"
-"Èá èÝëáôå íá äþóåôå åðéðëÝïí åðéëïãÝò Þ íá áöÞóåôå ôïí ïäçãü íá åîåôÜóåé\n"
-"ôï õëéêü óáò ãéá ôéò ðáñáìÝôñïõò ðïõ ÷ñåéÜæåôáé; Ç åîÝôáóç áõôÞ ßóùò\n"
-"ðñïêáëÝóåé ðÜãùìá ôïõ óõóôÞìáôïò, áëëÜ äåí èá ðñïêáëÝóåé âëÜâç."
+"Ôï lpd åßíáé ç õðçñåóßá åêôõðþóåùí ðïõ áðáéôåßôáé ãéá íá ëåéôïõñãåß \n"
+"ç åíôïëÞ lpd. Åßíáé âáóéêÜ Ýíáò åîõðçñåôçôÞò ðïõ ðñïùèåß ôá áñ÷åßá \n"
+"óôïõò åêôõðùôÝò."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
+#: ../../services.pm_.c:50
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
msgstr ""
+"Linux Virtual Server, ÷ñçóéìïðïéåßôáé ãéá íá äçìéïõñãÞóåé Ýíáí õøçëÞò\n"
+"áðüäïóçò êáé äéáèåóéìüôçôáò åîõðçñåôçôÞ."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#: ../../services.pm_.c:52
msgid ""
-"\n"
-"- Daemon, %s via:\n"
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
msgstr ""
-"\n"
-"- Äáßìïíáò (%s) ìáæß ìå :\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "Êïýâá"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr "Ïêôþâñéïò"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belize"
-msgstr "Ìðåëßæ"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Searching for new printers..."
-msgstr "ÁíáæÞôçóç ãéá íÝïõò åêôõðùôÝò..."
+"Ï named (BIND) åßíáé Ýíáò ÅîõðçñåôçôÞò Ïíüìáôïò ÔïìÝá (DNS) ðïõ "
+"÷ñçóéìïðïéåßôáé\n"
+"ãéá íá ìåôáôñÝðåé ïíüìáôá óå äéåõèýíóåéò IP."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
+#: ../../services.pm_.c:53
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
+"ÓõíäÝåé êáé áðïóõíäÝåé üëá ôá äéêôõáêÜ óõóôÞìáôá áñ÷åßùí (NFS), SMB (Lan\n"
+"Manager/Windows), êáé NCP (NetWare) "
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
-msgstr "ÔÝëïò ×ñüíïõ Åêêßíçóçò ÐõñÞíá"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../services.pm_.c:55
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."
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
-"Ç êÜñôá ãñáöéêþí óáò õðïóôçñßæåé åðéôÜ÷õíóç ôñéóäéÜóôáôùí ãñáöéêþí ìüíï ìå "
-"ôá XFree %s.\n"
-"Ç êÜñôá óáò õðïóôçñßæåôáé áðü ôá XFree %s ôá ïðïßá ìðïñåß íá äßíïõí êáëýôåñç "
-"õðïóôÞñéîç ãéá äéäéÜóôáôá ãñáöéêÜ."
+"Åíåñãïðïéåß/áðåíåñãïðïéåß üëá ôá õðïóõóôÞìáôá äéêôýïõ ðïõ Ý÷ïõí \n"
+"ñõèìéóôåß íá îåêéíïýí êáôÜ ôçí åêêßíçóç."
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid " Activate/Disable daily security check."
+#: ../../services.pm_.c:57
+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 ""
-"\n"
-"\n"
-" êáèçìåñéíÜ."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-R.\n"
+"Ôï NFS åßíáé Ýíá äçìïöéëÝò ðñùôüêïëëï ãéá ôïí äéáìïéñáóìü áñ÷åßùí óå \n"
+"äßêôõá TCP/IP. ÁõôÞ ç õðçñåóßá ðñïóöÝñåé ëåéôïõñãßåò åîõðçñåôçôÞ, ï \n"
+"ïðïßïò ñõèìßæåôáé áðü ôï áñ÷åßï /etc/exports."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
+#: ../../services.pm_.c:60
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
msgstr ""
+"Ôï NFS åßíáé Ýíá äçìïöéëÝò ðñùôüêïëëï ãéá ôïí äéáìïéñáóìü áñ÷åßùí óå \n"
+"äßêôõá TCP/IP. ÁõôÞ ç õðçñåóßá ðñïóöÝñåé ëåéôïõñãßåò êëåéäþìáôïò áñ÷åßùí."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Ï Ïäçãüò ÊáôÜôìçóçò DrakX âñÞêå ôéò ðáñáêÜôù ëýóåéò:"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "Ïõããñéêü"
-
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../services.pm_.c:62
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
msgstr ""
-"ÅðéëÝîôå ôïí ðáñï÷Ýá óáò\n"
-" ÅÜí äåí åßíáé óôïí êáôÜëïãï, åðéëÝîôå Unlisted"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Áõôüìáôïò óõã÷ñïíéóìüò þñáò (÷ñÞóç NTP)"
-
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid "Use my Windows partition"
-msgstr "Ãßíåôáé áëëáãÞ ôéò êáôÜôìçóçò ôùí Windows"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
+"Áõôüìáôç åíåñãïðïßçóç ôïõ numlock ðëÞêôñïõ óôçí êïíóüëá\n"
+"êáé ôï XFree êáôÜ ôçí åêêßíçóç ôïõ óõóôÞìáôïò."
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Server"
-msgstr "ÅîõðçñåôçôÞò LDAP"
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr "ÕðïóôÞñéîç ôùí OKI 4w êáé óõìâáôþí winprinters."
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:65
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 "
@@ -12965,425 +9098,433 @@ msgstr ""
"÷ñÞóôç, ïðüôå åßíáé áóöáëÝò íá åãêáôáóôáèåß óå óõóôÞìáôá ðïõ äåí ôï "
"÷ñåéÜæïíôáé."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Choose your country"
-msgstr "ÅðéëÝîôå ÷þñá"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:68
msgid ""
-"\n"
-"- System Files:\n"
+"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 ""
-"\n"
-"- Áñ÷åßá ÓõóôÞìáôïò:\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
-msgstr "Îå÷ùñéóôÜ Åñãáëåßá"
+"Ï portmapper äéá÷åéñßæåôáé óõíäÝóåéò RPC, ïé ïðïßåò ÷ñçóéìïðïéïýíôáé\n"
+"áðü ðñùôüêïëëá üðùò ôï NFS êáé ôï NIS. ÐñÝðåé íá åßíáé åíåñãïðïéçìÝíï óå \n"
+"óõóôÞìáôá ðïõ äñïõí ùò åîõðçñåôçôÝò ôÝôïéùí ðñùôïêüëëùí."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Where"
-msgstr "Ðïõ"
+#: ../../services.pm_.c:71
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
+msgstr ""
+"Ôï postfix åßíáé Ýíá ðñüãñáììá ìåôáöïñÜò áëëçëïãñáößáò, ôï \n"
+"ðñüãñáììá ðïõ öñïíôßæåé ãéá ôçí ìåôáöïñÜ áëëçëïãñáößáò áðü ôï \n"
+"Ýíá óýóôçìá óôï Üëëï."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "but not matching"
-msgstr "áëëÜ äåí ôáéñéÜæåé"
+#: ../../services.pm_.c:72
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
+"Áðïèçêåýåé êáé åðáíáöÝñåé ôçí ðçãÞ åíôñïðßáò ôïõ óõóôÞìáôïò ãéá \n"
+"ôçí äçìéïõñãßá êáëýôåñçò ðïéüôçôáò ôõ÷áßùí áñéèìþí."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../services.pm_.c:74
msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
msgstr ""
-"Åäþ ìðïñåßôå íá åðéëÝîåôå Ýíáí åíáëëáêôéêü ïäçãü (OSS Þ ALSA) ãéá ôçí êÜñôá "
-"Þ÷ïõ óáò (%s)"
+"Ïñéóìüò raw óõóêåõþí ùò block óõóêåõþí (üðùò êáôáôìÞóåéò óêëçñþí\n"
+"äßóêùí), ãéá ôç ÷ñÞóç ôïõò áðü åöáñìïãÝò üðùò ç Oracle"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Ñýèìéóç êáñôþí PCMCIA ..."
+#: ../../services.pm_.c:76
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
+msgstr ""
+"Ç õðçñåóßá routed åðéôñÝðåé ôçí áõôüìáôç åíçìÝñùóç ôïõ ðßíáêá äñïìïëüãçóçò \n"
+"IP ìÝóù ôïõ ðñùôïêüëëïõ RIP. Ðáñ' üëï ðïõ ôï RIP åßíáé åõñÝùò äéáäåäïìÝíï "
+"óå \n"
+"ìéêñÜ äßêôõá, ìåãáëýôåñá äßêôõá áðáéôïýí ðåñéðëïêüôåñá ðñùôüêïëëá."
-#: ../../common.pm:1
-#, c-format
-msgid "kdesu missing"
-msgstr "ôï kdesu ëåßðåé"
+#: ../../services.pm_.c:79
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
+msgstr ""
+"Ôï ðñùôüêïëëï rstat åðéôñÝðåé óôïõò ÷ñÞóôåò åíüò äéêôýïõ ôçí\n"
+"óõëëïãÞ ìåôñÞóåùí åðéäüóåùí ãéá ïðïéïäÞðïôå óýóôçìá óå áõôü \n"
+"ôï äßêôõï."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
msgstr ""
+"Ôï ðñùôüêïëëï rusers åðéôñÝðåé óôïõò ÷ñÞóôåò åíüò äéêôýïõ íá \n"
+"ðñïóäéïñßóïõí ôïõò óõíäåäåìÝíïõò ÷ñÞóôåò Üëëùí óõóôçìÜôùí."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
-msgstr "Êëåéäß êñõðôïãñÜöçóçò"
+#: ../../services.pm_.c:83
+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 ""
+"Ôï ðñùôüêïëëï rwho åðéôñÝðåé óå áðïìáêñõóìÝíïõò ÷ñÞóôåò íá äïõí Ýíáí \n"
+"êáôÜëïãï ôùí ÷ñçóôþí ôïõ óõóôÞìáôïò (ðáñüìïéï ìå ôï finger)."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
+msgstr "Åêêßíçóç ôïõ óõóôÞìáôïò Þ÷ïõ óôï ìç÷ÜíçìÜ óáò"
-#: ../../keyboard.pm:1
-#, c-format
+#: ../../services.pm_.c:86
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."
+"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 ""
+"Ôï Syslog åßíáé ç õðçñåóßá ðïõ ÷ñçóéìïðïéïýí ðïëëÝò Üëëåò õðçñåóßåò \n"
+"ãéá íá êÜíïõí åããñáöÝò óôá áñ÷åßá ðáñáêïëïýèçóçò óõóôÞìáôïò (log files)\n"
+"Óõíßóôáôáé ç óõíå÷Þò ëåéôïõñãßá áõôÞò ôçò õðçñåóßáò."
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "ÍÞóïé ×ñéóôïõãÝííùí"
-
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Automatic"
-msgstr "Áõôüìáôï IP"
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr "Öüñôùóç ôùí ïäçãþí ãéá ôéò usb óõóêåõÝò óáò."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
+#: ../../services.pm_.c:89
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr ""
-"Ç åãêáôÜóôáóç ôïõ ðñïãñÜììáôïò åêêßíçóçò áðÝôõ÷å. ÐñïêëÞèçêå ôï áêüëïõèï "
-"óöÜëìá:"
+"ÎåêéíÜåé ôçí õðçñåóßá åîõðçñåôçôÞ ãñáììáôïóåéñþí X (áõôü åßíáé áðáñáßôçôï "
+"ãéá íá åêôåëåóôåß ôï XFree)."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "ÊáíÜëé EIDE/SCSI"
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
+msgstr "ÅðéëÝîôå ôéò õðçñåóßåò ðïõ èá îåêéíïýí áõôüìáôá êáôÜ ôçí åêêßíçóç"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Ïñéóìüò áõôïý ôïõ åêôõðùôÞ ùò ðñïåðéëåãìÝíïõ"
+#: ../../services.pm_.c:127
+msgid "Printing"
+msgstr "Åêôýðùóç"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Åßíáé óùóôÞ ç ñýèìéóç;"
+#: ../../services.pm_.c:128
+msgid "Internet"
+msgstr "Äéáäßêôõï"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "êáôÜôìçóç %s"
+#: ../../services.pm_.c:131
+msgid "File sharing"
+msgstr "Êïéíü÷ñçóôá áñ÷åßá"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Paranoid"
-msgstr "Ðáñáíïúêü"
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+msgid "System"
+msgstr "Óýóôçìá"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS"
-msgstr "NIS"
+#: ../../services.pm_.c:138
+msgid "Remote Administration"
+msgstr "ÁðïìáêñõóìÝíç äéá÷åßñéóç"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- ÄéáãñáöÞ ×ñÞóôç"
+#: ../../services.pm_.c:146
+msgid "Database Server"
+msgstr "ÅîõðçñåôçôÞò ÂÜóçò ÄåäïìÝíùí"
-#: ../../standalone/harddrake2:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "Location on the bus"
-msgstr "ÈÝóç ôïõ äéáýëïõ"
+msgid "Services: %d activated for %d registered"
+msgstr "Õðçñåóßåò: %d åíåñãïðïéçìÝíåò ãéá %d åããåãñáììÝíåò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No printer found!"
-msgstr "Äåí âñÝèçêå åêôõðùôÞò!"
+#: ../../services.pm_.c:191
+msgid "Services"
+msgstr "Õðçñåóßåò"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
-msgstr "ôï üíïìá êáôáóêåõáóôÞ ôçò óõóêåõÞò"
+#: ../../services.pm_.c:203
+msgid "running"
+msgstr "åêôåëåßôáé"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Erase entire disk"
-msgstr "ÄéáãñáöÞ ïëüêëçñïõ ôïõ äßóêïõ"
+#: ../../services.pm_.c:203
+msgid "stopped"
+msgstr "äåí åêôåëåßôáé"
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Default)"
-msgstr " (ÐñïåðéëåãìÝíïò)"
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
+msgstr "Õðçñåóßåò êáé äáßìïíåò"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Automatic reconfiguration"
-msgstr "Áõôüìáôç åðáíáñýèìéóçò"
+#: ../../services.pm_.c:222
+msgid ""
+"No additional information\n"
+"about this service, sorry."
+msgstr ""
+"×ùñßò åðéðëÝïí ðëçñïöïñßåò\n"
+"ãéá áõôÞ ôçí õðçñåóßá."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Receiving Speed:"
-msgstr "Ôá÷ýôçôá ËÞøçò:"
+#: ../../services.pm_.c:229
+msgid "On boot"
+msgstr "Óôçí åêêßíçóç"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
-msgstr "ÍÞóïé Ôïýñêò êáé ÊáÀêïò"
+#: ../../services.pm_.c:241
+msgid "Start"
+msgstr "Åêêßíçóç"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Ip"
+#: ../../services.pm_.c:241
+msgid "Stop"
+msgstr "Ôåñìáôéóìüò"
+
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../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
-#, c-format
-msgid "<- Previous"
-msgstr "<- Ðñïçãïýìåíï"
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
+msgstr "Êáëþò ïñßóáôå óôïí êüóìï ôïõ Áíïé÷ôïý Êþäéêá"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Transfer Now"
+#: ../../share/advertising/01-thanks.pl_.c:11
+msgid ""
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
msgstr ""
-" ÌåôáöïñÜ \n"
-"Ôþñá"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password and network authentication methods"
+#: ../../share/advertising/02-community.pl_.c:9
+#, fuzzy
+msgid "Get involved in the Free Software world"
+msgstr "Õðüëïéðïò êüóìïò"
+
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
msgstr ""
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "ÅíáëëáãÞ ìåôáîý åðßðåäçò êáé ïìáäéêÞò ôáîéíüìçóçò"
+#: ../../share/advertising/02-community.pl_.c:11
+msgid ""
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Themes"
-msgstr "ÈÝìáôá"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Óýíäåóç óôï Äéáäßêôõï"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "ÅðéëïãÝò: %s"
+#: ../../share/advertising/03-internet.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
+
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-"×ñçóéìïðïéåßôå ôïí %s ùò ðñüãñáììá åêêßíçóçò.\n"
-"ÊÜíôå êëéê óôï Ñýèìéóç ãéá íá îåêéíÞóåôå ôïí ïäçãü åãêáôÜóôáóçò."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "Ñõèìßóåéò OKI winprinter"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Ðáé÷íßäéá"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
-msgstr "ÍÞóïò Áãßáò ÅëÝíçò"
+#: ../../share/advertising/05-games.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
+msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Parallel port #%s"
-msgstr " óôç ðáñÜëëçëç èÞñá #%s"
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+msgid "Mandrake Control Center"
+msgstr "ÊÝíôñï ÅëÝã÷ïõ Mandrake"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Security Level"
-msgstr "Åðßðåäï Áóöáëåßáò"
+#: ../../share/advertising/06-mcc.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../share/advertising/07-desktop.pl_.c:9
+msgid "User interfaces"
+msgstr "ÄéåðáöÝò ×ñçóôþí"
+
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
-"ÌåñéêÜ âÞìáôá äåí ïëïêëçñþèçêáí.\n"
-"\n"
-"ÈÝëåôå óßãïõñá íá åãêáôáëåßøåôå ôþñá;"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "ÓïõäÜí"
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "ÁíÜðôõîç"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "Ðïëùíéêü (äéÜôáîç qwertz)"
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
-msgstr "Óõñßá"
+#: ../../share/advertising/08-development.pl_.c:11
+msgid ""
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
+
+#: ../../share/advertising/09-server.pl_.c:10
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?"
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
-"Åßíáé ï åêôõðùôÞò óáò ìéá ðïëõ÷ñçóôéêÞ óõóêåõÞ áðü ôçí HP Þ ôçí Sony "
-"(OfficeJet, PSC, LaserJet 1100/1200/1220/3200/3300 with scanner, DeskJet "
-"450, Sony IJP-V100), an HP PhotoSmart or an HP LaserJet 2200;"
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
-#, c-format
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
+
+#: ../../share/advertising/10-mnf.pl_.c:10
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"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-"KALOS HRTHATE STON EPILOGEA LEITOURGIKOU SYSTHMATOS %s!\n"
-"\n"
-"EPILEXTE LEITORGIKO SYSTHMA APO TON PARAPANO KATALOGO \n"
-"H PERIMENETE %d DEUTEROLEPTA GIA THN AYTOMATH EPILOGH.\n"
-"\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "Ðïñôïãáëéêü"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
-msgstr "¼íïìá áñ÷åßïõ loopback: "
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "Ç IP äéåýèõíóç DNS ðñÝðåé íá åßíáé ôçò ìïñöÞò 1.2.3.4"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Left Control key"
-msgstr "ÁðïìáêñõóìÝíïò ¸ëåã÷ïò"
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
-msgstr "Óåñâßá"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Newzealand"
-msgstr "ÍÝá Æçëáíäßá"
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-"Áõôüò ï êáôÜëïãïò ðñÝðåé íá ðáñáìåßíåé óôï ñéæéêü óýóôçìá áñ÷åßùí (root)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
-msgstr "óôï Äßêôõï"
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
+msgid ""
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
-msgstr "ÐëÞêôñï Capslock"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "Ðñüãñáììá åêêßíçóçò"
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "ÅðéëÝîôå ôï ìÝãåèïò ìíÞìçò ôçò êÜñôáò ãñáöéêþí"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "Ãéá åéäéêïýò"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
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))."
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../standalone.pm:1
-#, fuzzy, c-format
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
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."
+"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 ""
-"\n"
-" Äßêôõï Äéáäßêôõï\n"
-"\n"
-" åî' ïñéóìïý\n"
-"\n"
-"\n"
-" ìåôÜ âßáò ìåôÜ âßáò\n"
-"\n"
-"."
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Dynamic IP Address Pool:"
-msgstr "Äéåýèõíóç:"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Ãéá åéäéêïýò"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "üíïìá LVM;"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "ÏñéóìÝíåò óõóêåõÝò óôï ôìÞìá õëéêïý \"%s\" áöáéñÝèçêáí:\n"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "ÂñÝèçêáí %s %s ðñïóáñìïãåßò"
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Install"
+#: ../../share/advertising/17-mdkclub.pl_.c:10
+msgid ""
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The internal domain name"
-msgstr "Ôï åóùôåñéêü üíïìá ôïìÝá"
+#: ../../standalone.pm_.c:21
+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 ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ êÜñôáò"
+#: ../../standalone.pm_.c:40
+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 name.\n"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "logdrake"
+#: ../../standalone.pm_.c:51
+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.pm:1
-#, fuzzy, c-format
+#: ../../standalone.pm_.c:57
msgid ""
"Font Importation and monitoring "
"application \n"
@@ -13398,7028 +9539,4307 @@ msgid ""
" : name_of_application like so for staroffice \n"
" : and gs for ghostscript for only this one."
msgstr ""
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" êáíÝíá\n"
-"\n"
-"\n"
-"."
-
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "ÅðéëÝîôå ïäçãü äéóêÝôáò ãéá äçìéïõñãßá äéóêÝôáò åêêßíçóçò"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr "LILO ìå ìåíïý êåéìÝíïõ"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
+#: ../../standalone.pm_.c:68
+msgid ""
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "¼ëåò (÷ùñßò ôïß÷ïò ðñïóôáóßáò)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
-msgstr "ÐñÝðåé íá ïñßóåôå ìéá åéêüíá ðõñÞíá"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", ðïëõ÷ñçóôéêÞ óõóêåõÞ óôçí USB"
-
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Do"
-msgstr "ÊÜíôï"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Óýíäåóç ìå ôïí ôüðï ãéá ôçí ëÞøç ôùí äéáèÝóéìùí ðáêÝôùí..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "Ëéèïõáíéêü AZERTY (ðáëéü)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "ÂñáæéëéÜíéêï (ABNT-2)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
-msgstr "Äéåýèõíóç IP ôïõ õðïëïãéóôÞ/äéêôýïõ:"
-
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone.pm_.c:70
msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
+"[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 ""
-"óõíôåôáãìÝíç y ôçò ãñáììÞò ðñïüäïõ\n"
-"áðü ôçí åðÜíù áñéóôåñÞ ãùíßá"
-
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System installation"
-msgstr "ÅãêáôÜóôáóç"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
-msgstr "¶ãéïò ÂéêÝíôéïò êáé Ãñåíáíôßíåò"
+#: ../../standalone.pm_.c:82
+#, fuzzy
+msgid "[keyboard]"
+msgstr "Ðëçêôñïëüãéï"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Allow/Forbid reboot by the console user."
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
msgstr ""
-"\n"
-"\n"
-" ÷ñÞóôçò."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Open"
-msgstr "/Áñ÷åßï/¶_íïéãìá"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "ÈÝóç ôïõ áñ÷åßïõ auto_install.cfg"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Open Firmware Delay"
-msgstr "¶íïéãìá ÊáèõóôÝñçóçò Firmware"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
-msgstr "Ïõããáñßá"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "New Zealand"
-msgstr "ÍÝá Æçëáíäßá"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Color configuration"
-msgstr "Ñýèìéóç ÷ñùìÜôùí"
-
-#: ../../security/level.pm:1
-#, c-format
+#: ../../standalone.pm_.c:84
msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
+"[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 ""
-"ÕðÜñ÷ïõí Þäç êÜðïéïé ðåñéïñéóìïß, êáé ðåñéóóüôåñïé Ýëåã÷ïé åêôåëïýíôáé êÜèå "
-"âñÜäõ."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "please choose the date to restore"
-msgstr "Ðáñáêáëþ åðéëÝîôå ôçí çìåñïìçíßá åðáíáöïñÜò"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
-msgstr "ÏëëáíäéêÝò Áíôßëëåò"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr "ÁëëáãÞ áðü ext2 óå ext3"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Browse to new restore repository."
-msgstr "áíáæÞôçóç íÝï."
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone.pm_.c:94
msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
+"[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 ""
-"\n"
-"Êáëþò ïñßóáôå óôïí Ïäçãü Ñýèìéóçò ÅêôõðùôÞ\n"
-"\n"
-"Ï ïäçãüò áõôüò óáò âïçèÜåé óôçí åãêáôÜóôáóç ôïðéêþí Þ áðïìáêñõóìÝíùí "
-"åêôõðùôþí ðïõ èá ÷ñçóéìïðïéçèïýí óå áõôü êáé óå Üëëá ìç÷áíÞìáôá óôï äßêôõï\n"
-"\n"
-"Óáò æçôÜ üëåò ôéò áðáñáßôçôåò ðëçñïöïñßåò ãéá íá ñõèìßóåôå ôïõò åêôõðùôÝò "
-"êáé íá áðïêôÞóåôå ðñüóâáóç óå üëïõò ôïõò äéáèÝóéìïõò ïäçãïýò åêôõðùôþí, "
-"åðéëïãÝò ôùí ïäçãþí êáé ôïõò ôýðïõò óõíäÝóåùí."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and %d unknown printers"
-msgstr "êáé %d Üãíùóôïé åêôõðùôÝò"
+#: ../../standalone.pm_.c:99
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone.pm_.c:100
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)"
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone.pm_.c:114
#, c-format
msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Äåí âñÝèçêå êÜñôá ISDN. Ðáñáêáëþ åðéëÝîôå ìéá áðü ôçí ðáñáêÜôù ïèüíç."
+#: ../../standalone.pm_.c:168
+msgid "Installing packages..."
+msgstr "ÅãêáôÜóôáóç ðáêÝôùí..."
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
-msgstr "GB"
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Ðáñáêáëþ áðïóõíäåèåßôå êáé ìåôÜ ðáôÞóôå Ctrl-Alt-BackSpace"
-#: ../../any.pm:1
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "Please give a user name"
-msgstr "Ðáñáêáëþ åéóÜãåôå üíïìá ÷ñÞóôç"
+msgid "Please relog into %s to activate the changes"
+msgstr "Ðáñáêáëþ åðáíáóõíäåèåßôå ùò %s ãéá åíåñãïðïßçóç ôùí áëëáãþí"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
-msgstr "Åíåñãïðïßçóç åêêßíçóçò áðü CD;"
+#: ../../standalone/drakTermServ_.c:239
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Ñýèìéóç ôïõ ÄéáêïìéóôÞ Ôåñìáôéêïý Mandrake"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Simply reboot"
-msgstr ""
+#: ../../standalone/drakTermServ_.c:253
+msgid "Enable Server"
+msgstr "Åíåñãïðïßçóç ÅîõðçñåôçôÞ"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid " enter `void' for void entry"
-msgstr "åéóÜãåôå ôçí ëÝîç `void' ãéá êåíÞ åéóáãùãÞ"
+#: ../../standalone/drakTermServ_.c:260
+msgid "Disable Server"
+msgstr "Áðåíåñãïðïßçóç ÅîõðçñåôçôÞ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr ""
+#: ../../standalone/drakTermServ_.c:268
+msgid "Start Server"
+msgstr "Åêêßíçóç ÅîõðçñåôçôÞò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
-msgstr "ÉáíïõÜñéïò"
+#: ../../standalone/drakTermServ_.c:275
+msgid "Stop Server"
+msgstr "Ôåñìáôéóìüò ÅîõðçñåôçôÞ"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Password history length"
-msgstr "Ï êùäéêüò ðñüóâáóçò åßíáé ðïëý áðëüò"
+#: ../../standalone/drakTermServ_.c:283
+msgid "Etherboot Floppy/ISO"
+msgstr "Etherboot Floppy/ISO"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Winmodem connection"
-msgstr "Óýíäåóç Winmodem"
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
+msgstr "Åéêüíåò Net Boot"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:294
+msgid "Add/Del Users"
+msgstr "ÐñïóèÞêç/Áöáßñåóç ×ñçóôþí"
+
+#: ../../standalone/drakTermServ_.c:299
+msgid "Add/Del Clients"
+msgstr "ÐñïóèÞêç/Áöáßñåóç Ðåëáôþí"
+
+#: ../../standalone/drakTermServ_.c:328
+#, fuzzy
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"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\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 ""
+"áíáâáèìßóåéò 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft."
+"com>"
+
+#: ../../standalone/drakTermServ_.c:332
+msgid ""
"\n"
-"Óõã÷áñçôÞñéá, ï åêôõðùôÞò óáò åãêáôáóôÜèçêå êáé ñõèìßóôçêå!\n"
"\n"
-"Ìðïñåßôå ôþñá íá åêôõðþóåôå ìå ôçí åíôïëÞ \"Åêôýðùóç\" ôçò åöáñìïãÞò óáò "
-"(óõíÞèùò êÜôù áðü ôï ìåíïý \"Áñ÷åßï\").\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
-"Áí èÝëåôå íá ðñïóèÝóåôå, íá áöáéñÝóåôå Þ íá ìåôïíïìÜóåôå ôïí åêôõðùôÞ óáò Þ "
-"áí èÝëåôå íá áëëÜîåôå ôéò ðñïåðéëåãìÝíåò ñõèìßóåéò óáò (èÝóç ôïõ ÷áñôéïý, "
-"ðïéüôçôá åêôýðùóçò) åðéëÝîôå \"ÅêôõðùôÞò\" óôï ôìÞìá \"Õëéêü\"ôïõ ÊÝíôñïõ "
-"ÅëÝã÷ïõ Mandrake."
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "Ôþñá ìðïñåßôå íá åêôåëÝóåôå ôï xawtv (ìÝóá áðü ôá × Window!) !\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-"Äåí õðÜñ÷åé áñêåôüò ÷þñïò swap ãéá ôçí ïëïêëÞñùóç ôçò åãêáôÜóôáóçò, ðáñáêáëþ "
-"ðñïóèÝóôå"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "%s on %s"
-msgstr "%s (Èýñá %s)"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Allow/Forbid remote root login."
-msgstr "¼ëá ôá áðïìáêñõóìÝíá ìç÷áíÞìáôá"
-
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakTermServ_.c:365
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"
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\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 ""
-"Linux\n"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
"\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\n"
"\n"
-" HardDrake Linux\n"
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
"\n"
-" ÔïìÝáò Windows \n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
"\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
"\n"
-" åîõðçñåôçôÞò Äéáäßêôõï\n"
-" Äéáäßêôõï\n"
-" åîõðçñåôçôÞò\n"
-" åîõðçñåôçôÞò."
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Can't create log file!"
-msgstr "Áäýíáôç ç äçìéïõñãßá êáôáëüãïõ!"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Ðïéá åßíáé ç æþíç þñáò;"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use .backupignore files"
-msgstr "Áíôßãñáöá áóöáëåßáò Üëëùí áñ÷åßùí"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
-msgstr "ÃïõéíÝá"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Ôï óýóôçìá åßíáé ôþñá óõíäåìÝíï óôï Äéáäßêôõï."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Íüôéá Ãåùñãßá êáé Íüôéá ÍçóéÜ ÓÜíôïõéôò"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Éáðùíßá (åíáÝñéá)"
-
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid ""
-"Monitor\n"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \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 ""
-"Ïèüíç\n"
-"\n"
-"\n"
-"\n"
-"."
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "Ìïæáìâßêç"
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
+msgstr "ÄéóêÝôá Åêêßíçóçò"
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "Åéêïíßäéï"
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
+msgstr "Åêêßíçóç ISO"
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Kill those programs"
-msgstr "ðñüóâáóç óå ðñïãñÜììáôá ×"
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
+msgstr "Äçìéïõñãßá Ïëüêëçñïõ ÐõñÞíá -->"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Ðáñáêáëþ åðéëÝîôå ôé èÝëåôå íá ðÜñåôå óå áíôßãñáöá áóöáëåßáò"
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
+msgstr "Áõôü èá äéáñêÝóåé ìåñéêÜ ëåðôÜ."
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 ÷ñþìáôá (8 bits)"
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
+msgstr "Äåí åðéëÝ÷ôçêå ðõñÞíáò!"
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "Read-write"
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
+msgstr "Äçìéïõñãßá Ìïíïý NIC -->"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "ÌÝãåèïò: %s\n"
+#: ../../standalone/drakTermServ_.c:587
+msgid "No nic selected!"
+msgstr "Äå åðéëÝ÷ôçêå nic!"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Hostname: "
-msgstr "¼íïìá óõóôÞìáôïò: "
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
+msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Add a rule"
-msgstr "ÐñïóèÞêç åíüò êáíüíá"
+#: ../../standalone/drakTermServ_.c:604
+msgid "<-- Delete"
+msgstr "<-- ÄéáãñáöÞ"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "ÌÝãåèïò chunk %s\n"
+#: ../../standalone/drakTermServ_.c:611
+msgid "Delete All NBIs"
+msgstr "ÄéáãñáöÞ ¼ëùí ôùí NBIs"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
+#: ../../standalone/drakTermServ_.c:668
+msgid ""
+"!!! Indicates the password in the system database is different than\n"
+" the one in the Terminal Server database.\n"
+"Delete/re-add the user to the Terminal Server to enable login."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printer"
-msgstr "Ôïðéêüò ÅêôõðùôÞò"
-
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Ðïý èÝëåôå íá óõíäÝóåôå ôçí óõóêåõÞ %s;"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+#: ../../standalone/drakTermServ_.c:673
+msgid "Add User -->"
+msgstr "ÐñïóèÞêç ÷ñÞóôç -->"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ADSL connection"
-msgstr "Óýíäåóç ADSL"
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
+msgstr "<-- ÄéáãñáöÞ ×ñÞóôç"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Êáìßá ñýèìéóç, êÜíôå êëéê óôïí Ïäçãü Þ óôï Ðñï÷ùñçìÝíá.\n"
+#: ../../standalone/drakTermServ_.c:720
+#, fuzzy, c-format
+msgid "type: %s"
+msgstr "Ôýðïò: "
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Error!"
-msgstr "ÓöÜëìá!"
+#: ../../standalone/drakTermServ_.c:753
+#, fuzzy
+msgid "No net boot images created!"
+msgstr "Åéêüíåò Net Boot"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "cable connection detected"
-msgstr "áíé÷íåýèçêå êáëùäéáêÞ óýíäåóç"
+#: ../../standalone/drakTermServ_.c:773
+#, fuzzy
+msgid "Thin Client"
+msgstr "ÐåëÜôçò DHCP"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "¶ñíçóç ðñüóâáóçò êáôÜ ôç ìåôáöïñÜ ôïõ %s óôï %s"
+#: ../../standalone/drakTermServ_.c:775
+#, fuzzy
+msgid "Allow Thin Clients"
+msgstr "ÐñïóèÞêç/Áöáßñåóç Ðåëáôþí"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_ÁíáöïñÜ Bug"
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
+msgstr "ÐñïóèÞêç ÐåëÜôç -->"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
-msgstr "Íôïìßíéêá"
+#: ../../standalone/drakTermServ_.c:821
+#, fuzzy
+msgid "<-- Edit Client"
+msgstr "<-- ÄéáãñáöÞ ÐåëÜôç"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "ÁëëáãÞ ìåãÝèïõò"
+#: ../../standalone/drakTermServ_.c:837
+#, fuzzy
+msgid "Delete Client"
+msgstr "<-- ÄéáãñáöÞ ÐåëÜôç"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "ÁíÜëõóç: %s\n"
+#: ../../standalone/drakTermServ_.c:843
+msgid "dhcpd Config..."
+msgstr "Ñýèìéóç dhcpd..."
-#: ../../install2.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:876
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)"
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
msgstr ""
-"Áäõíáìßá ðñüóâáóçò ôùí áñèñùìÜôùí ðïõ áíôéóôïé÷ïýí óôïí ðõñÞíá óáò (ôï "
-"áñ÷åßï %s ëåßðåé), ãåíéêÜ áõôü óçìáßíåé üôé ç äéóêÝôá åêêßíçóçò äåí åßíáé óå "
-"óõã÷ñïíéóìü ìå ôï ÌÝóï åãêáôÜóôáóçò ( ðáñáêáëþ äçìéïõñãÞóôå ìéá íÝá äéóêÝôá "
-"åêêßíçóçò)"
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
msgstr ""
-"Ðáñáêáëþ åðéëÝîôå ôçí êáôÜëëçëç èýñá. Ãéá ðáñÜäåéãìá,\n"
-"ç\"COM1\" óôá Windows ïíïìÜæåôáé \"ttyS0\" óôï GNU/Linux."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Èá áöáéñåèïýí ôá ðáñáêÜôù ðáêÝôá "
+#: ../../standalone/drakTermServ_.c:901
+#, fuzzy
+msgid "Netmask:"
+msgstr "ÌÜóêá äéêôýïõ"
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr "Óýíäåóç óôï Äéáäßêôõï"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
+msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
-msgstr "×ñÞóç õðáñ÷ïõóþí êáôáôìÞóåùí"
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "Êáíáäéêü (ÊåìðÝê)"
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "ÓõóêåõÞ ðïíôéêéïý: %s\n"
+#: ../../standalone/drakTermServ_.c:929
+#, fuzzy
+msgid "Domain Name:"
+msgstr "¼íïìá ÔïìÝá"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "ÎáíáåðéëÝîôå ôéò óùóôÝò ãñáììáôïóåéñÝò"
+#: ../../standalone/drakTermServ_.c:937
+#, fuzzy
+msgid "Name Servers:"
+msgstr "ÅîõðçñåôçôÞò Samba"
-#: ../../help.pm:1
-#, fuzzy, 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."
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
msgstr ""
-"\n"
-"\n"
-" ¼÷é\n"
-" åîõðçñåôçôÞò\n"
-"."
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert Corporate"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Write protection"
-msgstr "Áõôüìáôç áíß÷íåõóç åêôõðùôþí"
+#: ../../standalone/drakTermServ_.c:1001
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Ðñï÷ùñçìÝíåò Ñõèìßóåéò"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "You've not selected any font"
-msgstr "äåí âñÝèçêå êáìßá ãñáììáôïóåéñÜ\n"
+#: ../../standalone/drakTermServ_.c:1002
+msgid ""
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Language"
-msgstr "ÅðéëÝîôå ãëþóóá"
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer model selection"
-msgstr "ÅðéëïãÞ ìïíôÝëïõ åêôõðùôÞ"
+#: ../../standalone/drakTermServ_.c:1018
+msgid "Write Config"
+msgstr "ÅããñáöÞ Ñýèìéóçò"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"ÌåôÜ ôçí áëëáãÞ ôýðïõ óôçí êáôÜôìçóç %s, üëá ôá äåäïìÝíá óå áõôÞí ôçí "
-"êáôÜôìçóç èá ÷áèïýí"
+#: ../../standalone/drakTermServ_.c:1120
+msgid "Please insert floppy disk:"
+msgstr "Ðáñáêáëþ åéóÜãåôå äéóêÝôá Åêêßíçóçò:"
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "ISDN adapters"
-msgstr "ÅóùôåñéêÞ êÜñôá ISDN"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
+msgstr "Äåí åßíáé äõíáôÞ ç ðñüóâáóç óôç äéóêÝôá!"
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d äåõôåñüëåðôá"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
+msgstr "Ôþñá ìðïñåßôå íá áöáéñÝóôå ôç äéóêÝôá"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "ÅéóÜãåôå Üäåéá äéóêÝôá óôïí ïäçãü %s"
+#: ../../standalone/drakTermServ_.c:1129
+msgid "No floppy drive available!"
+msgstr "Äåí õðÜñ÷åé äéáèÝóéìïò ïäçãüò äéóêÝôáò!"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakTermServ_.c:1138
#, c-format
-msgid "A valid URI must be entered!"
-msgstr "¸íá óùóôü URI ðñÝðåé íá åéóá÷èåß!"
+msgid "Etherboot ISO image is %s"
+msgstr "Ç åéêüíá Etherboot ISO åßíáé ç %s"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr "ÂñÝèçêå ìéá äéåðáöÞ \"%s\" èÝëåôå íá ôç ÷ñçóéìïðïéÞóåôå ;"
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "ÊÜôé äåí ðÞãå êáëÜ! Åßíáé ôï mkisofs åãêáôåóôçìÝíï;"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
-msgstr "Åðáíáñýèìéóç äéåðáöÞò êáé ôïõ åîõðçñåôçôÞ DHCP"
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "ÐñÝðåé íá äçìéïõñãÞóù ðñþôá ôï /etc/dhcpd.conf!"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound configuration"
-msgstr "Ñýèìéóç Þ÷ïõ"
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
-msgstr "ÄïêéìáóôéêÞ óåëßäá öùôïãñáößáò"
+#: ../../standalone/drakautoinst_.c:40
+msgid "Error!"
+msgstr "ÓöÜëìá!"
-#: ../../help.pm:1 ../../install_interactive.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, c-format
-msgid "Custom disk partitioning"
-msgstr "ÐñïóáñìïóìÝíåò êáôáôìÞóåéò äßóêïõ"
+msgid "I can't find needed image file `%s'."
+msgstr "Äåí ìðïñþ íá âñù ôï áðáñáßôçôï áñ÷åßï åéêüíáò `%s'."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "ÅéóÜãåôå ¼íïìá ÅêôõðùôÞ êáé Ó÷üëéá"
+#: ../../standalone/drakautoinst_.c:43
+msgid "Auto Install Configurator"
+msgstr "Ñõèìßóåéò áõôüìáôçò åãêáôÜóôáóçò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:44
msgid ""
-"The following printers\n"
+"You are about to configure an Auto Install floppy. This feature is somewhat "
+"dangerous and must be used circumspectly.\n"
"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Ïé ðáñáêÜôù åêôõðùôÝò\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"
-"%s%s\n"
-"åßíáé Üìåóá óõíäåìÝíïé óôï óýóôçìÜ óáò"
+"Do you want to continue?"
+msgstr ""
-#: ../../network/modem.pm:1
-#, c-format
-msgid "You don't have any winmodem"
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: %s"
-msgstr "ôýðïò: %s"
+#: ../../standalone/drakautoinst_.c:62
+#, fuzzy
+msgid "replay"
+msgstr "Åðáíáöüñôùóç"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "Óëïâáêßáò (QWERTY)"
+#: ../../standalone/drakautoinst_.c:66
+msgid "Automatic Steps Configuration"
+msgstr "Ñýèìéóç Áõôüìáôùí ÂçìÜôùí"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:67
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."
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
msgstr ""
+"Ðáñáêáëþ êáèïñßóôå åÜí ãéá êÜèå âÞìá èá ãßíåé åðáíÜëçøç ôçò åãêáôÜóôáóçò, Þ "
+"åÜí ãßíåé ÷åéñïêßíçôá"
-#: ../../standalone/draksound:1
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Äåí âñÝèçêå ÊÜñôá ¹÷ïõ!"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "Èýñá ðïíôéêéïý"
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+msgid "Creating auto install floppy"
+msgstr "Äçìéïõñãßá äéóêÝôáò áõôüìáôçò åãêáôÜóôáóçò"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
+#: ../../standalone/drakautoinst_.c:139
+msgid ""
+"\n"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
+msgstr "Óõã÷áñçôÞñéá!"
+
+#: ../../standalone/drakautoinst_.c:235
msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
msgstr ""
-"ÐñÝðåé íá åêêéíçèåß îáíÜ ï Äéá÷åéñéóôÞò ÐñïâïëÞò ãéá íá éó÷ýóïõí üëåò ïé "
-"áëëáãÝò. \n"
-"(áðü ôçí êïíóüëá - service dm restart)"
+"Ç äéóêÝôá äçìéïõñãÞèçêå ìå åðéôõ÷ßá.\n"
+"Ìðïñåßôå ôþñá íá åðáíáëÜâåôå ôçí åãêáôÜóôáóç."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Ftp Server"
-msgstr "ÄéáêïìéóôÞò Ftp"
+#: ../../standalone/drakautoinst_.c:273
+msgid "Auto Install"
+msgstr "Áõôüìáôç åãêáôÜóôáóç"
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr "ÏõãêÜíôá"
+#: ../../standalone/drakautoinst_.c:343
+msgid "Add an item"
+msgstr "ÐñïóèÞêç óôïé÷åßïõ"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "%s fonts conversion"
-msgstr "ìåôáôñïðÞ ãñáììáôïóåéñþí pfm"
+#: ../../standalone/drakautoinst_.c:350
+msgid "Remove the last item"
+msgstr "Áöáßñåóç ôïõ ôåëåõôáßïõ óôïé÷åßïõ"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "Ï ôýðïò ôçò èýñá óôçí ïðïßá åßíáé óõíäåäåìÝíï ôï ðïíôßêé óáò."
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
+msgstr "Ôï cron äåí åßíáé áêüìá äéáèÝóéìç óôïõò ìç-root"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
+msgstr "ÐÑÏÓÏ×Ç"
+
+#: ../../standalone/drakbackup_.c:691
+msgid "FATAL"
+msgstr "ÌÏÉÑÁÉÏ"
+
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
+msgstr "ÐËÇÑÏÖÏÑÉÅÓ"
+
+#: ../../standalone/drakbackup_.c:704
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"
+" DrakBackup Report \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"
+msgstr ""
"\n"
-" * \"%s\": check the current mouse configuration and click on the button to\n"
-"change it if necessary.\n"
+" ÁíáöïñÜ DrakBackup \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"
+
+#: ../../standalone/drakbackup_.c:705
+msgid ""
"\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"
+" DrakBackup Daemon Report\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"
+msgstr ""
"\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"
+" Äáßìïíáò áíáöïñÜò DrakBackup \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"
+
+#: ../../standalone/drakbackup_.c:709
+msgid ""
"\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"
+" DrakBackup Report Details\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 ""
+"\n"
+" DrakBackup ËåðôïìÝñåéåò ÁíáöïñÜò\n"
+"\n"
+"\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr "Êïìüñåò"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "May"
-msgstr "ÌÜéïò"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yaboot mode"
-msgstr "Ëåéôïõñãßá Yaboot"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Ãåíéêïý ôýðïõ ìå 3 ðëÞêôñá"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
-msgstr "USA (êáëùäéáêÞ)"
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+msgid "Total progess"
+msgstr "ÓõíïëéêÞ ðñüïäïò"
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakbackup_.c:785
#, c-format
msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+"%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 ""
-"Áäõíáìßá åðáíåêêßíçóçò ôïõ LiLo!\n"
-"ÅêôåëÝóôå \"lilo\" ùò root óôçí ãñáììÞ åíôïëþí ãéá íá ïëïêëçñùèåß ç "
-"åãêáôÜóôáóç ôïõ èÝìáôïò LiLo"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select another media to restore from"
-msgstr "ÅðéëÝîôå Üëëï ìÝóï ãéá ôçí áíÜêôçóç"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Software Manager"
-msgstr "Äéá÷åéñéóôÞò Ëïãéóìéêïý"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
-msgstr "ÅéóÜãåôå îáíÜ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD in place - continue."
-msgstr "Ôï CD åßíáé óôç èÝóç ôïõ - óõíÝ÷åéá"
-
-#: ../../common.pm:1
-#, c-format
-msgid "KB"
-msgstr "KB"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Network & Internet"
-msgstr "Äßêôõï & Äéáäßêôõï"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Ëéèïõáíéêü \"öùíçôéêü\" QWERTY"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Net Boot Images"
-msgstr "Åéêüíåò Net Boot"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "ÊïéíÞ ÷ñÞóç ôïðéêþí óáñùôþí"
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
+msgstr "Ìðïñåß íá ÷ñåéáóôïýí ìåñéêÜ ëåðôÜ ãéá ôç äçìéïõñãßá ôùí êëåéäéþí:"
-#: ../../Xconfig/monitor.pm:1
+#: ../../standalone/drakbackup_.c:801
#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
+msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../../move/move.pm:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid "Detect again USB key"
+msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Services and deamons"
-msgstr "Õðçñåóßåò êáé äáßìïíåò"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Ôï áðïìáêñõóìÝíï äéêôõáêü üíïìá ëåßðåé!"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "with /usr"
-msgstr "ìå /usr"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Network"
-msgstr "Äßêôõï"
+#: ../../standalone/drakbackup_.c:819
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "×ùñßò óõíèçìáôéêü"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgid "Permission denied transferring %s to %s"
msgstr ""
-"Áõôüìáôç áíß÷íåõóç åêôõðùôþí óõíäåìÝíïé óå ìç÷áíÞìáôá ðïõ Ý÷ïõí Microsoft "
-"Windows"
-
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "Ï êùäéêüò ðñüóâáóçò åßíáé ðïëý áðëüò"
-#: ../../security/l10n.pm:1
+#: ../../standalone/drakbackup_.c:821
#, fuzzy, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "Ñýèìéóç õðçñåóéþí"
+msgid "Can't find %s on %s"
+msgstr "Áäõíáìßá áíïßãìáôïò %s: %s\n"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "Óëïâáêßáò (QWERTZ)"
+msgid "%s not responding"
+msgstr ""
-#: ../advertising/06-development.pl:1
+#: ../../standalone/drakbackup_.c:828
#, 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."
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
msgstr ""
+"Åðéôõ÷Þò ìåôáöïñÜ\n"
+"ºóùò íá ÷ñåéáóôåß íá åðáëçèåýóåôå üôé ìðïñåßôå íá ðñïóðåëÜóåôå ôïí "
+"äéáêïìéóôÞ ìå:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"÷ùñßò íá æçôçèåß êùäéêüò ðñüóâáóçò."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "No devices found"
-msgstr "Äåí âñÝèçêå åéêüíá"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "ÐñáãìáôéêÜ åëÜ÷éóôç åãêáôÜóôáóç (åéäéêÜ ÷ùñßò urpmi)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use daemon"
-msgstr "×ñÞóç äáßìïíá"
-
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "Ðéóôïðïßçóç"
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
+msgstr "Ôï áðïìáêñõóìÝíï WebDAV åßíáé Þäç óå óõã÷ñïíéóìü!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr "ÐñïóèÞêç áõôïý ôïõ åêôõðùôÞ óôï Star Office/OpenOffice.org/GIMP"
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
+msgstr "Ç ìåôáöïñÜ WebDAV áðÝôõ÷å!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Ðñüóèåôïé åîõðçñåôçôÝò CUPS: "
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
+msgstr "Äåí õðÜñ÷åé CDR/DVDR óôïí ïäçãü!"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
-msgstr "áíé÷íåýèçêå åî' ïñéóìïý."
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr "Ðïý èÝëåôå íá óõíäÝóåôå ôï %s;"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "Áëãåñßá"
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
+msgstr "ºóùò ÷ñåéáóôïýí ìåñéêÜ ëåðôÜ ãéá íá óâçóôåß ôï ìÝóï."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network"
-msgstr "ÅðáíáöïñÜ ìÝóù äéêôýïõ"
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
+msgstr "Ðñüâëçìá äéêáéùìÜôùí óôçí ðñüóâáóç ôïõ CD."
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:1060
#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
+msgid "No tape in %s!"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "ìÝãåèïò Initrd"
-
-#: ../../help.pm:1
-#, fuzzy, 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."
-msgstr ""
-"\n"
-" åîõðçñåôçôÞò\n"
-"."
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
+msgstr "Áíôßãñáöï Áóöáëåßáò óõóôÞìáôïò áñ÷åßùí..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tÁíôßãñáöá Áóöáëåßáò ùò tar êáé gzip\n"
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+msgid "Hard Disk Backup files..."
+msgstr "Áíôßãñáöá Áóöáëåßáò Óêëçñïý Äßóêïõ"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Set as default"
-msgstr "åî' ïñéóìïý"
+#: ../../standalone/drakbackup_.c:1236
+msgid "Backup User files..."
+msgstr "Áíôßãñáöï Áóöáëåßáò ôùí áñ÷åßùí ×ñçóôþí..."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
+msgstr "Äéáäéêáóßá ÁíôéãñÜöùí áóöáëåßáò óôïí Óêëçñü Äßóêï..."
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configured on this machine"
-msgstr "(óå áõôü ôï ìç÷Üíçìá)"
+#: ../../standalone/drakbackup_.c:1290
+msgid "Backup Other files..."
+msgstr "Áíôßãñáöï Áóöáëåßáò ¶ëëùí áñ÷åßùí..."
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Ôáõôü÷ñïíá ôá äýï ðëÞêôñá Shift"
+#: ../../standalone/drakbackup_.c:1296
+msgid "No changes to backup!"
+msgstr "Äåí õðÜñ÷ïõí áëëáãÝò ãéá íá ãßíïõí áíôßãñáöá áóöáëåßáò!"
-#: ../../standalone/drakhelp:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, c-format
-msgid " --help - display this help \n"
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-#: ../../standalone.pm:1
+#: ../../standalone/drakbackup_.c:1319
#, 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"
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Ïñéóìüò ÐñïåðéëåãìÝíïõ ÅêôõðùôÞ..."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "ÄéåðáöÞ %s (÷ñÞóç áñèñþìáôïò %s)"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Generating preview ..."
-msgstr "Äçìéïõñãßá ðñïåðéóêüðçóçò ..."
-
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1322
msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
+"\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
msgstr ""
+"\n"
+" ÓöÜëìá óôç óýíäåóç FTP . Äåí Þôáí äõíáôÞ ç áðïóôïëÞ ôùí áíôéãñÜöùí "
+"áóöáëåßáò ìÝóù FTP.\n"
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "ignore"
-msgstr "Óéããáðïýñç"
-
-#: ../../security/help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:1340
msgid ""
-"Allow/Forbid X connections:\n"
-"\n"
-"- ALL (all connections are allowed),\n"
"\n"
-"- LOCAL (only connection from local machine),\n"
+"Drakbackup activities via CD:\n"
"\n"
-"- NONE (no connection)."
msgstr ""
+
+#: ../../standalone/drakbackup_.c:1345
+msgid ""
"\n"
+"Drakbackup activities via tape:\n"
"\n"
-" Ïëïêëçñþèçêå\n"
-"\n"
-"."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", ðïëõ÷ñçóôéêÞ óõóêåõÞ óôçí ðáñÜëëçëç èÞñá #%s"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "óåéñéáêü"
+#: ../../standalone/drakbackup_.c:1354
+msgid " Error during mail sending. \n"
+msgstr "ÓöÜëìá êáôÜ ôçí áðïóôïëÞ ìçíýìáôïò. \n"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
-msgstr "DVD-ROM"
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
+msgstr "Áäýíáôç ç äçìéïõñãßá êáôáëüãïõ!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Ãåùñãßá (\"ËáôéíéêÞ\" äéÜôáîç)"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+msgid "File Selection"
+msgstr "ÅðéëïãÞ Áñ÷åßïõ"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
msgstr ""
+"Ðáñáêáëþ åðéëÝîôå ôá áñ÷åßá Þ ôïõò êáôáëüãïõò êáé êÜíôå êëéê óôï 'ðñïóèÞêç'"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1573
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+"\n"
+"Please check all options that you need.\n"
msgstr ""
-"Ìðïñåßôå ôþñá íá äþóåôå ôéò ðáñáìÝôñïõò ãéá ôï Üñèñùìá %s.\n"
-"Óçìåéþóôå üôé êÜèå äéåýèõíóç ðñÝðåé íá åéóÜãåôáé ìå ôï ðñüèåìá 0x üðùò "
-"'0x123'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "ÊÝíõá"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "ÊÜíôå ðñþôá ``Áðïóýíäåóç''"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing mtools packages..."
-msgstr "ÅãêáôÜóôáóç ðáêÝôïõ mtools..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a root partition"
-msgstr "ÐñÝðåé íá ïñßóåôå ìéá êáôÜôìçóç root"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "first step creation"
-msgstr "ðñþôï âÞìá äçìéïõñãßáò"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Ôáõôü÷ñïíá ôá äýï ðëÞêôñá Shift"
+"\n"
+"Ðáñáêáëþ åðéëÝîôå üëåò ôéò åðéëïãÝò ðïõ ÷ñåéÜæåóôå.\n"
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1574
msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
+"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
+"ÁõôÝò ïé åðéëïãÝò ìðïñïýí íá ðÜñïõí áíôßãñáöá áóöáëåßáò êáé íá åðáíáöÝñïõí "
+"ôï /etc\n"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select a scanner model"
-msgstr "ÅðéëÝîôå Ýíá ìïíôÝëï óáñùôÞ"
+#: ../../standalone/drakbackup_.c:1575
+msgid "Backup your System files. (/etc directory)"
+msgstr "Áíôßãñáöï áóöáëåßáò ôùí áñ÷åßùí ÓõóôÞìáôïò (êáôÜëïãïò /etc )"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-"\n"
-"\n"
-" Áðïäï÷Þ ¶ñíçóç."
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Ñõèìßóåéò Drakbackup"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr "ÁðïèÞêåõóç Ùò.."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr "ÊïñÝá (Âüñåéá)"
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1578
msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
msgstr ""
-"Ç äéåðáöÞ äåí Ý÷åé ñõèìéóôÞ áêüìá. \n"
-"ÅêôåëÝóôå ôïí ïäçãü ñýèìéóçò óôçí êõñßùò ïèüíç"
-
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System configuration"
-msgstr "Ñýèìéóç óõóôÞìáôïò"
-
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "Áõôüìáôç óýíäåóç"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin Password"
-msgstr "Êùäéêüò Ðñüóâáóçò Äéá÷åéñéóôÞ ÔïìÝá"
+"Ìå áõôÞ ôçí åðéëïãÞ èá ìðïñåßôå íá åðáíáöÝñåôå ïðïéáäÞðïôå\n"
+"Ýêäïóç ôïõ êáôáëüãïõ /etc."
-#: ../advertising/05-desktop.pl:1
-#, fuzzy, 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, ..."
+#: ../../standalone/drakbackup_.c:1595
+msgid "Please check all users that you want to include in your backup."
msgstr ""
-"Ôï Mandrake Linux 9.2 óáò ðáñÝ÷åé 11 äéáöïñåôéêÜ ãñáöéêÜ ðåñéâÜëëïíôá ðïõ "
-"ìðïñïýí íá ìåôáôñáðïýí ðëÞñùò: KDE 3, Gnome 2, WindowMaker, ..."
+"Ðáñáêáëþ åðéëÝîôå üóïõò ÷ñÞóôåò èÝëåôå íá õðÜñ÷ïõí óôá áíôßãñáöá áóöáëåßáò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer ..."
-msgstr "Ñõèìßæåôáé ï åêôõðùôÞò ..."
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
+msgstr ""
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, 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)"
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "MB"
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+msgid "Remove Selected"
+msgstr "Áöáßñåóç ÅðéëåãìÝíùí"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
-msgstr "áí ïñéóôåß íáé, Ýëåã÷ïò ôçò âÜóçò äåäïìÝíùí rpm."
+#: ../../standalone/drakbackup_.c:1679
+msgid "Windows (FAT32)"
+msgstr "Windows (FAT32)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr "ÐáñèÝíïé ÍÞóïé(ÂñåôáíéêÝò)"
+#: ../../standalone/drakbackup_.c:1714
+msgid "Users"
+msgstr "×ñÞóôåò"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bermuda"
-msgstr "Âåñìïýäåò"
+#: ../../standalone/drakbackup_.c:1740
+msgid "Use network connection to backup"
+msgstr "×ñÞóç óýíäåóç äéêôýïõ ãéá ôá áñ÷åßá áóöáëåßáò"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
-msgstr "êÜíôå êëéê åäþ áí åßóôå âÝâáéïé"
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
msgstr ""
-"Äåí âñÝèçêå ñýèìéóç\n"
-"ðáñáêáëþ êÜíôå êëéê óôï Ïäçãü Þ óôï Ðñï÷ùñçìÝíï."
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:1747
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."
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-"Linux áíé÷íåýèçêå\n"
-"\n"
-"\n"
-" Ïëïêëçñþèçêå\n"
-"\n"
-"\n"
-" Linux\n"
-"\n"
-" ¼íïìá\n"
-"\n"
-" ¼íïìá\n"
-"\n"
-"\n"
-" IDE\n"
-"\n"
-"\n"
-" IDE\n"
-"\n"
-"\n"
-" ðñùôåýïõóá IDE\n"
-"\n"
-" ðñùôåýïõóá IDE\n"
-"\n"
-" äåõôåñåýïõóá IDE\n"
-"\n"
-" äåõôåñåýïõóá IDE\n"
-"\n"
-"\n"
-"."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Remove"
-msgstr "Áöáßñåóçò"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr "Ëåóüôï"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr "utopia 25"
+#: ../../standalone/drakbackup_.c:1748
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+" ÌåôáöïñÜ \n"
+"Ôþñá"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
-msgstr "ÄéáóùëÞíùóç åñãáóßáò óå åíôïëÞ"
+#: ../../standalone/drakbackup_.c:1749
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
+msgstr ""
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "Íá áöáéñåèåß ôï áñ÷åßï loopback;"
+#: ../../standalone/drakbackup_.c:1753
+msgid "Please enter the host name or IP."
+msgstr "Ðáñáêáëþ ïñßóôå ôïí äéêôõáêü üíïìá Þ ôçí IP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "ÁêôÞ Åëåöáíôïóôïý"
+#: ../../standalone/drakbackup_.c:1758
+msgid ""
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "äçìéïõñãÞèçêå íÝá äõíáìéêÞ óõóêåõÞ áðü ôïí êåíôñéêü ðõñÞíá devfs"
+#: ../../standalone/drakbackup_.c:1763
+msgid "Please enter your login"
+msgstr "Ðáñáêáëþ åéóÜãåôå ôï üíïìá ÷ñÞóôç"
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "Íáé"
+#: ../../standalone/drakbackup_.c:1768
+msgid "Please enter your password"
+msgstr "Ðáñáêáëþ åéóÜãåôå ôïí êùäéêü ðñüóâáóçò"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Ðïéï ðñùôüêïëëï èÝëåôå íá ÷ñçóéìïðïéÞóåôå;"
+#: ../../standalone/drakbackup_.c:1774
+msgid "Remember this password"
+msgstr "Áðïìíçìüíåõóç ôïõ êùäéêïý ðñüóâáóçò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Progress"
-msgstr "Ðñüïäïò ÁíÜêôçóçò"
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
-msgstr "Åóèïíßá"
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
+msgstr "×ñÞóç CD/DVDROM ãéá ôá áñ÷åßá áóöáëåßáò"
-#: ../../partition_table.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1882
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."
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-"ÕðÜñ÷åé Ýíá êåíü óôïí ðßíáêá êáôáôìÞóåùí ìá äåí ìðïñþ íá ôï ÷ñçóéìïðïéÞóù.\n"
-"Ç ìïíáäéêÞ ëýóç åßíáé íá ìåôáêéíÞóåôå ôéò ðñùôåýïõóåò êáôáôìÞóåéò óáò Ýôóé "
-"þóôå ôï êåíü íá âñåèåß äßðëá óôçí åêôåôáìÝíç êáôÜôìçóç"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
+#: ../../standalone/drakbackup_.c:1887
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Ðáñáêáëþ ïñßóôå ôïí ÷þñï ôïõ CD/DVD "
+
+#: ../../standalone/drakbackup_.c:1893
+msgid "Please check for multisession CD"
msgstr ""
-"ÅðéëÝîôå ôïí õðïëïãéóôÞ ôïõ ïðïßïõ ïé ôïðéêïß óáñùôÝò èá ãßíïõí äéáèÝóéìïé:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Channel"
-msgstr "ÊáíÜëé"
+#: ../../standalone/drakbackup_.c:1899
+msgid "Please check if you are using CDRW media"
+msgstr "Ðáñáêáëþ ïñßóôå áí êÜíåôå ÷ñÞóç óõóêåõÞò CDRW"
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Add"
-msgstr "ÐñïóèÞêç"
+#: ../../standalone/drakbackup_.c:1905
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr "ÓöÜëìá êáôÜ ôçí áðïóôïëÞ ìçíýìáôïò. \n"
+#: ../../standalone/drakbackup_.c:1906
+msgid " Erase Now "
+msgstr "ÓâÞóéìï Ôþñá "
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "Ðëçêôñïëüãéï"
+#: ../../standalone/drakbackup_.c:1912
+msgid "Please check if you are using a DVDR device"
+msgstr "Ðáñáêáëþ ïñßóôå áí êÜíåôå ÷ñÞóç óõóêåõÞò DVDR"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1918
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Ðáñáêáëþ ïñßóôå áí êÜíåôå ÷ñÞóç óõóêåõÞò DVDRAM"
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1931
msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
+"Ðáñáêáëþ åéóÜãåôå ôï üíïìá ôçò óõóêåõÞò åããñáöÞò CD\n"
+"ð.÷. : 0,1,0"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "ÅðéëÝîôå ôç óýíäåóç ðïõ èÝëåôå íá ñõèìßóåôå"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Ðáñáêáëþ ðåñéìÝíåôå, ñõèìßæåôáé ôï åðßðåäï áóöáëåßáò..."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Ñýèìéóç óõóêåõÞò äéêôýïõ %s"
+#: ../../standalone/drakbackup_.c:1964
+msgid "No CD device defined!"
+msgstr "Äåí êáèïñßóôçêå óõóêåõÞ CD"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
-msgstr "åíåñãïðïéçìÝíï"
+#: ../../standalone/drakbackup_.c:2012
+msgid "Use tape to backup"
+msgstr "×ñÞóç ôáéíßáò ãéá ôá áñ÷åßá áóöáëåßáò"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
msgstr ""
-"Ðáñáêáëþ åðéëÝîôå ðïéá äéåðáöÞ äéêôýïõ èá ÷ñçóéìïðïéÞóåôå ãéá ôïí "
-"åîõðçñåôçôÞ dhcp."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "ÁíáæÞôçóç ðáêÝôùí ðñïò áíáâÜèìéóç..."
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
-msgstr "Óçìåßï óýíäåóçò: "
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
-msgstr "áíÜëõóç üëùí ôùí ãñáììáôïóåéñþí"
-
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Allow/Forbid direct root login."
-msgstr "¼ëá ôá áðïìáêñõóìÝíá ìç÷áíÞìáôá"
+"Ðáñáêáëþ åéóÜãåôáé ôï üíïìá óõóêåõÞò ãéá ôç ÷ñÞóç ôùí áíôéãñÜöùí áóöáëåßáò"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
+#: ../../standalone/drakbackup_.c:2021
+msgid "Please check if you want to use the non-rewinding device."
msgstr ""
-"\n"
-"\n"
-" Áðïäï÷Þ ¶ñíçóç."
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
-msgstr "Ìå ×"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Ñýèìéóç ðïëëþí êåöáëþí"
+#: ../../standalone/drakbackup_.c:2027
+msgid "Please check if you want to erase your tape before the backup."
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "No browser available! Please install one"
-msgstr "Äåí âñÝèçêå ðåñéçãçôÞò! Ðáñáêáëþ åãêáôáóôÞóôå ôïí"
+#: ../../standalone/drakbackup_.c:2033
+msgid "Please check if you want to eject your tape after the backup."
+msgstr ""
-#: ../../Xconfig/main.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
msgstr ""
-"ÄéáôÞñçóç õðáñ÷üíôùí ñõèìßóåùí;\n"
-"Ïé ôñÝ÷ïõóåò ñõèìßóåéò åßíáé:\n"
-"\n"
-"%s"
+"Ðáñáêáëþ åðéëÝîôå ôï ìÝãéóôï ìÝãåèïò\n"
+"ðïõ åðéôñÝðåôáé óôï Drakbackup"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr ""
-"Äåí ìðïñåßôå íá ÷ñçóéìïðïéÞóåôå ôï ReiserFS ãéá êáôáôìÞóåéò ìéêñüôåñåò áðü "
-"32MB"
+#: ../../standalone/drakbackup_.c:2103
+msgid "Please enter the directory to save to:"
+msgstr "Ðáñáêáëþ ïñßóôå ôïí êáôÜëïãï áðïèÞêåõóçò: "
-#: ../../services.pm:1
-#, 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)."
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+msgid "Use quota for backup files."
msgstr ""
-"Ôï ðñùôüêïëëï rwho åðéôñÝðåé óå áðïìáêñõóìÝíïõò ÷ñÞóôåò íá äïõí Ýíáí \n"
-"êáôÜëïãï ôùí ÷ñçóôþí ôïõ óõóôÞìáôïò (ðáñüìïéï ìå ôï finger)."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "¼íïìá ÔïìÝá"
+#: ../../standalone/drakbackup_.c:2180
+msgid "Network"
+msgstr "Äßêôõï"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Sharing of local printers"
-msgstr "ÊïéíÞ ÷ñÞóç ôïðéêþí åêôõðùôþí"
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
+msgstr "CDROM / DVDROM"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
-msgstr ""
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
+msgstr "Óêëçñüò Äßóêïò / NFS"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Available printers"
-msgstr "ÄéáèÝóéìïé åêôõðùôÞò"
+#: ../../standalone/drakbackup_.c:2195
+msgid "Tape"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "NO"
-msgstr "ÐËÇÑÏÖÏÑÉÅÓ"
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
+msgstr "ùñéáßá"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "¶äåéï"
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
+msgstr "êáèçìåñéíÜ"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
-msgstr "ðëÜôïò êåéìÝíïõ"
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
+msgstr "åâäïìáäéáßá"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Ðïý èÝëåôå íá óõíäÝóåôå ôçí óõóêåõÞ %s;"
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
+msgstr "ìçíéáßá"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Ç ðñïêáèïñéóìÝíç ìßóèùóç (óå äåõôåñüëåðôá)"
+#: ../../standalone/drakbackup_.c:2229
+msgid "Use daemon"
+msgstr "×ñÞóç äáßìïíá"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2234
msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
+"Please choose the time \n"
+"interval between each backup"
msgstr ""
-"\n"
-"\n"
-"\n"
-"Ôþñá èá ñõèìßóïõìå ôçí %s óýíäåóç.\n"
-"\n"
-"\n"
-"ÐáôÞóôå ôï OK ãéá íá îåêéíÞóåôå"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Interface \"%s\""
-msgstr "ÄéåðáöÞ \"%s\""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Ìå ôçí âáóéêÞ ôåêìçñßùóç (óõíéóôÜôáé!)"
+"Ðáñáêáëþ åðéëÝîôå ôï \n"
+"äéÜóôçìá ìåôáîý ôïõ êÜèå\n"
+"áíôßãñáöïõ áóöáëåßáò"
-#: ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr "1 ðëÞêôñïõ"
+#: ../../standalone/drakbackup_.c:2240
+msgid ""
+"Please choose the\n"
+"media for backup."
+msgstr ""
+"Ðáñáêáëþ åðéëÝîôå ôï \n"
+"ìÝóï ãéá ôá áíôßãñáöá \n"
+"áóöáëåßáò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2247
msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
"\n"
-"There are %d unknown printers directly connected to your system"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-"\n"
-"Åßíáé %d åêôõðùôÝò óõíäåìÝíïé áðåõèåßáò óôï óýóôçìÜ óáò"
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Test"
-msgstr "ÄïêéìÞ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea"
-msgstr "ÊïñÝá"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Ç åðéëïãÞ óáò; (åî ïñéóìïý `%s'%s) "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer"
-msgstr "ÁêáôÝñãáóôïò åêôõðùôÞò"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "official vendor name of the cpu"
-msgstr "Ôï åðßóçìï üíïìá êáôáóêåõáóôÞ ôïõ åðåîåñãáóôÞ"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
+msgstr ""
+"ÁðïóôïëÞ çëåêôñïíéêïý ìçíýìáôïò ìåôÜ áðü êÜèå ëÞøç áíôéãñÜöùí áóöáëåßáò óôï:"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Vendor"
-msgstr "ÊáôáóêåõáóôÞò"
+#: ../../standalone/drakbackup_.c:2324
+msgid "What"
+msgstr "Ôé"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s"
-msgstr "ÄéåðáöÞ %s"
+#: ../../standalone/drakbackup_.c:2329
+msgid "Where"
+msgstr "Ðïõ"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "Ñýèìéóç ðïíôéêéïý"
+#: ../../standalone/drakbackup_.c:2334
+msgid "When"
+msgstr "Ðüôå"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
-msgstr "ÅðéëÝîôå óçìåßá óýíäåóçò"
+#: ../../standalone/drakbackup_.c:2339
+msgid "More Options"
+msgstr "Ðåñéóóüôåñåò ÅðéëïãÝò"
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr "ÅíôÜîåé"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+msgid "Drakbackup Configuration"
+msgstr "Ñõèìßóåéò Drakbackup"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "Ãéïõãêïóëáâéêü (ëáôéíéêü)"
+#: ../../standalone/drakbackup_.c:2376
+msgid "Please choose where you want to backup"
+msgstr "Ðáñáêáëþ åðéëÝîôå ôçí èÝóç ôùí áíôéãñÜöùí áóöáëåßáò"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "ÅãêáôÜóôáóç"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
+msgstr "óôïí Óêëçñü Äßóêï"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan"
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
+msgstr "óôï Äßêôõï"
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
-msgstr "Åêêßíçóç userdrake"
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
+msgstr "óôï CDROM"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Ðñüêåéôáé ãéá åãêáôÜóôáóç Þ ãéá áíáâÜèìéóç;"
+#: ../../standalone/drakbackup_.c:2406
+msgid "on Tape Device"
+msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "ISDN card"
-msgstr "ÅóùôåñéêÞ êÜñôá ISDN"
+#: ../../standalone/drakbackup_.c:2449
+msgid "Please choose what you want to backup"
+msgstr "Ðáñáêáëþ åðéëÝîôå ôé èÝëåôå íá ðÜñåôå óå áíôßãñáöá áóöáëåßáò"
-#: ../advertising/02-community.pl:1
-#, fuzzy, c-format
-msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
-msgstr "Linux"
+#: ../../standalone/drakbackup_.c:2450
+msgid "Backup system"
+msgstr "Áíôßãñáöï Áóöáëåßáò ÓõóôÞìáôïò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-Óêëçñüò Äßóêïò.\n"
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
+msgstr "Áíôßãñáöï Áóöáëåßáò ×ñçóôþí"
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
+msgstr "ÅðéëïãÞ ÷ñÞóôç ÷åéñïêßíçôá"
+
+#: ../../standalone/drakbackup_.c:2537
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."
+"Backup Sources: \n"
msgstr ""
-"åíåñãïðïßçóç ôþñá Linux\n"
-"\n"
-"\n"
-" íÝï\n"
-" Linux\n"
-"\n"
-" ÅãêáôÜóôáóç\n"
"\n"
+"- ÐçãÝò ÁíôéãñÜöùí Áóöáëåßáò:\n"
+
+#: ../../standalone/drakbackup_.c:2538
+msgid ""
"\n"
+"- System Files:\n"
+msgstr ""
"\n"
+"- Áñ÷åßá ÓõóôÞìáôïò:\n"
+
+#: ../../standalone/drakbackup_.c:2540
+msgid ""
"\n"
+"- User Files:\n"
+msgstr ""
"\n"
-" ÁíáâÜèìéóç\n"
-" Linux\n"
-" ÷ñÞóôçò\n"
+"- Áñ÷åßá ×ñçóôþí:\n"
+
+#: ../../standalone/drakbackup_.c:2542
+msgid ""
"\n"
+"- Other Files:\n"
+msgstr ""
"\n"
-" ÁíáâÜèìéóç Linux\n"
-" åêôåëåßôáé ÁíáâÜèìéóç\n"
-" Linux."
+"- ¶ëëá Áñ÷åßá:\n"
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakbackup_.c:2544
#, 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"
+"- Save on Hard drive on path: %s\n"
+msgstr ""
"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"- ÁðïèÞêåõóç óôïí óêëçñü äßóêï óôçí èÝóç: %s\n"
+
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
"\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"
+"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "ÁðïìáêñõóìÝíïò åêôõðùôÞò óå åîõðçñåôçôÞ CUPS"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2553
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+"\n"
+"- Burn to CD"
msgstr ""
-"ÁðÝôõ÷å ç áöáßñåóç ôïõ åêôõðùôÞ \"%s\" áðü ôï Star Office/OpenOffice.org/GIMP"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
-msgstr "åäþ áí ü÷é."
-
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "DHCP host name"
-msgstr "¼íïìá óõóôÞìáôïò"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Ç ìÝãéóôç ìßóèùóç (óå äåõôåñüëåðôá)"
+"\n"
+"- ÅããñáöÞ óå CD"
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr ""
-"Ðáñáêáëþ åðéëÝîôå óåéñéáêÞ èýñá óôçí ïðïßá åßíáé óõíäåäåìÝíï ôï ðïíôßêé óáò."
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
+msgstr "RW"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2555
#, c-format
-msgid "Did it work properly?"
-msgstr "Ëåéôïýñãçóå óùóôÜ;"
+msgid " on device: %s"
+msgstr "Óôç ÓõóêåõÞ : %s"
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
msgstr ""
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "Öôù÷ü"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Report check result by mail"
-msgstr "áí ïñéóôåß íáé, áðïôÝëåóìá áíáöïñÜò åëÝã÷ïõ ìÝóù ôá÷õäñïìåßïõ."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
-msgstr "ÃñåíÜäá"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
-msgstr "To üñéï åêêßíçóçò DHCP"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "ÁíáóöáëÝò"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "SSH server"
-msgstr "ÅîõðçñåôçôÞò SSH"
-
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup_.c:2557
#, c-format
-msgid ", %s sectors"
-msgstr ", %s ôïìåßò"
-
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "¼÷é"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "Ãïõáäåëïýðç"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Kannada"
-msgstr "ÊáíáäÜò"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
-msgstr "äåí âñÝèçêå êáìßá ãñáììáôïóåéñÜ\n"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "ÈÝëåôå ôï BackSpace íá åðéóôñÝöåé Delete óôçí êïíóüëá;"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Óõ÷íüôçôá êáôáêüñõöçò áíáíÝùóçò"
-
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "ÂÞìá `%s'\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niger"
-msgstr "Íßãçñáò"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing %s ..."
-msgstr "Áöáéñåßôáé ï %s..."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No printer"
-msgstr "ÊáíÝíáò åêôõðùôÞò"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "alert configuration"
-msgstr "Ñýèìéóç åéäïðïéÞóåùí"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "ÅðéëïãÝò ÅêôõðùôÞ NetWare"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "%s BootSplash (%s) preview"
-msgstr "%s Ðñïåðéóêüðçóç (%s)Bootsplash"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "February"
-msgstr "ÖåâñïõÜñéïò"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
-msgstr "ÃåíéêÜ"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
+msgid ""
+"\n"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "ÐñïóèÞêç ÷ñÞóôç"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Ñýèìéóç äéêôýïõ (%d ðñïóáñìïãåßò)"
-
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "April"
-msgstr "Áðñßëéïò"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Deactivate now"
-msgstr "áðåíåñãïðïßçóç ôþñá"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "¸íá áðáñáßôçôï áñ÷åßï (ôï %s ) äåí õðÜñ÷åé"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Öéëéððßíåò"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "ÅíôÜîåé"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "drakTermServ Overview"
+msgid "\t\tErase=%s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
-msgstr "¼íïìá ÏõñÜò ÅêôõðùôÞ"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "ÈÝëåôå íá ÷ñçóéìïðïéÞóåôå ôï aboot;"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belarusian"
-msgstr "Ëåõêïñùóßáò"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2561
#, c-format
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"\n"
+"- Save via %s on host: %s\n"
msgstr ""
-"Ôï PDQ õðïóôçñßæåé ìüíï ôïðéêïýò åêôõðùôÝò, ÁðïìáêñõóìÝíïò åêôõðùôÝò LPD êáé "
-"åêôõðùôÝò Sockete/TCP.\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup_.c:2562
#, c-format
-msgid "Move files to the new partition"
-msgstr "Ìåôáêßíçóç áñ÷åßùí óôçí íÝá êáôÜôìçóç"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr "ÐñïóèÞêç CUPS."
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
+msgstr ""
+"\t\t üíïìá ÷ñÞóôç: %s\n"
+"\t\t óôç èÝóç: %s \n"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2563
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."
+"- Options:\n"
msgstr ""
"\n"
-" ÅêôõðùôÞò Ïäçãüò\n"
-"\n"
-"\n"
-"\n"
-" áíé÷íåýèçêå\n"
-"\n"
-" Åðüìåíï ¶êõñï."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
-msgstr "ÍÞóïé Ðßôêáéñí"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Catalog"
-msgstr "ÅðáíáöïñÜ áðü ÊáôÜëïãï"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "ç óýíäåóç ôçò êáôÜôìçóçò %s óôïí êáôÜëïãï %s áðÝôõ÷å"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
-msgstr "Ïèüíç Lilo"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO ìå ãñáöéêü ìåíïý"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "Åêôßìçóç"
+"- ÅðéëïãÝò:\n"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
-msgstr "Äåí ìðïñåßôå íá áðïåðéëÝîåôå áõôü ôï ðáêÝôï. Åßíáé Þäç åãêáôåóôçìÝíï"
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
+msgstr "\t×ùñßò ôï Áñ÷åßï ÓõóôÞìáôïò\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "ÅêôõðùôÞò \"%s\" óå åîõðçñåôçôÞ SMB/Windows \"%s\""
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
+msgstr "\tÁíôßãñáöá Áóöáëåßáò ùò tar êáé bzip2\n"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "Íá óõíå÷ßóù;"
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
+msgstr "\tÁíôßãñáöá Áóöáëåßáò ùò tar êáé gzip\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:2572
#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "ØÜ÷íù ãéá äéáèÝóéìá ðáêÝôá êáé äçìéïõñãþ îáíÜ ôç âÜóç äåäïìÝíùí rpm..."
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
msgid ""
"\n"
-" DrakBackup Report \n"
+"- Daemon (%s) include:\n"
msgstr ""
"\n"
-" ÁíáöïñÜ DrakBackup \n"
-"\n"
+"- Äáßìïíáò (%s) ìáæß ìå :\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Öáßíåôáé íá ìçí åßíáé åããñÜøéìï ìÝóï!"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
+msgstr "\t-Óêëçñüò Äßóêïò.\n"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "Ðñïóäéïñéóìüò ðáñáìÝôñùí"
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
+msgstr "\t-CDROM.\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr "ÂáíïõÜôïõ"
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "New user list:\n"
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
+msgstr "\t-Äßêôõï ìÝóù FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
+msgstr "\t-Äßêôõï ìÝóù SSH.\n"
+
+#: ../../standalone/drakbackup_.c:2578
+msgid "\t-Network by rsync.\n"
msgstr ""
-"\n"
-"- Áñ÷åßá ×ñçóôþí:\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Åßôå ôï üíïìá ôïõ åîõðçñåôçôÞ Þ ç IP ôïõ ðñÝðåé íá äïèïýí!"
+#: ../../standalone/drakbackup_.c:2579
+msgid "\t-Network by webdav.\n"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2587
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"
+"List of data to restore:\n"
"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
msgstr ""
-"Ìéá ðñïóáñìïóìÝíç äéóêÝôá åêêßíçóçò óáò äßíåé ôçí äõíáôüôçôá íá åêêéíÞóåôå\n"
-"ôï óýóôçìÜ óáò ÷ùñßò ôçí ÷ñÞóç ôïõ ðñïãñÜììáôïò åêêßíçóçò. Áõôü åßíáé "
-"÷ñÞóéìï åÜí äåí èÝëåôå\n"
-"íá åãêáôáóôÞóåôå ôï SILO , Þ åÜí êÜðïéï Üëëï ëåéôïõñãéêü êáôáóôñÝøåé ôï "
-"SILOÞ åÜí ïé \n"
-"ñõèìßóåéò óáò äåí åðéôñÝðïõí ôç ÷ñÞóç SILO. ÁõôÞ ç äéóêÝôá ìðïñåß åðßóçò íá "
-"÷ñçóéìïðïéçèåß óå\n"
-" óõíäõáóìü ìå ôçí äéóêÝôá äéÜóùóçò ôïõ Mandrake, êÜíïíôáò åõêïëüôåñç ôçí "
-"åðáíáöïñÜ ôïõ óõóôÞìáôïò ìåôÜ áðü óïâáñÞ âëÜâç.\n"
+"Ëßóôá ôùí äåäïìÝíùí ðñïò åðáíáöïñÜ:\n"
"\n"
-"Áí èÝëåôå íá äçìéïõñãÞóåôå ìéá ôÝôïéá äéóêÝôá åéóÜãåôå ìéá êåíÞ äéóêÝôá óôïí "
-"ïäçãü\n"
-"äéóêÝôáò êáé ðáôÞóôå \"ÅíôÜîåé\"."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
+#: ../../standalone/drakbackup_.c:2754
+msgid ""
+"List of data corrupted:\n"
+"\n"
msgstr ""
-"Äåí ìðïñåßôå íá ÷ñçóéìïðïéÞóåôå êñõðôïãñáöçìÝíï óýóôçìá áñ÷åßùí ãéá "
-"ðñïóÜñôçóç %s"
+"Ëßóôá ôùí êáôåóôñáììÝíùí äåäïìÝíùí:\n"
+"\n"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password history length to prevent password reuse."
-msgstr ""
+#: ../../standalone/drakbackup_.c:2756
+msgid "Please uncheck or remove it on next time."
+msgstr "Ðáñáêáëþ áöáéñÝóôå ôï ôçí åðüìåíç öïñÜ."
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
-msgstr "ÍÞóïé Íüñöïëê"
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
+msgstr "Ôá áíôßãñáöá áóöáëåßáò åßíáé êáôåóôñáììÝíá"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Theme installation failed!"
-msgstr "Ç åãêáôÜóôáóç èÝìáôïò áðÝôõ÷å!"
+#: ../../standalone/drakbackup_.c:2787
+msgid " All of your selected data have been "
+msgstr " ¼ëá ôá åðéëåãìÝíá äåäïìÝíá Ý÷ïõí "
-#: ../../fsedit.pm:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "Nothing to do"
-msgstr "Êáìßá åíÝñãåéá ðñïò åêôÝëåóç"
+msgid " Successfuly Restored on %s "
+msgstr " Áíáêôçèåß ìå åðéôõ÷ßá óôï %s "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "×ñÞóç ãéá loopback"
+#: ../../standalone/drakbackup_.c:2906
+msgid " Restore Configuration "
+msgstr " Ñõèìßóåéò ÅðáíáöïñÜò "
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr "Åñãáëåßï ÁíáöïñÜò ÓöáëìÜôùí Mandrake"
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
+msgstr "ÅíôÜîåé ãéá ôçí åðáíáöïñÜ ôùí Üëëùí áñ÷åßùí."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pppoe"
-msgstr "÷ñÞóç pppoe"
+#: ../../standalone/drakbackup_.c:3019
+msgid "Backup the system files before:"
+msgstr "Áíôßãñáöá áóöáëåßáò áñ÷åßùí óõóôÞìáôïò ðñéí áðü:"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving files to the new partition"
-msgstr "Ìåôáêßíçóç áñ÷åßùí óôçí íÝá êáôÜôìçóç"
+#: ../../standalone/drakbackup_.c:3021
+msgid "please choose the date to restore"
+msgstr "Ðáñáêáëþ åðéëÝîôå ôçí çìåñïìçíßá åðáíáöïñÜò"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s ìå ÐÅÉÑÁÌÁÔÉÊÇ åðéôÜ÷õíóç ôñéóäéÜóôáôùí ãñáöéêþí"
+#: ../../standalone/drakbackup_.c:3057
+msgid "Use Hard Disk to backup"
+msgstr "×ñÞóç óêëçñïý äßóêïõ ãéá ôá áíôßãñáöá áóöáëåßáò"
-#: ../../help.pm:1 ../../interactive.pm:1
-#, c-format
-msgid "Advanced"
-msgstr "Ãéá Ðñï÷ùñçìÝíïõò"
+#: ../../standalone/drakbackup_.c:3060
+msgid "Please enter the directory to save:"
+msgstr "Ðáñáêáëþ ïñßóôå ôïí êáôÜëïãï áðïèÞêåõóçò: "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer"
-msgstr "ÌåôáöïñÜ"
+#: ../../standalone/drakbackup_.c:3103
+msgid "FTP Connection"
+msgstr "Óýíäåóç FTP"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Óïõçäéêü)"
+#: ../../standalone/drakbackup_.c:3110
+msgid "Secure Connection"
+msgstr "Áóöáëåßò óýíäåóç"
-#: ../../lang.pm:1
-#, c-format
-msgid "Afghanistan"
-msgstr "ÁöãáíéóôÜí"
+#: ../../standalone/drakbackup_.c:3134
+msgid "Restore from Hard Disk."
+msgstr "ÅðáíáöïñÜ áðü ôïí óêëçñü äßóêï."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "More Options"
-msgstr "Ðåñéóóüôåñåò ÅðéëïãÝò"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
+msgstr "Ðáñáêáëþ åéóÜãåôå ôïí êáôÜëïãï ðïõ âñßóêïíôáé ôá áíôßãñáöá áóöáëåßáò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr "ÄéáãñáöÞ ôùí áñ÷åßùí tar áðü ôï äßóêï ìåôÜ ôç ìåôáöïñÜ óå Üëëï ìÝóï."
+#: ../../standalone/drakbackup_.c:3204
+msgid "Select another media to restore from"
+msgstr "ÅðéëÝîôå Üëëï ìÝóï ãéá ôçí áíÜêôçóç"
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "Ìðïõñïýíôé"
+#: ../../standalone/drakbackup_.c:3206
+msgid "Other Media"
+msgstr "¶ëëá ÌÝóá"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"Ôï cron åßíáé ìéá âáóéêÞ õðçñåóßá UNIX ðïõ ôñÝ÷åé åíôïëÝò êáèïñéóìÝíåò áðü \n"
-"ôïí ÷ñÞóôç óå ôáêôÜ ÷ñïíéêÜ äéáóôÞìáôá. Ôï vixie cron ðñïóèÝôåé Ýíáí "
-"áñéèìü \n"
-"åðéðëÝïí äõíáôïôÞôùí ðïõ ðåñéëáìâÜíïõí êáëýôåñç áóöÜëåéá êáé ðéï éó÷õñÝò "
-"ñõèìßóåéò."
+#: ../../standalone/drakbackup_.c:3211
+msgid "Restore system"
+msgstr "ÅðáíáöïñÜ óõóôÞìáôïò"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr "ÐñïóèÞêç ÐåëÜôç -->"
+#: ../../standalone/drakbackup_.c:3212
+msgid "Restore Users"
+msgstr "ÅðáíáöïñÜ ×ñçóôþí"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "ÄéáâÜóôå ðñïóåêôéêÜ!"
+#: ../../standalone/drakbackup_.c:3213
+msgid "Restore Other"
+msgstr "ÅðáíáöïñÜ ¶ëëùí"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
-msgstr "RW"
+#: ../../standalone/drakbackup_.c:3215
+msgid "select path to restore (instead of /)"
+msgstr "åðéëÝîôå ôç èÝóç åðáíáöïñÜò (áíôß ôïõ /)"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "Èýñá"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
-msgstr "¼÷é (ìüíï ãéá åéäéêïýò)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-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
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Press enter to boot the selected OS, 'e' to edit the"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
-msgstr "Ïñéóìüò GID"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The encryption keys do not match"
-msgstr "Ôá êëåéäéÜ êñõðôïãñÜöçóçò åßíáé áíüìïéá"
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
+msgstr "Áöáßñåóç êáôáëüãùí ÷ñçóôþí ðñéí áðü ôçí åðáíáöïñÜ."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3334
msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "USB printer"
-msgstr ", åêôõðùôÞò USB"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Äåîéü ðëÞêôñï \"Windows\""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr "áí ïñéóôåß íáé, Ýëåã÷ïò êåíþí êùäéêþí ðñüóâáóçò óôï /etc/shadow."
-
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:3344
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."
+"Restore Selected\n"
+"Files"
msgstr ""
-"\n"
-" Linux\n"
-" Áðïäï÷Þ\n"
-"."
+"ÅðáíáöïñÜ ÅðéëåãìÝíùí\n"
+"Áñ÷åßùí"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3361
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
+"Change\n"
+"Restore Path"
msgstr ""
-"ÁõôÞ åßíáé ìéá ëßóôá ìå ôéò äéáèÝóéìåò åðéëïãÝò åêôýðùóçò ãéá ôïí ôñÝ÷ïí "
-"åêôõðùôÞ:\n"
-"\n"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "Áíáëýóåéò"
+"ÁëëáãÞ\n"
+"ÈÝóç ÅðáíáöïñÜò"
-#: ../../network/drakfirewall.pm:1
+#: ../../standalone/drakbackup_.c:3427
#, 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."
-msgstr ""
-"ñýèìéóç tinyfirewall\n"
-"\n"
-"Áõôü ñõèìßæåé ôï ðñïóùðéêü óáò firewall ãéá áõôü ôï ìç÷Üíçìá Mandrake "
-"Linux.\n"
-"Ãéá ìéá éó÷õñÞ áöïóéùìÝíç ëýóç firewall, ðáñáêáëþ êïéôÜîôå óôçí\n"
-"åéäéêåõìÝíç MandrakeSecurity Firewall äéáíïìÞ."
+msgid "Backup files not found at %s."
+msgstr "Ôá áíôßãñáöá áóöáëåßáò äåí âñÝèçêáí óôï %s."
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../standalone/drakbackup_.c:3440
#, c-format
msgid ""
-"Please enter your username, password and domain name to access this host."
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-"Ðáñáêáëþ åéóÜãåôå ôï üíïìá ÷ñÞóôç ôïí êùäéêü ðñüóâáóçò êáé ôï üíïìá ôïìÝá "
-"ãéá ôç óýíäåóç óôïí host."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Remove selected host"
-msgstr "Áöáßñåóç åðéëåãìÝíïõ õðïëïãéóôÞ"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network configuration"
-msgstr "Ñõèìßóåéò äéêôýïõ"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Åíôïðéóìüò _ïäçãþí jaz"
-
-#: ../../any.pm:1
-#, c-format
-msgid "No sharing"
-msgstr "×ùñßò êïéíÞ ÷ñÞóç"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Ìåôáêßíçóç ôïõ åðéëåãìÝíïõ êáíüíá Ýíá åðßðåäï êÜôù"
-
-#: ../../common.pm:1
-#, c-format
-msgid "TB"
-msgstr "TB"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "FATAL"
-msgstr "ÌÏÉÑÁÉÏ"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Refresh the list"
-msgstr "Ëßóôá ÷ñçóôþí"
+#: ../../standalone/drakbackup_.c:3440
+msgid "Restore From CD"
+msgstr "ÅðáíáöïñÜ áðü CD"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup_.c:3442
#, 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."
+msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakpxe:1
+#: ../../standalone/drakbackup_.c:3452
#, 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"
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
-"Ï åîõðçñåôçôÞò DHCP èá åðéôñÝðåé Üëëïõò õðïëïãéóôÝò íá îåêéíïýí ìå ôç ÷ñÞóç "
-"ôïõ PXE ìå ìéá äïèåßóá äéåýèõíóç\n"
-"\n"
-"Ç äéåýèõíóç äéêôýïõ åßíáé %s ìå ÷ñÞóç ìÜóêá äéêôýïõ%s.\n"
-"\n"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete"
-msgstr "ÄéáãñáöÞ"
+#: ../../standalone/drakbackup_.c:3452
+msgid "Restore From Tape"
+msgstr ""
-#: ../../Xconfig/various.pm:1
+#: ../../standalone/drakbackup_.c:3454
#, 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 "Not the correct tape label. Tape is labelled %s."
msgstr ""
-"Ìðïñþ íá ñõèìßóù ôï óýóôçìÜ óáò Ýôóé þóôå íá îåêéíÜåé áõôüìáôá óå\n"
-"ãñáöéêü ðåñéâÜëëïí (XFree).\n"
-"Åðéèõìåßôå ôçí áõôüìáôç åêêßíçóç ãñáöéêïý ðåñéâÜëëïíôïò;"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
-msgstr "Äçìéïõñãßá äéóêÝôáò"
+#: ../../standalone/drakbackup_.c:3474
+msgid "Restore Via Network"
+msgstr "ÅðáíáöïñÜ ìÝóù äéêôýïõ"
-#: ../../standalone/net_monitor:1
+#: ../../standalone/drakbackup_.c:3474
#, c-format
-msgid "Disconnect %s"
-msgstr "Áðïóýíäåóç %s"
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
-msgstr "ÊáôÜóôáóç:"
+#: ../../standalone/drakbackup_.c:3475
+msgid "Host Name"
+msgstr "¼íïìá ÓõóôÞìáôïò"
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "SSH Server"
-msgstr "ÅîõðçñåôçôÞò SSH"
+#: ../../standalone/drakbackup_.c:3483
+msgid "Password required"
+msgstr "Áðáéôåßôáé êùäéêüò ðñüóâáóçò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-Äßêôõï ìÝóù rsync.\n"
+#: ../../standalone/drakbackup_.c:3489
+msgid "Username required"
+msgstr "Áðáéôåßôáé üíïìá ÷ñÞóôç"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
-msgstr "Åõñùðáúêü ðñùôüêïëëï"
+#: ../../standalone/drakbackup_.c:3492
+msgid "Hostname required"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", åêôõðùôÞò \"%s\"óôïí åîõðçñåôçôÞ \"%s\""
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
+msgstr "Ç ÈÝóç Þ ôï ¶ñèñùìá áðáéôåßôáé"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
msgstr ""
-"\n"
-"\n"
-" Óçìåßùóç."
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
-#, c-format
-msgid "Error"
-msgstr "ÓöÜëìá"
+#: ../../standalone/drakbackup_.c:3513
+msgid "Restore Failed..."
+msgstr "Ç ÅðáíáöïñÜ ÁðÝôõ÷å..."
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
-msgstr "äõíáôüôçôá \"su\""
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
+msgstr "ÅðáíáöïñÜ üëùí ôùí áíôéãñÜöùí áóöáëåßáò"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Australia"
-msgstr "Áõóôñáëßá"
+#: ../../standalone/drakbackup_.c:3760
+msgid "Custom Restore"
+msgstr "ÐñïóáñìïóìÝíç ÅðáíáöïñÜ"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "ðáñáêáëþ ðåñéìÝíåôå êáôÜ ôï ttmkfdir..."
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
+msgstr "Ôï CD åßíáé óôç èÝóç ôïõ - óõíÝ÷åéá"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Ñýèìéóç ìüíï ôçò êÜñôáò \"%s\" %s"
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Level"
-msgstr "Åðßðåäï"
+#: ../../standalone/drakbackup_.c:3813
+msgid "Restore From Catalog"
+msgstr "ÅðáíáöïñÜ áðü ÊáôÜëïãï"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Change the printing system"
-msgstr "ÁëëáãÞ óõóôÞìáôïò åêôýðùóçò"
+#: ../../standalone/drakbackup_.c:3841
+#, fuzzy
+msgid "Restore Progress"
+msgstr "ÅðáíáöïñÜ áðü áñ÷åßï"
+
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+msgid "Previous"
+msgstr "Ðñïçãïýìåíï"
+
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+msgid "Save"
+msgstr "ÁðïèÞêåõóç"
-#: ../../Xconfig/card.pm:1
-#, fuzzy, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"\n"
-" Ôé?"
+#: ../../standalone/drakbackup_.c:3946
+msgid "Build Backup"
+msgstr "Äçìéïõñãßá áíôéãñÜöùí áóöáëåßáò"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr "óýíäåóç áðÝôõ÷å: "
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+msgid "Restore"
+msgstr "ÅðáíáöïñÜ"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "Ñýèìéóç õðçñåóéþí"
+#: ../../standalone/drakbackup_.c:4189
+msgid ""
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
+msgstr ""
+"ÓöÜëìá óôï sendmail\n"
+" Ç áíáöïñÜ äåí óôÜëèçêå\n"
+" ðáñáêáëþ ñõèìßóôå ôï sendmail"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Äéåýèõíóç ÌåôÜäïóçò:"
+#: ../../standalone/drakbackup_.c:4195
+msgid ""
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
+msgstr ""
+"ÓöÜëìá êáôÜ ôçí áðïóôïëÞ áñ÷åßïõ ìÝóù FTP.\n"
+"Ðáñáêáëþ äéïñèþóôå ôç ñýèìéóç ôïõ FTP."
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4209
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."
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
msgstr ""
+"Ôá ðáñáêÜôù ðáêÝôá ðñÝðåé íá åãêáôáóôáèïýí:\n"
+" @list_of_rpm_to_install"
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "Åéêüíá"
+#: ../../standalone/drakbackup_.c:4232
+msgid "Please select data to restore..."
+msgstr "Ðáñáêáëþ åðéëÝîôå ôá äåäïìÝíá ðñïò åðáíáöïñÜ..."
-#: ../../services.pm:1
-#, c-format
-msgid "Remote Administration"
-msgstr "ÁðïìáêñõóìÝíç äéá÷åßñéóç"
+#: ../../standalone/drakbackup_.c:4267
+msgid "Please select media for backup..."
+msgstr "Ðáñáêáëþ åðéëÝîôå ôï ìÝóï ãéá ôá áíôßãñáöá áóöáëåßáò..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-msgstr ""
-"ÁðÝôõ÷å ç ðñïóèÞêç ôïõ åêôõðùôÞ \"%s\" óôï Star Office/OpenOffice.org/GIMP"
+#: ../../standalone/drakbackup_.c:4275
+msgid "Please select data to backup..."
+msgstr "Ðáñáêáëþ åðéëÝîôå ôá áñ÷åßá ðïõ èá ãßíïõí áíôßãñáöá áóöáëåßáò"
-#: ../../modules.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-"Äåí õðÜñ÷åé ðëÝïí õðïóôÞñéîç PCMCIA ãéá ôïõò ðõñÞíåò 2.2. ÊÜíôå ÷ñÞóç ôïõ "
-"ðõñÞíá 2.4."
+"Äåí âñÝèçêå ñýèìéóç\n"
+"ðáñáêáëþ êÜíôå êëéê óôï Ïäçãü Þ óôï Ðñï÷ùñçìÝíï."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Selected All"
-msgstr "ÅðéëïãÞ ¼ëùí"
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
+msgstr "Õðü ÁíÜðôõîç ... ðáñáêáëþ ðåñéìÝíåôå."
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
+#: ../../standalone/drakbackup_.c:4382
+msgid "Backup system files"
+msgstr "Áíôßãñáöá áóöáëåßáò ôïõ óõóôÞìáôïò áñ÷åßùí"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Webmin Service"
-msgstr "Õðçñåóßá Webmin"
+#: ../../standalone/drakbackup_.c:4384
+msgid "Backup user files"
+msgstr "Áíôßãñáöá áóöáëåßáò áñ÷åßùí ÷ñçóôþí"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
-msgstr "óõóêåõÞ"
+#: ../../standalone/drakbackup_.c:4386
+msgid "Backup other files"
+msgstr "Áíôßãñáöá áóöáëåßáò Üëëùí áñ÷åßùí"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Enter the directory to save to:"
-msgstr "Ðáñáêáëþ ïñßóôå ôïí êáôÜëïãï áðïèÞêåõóçò: "
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
+msgstr "ÓõíïëéêÞ Ðñüïäïò"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
-msgstr "ÅëëÜäá"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
+msgstr "áðïóôïëÞ áñ÷åßùí ìÝóù FTP"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "¼ëá"
+#: ../../standalone/drakbackup_.c:4416
+msgid "Sending files..."
+msgstr "ÁðïóôïëÞ áñ÷åßùí..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Ðïéï óýóôçìá åêôýðùóçò èÝëåôå íá ÷ñçóéìïðïéÞóåôå;"
+#: ../../standalone/drakbackup_.c:4500
+msgid "Backup Now from configuration file"
+msgstr "Äçìéïõñãßá ÁíôéãñÜöùí Áóöáëåßáò áðü ôï áñ÷åßï ñõèìßóåùí"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
-msgstr "Éïýëéïò"
+#: ../../standalone/drakbackup_.c:4505
+msgid "View Backup Configuration."
+msgstr "ÐñïâïëÞ Ñõèìßóåùí ÁíôéãñÜöùí Áóöáëåßáò"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Prints into %s"
-msgstr ", åêôýðùóç óôï %s"
+#: ../../standalone/drakbackup_.c:4526
+msgid "Wizard Configuration"
+msgstr "Ñõèìßóåéò Ïäçãïý"
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "ÐñïêëÞèçêå óöÜëìá"
+#: ../../standalone/drakbackup_.c:4531
+msgid "Advanced Configuration"
+msgstr "Ðñï÷ùñçìÝíåò Ñõèìßóåéò"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Áõôü ôï ðáêÝôï ðñÝðåé íá áíáâáèìéóôåß\n"
-"Åßóôå óßãïõñïò üôé èÝëåôå íá ôï áðïåðéëÝîåôå;"
+#: ../../standalone/drakbackup_.c:4536
+msgid "Backup Now"
+msgstr "Áíôßãñáöá áóöáëåßáò Ôþñá"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "Ôáìéëéêü (äéÜôáîç ãñáöïìç÷áíÞ)"
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
+msgstr "Drakbackup"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
+#: ../../standalone/drakbackup_.c:4624
+msgid ""
+"options description:\n"
+"\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4654
msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
-msgstr "÷åéñïêßíçôá"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
+#: ../../standalone/drakbackup_.c:4662
+msgid ""
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "ÊáôáóêåõáóôÞ åêôõðùôÞ, ìïíôÝëï, ïäçãü"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4701
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
+"\n"
msgstr ""
-"Äåí õðÜñ÷åé ìÝóï Þ õðÜñ÷åé ðñïóôáóßá åããñáöÞò ãéá ôç óõóêåõÞ %s.\n"
-"Ðáñáêáëþ åéóÜãåôå Ýíá."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4727
+#, fuzzy
msgid ""
-"Directory %s already contains data\n"
-"(%s)"
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
-"Ï êáôÜëïãïò %s ðåñéÝ÷åé Þäç äåäïìÝíá\n"
-"(%s)"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "ÅêôõðùôÞ óå åîõðçñåôçôÞ NetWare"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "ÅéóÜãåôå ìÝãåèïò ìíÞìçò óå MB"
+" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr "ÐáñáóêåõÞ"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Ç áðïóýíäåóç áðü ôï Äéáäßêôõï ïëïêëçñþèçêå."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "Ðñáãìáôéêü üíïìá"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "done"
-msgstr "Ïëïêëçñþèçêå"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Ðáñáêáëþ áöáéñÝóôå ôï ôçí åðüìåíç öïñÜ."
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Higher"
-msgstr "Õøçëüôåñï"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "ÅðéëÝîôå êáôáôìÞóåéò ðñïò ìïñöïðïßçóç"
+#: ../../standalone/drakbackup_.c:4729
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+"áíáâáèìßóåéò 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft."
+"com>"
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4732
+#, fuzzy
msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
+"Description:\n"
"\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
"\n"
-"You can visit our hardware database at:\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
+"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
+"\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Äåí âñÝèçêå êÜñôá ôçëåüñáóçò óôï ìç÷ÜíçìÜ óáò.Ðáñáêáëþ âåâáéùèåßôå üôé ìéá "
-"õðïóôçñéæüìåíç êÜñôá óôï Linux åßíáé óõíäåìÝíç.\n"
+"ÐåñéãñáöÞ:\n"
"\n"
+"Ôï Drakbackup ÷ñçóéìïðïéåßôáé ãéá ôçí äçìéïõñãßá áíôéãñÜöùí áóöáëåßáò\n"
+"ÊáôÜ ôç ñýèìéóç ìðïñåßôå íá åðéëÝîåôå\n"
+"\t - Áñ÷åßá óõóôÞìáôïò, \n"
+"\t - Áñ÷åßá ÷ñçóôþí, \n"
+"\t - ¶ëëá áñ÷åßá.\n"
+"\tÞ ¼ëï ôï óýóôçìÜ óáò ... êáé ¶ëëá (üðùò êáôáôìÞóåéò Windows)\n"
"\n"
-"Ìðïñåßôå íá åðéóêåöôåßôå ôçí âÜóç äåäïìÝíùí óôï: \n"
+" Ôï Drakbackup óáò åðéôñÝðåé íá äçìéïõñãÞóåôå áíôßãñáöá áóöáëåßáò óå:\n"
+"\t - Óêëçñü Äßóêï.\n"
+"\t\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (ìå áõôüìáôç åêêßíçóç, êáé autoboot, rescue and "
+"autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t - Ôáéíßá.\n"
+"Ôï Drakbackup óáò åðéôñÝðåé ôçí åðáíáöïñÜ ôïõ óõóôÞìáôïò óáò óå\n"
+"åðéëåãìÝíï êáôÜëïãï ÷ñÞóôç\n"
+"\n"
+"Åî ïñéóìïý üëá ôá áíôßãñáöá áóöáëåßáò èá áðïèçêåõôïýí óôï \n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Äéáäéêáóßá ÅðáíáöïñÜò: \n"
+"\n"
+"ÊáôÜ ôç äéáäéêáóßá åðáíáöïñÜò ôï Drakbackup èá áöáéñÝóåé\n"
+"ôïí áñ÷éêü êáôÜëïãï êáé èá åðáëÞèåõóç ôçí áêåñáéüôçôá üëùí \n"
+"ôùí áñ÷åßùí óáò. ÓõíéóôÜôáé íá êÜíåôå áíôßãñáöá áóöáëåßáò ðñéí\n"
+"ôçí åðáíáöïñÜ.\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't find %s on %s"
-msgstr "Äåí âñÝèçêå ôï %s óôï %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "Éáðùíéêü 106 ðëÞêôñùí"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
+#: ../../standalone/drakbackup_.c:4769
+msgid ""
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Áõôü èá äéáñêÝóåé ìåñéêÜ ëåðôÜ."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
-msgstr "Ìðïõñêßíá ÖÜóï"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "June"
-msgstr "Éïýíéïò"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "×ñÞóç óáñùôþí óå áðïìáêñõóìÝíïõò õðïëïãéóôÝò"
+#: ../../standalone/drakbackup_.c:4778
+msgid ""
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
+msgstr ""
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Delete selected rule"
-msgstr "ÄéáãñáöÞ åðéëåãìÝíïõ êáíüíá"
+msgid "Installation of %s failed. The following error occured:"
+msgstr "Ç åãêáôÜóôáóç ôïõ %s áðÝôõ÷å. ÐñïêëÞèçêå ôï áêüëïõèï óöÜëìá:"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "CUPS"
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
+msgstr "Åñãáëåßï ÁíáöïñÜò ÓöáëìÜôùí Mandrake"
-#: ../../any.pm:1
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "ÅéóÜãåôå äéóêÝôá óôïí ïäçãü %s"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Ïäçãüò Ðñþôçò ÖïñÜò"
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
-msgstr "Ìáëäßâåò"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Åñãáëåßï Óõã÷ñïíéóìïý"
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "óõìðáãÞò"
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+msgid "Standalone Tools"
+msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
-msgstr "1 ëåðôü"
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "type: fat"
-msgstr "ôýðïò: %s"
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "on channel %d id %d\n"
-msgstr "óôï êáíÜëé %d id %d\n"
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
-msgstr ", ðïëõ÷ñçóôéêÞ óõóêåõÞ"
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msec"
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr "ËÜïò"
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "ÁðïìáêñõóìÝíïò ¸ëåã÷ïò"
-#: ../advertising/04-configuration.pl:1
-#, 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!"
-msgstr ""
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Äéá÷åéñéóôÞò Ëïãéóìéêïý"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
-msgstr ""
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
msgstr ""
-"Äåí õðÜñ÷åé êáôÜìôçóç FAT ãéá áëëáãÞ ìåãÝèïõò (Þ äåí õðÜñ÷åé áñêåôüò ÷þñïò)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr "ÐÜíù"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
-msgstr "Ôïß÷ïò Ðñïóôáóßáò"
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr "Ðåñéï÷Þ:"
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Ïäçãïß Ñýèìéóçò"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr "åëåãêôÝò (E)IDE/ATA"
+#: ../../standalone/drakbug_.c:75
+msgid "Application:"
+msgstr "ÅöáñìïãÞ:"
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
-msgstr ""
+#: ../../standalone/drakbug_.c:76
+msgid "Package: "
+msgstr "ÐáêÝôï:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "ÅîõðçñåôçôÞò Åêôõðþóåùí"
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
+msgstr "ÐõñÞíáò:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Custom configuration"
-msgstr "ÐñïóáñìïóìÝíç Ñýèìéóç"
+#: ../../standalone/drakbug_.c:78
+msgid "Release: "
+msgstr "¸êäïóç:"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbug_.c:93
msgid ""
-"Please indicate where the installation image will be available.\n"
-"\n"
-"If you do not have an existing directory, please copy the CD or DVD "
-"contents.\n"
"\n"
-msgstr ""
-"Ðáñáêáëþ äçëþóôå ôç èÝóç ðïõ èá åßíáé ðñïóâÜóéìç ç åéêüíáò åãêáôÜóôáóçò.\n"
"\n"
-"Áí äåí Ý÷åôå Ýíáí õðÜñ÷ïí êáôÜëïãï, ðáñáêáëþ áíôéãñÜøåôå ôá ðåñéå÷üìåíá ôïõ "
-"CD or DVD.\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
"\n"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr "Óáéíô Ðéåñ êáé Ìéêåëüí"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
-msgstr "ÓåðôÝìâñéïò"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "áðïèÞêåõóç èÝìáôïò Bootsplash ..."
+#: ../../standalone/drakbug_.c:112
+msgid "Report"
+msgstr "ÁíáöïñÜ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
-msgstr "Ðïñôïãáëßá"
+#: ../../standalone/drakbug_.c:148
+msgid "Not installed"
+msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "¸÷åôå Üëëïí;"
+#: ../../standalone/drakbug_.c:160
+#, fuzzy
+msgid "Package not installed"
+msgstr "ÅðéëïãÞ ðáêÝôùí"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", printing to %s"
-msgstr ", åêôýðùóç óôï %s"
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
+msgstr "óýíäåóç óôïí ïäçãü Bugzilla ..."
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Assign host name from DHCP address"
-msgstr "ÐñÝðåé íá ïñßóôå ôïí äéêôõáêü üíïìá Þ ôçí IP äéåýèõíóç.\n"
+#: ../../standalone/drakbug_.c:180
+msgid "No browser available! Please install one"
+msgstr "Äåí âñÝèçêå ðåñéçãçôÞò! Ðáñáêáëþ åãêáôáóôÞóôå ôïí"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakconnect_.c:75
#, c-format
-msgid "Toggle to normal mode"
-msgstr "ÁëëáãÞ óå êáíïíéêü ôñüðï ëåéôïõñãßáò"
+msgid "Network configuration (%d adapters)"
+msgstr "Ñýèìéóç äéêôýïõ (%d ðñïóáñìïãåßò)"
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
-msgstr "ÃåíéêÞ"
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+msgid "Profile: "
+msgstr "Ðñïößë: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Êýëéíäñïò áðü %d Ýùò %d\n"
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
+msgstr "ÄéáãñáöÞ ðñïößë..."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
-msgstr ""
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
+msgstr "Ðñïößë ãéá äéáãñáöÞ:"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakconnect_.c:125
msgid "New profile..."
msgstr "ÍÝï ðñïößë..."
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
-#, c-format
-msgid "NONE"
+#: ../../standalone/drakconnect_.c:131
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
msgstr ""
+"¼íïìá ãéá ôï ðñïößë ðïõ èá äçìéïõñãçèåß (ôï íÝï ðñïößë äçìéïõñãåßôáé óáí "
+"áíôßãñáöï ôïõ õðÜñ÷ïíôïò):"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "Óå ðïéüí äßóêï èÝëåôå íá ìåôáêéíçèåßôå;"
+#: ../../standalone/drakconnect_.c:157
+msgid "Hostname: "
+msgstr "¼íïìá óõóôÞìáôïò: "
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Display logo on Console"
-msgstr "ÅìöÜíéóç ëïãüôõðïõ óôçí Êïíóüëá"
+#: ../../standalone/drakconnect_.c:164
+msgid "Internet access"
+msgstr "Ðñüóâáóç óôï Äéáäßêôõï"
-#: ../../any.pm:1
-#, c-format
-msgid "Windows Domain"
-msgstr "ÔïìÝáò Windows "
+#: ../../standalone/drakconnect_.c:177
+msgid "Type:"
+msgstr "Ôýðïò:"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Saami (norwegian)"
-msgstr "Dvorak (Íïñâçãéêü)"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "Ðýëç äéêôýïõ:"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Interface %s (on network %s)"
-msgstr "ÄéåðáöÞ %s (óôï äßêôõï %s)"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Interface:"
+msgstr "ÄéåðáöÞ:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
-msgstr "ÐËÇÑÏÖÏÑÉÅÓ"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
+msgstr "ÊáôÜóôáóç:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
-msgstr "ÍÞóïé ÃïõÜëéò êáé Öïõôïýíá"
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
+msgstr "Ðáñáêáëþ ðåñéìÝíåôå"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "ÐñÝðåé íá äçìéïõñãÞóù ðñþôá ôï /etc/dhcpd.conf!"
+#: ../../standalone/drakconnect_.c:216
+msgid "Configure Internet Access..."
+msgstr "Ñýèìéóç Ðñüóâáóçò óôï Äéáäßêôõï..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
-msgstr "Ôï FPU åßíáé ðáñüí"
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+msgid "LAN configuration"
+msgstr "Ñýèìéóç LAN"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"×ùñßò åðéðëÝïí ðëçñïöïñßåò\n"
-"ãéá áõôÞ ôçí õðçñåóßá."
+#: ../../standalone/drakconnect_.c:228
+msgid "Driver"
+msgstr "Ïäçãüò"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "Äåí âñÝèçêáí óáñùôÝò ðïõ íá åßíáé äéáèÝóéìïé óôï óýóôçìÜ óáò.\n"
+#: ../../standalone/drakconnect_.c:228
+msgid "Interface"
+msgstr "ÄéåðáöÞ"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Äçìéïõñãßá Ìïíïý NIC -->"
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
+msgstr "Ðñùôüêïëëï"
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "ÍÞóïé ÌÜñóáë"
+#: ../../standalone/drakconnect_.c:228
+msgid "State"
+msgstr "ÊáôÜóôáóç:"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "Óùóôü;"
+#: ../../standalone/drakconnect_.c:240
+msgid "Configure Local Area Network..."
+msgstr "Ñýèìéóç ôïðéêïý äéêôýïõ..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
+msgstr "ÊÜíôå êëéê åäþ ãéá íá îåêéíÞóåé ï ïäçãüò ->"
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr "Êùäéêüò Root"
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "Ïäçãüò..."
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Build All Kernels -->"
-msgstr "¼ëá"
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
+msgstr "ÅöáñìïãÞ"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "DVDRAM device"
-msgstr "óõóêåõÞ"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Connected"
+msgstr "ÓõíäÝèçêå"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
-msgstr "áí ïñéóôåß íáé, áíáöïñÜ Üãíùóôùí áñ÷åßùí."
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Not connected"
+msgstr "Äå óõíäÝèçêå"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
+msgstr "Óýíäåóç..."
+
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
+msgstr "Áðïóýíäåóç..."
+
+#: ../../standalone/drakconnect_.c:400
msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Äåí Ý÷åôå ïñßóåé êáôÜôìçóç swap\n"
-"\n"
-"Íá óõíå÷ßóù;"
+"Ðñïåéäïðïßçóç, åíôïðßóôçêå ìéá Üëëç óýíäåóç Äéáäéêôýïõ ðïõ ßóùò ÷ñçóéìïðïéåß "
+"ôï äßêôõü óáò"
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Version: "
-msgstr "¸êäïóç: %s\n"
+#: ../../standalone/drakconnect_.c:427
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Äåí Ý÷åôå êÜðïéá ñõèìéóìÝíç äéåðáöÞ.\n"
+"Ñõèìßóôå ôçí êÜíïíôáò êëéê óôï 'Ñýèìéóç'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Server IP missing!"
-msgstr "Ëåßðåé ç IP ôïõ åîõðçñåôçôÞ!"
+#: ../../standalone/drakconnect_.c:449
+msgid "LAN Configuration"
+msgstr "Ñýèìéóç LÁÍ"
-#: ../../lang.pm:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Suriname"
-msgstr "ÓïõñéíÜì"
+msgid "Adapter %s: %s"
+msgstr "ÐñïóáñìïãÝáò %s: %s"
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid "Use a floppy"
-msgstr "ÁðïèÞêåõóç óå äéóêÝôá"
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
+msgstr "Ðñùôüêïëëï Åêêßíçóçò"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
-msgstr "Åíåñãïðïßçóç ACPI"
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
+msgstr "Îåêßíçóáí óôçí åêêßíçóç"
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
-msgstr ""
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
+msgstr "ðåëÜôçò DHCP"
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
-msgstr "Ãñáöéêü ÐåñéâÜëëïí"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "activate now"
+msgstr "åíåñãïðïßçóç ôþñá"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
-msgstr "ÃéâñáëôÜñ"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "deactivate now"
+msgstr "áðåíåñãïðïßçóç ôþñá"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Do nothing"
-msgstr "Ìçí êÜíåéò ôßðïôá"
+#: ../../standalone/drakconnect_.c:499
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Ç äéåðáöÞ äåí Ý÷åé ñõèìéóôÞ áêüìá. \n"
+"ÅêôåëÝóôå ôïí ïäçãü ñýèìéóçò óôçí êõñßùò ïèüíç"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete Client"
-msgstr "ÄéáãñáöÞ ÐåëÜôç"
+#: ../../standalone/drakconnect_.c:556
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Äåí Ý÷åôå óýíäåóç ìå ôï äéáäßêôõï.\n"
+"ÄçìéïõñãÞóôå ìßá êÜíïíôáò êëéê óôï 'Ñýèìéóç'"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "Ôýðïò óõóôÞìáôïò áñ÷åßùí: "
+#: ../../standalone/drakconnect_.c:580
+msgid "Internet connection configuration"
+msgstr "Ñýèìéóç óýíäåóçò Äéáäéêôýïõ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting network..."
-msgstr "Åêêßíçóç äéêôýïõ..."
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet Connection Configuration"
+msgstr "Ñýèìéóç Óýíäåóçò Äéáäéêôýïõ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
-msgstr "ÂéåôíÜì"
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+msgid "Connection type: "
+msgstr "Ôýðïò óýíäåóçò: "
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_Fields description"
-msgstr "/_ÐåñéãñáöÞ Ðåäßùí"
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
+msgstr "ÐáñÜìåôñïé"
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr "ÂåëôéóôïðïéÞóôå ôçí áóöÜëåéÜ óáò"
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Ðýëç äéêôýïõ"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-" Åõ÷áñéóôïýìå:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
+msgstr "ÊÜñôá Ethernet"
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Help"
-msgstr "ÂïÞèåéá"
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
+msgstr "ÐåëÜôçò DHCP"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Check if the network devices are in promiscuous mode"
-msgstr ""
-"áí ïñéóôåß íáé, Ýëåã÷ïò ôùí óõóêåõþí äéêôýïõ ãéá áäéÜêñéôç êáôÜóôáóç "
-"ëåéôïõñãßáò."
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../network/tools.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"
-msgstr "Ôé ÷þñï èÝëåôå íá êñáôÞóåôå ãéá ôá windows óôï"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Module name"
+msgstr "¼íïìá áñèñþìáôïò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Ìßá Þ ðåñéóóüôåñåò äïêéìáóôéêÝò óåëßäåò óôÜëèçêáí óôïí åêôõðùôÞ.\n"
-"Ìðïñåß íá ðåñÜóåé êÜðïéïò ÷ñüíïò ìÝ÷ñé ç åêôýðùóç íá îåêéíÞóåé.\n"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Size"
+msgstr "ÌÝãåèïò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Username required"
-msgstr "Áðáéôåßôáé üíïìá ÷ñÞóôç"
+#: ../../standalone/drakfloppy_.c:45
+msgid "drakfloppy"
+msgstr "drakfloppy"
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Device"
-msgstr "ÓõóêåõÞ: "
+#: ../../standalone/drakfloppy_.c:63
+msgid "boot disk creation"
+msgstr "äçìéïõñãßá äéóêÝôáò åêêßíçóçò"
-#: ../../help.pm:1
-#, fuzzy, 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."
-msgstr ""
-"åî' ïñéóìïý\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" ¶ëëá\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"."
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr "åî' ïñéóìïý"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakfloppy_.c:87
#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "ÅðéëïãÝò åêôõðùôÞ SMB (Windows 9x/NT)"
+msgid "DrakFloppy Error: %s"
+msgstr "ÓöÜëìá DrakFloppy: %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
-msgstr ""
+#: ../../standalone/drakfloppy_.c:98
+msgid "kernel version"
+msgstr "Ýêäïóç ðõñÞíá"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr ""
+#: ../../standalone/drakfloppy_.c:104
+msgid "General"
+msgstr "ÃåíéêÜ"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakfloppy_.c:109
+msgid "Expert Area"
+msgstr "Ðåñéï÷Þ Ðñï÷ùñçìÝíùí"
+
+#: ../../standalone/drakfloppy_.c:112
msgid "mkinitrd optional arguments"
msgstr "ðñïáéñåôéêÝò åðéëïãÝò ôïõ mkinitrd"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
-msgstr ""
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Ðñùôüêïëëï õðüëïéðïõ êüóìïõ"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print test pages"
-msgstr "Åêôýðùóç äïêéìáóôéêþí óåëßäùí"
+#: ../../standalone/drakfloppy_.c:113
+msgid "Add a module"
+msgstr "ÐñïóèÞêç áñèñþìáôïò"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Activate now"
-msgstr "åíåñãïðïßçóç ôþñá"
+#: ../../standalone/drakfloppy_.c:133
+msgid "force"
+msgstr "ìåôÜ âßáò"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
-msgstr "64 MB Þ ðåñéóóüôåñá"
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
+msgstr "áí ÷ñåéÜæåôáé"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Ðáñáêáëþ åðéëÝîôå ôéò äïêéìáóôéêÝò óåëßäåò ðïõ èá åêôõðùèïýí.\n"
-"Óçì.: Ç äïêéìáóôéêÞ óåëßäá öùôïãñáößáò ìðïñåß íá äéáñêÝóåé áñêåôü ÷ñüíï ãéá "
-"íá åêôõðùèåß êáé óå åêôõðùôÝò laser ìå ìéêñÞ ìíÞìç ìðïñåß êáé íá ìçí "
-"åêôõðùèåß. Óôéò ðåñéóóüôåñåò ðåñéðôþóåéò ç åêôýðùóç ôéò ôõðéêÞò äïêéìáóôéêÞò "
-"óåëßäáò áñêåß."
+#: ../../standalone/drakfloppy_.c:135
+msgid "omit scsi modules"
+msgstr "ðáñÜëåéøç ôùí áñèñùìÜôùí scsi"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Ðáñáêáëþ åðéëÝîôå ôçí óõóêåõÞ óôçí ïðïßá åßíáé óõíäåìÝíï ôï %s"
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
+msgstr "ðáñÜëåéøç ôùí áñèñùìÜôùí raid"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Not formatted\n"
-msgstr "Áìïñöïðïßçôïò\n"
+#: ../../standalone/drakfloppy_.c:172
+msgid "Remove a module"
+msgstr "ÁðïìÜêñõíóç áñèñþìáôïò"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Periodic Checks"
-msgstr "Ðåñéïäéêïß ¸ëåã÷ïé"
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
+msgstr "¸îïäïò"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "PXE Server Configuration"
-msgstr "Ñõèìßóåéò ÄéáêïìéóôÞ PXE"
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
+msgstr "Äçìéïõñãßá äéóêÝôáò"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "Backup the system files before:"
-msgstr "Áíôßãñáöá áóöáëåßáò áñ÷åßùí óõóôÞìáôïò ðñéí áðü:"
+msgid "Be sure a media is present for the device %s"
+msgstr "Óéãïõñåõôåßôå ðùò Ýíá ìÝóï åßíáé ðáñüí ãéá ôç óõóêåõÞ %s"
-#: ../../security/level.pm:1
+#: ../../standalone/drakfloppy_.c:341
#, c-format
msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
-"Áõôü åßíáé ôï óõíçèéóìÝíï åðßðåäï áóöáëåßáò ãéá Ýíá óýóôçìá ðïõ èá óõíäåèåß "
-"ùò ðåëÜôçò óôï Äéáäßêôõï."
-
-#: ../../any.pm:1
-#, c-format
-msgid "First floppy drive"
-msgstr "Ðñþôïò ïäçãüò äéóêÝôáò"
+"Äåí õðÜñ÷åé ìÝóï Þ õðÜñ÷åé ðñïóôáóßá åããñáöÞò ãéá ôç óõóêåõÞ %s.\n"
+"Ðáñáêáëþ åéóÜãåôå Ýíá."
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "/File/_Quit"
-msgstr "/Áñ÷åßï/¸_îïäïò"
+msgid "Unable to fork: %s"
+msgstr "Áäõíáìßá fork: %s"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakfloppy_.c:349
#, c-format
-msgid "Dvorak"
-msgstr "Dvorak"
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Áäõíáìßá óùóôïý ôåñìáôéóìïý ôïõ mkbootdisk: \n"
+" %s \n"
+" %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose the new size"
-msgstr "ÅðéëÝîôå ôï íÝï ìÝãåèïò"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
+msgstr "ÁíáæÞôçóç åãêáôåóôçìÝíùí ãñáììáôïóåéñþí"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Media class"
-msgstr "ÊëÜóç ÌÝóïõ"
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
+msgstr "Ïé áðïåðéëåãìÝíåò ãñáììáôïóåéñÝò åãêáôáóôÜèçêáí"
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
-msgstr "Ôï %s äåí åßíáé ãíùóôü áðü áõôÞ ôçí Ýêäïóç ôïõ Scannerdrake."
+#: ../../standalone/drakfont_.c:242
+msgid "no fonts found"
+msgstr "äåí âñÝèçêáí ãñáììáôïóåéñÝò"
-#: ../../lang.pm:1
-#, c-format
-msgid "Faroe Islands"
-msgstr "ÍÞóïé Öåñüåò"
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+msgid "done"
+msgstr "Ïëïêëçñþèçêå"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Restart XFS"
-msgstr "Åðáíåêêßíçóç XFS"
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
+msgstr "äåí âñÝèçêáí ãñáììáôïóåéñÝò óôéò ðñïóáñôçìÝíåò êáôáôìÞóåéò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
-msgstr "ÐñïóèÞêç õðïëïãéóôÞ/äßêôõï"
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
+msgstr "ÎáíáåðéëÝîôå ôéò óùóôÝò ãñáììáôïóåéñÝò"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr ""
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
+msgstr "äåí âñÝèçêå êáìßá ãñáììáôïóåéñÜ\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model name"
-msgstr "¼íïìá ìïíôÝëïõ"
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
+msgstr "ÁíáæÞôçóç ãñáììáôïóåéñþí óôçí ëßóôá åãêáôÜóôáóçò"
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
-msgstr "Áëâáíßá"
+#: ../../standalone/drakfont_.c:359
+msgid "Fonts copy"
+msgstr "ÁíôéãñáöÞ Ãñáììáôïóåéñþí"
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr "ÂñåôáíéêÜ ÅäÜöç Éíäéêïý Ùêåáíïý"
+#: ../../standalone/drakfont_.c:363
+msgid "True Type fonts installation"
+msgstr "ÅãêáôÜóôáóç ãñáììáôïóåéñþí True Type"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Normal Mode"
-msgstr "ÊáíïíéêÞ ÊáôÜóôáóç"
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
+msgstr "ðáñáêáëþ ðåñéìÝíåôå êáôÜ ôï ttmkfdir..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "Äåí õðÜñ÷åé CDR/DVDR óôïí ïäçãü!"
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
+msgstr "Ç åãêáôÜóôáóçò True Type ïëïêëçñþèçêå"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer connection type"
-msgstr "Ôýðï óýíäåóç åêôõðùôÞ"
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
+msgstr "ÌåôáôñïðÞ Ãñáììáôïóåéñþí"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
-msgstr "Äåí âñÝèçêå ðñïóáñìïãÝáò äéêôýïõ óôï óýóôçìÜ óáò!"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
+msgstr "äçìéïõñãßá type1inst"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network %s"
-msgstr "Äßêôõï %s"
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
-msgstr "Ìáëáãéáëáìéêü"
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
+msgstr "ìåôáôñïðÞ ãñáììáôïóåéñþí ttf"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
-msgstr "ÅðéëïãÞ %s åêôüò ïñßïõ!"
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
+msgstr "ìåôáôñïðÞ ãñáììáôïóåéñþí pfm"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connect %s"
-msgstr "Óýíäåóç %s"
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Restarting CUPS..."
+#: ../../standalone/drakfont_.c:459
+msgid "Restart XFS"
msgstr "Åðáíåêêßíçóç XFS"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Åêôýðùóç/ÓÜñùóç/ÊÜñôåò Öùôïãñáöéþí óôï\"%s\""
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
msgstr ""
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Äéðëü óçìåßï óýíäåóçò %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
-msgstr "áí ïñéóôåß íáé, åêôÝëåóç åëÝã÷ùí chkrootkit"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "Ñõèìßóåéò óýíäåóçò"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|Generic"
-msgstr "¶ãíùóôï|Ãåíéêü"
+#: ../../standalone/drakfont_.c:528
+msgid "xfs restart"
+msgstr "åðáíåêêßíçóç xfs"
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
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"
+"Before installing any fonts, be sure that you have the right to use and "
+"install them on your system.\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."
+"-You can install the fonts using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
msgstr ""
-"Linux\n"
-"\n"
-"\n"
-" Äéáäßêôõï\n"
-" Íáé Äéáäßêôõï ¼÷é\n"
-"\n"
-"\n"
-" Íáé\n"
+"Ðñéí åãêáôáóôÞóåôå ôéò ãñáììáôïóåéñÝò, âåâáéùèåßôå üôé Ý÷åôå ôï äéêáßùìá íá "
+"êÜíåôå ÷ñÞóç áõôþí ôùí ãñáììáôïóåéñþí êáèþò êáé íá ôéò åãêáôáóôÞóåôå óôïí "
+"õðïëïãéóôÞ óáò\n"
"\n"
-" ÅãêáôÜóôáóç\n"
-" ¶êõñï."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-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
-#, c-format
-msgid "Quit"
-msgstr "¸îïäïò"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "Áõôüìáôç êáôáíïìÞ"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "¸ëåã÷ïò ãéá ÷áëáóìÝíá ôìÞìáôá;"
+"-Ìðïñåßôå íá åãêáôáóôÞóåôå ôéò ãñáììáôïóåéñÝò êáíïíéêÜ. Óå óðÜíéåò "
+"ðåñéðôþóåéò, åéêïíéêÝò ãñáììáôïóåéñÝò ìðïñïýí íá ðáãþóïõí ôïí åîõðçñåôçôÞ ×."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Other MultiMedia devices"
-msgstr "¶ëëá óõóêåõÝò ÐïëõìÝóùí"
+#: ../../standalone/drakfont_.c:621
+msgid "Fonts Importation"
+msgstr "ÅéóáãùãÞ Ãñáììáôïóåéñþí"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "burner"
-msgstr "ÅêôõðùôÞò"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
+msgstr "ËÞøç Ãñáììáôïóåéñþí Windows "
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Bug Description/System Information"
-msgstr ""
+#: ../../standalone/drakfont_.c:658
+msgid "Uninstall Fonts"
+msgstr "ÁðåãêáôÜóôáóç Ãñáììáôïóåéñþí"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid " (Default is all users)"
-msgstr "ÐñïåðéëåãìÝíïò åêôõðùôÞò"
+#: ../../standalone/drakfont_.c:669
+msgid "Advanced Options"
+msgstr "Ðñï÷ùñçìÝíåò ÅðéëïãÝò"
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "No remote machines"
-msgstr "(óå áõôü ôï ìç÷Üíçìá)"
+#: ../../standalone/drakfont_.c:677
+msgid "Font List"
+msgstr "Ëßóôá Ãñáììáôïóåéñþí"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakfont_.c:737
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"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@mandrakesoft.com\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 ""
+" This program is free software; you can redistribute it and/or modify\n"
+" it under the terms of the GNU General Public License as published by\n"
+" the Free Software Foundation; either version 2, or (at your option)\n"
+" any later version.\n"
"\n"
-" ÅêôõðùôÞò Ïäçãüò\n"
+" This program is distributed in the hope that it will be useful,\n"
+" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
+" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
+" GNU General Public License for more details.\n"
"\n"
+" 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"
"\n"
-" áíé÷íåýèçêå\n"
"\n"
-" Åðüìåíï ¶êõñï."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "Ðéóôïðïßçóç NIS"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-"Ç åðéëïãÞ ``Áðáãüñåõóç åðéëïãþí ãñáììÞò åíôïëÞò'' åßíáé Ü÷ñçóôç ÷ùñßò êùäéêü "
-"ðñüóâáóçò"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "ÊïéíÞ Óýíäåóç Äéáäéêôýïõ åíåñãïðïéçìÝíç"
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "ÇíùìÝíá ÁñáâéêÜ ÅìéñÜôá"
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:862
+msgid "Choose the applications that will support the fonts:"
+msgstr "ÅðéëÝîôå ôéò åöáñìïãÝò ðïõ èá õðïóôçñßæïõí ôéò ãñáììáôïóåéñÝò :"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "IO_0 êÜñôáò"
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
+msgstr "Ghostscript"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
-msgstr ""
+#: ../../standalone/drakfont_.c:877
+msgid "StarOffice"
+msgstr "StarOffice"
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "ÔáúëÜíäç"
+#: ../../standalone/drakfont_.c:884
+msgid "Abiword"
+msgstr "Abiword"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "IO_1 êÜñôáò"
+#: ../../standalone/drakfont_.c:891
+msgid "Generic Printers"
+msgstr "Ãåíéêïß ÅêôõðùôÝò"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
-msgstr "ÁíáæÞôçóç:"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
+msgstr ""
+"ÅðéëÝîôå ôï áñ÷åßï ãñáììáôïóåéñÝò Þ ôïí êáôÜëïãï êáé êÜíôå êëéê óôï "
+"'ÐñïóèÞêç'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "ÊáæáêóôÜí"
+#: ../../standalone/drakfont_.c:1005
+msgid "Install List"
+msgstr "Ëßóôá ÅãêáôÜóôáóçò"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
-msgstr "ÄñïìïëïãçôÝò:"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
+msgstr "êÜíôå êëéê åäþ áí åßóôå âÝâáéïé"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Write"
-msgstr "ÅããñáöÞ %s"
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
+msgstr "åäþ áí ü÷é."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Display all available remote CUPS printers"
-msgstr ""
-"ÁíáíÝùóç ëßóôáò åêôõðùôþí ( ãéá íá åìöáíßóåé üëïõò ôïõò äéáèÝóéìïõò "
-"áðïìáêñõóìÝíïõò åêôõðùôÝò)"
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
+msgstr "ÁðïåðéëïãÞ ¼ëùí"
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "ÅãêáôÜóôáóç Mandrake Linux %s"
+#: ../../standalone/drakfont_.c:1116
+msgid "Selected All"
+msgstr "ÅðéëïãÞ ¼ëùí"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
-msgstr "¶ãíùóôïò ïäçãüò"
+#: ../../standalone/drakfont_.c:1120
+msgid "Remove List"
+msgstr "Ëßóôá Áöáßñåóçò"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "ÔáúëáíäÝæéêï"
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+msgid "Initials tests"
+msgstr "Áñ÷éêÜ ôåóô"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr "ÍÞóïò ÌðïõâÝ"
+#: ../../standalone/drakfont_.c:1145
+msgid "Copy fonts on your system"
+msgstr "ÁíôéãñáöÞ ãñáììáôïóåéñþí óôï óýóôçìÜ óáò"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "ÅðéëïãÝò Óýíäåóçò"
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
+msgstr "ÅãêáôÜóôáóç & ìåôáôñïðÞ Ãñáììáôïóåéñþí"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
+#: ../../standalone/drakfont_.c:1153
+msgid "Post Install"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
+#: ../../standalone/drakfont_.c:1178
+msgid "Remove fonts on your system"
+msgstr "Áöáßñåóç ãñáììáôïóåéñþí áðü ôï óýóôçìÜ óáò"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-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."
+#: ../../standalone/drakfont_.c:1182
+msgid "Post Uninstall"
msgstr ""
-"ÁëëáãÞ Cd-Rom!\n"
-"\n"
-"Ðáñáêáëþ åéóÜãåôå ôï Cd-Rom ìå üíïìá \"%s\" óôïí ïäçãü óáò êáé ðáôÞóôå "
-"ÅíôÜîåé.\n"
-"ÅÜí äåí ôï Ý÷åôå, ðáôÞóôå Áêýñùóç ãéá áðïöõãÞ åãêáôÜóôáóçò áðü áõôü ôï CdRom."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "Ðïëùíéêü"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Online"
-msgstr "Mandrake Online"
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
+msgstr "ÊïéíÞ Óýíäåóç Äéáäéêôýïõ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
-msgstr "\t-Äßêôõï ìÝóù webdav.\n"
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "ËõðÜìáé, õðïóôçñßæïíôáé ìüíï ïé ðõñÞíåò 2.4"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", ðïëõ÷ñçóôéêÞ óõóêåõÞ óôçí ðáñÜëëçëç èÞñá #%s"
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr "ÊïéíÞ Óýíäåóç Äéáäéêôýïõ åíåñãïðïéçìÝíç"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakgw_.c:126
msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"Äåí âñÝèçêå ðñïóáñìïãÝáò äéêôýïõ Ethernet óôï óýóôçìÜ óáò. Ðáñáêáëþ "
-"÷ñçóéìïðïéåßóôå ôï ðñüãñáììá ñýèìéóçò õëéêïý."
-
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "ÌÜóêá äéêôýïõ"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "No hard drives found"
-msgstr "Äåí âñÝèçêáí äßóêïé!"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "Äýï ðëÞêôñùí"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "Ôé åßäïõò åßíáé ç ISDN óýíäåóÞ óáò;"
+"Ç ñýèìéóç ôçò êïéíÞò óýíäåóçò ôïõ Äéáäéêôýïõ Ý÷åé Þäç ãßíåé.\n"
+"ÁõôÞ ôç óôéãìÞ åßíáé åíåñãÞ.\n"
+"\n"
+"Ôé èÝëåôå íá êÜíåôå;"
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "ÅôéêÝôá"
+#: ../../standalone/drakgw_.c:130
+msgid "disable"
+msgstr "áðåíåñãïðïßçóç"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "ÁðïèÞêåõóç óå äéóêÝôá"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
+msgstr "Üêõñï"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Check open ports"
-msgstr "áíé÷íåýèçêå óôçí ðüñôá %s"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "reconfigure"
+msgstr "åðáíáñýèìéóç"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Edit selected printer"
-msgstr "Åðåîåñãáóßá åðéëåãìÝíïõ åîõðçñåôçôÞ"
+#: ../../standalone/drakgw_.c:133
+msgid "Disabling servers..."
+msgstr "Áðåíåñãïðïßçóç åîõðçñåôçôþí..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Áõôüìáôç áíß÷íåõóç åêôõðùôþí"
+#: ../../standalone/drakgw_.c:142
+msgid "Internet connection sharing is now disabled."
+msgstr "Ç ÊïéíÞ Óýíäåóç Äéáäéêôýïõ ôþñá áðåíåñãïðïéÞèçêå."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Ðïéá áðü ôéò ðáñáêÜôù êÜñôåò ISDN åßíáé ç äéêéÜ óáò;"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
+msgstr "ÊïéíÞ Óýíäåóç Äéáäéêôýïõ áðåíåñãïðïéçìÝíç"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:150
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."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"Ôï NFS åßíáé Ýíá äçìïöéëÝò ðñùôüêïëëï ãéá ôïí äéáìïéñáóìü áñ÷åßùí óå \n"
-"äßêôõá TCP/IP. ÁõôÞ ç õðçñåóßá ðñïóöÝñåé ëåéôïõñãßåò åîõðçñåôçôÞ, ï \n"
-"ïðïßïò ñõèìßæåôáé áðü ôï áñ÷åßï /etc/exports."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Msec"
-msgstr "Msec"
+"Ç ñýèìéóç ôçò êïéíÞò óýíäåóçò ôïõ äéáäéêôýïõ Ý÷åé Þäç ãßíåé.\n"
+"ÁõôÞ ôç óôéãìÞ åßíáé áíåíåñãÞ.\n"
+"\n"
+"Ôé èÝëåôå íá êÜíåôå;"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Óçì.:ìéá åôéêÝôá Üëëáîå:\n"
-"%s"
+#: ../../standalone/drakgw_.c:154
+msgid "enable"
+msgstr "åíåñãïðïßçóç"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
-msgstr ""
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
+msgstr "Åíåñãïðïßçóç åîõðçñåôçôþí..."
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Ç åðéëïãÞ óáò; (0/1, åî ïñéóìïý %s)"
+#: ../../standalone/drakgw_.c:166
+msgid "Internet connection sharing is now enabled."
+msgstr "Ç ÊïéíÞ Óýíäåóç óôï Äéáäßêôõï ôþñá åíåñãïðïéÞèçêå."
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakgw_.c:183
+#, fuzzy
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"
+"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"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
"\n"
-"Click on \"%s\" if you wish to select partitions that will be checked for\n"
-"bad blocks on the disk."
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
+"Ï õðïëïãéóôÞò óáò ìðïñåß íá ñõèìéóôåß Ýôóé þóôå íá ìïéñÜæåôáé \n"
+"ôç óýíäåóç ìå ôï äéáäßêôõï ìå Üëëïõò õðïëïãéóôÝò.\n"
"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Åðüìåíï\n"
-"\n"
-" Ðñïçãïýìåíï\n"
-" íÝï Linux\n"
-"\n"
-" Ãéá Ðñï÷ùñçìÝíïõò\n"
-"."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "French"
-msgstr "Ãáëëéêü"
+"Óçìåßùóç: ×ñåéÜæåóôå Ýíáí ðñïóáñìïãÝá äéêôýïõ Ýôóé þóôå íá äçìéïõñãÞóåôå Ýíá "
+"ôïðéêü äßêôõï (LAN)."
-#: ../../keyboard.pm:1
+#: ../../standalone/drakgw_.c:211
#, c-format
-msgid "Czech (QWERTY)"
-msgstr "ÔóÝ÷éêï (QWERTY)"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Allow X Window connections"
-msgstr "Óýíäåóç Winmodem"
-
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "Áíß÷íåõóç õëéêïý óå åîÝëéîç"
+msgid "Interface %s (using module %s)"
+msgstr "ÄéåðáöÞ %s (÷ñÞóç áñèñþìáôïò %s)"
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
+#: ../../standalone/drakgw_.c:212
#, c-format
-msgid "Net Device"
-msgstr "ÓõóêåõÞ Äéêôýïõ"
+msgid "Interface %s"
+msgstr "ÄéåðáöÞ %s"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "Ðåñßëçøç"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr "Äåí âñÝèçêå ðñïóáñìïãÝáò äéêôýïõ óôï óýóôçìÜ óáò!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:221
msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
msgstr ""
-"(ÐáñÜëëçëåò èýñåò: /dev/lp0, /dev/lp1, ..., áíôßóôïé÷åò ôùí LPT1:, "
-"LPT2:, ..., 1ïò åêôõðùôÞò USB: /dev/usb/lp0, 2ïò USB åêôõðùôÞò: /dev/usb/"
-"lp1, ...)."
-
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Next"
-msgstr "Åðüìåíï"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Äåí ìðïñåßôå íá åãêáôáóôÞóåôå ôï ðñüãñáììá åêêßíçóçò óå êáôÜôìçóç %s\n"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
-msgstr "ÐïõÝñôï Ñßêï"
+"Äåí âñÝèçêå ðñïóáñìïãÝáò äéêôýïõ Ethernet óôï óýóôçìÜ óáò. Ðáñáêáëþ "
+"÷ñçóéìïðïéåßóôå ôï ðñüãñáììá ñýèìéóçò õëéêïý."
-#: ../../network/network.pm:1
-#, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp/zeroconf)"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr "ÓõóêåõÞ äéêôýïõ"
-#: ../../standalone/drakautoinst:1
+#: ../../standalone/drakgw_.c:228
#, c-format
msgid ""
+"There is only one configured network adapter on your system:\n"
"\n"
-"Welcome.\n"
+"%s\n"
"\n"
-"The parameters of the auto-install are available in the sections on the left"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
+"ÕðÜñ÷åé ìüíï Ýíáò ñõèìéóìÝíïò ðñïóáñìïãÝáò äéêôýïõ óôï óýóôçìÜ óáò:\n"
"\n"
-" Êáëþò Ïñßóáôå\n"
+"%s\n"
"\n"
-"Ïé ðáñÜìåôñïé ãéá ôçí áõôüìáôç åãêáôÜóôáóç õðÜñ÷ïõí óôá ôìÞìáôá áñéóôåñÜ"
+"Èá ñõèìéóôåß ôï Ôïðéêü óáò Äßêôõï ìå áõôüí ôïí ðñïóáñìïãÝá."
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/drakgw_.c:235
msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
msgstr ""
-"ôï ðáêÝôï 'ImageMagick' åßíáé áðáñáßôçôï ãéá ôçí ïëïêëÞñùóç ôçò ñýèìéóçò.\n"
-"ÊÜíôå êëéê óôï \"ÅíôÜîåé\" ãéá íá åãêáôáóôÞóåôå ôï Þ \"¶êõñï\" ãéá Ýîïäï"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Telnet server"
-msgstr "åîõðçñåôçôÞò X"
+"Ðáñáêáëþ åðéëÝîôå ôé ðñïóáñìïãÝáò äéêôýïõ èá óõíäåèåß óôï ôïðéêü óáò äßêôõï."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Ëéèïõáíéêü \"number row\" QWERTY"
+#: ../../standalone/drakgw_.c:261
+msgid "Network interface already configured"
+msgstr "Ç äéåðáöÞ Äéêôýïõ Ý÷åé Þäç ñõèìéóôåß"
-#: ../../install_any.pm:1
+#: ../../standalone/drakgw_.c:262
#, c-format
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
+"Warning, the network adapter (%s) is already configured.\n"
"\n"
+"Do you want an automatic re-configuration?\n"
"\n"
-"Do you really want to remove these packages?\n"
+"You can do it manually but you need to know what you're doing."
msgstr ""
-"Ôá ðáñáêÜôù ðáêÝôá èá áöáéñåèïýí ãéá íá áíáâáèìéóôåß ôï óýóôçìÜ óáò: %s\n"
+"Ðñïåéäïðïßçóç, ï ðñïóáñìïãÝáò äéêôýïõ (%s) Ý÷åé Þäç ñýèìéóç\n"
"\n"
+"ÈÝëåôå íá îáíáñõèìéóôåß áõôüìáôá ;\n"
"\n"
-"ÈÝëåôå ðñáãìáôéêÜ íá áöáéñÝóôå áõôÜ ôá ðáêÝôá;\n"
+"Ìðïñåßôå íá ôï êÜíåôå êáé ìüíïé óáò áëëÜ ðñÝðåé íá îÝñåôå ôé êÜíåôå."
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
-msgstr "Áãêßëá"
+#: ../../standalone/drakgw_.c:267
+msgid "Automatic reconfiguration"
+msgstr "Áõôüìáôç åðáíáñýèìéóçò"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "ÔïìÝáò NIS"
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "ÁíôáñêôéêÞ"
+#: ../../standalone/drakgw_.c:268
+msgid "Show current interface configuration"
+msgstr "ÐñïâïëÞ ôçò ôñÝ÷ïõóáò ñýèìéóçò äéåðáöÞ"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:269
+#, fuzzy
+msgid "Current interface configuration"
+msgstr "ÐñïâïëÞ ôçò ôñÝ÷ïõóáò ñýèìéóçò äéåðáöÞ"
+
+#: ../../standalone/drakgw_.c:270
#, c-format
msgid ""
+"Current configuration of `%s':\n"
"\n"
-"- User Files:\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
msgstr ""
+"ÔñÝ÷ïõóåò ñõèìßóåéò ôïõ %s':\n"
"\n"
-"- Áñ÷åßá ×ñçóôþí:\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
-msgstr "ÅðéëïãÝò óýíäåóçò"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Jamaica"
-msgstr "ÔæáìÜéêá"
+"Äßêôõï: %s\n"
+"Äéåýèõíóç IP : %s\n"
+"IP attribution: %s\n"
+"Ïäçãüò: %s"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:283
+#, fuzzy
msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
+"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"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
+"\n"
msgstr ""
-"Ïñéóìüò raw óõóêåõþí ùò block óõóêåõþí (üðùò êáôáôìÞóåéò óêëçñþí\n"
-"äßóêùí), ãéá ôç ÷ñÞóç ôïõò áðü åöáñìïãÝò üðùò ç Oracle Þ óõóêåõÝò DVD"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Ðáñáêáëþ ðåñéìÝíåôå, ðñïåôïéìáóßá åãêáôÜóôáóçò..."
+"Ìðïñþ íá êñáôÞóù ôéò õðÜñ÷ïõóåò ñõèìßóåéò êáé íá õðïèÝóù üôé Ý÷åôå Þäç "
+"ñõèìßóåé ôïí äéáêïìéóôÞ DHCP , óå áõôÞ ôçí ðåñßðôùóç âåâáéùèåßôå üôé Ý÷ù "
+"äéáâÜóåé óùóôÜ ôï Äßêôõï C-Class ðïõ ÷ñçóéìïðïéåßôå óôï ôïðéêü óáò äßêôõï. "
+"Äåí èá ôï îáíáñõèìßóù ïýôå èá ðåéñÜîù ôéò ñõèìßóåéò ôïõ äéáêïìéóôÞ DHCP.\n"
+"\n"
+"ÄéáöïñåôéêÜ ìðïñþ íá îáíáñõèìßóù ôçí äéåðáöÞ óáò êáé áí (îáíÜ)ñõèìßóù ôïí "
+"äéáêïìéóôÞ DHCP ãéá óáò\n"
+"\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "ÔóÝ÷éêï (QWERTZ)"
+#: ../../standalone/drakgw_.c:290
+#, fuzzy
+msgid "Local Network adress"
+msgstr "Ôïðéêü Äßêôõï C-Class"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Track network card id (useful for laptops)"
+#: ../../standalone/drakgw_.c:294
+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 ""
-"ÁíáæÞôçóç ôáõôüôçôáò ôçò êÜñôáò äéêôýïõ (÷ñÞóéìï ãéá öïñçôïýò õðïëïãéóôÝò)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Ï áñéèìüò èýñáò ðñÝðåé íá åßíáé áêÝñáéïò áñéèìüò!"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "You must choose an image file first!"
-msgstr "ÐñÝðåé íá åðéëÝîôå ðñþôá ìéá åéêüíá!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "ÅðáíáöïñÜ áðü ôïí óêëçñü äßóêï."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "ÐñïóèÞêç óôï LVM"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "ÅîõðçñåôçôÞò DNS"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr "ÔñéíéíôÜíô êáé ÔïìðÜãêï"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "Ôï LPD êáé ôï LPRng äåí õðïóôçñßæïõí åêôõðùôÝò IPP.\n"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Host name or IP."
-msgstr "¼íïìá óõóôÞìáôïò"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Edit"
-msgstr "Åðåîåñãáóßá"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "áðëü"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "Êáèáñéóìüò üëùí"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No test pages"
-msgstr "×ùñßò äïêéìáóôéêÝò óåëßäåò"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr "ÍÞóïé Öþêëáíô (Ìáëâßíåò)"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "ÐñïóáñìïãÝáò %s: %s"
-
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Boot disk creation"
-msgstr "äçìéïõñãßá äéóêÝôáò åêêßíçóçò"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
-msgstr "ÄåõôÝñá"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown model"
-msgstr "¶ãíùóôï ìïíôÝëï"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
-msgstr "áí ïñéóôåß íáé, Ýëåã÷ïò ôùí áñ÷åßùí/êáôáëüãùí ãéá åããñáöÞ áðü üëïõò."
-
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "authentication"
-msgstr "Ðéóôïðïßçóç"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now"
-msgstr "Áíôßãñáöá áóöáëåßáò Ôþñá"
+#: ../../standalone/drakgw_.c:300
+msgid "(This) DHCP Server IP"
+msgstr "(ÁõôÞ ôçí) IP ôïõ åîõðçñåôçôÞ DHCP"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/_Áñ÷åßï"
+#: ../../standalone/drakgw_.c:301
+#, fuzzy
+msgid "The DNS Server IP"
+msgstr "(ÁõôÞ ôçí) IP ôïõ åîõðçñåôçôÞ DHCP"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Ãßíåôáé áöáßñåóç ôïõ åêôõðùôÞ áðü ôï Star Office/OpenOffice.org/GIMP"
+#: ../../standalone/drakgw_.c:302
+#, fuzzy
+msgid "The internal domain name"
+msgstr "ÊáíÝíá üíïìá åêôõðùôÞ"
-#: ../../services.pm:1
-#, 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."
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
msgstr ""
-"Åêêßíçóç ðáêÝôïõ ößëôñïõ ãéá ôïí ðõñÞíá Linux ôçò óåéñÜò 2.2, ãéá ôçí "
-"ñýèìéóç\n"
-"åíüò Ôïß÷ïõò Ðñïóôáóßáò ðïõ èá ðñïóôáôåýåé ôï ìç÷ÜíçìÜ óáò áðü äéêôõáêÝò "
-"åðéèÝóåéò."
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Editable"
-msgstr "áðåíåñãïðïßçóç"
-#: ../../network/ethernet.pm:1
-#, fuzzy, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
msgstr ""
-"Ðïéüí ðåëÜôç dhcp èÝëåôå íá ÷ñçóéìïðïéÞóåôå;\n"
-"Ç ðñïåðéëïãÞ åßíáé dhcp-client"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr "Ôáìéëéêü (äéÜôáîç ISCII)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
-msgstr "Ìáãéüô"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "%d KB\n"
-msgstr "ÌÝãåèïò: %d KB\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Äçìéïõñãßá äéóêÝôáò áõôüìáôçò åãêáôÜóôáóçò..."
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for scanners ..."
-msgstr "Ãßíåôáé áíáæÞôçóç ãéá óáñùôÝò ..."
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
+msgstr "Åðáíáñýèìéóç äéåðáöÞ êáé ôïõ äéáêïìéóôÞ DHCP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
-msgstr "Ñùóßá"
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
+msgstr "Ôï Ôïðéêü Äßêôõï äåí ôåëåéþíåé ìå `.0', ôåñìáôéóìüò."
-#: ../../steps.pm:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid "Partitioning"
-msgstr "Êáôáìåñéóìüò"
+msgid "Potential LAN address conflict found in current config of %s!\n"
+msgstr "ÐéèáíÞ äéðëÞò äéåýèõíóçò LAN óôçí ôñÝ÷ïõóá ñýèìéóç ôïõ %s!\n"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
-msgstr "áíé÷íåýèçêáí êÜñôá(åò) ethernet"
+#: ../../standalone/drakgw_.c:335
+msgid "Configuring..."
+msgstr "Ñýèìéóç..."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
-msgstr "Syslog"
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "Ñýèìéóç, åãêáôÜóôáóç ëïãéóìéêïý, åêêßíçóç åîõðçñåôçôþí..."
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:372
#, c-format
-msgid "Can't create catalog!"
-msgstr "Áäýíáôç ç äçìéïõñãßá êáôáëüãïõ!"
+msgid "Problems installing package %s"
+msgstr "Ðñüâëçìá êáôÜ ôçí åãêáôÜóôáóç ôïõ ðáêÝôïõ %s"
-#: ../advertising/11-mnf.pl:1
-#, c-format
+#: ../../standalone/drakgw_.c:505
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 ""
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
+"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_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "Êùäéêüò ðñüóâáóçò root"
+"¼ëá Ý÷ïõí ñõèìéóôåß.\n"
+"Ìðïñåßôå ôþñá íá ìïéñÜæåóôå ôç óýíäåóÞ óáò óôï Äéáäßêôõï ìå Üëëïõò "
+"õðïëïãéóôÝò óôï ôïðéêü óáò äßêôõï, ìå ôçí ÷ñÞóç áõôüìáôçò ñýèìéóçò äéêôýïõ "
+"(DHCP)."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable IP spoofing protection"
-msgstr ""
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
+msgstr "Ç ñýèìéóç Ý÷åé Þäç ãßíåé, áëëÜ áõôÞ ôç óôéãìÞ åßíáé áðåíåñãïðïéçìÝíç."
-#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
-msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
-msgstr ""
-"Äåí õðÜñ÷åé ãíùóôüò åíáëëáêôéêüò ïäçãüò OSS/ALSA ãéá ôçí êÜñôá Þ÷ïõ óáò (%s)"
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
+msgstr "Ç ñýèìéóç Ý÷åé Þäç ãßíåé, êáé áõôÞ ôç óôéãìÞ åßíáé åíåñãïðïéçìÝíç."
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Group :"
-msgstr "ïìÜäá :"
+#: ../../standalone/drakgw_.c:525
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Ç ÊïéíÞ Óýíäåóç Äéáäéêôýïõ äåí Ý÷åé ñõèìéóôåß ðïôÝ."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"ÌåôÜ ôçí áëëáãÞ ìåãÝèïõò óôçí êáôÜôìçóç %s, üëá ôá äåäïìÝíá óå áõôÞí ôçí "
-"êáôÜôìçóç èá ÷áèïýí"
+#: ../../standalone/drakgw_.c:531
+msgid "Internet connection sharing configuration"
+msgstr "Ñýèìéóç ÊïéíÞò óýíäåóçò Äéáäéêôýïõ"
-#: ../../standalone/drakconnect:1
+#: ../../standalone/drakgw_.c:539
#, c-format
-msgid "Internet connection configuration"
-msgstr "Ñýèìéóç óýíäåóçò Äéáäéêôýïõ"
-
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
+msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
+"Êáëþò ïñßóáôå óôï åñãáëåßï ñýèìéóçò ôçò ÊïéíÞò Óýíäåóçò ôïõ Äéáäéêôýïõ!\n"
"\n"
+"%s\n"
"\n"
-" ÐñïóèÞêç."
-
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "USB"
-msgstr "LSB"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "ÁíáæÞôçóç óôáèìþí ôçëåüñáóçò"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
-msgstr "ÐõñÞíáò:"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_About..."
-msgstr "/_Ó÷åôéêÜ ìå..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
-msgstr "Âåããáëéêü"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
-msgstr "Ðñïôßìçóç: "
+"ÊÜíôå êëéê óôï Ñýèìéóç ãéá íá îåêéíÞóåôå ôïí ïäçãü åãêáôÜóôáóçò."
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Õðçñåóßåò: %d åíåñãïðïéçìÝíåò ãéá %d åããåãñáììÝíåò"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "group"
+msgstr "ÏìÜäá åñãáóßáò:"
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "ÄéóêÝôá åêêßíçóçò"
+#: ../../standalone/drakperm_.c:36
+msgid "path"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "ÍÞóïé Óïëïìþíôïò"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "permissions"
+msgstr "êáôÜôìçóç %s"
-#: ../../standalone/mousedrake:1
-#, fuzzy, c-format
-msgid "Please test your mouse:"
-msgstr "Ðáñáêáëþ äïêéìÜóôå ôï ðïíôßêé"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "user"
+msgstr "×ñÞóôçò"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(Üñèñùìá %s)"
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
-msgstr "ÏìÜäá åñãáóßáò:"
+#: ../../standalone/drakperm_.c:44
+#, fuzzy
+msgid "delete"
+msgstr "ÄéáãñáöÞ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Äéêôõáêü üíïìá åêôõðùôÞ Þ IP"
+#: ../../standalone/drakperm_.c:45
+msgid "edit"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "down"
+#: ../../standalone/drakperm_.c:46
+#, fuzzy
+msgid "Down"
msgstr "Ïëïêëçñþèçêå"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Host Path or Module"
-msgstr "Óýóôçìá"
+#: ../../standalone/drakperm_.c:47
+#, fuzzy
+msgid "add a rule"
+msgstr "ÐñïóèÞêç áñèñþìáôïò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
msgstr ""
-"Ôï üíïìá ôïõ åêôõðùôÞ ðñÝðåé íá ðåñéÝ÷åé ìüíï ãñÜììáôá, áñéèìïýò êáé ôïí "
-"÷áñáêôÞñá underscore"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Show current interface configuration"
-msgstr "ÐñïâïëÞ ôçò ôñÝ÷ïõóáò ñýèìéóçò äéåðáöÞ"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Add Printer"
-msgstr "ÅêôõðùôÞò"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakperm_.c:51
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."
+"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 ""
-"\n"
-"\n"
-"\n"
-" åîõðçñåôçôÞò."
-
-#: ../../help.pm:1
-#, c-format
-msgid "Development"
-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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Done"
-msgstr "Ïëïêëçñþèçêå"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Web Server"
-msgstr "ÅîõðçñåôçôÞò Éóôïóåëßäùí"
+#: ../../standalone/drakperm_.c:56
+#, fuzzy
+msgid "Add a new rule at the end"
+msgstr "ÐñïóèÞêç íÝïõ åêôõðùôÞ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "×éëÞ"
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\t×ùñßò ôï Áñ÷åßï ÓõóôÞìáôïò\n"
+#: ../../standalone/drakperm_.c:58
+#, fuzzy
+msgid "Up selected rule one level"
+msgstr "ÁðïåðéëïãÞ ¼ëùí"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
msgstr ""
-"Ïé ïäçãïß ôùí åêôõðùôþí ìåëÜíçò ðïõ ðáñÝ÷ïíôáé áðü ôç Lexmark õðïóôçñßæïõí "
-"ìüíï ôïðéêïýò åêôõðùôÝò, äåí õðïóôçñßæïõí åêôõðùôÝò óå áðïìáêñõóìÝíïõò "
-"õðïëïãéóôÝò Þ åîõðçñåôçôÝò åêôõðþóåùí. Ðáñáêáëþ óõíäÝóôå ôïí åêôõðùôÞ óáò óå "
-"ìéá ôïðéêÞ èýñá Þ ñõèìßóôå ôïí óôï ìç÷Üíçìá ðïõ åßíáé óõíäåäåìÝíïò."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, 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!"
+#: ../../standalone/drakperm_.c:60
+#, fuzzy
+msgid "Delete selected rule"
msgstr ""
-"óõóêåõÞ\n"
-"\n"
-" Ïëïêëçñþèçêå óõóêåõÞ!"
-
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "(ôï %s Ý÷åé Þäç ðñïóôåèåß)"
+"ÅðáíáöïñÜ ÅðéëåãìÝíùí\n"
+"Áñ÷åßùí"
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Bootloader installation in progress"
-msgstr "Ðñüãñáììá åêêßíçóçò"
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
+msgstr "áíáæÞôçóç"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
-msgstr ", ìå ôçí åíôïëÞ %s"
+#: ../../standalone/drakperm_.c:231
+#, fuzzy
+msgid "Current user"
+msgstr "Áðïäï÷Þ ÷ñÞóôç"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Ôáõôü÷ñïíá ôá ðëÞêôñá Alt êáé Shift"
+#: ../../standalone/drakperm_.c:236
+#, fuzzy
+msgid "Permissions"
+msgstr "¸êäïóç: %s\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Users"
-msgstr "ÐñïóèÞêç/Áöáßñåóç ×ñçóôþí"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Ëåßðåé ç äéåýèõíóç ôïõ ÕðïëïãéóôÞ/Äéêôýïõ."
+#: ../../standalone/drakperm_.c:238
+#, fuzzy
+msgid "Property"
+msgstr "Èýñá"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
-msgstr "åâäïìáäéáßá"
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
+msgstr ""
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "Ñõèìßóåéò"
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Create/Transfer backup keys for SSH"
+#: ../../standalone/drakperm_.c:296
+msgid ""
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
msgstr ""
-"Äçìéïõñãßá/ÌåôáöïñÜ\n"
-"áíôéãñÜöùí áóöáëåßáò ôùí êëåéäéþí SSH"
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr "ÁõôÞ åßíáé ç ðëÞñçò ëßóôá ôùí äéáèÝóéìùí ÷ùñþí"
+#: ../../standalone/drakperm_.c:297
+#, fuzzy
+msgid "Use owner id for execution"
+msgstr "×ñÞóç áõôüìáôçò áíß÷íåõóçò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "ÅíáëëáêôéêÞ äïêéìáóôéêÞ óåëßäá (A4)"
+#: ../../standalone/drakperm_.c:298
+#, fuzzy
+msgid "Use group id for execution"
+msgstr "×ñÞóç áõôüìáôçò áíß÷íåõóçò"
-#: ../../install_steps_interactive.pm:1
-#, 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."
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
msgstr ""
-"ÅÜí Ý÷åôå üëá ôá ðáñáêÜôù CDs, ðáôÞóôå ÅíôÜîåé.\n"
-"ÅÜí äåí Ý÷åôå êáíÝíá áðü ôá ðáñáêÜôù CDs, ðáôÞóôå Áêýñùóç.\n"
-"ÅÜí äåí Ý÷åôå êÜðïéá áðü áõôÜ, áðïåðéëÝîôå ôá êáé ðáôÞóôå ÅíôÜîåé."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
-msgstr "Ðáñáêáëþ ðåñéìÝíåôå"
+#: ../../standalone/drakperm_.c:304
+#, fuzzy
+msgid "Path selection"
+msgstr "ÔìÞìá Splash"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP"
+#: ../../standalone/drakperm_.c:350
+#, fuzzy
+msgid "user :"
+msgstr "×ñÞóôçò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup user files"
-msgstr "Áíôßãñáöá áóöáëåßáò áñ÷åßùí ÷ñçóôþí"
+#: ../../standalone/drakperm_.c:352
+#, fuzzy
+msgid "group :"
+msgstr "ÏìÜäá åñãáóßáò:"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "New"
-msgstr "ÍÝï"
+#: ../../standalone/draksound_.c:46
+msgid "No Sound Card detected!"
+msgstr "Äåí âñÝèçêå ÊÜñôá ¹÷ïõ!"
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/draksound_.c:47
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\"."
-msgstr ""
-"Linux\n"
-" Root\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Linux\n"
-"\n"
-"\n"
-" óçìáíôéêü\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" åîõðçñåôçôÞò Ãéá Ðñï÷ùñçìÝíïõò\n"
-"\n"
-" LDAP NIS ÔïìÝáò Windows ÔïìÝáò\n"
+"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"
-" ¼÷é Äéáäßêôõï\n"
-"."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/draksound_.c:54
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."
-msgstr ""
-"åðßðåäï\n"
-" åðßðåäï\n"
-"\n"
-" Äéáäßêôõï åðßðåäï\n"
"\n"
"\n"
"\n"
-"\n"
-" åî' ïñéóìïý."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "Öüñôùóç áðü äéóêÝôá"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Ïé ðáñáêÜôù åêôõðùôÝò âñÝèçêáí áõôüìáôá."
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Uses command %s"
-msgstr ", ìå ôçí åíôïëÞ %s"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
-msgstr "ÄéóêÝôá Åêêßíçóçò"
+#: ../../standalone/draksplash_.c:21
+#, fuzzy
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr "ôï ðáêÝôï ImageMagick áðáéôåßôáé ãéá ôç óùóôÞ ëåéôïõñãßá"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "Íïñâçãéêü"
+#: ../../standalone/draksplash_.c:67
+msgid "first step creation"
+msgstr "ðñþôï âÞìá äçìéïõñãßáò"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for new scanners ..."
-msgstr "Ãßíåôáé áíáæÞôçóç ãéá íÝïõò óáñùôÝò ..."
+#: ../../standalone/draksplash_.c:70
+msgid "final resolution"
+msgstr "ôåëéêÞ áíÜëõóç"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "ÅîõðçñåôçôÞò Apache World Wide Web"
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+msgid "choose image file"
+msgstr "ÅðéëÝîôå ìéá åéêüíá"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr ""
+#: ../../standalone/draksplash_.c:72
+msgid "Theme name"
+msgstr "¼íïìá èÝìáôïò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "select path to restore (instead of /)"
-msgstr "åðéëÝîôå ôç èÝóç åðáíáöïñÜò (áíôß ôïõ /)"
+#: ../../standalone/draksplash_.c:77
+#, fuzzy
+msgid "Browse"
+msgstr "áíáæÞôçóç"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
msgid "Configure bootsplash picture"
msgstr "Ñýèìéóç åéêüíáò bootsplash"
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr "Ãåùñãßá"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "Êßíá"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr ""
-" (Âåâáéùèåßôå üôé üëïé ïé åêôõðùôÝò óáò åßíáé óõíäåìÝíïé êáé óå "
-"ëåéôïõñãßá).\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "ÁíÜãíùóç äåäïìÝíùí ôùí åãêáôåóôçìÝíùí åêôõðùôþí..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
-msgstr "ÓâÞóéìï Ôþñá "
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "åîõðçñåôçôÞò"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "ÅéóÜãåôå ìéá ìïñöïðïéçìÝíç äéóêÝôá FAT óôïí ïäçãü %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr ""
-
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Ðáñáêáëþ ðåñéìÝíåôå... ÅöáñìïãÞ ñõèìßóåùí"
-
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-#
-#. -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
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Welcome to GRUB the operating system chooser!"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
-msgstr "åëåãêôÝò SCSI"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr "óôïí åîõðçñåôçôÞ LPD \"%s\", óôïí åêôõðùôÞ \"%s\""
-
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
-msgstr "ÅðéëÝãïíôáò Ýíáí äéá÷åéñéóôÞ ðñïâïëÞò"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Äéêôõáêü ¼íïìá Zeroconf"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
+#: ../../standalone/draksplash_.c:90
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Ç IP äéåýèõíóç ðñÝðåé íá åßíáé óå ìïñöÞ 1.2.3.4"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configure CUPS printing system"
-msgstr "ÁëëáãÞ óõóôÞìáôïò åêôýðùóçò"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "Éóçìåñéíüò"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Add an item"
-msgstr "ÐñïóèÞêç óôïé÷åßïõ"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
+#: ../../standalone/draksplash_.c:91
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
-"Ïé åêôõðùôÝò óå áõôü ôï ìç÷Üíçìá åßíáé äéáèÝóéìïé óå Üëëïõò õðïëïãéóôÝò"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "China (Hong Kong)"
-msgstr "×ïíãê Êïíãê"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
+msgstr "ðëÜôïò êåéìÝíïõ"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Äåí ìðïñþ íá âñù ôï áðáñáßôçôï áñ÷åßï åéêüíáò `%s'."
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
+msgstr "ýøïò ðëáéóßïõ êåéìÝíïõ"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
-"Äåí âñÝèçêå êÜñôá Þ÷ïõ. ÄïêéìÜóôå ôï \"harddrake\" ìåôÜ ôçí åãêáôÜóôáóç"
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:95
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
-"Äüèçêå Üêõñç èÞñá: %s.\n"
-"Ôï óùóôü öïñìÜ åßíáé \"èýñá/tcp\" Þ \"èýñá/udp\", \n"
-"üðïõ èÞñá åßíáé åßíáé áñéèìüò ìåôáîý 1 êáé 65535."
-#: ../../any.pm:1
-#, c-format
-msgid "Shell"
-msgstr "Öëïéüò (shell)"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
+msgstr "ôï ðëÜôïò ôçò ãñáììÞò ðñïüäïõ"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sao Tome and Principe"
-msgstr "ÓÜï Ôüìå êáé Ðñßíôóéðå"
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
+msgstr "ôï ýøïò ôçò ãñáììÞò ðñïüäïõ"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
+msgstr "Ôï ÷ñþìá ôçò ãñáììÞò ðñïüäïõ"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
-msgstr "Áäõíáìßá ðñïóðÝëáóçò ìå ôï üíïìá ÷ñÞóôç %s (ëÜèïò êùäéêüò)"
+#: ../../standalone/draksplash_.c:113
+msgid "Preview"
+msgstr "ðñïåðéóêüðçóç"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "ÁæåñìðáúôæÜí (Ëáôéíéêü)"
+#: ../../standalone/draksplash_.c:115
+msgid "Save theme"
+msgstr "áðïèÞêåõóç èÝìáôïò"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package not installed"
-msgstr "Ôï ðáêÝôï äåí åßíáé åãêáôåóôçìÝíï"
+#: ../../standalone/draksplash_.c:116
+msgid "Choose color"
+msgstr "ÅðéëÝîôå ÷ñþìá"
-#: ../../lang.pm:1
-#, c-format
-msgid "American Samoa"
-msgstr "ÁìåñéêáíéêÞ Óáìüá"
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
+msgstr "ÅìöÜíéóç ëïãüôõðïõ óôçí Êïíóüëá"
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Become a MandrakeExpert"
-msgstr "Ãßíåôå MandrakeExpert"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, c-format
-msgid "Protocol"
-msgstr "Ðñùôüêïëëï"
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr "Áõôü ôï èÝìá äåí Ý÷åé áêüìá êÜðïéï bootsplash óôï %s !"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "ÁíôéãñáöÞ ãñáììáôïóåéñþí óôï óýóôçìÜ óáò"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
+msgstr "áðïèÞêåõóç èÝìáôïò Bootsplash ..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
-msgstr "ÂïÞèåéá Harddrake"
+#: ../../standalone/draksplash_.c:428
+msgid "ProgressBar color selection"
+msgstr "ÅðéëïãÞ ÷ñþìáôïò ãñáììÞò ðñïüäïõ"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
+#: ../../standalone/draksplash_.c:449
+msgid "You must choose an image file first!"
+msgstr "ÐñÝðåé íá åðéëÝîôå ðñþôá ìéá åéêüíá!"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Ñýèìéóç ôïõ ÄéáêïìéóôÞ Ôåñìáôéêïý Mandrake"
+#: ../../standalone/draksplash_.c:458
+msgid "Generating preview ..."
+msgstr "Äçìéïõñãßá ðñïåðéóêüðçóçò ..."
-#: ../../standalone/drakbackup:1
-#, c-format
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Áäõíáìßá äçìéïõñãßáò ðñïåðéóêüðçóçò Bootsplash"
+
+#: ../../standalone/drakxtv_.c:46
msgid ""
+"XawTV isn't installed!\n"
"\n"
-" DrakBackup Report Details\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
"\n"
"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
+"Ôï XawTV äåí åßíáé åãêáôåóôçìÝíï!\n"
"\n"
-" DrakBackup ËåðôïìÝñåéåò ÁíáöïñÜò\n"
"\n"
+"Áí Ý÷åôå êÜñôá Ôçëåüñáóçò áëëÜ ôï DrakX äåí ôçí âñÞêå (÷ùñßò bttv\n"
+"module óôï \"/etc/modules\") êáé äåí åãêáôÝóôçóå ïýôå ôï xawtv, ðáñáêáëþ\n"
+"óôåßëôå ôá áðïôÝëåóìá ôïõ \"lspcidrake -v -f\" óôï \"install\\@mandrakesoft."
+"com\"\n"
+"ìå èÝìá \"undetected TV card\".\n"
"\n"
+"\n"
+"Ìðïñåßôå íá åãêáôáóôÞóåôå ôï xawtv ìå ôçí åíôïëÞ \"urpmi xawtv\" óáí\n"
+"root, áðü ôçí êïíóüëá."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
-msgstr "ÅðáíáöïñÜ üëùí ôùí áíôéãñÜöùí áóöáëåßáò"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
-msgstr " óôç ðáñÜëëçëç èÞñá #%s"
+#: ../../standalone/drakxtv_.c:63
+msgid "Canada (cable)"
+msgstr "Êáíáäéêü (ÊáëùäéáêÞ)"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr "áí ïñéóôåß íáé, Ýëåã÷ïò ãéá áíïé÷ôÝò èýñåò."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "ºóùò ÷ñåéáóôïýí ìåñéêÜ ëåðôÜ ãéá íá óâçóôåß ôï ìÝóï."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "Äåí ìðïñåßôå íá åðéëÝîåôå/áðïåðéëÝîåôå áõôü ôï ðáêÝôï"
-
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "Ðñïóï÷Þ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
msgstr ""
-"\n"
-"- ¶ëëá Áñ÷åßá:\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name"
-msgstr "ÁðïìáêñõóìÝíï äéêôõáêü üíïìá"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr "ðñüóâáóç óå ðñïãñÜììáôá ×"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
+msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "Õðïëïãßæåôáé ôï ìÝãåèïò ôçò êáôÜôìçóçò ôùí Windows"
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
+msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Italy"
-msgstr "Éôáëßá"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
+msgstr "Éáðùíßá (ÊáëùäéáêÞ)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
-msgstr "ÍÞóïé ÊÝõìáí"
+#: ../../standalone/drakxtv_.c:65
+msgid "East Europe"
+msgstr "ÁíáôïëéêÞ Åõñþðç"
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "óöÜëìá êáôÜ ôçí áðïóýíäåóç ôïõ %s: %s"
+#: ../../standalone/drakxtv_.c:65
+msgid "France [SECAM]"
+msgstr "Ãáëëßá [SECAM]"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "¼íïìá åêôõðùôÞ"
+#: ../../standalone/drakxtv_.c:65
+msgid "Ireland"
+msgstr "Éñëáíäßá"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
-msgstr "áðåíåñãïðïßçóç"
+#: ../../standalone/drakxtv_.c:65
+msgid "West Europe"
+msgstr "ÄõôéêÞ Åõñþðç"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do it!"
-msgstr "Êáí' ôï!"
+#: ../../standalone/drakxtv_.c:66
+msgid "Australia"
+msgstr "Áõóôñáëßá"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
-msgstr "ôï %s äåí áíôáðïêñßíåôáé"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
+msgstr "ÍÝá Æçëáíäßá"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select model manually"
-msgstr "ÅðéëÝîôå ôï ìïíôÝëï ÷åéñïêßíçôá"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
+msgstr "Íüôéá ÁöñéêÞ"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Format"
-msgstr "Ìïñöïðïßçóç"
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
+msgstr "ÁñãåíôéíÞ"
-#: ../../network/adsl.pm:1
-#, 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'"
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
msgstr ""
-"Ï ðéï êïéíüò ôñüðïò óýíäåóçò adsl åßíáé pppoe.\n"
-"ÏñéóìÝíåò óõíäÝóåéò ÷ñçóéìïðïéïýí pptp, êÜðïéåò ëßãåò dhcp.\n"
-"ÅÜí äåí îÝñåôå, åðéëÝîôå '÷ñÞóç pppoe'"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
-msgstr "ÄéÜöïñá"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
-msgstr "Zip"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Left Alt key"
-msgstr "Äåîéü ðëÞêôñï Alt"
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Load setting"
-msgstr "Öüñôùóç ñõèìßóåùí"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:102
msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
+"Please,\n"
+"type in your tv norm and country"
msgstr ""
-"\n"
-"\n"
-"Ôï Printerdrake äåí ìðüñåóå íá êáèïñßóåé ôï ìïíôÝëï ôïõ åêôõðùôÞ %s. "
-"Ðáñáêáëþ åðéëÝîôå ôï óùóôü ìïíôÝëï áðü ôç ëßóôá."
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Ïñéóìüò áõôïý ôïõ åêôõðùôÞ ùò ðñïåðéëåãìÝíïõ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
msgstr ""
-"\n"
-"ÅðéëÝîôå ôïõò åêôõðùôÝò ðïõ èÝëåôå íá ìåôáöÝñåôå êáé êÜíôå\n"
-"êëéê óôï \"ÌåôáöïñÜ\"."
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
-msgstr "Áëâáíéêü"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "Ëéèïõáíßá"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
+msgstr "Ðåñéï÷Þ:"
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "ÓõìðáãÞò"
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
+msgstr "Ãßíåôáé áíáæÞôçóç óôáèìþí ôçëåüñáóçò ..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "ÂñÝèçêå ôï ìïíôÝëï: %s %s"
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
+msgstr "ÁíáæÞôçóç óôáèìþí ôçëåüñáóçò"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
-msgstr ""
+#: ../../standalone/drakxtv_.c:120
+msgid "There was an error while scanning for TV channels"
+msgstr "ÐñïêëÞèçêå óöÜëìá êáôÜ ôçí áíáæÞôçóç óôáèìþí ôçëåüñáóçò"
-#: ../../any.pm:1
-#, c-format
-msgid "Local files"
-msgstr "ÔïðéêÜ áñ÷åßá"
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
+msgstr "Ôï XawTV åãêáôáóôÜèçêå!"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "ßóùò"
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
+msgstr "ÊáëÞ óáò ìÝñá!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
-msgstr "ÐáíáìÜò"
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Ôþñá ìðïñåßôå íá åêôåëÝóåôå ôï xawtv (ìÝóá áðü ôá × Window!) !\n"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Can't open %s!"
-msgstr "Äåí âñÝèçêå ôï %s óôï %s"
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
+msgstr "Äåí âñÝèçêå êÜñôá ôçëåüñáóçò!"
-#: ../../Xconfig/various.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakxtv_.c:148
msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
+"No TV Card has been detected on your machine. Please verify that a Linux-"
+"supported Video/TV Card is correctly plugged in.\n"
"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
"\n"
-"Do you have this feature?"
-msgstr ""
+"You can visit our hardware database at:\n"
"\n"
"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+"Äåí âñÝèçêå êÜñôá ôçëåüñáóçò óôï ìç÷ÜíçìÜ óáò.Ðáñáêáëþ âåâáéùèåßôå üôé ìéá "
+"õðïóôçñéæüìåíç êÜñôá óôï Linux åßíáé óõíäåìÝíç.\n"
"\n"
"\n"
+"Ìðïñåßôå íá åðéóêåöôåßôå ôçí âÜóç äåäïìÝíùí óôï: \n"
"\n"
"\n"
-" Ïëïêëçñþèçêå?"
+"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "Ïèüíç"
+#: ../../standalone/harddrake2_.c:17
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Åêôýðùóç äïêéìáóôéêþí óåëßäùí..."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
msgstr ""
-"ÔïìÝáò Windows ÔïìÝáò Windows åîõðçñåôçôÞò ÷ñÞóôçò\n"
-"\n"
-" ÔïìÝáò Windows åîõðçñåôçôÞò\n"
-"\n"
-" ÔïìÝáò Windows åîõðçñåôçôÞò Ïëïêëçñþèçêå\n"
-"\n"
-" ÔïìÝáò Windows åîõðçñåôçôÞò LPD Printerdrake\n"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ÷éëéÜäåò ÷ñþìáôá (16 bits)"
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
+msgstr "Bus"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/harddrake2_.c:21
msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-"\n"
-"- ÁðïèÞêåõóç óôïí óêëçñü äßóêï óôçí èÝóç: %s\n"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Áöáßñåóç ãñáììáôïóåéñþí áðü ôï óýóôçìÜ óáò"
-#: ../../standalone/drakgw:1
-#, 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."
-msgstr ""
-"Ðñïåéäïðïßçóç, ï ðñïóáñìïãÝáò äéêôýïõ (%s) Ý÷åé Þäç ñýèìéóç\n"
-"\n"
-"ÈÝëåôå íá îáíáñõèìéóôåß áõôüìáôá ;\n"
-"\n"
-"Ìðïñåßôå íá ôï êÜíåôå êáé ìüíïé óáò áëëÜ ðñÝðåé íá îÝñåôå ôé êÜíåôå."
+#: ../../standalone/harddrake2_.c:22
+msgid "Channel"
+msgstr "ÊáíÜëé"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "Ãñáöéêü ðåñéâÜëëïí óôçí åêêßíçóç"
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
+msgstr "ÊáíÜëé EIDE/SCSI"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
msgstr ""
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Äåí õðÜñ÷ïõí áñêåôÝò êáôáôìÞóåéò ãéá RAID åðéðÝäïõ %d\n"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "format of floppies supported by the drive"
-msgstr "ÖïñìÜ ãéá äéóêÝôåò ðïõ ìðïñåß íá äå÷ôåß ï ïäçãüò"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy failed, file %s not found"
+#: ../../standalone/harddrake2_.c:23
+msgid ""
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "local config: true"
-msgstr "äåí ñõèìßóôçêå"
+#: ../../standalone/harddrake2_.c:26
+msgid "Bus identification"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:27
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."
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-"Oé ðáñáêÜôù åêôõðùôÝò Ý÷ïõí ñõèìéóôåß. ÊÜíôå äéðëü êëéê óå Ýíáí åêôõðùôÞ ãéá "
-"íá áëëÜîåôå ôéò ñõèìßóåéò ôïõ, íá ôïí ïñßóåôå ùò ðñïåðéëåãìÝíï Þ ãéá íá "
-"ðñïâÜëåôå ðëçñïöïñßåò ãéá áõôüí."
-
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connected"
-msgstr "ÓõíäÝèçêå"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
-msgstr "Ìáêåäïíéêü Ð.Ã Ä."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "ÌÜëé"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "Áñ÷åßï/Áðï_èÞêåõóç"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "No details"
-msgstr "×ùñßò ëåðôïìÝñåéåò"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "ðïëý êáëü"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Preview"
-msgstr "Ðñïåðéóêüðçóç"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Remote Control"
-msgstr "ÁðïìáêñõóìÝíïò ¸ëåã÷ïò"
+#: ../../standalone/harddrake2_.c:30
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select media for backup..."
-msgstr "Ðáñáêáëþ åðéëÝîôå ôï ìÝóï ãéá ôá áíôßãñáöá áóöáëåßáò..."
+#: ../../standalone/harddrake2_.c:33
+#, fuzzy
+msgid "Cache size"
+msgstr "ìÝãåèïò chunk"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "ÅîõðçñåôçôÞò XFree86: %s\n"
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Allow Thin Clients"
-msgstr "ÐñïóèÞêç/Áöáßñåóç Ðåëáôþí"
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Ãåùñãßá (\"Ñþóéêç\" äéÜôáîç)"
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
+msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_ÅðéëïãÝò"
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Your printer model"
-msgstr "Ôï ìïíôÝëï åêôõðùôÞ óáò"
+#: ../../standalone/harddrake2_.c:36
+#, fuzzy
+msgid "Cpuid level"
+msgstr "Åðßðåäï áóöáëåßáò"
-#: ../../any.pm:1
-#, 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)."
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
msgstr ""
-"\n"
-"\n"
-"(Ðñïóï÷Þ!:ÊÜíåôå ÷ñÞóç ôïõ XFS óôçí êáôÜôìçóç root\n"
-"ç äçìéïõñãßá äéóêÝôá åêêßíçóçò ìåãÝèïõò 1.44 Mb ìÜëëïí èá áðïôý÷åé,\n"
-"åðåéäÞ ôï XFS ÷ñåéÜæåôáé ðïëý ìåãÜëïõò ïäçãïýò.)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
msgstr ""
-"\n"
-"- ÄéáãñáöÞ áñ÷åßùí tar áðü ôïí äßóêï ìåôÜ ôï áíôßãñáöï áóöáëåßáò.\n"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/harddrake2_.c:37
msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
msgstr ""
-"Äåí âñÝèçêáí åéêüíåò CD Þ DVD, ðáñáêáëþ áíôéãñÜøôå ôï ðñüãñáììá åãêáôÜóôáóçò "
-"êáé ôá áñ÷åßá rpm."
-#: ../advertising/04-configuration.pl:1
-#, fuzzy, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "Ñýèìéóç ôïõ ÄéáêïìéóôÞ Ôåñìáôéêïý Mandrake"
-
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Save"
-msgstr "ÁðïèÞêåõóç"
+#: ../../standalone/harddrake2_.c:38
+#, fuzzy
+msgid "This field describes the device"
+msgstr "ôï ðåäßï ðåñéãñáöÞò ôçò óõóêåõÞò"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
-msgstr "Ôï %s äåí õðïóôçñßæåôáé"
+#: ../../standalone/harddrake2_.c:39
+msgid "Old device file"
+msgstr "Ðáëáéü áñ÷åßï óõóêåõÞò"
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr "Öüñôùóç ôùí ïäçãþí ãéá ôéò usb óõóêåõÝò óáò."
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
+msgstr "ðáëáéÜ óôáôéêÞ üíïìá óõóêåõÞò ôïõ ðáêÝôïõ dev"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Disk"
-msgstr "Äßóêïò"
+#: ../../standalone/harddrake2_.c:41
+msgid "New devfs device"
+msgstr "ÍÝá óõóêåõÞ devfs"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "ÅéóÜãåôå óõóêåõÞ åêôõðùôÞ URI"
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
-#: ../advertising/01-thanks.pl:1
-#, fuzzy, 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."
-msgstr "íÝï Linux"
+#: ../../standalone/harddrake2_.c:43
+msgid "Module"
+msgstr "¶ñèñùìá"
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "ÉóñáÞë"
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr "ôï Üñèñùìá ôïõ ðõñÞíá GNU/Linux ðïõ ÷åéñßæåôáé ôçí óõóêåõÞ"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "ÃáëëéêÞ ÃïõéÜíá"
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "default:LTR"
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "A command line must be entered!"
-msgstr "¸íá óùóôü URI ðñÝðåé íá åéóá÷èåß!"
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
-msgstr "ÅðéëïãÞ ÷ñÞóôç ÷åéñïêßíçôá"
+#: ../../standalone/harddrake2_.c:46
+msgid ""
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "ÌåôáöïñÜ ñõèìßóåùí åêôõðùôÞ"
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "ÈÝëåôå íá åíåñãïðïéÞóåôå ôçí åêôýðùóç óôïõò ðáñáðÜíù åêôõðùôÝò ;\n"
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Check additions/removals of suid root files"
-msgstr "áí ïñéóôåß íáé, Ýëåã÷ïò ãéá ðñïèÝóåéò/áöáéñÝóåéò áñ÷åßùí suid root."
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
+msgstr ""
-#: ../../any.pm:1
-#, fuzzy, 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."
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
msgstr ""
-"ÔïìÝáò Windows åîõðçñåôçôÞò\n"
-" ÔïìÝáò ÔïìÝáò Windows \n"
-"\n"
-" ÔïìÝáò Windows ÔïìÝáò ¼íïìá ÷ñÞóôç Êùäéêüò Ðñüóâáóçò\n"
-"."
-#: ../../printer/main.pm:1
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Èýñá %s)"
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use network connection to backup"
-msgstr "×ñÞóç óýíäåóç äéêôýïõ ãéá ôá áñ÷åßá áóöáëåßáò"
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
+msgstr ""
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Kernel version"
-msgstr "Ýêäïóç ðõñÞíá"
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
+msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/harddrake2_.c:53
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."
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-"\n"
-" Linux\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Linux\n"
-"\n"
-"\n"
-" Óôáèìüò Åñãáóßáò\n"
-" ÁíÜðôõîç\n"
-"\n"
-" Óôáèìüò Åñãáóßáò\n"
-"\n"
-"\n"
-"\n"
-" ÁíÜðôõîç\n"
-"\n"
-"\n"
-" ÅîõðçñåôçôÞò åîõðçñåôçôÞò\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Ìåôáêßíçóç óå åîÝëéîç ÏìÜäá åñãáóßáò:\n"
-" ÏìÜäá åñãáóßáò:\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" åîõðçñåôçôÞò\n"
-"\n"
-"\n"
-" Linux\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" ÁíáâÜèìéóç\n"
-" íÝï\n"
-"."
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "Áðïäï÷Þ ÷ñÞóôç"
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
-msgstr "ÅîõðçñåôçôÞò"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Left Shift key"
-msgstr "Áñéóôåñü ðëÞêôñï \"Windows\""
+#: ../../standalone/harddrake2_.c:55
+#, fuzzy
+msgid "Floppy format"
+msgstr "Ìïñöïðïßçóç"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid " local network"
-msgstr "Ôïðéêü Äßêôõï(á)"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
+msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "ÊáêÞ åðéëïãÞ, îáíáäïêéìÜóôå\n"
+#: ../../standalone/harddrake2_.c:56
+#, fuzzy
+msgid "Level"
+msgstr "åðßðåäï"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Search new servers"
-msgstr "ÁíáæÞôçóç äéáêïìéóôþí"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
-msgstr "Íçóß ×åñíô êáé ÍÞóïé ÌáêÍôüíáëíô"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
+msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
-msgstr "ÊáíÝíáò åíáëëáêôéêüò ïäçãüò"
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+msgid "Model"
+msgstr "ÌïíôÝëï"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "ÁëëáãÞ óå ðñï÷ùñçìÝíï ôñüðï ëåéôïõñãßáò"
+#: ../../standalone/harddrake2_.c:58
+msgid "hard disk model"
+msgstr "ìïíôÝëï óêëçñïý äßóêïõ"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
-msgstr "(óå áõôü ôï ìç÷Üíçìá)"
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Ç IP äéåýèõíóç ôçò ðýëçò ðñÝðåé íá åßíáé ôçò ìïñöÞò 1.2.3.4"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Model name"
+msgstr "¼íïìá áñèñþìáôïò"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
-msgstr ""
-"âñÝèçêå Ýíá \"%s\" winmodem, èÝëåôå íá åãêáôáóôÞóåôå ôï áðáñáßôçôï "
-"ëïãéóìéêü ;"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Official vendor name of the cpu"
+msgstr "ôï üíïìá êáôáóêåõáóôÞ ôçò óõóêåõÞò"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "ØÜ÷íù ãéá Þäç åãêáôåóôçìÝíá ðáêÝôá..."
+#: ../../standalone/harddrake2_.c:61
+msgid "Number of buttons"
+msgstr "Áñéèìüò ðëÞêôñùí"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
-msgstr ""
+#: ../../standalone/harddrake2_.c:62
+#, fuzzy
+msgid "Name"
+msgstr "¼íïìá: "
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Driver"
-msgstr "Ïäçãüò"
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "network printer port"
+msgstr ", åêôõðùôÞò äéêôýïõ \"%s\", èýñá %s"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
msgstr ""
-"Ôï Linuxconf êáìéÜ öïñÜ êÜíåé äéÜöïñåò åñãáóßåò\n"
-"êáôÜ ôçí åêêßíçóç ôïõ óõóôÞìáôïò ãéá íá äéáôçñÞóåé ôç ñýèìéóç ôïõ óõóôÞìáôïò."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "DVD-R device"
-msgstr "óõóêåõÞ"
+#: ../../standalone/harddrake2_.c:64
+#, fuzzy
+msgid "the number of the processor"
+msgstr "Ôï ÷ñþìá ôçò ãñáììÞò ðñïüäïõ"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "ÁðïìáêñõóìÝíïò åêôõðùôÞò óå åîõðçñåôçôÞ lpd"
+#: ../../standalone/harddrake2_.c:65
+#, fuzzy
+msgid "Model stepping"
+msgstr "Öüñôùóç ñõèìßóåùí"
-#: ../../standalone/drakfont:1
-#, 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."
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
msgstr ""
-"Ðñéí åãêáôáóôÞóåôå ôéò ãñáììáôïóåéñÝò, âåâáéùèåßôå üôé Ý÷åôå ôï äéêáßùìá íá "
-"êÜíåôå ÷ñÞóç áõôþí ôùí ãñáììáôïóåéñþí êáèþò êáé íá ôéò åãêáôáóôÞóåôå óôïí "
-"õðïëïãéóôÞ óáò\n"
-"\n"
-"-Ìðïñåßôå íá åãêáôáóôÞóåôå ôéò ãñáììáôïóåéñÝò êáíïíéêÜ. Óå óðÜíéåò "
-"ðåñéðôþóåéò, åéêïíéêÝò ãñáììáôïóåéñÝò ìðïñïýí íá ðáãþóïõí ôïí åîõðçñåôçôÞ ×."
-#: ../../help.pm:1
-#, fuzzy, 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."
+#: ../../standalone/harddrake2_.c:66
+#, fuzzy
+msgid "The type of bus on which the mouse is connected"
msgstr ""
-"Yaboot\n"
-" Linux\n"
-" áíé÷íåýèçêå\n"
-"\n"
-"\n"
-"\n"
-" Yaboot\n"
-"\n"
-" áðëü\n"
-"\n"
-" Root\n"
-" Linux\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" Linux\n"
-"\n"
-" Root\n"
-" Linux\n"
-" åî' ïñéóìïý\n"
-"\n"
-" Root\n"
-"\n"
-"\n"
-" Root\n"
-"\n"
-"\n"
-" ÐñïåðéëåãìÝíï åî' ïñéóìïý\n"
-"."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
-msgstr "ÔåôÜñôç"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "Ãåñìáíßá"
+"Ðáñáêáëþ åðéëÝîôå óåéñéáêÞ èýñá óôçí ïðïßá åßíáé óõíäåäåìÝíï ôï ðïíôßêé óáò."
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
-msgstr "Áõóôñßá"
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
+msgstr "ôï üíïìá êáôáóêåõáóôÞ ôçò óõóêåõÞò"
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "×ùñßò ðïíôßêé"
+#: ../../standalone/harddrake2_.c:68
+#, fuzzy
+msgid "the vendor name of the processor"
+msgstr "ôï üíïìá êáôáóêåõáóôÞ ôçò óõóêåõÞò"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "Ðáñáêáëþ ïñßóôå ôïí ÷þñï ôïõ CD/DVD "
+#: ../../standalone/harddrake2_.c:82
+msgid "/_Quit"
+msgstr "/_¸îïäïò"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Check permissions of files in the users' home"
-msgstr ""
-"áí ïñéóôåß íáé, Ýëåã÷ïò äéêáéùìÜôùí ôùí áñ÷åßùí óôïí áñ÷éêü êáôÜëïãï ÷ñÞóôç."
+#: ../../standalone/harddrake2_.c:83
+#, fuzzy
+msgid "/Autodetect _printers"
+msgstr "Åíôïðßóôçêáí áõôüìáôá"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-"ÅêôåëÝóôå \"sndconfig\" ìåôÜ ôçí åãêáôÜóôáóç ãéá ôçí ñýèìéóç ôçò êÜñôáò"
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
+msgstr "/_ÅðéëïãÝò"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "Óýìðôõîç äÝíôñïõ"
+#: ../../standalone/harddrake2_.c:85
+#, fuzzy
+msgid "/Autodetect _modems"
+msgstr "Åíôïðßóôçêáí áõôüìáôá"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Ñõèìßóåéò áõôüìáôçò åãêáôÜóôáóçò"
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
+msgstr "/_ÂïÞèåéá"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "Ñýèìéóç äéêôýïõ"
+#: ../../standalone/harddrake2_.c:89
+msgid "/_Help..."
+msgstr "/_ÂïÞèåéá..."
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "Ðïý èÝëåôå íá åãêáôáóôÞóåôå ôï ðñüãñáììá åêêßíçóçò;"
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
+msgstr "ÂïÞèåéá Harddrake"
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/harddrake2_.c:93
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"
+"Description of the fields:\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 ""
+"ÐåñéãñáöÞ ôùí ðåäßùí:\n"
"\n"
-"\n"
-"\n"
-"\n"
-" Ãéá Ðñï÷ùñçìÝíïõò\n"
-"\n"
-"\n"
-" Éóðáíßá\n"
-" åî' ïñéóìïý Ãéá Ðñï÷ùñçìÝíïõò\n"
-"\n"
-"\n"
-"\n"
-" Åðüìåíï\n"
-"\n"
-"\n"
-"\n"
-"\n"
-" ÷ñÞóôçò\n"
-" ÷ñÞóôçò."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr "Ôï %s äåí õðïóôçñßæåôáé áðü áõôÞ ôçí Ýêäïóç ôïõ Mandrake Linux."
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "tape"
-msgstr "Ôáéíßá"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr "ðåëÜôçò DHCP"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
+#: ../../standalone/harddrake2_.c:96
+msgid ""
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (óåéñéáêü, ðáëéüò C7 ôýðïò)"
+#: ../../standalone/harddrake2_.c:96
+#, fuzzy
+msgid "Select a device !"
+msgstr "ÅðéëÝîôå Ýíáí óáñùôÞ"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Ç åðáíáöïñÜ áðü ôï áñ÷åßï %s áðÝôõ÷å: %s"
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
+msgstr "/_ÁíáöïñÜ Bug"
-#: ../../fsedit.pm:1
-#, 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"
-msgstr ""
-"Äåí ìðïñþ íá äéáâÜóù ôïí ðßíáêá êáôáôìÞóåùí ôçò óõóêåõÞò %s,, åßíáé ðïëý\n"
-"êáôåóôñáììÝíïò :( Èá ðñïóðáèÞóù íá óõíå÷ßóù áöáéñþíôáò ôéò ëáíèáóìÝíåò \n"
-"êáôáôìÞóåéò (ÏËÁ ÔÁ ÄÅÄÏÌÅÍÁ èá ÷áèïýí!). Ç Üëëç åðéëïãÞ óáò åßíáé íá\n"
-"ìçí åðéôñÝøåôå óôï DrakX íá áããßîåé ôïí ðßíáêá êáôáôìÞóåùí. \n"
-"Ôï óöÜëìá åßíáé: %s\n"
-"\n"
-"Óõìöùíåßôå íá äéáãñáöïýí üëåò ïé êáôáôìÞóåéò;\n"
+#: ../../standalone/harddrake2_.c:102
+msgid "/_About..."
+msgstr "/_Ó÷åôéêÜ ìå..."
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Find Package"
-msgstr "%d ðáêÝôá"
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
+msgstr "Ó÷åôéêÜ ìå ôï Harddrake"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
+#: ../../standalone/harddrake2_.c:105
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
msgstr ""
-"Åßóôå âÝâáéïé üôé èÝëåôå íá ñõèìßóåôå ôçí åêôýðùóç óå áõôü ôï ìç÷Üíçìá;\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "New devfs device"
-msgstr "ÍÝá óõóêåõÞ devfs"
+"Áõôü åßíáé ôï HardDrake, Ýíá åñãáëåßï ñýèìéóçò ôçò Mandrake\n"
+"¸êäïóç:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
+#: ../../standalone/harddrake2_.c:106
+msgid "Author:"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Boot Style Configuration"
-msgstr "Ñýèìéóç Ôýðïõ Åêêßíçóçò"
-
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Automatic time synchronization"
-msgstr "Áõôüìáôïò óõã÷ñïíéóìüò þñáò (÷ñÞóç NTP)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "Ôá áíôßãñáöá áóöáëåßáò äåí âñÝèçêáí óôï %s."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "Áñìåíéêü (öùíçôéêü)"
+#: ../../standalone/harddrake2_.c:113
+msgid "Detection in progress"
+msgstr "áíß÷íåõóç óå åîÝëéîç %s"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Card model:"
-msgstr "ÌïíôÝëï êÜñôáò:"
+#: ../../standalone/harddrake2_.c:119
+msgid "Harddrake2 version "
+msgstr "¸êäïóç Harddrake2 "
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Thin Client"
-msgstr "ÐåëÜôçò DHCP"
-
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
-msgstr "Óáò åõ÷áñéóôïýìå ðïõ åðéëÝîáôå ôï Mandrake Linux 9.2"
+#: ../../standalone/harddrake2_.c:126
+msgid "Detected hardware"
+msgstr "Õëéêü ðïõ áíé÷íåýèçêå"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Start Server"
-msgstr "Åêêßíçóç ÅîõðçñåôçôÞò"
+#: ../../standalone/harddrake2_.c:129
+msgid "Information"
+msgstr "Ðëçñïöïñßåò"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr "ÔïõñêìåíéóôÜí"
+#: ../../standalone/harddrake2_.c:131
+msgid "Configure module"
+msgstr "Ñýèìéóç áñèñþìáôïò"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "All remote machines"
-msgstr "¼ëá ôá áðïìáêñõóìÝíá ìç÷áíÞìáôá"
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
+msgstr "ÅêôÝëåóç åñãáëåßï ñýèìéóçò"
-#: ../../standalone/drakboot:1
+#: ../../standalone/harddrake2_.c:143
#, c-format
-msgid "Install themes"
-msgstr "ÅãêáôÜóôáóç èåìÜôùí"
+msgid "Running \"%s\" ..."
+msgstr "ÅêôÝëåóç ôïõ \"%s\"..."
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
+#: ../../standalone/harddrake2_.c:159
+msgid ""
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "Ðñïåôïéìáóßá åãêáôÜóôáóçò"
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
+msgstr "ðñùôåýïõóá"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Åðåîåñãáóßá åðéëåãìÝíïõ õðïëïãéóôÞ/äßêôõï"
+#: ../../standalone/harddrake2_.c:231
+msgid "secondary"
+msgstr "äåõôåñåýïõóá"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add User -->"
-msgstr "ÐñïóèÞêç ÷ñÞóôç -->"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect modems"
+msgstr "Åíôïðßóôçêáí áõôüìáôá"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "Íáïýñïõ"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect printers"
+msgstr "Åíôïðßóôçêáí áõôüìáôá"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type fonts installation"
-msgstr "ÅãêáôÜóôáóç ãñáììáôïóåéñþí True Type"
+#: ../../standalone/harddrake2_.c:261
+#, fuzzy
+msgid "/Options"
+msgstr "/_ÅðéëïãÝò"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Áõôüìáôç áíß÷íåõóç åêôõðùôþí óõíäåìÝíïé óôï ôïðéêü óáò äßêôõï"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "Ðáñáêáëþ åðéëÝîôå ôçí äéÜôáîç ôïõ ðëçêôñïëïãßïõ."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN configuration"
-msgstr "Ñýèìéóç LAN"
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr "ÈÝëåôå ôï BackSpace íá åðéóôñÝöåé Delete óôçí êïíóüëá;"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "hard disk model"
-msgstr "ìïíôÝëï óêëçñïý äßóêïõ"
+#: ../../standalone/livedrake_.c:18
+msgid "Change Cd-Rom"
+msgstr "ÁëëáãÞ Cd-Rom"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/livedrake_.c:19
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."
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
+"Ðáñáêáëþ åéóÜãåôå ôï CD åãêáôÜóôáóçò óôïí ïäçãü óáò êáé ðáôÞóôå Ok.\n"
+"ÅÜí äåí ôï Ý÷åôå, ðáôÞóôå Áêýñùóç ãéá ôçí áðïöõãÞ äéêôõáêÞò áíáâÜèìéóçò."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Äåí ìðïñåßôå íá ÷ñçóéìïðïéÞóåôå ìéá êáôÜôìçóç LVM ãéá ðñïóÜñôçóç %s"
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Äåí ìðïñþ íá îåêéíÞóù ôï live upgrade!!!\n"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "ËÞøç Ãñáììáôïóåéñþí Windows "
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
+msgstr "Ç áëëáãÞ Ýãéíå, áëëÜ ãéá íá éó÷ýóåé èá ðñÝðåé íá ãßíåé áðïóýíäåóç"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
+msgstr "logdrake"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
+#: ../../standalone/logdrake_.c:68
+msgid "Show only for the selected day"
+msgstr "ÅìöÜíéóç ìüíï ãéá ôçí åðéëåãìÝíç çìÝñá"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "Éñáíéêü"
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
+msgstr "/Áñ÷åßï/_ÍÝï"
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
-msgstr "Êñïáôßá"
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
+msgstr "<control>N"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "Ðýëç äéêôýïõ:"
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
+msgstr "/Áñ÷åßï/¶_íïéãìá"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add server"
-msgstr "ÐñïóèÞêç åîõðçñåôçôÞ"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
+msgstr "<control>O"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name"
-msgstr "ÁðïìáêñõóìÝíïò üíïìá åêôõðùôÞ"
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr "Áñ÷åßï/Áðï_èÞêåõóç"
-#: ../advertising/10-security.pl:1
-#, 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."
-msgstr ""
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
+msgstr "<control>S"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "ÓõóêåõÞ: "
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
+msgstr "/Áñ÷åßï/ÁðïèÞêåõóç _Ùò"
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr "/Áñ÷åßï/-"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "¶äåéá ÷ñÞóçò"
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
+msgstr "/ÅðéëïãÝò/Ôåóô"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "System Options"
-msgstr "ÅðéëïãÝò ÓõóôÞìáôïò"
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
+msgstr "/ÂïÞèåéá/_Ó÷åôéêÜ ìå..."
-#: ../../security/level.pm:1
-#, c-format
-msgid "Please choose the desired security level"
-msgstr "ÅðéëÝîôå ôï åðéèõìçôü åðßðåäï áóöáëåßáò"
+#: ../../standalone/logdrake_.c:145
+msgid "User"
+msgstr "×ñÞóôçò"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr ""
-"Ï õðïëïãéóôÞò åßíáß Þäç óôç ëßóôá, äåí ìðïñåßôå íá ôïí ðñïóèÝóåôå îáíÜ.\n"
+#: ../../standalone/logdrake_.c:146
+msgid "Messages"
+msgstr "Ìçíýìáôá"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", USB printer"
-msgstr ", åêôõðùôÞò USB"
+#: ../../standalone/logdrake_.c:147
+msgid "Syslog"
+msgstr "Syslog"
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-"Áäõíáìßá óùóôïý ôåñìáôéóìïý ôïõ mkbootdisk: \n"
-" %s \n"
-" %s"
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
+msgstr "ÅðåîÞãçóç Åñãáëåßùí ôçò Mandrake"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
+#: ../../standalone/logdrake_.c:151
+msgid "search"
+msgstr "áíáæÞôçóç"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "ÅðéëÝîôå ôéò åöáñìïãÝò ðïõ èá õðïóôçñßæïõí ôéò ãñáììáôïóåéñÝò :"
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
+msgstr "¸íá åñãáëåßï ãéá íá âëÝðåôå ôá log óáò"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "Ñýèìéóç ×"
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
+msgstr "Ñõèìßóåéò"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "hd"
-msgstr "Ôóáíô"
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
+msgstr "ôáéñéÜæåé"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Ôïõñêéêü (ðáñáäïóéáêü \"F\" ìïíôÝëï)"
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
+msgstr "áëëÜ äåí ôáéñéÜæåé"
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "Óõã÷áñçôÞñéá!"
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
+msgstr "ÅðéëÝîôå Ýíá áñ÷åßï"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
-msgstr "×ñÞóç id êáôü÷ïõ ãéá åêôÝëåóç"
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
+msgstr "Çìåñïëüãéï"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Allow remote root login"
-msgstr "¼ëá ôá áðïìáêñõóìÝíá ìç÷áíÞìáôá"
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
+msgstr "Ðåñéå÷üìåíï ôïõ áñ÷åßïõ"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Down"
-msgstr "ÊÜôù"
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+msgid "Mail alert"
+msgstr "Åéäïðïßçóç Ôá÷õäñïìåßïõ"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/logdrake_.c:245
#, c-format
-msgid "Raw printer (No driver)"
-msgstr "ÁêáôÝñãáóôïò åêôõðùôÞò (×ùñßò ïäçãü)"
+msgid "please wait, parsing file: %s"
+msgstr "ðáñáêáëþ ðåñéìÝíåôå, åðåîåñãáóßá áñ÷åßïõ: %s"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Install rpm"
-msgstr "ÅãêáôÜóôáóç rpm"
+#: ../../standalone/logdrake_.c:392
+msgid "Mail alert configuration"
+msgstr "Ñýèìéóç åéäïðïßçóçò Ôá÷õäñïìåßïõ"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/logdrake_.c:393
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"
+"Welcome to the mail configuration utility.\n"
+"\n"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Ãéá íá åêôõðþóåôå áðü ôç ãñáììÞ åíôïëþí (ðáñÜèõñï ôåñìáôéêïý) ìðïñåßôå íá "
-"êÜíåôå ÷ñÞóç ôçò åíôïëÞò \"%s <áñ÷åßï>\" Þ ìðïñåßôå íá êÜíåôå ÷ñÞóç ãñáöéêïý "
-"åñãáëåßï åêôýðùóçò: \"xpp <áñ÷åßï>\" Þ \" kprinter <áñ÷åßï>\". Ôï ãñáöéêü "
-"åñãáëåßï óáò åðéôñÝðåé íá áëëÜîåôå åýêïëá ôéò ñõèìßóåéò åðéëïãþí.\n"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "ÅíáðïìÝíùí ÷ñüíïò "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "ÌåãÜëç Âñåôáíßá (UK)"
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "Áðïóýíäåóç"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "ÁðåãêáôÜóôáóç Ãñáììáôïóåéñþí"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Ðáñáêáëþ ðåñéìÝíåôå, ñõèìßæåôáé ôï åðßðåäï áóöáëåßáò..."
+"Êáëþò ïñßóáôå óôï åñãáëåßï ñýèìéóçò ôá÷õäñïìåßïõ.\n"
+"\n"
+"Åäþ, èá ìðïñÝóåôå íá ñõèìßóåôå ôï óýóôçìá åéäïðïßçóçò\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "Ãåñìáíéêü (÷ùñßò íåêñÜ ðëÞêôñá)"
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
+msgstr "ÅîõðçñåôçôÞò Apache World Wide Web"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
+#: ../../standalone/logdrake_.c:401
+msgid "Domain Name Resolver"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
-msgstr "ÌåôáöÝñåôáé ï %s..."
+#: ../../standalone/logdrake_.c:402
+msgid "Ftp Server"
+msgstr "ÄéáêïìéóôÞò Ftp"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ÷éëéÜäåò ÷ñþìáôá (15 bits)"
+#: ../../standalone/logdrake_.c:403
+msgid "Postfix Mail Server"
+msgstr "ÅîõðçñåôçôÞò Ôá÷õäñïìåßïõ Postfix"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
-msgstr ""
-"Ìðïñåßôå íá ãßíåé åîáãùãÞ ìå ôçí ÷ñÞóç NFS Þ Samba. Ðáñáêáëþ åðéëÝîôå ðïßï "
-"èÝëåôå."
+#: ../../standalone/logdrake_.c:404
+msgid "Samba Server"
+msgstr "ÅîõðçñåôçôÞò Samba"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "ÃêÜìðéá"
+#: ../../standalone/logdrake_.c:405
+msgid "SSH Server"
+msgstr "ÅîõðçñåôçôÞò SSH"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "ÊÝíôñï ÅëÝã÷ïõ Mandrake"
+#: ../../standalone/logdrake_.c:406
+msgid "Webmin Service"
+msgstr "Õðçñåóßá Webmin"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Reboot"
-msgstr "Åðáíåêêßíçóç"
+#: ../../standalone/logdrake_.c:407
+msgid "Xinetd Service"
+msgstr "Õðçñåóßá Xinetd"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Multi-function device"
-msgstr ", ðïëõ÷ñçóôéêÞ óõóêåõÞ"
+#: ../../standalone/logdrake_.c:414
+msgid "service setting"
+msgstr "Ñõèìßóåéò õðçñåóßáò"
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/logdrake_.c:415
msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp.\n"
-"Have a look at /etc/services for information."
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
-"Ìðïñåßôå íá åéóÜãåôå äéÜöïñåò èÞñåò.\n"
-"¸ãêõñá ðáñáäåßãìáôá åßíáé: 139/tcp 139/udp.\n"
-"Äåßôå ôï /etc/services ãéá ðëçñïöïñßåò."
+"Èá ëÜâåôå ìéá åéäïðïßçóç åÜí ìéá áðü ôéò åðéëåãìÝíåò õðçñåóßåò äåí åêôåëåßôáé"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Ôáéíßá \n"
+#: ../../standalone/logdrake_.c:428
+msgid "load setting"
+msgstr "Öüñôùóç ñõèìßóåùí"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-"Äåí âñÝèçêå ðåñéçãçôÞò óôï óýóôçìÜ óáò, Ðáñáêáëþ åãêáôáóôÞóôå Ýíáí áí èÝëåôå "
-"íá ðåñéçãçèåßôå óôï óýóôçìá âïÞèåéáò"
+"Èá ëÜâåôå ìéá åéäïðïßçóç åÜí ôï öïñôßï åßíáé ìåãáëýôåñï áðü áõôÞ ôçí ôéìÞ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remember this password"
-msgstr "Áðïìíçìüíåõóç ôïõ êùäéêïý ðñüóâáóçò"
+#: ../../standalone/logdrake_.c:444
+msgid "alert configuration"
+msgstr "Ñýèìéóç åéäïðïéÞóåùí"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr ""
+#: ../../standalone/logdrake_.c:445
+msgid "Please enter your email address below "
+msgstr "Ðáñáêáëþ åéóÜãåôå ôçí çëåêôñïíéêÞ óáò äéåýèõíóç"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Ç ÊïéíÞ Óýíäåóç óôï Äéáäßêôõï ôþñá åíåñãïðïéÞèçêå."
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
+msgstr "ÁðïèÞêåõóç Ùò.."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Äßêôõï ìÝóù SSH.\n"
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "Ðáñáêáëþ åðéëÝîôå ôýðï ðïíôéêéïý."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr "áíé÷íåýèçêå ÷ñÞóôçò."
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
+msgstr "Åîïìïßùóç ôñßôïõ ðëÞêôñïõ;"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid " cable"
-msgstr "Ðßíáêáò"
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Ñõèìßóåéò äéêôýïõ"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
-msgstr "×ñÞóç ôïõ åëåýèåñïõ ÷þñïõ óôçí êáôÜôìçóç ôùí Windows"
+#: ../../standalone/net_monitor_.c:96
+#, fuzzy
+msgid "Profile "
+msgstr "Ðñïößë: "
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "Ôï %s âñÝèçêå óôï %s,íá ñõèìéóôåß áõôüìáôá;"
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Ïäçãüò XFree86: %s\n"
+#: ../../standalone/net_monitor_.c:103
+#, fuzzy
+msgid "Sending Speed:"
+msgstr "ÁðïóôïëÞ áñ÷åßùí..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
msgstr ""
-"Áõôüò ï õðïëïãéóôÞò/äßêôõï åßíáé Þäç óôç ëßóôá, äåí ìðïñåß íá ðñïóôåèåß "
-"îáíÜ.\n"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "ÅðéëÝîôå ôá ðáêÝôá ðïõ èÝëåôå íá åãêáôáóôÞóåôå"
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
-msgstr "Ðáðïýá-ÍÝá ÃïõúíÝá"
+#: ../../standalone/net_monitor_.c:106
+#, fuzzy
+msgid "Connection Time: "
+msgstr "Ôýðïò óýíäåóçò: "
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Multi-function device on a parallel port"
-msgstr ", ðïëõ÷ñçóôéêÞ óõóêåõÞ óôçí ðáñÜëëçëç èÞñá #%s"
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
+msgstr ""
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Busy files"
-msgstr "Áíôßãñáöá áóöáëåßáò ôïõ óõóôÞìáôïò áñ÷åßùí"
+#: ../../standalone/net_monitor_.c:147
+#, fuzzy
+msgid "Wait please, testing your connection..."
+msgstr "ÄïêéìÞ óýíäåóçò... "
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "ÓÝñâéêï (êõñéëëéêü)"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Óýíäåóç óôï Äéáäßêôõï"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Ðáñáêáëþ åéóÜãåôå ôïí êáôÜëïãï ðïõ âñßóêïíôáé ôá áíôßãñáöá áóöáëåßáò"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Óýíäåóç óôï Äéáäßêôõï"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
msgstr ""
-"ÈÝëåôå íá ïñßóåôå áõôüí ôïí åêôõðùôÞ (\"%s\")\n"
-"óáí ôïí ðñïåðéëåãìÝíï åêôõðùôÞ;"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
-msgstr "To üñéï ôåñìáôéóìïý DHCP"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "Äçìéïõñãßá äßóêïõ åêêßíçóçò..."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Ðáñáêáëþ ðåñéìÝíåôå, äïêéìÜæåôáé ç óýíäåóç..."
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "ÄéáêïðÞ ëåéôïõñãßáò äéêôýïõ"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "'¼íïìá ×ñÞóôç"
+#: ../../standalone/net_monitor_.c:225
+#, fuzzy
+msgid "Connection complete."
+msgstr "Ôá÷ýôçôá óýíäåóçò"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:226
msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-"Ôï NFS åßíáé Ýíá äçìïöéëÝò ðñùôüêïëëï ãéá ôïí äéáìïéñáóìü áñ÷åßùí óå \n"
-"äßêôõá TCP/IP. ÁõôÞ ç õðçñåóßá ðñïóöÝñåé ëåéôïõñãßåò êëåéäþìáôïò áñ÷åßùí."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
-msgstr "ÐåëÜôçò DHCP"
+#: ../../standalone/net_monitor_.c:330
+#, fuzzy
+msgid "Color configuration"
+msgstr "Ñýèìéóç åéäïðïéÞóåùí"
-#: ../../standalone/harddrake2:1
-#, fuzzy, 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"
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
msgstr ""
-"Áõôü åßíáé ôï HardDrake, Ýíá åñãáëåßï ñýèìéóçò ôçò Mandrake\n"
-"¸êäïóç:"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
-msgstr "Üêõñï"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Åêôýðùóç/ÓÜñùóç óôï \"%s\""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit raid modules"
-msgstr "ðáñÜëåéøç ôùí áñèñùìÜôùí raid"
-#: ../../services.pm:1
-#, 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)."
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
msgstr ""
-"Ôï lpd åßíáé ç õðçñåóßá åêôõðþóåùí ðïõ áðáéôåßôáé ãéá íá ëåéôïõñãåß \n"
-"ç åíôïëÞ lpd. Åßíáé âáóéêÜ Ýíáò åîõðçñåôçôÞò ðïõ ðñïùèåß ôá áñ÷åßá \n"
-"óôïõò åêôõðùôÝò."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sunday"
-msgstr "ÊõñéáêÞ"
+#: ../../standalone/net_monitor_.c:400
+#, fuzzy
+msgid "Local measure"
+msgstr "ÔïðéêÜ áñ÷åßá"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Ñýèìéóç Óýíäåóçò Äéáäéêôýïõ"
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
+msgstr ""
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
-msgstr "áñéèìïß ÷ùñéóìÝíïé ìå êüììá"
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/net_monitor_.c:453
+#, fuzzy
msgid ""
-"Once you've selected a device, you'll be able to see the device information "
-"in fields displayed on the right frame (\"Information\")"
+"Warning, another internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Ìüëéò åðéëÝîåôå ìéá óõóêåõÞ, èá ìðïñåßôå íá äåßôå ôéò ðëçñïöïñßåò óå ðåäßá "
-"ðïõ åìöáíßæïíôáé óôï äåîß ôìÞìá ìå üíïìá(\"Ðëçñïöïñßåò\")"
+"Ðñïåéäïðïßçóç, åíôïðßóôçêå ìéá Üëëç óýíäåóç Äéáäéêôýïõ ðïõ ßóùò ÷ñçóéìïðïéåß "
+"ôï äßêôõü óáò"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Ìåôáêßíçóç ôïõ åðéëåãìÝíïõ êáíüíá Ýíá åðßðåäï ðÜíù"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "Óýíäåóç"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr ""
-"Ï ðáñáêÜôù óáñùôÞò\n"
-"\n"
-"%s\n"
-"åßíáé äéáèÝóéìïò óôï óýóôçìÜ óáò\n"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Disconnect %s"
+msgstr "Áðïóýíäåóç"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Åßóôå âÝâáéïé ãéá ôçí áöáßñåóç ôïõ åêôõðùôÞ \"%s\";"
+#: ../../standalone/printerdrake_.c:47
+msgid "Reading printer data ..."
+msgstr "ÁíÜãíùóç äåäïìÝíùí åêôõðùôÞ ..."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "I can't find any room for installing"
-msgstr "Äåí ìðïñþ íá âñù áñêåôü ÷þñï ãéá åãêáôÜóôáóç"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Detecting devices ..."
+msgstr "Åíôïðéóìüò óõóêåõþí..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Default printer"
-msgstr "ÐñïåðéëåãìÝíïò åêôõðùôÞò"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
+msgstr "ÄïêéìÞ èõñþí"
-#: ../../network/netconnect.pm:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"¸÷åôå ñõèìßóåé ðïëëïýò ôñüðïõò ãéá íá óõíäÝåóôå óôï Äéáäßêôõï.\n"
-"ÅðéëÝîôå áõôüí ðïõ èÝëåôå íá ÷ñçóéìïðïéÞóåôå.\n"
-"\n"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr "Ôï %s äåí õðïóôçñßæåôáé áðü áõôÞ ôçí Ýêäïóç ôïõ Mandrake Linux."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/scannerdrake_.c:54
#, c-format
-msgid "Modify RAID"
-msgstr "Ôñïðïðïßçóç RAID"
+msgid "%s found on %s, configure it?"
+msgstr "Ôï %s âñÝèçêå óôï %s,íá ñõèìéóôåß;"
-#: ../../network/isdn.pm:1
+#: ../../standalone/scannerdrake_.c:57
#, 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 "%s is not in the scanner database, configure it manually?"
msgstr ""
-"Åíôüðéóá ìéá ISDN êÜñôá, áëëÜ äåí îÝñù ôïí ôýðï ôçò. Ðáñáêáëþ åðéëÝîôå ìéá "
-"êÜñôá PCI áðü ôçí ðáñáêÜôù ïèüíç."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr "ÐñïóèÞêç ÷ñÞóôç"
+"ôï %s äåí åßíáé óôç âÜóç äåäïìÝíùí ôùí óáñùôþí, íá ñõèìéóôåß ÷åéñïêßíçôá;"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "Äßóêïé RAID %s\n"
+#: ../../standalone/scannerdrake_.c:63
+msgid "Select a scanner"
+msgstr "ÅðéëÝîôå Ýíáí óáñùôÞ"
-#: ../../lang.pm:1
+#: ../../standalone/scannerdrake_.c:91
#, c-format
-msgid "Liberia"
-msgstr "Ëéâåñßá"
+msgid "This %s scanner is unsupported"
+msgstr "Ï óáñùôÞò %s äåí õðïóôçñßæåôáé."
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:105
#, c-format
msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
msgstr ""
+"Ôï Scannerdrake äåí ìðüñåóå íá åíôïðßóåé ôïí óáñùôÞ %s.\n"
+"Ðáñáêáëþ åðéëÝîôå ôçí óõóêåõÞ óôçí ïðïßá åßíáé óõíäåìÝíï ï óáñùôÞò"
-#: ../../standalone/drakgw:1
+#: ../../standalone/scannerdrake_.c:107
+msgid "choose device"
+msgstr "ÅðéëÝîôå óõóêåõÞ"
+
+#: ../../standalone/scannerdrake_.c:113
#, 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"
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
msgstr ""
+"Ï óáñùôÞò %s ðñÝðåé íá ñõèìéóôåß áðü ôï printerdrake.\n"
+"Ìðïñåßôå íá ôï åêêéíÞóåôå áðü ôï ÊÝíôñï ÅëÝã÷ïõ Mandrake áðü ôï ôìÞìá Õëéêü."
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose your keyboard"
-msgstr "ÅðéëÝîôå ðëçêôñïëüãéï"
-
-#: ../../steps.pm:1
+#: ../../standalone/scannerdrake_.c:118
#, c-format
-msgid "Format partitions"
-msgstr "Ìïñöïð. êáôáôìÞó."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Áõôüìáôç äéüñèùóç ôçò ñýèìéóçò CUPS"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Running \"%s\" ..."
-msgstr "ÅêôÝëåóç ôïõ \"%s\"..."
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "enable radio support"
-msgstr "åíåñãïðïßçóç ñáäéïöþíïõ"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Êïéíü÷ñçóôïé óáñùôÝò óôïõò õðïëïãéóôÝò: "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "¼íïìá áñ÷åßïõ loopback: %s"
+msgid ""
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
+msgstr ""
+"Ï óáñùôÞò %s Ý÷åé ñõèìéóôåß. \n"
+"Ìðïñåßôå ôþñá íá óáñþóåôå Ýããñáöá ìå ôï ``XSane'' áðü ôï ìåíïý ÐïëõìÝóá/"
+"ÃñáöéêÜ áðü ìåíïý åöáñìïãþí."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "Please choose the printer to which the print jobs should go."
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-"Ðáñáêáëþ åðéëÝîôå ôïí åêôõðùôÞ óôïí ïðïßï èá áðïóôÝëëïíôáé ïé åñãáóßåò "
-"åêôýðùóçò."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not transfer printers"
-msgstr "×ùñßò ìåôáöïñÜ åêôõðùôþí"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
+msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Delay before booting the default image"
-msgstr "ÊáèõóôÝñçóç ðñéí ôçí åêêßíçóç"
+#: ../../standalone/service_harddrake_.c:64
+#, fuzzy
+msgid "Hardware probing in progress"
+msgstr "áíß÷íåõóç óå åîÝëéîç %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Hard Disk to backup"
-msgstr "×ñÞóç óêëçñïý äßóêïõ ãéá ôá áíôßãñáöá áóöáëåßáò"
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "ÅðéëÝîôå ãëþóóá"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Configure"
-msgstr "Ñýèìéóç"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "ÅðéëÝîôå åãêáôÜóôáóç"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake"
-msgstr "Scannerdrake"
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
+msgstr "Åíôïðéóìüò äßóêïõ"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Ðñïåéäïðïßçóç, åíôïðßóôçêå ìéá Üëëç óýíäåóç Äéáäéêôýïõ ðïõ ßóùò ÷ñçóéìïðïéåß "
-"ôï äßêôõü óáò"
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "Ñýèìéóç ðïíôéêéïý"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
-msgstr "Áíôßãñáöï Áóöáëåßáò ×ñçóôþí"
+#: ../../steps.pm_.c:18
+msgid "Choose your keyboard"
+msgstr "ÅðéëÝîôå ðëçêôñïëüãéï"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Ðáñáêáëþ åéóÜãåôå ôï üíïìá ôïõ óõóôÞìáôïò.\n"
-"Ôï üíïìá áõôü ðñÝðåé íá åßíáé Ýíá ðëÞñåò üíïìá óõóôÞìáôïò,\n"
-"üðùò ð.÷. ``mybox.mylab.myco.com''.\n"
-"Ìðïñåßôå åðßóçò íá åéóÜãåôå êáé ôçí äéåýèõíóç IP ôçò ðýëçò äéêôýïõ"
+#: ../../steps.pm_.c:19
+msgid "Security"
+msgstr "ÁóöÜëåéá"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "ÅðéëïãÞ Spooler ÅêôõðùôÞ"
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "Ðñïåô. óõó. áñ÷."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Create new theme"
-msgstr "Äçìéïõñãßá íÝïõ èÝìáôïò"
+#: ../../steps.pm_.c:21
+msgid "Format partitions"
+msgstr "Ìïñöïð. êáôáôìÞó."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
-msgstr "ÅðåîÞãçóç Åñãáëåßùí ôçò Mandrake"
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "ÅðéëïãÞ ðáêÝôùí"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "No image found"
-msgstr "Äåí âñÝèçêå åéêüíá"
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "ÅãêáôÜóôáóç óõóôÞìáôïò"
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
-"ÌåñéêÜ óçìáíôéêÜ ðáêÝôá äåí åãêáôáóôÜèçêáí óùóôÜ.\n"
-"Ï ïäçãüò CD-ROM Þ ôï CD-ROM åßíáé åëáôôùìáôéêü.\n"
-"ÅëÝãîôå ôï CD-ROM óå Ýíá Üëëï óýóôçìá ÷ñçóéìïðïéþíôáò ôçí åíôïëÞ \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "ÐñïóèÞêç ÷ñÞóôç"
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
-msgstr "Ôï Mandrake Linux 9.2 åßíáé ç õðÝñôáôç ðëáôöüñìá áíÜðôõîçò"
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "Ñýèìéóç äéêôýïõ"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Detected model: %s"
-msgstr "ÂñÝèçêå ôï ìïíôÝëï: %s"
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "Ñýèìéóç õðçñåóéþí"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
-msgstr ""
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "Ðñüãñáììá åêêßíçóçò"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"Ï Äéá÷åéñéóôÞò ÐñïâïëÞò X11 óáò åðéôñÝðåé íá óõíäåèåßôå\n"
-"ìå ãñáöéêü ôñüðï óôï óýóôçìÜ óáò ìå ôï Óýóôçìá Ðáñáèýñïõ × íá õðïóôçñßæåé\n"
-"ôáõôü÷ñïíåò äéáöïñåôéêÝò óõíåäñßåò × óôï ìç÷ÜíçìÜ óáò."
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "ÄéóêÝôá åêêßíçóçò"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr "áí ïñéóôåß íáé, åêôÝëåóç åëÝã÷ùí áóöáëåßáò êáèçìåñéíÜ."
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "Ñýèìéóç ×"
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
-msgstr "ÁæåñìðáúôæÜí"
+#: ../../steps.pm_.c:34
+msgid "Install system updates"
+msgstr "ÅãêáôÜóôáóç áíáâáèìßóåùí"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Device name to use for backup"
-msgstr ""
-"Ðáñáêáëþ åéóÜãåôáé ôï üíïìá óõóêåõÞò ãéá ôç ÷ñÞóç ôùí áíôéãñÜöùí áóöáëåßáò"
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "¸îïäïò"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
-msgstr "ÊáìéÜ ôáéíßá óôï %s!"
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Dvorak (ÇÐÁ)"
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "Web/FTP"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
-"áõôÞ åßíáé ç öõóéêÞ èÝóç óôçí ïðïßá åßíáé óõíäåìÝíç ç óõóêåõÞ (ð.÷.PCI, "
-"USB, ...)"
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
+msgstr "ÕðïëïãéóôÞò Äéêôýïõ (ðåëÜôçò)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Ðþò åßíáé óõíäåäåìÝíïò ï åêôõðùôÞò óáò;"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr ""
+"åîõðçñåôçôÞò NFS, åîõðçñåôçôÞò SMB, åîõðçñåôçôÞò Proxy, åîõðçñåôçôÞò ssh"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security level"
-msgstr "Åðßðåäï áóöáëåßáò"
+#: ../../share/compssUsers:999
+msgid "Office"
+msgstr "Ãñáöåßï"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "final resolution"
-msgstr "ôåëéêÞ áíÜëõóç"
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Óôáèìüò Åñãáóßáò Gnome"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
-msgstr "Õðçñåóßåò"
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Åñãáëåßá ãéá Palm Pilot Þ Visor"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Auto configuration"
-msgstr "ÐñïóáñìïóìÝíç Ñýèìéóç"
+#: ../../share/compssUsers:999
+msgid "Workstation"
+msgstr "Óôáèìüò Åñãáóßáò"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Ôïß÷ïò Ðñïóôáóßáò/ÄñïìïëïãçôÞò"
#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Óôáèìüò Åñãáóßáò Ãñáöåßïõ"
+msgid "Domain Name and Network Information Server"
+msgstr "ÅîõðçñåôçôÞò ¼íïìá ÔïìÝá êáé Ðëçñïöïñéþí Äéêôýïõ"
#: ../../share/compssUsers:999
msgid ""
@@ -20430,69 +13850,78 @@ msgstr ""
"(kspread, gnumeric), áñ÷åßá pdf êëð"
#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Óôáèìüò ðáé÷íéäéþí"
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "Åñãáëåßá Þ÷ïõ:ðñïãñÜììáôá áíáðáñáãùãÞò mp3 Þ midi, ìßêôåò êëð"
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "ÄéáóêÝäáóç (ðáé÷íßäéá)"
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Óôáèìüò ðïëõìÝóùí"
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Âéâëßá êáé ïäçãïß ãéá ôï Linux êáé ôï Åëåýèåñï Ëïãéóìéêü"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "ÐñïãñÜììáôá áíáðáñáãùãÞò êáé äéá÷åßñéóçò video êáé Þ÷ïõ"
+msgid "KDE Workstation"
+msgstr "Óôáèìüò åñãáóßáò KDE"
#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Óôáèìüò Äéáäéêôýïõ"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, êëð"
#: ../../share/compssUsers:999
-#, fuzzy
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Åñãáëåßá ãéá áðïóôïëÞ êáé ëÞøç áëëçëïãñáößáò êáé åéäÞóåùí (pine, mutt, "
-"tin...) êáé ðåñéÞãçóç óôï Äéáäßêôõï"
+msgid "Multimedia - Video"
+msgstr "ÐïëõìÝóá - Video"
#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "ÕðïëïãéóôÞò Äéêôýïõ (ðåëÜôçò)"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+"Åñãáëåßá ãéá áëëçëïãñáößá, åéäÞóåéò, éóôïóåëßäåò, ìåôáöïñÜ áñ÷åßùí êáé "
+"óõíïìéëßá"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "ÐåëÜôåò ãéá äéáöïñåôéêÜ ðñùôüêïëëá óõìðåñéëáìâáíïìÝíïõ ôïõ ssh"
+msgid "Database"
+msgstr "ÂÜóç ÄåäïìÝíùí"
#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Ñýèìéóç"
+msgid "PostgreSQL or MySQL database server"
+msgstr "ÅîõðçñåôçôÞò âÜóçò äåäïìÝíùí PostgreSQL Þ MySQL"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
msgstr "Åñãáëåßá ãéá äéåõêüëõíóç ôçò ñýèìéóçò ôïõ õðïëïãéóôÞ óáò"
#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Óôáèìüò Åñãáóßáò Åðéóôçìïíéêþí åöáñìïãþí"
+msgid "Multimedia - Sound"
+msgstr "ÐïëõìÝóá - ¹÷ïò"
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
-msgstr "ÅðéóôçìïíéêÝò åöáñìïãÝò üðùò ôï gnuplot"
+msgid "Documentation"
+msgstr "Ôåêìçñßùóç"
#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr "Åñãáëåßá Êïíóüëáò"
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "ÅðåîåñãáóôÝò êåéìÝíïõ, êåëýöç, åñãáëåßá áñ÷åßùí, ôåñìáôéêÜ"
+msgid "Postfix mail server, Inn news server"
+msgstr "ÅîõðçñåôçôÞò ôá÷õäñïìåßïõ Postfix, åîõðçñåôçôÞò åéäÞóåùí Inn"
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "Óôáèìüò åñãáóßáò KDE"
+msgid "Internet station"
+msgstr "Óôáèìüò Äéáäéêôýïõ"
+
+#: ../../share/compssUsers:999
+msgid "Multimedia station"
+msgstr "Óôáèìüò ðïëõìÝóùí"
+
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Ñýèìéóç"
+
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "Ðåñéóóüôåñá ãñáöéêÜ ðåñéâÜëëïíôá (Gnome, IceWM)"
#: ../../share/compssUsers:999
msgid ""
@@ -20501,728 +13930,305 @@ msgid ""
msgstr "Ôï ðåñéâÜëëïí ãñáöåßïõ KDE ìå ìéá óõëëïãÞ óõíïäåõôéêþí åñãáëåßùí"
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Óôáèìüò Åñãáóßáò Gnome"
+msgid "Graphical Environment"
+msgstr "Ãñáöéêü ÐåñéâÜëëïí"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr "Ãñáöéêü ðåñéâÜëëïí ìå öéëéêÜ åñãáëåßá êáé åöáñìïãÝò"
+msgid "Development"
+msgstr "ÁíÜðôõîç"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "¶ëëá ãñáöéêÜ ðåñéâÜëëïíôá"
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, êëð"
+msgid "Tools to create and burn CD's"
+msgstr "Åñãáëåßá ãéá äçìéïõñãßá êáé åããñáöÞ CD"
#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "ÂéâëéïèÞêåò áíÜðôõîçò C êáé C++, ðñïãñÜììáôá êáé Üëëá áñ÷åßá"
+msgid "Office Workstation"
+msgstr "Óôáèìüò Åñãáóßáò Ãñáöåßïõ"
#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Ôåêìçñßùóç"
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, êëð"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Âéâëßá êáé ïäçãïß ãéá ôï Linux êáé ôï Åëåýèåñï Ëïãéóìéêü"
+msgid "Graphics programs such as The Gimp"
+msgstr "ÐñïãñÜììáôá ãñáöéêþí üðùò ôï Gimp"
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr "LSB"
+msgid "DNS/NIS "
+msgstr "DNS/NIS "
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Linux Standard Base. ÕðïóôÞñéîç åöáñìïãþí ôñßôùí"
+msgid "C and C++ development libraries, programs and include files"
+msgstr "ÂéâëéïèÞêåò áíÜðôõîçò C êáé C++, ðñïãñÜììáôá êáé Üëëá áñ÷åßá"
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
+msgid "Network Computer server"
+msgstr "ÅîõðçñåôçôÞò äéêôýïõ"
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
+msgid "Mail/Groupware/News"
+msgstr "Ôá÷õäñïìåßï/Groupware/ÅéäÞóåéò"
#: ../../share/compssUsers:999
-msgid "Mail"
-msgstr "Ôá÷õäñïìåßï"
+msgid "Game station"
+msgstr "Óôáèìüò ðáé÷íéäéþí"
#: ../../share/compssUsers:999
-msgid "Postfix mail server"
-msgstr "ÅîõðçñåôçôÞò ôá÷õäñïìåßïõ Postfix"
+msgid "Video players and editors"
+msgstr "ÐñïãñÜììáôá áíáðáñáãùãÞò êáé åðåîåñãáóßáò âßíôåï"
#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "ÂÜóç ÄåäïìÝíùí"
+msgid "Multimedia - Graphics"
+msgstr "ÐïëõìÝóá - ÃñáöéêÜ"
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "ÅîõðçñåôçôÞò âÜóçò äåäïìÝíùí PostgreSQL Þ MySQL"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "ÄéáóêÝäáóç (ðáé÷íßäéá)"
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Ôïß÷ïò Ðñïóôáóßáò/ÄñïìïëïãçôÞò"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"Åñãáëåßá ãéá áðïóôïëÞ êáé ëÞøç áëëçëïãñáößáò êáé åéäÞóåùí (pine, mutt, "
+"tin...) êáé ðåñéÞãçóç óôï Äéáäßêôõï"
#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Ðýëç Äéáäéêôýïõ"
+msgid "Personal Finance"
+msgstr "ÐñïóùðéêÜ ïéêïíïìéêÜ"
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "Ãñáöéêü ðåñéâÜëëïí ìå öéëéêÜ åñãáëåßá êáé åöáñìïãÝò"
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "ÅîõðçñåôçôÞò ¼íïìá ÔïìÝá êáé Ðëçñïöïñéþí Äéêôýïõ"
+msgid "Clients for different protocols including ssh"
+msgstr "ÐåëÜôåò ãéá äéáöïñåôéêÜ ðñùôüêïëëá óõìðåñéëáìâáíïìÝíïõ ôïõ ssh"
#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "ÅîõðçñåôçôÞò äéêôýïõ"
+msgid "LSB"
+msgstr "LSB"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr ""
-"åîõðçñåôçôÞò NFS, åîõðçñåôçôÞò SMB, åîõðçñåôçôÞò Proxy, åîõðçñåôçôÞò ssh"
+msgid "Internet gateway"
+msgstr "Ðýëç Äéáäéêôýïõ"
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
-msgstr ""
-"Óåô åñãáëåßùí ãéá ôçí áðïóôïëÞ êáé ëÞøç áëëçëïãñáößáò, åéäÞóåùí êáé "
-"ðåñéÞãçóç óôï Äéáäßêôõï"
-
-#~ msgid "The setup has already been done, and it's currently enabled."
-#~ msgstr "Ç ñýèìéóç Ý÷åé Þäç ãßíåé, êáé áõôÞ ôç óôéãìÞ åßíáé åíåñãïðïéçìÝíç."
-
-#~ msgid "Logs"
-#~ msgstr "Çìåñïëüãéá"
-
-#~ msgid "The setup has already been done, but it's currently disabled."
-#~ msgstr ""
-#~ "Ç ñýèìéóç Ý÷åé Þäç ãßíåé, áëëÜ áõôÞ ôç óôéãìÞ åßíáé áðåíåñãïðïéçìÝíç."
-
-#~ msgid "Profile "
-#~ msgstr "Ðñïößë "
-
-#~ msgid ""
-#~ "Welcome to the Internet Connection Sharing utility!\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ "Click on Configure to launch the setup wizard."
-#~ msgstr ""
-#~ "Êáëþò ïñßóáôå óôï åñãáëåßï ñýèìéóçò ôçò ÊïéíÞò Óýíäåóçò ôïõ Äéáäéêôýïõ!\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ "ÊÜíôå êëéê óôï Ñýèìéóç ãéá íá îåêéíÞóåôå ôïí ïäçãü åãêáôÜóôáóçò."
-
-#~ msgid "Internet Connection Sharing configuration"
-#~ msgstr "Ñýèìéóç ÊïéíÞò óýíäåóçò Äéáäéêôýïõ"
-
-#~ msgid "No Internet Connection Sharing has ever been configured."
-#~ msgstr "Ç ÊïéíÞ Óýíäåóç Äéáäéêôýïõ äåí Ý÷åé ñõèìéóôåß ðïôÝ."
-
-#~ msgid "when checked, owner and group won't be changed"
-#~ msgstr "üôáí åðéëåãåß, ï éäéïêôÞôçò êáé ïìÜäá äåí èá áëëÜîïõí"
-
-#~ msgid ""
-#~ "XawTV isn't installed!\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do have a TV card but DrakX has neither detected it (no bttv nor "
-#~ "saa7134\n"
-#~ "module in \"/etc/modules\") nor installed xawtv, please send the\n"
-#~ "results of \"lspcidrake -v -f\" to \"install@mandrakesoft.com\"\n"
-#~ "with subject \"undetected TV card\".\n"
-#~ "\n"
-#~ "\n"
-#~ "You can install it by typing \"urpmi xawtv\" as root, in a console."
-#~ msgstr ""
-#~ "Ôï XawTV äåí åßíáé åãêáôåóôçìÝíï!\n"
-#~ "\n"
-#~ "\n"
-#~ "Áí Ý÷åôå êÜñôá Ôçëåüñáóçò áëëÜ ôï DrakX äåí ôçí âñÞêå (÷ùñßò bttv\n"
-#~ "module óôï \"/etc/modules\") êáé äåí åãêáôÝóôçóå ïýôå ôï xawtv, ðáñáêáëþ\n"
-#~ "óôåßëôå ôá áðïôÝëåóìá ôïõ \"lspcidrake -v -f\" óôï \"install@mandrakesoft."
-#~ "com\"\n"
-#~ "ìå èÝìá \"undetected TV card\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Ìðïñåßôå íá åãêáôáóôÞóåôå ôï xawtv ìå ôçí åíôïëÞ \"urpmi xawtv\" óáí\n"
-#~ "root, áðü ôçí êïíóüëá."
-
-#~ msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-
-#~ msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#, fuzzy
-#~ msgid "Hostname configuration"
-#~ msgstr "Ñýèìéóç óõóôÞìáôïò"
-
-#, fuzzy
-#~ msgid "Hostname"
-#~ msgstr "¼íïìá óõóôÞìáôïò"
-
-#~ msgid "Remote Printers"
-#~ msgstr "ÁðïìáêñõóìÝíïé åêôõðùôÝò"
-
-#~ msgid "Printing system: "
-#~ msgstr "Óýóôçìá åêôýðùóçò: "
+msgid "Sound and video playing/editing programs"
+msgstr "ÐñïãñÜììáôá áíáðáñáãùãÞò êáé äéá÷åßñéóçò video êáé Þ÷ïõ"
-#, fuzzy
-#~ msgid "Level 1"
-#~ msgstr "Åðßðåäï"
+#: ../../share/compssUsers:999
+msgid "Other Graphical Desktops"
+msgstr "¶ëëá ãñáöéêÜ ðåñéâÜëëïíôá"
-#, fuzzy
-#~ msgid "Level 2"
-#~ msgstr "Åðßðåäï"
+#: ../../share/compssUsers:999
+msgid "Editors, shells, file tools, terminals"
+msgstr "ÅðåîåñãáóôÝò êåéìÝíïõ, êåëýöç, åñãáëåßá áñ÷åßùí, ôåñìáôéêÜ"
-#, fuzzy
-#~ msgid "Level 3"
-#~ msgstr "Åðßðåäï"
+#: ../../share/compssUsers:999
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "ÐñïãñÜììáôá ïéêïíïìéêÞò äéá÷åßñéóçò, üðùò ôï gnucash"
-#, fuzzy
-#~ msgid "Level 4"
-#~ msgstr "Åðßðåäï"
+#: ../../share/compssUsers:999
+msgid "Personal Information Management"
+msgstr "Äéá÷åßñéóç Ðñïóùðéêþí ÄåäïìÝíùí"
-#, fuzzy
-#~ msgid "Level 5"
-#~ msgstr "Åðßðåäï"
+#: ../../share/compssUsers:999
+msgid "Multimedia - CD Burning"
+msgstr "ÐïëõìÝóá - ÅããñáöÞ CD"
-#, fuzzy
-#~ msgid "Insert floppy and press %s"
-#~ msgstr "ÅéóÜãåôå äéóêÝôá óôïí ïäçãü %s"
+#: ../../share/compssUsers:999
+msgid "Scientific Workstation"
+msgstr "Óôáèìüò Åñãáóßáò Åðéóôçìïíéêþí åöáñìïãþí"
-#~ msgid "Load"
-#~ msgstr "Öüñôïò"
+#~ msgid "can not open /etc/inittab for reading: %s"
+#~ msgstr "áäõíáìßá áíïßãìáôïò ôïõ /etc/inittab ãéá áíÜãíùóç: %s"
#, fuzzy
-#~ msgid "Bad Ip"
-#~ msgstr "IO êÜñôáò"
-
-#~ msgid "Output"
-#~ msgstr "¸îïäïò"
-
-#~ msgid "Please relog into %s to activate the changes"
-#~ msgstr "Ðáñáêáëþ åðáíáóõíäåèåßôå ùò %s ãéá åíåñãïðïßçóç ôùí áëëáãþí"
-
-#~ msgid "Please enter your password"
-#~ msgstr "Ðáñáêáëþ åéóÜãåôå ôïí êùäéêü ðñüóâáóçò"
-
-#~ msgid "Please enter the host name or IP."
-#~ msgstr "Ðáñáêáëþ ïñßóôå ôïí äéêôõáêü üíïìá Þ ôçí IP"
-
-#~ msgid ""
-#~ " Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s@epita."
-#~ "fr>"
-#~ msgstr ""
-#~ " Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s@epita."
-#~ "fr>"
-
-#~ msgid ""
-#~ " updates 2002 MandrakeSoft by Stew Benedict <sbenedict@mandrakesoft.com>"
-#~ msgstr ""
-#~ "áíáâáèìßóåéò 2002 MandrakeSoft by Stew Benedict <sbenedict@mandrakesoft."
-#~ "com>"
-
-#~ msgid "edit"
-#~ msgstr "åðåîåñãáóßá"
-
-#~ msgid "select perm file to see/edit"
-#~ msgstr "åðéëÝîôå ôï áñ÷åßï perm ãéá íá ôï äåßôå/åðåîåñãáóôåßôå"
-
-#~ msgid "path"
-#~ msgstr "èÝóç"
-
-#~ msgid "permissions"
-#~ msgstr "äéêáéþìáôá"
-
-#~ msgid "delete"
-#~ msgstr "äéáãñáöÞ"
-
-#~ msgid "user"
-#~ msgstr "÷ñÞóôçò"
+#~ msgid "cpu number "
+#~ msgstr "Ýíáò áñéèìüò"
#~ msgid ""
-#~ "Standard: This is the standard security recommended for a computer that "
-#~ "will be used to connect\n"
-#~ " to the Internet as a client.\n"
+#~ "You now have the opportunity to download encryption software.\n"
#~ "\n"
-#~ "High: There are already some restrictions, and more automatic "
-#~ "checks are run every night.\n"
+#~ "WARNING:\n"
#~ "\n"
-#~ "Higher: The security is now high enough to use the system as a server "
-#~ "which can accept\n"
-#~ " connections from many clients. If your machine is only a "
-#~ "client on the Internet, you\n"
-#~ " should choose a lower level.\n"
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
#~ "\n"
-#~ "Paranoid: This is similar to the previous level, but the system is "
-#~ "entirely closed and security\n"
-#~ " features are at their maximum\n"
-#~ "\n"
-#~ "Security Administrator:\n"
-#~ " If the 'Security Alerts' option is set, security alerts "
-#~ "will be sent to this user (username or\n"
-#~ " email)"
-#~ msgstr ""
-#~ "Ôõðéêü: ÁõôÞ åßíáé ç ôõðéêÞ áóöÜëåéá ðïõ óõíéóôÜôáé óå ãéá õðïëïãéóôÞ ðïõ "
-#~ "èá óõíäÝåôáé óôï Äéáäßêôõï ùò ðåëÜôçò.\n"
-#~ "\n"
-#~ " Õøçëü: ÕðÜñ÷ïõí êÜðïéïé ðåñéïñéóìïß, êáé åêôåëïýíôáé ðåñéóóüôåñåò "
-#~ "áõôüìáôïé Ýëåã÷ïé êÜèå âñÜäõ.\n"
-#~ "\n"
-#~ "Õøçëüôåñï: Ç áóöÜëåéá åßíáé áñêåôÜ õøçëÞ ãéá íá êÜíåôå ôï óýóôçìá "
-#~ "åîõðçñåôçôÞò ðïõ ìðïñåß íá äå÷ôåß\n"
-#~ " óõíäÝóåéò áðü ðïëëïýò ðåëÜôåò. Áí ôï ìç÷Üíçìá åßíáé ìüíï "
-#~ "ðåëÜôçò óôï Äéáäßêôõï, åðéëÝîôå\n"
-#~ " ôï ÷áìçëüôåñï åðßðåäï\n"
-#~ "\n"
-#~ " Ðáñáíïúêü åðßðåäï: ¼ìïéï ìå ôï ðáñáðÜíù åðßðåäï, áëëÜ ìå ôï óýóôçìá "
-#~ "åíôåëþò êëåéóôü êáé ìå ôéò åðéëïãÝò\n"
-#~ " áóöáëåßáò óôï ìÝãéóôï\n"
-#~ "\n"
-#~ "Äéá÷åéñéóôÞò Áóöáëåßáò:\n"
-#~ " Áí Ý÷åé åðéëåãåß ôï 'ÅéäïðïéÞóåéò Áóöáëåßáò' ôüôå èá "
-#~ "áðïóôÝëëïíôáé åéäïðïéÞóåéò áóöáëåßáò óôïí ÷ñÞóôç (üíïìá ÷ñÞóôç\n"
-#~ " Þ çëåêôñïíéêü ìÞíõìá)"
-
-#~ msgid "Expert Area"
-#~ msgstr "Ðåñéï÷Þ Ðñï÷ùñçìÝíùí"
-
-#~ msgid "Wizard..."
-#~ msgstr "Ïäçãüò..."
-
-#~ msgid "Country"
-#~ msgstr "×þñá"
-
-#~ msgid "Previous"
-#~ msgstr "Ðñïçãïýìåíï"
-
-#~ msgid "Please check if you are using CDRW media"
-#~ msgstr "Ðáñáêáëþ ïñßóôå áí êÜíåôå ÷ñÞóç óõóêåõÞò CDRW"
-
-#~ msgid "Please check if you are using a DVDRAM device"
-#~ msgstr "Ðáñáêáëþ ïñßóôå áí êÜíåôå ÷ñÞóç óõóêåõÞò DVDRAM"
-
-#~ msgid "Please check if you are using a DVDR device"
-#~ msgstr "Ðáñáêáëþ ïñßóôå áí êÜíåôå ÷ñÞóç óõóêåõÞò DVDR"
-
-#~ msgid "We are now going to configure the %s connection."
-#~ msgstr "Ôþñá èá ñõèìßóïõìå ôçí %s óýíäåóç."
-
-#~ msgid "Name: %s\n"
-#~ msgstr "¼íïìá: %s\n"
-
-#~ msgid ""
-#~ "Which ISDN configuration do you prefer?\n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
#~ "\n"
-#~ "* The Old configuration uses isdn4net. It contains powerful\n"
-#~ " tools, but is tricky to configure, and not standard.\n"
+#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
#~ "\n"
-#~ "* The New configuration is easier to understand, more\n"
-#~ " standard, but with less tools.\n"
#~ "\n"
-#~ "We recommand the light configuration.\n"
+#~ "For any queries relating to these agreement, please contact \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
#~ msgstr ""
-#~ "Ðïéá ISDN ñýèìéóç ðñïôéìÜôå;\n"
-#~ "\n"
-#~ "* Ç ðáëéÜ ñýèìéóç ÷ñçóéìïðïéåß ôï isdn4net. ÐåñéÝ÷åé ÷ñÞóéìá åñãáëåßá,\n"
-#~ " áëëÜ åßíáé ëßãï äýóêïëï ãéá Ýíáí áñ÷Üñéï íá ñõèìéóôåß êáé ü÷é "
-#~ "óôåñåüôõðï.\n"
+#~ "Ìðïñåßôå ôþñá íá êáôåâÜóåôå êñõðôïãñáöéêü ëïãéóìéêü.\n"
#~ "\n"
-#~ "* Ç ÍÝá ñýèìéóç åßíáé åõêïëüôåñç óôçí êáôáíüçóç, ðåñéóóüôåñï óôåñåüôõðç,\n"
-#~ " áëëÜ ìå ëéãüôåñá åñãáëåßá.\n"
+#~ "ÐÑÏÓÏ×Ç:\n"
#~ "\n"
-#~ "Ðñïôåßíïõìå ôçí åëáöñéÜ ñýèìéóç.\n"
-#~ "\n"
-
-#~ msgid "New configuration (isdn-light)"
-#~ msgstr "ÍÝá ñýèìéóç (isdn-light)"
-
-#~ msgid "Old configuration (isdn4net)"
-#~ msgstr "ÐáëéÜ ñýèìéóç (isdn4net)"
-
-#~ msgid "Internet connection & configuration"
-#~ msgstr "Óýíäåóç êáé ñýèìéóç Äéáäéêôýïõ"
-
-#~ msgid "Disconnect"
-#~ msgstr "Áðïóýíäåóç"
-
-#~ msgid "Connect"
-#~ msgstr "Óýíäåóç"
-
-#~ msgid ""
+#~ "Ëüãù ôùí äéáöïñåôéêþí íüìùí ðïõ éó÷ýïõí óå äéÜöïñá ìÝñç ó÷åôéêÜ ìå ôçí "
+#~ "êñõðôïãñáößá,\n"
+#~ "ï ÷ñÞóôçò ðñÝðåé íá âåâáéùèåß üôé ïé íüìïé ðïõ ôïí áöïñïýí ôïõ åðéôñÝðïõí "
+#~ "íá êáôåâÜóåé,\n"
+#~ "áðïèçêåýóåé Þ/êáé íá ÷ñçóéìïðïéÞóåé áõôü ôï ëïãéóìéêü.\n"
#~ "\n"
-#~ "You can reconfigure your connection."
-#~ msgstr ""
+#~ "Ï ÷ñÞóôçò ðñÝðåé íá ðñïóÝîåé íá ìçí ðáñáâåß ôïõò ó÷åôéêïýò íüìïõò. Ôõ÷üí "
+#~ "ðáñáâßáóç áõôþí\n"
+#~ "ôùí íüìùí, ìðïñåß íá åðéöÝñåé êõñþóåéò.\n"
#~ "\n"
-#~ "Ìðïñåßôå íá åðáíáñõèìßóåôå ôç óýíäåóÞ óáò."
-
-#~ msgid ""
+#~ "Óå êáìßá ðåñßðôùóç ç Mandrakesoft, ïé êáôáóêåõáóôÝò êáé ïé ðñïìçèåõôÝò "
+#~ "ôçò äåí öÝñïõí åõèýíç\n"
+#~ "ãéá ïðïéåóäÞðïôå æçìéÝò (ðïõ ðåñéëáìâÜíïõí ìåôáîý Üëëùí áðþëåéá êåñäþí, "
+#~ "äéáôÜñáîç ëåéôïõñãßáò\n"
+#~ "åðé÷åßñçóçò, áðþëåéá ðëçñïöïñéþí êáé ôõ÷üí êüóôç ðïõ èá ðñïêýøïõí áðü "
+#~ "íïìéêÝò åõèýíåò.\n"
#~ "\n"
-#~ "You can connect to the Internet or reconfigure your connection."
-#~ msgstr ""
#~ "\n"
-#~ "Ìðïñåßôå íá óõíäåèåßôå óôï Äéáäßêôõï Þ íá åðáíáñõèìßóåôå ôç óýíäåóÞ óáò."
+#~ "Ãéá ðåñéóóüôåñåò ðëçñïöïñßåò åðéêïéíùíÞóôå \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
-#~ msgid "You are not currently connected to the Internet."
-#~ msgstr "ÁõôÞ ôç óôéãìÞ äåí åßóôå óõíäåäåìÝíïé óôï Äéáäßêôõï."
+#~ msgid "Proxy configuration"
+#~ msgstr "Ñýèìéóç proxy"
#~ msgid ""
+#~ "Welcome to the proxy configuration utility.\n"
#~ "\n"
-#~ "You can disconnect or reconfigure your connection."
+#~ "Here, you'll be able to set up your http and ftp proxies\n"
+#~ "with or without login and password\n"
#~ msgstr ""
+#~ "Êáëþò Þëèáôå óôï åñãáëåßï ñýèìéóçò ôïõ proxy.\n"
#~ "\n"
-#~ "Ìðïñåßôå íá áðïóõíäåèåßôå Þ íá åðáíáñõèìßóåôå ôç óýíäåóÞ óáò."
-
-#~ msgid "You are currently connected to the Internet."
-#~ msgstr "ÁõôÞ ôç óôéãìÞ åßóôå óõíäåäåìÝíïé óôï Äéáäßêôõï."
-
-#~ msgid "files sending by FTP"
-#~ msgstr "áðïóôïëÞ áñ÷åßùí ìÝóù FTP"
-
-#~ msgid "Relaunch 'lilo'"
-#~ msgstr "Åðáíåêêßíçóç 'lilo'"
-
-#~ msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#~ msgstr "Äçìéïõñãßá initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-
-#~ msgid "Copy %s to %s"
-#~ msgstr "ÁíôéãñáöÞ %s óå %s"
-
-#~ msgid "Backup %s to %s.old"
-#~ msgstr "Áíôßãñáöï Áóöáëåßáò ôïõ %s óå %s.old"
-
-#~ msgid "ttf fonts conversion"
-#~ msgstr "ìåôáôñïðÞ ãñáììáôïóåéñþí ttf"
-
-#~ msgid "Fonts conversion"
-#~ msgstr "ÌåôáôñïðÞ Ãñáììáôïóåéñþí"
-
-#~ msgid "Author:"
-#~ msgstr "Äçìéïõñãüò:"
-
-#~ msgid "Audio station"
-#~ msgstr "Óôáèìüò ¹÷ïõ"
-
-#~ msgid "Sound playing/editing programs"
-#~ msgstr "ÐñïãñÜììáôá áíáðáñáãùãÞò/äéá÷åßñéóçò Þ÷ïõ"
-
-#~ msgid "Video station"
-#~ msgstr "Óôáèìüò âßíôåï"
-
-#~ msgid "Video playing programs"
-#~ msgstr "ÐñïãñÜììáôá áíáðáñáãùãÞò âßíôåï"
-
-#~ msgid "Graphic station"
-#~ msgstr "Óôáèìüò ãñáöéêþí"
-
-#~ msgid "Graphics programs"
-#~ msgstr "ÐñïãñÜììáôá ãñáöéêþí"
-
-#~ msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
-#~ msgstr ""
-#~ "ÅêôõðùôÞò GDI Laser ðïõ êÜíåé ÷ñÞóç ôïõ ÖïñìÜ Zenographics ZJ-Stream"
-
-#~ msgid "Office"
-#~ msgstr "Ãñáöåßï"
-
-#~ msgid "Set of tools for mail, news, web, file transfer, and chat"
-#~ msgstr ""
-#~ "Åñãáëåßá ãéá áëëçëïãñáößá, åéäÞóåéò, éóôïóåëßäåò, ìåôáöïñÜ áñ÷åßùí êáé "
-#~ "óõíïìéëßá"
-
-#~ msgid "Games"
-#~ msgstr "Ðáé÷íßäéá"
-
-#~ msgid "Multimedia - Graphics"
-#~ msgstr "ÐïëõìÝóá - ÃñáöéêÜ"
-
-#~ msgid "Multimedia - Sound"
-#~ msgstr "ÐïëõìÝóá - ¹÷ïò"
-
-#~ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-#~ msgstr "Åñãáëåßá Þ÷ïõ:ðñïãñÜììáôá áíáðáñáãùãÞò mp3 Þ midi, ìßêôåò êëð"
-
-#~ msgid "Multimedia - Video"
-#~ msgstr "ÐïëõìÝóá - Video"
-
-#~ msgid "Video players and editors"
-#~ msgstr "ÐñïãñÜììáôá áíáðáñáãùãÞò êáé åðåîåñãáóßáò âßíôåï"
-
-#~ msgid "Multimedia - CD Burning"
-#~ msgstr "ÐïëõìÝóá - ÅããñáöÞ CD"
-
-#~ msgid "Tools to create and burn CD's"
-#~ msgstr "Åñãáëåßá ãéá äçìéïõñãßá êáé åããñáöÞ CD"
-
-#~ msgid "More Graphical Desktops (Gnome, IceWM)"
-#~ msgstr "Ðåñéóóüôåñá ãñáöéêÜ ðåñéâÜëëïíôá (Gnome, IceWM)"
-
-#~ msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-#~ msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, êëð"
-
-#~ msgid "Personal Information Management"
-#~ msgstr "Äéá÷åßñéóç Ðñïóùðéêþí ÄåäïìÝíùí"
-
-#~ msgid "Tools for your Palm Pilot or your Visor"
-#~ msgstr "Åñãáëåßá ãéá Palm Pilot Þ Visor"
-
-#~ msgid "Personal Finance"
-#~ msgstr "ÐñïóùðéêÜ ïéêïíïìéêÜ"
-
-#~ msgid "Programs to manage your finances, such as gnucash"
-#~ msgstr "ÐñïãñÜììáôá ïéêïíïìéêÞò äéá÷åßñéóçò, üðùò ôï gnucash"
-
-#~ msgid "Launch Aurora at boot time"
-#~ msgstr "Åêêßíçóç ôïõ Aurora êáôÜ ôçí åêêßíçóç"
-
-#~ msgid "Traditional Gtk+ Monitor"
-#~ msgstr "ÐáñáäïóéáêÞ Gtk+ Ïèüíç"
-
-#~ msgid "Traditional Monitor"
-#~ msgstr "ÐáñáäïóéáêÞ Ïèüíç"
-
-#~ msgid "NewStyle Monitor"
-#~ msgstr "NewStyle Ïèüíç"
-
-#~ msgid "NewStyle Categorizing Monitor"
-#~ msgstr "NewStyle Categorizing Ïèüíç"
-
-#~ msgid ""
-#~ "\"%s\": check the current country selection. If you are not in this\n"
-#~ "country, click on the button and choose another one."
-#~ msgstr ""
-#~ "\"×þñá\": åëÝãîôå ôçí åðéëïãÞ ÷þñáò. Áí äåí åßóôå óå áõôÞ ôç ÷þñá,\n"
-#~ "êÜíôå êëéê óôï ðëÞêôñï êáé åðéëÝîôå ìéá Üëëç."
-
-#~ msgid ""
-#~ "The partition you've selected to add as root (/) is physically located "
-#~ "beyond\n"
-#~ "the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
-#~ "If you plan to use the LILO boot manager, be careful to add a /boot "
-#~ "partition"
-#~ msgstr ""
-#~ "Ç êáôÜôìçóç ðïõ åðéëÝîáôå ùò root (/) âñßóêåôáé ìåôÜ ôïí êýëéíäñï 1024 "
-#~ "êáé\n"
-#~ "äåí Ý÷åôå êáôÜôìçóç /boot.\n"
-#~ "Áí óêïðåýåôå íá ÷ñçóéìïðïéÞóåôå LILO, ðñïóèÝóôå ìßá êáôÜôìçóç /boot."
-
-#~ msgid ""
-#~ "Sorry I won't accept to create /boot so far onto the drive (on a cylinder "
-#~ "> 1024).\n"
-#~ "Either you use LILO and it won't work, or you don't use LILO and you "
-#~ "don't need /boot"
-#~ msgstr ""
-#~ "Óõããíþìç, áëëÜ äåí ìðïñþ íá äçìéïõñãÞóù ôïí êáôÜëïãï /boot óå êýëéíäñï "
-#~ "ìåãáëýôåñï ôïõ 1024.\n"
-#~ "Åßôå ÷ñçóéìïðïéåßôå LILO êáé äåí èá äïõëÝøåé, åßôå äåí ÷ñçóéìïðïéåßôå "
-#~ "LILO êáé äåí ÷ñåéÜæåóôå ôï /boot"
-
-#~ msgid "Sagem (using pppoe) usb"
-#~ msgstr "Sagem (ìå ÷ñÞóç ôïõ pppoe) usb"
-
-#~ msgid ""
-#~ "Please enter your host name if you know it.\n"
-#~ "Some DHCP servers require the hostname to work.\n"
-#~ "Your host name should be a fully-qualified host name,\n"
-#~ "such as ``mybox.mylab.myco.com''."
-#~ msgstr ""
-#~ "Ðáñáêáëþ åéóÜãåôå ôï üíïìá ôïõ óõóôÞìáôïò åÜí ôï îÝñåôå.\n"
-#~ "ÏñéóìÝíïé åîõðçñåôçôÝò DHCP äåí ëåéôïõñãïýí ÷ùñßò áõôü.\n"
-#~ "Ôï üíïìá áõôü ðñÝðåé íá åßíáé Ýíá ðëÞñåò üíïìá óõóôÞìáôïò,\n"
-#~ "üðùò ð.÷. ``mybox.mylab.myco.com''."
-
-#~ msgid "no network card found"
-#~ msgstr "äåí âñÝèçêå ðñïóáñìïãÝáò äéêôýïõ"
-
-#~ msgid ""
-#~ "The following printers are configured. Double-click on a printer to "
-#~ "change its settings; to make it the default printer; to view information "
-#~ "about it; or to make a printer on a remote CUPS server available for Star "
-#~ "Office/OpenOffice.org/GIMP."
-#~ msgstr ""
-#~ "Oé ðáñáêÜôù åêôõðùôÝò Ý÷ïõí ñõèìéóôåß. ÊÜíôå äéðëü êëéê óå Ýíáí åêôõðùôÞ "
-#~ "ãéá íá áëëÜîåôå ôéò ñõèìßóåéò ôïõ, íá ôïí ïñßóåôå ùò ðñïåðéëåãìÝíï, íá "
-#~ "ðñïâÜëåôå ðëçñïöïñßåò ãéá áõôüí ç ãéá íá êÜíåôå äéáèÝóéìï Ýíáí "
-#~ "áðïìáêñõóìÝíï åêôõðùôÞ óå Ýíáí åîõðçñåôçôÞ CUPS óôï Star Office/"
-#~ "OpenOffice.org/GIMP."
-
-#~ msgid "Welcome to the Open Source world"
-#~ msgstr "Êáëþò ïñßóáôå óôïí êüóìï ôïõ Áíïé÷ôïý Êþäéêá"
-
-#~ msgid "Want to know more about the Open Source community?"
-#~ msgstr "ÈÝëåôå íá ìÜèåôå ðåñéóóüôåñá ãéá ôçí êïéíüôçôá Áíïé÷ôïý Êþäéêá;"
-
-#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
-#~ msgstr "Áíáêáëýøôå ôá ðïéï ðñüóöáôá åñãáëåßá ãñáöéêþí êáé ðïëõìÝóùí!"
+#~ "Åäþ, èá ìðïñÝóåôå íá ñõèìßóåôå ôïõò http êáé ftp proxies\n"
+#~ "ìå Þ ÷ùñßò üíïìá ÷ñÞóôç êáé êùäéêü ðñüóâáóçò\n"
#~ msgid ""
-#~ "Mandrake Linux 9.2 provides a powerful tool to fully customize and "
-#~ "configure your machine"
+#~ "Please fill in the http proxy informations\n"
+#~ "Leave it blank if you don't want an http proxy"
#~ msgstr ""
-#~ "Ôï Mandrake Linux 9.2 óáò ðáñÝ÷åé éó÷õñÜ åñãáëåßá ãéá ôçí ðëÞñç "
-#~ "ðñïóáñìïãÞ êáé ñýèìéóç ôïõ ìç÷áíÞìáôüò óáò"
+#~ "Ðáñáêáëþ óõìðëçñþóôå ôéò ðëçñïöïñßåò ãéá ôï http proxy\n"
+#~ "ÁöÞóôå ôá êåíÜ áí äåí åðéèõìåßôå http proxy"
-#~ msgid ""
-#~ "Mandrake Linux 9.2 provides you with 11 user interfaces that can be fully "
-#~ "modified: KDE 3, Gnome 2, WindowMaker, ..."
-#~ msgstr ""
-#~ "Ôï Mandrake Linux 9.2 óáò ðáñÝ÷åé 11 äéáöïñåôéêÜ ãñáöéêÜ ðåñéâÜëëïíôá ðïõ "
-#~ "ìðïñïýí íá ìåôáôñáðïýí ðëÞñùò: KDE 3, Gnome 2, WindowMaker, ..."
+#~ msgid "URL"
+#~ msgstr "URL"
-#~ msgid "User interfaces"
-#~ msgstr "ÄéåðáöÝò ×ñçóôþí"
+#~ msgid "port"
+#~ msgstr "èÞñá"
-#~ msgid "Mandrake Linux 9.2 is the ultimate development platform"
-#~ msgstr "Ôï Mandrake Linux 9.2 åßíáé ç õðÝñôáôç ðëáôöüñìá áíÜðôõîçò"
+#~ msgid "Url should begin with 'http:'"
+#~ msgstr "Ôï URL ðñÝðåé íá îåêéíÜ ìå 'http:'"
-#~ msgid "Development simplified"
-#~ msgstr "Áðëïðïßçóç áíÜðôõîçò"
+#~ msgid "The port part should be numeric"
+#~ msgstr "Ï áñéèìüò èýñáò ðñÝðåé íá åßíáé áñéèìçôéêüò"
#~ msgid ""
-#~ "Transform your machine into a powerful Linux server with a few clicks of "
-#~ "your mouse: Web server, mail, firewall, router, file and print server, ..."
+#~ "Please fill in the ftp proxy informations\n"
+#~ "Leave it blank if you don't want an ftp proxy"
#~ msgstr ""
-#~ "Ìåôáìïñöþóôå ôï ìç÷ÜíçìÜ óáò óå Ýíáí äõíáôü äéáêïìéóôÞ Linux ìå ìåñéêÜ "
-#~ "êëéê ôïõðïíôéêéïý óáò: ÄéáêïìéóôÞò Éóôïý, ôá÷õäñïìåßïõ, äñïìïëïãçôÞò, "
-#~ "åîõðçñåôçôÞò áñ÷åßùí êáé åêôõðùôþí, ..."
-
-#~ msgid "Turn your machine into a reliable server"
-#~ msgstr "ÌåôáôñÝøôå ôï ìç÷ÜíçìÜ óáò óå Ýíáí áîéüðéóôï äéáêïìéóôÞ"
-
-#~ msgid "This product is available on MandrakeStore website"
-#~ msgstr "Áõôü ôï ðñïúüí åßíáé äéáèÝóéìï óôçí éóôïóåëßäá ôïõ MandrakeStore"
+#~ "Ðáñáêáëþ óõìðëçñþóôå ôéò ðëçñïöïñßåò ãéá ôï ftp proxy\n"
+#~ "ÁöÞóôå ôá êåíÜ áí äåí åðéèõìåßôå ftp proxy"
#~ msgid ""
-#~ "This firewall product includes network features that allow you to fulfill "
-#~ "all your security needs"
+#~ "Please enter proxy login and password, if any.\n"
+#~ "Leave it blank if you don't want login/passwd"
#~ msgstr ""
-#~ "Áõôü ôï ðñïúüí ôïß÷ïõò ðñïóôáóßáò ðåñéÝ÷åé ëåéôïõñãßåò äéêôýïõ ðïõ èá "
-#~ "éêáíïðïéÞóïõí üëåò óáò ôéò áðáéôÞóåéò óå áóöÜëåéá"
+#~ "Ðáñáêáëþ åéóÜãåôå üíïìá ÷ñÞóôç êáé \n"
+#~ "êùäéêü ðñüóâáóçò ãéá ôï proxy .\n"
+#~ "ÁöÞóôå ôá êåíÜ åÜí äåí åðéèõìåßôå \n"
+#~ "üíïìá ÷ñÞóôç êáé êùäéêü ðñüóâáóçò"
-#~ msgid "Optimize your security"
-#~ msgstr "ÂåëôéóôïðïéÞóôå ôçí áóöÜëåéÜ óáò"
+#~ msgid "login"
+#~ msgstr "üíïìá ÷ñÞóôç"
-#~ msgid "The official MandrakeSoft store"
-#~ msgstr "Ôï åðßóçìï êáôÜóôçìá ôçò MandrakeSoft"
+#~ msgid "password"
+#~ msgstr "êùäéêüò ðñüóâáóçò"
-#~ msgid "Strategic partners"
-#~ msgstr "Óôñáôçãéêïß óõíåñãÜôåò"
+#~ msgid "re-type password"
+#~ msgstr "îáíáðëçêôñïëïãÞóôå ôïí êùäéêü ðñüóâáóçò"
-#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
-#~ msgstr "Áíáêáëýøôå ôï MandrakeClub êáé ôï Mandrake Corporate Club"
+#~ msgid "The passwords don't match. Try again!"
+#~ msgstr "Ïé êùäéêïß ðñüóâáóçò åßíáé áíüìïéïé. ÐñïóðáèÞóôå îáíÜ!"
-#~ msgid "Secure Connection"
-#~ msgstr "Áóöáëåßò óýíäåóç"
+#~ msgid "Can't write file %s"
+#~ msgstr "Äåí ìðïñþ íá áðïèçêåýóù ôï áñ÷åßï %s"
-#~ msgid "FTP Connection"
-#~ msgstr "Óýíäåóç FTP"
+#~ msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-#~ msgid "DrakFloppy Error: %s"
-#~ msgstr "ÓöÜëìá DrakFloppy: %s"
+#~ msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#, fuzzy
#~ msgid ""
-#~ "You are about to configure your computer to install a PXE server as a "
-#~ "DHCP server\n"
-#~ "and a TFTP server to build an installation server.\n"
-#~ "With that feature, other computers on your local network will be "
-#~ "installable using from this computer.\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)."
+#~ "Warning, another internet connexion has been detected, maybe using your "
+#~ "network"
#~ msgstr ""
-#~ "Ðñüêåéôáé íá ñõèìßóôå ôïí õðïëïãéóôÞ óáò ãéá ôçí åãêáôÜóôáóç ôï "
-#~ "äéáêïìéóôÞ PXE ùò åîõðçñåôçôÞ DHCP \n"
-#~ "êáé äéáêïìéóôÞ TFTP ùò äéáêïìéóôÞ åãêáôáóôÜóåùí.\n"
-#~ "Ìå áõôÞ ôçí åðéëïãÞ, Üëëïé õðïëïãéóôÝò óôï ôïðéêü óáò äßêôõï èá ìðïñïýí "
-#~ "íá åãêáôáóôáèïýí ìå ôç ÷ñÞóç áõôïý ôïõ õðïëïãéóôÞ.\n"
-#~ "\n"
-#~ "Âåâáéùèåßôå üôé Ý÷åôå ñõèìßóåé ôçí ðñüóâáóç óôï Äßêôõï/Äéáäßêôõï ìå ôç "
-#~ "÷ñÞóç ôïõ drakconnect ðñéí ðñï÷ùñÞóåôå.\n"
-#~ "\n"
-#~ "Óçì. Èá ðñÝðåé íá Ý÷åôå ìéá êÜñôá äéêôýïõ ãéá íá ñõèìßóåôå ôï Ôïðéêü óáò "
-#~ "Äßêôõï (LAN)."
-
-#~ msgid "/Options"
-#~ msgstr "/ÅðéëïãÝò"
-
-#~ msgid "/Autodetect jazz drives"
-#~ msgstr "/Åíôïðéóìüò ïäçãþí jazz"
-
-#~ msgid "/Autodetect modems"
-#~ msgstr "/Åíôïðéóìüò ìüíôåì"
-
-#~ msgid "/Autodetect printers"
-#~ msgstr "/Åíôïðéóìüò åêôõðùôþí"
-
-#~ msgid "Mail/Groupware/News"
-#~ msgstr "Ôá÷õäñïìåßï/Groupware/ÅéäÞóåéò"
-
-#~ msgid "Postfix mail server, Inn news server"
-#~ msgstr "ÅîõðçñåôçôÞò ôá÷õäñïìåßïõ Postfix, åîõðçñåôçôÞò åéäÞóåùí Inn"
+#~ "Ðñïåéäïðïßçóç, åíôïðßóôçêå ìéá Üëëç óýíäåóç Äéáäéêôýïõ ðïõ ßóùò "
+#~ "÷ñçóéìïðïéåß ôï äßêôõü óáò"
-#~ msgid "Do you want to configure another printer?"
-#~ msgstr "ÈÝëåôå íá ñõèìßóåôå êáé Üëëïí åêôõðùôÞ;"
+#~ msgid "no help implemented yet.\n"
+#~ msgstr "äåí õðÜñ÷åé áêüìá äéáèÝóéìç âïÞèåéá.\n"
-#~ msgid "Know how to use this printer"
-#~ msgstr "ÌÜèåôå ðùò íá ÷åéñéóèåßôå áõôüí ôïí åêôõðùôÞ"
+#~ msgid "Please click on a medium"
+#~ msgstr "Ðáñáêáëþ êÜíôå êëéê óôï ìÝóï"
-#~ msgid "Would you like to configure printing?"
-#~ msgstr "Èá èÝëáôå íá ñõèìßóåôå Ýíáí åêôõðùôÞ;"
+#~ msgid "Removing LPRng..."
+#~ msgstr "Áöáßñåóç LPRng..."
-#~ msgid "Preparing Printerdrake..."
-#~ msgstr "Ðñïåôïéìáóßá PrinterDrake..."
+#~ msgid "Removing LPD..."
+#~ msgstr "Áöáßñåóç LPD..."
-#~ msgid "Reading printer data ..."
-#~ msgstr "ÁíÜãíùóç äåäïìÝíùí åêôõðùôÞ ..."
+#~ msgid "usage: drakfloppy\n"
+#~ msgstr "÷ñÞóç: drakfloppy\n"
+#, fuzzy
#~ msgid ""
-#~ "You must indicate where you wish to place the information required to "
-#~ "boot\n"
-#~ "GNU/Linux.\n"
-#~ "\n"
-#~ "Unless you know exactly what you are doing, choose \"First sector of "
-#~ "drive\n"
-#~ "(MBR)\"."
-#~ msgstr ""
-#~ "ÐñÝðåé íá ðñïóäéïñßóåôå ðïý èÝëåôå íá åãêáôáóôáèïýí ïé ðëçñïöïñßåò ðïõ \n"
-#~ "åßíáé áðáñáßôçôåò ãéá ôçí åêêßíçóç ôïõ GNU/Linux.\n"
#~ "\n"
-#~ "Åêôüò êáé áí îÝñåôå ðïëý êáëÜ ôé êÜíåôå, åðéëÝîôå \"Ðñþôïò ôïìÝáò\n"
-#~ "ôïõ äßóêïõ (MBR)\"."
+#~ "Usage: harddrake [-h|--help] [--test]\n"
+#~ msgstr "÷ñÞóç: keyboarddrake [--expert] [keyboard]\n"
-#~ msgid "Please be patient. This operation can take several minutes."
-#~ msgstr ""
-#~ "Ðáñáêáëþ ðåñéìÝíåôå. ÁõôÞ ç äéáäéêáóßá ìðïñåß íá ðÜñåé ìåñéêÜ ëåðôÜ."
+#~ msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+#~ msgstr "÷ñÞóç: keyboarddrake [--expert] [keyboard]\n"
-#~ msgid ""
-#~ "Your new Mandrake Linux operating system is currently being installed.\n"
-#~ "Depending on the number of packages you will be installing and the speed "
-#~ "of\n"
-#~ "your computer, this operation could take from a few minutes to a\n"
-#~ "significant amount of time.\n"
-#~ "\n"
-#~ "Please be patient."
-#~ msgstr ""
-#~ "Ôï íÝï óáò ëåéôïõñãéêü óýóôçìá Mandrake Linux åãêáèßóôáôáé.\n"
-#~ "ÁõôÞ ç äéáäéêáóßá èá ðÜñåé êÜðïéá þñá, áíÜëïãá ìå ôïí áñéèìü ôùí "
-#~ "ðáêÝôùí \n"
-#~ "ðïõ åðéëÝîáôå êáé ôçí ôá÷ýôçôá ôïõ õðïëïãéóôÞ óáò.\n"
-#~ "\n"
-#~ "Ðáñáêáëþ ðåñéìÝíåôå õðïìïíåôéêÜ."
+#~ msgid "detected on interface %s"
+#~ msgstr "áíé÷íåýèçêå óôçí äéåðáöÞ %s"
-#~ msgid "Detecting devices ..."
-#~ msgstr "Åíôïðéóìüò óõóêåõþí..."
+#~ msgid "unable to backup lilo message"
+#~ msgstr "áäõíáìßá äçìéïõñãßáò áíôéãñÜöïõ áóöáëåßáò ôïõ ìçíýìáôïò lilo"
-#~ msgid "Test ports"
-#~ msgstr "ÄïêéìÞ èõñþí"
+#~ msgid "can't change lilo message"
+#~ msgstr "áäõíáìßá áëëáãÞò ìçíýìáôïò lilo"
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index a23638acd..0634c8ffc 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -5,4562 +5,3094 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
-"PO-Revision-Date: 2003-03-12 18:31-0400\n"
-"Last-Translator: Vilhelmo Lutermano <vlutermano@free.fr>\n"
-"Language-Team: esperanto <eo@li.org>\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"PO-Revision-Date: 2001-08-22 19:15-0500\n"
+"Last-Translator: D. Dale Gulledge <dsplat@rochester.rr.com>\n"
+"Language-Team: Esperanto <eo@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=iso-8859-3\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.6\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Leganta subdiskojn por trovi kroĉpunktojn"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "network printer port"
-msgstr "Reta Printilo (TCP/ingo)"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Please insert floppy disk:"
-msgstr "EnÅovu disketon en drajvo %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 KB"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 KB"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"La rezerva subdisktabelo ne estas la sama grandeco\n"
-"Ĉu daŭras tamen?"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Which username"
-msgstr "Kiu salutnomo"
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "Kiun specon de enskribo vi deziras aldoni"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Restore partition table"
-msgstr "RestaÅ­ru subdiskotabelon"
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Configure hostname..."
-msgstr "Konfiguru muson"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Ĉe CUPS-servilo \"%s\""
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Post-install configuration"
-msgstr "Post-instala konfigurado"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB aý pli"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "Elektu X servilon"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Uzu ``%s'' anstataÅ­e"
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "X servilo"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Type"
-msgstr "Tipo"
+#: ../../Xconfig/card.pm_.c:230
+msgid "Multi-head configuration"
+msgstr "Plur-ekrana konfigura¼o"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "Sri Lanko"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr "Via komputilo ne havas retadaptilon!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
-msgstr "Centrafrika Respubliko"
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
+msgstr "Elektu memorkapaciton de via grafika karto"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "Prokura kluzaparato"
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "XFree Konfigurado"
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Advanced preferences"
-msgstr "LAN Konfiguraĵo"
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Kiun konfiguron de XFree vi deziras havi?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Net Method:"
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Ethernetcard"
-msgstr "Ethernet-karto"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
msgstr ""
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr "Parametroj"
-
-#: ../../standalone/draksec:1
+#: ../../Xconfig/card.pm_.c:389
#, fuzzy, c-format
-msgid "no"
-msgstr "Informo"
+msgid "Configure only card \"%s\"%s"
+msgstr "ISDN-a Konfigura¼on"
-#: ../../harddrake/v4l.pm:1
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Auto-detect"
-msgstr "Memdetekta"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Interface:"
-msgstr "Interreto"
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../steps.pm:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Select installation class"
-msgstr "Elektu instalklason"
-
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr "Konektu al la Interreto / Konfiguru lokan Reton"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s kun 3D aparata akcelado"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
+"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
+"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
-#: ../../lang.pm:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid "Belarus"
-msgstr "Belarusio"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "Vi povas havi 3D aparatan akceladan subtenon kun XFree %s."
-#: ../../partition_table.pm:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid "Error writing to file %s"
-msgstr "Eraro skribante al dosiero %s"
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s kun EKSPERIMENTA 3D aparata akcelado"
-#: ../../security/l10n.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
-msgid "Report check result to syslog"
+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."
msgstr ""
+"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
+"NOTU KE ÆI TIO ESTAS EKSPERIMENTA SUBTENO KAJ EBLE SVENIGOS VIAN "
+"KOMPUTILON.\n"
+"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
-#: ../../services.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"apmd estas uzata por monitori la bateriostaton kaj registri Äin en la\n"
-"sistemlogdosiero (syslog). Vi ankaÅ­ povas uzi Äin por halti la komputilon\n"
-"kiam la baterioÅargo estas malgranda."
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use tape to backup"
-msgstr "Malbona rezerva dosiero"
+"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
+"NOTU KE ÆI TIO ESTAS EKSPERIMENTA SUBTENO KAJ EBLE SVENIGOS VIAN KOMPUTILON."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "La sekvaj pakaĵoj estos instalataj"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "CUPS configuration"
-msgstr "LAN Konfiguraĵo"
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "Akomodata"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Total progress"
-msgstr "Provu pordojn"
+#: ../../Xconfig/main.pm_.c:102
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Grafika karto"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Mankas sufiĉan da libera spaco por disponigi novajn subdiskojn"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "Ekrano"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "Movante"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "Distingivo"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
msgstr ""
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "yes"
-msgstr "Jes"
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Opcioj"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr ""
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "Jeso"
-#: ../../network/netconnect.pm:1
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "Æesu"
+
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
-"Welcome to The Network Configuration Wizard.\n"
+"Keep the changes?\n"
+"The current configuration is:\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 ""
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
+"%s"
msgstr ""
+"Æu vi deziras teni la þanøojn?\n"
+"Nuna konfiguro estas:\n"
+"\n"
+"%s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "Libano"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Stop"
-msgstr "Haltu"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Edit selected host"
-msgstr "Malinstalu printvicon"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "No CD device defined!"
-msgstr "Elektu dosieron"
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "Elektu ekranon"
-#: ../../network/shorewall.pm:1
-#, c-format
-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"
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "Malbona rezerva dosiero"
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "Genera"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "Bulgara (fonetika)"
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+#, fuzzy
+msgid "Vendor"
+msgstr "Malfaru"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP start ip"
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Don't rewind tape after backup"
-msgstr "Malbona rezerva dosiero"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "StartÅargilo ĉefaj opcioj"
-
-#: ../../standalone.pm:1
-#, c-format
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
+"\n"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
+"La du gravegaj parametroj estas la vertikala refreþigrapido (vertical\n"
+"refresh rate) kiu estas la rapido por refreþigi la tutan ekranon, kaj\n"
+"plej grave la horizontala sinkronrapido (horizontal sync rate), kiu estas\n"
+"la rapido por montri skanliniojn.\n"
+"\n"
+"Øi estas TRE GRAVA ke vi ne elektas specon de ekrano kiu havas\n"
+"sinkronamplekson kiu estas preter la kapabloj de via ekrano: vi eble\n"
+"difektus vian ekranon. Se vi dubas, elektu zorgeman opcion."
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Tape"
-msgstr "Bendo"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Malaysia"
-msgstr "Malajzio"
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "Horizontala sinkronrapido (horizontal sync rate)"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Scanning network..."
-msgstr "Startas vian konektaĵon..."
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "Vertikala refreþigrapido (vertical refresh rate)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 koloroj (8 bitoj)"
-#: ../../standalone/drakedm:1
-#, fuzzy, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr ""
-"La reto devas esti restartigita.\n"
-"Ĉu vi deziras restartigi Äin?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil koloroj (15 bitoj)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (French layout)"
-msgstr "Svisa (franca aranÄo)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil koloroj (16 bitoj)"
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid malsukcesis (eble raidtools mankas)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milionoj koloroj (24 bitoj)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "August"
-msgstr "AÅ­gusto"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miliardoj koloroj (32 bitoj)"
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "FTP server"
-msgstr "NTP Servilo"
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "Distingivoj"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Webcam"
-msgstr "Webcam"
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "Elektu distingivon kaj kolorprofundon"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr ""
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Soundcard"
-msgstr "Sonkarto"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Month"
-msgstr "Muntu"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Search for files to restore"
-msgstr "Bonvole, elektu la specon de via muso."
+msgid "Graphics card: %s"
+msgstr "Grafika karto: %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Luxembourg"
-msgstr "Luksemburgo"
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr "Nuligu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "Provu konfigura¼on"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Level %s\n"
-msgstr "Nivelo %s\n"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "Æu vi deziras provi la konfigura¼on?"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Syriac (phonetic)"
-msgstr "Armena (fonetika)"
+#: ../../Xconfig/test.pm_.c:30
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Averto: provado de æi tiu grafika karto eble svenigos vian komputilon"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid "Iran"
-msgstr "Irano"
+msgid "Keyboard layout: %s\n"
+msgstr "Klavara aranøo: %s\n"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid "Bus"
-msgstr ""
+msgid "Mouse type: %s\n"
+msgstr "Speco de muso: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid "Iraq"
-msgstr "Irako"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "connecting to %s ..."
-msgstr "Legas datumbason de CUPS peliloj..."
+msgid "Mouse device: %s\n"
+msgstr "Musaparato: %s\n"
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Ebla konflikto pri Loka-Reta adreso trovata en nuna konfiguro de %s!\n"
+msgid "Monitor: %s\n"
+msgstr "Ekrano: %s\n"
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Configuring..."
-msgstr "Mi konfiguras..."
+msgid "Monitor HorizSync: %s\n"
+msgstr "Ekrana horizontala sinkronrapido (horizontal sync rate): %s\n"
-#: ../../harddrake/v4l.pm:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
-msgstr ""
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Ekrana vertikala refreþigrapido (vertical refresh rate): %s\n"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid "Password (again)"
-msgstr "Pasvorto (denove)"
+msgid "Graphics card: %s\n"
+msgstr "Grafika karto: %s\n"
-#: ../../standalone/drakfont:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid "Search installed fonts"
-msgstr ""
-
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Default desktop"
-msgstr "DefaÅ­lta"
+msgid "Graphics memory: %s kB\n"
+msgstr "Graifka memoro: %s KB\n"
-#: ../../standalone/drakbug:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
-msgstr ""
+msgid "Color depth: %s\n"
+msgstr "Kolorprofuneco: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid "Venezuela"
-msgstr "Venezuelo"
+msgid "Resolution: %s\n"
+msgstr "Distingivo: %s\n"
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "IP address"
-msgstr "IP-adreso"
+msgid "XFree86 server: %s\n"
+msgstr "XFree86 servilo: %s\n"
-#: ../../install_interactive.pm:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Choose the sizes"
-msgstr "Elektu la grandecojn"
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 pelilo: %s\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "X Fenestro æe komenco"
-#: ../../fs.pm:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:62
msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
+"Mi povas konfiguri vian komputilon tiel ke øi aýtomate lanæos X kiam øi\n"
+"ekfunkcias. Æu vi deziras ke X aýtomate lanæos?"
-#: ../../network/modem.pm:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:73
msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose another partition"
-msgstr "Elektu alian subdiskon"
+#: ../../Xconfig/various.pm_.c:85
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Kia estas via ISDN-a konekta¼o?"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Current user"
-msgstr "Akceptu uzanto"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
+msgstr "Unua sektoro de starta subdisko"
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
-msgstr "Uzulnomo"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
+msgstr "Unu sektoro de drajvo (ÆefStartRikordo)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Maldekstra \"Vindozo\"-klavo"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "SILO Instalado"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "Gujano"
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
+msgstr "Kie vi deziras instali la startþargilon?"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "dhcpd Server Configuration"
-msgstr "LAN Konfiguraĵo"
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "LILO/grub Instalado"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Printer Name"
-msgstr "Printvica Nomo"
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
+msgstr ""
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
+#: ../../any.pm_.c:142
+msgid "Grub"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
-msgstr "Forprenu modulon"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr ""
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Password"
-msgstr "Pasvorto"
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Advanced Configuration"
-msgstr "LAN Konfiguraĵo"
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "Startþargilo æefaj opcioj"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr ""
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
+msgstr "Startþargilo por uzi"
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "Radiko"
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "Startþargila instalado"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "Elektu ekzistantan RAID por aldoni"
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "Starta aparato"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turka (moderna \"Q\" modelo)"
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "Kompakta"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo message not found"
-msgstr ""
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "kompakta"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Auxtomata regenerado de kernokapoj en /boot por\n"
-"/usr/include/linux/{autoconf, version}.h"
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "Grafika reøimo"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
-msgstr "se bezonata"
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
+msgstr "Prokrastoperiodo antaý starti defaýltan sistemon"
+
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
+msgid "Password"
+msgstr "Pasvorto"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
-msgstr ""
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "Pasvorto (denove)"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Failed..."
-msgstr "RestaÅ­ru de dosiero"
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "Limigu komandliniajn opciojn"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr ""
+#: ../../any.pm_.c:171
+msgid "restrict"
+msgstr "limigu"
-#: ../../install_messages.pm:1
-#, fuzzy, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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 ""
-"Enkonduko\n"
-"\n"
-"La mastrum-sistemo kaj la diversaj komponantoj atingeblaj en la Mandrako- "
-"Linuks-eldono\n"
-"estu en la sekvo nomataj la \"softvarproduktoj\". La softvarproduktoj "
-"inkluzivigas la tutaĵon de programoj, metodoj, reguloj kaj dokumentado "
-"koncerne la mastruman sistemon,\n"
-"kaj la diversajnf komponantojn de la Mandrako-Linuks-eldono, sed\n"
-"ne estas limigitaj al ili.\n"
-"\n"
-"\n"
-"1. Licenckonsento \n"
-"Bonvole legu tiun ĉi dokumenton zorge. Tiu ĉi dokumento estas licenckonsento "
-"inter vi kaj\n"
-"MandrakeSoft S.A. kiu aplikiÄas al la softvarproduktoj.\n"
-"Per instalado, duobligado aÅ­ uzado de la softvarproduktoj en ajna maniero, "
-"vi eksplicite\n"
-"akceptas kaj plene konsentas agi konforme al la teksto kaj kondiĉoj de tiu "
-"ĉi licenco.\n"
-"Se vi malsamopinias kun iu ajn parto de la licenco, vi ne rajtas instali, "
-"duobligi aÅ­ uzi\n"
-"la softvarproduktojn.\n"
-"Iu ajn provo instali, duobligi aÅ­ uzi la softvarproduktojn en maniero kiu ne "
-"kongruas kun la teksto kaj kondiĉoj de tiu ĉi licenco estas\n"
-
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Default user"
-msgstr "Loka printilo"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "Purigu /tmp dum æiuj startadoj"
-#: ../../standalone/draksplash:1
+#: ../../any.pm_.c:174
#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Preciza kvanto de memoro se bezonata (trovis %d MB)"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Current interface configuration"
-msgstr "Interreta Konfigurado"
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
+msgstr "Ebligu multoblajn profilojn"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr ""
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "Donu kvanton de memoro en MB"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../any.pm_.c:182
msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"Se via havas ISA-an karton, la valoro sur la sekvanta ekrano devus esti "
-"Äusta.\n"
-"\n"
-"Se vi havas PCMCIA-an karton, vi bezonas scii la IRQ-o kaj I/O (Eneligo)\n"
-"por via karto.\n"
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr "Opcio ``Limigu komandliniajn opciojn'' ne estas utila sen pasvorto"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Do not print any test page"
-msgstr "Printas provpaÄo(j)n..."
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "Bonvole provu denove"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr "gumurka"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "La pasvortoj ne egalas"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
+#: ../../any.pm_.c:191
+msgid "Init Message"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
-msgstr "Devigu No APIC"
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
msgstr ""
-"Ĉi tiu pasvorto ests tro simpla (Äi devas esti almenaÅ­ %d signoj longa)"
-#: ../../standalone.pm:1
-#, c-format
-msgid "[keyboard]"
-msgstr "[klavaro]"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP prokura servilo"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Install List"
-msgstr "Instalu sistemon"
+#: ../../any.pm_.c:197
+msgid "Default OS?"
+msgstr "Defaýlta Mastruma Sistemo?"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#: ../../any.pm_.c:231
msgid ""
-"Change\n"
-"Restore Path"
-msgstr "RestaÅ­ru de dosiero"
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Show only for the selected day"
-msgstr "Montru nur por ĉi tiu tago"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
+"\n"
+"On which drive are you booting?"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
+#: ../../any.pm_.c:247
+msgid ""
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
+"Jen la diversaj enskriboj.\n"
+"Vi povas aldoni pli aý þanøi la ekzistantajn."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr "<stir>N"
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "Aldonu"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Kiun specon de karto vi havas?"
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "Finata"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
+#: ../../any.pm_.c:257
+msgid "Modify"
+msgstr "Þanøu"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Security"
-msgstr "Sekureco"
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "Kiun specon de enskribo vi deziras aldoni"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "Linukso"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "Alia Mastruma Sistemo (SunOS...)"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Bonvole, elektu lingvon por uzi."
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "Alia Mastruma Sistemo (MacOS...)"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Unknown"
-msgstr "Genera"
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "Alia Mastruma Sistemo (Vindozo...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr ""
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "Kerna bildo"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Network Configuration"
-msgstr "Reta Konfiguraĵo"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "Radiko"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
+msgstr "Alfiksu"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Protokolo por la cetera mondo \n"
-"Neniom da D-Kanelo (lukontraktataj lineoj)"
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "Lega-skriba"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "Tabelo"
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Notice"
-msgstr "agrabla(j)"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "Danøera"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "Vi ne konfiguris X-on. Ĉu vi certas vere voli tion?"
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "Etikedo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "Defaýlta"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "What type of partitioning?"
-msgstr "Kiun specon de subdiskado?"
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
+msgstr "Initrd-grandeco"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-" "
+#: ../../any.pm_.c:318
+msgid "NoVideo"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface"
-msgstr "Interfaco"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Multisession CD"
-msgstr "Plurmedia - Sono"
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "Forigu enskribon"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated strings"
-msgstr "eroj disigitaj per komo"
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "Malplena etikedo ne estas permesata"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
msgstr ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Messages"
-msgstr "mesaÄoj"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
+#: ../../any.pm_.c:330
+#, fuzzy
+msgid "You must specify a root partition"
+msgstr "Vi devas havi interþanøan subdiskon"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "Serviloj POP kaj IMAP"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "Æi tiu etikedo estas jam uzata"
-#: ../../lang.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Mexico"
-msgstr "Meksikio"
+msgid "Found %s %s interfaces"
+msgstr "Trovis %s %s interfacojn"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Model stepping"
-msgstr "Formatas"
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "Æu vi havas alian?"
-#: ../../lang.pm:1
+#: ../../any.pm_.c:642
#, c-format
-msgid "Rwanda"
-msgstr "Ruando"
+msgid "Do you have any %s interfaces?"
+msgstr "Æu vi havas iun %s interfacon?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Switzerland"
-msgstr "Svislando"
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "Ne"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr "Brunejo Darusalamo"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "Jes"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Ĉu vi havas iun %s interfacon?"
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "Vidu hardvaran informon"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "Reta Konfiguraĵo"
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Instalas pelilon por %s karto %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../any.pm_.c:663
#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Malproksimaj lpd Printilaj Opcioj"
+msgid "(module %s)"
+msgstr "(modulo %s)"
-#: ../../help.pm:1
+#: ../../any.pm_.c:674
#, 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."
-msgstr ""
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Configure Internet Access..."
-msgstr "Konfiguru servojn"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Bonvole, elektu la pakaĵojn kiujn vi deziras instali."
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
-#: ../../crypto.pm:1 ../../lang.pm:1
+#: ../../any.pm_.c:680
#, c-format
-msgid "Norway"
-msgstr "Norvegio"
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Nun vi povas provizi øiajn opciojn al modulo %s.\n"
+"Opcioj estas en la formo ``nomo=valoro nomo2=valoro2 ...''.\n"
+"Ekzemple, ``io=0x300 irq=7''"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Delete profile"
-msgstr "Elektu dosieron"
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "Modulaj opcioj:"
-#: ../../keyboard.pm:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "Danish"
-msgstr "Dana"
+msgid "Which %s driver should I try?"
+msgstr "Kiun %s pelilon devus mi provi?"
-#: ../../services.pm:1
+#: ../../any.pm_.c:703
#, c-format
msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"Iuokaze, la %s pelilo bezonas havi aldonan informon por øuste funkcii,\n"
+"kvankam øi normale funkcias bone sen la informo. Æu vi deziras specifi\n"
+"aldonajn opciojn por øi aý permesi al la pelilo esplori vian komputilon\n"
+"por la informo øi bezonas? Kelkfoje, esplori svenas komputilon, sed\n"
+"øi ne devus kaýzi difekton."
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Bonvole enigu la IP-an konfigurâjon por ĉi tiu komputilo.\n"
-"Ĉiu ero devus esti enigata kiel IP-adreson en punktita-decimala notacio\n"
-"(ekzemple, 1.2.3.4)."
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
+msgstr "Aýtomate esploru"
+
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "Specifu opciojn"
-#: ../../help.pm:1
+#: ../../any.pm_.c:719
#, 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."
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
+"Þargado de modulo %s malsukcesis.\n"
+"Æu vi deziras trovi denove kun aliaj parametroj?"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "Bulgario"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
-msgstr "mardo"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "Procesiloj"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "Spicbergo kaj Jan-Majen-Insuloj"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "No NIC selected!"
-msgstr "Ne konektita"
+#: ../../any.pm_.c:738
+msgid "access to network tools"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, 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."
+#: ../../any.pm_.c:739
+msgid "access to compilation tools"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../any.pm_.c:744
#, c-format
-msgid "partition %s is now known as %s"
-msgstr "subdisko %s estas nun konata kiel %s"
+msgid "(already added %s)"
+msgstr "(jam aldonis %s)"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup Other files..."
-msgstr "Malbona rezerva dosiero"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "Æi tiu pasvorto estas tro simpla"
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
-msgstr "Kongo (KinÅaso)"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
+msgstr "Bonvole donu salutnomon"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "IP de SMB servilo"
+#: ../../any.pm_.c:751
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr "Salutnomo devas enhavi nur minusklojn, ciferojn, `-' kaj `_'"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "La subdisktabelo de drajvo %s estos skribata al disko!"
+#: ../../any.pm_.c:752
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Æi tiu salutnomo estas jam aldonita"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing HPOJ package..."
-msgstr "Instalanta pakaĵon HPOJ..."
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "Æi tiu salutnomo estas jam aldonita"
+
+#: ../../any.pm_.c:757
+msgid "Add user"
+msgstr "Aldonu uzanto"
-#: ../../any.pm:1
+#: ../../any.pm_.c:758
#, 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"
+"Enter a user\n"
"%s"
msgstr ""
-"Akomodita startdisketo provizas manieron de starti via Linuksa sistemo\n"
-"sendepende de la normala startÅargilo. Ĉi tiu estas utila se vi ne deziras\n"
-"instali LILO (aÅ­ grub) sur via sistemo, aÅ­ alia mastruma sistemo forigas "
-"LILO,\n"
-"aÅ­ LILO ne funkcias kun via komputilo. Akomodita startdisketo ankaÅ­ povas\n"
-"esti uzata kun la Mandrejka savdisko, kiu plifaciligas resaniÄi de severaj\n"
-"sistemaj paneoj. Ĉu vi deziras krei startdisketo por via sistemo?\n"
+"Enigu uzanton\n"
"%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-msgstr ""
+#: ../../any.pm_.c:759
+msgid "Accept user"
+msgstr "Akceptu uzanto"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latvian"
-msgstr "Latva"
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "Vera nomo"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr ""
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "Salutnomo"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Retry"
-msgstr "RestaÅ­ru de dosiero"
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "Þelo"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr "Modulonomo"
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "Piktogramo"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Start at boot"
-msgstr "Startu ĉe starto"
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "Aýtomata-enregistrado"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
+#: ../../any.pm_.c:804
+#, fuzzy
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
+"Mi povas konfiguri vian komputilon por aýtomate enregistri unu uzulon kiam\n"
+"øi startas. Se vi ne deziras uzi æi tion, alklaku la `Nuligu' butonon."
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "Unu sektoro de drajvo (ĈefStartRikordo)"
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "Elektu la defaýltan uzulon:"
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "Salvadoro"
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
+msgstr "Elektu la fenestro-administrilon por lanæi:"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
-msgstr "Ludbastono"
+#: ../../any.pm_.c:824
+#, fuzzy
+msgid "Please choose a language to use."
+msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "DVD"
-msgstr "DVD-ROM"
+#: ../../any.pm_.c:826
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
+msgstr ""
+"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaý la instalado"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
-msgstr "Uzu Unikodon defaÅ­lte"
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "Æiuj"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr ""
+#: ../../any.pm_.c:961
+#, fuzzy
+msgid "Allow all users"
+msgstr "Aldonu uzulon"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Aparata horloÄo estas Äustigita laÅ­ GMT"
+#: ../../any.pm_.c:961
+#, fuzzy
+msgid "No sharing"
+msgstr "CUPS startas"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "Provas savi subdisktabelon"
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
+#, fuzzy, c-format
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr ""
+"Æi tiu paka¼o devus esti promociata.\n"
+"Æu vi certas ke vi deziras malelekti øin?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
+#: ../../any.pm_.c:973
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../security/l10n.pm:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
-msgid "Use password to authenticate users"
+msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../any.pm_.c:987
msgid ""
-"Entries you'll have to fill:\n"
-"%s"
+"Would you like to allow users to share some of their directories?\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror "
+"and nautilus.\n"
+"\n"
+"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, 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."
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
msgstr ""
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
+#: ../../any.pm_.c:1003
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "Nomo: "
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
+msgstr "Bonvenon Al Rompistoj"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
-msgstr ""
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Malbona"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 milionoj koloroj (24 bitoj)"
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
+msgstr "Laýnorma"
-#: ../../any.pm:1
-#, c-format
-msgid "Allow all users"
-msgstr "Permesu ĉiujn uzulojn"
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Alta"
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr ""
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+#, fuzzy
+msgid "Higher"
+msgstr "Alta"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "Regrandecigas"
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "Paranoja"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1061
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+"This level is to be used with care. It makes your system more easy to use,\n"
+"but very sensitive: it must not be used for a machine connected to others\n"
+"or to the Internet. There is no password access."
msgstr ""
+"vi devus uzi æi tiun nivelon zorge. Øi faras vian komputilon pli facila\n"
+"por uzi, sed delikatega: vi devus neniam uzi øi surrete.\n"
+"Øi ne havas pasvortojn."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Cable connection"
-msgstr "Kabla konekto"
-
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "User"
-msgstr "Salutnomo"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
+#: ../../any.pm_.c:1064
+msgid ""
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
+"Pasvortoj nun estas ebligataj, sed uzado kiel reta komputilo estas ankoraý\n"
+"ne rekomendita."
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "mkraid malsukcesis"
+#: ../../any.pm_.c:1065
+#, fuzzy
+msgid ""
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
+msgstr ""
+"Æi tiu estas la normala sekureco rekomendata por komputilo kiu estos uzata\n"
+"por konekti al la Interreto kiel kliento. Nun estas sekurecaj kontroloj."
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Name"
-msgstr "Nomo: "
+#: ../../any.pm_.c:1066
+msgid ""
+"There are already some restrictions, and more automatic checks are run every "
+"night."
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
+#: ../../any.pm_.c:1067
+#, fuzzy
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
+"connections from many clients. Note: if your machine is only a client on the "
+"Internet, you should choose a lower level."
msgstr ""
+"Kun æi tiu sekurnivelo, uzado de æi tiu komputilo kiel servilo ebliøas.\n"
+"La sekureco nun estas sufiæe alta por uzi la sistemon kiel servilo kiu\n"
+"akceptas konektojn de multaj klientoj."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
+#: ../../any.pm_.c:1070
+#, fuzzy
+msgid ""
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
+"Ni uzas aspektojn de la kvara nivelo, sed nun la komputilo estas tute\n"
+"malfermita. Sekurecaj aspektoj estas æe iliaj maksimumoj."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Sending files..."
-msgstr "Konservu en dosiero"
+#: ../../any.pm_.c:1076
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Opcioj"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "Israela (fonetika)"
+#: ../../any.pm_.c:1077
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Elektu sekurnivelon?"
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
-msgstr "aliro al rpm-iloj"
+#: ../../any.pm_.c:1080
+#, fuzzy
+msgid "Security level"
+msgstr "Elektas sekurnivelon"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Printila Aparato URI"
+#: ../../any.pm_.c:1082
+#, fuzzy
+msgid "Use libsafe for servers"
+msgstr "Elektu opciojn por servilo"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
+#: ../../any.pm_.c:1083
+msgid ""
+"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "Telefonnumero"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr "Eraro: La \"%s\"-pelilo por via sonkarto ne estas listigita"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer name, description, location"
-msgstr "Printilan Konekton"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Uzu Xinerama extension"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback"
-msgstr "Retrokonektado"
-
-#: ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "West Europe"
-msgstr "EÅ­ropo"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On CD-R"
+#: ../../any.pm_.c:1166
+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 ""
-#: ../../standalone.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, c-format
msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
+"Welcome to %s the operating system chooser!\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 ""
-"[OPCIOJ] [PROGRAM_NOMO]\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
"\n"
-"OPCIOJ:\n"
-" --help - montru tiun help-mesaÄon.\n"
-" --report - programo estu iu de mandrake tools\n"
-" --incident - programo estu iu de mandrake tools"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Harddrake2 version %s"
-msgstr "Detektado de fiksdisko(j)"
-
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Preferences"
-msgstr "Prefero: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr "Svazilando"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "Domingo"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr "Kopianta %s"
-
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Choose color"
-msgstr "Elektu ekranon"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Syriac"
-msgstr "Sirio"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
msgstr ""
+"Bonvenon al %s, la mastruma sistema elektilo!\n"
+"\n"
+"Elektu mastruman sistemon de la supra listo aý\n"
+"atendu dum %d sekundoj por defaýlta starto.\n"
+"\n"
-#: ../../help.pm:1
-#, 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!"
-msgstr ""
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Bonvenon al GRUB la elektilo por mastrumaj sistemoj!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
+#: ../../bootloader.pm_.c:986
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Uzu la %c kaj %c klavoj por elekti kiun enskribon estas emfazata."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Nespecifa 2 Butona Muso"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
+"Premu la enenklavon por starti la elektatan mastruman sistemon, 'e' por\n"
+"redakti la"
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr "Forigu la logikajn spacojn unue\n"
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "ordonoj antaux startado, aux 'c' por uzi komandan linion."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
+#: ../../bootloader.pm_.c:995
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La emfazata enskribo startos auxtomate post %d sekundoj."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
-msgstr ""
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Internet access"
-msgstr "Interreto"
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
+msgstr "mankas sufiæe da spaco en /boot"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"y coordinate of text box\n"
-"in number of characters"
-msgstr ""
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "Desktop"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "Start Menu"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr ""
+#: ../../bootloader.pm_.c:1120
+#, fuzzy, c-format
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "Kie vi deziras instali la startþargilon?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Printas provpaÄo(j)n..."
+#: ../../bootlook.pm_.c:53
+#, fuzzy
+msgid "Boot Style Configuration"
+msgstr "Post-instala konfigurado"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
+msgstr "/_Dosiero"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Jam estas subdisko kun surmetingo ĉe %s\n"
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
+msgstr "/Dosiero/_Foriru"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
-msgstr ""
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
+msgstr "<stir>F"
-#: ../../help.pm:1
-#, 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''."
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
-msgstr "Ukrajno"
+#: ../../bootlook.pm_.c:83
+msgid "NewStyle Monitor"
+msgstr "NovStila Ekrano"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Application:"
-msgstr "AÅ­tentikigado"
+#: ../../bootlook.pm_.c:84
+msgid "Traditional Monitor"
+msgstr "Tradicia Ekrano"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "External ISDN modem"
-msgstr "Eksterna ISDN-modemo"
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
+msgstr "Tradicia Gtk+ Ekrano"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Via elektaĵo? (defaŭlo estas %s) "
+#: ../../bootlook.pm_.c:89
+msgid "Lilo/grub mode"
+msgstr "Lilo/grub modalo"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr ""
+#: ../../bootlook.pm_.c:89
+msgid "Yaboot mode"
+msgstr "Yaboot modalo"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:138
+#, fuzzy
+msgid "Install themes"
+msgstr "Instalu sistemon"
+
+#: ../../bootlook.pm_.c:139
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"
+"Display theme\n"
+"under console"
msgstr ""
-"ProvpaÄo(j)n estis sendataj al la printila demono.\n"
-"Ĉi tiu eble postulas iom da tempo antaŭ ol la printilo komencas.\n"
-"Printada stato:\n"
-"%s\n"
-"\n"
-"Ĉu Äi Äuste funkcias?"
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:140
+#, fuzzy
+msgid "Create new theme"
+msgstr "Kreu novan subdiskon"
+
+#: ../../bootlook.pm_.c:184
#, c-format
-msgid "daily"
+msgid "Backup %s to %s.old"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "and one unknown printer"
-msgstr "Neniu printilo"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#: ../../bootlook.pm_.c:187
#, c-format
-msgid "Ireland"
-msgstr "Irlando"
+msgid "Copy %s to %s"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid " Restore Configuration "
-msgstr "Reta Konfiguraĵo"
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+msgstr "Eraro"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Ĉu tiu ĉi konfigurado Äustas?"
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
+msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:222
#, fuzzy, c-format
-msgid "Wizard Configuration"
-msgstr "LAN Konfiguraĵo"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Autoprobe"
-msgstr "AÅ­tomate esploru"
+msgid "Write %s"
+msgstr "XFree %s"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:224
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."
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Backup system files..."
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../any.pm:1
+#: ../../bootlook.pm_.c:238
#, c-format
-msgid "Can't use broadcast with no NIS domain"
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Foriganta presilon \"%s\"..."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell history size"
+#: ../../bootlook.pm_.c:244
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
-
-#: ../../standalone/drakpxe:1
-#, 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"
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configured on other machines"
-msgstr "Konfiguru la konekton"
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+#, fuzzy
+msgid "Notice"
+msgstr "agrabla(j)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Peru"
-msgstr "Peruo"
+#: ../../bootlook.pm_.c:251
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Elektu instalklason"
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:259
#, fuzzy, c-format
-msgid " on device: %s"
-msgstr "Musaparato: %s\n"
+msgid ""
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
+msgstr "Disdividado de Interreta Konekto"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "Forigu Vindozon"
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
+msgstr "Konfiguru"
-#: ../../services.pm:1
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Startigas la X tiparan servilon (tio estas ... ."
+#: ../../bootlook.pm_.c:268
+#, fuzzy
+msgid "Splash selection"
+msgstr "Elektado de individuaj paka¼oj"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
+#: ../../bootlook.pm_.c:271
+msgid "Themes"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
+#: ../../bootlook.pm_.c:273
+msgid ""
+"\n"
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "Madagaskaro"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "System"
-msgstr "Sistemo"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Ĉu vi deziras uzi tiun funkcion?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr "araba"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Opcioj"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Password required"
-msgstr "Pasvorto"
+#: ../../bootlook.pm_.c:316
+msgid "System mode"
+msgstr "Sistema modalo"
-#: ../../common.pm:1
-#, c-format
-msgid "%d minutes"
-msgstr "%d minutoj"
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
+msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Grafika karto: %s"
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV transfer failed!"
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "XFree Konfigurado"
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
+msgstr "Jes"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Choose action"
-msgstr "Elektu agon"
+#: ../../common.pm_.c:107
+msgid "GB"
+msgstr "GB"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Polynesia"
-msgstr "Franca Polinezio"
+#: ../../common.pm_.c:107
+msgid "KB"
+msgstr "KB"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "MB"
-#: ../../services.pm:1
-#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Subteno de OKI 4w kaj kongruaj winpresiloj."
+#: ../../common.pm_.c:115
+msgid "TB"
+msgstr "TB"
-#: ../../standalone/drakbackup:1
+#: ../../common.pm_.c:123
#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
+msgid "%d minutes"
+msgstr "%d minutoj"
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
-"Lanĉu la ALSA (Advanced Linux Sound Architecture - Avancita Linuksa Son-"
-"Arkitekturo)-sonsistemon"
+#: ../../common.pm_.c:125
+msgid "1 minute"
+msgstr "1 minuto"
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
+#: ../../common.pm_.c:127
#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instalas pelilon por %s karto %s"
+msgid "%d seconds"
+msgstr "%d sekundoj"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
+#: ../../common.pm_.c:172
+#, fuzzy
+msgid "Can't make screenshots before partitioning"
+msgstr "Mi ne povas aldoni plu da subdiskoj"
-#: ../../standalone/drakTermServ:1
+#: ../../common.pm_.c:179
#, fuzzy, c-format
-msgid "Enable Server"
-msgstr "Datumbazoj"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ukrainian"
-msgstr "Ukrajna"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to write the file"
+msgid "Screenshots will be available after install in %s"
msgstr ""
+"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaý la instalado"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "EnÅovu la uzitan startigan disketon en drajvo %s"
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+#, fuzzy
+msgid "France"
+msgstr "Franca"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local network(s)"
-msgstr "Loka(j) reto(j)"
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
+msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Remove Windows"
-msgstr "Forigu Vindozon"
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+#, fuzzy
+msgid "Belgium"
+msgstr "Belga"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Firewire controllers"
-msgstr "Firewire-kontroliloj"
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#, fuzzy
+msgid "Germany"
+msgstr "Germana"
-#: ../../help.pm:1
-#, fuzzy, 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!"
-msgstr ""
-"Post kiam vi konfiguris la Äeneralajn startigil-parametrojn, afiÅiÄos la "
-"isto de\n"
-"startopcioj kiuj haveblas ĉe starto.\n"
-"\n"
-"Se estas en via maÅino aliaj mastrum-sistemoj, ili estas aÅ­tomate aldonitaj\n"
-"al la startmenuo. Vi povas fajnigi la ekzistantajn opciojn\n"
-"klikante al \"Aldonu\" por krei novan kampon, elektante opcion kaj\n"
-"klikante sur \"Modifi\" aÅ­ \"Forigi\" por modifi aÅ­ forigi Äin. \"Jes\" "
-"validigas\n"
-"viajn ÅanÄojn.\n"
-"\n"
-"Vi eble ne deziras doni aliron al tiuj aliaj mastrum-sistemoj por iu ajn "
-"kiu\n"
-"iras al la konzolo kaj restartigas la maÅinon. Vi povas forigi la "
-"tiurilatajn\n"
-"enskribojn por forigi ilin de la startila menuo, sed tiam vi bezonos "
-"startdisketon por\n"
-"startigi tiujn aliajn mastrumsistemojn!"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "System mode"
-msgstr "Sistema modalo"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#, fuzzy
+msgid "Greece"
+msgstr "Greka"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Por print al NetWare printilo, vi devas provizi la NetWare printservilan\n"
-"nomon (Notu! Äœi eble estas malsama de Äia TCP/IP nomo!) aldone al la\n"
-"printvican nomon por la printilo vi deziras atingi kaj iun ajn taÅ­gan\n"
-"salutnomon kaj pasvorton."
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+#, fuzzy
+msgid "Norway"
+msgstr "Norvega"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Netmask:"
-msgstr "Retmasko"
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+#, fuzzy
+msgid "Sweden"
+msgstr "Sveda"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "Alfiksu"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "Italy"
+msgstr "Itala"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+#, fuzzy
+msgid "Austria"
+msgstr "seria"
-#: ../../install_steps_interactive.pm:1
-#, 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"
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Reta Printilo (TCP/ingo)"
-
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../diskdrake/dav.pm_.c:19
msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
+"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 ""
-"Bonvole elektu kiun retadaptilon estos konektata al via Loka Reto (LAN)."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
-msgstr ""
+#: ../../diskdrake/dav.pm_.c:27
+#, fuzzy
+msgid "New"
+msgstr "nova"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Bonvole elektu vian klavar-aranÄon."
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Malmuntu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "Printila Aparato URI"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Muntu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not erasable media!"
-msgstr ""
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
+msgstr "Servilo"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "Finaparato-bazata"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Surmetingo"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr ""
+#: ../../diskdrake/dav.pm_.c:85
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Bonvole, provu la muson"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr ""
+#: ../../diskdrake/dav.pm_.c:88
+#, fuzzy
+msgid "The URL must begin with http:// or https://"
+msgstr "Prokura servilo devus esti http://..."
-#: ../../any.pm:1
-#, c-format
-msgid "The user name is too long"
-msgstr "Ĉi tiu salutnomo estas tro longa"
+#: ../../diskdrake/dav.pm_.c:109
+#, fuzzy
+msgid "Server: "
+msgstr "Servilo"
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "Alia Mastruma Sistemo (Vindozo...)"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
+msgstr "Surmetingo: "
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr ""
+msgid "Options: %s"
+msgstr "Opcioj: %s"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Reading printer database..."
-msgstr "Legas datumbason de CUPS peliloj..."
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
+msgstr "Bonvolu fari rezervan kopion de via dateno antaýe"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Kreu aÅ­toinstalan disketon"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "Legu zorge"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:100
msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
+"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 ""
+"Se vi intencas uzi \"aboot\", zorgu lasi liberan spacon (2048 sektoroj "
+"sufiæas)\n"
+"æe la komenco de la disko"
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr "Somalujo"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr "Nenia liberfonta pelilo"
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "Soræisto"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
+msgstr "Elektu agon"
-#: ../../security/level.pm:1
-#, fuzzy, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
-"Ni uzas aspektojn de la kvara nivelo, sed nun la komputilo estas tute\n"
-"malfermita. Sekurecaj aspektoj estas ĉe iliaj maksimumoj."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "Nikaragvo"
+"Vi havas unu grandan FAT subdiskon.\n"
+"(øenerale uzata de MicroSoft DOS/Vindozo).\n"
+"Mi sugestas ke vi unue regrandecigi tiun subdiskon\n"
+"(klaku sur øin, kaj poste klaku sur \"Regrandecigu\")"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "Nov-Kaledonio"
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "Bonvolu klaki sur subdiskon"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "EÅ­ropa protokolo (EDSS1)"
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "Detaloj"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Delete"
-msgstr "/_Forigu"
+#: ../../diskdrake/hd_gtk.pm_.c:254
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Loka printilo"
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "Grafika reÄimo"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "2a Etendata (Ext2)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
-msgstr "Omano"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "Dosierlokigtabelo (FAT)"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Please enter your email address below "
-msgstr "Bonvole provu denove"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Network Monitoring"
-msgstr "Reta Konfiguraĵo"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+#, fuzzy
+msgid "Journalised FS"
+msgstr "muntado malsukcesis"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:325
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "New size in MB: "
-msgstr "Nova grandeco en MB: "
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "Interþanøa"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Subdiskotabelospeco: %s\n"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "Malplena"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication Windows Domain"
-msgstr "AÅ­tentikigado Vondoza Domajno"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "Alia"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "Usona klavaro"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "Specoj de dosiersistemoj:"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "Kreu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "Tipo"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
+msgid "Use ``%s'' instead"
+msgstr "Uzu ``%s'' anstataýe"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "Forigu"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Sending Speed:"
-msgstr "Konservu en dosiero"
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
+msgstr "Uzu ``Malmuntu'' antaýe"
-#: ../../harddrake/sound.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, 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"
+"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
+"Post vi þanøas la specon de subdisko %s, æiuj datenoj en æi tiu subdisko "
+"estos\n"
+"perdata"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:177
+#, fuzzy
+msgid "Choose a partition"
+msgstr "Elektu agon"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Mail alert configuration"
-msgstr "Konfiguraĵon"
+#: ../../diskdrake/interactive.pm_.c:177
+#, fuzzy
+msgid "Choose another partition"
+msgstr "Kreu novan subdiskon"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr "Tokelau"
+#: ../../diskdrake/interactive.pm_.c:202
+#, fuzzy
+msgid "Exit"
+msgstr "2a Etendata (Ext2)"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Matching"
-msgstr "konformanta(j)"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
+msgstr "Þanøu al Spertula reøimo"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bosnian"
-msgstr "Bosna"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
+msgstr "Þanøu al Normala reøimo"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Release: "
-msgstr "Bonvole atendu"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "Malfaru"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection speed"
-msgstr "Rapido de konekto"
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "Æu mi devus daýri malgraýe?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr "Namibio"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "Æu eliru sen konservi"
-#: ../../services.pm:1
-#, c-format
-msgid "Database Server"
-msgstr "Datumbaz-servilo"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "Æu eliru sen skribi la subdisktabelon?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:257
+#, fuzzy
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "Æu vi deziras provi la konfigura¼on?"
-#: ../../raid.pm:1
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Ne povas aldoni subdiskon al _formatita_ RAID md%d"
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "Forviþu æion"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Network Time Protocol"
-msgstr "Reta interfaco"
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
+msgstr "Aýtomate disponigu"
-#: ../../Xconfig/card.pm:1
-#, 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."
-msgstr ""
-"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
-"NOTU KE ĈI TIO ESTAS EKSPERIMENTA SUBTENO KAJ EBLE SVENIGOS VIAN "
-"KOMPUTILON.\n"
-"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+msgid "More"
+msgstr "Plu"
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Please wait, setting security options..."
-msgstr "Preparas instaladon"
+#: ../../diskdrake/interactive.pm_.c:278
+#, fuzzy
+msgid "Hard drive information"
+msgstr "Detektado de fiksdisko(j)"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:310
+msgid "All primary partitions are used"
+msgstr "Æiuj el la subdiskoj estas uzata"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "Mi ne povas aldoni plu da subdiskoj"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
+#: ../../diskdrake/interactive.pm_.c:312
+msgid ""
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
msgstr ""
+"Por havi plu da subdiskoj, bonvole forigu unu por povi krei etendigitan\n"
+"subdiskon"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Right Shift key"
-msgstr "Dekstra \"Vindozo\"-klavo"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:322
+#, fuzzy
+msgid "Save partition table"
+msgstr "Skribu subdiskotabelon"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:323
+#, fuzzy
+msgid "Restore partition table"
+msgstr "Sava subdiskotabelo"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr "Antigvo-Barbudo"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
+msgstr "Sava subdiskotabelo"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:326
+#, fuzzy
+msgid "Reload partition table"
+msgstr "Sava subdiskotabelo"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "Hispana"
+#: ../../diskdrake/interactive.pm_.c:331
+#, fuzzy
+msgid "Removable media automounting"
+msgstr "Aýtomata muntado de demetebla medio"
-#: ../../services.pm:1
-#, c-format
-msgid "Start"
-msgstr "Startu"
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "Elektu dosieron"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
+#: ../../diskdrake/interactive.pm_.c:347
+msgid ""
+"The backup partition table has not the same size\n"
+"Still continue?"
msgstr ""
+"La rezerva subdisktabelo ne estas la sama grandeco\n"
+"Æu daýras tamen?"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Configuring applications..."
-msgstr "Konfiguru Printilon"
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "Averto"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:362
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."
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
+"Enþovu disketon en drajvo\n"
+"Æiuj datenoj sur tiu disketo estos perdata"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
-msgstr "Normala modemo-konekto"
-
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "File Selection"
-msgstr "Elektado de Pakaĵoj"
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
+msgstr "Provas savi subdisktabelon"
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:379
+#, fuzzy
+msgid "Detailed information"
+msgstr "Montru informon"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Erase tape before backup"
-msgstr "Malbona rezerva dosiero"
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "Regrandecigu"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "Movu"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "StartÅargila instalado"
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "Formatu"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Radikosubdiska grandeco en MB: "
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "Aldonu al RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Ĉi tiu estas deviga pakaĵo, vi ne povas malelekti Äin"
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "Aldonu al LVM (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../standalone/drakTermServ:1
-#, 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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "Forigu de RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "Forigu de LVM (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) estas Domajna NomServilo (DNS) kiun vi uzas por trovi\n"
-"poÅtejojn de IP adresoj."
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "Þanøu RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr "Sent-Lucio"
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
+msgstr "Uzu por retrokonektado"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "Novembro"
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "Kreu novan subdiskon"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
-msgstr "Malkonektu..."
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "Komenca sektoro: "
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Report"
-msgstr "porto"
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "Grandeco en MB: "
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr "PalaÅ­o"
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "Speco de dosiersistemo: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "nivelo"
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Prefero: "
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:481
msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
+"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 ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "Elektado de Pakaĵaj Grupoj"
+#: ../../diskdrake/interactive.pm_.c:511
+#, fuzzy
+msgid "Remove the loopback file?"
+msgstr "Formatas retrokonektan dosieron %s"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr "Post-instala konfigurado"
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "Þanøu subdiskspecon"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+msgid "Which filesystem do you want?"
+msgstr "Kiun dosierosistemo vi deziras uzi?"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "You can configure each parameter of the module here."
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Elektu distingivon kaj kolorprofundon"
+msgid "Where do you want to mount loopback file %s?"
+msgstr "Kie vi deziras munti retrokonektan dosieron %s?"
-#: ../../standalone/mousedrake:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Emulate third button?"
-msgstr "Ĉu vi deziras emuli trian musbutonon?"
+msgid "Where do you want to mount device %s?"
+msgstr "Kie vi deziras munti aparato %s?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
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."
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
-"Vi ne povas krei novan subdiskon\n"
-"(ĉar vi atingis la maksimuman nombron da primaraj subdiskoj).\n"
-"Unue forigu primaran subdiskon kaj kreu etenditan subdiskon."
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr "Muntu"
+"Ne povas malfiksi surmetingon æar æi tiu subdisko estas uzata por\n"
+"retrokonektado. Unue forigu la retrokonektadon."
-#: ../../standalone/drakautoinst:1
+#: ../../diskdrake/interactive.pm_.c:606
#, fuzzy, c-format
-msgid "Creating auto install floppy"
-msgstr "Kreas aÅ­toinstalan disketon"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Install updates"
-msgstr "Instalu Äisdatigojn"
+msgid "Where do you want to mount %s?"
+msgstr "Kie vi deziras munti aparato %s?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "Kalkulas FAT dosiersistemajn limojn"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "State"
-msgstr "Stato:"
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "Regrandecigas"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Kontrolu ke medio estas en la aparato %s"
+#: ../../diskdrake/interactive.pm_.c:662
+msgid "This partition is not resizeable"
+msgstr "Æi tiu subdisko ne estas regrandecigebla"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable multiple profiles"
-msgstr "Ebligu multoblajn profilojn"
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
+msgstr "Æiuj datenoj en æi tiu subdisko devus esti rezervata"
-#: ../../fs.pm:1
+#: ../../diskdrake/interactive.pm_.c:669
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
+"Post vi regrandecigas subdiskon %s, æiuj datenoj en æi tiu subdisko estos\n"
+"perdata"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "Elektu la novan grandecon"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Local printer"
-msgstr "Loka printilo"
+#: ../../diskdrake/interactive.pm_.c:675
+#, fuzzy
+msgid "New size in MB: "
+msgstr "Grandeco en MB: "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Files Restored..."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "Al kiu disko vi deziras movi?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
-msgstr "Elektado de Pakaĵoj"
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "Sektoro"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritania"
-msgstr "MaÅ­rlando"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "Al kiu sektoro vi deziras movi?"
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "Movante"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "Movas subdisko..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All primary partitions are used"
-msgstr "Ĉiuj el la subdiskoj estas uzata"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "Presilo \"%s\" en servilo \"%s\""
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "nova"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
msgstr ""
+"Elektu ekzistantan RAID (Redundanca Aro de Malmultekostaj Diskoj) por\n"
+"aldoni al"
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Auxtomata detektado kaj konfigurado de aparataro dum starto."
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
+msgstr ""
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Installation Server Configuration"
-msgstr "LAN Konfiguraĵo"
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
+msgstr "Vi ne povas uzi æi tiun subdiskon por retrokonektado"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "Konfiguras IDE"
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
+msgstr "Retrokonektado"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Network functionality not configured"
-msgstr "Ekrano ne estas konfigurata"
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
+msgstr "Retrokonekta dosieronomo: "
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Configure module"
-msgstr "Konfiguru muson"
+#: ../../diskdrake/interactive.pm_.c:831
+#, fuzzy
+msgid "Give a file name"
+msgstr "Vera nomo"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "Kokos-Insuloj (Keeling)"
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
+msgstr "Alia retrokonektado jam uzas tiun dosieron, elektu alian"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Vi bezonos restarti antaÅ­ ol la ÅanÄo povas efektiviÄi"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
+msgstr "Dosiero jam ekzistas. Æu vi deziras uzi øin?"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
-msgstr "Telefonnumero de interretprovizanto"
+#: ../../diskdrake/interactive.pm_.c:858
+#, fuzzy
+msgid "Mount options"
+msgstr "Modulaj opcioj:"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Host %s"
-msgstr "Gastiganto %s"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
-msgstr "FiÄio"
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "aparato"
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
-msgstr "Armenio"
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "nivelo"
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "Dua disketa drajvo"
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "grandeco de pecoj"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
+msgstr "Zorgu: æi tiu operacio estas danøera."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:962
+msgid "What type of partitioning?"
+msgstr "Kiun specon de subdiskado?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
+#: ../../diskdrake/interactive.pm_.c:978
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
msgstr ""
+"Æi tiu paka¼o devus esti promociata.\n"
+"Æu vi certas ke vi deziras malelekti øin?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:992
msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
-"EnÅovu disketon en drajvo\n"
-"Ĉiuj datenoj sur tiu disketo estos perdata"
+"Bedaýrinde mi ne kreas /boot tiom longe sur la drajvon (æe cilindro > "
+"1024).\n"
+"Aý vi uzos LILO kaj øi ne funkcios, aý vi ne uzos LILO kaj vi ne bezonas\n"
+"/boot."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "Grandeco: %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
+#: ../../diskdrake/interactive.pm_.c:996
+msgid ""
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
+"La subdiskon vi elektis por aldoni kiel la radiko (root, /) estas fizike\n"
+"situanta preter la 1024a cilindro de la drajvo, kaj vi ne havas /boot\n"
+"subdiskon. Se vi intencas uzi la LILO startadministranto, zorgu aldoni\n"
+"/boot subdiskon."
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "secondary"
-msgstr "%d sekundoj"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "View Backup Configuration."
-msgstr "Reta Konfiguraĵo"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
+#: ../../diskdrake/interactive.pm_.c:1002
+msgid ""
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
msgstr ""
+"Vi elektis softvaran RAID-an subdiskon por la radika dosiersistemo (/).\n"
+"Neniu startþargilo povas trakti tiun sen /boot subdisko.\n"
+"Do zorgu aldoni /boot subdiskon."
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "Neniu pasvorto"
-
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid "Nigeria"
-msgstr "NiÄerio"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "La subdisktabelo de drajvo %s estos skribata al disko!"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
+msgstr "Vi bezonos restarti antaý ol la þanøo povas efektiviøi"
-#: ../../install_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1037
#, c-format
-msgid "There is no existing partition to use"
-msgstr "Ne ekzistas subdiskojn por uzi"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr "Via komputilo ne havas retadaptilon!"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Presilo sur paralela pordo #%s"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
+msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
-"Por printi al inga printilo, vi bezonas provizi la\n"
-"poÅtejon de la printilo kaj opcie la pordnumeron."
+"Post vi formatas la subdiskon %s, æiuj datenoj en æi tiu subdisko estos\n"
+"perdata"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Hard drive information"
-msgstr "Informoj pri fiksdisko(j)"
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "Formatas"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Russian"
-msgstr "Rusa"
+msgid "Formatting loopback file %s"
+msgstr "Formatas retrokonektan dosieron %s"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "Jordan"
-msgstr "Jordanio"
+msgid "Formatting partition %s"
+msgstr "Formatas subdiskon %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1052
+#, fuzzy
msgid "Hide files"
-msgstr "KaÅu dosierojn"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Malproksima printilo"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "BedaÅ­rinde, neniu disketdrajvo havebla"
+msgstr "mkraid malsukcesis"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bolivia"
-msgstr "Bolivio"
+#: ../../diskdrake/interactive.pm_.c:1052
+#, fuzzy
+msgid "Move files to the new partition"
+msgstr "Mankas sufiæan da libera spaco por disponigi novajn subdiskojn"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1053
#, c-format
msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "Malbona pakaĵo"
+#: ../../diskdrake/interactive.pm_.c:1064
+#, fuzzy
+msgid "Moving files to the new partition"
+msgstr "Mankas sufiæan da libera spaco por disponigi novajn subdiskojn"
-#: ../advertising/07-server.pl:1
+#: ../../diskdrake/interactive.pm_.c:1068
#, 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 "Copying %s"
msgstr ""
-#: ../../security/level.pm:1
+#: ../../diskdrake/interactive.pm_.c:1072
#, fuzzy, c-format
-msgid "DrakSec Basic Options"
-msgstr "Opcioj"
+msgid "Removing %s"
+msgstr "Distingivo: %s\n"
-#: ../../standalone/draksound:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
+msgid "partition %s is now known as %s"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Romania"
-msgstr "Rumanujo"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Group"
-msgstr "Laborgrupo"
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "Aparato: "
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "Canada"
-msgstr "Kanado"
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "DOS-a diskingolitero: %s (nur konjekto)\n"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "choose device"
-msgstr "Starta aparato"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "Speco: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from LVM"
-msgstr "Forigu de LVM (Redundanca Aro de Malmultekostaj Diskoj)"
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "Nomo: "
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "Timezone"
-msgstr "Horzono"
+msgid "Start: sector %s\n"
+msgstr "Komenco: sektoro %s\n"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "German"
-msgstr "Germana"
+msgid "Size: %s"
+msgstr "Grandeco: %s"
-#: ../../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
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid "Next ->"
-msgstr "Sekvanta ->"
+msgid ", %s sectors"
+msgstr ", %s sektoroj"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in japanese language. Only "
-"use this function if you really want to print text in japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:1125
+#, fuzzy, c-format
+msgid "Cylinder %d to %d\n"
+msgstr "De cilindro %d al cilindro %d\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Povas esti, ke tiu ĉi subdisko estas\n"
-"pelila subdisko. Prefere\n"
-"lasu Äin sola.\n"
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "Formatita\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
-msgstr "Gvineo-BisaÅ­o"
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "Ne formatita\n"
-#: ../../Xconfig/monitor.pm:1
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
+msgstr "Muntita\n"
+
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Horizontala sinkronrapido (horizontal sync rate)"
+msgid "RAID md%s\n"
+msgstr "RAID (Redundanca Aro de Malmultekostaj Diskoj) md%s\n"
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, fuzzy, c-format
-msgid "Edit"
-msgstr "Eliro"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"Ne povas malfiksi surmetingon ĉar ĉi tiu subdisko estas uzata por\n"
-"retrokonektado. Unue forigu la retrokonektadon."
+"Loopback file(s):\n"
+" %s\n"
+msgstr "Retrokonekta(j) dosiero(j): %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1132
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\""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
+"Subdisko startata defaýlte\n"
+" (por MS-DOS starto, ne por \"lilo\")\n"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "USB controllers"
-msgstr "USB-kontroliloj"
-
-#: ../../Xconfig/various.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "What norm is your TV using?"
-msgstr "Kiun normon uzas via TV?"
+msgid "Level %s\n"
+msgstr "Nivelo %s\n"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "Type:"
-msgstr "Speco:"
+msgid "Chunk size %s\n"
+msgstr "Grandeco de pecoj %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Share name"
-msgstr "Opuza nomo"
+msgid "RAID-disks %s\n"
+msgstr "RAID-aj (Redundanca Aro de Malmultekostaj Diskoj) diskoj %s\n"
-#: ../../standalone/drakgw:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "enable"
-msgstr "ebligu"
+msgid "Loopback file name: %s"
+msgstr "Retrokonekta dosieronomo: %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-"Mi kontaktas la Linuks-Mandrakan retpaÄon por havigi la liston de "
-"disponeblaj speguloj..."
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"Problemo okazis dum restarto de la reto: \n"
-"\n"
-"%s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove the loopback file?"
-msgstr "Ĉu forigu la retrokonektan dosieron?"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Elektita grandeco estas pli ampleksa ol disponebla spaco"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP server name missing!"
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
msgstr ""
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid "Please choose your country."
-msgstr "Bonvole elektu vian landon."
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Malbona rezerva dosiero"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Laotian"
-msgstr "Laosa"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Samoa"
-msgstr "Samoo"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"La rstat protokolo permesas al uzuloj sur reto ekstrakti metrikojn\n"
-"pri la rapideco de iu ajn komputilo sur tiu reto."
+msgid "Size: %s\n"
+msgstr "Grandeco: %s\n"
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "Re-generating list of configured scanners ..."
-msgstr ""
-
-#: ../../modules/interactive.pm:1
-#, fuzzy, c-format
-msgid "Module configuration"
-msgstr "Interreta Konfigurado"
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Geometrio: %s cilindroj, %s kapoj, %s sektoroj\n"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Scanner"
-msgstr "skanilo"
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
+msgstr "Informo: "
-#: ../../Xconfig/test.pm:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Averto: provado de ĉi tiu grafika-karto eble svenigos vian komputilon"
+msgid "LVM-disks %s\n"
+msgstr "LVM-aj (Redundanca Aro de Malmultekostaj Diskoj) diskoj %s\n"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "Salutnomo devas enhavi nur minusklojn, ciferojn, `-' kaj `_'"
+msgid "Partition table type: %s\n"
+msgstr "Subdiskotabelospeco: %s\n"
-#: ../../standalone/drakbug:1
+#: ../../diskdrake/interactive.pm_.c:1169
#, fuzzy, c-format
-msgid "Menudrake"
-msgstr "Spertulo"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "Bonvenon Al Rompistoj"
+msgid "on channel %d id %d\n"
+msgstr "æe buso %d identiga¼o %d\n"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "Modulaj opcioj:"
+#: ../../diskdrake/interactive.pm_.c:1199
+#, fuzzy
+msgid "Filesystem encryption key"
+msgstr "Speco de dosiersistemo: "
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1203
#, fuzzy, c-format
-msgid "Go on without configuring the network"
-msgstr "Konfiguras reto"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Abort"
-msgstr "Ĉesigu"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
+msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
+"Æi tiu pasvorto ests tro simpla (øi devas esti almenaý %d signoj longa)"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Usage of remote scanners"
-msgstr "Uzu liberan spacon"
+#: ../../diskdrake/interactive.pm_.c:1204
+#, fuzzy
+msgid "The encryption keys do not match"
+msgstr "La pasvortoj ne egalas"
-#: ../../install_interactive.pm:1
-#, 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."
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
msgstr ""
-"Via Vindoza subdisko estas tro fragmentigata, bonvole uzu ``defrag'' antaÅ­e"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak-a (Norvega)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Ne povis forki: %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "Speco: "
+#: ../../diskdrake/removable.pm_.c:47
+#, fuzzy
+msgid "Change type"
+msgstr "Þanøu subdiskspecon"
-#: ../../standalone/drakTermServ:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "<-- Edit Client"
+msgid "Can't login using username %s (bad password?)"
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "no fonts found"
-msgstr "neniu retkarto trovita"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Aýtentikigado"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Mouse"
-msgstr "Muso"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Interreto"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "not enough room in /boot"
-msgstr "mankas sufiĉe da spaco en /boot"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Salutnomo"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "trying to promote %s"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Liechtenstein"
-msgstr "LiÄ¥tenÅtejno"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+#, fuzzy
+msgid "Username"
+msgstr "Salutnomo"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Host name"
-msgstr "PoÅtejo"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS Domajno"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the color of the progress bar"
-msgstr ""
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+#, fuzzy
+msgid "Search servers"
+msgstr "DNA servilo"
-#: ../../standalone/drakfont:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "Suppress Fonts Files"
-msgstr ""
+msgid "%s formatting of %s failed"
+msgstr "%s formatado de %s malsukcesis"
-#: ../../diskdrake/interactive.pm:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "Add to RAID"
-msgstr "Aldonu al RAID (Redundanca Aro de Malmultekostaj Diskoj)"
+msgid "I don't know how to format %s in type %s"
+msgstr "ne scias kiel formati %s kiel speco %s"
-#: ../../help.pm:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-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."
+msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr ""
+msgid "error unmounting %s: %s"
+msgstr "eraro dum malmunti %s: %s"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "No floppy drive available!"
-msgstr "Neniu disketilo havebla"
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "simpla"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saudi Arabia"
-msgstr "SaÅ­da Arabujo"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Internet"
-msgstr "Interreto"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "Ĉu mi devus daŭri malgraŭe?"
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "servilo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:240
+#, fuzzy, c-format
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
+"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 loose all the partitions?\n"
msgstr ""
+"Mi ne povas legi vian subdisktabelon, øi estas tro difektita por mi :(\n"
+"Mi povas peni daýri per blankigi difektitajn subdiskojn (ÆIOM DA DATUMO\n"
+"pereos!). La alia solvo estas malpermesi al DrakX þanøi la subdisktabelon.\n"
+"(la eraro estas %s)\n"
+"\n"
+"Æu vi konsentas perdi æiujn subdiskojn?\n"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer"
-msgstr "Printilo"
-
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices were added:\n"
-msgstr ""
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr "Vi ne povas uzi JFS por subdisko pli malgranda ol 16MB"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometrio: %s cilindroj, %s kapoj, %s sektoroj\n"
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "Vi ne povas uzi ReiserFS por subdisko pli malgranda ol 32MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Presanta per presilo \"%s\""
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
+msgstr "Surmetingoj devas komenci kun antaýa /"
-#: ../../standalone/drakTermServ:1
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore From Tape"
-msgstr "Sava subdiskotabelo"
+msgid "There is already a partition with mount point %s\n"
+msgstr "Jam estas subdisko kun surmetingo æe %s\n"
-#: ../../standalone/drakbug:1
+#: ../../fsedit.pm_.c:526
#, 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."
+msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the profile to configure"
-msgstr "Elektu la konfigurendan profilon"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
-msgstr ""
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
+msgstr "Æi tiu dosierujo devus resti interne de la radika dosierosistemo (/)"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:530
+#, fuzzy
msgid ""
-"\n"
-"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
-msgstr ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
+msgstr "Vi bezonas veran dosiersistemon (ext2, reiserfs) por tiu surmetingo\n"
-#: ../../standalone/drakbackup:1
+#: ../../fsedit.pm_.c:532
#, fuzzy, c-format
-msgid "Backup Now from configuration file"
-msgstr "Reta Konfiguraĵo"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr "Surmetingoj devas enteni nur alfanumerajn signojn"
+msgid "You can't use an encrypted file system for mount point %s"
+msgstr "Vi bezonas veran dosiersistemon (ext2, reiserfs) por tiu surmetingo\n"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Restarting printing system..."
-msgstr "Kiun printsistemo vi deziras uzi?"
+#: ../../fsedit.pm_.c:599
+#, fuzzy
+msgid "Not enough free space for auto-allocating"
+msgstr "Mankas sufiæan da libera spaco por disponigi novajn subdiskojn"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "You can only run with no CDROM support"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "Vidu hardvaran informon"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Day"
-msgstr "Majo"
-
-#: ../../any.pm:1
+#: ../../fsedit.pm_.c:694
#, c-format
-msgid "First sector of boot partition"
-msgstr "Unua sektoro de starta subdisko"
+msgid "Error opening %s for writing: %s"
+msgstr "Eraro dum malfermado de %s por skribi: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
msgstr ""
-#: ../../standalone.pm:1
+#: ../../harddrake/sound.pm_.c:171
#, 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)"
-msgstr ""
-"[OPCIOJ]...\n"
-"Konfigurilo de Mandrak-Terminal-Servilo\n"
-"--enable : ebligu MTS\n"
-"--disable : malebligu MTS\n"
-"--start : startigu MTS\n"
-"--stop : haltigu MTS\n"
-"--adduser : aldonu ekzistantan sistem-uzulon al MTS (postulas "
-"uzulnomon)\n"
-"--deluser : forigu ekzistantan sistem-uzulon de MTS (postulas "
-"uzulnomon)\n"
-"--addclient : aldonu kliento-maÅinon al MTS (postulas MAC-adreson, IP, "
-"nbi image-nomon)\n"
-"--delclient : forigu kliento-maÅinon de MTS (postulas MAC-adreson, IP, "
-"nbi image nomon)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Set password expiration and account inactivation delays"
-msgstr ""
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "Sound configuration"
+msgstr "LAN Konfigura¼o"
-#: ../../standalone/logdrake:1
+#: ../../harddrake/sound.pm_.c:174
#, c-format
msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
msgstr ""
-#: ../../Xconfig/monitor.pm:1
+#: ../../harddrake/sound.pm_.c:176
#, c-format
msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"La du gravegaj parametroj estas la vertikala refreÅigrapido (vertical\n"
-"refresh rate) kiu estas la rapido por refreÅigi la tutan ekranon, kaj\n"
-"plej grave la horizontala sinkronrapido (horizontal sync rate), kiu estas\n"
-"la rapido por montri skanliniojn.\n"
"\n"
-"Äœi estas TRE GRAVA ke vi ne elektas specon de ekrano kiu havas\n"
-"sinkronamplekson kiu estas preter la kapabloj de via ekrano: vi eble\n"
-"difektus vian ekranon. Se vi dubas, elektu zorgeman opcion."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
-msgstr "ÅœanÄu"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr ""
+#: ../../harddrake/sound.pm_.c:178
+#, fuzzy
+msgid "Driver:"
+msgstr "Pelilo"
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Insert floppy"
-msgstr "EnÅovu disketon en %s"
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+#, fuzzy
+msgid "Help"
+msgstr "/_Helpo"
-#: ../../diskdrake/dav.pm:1
-#, 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\"."
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
msgstr ""
-"WebDAV estas protokolo kiu ebligas al vi kroĉi interretservilan dosierujon\n"
-"loke, kaj trakti Äin kvazaÅ­ lokan dosiersistemon (kondiĉe ke la retservilo "
-"estu\n"
-"konfigurita kiel WebDAV-servilo). Se vi deziras aldoni WebDAF-kroĉpunktojn,\n"
-"elektu \"New\"."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "HardDrake"
+#: ../../harddrake/sound.pm_.c:186
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../harddrake/sound.pm_.c:202
#, c-format
-msgid "new"
-msgstr "nova"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable syslog reports to console 12"
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Ĉu vi Åatus reprovi?"
-
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "Sorĉisto"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Edit selected server"
-msgstr "Malinstalu printvicon"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please choose where you want to backup"
-msgstr "Bonvole, elektu la pakaĵojn kiujn vi deziras instali."
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Provu konfigura¼on"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Vi bezonas restarti por la ÅanÄoj al la subdisktabelo efektivigi"
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "Bonvole atendu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
+#: ../../harddrake/sound.pm_.c:210
+msgid "No known driver"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
+msgid "There's no known driver for your sound card (%s)"
msgstr ""
-"Mi malsukcesis kontroli la dosiersistemon %s. Ĉu vi deziras ripari la "
-"erarojn? (atentu, vi povas perdi datenojn)"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Bonvole, elektu vian klavaran aranÄon."
-
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "LaÅ­norma"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Bonvole, elektu la specon de via muso."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
-msgstr "Konektu..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Malsukcesis konfiguri la printilon \"%s\"!"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "not configured"
-msgstr "ne konfigurita"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "About"
-msgstr "Ĉesigu"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "Konfigurado de prokuraj serviloj"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Komenco: sektoro %s\n"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "No Mask"
-msgstr "Malbona pakaĵo"
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Network interface already configured"
-msgstr "Ekrano ne estas konfigurata"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
+#: ../../harddrake/sound.pm_.c:214
+msgid "Unkown driver"
msgstr ""
-#: ../../install_messages.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, 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."
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Mail Server"
-msgstr "RetpoÅt-servilo"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "Bonvolu klaki sur subdiskon"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr ""
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Malproksima printilo"
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linukso"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Genera"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Upgrade %s"
-msgstr "Äœisdatigu %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Elektu Printilan Konekton"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+"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 ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr ""
+#: ../../harddrake/v4l.pm_.c:227
+#, fuzzy
+msgid "Card model:"
+msgstr "Memoro de Karto (DMA)"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"La interreta superservila demono (kutime nomata inetd) lanĉas sortimenton\n"
-"da aliaj interretaj servoj laŭbezone. Ĝi respondas por la lanĉo de multaj\n"
-"servoj, inkluzive de telnet, ftp, rsh, kaj rlogin. Se vi malÅaltas inetd,\n"
-"ve malÅaltas ĉiujn el la servoj por kiuj Äi respondas."
+#: ../../harddrake/v4l.pm_.c:228
+#, fuzzy
+msgid "Tuner type:"
+msgstr "Þanøu subdiskspecon"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
msgstr ""
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "Argentino"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Domain Name Server"
-msgstr "Domajn-nom-servilo"
-
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Security Level:"
-msgstr "Elektas sekurnivelon"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr "Surmetingoj devas komenci kun antaÅ­a /"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Bonvole, elektu vian klavaran aranÄon."
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "CUPS server"
-msgstr "DNA servilo"
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Postfix Mail Server"
-msgstr "Datumbazoj"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "Ĉu eliru sen konservi"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "Jemeno"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
-msgstr ""
+#: ../../harddrake/v4l.pm_.c:231
+#, fuzzy
+msgid "PLL setting:"
+msgstr "Formatas"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
msgstr ""
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
msgstr ""
-#: ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+
+#: ../../help.pm_.c:48
+msgid ""
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/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"
-"%s\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"
-"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"
+" * \"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"
-"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."
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "Detektado de fiksdisko(j)"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../help.pm_.c:79
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
-"Vi ne elektis pakaĵgrupon.\n"
-"Bonvole elektu la minimuman instaladon kiun vi deziras:"
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../help.pm_.c:84
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 ""
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "Bonvole entajpu la servilan URL de la WebDAV"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "TaÄikistano"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "Akceptu"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "Priskribo"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter summary text."
+"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"
+"you are not supposed to know them all by heart.\n"
+"\n"
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
+"\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
+"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
+"\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
+"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
+"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
+"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
+"\n"
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Eraro dum malfermado de %s por skribi: %s"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Speco de muso: %s\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Vi povas havi 3D aparatan akceladan subtenon kun XFree %s."
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "Elektu ekranon"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "Malplena etikedo ne estas permesata"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
-msgstr "Malta (UK)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "Mi ne povas aldoni plu da subdiskoj"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "Grandeco en MB: "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "Malproksima printilo"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
-msgstr "Bonvole elektu lingvon por uzi."
-
-#: ../../network/network.pm:1
-#, c-format
+#: ../../help.pm_.c:135
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."
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
msgstr ""
-"AVERTO: Ĉi tiu aparato estis antaŭe konfigurita por konekti al la "
-"Interreto.\n"
-"Simple akceptu konservi la konfiguron de ĉi tiu aparato.\n"
-"Se vi modifos la subajn kampojn, vi ÅanÄos ĉi tiun konfiguron."
-
-#: ../../any.pm:1
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
-msgstr "Mi povas konfiguri vian komputilon por aÅ­tomate enirigi unu uzulon"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Floppy format"
-msgstr "Formatu"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Generic Printers"
-msgstr "Printilo"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:171
msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of the root partition"
-msgstr "Unua sektoro de radika subdisko"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Alternative drivers"
-msgstr "Printas provpaÄo(j)n..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:193
+#, fuzzy
msgid ""
+"You may now choose which services you wish to start at boot time.\n"
"\n"
-"Please check all options that you need.\n"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
-msgstr "Kabo-Verdo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr ""
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr "Interreta Konfigurado"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
+"\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
+"Nun vi povas elekti kiujn servojn vi deziras starti kiam vi startas\n"
+"vian komputilon. Kiam via muso estas supre de ero, malgranda balono\n"
+"ekaperas por helpi vin. Øi priskribas la rolon de la servo.\n"
+"\n"
+"Zorgegu en æi tiu paþo se vi intencas uzi vian komputilon kiel servilo:\n"
+"ne startu servojn kiujn vi ne deziras uzi."
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr "Gvamo"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:210
msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/Opcioj/Provu"
-
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:224
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."
+"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.\n"
+"\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
+msgstr ""
+
+#: ../../help.pm_.c:246
+msgid ""
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
+msgstr ""
+
+#: ../../help.pm_.c:253
+msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
+msgstr ""
+
+#: ../../help.pm_.c:277
+msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft 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"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
+"\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
msgstr ""
-"vi devus uzi ĉi tiun nivelon zorge. Ĝi faras vian komputilon pli facila\n"
-"por uzi, sed delikatega: vi devus neniam uzi Äi surrete.\n"
-"Äœi ne havas pasvortojn."
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mounting partition %s"
-msgstr "Enkroĉas subdiskon %s"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "Salutnomo"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Userdrake"
-msgstr "Printilo"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Kiun subdiskon vi deziras uzi por Linux4Win?"
-
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "due to missing %s"
-msgstr "kdesu mankas"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Test pages"
-msgstr "Provu pordojn"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Logical volume name "
-msgstr "Lokaj dosieroj"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:347
msgid ""
-"List of data to restore:\n"
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid "Checking %s"
-msgstr "Kontrolanta %s"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "Ing-Printilaj Opcioj"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Memoro de Karto (DMA)"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Disconnecting from Internet "
-msgstr "Konektu al la Interreto"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "Francio"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remote printer name missing!"
-msgstr "Malproksima poÅtejo"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Ĉu vi deziras provi printado?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "Turkujo"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Number of buttons"
-msgstr "2 butonoj"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vjetnama \"numero-vica\" QWERTY-a"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Module"
-msgstr "Muso"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:378
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
-msgstr "Aparataro"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "Usono"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "User umask"
-msgstr "Salutnomo"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "DefaÅ­lta Mastruma Sistemo?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "Svisa (germana aranÄo)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Konfiguru ĉiujn kapojn sendepende"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:404
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 ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "NTP Servilo"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Sulogin(8) in single user level"
-msgstr ""
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Load/Save on floppy"
-msgstr "Åœargu/Konservu sur disketo"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
+"\n"
+"Please be patient."
msgstr ""
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "agrabla(j)"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Eliras post %d sekundoj"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Property"
-msgstr "Pordo"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
+#: ../../help.pm_.c:412
+msgid ""
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
+"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr "LAN Konfiguraĵo"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "Ganao"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
+#: ../../help.pm_.c:425
+msgid ""
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Advanced Options"
-msgstr "LAN Konfiguraĵo"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "View Configuration"
-msgstr "LAN Konfiguraĵo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
+#: ../../help.pm_.c:432
+msgid ""
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:442
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"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -4570,1808 +3102,1050 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:513
msgid ""
-"Graphic Card\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-" 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"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\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 ""
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Estis eraro dum instalado de pakaĵoj:"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Interreta Konfigurado"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "Malfaru"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Save partition table"
-msgstr "Konservu la subdiskotabelon"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "Finna"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "Macedonio"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "Slovena"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Authorize:\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\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"
-"- only local ones if set to \"LOCAL\"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
"\n"
-"- none if set to \"NONE\".\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr "Libio"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"Mi konfiguras komandodosierojn, instalas programojn, startas servilojn..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Presilo sur paralela pordo #%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
-"- Burn to CD"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "Tabelo"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "ne scias kiel formati %s kiel speco %s"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Model"
-msgstr "Muso"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "USB printer #%s"
-msgstr "USB-presilo #%s"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Stop Server"
-msgstr "NIS Servilo"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Modem"
-msgstr "Modemo"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr "Tuvalo"
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr ""
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
-msgstr ""
-"GPM aldonas subtenon por musoj al teksta-reÄimaj Linuksaj aplikoj ekzemple\n"
-"la 'Midnight Commander' (Meznokta Estro). AnkaÅ­ Äi permesas uzi la muson\n"
-"por transpoÅigi ĉe la konzolo (Sen X Fenestroj)."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr ""
-
-#: ../advertising/12-mdkexpert.pl:1
-#, 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:"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "No password aging for"
-msgstr "Neniu pasvorto"
-
-#: ../../standalone/draksec:1
-#, 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"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr "Orienta Timoro"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Login name"
-msgstr "Domajna nomo"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
-msgstr ""
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Instalanta Foomatic..."
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr ""
-"Bonvole adiaÅ­u kaj sekve uzu Kontrol-Alt-RetropaÅo (Ctrl-Alt-Backspace)."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected"
-msgstr "detektita"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr ""
-"La reto devas esti restartigita.\n"
-"Ĉu vi deziras restartigi Äin?"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Package: "
-msgstr "Elektado de Pakaĵoj"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "StarOffice"
-msgstr "Oficejo"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
+"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 ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr "Ĉiuj lingvoj"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "Mi forigas %s"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "%s not found...\n"
-msgstr "neniu retkarto trovita"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Testing your connection..."
-msgstr "Testante vian konektaĵon..."
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Cache size"
-msgstr "grandeco de pecoj"
-
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:547
msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
+"\n"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
+"\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
+"\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
+"\n"
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
+"\n"
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
+"\n"
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
+"\n"
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
msgstr ""
-"Pasvortoj nun estas ebligataj, sed uzado kiel reta komputilo estas ankoraÅ­\n"
-"ne rekomendita."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr "Komenca sektoro: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr "Kongo (Brazavilo)"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Read"
-msgstr "Nur-lege"
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Ĉi tiu pakaĵo %s devas esti instalita. Ĉu vi deziras instali Äin?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
-msgstr "SejÅeloj"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:582
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"
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
-"For your printer Printerdrake has found:\n"
+"Click on the \"More\" button to be presented with the complete list of\n"
+"supported keyboards.\n"
"\n"
-"%s"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Bad password on %s"
-msgstr "Neniu pasvorto"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:598
msgid ""
+"The first step is to choose your preferred language.\n"
"\n"
-"There is one unknown printer directly connected to your system"
+"Please choose your preferred language for installation and system usage.\n"
+"\n"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
+"\n"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Right Control key"
-msgstr "Dekstra \"Vindozo\"-klavo"
-
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
+#: ../../help.pm_.c:617
msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr "EnÅovu FAT-formatitan disketon en drajvo %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "Zambio"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr "Rumana (qwerty-a)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
+"\n"
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
+"\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "Egipto"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "la Ĉeĥa Respubliko"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "Sonkarto"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Import Fonts"
-msgstr "Formatu subdiskojn"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../help.pm_.c:638
+#, fuzzy
msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Vi havas unu grandan MicroSoft-Vindozan subdiskon.\n"
-"Mi proponas ke vi unue regrandecigu tiun subdiskon\n"
-"(klaku sur Äin, kaj poste klaku sur \"Regrandecigu\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
+"Bonvolu elekti la øustan pordon. Ekzemple, la COM1-a\n"
+"pordo sub MS Vindozo estas nomata ttyS0 sub GNU/Linukso."
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../help.pm_.c:642
msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
"\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "ÅœanÄu subdiskspecon"
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Resolution\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
"\n"
-" 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 ""
-
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Network Options"
-msgstr "Modulaj opcioj:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable msec hourly security check"
-msgstr ""
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
+"\n"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
+"\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
+"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr "(sur %s)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "MM Serio"
-
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:678
msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, 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 in doubt, DrakX will display a dialog with various options.\n"
+"\n"
+" * \"Bootloader to use\": you have three choices:\n"
+"\n"
+" * \"GRUB\": if you prefer grub (text menu);\n"
+"\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\n"
+"\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
+"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
+"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
+"\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\n"
+"\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "New printer name"
-msgstr "Neniu printilo"
-
-#: ../../fs.pm:1
-#, c-format
+#: ../../help.pm_.c:718
+#, fuzzy
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 )."
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
+"LILO (la Linuksa Þargilo) kaj Grub estas startþargiloj: ili povas starti\n"
+"aý GNU/Linukson aý iun ajn mastruman sistemon æeestanta æe via komputilo.\n"
+"Normale, æi tiuj aliaj mastrumaj sistemoj estas øuste detektata kaj\n"
+"instalada. Se tiel ne estas, vi povas aldoni enskribon mane per æi tiu\n"
+"ekrano. Zorgu elekti la øustajn parametrojn.\n"
+"\n"
+"\n"
+"Eble vi ankaý ne deziras doni atingon al æi tiuj aliaj mastrumaj sistemoj\n"
+"al iu ajn. Æiokaze vi povas forstreki la respondajn enskribojn. Sed\n"
+"æiokaze, vi bezonos startdiskon por starti ilin!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr "Ekvatora Gvineo"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup System"
-msgstr "Dosiersistemo konfiguro"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Build Backup"
-msgstr "Malbona rezerva dosiero"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:732
+#, fuzzy
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\n"
+"\n"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
msgstr ""
+"Vi bezonas indiki kie vi deziras meti la informon postulata\n"
+"por starti GNU/Linukson.\n"
+"\n"
+"\n"
+"Krom se vi scias precize kion vi faras, elektu \"Unua sektoro de\n"
+"drajvo (MBR)\""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwertz)"
-msgstr "Rumana (qwertz-a)"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Write Config"
-msgstr "rekonfiguru"
-
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:739
msgid ""
-"The routed daemon allows for automatic IP router table updated via\n"
-"the RIP protocol. While RIP is widely used on small networks, more complex\n"
-"routing protocols are needed for complex networks."
-msgstr ""
-"La routed dajmono permesas aÅ­tomatan Äisdatigon de la IP enkursigila tabelo\n"
-"per la RIP protokolo. Kvankam RIP estas vaste uzata je malgrandaj retoj,\n"
-"pli malsimplaj enkursigaj protokoloj estas bezonataj por malsimplaj retoj."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr "Kiribato"
-
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "LoÄiteka Muso (seria, malnova C7 speco)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
+"\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
+"\n"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:759
+#, fuzzy
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"
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"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"
-"You will be presented with a list of different parameters to change to get\n"
-"an optimal graphical display: Graphic Card\n"
+"Because hardware detection does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\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"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
"\n"
-" 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"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
+msgstr ""
+"DrakX provos seræi PCI-a(j)n SCSI-a(j)n adaptilo(j)n\n"
+"Se DrakX trovas SCSI-an adaptilon kaj scias kiun pelilon øi devas uzi\n"
+"øi aýtomate instalos øin (aý ilin).\n"
"\n"
+"Se vi havas neniom da SCSI-aj adaptiloj, ISA-an SCSI-an adapilon, aý\n"
+"PCI-an SCSI-an adaptilon kiun DrakX ne rekonas DrakX demandos al vi\n"
+"se vi havas SCSI-an adaptilon sur via komputilo. Se vi ne havas adaptilon\n"
+"vi povas nur klaki 'Ne'. Se vi klakos 'Jes', DrakX montros al vi liston de\n"
+"peliloj. Vi povos elekti vian specifan pelilon de la listo.\n"
"\n"
"\n"
-"Monitor\n"
+"Se vi devas permane elekti vian adaptilon, DrakX demandos\n"
+"æu vi deziras specifi opciojn por øi. Vi devus permesi al DrakX\n"
+"esplori la aparaton por la opcioj. Æi tiu kutime bone funkcias.\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"
+"Se ne, vi bezonos provizi opciojn al la pelilo.\n"
+"Reviziu la Instalgvidlibron por sugestoj pri ekstrakado de æi tiu\n"
+"informo de Vindozo (se vi havas øin sur via komputilo),\n"
+"de dokumenta¼o de aparato, aý de la TTT-ejo de la fabrikanto\n"
+"(se vi havas atingon al la reto)."
+
+#: ../../help.pm_.c:781
+msgid ""
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
"\n"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\n"
"\n"
+"For Linux, there are a few possible options:\n"
"\n"
-"Resolution\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\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"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
"\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
"\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
"\n"
-"Test\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"hda=autotune\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"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
+" * Initrd: this option can be used either to load initial modules, before\n"
+"the boot device is available, or to load a ramdisk image for an emergency\n"
+"boot situation;\n"
"\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
"\n"
-"Options\n"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\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 ""
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr ""
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr "KDROMO"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Ĉu vi deziras provi konekti al la interreto nun?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "Belga"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Ĉu vi havas ISA-sonkarton?"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Mi ne detektas eterretan retadaptilom sur via sistemo.\n"
-"Mi ne povas konfiguri tiun konektotipon."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Windows"
-msgstr "Vindozo"
-
-#: ../../common.pm:1
-#, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "Mi ne povas fari ekranfotojn antaÅ­ ol fari subdiskojn"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Host Name"
-msgstr "PoÅtejo"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Dosiero/Savu _Kiel"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "Prokrastoperiodo antaÅ­ starti defaÅ­ltan sistemon"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Restrict command line options"
-msgstr "Limigu komandliniajn opciojn"
-
-#: ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "East Europe"
-msgstr "EÅ­ropo"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "Uzu liberan spacon"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "uzu dhcp"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr ""
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Internet configuration"
-msgstr "Interreta konfigurado"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr "Uzbekistano"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "Duobla surmetingo %s"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/Autodetect _printers"
-msgstr "Malproksima printilo"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "Finu"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Montru aŭtomate elektitajn pakaĵojn"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr "Togo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr ""
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "Bonvole provu denove"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "The model is correct"
-msgstr "Ĉu tio ĉi pravas?"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "RegrandeciÄo de FAT malsukcesis: %s"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr "Elektado de individuaj pakaĵoj"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr "Ĉi tiu subdisko ne estas regrandecigebla"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr "Loko"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "Gvatemalo"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr "Journalised FS"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "This machine"
-msgstr "konformanta(j)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS-a diskingolitero: %s (nur konjekto)\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr "Barejno"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr ""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit scsi modules"
-msgstr "forlasu SCSI-ajn modulojn"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
-msgstr ""
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Klavara aranÄo: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr "Malta (US)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr ""
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Muntas kaj malmuntas ĉiujn RetDosierSistemajn (NFS), SMB (Lan\n"
-"Manager/Vindozaj), kaj NCP (NetWare) surmetingojn."
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Launch the wizard"
-msgstr "Lanĉu userdrake"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Tvcard"
-msgstr "Tvcard"
-
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "ÅœanÄu al Normala reÄimo"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr "Grandeco"
-
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "GRUB"
-msgstr "GB"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr "Groenlando"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "LoÄiteka MouseMan+/FirstMouse+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "ĵaŭdo"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\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"
-"What would you like to do?"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
msgstr ""
-"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Delete All NBIs"
-msgstr "Elektu dosieron"
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:828
msgid ""
-"This dialog allows you to fine tune your bootloader:\n"
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
"\n"
-" * \"%s\": there are three choices for your bootloader:\n"
+"Yaboot's main options are:\n"
"\n"
-" * \"%s\": if you prefer grub (text menu).\n"
+" * Init Message: a simple text message displayed before the boot prompt;\n"
"\n"
-" * \"%s\": if you prefer LILO with its text menu interface.\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"
-" * \"%s\": if you prefer LILO with its graphical interface.\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"
-" * \"%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"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
-" * \"%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"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\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"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
-"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
-"are normally reserved for the expert user."
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../help.pm_.c:860
msgid ""
-"if set, send the mail report to this email address else send it to root."
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
+"\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
+"\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
+"\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\n"
+"\n"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\n"
+"\n"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\n"
+"\n"
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Kiun konfiguron de XFree vi deziras havi?"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "More"
-msgstr "Plu"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:891
msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
-#: ../../security/level.pm:1
-#, fuzzy, c-format
+#: ../../help.pm_.c:896
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."
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"Kun ĉi tiu sekurnivelo, uzado de ĉi tiu komputilo kiel servilo ebliÄas.\n"
-"La sekureco nun estas sufiĉe alta por uzi la sistemon kiel servilo kiu\n"
-"akceptas konektojn de multaj klientoj."
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Server Name"
-msgstr "Servil-nomo:"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../install2.pm_.c:111
#, c-format
-msgid "Account Password"
-msgstr "Konta Pasvorto"
+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 ""
-#: ../../standalone/drakhelp:1
+#: ../../install2.pm_.c:167
#, c-format
-msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
+msgid "You must also format %s"
msgstr ""
-#: ../../any.pm:1
+#: ../../install_any.pm_.c:423
#, 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"
+"You have selected the following server(s): %s\n"
"\n"
-"On which drive are you booting?"
-msgstr ""
-"Vi decidis instali la startilon en subdiskon.\n"
-"Tio implicas ke vi jam havas startilon sur la fiskdisko kiun vi startigas "
-"(ekz-e: System Commander).\n"
"\n"
-"En kiu drajvo vi startigas?"
-
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid ""
-"WARNING!\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\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 ""
-"AVERTO!\n"
"\n"
-"DrakX nun regrandecigos vian Vindozan subdiskon. Zorgu:\n"
-"ĉi tiu operacio estas danÄera. Se vi ne jam faris Äin,\n"
-"vi prefere antaÅ­e eliru el la instalado, uzu\n"
-"\"scandisk\" sub Vindozo (kaj laŭvole rulu \"defrag\"), kaj sekve relanĉu "
-"la\n"
-"instaladon. Vi prefere faru ankaÅ­ rezervan kopion de via datenoj.\n"
-"Kiam vi estos certa, klaku \"Jeso\"."
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Tajik keyboard"
-msgstr "Taja klavaro"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Font List"
-msgstr "Surmetingo"
-
-#: ../../install_steps_interactive.pm:1
-#, 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."
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, 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"
+"Do you really want to install these servers?\n"
msgstr ""
-"Åœajne vi havas malnovegan aÅ­ nekonatan maÅinon,\n"
-"la yaboot-startilo ne funkcios por vi.\n"
-"La instalado daÅ­rigos, sed vi devos\n"
-"uzi BootX aÅ­ alian rimedon por startigi vian maÅinon"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Select file"
-msgstr "Elektu dosieron"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:441
#, c-format
msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "Japanio"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:879
#, fuzzy, c-format
-msgid "Print option list"
-msgstr "Printilaj opcioj"
-
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
-msgstr "Lando"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search servers"
-msgstr "Serĉu servilojn"
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Enþovu disketon en drajvo %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
+#: ../../install_any.pm_.c:895
msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "KDROM etikedata \"%s\""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr ""
+msgid "Error reading file %s"
+msgstr "Eraro legante dosiero %s"
-#: ../../services.pm:1
-#, c-format
+#: ../../install_any.pm_.c:1040
msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Savas kaj restaŭras sisteman entropikomunaĵon por pli altkvalita\n"
-"generado de aleatoraj nombroj."
-
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr ""
-
-#: ../../network/network.pm:1
-#, c-format
-msgid " (driver %s)"
-msgstr " (pelilo: %s)"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
+"Eraro okazis - neniuj validaj aparatoj estis trovata sur kiuj vi povas krei "
+"novajn dosiersistemojn. Bonvolu kontroli vian ekipa¼on por la kaýzo de æi "
+"tiu problemo."
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_interactive.pm_.c:21
#, c-format
msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Retrokonekta(j) dosiero(j):\n"
-"...%s\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr "Mi ne scias"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
+"Iuj aparatoj sur via komputilo bezonas \"proprietajn\" pelilojn por "
+"funkcii.\n"
+"Vi povas trovi iun informon pri ili æe: %s"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../install_interactive.pm_.c:56
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?"
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
+"Vi devas havi radikan subdiskon.\n"
+"Por æi tiu, kreu subdiskon (aý klaku estantan).\n"
+"Sekve elektu la agon \"Surmetingo\" kaj faru øin '/'"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Telugu"
-msgstr "Belgio"
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
+msgstr "Vi devas havi interþanøan subdiskon"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:62
msgid ""
+"You don't have a swap partition.\n"
"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
+"Continue anyway?"
msgstr ""
+"Vi ne havas interþanøan subdiskon\n"
"\n"
-"\n"
-"Via karto nun uzas la %s\"%s\"-pelilon (defaÅ­lta plelilo por via karto estas "
-"\"%s\")"
+"Æu vi deziras daýri tamen?"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Post Uninstall"
-msgstr "Eliru instalprogramon"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+#, fuzzy
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Vi devas havi interþanøan subdiskon"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connecting to Internet "
-msgstr "Konektu al la Interreto"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
+msgstr "Uzu liberan spacon"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
-msgstr ""
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
+msgstr "Mankas sufiæan da libera spaco por disponigi novajn subdiskojn"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Cpuid level"
-msgstr "Elektas sekurnivelon"
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
+msgstr "Uzu ekzistantajn subdiskojn"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Reta Printilo (TCP/ingo)"
+#: ../../install_interactive.pm_.c:102
+msgid "There is no existing partition to use"
+msgstr "Ne ekzistas subdiskojn por uzi"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "Mongola (cirila)"
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
+msgstr "Uzu la Vindoza subdiskon por retrokonektado"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Add a module"
-msgstr "Aldonu modulon"
+#: ../../install_interactive.pm_.c:112
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Kiun subdiskon vi deziras uzi por meti Linux4Win?"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr ""
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
+msgstr "Elektu la grandecojn"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Local measure"
-msgstr "Lokaj dosieroj"
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
+msgstr "Radikosubdiska grandeco en MB: "
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
-msgstr ""
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr "Interþanøa subdiska grandeco en MB: "
-#: ../../mouse.pm:1
-#, c-format
-msgid "busmouse"
-msgstr "bus-muso"
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
+msgstr "Uzu la liberan spacon sur la Vindoza subdisko"
+
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
+msgstr "Kiun subdiskon vi deziras regrandecigi?"
+
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "Kalkulas Vindozajn dosiersistemajn limojn"
-#: ../../standalone/drakTermServ:1
+#: ../../install_interactive.pm_.c:134
#, 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."
-msgstr ""
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Konta Salutnomo (uzula nomo)"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
+"La regrandecigilo por la FAT (Dosiero-Atingo-Tablo) ne povas trakti\n"
+"vian subdiskon, la sekvanta eraro okazis: %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
+"Via Vindoza subdisko estas tro fragmentigata, bonvole uzu ``defrag'' antaýe"
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:138
+#, fuzzy
msgid ""
-"drakfirewall configurator\n"
+"WARNING!\n"
"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
+"AVERTO!\n"
+"\n"
+"DrakX nun regrandecigas vian Vindozan subdiskon. Zorgu: æi tiu operacio "
+"estas\n"
+"danøera. Se vi ne jam faris øin, vi devus antaýe eliru el la instalado, "
+"uzi\n"
+"\"scandisk\" sub Vindozo (kaj laývole \"defrag\"), kaj sekve relanæu la\n"
+"instaladon. Ankaý vi devus fari rezervan kopion de via dateno.\n"
+"Kiam vi estas certa, klaku \"Jeso\"."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr ""
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Kiun grandecon vi deziras teni por Vindozo?"
-#: ../../lang.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Uruguay"
-msgstr "Urugvajo"
+msgid "partition %s"
+msgstr "subdisko: %s"
-#: ../../lang.pm:1
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid "Benin"
-msgstr "Benino"
+msgid "FAT resizing failed: %s"
+msgstr "Regrandeciøo de FAT malsukcesis: %s"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "Presilo \"%s\" sur SMB/vindoza servilo \"%s\""
+#: ../../install_interactive.pm_.c:171
+msgid ""
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Ne ekzistas FAT-ajn (Dosiero-Atingo-Tablo) subdiskojn por regrandecigi\n"
+"aý uzi kiel retrokonektaj subdiskoj (aý ne estas sufiæa da spaco)"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Path selection"
-msgstr "Elektado de individuaj pakaĵoj"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr "Forviþu la tutan diskon"
+
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr "Forigu Vindozon"
-#: ../../standalone/scannerdrake:1
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Vi havas pli ol unu fiksdisko, sur kiu vi deziras instali Linukson?"
+
+#: ../../install_interactive.pm_.c:183
#, c-format
-msgid "Name/IP address of host:"
+msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
+"Æiuj ekzistantaj subdiskoj kaj iliaj datenoj estos perdata sur drajvo %s"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Ekrano: %s\n"
+#: ../../install_interactive.pm_.c:191
+#, fuzzy
+msgid "Custom disk partitioning"
+msgstr "Uzu ekzistantajn subdiskojn"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Custom & system settings"
-msgstr "subdiskigo"
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr "Uzu fdisk"
-#: ../../partition_table/raw.pm:1
+#: ../../install_interactive.pm_.c:198
#, 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."
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-"Io malbona okazas en via drajvo.\n"
-"Testo pri la integreco de datenoj malsukcesis.\n"
-"Tio signifas ke skribado al la disko finiÄos per difektitaj datenoj."
+"Nun vi povas dispartigi %s.\n"
+"Kiam vi finiøos, ne forgesu savi kun `w'."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Printilaj PoÅtejo"
+#: ../../install_interactive.pm_.c:227
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Uzu la liberan spacon sur la Vindoza subdisko"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Bonvole, elektu la pakaĵojn kiujn vi deziras instali."
+#: ../../install_interactive.pm_.c:243
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "Mi ne povas aldoni plu da subdiskoj"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "La Dispartigsoræilo de DrakX trovis æi tiujn solvojn:"
-#: ../../../move/move.pm:1
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid "Key isn't writable"
-msgstr ""
+msgid "Partitioning failed: %s"
+msgstr "Dispartigado malsukcesis: %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bangladesh"
-msgstr "BangladeÅo"
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr "Startado de la reto"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr "Haltas de la reto"
+
+#: ../../install_steps.pm_.c:76
+msgid ""
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
+"Eraro okazis, sed mi ne scias kiel trakti øin bone.\n"
+"Daýri je via propra risko."
-#: ../../standalone/drakfont:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "Initial tests"
+msgid "Duplicate mount point %s"
+msgstr "Duobla surmetingo %s"
+
+#: ../../install_steps.pm_.c:380
+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 ""
+"Iuj gravaj paka¼oj ne estis taýge instalata.\n"
+"Aý via KDROM drajvo aý via KDROM disko estas difektita.\n"
+"Kontrolu la KDROM sur instalata komputilo per\n"
+"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../network/isdn.pm:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "Continue"
-msgstr "Ĉu mi devus daŭri?"
+msgid "Welcome to %s"
+msgstr "Bonvenon al %s"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Custom Restore"
-msgstr "Akomodata"
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr "Neniu disketilo havebla"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "Saturday"
-msgstr "sabato"
+msgid "Entering step `%s'\n"
+msgstr "Eniras paþon `%s'\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:146
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."
+"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 ""
+"Via sistemo havas malmulte da risurcoj. Eble vi havos problemojn pri\n"
+"instali Linuks-Mandrejkon. Se tio okazos, vi povos anstataý provi tekstan\n"
+"instaladon. Por æi tio, premu `F1' kiam vi startas de KDROM, kaj sekve\n"
+"tajpu `text'."
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Set the root umask."
-msgstr "Root-pasvorto"
-
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "Eraro legante dosiero %s"
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr "Instalklaso"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr "Programeto-bazata"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "PLL setting:"
-msgstr "PLL-konfiguraĵo:"
+#: ../../install_steps_gtk.pm_.c:160
+#, fuzzy
+msgid "Please choose one of the following classes of installation:"
+msgstr "Bonvole, elektu unu el la sekvantaj specoj de instalado:"
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Vi devas havi FAT-subdiskon en /boot/efi"
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
+msgstr "Elektado de Paka¼aj Grupoj"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
+msgstr "Elektado de individuaj paka¼oj"
-#: ../../diskdrake/dav.pm:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid "The URL must begin with http:// or https://"
-msgstr "La URL devas komenci per http:// aÅ­ https://"
+msgid "Total size: %d / %d MB"
+msgstr "Tuta grandeco: %d / %d MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
+msgstr "Malbona paka¼o"
-#: ../../any.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "Alia Mastruma Sistemo (SunOS...)"
+msgid "Name: %s\n"
+msgstr "Nomo: %s\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid "Install/Upgrade"
-msgstr "Instalado/Äœisdatigo"
+msgid "Version: %s\n"
+msgstr "Versio: %s\n"
-#: ../../install_steps_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid "%d packages"
-msgstr "%d pakaĵoj"
+msgid "Size: %d KB\n"
+msgstr "Grandeco: %d KB\n"
-#: ../../crypto.pm:1 ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
-msgid "Costa Rica"
-msgstr "Kostariko"
+msgid "Importance: %s\n"
+msgstr "Graveco: %s\n"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:360
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"
+"You can't select this package as there is not enough space left to install it"
msgstr ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Savkopi- kaj Restaŭro-akplikaĵo\n"
-"\n"
-"--default : savu defaÅ­ltajn dosierujojn.\n"
-"--debug : montru ĉiujn ripar-mesaÄojn (debug).\n"
-"--show-conf : listo de dosieroj aÅ­ dosierujoj savendaj.\n"
-"--config-info : klarigu la opciojn de konfigurado-dosieroj (por ne-X-"
-"uzuloj).\n"
-"--daemon : uzu demonan konfiguradon. \n"
-"--help : montru tiun ĉi mesaÄon.\n"
-"--version : montru la versi-numeron.\n"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain Authentication Required"
-msgstr "AÅ­tentikigado de domajno postulata"
-
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid "Use libsafe for servers"
-msgstr "Elektu opciojn por servilo"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Icelandic"
-msgstr "Islanda"
+"Vi ne povas elekti æi tiun paka¼on æar ne estas sufiæe da spaco por instali\n"
+"øin."
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
-msgstr ""
-"\n"
-"Uzado: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
+msgstr "La sekvaj paka¼oj estos instalataj"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
+msgstr "La sekvaj paka¼oj estos malinstalataj"
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Cirklaj surmetingoj %s\n"
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
+msgstr "Vi ne povas elektu/malelektu æi tiun paka¼on"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo/grub mode"
-msgstr "Lilo/grub modalo"
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Æi tiu estas deviga paka¼o, vi ne povas malelekti øin"
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "Martiniko"
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
+msgstr "Vi ne povas malelekti æi tiun paka¼on. Øi estas jam instalita."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
+#: ../../install_steps_gtk.pm_.c:395
+msgid ""
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
+"Æi tiu paka¼o devus esti promociata.\n"
+"Æu vi certas ke vi deziras malelekti øin?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Old user list:\n"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "Vi ne povas malelekti æi tiun paka¼on. Øi devus esti promociata."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
msgstr ""
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "a number"
-msgstr "numero"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr "Instalu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "Sveda"
+#: ../../install_steps_gtk.pm_.c:407
+msgid "Load/Save on floppy"
+msgstr "Þargu/Konservu sur disketo"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Kiun %s pelilon devus mi provi?"
+#: ../../install_steps_gtk.pm_.c:408
+#, fuzzy
+msgid "Updating package selection"
+msgstr "Elektado de individuaj paka¼oj"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:413
+#, fuzzy
+msgid "Minimal install"
+msgstr "Eliru instalprogramon"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Weekday"
-msgstr "merkredo"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
+msgstr "Elektu la paka¼ojn kiuj vi deziras instali"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Filesystem types:"
-msgstr "Specoj de dosiersistemoj:"
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr "Instalanta"
-#: ../../lang.pm:1
-#, c-format
-msgid "Northern Mariana Islands"
-msgstr "Insuloj Marianaj Nordaj"
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr "Taksas"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr "Tempo restanta "
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "neniu"
+#: ../../install_steps_gtk.pm_.c:469
+#, fuzzy
+msgid "Please wait, preparing installation..."
+msgstr "Preparas instaladon"
-#: ../../standalone/drakconnect:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
+msgid "%d packages"
+msgstr "%d paka¼oj"
-#: ../../harddrake/data.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "Floppy"
-msgstr "Disketo"
+msgid "Installing package %s"
+msgstr "Instalanta paka¼o %s"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript referencing"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "Akceptu"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Bootloader"
-msgstr "StartÅargilo"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
+msgstr "Malakceptu"
-#: ../../security/l10n.pm:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
+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 ""
+"Þanøu vian KDROM!\n"
+"\n"
+"Bonvole, enþovu la KDROM-on etikedatan \"%s\" en via drajvo kaj klaku \"Jes"
+"\"\n"
+"kiam vi finos.\n"
+"Se vi ne havas øin, klaku \"Nuligu\" por eviti la instaladon de æi tiu KDROM."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "Movu"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Bootloader to use"
-msgstr "StartÅargilo por uzi"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "PoÅtejo de SMB servilo"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
+msgstr "Æu vi deziras daýri tamen?"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Name Servers:"
-msgstr "NIS Servilo"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
+msgstr "Estis eraro ordigi paka¼ojn:"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Minute"
-msgstr "1 minuto"
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
+msgstr "Estis eraro dum instalado de paka¼oj:"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:10
msgid ""
"\n"
"Warning\n"
@@ -6402,4061 +4176,3413 @@ msgid ""
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
msgstr ""
-"\n"
-"Averto\n"
-"Bonvolu zorge legi la suban tekston. Se vi malsamopinias kun iu\n"
-"parto, vi ne rajtas instali la venontan KD-enhavon. Premu 'Rifuzas'\n"
-"por daÅ­rigi la instaladon sen uzi tiun KD-enhavon.\n"
-"\n"
-"\n"
-"Iuj komponantoj entenataj en la venonta KD ne estas regataj\n"
-"de la GPL-licenco aŭ similaj interkonsentoj. Ĉiu tia komponanto estas\n"
-"tiam regata de la teksto kaj kondiĉoj de Äia propra specifa licenco.\n"
-"Bonvolu zorge legi tiajn specifajn licencojn kaj agi laÅ­ ili antaÅ­\n"
-"ol uzi aÅ­ redisdoni la nomitajn komponantojn.\n"
-"Tiaj licencoj Äenerale malhelpas transdonon, duobligon\n"
-"(escepte por savkopioj), redistribuadon, 'reverse engineering',\n"
-"malmuntadon, malkompiladon aÅ­ modifadon de la komponento.\n"
-"Ĉia rompo de la konsento tuj ĉesigos viajn rajtojn sub\n"
-"la respektiva licenco. Escepte se la specifa licenco donas al vi tiajn\n"
-"rajtojn, vi kutime ne povas instali la programojn sur pli ol unu\n"
-"sistemo, aÅ­ adapti Äin por uzi Äin en reto. En duba kazo bonvole kontaktu\n"
-"rekte la disdoninton aÅ­ la eldoninton de la komponanto.\n"
-"Transdonado al triaj partoj aÅ­ kopiado de tiaj komponantoj inkluzive de la \n"
-"dokumentaĵo normale estas malpermesita.\n"
-"\n"
-"\n"
-"Ĉiuj rajtoj pri la komponantoj de la venonta KD apartenas al ties\n"
-"respektivaj aÅ­toroj kaj estas protektataj de leÄoj pri intelekta propraĵo "
-"kaj\n"
-"kopirajto aplikeblaj al softvaraj programoj.\n"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Expert mode"
-msgstr "SpertuloreÄimo"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linuksa Virtuala servilo, uzata por starigi kapablegan kaj\n"
-"bonege atingeblan servilon."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr "Mikronezio"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliardoj koloroj (32 bitoj)"
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
+msgstr "Eraro okazis"
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
-msgstr "Licenco"
+#: ../../install_steps_interactive.pm_.c:85
+#, fuzzy
+msgid "Do you really want to leave the installation?"
+msgstr "Æu vi deziras provi la konfigura¼on?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
+msgstr "Licenca kontrakto"
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
"\n"
-"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"
+"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"
-"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"
+"2. Limited Warranty\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"
+"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"
-"<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"
+"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"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\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"
-"<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"
+"4. Intellectual Property Rights\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"
+"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 ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "Klavaro"
-#: ../../install_any.pm:1
-#, 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"
+#: ../../install_steps_interactive.pm_.c:218
+#, fuzzy
+msgid "Please choose your keyboard layout."
+msgstr "Bonvole, elektu vian klavaran aranøon."
+
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
msgstr ""
-"Eraro okazis - neniuj validaj aparatoj estis trovata sur kiuj vi povas krei "
-"novajn dosiersistemojn. Bonvolu kontroli vian ekipaĵon por la kaŭzo de ĉi "
-"tiu problemo."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Kiun printsistemo vi deziras uzi?"
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
+msgstr "Kiun instalklaso deziras vi?"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Ĉu vi deziras starti vian konektaĵon je startado de la sistemo?"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
+msgstr "Instalu/Øisdatigu"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
+msgstr "Æu tiu æi estas instalado aý øisdatigado?"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr "Rekomendata"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "Pola (qwerty aranÄo)"
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Spertulo"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Add Printer"
-msgstr "Printilo"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#, fuzzy
+msgid "Upgrade"
+msgstr "Øisdatigu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#, fuzzy
+msgid "Upgrade packages only"
+msgstr "Elektado de individuaj paka¼oj"
+
+#: ../../install_steps_interactive.pm_.c:282
+#, fuzzy
+msgid "Please choose the type of your mouse."
+msgstr "Bonvole, elektu la specon de via muso."
+
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr "Muspordo"
+
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
+msgstr "Bonvole, elektu al kiu seria pordo estas via muso konektata."
+
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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?"
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "Vi ne povas uzi ĉi tiun subdiskon por retrokonektado"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr "Konfiguras PCMCIA kartojn..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr "Dosiero jam ekzistas. Ĉu vi deziras uzi Äin?"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr "Konfiguras IDE"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
+
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr "neniuj haveblaj subdiskoj"
+
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr "Elektu surmetingojn"
+
+#: ../../install_steps_interactive.pm_.c:386
+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/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Kluzo"
+#: ../../install_steps_interactive.pm_.c:395
+#, fuzzy
+msgid "No root partition found to perform an upgrade"
+msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr "Tongo"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr "Radikosubdisko"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "Tunizio"
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr "Kiu estas la radikosubdisko (/) æe via sistemo?"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Scanner sharing"
-msgstr "Printilo"
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr "Vi bezonas restarti por la þanøoj al la subdisktabelo efektivigi"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Profile: "
-msgstr "muntado malsukcesis: "
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
+msgstr "Æu kontrolas malbonajn blokojn?"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr "Formatas subdiskojn"
-#: ../../standalone/drakxtv:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid "XawTV isn't installed!"
-msgstr ""
+msgid "Creating and formatting file %s"
+msgstr "Kreas kaj formatas dosieron %s"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:470
#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Nesufiæa interþanøospaco por plenumi instalado, bonvolu aldoni iom"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:479
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Seræas haveblajn paka¼ojn"
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
-msgstr "Ĉi tiu etikedo estas jam uzata"
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr "Seræas haveblajn paka¼ojn"
+
+#: ../../install_steps_interactive.pm_.c:483
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Vi ne povas malelekti æi tiun paka¼on. Øi estas jam instalita."
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr "Trovadas paka¼ojn por promocii"
+
+#: ../../install_steps_interactive.pm_.c:505
#, 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."
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
+"Via komputilo ne havas sufiæe da spaco por instalado aý promocio (%d > %d)."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
+#: ../../install_steps_interactive.pm_.c:541
+msgid ""
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Load from floppy"
+msgstr "Þargu de disketo"
+
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr "Konservu sur disketo"
+
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Loading from floppy"
+msgstr "Þargas de disketo"
+
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Package selection"
+msgstr "Elektado de Paka¼oj"
+
+#: ../../install_steps_interactive.pm_.c:552
+#, fuzzy
+msgid "Insert a floppy containing package selection"
+msgstr "Enþovu disketon en drajvo %s"
+
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
msgstr ""
-"Post vi formatas la subdiskon %s, ĉiuj datenoj en ĉi tiu subdisko estos\n"
-"perdata"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connection Time: "
-msgstr "Speco de konekto"
+#: ../../install_steps_interactive.pm_.c:649
+msgid "Type of install"
+msgstr ""
-#: ../../standalone/livedrake:1
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:650
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."
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
msgstr ""
-"ÅœanÄu vian KDROM!\n"
-"\n"
-"Bonvole, enÅovu la KDROM-on etikedatan \"%s\" en via drajvo kaj klaku \"Jes"
-"\"\n"
-"kiam vi finos.\n"
-"Se vi ne havas Äin, klaku \"Nuligu\" por eviti la instaladon de ĉi tiu KDROM."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use group id for execution"
+#: ../../install_steps_interactive.pm_.c:653
+msgid "With X"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "Elektu la defaÅ­ltan uzulon:"
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "Gabono"
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:741
msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
+"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 ""
-"Kun malproksima CUPS servilo, vi ne devas konfiguri iun printilon\n"
-"ĉi tie; printiloj estos aŭtomate dektektataj. Se vi havas dubojn,\n"
-"elektu \"Malproksima CUPS servilo\"."
+"Se vi havas æiujn de la KDROM-oj en la listo sube, klaku \"Jes\".\n"
+"Se vi havas neniujn de æi tiuj KDROM-oj, klaku \"Nuligu\".\n"
+"Se vi mankas nur iujn de la KDROM-oj, malelektu ilin, kaj poste klaku \"Jes"
+"\"."
-#: ../../any.pm:1
+#: ../../install_steps_interactive.pm_.c:746
#, 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."
-msgstr ""
-"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaÅ­ la instalado"
+msgid "Cd-Rom labeled \"%s\""
+msgstr "KDROM etikedata \"%s\""
+
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr "Preparas instaladon"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:776
#, c-format
-msgid "Directory (or module) to put the backup on this host."
+msgid ""
+"Installing package %s\n"
+"%d%%"
msgstr ""
+"Instalas paka¼o %s\n"
+"%d%%"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain"
-msgstr "Domajno"
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
+msgstr "Post-instala konfigurado"
-#: ../../any.pm:1
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Preciza kvanto de memoro se bezonata (trovis %d MB)"
+#: ../../install_steps_interactive.pm_.c:828
+#, fuzzy, c-format
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Enþovu disketon en drajvo %s"
-#: ../../help.pm:1
+#: ../../install_steps_interactive.pm_.c:834
#, fuzzy, c-format
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "Enþovu malplenan disketon en drajvo %s"
+
+#: ../../install_steps_interactive.pm_.c:861
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"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
-"If it cannot make a determination, DrakX will ask you where to place the\n"
-"bootloader."
+"Do you want to install the updates ?"
msgstr ""
-"LILO kaj grub estas GNU/Linuksaj startigiloj. Normale, tiu paÅo estas "
-"komplete\n"
-"aÅ­tomata. DrakX analizos la startsektoron de la disko kaj agas laÅ­ tio\n"
-"kion Äi trovas tie:\n"
-"\n"
-" * se Äi trovas vindozan startsektoron, Äi anstataÅ­igos tiun per grub/LILO-"
-"a startsektoro.\n"
-"Tiel vi povos Åargi aÅ­ GNU/Linukson aÅ­ alian mastrumsistemon.\n"
-"\n"
-" * se Äi trovas grub- aÅ­ LILO-startsektoron, Äi anstataÅ­igos tiun per "
-"nova.\n"
-"\n"
-" * se Äi ne povas determini, DrakX demandos vin kien Äi metu la\n"
-"startigilon.\n"
-"\n"
-"\"Boot device\": En plej multaj okazoj, vi ne ÅanÄu la defaÅ­ltan (\"Unua\n"
-"sektoro de la disko (MBR)\"), sed se vi preferas, la startigilo povas esti\n"
-"instalata sur la dua fiksdisko (\"/dev/hdb\"), aŭ eĉ sur disketo\n"
-"(\"Sur disketo\")."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "Provizanto DNS 2 (nedeviga)"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "Starta aparato"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Kiun subdiskon vi deziras regrandecigi?"
+#: ../../install_steps_interactive.pm_.c:876
+#, fuzzy
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgstr "Kontaktu la spegulon por havigi la liston de havebla paka¼oj"
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr "usonaj malgrandaj eksteraj insuloj"
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
+msgstr "Elektu spegulon de kiu havigi la paka¼ojn"
-#: ../../lang.pm:1
-#, c-format
-msgid "Djibouti"
-msgstr "Äœibutio"
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Kontaktu la spegulon por havigi la liston de havebla paka¼oj"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Ilo por vidi vian logdosieron"
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr "kio estas vian horzonon?"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected on port %s"
-msgstr "detektita en pordo %s"
+#: ../../install_steps_interactive.pm_.c:923
+#, fuzzy
+msgid "Hardware clock set to GMT"
+msgstr "Æu via hardvara horloøo estas øustigata en GMT?"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD"
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Grafika karto: %s\n"
+#: ../../install_steps_interactive.pm_.c:931
+msgid "NTP Server"
+msgstr "NTP Servilo"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/Set as _Default"
-msgstr " (DefaÅ­lta)"
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
+msgstr "Malproksima CUPS-a servilo"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:966
+msgid "No printer"
+msgstr "Neniu printilo"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
+#: ../../install_steps_interactive.pm_.c:982
+#, fuzzy
+msgid "Do you have an ISA sound card?"
+msgstr "Æu vi havas alian?"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "LoÄiteka CC serio"
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
+msgstr ""
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "Ĉi tiu platformo ne subtenas etendatajn subdiskojn"
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Splash selection"
-msgstr "Elektado de individuaj pakaĵoj"
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
+msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "ISDN-a Konfiguraĵon"
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
+msgstr "Muso"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "high"
-msgstr "Alta"
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Disdividado de Interreta Konekto"
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "Printilo"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Choose file"
-msgstr "Elektu dosieron"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
+msgstr "ISDN-karto"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Summary: "
-msgstr "Resumo"
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
+msgstr "Sonkarto"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
msgstr ""
-"Averto. Ekzistanta konfiguraĵo de barilo detektata. Vi eble devas permane\n"
-"fiksi Äin poste de la instalado."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Haltas de la reto"
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
+msgstr "LDAP"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+msgid "NIS"
+msgstr "NIS"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-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_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS Domajno"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer default settings"
-msgstr "Printilan Konekton"
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+msgid "Local files"
+msgstr "Lokaj dosieroj"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Nespecifa PS2 RadoMuso"
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr "Difinu pasvorton de root"
-#: ../../standalone/harddrake2:1
-#, 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)"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr "Neniu pasvorto"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Foriganta la malnovan presilon \"%s\"..."
+msgid "This password is too short (it must be at least %d characters long)"
+msgstr ""
+"Æi tiu pasvorto ests tro simpla (øi devas esti almenaý %d signoj longa)"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Select a device !"
-msgstr "Elektu grafikan karton"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "Aýtentikigado"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remove selected server"
-msgstr "Malinstalu printvicon"
+#: ../../install_steps_interactive.pm_.c:1088
+msgid "Authentication LDAP"
+msgstr "Aýtentikiga LDAP"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using dhcp) usb"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "French Southern Territories"
-msgstr "francaj sudaj teritorioj"
+#: ../../install_steps_interactive.pm_.c:1090
+msgid "LDAP Server"
+msgstr "LDAP Servilo"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the processor"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1096
+msgid "Authentication NIS"
+msgstr "Aýtentikiga NIS"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "NIS Domajno"
+
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr "NIS Servilo"
+
+#: ../../install_steps_interactive.pm_.c:1104
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."
+"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 ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr "Ĉiuj datenoj en ĉi tiu subdisko devus esti rezervata"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "Instalanta pakaĵo %s"
+#: ../../install_steps_interactive.pm_.c:1106
+#, fuzzy
+msgid "Authentication Windows Domain"
+msgstr "Aýtentikiga LDAP"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1108
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Domajna nomo"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
msgstr ""
-"Por havi plu da subdiskoj, bonvole forigu unu por povi krei etendigitan\n"
-"subdiskon"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1144
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."
+"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\"."
msgstr ""
+"Akomodita startdisketo provizas manieron de starti via Linuksa sistemo\n"
+"sendepende de la normala startþargilo. Æi tiu estas utila se vi ne deziras\n"
+"instali SILO sur via sistemo, aý alia mastruma sistemo forigas SILO,\n"
+"aý SILO ne funkcias kun via aparato-konfigura¼o. Akomodita startdisketo "
+"ankaý\n"
+"povas esti uzata kun la Mandrejka savdisko, kiu plifaciligas resaniøi de\n"
+"severaj sistemaj paneoj.\n"
+"\n"
+"Se vi deziras krei startdisketon por via sistemo, enþovu disketon en la\n"
+"unua drajvo kaj klaku \"JES\"."
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "Elektu pakaĵojn"
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr "Unua disketa drajvo"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"Ĉiuj ekzistantaj subdiskoj kaj iliaj datenoj estos perdata sur drajvo %s"
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "Dua disketa drajvo"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Via komputilo ne havas sufiĉe da spaco por instalado aŭ promocio (%d > %d)."
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "Ellasu"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:1167
#, 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."
+"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"
msgstr ""
+"Akomodita startdisketo provizas manieron de starti via Linuksa sistemo\n"
+"sendepende de la normala startþargilo. Æi tiu estas utila se vi ne deziras\n"
+"instali LILO (aý grub) sur via sistemo, aý alia mastruma sistemo forigas "
+"LILO,\n"
+"aý LILO ne funkcias kun via komputilo. Akomodita startdisketo ankaý povas\n"
+"esti uzata kun la Mandrejka savdisko, kiu plifaciligas resaniøi de severaj\n"
+"sistemaj paneoj. Æu vi deziras krei startdisketo por via sistemo?\n"
+"%s"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1173
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."
+"\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)."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr "Butano"
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "Bedaýrinde, neniu disketdrajvo havebla"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "Reta interfaco"
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr "Elektu la disketdrajvo vi deziras uzi por krei la startdisketon"
-#: ../../standalone/net_monitor:1
+#: ../../install_steps_interactive.pm_.c:1189
#, fuzzy, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Konektu al la Interreto"
+msgid "Insert a floppy in %s"
+msgstr "Enþovu disketon en drajvo %s"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Reading printer data..."
-msgstr "Legas datumbason de CUPS peliloj..."
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr "Kreas startdisketon"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "Korea klavaro"
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr "Preparas startþargilon"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Not connected"
-msgstr "Ne konektita"
+#: ../../install_steps_interactive.pm_.c:1210
+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 to boot your machine"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "Interreta konektaĵo kaj konfiguro"
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
+msgstr "Æu vi deziras uzi aboot-on?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
-msgstr "Greka"
+#: ../../install_steps_interactive.pm_.c:1219
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Eraro daýre mi instalis \"aboot\",\n"
+"Æu mi devus provi perforte instali eæ se tio detruas la unuan subdiskon?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr "Sent-Kristofo kaj Neviso"
+#: ../../install_steps_interactive.pm_.c:1226
+#, fuzzy
+msgid "Installing bootloader"
+msgstr "Instalu restart-þargilon"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Nespecifa 3 Butona Muso"
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Instalado de startþargilo malsukcesis. La sekvanta eraro okazis:"
-#: ../../any.pm:1
+#: ../../install_steps_interactive.pm_.c:1240
#, c-format
-msgid "Enable OF Boot?"
-msgstr "Ĉu ebligi OF Boot?"
+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 ""
-#: ../../fsedit.pm:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Vi ne povas uzi JFS por subdisko pli malgranda ol 16MB"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Bonvolu klaki sur subdiskon"
+msgid "Insert a blank floppy in drive %s"
+msgstr "Enþovu malplenan disketon en drajvo %s"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Ekrana vertikala refreÅigrapido (vertical refresh rate): %s\n"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
+msgstr "Kreas aýtoinstalan disketon"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "Surmetingo"
+#: ../../install_steps_interactive.pm_.c:1289
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
-#: ../../Xconfig/test.pm:1
+#: ../../install_steps_interactive.pm_.c:1300
#, c-format
msgid ""
-"An error occurred:\n"
+"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"
-"Try to change some parameters"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-"Eraro okazis:\n"
-"%s\n"
-"Provu ÅanÄi iujn parametrojn"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
+#: ../../install_steps_interactive.pm_.c:1313
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "User :"
-msgstr "Salutnomo"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore system"
-msgstr "Instalu sistemon"
+#: ../../install_steps_interactive.pm_.c:1318
+msgid "Generate auto install floppy"
+msgstr "Kreu aýtoinstalan disketon"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1320
msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
+"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/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
+msgstr "Aýtomata"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Another one"
-msgstr "Iu alia"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Replay"
+msgstr "Reludu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1328
+#, fuzzy
+msgid "Save packages selection"
+msgstr "Elektado de individuaj paka¼oj"
-#: ../../lang.pm:1
+#: ../../install_steps_newt.pm_.c:20
#, c-format
-msgid "Colombia"
-msgstr "Kolombio"
+msgid "Mandrake Linux Installation %s"
+msgstr "Linuks-Mandrejka Instalado %s"
-#: ../../standalone/drakgw:1
-#, c-format
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr " <Tabo>/<Alt-Tabo> inter eroj | <Spaco> elektas | <F12> sekva ekrano "
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr ""
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
+msgstr "kdesu mankas"
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr "Reunio"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
+msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "Detaloj"
+#: ../../interactive.pm_.c:152
+#, fuzzy
+msgid "Choose a file"
+msgstr "Elektu agon"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Synchronization tool"
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Checking your system..."
-msgstr "Kiun printsistemo vi deziras uzi?"
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
+msgstr "<- Antaýa"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Print"
-msgstr "Printilo"
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+#, fuzzy
+msgid "Next"
+msgstr "Sekvanta ->"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr "Malbona elekta¼o, provu denove\n"
-#: ../../lang.pm:1
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "Mongolia"
-msgstr "Mongolio"
+msgid "Your choice? (default %s) "
+msgstr "Via elekta¼o? (defaýlo estas %s) "
-#: ../../diskdrake/interactive.pm:1
+#: ../../interactive/stdio.pm_.c:54
#, c-format
-msgid "Mounted\n"
-msgstr "Muntita\n"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configure CUPS"
-msgstr "Konfiguru X"
-
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Graphical Interface"
-msgstr "Grafika interfaco"
+msgid ""
+"Entries you'll have to fill:\n"
+"%s"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../interactive/stdio.pm_.c:70
#, fuzzy, c-format
-msgid "Restore Users"
-msgstr "RestaÅ­ru de dosiero"
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Via elekta¼o? (defaýlo estas %s) "
-#: ../../install_steps_interactive.pm:1
+#: ../../interactive/stdio.pm_.c:95
#, fuzzy, c-format
-msgid "Encryption key for %s"
-msgstr "La pasvortoj ne egalas"
+msgid "Button `%s': %s"
+msgstr "Opcioj: %s"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Do you want to recover your system?"
-msgstr "Ĉu vi deziras uzi aboot-on?"
+#: ../../interactive/stdio.pm_.c:96
+#, fuzzy
+msgid "Do you want to click on this button?"
+msgstr "Æu vi deziras uzi aboot-on?"
-#: ../../services.pm:1
-#, 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."
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
msgstr ""
-"La pordmapilo direktas RPC konektojn, kiujn protokoloj kiel NFS kaj NIS "
-"uzas.\n"
-"La pordmapservilo devas esti uzata ĉe komputiloj kiuj agas kiel serviloj\n"
-"por protokoloj kiuj uzas la RPC mekanismon."
-#: ../../standalone/harddrake2:1
+#: ../../interactive/stdio.pm_.c:105
#, fuzzy, c-format
-msgid "Detected hardware"
-msgstr "Vidu hardvaran informon"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr "MaÅ­ricio"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
-msgstr "Mianmara (burma)"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Enabling swap partition %s"
-msgstr "Ebligas swap-subdiskon %s"
+msgid "Your choice? (default `%s'%s) "
+msgstr "Via elekta¼o? (defaýlo estas %s) "
-#: ../../install_interactive.pm:1
+#: ../../interactive/stdio.pm_.c:123
#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-"Ne ekzistas FAT-a subdiskoj por regrandecigi\n"
-"aŭ uzi kiel retrokonektaj subdiskoj (aŭ ne estas sufiĉa da spaco)spaco)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr "Armena (malnova)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../interactive/stdio.pm_.c:126
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."
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
msgstr ""
-#: ../advertising/12-mdkexpert.pl:1
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Monaco"
-msgstr "Monako"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "Æe¶a (QWERTZ)"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Dispartigado malsukcesis: %s"
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "Germana"
-#: ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formatado de %s malsukcesis"
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Dvorak-a"
-#: ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "Canada (cable)"
-msgstr "Kanada (Kebeka)"
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "Hispana"
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Floppy creation completed"
-msgstr "Speco de konekto"
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "Finna"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Upgrade"
-msgstr "Äœisdatigu"
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "Franca"
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
-msgstr "Laborstacio"
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "Norvega"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Instalas pakaĵo %s\n"
-"%d%%"
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "Pola"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
-msgstr "Kirgizistano"
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "Rusa"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on USB"
-msgstr ""
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
+msgstr "Sveda"
-#: ../../../move/move.pm:1
-#, 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."
-msgstr ""
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "Unuiøinta Regna klavaro"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "With basic documentation"
-msgstr "Kun baza dokumentaĵo (rekomendita!)"
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "Usona klavaro"
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr "Anacron, perioda ordonvicigilo."
+#: ../../keyboard.pm_.c:167
+msgid "Albanian"
+msgstr "Albana"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Vi devas havi radikan subdiskon.\n"
-"Por ĉi tiu, kreu subdiskon (aŭ klaku estantan).\n"
-"Sekve elektu la agon \"Surmetingo\" kaj faru Äin '/'"
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
+msgstr "Armena (malnova)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "Okcidenta Saharo"
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
+msgstr "Armena (skribmaþina)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Prokura servilo devus esti http://..."
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
+msgstr "Armena (fonetika)"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr "Sud-Afriko"
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
+msgstr "Azerbajøana (latina)"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Eject tape after the backup"
-msgstr "Malbona rezerva dosiero"
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "Belga"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr ""
+#: ../../keyboard.pm_.c:178
+#, fuzzy
+msgid "Bengali"
+msgstr "ebligu"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Modify printer configuration"
-msgstr "Interreta Konfigurado"
+#: ../../keyboard.pm_.c:179
+#, fuzzy
+msgid "Bulgarian (phonetic)"
+msgstr "Armena (fonetika)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
-msgstr "Elektu subdiskon"
+#: ../../keyboard.pm_.c:180
+#, fuzzy
+msgid "Bulgarian (BDS)"
+msgstr "Bulgara"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Edit current rule"
-msgstr ""
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
+msgstr "Brazila (ABNT-2)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
-msgstr ""
+#: ../../keyboard.pm_.c:184
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estona"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Please test the mouse"
-msgstr "Bonvole, provu la muson"
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
+msgstr "Belarusa"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Do not update inode access times on this file system\n"
-"(e.g, for faster access on the news spool to speed up news servers)."
-msgstr ""
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "Svisa (germana aranøo)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr ""
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "Svisa (franca aranøo)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Sticky-bit"
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "Æe¶a (QWERTY)"
+
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr "Germana (neniom da mortaj klavoj)"
+
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Other Media"
-msgstr "Alia"
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "Dana"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "LoÄiteka MouseMan+"
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Dvorak-a (US)"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup system files"
-msgstr "Malbona rezerva dosiero"
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak-a (Norvega)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Sector"
-msgstr "Sektoro"
+#: ../../keyboard.pm_.c:196
+#, fuzzy
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak-a (US)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Qatar"
-msgstr "Kataro"
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "Estona"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Base dn"
-msgstr ""
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Kartvela (\"Rusa\" aranøo)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Vi ne povas elekti ĉi tiun pakaĵon ĉar ne estas sufiĉe da spaco por instali\n"
-"Äin."
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Kartvela (\"Latina\" aranøo)"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "generate auto-install floppy"
-msgstr "Kreu aÅ­toinstalan disketon"
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "Greka"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr "Diskuma modalo"
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr "Dosier-kundivido"
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "Purigu /tmp dum ĉiuj startadoj"
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "Hungara"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malawi"
-msgstr "Malavio"
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "Kroata"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "local config: false"
-msgstr "Lokaj dosieroj"
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
+msgstr "Israela"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "System settings"
-msgstr "subdiskigo"
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr "Israela (fonetika)"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Bonvole elektu la specon de via muso."
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr "Irana"
-#: ../../services.pm:1
-#, c-format
-msgid "running"
-msgstr "ruliÄante"
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr "Islanda"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "class of hardware device"
-msgstr ""
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "Itala"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
msgstr ""
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "UnuiÄinta Regno"
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
+msgstr "Japana 106 klavoj"
-#: ../../lang.pm:1
-#, c-format
-msgid "Indonesia"
-msgstr "Indonezio"
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
+msgstr "Korea klavaro"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "defaÅ­lta"
+#: ../../keyboard.pm_.c:218
+msgid "Latin American"
+msgstr "Latinamerika"
-#: ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "France [SECAM]"
-msgstr "Franca"
+#: ../../keyboard.pm_.c:219
+#, fuzzy
+msgid "Laotian"
+msgstr "Loko"
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "limigu"
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
+msgstr "Litova AZERTY-a (malnova)"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "must have"
-msgstr "havenda"
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
+msgstr "Litova AZERTY-a (nova)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Litova \"numero-vica\" QWERTY-a"
-#: ../../lang.pm:1
-#, c-format
-msgid "Senegal"
-msgstr "Senegalio"
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Litova \"fonetika\" QWERTY-a"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Command line"
-msgstr "Domajna nomo"
+#: ../../keyboard.pm_.c:225
+#, fuzzy
+msgid "Latvian"
+msgstr "Loko"
-#: ../advertising/08-store.pl:1
-#, 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:"
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "March"
-msgstr "Marto"
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
+msgstr "Macedona"
-#: ../../any.pm:1
-#, c-format
-msgid "access to administrative files"
-msgstr "aliro al administraj dosieroj"
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
+#: ../../keyboard.pm_.c:229
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Azerbajøana (cirila)"
+
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
msgstr ""
-#: ../../fs.pm:1
-#, 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.)"
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
-msgstr "Montserato"
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
+msgstr "Nederlanda"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr ""
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
+msgstr "Pola (qwerty aranøo)"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "InterÅanÄa"
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
+msgstr "Pola (qwertz aranøo)"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Custom settings"
-msgstr "subdiskigo"
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
+msgstr "Portugala"
-#: ../../../move/move.pm:1
-#, 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."
-msgstr ""
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr "Kanada (Kebeka)"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Other"
-msgstr "RestaÅ­ru de dosiero"
+#: ../../keyboard.pm_.c:239
+msgid "Romanian (qwertz)"
+msgstr "Rumana (qwertz-a)"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "TV-karto"
+#: ../../keyboard.pm_.c:240
+msgid "Romanian (qwerty)"
+msgstr "Rumana (qwerty-a)"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Vindozo 95/98/NT"
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "Rusa (Yawerty-a)"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Configure CUPS"
-msgstr "Konfiguru X"
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
+msgstr "Slovena"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "Slovaka (QWERTZ)"
+
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "Slovaka (QWERTY)"
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Serbian (cyrillic)"
+msgstr "Azerbajøana (cirila)"
+
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remove selected host/network"
-msgstr "Malinstalu printvicon"
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr "Taja klavaro"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix estas PoÅtTransportPerilo, kiu estas la programo kiu movas\n"
-"retpoÅton de unu komputilo al alia."
+#: ../../keyboard.pm_.c:254
+#, fuzzy
+msgid "Tajik keyboard"
+msgstr "Taja klavaro"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "Serba (cirila)"
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Turka (tradicia \"F\" modelo)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Ĉi tie vi povas elekti la klavon aŭ klavkombinon kiu\n"
-"ebligos al vi Åalti inter la diversaj klavaroj\n"
-"(ekz-e latinaj kaj ne-latinaj)"
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Turka (moderna \"Q\" modelo)"
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Network Hotplugging"
-msgstr "Reta Konfiguraĵo"
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr "Ukrajna"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr ""
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "Usona klavaro (internacia)"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore From CD"
-msgstr "RestaÅ­ru de disketo"
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vjetnama \"numero-vica\" QWERTY-a"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Nun kiam via Interreta konekto estas konfigurata,\n"
-"vi povas konfiguri vian komputilon por disdividi Äian Interretan konekton.\n"
-"Notu: vi bezonas dediĉan Retadaptilon por konfiguri Lokan Reton (LAN).\n"
-"\n"
-"Ĉu vi deziras konfiguri Disdividadon de Interreta Konekto?\n"
+#: ../../keyboard.pm_.c:263
+#, fuzzy
+msgid "Yugoslavian (latin)"
+msgstr "Jugoslava (latina/cirila)"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
msgstr ""
-"Bonvole elektu kiun retadaptilon vi deziras uzi por konekti al la interreto"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
-msgstr "AÅ­toroj: "
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latin American"
-msgstr "Latinamerika"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Japanese text printing mode"
-msgstr "Konfiguru retumon"
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Old device file"
-msgstr "Elektu dosieron"
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "Informo: "
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
+msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Butono '%s': %s"
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr ""
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Bonvole atendu"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
+msgstr ""
-#: ../../mouse.pm:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "None"
-msgstr "Finata"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Ĉu tio ĉi pravas?"
+msgid "Circular mounts %s\n"
+msgstr "Cirklaj surmetingoj %s\n"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Bonvole, elektu la pakaĵojn kiujn vi deziras instali."
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
+#: ../../modules.pm_.c:290
+msgid ""
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Delete selected printer"
-msgstr "Malinstalu printvicon"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
+msgstr ""
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "Informo"
+#: ../../modules/parameters.pm_.c:18
+#, fuzzy
+msgid "modinfo is not available"
+msgstr "Neniu disketilo havebla"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "Instalu"
+#: ../../modules/parameters.pm_.c:50
+#, fuzzy
+msgid "a number"
+msgstr "Telefonnumero"
-#: ../../help.pm:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
+msgid "%d comma separated numbers"
msgstr ""
-#: ../../steps.pm:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "Exit install"
-msgstr "Eliru instalprogramon"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
+msgid "%d comma separated strings"
msgstr ""
-#: ../../standalone/drakgw:1
-#, 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)."
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Malproksima CUPS-a servilo"
+#: ../../modules/parameters.pm_.c:54
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formatu subdiskojn"
-#: ../../mouse.pm:1
-#, c-format
+#: ../../mouse.pm_.c:25
msgid "Sun - Mouse"
msgstr "Sun - Muso"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Ekzitas nur unu konfigurita retadaptilo sur via sistemo:\n"
-"\n"
-"%s\n"
-"\n"
-"Ĉu vi deziras konfiguri vian Lokan Reton (LAN) kun ĉi tiu adaptilo?"
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Loøiteka MouseMan+"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
-msgstr ""
+#: ../../mouse.pm_.c:33
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Nespecifa PS2 RadoMuso"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Minimal install"
-msgstr "Minimuma instalado"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "Etiopio"
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
-msgstr ""
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
-msgstr ""
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr "devanagara"
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Mikrosofta IntelliMouse"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
+msgstr "1 butona"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Tuta grandeco: %d / %d MB"
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "Nespecifa 2 Butona Muso"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "disabled"
-msgstr "malebligita"
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "Rado"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Search for new scanners"
-msgstr "Loka printilo"
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "seria"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Disabling servers..."
-msgstr "Detektas aparatojn..."
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "Nespecifa 3 Butona Muso"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Instalado de %s malsukcesis. La sekvanta eraro okazis:"
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Mikrosofta IntelliMouse"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr ""
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Loøiteka MouseMan"
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Reta Printilo (TCP/ingo)"
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Loøiteka CC serio"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup User files..."
-msgstr "Malbona rezerva dosiero"
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Loøiteka MouseMan+/FirstMouse+"
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "Instalu sistemon"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "MM Serio"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Unu DNS-a Servilo (nedeviga)"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Loøiteka Muso (seria, malnova C7 speco)"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
-"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
-"symlink /etc/security/msec/server to point to\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
-"add a service if it is present in the file during the installation of\n"
-"packages."
-msgstr ""
+#: ../../mouse.pm_.c:68
+#, fuzzy
+msgid "busmouse"
+msgstr "Neniu Muso"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "Rusa (fonetika)"
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "2 butonoj"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "dhcpd Config..."
-msgstr "Mi konfiguras..."
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "3 butonoj"
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "LILO/grub Instalado"
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "neniu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "Israela"
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "Neniu Muso"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Presilo \"%s\" en servilo \"%s\""
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
+msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
-msgstr ""
+#: ../../mouse.pm_.c:491
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "Bonvole, provu la muson"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Truly minimal install"
-msgstr "Minimuma instalado"
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr "MOVU VIAN RADON!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "Danlando"
+#: ../../my_gtk.pm_.c:65
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "Movas subdisko..."
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
+msgstr "Finu"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "(This) DHCP Server IP"
-msgstr "IP de SMB servilo"
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
+msgstr "Sekvanta ->"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Test of the configuration"
-msgstr "Provu konfiguraĵon"
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "Æu tio æi pravas?"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Installing %s ..."
-msgstr "Instalanta pakaĵo %s"
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "Informo"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
+msgstr "Etendu Arbon"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr ""
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
+msgstr "Maletendu Arbon"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr "Siera-Leono"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr "Þanøu inter ebena kaj ordigita je grupoj"
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
-msgstr "Bocvano"
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "uzu pppoe"
-#: ../../lang.pm:1
-#, c-format
-msgid "Andorra"
-msgstr "Andoro"
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
+msgstr "uzu pptp"
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "(default value: %s)"
-msgstr " (DefaÅ­lta)"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
+msgstr "uzu dhcp"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (Letter)"
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
+msgstr "Konektu al la Interreto"
+
+#: ../../network/adsl.pm_.c:30
+#, fuzzy
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"
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
+"La plej ofte uzata maniero por konekti kun ADSL estas dhcp + pppoe.\n"
+"Tamen, ekzistas konektojn kiuj nur uzas dhcp.\n"
+"Se vi ne scias, elektu 'uzu pppoe'"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Choose an X server"
-msgstr "Elektu X-servilon"
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
+#: ../../network/adsl.pm_.c:166
+msgid ""
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "InterÅanÄa subdiska grandeco en MB: "
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "No changes to backup!"
-msgstr "Malbona rezerva dosiero"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Servilo"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "Formatita\n"
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Domajna nomo"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Type of install"
-msgstr "Instaltipo"
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Datumbazoj"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Presilo \"%s\" sur SMB/vindoza servilo \"%s\""
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "LDAP Servilo"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
-msgstr ""
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "neniu retkarto trovita"
-#: ../../services.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:129
msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"La ruser protokolo permesas al uzuloj sur reto identigi kiujn estas\n"
-"konektataj ĉe aliaj respondantaj komputiloj."
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Post-instala konfigurado"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "Barbado"
-
-#: ../advertising/02-community.pl:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:135
msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
+"drakfirewall configurator\n"
+"\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please select data to backup..."
-msgstr "Bonvole, elektu lingvon por uzi."
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:153
msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-#: ../../standalone/net_monitor:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
-msgid "received"
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
-msgstr "/Dosiero/_Nova"
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "The DNS Server IP"
-msgstr "IP de SMB servilo"
+#: ../../network/drakfirewall.pm_.c:169
+#, fuzzy
+msgid "Other ports"
+msgstr "Provu pordojn"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range End:"
+#: ../../network/ethernet.pm_.c:37
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
msgstr ""
+"Kiun dhcp-an klienton vi deziras uzi?\n"
+"La defaýlto estas dhcp-client"
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
-msgstr "Alta"
+#: ../../network/ethernet.pm_.c:88
+#, fuzzy
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+"Mi ne detektas eterretan retadaptilom sur via sistemo. Bonvole lanæu la\n"
+"aparatokonfigurilon."
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Add a new printer to the system"
-msgstr "Aldonu uzulon al la sistemo"
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
+msgstr "Elektu la retan interfacon"
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
+#: ../../network/ethernet.pm_.c:93
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
+"Bonvole elektu kiun retadaptilon vi deziras uzi por konekti al la interreto"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
-msgstr ""
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "neniu retkarto trovita"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "Konfiguras reto"
+
+#: ../../network/ethernet.pm_.c:201
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
+"Bonvole enigu vian poþtejon se vi scias øin.\n"
+"Iuj DHCP-aj serviloj bezonas poþtejon por funkcii.\n"
+"Via poþtejo devus esti plene specifita poþtejo,\n"
+"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Local Printers"
-msgstr "Loka printilo"
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "Poþtejo"
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Installation image directory"
-msgstr "LAN Konfiguraĵo"
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+#, fuzzy
+msgid "Network Configuration Wizard"
+msgstr "ISDN-a Konfigura¼on"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "NIS Servilo"
+#: ../../network/isdn.pm_.c:22
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "Interna ISDN-karto"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Port: %s"
-msgstr "Pordo"
+#: ../../network/isdn.pm_.c:22
+msgid "Internal ISDN card"
+msgstr "Interna ISDN-karto"
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "Hispanujo"
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
+msgstr "Kia estas via ISDN-a konekta¼o?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
+#: ../../network/isdn.pm_.c:45
+msgid ""
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "Ĉi tiu salutnomo estas jam aldonita"
-
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
-msgstr "Elektu dosieron"
+#: ../../network/isdn.pm_.c:54
+#, fuzzy
+msgid "New configuration (isdn-light)"
+msgstr "Konfigura¼o de barilo detektata!"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr "Apliku"
+#: ../../network/isdn.pm_.c:54
+#, fuzzy
+msgid "Old configuration (isdn4net)"
+msgstr "Konfigura¼o de barilo detektata!"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Auto-detect available ports"
-msgstr "Malproksima printilo"
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "ISDN-a Konfigura¼on"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr "San-Marino"
+#: ../../network/isdn.pm_.c:166
+msgid ""
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
+msgstr ""
+"Elektu vian interretprovizanton.\n"
+" Se øin ne estas en la listo, elektu Nelistiøitan"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
+#: ../../network/isdn.pm_.c:179
+#, fuzzy
+msgid "Europe protocol"
+msgstr "Protokolo"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Belgium"
-msgstr "Belgio"
+#: ../../network/isdn.pm_.c:179
+#, fuzzy
+msgid "Europe protocol (EDSS1)"
+msgstr "Eýropo (EDSS1)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
-msgstr "Kuvajto"
+#: ../../network/isdn.pm_.c:181
+#, fuzzy
+msgid "Protocol for the rest of the world"
+msgstr "La cetero de la mondo"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "Elektu la fenestro-administrilon por lanĉi:"
+#: ../../network/isdn.pm_.c:181
+#, fuzzy
+msgid ""
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
+msgstr ""
+"La cetero de la mondo \n"
+" neniom da D-Kanelo (lukontraktataj lineoj)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
-msgstr "Decembro"
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
+msgstr "Kiun protokolon vi deziras uzi?"
-#: ../../standalone/harddrake2:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid "sub generation of the cpu"
+msgid "Found \"%s\" interface do you want to use it ?"
msgstr ""
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "First Time Wizard"
-msgstr "Bonvenon al Unuafoja Sorĉilo"
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
+msgstr "Kiun specon de karto vi havas?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Taiwan"
-msgstr "Tajvano"
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
+msgstr "Mi ne scias"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "Pakistano"
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "bonvole atendu, mi vortanalizas la dosieron: %s"
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:210
msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+"\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
-"Eraro okazis, sed mi ne scias kiel trakti Äin bone.\n"
-"DaÅ­ri je via propra risko."
-
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Importance: "
-msgstr "Graveco: %s\n"
+"\n"
+"Se via havas ISA-an karton, la valoro sur la sekvanta ekrano devus esti "
+"øusta.\n"
+"\n"
+"Se vi havas PCMCIA-an karton, vi bezonas scii la IRQ-o kaj I/O (Eneligo)\n"
+"por via karto.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "Æesigu"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Permissions"
-msgstr "Versio: %s\n"
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
+msgstr "Æu mi devus daýri?"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Nomo de interretprovizanto (ekz-e provizanto.net)"
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
+msgstr "Kiu estas via ISDN-a karto?"
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:239
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'."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
-"Via sistemo havas malmulte da risurcoj. Eble vi havos problemojn pri\n"
-"instali Linuks-Mandrejkon. Se tio okazos, vi povos anstataÅ­ provi tekstan\n"
-"instaladon. Por ĉi tio, premu `F1' kiam vi startas de KDROM, kaj sekve\n"
-"tajpu `text'."
+"Mi detektis ISDN-an PCI-an Karton, sed mi ne scias la specon. Bonvole "
+"elektu\n"
+"unu el la PCI-aj kartojn sur la sekvanta ekrano."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "Uzu la Vindoza subdiskon por retrokonektado"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+"Neniu ISDN-a PCI-a karto trovata. Bonvole elektu unu el la PCI-aj kartojn "
+"sur\n"
+"la sekvanta ekrano."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
-msgstr "Armena (skribmaÅina)"
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection type: "
-msgstr "Speco de konekto"
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "Telefon-konektaj opcioj"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Graphical interface"
-msgstr "Grafika interfaco"
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr "Nomo de konekto"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "Ĉado"
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
+msgstr "Telefonnumero"
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "Hindio"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "Salutnomo"
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s kun 3D aparata akcelado"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr "Slovakujo"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP (Pasvorta Aýtentikigada Protokolo)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "Singapuro"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "Programeto-bazata"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "KamboÄo"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "Finaparato-bazata"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Ekrana horizontala sinkronrapido (horizontal sync rate): %s\n"
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "Domajna nomo"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr ""
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+msgid "First DNS Server (optional)"
+msgstr "Unu DNS-a Servilo (nedeviga)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
-msgstr ""
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+msgid "Second DNS Server (optional)"
+msgstr "Du DNS-a Servilo (nedeviga)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/modem.pm_.c:95
msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../network/modem.pm_.c:97
#, 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?"
+"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Presilo %s\n"
-"Kion vi deziras modifi pri tiu presilo?"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Do nothing"
+msgstr "sed ne konformanta(j)"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Add host"
-msgstr "Aldonu uzanto"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Install rpm"
+msgstr "Instalu"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Title"
+msgstr "Tabelo"
+
+#: ../../network/netconnect.pm_.c:29
msgid ""
-"If you really think that you know which driver is the right one for your "
-"card\n"
-"you can pick one in the above list.\n"
"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+"You can disconnect or reconfigure your connection."
msgstr ""
-"Se vi vere pensas ke vi scias kiu pelilo ests la Äusta por via karto,\n"
-"vi povas elekti Äin el la supra listo.\n"
-"\n"
-"La nuna pelilo por via \"%s\"-sonkarto estas \"%s\"."
-#: ../../any.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+#, fuzzy
msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-"Ĉu vi Åatus permesi al uzuloj kundividi iujn el siaj dosierujoj?\n"
-"Permesi tion ebligos al uzuloj simple klaki sur \"Share\" respektive "
-"\"Kundividu\"\n"
-"en Konkeranto kaj nautilus.\n"
-"\n"
-"\"Custum\" ebligas per-uzulan.\n"
+"You can reconfigure your connection."
+msgstr "Konfiguru interretan konekta¼on"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:29
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "Kiel vi deziras konekti al la Interreto?"
+
+#: ../../network/netconnect.pm_.c:32
+#, fuzzy
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Bonvole elektu Åargu aÅ­ konservu pakaĵ-elekton sur disketo.\n"
-"La formato estas la sama kiel disketoj generitaj per auto_install."
+"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "Konektu al la Interreto / Konfiguru lokan Reton"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "No CDROM support"
-msgstr ""
+#: ../../network/netconnect.pm_.c:32
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "Kiel vi deziras konekti al la Interreto?"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "China (broadcast)"
-msgstr ""
+#: ../../network/netconnect.pm_.c:36
+msgid "Connect"
+msgstr "Konektu"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use quota for backup files."
-msgstr "Malbona rezerva dosiero"
+#: ../../network/netconnect.pm_.c:37
+msgid "Disconnect"
+msgstr "Malkonektu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Mi konfiguras printilon \"%s\"..."
+#: ../../network/netconnect.pm_.c:38
+#, fuzzy
+msgid "Configure the connection"
+msgstr "Konfiguru retumon"
-#: ../../fs.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
+msgstr "Interreta konekta¼o kaj konfiguro"
+
+#: ../../network/netconnect.pm_.c:94
+#, fuzzy, c-format
+msgid "We are now going to configure the %s connection."
+msgstr "Konfiguru interretan konekta¼on"
+
+#: ../../network/netconnect.pm_.c:103
+#, fuzzy, c-format
msgid ""
-"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
-"containing binaries for architectures other than its own."
-msgstr ""
+"\n"
+"\n"
+"\n"
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press OK to continue."
+msgstr "Konfiguru interretan konekta¼on"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection"
-msgstr "Interreta konekto"
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr "Reta Konfigura¼o"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:133
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
+"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 ""
-"Åœargado de modulo %s malsukcesis.\n"
-"Ĉu vi deziras trovi denove kun aliaj parametroj?"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
+#: ../../network/netconnect.pm_.c:157
+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
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnio-Hercegovino"
+#: ../../network/netconnect.pm_.c:163
+#, fuzzy
+msgid "Choose the profile to configure"
+msgstr "Elektu la defaýltan uzulon:"
-#: ../../fsedit.pm:1
-#, c-format
-msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
msgstr ""
-"Vi bezonas veran dosiersistemon (ext2, reiserfs, xfs aÅ­ jfs) por tiu "
-"surmetingo\n"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Bonvole, provu la muson"
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
+msgstr "Spertuloreøimo"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "Nederlando"
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
+msgstr "Detektas aparatojn..."
+
+#: ../../network/netconnect.pm_.c:214
+#, fuzzy
+msgid "Normal modem connection"
+msgstr "Konfiguru interretan konekta¼on"
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm_.c:214
#, fuzzy, c-format
-msgid "Sending files by FTP"
-msgstr "Konservu en dosiero"
+msgid "detected on port %s"
+msgstr "Duobla surmetingo %s"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Interna ISDN-karto"
+#: ../../network/netconnect.pm_.c:215
+#, fuzzy
+msgid "Winmodem connection"
+msgstr "Konfiguru interretan konekta¼on"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
-msgstr ""
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "detected"
+msgstr "Malproksima printilo"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Title"
-msgstr "Titolo"
+#: ../../network/netconnect.pm_.c:216
+#, fuzzy
+msgid "ISDN connection"
+msgstr "Konfiguru interretan konekta¼on"
-#: ../../standalone/drakfont:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid "Install & convert Fonts"
+msgid "detected %s"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
-msgstr "AVERTO"
+#: ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "ADSL connection"
+msgstr "LAN Konfigura¼o"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
-msgstr "Instalas start-Åargilon"
+#: ../../network/netconnect.pm_.c:218
+#, fuzzy
+msgid "Cable connection"
+msgstr "Konfiguru interretan konekta¼on"
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "replay"
-msgstr "Reludu"
+#: ../../network/netconnect.pm_.c:218
+#, fuzzy
+msgid "cable connection detected"
+msgstr "Konfiguru interretan konekta¼on"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
+#: ../../network/netconnect.pm_.c:219
+msgid "LAN connection"
+msgstr "LAN Konfigura¼o"
+
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/netconnect.pm_.c:222
+#, fuzzy
+msgid "Choose the connection you want to configure"
+msgstr "Elektu la ilon kiun vi deziras instali"
+
+#: ../../network/netconnect.pm_.c:246
msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr "Insuloj Virgaj (Usonaj)"
+#: ../../network/netconnect.pm_.c:247
+#, fuzzy
+msgid "Internet connection"
+msgstr "Disdividado de Interreta Konekto"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "Malbona rezerva dosiero"
+#: ../../network/netconnect.pm_.c:253
+msgid "Do you want to start the connection at boot?"
+msgstr "Æu vi deziras starti vian konekta¼on je startado de la sistemo?"
+
+#: ../../network/netconnect.pm_.c:267
+msgid "Network configuration"
+msgstr "Reta Konfigura¼o"
-#: ../../standalone/drakgw:1
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
+msgstr ""
+
+#: ../../network/netconnect.pm_.c:272
#, fuzzy, 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 ""
-"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
+"%s"
+msgstr "Æu vi deziras provi la konfigura¼on?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Pipe into command"
+#: ../../network/netconnect.pm_.c:282
+msgid ""
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:286
msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
-"Iuj aparatoj sur via komputilo bezonas \"proprietajn\" pelilojn por "
-"funkcii.\n"
-"Vi povas trovi iun informon pri ili ĉe: %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "Haitio"
-
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "Detektas aparatojn..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/netconnect.pm_.c:287
msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
+"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 ""
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/network.pm_.c:278
+#, fuzzy
msgid ""
-"Description of the fields:\n"
-"\n"
+"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 ""
+"AVERTO: Æi tiu aparato estis antaýe konfigurata por konekti al la "
+"Interreto.\n"
+"Simple klaki JES por teni la konfiguron de æi tiu aparato.\n"
+"Se vi modifos la subajn kampojn, vi þanøos æi tiun konfiguron."
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Basic options"
-msgstr "Opcioj"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
+#: ../../network/network.pm_.c:283
+msgid ""
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
msgstr ""
+"Bonvole enigu la IP-an konfigurâjon por æi tiu komputilo.\n"
+"Æiu ero devus esti enigata kiel IP-adreson en punktita-decimala notacio\n"
+"(ekzemple, 1.2.3.4)."
-#: ../../security/l10n.pm:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr ""
+msgid "Configuring network device %s"
+msgstr "Konfiguras retan aparaton %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/network.pm_.c:294
#, fuzzy, c-format
-msgid "Refreshing printer data..."
-msgstr "Legas datumbason de CUPS peliloj..."
+msgid " (driver %s)"
+msgstr "XFree86 pelilo: %s\n"
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr ""
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "IP-adreso"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "Zorgu: ĉi tiu operacio estas danÄera."
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr "Retmasko"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "EnÅovu disketon kun pakaĵ-selekto en drajvo"
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server: "
-msgstr "Servilo:"
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "Aýtomata IP"
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Security Alerts:"
-msgstr "Elektas sekurnivelon"
+#: ../../network/network.pm_.c:299
+#, fuzzy
+msgid "Start at boot"
+msgstr "Kreu praþargdisketon"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
-msgstr "Svedio"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
+#: ../../network/network.pm_.c:326
+msgid ""
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "Pollando"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Other ports"
-msgstr "Aliaj pordoj"
+#: ../../network/network.pm_.c:330
+msgid ""
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
+msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
+#: ../../network/network.pm_.c:350
+msgid ""
+"Please enter your host name.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''.\n"
+"You may also enter the IP address of the gateway if you have one"
msgstr ""
+"Bonvole enigu vian poþtejon.\n"
+"Via poþtejo devus esti plene specifita poþtejo,\n"
+"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''.\n"
+"Vi ankaý povas enigi la IP-adreson de la prokura kluzo se via havas unu."
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid " - detected"
-msgstr "detektita"
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "DNA servilo"
-#: ../../harddrake/data.pm:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "SMBus controllers"
-msgstr "SMBus-kontroliloj"
+msgid "Gateway (e.g. %s)"
+msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Speco de konekto"
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "Prokura kluzaparato"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
+#: ../../network/network.pm_.c:363
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Croatian"
-msgstr "Kroata"
+#: ../../network/network.pm_.c:367
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Use existing partition"
-msgstr "Uzu ekzistantajn subdiskojn"
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
+msgstr "Konfigurado de prokuraj serviloj"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Ne povis kontakti spegulon %s"
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "HTTP prokura servilo"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Helpo/_Pri..."
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "FTP prokura servilo"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
+msgstr "Prokura servilo devus esti http://..."
+
+#: ../../network/network.pm_.c:388
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Prokura servilo devus esti http://..."
+
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
+msgstr "Konfigura¼o de barilo detektata!"
+
+#: ../../network/shorewall.pm_.c:27
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?"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
+"Averto. Ekzistanta konfigura¼o de barilo detektata. Vi eble devas permane\n"
+"fiksi øin poste de la instalado."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "CUPS printer configuration"
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
msgstr "Interreta Konfigurado"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr ""
+#: ../../network/tools.pm_.c:58
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Æu vi deziras provi konekti al la interreto nun?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "Konfiguru interretan konekta¼on"
+
+#: ../../network/tools.pm_.c:70
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "Kiel vi deziras konekti al la Interreto?"
+
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
+#: ../../network/tools.pm_.c:72
+#, fuzzy
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "Konektu al la Interreto / Konfiguru lokan Reton"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Domain Name:"
-msgstr "Domajna nomo"
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
+msgstr "Konfigurado de Konekto"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Root umask"
-msgstr "Root-pasvorto"
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
+msgstr "Bonvole plenigu aý marku la suban kampon"
-#: ../../any.pm:1
-#, c-format
-msgid "On Floppy"
-msgstr "Sur disketo"
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr "IRQ de Karto"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reboot by the console user"
-msgstr ""
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "Memoro de Karto (DMA)"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore"
-msgstr "RestaÅ­ru de dosiero"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "I/O (Eneligo) de Karto"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Server:"
-msgstr "Servilo:"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "I/O 0 (Eneligo 0) de Karto"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
-msgstr ""
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "I/O 1 (Eneligo 1) de Karto"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Serĉas haveblajn pakaĵojn"
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
+msgstr "Via persona telefonnumero"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Elektas sekurnivelon"
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
+msgstr "Nomo de interretprovizanto (ekz-e provizanto.net)"
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
-msgstr ""
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
+msgstr "Telefonnumero de interretprovizanto"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "Sava subdiskotabelo"
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+msgid "Provider dns 1 (optional)"
+msgstr "Provizanto DNS 1 (nedeviga)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "Kipro"
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+msgid "Provider dns 2 (optional)"
+msgstr "Provizanto DNS 2 (nedeviga)"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connection complete."
-msgstr "Speco de konekto"
+#: ../../network/tools.pm_.c:109
+#, fuzzy
+msgid "Choose your country"
+msgstr "Elektu vian klavaron"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "Forigu de RAID (Redundanca Aro de Malmultekostaj Diskoj)"
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
+msgstr "Diskuma modalo"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
-"Ĉi tiu pasvorto ests tro simpla (Äi devas esti almenaÅ­ %d signoj longa)"
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+#, fuzzy
+msgid "Connection speed"
+msgstr "Speco de konekto"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Configuration Wizards"
-msgstr "ISDN-a Konfiguraĵon"
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+#, fuzzy
+msgid "Connection timeout (in sec)"
+msgstr "Speco de konekto"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN-konekto"
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
+msgstr "Konta Salutnomo (uzula nomo)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr ""
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
+msgstr "Konta Pasvorto"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr ""
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
+msgstr "muntado malsukcesis: "
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
+msgstr "Æi tiu platformo ne subtenas etendatajn subdiskojn"
+
+#: ../../partition_table.pm_.c:685
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"
-"!!"
+"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 ""
-"Tiu ĉi dialogo uzeblas por elekti kiujn servojn vi deziras startigi kiam vi "
-"startigas\n"
-"vian komputilon.\n"
-"DrakX listigos ĉiujn servojn atingeblajn en la nuna instalaĵo.\n"
-"Kontrolu ĉiujn zorge kaj malelektu tiujn kiuj ne estas ĉiam bezonataj\n"
-"dum la starto.\n"
-"Kiam via muso estas supre de ero, malgranda balono\n"
-"ekaperas por helpi vin. Äœi priskribas la rolon de la servo.\n"
-"Tamen, se vi ne certas ĉu iu servo utilas aŭ ne, prefere lasu la defaŭltan "
-"sintenon.\n"
-"\n"
-"!!Zorgegu en ĉi tiu paÅo se vi intencas uzi vian komputilon kiel servilo:\n"
-"ne startu servojn kiujn vi ne bezonas. Memoru ke certaj servoj povas esti\n"
-"danÄeraj se ili estas aktivigitaj en servilo. Äœenerale,\n"
-"elektu nur tiujn servojn kiujn vi vere bezonas.\n"
-"!!"
+"Vi havas truon en via subdisktabelo sed mi ne povas uzi øin.\n"
+"La sola solvo estas movi viajn æefajn subdiskojn por situigi la truon\n"
+"apud la etendataj subdiskoj."
-#: ../../lang.pm:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "Niue"
-msgstr "Niue"
+msgid "Restoring from file %s failed: %s"
+msgstr "Restaýris el dosiero %s malsukcesis: %s"
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "Ellasu"
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
+msgstr "Malbona rezerva dosiero"
-#: ../../services.pm:1
+#: ../../partition_table.pm_.c:796
#, c-format
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Åœaltas/MalÅaltas ĉiujn retajn interfacojn konfiguratajn por lanĉi\n"
-"dum sistemstartado."
+msgid "Error writing to file %s"
+msgstr "Eraro skribante al dosiero %s"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../partition_table/raw.pm_.c:192
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)"
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
msgstr ""
-#: ../../pkgs.pm:1
-#, c-format
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr "havenda"
+
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "grava(j)"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "Mastrumilo por Mandrake Linux Uzuloj"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
-msgstr ""
-
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"DrakX unue detektos iujn IDE-aparatojn en via komputilo. Äœi ankaÅ­\n"
-"serĉas unu aŭ plurajn PCI-SCSI-kartojn en via sistemo. Se SCSI-karto\n"
-"estas trovita, DrakX aÅ­tomate instalos la taÅ­gan pelilon.\n"
-"\n"
-"Ĉar detektado de aparataro ne estas absolute senerara, DrakX povas\n"
-"malsukcesi detektante viajn fiksdiskojn. Se tiel, vi devos mem mane entajpi\n"
-"vian aparataron.\n"
-"\n"
-"Se vi devis mane entajpi vian PCI-SCSI-adaptilon, DrakX demandos ĉu vi\n"
-"deziras konfiguri opciojn por Äi. Prefere permesu al DrakX provi la "
-"aparatojn\n"
-"por la kartospecifaj opcioj kiuj estas bezonataj por inici la adaptilon. "
-"Plej ofte,\n"
-"DrakX trairos tiun paÅon sen ajna problemo.\n"
-"\n"
-"Se DrakX ne kapablas provi kiujn parametrojn la opcioj aÅ­tomate devas doni "
-"al la\n"
-"aparatoj, vi devos mane konfiguri la pelilon."
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr "tre agrabla(j)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr "Arubo"
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr "agrabla(j)"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Users"
-msgstr "Salutnomo"
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr "elbe"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Preparas startÅargilon"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
+msgstr ""
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
-msgstr "La pasvortoj ne egalas"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Examples for correct IPs:\n"
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please choose the media for backup."
-msgstr "Bonvole, elektu lingvon por uzi."
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Frequency (MHz)"
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of the processor"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+msgid "Unknown Model"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Aparata horloÄo estas Äustigita laÅ­ GMT"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "Loka printilo"
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "Ĉu vi deziras provi la konfiguraĵon?"
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
+msgstr "Malproksima printilo"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Give a file name"
-msgstr "Donu dosiernomon"
+#: ../../printer/main.pm_.c:28
+#, fuzzy
+msgid "Printer on remote CUPS server"
+msgstr "Malproksima CUPS-a servilo"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+#, fuzzy
+msgid "Printer on remote lpd server"
+msgstr "Malproksimaj lpd servilo"
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "ÅœanÄu KD-ROM-on"
+#: ../../printer/main.pm_.c:30
+msgid "Network printer (TCP/Socket)"
+msgstr "Reta Printilo (TCP/ingo)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "Paragvajo"
+#: ../../printer/main.pm_.c:31
+#, fuzzy
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "SMB/Vindozo 95/98/NT"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "Kiun konfiguron de XFree vi deziras havi?"
+#: ../../printer/main.pm_.c:32
+#, fuzzy
+msgid "Printer on NetWare server"
+msgstr "Printservilo"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+#, fuzzy
+msgid "Enter a printer device URI"
+msgstr "Printila Aparato URI"
+
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, 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:"
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr "Ne ekzistas konata pelilo por via sonkarto (%s)"
+#: ../../printer/main.pm_.c:317
+#, fuzzy
+msgid "Local Printers"
+msgstr "Loka printilo"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "force"
-msgstr "devigu"
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+#, fuzzy
+msgid "Remote Printers"
+msgstr "Malproksima printilo"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid "Exit"
-msgstr "Eliro"
+msgid " on parallel port \\/*%s"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "Estona"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
msgstr ""
-"Apache estas Tut-Tera Teksaĵa servilo. Ĝi liveras HTML-ajn dosierojn\n"
-"kaj CGI (komunakluza interfaco)."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
msgstr ""
-#: ../../standalone/draksec:1
+#: ../../printer/main.pm_.c:344
+#, fuzzy, c-format
+msgid ", printing to %s"
+msgstr "Eraro skribante al dosiero %s"
+
+#: ../../printer/main.pm_.c:346
#, c-format
-msgid "ALL"
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../printer/main.pm_.c:348
#, c-format
-msgid "Add/Del Clients"
+msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid "Choose the network interface"
-msgstr "Elektu la retan interfacon"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr ""
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid "Unknown Model"
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../harddrake/data.pm:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid "CD/DVD burners"
-msgstr "KD/DVD-skribiloj"
+msgid ", using command %s"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
msgstr ""
-"Subdisko startata defaÅ­lte\n"
-" (por MS-DOS starto, ne por \"lilo\")\n"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
+#: ../../printer/main.pm_.c:647
+#, fuzzy, c-format
+msgid "(on %s)"
+msgstr "(modulo %s)"
+
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
msgstr ""
-#: ../../standalone/draksplash:1
+#: ../../printer/main.pm_.c:674
#, fuzzy, c-format
-msgid "choose image"
-msgstr "Elektu agon"
+msgid "On CUPS server \"%s\""
+msgstr "IP de SMB servilo"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Konfiguraĵo de barilo detektata!"
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
+msgstr " (Defaýlta)"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "Nomo de konekto"
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
+msgstr "Elektu Printilan Konekton"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
+msgstr "Kiel estas la printilo konektata?"
+
+#: ../../printer/printerdrake.pm_.c:30
+#, fuzzy
msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+"\n"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
msgstr ""
+"Kun malproksima CUPS servilo, vi ne devas konfiguri iun printilon\n"
+"æi tie; printiloj estos aýtomate dektektataj. Se vi havas dubojn,\n"
+"elektu \"Malproksima CUPS servilo\"."
-#: ../../fsedit.pm:1
-#, c-format
-msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Updating package selection"
-msgstr "Ĝisdatigo de pakaĵ-elekto"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+#, fuzzy
+msgid "CUPS configuration"
+msgstr "LAN Konfigura¼o"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "Kie vi deziras kroĉi retrokonektan dosieron %s?"
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+#, fuzzy
+msgid "Specify CUPS server"
+msgstr "Malproksima CUPS-a servilo"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:83
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
+#: ../../printer/printerdrake.pm_.c:84
+msgid ""
+"\n"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "the number of buttons the mouse has"
-msgstr "2 butonoj"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
-msgstr "Reludu"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup other files"
-msgstr "Malbona rezerva dosiero"
-
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "Neniu disketilo havebla"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:88
+#, fuzzy
+msgid "The IP address should look like 192.168.1.20"
+msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:99
+#, fuzzy
+msgid "CUPS server IP"
+msgstr "IP de SMB servilo"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
+msgstr "Pordo"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "type: thin"
-msgstr "Speco: "
+#: ../../printer/printerdrake.pm_.c:102
+#, fuzzy
+msgid "Automatic CUPS configuration"
+msgstr "Post-instala konfigurado"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "Litova AZERTY-a (nova)"
+#: ../../printer/printerdrake.pm_.c:159
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+#, fuzzy
+msgid "Printerdrake"
+msgstr "Printilo"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:167
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"
+"There are no printers found which are directly connected to your machine"
msgstr ""
-"Vi elektis softvaran RAID-an subdiskon por la radika dosiersistemo (/).\n"
-"Neniu startÅargilo povas trakti tion sen /boot subdisko.\n"
-"Bonvole zorgu aldoni /boot subdiskon."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "Alia Mastruma Sistemo (MacOS...)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Por aktivigi la muson,"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "Startado de la reto"
-
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Ekranfotoj haveblos post instalado en %s"
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:179
+#, fuzzy
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"
+"The following printers\n"
"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+msgstr "La sekvaj paka¼oj estos malinstalataj"
+
+#: ../../printer/printerdrake.pm_.c:180
+#, fuzzy
+msgid ""
+"The following printer\n"
"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
+msgstr "La sekvaj paka¼oj estos malinstalataj"
+
+#: ../../printer/printerdrake.pm_.c:182
+msgid ""
"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
+"and one unknown printer are "
msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:184
#, c-format
-msgid "Tanzania"
+msgid ""
+"\n"
+"and %d unknown printers are "
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "Kalkulas FAT dosiersistemajn limojn"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:187
msgid ""
"\n"
-"Backup Sources: \n"
+"are "
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "custom"
-msgstr "Akomodata"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Content of the file"
-msgstr "Enhavoj de la dosiero"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
-msgstr "AÅ­tentikiga LDAP"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"is "
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
-msgstr "Lasu min kapti ajnan pelilon"
+#: ../../printer/printerdrake.pm_.c:189
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Via komputilo ne havas retadaptilon!"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
+#: ../../printer/printerdrake.pm_.c:192
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Palestine"
-msgstr "Palestino"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID (Redundanca Aro de Malmultekostaj Diskoj) md%s\n"
-
-#: ../../modules/parameters.pm:1
+#: ../../printer/printerdrake.pm_.c:194
#, c-format
-msgid "%d comma separated strings"
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " isdn"
+#: ../../printer/printerdrake.pm_.c:200
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
+
+#: ../../printer/printerdrake.pm_.c:214
+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
-#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "Jen la kompleta listo de haveblaj klavaroj"
+#: ../../printer/printerdrake.pm_.c:215
+#, fuzzy
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Æu vi deziras provi printado?"
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Theme name"
-msgstr "Opuza nomo"
+#: ../../printer/printerdrake.pm_.c:217
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Æu vi deziras starti vian konekta¼on je startado de la sistemo?"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/_Helpo"
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm_.c:219
#, 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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "Kuk-Insularo"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+#, fuzzy
+msgid "Add a new printer"
+msgstr "Neniu printilo"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:259
msgid ""
-"Here you can choose whether the scanners connected to this machine should be "
-"accessable by remote machines and by which remote machines."
+"\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/draksplash:1
-#, c-format
-msgid "the width of the progress bar"
+#: ../../printer/printerdrake.pm_.c:272
+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"
+"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) and you 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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formatas subdiskon %s"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Hostname required"
-msgstr "PoÅtejo: "
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselect fonts installed"
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
+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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Rado"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Submit kernel version"
-msgstr "Kerna versio"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Cancel"
-msgstr "Nuligu"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Searching for configured scanners ..."
-msgstr "Loka printilo"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Videocard"
-msgstr "Videocard"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
+#: ../../printer/printerdrake.pm_.c:289
+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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Remove Selected"
-msgstr "Malinstalu printvicon"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/Autodetect _modems"
-msgstr "Malproksima printilo"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remove printer"
+#: ../../printer/printerdrake.pm_.c:307
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
msgstr "Malproksima printilo"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Last Log"
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Connection Type"
-msgstr "Konekto-tipo:"
-
-#: ../../standalone/logdrake:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:329
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
-#, c-format
-msgid "Other"
-msgstr "Alia"
-
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
-msgstr "DefaÅ­lta"
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+#, fuzzy
+msgid "Printer auto-detection"
+msgstr "Malproksima printilo"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:385
#, c-format
-msgid "Button 2 Emulation"
+msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../printer/printerdrake.pm_.c:387
#, fuzzy, c-format
-msgid "Please enter a package name."
-msgstr "Bonvole donu salutnomon"
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Vindozo 95/98/NT"
+
+#: ../../printer/printerdrake.pm_.c:391
+#, fuzzy, c-format
+msgid "Detected %s"
+msgstr "Duobla surmetingo %s"
-#: ../../security/l10n.pm:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "Run chkrootkit checks"
+msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "type1inst building"
+msgid "USB printer \\/*%s"
msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../printer/printerdrake.pm_.c:399
#, fuzzy, c-format
-msgid "Abiword"
-msgstr "Ĉesigu"
-
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "choose image file"
-msgstr "Elektu agon"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "X server"
-msgstr "X servilo"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin User Name"
-msgstr "Uzulnomo de la Domajna administranto"
+msgid "Network printer \"%s\", port %s"
+msgstr "Reta Printilo (TCP/ingo)"
-#: ../../standalone/drakxtv:1
+#: ../../printer/printerdrake.pm_.c:401
#, fuzzy, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Estis eraro dum instalado de pakaĵoj:"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
-msgstr "Usona klavaro (internacia)"
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Vindozo 95/98/NT"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Not installed"
-msgstr "Eliru instalprogramon"
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+#, fuzzy
+msgid "Local Printer"
+msgstr "Loka printilo"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Alt keys simultaneously"
+#: ../../printer/printerdrake.pm_.c:526
+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 ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "LAN connection"
-msgstr "LAN Konfiguraĵo"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/-"
-msgstr "/Dosiero/-"
+#: ../../printer/printerdrake.pm_.c:530
+#, fuzzy
+msgid "You must enter a device or file name!"
+msgstr "Printila Aparato URI"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Italian"
-msgstr "Itala"
+#: ../../printer/printerdrake.pm_.c:539
+#, fuzzy
+msgid "No printer found!"
+msgstr "Loka printilo"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Basic"
-msgstr "Baza"
+#: ../../printer/printerdrake.pm_.c:548
+#, fuzzy
+msgid "Available printers"
+msgstr "Loka printilo"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
+#: ../../printer/printerdrake.pm_.c:552
+msgid ""
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Honduras"
-msgstr "Honduro"
-
-#: ../../help.pm:1
-#, c-format
-msgid "pdq"
+#: ../../printer/printerdrake.pm_.c:553
+msgid ""
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO"
-msgstr "I/O (Eneligo) de Karto"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Samba server"
-msgstr "NIS Servilo"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:555
msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:556
msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:558
msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
+"Please choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:559
+#, fuzzy
+msgid "Please choose the port where your printer is connected to."
+msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reports check result to tty"
+#: ../../printer/printerdrake.pm_.c:561
+msgid ""
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "You must enter a device or file name!"
+#: ../../printer/printerdrake.pm_.c:565
+#, fuzzy
+msgid "You must choose/enter a printer/device!"
msgstr "Printila Aparato URI"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Quit"
-msgstr "Ĉesu"
+#: ../../printer/printerdrake.pm_.c:584
+#, fuzzy
+msgid "Manual configuration"
+msgstr "Interreta Konfigurado"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Graifka memoro: %s KB\n"
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
+msgstr "Malproksimaj lpd Printilaj Opcioj"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:634
+#, fuzzy
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"
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
-"Tiu ĉi programo estas libera softvaro; vi povas redisdoni Äin kaj/aÅ­ modifi\n"
-"Äin sub la termoj de la GNU-Äœeneralpublika Licenco kiel publikigita de\n"
-"la Libera Programar Fondaĵo (Free Software Foundation); aŭ versio 2, aŭ\n"
-"laÅ­ via opcio) pli posta versio.\n"
-"\n"
-"Tiu ĉi programo estas disdonata kun la espero ke Äi estu utila,\n"
-"sed SEN IA GARANTIO; eĉ sen garantio pri MERKATOTAUXGECO aŭ\n"
-"TAUXGECO POR APARTA CELO. Vidu la\n"
-"GNU Äœeneralpublikan Licencon pri pli da detaloj.\n"
-"\n"
-"Vi devus esti ricevinta kopion de la GNU Äœeneralpublika Licenco\n"
-"kun tiu ĉi programo; se ne, skribu al la Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to compilation tools"
-msgstr "aliro al kompililoj"
+"Por uzi malproksima lpd printvico, vi devas provizi la poþtejon de la\n"
+"printservilo kaj la printviconomon æe tiu servilo en kiun taskoj devus\n"
+"esti metata."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Global statistics"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:635
+#, fuzzy
+msgid "Remote host name"
+msgstr "Malproksima poþtejo"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please select data to restore..."
-msgstr "Bonvole, elektu lingvon por uzi."
+#: ../../printer/printerdrake.pm_.c:636
+#, fuzzy
+msgid "Remote printer name"
+msgstr "Malproksima printilo"
-#: ../../diskdrake/hd_gtk.pm:1
-#, 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"
-msgstr ""
-"Se vi intencas uzi \"aboot\", zorgu lasi liberan spacon (2048 sektoroj "
-"sufiĉas)\n"
-"ĉe la komenco de la disko"
+#: ../../printer/printerdrake.pm_.c:639
+#, fuzzy
+msgid "Remote host name missing!"
+msgstr "Malproksima poþtejo"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Standard test page"
-msgstr "LaÅ­norma"
+#: ../../printer/printerdrake.pm_.c:643
+#, fuzzy
+msgid "Remote printer name missing!"
+msgstr "Malproksima poþtejo"
-#: ../../standalone/drakclock:1
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
#, fuzzy, c-format
-msgid "Time Zone"
-msgstr "Horzono"
+msgid "Detected model: %s %s"
+msgstr "Duobla surmetingo %s"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create"
-msgstr "Kreu"
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Startas vian konekta¼on..."
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, c-format
-msgid "What"
+msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Estis eraro ordigi pakaĵojn:"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "Bulgara (BDS)"
-
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
#, fuzzy, c-format
-msgid "Disable Server"
-msgstr "Datumbazoj"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Filesystem encryption key"
-msgstr "Speco de dosiersistemo: "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
-msgstr "gujarata"
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Haltas de la reto"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "SMB (Vindozo 9x/NT) Printilaj Opcioj"
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:796
+#, fuzzy
msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
+"To print to a SMB printer, you need to provide the SMB host name (Note! It "
+"may be different from its TCP/IP hostname!) and possibly the IP address of "
+"the print server, as well as the share name for the printer you wish to "
+"access and any applicable user name, password, and workgroup information."
msgstr ""
+"Por printi al SMB-a printilo, vi devas provizi la SMB poþtejon (Notu! Øi "
+"eble\n"
+"estas malsama de øia TCP/IP nomo!) kaj eble la IP-adreson de la "
+"printservilo,\n"
+"aldone al la opuzan nomon de la printilo vi deziras atingi kaj iun ajn\n"
+"taýgan salutnomon, pasvorton, kaj laborgrupan informon."
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:797
msgid ""
-"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
+" If the desired printer was auto-detected, simply choose it from the list "
+"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Save theme"
-msgstr "Instalu sistemon"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "Brazilo"
-
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Auto Install"
-msgstr "Instalu"
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
+msgstr "Poþtejo de SMB servilo"
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration Wizard"
-msgstr "Sorĉilo por ret-konfigurado"
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr "IP de SMB servilo"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
-msgstr "Aŭtomata kroĉado de demeteblaj aparatoj"
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr "Opuza nomo"
-#: ../../services.pm:1
-#, c-format
-msgid "Printing"
-msgstr "Presante"
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "Laborgrupo"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Enter the directory to save:"
-msgstr "Bonvole, provu la muson"
+#: ../../printer/printerdrake.pm_.c:806
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Malproksima printilo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"There are no printers found which are directly connected to your machine"
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "Kreu novan subdiskon"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Driver:"
-msgstr "Pelilo:"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "Uzu fdisk"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "MOVU VIAN RADON!"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "sent: "
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "AÅ­tomata IP"
-
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:827
#, 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"
+"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"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\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"
-" 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"
+"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"
-" * \"%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"
+"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"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
-msgid "Moldova"
-msgstr "Moldovio"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
+msgid ""
+"Set up your Windows server to make the printer available under the IPP "
+"protocol and set up printing from this machine with the \"%s\" connection "
+"type in Printerdrake.\n"
+"\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuration of a remote printer"
+#: ../../printer/printerdrake.pm_.c:840
+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 ""
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
+msgstr "NetWare Printilaj Opcioj"
+
+#: ../../printer/printerdrake.pm_.c:912
+#, fuzzy
+msgid ""
+"To print on a NetWare printer, you need to provide the NetWare print server "
+"name (Note! it may be different from its TCP/IP hostname!) as well as the "
+"print queue name for the printer you wish to access and any applicable user "
+"name and password."
msgstr ""
+"Por print al NetWare printilo, vi devas provizi la NetWare printservilan\n"
+"nomon (Notu! Øi eble estas malsama de øia TCP/IP nomo!) aldone al la\n"
+"printvican nomon por la printilo vi deziras atingi kaj iun ajn taýgan\n"
+"salutnomon kaj pasvorton."
-#: ../../network/network.pm:1
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URL devas komenci per 'ftp:' aÅ­ 'http:'"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr "Printservilo"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Oriya"
-msgstr "Sirio"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
+msgstr "Printvica Nomo"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Add a new rule at the end"
-msgstr "Neniu printilo"
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
+msgstr ""
-#: ../../standalone/drakboot:1
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
+msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:1030
+#, fuzzy
+msgid "TCP/Socket Printer Options"
+msgstr "Ing-Printilaj Opcioj"
+
+#: ../../printer/printerdrake.pm_.c:1032
msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1033
+#, fuzzy
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''"
+"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 ""
-"Nun vi povas provizi Äiajn opciojn al modulo %s.\n"
-"Opcioj estas en la formo ``nomo=valoro nomo2=valoro2 ...''.\n"
-"Ekzemple, ``io=0x300 irq=7''"
+"Por printi al inga printilo, vi bezonas provizi la\n"
+"poþtejon de la printilo kaj opcie la pordnumeron."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "Ĉu eliru sen skribi la subdisktabelon?"
+#: ../../printer/printerdrake.pm_.c:1037
+#, fuzzy
+msgid "Printer host name or IP missing!"
+msgstr "Printilaj Poþtejo"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
+#: ../../printer/printerdrake.pm_.c:1059
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Printilaj Poþtejo"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Hard Drive"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
+msgstr "Printila Aparato URI"
-#: ../../standalone.pm:1
-#, c-format
-msgid "Installing packages..."
-msgstr "Instalanta pakaĵojn..."
+#: ../../printer/printerdrake.pm_.c:1108
+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 ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dutch"
-msgstr "Nederlanda"
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Angola"
-msgstr "Angolo"
+#: ../../printer/printerdrake.pm_.c:1463
+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 ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "La sekvaj pakaĵoj estos instalataj"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr "Nomo de printilo"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "service setting"
-msgstr "Servilo"
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
+msgstr "Priskribo"
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "Akomodata"
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
+msgstr "Loko"
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
-msgstr "Latvio"
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+#, fuzzy
+msgid "Reading printer database..."
+msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr "Dosiero jam uzata de alia retrokonektado, elektu alian"
+#: ../../printer/printerdrake.pm_.c:1482
+#, fuzzy
+msgid "Preparing printer database..."
+msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr "Nur-lege"
+#: ../../printer/printerdrake.pm_.c:1578
+#, fuzzy
+msgid "Your printer model"
+msgstr "Malproksima printilo"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:1579
#, c-format
msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
+"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 ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
-msgstr "Nenia konata pelilo"
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+#, fuzzy
+msgid "The model is correct"
+msgstr "Æu tio æi pravas?"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+#, fuzzy
+msgid "Select model manually"
+msgstr "Malproksima printilo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:1606
+#, fuzzy
+msgid "Printer model selection"
+msgstr "Printilan Konekton"
-#: ../../standalone/draksound:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1607
+#, fuzzy
+msgid "Which printer model do you have?"
+msgstr "Kiun specon de printilo vi havas?"
+
+#: ../../printer/printerdrake.pm_.c:1608
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. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Configure Local Area Network..."
-msgstr "Konfiguru lokan reton"
-
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1611
msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr "Lanĉu la sonsistemon en via maÅino"
+#: ../../printer/printerdrake.pm_.c:1697
+#, fuzzy
+msgid "OKI winprinter configuration"
+msgstr "Interreta Konfigurado"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
+#: ../../printer/printerdrake.pm_.c:1698
+msgid ""
+"You are configuring an OKI laser winprinter. These printers\n"
+"use a very special communication protocol and therefore they work only when "
+"connected to the first parallel port. When your printer is connected to "
+"another port or to a print server box please connect the printer to the "
+"first parallel port before you print a test page. Otherwise the printer will "
+"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run some checks against the rpm database"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+#, fuzzy
+msgid "Lexmark inkjet configuration"
+msgstr "Interreta Konfigurado"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Execute"
+#: ../../printer/printerdrake.pm_.c:1719
+msgid ""
+"The inkjet printer drivers provided by Lexmark only support local printers, "
+"no printers on remote machines or print server boxes. Please connect your "
+"printer to a local port or configure it on the machine where it is connected "
+"to."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Preparing printer database..."
-msgstr "Legas datumbason de CUPS peliloj..."
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Information"
-msgstr "Montru informon"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "No network card"
-msgstr "neniu retkarto"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "3 butonoj"
-
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Which filesystem do you want?"
-msgstr "Kiun dosierosistemo vi deziras uzi?"
+#: ../../printer/printerdrake.pm_.c:1746
+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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Malta"
-msgstr "Malto"
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Detailed information"
-msgstr "Detala informo"
+#: ../../printer/printerdrake.pm_.c:1750
+msgid ""
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1972
msgid ""
"Printer default settings\n"
"\n"
@@ -10466,1814 +7592,1403 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../install_any.pm:1
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid "This floppy is not FAT formatted"
+msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "Configuring network"
-msgstr "Konfiguras reto"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
+msgid "Option %s must be a number!"
msgstr ""
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Graphic Card"
-msgstr "Grafik-karto"
-
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:1989
#, c-format
-msgid "Resizing Windows partition"
-msgstr "Kalkulas Vindozajn dosiersistemajn limojn"
+msgid "Option %s out of range!"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "Kameruno"
+#: ../../printer/printerdrake.pm_.c:2028
+#, fuzzy, c-format
+msgid ""
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
+msgstr "Æu vi deziras provi printado?"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "Provizanto DNS 1 (nedeviga)"
+#: ../../printer/printerdrake.pm_.c:2051
+#, fuzzy
+msgid "Test pages"
+msgstr "Provu pordojn"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2052
msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
+"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 ""
-"Nun vi povas dispartigi %s.\n"
-"Kiam vi finiÄos, ne forgesu savi kun `w'."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finnish)"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2056
+#, fuzzy
+msgid "No test pages"
+msgstr "Jes, printu ambaý de la provpaøojn"
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Close"
-msgstr "Malfermu"
+#: ../../printer/printerdrake.pm_.c:2057
+#, fuzzy
+msgid "Print"
+msgstr "Printilo"
-#: ../../help.pm:1
-#, 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."
+#: ../../printer/printerdrake.pm_.c:2114
+#, fuzzy
+msgid "Standard test page"
+msgstr "Laýnorma"
+
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Calendar"
-msgstr "Kalendaro"
+#: ../../printer/printerdrake.pm_.c:2120
+#, fuzzy
+msgid "Alternative test page (A4)"
+msgstr "Printas provpaøo(j)n..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2122
+#, fuzzy
+msgid "Photo test page"
+msgstr "Printas provpaøo(j)n..."
+
+#: ../../printer/printerdrake.pm_.c:2126
+#, fuzzy
+msgid "Do not print any test page"
+msgstr "Printas provpaøo(j)n..."
+
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
+msgstr "Printas provpaøo(j)n..."
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2159
#, fuzzy, c-format
msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
+"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 ""
-"Por uzi malproksima lpd printvico, vi devas provizi la poÅtejon de la\n"
-"printservilo kaj la printviconomon ĉe tiu servilo en kiun taskoj devus\n"
-"esti metata."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
-msgstr "Islando"
+"Provpaøo(j)n estis sendataj al la printila demono.\n"
+"Æi tiu eble postulas iom da tempo antaý ol la printilo komencas.\n"
+"Printada stato:\n"
+"%s\n"
+"\n"
+"Æu øi øuste funkcias?"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Network & Internet Configuration"
-msgstr "Reta Konfiguraĵo"
+#: ../../printer/printerdrake.pm_.c:2163
+#, fuzzy
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+msgstr ""
+"Provpaøo(j)n estis sendataj al la printila demono.\n"
+"Æi tiu eble postulas iom da tempo antaý ol la printilo komencas.\n"
+"Æu øi øuste funkcias?"
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr "haltigita"
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+#, fuzzy
+msgid "Raw printer"
+msgstr "Neniu printilo"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
-msgid "Whether the FPU has an irq vector"
+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 ""
-# this entry must not be too long, or the window gets tooooo wiiiiiide
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr "Etendu Arbon"
+#: ../../printer/printerdrake.pm_.c:2218
+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 ""
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, c-format
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
"\n"
-"It has been reported to oops the kernel on unloading.\n"
-"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+"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 ""
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Expert Mode"
-msgstr "SpertuloreÄimo"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "Printilaj opcioj"
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Local Network adress"
-msgstr "neniu retkarto trovita"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Malbona rezerva dosiero"
-
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Set the user umask."
-msgstr "Salutnomo"
-
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
#, 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"
+"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\n"
"\n"
-"Do you want to install the updates ?"
msgstr ""
-"Vi havas nun la eblecon deÅuti Äisdatigitajn pakaĵojn. Tiuj pakaĵoj\n"
-"estas Äisdatigitaj post eldonado de tiu ĉi eldono. Ili povas\n"
-"enteni sekureco- aÅ­ eraro-riparojn.\n"
-"\n"
-"Por deÅuti tiujn pakaĵojn, vi bezonas funkciantan Interret-\n"
-"konekton.\n"
-"\n"
-"Ĉu vi deziras instali tiujn Äisdatigojn?"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Samba Server"
-msgstr "NIS Servilo"
+#: ../../printer/printerdrake.pm_.c:2228
+msgid ""
+"Here is a list of the available printing options for the current printer:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakxtv:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, c-format
-msgid "Australian Optus cable TV"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
msgstr ""
-#: ../../install_steps_newt.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr " <Tabo>/<Alt-Tabo> inter eroj | <Spaco> elektas | <F12> sekva ekrano "
+"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/drakTermServ:1
-#, c-format
-msgid "Subnet:"
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
+msgid ""
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:2253
#, c-format
-msgid "Zimbabwe"
-msgstr "Zimbabvo"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "When"
-msgstr "Rado"
+#: ../../printer/printerdrake.pm_.c:2257
+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 ""
-#: ../../network/adsl.pm:1
+#: ../../printer/printerdrake.pm_.c:2261
#, c-format
msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
+"\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
+#: ../../printer/printerdrake.pm_.c:2271
#, fuzzy, c-format
-msgid "Hour"
-msgstr "Honduro"
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Haltas de la reto"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Du DNS-a Servilo (nedeviga)"
+#: ../../printer/printerdrake.pm_.c:2272
+#, fuzzy, c-format
+msgid "Printing/Scanning on \"%s\""
+msgstr "Haltas de la reto"
-#: ../../lang.pm:1
-#, c-format
-msgid "Finland"
-msgstr "Finnlando"
+#: ../../printer/printerdrake.pm_.c:2274
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Haltas de la reto"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Kolorprofuneco: %s\n"
+#: ../../printer/printerdrake.pm_.c:2275
+#, fuzzy, c-format
+msgid "Printing on the printer \"%s\""
+msgstr "Haltas de la reto"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Vi ne povas malelekti ĉi tiun pakaĵon. Ĝi devus esti promociata."
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+msgid "Close"
+msgstr "Malfermu"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "Åœargas de disketo"
+#: ../../printer/printerdrake.pm_.c:2281
+#, fuzzy
+msgid "Print option list"
+msgstr "Printilaj opcioj"
-#: ../../standalone/drakclock:1
+#: ../../printer/printerdrake.pm_.c:2301
#, c-format
-msgid "Timezone - DrakClock"
+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!"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
+#: ../../printer/printerdrake.pm_.c:2322
+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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr "Slovenujo"
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+#, fuzzy
+msgid "Reading printer data..."
+msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../standalone/mousedrake:1
-#, fuzzy, c-format
-msgid "Mouse test"
-msgstr "Mouse Systems"
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+#, fuzzy
+msgid "Transfer printer configuration"
+msgstr "Interreta Konfigurado"
-#: ../../standalone/drakperm:1
+#: ../../printer/printerdrake.pm_.c:2365
#, 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."
+"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 ""
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2368
msgid ""
-"Enter a user\n"
-"%s"
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
msgstr ""
-"Enigu uzanton\n"
-"%s"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2370
msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
msgstr ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "ProgressBar color selection"
-msgstr "Printilan Konekton"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-"Jen la diversaj enskriboj.\n"
-"Vi povas aldoni pli aÅ­ ÅanÄi la ekzistantajn."
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
-
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2374
msgid ""
-"Application Name\n"
-"or Full Path:"
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2375
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."
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
msgstr ""
-"Lanĉas ordonojn vicigitajn per la 'at' ordono je la horo specifita kiam\n"
-"'at' estis uzata, kaj lanĉas baĉajn ordonojn kiam la Åargmezo estas\n"
-"sufiĉe malgranda."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
+#: ../../printer/printerdrake.pm_.c:2376
+msgid ""
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "Instalanta pakaĵojn SANE..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
msgstr ""
-#: ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Change type"
-msgstr "ÅœanÄu specon"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "SILO Instalado"
-
-#: ../../install_messages.pm:1
+#: ../../printer/printerdrake.pm_.c:2392
#, 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."
+"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/drakclock:1
-#, c-format
-msgid "Enable Network Time Protocol"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "paranoid"
-msgstr "Paranoja"
-
-#: ../../security/l10n.pm:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
-msgid "Do not send mails when unneeded"
+msgid ""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2413
+#, fuzzy
+msgid "New printer name"
+msgstr "Neniu printilo"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "Send mail report after each backup to:"
+msgid "Transferring %s..."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2427
#, 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"
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
msgstr ""
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolution"
-msgstr "Distingivo"
+#: ../../printer/printerdrake.pm_.c:2437
+#, fuzzy
+msgid "Refreshing printer data..."
+msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+msgid "Configuration of a remote printer"
msgstr ""
-"Por printi al SMB-a printilo, vi devas provizi la SMB poÅtejon (Notu! Äœi "
-"eble\n"
-"estas malsama de Äia TCP/IP nomo!) kaj eble la IP-adreson de la "
-"printservilo,\n"
-"aldone al la opuzan nomon de la printilo vi deziras atingi kaj iun ajn\n"
-"taÅ­gan salutnomon, pasvorton, kaj laborgrupan informon."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2446
+#, fuzzy
+msgid "Starting network..."
+msgstr "Startas vian konekta¼on..."
+
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+#, fuzzy
+msgid "Configure the network now"
+msgstr "Konfiguru retumon"
+
+#: ../../printer/printerdrake.pm_.c:2480
+#, fuzzy
+msgid "Network functionality not configured"
+msgstr "Ekrano ne estas konfigurata"
+
+#: ../../printer/printerdrake.pm_.c:2481
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"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 ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
-msgstr "rekonfiguru"
+#: ../../printer/printerdrake.pm_.c:2484
+#, fuzzy
+msgid "Go on without configuring the network"
+msgstr "Konfiguras reto"
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2518
msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
-"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
-"NOTU KE ĈI TIO ESTAS EKSPERIMENTA SUBTENO KAJ EBLE SVENIGOS VIAN KOMPUTILON."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell timeout"
+#: ../../printer/printerdrake.pm_.c:2519
+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 ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Xinetd Service"
-msgstr "Printservilo"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to network tools"
-msgstr "aliro al retiloj"
+#: ../../printer/printerdrake.pm_.c:2529
+#, fuzzy
+msgid "Restarting printing system..."
+msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2568
+#, fuzzy
+msgid "high"
+msgstr "Alta"
-#: ../advertising/03-software.pl:1
-#, 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."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2568
+#, fuzzy
+msgid "paranoid"
+msgstr "Paranoja"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid "Here is a list of all auto-detected printers. "
+msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2570
#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"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 ""
-"Eraro daÅ­re mi instalis \"aboot\",\n"
-"Ĉu mi devus provi perforte instali eĉ se tio detruas la unuan subdiskon?"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr "Malinstalu printvicon"
+#: ../../printer/printerdrake.pm_.c:2604
+#, fuzzy
+msgid "Starting the printing system at boot time"
+msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2605
#, c-format
msgid ""
-"%s exists, delete?\n"
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\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."
+"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 ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Bonvole plenigu aÅ­ marku la suban kampon"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Ĉu vi deziras konservi la modifojn en /etc/fstab?"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-aj (Redundanca Aro de Malmultekostaj Diskoj) diskoj %s\n"
-
-#: ../../services.pm:1
-#, c-format
-msgid "On boot"
-msgstr "Startante"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "La pakaĵo %s estas bezonata. Ĉu instali Äin?"
+#: ../../printer/printerdrake.pm_.c:2630
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "Distingivo: %s\n"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:2636
#, fuzzy, c-format
-msgid "Bus identification"
-msgstr "AÅ­tentikigado"
+msgid "Installing %s ..."
+msgstr "Instalanta paka¼o %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vatican"
-msgstr "Vatikano"
+#: ../../printer/printerdrake.pm_.c:2685
+#, fuzzy
+msgid "Select Printer Spooler"
+msgstr "Elektu Printilan Konekton"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please make a backup of your data first"
-msgstr "Bonvolu fari rezervan kopion de via dateno antaÅ­e"
+#: ../../printer/printerdrake.pm_.c:2686
+#, fuzzy
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ADSL adapters"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2720
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
+msgstr "Konfiguru Printilon"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Vi havas pli ol unu fiksdisko, sur kiu vi deziras instali Linukson?"
+#: ../../printer/printerdrake.pm_.c:2731
+#, fuzzy
+msgid "Installing Foomatic..."
+msgstr "Instalanta paka¼o %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Eritrea"
-msgstr "Eritreo"
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr "Printilaj opcioj"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot ISO"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2810
+#, fuzzy
+msgid "Preparing Printerdrake..."
+msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid "Firmware needed"
-msgstr "se bezonata"
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+#, fuzzy
+msgid "Configuring applications..."
+msgstr "Konfiguru Printilon"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Remove List"
-msgstr "Malproksima printilo"
+#: ../../printer/printerdrake.pm_.c:2845
+#, fuzzy
+msgid "Would you like to configure printing?"
+msgstr "Æu vi deziras konfiguri printilon?"
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
-msgstr "inuita"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2915
+#, fuzzy
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."
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
+"Jen la sekvantaj printvicoj.\n"
+"Vi povas aldoni pli aý þanøi la ekzistantajn."
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "Maroko"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Which printer model do you have?"
-msgstr "Kiun specon de printilo vi havas?"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Add a new printer"
-msgstr "Neniu printilo"
+#: ../../printer/printerdrake.pm_.c:2916
+#, fuzzy
+msgid ""
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; or to view information about "
+"it."
+msgstr ""
+"Jen la sekvantaj printvicoj.\n"
+"Vi povas aldoni pli aý þanøi la ekzistantajn."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " All of your selected data have been "
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "Nepalo"
+#: ../../printer/printerdrake.pm_.c:2960
+#, fuzzy
+msgid "Change the printing system"
+msgstr "Konfiguru retumon"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "<-- Delete"
-msgstr "Forigu"
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+msgid "Normal Mode"
+msgstr "Normala Modalo"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
-msgstr "cpu # "
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+#, fuzzy
+msgid "Do you want to configure another printer?"
+msgstr "Æu vi deziras provi la konfigura¼on?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "chunk size"
-msgstr "grandeco de pecoj"
+#: ../../printer/printerdrake.pm_.c:3211
+#, fuzzy
+msgid "Modify printer configuration"
+msgstr "Interreta Konfigurado"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:3213
+#, fuzzy, c-format
msgid ""
-"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
-"\n"
-"If set to NONE, no issues are allowed.\n"
-"\n"
-"Else only /etc/issue is allowed."
-msgstr ""
+"Printer %s\n"
+"What do you want to modify on this printer?"
+msgstr "Æu vi deziras provi la konfigura¼on?"
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
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
-#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "ordonoj antaux startado, aux 'c' por uzi komandan linion."
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+#, fuzzy
+msgid "Printer connection type"
+msgstr "Disdividado de Interreta Konekto"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problemoj instalante pakaĵon %s"
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+#, fuzzy
+msgid "Printer name, description, location"
+msgstr "Printilan Konekton"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh"
-msgstr "Rekalkulu"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Reload partition table"
-msgstr "ReÅargu subdiskotabelon"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Selected"
-msgstr "Malinstalu printvicon"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Boot"
-msgstr "Starto"
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+#, fuzzy
+msgid "Print test pages"
+msgstr "Printas provpaøo(j)n..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " and the CD is in the drive"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+#, fuzzy
+msgid "Know how to use this printer"
+msgstr "Æu vi deziras provi la konfigura¼on?"
-#: ../../harddrake/v4l.pm:1
-#, fuzzy, c-format
-msgid "Tuner type:"
-msgstr "ÅœanÄu subdiskspecon"
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+#, fuzzy
+msgid "Remove printer"
+msgstr "Malproksima printilo"
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:3282
#, fuzzy, 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"
-"\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 ""
-"Nun estas tempo por elekti pressistemon por via komputilo. Aliaj mastrum-"
-"sistemoj\n"
-"proponas al vi unu, sed Linuks-Mandrako proponas du. Ĉiu el la pressistemoj\n"
-"plej taÅ­gas por aparta tipo de konfigurado.\n"
-"\n"
-" * \"pdq\" -- kio estas akronimo por \"print, don't queue\" (presu, ne "
-"vicigu), elektindas\n"
-"se vi havas rektan konekton kun via presilo, vi Åatus eskapi el problemoj "
-"kun\n"
-"aliaj presiloj, kaj vi ne havas retajn presilojn. (\"pdq\"\n"
-"pritraktos nur tre simplajn retokazojn kaj estas iom malrapida se\n"
-"uzata kun retoj.) Konsilindas uzi \"pdq\" se tio ĉi estas via\n"
-"unua sperto kun GNU/Linukso.\n"
-"\n"
-" * \"%s\" - \"Common Unix Printing System\", estas bonega elekto por\n"
-"presigi vian lokan presilon aÅ­ iun ie tra la planedo. Äœi estas\n"
-"facile konfigurebla kaj povas agi kiel servilo aÅ­ kiel kliento por la "
-"antaÅ­a\n"
-"\"lpd \" pressistemo, kaj estas kongrua kun pli malnovaj mastrum-sistemoj\n"
-"kiuj eble ankoraÅ­ bezonas presservojn. Kvankam tre potenca, la baza "
-"konfigurado\n"
-"estas preskaÅ­ same simpla kiel \"pdq\". Se vi bezonas imiti \"lpd\"-"
-"servilon,\n"
-"certiÄu ke vi aktivigis la \"cups-lpd\"-demonon. \"%s\" enhavas grafikajn\n"
-"'front-ends' por presi aÅ­ por elekti presil-opciojn kaj por mastrumi\n"
-"la presilon.\n"
-"\n"
-"Se vi faras vian elekton nun, kaj poste trovas ke vi ne Åatas vian "
-"pressistemon,\n"
-"vi povas ÅanÄi Äin rulante PrinterDrake ekde la Mandraka KontrolCentro kaj\n"
-"alklaki la eksperto-butonon."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
-msgstr "\"Menuo\"-klavo"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
-msgstr ""
+msgid "Removing old printer \"%s\"..."
+msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Security Administrator:"
-msgstr "Malproksimaj lpd Printilaj Opcioj"
+#: ../../printer/printerdrake.pm_.c:3307
+#, fuzzy
+msgid "Default printer"
+msgstr "Loka printilo"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:3308
#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
+msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../../move/tree/mdk_totem:1
+#: ../../printer/printerdrake.pm_.c:3312
#, 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."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:3313
#, c-format
-msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Fonts copy"
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
-msgstr "AÅ­tomata"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Ĉu vi deziras provi la konfiguraĵon?"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3317
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
"GIMP."
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save packages selection"
-msgstr "Konservu la pakaĵ-elekton"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Actions"
-msgstr "/_Agoj"
-
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Remove the last item"
-msgstr "Formatas retrokonektan dosieron %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
-msgid "No net boot images created!"
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "uzu pptp"
+#: ../../printer/printerdrake.pm_.c:3325
+#, fuzzy, c-format
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Æu vi deziras provi la konfigura¼on?"
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Elektu kiuj servoj estu aÅ­tomate startigotaj dum starto"
+#: ../../printer/printerdrake.pm_.c:3329
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
+msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../security/l10n.pm:1
+#: ../../raid.pm_.c:35
#, c-format
-msgid "Check files/directories writable by everybody"
-msgstr ""
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "Ne povas aldoni subdiskon al _formatita_ RAID md%d"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Learn how to use this printer"
-msgstr "Ĉu vi deziras provi la konfiguraĵon?"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
+msgstr "mkraid malsukcesis"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Configure the network now"
-msgstr "Konfiguru retumon"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid malsukcesis (eble raidtools mankas)"
-#: ../../install_steps_interactive.pm:1
+#: ../../raid.pm_.c:153
#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Elektu spegulon de kiu havigi la pakaĵojn"
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "Ne estas sufiæaj subdiskoj por RAID nivelo %d\n"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../security/main.pm_.c:36
msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
+"\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
+"\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\n"
+"\n"
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
+"\n"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
-"La regrandecigilo por la FAT (Dosiero-Atingo-Tablo) ne povas trakti\n"
-"vian subdiskon, la sekvanta eraro okazis: %s"
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Size: "
-msgstr "Grandeco: %s"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Elektas sekurnivelon"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "Al kiu sektoro vi deziras movi?"
+#: ../../security/main.pm_.c:77
+#, fuzzy, c-format
+msgid " (default value: %s)"
+msgstr " (Defaýlta)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahamas"
-msgstr "Bahamoj"
+#: ../../security/main.pm_.c:113
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Elektas sekurnivelon"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Do you want to click on this button?"
-msgstr "Ĉu vi deziras alklaki tiun butonon?"
+#: ../../security/main.pm_.c:115
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Malproksimaj lpd Printilaj Opcioj"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Manual configuration"
-msgstr "Interreta Konfigurado"
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "Network Options"
+msgstr "Modulaj opcioj:"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "search"
-msgstr "serĉu"
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "System Options"
+msgstr "Modulaj opcioj:"
-#: ../../services.pm:1
-#, c-format
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
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 ""
-"Ĉi tiu pakaĵo Åargas la elektitan klavarmapon laÅ­ /etc/sysconfig/keyboard.\n"
-"Vi povas elekti ĉi tion per la kbdconfig utilprogramo. Vi lasus ĉi tion\n"
-"ebligatan por la plejmulto da sistemoj."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (installad-ekran-pelilo)"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf host name must not contain a ."
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse icmp echo."
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Syslog is the facility by which many daemons use to log messages\n"
-"to various system log files. It is a good idea to always run syslog."
-msgstr ""
-"Syslog (sistemlogilo) estas la rimedo per kiu multaj dajmonoj registras\n"
-"mesaÄojn al diversaj sistemlogdosieroj. Äœi estas bona ideo ĉiam uzi\n"
-"syslog."
+#: ../../security/main.pm_.c:191
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Elektas sekurnivelon"
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown/Others"
-msgstr "Nekonata/Aliaj"
+#: ../../security/main.pm_.c:197
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Preparas instaladon"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
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
-#, c-format
-msgid "Options"
-msgstr "Opcioj"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
+msgstr "Anacron, perioda ordonvicigilo."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:21
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."
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
+"apmd estas uzata por monitori la bateriostaton kaj registri øin en la\n"
+"sistemlogdosiero (syslog). Vi ankaý povas uzi øin por halti la komputilon\n"
+"kiam la baterioþargo estas malgranda."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
+#: ../../services.pm_.c:23
+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 ""
+"Lanæas ordonojn vicigitajn per la 'at' ordono je la horo specifita kiam\n"
+"'at' estis uzata, kaj lanæas baæajn ordonojn kiam la þargmezo estas\n"
+"sufiæe malgranda."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Auto-detected"
-msgstr "Malproksima printilo"
-
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
+#: ../../services.pm_.c:25
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)."
+"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 ""
-"Nun kiam via Interreta konekto estas konfigurata,\n"
-"vi povas konfiguri vian komputilon por disdividi Äian Interretan konekton.\n"
-"Notu: vi bezonas dediĉan Retadaptilon por konfiguri Lokan Reton (LAN).\n"
-"\n"
-"Ĉu vi deziras konfiguri Disdividadon de Interreta Konekto?\n"
+"cron estas norma Uniksa programo kiu lanæas programojn kiujn la uzulo\n"
+"specifas je periodaj tempoj. vixie cron aldonas kelkajn trajtojn al la\n"
+"baza Uniksa cron, inkluzive de pli bona sekureco kaj pli fortaj\n"
+"konfiguraj opcioj."
-#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
+#: ../../services.pm_.c:28
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"
+"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 ""
-"OSS (Open Sound System - Libera Sonsistemo) estis la nuna son-API. Äœi estas "
-"son-API "
+"GPM aldonas subtenon por musoj al teksta-reøimaj Linuksaj aplikoj ekzemple\n"
+"la 'Midnight Commander' (Meznokta Estro). Ankaý øi permesas uzi la muson\n"
+"por transpoþigi æe la konzolo (Sen X Fenestroj)."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:31
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"
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
msgstr ""
-"Ne libera spaco por 1mb-startparto! La instalado daurigos, sed por startigi "
-"vian sistemon, vi devos krei la startpartan subdiskon en DiskDrake"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:33
msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
+"Apache estas Tut-Tera Teksa¼a servilo. Øi liveras HTML-ajn dosierojn\n"
+"kaj CGI (komunakluza interfaco)."
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
-msgstr "Malakceptu"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
+#: ../../services.pm_.c:34
+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 ""
+"La interreta superservila demono (kutime nomata inetd) lanæas sortimenton\n"
+"da aliaj interretaj servoj laýbezone. Øi respondas por la lanæo de multaj\n"
+"servoj, inkluzive de telnet, ftp, rsh, kaj rlogin. Se vi malþaltas inetd,\n"
+"ve malþaltas æiujn el la servoj por kiuj øi respondas."
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:38
msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
msgstr ""
-"HardDrake rulas aparato-provon, kaj laÅ­opcie konfiguras\n"
-"novan/ÅanÄitan aparataron."
-#: ../../fs.pm:1
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Kreas kaj formatas dosieron %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
+#: ../../services.pm_.c:40
+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 ""
+"Æi tiu paka¼o þargas la elektitan klavarmapon laý /etc/sysconfig/keyboard.\n"
+"Vi povas elekti æi tion per la kbdconfig utilprogramo. Vi lasus æi tion\n"
+"ebligatan por la plejmulto da sistemoj."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:43
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"
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing LVM to add to"
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
msgstr ""
-"Elektu ekzistantan RAID (Redundanca Aro de Malmultekostaj Diskoj) por\n"
-"aldoni al"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "xfs restart"
-msgstr "limigu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:46
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
+#: ../../services.pm_.c:48
+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 ""
+"lpd estas la printvica dajmono bezonata por lpr taýge funkcii. Øi estas\n"
+"baze servilo kiu arbitracias printajn taskojn al printilo(j)."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
+#: ../../services.pm_.c:50
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "neniuj haveblaj subdiskoj"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Printer Management \n"
-msgstr "Uzul-mastrumado \n"
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Domain Name Resolver"
-msgstr "Domajna nomo"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
+#: ../../services.pm_.c:52
+#, fuzzy
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
msgstr ""
+"'named' (BIND) estas Domajna NomServilo (DNS) kiun vi uzas por trovi\n"
+"poþtejojn de IP adresoj."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
+#: ../../services.pm_.c:53
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
+"Muntas kaj malmuntas æiujn RetDosierSistemajn (NFS), SMB (Lan\n"
+"Manager/Vindozaj), kaj NCP (NetWare) surmetingojn."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
+#: ../../services.pm_.c:55
+msgid ""
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
+"Þaltas/Malþaltas æiujn retajn interfacojn konfiguratajn por lanæi\n"
+"dum sistemstartado."
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Detection in progress"
-msgstr "Duobla surmetingo %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
+#: ../../services.pm_.c:57
+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 ""
+"NFS estas populara protokolo por dosierdistribuado tra TCP/IP retoj.\n"
+"Æi tiu servo provizas NFS dosierþlosado, kiun vi konfiguras per la\n"
+"/etc/exports dosiero."
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "modem"
-msgstr "Modemo"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "Bonvenon al %s"
-
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../services.pm_.c:60
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"
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
msgstr ""
+"NFS estas populara protokolo por dosierdistribuado tra TCP/IP retoj.\n"
+"Æi tiu servo provizas NFS dosierþlosado."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
+#: ../../services.pm_.c:62
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
msgstr ""
-"EnÅovu la disketon kun Äisdatigaj moduloj (Update Modules) en drajvo %s"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../services.pm_.c:65
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr "Via komputilo ne havas retadaptilon!"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Printilo"
+"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 ""
+"PCMCIA subteno kutime estas subteno de a¼o kiel ethernet kaj modemoj en\n"
+"tekkomputiloj. Øi ne estos lanæata krom se vi konfiguras øi por ke øi\n"
+"estu sendanøera æe komputiloj kiuj ne bezonas øin."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:68
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>\". "
+"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 ""
+"La pordmapilo direktas RPC konektojn, kiujn protokoloj kiel NFS kaj NIS "
+"uzas.\n"
+"La pordmapservilo devas esti uzata æe komputiloj kiuj agas kiel serviloj\n"
+"por protokoloj kiuj uzas la RPC mekanismon."
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "DrakClock"
+#: ../../services.pm_.c:71
+#, fuzzy
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
msgstr ""
+"\"Postfix\" estas PoþtTransportPerilo, kiu estas la programo kiu movas\n"
+"retpoþton de unu komputilo al alia."
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:72
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."
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
msgstr ""
-"Iuokaze, la %s pelilo bezonas havi aldonan informon por Äuste funkcii,\n"
-"kvankam Äi normale funkcias bone sen la informo. Ĉu vi deziras specifi\n"
-"aldonajn opciojn por Äi aÅ­ permesi al la pelilo esplori vian komputilon\n"
-"por la informo Äi bezonas? Kelkfoje, esplori svenas komputilon, sed\n"
-"Äi ne devus kaÅ­zi difekton."
+"Savas kaj restaýras sisteman entropikomuna¼on por pli altkvalita\n"
+"generado de aleatoraj nombroj."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:76
msgid ""
-"\n"
-"- Daemon, %s via:\n"
+"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 ""
+"La routed dajmono permesas aýtomatan øisdatigon de la IP enkursigila tabelo\n"
+"per la RIP protokolo. Kvankam RIP estas vaste uzata je malgrandaj retoj,\n"
+"pli malsimplaj enkursigaj protokoloj estas bezonataj por malsimplaj retoj."
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "Kubo"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr "Oktobro"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belize"
-msgstr "Belizio"
+#: ../../services.pm_.c:79
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
+msgstr ""
+"La rstat protokolo permesas al uzuloj sur reto ekstrakti metrikojn\n"
+"pri la rapideco de iu ajn komputilo sur tiu reto."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Searching for new printers..."
-msgstr "Loka printilo"
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"La ruser protokolo permesas al uzuloj sur reto identigi kiujn estas\n"
+"konektataj æe aliaj respondantaj komputiloj."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
+#: ../../services.pm_.c:83
+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 ""
+"La rwho protokolo permesas al uzuloj havigi liston de æiuj el la uzuloj\n"
+"konektataj æe komputilo kiu estas uzanta la rwho dajmono (simila al finger)."
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../services.pm_.c:86
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."
+"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 ""
-"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
-"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
+"Syslog (sistemlogilo) estas la rimedo per kiu multaj dajmonoj registras\n"
+"mesaøojn al diversaj sistemlogdosieroj. Øi estas bona ideo æiam uzi\n"
+"syslog."
-#: ../../security/help.pm:1
-#, c-format
-msgid " Activate/Disable daily security check."
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CD-R.\n"
+#: ../../services.pm_.c:89
+#, fuzzy
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr ""
+"Startas kaj æesigas la X Tiparan Servilon je starttempo kaj æesiga tempo."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "La Dispartigsorĉilo de DrakX trovis ĉi tiujn solvojn:"
+#: ../../services.pm_.c:127
+#, fuzzy
+msgid "Printing"
+msgstr "Printilo"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "Hungara"
+#: ../../services.pm_.c:128
+msgid "Internet"
+msgstr "Interreto"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+#: ../../services.pm_.c:131
+msgid "File sharing"
msgstr ""
-"Elektu vian interretprovizanton.\n"
-" Se Äin ne estas en la listo, elektu NelistiÄitan"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Auxtomata hor-sinkronizado (uzante NTP) "
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid "Use my Windows partition"
-msgstr "Kalkulas Vindozajn dosiersistemajn limojn"
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+#, fuzzy
+msgid "System"
+msgstr "Sistema modalo"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
+#: ../../services.pm_.c:138
+#, fuzzy
+msgid "Remote Administration"
+msgstr "Malproksimaj lpd Printilaj Opcioj"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Server"
-msgstr "LDAP Servilo"
+#: ../../services.pm_.c:146
+#, fuzzy
+msgid "Database Server"
+msgstr "Datumbazoj"
-#: ../../services.pm:1
+#: ../../services.pm_.c:175
#, 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."
+msgid "Services: %d activated for %d registered"
msgstr ""
-"PCMCIA subteno kutime estas subteno de aĵo kiel ethernet kaj modemoj en\n"
-"tekkomputiloj. Äœi ne estos lanĉata krom se vi konfiguras Äi por ke Äi\n"
-"estu sendanÄera ĉe komputiloj kiuj ne bezonas Äin."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Choose your country"
-msgstr "Elektu vian landon"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
+#: ../../services.pm_.c:191
+#, fuzzy
+msgid "Services"
+msgstr "Servilo"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
-msgstr ""
+#: ../../services.pm_.c:203
+#, fuzzy
+msgid "running"
+msgstr "Averto"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Where"
-msgstr "Rado"
+#: ../../services.pm_.c:203
+#, fuzzy
+msgid "stopped"
+msgstr "Alfiksu"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "but not matching"
-msgstr "sed ne konformanta(j)"
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
+msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../services.pm_.c:222
msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
+"No additional information\n"
+"about this service, sorry."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Konfiguras PCMCIA kartojn..."
+#: ../../services.pm_.c:229
+#, fuzzy
+msgid "On boot"
+msgstr "Yaboot"
-#: ../../common.pm:1
-#, c-format
-msgid "kdesu missing"
-msgstr "kdesu mankas"
+#: ../../services.pm_.c:241
+#, fuzzy
+msgid "Start"
+msgstr "Stato:"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr ""
+#: ../../services.pm_.c:241
+#, fuzzy
+msgid "Stop"
+msgstr "Sektoro"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Mikrosofta IntelliMouse"
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
+#: ../../share/advertising/01-thanks.pl_.c:11
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."
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "Kristnask-Insulo"
-
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Automatic"
-msgstr "AÅ­tomata IP"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Instalado de startÅargilo malsukcesis. La sekvanta eraro okazis:"
+#: ../../share/advertising/02-community.pl_.c:9
+#, fuzzy
+msgid "Get involved in the Free Software world"
+msgstr "La cetero de la mondo"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Set this printer as the default"
+#: ../../share/advertising/02-community.pl_.c:11
+msgid ""
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Ĉu tiu ĉi konfigurado Äustas?"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "subdisko: %s"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Paranoid"
-msgstr "Paranoja"
-
-#: ../../any.pm:1
-#, c-format
-msgid "NIS"
-msgstr "NIS"
+#: ../../share/advertising/03-internet.pl_.c:9
+#, fuzzy
+msgid "Get the most from the Internet"
+msgstr "Konektu al la Interreto"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Del User"
+#: ../../share/advertising/03-internet.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Location on the bus"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "No printer found!"
-msgstr "Loka printilo"
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
+#: ../../share/advertising/04-multimedia.pl_.c:11
+msgid ""
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Erase entire disk"
-msgstr "ForviÅu la tutan diskon"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Ludoj"
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Default)"
-msgstr " (DefaÅ­lta)"
+#: ../../share/advertising/05-games.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
+msgstr ""
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Automatic reconfiguration"
-msgstr "Post-instala konfigurado"
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+#, fuzzy
+msgid "Mandrake Control Center"
+msgstr "Konekti al la interreto"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Receiving Speed:"
+#: ../../share/advertising/06-mcc.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
-msgstr "Turks kaj Caicos Insuloj"
+#: ../../share/advertising/07-desktop.pl_.c:9
+#, fuzzy
+msgid "User interfaces"
+msgstr "Reta interfaco"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Ip"
+#: ../../share/advertising/07-desktop.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
-#: ../../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
-#, c-format
-msgid "<- Previous"
-msgstr "<- AntaÅ­a"
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Programisto"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Transfer Now"
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password and network authentication methods"
+#: ../../share/advertising/08-development.pl_.c:11
+msgid ""
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "ÅœanÄu inter ebena kaj ordigita je grupoj"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Themes"
-msgstr "Temoj"
+#: ../../share/advertising/09-server.pl_.c:10
+msgid ""
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
+msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "Opcioj: %s"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
+#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr "Disdividado de Interreta Konekto"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "OKI winprinter configuration"
-msgstr "Interreta Konfigurado"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
-msgstr "Sankt-Heleno"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
+msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Parallel port #%s"
-msgstr "Presilo sur paralela pordo #%s"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Security Level"
-msgstr "sekurnivelo"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
-"Kelkaj paÅoj ne finiÄis.\n"
-"\n"
-"Ĉu vi vere volas ĉesi nun?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "Sudano"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "Pola (qwertz aranÄo)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
-msgstr "Sirio"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/12-mdkstore.pl_.c:10
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?"
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
-#, 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"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-"Bonvenon al %s, la mastruma sistema elektilo!\n"
-"\n"
-"Elektu mastruman sistemon de la supra listo aux\n"
-"atendu dum %d sekundoj por defauxlta starto.\n"
-"\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "Portugala"
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
+msgid ""
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
-msgstr "Retrokonekta dosieronomo: "
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "DNS-servila adreso devas esti en formato 1.2.3.4"
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Left Control key"
-msgstr "Malproksima printilo"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "Spertulo"
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
-msgstr "serba"
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
+msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Newzealand"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+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 ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
-msgstr "Ĉi tiu dosierujo devus resti interne de la radika dosierosistemo (/)"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Spertulo"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "Instalu restart-Åargilon"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Elektu memorkapaciton de via grafika karto"
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../share/advertising/17-mdkclub.pl_.c:10
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))."
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
+#: ../../standalone.pm_.c:21
msgid ""
-"[OPTIONS]\n"
-"Network & Internet connection and monitoring application\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"
-"--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 ""
-"[OPCIOJ]\n"
-"Reto & Interret-konektad kaj afiÅad-aplikaĵo\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"
-"--defaultintf interface : montras tiun interfacon defaÅ­lte\n"
-"--connect : konektas kun interreto se ne jam konektite\n"
-"--disconnect : malkonektas de interreto se jam konektite\n"
-"--force : uzata kun (dis)connect : trudas (mal-)konektadon.\n"
-"--status : montras 1 se konektite, alie 0, poste eliras.\n"
-"--quiet : ne estu interaktiva. Uzata kun (dis)connect."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
+"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 ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "LVM-nomo?"
-
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
+#: ../../standalone.pm_.c:40
+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 name.\n"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Trovis %s %s interfacojn"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Post Install"
-msgstr "Instalu"
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "The internal domain name"
-msgstr "Neniu printilo"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ de Karto"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "logdrake"
+#: ../../standalone.pm_.c:51
+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.pm:1
-#, c-format
+#: ../../standalone.pm_.c:57
msgid ""
"Font Importation and monitoring "
"application \n"
@@ -12288,6657 +9003,4485 @@ msgid ""
" : name_of_application like so for staroffice \n"
" : and gs for ghostscript for only this one."
msgstr ""
-"Litertipar-Import-kaj afiÅ- aplikaĵo \n"
-"--windows_import : importu de ĉiuj atingeblaj vindozaj subdiskoj.\n"
-"--xls_fonts : montru ĉiujn litertiparojn jam ekzistantajn de xls\n"
-"--strong : forta kontrolado de litertiparo.\n"
-"--install : akceptu ĉian litertipar-dosieron kaj ĉian dosierujon.\n"
-"--uninstall : malinstalu ĉian litertiparon kaj ĉian litertiparan "
-"dosierujon.\n"
-"--replace : anstataŭigu ĉian litertiparon se jam ekzistas\n"
-"--application : 0 nenia aplikaĵo.\n"
-" : 1 ĉiuj haveblaj aplikaĵoj subtenataj.\n"
-" : name_of_application aÅ­ iel tiel por staroffice \n"
-" : kaj gs por ghostscript nur por tiu ĉi."
-
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Elektu la disketdrajvo vi deziras uzi por krei la startdisketon"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
+#: ../../standalone.pm_.c:68
+msgid ""
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
+#: ../../standalone.pm_.c:70
+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)"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
-msgstr "Vi devas decidi pri kerno-bildo"
+#: ../../standalone.pm_.c:82
+#, fuzzy
+msgid "[keyboard]"
+msgstr "Klavaro"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
msgstr ""
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Do"
-msgstr "Faru"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Kontaktu la spegulon por havigi la liston de havebla pakaĵoj"
+#: ../../standalone.pm_.c:84
+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 ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "Litova AZERTY-a (malnova)"
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "Brazila (ABNT-2)"
+#: ../../standalone.pm_.c:94
+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 ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
+#: ../../standalone.pm_.c:99
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone.pm_.c:100
msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
msgstr ""
-#: ../../install_gtk.pm:1
+#: ../../standalone.pm_.c:114
#, c-format
-msgid "System installation"
-msgstr "Sistem-nstalado"
+msgid ""
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
-msgstr "Sent-Vincento kaj la Grenadinoj"
+#: ../../standalone.pm_.c:168
+#, fuzzy
+msgid "Installing packages..."
+msgstr "Instalanta paka¼o %s"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid reboot by the console user."
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
+"Bonvole adiaýu kaj sekve uzu Kontrol-Alt-Retropaþo (Ctrl-Alt-Backspace)."
-#: ../../standalone/logdrake:1
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "/File/_Open"
-msgstr "/Dosiero/_Malfermu"
+msgid "Please relog into %s to activate the changes"
+msgstr "Bonvolu resaluti en %s-n por aktivigi la þanøojn."
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "Kreas aÅ­toinstalan disketon"
+#: ../../standalone/drakTermServ_.c:239
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Interreta Konfigurado"
-#: ../../any.pm:1
-#, c-format
-msgid "Open Firmware Delay"
-msgstr ""
+#: ../../standalone/drakTermServ_.c:253
+#, fuzzy
+msgid "Enable Server"
+msgstr "Datumbazoj"
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
-msgstr "Hungario"
+#: ../../standalone/drakTermServ_.c:260
+#, fuzzy
+msgid "Disable Server"
+msgstr "Datumbazoj"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Zealand"
-msgstr "Nov-Zelando"
+#: ../../standalone/drakTermServ_.c:268
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS Servilo"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Color configuration"
-msgstr "Interreta Konfigurado"
+#: ../../standalone/drakTermServ_.c:275
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS Servilo"
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
+#: ../../standalone/drakTermServ_.c:283
+msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "please choose the date to restore"
-msgstr "Bonvole, elektu la specon de via muso."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
-msgstr "Nederlandaj Antiloj"
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr "Åœaltas de ext2 al ext3"
+#: ../../standalone/drakTermServ_.c:294
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Aldonu uzanto"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng"
+#: ../../standalone/drakTermServ_.c:299
+msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
+#: ../../standalone/drakTermServ_.c:328
+msgid ""
+"\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
+"\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:332
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "and %d unknown printers"
-msgstr "Neniu printilo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:365
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)"
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\n"
+"\n"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
+"\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\n"
+"\n"
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
+"\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
+"\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
+"\n"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
msgstr ""
-"Neniu ISDN-a PCI-a karto trovata. Bonvole elektu unu el la PCI-aj kartojn "
-"sur\n"
-"la sekvanta ekrano."
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
-msgstr "GB"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
-msgstr "Bonvole donu salutnomon"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
-msgstr "Ĉu ebligi CD Boot?"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Simply reboot"
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid " enter `void' for void entry"
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
-msgstr "Januaro"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Password history length"
-msgstr "Ĉi tiu pasvorto estas tro simpla"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Winmodem connection"
-msgstr "Winmodem-konekto"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr ""
+#: ../../standalone/drakTermServ_.c:587
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Ne konektita"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Nesufiĉa interÅanÄospaco por plenumi instalado, bonvolu aldoni iom"
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
+msgstr ""
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "%s on %s"
-msgstr "%s sur %s"
+#: ../../standalone/drakTermServ_.c:604
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Forigu"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Allow/Forbid remote root login."
-msgstr "Malproksima printilo"
+#: ../../standalone/drakTermServ_.c:611
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Elektu dosieron"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:668
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."
+"!!! Indicates the password in the system database is different than\n"
+" the one in the Terminal Server database.\n"
+"Delete/re-add the user to the Terminal Server to enable login."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
-msgstr ""
+#: ../../standalone/drakTermServ_.c:673
+#, fuzzy
+msgid "Add User -->"
+msgstr "Aldonu uzanto"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "kio estas vian horzonon?"
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
+msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakTermServ_.c:720
#, fuzzy, c-format
-msgid "Use .backupignore files"
-msgstr "Malbona rezerva dosiero"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
-msgstr "Gvineo"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "La sistemo estas nun konektita al Interreto."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Sud-Georgio kaj la Sudaj Sandviĉaj Insuloj"
+msgid "type: %s"
+msgstr "Speco: "
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/drakTermServ_.c:773
+msgid "Thin Client"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "Mozambiko"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "Piktogramo"
-
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Kill those programs"
-msgstr "aliro al X-programoj"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please choose what you want to backup"
-msgstr "Bonvole, elektu la pakaĵojn kiujn vi deziras instali."
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 koloroj (8 bitoj)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "Lega-skriba"
+#: ../../standalone/drakTermServ_.c:775
+msgid "Allow Thin Clients"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "Grandeco: %s\n"
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Hostname: "
-msgstr "PoÅtejo: "
+#: ../../standalone/drakTermServ_.c:821
+msgid "<-- Edit Client"
+msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Add a rule"
-msgstr "Aldonu modulon"
+#: ../../standalone/drakTermServ_.c:837
+#, fuzzy
+msgid "Delete Client"
+msgstr "Forigu"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Grandeco de pecoj %s\n"
+#: ../../standalone/drakTermServ_.c:843
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Mi konfiguras..."
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
+#: ../../standalone/drakTermServ_.c:876
+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
-#, fuzzy, c-format
-msgid "Local Printer"
-msgstr "Loka printilo"
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
+msgstr ""
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Kie vi deziras munti aparato %s?"
+#: ../../standalone/drakTermServ_.c:901
+#, fuzzy
+msgid "Netmask:"
+msgstr "Retmasko"
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL-konekto"
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Error!"
-msgstr "Eraro"
+#: ../../standalone/drakTermServ_.c:929
+#, fuzzy
+msgid "Domain Name:"
+msgstr "Domajna nomo"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "cable connection detected"
-msgstr "kabla konektaĵon detektita"
+#: ../../standalone/drakTermServ_.c:937
+#, fuzzy
+msgid "Name Servers:"
+msgstr "NIS Servilo"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Raportu Cimo"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
-msgstr "Dominiko"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "Regrandecigu"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Distingivo: %s\n"
+#: ../../standalone/drakTermServ_.c:1001
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "LAN Konfigura¼o"
-#: ../../install2.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:1002
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)"
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
msgstr ""
-"Bonvolu elekti la Äustan pordon. Ekzemple, la \"COM1\"-a\n"
-"pordo sub MS Vindozo estas nomata \"ttyS0\" sub GNU/Linukso."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "La sekvaj pakaĵoj estos malinstalataj"
-
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr "Konektu al la Interreto"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
-msgstr "Uzu ekzistantajn subdiskojn"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "Kanada (Kebeka)"
+#: ../../standalone/drakTermServ_.c:1018
+#, fuzzy
+msgid "Write Config"
+msgstr "rekonfiguru"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Musaparato: %s\n"
+#: ../../standalone/drakTermServ_.c:1120
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Enþovu disketon en drajvo %s"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Reselect correct fonts"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
msgstr ""
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, fuzzy, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "Spertulo"
+#: ../../standalone/drakTermServ_.c:1129
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Neniu disketilo havebla"
-#: ../../standalone.pm:1
+#: ../../standalone/drakTermServ_.c:1138
#, c-format
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+msgid "Etherboot ISO image is %s"
msgstr ""
-" [ĉio]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Write protection"
-msgstr "Malproksima printilo"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "You've not selected any font"
-msgstr "Malinstalu printvicon"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Language"
-msgstr "Elektu vian lingvon"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer model selection"
-msgstr "Printilan Konekton"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-"Post vi ÅanÄas la specon de subdisko %s, ĉiuj datenoj en ĉi tiu subdisko "
-"estos\n"
-"perdata"
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "ISDN adapters"
-msgstr "Interna ISDN-karto"
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekundoj"
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "EnÅovu malplenan disketon en drajvo %s"
+#: ../../standalone/drakautoinst_.c:40
+#, fuzzy
+msgid "Error!"
+msgstr "Eraro"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, c-format
-msgid "A valid URI must be entered!"
+msgid "I can't find needed image file `%s'."
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr ""
+#: ../../standalone/drakautoinst_.c:43
+#, fuzzy
+msgid "Auto Install Configurator"
+msgstr "Post-instala konfigurado"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
+#: ../../standalone/drakautoinst_.c:44
+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 ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound configuration"
-msgstr "Son-konfigurado"
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Photo test page"
-msgstr "Printas provpaÄo(j)n..."
+#: ../../standalone/drakautoinst_.c:62
+#, fuzzy
+msgid "replay"
+msgstr "Reludu"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "subdiskigo"
+#: ../../standalone/drakautoinst_.c:66
+#, fuzzy
+msgid "Automatic Steps Configuration"
+msgstr "Post-instala konfigurado"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
+#: ../../standalone/drakautoinst_.c:67
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Kreas aýtoinstalan disketon"
+
+#: ../../standalone/drakautoinst_.c:139
msgid ""
-"The following printers\n"
"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr "Via komputilo ne havas retadaptilon!"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "You don't have any winmodem"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "type: %s"
-msgstr "Speco: "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "Slovaka (QWERTY)"
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
+msgstr "Gratulojn!"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:235
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."
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
msgstr ""
-#: ../../standalone/draksound:1
-#, fuzzy, c-format
-msgid "No Sound Card detected!"
-msgstr "Ne konektita"
+#: ../../standalone/drakautoinst_.c:273
+#, fuzzy
+msgid "Auto Install"
+msgstr "Instalu"
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "Muspordo"
+#: ../../standalone/drakautoinst_.c:343
+#, fuzzy
+msgid "Add an item"
+msgstr "Aldonu uzulon"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
-msgstr ""
+#: ../../standalone/drakautoinst_.c:350
+#, fuzzy
+msgid "Remove the last item"
+msgstr "Formatas retrokonektan dosieron %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Ftp Server"
-msgstr "NIS Servilo"
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr "Ugando"
+#: ../../standalone/drakbackup_.c:691
+#, fuzzy
+msgid "FATAL"
+msgstr "Dosierlokigtabelo (FAT)"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "Bonvole, elektu al kiu seria pordo estas via muso konektata."
-
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:704
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"
+" DrakBackup Report \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"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:705
+msgid ""
"\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"
+" DrakBackup Daemon Report\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"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:709
+msgid ""
"\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"
+" DrakBackup Report Details\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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr "Komoroj"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "May"
-msgstr "Majo"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yaboot mode"
-msgstr "Yaboot modalo"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Nespecifa 3 Butona Muso"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
-msgstr ""
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+#, fuzzy
+msgid "Total progess"
+msgstr "Provu pordojn"
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakbackup_.c:785
#, c-format
msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+"%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/drakbackup:1
-#, fuzzy, c-format
-msgid "Select another media to restore from"
-msgstr "Bonvole, elektu la specon de via muso."
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Software Manager"
-msgstr "Opuza nomo"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:801
#, c-format
-msgid "CD in place - continue."
+msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "KB"
-msgstr "KB"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Network & Internet"
-msgstr "Reto kaj Interreto"
-
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Litova \"fonetika\" QWERTY-a"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Net Boot Images"
+msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakbackup_.c:819
#, fuzzy, c-format
-msgid "Sharing of local scanners"
-msgstr "Loka printilo"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr ""
+msgid "Bad password on %s"
+msgstr "Neniu pasvorto"
-#: ../../../move/move.pm:1
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "Detect again USB key"
+msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Services and deamons"
-msgstr "Servoj kaj demonoj"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:821
#, fuzzy, c-format
-msgid "Remote host name missing!"
-msgstr "Malproksima poÅtejo"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "with /usr"
-msgstr "kun /usr"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Network"
-msgstr "Reto"
+msgid "Can't find %s on %s"
+msgstr "Ne povis malfermi %s por skribi: %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgid "%s not responding"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "Ĉi tiu pasvorto estas tro simpla"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "Konfiguru servojn"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovaka (QWERTZ)"
-
-#: ../advertising/06-development.pl:1
+#: ../../standalone/drakbackup_.c:828
#, 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."
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "No devices found"
-msgstr "Loka printilo"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Vere minimuma instalado (precipe ne urpmi)"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use daemon"
-msgstr "Salutnomo"
-
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "AÅ­tentikigado"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Additional CUPS servers: "
-msgstr "IP de SMB servilo"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr "Kie vi deziras kroĉi aparaton %s?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "AlÄerio"
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Via Network"
-msgstr "RestaÅ­ru de dosiero"
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd-grandeco"
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
+msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:1060
#, c-format
-msgid "\tBackups use tar and gzip\n"
+msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Set as default"
-msgstr "defaÅ­lta"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+#, fuzzy
+msgid "Hard Disk Backup files..."
+msgstr "Malbona rezerva dosiero"
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configured on this machine"
-msgstr "Konfiguru la konekton"
+#: ../../standalone/drakbackup_.c:1236
+#, fuzzy
+msgid "Backup User files..."
+msgstr "Malbona rezerva dosiero"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid " --help - display this help \n"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1290
+#, fuzzy
+msgid "Backup Other files..."
+msgstr "Malbona rezerva dosiero"
+
+#: ../../standalone/drakbackup_.c:1296
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Malbona rezerva dosiero"
-#: ../../standalone.pm:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, 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"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-"[OPCIO]...\n"
-" --no-confirmation ne postulu unue konfirmadon en MandrakeUpdate mode\n"
-" --no-verify-rpm ne kontrolu la pakaĵ-subskribojn\n"
-" --changelog-first afiÅu changelog antaÅ­ dosierliston en la priskribo-"
-"fenestro\n"
-" --merge-all-rpmnew proponu mergi ĉiujn trovitajn .rpmnew/.rpmsave -"
-"dosierojn"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Setting Default Printer..."
-msgstr "Loka printilo"
-
-#: ../../standalone/drakgw:1
+#: ../../standalone/drakbackup_.c:1319
#, c-format
-msgid "Interface %s (using module %s)"
+msgid ""
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Generating preview ..."
-msgstr "Detektas aparatojn..."
-
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1322
msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
+"\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
msgstr ""
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "ignore"
-msgstr "Singapuro"
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1340
msgid ""
-"Allow/Forbid X connections:\n"
"\n"
-"- ALL (all connections are allowed),\n"
-"\n"
-"- LOCAL (only connection from local machine),\n"
+"Drakbackup activities via CD:\n"
"\n"
-"- NONE (no connection)."
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
+#: ../../standalone/drakbackup_.c:1345
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "seria"
+#: ../../standalone/drakbackup_.c:1354
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Eraro legante dosiero %s"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
-msgstr "DVD-ROM"
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Kartvela (\"Latina\" aranÄo)"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+#, fuzzy
+msgid "File Selection"
+msgstr "Elektado de Paka¼oj"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1573
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "Kenjo"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Uzu ``Malmuntu'' antaÅ­e"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing mtools packages..."
-msgstr "Instalanta pakaĵojn mtools..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a root partition"
-msgstr "Vi devas difini radikan (root) subdiskon"
-
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "first step creation"
-msgstr "Startdiskokreado"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
+"\n"
+"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1574
msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
+"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Select a scanner model"
-msgstr "Elektu grafikan karton"
+#: ../../standalone/drakbackup_.c:1575
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Malbona rezerva dosiero"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Drakbackup Configuration"
-msgstr "Reta Konfiguraĵo"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr "Savu Kiel..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr "Koreio (Norda)"
-
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1578
msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
msgstr ""
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System configuration"
-msgstr "Sistem-konfigurado"
-
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "AÅ­tomata-enregistrado"
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Please check all users that you want to include in your backup."
+msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin Password"
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
msgstr ""
-#: ../advertising/05-desktop.pl:1
-#, 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, ..."
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Configuring printer ..."
-msgstr "Konfiguru Printilon"
-
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, 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)"
-msgstr ""
-
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "MB"
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+#, fuzzy
+msgid "Remove Selected"
+msgstr "Malinstalu printvicon"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
-msgstr ""
+#: ../../standalone/drakbackup_.c:1679
+#, fuzzy
+msgid "Windows (FAT32)"
+msgstr "Forigu Vindozon"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr "Insuloj Virgaj (Britaj)"
+#: ../../standalone/drakbackup_.c:1714
+#, fuzzy
+msgid "Users"
+msgstr "Salutnomo"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bermuda"
-msgstr "Bermudo"
+#: ../../standalone/drakbackup_.c:1740
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1747
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."
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Remove"
-msgstr "Forigu"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr "Lesoto"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr "utopia 25"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
+#: ../../standalone/drakbackup_.c:1748
+msgid ""
+" Transfer \n"
+"Now"
msgstr ""
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "Ĉu forigu la retrokonektan dosieron?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "Ebur-Bordo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
+#: ../../standalone/drakbackup_.c:1749
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "Jes"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Kiun protokolon vi deziras uzi?"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Progress"
-msgstr "RestaÅ­ru de dosiero"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
-msgstr "Estonio"
+#: ../../standalone/drakbackup_.c:1753
+#, fuzzy
+msgid "Please enter the host name or IP."
+msgstr "Bonvole, provu la muson"
-#: ../../partition_table.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1758
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 ""
-"Vi havas truon en via subdisktabelo sed mi ne povas uzi Äin.\n"
-"La sola solvo estas movi viajn ĉefajn subdiskojn por situigi la truon\n"
-"apud la etendataj subdiskoj."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Channel"
-msgstr "Nuligu"
+#: ../../standalone/drakbackup_.c:1763
+#, fuzzy
+msgid "Please enter your login"
+msgstr "Bonvole provu denove"
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Add"
-msgstr "Aldonu"
+#: ../../standalone/drakbackup_.c:1768
+#, fuzzy
+msgid "Please enter your password"
+msgstr "Bonvole provu denove"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid " Error while sending mail. \n"
-msgstr "Eraro legante dosiero %s"
+#: ../../standalone/drakbackup_.c:1774
+#, fuzzy
+msgid "Remember this password"
+msgstr "Neniu pasvorto"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "Klavaro"
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1882
msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Elektu la konekton kiun vi deziras konfiguri"
+#: ../../standalone/drakbackup_.c:1887
+#, fuzzy
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Bonvole, elektu vian klavaran aranøon."
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Please wait, setting security level..."
-msgstr "Elektas sekurnivelon"
+#: ../../standalone/drakbackup_.c:1893
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Bonvolu klaki sur subdiskon"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfiguras retan aparaton %s"
+#: ../../standalone/drakbackup_.c:1899
+#, fuzzy
+msgid "Please check if you are using CDRW media"
+msgstr "Bonvolu klaki sur subdiskon"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
-msgstr "aktiva"
+#: ../../standalone/drakbackup_.c:1905
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
+#: ../../standalone/drakbackup_.c:1906
+msgid " Erase Now "
msgstr ""
-"Bonvole elektu kiun retadaptilon vi deziras uzi por konekti al la interreto"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Trovadas pakaĵojn por promocii"
+#: ../../standalone/drakbackup_.c:1912
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Bonvolu klaki sur subdiskon"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
-msgstr "Surmetingo: "
+#: ../../standalone/drakbackup_.c:1918
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
+#: ../../standalone/drakbackup_.c:1931
+msgid ""
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Allow/Forbid direct root login."
-msgstr "Malproksima printilo"
+#: ../../standalone/drakbackup_.c:1964
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Elektu dosieron"
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
+#: ../../standalone/drakbackup_.c:2012
+#, fuzzy
+msgid "Use tape to backup"
+msgstr "Malbona rezerva dosiero"
+
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
-msgstr "Kun X"
+#: ../../standalone/drakbackup_.c:2021
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Plur-ekrana konfiguraĵo"
+#: ../../standalone/drakbackup_.c:2027
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "No browser available! Please install one"
-msgstr ""
-"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaÅ­ la instalado"
+#: ../../standalone/drakbackup_.c:2033
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-#: ../../Xconfig/main.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
msgstr ""
-"Ĉu vi deziras teni la ÅanÄojn?\n"
-"Nuna konfiguro estas:\n"
-"\n"
-"%s"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Vi ne povas uzi ReiserFS por subdisko pli malgranda ol 32MB"
-#: ../../services.pm:1
-#, 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)."
-msgstr ""
-"La rwho protokolo permesas al uzuloj havigi liston de ĉiuj el la uzuloj\n"
-"konektataj ĉe komputilo kiu estas uzanta la rwho dajmono (simila al finger)."
+#: ../../standalone/drakbackup_.c:2103
+#, fuzzy
+msgid "Please enter the directory to save to:"
+msgstr "Bonvole, provu la muson"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "Domajna nomo"
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+#, fuzzy
+msgid "Use quota for backup files."
+msgstr "Malbona rezerva dosiero"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Sharing of local printers"
-msgstr "Loka printilo"
+#: ../../standalone/drakbackup_.c:2180
+#, fuzzy
+msgid "Network"
+msgstr "Reta interfaco"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Available printers"
-msgstr "Loka printilo"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "NO"
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "Malplena"
+#: ../../standalone/drakbackup_.c:2195
+#, fuzzy
+msgid "Tape"
+msgstr "Tipo"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Kie vi deziras munti aparato %s?"
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
msgstr ""
-"\n"
-"\n"
-"\n"
-"Ni konfiguros nun l %s konekton.\n"
-"\n"
-"\n"
-"Premu JES por daÅ­rigi."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Interfaco \"%s\""
+#: ../../standalone/drakbackup_.c:2229
+#, fuzzy
+msgid "Use daemon"
+msgstr "Salutnomo"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Kun baza dokumentaĵo (rekomendita!)"
+#: ../../standalone/drakbackup_.c:2234
+#, fuzzy
+msgid ""
+"Please choose the time \n"
+"interval between each backup"
+msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-#: ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr "1 butona"
+#: ../../standalone/drakbackup_.c:2240
+#, fuzzy
+msgid ""
+"Please choose the\n"
+"media for backup."
+msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2247
msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
"\n"
-"There are %d unknown printers directly connected to your system"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Test"
-msgstr "Testo"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea"
-msgstr "Koreio"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Via elekto? (defaÅ­lto '%s'%s) "
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Raw printer"
-msgstr "Neniu printilo"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
+#: ../../standalone/drakbackup_.c:2324
+msgid "What"
msgstr ""
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Vendor"
-msgstr "Vendinto"
+#: ../../standalone/drakbackup_.c:2329
+#, fuzzy
+msgid "Where"
+msgstr "Rado"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s"
-msgstr "Interfaco %s"
+#: ../../standalone/drakbackup_.c:2334
+#, fuzzy
+msgid "When"
+msgstr "Rado"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "Konfiguru muson"
+#: ../../standalone/drakbackup_.c:2339
+#, fuzzy
+msgid "More Options"
+msgstr "Modulaj opcioj:"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
-msgstr "Elektu surmetingojn"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+#, fuzzy
+msgid "Drakbackup Configuration"
+msgstr "Reta Konfigura¼o"
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr "Jes"
+#: ../../standalone/drakbackup_.c:2376
+#, fuzzy
+msgid "Please choose where you want to backup"
+msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslava (latina)"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
+msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "Instalanta"
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
+msgstr ""
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "LoÄiteka MouseMan"
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
-msgstr "Lanĉu userdrake"
+#: ../../standalone/drakbackup_.c:2406
+msgid "on Tape Device"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Ĉu tiu ĉi estas instalado aÅ­ Äisdatigo?"
+#: ../../standalone/drakbackup_.c:2449
+#, fuzzy
+msgid "Please choose what you want to backup"
+msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "ISDN card"
-msgstr "Interna ISDN-karto"
+#: ../../standalone/drakbackup_.c:2450
+#, fuzzy
+msgid "Backup system"
+msgstr "Dosiersistemo konfiguro"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2537
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."
+"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2538
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"
+"- System Files:\n"
msgstr ""
-"Tiu ĉi programo estas libera softvaro; vi povas redisdoni Äin kaj/aÅ­ modifi\n"
-"Äin sub la termoj de la GNU-Äœeneralpublika Licenco kiel publikigita de\n"
-"la Libera Programar Fondaĵo (Free Software Foundation); aŭ versio 2, aŭ\n"
-"laÅ­ via opcio) pli posta versio.\n"
-"\n"
-"Tiu ĉi programo estas disdonata kun la espero ke Äi estu utila,\n"
-"sed SEN IA GARANTIO; eĉ sen garantio pri MERKATOTAUXGECO aŭ\n"
-"TAUXGECO POR APARTA CELO. Vidu la\n"
-"GNU Äœeneralpublikan Licencon pri pli da detaloj.\n"
-"\n"
-"Vi devus esti ricevinta kopion de la GNU Äœeneralpublika Licenco\n"
-"kun tiu ĉi programo; se ne, skribu al la Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Malproksima CUPS-a servilo"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2540
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
+"\n"
+"- User Files:\n"
msgstr ""
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "DHCP host name"
-msgstr "PoÅtejo"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
+#: ../../standalone/drakbackup_.c:2542
+msgid ""
+"\n"
+"- Other Files:\n"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
+#: ../../standalone/drakbackup_.c:2544
#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Bonvole, elektu al kiu seria pordo estas via muso konektata."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
+msgid ""
+"\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "Malbona"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result by mail"
+#: ../../standalone/drakbackup_.c:2553
+msgid ""
+"\n"
+"- Burn to CD"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
-msgstr "Grenado"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "DanÄera"
-
-#: ../../network/drakfirewall.pm:1
+#: ../../standalone/drakbackup_.c:2555
#, fuzzy, c-format
-msgid "SSH server"
-msgstr "NIS Servilo"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektoroj"
-
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "Ne"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "Gvadelupo"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Kannada"
-msgstr "Kanado"
+msgid " on device: %s"
+msgstr "Musaparato: %s\n"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
msgstr ""
-#: ../../standalone/keyboarddrake:1
+#: ../../standalone/drakbackup_.c:2557
#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
+msgid ""
+"\n"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Vertikala refreÅigrapido (vertical refresh rate)"
-
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Eniras paÅon `%s'\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niger"
-msgstr "NiÄero"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "LoÄiteka MouseMan"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Removing %s ..."
-msgstr "Distingivo: %s\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No printer"
-msgstr "Neniu printilo"
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "alert configuration"
-msgstr "Interreta Konfigurado"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "NetWare Printilaj Opcioj"
-
-#: ../../standalone/draksplash:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "%s BootSplash (%s) preview"
+msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:2561
#, c-format
-msgid "February"
-msgstr "Februaro"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
-msgstr "Äœenerala"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
+msgid ""
+"\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "Aldonu uzulon"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "ISDN-a Konfiguraĵon"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "April"
-msgstr "Aprilo"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Deactivate now"
-msgstr "Aktiva"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
+#: ../../standalone/drakbackup_.c:2562
#, c-format
-msgid "Mandatory package %s is missing"
+msgid ""
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Filipinoj"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "Jeso"
+#: ../../standalone/drakbackup_.c:2563
+#, fuzzy
+msgid ""
+"\n"
+"- Options:\n"
+msgstr "Opcioj"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "drakTermServ Overview"
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
-msgstr "Printvica Nomo"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Ĉu vi deziras uzi aboot-on?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belarusian"
-msgstr "Belarusa"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move files to the new partition"
-msgstr "Movu dosierojn al la nova subdisko"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2572
#, 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."
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
-msgstr "Pitkarna Insulo"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore From Catalog"
-msgstr "Sava subdiskotabelo"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "mounting partition %s in directory %s failed"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
msgstr ""
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with graphical menu"
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "Taksas"
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
-msgstr "Vi ne povas malelekti ĉi tiun pakaĵon. Ĝi estas jam instalita."
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/Vindozo 95/98/NT"
+#: ../../standalone/drakbackup_.c:2578
+msgid "\t-Network by rsync.\n"
+msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "Ĉu vi deziras daŭri tamen?"
+#: ../../standalone/drakbackup_.c:2579
+msgid "\t-Network by webdav.\n"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Serĉas haveblajn pakaĵojn kaj refaras la rpm-datenbazon..."
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2587
msgid ""
+"List of data to restore:\n"
"\n"
-" DrakBackup Report \n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
+#: ../../standalone/drakbackup_.c:2754
+msgid ""
+"List of data corrupted:\n"
+"\n"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "Specifu opciojn"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr "Vanuatuo"
+#: ../../standalone/drakbackup_.c:2756
+#, fuzzy
+msgid "Please uncheck or remove it on next time."
+msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "New user list:\n"
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
+#: ../../standalone/drakbackup_.c:2787
+msgid " All of your selected data have been "
msgstr ""
-#: ../../any.pm:1
+#: ../../standalone/drakbackup_.c:2788
#, 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 " Successfuly Restored on %s "
msgstr ""
-"Akomodita startdisketo provizas manieron de starti via Linuksa sistemo\n"
-"sendepende de la normala startÅargilo. Ĉi tiu estas utila se vi ne deziras\n"
-"instali SILO sur via sistemo, aÅ­ alia mastruma sistemo forigas SILO,\n"
-"aŭ SILO ne funkcias kun via aparato-konfiguraĵo. Akomodita startdisketo "
-"ankaÅ­\n"
-"povas esti uzata kun la Mandrejka savdisko, kiu plifaciligas resaniÄi de\n"
-"severaj sistemaj paneoj.\n"
-"\n"
-"Se vi deziras krei startdisketon por via sistemo, enÅovu disketon en la\n"
-"unua drajvo kaj klaku \"JES\"."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Vi ne povas uzi kriptan dosiersistemon por surmetingo %s"
+#: ../../standalone/drakbackup_.c:2906
+#, fuzzy
+msgid " Restore Configuration "
+msgstr "Reta Konfigura¼o"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password history length to prevent password reuse."
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
-msgstr "Norfolkaj Insuloj"
-
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Theme installation failed!"
-msgstr "Elektu instalklason"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "Uzu por retrokonektado"
+#: ../../standalone/drakbackup_.c:3019
+#, fuzzy
+msgid "Backup the system files before:"
+msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3021
+#, fuzzy
+msgid "please choose the date to restore"
+msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
-msgstr "Apliku filtrilon"
+#: ../../standalone/drakbackup_.c:3057
+#, fuzzy
+msgid "Use Hard Disk to backup"
+msgstr "Malbona rezerva dosiero"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pppoe"
-msgstr "uzu pppoe"
+#: ../../standalone/drakbackup_.c:3060
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Bonvole, provu la muson"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving files to the new partition"
-msgstr "Mi movas dosierojn al la nova subdisko"
+#: ../../standalone/drakbackup_.c:3103
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN Konfigura¼o"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s kun EKSPERIMENTA 3D aparata akcelado"
+#: ../../standalone/drakbackup_.c:3110
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Elektu Printilan Konekton"
-#: ../../help.pm:1 ../../interactive.pm:1
-#, c-format
-msgid "Advanced"
-msgstr "Progresinta"
+#: ../../standalone/drakbackup_.c:3134
+#, fuzzy
+msgid "Restore from Hard Disk."
+msgstr "Restaýru de disketo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak-a (Sveda)"
+#: ../../standalone/drakbackup_.c:3204
+#, fuzzy
+msgid "Select another media to restore from"
+msgstr "Bonvole, elektu la specon de via muso."
-#: ../../lang.pm:1
-#, c-format
-msgid "Afghanistan"
-msgstr "Afganistano"
+#: ../../standalone/drakbackup_.c:3206
+#, fuzzy
+msgid "Other Media"
+msgstr "Alia"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "More Options"
-msgstr "Modulaj opcioj:"
+#: ../../standalone/drakbackup_.c:3211
+#, fuzzy
+msgid "Restore system"
+msgstr "Instalu sistemon"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
+#: ../../standalone/drakbackup_.c:3212
+#, fuzzy
+msgid "Restore Users"
+msgstr "Restaýru de dosiero"
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "Burundo"
+#: ../../standalone/drakbackup_.c:3213
+#, fuzzy
+msgid "Restore Other"
+msgstr "Restaýru de dosiero"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron estas norma Uniksa programo kiu lanĉas programojn kiujn la uzulo\n"
-"specifas je periodaj tempoj. vixie cron aldonas kelkajn trajtojn al la\n"
-"baza Uniksa cron, inkluzive de pli bona sekureco kaj pli fortaj\n"
-"konfiguraj opcioj."
+#: ../../standalone/drakbackup_.c:3215
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "Legu zorge"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3334
msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "Pordo"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3344
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Malinstalu printvicon"
-#. -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
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr ""
-"Premu la enenklavon por starti la elektatan mastruman sistemon, 'e' por\n"
-"redakti la"
+#: ../../standalone/drakbackup_.c:3361
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Restaýru de dosiero"
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakbackup_.c:3427
#, c-format
-msgid "Set-GID"
+msgid "Backup files not found at %s."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "The encryption keys do not match"
-msgstr "La pasvortoj ne egalas"
-
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:3440
#, c-format
msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "USB printer"
-msgstr ", USB-printilo"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Dekstra \"Vindozo\"-klavo"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr ""
+#: ../../standalone/drakbackup_.c:3440
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Restaýru de disketo"
-#: ../../help.pm:1
+#: ../../standalone/drakbackup_.c:3442
#, 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 "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:3452
#, c-format
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "Distingivoj"
-
-#: ../../network/drakfirewall.pm:1
-#, 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."
-msgstr ""
+#: ../../standalone/drakbackup_.c:3452
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Sava subdiskotabelo"
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../standalone/drakbackup_.c:3454
#, c-format
-msgid ""
-"Please enter your username, password and domain name to access this host."
+msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-"Bonvole tajpu vian uzulnomon, pasvorton kaj domajn-nomon por aliri al tiu "
-"gastiganto."
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Remove selected host"
-msgstr "Malinstalu printvicon"
+#: ../../standalone/drakbackup_.c:3474
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Restaýru de dosiero"
-#: ../../network/netconnect.pm:1
+#: ../../standalone/drakbackup_.c:3474
#, c-format
-msgid "Network configuration"
-msgstr "Reta Konfiguraĵo"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "Malproksima printilo"
+msgid "Restore Via Network Protocol: %s"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "No sharing"
-msgstr "Ne kundivido"
+#: ../../standalone/drakbackup_.c:3475
+#, fuzzy
+msgid "Host Name"
+msgstr "Poþtejo"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule down one level"
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "TB"
-msgstr "TB"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "FATAL"
-msgstr "Dosierlokigtabelo (FAT)"
+#: ../../standalone/drakbackup_.c:3483
+#, fuzzy
+msgid "Password required"
+msgstr "Pasvorto"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh the list"
-msgstr "Rekalkulu la liston"
+#: ../../standalone/drakbackup_.c:3489
+#, fuzzy
+msgid "Username required"
+msgstr "Salutnomo"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
+#: ../../standalone/drakbackup_.c:3492
+#, fuzzy
+msgid "Hostname required"
+msgstr "Poþtejo: "
-#: ../../standalone/drakpxe:1
-#, 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"
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete"
-msgstr "Forigu"
-
-#: ../../Xconfig/various.pm:1
-#, 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?"
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
msgstr ""
-"Mi povas konfiguri vian komputilon tiel ke Äi aÅ­tomate lanĉos X kiam Äi\n"
-"ekfunkcias. Ĉu vi deziras ke X aŭtomate lanĉos?"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
-msgstr "Konstruu la diskon"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Disconnect %s"
-msgstr "Malkonektu"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
-msgstr "Stato:"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP prokura servilo"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "SSH Server"
-msgstr "NIS Servilo"
+#: ../../standalone/drakbackup_.c:3513
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
-msgstr "EÅ­ropa protokolo"
+#: ../../standalone/drakbackup_.c:3760
+#, fuzzy
+msgid "Custom Restore"
+msgstr "Akomodata"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
msgstr ""
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
-#, c-format
-msgid "Error"
-msgstr "Eraro"
-
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
-msgstr "permesu \"su\""
+#: ../../standalone/drakbackup_.c:3813
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Sava subdiskotabelo"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Australia"
-msgstr "Auxstralio"
+#: ../../standalone/drakbackup_.c:3841
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Restaýru de dosiero"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr ""
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+#, fuzzy
+msgid "Previous"
+msgstr "<- Antaýa"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Konfiguru nur karton \"%s\"%s"
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+#, fuzzy
+msgid "Save"
+msgstr "Stato:"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Level"
-msgstr "nivelo"
+#: ../../standalone/drakbackup_.c:3946
+#, fuzzy
+msgid "Build Backup"
+msgstr "Malbona rezerva dosiero"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Change the printing system"
-msgstr "Konfiguru retumon"
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+#, fuzzy
+msgid "Restore"
+msgstr "Restaýru de dosiero"
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4189
msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
msgstr ""
-"Via sistemo subtenas multkapo-konfiguradon.\n"
-"Kion vi deziras fari?"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr "muntado malsukcesis: "
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "Konfiguru servojn"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
+#: ../../standalone/drakbackup_.c:4195
+msgid ""
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4209
+#, fuzzy
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 ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "La sekvaj paka¼oj estos instalataj"
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "Kerna bildo"
+#: ../../standalone/drakbackup_.c:4232
+#, fuzzy
+msgid "Please select data to restore..."
+msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../services.pm:1
-#, c-format
-msgid "Remote Administration"
-msgstr "Malproksima administrado"
+#: ../../standalone/drakbackup_.c:4267
+#, fuzzy
+msgid "Please select media for backup..."
+msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-msgstr ""
+#: ../../standalone/drakbackup_.c:4275
+#, fuzzy
+msgid "Please select data to backup..."
+msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../modules.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
-msgstr "PCMCIA-subteno ne ekzistas plu por 2.2-kernoj. Bonvole uzu 2.4-kernon."
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Selected All"
-msgstr "Elektu dosieron"
+"No configuration file found \n"
+"please click Wizard or Advanced."
+msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Webmin Service"
-msgstr "Servilo"
+#: ../../standalone/drakbackup_.c:4382
+#, fuzzy
+msgid "Backup system files"
+msgstr "Malbona rezerva dosiero"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
-msgstr "aparato"
+#: ../../standalone/drakbackup_.c:4384
+#, fuzzy
+msgid "Backup user files"
+msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Enter the directory to save to:"
-msgstr "Bonvole, provu la muson"
+#: ../../standalone/drakbackup_.c:4386
+#, fuzzy
+msgid "Backup other files"
+msgstr "Malbona rezerva dosiero"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
-msgstr "Grekio"
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
+msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "Ĉiuj"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Kiun printsistemo vi deziras uzi?"
+#: ../../standalone/drakbackup_.c:4416
+#, fuzzy
+msgid "Sending files..."
+msgstr "Konservu en dosiero"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
-msgstr "Julio"
+#: ../../standalone/drakbackup_.c:4500
+#, fuzzy
+msgid "Backup Now from configuration file"
+msgstr "Reta Konfigura¼o"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Prints into %s"
-msgstr ", presante sur %s"
+#: ../../standalone/drakbackup_.c:4505
+#, fuzzy
+msgid "View Backup Configuration."
+msgstr "Reta Konfigura¼o"
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "Eraro okazis"
+#: ../../standalone/drakbackup_.c:4526
+#, fuzzy
+msgid "Wizard Configuration"
+msgstr "LAN Konfigura¼o"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Ĉi tiu pakaĵo devus esti promociata.\n"
-"Ĉu vi certas ke vi deziras malelekti Äin?"
+#: ../../standalone/drakbackup_.c:4531
+#, fuzzy
+msgid "Advanced Configuration"
+msgstr "LAN Konfigura¼o"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "Tamila (skribmaÅina)"
+#: ../../standalone/drakbackup_.c:4536
+#, fuzzy
+msgid "Backup Now"
+msgstr "Dosiersistemo konfiguro"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4624
msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
+"options description:\n"
+"\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
+#: ../../standalone/drakbackup_.c:4654
+msgid ""
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
+#: ../../standalone/drakbackup_.c:4662
+msgid ""
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
+#: ../../standalone/drakbackup_.c:4701
+msgid ""
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
+"\n"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:4727
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
-"Ne estas medio en aparato %s.\n"
-"Bonvole enÅovu Äin."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4729
msgid ""
-"Directory %s already contains data\n"
-"(%s)"
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-"Dosierujo %s entenas jam datenojn\n"
-"(%s)"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Printer on NetWare server"
-msgstr "Printservilo"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Donu kvanton de memoro en MB"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr "vendredo"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Konektu al la Interreto"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "Vera nomo"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "done"
-msgstr "Finata"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid "Higher"
-msgstr "Alta"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4732
msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
+"Description:\n"
"\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
"\n"
-"You can visit our hardware database at:\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
+"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
+"\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Can't find %s on %s"
-msgstr "Ne povis malfermi %s por skribi: %s\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "Japana 106 klavoj"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
+#: ../../standalone/drakbackup_.c:4769
+msgid ""
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
+#: ../../standalone/drakbackup_.c:4778
+msgid ""
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Burkina Faso"
-msgstr "Burkino"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "June"
-msgstr "Junio"
+msgid "Installation of %s failed. The following error occured:"
+msgstr "Instalado de %s malsukcesis. La sekvanta eraro okazis:"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use scanners on remote computers"
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Delete selected rule"
-msgstr "Malinstalu printvicon"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Malproksima CUPS-a servilo"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "EnÅovu disketon en %s"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
-msgstr "Maldivoj"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "kompakta"
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+msgid "Standalone Tools"
+msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
-msgstr "1 minuto"
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "type: fat"
-msgstr "Speco: "
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Konekti al la interreto"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "on channel %d id %d\n"
-msgstr "ĉe kanalo %d identigaĵo %d\n"
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "Spertulo"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
-msgstr ""
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Muso"
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr "Laoso"
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Malproksima printilo"
-#: ../advertising/04-configuration.pl:1
-#, 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!"
-msgstr ""
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Opuza nomo"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
msgstr ""
-"Ne ekzistas FAT-a subdisko por regrandecigi\n"
-"(aŭ ne estas sufiĉe da spaco)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr ""
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printilo"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
-msgstr ""
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "ISDN-a Konfigura¼on"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr ""
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Application:"
+msgstr "Aýtentikigado"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr "(E)IDE/ATA-kontroliloj"
+#: ../../standalone/drakbug_.c:76
+#, fuzzy
+msgid "Package: "
+msgstr "Elektado de Paka¼oj"
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "Printservilo"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Custom configuration"
-msgstr "Interreta Konfigurado"
+#: ../../standalone/drakbug_.c:78
+#, fuzzy
+msgid "Release: "
+msgstr "Bonvole atendu"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbug_.c:93
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"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
"\n"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr "Sanpetro-kaj-Mikelono"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
-msgstr "Septembro"
+#: ../../standalone/drakbug_.c:112
+#, fuzzy
+msgid "Report"
+msgstr "porto"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr ""
+#: ../../standalone/drakbug_.c:148
+#, fuzzy
+msgid "Not installed"
+msgstr "Eliru instalprogramon"
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
-msgstr "Portugalujo"
+#: ../../standalone/drakbug_.c:160
+#, fuzzy
+msgid "Package not installed"
+msgstr "Eliru instalprogramon"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "Ĉu vi havas alian?"
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", printing to %s"
-msgstr ", presante sur %s"
+#: ../../standalone/drakbug_.c:180
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr ""
+"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaý la instalado"
-#: ../../network/network.pm:1
+#: ../../standalone/drakconnect_.c:75
#, fuzzy, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Bonvole, provu la muson"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to normal mode"
-msgstr "ÅœanÄu al Normala reÄimo"
+msgid "Network configuration (%d adapters)"
+msgstr "ISDN-a Konfigura¼on"
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
-msgstr "Genera"
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+#, fuzzy
+msgid "Profile: "
+msgstr "muntado malsukcesis: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "cilindro %d Äis cilindro %d\n"
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakconnect_.c:125
msgid "New profile..."
msgstr ""
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
-#, c-format
-msgid "NONE"
+#: ../../standalone/drakconnect_.c:131
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "Al kiu disko vi deziras movi?"
+#: ../../standalone/drakconnect_.c:157
+msgid "Hostname: "
+msgstr "Poþtejo: "
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Display logo on Console"
-msgstr ""
+#: ../../standalone/drakconnect_.c:164
+#, fuzzy
+msgid "Internet access"
+msgstr "Interreto"
-#: ../../any.pm:1
-#, c-format
-msgid "Windows Domain"
-msgstr "Vindozo Domajno"
+#: ../../standalone/drakconnect_.c:177
+msgid "Type:"
+msgstr "Speco:"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Saami (norwegian)"
-msgstr "Dvorak-a (Norvega)"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "Kluzo:"
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Interface %s (on network %s)"
-msgstr "Interfaco %s"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+#, fuzzy
+msgid "Interface:"
+msgstr "Interreto"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
+msgstr "Stato:"
+
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
-msgstr "valis-kaj-futuna"
+#: ../../standalone/drakconnect_.c:216
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "Konfiguru servojn"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr ""
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+msgid "LAN configuration"
+msgstr "LAN Konfigura¼o"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
-msgstr ""
+#: ../../standalone/drakconnect_.c:228
+msgid "Driver"
+msgstr "Pelilo"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Ne pli da informo\n"
-"pri tiu servo, bedaÅ­rinde."
+#: ../../standalone/drakconnect_.c:228
+msgid "Interface"
+msgstr "Interfaco"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr ""
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
+msgstr "Protokolo"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
+#: ../../standalone/drakconnect_.c:228
+#, fuzzy
+msgid "State"
+msgstr "Stato:"
+
+#: ../../standalone/drakconnect_.c:240
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "Konfiguru lokan reton"
+
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "Insuloj MarÅalaj"
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "Soræisto..."
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "Ĉu tio ĉi pravas?"
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
+msgstr "Apliku"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Windows (FAT32)"
-msgstr "Forigu Vindozon"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Connected"
+msgstr "Konektita"
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr "Root-pasvorto"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Not connected"
+msgstr "Ne konektita"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
-msgstr ""
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
+msgstr "Konektu..."
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "DVDRAM device"
-msgstr "aparato"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
+msgstr "Malkonektu..."
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
+#: ../../standalone/drakconnect_.c:400
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:427
msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
msgstr ""
-"Vi ne havas interÅanÄan subdiskon\n"
-"\n"
-"Ĉu vi deziras daŭri tamen?"
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Version: "
-msgstr "Versio: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Server IP missing!"
-msgstr "Printilaj PoÅtejo"
+#: ../../standalone/drakconnect_.c:449
+msgid "LAN Configuration"
+msgstr "LAN Konfigura¼o"
-#: ../../lang.pm:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Suriname"
-msgstr "Surinamo"
-
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid "Use a floppy"
-msgstr "Konservu sur disketo"
+msgid "Adapter %s: %s"
+msgstr "Adaptilo %s: %s"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
-msgstr "Ebligu ACPI"
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
+msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
-msgstr "Äœibraltaro"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+#, fuzzy
+msgid "activate now"
+msgstr "Aktiva"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Do nothing"
-msgstr "Faru nenion"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+#, fuzzy
+msgid "deactivate now"
+msgstr "Aktiva"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Delete Client"
-msgstr "Forigu"
+#: ../../standalone/drakconnect_.c:499
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "Speco de dosiersistemo: "
+#: ../../standalone/drakconnect_.c:556
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Starting network..."
-msgstr "Startas vian konektaĵon..."
+#: ../../standalone/drakconnect_.c:580
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Interreta konekta¼o kaj konfiguro"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
-msgstr "Vjetnamio"
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Interreta konekta¼o kaj konfiguro"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/_Fields description"
-msgstr "Priskribo"
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+msgid "Connection type: "
+msgstr "Speco de konekto"
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
-msgstr ""
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Kluzo"
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Help"
-msgstr "Helpo"
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Your personal phone number"
-msgstr "Via persona telefonnumero"
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-iso8859-3,*"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which size do you want to keep for Windows on"
-msgstr "Kiun grandecon vi deziras teni por Vindozo?"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Module name"
+msgstr "Modulonomo"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"ProvpaÄo(j)n estis sendataj al la printila demono.\n"
-"Ĉi tiu eble postulas iom da tempo antaŭ ol la printilo komencas.\n"
-"Ĉu Äi Äuste funkcias?"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Size"
+msgstr "Grandeco"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Username required"
-msgstr "Salutnomo"
+#: ../../standalone/drakfloppy_.c:45
+msgid "drakfloppy"
+msgstr "drakfloppy"
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Device"
-msgstr "Aparato: "
+#: ../../standalone/drakfloppy_.c:63
+msgid "boot disk creation"
+msgstr "Startdiskokreado"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr "defaýlta"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakfloppy_.c:87
#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Vindozo 9x/NT) Printilaj Opcioj"
+msgid "DrakFloppy Error: %s"
+msgstr "Eraro DrakFloppy: %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
-msgstr ""
+#: ../../standalone/drakfloppy_.c:98
+msgid "kernel version"
+msgstr "Kerna versio"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr ""
+#: ../../standalone/drakfloppy_.c:104
+msgid "General"
+msgstr "Øenerala"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakfloppy_.c:109
+msgid "Expert Area"
+msgstr "Spertulejo"
+
+#: ../../standalone/drakfloppy_.c:112
msgid "mkinitrd optional arguments"
msgstr "mkinitrd opciaj argumentoj"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
-msgstr ""
+#: ../../standalone/drakfloppy_.c:113
+msgid "Add a module"
+msgstr "Aldonu modulon"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protokolo por la cetera mondo"
+#: ../../standalone/drakfloppy_.c:133
+msgid "force"
+msgstr "devigu"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Print test pages"
-msgstr "Printas provpaÄo(j)n..."
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
+msgstr "se bezonata"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Activate now"
-msgstr "Aktiva"
+#: ../../standalone/drakfloppy_.c:135
+msgid "omit scsi modules"
+msgstr "forlasu SCSI-ajn modulojn"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
-msgstr "64 MB aÅ­ pli"
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
+msgstr "forlasu RAID-ajn modulojn"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
+#: ../../standalone/drakfloppy_.c:172
+msgid "Remove a module"
+msgstr "Forprenu modulon"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr ""
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
+msgstr "Skribu"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Not formatted\n"
-msgstr "Ne formatita\n"
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
+msgstr "Konstruu la diskon"
-#: ../../standalone/draksec:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "Periodic Checks"
-msgstr ""
-
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "PXE Server Configuration"
-msgstr "LAN Konfiguraĵo"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup the system files before:"
-msgstr "Malbona rezerva dosiero"
+msgid "Be sure a media is present for the device %s"
+msgstr "Kontrolu ke medio estas en la aparato %s"
-#: ../../security/level.pm:1
+#: ../../standalone/drakfloppy_.c:341
#, fuzzy, c-format
msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
-"Ĉi tiu estas la normala sekureco rekomendata por komputilo kiu estos uzata\n"
-"por konekti al la Interreto kiel kliento. Nun estas sekurecaj kontroloj."
-
-#: ../../any.pm:1
-#, c-format
-msgid "First floppy drive"
-msgstr "Unua disketa drajvo"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Dosiero/_Foriru"
+"Ne estas medio en aparato %s.\n"
+"Bonvole enþovu øin."
-#: ../../keyboard.pm:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "Dvorak"
-msgstr "Dvorak-a"
+msgid "Unable to fork: %s"
+msgstr "Ne povis forki: %s"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakfloppy_.c:349
#, c-format
-msgid "Choose the new size"
-msgstr "Elektu la novan grandecon"
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Ne povis øuste fermi mkbootdisk-on: \n"
+" %s \n"
+" %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Media class"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Faroe Islands"
-msgstr "Faroaj Insuloj"
+#: ../../standalone/drakfont_.c:242
+#, fuzzy
+msgid "no fonts found"
+msgstr "neniu retkarto trovita"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Restart XFS"
-msgstr "limigu"
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+#, fuzzy
+msgid "done"
+msgstr "Finata"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake will not be started now."
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Model name"
-msgstr "Modulonomo"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
-msgstr "Albanio"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr "Brita Teritorio de Hindia Oceano"
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Normal Mode"
-msgstr "Normala Modalo"
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
+#: ../../standalone/drakfont_.c:359
+msgid "Fonts copy"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer connection type"
-msgstr "Disdividado de Interreta Konekto"
+#: ../../standalone/drakfont_.c:363
+#, fuzzy
+msgid "True Type fonts installation"
+msgstr "Preparas instaladon"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
-msgstr "Via komputilo ne havas retadaptilon!"
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network %s"
-msgstr "Reto %s"
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
-msgstr "Malajalama"
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connect %s"
-msgstr "Konektu"
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Restarting CUPS..."
-msgstr "limigu"
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Presanta/skananta foton karton per \"%s\""
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
+msgstr ""
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
msgstr ""
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Duobla surmetingo %s"
+#: ../../standalone/drakfont_.c:459
+#, fuzzy
+msgid "Restart XFS"
+msgstr "limigu"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
msgstr ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "Konfigurado de Konekto"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|Generic"
-msgstr "Nekonata|Genera"
+#: ../../standalone/drakfont_.c:528
+#, fuzzy
+msgid "xfs restart"
+msgstr "limigu"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
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"
+"Before installing any fonts, be sure that you have the right to use and "
+"install them on your system.\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."
+"-You can install the fonts using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-msgstr "Mianmaro"
-
-#: ../../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
-#, c-format
-msgid "Quit"
-msgstr "Ĉesu"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "AÅ­tomate disponigu"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Ĉu kontrolas malbonajn blokojn?"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Other MultiMedia devices"
-msgstr "Alia bildson-aparatoj"
+#: ../../standalone/drakfont_.c:621
+#, fuzzy
+msgid "Fonts Importation"
+msgstr "Formatu subdiskojn"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "burner"
-msgstr "Printilo"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Bug Description/System Information"
+#: ../../standalone/drakfont_.c:658
+msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid " (Default is all users)"
-msgstr "Loka printilo"
+#: ../../standalone/drakfont_.c:669
+#, fuzzy
+msgid "Advanced Options"
+msgstr "LAN Konfigura¼o"
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "No remote machines"
-msgstr "Malproksima printilo"
+#: ../../standalone/drakfont_.c:677
+#, fuzzy
+msgid "Font List"
+msgstr "Surmetingo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:737
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@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"
+" 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"
"\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 ""
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "AÅ­tentikiga NIS"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Opcio ``Limigu komandliniajn opciojn'' ne estas utila sen pasvorto"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "UnuiÄintaj Arabaj Emirlandoj"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "I/O 0 (Eneligo 0) de Karto"
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:862
+#, fuzzy
+msgid "Choose the applications that will support the fonts:"
+msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "Tajlando"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "I/O 1 (Eneligo 1) de Karto"
+#: ../../standalone/drakfont_.c:877
+#, fuzzy
+msgid "StarOffice"
+msgstr "Oficejo"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
-msgstr "Serĉu:"
+#: ../../standalone/drakfont_.c:884
+#, fuzzy
+msgid "Abiword"
+msgstr "Æesigu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "Kazaĥstano"
+#: ../../standalone/drakfont_.c:891
+#, fuzzy
+msgid "Generic Printers"
+msgstr "Printilo"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Write"
-msgstr "Eritreo"
+#: ../../standalone/drakfont_.c:1005
+#, fuzzy
+msgid "Install List"
+msgstr "Instalu sistemon"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
msgstr ""
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Linuks-Mandrejka Instalado %s"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
-msgstr "Nekonata pelilo"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "Taja klavaro"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr "Buvet-Insulo"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "Telefon-konektaj opcioj"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-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."
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
msgstr ""
-"ÅœanÄu vian KDROM!\n"
-"\n"
-"Bonvole, enÅovu la KDROM-on etikedatan \"%s\" en via drajvo kaj klaku \"Jes"
-"\"\n"
-"kiam vi finos.\n"
-"Se vi ne havas Äin, klaku \"Nuligu\" por eviti la instaladon de ĉi tiu KDROM."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "Pola"
+#: ../../standalone/drakfont_.c:1116
+#, fuzzy
+msgid "Selected All"
+msgstr "Elektu dosieron"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Mandrake Online"
-msgstr "Konekti al la interreto"
+#: ../../standalone/drakfont_.c:1120
+#, fuzzy
+msgid "Remove List"
+msgstr "Malproksima printilo"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+msgid "Initials tests"
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid ", multi-function device on a parallel port"
-msgstr "Presilo sur paralela pordo #%s"
+#: ../../standalone/drakfont_.c:1145
+#, fuzzy
+msgid "Copy fonts on your system"
+msgstr "Via komputilo ne havas retadaptilon!"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
msgstr ""
-"Mi ne detektas eterretan retadaptilom sur via sistemo. Bonvole lanĉu la\n"
-"aparatokonfigurilon."
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "Retmasko"
+#: ../../standalone/drakfont_.c:1153
+#, fuzzy
+msgid "Post Install"
+msgstr "Instalu"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "No hard drives found"
-msgstr "Neniaj durdiskoj trovitaj"
+#: ../../standalone/drakfont_.c:1178
+#, fuzzy
+msgid "Remove fonts on your system"
+msgstr "Via komputilo ne havas retadaptilon!"
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "2 butonoj"
+#: ../../standalone/drakfont_.c:1182
+#, fuzzy
+msgid "Post Uninstall"
+msgstr "Eliru instalprogramon"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "LoÄiteka CC serio"
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
+msgstr "Disdividado de Interreta Konekto"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "Kia estas via ISDN-a konektaĵo?"
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "Etikedo"
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "Konservu sur disketo"
+#: ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Check open ports"
-msgstr "detektita en pordo %s"
+#: ../../standalone/drakgw_.c:130
+msgid "disable"
+msgstr "malebligu"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Edit selected printer"
-msgstr "Malinstalu printvicon"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
+msgstr "forsendu"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer auto-detection"
-msgstr "Malproksima printilo"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "reconfigure"
+msgstr "rekonfiguru"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Kiu el la sekvaj estas via ISDN-karto?"
+#: ../../standalone/drakgw_.c:133
+#, fuzzy
+msgid "Disabling servers..."
+msgstr "Detektas aparatojn..."
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
-"This service provides NFS server functionality, which is configured via the\n"
-"/etc/exports file."
-msgstr ""
-"NFS estas populara protokolo por dosierdistribuado tra TCP/IP retoj.\n"
-"Ĉi tiu servo provizas NFS dosierÅlosado, kiun vi konfiguras per la\n"
-"/etc/exports dosiero."
+#: ../../standalone/drakgw_.c:142
+#, fuzzy
+msgid "Internet connection sharing is now disabled."
+msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Msec"
-msgstr "Muso"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:150
+#, fuzzy
msgid ""
-"=> Notice, a label changed:\n"
-"%s"
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
+"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
+#: ../../standalone/drakgw_.c:154
+msgid "enable"
+msgstr "ebligu"
+
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Via elekto? (0/1, defaÅ­lo '%s') "
+#: ../../standalone/drakgw_.c:166
+#, fuzzy
+msgid "Internet connection sharing is now enabled."
+msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:183
+#, fuzzy
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"
+"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"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
"\n"
-"Click on \"%s\" if you wish to select partitions that will be checked for\n"
-"bad blocks on the disk."
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
+"Nun kiam via Interreta konekto estas konfigurata,\n"
+"vi povas konfiguri vian komputilon por disdividi øian Interretan konekton.\n"
+"Notu: vi bezonas dediæan Retadaptilon por konfiguri Lokan Reton (LAN).\n"
+"\n"
+"Æu vi deziras konfiguri Disdividadon de Interreta Konekto?\n"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakgw_.c:211
#, c-format
-msgid "French"
-msgstr "Franca"
+msgid "Interface %s (using module %s)"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/drakgw_.c:212
#, c-format
-msgid "Czech (QWERTY)"
-msgstr "Ĉeĥa (QWERTY)"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Allow X Window connections"
-msgstr "Winmodem-konekto"
-
-#: ../../standalone/service_harddrake:1
-#, fuzzy, c-format
-msgid "Hardware probing in progress"
-msgstr "Duobla surmetingo %s"
-
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Net Device"
-msgstr "Printservilo"
+msgid "Interface %s"
+msgstr "Interfaco %s"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "Resumo"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr "Via komputilo ne havas retadaptilon!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:221
msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Next"
-msgstr "Sekvanta ->"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Vi ne povas instali la startÅargilon en %s-subdiskon\n"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
msgstr ""
+"Mi ne detektas eterretan retadaptilom sur via sistemo. Bonvole lanæu la\n"
+"aparatokonfigurilon."
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
-msgstr "Porto-Riko"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp/zeroconf)"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr "Reta interfaco"
-#: ../../standalone/drakautoinst:1
+#: ../../standalone/drakgw_.c:228
#, c-format
msgid ""
+"There is only one configured network adapter on your system:\n"
"\n"
-"Welcome.\n"
+"%s\n"
"\n"
-"The parameters of the auto-install are available in the sections on the left"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
+"Ekzitas nur unu konfigurita retadaptilo sur via sistemo:\n"
+"\n"
+"%s\n"
+"\n"
+"Æu vi deziras konfiguri vian Lokan Reton (LAN) kun æi tiu adaptilo?"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/drakgw_.c:235
msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
msgstr ""
+"Bonvole elektu kiun retadaptilon estos konektata al via Loka Reto (LAN)."
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Telnet server"
-msgstr "X servilo"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Litova \"numero-vica\" QWERTY-a"
+#: ../../standalone/drakgw_.c:261
+#, fuzzy
+msgid "Network interface already configured"
+msgstr "Ekrano ne estas konfigurata"
-#: ../../install_any.pm:1
+#: ../../standalone/drakgw_.c:262
#, c-format
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
+"Warning, the network adapter (%s) is already configured.\n"
"\n"
+"Do you want an automatic re-configuration?\n"
"\n"
-"Do you really want to remove these packages?\n"
+"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
-msgstr "Angilo"
+#: ../../standalone/drakgw_.c:267
+#, fuzzy
+msgid "Automatic reconfiguration"
+msgstr "Post-instala konfigurado"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "NIS Domajno"
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "Antarktio"
+#: ../../standalone/drakgw_.c:268
+#, fuzzy
+msgid "Show current interface configuration"
+msgstr "Interreta Konfigurado"
+
+#: ../../standalone/drakgw_.c:269
+#, fuzzy
+msgid "Current interface configuration"
+msgstr "Interreta Konfigurado"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:270
#, c-format
msgid ""
+"Current configuration of `%s':\n"
"\n"
-"- User Files:\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
-msgstr "Kroĉ-opcioj"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Jamaica"
-msgstr "Jamajko"
-
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:283
msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
+"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"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
+"\n"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Bonvole atenduj, mi preparas instaladon..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "Ĉeĥa (QWERTZ)"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr ""
+#: ../../standalone/drakgw_.c:290
+#, fuzzy
+msgid "Local Network adress"
+msgstr "neniu retkarto trovita"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
+#: ../../standalone/drakgw_.c:294
+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/draksplash:1
-#, fuzzy, c-format
-msgid "You must choose an image file first!"
-msgstr "Printila Aparato URI"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore from Hard Disk."
-msgstr "RestaÅ­ru de disketo"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "Aldonu al LVM (Redundanca Aro de Malmultekostaj Diskoj)"
+#: ../../standalone/drakgw_.c:300
+#, fuzzy
+msgid "(This) DHCP Server IP"
+msgstr "IP de SMB servilo"
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "DNA servilo"
+#: ../../standalone/drakgw_.c:301
+#, fuzzy
+msgid "The DNS Server IP"
+msgstr "IP de SMB servilo"
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr "Trinidado kaj Tobago"
+#: ../../standalone/drakgw_.c:302
+#, fuzzy
+msgid "The internal domain name"
+msgstr "Neniu printilo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Host name or IP."
-msgstr "PoÅtejo"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Edit"
-msgstr "/_Redaktu"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "simpla"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "ForviÅu ĉion"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "No test pages"
-msgstr "Jes, printu ambaÅ­ de la provpaÄojn"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falklandaj Insuloj (Malvinoj)"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptilo %s: %s"
-
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Boot disk creation"
-msgstr "Startdiskokreado"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
-msgstr "lundo"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown model"
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "authentication"
-msgstr "AÅ­tentikigado"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup Now"
-msgstr "Dosiersistemo konfiguro"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/_Dosiero"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
msgstr ""
-#: ../../services.pm:1
-#, 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."
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
msgstr ""
-"Lanĉu pakaĵfiltradon por Linuksa kerno 2.2-serioj, por konfiguri\n"
-"brulmuron por protekti vian maÅinon kotraÅ­ elretaj atakoj."
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Editable"
-msgstr "malebligu"
-
-#: ../../network/ethernet.pm:1
-#, fuzzy, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-"Kiun dhcp-an klienton vi deziras uzi?\n"
-"La defaÅ­lto estas dhcp-client"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr "Tamila (ISCII)"
+msgid "Potential LAN address conflict found in current config of %s!\n"
+msgstr "Ebla konflikto pri Loka-Reta adreso trovata en nuna konfiguro de %s!\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
-msgstr "majota"
+#: ../../standalone/drakgw_.c:335
+msgid "Configuring..."
+msgstr "Mi konfiguras..."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
+"Mi konfiguras komandodosierojn, instalas programojn, startas servilojn..."
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "%d KB\n"
-msgstr "Grandeco: %d KB\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Kreas aÅ­toinstalan disketon"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Searching for scanners ..."
-msgstr "Loka printilo"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
-msgstr "Rusio"
-
-#: ../../steps.pm:1
+#: ../../standalone/drakgw_.c:372
#, c-format
-msgid "Partitioning"
-msgstr "Subdiskigante"
+msgid "Problems installing package %s"
+msgstr "Problemoj instalante paka¼on %s"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
+#: ../../standalone/drakgw_.c:505
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Syslog"
-msgstr "sistema logdosiero (syslog)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create catalog!"
+#: ../../standalone/drakgw_.c:523
+#, fuzzy
+msgid "The setup has already been done, but it's currently disabled."
msgstr ""
+"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../advertising/11-mnf.pl:1
-#, 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."
+#: ../../standalone/drakgw_.c:524
+#, fuzzy
+msgid "The setup has already been done, and it's currently enabled."
msgstr ""
+"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
-msgstr "Ne sufiĉe da libera spaco por aŭtomate disponigi novajn subdiskojn"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "Difinu pasvorton de root"
+#: ../../standalone/drakgw_.c:525
+#, fuzzy
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable IP spoofing protection"
-msgstr ""
+#: ../../standalone/drakgw_.c:531
+#, fuzzy
+msgid "Internet connection sharing configuration"
+msgstr "Interreta konekta¼o kaj konfiguro"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:539
+#, fuzzy, c-format
msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
-msgstr ""
-"Ne ekzistas libera pelilo por via sonkarto (%s), sed ekzistas proprieta "
-"pelilo ĉe \"%s\"."
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
+msgstr "Disdividado de Interreta Konekto"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Group :"
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "group"
msgstr "Laborgrupo"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Post vi regrandecigas subdiskon %s, ĉiuj datenoj en ĉi tiu subdisko estos\n"
-"perdata"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Internet connection configuration"
-msgstr "Interreta konektaĵo kaj konfiguro"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
+#: ../../standalone/drakperm_.c:36
+msgid "path"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "USB"
-msgstr ""
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "permissions"
+msgstr "subdisko: %s"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
-msgstr ""
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "user"
+msgstr "Salutnomo"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_About..."
-msgstr "/Helpo/_Pri..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
-msgstr "bengala"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
-msgstr "Prefero: "
+#: ../../standalone/drakperm_.c:44
+#, fuzzy
+msgid "delete"
+msgstr "Forigu"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
+#: ../../standalone/drakperm_.c:45
+msgid "edit"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "Kreu praÅargdisketon"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "Salomon-Insuloj"
-
-#: ../../standalone/mousedrake:1
-#, fuzzy, c-format
-msgid "Please test your mouse:"
-msgstr "Bonvole, provu la muson"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(modulo %s)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
-msgstr "Laborgrupo"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer host name or IP"
-msgstr "Printilaj PoÅtejo"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "down"
+#: ../../standalone/drakperm_.c:46
+#, fuzzy
+msgid "Down"
msgstr "Finata"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Path or Module"
-msgstr ""
+#: ../../standalone/drakperm_.c:47
+#, fuzzy
+msgid "add a rule"
+msgstr "Aldonu modulon"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Show current interface configuration"
-msgstr "Interreta Konfigurado"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Add Printer"
-msgstr "Printilo"
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:51
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."
+"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 ""
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Development"
-msgstr "Programisto"
-
-#: ../../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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Done"
-msgstr "Finata"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Web Server"
-msgstr "Interret-servilo"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "Ĉilio"
+#: ../../standalone/drakperm_.c:56
+#, fuzzy
+msgid "Add a new rule at the end"
+msgstr "Neniu printilo"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakperm_.c:58
+msgid "Up selected rule one level"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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!"
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "(jam aldonis %s)"
-
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Bootloader installation in progress"
-msgstr "StartÅargila instalado"
+#: ../../standalone/drakperm_.c:60
+#, fuzzy
+msgid "Delete selected rule"
+msgstr "Malinstalu printvicon"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
+#: ../../standalone/drakperm_.c:231
+#, fuzzy
+msgid "Current user"
+msgstr "Akceptu uzanto"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
+#: ../../standalone/drakperm_.c:236
+#, fuzzy
+msgid "Permissions"
+msgstr "Versio: %s\n"
+
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Add/Del Users"
-msgstr "Aldonu uzanto"
+#: ../../standalone/drakperm_.c:238
+#, fuzzy
+msgid "Property"
+msgstr "Pordo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
msgstr ""
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "Konfiguraĵoj"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
+#: ../../standalone/drakperm_.c:296
+msgid ""
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr "Jen la kompleta listo de atingeblaj landoj"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Alternative test page (A4)"
-msgstr "Printas provpaÄo(j)n..."
+#: ../../standalone/drakperm_.c:297
+msgid "Use owner id for execution"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, 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."
+#: ../../standalone/drakperm_.c:298
+msgid "Use group id for execution"
msgstr ""
-"Se vi havas ĉiujn de la KDROM-oj en la listo sube, klaku \"Jes\".\n"
-"Se vi havas neniujn de ĉi tiuj KDROM-oj, klaku \"Nuligu\".\n"
-"Se vi mankas nur iujn de la KDROM-oj, malelektu ilin, kaj poste klaku \"Jes"
-"\"."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP (Pasvorta AÅ­tentikigada Protokolo)"
+#: ../../standalone/drakperm_.c:304
+#, fuzzy
+msgid "Path selection"
+msgstr "Elektado de individuaj paka¼oj"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup user files"
-msgstr "Malbona rezerva dosiero"
+#: ../../standalone/drakperm_.c:350
+#, fuzzy
+msgid "user :"
+msgstr "Salutnomo"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "New"
-msgstr "Nova"
+#: ../../standalone/drakperm_.c:352
+#, fuzzy
+msgid "group :"
+msgstr "Laborgrupo"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Ne konektita"
+
+#: ../../standalone/draksound_.c:47
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"
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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 ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/draksound_.c:54
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."
+"\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 ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "Åœargu de disketo"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "The following printer was auto-detected. "
-msgstr "La sekvaj pakaĵoj estos malinstalataj"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Uses command %s"
-msgstr "%s sur %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
+#: ../../standalone/draksplash_.c:21
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "Norvega"
+#: ../../standalone/draksplash_.c:67
+#, fuzzy
+msgid "first step creation"
+msgstr "Startdiskokreado"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Searching for new scanners ..."
-msgstr "Loka printilo"
+#: ../../standalone/draksplash_.c:70
+#, fuzzy
+msgid "final resolution"
+msgstr "Distingivo"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr ""
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+#, fuzzy
+msgid "choose image file"
+msgstr "Elektu agon"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr ""
+#: ../../standalone/draksplash_.c:72
+#, fuzzy
+msgid "Theme name"
+msgstr "Opuza nomo"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "select path to restore (instead of /)"
-msgstr "Bonvole, elektu la specon de via muso."
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
+#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Konfiguru servojn"
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr "Kartvelujo"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "Ĉinio"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Reading data of installed printers..."
-msgstr "Loka printilo"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
+#: ../../standalone/draksplash_.c:90
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "servilo"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "EnÅovu FAT-formatitan disketon en drajvo %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
+#: ../../standalone/draksplash_.c:91
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Bonvole atendu... Mi aplikas la konfiguraĵon"
-
-#. -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
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Bonvenon al GRUB la elektilo por mastrumaj sistemoj!"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
-msgstr "SCSI-kontroliloj"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
msgstr ""
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Zeroconf Host name"
-msgstr "PoÅtejo"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
+#: ../../standalone/draksplash_.c:95
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configure CUPS printing system"
-msgstr "Konfiguru retumon"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "Ekvadoro"
-
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Add an item"
-msgstr "Aldonu uzulon"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "China (Hong Kong)"
-msgstr "Hongkongo"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr "Ne detektis sonkarto. Provu \"harddrake\" post instalado"
-
-#: ../../network/drakfirewall.pm:1
-#, 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."
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Shell"
-msgstr "Åœelo"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sao Tome and Principe"
-msgstr "Sao-Tomeo kaj Principeo"
+#: ../../standalone/draksplash_.c:113
+#, fuzzy
+msgid "Preview"
+msgstr "aparato"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone/draksplash_.c:115
+#, fuzzy
+msgid "Save theme"
+msgstr "Instalu sistemon"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
-msgstr "Ne povas akcepti uzante uzulnomon %s (ĉu malÄusta pasvorto?)"
+#: ../../standalone/draksplash_.c:116
+#, fuzzy
+msgid "Choose color"
+msgstr "Elektu ekranon"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "AzerbajÄana (latina)"
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Package not installed"
-msgstr "Eliru instalprogramon"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
+msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, c-format
-msgid "American Samoa"
-msgstr "Amerika Samoo"
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr ""
-#: ../advertising/12-mdkexpert.pl:1
-#, fuzzy, c-format
-msgid "Become a MandrakeExpert"
-msgstr "Spertulo"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Protocol"
-msgstr "Protokolo"
+#: ../../standalone/draksplash_.c:428
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Printilan Konekton"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Copy fonts on your system"
-msgstr "Via komputilo ne havas retadaptilon!"
+#: ../../standalone/draksplash_.c:449
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Printila Aparato URI"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
-msgstr ""
+#: ../../standalone/draksplash_.c:458
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Detektas aparatojn..."
-#: ../../standalone/harddrake2:1
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
#, c-format
-msgid "Bogomips"
+msgid "%s BootSplash (%s) preview"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Interreta Konfigurado"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakxtv_.c:46
msgid ""
+"XawTV isn't installed!\n"
"\n"
-" DrakBackup Report Details\n"
"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
-msgstr ""
+#: ../../standalone/drakxtv_.c:63
+#, fuzzy
+msgid "Canada (cable)"
+msgstr "Kanada (Kebeka)"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "Vi ne povas elektu/malelektu ĉi tiun pakaĵon"
-
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "Averto"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remote host name"
-msgstr "Malproksima poÅtejo"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr "aliro al X-programoj"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "Kalkulante la liberan spacon sur la Vindoza subdisko"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Rekalkulu"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
+msgstr ""
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Italy"
-msgstr "Italio"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "East Europe"
+msgstr "Eýropo"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
-msgstr "Kajmana Insularo"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Franca"
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "eraro dum malmunti %s: %s"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "Ireland"
+msgstr "Islanda"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "Nomo de printilo"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "West Europe"
+msgstr "Eýropo"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
-msgstr "malebligu"
+#: ../../standalone/drakxtv_.c:66
+#, fuzzy
+msgid "Australia"
+msgstr "seria"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do it!"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Select model manually"
-msgstr "Malproksima printilo"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Format"
-msgstr "Formatu"
-
-#: ../../network/adsl.pm:1
-#, 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'"
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
msgstr ""
-"La plej ofte uzata maniero por konekti per ADSL estas pppoe.\n"
-"Kelkaj konektoj uzas pptp, malmultaj uzas dhcp.\n"
-"Se vi ne scias, elektu 'uzu pppoe'"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
-msgstr "Diversaj"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
-msgstr "Zip"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Left Alt key"
-msgstr "Maldekstra \"Vindozo\"-klavo"
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Load setting"
-msgstr "Formatas"
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:102
msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
+"Please,\n"
+"type in your tv norm and country"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Set selected printer as the default printer"
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
msgstr ""
-"Ĉu vi deziras konfiguri tiun ĉi presilon (\"%s\")\n"
-"kiel defaÅ­ltan presilon?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
-msgstr "Albana"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "Litovio"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "Kompakta"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Mi detektis modelon: %s %s"
-
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Local files"
-msgstr "Lokaj dosieroj"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "elbe"
+#: ../../standalone/drakxtv_.c:120
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Estis eraro dum instalado de paka¼oj:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
-msgstr "Panamo"
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Can't open %s!"
-msgstr "Ne povis malfermi %s por skribi: %s\n"
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, 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?"
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-"Via grafika karto Åajnas havi TV-OUT-konektilon.\n"
-"Äœi konfigureblas por funkcii uzante frame-buffer.\n"
-"\n"
-"Por tio vi devas konekti vian grafikan karton al via televidilo antaÅ­ ol "
-"startigi vian komputilon.\n"
-"Poste elektu la \"TVout\"-eniron en la startigilo\n"
-"\n"
-"Ĉu vi havas tiun konektilon?"
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "Ekrano"
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:148
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"
+"No TV Card has been detected on your machine. Please verify that a Linux-"
+"supported Video/TV Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil koloroj (16 bitoj)"
+#: ../../standalone/harddrake2_.c:17
+#, fuzzy
+msgid "Alternative drivers"
+msgstr "Printas provpaøo(j)n..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Remove fonts on your system"
-msgstr "Via komputilo ne havas retadaptilon!"
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../standalone/harddrake2_.c:21
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."
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "X Fenestro ĉe komenco"
+#: ../../standalone/harddrake2_.c:22
+#, fuzzy
+msgid "Channel"
+msgstr "Nuligu"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Ne estas sufiĉaj subdiskoj por RAID nivelo %d\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
msgstr ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy failed, file %s not found"
+#: ../../standalone/harddrake2_.c:23
+msgid ""
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "local config: true"
-msgstr "ne konfigurita"
+#: ../../standalone/harddrake2_.c:26
+#, fuzzy
+msgid "Bus identification"
+msgstr "Aýtentikigado"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#: ../../standalone/harddrake2_.c:27
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."
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-"Jen la sekvantaj printvicoj.\n"
-"Vi povas aldoni pli aÅ­ ÅanÄi la ekzistantajn."
-
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connected"
-msgstr "Konektita"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
-msgstr "Macedona"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "Malio"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
-msgstr "Pont- kaj sistem-kontroliloj"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "/Dosiero/_Savu"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "No details"
-msgstr "Neniaj detaloj"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "tre agrabla(j)"
-
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Preview"
-msgstr "aparato"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Remote Control"
-msgstr "Malproksima printilo"
+#: ../../standalone/harddrake2_.c:30
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please select media for backup..."
-msgstr "Bonvole, elektu lingvon por uzi."
+#: ../../standalone/harddrake2_.c:33
+#, fuzzy
+msgid "Cache size"
+msgstr "grandeco de pecoj"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 servilo: %s\n"
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Allow Thin Clients"
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Kartvela (\"Rusa\" aranÄo)"
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
+msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_Opcioj"
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Your printer model"
-msgstr "Malproksima printilo"
+#: ../../standalone/harddrake2_.c:36
+#, fuzzy
+msgid "Cpuid level"
+msgstr "Elektas sekurnivelon"
-#: ../../any.pm:1
-#, 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)."
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
msgstr ""
-"\n"
-"\n"
-"(AVERTO! Vi uzas XFS por via root-subdisko,\n"
-"krei startdisketon sur 1,44-mb-disketo verÅajne fiaskos,\n"
-"ĉar XFS bezonas tre grandan pelilon)."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/harddrake2_.c:37
msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
msgstr ""
-#: ../advertising/04-configuration.pl:1
-#, fuzzy, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "Interreta Konfigurado"
+#: ../../standalone/harddrake2_.c:38
+msgid "This field describes the device"
+msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Save"
-msgstr "Stato:"
+#: ../../standalone/harddrake2_.c:39
+#, fuzzy
+msgid "Old device file"
+msgstr "Elektu dosieron"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr "Åœargu la pelilojn por via usb-aparatoj."
+#: ../../standalone/harddrake2_.c:41
+#, fuzzy
+msgid "New devfs device"
+msgstr "Prokura kluzaparato"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Disk"
-msgstr "Disko"
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Enter a printer device URI"
-msgstr "Printila Aparato URI"
+#: ../../standalone/harddrake2_.c:43
+#, fuzzy
+msgid "Module"
+msgstr "Muso"
-#: ../advertising/01-thanks.pl:1
-#, 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."
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "Israelo"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "Franca Gujano"
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "default:LTR"
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
+#: ../../standalone/harddrake2_.c:46
+msgid ""
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Transfer printer configuration"
-msgstr "Interreta Konfigurado"
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Ĉu vi deziras starti vian konektaĵon je startado de la sistemo?"
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of suid root files"
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
msgstr ""
-#: ../../any.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Pordo%s)"
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use network connection to backup"
-msgstr "Malbona rezerva dosiero"
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
+msgstr ""
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Kernel version"
-msgstr "Kerna versio"
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:53
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."
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "Akceptu uzanto"
+#: ../../standalone/harddrake2_.c:55
+#, fuzzy
+msgid "Floppy format"
+msgstr "Formatu"
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
-msgstr "Servilo"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
+msgstr ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Left Shift key"
-msgstr "Maldekstra \"Vindozo\"-klavo"
+#: ../../standalone/harddrake2_.c:56
+#, fuzzy
+msgid "Level"
+msgstr "nivelo"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid " local network"
-msgstr "Loka(j) reto(j)"
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
+msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "Malbona elektaĵo, provu denove\n"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Search new servers"
-msgstr "Serĉu servilojn"
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+#, fuzzy
+msgid "Model"
+msgstr "Muso"
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
-msgstr "Heard- kaj McDonald-Insuloj"
+#: ../../standalone/harddrake2_.c:58
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memoro de Karto (DMA)"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "ÅœanÄu al Spertula reÄimo"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Model name"
+msgstr "Modulonomo"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
+#: ../../standalone/harddrake2_.c:60
+msgid "Official vendor name of the cpu"
msgstr ""
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
+#: ../../standalone/harddrake2_.c:61
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 butonoj"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
-msgstr ""
+#: ../../standalone/harddrake2_.c:62
+#, fuzzy
+msgid "Name"
+msgstr "Nomo: "
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Rigardante jam instalitajn pakaĵojn..."
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "network printer port"
+msgstr "Reta Printilo (TCP/ingo)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Driver"
-msgstr "Pelilo"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+#: ../../standalone/harddrake2_.c:64
+msgid "the number of the processor"
msgstr ""
-"Linuxconf aranÄos kelkfoje por fari diversajn taskojn\n"
-"dum starto por daŭrigi la sistem-konfiguraĵon."
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "DVD-R device"
-msgstr "aparato"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer on remote lpd server"
-msgstr "Malproksimaj lpd servilo"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
+#: ../../standalone/harddrake2_.c:65
+#, fuzzy
+msgid "Model stepping"
+msgstr "Formatas"
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
-msgstr "merkredo"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "Germanio"
+#: ../../standalone/harddrake2_.c:66
+#, fuzzy
+msgid "The type of bus on which the mouse is connected"
+msgstr "Bonvole, elektu al kiu seria pordo estas via muso konektata."
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
-msgstr "AÅ­strio"
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "Neniu Muso"
+#: ../../standalone/harddrake2_.c:68
+msgid "the vendor name of the processor"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "Bonvole, elektu vian klavaran aranÄon."
+#: ../../standalone/harddrake2_.c:82
+#, fuzzy
+msgid "/_Quit"
+msgstr "Æesu"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check permissions of files in the users' home"
-msgstr ""
+#: ../../standalone/harddrake2_.c:83
+#, fuzzy
+msgid "/Autodetect _printers"
+msgstr "Malproksima printilo"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr "Rulu \"sndconfig\" post instalado por konfiguri vian sonkarton"
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
+msgstr "/_Opcioj"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "Maletendu Arbon"
+#: ../../standalone/harddrake2_.c:85
+#, fuzzy
+msgid "/Autodetect _modems"
+msgstr "Malproksima printilo"
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Auto Install Configurator"
-msgstr "Post-instala konfigurado"
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
+msgstr "/_Helpo"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "Konfiguru retumon"
+#: ../../standalone/harddrake2_.c:89
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Helpo"
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "Kie vi deziras instali la startÅargilon?"
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:93
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"
+"Description of the fields:\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 ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
+#: ../../standalone/harddrake2_.c:96
+msgid ""
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "tape"
-msgstr "Bendo"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr ""
+#: ../../standalone/harddrake2_.c:96
+#, fuzzy
+msgid "Select a device !"
+msgstr "Elektu grafikan karton"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr ""
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
+msgstr "/_Raportu Cimo"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "LoÄiteka Muso (seria, malnova C7 speco)"
+#: ../../standalone/harddrake2_.c:102
+#, fuzzy
+msgid "/_About..."
+msgstr "/Helpo/_Pri..."
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "RestaÅ­ris el dosiero %s malsukcesis: %s"
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:105
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"
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
msgstr ""
-"Mi ne povas legi vian subdisktabelon de aparato %s, Äi estas tro difektita "
-"por mi :(\n"
-"Mi povas provi daŭri per blankigi difektitajn subdiskojn (ĈIOM DA DATUMO\n"
-"pereos!). La alia solvo estas malpermesi al DrakX ÅanÄi la subdisktabelon.\n"
-"(la eraro estas %s)\n"
-"\n"
-"Ĉu vi konsentas perdi ĉiujn subdiskojn?\n"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Find Package"
-msgstr "%d pakaĵoj"
+#: ../../standalone/harddrake2_.c:106
+#, fuzzy
+msgid "Author:"
+msgstr "Aýtomate esploru"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr ""
+#: ../../standalone/harddrake2_.c:113
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Duobla surmetingo %s"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "New devfs device"
-msgstr "Prokura kluzaparato"
+#: ../../standalone/harddrake2_.c:119
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Detektado de fiksdisko(j)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
-msgstr ""
+#: ../../standalone/harddrake2_.c:126
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Vidu hardvaran informon"
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Boot Style Configuration"
-msgstr "Post-instala konfigurado"
+#: ../../standalone/harddrake2_.c:129
+#, fuzzy
+msgid "Information"
+msgstr "Montru informon"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Automatic time synchronization"
-msgstr "Auxtomata hor-sinkronizado (uzante NTP) "
+#: ../../standalone/harddrake2_.c:131
+#, fuzzy
+msgid "Configure module"
+msgstr "Konfiguru muson"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "Armena (fonetika)"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Card model:"
-msgstr "Model de la karto:"
+#: ../../standalone/harddrake2_.c:143
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
+#: ../../standalone/harddrake2_.c:159
+msgid ""
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Start Server"
-msgstr "NIS Servilo"
+#: ../../standalone/harddrake2_.c:231
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekundoj"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr "Turkmenistano"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect modems"
+msgstr "Malproksima printilo"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "All remote machines"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect printers"
msgstr "Malproksima printilo"
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Install themes"
-msgstr "Instalu sistemon"
+#: ../../standalone/harddrake2_.c:261
+#, fuzzy
+msgid "/Options"
+msgstr "/_Opcioj"
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "Bonvole, elektu vian klavaran aranøon."
+
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "Preparas instaladon"
+#: ../../standalone/livedrake_.c:18
+msgid "Change Cd-Rom"
+msgstr "Þanøu KD-ROM-on"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
+#: ../../standalone/livedrake_.c:19
+#, fuzzy
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
+"Þanøu vian KDROM!\n"
+"\n"
+"Bonvole, enþovu la KDROM-on etikedatan \"%s\" en via drajvo kaj klaku \"Jes"
+"\"\n"
+"kiam vi finos.\n"
+"Se vi ne havas øin, klaku \"Nuligu\" por eviti la instaladon de æi tiu KDROM."
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Add User -->"
-msgstr "Aldonu uzanto"
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "Nauro"
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "True Type fonts installation"
-msgstr "Preparas instaladon"
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
+msgstr "logdrake"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr ""
+#: ../../standalone/logdrake_.c:68
+#, fuzzy
+msgid "Show only for the selected day"
+msgstr "Montru nur por æi tiu tago"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN configuration"
-msgstr "LAN Konfiguraĵo"
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
+msgstr "/Dosiero/_Nova"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "hard disk model"
-msgstr "Memoro de Karto (DMA)"
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
+msgstr "<stir>N"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
+msgstr "/Dosiero/_Malfermu"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Vi ne povas uzi LVM-logikan subdiskon por kroĉpunkto %s"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
+msgstr "<stir>M"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
-msgstr ""
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr "/Dosiero/_Savu"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
+msgstr "<stir>S"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
+msgstr "/Dosiero/Savu _Kiel"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "Irana"
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr "/Dosiero/-"
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
-msgstr "Kroatio"
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
+msgstr "/Opcioj/Provu"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "Kluzo:"
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
+msgstr "/Helpo/_Pri..."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Add server"
-msgstr "Aldonu uzanto"
+#: ../../standalone/logdrake_.c:145
+#, fuzzy
+msgid "User"
+msgstr "Salutnomo"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remote printer name"
-msgstr "Malproksima printilo"
+#: ../../standalone/logdrake_.c:146
+#, fuzzy
+msgid "Messages"
+msgstr "mesaøoj"
-#: ../advertising/10-security.pl:1
-#, 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."
+#: ../../standalone/logdrake_.c:147
+#, fuzzy
+msgid "Syslog"
+msgstr "sistema logdosiero (syslog)"
+
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "Aparato: "
+#: ../../standalone/logdrake_.c:151
+msgid "search"
+msgstr "seræu"
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Printerdrake"
-msgstr "Printilo"
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
+msgstr "Ilo por vidi vian logdosieron"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "Licenca kontrakto"
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
+msgstr "Konfigura¼oj"
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "System Options"
-msgstr "Modulaj opcioj:"
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
+msgstr "konformanta(j)"
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid "Please choose the desired security level"
-msgstr "Elektu sekurnivelon?"
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
+msgstr "sed ne konformanta(j)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
+msgstr "Elektu dosieron"
+
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
+msgstr "Kalendaro"
+
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
+msgstr "Enhavoj de la dosiero"
+
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+msgid "Mail alert"
msgstr ""
-#: ../../printer/main.pm:1
+#: ../../standalone/logdrake_.c:245
#, c-format
-msgid ", USB printer"
-msgstr ", USB-printilo"
+msgid "please wait, parsing file: %s"
+msgstr "bonvole atendu, mi vortanalizas la dosieron: %s"
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
+#: ../../standalone/logdrake_.c:392
+#, fuzzy
+msgid "Mail alert configuration"
+msgstr "Konfigura¼on"
+
+#: ../../standalone/logdrake_.c:393
msgid ""
-"Unable to properly close mkbootdisk:\n"
+"Welcome to the mail configuration utility.\n"
"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Ne povis Äuste fermi mkbootdisk-on: \n"
-" %s \n"
-" %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Elektu la subdiskoj kiuj vi deziras formati"
+#: ../../standalone/logdrake_.c:401
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domajna nomo"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "Konfiguru X"
+#: ../../standalone/logdrake_.c:402
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS Servilo"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "hd"
-msgstr "Ĉado"
+#: ../../standalone/logdrake_.c:403
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Datumbazoj"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turka (tradicia \"F\" modelo)"
+#: ../../standalone/logdrake_.c:404
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS Servilo"
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "Gratulojn!"
+#: ../../standalone/logdrake_.c:405
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS Servilo"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
-msgstr ""
+#: ../../standalone/logdrake_.c:406
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Servilo"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Allow remote root login"
-msgstr "Malproksima printilo"
+#: ../../standalone/logdrake_.c:407
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Printservilo"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Down"
-msgstr "Finata"
+#: ../../standalone/logdrake_.c:414
+#, fuzzy
+msgid "service setting"
+msgstr "Servilo"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
+#: ../../standalone/logdrake_.c:415
+msgid ""
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Install rpm"
-msgstr "Instalu rpm"
+#: ../../standalone/logdrake_.c:428
+#, fuzzy
+msgid "load setting"
+msgstr "Formatas"
-#: ../../printer/printerdrake.pm:1
-#, 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"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "Tempo restanta "
+#: ../../standalone/logdrake_.c:444
+#, fuzzy
+msgid "alert configuration"
+msgstr "Interreta Konfigurado"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "UnuiÄinta Regna klavaro"
+#: ../../standalone/logdrake_.c:445
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Bonvole provu denove"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "Malmuntu"
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
+msgstr "Savu Kiel..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Mikrosofta Esplorilo"
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr ""
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
+msgstr "Æu vi deziras emuli trian musbutonon?"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Elektas sekurnivelon"
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Reta Konfigura¼o"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "Germana (neniom da mortaj klavoj)"
+#: ../../standalone/net_monitor_.c:96
+#, fuzzy
+msgid "Profile "
+msgstr "muntado malsukcesis: "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
+#: ../../standalone/net_monitor_.c:103
+#, fuzzy
+msgid "Sending Speed:"
+msgstr "Konservu en dosiero"
+
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil koloroj (15 bitoj)"
+#: ../../standalone/net_monitor_.c:106
+#, fuzzy
+msgid "Connection Time: "
+msgstr "Speco de konekto"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
msgstr ""
-"Vi povas eksporti uzante NFS aÅ­ Samba. Bonvole elektu kiun vi Åatus uzi."
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "Gambio"
+#: ../../standalone/net_monitor_.c:147
+#, fuzzy
+msgid "Wait please, testing your connection..."
+msgstr "Konfiguru interretan konekta¼on"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Mandrake Control Center"
-msgstr "Konekti al la interreto"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Konektu al la Interreto"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Reboot"
-msgstr "Restarto"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Konektu al la Interreto"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device"
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, 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."
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Tape \n"
-msgstr ""
+#: ../../standalone/net_monitor_.c:225
+#, fuzzy
+msgid "Connection complete."
+msgstr "Speco de konekto"
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../standalone/net_monitor_.c:226
msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Remember this password"
-msgstr "Neniu pasvorto"
+#: ../../standalone/net_monitor_.c:330
+#, fuzzy
+msgid "Color configuration"
+msgstr "Interreta Konfigurado"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
msgstr ""
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid " cable"
-msgstr "Tabelo"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
-msgstr "Uzu la liberan spacon sur la Vindoza subdisko"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "Ĉu vi deziras konfiguri printilon?"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 pelilo: %s\n"
+#: ../../standalone/net_monitor_.c:400
+#, fuzzy
+msgid "Local measure"
+msgstr "Lokaj dosieroj"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Elektu la pakaĵojn kiuj vi deziras instali"
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
-msgstr "Papuo-Nov-Gvineo"
+#: ../../standalone/net_monitor_.c:453
+msgid ""
+"Warning, another internet connection has been detected, maybe using your "
+"network"
+msgstr ""
-#: ../../printer/main.pm:1
+#: ../../standalone/net_monitor_.c:459
#, fuzzy, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Presilo sur paralela pordo #%s"
+msgid "Connect %s"
+msgstr "Konektu"
-#: ../../../move/tree/mdk_totem:1
+#: ../../standalone/net_monitor_.c:459
#, fuzzy, c-format
-msgid "Busy files"
-msgstr "Malbona rezerva dosiero"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "Serba (cirila)"
+msgid "Disconnect %s"
+msgstr "Malkonektu"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Bonvole, provu la muson"
+#: ../../standalone/printerdrake_.c:47
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
-msgstr ""
+#: ../../standalone/scannerdrake_.c:39
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Detektas aparatojn..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Ĉu vi deziras konfiguri tiun ĉi presilon (\"%s\")\n"
-"kiel defaÅ­ltan presilon?"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
+msgstr "Provu pordojn"
-#: ../../standalone/drakgw:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, c-format
-msgid "The DHCP end range"
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "Kreas startdisketon"
-
-#: ../../standalone/net_monitor:1
+#: ../../standalone/scannerdrake_.c:54
#, fuzzy, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Konfiguru interretan konektaĵon"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "Haltas de la reto"
+msgid "%s found on %s, configure it?"
+msgstr "Æu vi deziras konfiguri printilon?"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../standalone/scannerdrake_.c:57
#, c-format
-msgid "Login ID"
-msgstr "Salutnomo"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+msgid "%s is not in the scanner database, configure it manually?"
msgstr ""
-"NFS estas populara protokolo por dosierdistribuado tra TCP/IP retoj.\n"
-"Ĉi tiu servo provizas NFS dosierÅlosado."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
-msgstr ""
+#: ../../standalone/scannerdrake_.c:63
+#, fuzzy
+msgid "Select a scanner"
+msgstr "Elektu grafikan karton"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/scannerdrake_.c:91
#, 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 "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
-msgstr "forsendu"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Presanta/skananta per \"%s\""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit raid modules"
-msgstr "forlasu RAID-ajn modulojn"
-
-#: ../../services.pm:1
+#: ../../standalone/scannerdrake_.c:105
#, 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)."
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
msgstr ""
-"lpd estas la printvica dajmono bezonata por lpr taÅ­ge funkcii. Äœi estas\n"
-"baze servilo kiu arbitracias printajn taskojn al printilo(j)."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sunday"
-msgstr "dimanĉo"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Internet Connection Configuration"
-msgstr "Interreta konektaĵo kaj konfiguro"
+#: ../../standalone/scannerdrake_.c:107
+#, fuzzy
+msgid "choose device"
+msgstr "Starta aparato"
-#: ../../modules/parameters.pm:1
+#: ../../standalone/scannerdrake_.c:113
#, c-format
-msgid "comma separated numbers"
+msgid ""
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../standalone/scannerdrake_.c:118
#, 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\")"
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
msgstr ""
-#: ../../standalone/drakperm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "Move selected rule up one level"
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr "Via komputilo ne havas retadaptilon!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Ĉu vi vere deziras forigi la presilon \"%s\"?"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "I can't find any room for installing"
-msgstr "Mi ne trovas spacon por instali"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Default printer"
-msgstr "Loka printilo"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Modify RAID"
-msgstr "ÅœanÄu RAID (Redundanca Aro de Malmultekostaj Diskoj)"
+#: ../../standalone/service_harddrake_.c:64
+#, fuzzy
+msgid "Hardware probing in progress"
+msgstr "Duobla surmetingo %s"
-#: ../../network/isdn.pm:1
-#, 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."
-msgstr ""
-"Mi detektis ISDN-an PCI-an Karton, sed mi ne scias la specon. Bonvole "
-"elektu\n"
-"unu el la PCI-aj kartojn sur la sekvanta ekrano."
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "Elektu vian lingvon"
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr "Aldonu uzanto"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "Elektu instalklason"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-aj (Redundanca Aro de Malmultekostaj Diskoj) diskoj %s\n"
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
+msgstr "Detektado de fiksdisko(j)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Liberia"
-msgstr "Liberio"
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "Konfiguru muson"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
+#: ../../steps.pm_.c:18
+msgid "Choose your keyboard"
+msgstr "Elektu vian klavaron"
-#: ../../standalone/drakgw:1
-#, 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"
+#: ../../steps.pm_.c:19
+msgid "Security"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Elektu vian klavaron"
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "Dosiersistemo konfiguro"
-#: ../../steps.pm:1
-#, c-format
+#: ../../steps.pm_.c:21
msgid "Format partitions"
msgstr "Formatu subdiskojn"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Post-instala konfigurado"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Running \"%s\" ..."
-msgstr "Legas datumbason de CUPS peliloj..."
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "enable radio support"
-msgstr ""
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "Elektu paka¼ojn"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Printilo"
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "Instalu sistemon"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Retrokonekta dosieronomo: %s"
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "Aldonu uzulon"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "Konfiguru retumon"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not transfer printers"
-msgstr ""
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "Konfiguru servojn"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Delay before booting the default image"
-msgstr "Prokrastoperiodo antaÅ­ starti defaÅ­ltan sistemon"
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "Instalu restart-þargilon"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use Hard Disk to backup"
-msgstr "Malbona rezerva dosiero"
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "Kreu praþargdisketon"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Configure"
-msgstr "Konfiguru"
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "Konfiguru X"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Scannerdrake"
-msgstr "Elektu grafikan karton"
+#: ../../steps.pm_.c:34
+#, fuzzy
+msgid "Install system updates"
+msgstr "Instalu sistemon"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "Eliru instalprogramon"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../network/network.pm:1
-#, 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."
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
msgstr ""
-"Bonvole enigu vian poÅtejon.\n"
-"Via poÅtejo devus esti plene specifita poÅtejo,\n"
-"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''.\n"
-"Vi ankaÅ­ povas enigi la IP-adreson de la prokura kluzo se via havas unu."
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Select Printer Spooler"
-msgstr "Elektu Printilan Konekton"
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "TTT/FTP"
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Create new theme"
-msgstr "Kreu novan subdiskon"
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Network Computer (client)"
+msgstr "Reta Printilo (ingo)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "No image found"
-msgstr "Loka printilo"
+#: ../../share/compssUsers:999
+msgid "Office"
+msgstr "Oficejo"
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
-"Iuj gravaj pakaĵoj ne estis taŭge instalata.\n"
-"AÅ­ via KDROM drajvo aÅ­ via KDROM disko estas difektita.\n"
-"Kontrolu la KDROM sur instalata komputilo per\n"
-"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Gnoma Laborstacio"
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Detected model: %s"
-msgstr "Duobla surmetingo %s"
+#: ../../share/compssUsers:999
+msgid "Workstation"
+msgstr "Laborstacio"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
msgstr ""
-#: ../../standalone/drakedm:1
-#, 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."
+#: ../../share/compssUsers:999
+msgid "Domain Name and Network Information Server"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
+#: ../../share/compssUsers:999
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
-msgstr "AzerbajÄano"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
+#: ../../share/compssUsers:999
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
+#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
msgstr ""
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
+#: ../../share/compssUsers:999
+msgid "Books and Howto's on Linux and Free Software"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Dvorak-a (US)"
+#: ../../share/compssUsers:999
+msgid "KDE Workstation"
+msgstr "KDE Laborstacio"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+#: ../../share/compssUsers:999
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Kiel estas la printilo konektata?"
-
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid "Security level"
-msgstr "Elektas sekurnivelon"
-
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "final resolution"
-msgstr "Distingivo"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
-msgstr "Servoj"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Auto configuration"
-msgstr "Interreta Konfigurado"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
-
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Office Workstation"
-msgstr "Laborstacio"
+msgid "Multimedia - Video"
+msgstr "Plurmedia - Video"
#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Game station"
-msgstr "Dokumentaro"
+msgid "Database"
+msgstr "Datumbazoj"
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
+msgid "PostgreSQL or MySQL database server"
msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Multimedia station"
-msgstr "Plurmedia - Sono"
+msgid "Tools to ease the configuration of your computer"
+msgstr "Æu vi deziras provi la konfigura¼on?"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr ""
+msgid "Multimedia - Sound"
+msgstr "Plurmedia - Sono"
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Internet station"
-msgstr "Interreta Konfigurado"
+msgid "Documentation"
+msgstr "Dokumentaro"
#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
+msgid "Console Tools"
msgstr ""
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer (client)"
-msgstr "Reta Printilo (ingo)"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
+msgid "Postfix mail server, Inn news server"
msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Configuration"
-msgstr "LAN Konfiguraĵo"
+msgid "Internet station"
+msgstr "Interreta Konfigurado"
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Tools to ease the configuration of your computer"
-msgstr "Ĉu vi deziras provi la konfiguraĵon?"
+msgid "Multimedia station"
+msgstr "Plurmedia - Sono"
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Scientific Workstation"
-msgstr "Laborstacio"
+msgid "Configuration"
+msgstr "LAN Konfigura¼o"
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
+msgid "More Graphical Desktops (Gnome, IceWM)"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Console Tools"
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Redaktiloj, Åeloj, dosieriloj, terminaloj"
+msgid "Graphical Environment"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE Laborstacio"
+#, fuzzy
+msgid "Development"
+msgstr "Programisto"
#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
+msgid "Apache, Pro-ftpd"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnoma Laborstacio"
+msgid "Tools to create and burn CD's"
+msgstr ""
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
+#, fuzzy
+msgid "Office Workstation"
+msgstr "Laborstacio"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgid "Graphics programs such as The Gimp"
msgstr ""
#: ../../share/compssUsers:999
+msgid "DNS/NIS "
+msgstr "DNS/NIS"
+
+#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
-msgstr "C kaj C++ programadaj bibliotekoj, programoj kaj ĉapdosieroj"
+msgstr "C kaj C++ programadaj bibliotekoj, programoj kaj æapdosieroj"
#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentaro"
+#, fuzzy
+msgid "Network Computer server"
+msgstr "Reta Printilo (ingo)"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
+msgid "Mail/Groupware/News"
msgstr ""
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr ""
+#, fuzzy
+msgid "Game station"
+msgstr "Dokumentaro"
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
+msgid "Video players and editors"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "TTT/FTP"
+msgid "Multimedia - Graphics"
+msgstr "Plurmedia - Grafiko"
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
+msgid "Amusement programs: arcade, boards, strategy, etc"
msgstr ""
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Mail"
-msgstr "Malio"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Postfix mail server"
-msgstr "Datumbazoj"
+msgid "Personal Finance"
+msgstr ""
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Database"
-msgstr "Datumbazoj"
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
+msgid "Clients for different protocols including ssh"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
+msgid "LSB"
msgstr ""
#: ../../share/compssUsers:999
@@ -18947,154 +13490,162 @@ msgid "Internet gateway"
msgstr "Interreto"
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS"
+msgid "Sound and video playing/editing programs"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
+msgid "Other Graphical Desktops"
msgstr ""
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer server"
-msgstr "Reta Printilo (ingo)"
+msgid "Editors, shells, file tools, terminals"
+msgstr "Redaktiloj, þeloj, dosieriloj, terminaloj"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
+msgid "Programs to manage your finance, such as gnucash"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
+msgid "Personal Information Management"
msgstr ""
-#~ msgid "Remote Printers"
-#~ msgstr "Malproksimaj printiloj"
-
-#~ msgid "Output"
-#~ msgstr "Skribu"
-
-#~ msgid "Please relog into %s to activate the changes"
-#~ msgstr "Bonvolu resaluti en %s-n por aktivigi la ÅanÄojn."
-
-#~ msgid "Expert Area"
-#~ msgstr "Spertulejo"
-
-#~ msgid "Wizard..."
-#~ msgstr "Sorĉisto..."
-
-#~ msgid "Country"
-#~ msgstr "Lando"
-
-#~ msgid "We are now going to configure the %s connection."
-#~ msgstr "Ni konfiguros nun la %s-konekton."
-
-#~ msgid "Name: %s\n"
-#~ msgstr "Nomo: %s\n"
-
-#~ msgid "New configuration (isdn-light)"
-#~ msgstr "Nova konfiguraĵo (isdn-light)"
-
-#~ msgid "Old configuration (isdn4net)"
-#~ msgstr "Malnova konfigraĵo (isdn4net)"
-
-#~ msgid "Internet connection & configuration"
-#~ msgstr "Interreta konektaĵo kaj konfiguro"
+#: ../../share/compssUsers:999
+msgid "Multimedia - CD Burning"
+msgstr "Plurmedia - KD-ROM Kreado"
-#~ msgid "Disconnect"
-#~ msgstr "Malkonektu"
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Scientific Workstation"
+msgstr "Laborstacio"
-#~ msgid "Connect"
-#~ msgstr "Konektu"
+#, fuzzy
+#~ msgid "cpu number "
+#~ msgstr "Telefonnumero"
#~ msgid ""
+#~ "You now have the opportunity to download encryption software.\n"
#~ "\n"
-#~ "You can reconfigure your connection."
-#~ msgstr ""
+#~ "WARNING:\n"
+#~ "\n"
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
+#~ "\n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
+#~ "\n"
+#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
#~ "\n"
-#~ "Vi povas rekonfiguri vian konekton."
-
-#~ msgid ""
#~ "\n"
-#~ "You can connect to the Internet or reconfigure your connection."
+#~ "For any queries relating to these agreement, please contact \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
#~ msgstr ""
+#~ "Nun vi havas la þancon elþuti softvaron por æifrado.\n"
#~ "\n"
-#~ "Vi povas konekti al interreto aÅ­ rekonfiguri vian konekton."
-
-#~ msgid "You are not currently connected to the Internet."
-#~ msgstr "Vi estas nun ne konektita kun interreto."
-
-#~ msgid "You are currently connected to the Internet."
-#~ msgstr "Vi estas nun konektita al Interreto."
-
-#~ msgid "no network card found"
-#~ msgstr "neniu retkarto trovita"
+#~ "AVERTO:\n"
+#~ "\n"
+#~ "Pro malsamaj øeneralaj kondiæoj aplikeblaj al æi tiu softvaro kaj "
+#~ "trudata\n"
+#~ "de diversaj jurisdikcioj, la kliento kaj/aý fina uzanto de tiu softvaro\n"
+#~ "devus certigi ke la leøoj de lia/ilia jurisdikcio permesas li/ili "
+#~ "elþuti,\n"
+#~ "stoki kaj/aý uzi tiun softvaron.\n"
+#~ "\n"
+#~ "Plue, la kliento kaj/aý fina uzanto scios specife atentos ne malobei la\n"
+#~ "leøojn de lia/ilia jurisdikcio. Se la kliento kaj/aý la fina uzanto\n"
+#~ "malobeas tiujn aplikeblajn leøojn, li/ili altiros sur sin gravajn "
+#~ "sankciojn.\n"
+#~ "\n"
+#~ "Neniuokaze aý Mandrakesoft aý øiaj fabrikistoj responsigos por "
+#~ "specialaj,\n"
+#~ "nerektaj aý hazardaj reparacioj kiuj ajn (inkluzive, sed ne limigite al\n"
+#~ "perdo de profitoj, interrompo de komerco, perdo de komerca dateno kaj\n"
+#~ "aliaj monaj malprofitoj, kaj rezultaj þuldoj kaj indemizo pagenda "
+#~ "konforme\n"
+#~ "al prijuøo) rezulte el uzado, posedado, aý sole elþutado de tiu softvaro, "
+#~ "al\n"
+#~ "kiu la kliento kaj/aý fina uzanto ne povis atingi post subskribi la "
+#~ "nunan\n"
+#~ "kontrakton.\n"
+#~ "\n"
+#~ "Por iuj demandoj rilate al tiu kontrakto, bonvole demandu de\n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
-#~ msgid "Games"
-#~ msgstr "Ludoj"
+#, fuzzy
+#~ msgid "Proxy configuration"
+#~ msgstr "Konfigurado de prokuraj serviloj"
-#~ msgid "Office"
-#~ msgstr "Oficejo"
+#~ msgid "port"
+#~ msgstr "porto"
-#~ msgid "Multimedia - Graphics"
-#~ msgstr "Plurmedia - Grafiko"
+#, fuzzy
+#~ msgid "Url should begin with 'http:'"
+#~ msgstr "Prokura servilo devus esti http://..."
-#~ msgid "Multimedia - Sound"
-#~ msgstr "Plurmedia - Sono"
+#, fuzzy
+#~ msgid "login"
+#~ msgstr "Aýtomata-enregistrado"
-#~ msgid "Multimedia - Video"
-#~ msgstr "Plurmedia - Video"
+#~ msgid "password"
+#~ msgstr "pasvorto"
-#~ msgid "Multimedia - CD Burning"
-#~ msgstr "Plurmedia - KD-ROM Kreado"
+#, fuzzy
+#~ msgid "re-type password"
+#~ msgstr "Neniu pasvorto"
-#~ msgid ""
-#~ "Please enter your host name if you know it.\n"
-#~ "Some DHCP servers require the hostname to work.\n"
-#~ "Your host name should be a fully-qualified host name,\n"
-#~ "such as ``mybox.mylab.myco.com''."
-#~ msgstr ""
-#~ "Bonvole enigu vian poÅtejon se vi scias Äin.\n"
-#~ "Iuj DHCP-aj serviloj bezonas poÅtejon por funkcii.\n"
-#~ "Via poÅtejo devus esti plene specifita poÅtejo,\n"
-#~ "ekzemple ``miakomputilo.mialaborejo.miafirmao.com''."
+#~ msgid "The passwords don't match. Try again!"
+#~ msgstr "La pasvortoj ne egalas. Provu denove!"
-#~ msgid "DrakFloppy Error: %s"
-#~ msgstr "Eraro DrakFloppy: %s"
+#~ msgid "Can't write file %s"
+#~ msgstr "Ne povas skribi dosieron %s."
-#~ msgid "Traditional Gtk+ Monitor"
-#~ msgstr "Tradicia Gtk+ Ekrano"
+#~ msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-iso8859-3,*"
-#~ msgid "Traditional Monitor"
-#~ msgstr "Tradicia Ekrano"
+#~ msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-iso8859-3,*"
-#~ msgid "NewStyle Monitor"
-#~ msgstr "NovStila Ekrano"
+#, fuzzy
+#~ msgid "Please click on a medium"
+#~ msgstr "Bonvolu klaki sur subdiskon"
-#~ msgid "/Options"
-#~ msgstr "/Opcioj"
+#~ msgid "usage: drakfloppy\n"
+#~ msgstr "uzado: drakfloppy\n"
+#, fuzzy
#~ msgid ""
-#~ "The partition you've selected to add as root (/) is physically located "
-#~ "beyond\n"
-#~ "the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
-#~ "If you plan to use the LILO boot manager, be careful to add a /boot "
-#~ "partition"
-#~ msgstr ""
-#~ "La subdiskon vi elektis por aldoni kiel la radiko (root, /) estas fizike\n"
-#~ "situanta preter la 1024a cilindro de la drajvo, kaj vi ne havas /boot\n"
-#~ "subdiskon. Se vi intencas uzi la LILO startadministranto, zorgu aldoni\n"
-#~ "/boot subdiskon."
+#~ "\n"
+#~ "Usage: harddrake [-h|--help] [--test]\n"
+#~ msgstr "uzado: keyboarddrake [--expert] [klavaro]\n"
-#~ msgid ""
-#~ "Sorry I won't accept to create /boot so far onto the drive (on a cylinder "
-#~ "> 1024).\n"
-#~ "Either you use LILO and it won't work, or you don't use LILO and you "
-#~ "don't need /boot"
-#~ msgstr ""
-#~ "Bedaŭrinde mi ne kreas /boot tiom longe sur la drajvon (ĉe cilindro > "
-#~ "1024).\n"
-#~ "AÅ­ vi uzos LILO kaj Äi ne funkcios, aÅ­ vi ne uzos LILO kaj vi ne bezonas\n"
-#~ "/boot."
+#~ msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+#~ msgstr "uzado: keyboarddrake [--expert] [klavaro]\n"
-#~ msgid "Test ports"
-#~ msgstr "Provu pordojn"
+#, fuzzy
+#~ msgid "detected on interface %s"
+#~ msgstr "Reta interfaco"
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index 0aab1e092..cf0d8a463 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po
@@ -1,3327 +1,1852 @@
-# translation of es.po to Español
-# spanish translation of DrakX
+# spanish translation of DrakX
# Copyright (C) 2000, 2001,2002 MandrakeSoft S.A.
-# Fabian Mandelbaum <fabman@mandrakesoft.com>, 2000, 2001, 2002,2003.
-# Fabian Mandelbaum <fmandelbaum@hotmail.com>, 2003.
+# Fabian Mandelbaum <fabman@mandrakesoft.com>, 2000, 2001, 2002.
#
msgid ""
msgstr ""
-"Project-Id-Version: es\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
-"PO-Revision-Date: 2003-12-01 19:20-0300\n"
+"Project-Id-Version: DrakX\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"PO-Revision-Date: 2002-09-23 08:48-0300\n"
"Last-Translator: Fabian Mandelbaum <fabman@mandrakesoft.com>\n"
-"Language-Team: Español <es@li.org>\n"
+"Language-Team: SPANISH <cooker-i18n@mandrakesoft.com>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.2\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Rastreando las particiones para encontrar los puntos de montaje"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr ""
-"si se pone en sí, verificar adiciones/remociones de archivos suid root."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s necesita nombre del host, dirección MAC, IP, nbi-image, 0/1 para "
-"THIN_CLIENT, 0/1 para Local Config...\n"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr "Configuración cambiada - ¿reiniciar clusternfs/dhcpd?"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tErase=%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Los respaldos diferenciales sólo guardan los archivos que cambiaron o son "
-"nuevos desde el respaldo 'base' original."
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 KB"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "network printer port"
-msgstr "puerto de impresora de red"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 KB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Por favor, inserte un disquete:"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr "DrakTermServ"
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"La tabla de particiones de respaldo no tiene\n"
-"el mismo tamaño. ¿Desea continuar de todas formas?"
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Which username"
-msgstr "Qué nombre de usuario"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "¿Qué tipo de entrada desea añadir?"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Restore partition table"
-msgstr "Restaurar la tabla de particiones"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB o más"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure hostname..."
-msgstr "Configurar nombre del host..."
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "Elija un servidor X"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "En servidor CUPS \"%s\""
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "Servidor X"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Post-install configuration"
-msgstr "Configuración posterior a la instalación"
+#: ../../Xconfig/card.pm_.c:230
+msgid "Multi-head configuration"
+msgstr "Configuración multi-monitor"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-"El nivel de seguridad corriente es %s\n"
-"Seleccione permisos para ver/editar"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Use \"%s\" en su lugar"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Type"
-msgstr "Tipo"
+"Su sistema soporta configuración multi-monitor.\n"
+"¿Qué desea hacer?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Tampoco se pueden transferir las impresoras configuradas con los archivos "
-"PPD provistos por sus fabricantes o con controladores CUPS nativos."
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
+msgstr "Seleccione la cantidad de memoria de su tarjeta gráfica"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "Configuración de XFree"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Las siguientes impresoras\n"
-"\n"
-"%s%s\n"
-"están conectadas directamente a su sistema"
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
+msgstr "¿Qué tipo de configuración de XFree desea tener?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
-msgstr "República Centroafricana"
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
+msgstr "Configurar los monitores independientemente"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "Dispositivo de pasarela de red"
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
+msgstr "Usar extensión Xinerama"
-#: ../../standalone/drakfloppy:1
+#: ../../Xconfig/card.pm_.c:389
#, c-format
-msgid "Advanced preferences"
-msgstr "Preferencias avanzadas"
+msgid "Configure only card \"%s\"%s"
+msgstr "Configurar sólo la tarjeta \"%s\"%s"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Net Method:"
-msgstr "Método de red:"
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Ethernetcard"
-msgstr "Tarjeta Ethernet"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s con aceleración 3D por hardware"
-#: ../../security/l10n.pm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-"Si está activo, enviar el correo de reporte a esta dirección, caso contrario "
-"a root."
-
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr "Parámetros"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "no"
-msgstr "no"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Auto-detect"
-msgstr "Detección automática"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface:"
-msgstr "Interfaz:"
+"Su tarjeta puede admitir aceleración 3D pero sólo con XFree %s.\n"
+"XFree %s admite su tarjeta y puede tener mejor comportamiento en 2D."
-#: ../../steps.pm:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid "Select installation class"
-msgstr "Tipo de instalación"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "Su tarjeta puede admitir aceleración 3D por hardware con XFree %s."
-#: ../../network/tools.pm:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"El sistema no parece estar conectado a la Internet.\n"
-"Intente volver a configurar su conexión."
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s con aceleración 3D EXPERIMENTAL por hardware"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+"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."
msgstr ""
-"Conecte su impresora a un servidor Linux y permita que su(s) máquina(s) "
-"Windows se conecten al mismo como un cliente.\n"
-"\n"
-"¿Realmente desea continuar configurando esta impresora como lo está haciendo?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belarus"
-msgstr "Bielorrusia"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Error al escribir en el archivo %s"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result to syslog"
-msgstr "Reportar resultado de verificación en syslog"
+"Su tarjeta sólo puede admitir aceleración de 3D por hardware con XFree %s,\n"
+"ADVIERTA QUE ESTO ES EXPERIMENTAL Y PUEDE COLGAR SU ORDENADOR.\n"
+"XFree %s admite su tarjeta y puede tener un mejor comportamiento en 2D."
-#: ../../services.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"apmd se usa para monitorizar el estado de las baterías y enviar esa\n"
-"información a syslogd. También puede usarse para apagar el equipo cuando\n"
-"la batería está casi descargada."
+"Su tarjeta puede admitir aceleración 3D por hardware con XFree %s,\n"
+"ADVIERTA QUE ESTO ES EXPERIMENTAL Y PUEDE COLGAR SU ORDENADOR."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tape to backup"
-msgstr "Usar cinta para realizar respaldo"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (instalación del controlador de la pantalla)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Se van a instalar los siguientes paquetes"
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "Personalizada"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS configuration"
-msgstr "Configuración de CUPS"
+#: ../../Xconfig/main.pm_.c:102
+msgid "Graphic Card"
+msgstr "Tarjeta gráfica"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total progress"
-msgstr "Progreso total"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "Monitor"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "No hay espacio libre suficiente para asignar las particiones nuevas"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "Resolución"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "Desplazando"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
+msgstr "Probar"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-"\n"
-"Actividades de Drakbackup por medio de %s:\n"
-"\n"
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Opciones"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "yes"
-msgstr "sí"
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "Aceptar"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr "("
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "Salir"
-#: ../../network/netconnect.pm:1
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
-"Welcome to The Network Configuration Wizard.\n"
+"Keep the changes?\n"
+"The current configuration is:\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"
+"%s"
msgstr ""
-"Bienvenido al asistente para la configuración de la red\n"
+"¿Conservar los cambios?\n"
+"La configuración actual es:\n"
"\n"
-"Estamos a punto de configurar su conexión de red/Internet.\n"
-"Si no desea usar la detección automática, desmarque la casilla.\n"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ")"
+"%s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "Líbano"
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "Elija un monitor"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
+msgstr "Plug'n Play"
-#: ../../services.pm:1
-#, c-format
-msgid "Stop"
-msgstr "Parar"
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "Genérico"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Edit selected host"
-msgstr "Editar host seleccionado"
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+msgid "Vendor"
+msgstr "Fabricante"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD device defined!"
-msgstr "¡No se definió dispositivo de CD!"
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr "Falló la prueba Plug'n Play. Por favor, elija un monitor específico"
-#: ../../network/shorewall.pm:1
-#, c-format
+#: ../../Xconfig/monitor.pm_.c:114
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 ""
-"Por favor, ingrese el nombre de la Interfaz conectada a la Internet.\n"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"Ejemplos:\n"
-" ppp+ para conexiones por módem o DSL,\n"
-" eth0, o eth1 para conexión por cable,\n"
-" ippp+ para una conexión RDSI.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tUsar archivos .backupignore\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "Búlgaro (fonético)"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP start ip"
-msgstr "Primera IP del rango de DHCP"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "256 kB"
-msgstr "256 KB"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Don't rewind tape after backup"
-msgstr "No rebobinar la cinta luego del respaldo"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "Opciones principales del cargador de arranque"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
-"[--manual] [--device=disp.] [--update-sane=dir_fuente_sane] [--update-"
-"usbtable] [--dynamic=disp.]"
-
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Tape"
-msgstr "Cinta"
+"Los dos parámetros críticos son la frecuencia de barrido vertical, que "
+"indica la frecuencia\n"
+"a la cual se refresca la pantalla entera, y más importante aún, la "
+"frecuencia de sincronización\n"
+"horizontal, la cual es la frecuencia de las líneas de barrido horizontal.\n"
+"\n"
+"Es MUY IMPORTANTE que no especifique un tipo de monitor con una\n"
+"frecuencia de sincronización superior a la capacidad real de su monitor:\n"
+"puede dañar su monitor.\n"
+" En caso de duda, elija una configuración conservadora."
-#: ../../lang.pm:1
-#, c-format
-msgid "Malaysia"
-msgstr "Malasia"
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "Frecuencia de barrido horizontal"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning network..."
-msgstr "Buscando en la red ..."
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "Frecuencia de barrido vertical"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Con esta opción podrá restaurar cualquier versión de su\n"
-"directorio /etc."
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 colores (8 bits)"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr "Se realizó el cambio, ¿desea reiniciar el servicio dm?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil colores (15 bits)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (French layout)"
-msgstr "Suizo (francés)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil colores (16 bits)"
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "Falló mkraid (¿quizás no estén las herramientas de raid (raidtools)?)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 millones de colores (24 bits)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "August"
-msgstr "Agosto"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 billones de colores (32 bits)"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "FTP server"
-msgstr "Servidor FTP"
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "Resoluciones"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Webcam"
-msgstr "Cámara web"
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "Elija la resolución y la profundidad de colores"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "tamaño del caché de CPU (de 2do nivel)"
+msgid "Graphics card: %s"
+msgstr "Tarjeta gráfica: %s"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Soundcard"
-msgstr "Tarjeta de sonido"
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr "Cancelar"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Month"
-msgstr "Mes"
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "Probar la configuración"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search for files to restore"
-msgstr "Buscando archivos para restaurar"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "¿Desea probar la configuración?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Luxembourg"
-msgstr "Luxemburgo"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Advertencia: probar esta tarjeta de vídeo puede colgar su computadora"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Para imprimir un archivo desde la línea de comando (ventana de terminal) use "
-"el comando \"%s <archivo>\".\n"
+msgid "Keyboard layout: %s\n"
+msgstr "Distribución del teclado: %s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid "Level %s\n"
-msgstr "Nivel %s\n"
+msgid "Mouse type: %s\n"
+msgstr "Tipo de ratón: %s\n"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid "Syriac (phonetic)"
-msgstr "Syriac (fonético)"
+msgid "Mouse device: %s\n"
+msgstr "Dispositivo del ratón: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid "Iran"
-msgstr "Irán"
+msgid "Monitor: %s\n"
+msgstr "Monitor: %s\n"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Bus"
-msgstr "Bus"
+msgid "Monitor HorizSync: %s\n"
+msgstr "Frecuencia horizontal del monitor: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Iraq"
-msgstr "Iraq"
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Frecuencia vertical del monitor: %s\n"
-#: ../../standalone/drakbug:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid "connecting to %s ..."
-msgstr "conectando a %s ..."
+msgid "Graphics card: %s\n"
+msgstr "Tarjeta gráfica: %s\n"
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"¡Se encontró un conflicto potencial de direcciones LAN en la configuración "
-"de %s!\n"
+msgid "Graphics memory: %s kB\n"
+msgstr "Memoria de la tarjeta gráfica: %s KB\n"
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid "Configuring..."
-msgstr "Configurando..."
+msgid "Color depth: %s\n"
+msgstr "Profundidad de color: %s\n"
-#: ../../harddrake/v4l.pm:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
-msgstr ""
-"El módulo bttv del núcleo GNU/Linux simplemente detecta automáticamente los "
-"parámetros correctos para la mayoría de las tarjetas de TV modernas.\n"
-"Si no se detecta correctamente la suya, aquí puede forzar los tipos de "
-"tarjeta y sintonizador adecuados. Simplemente seleccione los parámetros de "
-"su tarjeta de TV si lo necesita."
+msgid "Resolution: %s\n"
+msgstr "Resolución: %s\n"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Password (again)"
-msgstr "Contraseña (de nuevo)"
+msgid "XFree86 server: %s\n"
+msgstr "Servidor XFree86: %s\n"
-#: ../../standalone/drakfont:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Search installed fonts"
-msgstr "Buscar tipografías instaladas"
+msgid "XFree86 driver: %s\n"
+msgstr "Controlador XFree86: %s\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default desktop"
-msgstr "Escritorio predeterminado"
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "X al arrancar"
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:62
msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
-"Para enviar un reporte de errores, haga clic sobre el botón Reporte.\n"
-"Esto abrirá una ventana del navegador web en %s\n"
-"donde encontrará un formulario para completar. La información que se\n"
-"muestra arriba será transferida a ese servidor."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr "Venezuela"
-
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "IP address"
-msgstr "Dirección IP"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "Elija los tamaños"
+"Puede configurar su computadora para que inicie X automáticamente\n"
+"al arrancar. ¿Desea que se lance X cuando reinicie?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:73
msgid ""
-"List of data corrupted:\n"
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
"\n"
-msgstr ""
-"Lista de datos corruptos:\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"
-
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
-msgstr ""
-"Sólo se puede montar explícitamente (es decir,\n"
-"la opción -a no causará que se monte el sistema de archivos)"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
+"Do you have this feature?"
msgstr ""
-"El sistema no soporta a su módem.\n"
-"Eche un vistazo en http://www.linmodems.org"
+"Parece que su tarjeta gráfica tiene un conector de salida para TV.\n"
+"Se puede configurar para trabajar con el frame-buffer.\n"
+"\n"
+"Para esto Usted tiene que conectar su tarjeta gráfica a su TV antes de "
+"arrancar su computadora.\n"
+"Luego, elija la entrada \"TVout\" en el cargador de arranque\n"
+"\n"
+"¿Tiene Usted esta característica?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose another partition"
-msgstr "Elija otra partición"
+#: ../../Xconfig/various.pm_.c:85
+msgid "What norm is your TV using?"
+msgstr "¿Qué norma está utilizando su TV?"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Current user"
-msgstr "Usuario corriente"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
+msgstr "Primer sector de la partición de arranque"
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
-msgstr "Nombre de usuario"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
+msgstr "Primer sector del disco (MBR)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Tecla \"Windows\" de la izquierda"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "Instalación de SILO"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "Guyana"
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
+msgstr "¿Dónde quiere instalar el cargador de arranque?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Configuración del servidor dhcpd"
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "Instalación de LILO/grub"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Usado para directorio:\n"
-" sólo el dueño del directorio o archivo en este directorio lo puede borrar"
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
+msgstr "SILO"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " en servidor Novell \"%s\", impresora \"%s\""
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
+msgstr "LILO con menú de texto"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Name"
-msgstr "Nombre de la impresora"
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
+msgstr "LILO con menú gráfico"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
-msgstr "Configurando una llave USB"
+#: ../../any.pm_.c:142
+msgid "Grub"
+msgstr "Grub"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
-msgstr "Quitar un módulo"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "Arrancar desde DOS/Windows (loadlin)"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Password"
-msgstr "Contraseña"
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Configuración avanzada"
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "Opciones principales del cargador de arranque"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr "Escaneo en su dispositivo multifunción HP"
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
+msgstr "Cargador de arranque a usar"
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "Raíz"
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "Instalación del cargador de arranque"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "Elegir un RAID existente al que añadir"
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "Dispositivo de arranque"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turco (modelo \"Q\" moderno)"
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "Compacto"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo message not found"
-msgstr "no se encuentra el mensaje de LiLo"
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "compacto"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Regeneración automática de la cabecera del núcleo en /boot para\n"
-"/usr/include/linux/{autoconf,version}.h"
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "Modo de vídeo"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
-msgstr "si es necesario"
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
+msgstr "Demora antes de arrancar la imagen predeterminada"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
-msgstr ""
-"Debemos instalar el paquete ntp\n"
-"para habilitar el Network Time Protocol"
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
+msgid "Password"
+msgstr "Contraseña"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Failed..."
-msgstr "Falló la restauración..."
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "Contraseña (de nuevo)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr ""
-"Almacenar la contraseña para este sistema en la configuración de drakbackup."
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "Restringir las opciones de la línea de comandos"
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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 ""
-"EL PRESENTE TEXTO ES UNA TRADUCCIÓN A PROPÓSITO EXCLUSIVAMENTE\n"
-"INFORMATIVO DE LOS TÉRMINOS DE LA LICENCIA DE MANDRAKE LINUX. EN\n"
-"NINGÚN CASO LA PRESENTE TRADUCCIÓN TIENE VALOR LEGAL SIENDO OFICIAL\n"
-"EXCLUSIVAMENTE LA VERSIÓN EN FRANCÉS DE LA LICENCIA DE LINUX-MANDRAKE.\n"
-"No obstante, esperamos que esta traducción ayudará a los que hablan\n"
-"castellano a entenderla mejor.\n"
-"\n"
-"\n"
-"Introducción\n"
-"\n"
-"El conjunto de elementos que incluye el sistema operativo y los\n"
-"diferentes componentes disponibles en la distribución Mandrake Linux\n"
-"se denominarán en adelante \"Programas\". Los programas incluyen en\n"
-"particular, pero de manera no limitativa, el conjunto de programas,\n"
-"procedimientos, reglas y documentaciones relativas al sistema\n"
-"operativo y a los diferentes componentes de la distribución\n"
-"Mandrake Linux.\n"
-"\n"
-"\n"
-"1. Licencia\n"
-"\n"
-"Le rogamos leer cuidadosamente este documento. Éste constituye un\n"
-"contrato de licencia entre Ud. (persona física o persona moral) y\n"
-"MandrakeSoft S.A. aplicado a los programas. El hecho de instalar, \n"
-"duplicar o usar los programas de cualquier manera, indica\n"
-"que acepta explícitamente los términos y condiciones de esta licencia\n"
-"y que está totalmente de acuerdo en lo referente a los términos de la "
-"misma.\n"
-"En caso de no estar de acuerdo con el presente documento, no está\n"
-"autorizado a instalar, duplicar ni usar de ninguna manera\n"
-"este producto. El contrato de licencia sera automáticamente anulado\n"
-"sin aviso previo en el caso que no se cumplan las disposiciones\n"
-"de este documento. En caso de anulación Ud. tendrá que anular\n"
-"inmediatamente todo ejemplar y todas las copias de todos los programas\n"
-"y de todas las documentaciones que constituyen el sistema operativo y\n"
-"los diferentes componentes disponibles en en la distribución\n"
-"Mandrake Linux.\n"
-"\n"
-"\n"
-"2. Garantía y limitaciones de garantía\n"
-"\n"
-"Los programas y la documentación que los acompaña son proporcionados\n"
-"tal cual y sin ninguna garantía. MandrakeSoft S.A.\n"
-"no se responsabiliza de las consecuencias de un daño directo,\n"
-"especial, indirecto o accesorio, de cualquiera naturaleza que sea, en\n"
-"relación con la utilización de los programas, en particular y de\n"
-"manera no limitada, todos daños resultados por perdidas de\n"
-"beneficio, interrupción de actividad, pérdida de informaciones\n"
-"comerciales u otras perdidas financieras, así que por eventuales\n"
-"condenaciones e indemnizaciones debidas como consecuencia de una decisión "
-"de\n"
-"la justicia, y eso incluso si MandrakeSoft S.A. hubiera sido informada de "
-"la\n"
-"aparición o eventualidad de tales daños.\n"
-"\n"
-"ADVERTENCIA EN CUANTO A LA POSESIÓN O USO DE PROGRAMAS PROHIBIDOS\n"
-"EN CIERTOS PAÃSES\n"
-"\n"
-"En ningún caso, ni MandrakeSoft S.A. ni sus proveedores podrán ser\n"
-"responsabilizados por un perjuicio especial, directo, indirecto o\n"
-"accesorio, de cualquier naturaleza (en particular y de manera\n"
-"no limitada, pérdidas de beneficio, interrupción de actividad,\n"
-"pérdida de informaciones comerciales u otras pérdidas financieras, así\n"
-"como por posibles condenaciones e indemnizaciones debidas\n"
-"consecuentes a una decisión de justicia) que resultaría de la\n"
-"utilización, detención o simple descarga desde uno de los sitios de\n"
-"transferencia de Mandrake Linux de programas prohibidos por la\n"
-"legislación a la que está sometido. Esta advertencia se aplica en\n"
-"particular a algunos componentes de criptografía fuerte incluídos en los\n"
-"programas.\n"
-"\n"
-"\n"
-"3. Licencia GPL y otras licencias\n"
-"\n"
-"Los Programas están constituidos por módulos de programas creados por\n"
-"diversas personas (físicas o legales). Muchos de ellos se\n"
-"distribuyen bajo los términos de la Licencia Pública General GNU\n"
-"(denominada a partir de ahora \"GPL\") u otras licencias parecidas. La "
-"mayoría\n"
-"de estas licencias le permiten copiar, adaptar o redistribuir los\n"
-"módulos de los programas que cubren. Haga el favor de leer y de aceptar los "
-"términos y\n"
-"condiciones de las licencias que acompañan a cada uno de ellos antes de\n"
-"usarlos. Toda pregunta relativa a la licencia se debe dirigir al autor\n"
-"(o su representante) de dicho programa, y no a MandrakeSoft. Los\n"
-"programas desarrollados por MandrakeSoft están sometidos a la licencia\n"
-"GPL. La documentación escrita por MandrakeSoft esta sometida a una\n"
-"licencia especifica. Haga el favor de dirigirse a la documentación para\n"
-"obtener más información.\n"
-"\n"
-"\n"
-"4. Propiedad intelectual\n"
-"\n"
-"Todos los derechos, títulos e intereses de los diferentes programas\n"
-"son propiedad exclusiva de sus autores respectivos y están protegidos\n"
-"por el derecho de la propiedad intelectual y otras leyes aplicadas a los\n"
-"derechos de los programas. Las marcas \"Mandrake\" y \"Mandrake Linux\" "
-"así\n"
-"como los logotipos asociados son registrados por MandrakeSoft S.A.\n"
-"\n"
-"\n"
-"5. Disposiciones diversas\n"
-" \n"
-"Si alguna disposición de este contrato de licencia fuera declarada\n"
-"nula, ilegal o inaplicable por un tribunal competente, esta\n"
-"disposición sería excluida del presente contrato. Sin embargo\n"
-"Ud. seguirá sometido a las otras disposiciones, que tendrán\n"
-"plenos efectos. El contrato de licencia está regido por las leyes\n"
-"francesas. Toda disputa relativa a los presentes términos será\n"
-"resuelta, preferentemente, por vía amigable. En caso de desacuerdo con\n"
-"MandrakeSoft S.A., el litigio será tramitado a los tribunales\n"
-"competentes de París, Francia. Para cualquier pregunta relacionada con\n"
-"este documento, por favor, póngase en contacto con MandrakeSoft S.A.\n"
+#: ../../any.pm_.c:171
+msgid "restrict"
+msgstr "restringir"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default user"
-msgstr "Usuario predeterminado"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "Limpiar /tmp en cada inicio del equipo"
-#: ../../standalone/draksplash:1
+#: ../../any.pm_.c:174
#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"coordenada x del ángulo superior\n"
-"izquierdo de la barra de progreso"
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Precise el tamaño de la RAM si es necesario (se encontraron %d MB)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Current interface configuration"
-msgstr "Configuración corriente de la interfaz"
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
+msgstr "Activar perfiles múltiples"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon (Demonio de impresora de líneas)"
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "Proporcione el tamaño de la RAM en MB"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../any.pm_.c:182
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"
+"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-"\n"
-"Si tiene una tarjeta ISA, los valores de la próxima pantalla deberían ser "
-"correctos.\n"
-"\n"
-"Si tiene una tarjeta PCMCIA, tiene que saber la irq y la e/s de su tarjeta.\n"
+"La opción \"Restringir las opciones de la línea de comandos\"\n"
+"no tiene sentido sin contraseña"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not print any test page"
-msgstr "No imprimir ninguna página de prueba"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "Vuelva a intentarlo, por favor"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr "Indio (Gurmukhi)"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "Las contraseñas no coinciden"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s ya está en uso\n"
+#: ../../any.pm_.c:191
+msgid "Init Message"
+msgstr "Mensaje de inicio"
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
-msgstr "Forzar sin APIC"
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
+msgstr "Demora de open firmware"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr ""
-"Esta contraseña es demasiado simple\n"
-"(tiene que tener por lo menos una longitud de %d caracteres)"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
+msgstr "Tiempo de espera de arranque del núcleo"
-#: ../../standalone.pm:1
-#, c-format
-msgid "[keyboard]"
-msgstr "[teclado]"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
+msgstr "¿Habilitar el arranque desde CD?"
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "Proxy FTP"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
+msgstr "¿Habilitar el arranque de OF?"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install List"
-msgstr "Instalar lista"
+#: ../../any.pm_.c:197
+msgid "Default OS?"
+msgstr "¿SO predeterminado?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:231
msgid ""
-"Change\n"
-"Restore Path"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
+"\n"
+"On which drive are you booting?"
msgstr ""
-"Cambiar la\n"
-"ruta de restauración"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Mostrar sólo para el día seleccionado"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tLimitar uso de disco a %s MB\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 KB"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Nota: no se pueden detectar automáticamente los puertos paralelo)"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "¿Qué tipo de tarjeta tiene?"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr "<control>A"
-
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Security"
-msgstr "Seguridad"
+"Decidió instalar el cargador de arranque en una partición.\n"
+"Esto implica que ya tiene un cargador de arranque en el disco desde el que "
+"arranca (ej: System Commander).\n"
+"\n"
+"¿Desde qué disco arranca?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:247
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"
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
-"También puede utilizar el interfaz gráfico \"xpdq\" para configurar las "
-"opciones y manipular los trabajos de impresión.\n"
-"Si está usando KDE como entorno de escritorio tiene un \"botón de pánico\", "
-"un icono en su escritorio etiquetado como \"¡DETENER impresora!\", que "
-"detiene todos los trabajos de impresión inmediatamente cuando hace clic en "
-"él. Esto es útil, por ejemplo, para atascos de papel.\n"
+"Aquí están las diferentes entradas.\n"
+"Puede añadir otras o cambiar las que ya existen."
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "<control>Q"
-msgstr "<control>S"
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "Agregar"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "No se pueden encontrar respaldos para restaurar...\n"
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "Hecho"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown"
-msgstr "Desconocido"
+#: ../../any.pm_.c:257
+msgid "Modify"
+msgstr "Modificar"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "Este servidor ya está en la lista, no se puede volver a añadir.\n"
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "¿Qué tipo de entrada desea añadir?"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Network Configuration"
-msgstr "Configuración de la red"
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "Linux"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>S"
-msgstr "<control>G"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "Otro SO (SunOS...)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Protocolo para el resto del mundo \n"
-" sin canal D (líneas alquiladas)"
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "Otro SO (MacOS...)"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ configurará este archivo para trabajar en conjunto "
-"con las imágenes creadas\n"
-" \t\tpor mkinitrd-net, y las entradas en /etc/dhcpd.conf, para servir "
-"la imagen de arranque\n"
-" \t\ta cada cliente sin disco.\n"
-"\n"
-" \t\tUn archivo de configuración típico de tftp luce así:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \t\tAquí los cambios con respecto a lo predeterminado son cambiar el "
-"flag disable a\n"
-" \t\t'no' y cambiar la ruta del directorio a /var/lib/tftpboot, donde "
-"mkinitrd-net\n"
-" \t\tpone sus imágenes."
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "Otro SO (windows...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "¡La opción %s debe ser un número!"
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "Imagen"
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, c-format
-msgid "Notice"
-msgstr "Nota"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "Raíz"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "No ha configurado a X ¿Está seguro que realmente desea esto?"
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
+msgstr "Añadir"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"La configuración de la impresora se hará de forma totalmente automatizada. "
-"Si su impresora no se detectó correctamente o si prefiere una configuración "
-"personalizada, active la \"Configuración manual\"."
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "What type of partitioning?"
-msgstr "¿Qué tipo de particionamiento?"
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "Lectura/Escritura"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-" "
-msgstr ""
-"lista de archivos envíada por FTP: %s\n"
-" "
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "Tabla"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface"
-msgstr "Interfaz"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "Inseguro"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Multisession CD"
-msgstr "CD multisesión"
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "Etiqueta"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated strings"
-msgstr "cadenas de caracteres separadas por comas"
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "Por defecto"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr ""
-"Estas son las máquinas desde las cuales deberían utilizarse los escáneres:"
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
+msgstr "Tamaño de initrd"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Messages"
-msgstr "Mensajes"
+#: ../../any.pm_.c:318
+msgid "NoVideo"
+msgstr "NoVideo"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Desconocido|CPH06X (bt878) [muchos fabricantes]"
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "Quitar entrada"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "Servidor POP e IMAP"
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "No se admite una etiqueta vacía"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mexico"
-msgstr "México"
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
+msgstr "Debe especificar una imágen del núcleo"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model stepping"
-msgstr "Paso del modelo"
+#: ../../any.pm_.c:330
+msgid "You must specify a root partition"
+msgstr "Debe especificar una partición raíz"
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
-msgstr "Ruanda"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "Esta etiqueta ya está en uso"
-#: ../../lang.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Switzerland"
-msgstr "Suiza"
+msgid "Found %s %s interfaces"
+msgstr "%s interfaces %s encontradas"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "¿Tiene alguna otra?"
-#: ../../modules/interactive.pm:1
+#: ../../any.pm_.c:642
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "¿Tiene alguna interfaz %s?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "Debe ser root para leer el archivo de configuración. \n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Opciones de la impresora remota lpd"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"GNU/Linux es un sistema multiusuario, y esto significa que cada usuario\n"
-"puede tener sus preferencias propias, sus archivos propios, y así\n"
-"sucesivamente. Puede leer la \"Guía de Comienzo\" para aprender más. Pero,\n"
-"a diferencia de \"root\", que es el administrador del sistema, los usuarios\n"
-"que agregue en este punto no estarán autorizados a cambiar nada excepto su\n"
-"configuración y sus archivos propios, protegiendo al sistema contra cambios\n"
-"no intencionales o maliciosos que pueden impactar al sistema como un todo.\n"
-"Tendrá que crear al menos un usuario no privilegiado para Usted mismo - esa\n"
-"cuenta es la que debería utilizar para el uso rutinario diario. Aunque es\n"
-"muy práctico ingresar como \"root\" para hacer cualquier cosa y de todo,\n"
-"¡también puede ser muy peligroso! Un error podría significar que su sistema\n"
-"deje de funcionar. Si comete un error serio como usuario no privilegiado,\n"
-"sólo puede llegar a perder algo de información, pero no afectar a todo el\n"
-"sistema.\n"
-"\n"
-"El primer campo le pide un nombre real. Por supuesto, esto no es\n"
-"obligatorio - en realidad, puede ingresar lo que desee. DrakX usará la\n"
-"primer palabra que ingresó y la copiará al campo \"%s\", que es el nombre\n"
-"que este usuario en particular usará para ingresar al sistema. Si lo desea,\n"
-"puede omitir lo predeterminado y cambiar el nombre de usuario. El próximo\n"
-"paso es ingresar una contraseña. La contraseña de un usuario no\n"
-"privilegiado (regular) no es tan crucial como la de \"root\" desde el punto\n"
-"de vista de la seguridad, pero esto no es razón alguna para obviarla o\n"
-"hacerla muy simple: después de todo, son sus archivos los que podrían estar\n"
-"en peligro.\n"
-"\n"
-"Una vez que hace clic sobre \"%s\", puede agregar otros usuarios. Agregue\n"
-"un usuario para cada uno de sus amigos: por ejemplo su padre o su hermana.\n"
-"Haga clic sobre \"%s\" cuando haya terminado de agregar todos los usuarios\n"
-"que desee.\n"
-"\n"
-"Hacer clic sobre el botón \"%s\" le permite cambiar el \"shell\"\n"
-"predeterminado para ese usuario (bash, por defecto)\n"
-"\n"
-"Cuando haya finalizado de añadir todos los usuarios se le propone elegir un\n"
-"usuario para conectarse automáticamente en el sistema cuando arranca la\n"
-"computadora. Si está interesado en esta característica (y no le importa\n"
-"mucho la seguridad local), elija el usuario y administrador de ventanas\n"
-"deseado. Si no está interesado en esta característica, quite la marca de la\n"
-"casilla \"%s\". Haga clic sobre \"%s\" una vez que seleccionó su\n"
-"preferencia."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Internet Access..."
-msgstr "Configurar el acceso a Internet..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Por favor, elija el intervalo de tiempo entre cada copia de respaldo"
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "No"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Norway"
-msgstr "Noruega"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "Sí"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Delete profile"
-msgstr "Borrar perfil"
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "Ver información sobre el hardware"
-#: ../../keyboard.pm:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Danish"
-msgstr "Danés"
+msgid "Installing driver for %s card %s"
+msgstr "Instalando controlador para la tarjeta %s %s"
-#: ../../services.pm:1
+#: ../../any.pm_.c:663
#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Activar el bloqueo numérico automáticamente bajo la consola y\n"
-"XFree al arrancar."
+msgid "(module %s)"
+msgstr "(módulo %s)"
-#: ../../network/network.pm:1
+#: ../../any.pm_.c:674
#, 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)."
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-"Por favor, introduzca la dirección IP de esta máquina.\n"
-"Cada valor tiene que introducirse como una dirección IP en notación\n"
-"decimal con puntos (por ejemplo: 1.2.3.4)."
+"Ahora puede proporcionar las opciones al módulo %s.\n"
+"Note que cualquier dirección debe ingresarse con el prefijo 0x, ej.: '0x123'"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
+#: ../../any.pm_.c:680
#, 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."
+"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 ""
-"La instalación de Mandrake Linux se divide en varios CD-ROM. DrakX sabe si\n"
-"un paquete seleccionado se encuentra en otro CD por lo que expulsará el CD\n"
-"corriente y le pedirá que inserte el CD correcto cuando sea necesario."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
-msgstr "Cuando está marcado, el grupo y el dueño no se cambiarán"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "Bulgaria"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
-msgstr "Martes"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "Procesadores"
+"Aquí deben ir las diferentes opciones para el módulo %s.\n"
+"Las opciones son de la forma \"nombre=valor nombre2=valor2 ...\".\n"
+"Por ejemplo, \"io=0x300 irq=7\""
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "Islas Svalbard e Islas Jan Mayen"
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "Opciones de los módulos:"
-#: ../../standalone/drakTermServ:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "No NIC selected!"
-msgstr "¡No se seleccionó NIC!"
+msgid "Which %s driver should I try?"
+msgstr "¿Qué controlador de %s debo probar?"
-#: ../../network/netconnect.pm:1
+#: ../../any.pm_.c:703
#, 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."
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
-"Ocurrieron problemas durante la configuración.\n"
-"Verifique su conexión con net_monitor o mcc. Si su conexión no funciona, "
-"puede que desee volver a iniciar la configuración"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "la partición %s ahora se conoce como %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Other files..."
-msgstr "Respaldar otros archivos..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
-msgstr "Congo (Kinshasa)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "IP del servidor SMB"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "¡Se escribirá al disco la tabla de particiones de la unidad %s!"
+"En algunos casos, el controlador de %s necesita información extra\n"
+"para funcionar correctamente, aunque normalmente funcione sin ella.\n"
+"¿Desea especificar información extra para el controlador o dejar que el "
+"mismo\n"
+"pruebe su equipo y encuentre la información que necesita? A veces,\n"
+"el probar el equipo puede provocar que éste se cuelgue, pero no debería\n"
+"causar ningún daño."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing HPOJ package..."
-msgstr "Instalando paquete HPOJ..."
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
+msgstr "Autodetección"
-#: ../../any.pm:1
-#, 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"
-msgstr ""
-"Un disquete de arranque personalizado da la posibilidad de arrancar su "
-"equipo\n"
-"bajo Linux sin depender del cargador de arranque normal. Esto puede ser "
-"útil\n"
-"si no desea instalar LILO (o grub) en su sistema, o si cualquier otro "
-"sistema operativo borra\n"
-"LILO, o si LILO no funciona con su configuración de hardware. Un disquete\n"
-"de arranque personalizado también se puede usar con la imagen de rescate de\n"
-"Mandrake haciendo así mucho más fácil la recuperación en caso de fallo\n"
-"grave del sistema. ¿Desea crear un disquete de arranque para su sistema?\n"
-"%s"
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "Especificar las opciones"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:719
#, c-format
msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
-"\n"
-" Reporte del servidor DrakBackup\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latvian"
-msgstr "Letón"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr "cada mes"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Retry"
-msgstr "Reintentar"
+"Error al cargar el módulo %s.\n"
+"¿Desea intentarlo de nuevo con otros parámetros?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr "Nombre del módulo"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
+msgstr "acceso a programas X"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Start at boot"
-msgstr "Iniciar al arrancar"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
+msgstr "acceso a herramientas rpm"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Usar respaldos incrementales"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
+msgstr "permitir \"su\""
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "Primer sector del disco (MBR)"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
+msgstr "acceso a archivos administrativos"
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "El Salvador"
+#: ../../any.pm_.c:738
+msgid "access to network tools"
+msgstr "acceso a herramientas de red"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
-msgstr "Joystick"
+#: ../../any.pm_.c:739
+msgid "access to compilation tools"
+msgstr "acceso a herramientas de compilación"
-#: ../../standalone/harddrake2:1
+#: ../../any.pm_.c:744
#, c-format
-msgid "DVD"
-msgstr "DVD"
+msgid "(already added %s)"
+msgstr "(%s ya fue añadido)"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
-msgstr "Usar Unicode predeterminadamente"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "Esta contraseña es demasiado sencilla"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "el módulo del núcleo GNU/Linux que maneja ese dispositivo"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
+msgstr "Introduzca el nombre de usuario"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "¿El reloj interno está puesto a GMT?"
+#: ../../any.pm_.c:751
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr ""
+"El nombre de usuario (login) sólo debe contener letras, números, `-' y `_'"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "Tratando de rescatar la tabla de particiones"
+#: ../../any.pm_.c:752
+msgid "The user name is too long"
+msgstr "El nombre de usuario es muy largo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "¡La opción %s debe ser un número entero!"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "Este nombre de usuario ya fue añadido"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
-msgstr "Usar contraseña para autenticar usuarios"
+#: ../../any.pm_.c:757
+msgid "Add user"
+msgstr "Añadir un usuario"
-#: ../../interactive/stdio.pm:1
+#: ../../any.pm_.c:758
#, c-format
msgid ""
-"Entries you'll have to fill:\n"
+"Enter a user\n"
"%s"
msgstr ""
-"Entradas que tendrá que rellenar:\n"
+"Introduzca un usuario\n"
"%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-"Para respaldos a otros soportes, los archivos todavía se crean en el disco "
-"rígido, luego se mueven a los soportes. Al habilitar esta opción se quitarán "
-"los archivos tar del disco luego del respaldo."
-
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
-msgstr "¡¡¡ No se puede iniciar la actualización en vivo !!!\n"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "Nombre: "
+#: ../../any.pm_.c:759
+msgid "Accept user"
+msgstr "Aceptar el usuario"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
-msgstr "activa"
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "Nombre y apellidos"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 millones de colores (24 bits)"
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "Nombre del usuario"
-#: ../../any.pm:1
-#, c-format
-msgid "Allow all users"
-msgstr "Permitir a todos los usuarios"
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "Shell"
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr "La tienda oficial de MandrakeSoft"
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "Icono"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "Redimensionando"
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "Entrada automática"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:804
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
-"Ingrese el tamaño máximo\n"
-" permitido para Drakbackup (MB)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Cable connection"
-msgstr "Conexión por cable"
-
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, c-format
-msgid "User"
-msgstr "Usuario"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-"Realizar respaldo nuevo antes de restaurar (sólo para respaldos "
-"incrementales)"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "Falló mkraid"
+"Puede configurar su computadora para que entre automáticamente\n"
+"en sesión con un usuario dado al arrancar. ¿Desea esa funcionalidad?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Name"
-msgstr "Nombre"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Emulación del botón 3"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
-msgstr "Verificar adiciones/remociones de archivos sgid"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files..."
-msgstr "Enviando archivos..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "Israelí (fonético)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
-msgstr "acceso a herramientas rpm"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "¡Debe elegir/ingresar una impresora o un dispositivo!"
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "Elija el usuario predeterminado:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Problema de permisos al acceder al CD."
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
+msgstr "Elija el gestor de ventanas a ejecutar:"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "Número de teléfono"
+#: ../../any.pm_.c:824
+msgid "Please choose a language to use."
+msgstr "Por favor, elija el idioma a usar."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr "Error: el controlador \"%s\" para su tarjeta de sonido no está listado"
+#: ../../any.pm_.c:826
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
+msgstr ""
+"Puede elegir otros idiomas, que estarán disponibles después de la instalación"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Nombre de la impresora, descripción, ubicación"
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "Todo"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
-msgstr "EEUU (difusión)"
+#: ../../any.pm_.c:961
+msgid "Allow all users"
+msgstr "Permitir a todos los usuarios"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Usar extensión Xinerama"
+#: ../../any.pm_.c:961
+msgid "No sharing"
+msgstr "No compartir"
-#: ../../diskdrake/interactive.pm:1
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
#, c-format
-msgid "Loopback"
-msgstr "Loopback"
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr "Se necesita instalar el paquete %s. ¿Quiere instalarlo?"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "West Europe"
-msgstr "Europa del oeste"
+#: ../../any.pm_.c:973
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
+msgstr "Puede exportar usando NFS o Samba. ¿Cuál elige"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
-msgid "On CD-R"
-msgstr "en CDROM"
+msgid "Mandatory package %s is missing"
+msgstr "Falta el paquete obligatorio %s"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../any.pm_.c:987
msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
+"Would you like to allow users to share some of their directories?\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror "
+"and nautilus.\n"
"\n"
-"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"
+"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-"[OPCIONES] [NOMBRE_PROGRAMA]\n"
+"¿Desea permitir a los usuarios exportar algunos directorios personales?\n"
+"Si lo hace, los usuarios podrán simplemente hacer clic sobre \"Compartir\" "
+"en konqueror y nautilus.\n"
"\n"
-"OPCIONES:\n"
-" --help - imprime este mensaje.\n"
-" --report - programa debería ser una herramienta mandrake\n"
-" --incident - programa debería ser una herramienta mandrake"
+"\"Personalizar\" permite una granularidad por usuario.\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake2 version %s"
-msgstr "Harddrake2 versión %s"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
+msgstr "Lanzar userdrake"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Preferences"
-msgstr "Preferencias"
+#: ../../any.pm_.c:1003
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
+msgstr ""
+"La compartición por usuario utiliza el grupo \"fileshare\". \n"
+"Puede utilizar userdrake para añadir un usuario a este grupo."
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr "Swazilandia"
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
+msgstr "Bienvenidos, crackers"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "República Dominicana"
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Pobre"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr "Copiando %s"
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
+msgstr "Estándar"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Choose color"
-msgstr "elija color"
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Alta"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac"
-msgstr "Syriac"
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+msgid "Higher"
+msgstr "Más alta"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "Paranoica"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1061
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!"
+"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 ""
-"Elija la unidad de disco que desea borrar para instalar su partición\n"
-"Mandrake Linux nueva. Tenga cuidado, ¡se perderán todos los datos de la\n"
-"misma y no se podrán recuperar!."
-
-#. -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
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Use las teclas %c y %c para seleccionar una entrada."
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Ratón de 2 botones genérico"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Habilitar \"%s\" a ejecutar el archivo"
-
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr "Quite los volúmenes lógicos primero\n"
-
-#. -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
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Se va a iniciar la entrada resaltada en %d segundos."
+"Este nivel se debe usar con mucho cuidado. Hace su sistema más simple de\n"
+"usar, pero también mucho más vulnerable: no debe usarse para una máquina\n"
+"conectada en red con otras o a Internet. No hay contraseñas de acceso."
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../any.pm_.c:1064
msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
-"No se puede escribir /etc/sysconfig/bootsplash\n"
-"No se encuentra el archivo."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet access"
-msgstr "Acceso a Internet"
+"Las contraseñas están activadas, pero tampoco se recomienda usar este\n"
+"nivel para un ordenador conectado a una red."
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../any.pm_.c:1065
msgid ""
-"y coordinate of text box\n"
-"in number of characters"
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
-"coordenada y del cuadro de texto\n"
-"en cantidad de caracteres"
+"Éste es el nivel de seguridad estándar recomendado para una máquina que se\n"
+"utilizará para conectarse a la Internet como cliente."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1066
msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
-"Para obtener una lista de las opciones disponibles para la impresora actual, "
-"haga clic en el botón \"Imprimir lista de opciones\"."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr "Activando los servidores..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Imprimir la(s) página(s) de prueba..."
+"Ya hay algunas restricciones, y todas las noches se corren más "
+"verificaciones automáticas."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1067
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."
+"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 ""
-"Transferencia exitosa\n"
-"Puede verificar que se puede conectar al servidor con:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"sin que se le pida una contraseña."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Ya existe una partición con el punto de montaje %s\n"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
-msgstr "Habilitar/Deshabilitar verificación horaria de seguridad de msec."
+"Con este nivel de seguridad, es posible utilizar el sistema como un "
+"servidor.\n"
+"La seguridad es lo suficientemente alta como para usar el sistema como un\n"
+"servidor que acepte conexiones de múltiples clientes. Nota: si su máquina "
+"sólo es un cliente en la Internet, mejor debería elegir un nivel inferior."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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''."
+#: ../../any.pm_.c:1070
+msgid ""
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-"Ahora necesita elegir el lugar de su disco rígido donde se instalará su\n"
-"sistema operativo Mandrake Linux. Si su disco rígido está vacío o si un\n"
-"sistema operativo existente está utilizando todo el espacio disponible,\n"
-"necesitará particionar el disco. Básicamente, particionar un disco rígido\n"
-"consiste en dividirlo lógicamente para crear espacio para instalar su\n"
-"sistema Mandrake Linux nuevo.\n"
-"\n"
-"Debido a que el proceso de particionado de un disco rígido por lo general\n"
-"es irreversible y puede llevar a pérdida de datos si ya hay un sistema\n"
-"operativo instalado en el disco, el particionado puede ser intimidante y\n"
-"estresante si Usted es un usuario inexperto. Por fortuna, DrakX incluye un\n"
-"asistente que simplifica este proceso. Antes de continuar con este paso,\n"
-"por favor lea el resto de esta sección y, por sobre todo, tómese su tiempo.\n"
-"\n"
-"Dependiendo de la configuración de su disco rígido, están disponibles\n"
-"varias opciones:\n"
-"\n"
-" * \"%s\": esta opción simplemente llevará a un particionado automático de\n"
-"su(s) disco(s) vacío(s). Si elige esta opción, no se le pedirán más\n"
-"detalles ni se le formularán más preguntas.\n"
-"\n"
-" * \"%s\": el asistente ha detectado una o más particiones Linux existentes\n"
-"en su disco rígido. Si desea utilizarlas, elija esta opción. Entonces se le\n"
-"pedirá que elija los puntos de montaje asociados a cada una de las\n"
-"particiones. Los puntos de montaje legados se seleccionan automáticamente,\n"
-"y por lo general debería mantenerlos.\n"
-"\n"
-" * \"%s\": si Microsoft Windows está instalado en su disco rígido y ocupa\n"
-"todo el espacio disponible en el mismo, Usted tiene que liberar espacio\n"
-"para los datos de Linux. Para hacerlo, puede borrar su partición y datos\n"
-"Microsoft Windows (vea la solución \"Borrar el disco completo\") o cambiar\n"
-"el tamaño de su partición Microsoft Windows FAT. El cambio de tamaño se\n"
-"puede realizar sin la pérdida de datos, siempre y cuando Usted haya\n"
-"desfragmentado con anterioridad la partición Windows y que la misma utiliza\n"
-"el formato FAT. Es altamente recomendable hacer una copia de respaldo de\n"
-"sus datos. Se recomienda usar esta solución si desea utilizar tanto\n"
-"Mandrake Linux como Microsoft Windows en la misma computadora.\n"
-"\n"
-" Antes de elegir esta opción, por favor comprenda que después de este\n"
-"procedimiento el tamaño de su partición Microsoft Windows será más pequeño\n"
-"que cuando comenzó. Tendrá menos espacio bajo Microsoft Windows para\n"
-"almacenar sus datos o instalar software nuevo.\n"
-"\n"
-" * \"%s\": si desea borrar todos los datos y todas las particiones\n"
-"presentes en su disco rígido y reemplazarlos con su nuevo sistema Mandrake\n"
-"Linux, elija esta opción. Tenga cuidado con esta solución ya que no podrá\n"
-"revertir su elección después de confirmarla.\n"
-"\n"
-" !! Si elige esta opción, se perderán todos los datos en su disco. !!\n"
-"\n"
-" * \"%s\": esto simplemente borrará todo en el disco y comenzará\n"
-"particionando todo desde cero. Se perderán todos los datos en su disco.\n"
-"\n"
-" !! Si elige esta opción, se perderán todos los datos en su disco. !!\n"
-"\n"
-" * \"%s\": elija esta opción si desea particionar manualmente su disco\n"
-"rígido. Tenga cuidado - esta es una elección potente pero peligrosa y puede\n"
-"perder todos sus datos con facilidad. Esa es la razón por la cual esta\n"
-"opción realmente sólo se recomienda si ha hecho algo como esto antes y\n"
-"tiene algo de experiencia. Para más instrucciones acerca de la utilización\n"
-"del utilitario DiskDrake, consulte la sección \"Administrar sus\n"
-"particiones\" de la \"Guía de Comienzo\"."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
-msgstr "Ucrania"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Application:"
-msgstr "Aplicación:"
+"Basado en el nivel anterior, pero el sistema está completamente cerrado.\n"
+"Las características de seguridad están al máximo."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "External ISDN modem"
-msgstr "Módem RDSI externo"
+#: ../../any.pm_.c:1076
+msgid "DrakSec Basic Options"
+msgstr "Opciones básicas de DrakSec"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr "si se pone en sí, reportar resultado de verificación por correo-e."
+#: ../../any.pm_.c:1077
+msgid "Please choose the desired security level"
+msgstr "Por favor, elija el nivel de seguridad deseado"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "¿Su elección? (por defecto %s)"
+#: ../../any.pm_.c:1080
+msgid "Security level"
+msgstr "Nivel de seguridad"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr "Solución de problemas"
+#: ../../any.pm_.c:1082
+msgid "Use libsafe for servers"
+msgstr "Utilizar libsafe para los servidores"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1083
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"
+"A library which defends against buffer overflow and format string attacks."
msgstr ""
-"La(s) página(s) de prueba se enviaron a la impresora.\n"
-"Puede que pase algo de tiempo antes de que comience la impresión.\n"
-"Estado de la impresión:\n"
-"%s\n"
-"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
-msgstr "cada día"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and one unknown printer"
-msgstr "y una impresora desconocida está "
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Ireland"
-msgstr "Irlanda"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Restore Configuration "
-msgstr " Configuración de la restauración"
+"Una biblioteca que le defiende ante ataques de desbordamiento de búfer y "
+"ataques con cadenas de formato."
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "¿Es esta la configuración correcta?"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
+msgstr "Administrador de la seguridad (login o correo electrónico)"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1166
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 ""
-"Ahora se le propone configurar su conexión de red/Internet. Haga clic sobre\n"
-"\"%s\" si desea conectar su computadora a la Internet o a una red de área\n"
-"local. Mandrake Linux intentará detectar automáticamente los dispositivos\n"
-"de red y módems. Si esta detección falla, quite la marca de la casilla\n"
-"\"%s\". También puede elegir no configurar la red, o hacerlo más tarde, en\n"
-"cuyo caso hacer clic sobre el botón \"%s\" lo llevará al paso siguiente.\n"
-"\n"
-"Cuando configura su red los tipos de conexión disponibles son: módem\n"
-"tradicional, módem RDSI (ISDN), conexión ADSL, cable módem, y finalmente\n"
-"una simple conexión LAN (Ethernet).\n"
-"\n"
-"Aquí no entraremos en detalle en cada opción de configuración - simplemente\n"
-"debe asegurarse que su Proveedor de Servicios de Internet o su\n"
-"administrador del sistema le proporcionaron todos los parámetros de\n"
-"configuración, tales como la dirección IP, la pasarela predeterminada, los\n"
-"servidores DNS, etc.\n"
-"\n"
-"Puede consultar el capítulo de \"Guía de Comienzo\" sobre las conexiones a\n"
-"la Internet para detalles acerca de la configuración, o simplemente esperar\n"
-"hasta que su sistema esté instalado y usar el programa que se describe allí\n"
-"para configurar su conexión."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Configuración del Asistente"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Autoprobe"
-msgstr "Autodetección"
+"Here you can choose the key or key combination that will \n"
+"allow switching between the different keyboard layouts\n"
+"(eg: latin and non latin)"
+msgstr ""
+"Aquí puede elegir la tecla o combinación de teclas que permitirá\n"
+"cambiar entre los diferentes esquemas de teclado\n"
+"(ej.: latino y no latino)"
-#: ../../security/help.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, c-format
msgid ""
-"if set to yes, check for :\n"
-"\n"
-"- empty passwords,\n"
+"Welcome to %s the operating system chooser!\n"
"\n"
-"- no password in /etc/shadow\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
"\n"
-"- for users with the 0 id other than root."
msgstr ""
-"si se pone en sí, verificar:\n"
-"\n"
-"- contraseña vacía,\n"
+"¡Bienvenido a %s, el selector de SO de arranque!\n"
"\n"
-"- sin contraseña en /etc/shadow\n"
+"Elija un sistema operativo de la lista o espere %d segundos\n"
+"para que arranque el sistema predeterminado.\n"
"\n"
-"- por usuarios con el id 0 que no sean root."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files..."
-msgstr "Respaldar archivos del sistema..."
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "¡Bienvenido a GRUB, el selector de SO de arranque!"
-#: ../../any.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:986
#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr "No se puede usar difusión sin un dominio NIS"
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Use las teclas %c y %c para seleccionar una entrada."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Quitando la impresora \"%s\" ..."
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Pulse intro para iniciar el SO elegido, pulse 'e' para editar"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell history size"
-msgstr "Tamaño de historia del shell"
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "los comandos antes de iniciar, o pulse 'c' para una linea de comandos."
-#: ../../standalone/drakfloppy:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:995
#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Se va a iniciar la entrada resaltada en %d segundos."
-#: ../../standalone/drakpxe:1
-#, 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"
-msgstr ""
-"Por favor indique donde se encuentra el archivo auto_install.cfg.\n"
-"\n"
-"Déjelo en blanco si no desea configurar el modo de instalación automática.\n"
-"\n"
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
+msgstr "no hay espacio suficiente en /boot"
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on other machines"
-msgstr "Configurada en otras máquinas"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "Escritorio"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr ""
-"nivel de información que se puede obtener por medio de la instrucción cpuid"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "Menú inicio"
-#: ../../lang.pm:1
+#: ../../bootloader.pm_.c:1120
#, c-format
-msgid "Peru"
-msgstr "Perú"
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "No puede instalar el cargador de arranque en una partición %s\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " on device: %s"
-msgstr " en el dispositivo: %s"
+#: ../../bootlook.pm_.c:53
+msgid "Boot Style Configuration"
+msgstr "Configuración del estilo de arranque"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "Quitar Windows(TM)"
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
+msgstr "/_Archivo"
-#: ../../services.pm:1
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Inicia el servidor de tipografías X11 (obligatorio para correr XFree)."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
+msgstr "/Archivo/_Salir"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"La mayoría de estos valores se tomaron\n"
-"de su sistema actual.\n"
-"Los puede modificar si es necesario."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
+msgstr "<control>S"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
-"Seleccione el archivo o directorio de tipografías y haga clic sobre 'Agregar'"
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
+msgstr "Monitor categorizante de estilo nuevo"
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "Madagascar"
+#: ../../bootlook.pm_.c:83
+msgid "NewStyle Monitor"
+msgstr "Monitor de estilo nuevo"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
+#: ../../bootlook.pm_.c:84
+msgid "Traditional Monitor"
+msgstr "Monitor tradicional"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
-msgstr "Cron todavía no está disponible como no-root"
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
+msgstr "Monitor tradicional Gtk+"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "System"
-msgstr "Sistema"
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
+msgstr "Iniciar Aurora en el momento del arranque"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "¿Desea usar esta característica?"
+#: ../../bootlook.pm_.c:89
+msgid "Lilo/grub mode"
+msgstr "Modo de Lilo/Grub"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr "Arábico"
+#: ../../bootlook.pm_.c:89
+msgid "Yaboot mode"
+msgstr "Modo de Yaboot"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:138
+msgid "Install themes"
+msgstr "Instalar temas"
+
+#: ../../bootlook.pm_.c:139
msgid ""
-"\n"
-"- Options:\n"
+"Display theme\n"
+"under console"
msgstr ""
-"\n"
-"- Opciones:\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Password required"
-msgstr "Se necesita contraseña"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d minutes"
-msgstr "%d minutos"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Tarjeta gráfica: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV transfer failed!"
-msgstr "¡Falló la transferencia WebDAV!"
+"Mostrar tema\n"
+"bajo la consola"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "Configuración de XFree"
+#: ../../bootlook.pm_.c:140
+msgid "Create new theme"
+msgstr "Crear un tema nuevo"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../bootlook.pm_.c:184
#, c-format
-msgid "Choose action"
-msgstr "Elija una acción"
+msgid "Backup %s to %s.old"
+msgstr "Copiar %s a %s.old"
-#: ../../lang.pm:1
+#: ../../bootlook.pm_.c:187
#, c-format
-msgid "French Polynesia"
-msgstr "Polinesia Francesa"
+msgid "Copy %s to %s"
+msgstr "Copiar %s a %s"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Por lo general, DrakX no tiene problemas en detectar la cantidad de botones\n"
-"que tiene su ratón. En caso contrario, asume que Usted tiene un ratón de\n"
-"dos botones y lo configurará para que emule el tercer botón. El tercer\n"
-"botón del ratón de un ratón de dos botones se puede \"presionar\" haciendo\n"
-"clic simultáneamente sobre el botón izquierdo y el derecho. DrakX sabrá\n"
-"automáticamente si su ratón utiliza una interfaz PS/2, serie o USB.\n"
-"\n"
-"Si, por alguna razón, desea especificar un tipo de ratón diferente,\n"
-"selecciónelo de la lista que se proporciona.\n"
-"\n"
-"Si elige un ratón distinto al predeterminado, se le presentará una pantalla\n"
-"de prueba. Use los botones y la rueda para verificar que la configuración\n"
-"es correcta y que el ratón está funcionando correctamente. Si el ratón no\n"
-"está funcionando bien, presione la barra espaciadora o [Intro] para\n"
-"cancelar la prueba y volver a la lista de opciones.\n"
-"\n"
-"Los ratones con rueda a veces no se detectan automáticamente por lo que\n"
-"deberá seleccionar su ratón de una lista. Debe asegurarse de seleccionar el\n"
-"correspondiente al puerto en el cual está conectado su ratón. Después de\n"
-"seleccionar un ratón y presionar el botón \"%s\", se muestra una imagen de\n"
-"un ratón en la pantalla. Mueva la rueda de su ratón para asegurarse que\n"
-"está activa correctamente. Una vez que ve que se mueve la rueda en la\n"
-"pantalla a medida que mueve la rueda de su ratón, pruebe los botones y\n"
-"verifique que el puntero del ratón se mueve en la pantalla a medida que\n"
-"mueve su ratón."
-
-#: ../../services.pm:1
-#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Admitir las win-impresoras OKI 4w y compatibles."
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+msgstr "Error"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-"Los archivos o comodines listados en un archivo .backupignore al principio "
-"de un árbol de directorios no se respaldarán."
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
+msgstr "no se encuentra el mensaje de LiLo"
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
-"Lanzar el sistema de sonido ALSA (Arquitectura avanzada de sonido de Linux)"
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr "No se puede escribir /etc/sysconfig/bootsplash."
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
+#: ../../bootlook.pm_.c:222
#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instalando controlador para la tarjeta %s %s"
+msgid "Write %s"
+msgstr "Escribir %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:224
msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-"Ha transferido su impresora por defecto anterior (\"%s\"), ¿Debería ser "
-"también la impresora por defecto bajo el nuevo sistema de impresión %s?"
+"No se puede escribir /etc/sysconfig/bootsplash\n"
+"No se encuentra el archivo."
-#: ../../standalone/drakTermServ:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Enable Server"
-msgstr "Habiltar el Servidor"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr "No se puede ejecutar mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../keyboard.pm:1
+#: ../../bootlook.pm_.c:238
#, c-format
-msgid "Ukrainian"
-msgstr "Ucraniano"
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr "Construir initrd mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:244
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."
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-"El acceso a la red no estaba corriendo y no se puede iniciar. Por favor, "
-"verifique su configuración y su hardware. Luego, intente configurar su "
-"impresora remota de nuevo."
+"¡No se puede volver a iniciar LiLo!\n"
+"Ejecute \"lilo\" como root en la línea de comandos para completar la "
+"instalación del tema de LiLo."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Habilitar \"%s\" a escribir el archivo"
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
+msgstr "Volver a ejecutar 'lilo'"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Por favor, inserte el disquete de arranque en la unidad %s"
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+msgid "Notice"
+msgstr "Nota"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local network(s)"
-msgstr "Red(es) local(es)"
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr "Instalación satisfactoria de LiLo y temas de Bootsplash"
-#: ../../help.pm:1
-#, c-format
-msgid "Remove Windows"
-msgstr "Quitar Windows"
+#: ../../bootlook.pm_.c:251
+msgid "Theme installation failed!"
+msgstr "¡Falló la instalación de los temas!"
-#: ../../standalone/scannerdrake:1
+#: ../../bootlook.pm_.c:259
#, c-format
msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"Su %s ha sido configurado.\n"
-"Ahora puede escanear documentos usando \"XSane\" desde Multimedios/Gráficos "
-"en el menú de aplicaciones."
+"En este momento está usando %s como gestor de arranque.\n"
+"Haga click sobre configurar para lanzar el asistente de configuración."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Firewire controllers"
-msgstr "Controladores Firewire"
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
+msgstr "Configurar"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:268
+msgid "Splash selection"
+msgstr "Selección de Splash"
+
+#: ../../bootlook.pm_.c:271
+msgid "Themes"
+msgstr "Temas"
+
+#: ../../bootlook.pm_.c:273
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!"
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
msgstr ""
-"Luego que haya configurado los parámetros generales del cargador de\n"
-"arranque se mostrará la lista de opciones de arranque que estarán\n"
-"disponibles al momento de arrancar.\n"
-"\n"
-"Si hay otros sistemas operativos instalados en su máquina los mismos se\n"
-"agregarán automáticamente al menú de arranque. Puede elegir ajustar las\n"
-"opciones existentes haciendo clic sobre \"%s\" para crear una nueva\n"
-"entrada; seleccionando una entrada y haciendo clic sobre \"%s\" o \"%s\"\n"
-"para modificarla o quitarla. \"%s\" valida sus cambios.\n"
"\n"
-"También puede ser que no desee dar acceso a los otros sistemas operativos a\n"
-"cualquiera que vaya a la consola y reinicie la máquina. Puede borrar las\n"
-"entradas correspondientes para los sistemas operativos para quitarlas del\n"
-"menú, pero ¡necesitará un disquete de arranque para poder arrancar esos\n"
-"otros sistemas operativos!"
+"Seleccione un tema para\n"
+"lilo y bootsplash,\n"
+"puede elegirlos\n"
+"por separado"
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
+msgstr "Pantalla de LiLo"
+
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
+msgstr "Bootsplash"
+
+#: ../../bootlook.pm_.c:316
msgid "System mode"
msgstr "Modo del sistema"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Para imprimir en una impresora NetWare, es necesario escribir el nombre del "
-"servidor de impresión NetWare (¡Note que puede no ser el mismo que el nombre "
-"de la máquina en TCP/IP) así como el nombre de la cola de impresión que "
-"desea usar y el nombre de usuario y la contraseña apropiados."
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
+msgstr "Lanzar el sistema X-Window al comenzar"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Netmask:"
-msgstr "Máscara de red:"
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
+msgstr "No, no deseo entrada automática"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
-msgstr "Hacerlo luego"
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "Sí, deseo entrada automática con este (usuario, escritorio)"
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "Añadir"
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
+msgstr "Aceptar"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Refrescar la lista de impresoras (para visualizar todas las impresoras CUPS "
-"remotas)"
+#: ../../common.pm_.c:107
+msgid "GB"
+msgstr "GB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Cuando se activa esta opción, cada vez que se inicia CUPS se asegura de "
-"manera automática que\n"
-"\n"
-"- si está instalado LPD/LPRng, CUPS no sobreescribirá /etc/printcap\n"
-"\n"
-"- si falta /etc/cups/cupsd.conf, será creado\n"
-"\n"
-"- cuando la información de la impresora se difunde, no contiene \"localhost"
-"\" como nombre del servidor.\n"
-"\n"
-"Si alguna de esas medidas lo pone en problemas, apague esta opción, pero "
-"entonces, tiene que ocuparse de estos puntos."
+#: ../../common.pm_.c:107
+msgid "KB"
+msgstr "KB"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"La instalación automática puede automatizarse por completo si lo desea,\n"
-"¡¡en ese caso se adueñará del disco rígido!!\n"
-"(la intención de esto es instalarlo en otro ordenador).\n"
-"\n"
-"Puede preferir reproducir la instalación.\n"
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Impresora de red \"%s\", puerto %s"
+#: ../../common.pm_.c:115
+msgid "TB"
+msgstr "TB"
-#: ../../standalone/drakgw:1
+#: ../../common.pm_.c:123
#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Por favor, elija qué adaptador de red estará conectado a su red de área "
-"local."
+msgid "%d minutes"
+msgstr "%d minutos"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
-msgstr "Se pueden restaurar los otros archivos."
+#: ../../common.pm_.c:125
+msgid "1 minute"
+msgstr "1 minuto"
-#: ../../install_steps_interactive.pm:1
+#: ../../common.pm_.c:127
#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Seleccione la distribución de su teclado."
+msgid "%d seconds"
+msgstr "%d segundos"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "URI del dispositivo de impresión"
+#: ../../common.pm_.c:172
+msgid "Can't make screenshots before partitioning"
+msgstr "No se pueden realizar instantáneas de pantalla antes del particionado"
-#: ../../standalone/drakbackup:1
+#: ../../common.pm_.c:179
#, c-format
-msgid "Not erasable media!"
-msgstr "¡No es un soporte borrable!"
+msgid "Screenshots will be available after install in %s"
+msgstr ""
+"Luego de la instalación estarán disponibles las instantáneas de pantalla en %"
+"s"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "Por terminal"
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+msgid "France"
+msgstr "Francia"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr "Habilitar/Deshabilitar protección contra engaño de IP."
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
+msgstr "Costa Rica"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Instalando un sistema de impresión en el nivel de seguridad %s"
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+msgid "Belgium"
+msgstr "Bélgica"
-#: ../../any.pm:1
-#, c-format
-msgid "The user name is too long"
-msgstr "El nombre de usuario es muy largo"
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
+msgstr "República Checa"
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "Otro SO (Windows...)"
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+msgid "Germany"
+msgstr "Alemania"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr "¡El sitio WebDAV remoto ya está sincronizado!"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+msgid "Greece"
+msgstr "Grecia"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
-msgstr "Leyendo base de datos de impresoras ..."
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+msgid "Norway"
+msgstr "Noruega"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Generar un disquete de instalación automática"
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+msgid "Sweden"
+msgstr "Suecia"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t nombre de usuario: %s\n"
-"\t\t en ruta: %s \n"
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
+msgstr "Holanda"
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr "Somalia"
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+msgid "Italy"
+msgstr "Italia"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr "No hay controlador open source"
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+msgid "Austria"
+msgstr "Austria"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
-msgstr "Def."
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
+msgstr "Estados Unidos"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../diskdrake/dav.pm_.c:19
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"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 ""
-"Basado en el nivel anterior, pero el sistema está completamente cerrado.\n"
-"Las características de seguridad están al máximo."
+"WebDAV es un protocolo que le permite montar localmente un directorio de un\n"
+"servidor web, y tratarlo como un sistema de archivos local (siempre y "
+"cuando\n"
+"el servidor web está configurado como servidor WebDAV). Si desea añadir\n"
+"puntos de montaje WebDAV, seleccione \"Nuevo\"."
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "Nicaragua"
+#: ../../diskdrake/dav.pm_.c:27
+msgid "New"
+msgstr "Nuevo"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "Nueva Caledonia"
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Desmontar"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Protocolo europeo (EDSS1)"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Montar"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Delete"
-msgstr "/_Borrar"
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
+msgstr "Servidor"
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "Modo de vídeo"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Punto de montaje"
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
-msgstr "Omán"
+#: ../../diskdrake/dav.pm_.c:85
+msgid "Please enter the WebDAV server URL"
+msgstr "Por favor, ingrese la URL del servidor WebDAV"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Por favor, ingrese su dirección de correo electrónico debajo "
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
+msgstr "La URL debería empezar con http:// o https://"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Network Monitoring"
-msgstr "Monitoreo de la red"
+#: ../../diskdrake/dav.pm_.c:109
+msgid "Server: "
+msgstr "Servidor: "
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "SunOS"
-msgstr "SunOS"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
+msgstr "Punto de montaje: "
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "New size in MB: "
-msgstr "Tamaño nuevo en MB: "
+msgid "Options: %s"
+msgstr "Opciones: %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Tipo de la tabla de particiones: %s\n"
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
+msgstr "Por favor, haga primero una copia de seguridad de sus datos"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication Windows Domain"
-msgstr "Dominio de Autenticación de Windows"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "¡Lea con cuidado!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "Estadounidense"
+#: ../../diskdrake/hd_gtk.pm_.c:100
+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 ""
+"Si piensa usar aboot, no olvide dejar espacio libre (2048 sectores es\n"
+"suficiente) al principio del disco"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr "Emulación de los botones"
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "Asistente"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", impresora de red \"%s\", puerto %s"
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
+msgstr "Elija una acción"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
-"\n"
-"Actividades de Drakbackup por medio de cinta:\n"
-"\n"
+"Tiene una partición FAT de gran tamaño\n"
+"(generalmente usada por DOS/Windows de MicroSoft).\n"
+"Le sugiero que primero cambie el tamaño de la misma\n"
+"(para eso haga clic sobre ella, y luego sobre \"Redimensionar\")"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-" Problema en la conexión FTP: No fue posible enviar sus archivos de copia de "
-"respaldo por FTP.\n"
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "Por favor, haga clic sobre una partición"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Sending Speed:"
-msgstr "Velocidad de envío:"
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "Detalles"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"The classic bug sound tester is to run the following commands:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
-"currently uses\n"
-"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services're configured to be run on\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"El probador de sonido clásico va a ejecutar los comandos siguientes:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" le dirá qué controlador predet. usa su\n"
-"tarjeta de sonido\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\n"
-"\" le dirá qué controlador usa la misma\n"
-"en este momento\n"
-"\n"
-"- \"/sbin/lsmod\" le permitirá verificar si su módulo (controlador) está\n"
-"cargado o no\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" y \"/sbin/chkconfig --list alsa\" le "
-"dirá\n"
-"si los servicios alsa y sonido están configurados para correr en el nivel\n"
-"de ejecución 3\n"
-"\n"
-"- \"aumix -q\" le dirá si el volumen del sonido está mudo o no\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" le dirá qué programa utiliza la tarjeta de "
-"sonido.\n"
+#: ../../diskdrake/hd_gtk.pm_.c:254
+msgid "No hard drives found"
+msgstr "¡No se encontraron discos rígidos!"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
-msgstr "Bug de Halt"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Configuración de alerta por correo"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "FAT"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr "Tokelau"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Matching"
-msgstr "Coincidencia"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Journalised FS"
+msgstr "Sistema de. archivos. con journal"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bosnian"
-msgstr "Bosnio"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Release: "
-msgstr "Versión:"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "Intercambio"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection speed"
-msgstr "Velocidad de la conexión"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "Vacío"
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr "Namibia"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "Otros"
-#: ../../services.pm:1
-#, c-format
-msgid "Database Server"
-msgstr "Servidor de base de datos"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "Tipos de sistemas de archivos:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
-"capacidades especiales del controlador (posibilidad de grabar y/o soporte de "
-"DVD)"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "Crear"
-#: ../../raid.pm:1
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "No se puede añadir una partición al RAID md%d _ya formateado_"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "Tipo"
-#: ../../standalone/drakclock:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid "Network Time Protocol"
-msgstr "Network Time Protocol"
+msgid "Use ``%s'' instead"
+msgstr "Use \"%s\" en su lugar"
+
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "Borrar"
+
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
+msgstr "Use \"Desmontar\" primero"
-#: ../../Xconfig/card.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, 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."
+"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-"Su tarjeta sólo puede admitir aceleración de 3D por hardware con XFree %s,\n"
-"ADVIERTA QUE ESTO ES EXPERIMENTAL Y PUEDE COLGAR SU ORDENADOR.\n"
-"XFree %s admite su tarjeta y puede tener un mejor comportamiento en 2D."
+"Se perderán todos los datos de la partición %s después de cambiar su tipo"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Por favor espere, configurando las opciones de seguridad..."
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose a partition"
+msgstr "Elija una partición"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "Desconocido|CPH05X (bt878) [muchos fabricantes]"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose another partition"
+msgstr "Elija otra partición"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Lanzar el sistema X-Window al comenzar"
+#: ../../diskdrake/interactive.pm_.c:202
+msgid "Exit"
+msgstr "Salir"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr "cada hora"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
+msgstr "Cambiar al modo experto"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
-msgstr "Tecla Mayús derecha"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
+msgstr "Cambiar al modo normal"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " Recuperados satisfactoriamente en %s"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "Deshacer"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Haciendo que el puerto de la impresora esté disponible para CUPS..."
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "¿Seguir adelante?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr "Antigua y Barbuda"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "Salir sin grabar"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! Indica que la contraseña en la base de datos del sistema es diferente\n"
-"de la de la base de datos del Servidor de Terminales.\n"
-"Quite/agregue el usuario al Servidor de Terminales para permitir conexión."
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "¿Salir del programa sin grabar la tabla de particiones?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "Español"
+#: ../../diskdrake/interactive.pm_.c:257
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "¿Desea guardar las modificaciones en /etc/fstab?"
-#: ../../services.pm:1
-#, c-format
-msgid "Start"
-msgstr "Iniciar"
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "Borrar todas"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
-msgstr "Conexión directa de root"
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
+msgstr "Asignación automática"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring applications..."
-msgstr "Configurando las aplicaciones..."
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+msgid "More"
+msgstr "Más"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"Bienvenido al Asistente de configuración de la impresora\n"
-"\n"
-"Este asistente lo ayudará a instalar sus impresoras conectadas a esta "
-"computadora, conectadas directamente a la red o a una máquina Windows "
-"remota.\n"
-"\n"
-"Si tiene impresoras conectadas a esta máquina, por favor enciéndalas para "
-"que se puedan detectar automáticamente. También deben estar conectadas y "
-"encendidas sus impresoras de red y sus máquinas Windows.\n"
-"\n"
-"Note que la detección automática de impresoras en la red toma más tiempo que "
-"sólo detectar las impresoras conectadas a esta máquina. Entonces, desactive "
-"la detección automática de impresoras de red o en máquinas Windows cuando no "
-"la necesita.\n"
-"\n"
-"Haga clic sobre \"Siguiente\" cuando esté listo, o sobre \"Cancelar\" si "
-"Usted no desea configurar sus impresoras ahora."
+#: ../../diskdrake/interactive.pm_.c:278
+msgid "Hard drive information"
+msgstr "Información del disco rígido"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
-msgstr "Conexión normal por módem"
+#: ../../diskdrake/interactive.pm_.c:310
+msgid "All primary partitions are used"
+msgstr "Todas las particiones primarias están usadas"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "File Selection"
-msgstr "Selección de archivos."
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "No se pueden agregar más particiones"
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
+#: ../../diskdrake/interactive.pm_.c:312
+msgid ""
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
+msgstr ""
+"Por favor, para tener más particiones borre alguna para poder crear una "
+"partición extendida"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Borrar la cinta antes del respaldo"
+#: ../../diskdrake/interactive.pm_.c:322
+msgid "Save partition table"
+msgstr "Guardar la tabla de particiones"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
-msgstr "Ejecutar herramienta de configuración"
+#: ../../diskdrake/interactive.pm_.c:323
+msgid "Restore partition table"
+msgstr "Restaurar la tabla de particiones"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "Instalación del cargador de arranque"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
+msgstr "Rescatar la tabla de particiones"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Tamaño de la partición raíz en MB: "
+#: ../../diskdrake/interactive.pm_.c:326
+msgid "Reload partition table"
+msgstr "Volver a cargar la tabla de particiones"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Este es un paquete obligatorio, no puede desmarcarlo"
+#: ../../diskdrake/interactive.pm_.c:331
+msgid "Removable media automounting"
+msgstr "Montaje automático de dispositivos extraíbles"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "Elija un archivo"
+
+#: ../../diskdrake/interactive.pm_.c:347
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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
-" - Crear disquetes/CDs Etherboot:\n"
-" \t\tLas máquinas sin disco necesitan o bien imágenes ROM en las NIC, "
-"o un disquete o\n"
-" \t\tCD de arranque para iniciar la secuencia de arranque. "
-"drakTermServ ayudará a generar estas,\n"
-" \t\tbasadas en la NIC en la máquina cliente.\n"
-" \t\t\n"
-" \t\tUn ejemplo básico para crear un disquete de arranque para una "
-"3Com 3c509 manualmente:\n"
-" \t\t\n"
-" \tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"The backup partition table has not the same size\n"
+"Still continue?"
+msgstr ""
+"La tabla de particiones de respaldo no tiene\n"
+"el mismo tamaño. ¿Desea continuar de todas formas?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "La imagen ISO Etherboot es %s"
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "Advertencia"
-#: ../../services.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:362
msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
-"named (BIND) es un servidor de nombres de dominio (DNS) usado para convertir "
-"los nombres de máquinas en direcciones IP."
+"Inserte un disquete en la unidad\n"
+"Se perderán todos los datos del disquete"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr "Santa Lucía"
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
+msgstr "Tratando de rescatar la tabla de particiones"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "Noviembre"
+#: ../../diskdrake/interactive.pm_.c:379
+msgid "Detailed information"
+msgstr "Información detallada"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
-msgstr "Desconectar..."
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "Redimensionar"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Report"
-msgstr "Reporte"
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "Desplazar"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr "Palau"
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "Formatear"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "nivel"
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "Añadir al RAID"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr ""
-"Todos los incidentes estarán seguidos por un único experto técnico "
-"calificado de MandrakeSoft."
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "Añadir al LVM"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "Selección de grupos de paquetes"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "Quitar del RAID"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Permitir configuración del\n"
-"hardware local."
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "Quitar del LVM"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Restaurar por medio del protocolo de red: %s"
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "Modificar el RAID"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr "Aquí puede configurar cada parámetro del módulo."
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
+msgstr "Usar para loopback"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Elija la resolución y la profundidad de colores"
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "Crear una partición nueva"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
-msgstr "¿Emular el tercer botón?"
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "Sector de comienzo: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "Tamaño en MB: "
+
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "Tipo de sistema de. archivos: "
+
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Preferencia: "
+
+#: ../../diskdrake/interactive.pm_.c:481
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
@@ -3331,1925 +1856,1726 @@ msgstr ""
"(debido a que alcanzó la cantidad máxima de particiones primarias).\n"
"Primero debe quitar una partición primaria y crear una partición extendida."
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr "Montar"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Creando el disquete de instalación automática"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Install updates"
-msgstr "Instalar actualizaciones"
+#: ../../diskdrake/interactive.pm_.c:511
+msgid "Remove the loopback file?"
+msgstr "¿Borrar el archivo de loopback?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
-msgstr "altura del cuadro de texto"
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "Cambiar el tipo de partición"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "State"
-msgstr "Estado"
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+msgid "Which filesystem do you want?"
+msgstr "¿Qué sistema de archivos desea?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Asegúrese que hay un soporte para el dispositivo %s"
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
+msgstr "Cambiando de ext2 a ext3"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Enable multiple profiles"
-msgstr "Activar perfiles múltiples"
+msgid "Where do you want to mount loopback file %s?"
+msgstr "¿Donde desea montar el archivo de loopback %s?"
-#: ../../fs.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr ""
-"No interpretar dispositivos especiales de bloque o caracter en el sistema de "
-"archivos."
+msgid "Where do you want to mount device %s?"
+msgstr "¿Dónde desea montar el dispositivo %s?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
-"Estas opciones pueden respaldar y restaurar todos los archivos en el "
-"directorio /etc.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Local printer"
-msgstr "Impresora local"
+"No se puede deseleccionar el punto de montaje ya que esta partición\n"
+"se usa para un montaje en loopback.\n"
+"Quite el montaje de loopback primero"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm_.c:606
#, c-format
-msgid "Files Restored..."
-msgstr "Archivos restaurados..."
+msgid "Where do you want to mount %s?"
+msgstr "¿Dónde desea montar a %s?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
-msgstr "Selección de paquetes"
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "Calculando los límites del sistema de archivos FAT"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritania"
-msgstr "Mauritania"
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "Redimensionando"
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
-"Puedo mantener su configuración corriente y asumir que ya configuró un "
-"servidor DHCP; en ese caso, por favor verifique que leo correctamente la Red "
-"que usó para su red local; no la volveré a configurar y no tocaré la "
-"configuración de su servidor DHCP.\n"
-"\n"
-"La entrada DNS predeterminada es el Servidor de nombres de caché configurado "
-"en el cortafuegos. Lo puede reemplazar, por ej., con la IP del DNS de su "
-"ISP.\n"
-"\n"
-"De lo contrario, puedo volver a configurar su interfaz y (volver a) "
-"configurar un servidor DHCP por Usted.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:662
+msgid "This partition is not resizeable"
+msgstr "Esta partición no es redimensionable"
-#: ../../printer/printerdrake.pm:1
-#, 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, ...)."
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
msgstr ""
-"No se encontró ninguna impresora local. Para instalar una manualmente, "
-"introduzca un nombre de dispositivo/nombre de archivo en la línea de entrada "
-"(Puertos paralelos: /dev/lp0, /dev/lp1, ..., equivalen a LPT1:, LPT2, ..., "
-"1ª impresora USB: /dev/usb/lp0, 2ª impresora USB: /dev/usb/lp1, ...)."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All primary partitions are used"
-msgstr "Todas las particiones primarias están usadas"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "Servidor LPD \"%s\", impresora \"%s\""
+"Debería hacer una copia de seguridad de todos los datos de esta partición"
-#: ../../network/netconnect.pm:1
+#: ../../diskdrake/interactive.pm_.c:669
#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Después de esto, se recomienda que reinicie su entorno X\n"
-"para evitar el problema del cambio del nombre de la máquina."
+msgid "After resizing partition %s, all data on this partition will be lost"
+msgstr "Se perderán todos los datos de la partición %s tras cambiar su tamaño"
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Detección y configuración automática del hardware al arrancar."
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "Eligiendo el tamaño nuevo"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation Server Configuration"
-msgstr "Configuración del servidor de instalación"
+#: ../../diskdrake/interactive.pm_.c:675
+msgid "New size in MB: "
+msgstr "Tamaño nuevo en MB: "
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "Configurando dispositivos IDE"
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "¿A qué disco desea desplazarla?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Funcionalidad de red no configurada"
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "Sector"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Configure module"
-msgstr "Configurar módulo"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "¿A qué sector desea desplazarla?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "Islas Cocos (Keeling)"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "Desplazando"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Necesita reiniciar el equipo para que la modificación tenga efecto"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "Desplazando una partición..."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
-msgstr "Número de teléfono del proveedor"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr "Elegir un RAID existente al que añadir"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Host %s"
-msgstr "Host %s"
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "nuevo"
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
-msgstr "Fidji"
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
+msgstr "Elegir un LVM existente al que añadir"
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
-msgstr "Armenia"
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
+msgstr "¿nombre de LVM?"
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "Segunda disquetera"
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
+msgstr "Esta partición no puede usarse para el loopback"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
-msgstr "Acerca de Harddrake"
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
+msgstr "Loopback"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
-msgstr "Autorizar conexiones TCP desde X Window"
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
+msgstr "Nombre del archivo de loopback: "
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr "Capacidad de la unidad"
+#: ../../diskdrake/interactive.pm_.c:831
+msgid "Give a file name"
+msgstr "Indique el nombre de un archivo"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
msgstr ""
-"Inserte un disquete en la unidad\n"
-"Se perderán todos los datos del disquete"
+"El archivo ya lo utiliza otro dispositivo loopback.\n"
+"Elija otro archivo, por favor"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "Tamaño: %s"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
+msgstr "El archivo ya existe. ¿Desea usarlo?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Las teclas Control y Shift simultáneamente"
+#: ../../diskdrake/interactive.pm_.c:858
+msgid "Mount options"
+msgstr "Opciones de montaje"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "secondary"
-msgstr "secundario"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
+msgstr "Varios"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Ver configuración del respaldo"
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "dispositivo"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr "si se pone en sí, reportar resultado de verificación en syslog."
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "nivel"
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "Sin contraseña"
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "tamaño de los bloques"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nigeria"
-msgstr "Nigeria"
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
+msgstr "Cuidado: esta operación es peligrosa."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s necesita nombre del host...\n"
+#: ../../diskdrake/interactive.pm_.c:962
+msgid "What type of partitioning?"
+msgstr "¿Qué tipo de particionamiento?"
-#: ../../install_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:978
#, c-format
-msgid "There is no existing partition to use"
-msgstr "No hay ninguna partición existente para usar"
+msgid "The package %s is needed. Install it?"
+msgstr "Se necesita el paquete %s. ¿Desea instalarlo?"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:992
msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
-"Los siguiente escáneres\n"
-"\n"
-"%s\n"
-"están disponibles en su sistema.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Dispositivo multifunción en puerto paralelo #%s"
+"Disculpe, pero no se permite la creación de una partición /boot tan lejos\n"
+"en el disco (en un cilindro > 1024). Puede usar lilo LILO (y es probable "
+"que\n"
+"no funcione), o bien no utiliza LILO (y entonces no necesita /boot)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:996
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."
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-"Para imprimir en una impresora por socket o TCP, necesita proporcionar el "
-"nombre de host o dirección IP de la impresora y, opcionalmente, el número de "
-"puerto (9100, por defecto). En servidores HP JetDirect el número de puerto "
-"por lo general es 9100, en otros servidores puede variar. Consulte el manual "
-"de su hardware."
+"La partición que escogió para usar como raíz (/) está físicamente ubicada\n"
+"después del 1024º cilindro del disco rígido, y no tiene partición /boot.\n"
+"Si piensa usar el cargador de arranque LILO, tenga en cuenta que tiene\n"
+"que añadir una partición /boot"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Hard drive information"
-msgstr "Información del disco rígido"
+#: ../../diskdrake/interactive.pm_.c:1002
+msgid ""
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
+msgstr ""
+"Eligió una partición RAID en software como partición raíz (/).\n"
+"Ningún cargador de arranque es capaz de manejarlo sin una partición /boot.\n"
+"Así que tenga en cuenta que tiene que añadir una partición /boot."
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid "Russian"
-msgstr "Ruso"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "¡Se escribirá al disco la tabla de particiones de la unidad %s!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Jordan"
-msgstr "Jordania"
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
+msgstr "Necesita reiniciar el equipo para que la modificación tenga efecto"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1037
#, c-format
-msgid "Hide files"
-msgstr "Ocultar archivos"
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr "Se perderán todos los datos de la partición %s después de formatearla"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Detectar automáticamente las impresoras conectadas a esta máquina"
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "Formateando"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "Disculpe, pero no hay ninguna disquetera disponible"
+msgid "Formatting loopback file %s"
+msgstr "Formateando el archivo de loopback %s"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "Bolivia"
-msgstr "Bolivia"
+msgid "Formatting partition %s"
+msgstr "Formateando la partición %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Configure a su servidor Windows para que la impresión esté disponible bajo "
-"el protocolo IPP y configure la impresión desde esta máquina bajo el tipo de "
-"conexión \"%s\" en PrinterDrake.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Hide files"
+msgstr "Ocultar archivos"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "Paquete incorrecto"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Move files to the new partition"
+msgstr "Mover los archivos a la nueva partición"
-#: ../advertising/07-server.pl:1
+#: ../../diskdrake/interactive.pm_.c:1053
#, 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!"
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-"Transforme su máquina en un servidor Linux potente con unos pocos clic del "
-"ratón: servidor web, de correo, cortafuegos, router, servidor de archivos e "
-"impresoras, ..."
+"El directorio %s ya tiene algunos datos\n"
+"(%s)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "DrakSec Basic Options"
-msgstr "Opciones básicas de DrakSec"
+#: ../../diskdrake/interactive.pm_.c:1064
+msgid "Moving files to the new partition"
+msgstr "Moviendo los archivos a la nueva partición"
-#: ../../standalone/draksound:1
+#: ../../diskdrake/interactive.pm_.c:1068
#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Nota: si tiene una tarjeta de sonido ISA PnP, tendrá que utilizar el "
-"programa sndconfig. Simplemente teclee \"sndconfig\" en una consola."
+msgid "Copying %s"
+msgstr "Copiando %s"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1072
#, c-format
-msgid "Romania"
-msgstr "Rumanía"
+msgid "Removing %s"
+msgstr "Borrando %s"
-#: ../../standalone/drakperm:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid "Group"
-msgstr "Grupo"
+msgid "partition %s is now known as %s"
+msgstr "la partición %s ahora se conoce como %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Canada"
-msgstr "Canadá"
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "Dispositivo: "
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "choose device"
-msgstr "elija el dispositivo"
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "Letra DOS: %s (simplemente una adivinanza)\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from LVM"
-msgstr "Quitar del LVM"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "Tipo: "
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Timezone"
-msgstr "Huso horario"
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "Nombre: "
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "German"
-msgstr "Alemán"
+msgid "Start: sector %s\n"
+msgstr "Comienzo: sector %s\n"
-#: ../../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
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "Next ->"
-msgstr "Siguiente ->"
+msgid "Size: %s"
+msgstr "Tamaño: %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid ""
-"Turning on this allows to print plain text files in japanese language. Only "
-"use this function if you really want to print text in japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Habilitar esto le permite imprimir archivos de texto plano en idioma "
-"japonés. Sólo use esta función y realmente desea imprimir texto en japonés, "
-"si se activa Usted no puede imprimir más caracteres acentuados en "
-"tipografías latinas y no podrá ajustar los márgenes, el tamaño de letra, "
-"etc. Este ajuste sólo afecta a las impresoras definidas en esta máquina. Si "
-"desea imprimir texto en una impresora ubicada en un máquina remota, debe "
-"activar esta función en dicha máquina remota."
+msgid ", %s sectors"
+msgstr ", %s sectores"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Es probable que esta partición sea\n"
-"una partición de Controlador, probablemente\n"
-"debería dejarla como está.\n"
+msgid "Cylinder %d to %d\n"
+msgstr "Cilindros %d a %d\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "Formateado\n"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Frecuencia de barrido horizontal"
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "No formateado\n"
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
+msgstr "Montado\n"
+
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Edit"
-msgstr "Editar"
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, c-format
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+"Loopback file(s):\n"
+" %s\n"
msgstr ""
-"No se puede deseleccionar el punto de montaje ya que esta partición\n"
-"se usa para un montaje en loopback.\n"
-"Quite el montaje de loopback primero"
+"Archivo(s) de loopback:\n"
+" %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1132
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\""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"La configuración de la red hecha durante la instalación no se puede iniciar "
-"ahora. Por favor, verifique si la red se hace accesible tras reiniciar su "
-"sistema y corrija la configuración usando el Centro de control de Mandrake, "
-"sección \"Redes e Internet\"/\"Conexión\", y tras esto configure la "
-"impresora, también utilizando el Centro de Control de Mandrake, sección "
-"\"Hardware\"/\"Impresora\"."
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "USB controllers"
-msgstr "Controladores USB"
+"Partición predeterminada de arranque\n"
+" (para arranque de MS-DOS, no para lilo)\n"
-#: ../../Xconfig/various.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "What norm is your TV using?"
-msgstr "¿Qué norma está utilizando su TV?"
+msgid "Level %s\n"
+msgstr "Nivel %s\n"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "Type:"
-msgstr "Tipo:"
+msgid "Chunk size %s\n"
+msgstr "Tamaño de los bloques %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Share name"
-msgstr "Nombre del recurso compartido"
+msgid "RAID-disks %s\n"
+msgstr "Discos-RAID %s\n"
-#: ../../standalone/drakgw:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "enable"
-msgstr "activar"
+msgid "Loopback file name: %s"
+msgstr "Nombre del archivo de loopback: %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-"Contactando con el sitio web de Mandrake Linux para obtener la lista de las "
-"réplicas disponibles"
+"\n"
+"Es probable que esta partición sea\n"
+"una partición de Controlador, probablemente\n"
+"debería dejarla como está.\n"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"Ocurrió un problema mientras se reiniciaba la red: \n"
"\n"
-"%s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove the loopback file?"
-msgstr "¿Borrar el archivo de loopback?"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "El tamaño seleccionado es mayor que el disponible"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP server name missing!"
-msgstr "¡No se encuentra el nombre del servidor NCP!"
+"Esta partición especial de Bootstrap\n"
+"es para el arranque\n"
+"dual de su sistema.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose your country."
-msgstr "Seleccione su país, por favor."
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
+msgstr "Sólo lectura"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Respaldar archivos del disco rígido..."
+msgid "Size: %s\n"
+msgstr "Tamaño: %s\n"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "Laotian"
-msgstr "Laosiano"
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Geometría: %s cilindros, %s cabezas, %s sectores\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Samoa"
-msgstr "Samoa"
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
+msgstr "Info: "
-#: ../../services.pm:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"El protocolo rstat permite a los usuarios de una red recoger\n"
-"información sobre el rendimiento de cualquier máquina de dicha red."
+msgid "LVM-disks %s\n"
+msgstr "Discos-LVM %s\n"
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid "Re-generating list of configured scanners ..."
-msgstr "Regenerando lista de escáneres configurados ..."
+msgid "Partition table type: %s\n"
+msgstr "Tipo de la tabla de particiones: %s\n"
-#: ../../modules/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1169
#, c-format
-msgid "Module configuration"
-msgstr "Configuración del módulo"
+msgid "on channel %d id %d\n"
+msgstr "en el canal %d id %d\n"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Scanner"
-msgstr "Escáner."
+#: ../../diskdrake/interactive.pm_.c:1199
+msgid "Filesystem encryption key"
+msgstr "Clave de cifrado del sistema de archivos"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Advertencia: probar esta tarjeta de vídeo puede colgar su computadora"
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
+msgstr "Elija la clave de cifrado de su sistema de archivos"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1203
#, c-format
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-"El nombre de usuario (login) sólo debe contener letras, números, `-' y `_'"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
+"Esta clave de cifrado es demasiado simple\n"
+"(tiene que tener por lo menos una longitud de %d caracteres)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "Bienvenidos, crackers"
+#: ../../diskdrake/interactive.pm_.c:1204
+msgid "The encryption keys do not match"
+msgstr "Las claves de cifrado no coinciden"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "Opciones de los módulos:"
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
+msgstr "Clave de cifrado"
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
-msgstr "Haga seguras sus redes con el Multi Network Firewall"
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
+msgstr "Clave de cifrado (otra vez)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Continuar sin configurar la red"
+#: ../../diskdrake/removable.pm_.c:47
+msgid "Change type"
+msgstr "Cambiar tipo"
-#: ../../network/isdn.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "Abort"
-msgstr "Abortar"
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+"No se puede conectar utilizando el nombre de usuario %s (¿contraseña "
+"incorrecta?)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "Sin pedido de contraseña en %s en el puerto %s"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Se necesita autenticación de dominio"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse con emulación de rueda"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Otro"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Uso de escáneres remotos"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Qué nombre de usuario"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
+"Please enter your username, password and domain name to access this host."
msgstr ""
-"Su partición Windows está muy fragmentada, por favor primero ejecute \"defrag"
-"\""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Noruego)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Progreso de respaldo del disco rígido..."
-
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "No se puede hacer fork: %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "Tipo: "
+"Por favor, ingrese su nombre de usuario, contraseña y nombre de dominio para "
+"acceder a este host."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Editar cliente"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+msgid "Username"
+msgstr "Nombre de usuario"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "no fonts found"
-msgstr "no se encontraron tipografías"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Dominio"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Mouse"
-msgstr "Ratón"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+msgid "Search servers"
+msgstr "Buscar servidores"
-#: ../../bootloader.pm:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "not enough room in /boot"
-msgstr "no hay espacio suficiente en /boot"
+msgid "%s formatting of %s failed"
+msgstr "%s formateo de %s falló"
-#: ../../install_steps_gtk.pm:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "trying to promote %s"
-msgstr "intentando promover a %s"
+msgid "I don't know how to format %s in type %s"
+msgstr "No sé cómo formatear %s en el tipo %s"
-#: ../../lang.pm:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
+msgid "mounting partition %s in directory %s failed"
+msgstr "falló el montaje de la partición %s en el directorio %s"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid "Host name"
-msgstr "Nombre de la máquina"
+msgid "error unmounting %s: %s"
+msgstr "error desmontando %s: %s"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the color of the progress bar"
-msgstr "el color de la barra de progreso"
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "simple"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Suprimir archivos de tipografías"
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
+msgstr "con /usr"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to RAID"
-msgstr "Añadir al RAID"
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "servidor"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
+#: ../../fsedit.pm_.c:240
#, c-format
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"
+"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"
-" * 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."
+"Do you agree to loose all the partitions?\n"
msgstr ""
-"Puede agregar entradas adicionales para Yaboot, ya sea para otros sistemas\n"
-"operativos, núcleos alternativos, o para una imagen de arranque de\n"
-"emergencia.\n"
-"\n"
-"Para otros sistemas operativos, la entrada consiste sólo de una etiqueta y\n"
-"la partición raíz.\n"
-"\n"
-"Para Linux, hay algunas opciones posibles:\n"
-"\n"
-" * Etiqueta: esta es simplemente el nombre que deberá teclear en el prompt\n"
-"de yaboot para seleccionar esta opción de arranque.\n"
-"\n"
-" * Imagen: esta debería ser el nombre del núcleo a arrancar. Típicamente,\n"
-"vmlinux o una variación de vmlinux con una extensión.\n"
-"\n"
-" * Raíz: el dispositivo \"root\" o \"/\" para su instalación Linux.\n"
-"\n"
-" * Añadir: la opción de añadir al núcleo se usa bastante sobre el hardware\n"
-"Apple para asistir en la inicialización del hardware de vídeo, o para\n"
-"habilitar la emulación de los botones del ratón con el teclado para los\n"
-"botones 2do y 3ro del ratón que por lo general no tienen los ratones\n"
-"estándar de Apple. Algunos ejemplos son los siguientes:\n"
-"\n"
-" \tvideo=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-"hda=autotune\n"
-"\n"
-" \tvideo=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-" * Initrd: esta opción se puede usar o bien para cargar los módulos\n"
-"iniciales, antes que esté disponible el dispositivo de arranque, o bien\n"
-"cargar una imagen de ramdisk para una situación de arranque de emergencia.\n"
-"\n"
-" * Tamaño de Initrd: generalmente el tamaño por defecto del ramdisk es 4096\n"
-"bytes. Puede usar esta opción si necesita asignar un ramdisk mayor.\n"
-"\n"
-" * Lectura-Escritura: normalmente la partición \"root\" se levanta en modo\n"
-"de sólo lectura, para permitir una verificación del sistema de archivos\n"
-"antes que el sistema se levante por completo. Aquí puede cambiar esta\n"
-"opción.\n"
-"\n"
-" * NoVideo: en caso que el hardware de vídeo de Apple sea excepcionalmente\n"
-"problemático, puede seleccionar esta opción para arrancar en el modo\n"
-"\"novideo\", con soporte nativo para el frame-buffer.\n"
+"No se puede leer la tabla de particiones de %s, está demasiado corrupta :(\n"
+"Se puede seguir, borrando las particiones malas (¡perderá TODOS LOS "
+"DATOS!).\n"
+"La otra solución es no permitir que DrakX modifique la tabla de "
+"particiones.\n"
+"(el error es %s)\n"
"\n"
-" * Predeterminada: selecciona a esta entrada como la opción Linux por\n"
-"defecto, que se puede elegir simplemente presionando [Intro] en el prompt\n"
-"de Yaboot. Esta entrada también se marcará con un \"*\", si presiona [Tab]\n"
-"para ver las selecciones del arranque."
+"¿Está de acuerdo en perder todas las particiones?\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr ""
-"La impresora \"%s\" se agregó satisfactoriamente a Star Office/OpenOffice."
-"org."
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr "No se puede usar JFS para particiones menores de 32MB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No floppy drive available!"
-msgstr "¡Ninguna disquetera disponible!"
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "No se puede usar ReiserFS para particiones menores de 32MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"Para conocer las opciones disponibles para la impresora corriente lea la "
-"lista que se muestra debajo o haga clic sobre el botón \"Imprimir lista de "
-"opciones\".%s%s%s\n"
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
+msgstr "Los puntos de montaje deben comenzar con una /"
-#: ../../lang.pm:1
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "Saudi Arabia"
-msgstr "Arabia Saudí"
+msgid "There is already a partition with mount point %s\n"
+msgstr "Ya existe una partición con el punto de montaje %s\n"
-#: ../../services.pm:1
+#: ../../fsedit.pm_.c:526
#, c-format
-msgid "Internet"
-msgstr "Internet"
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr "No puede usar un Volumen Lógico LVM para el punto de montaje %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "¿Seguir adelante?"
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
+msgstr "Este directorio debería permanecer dentro del sistema de archivos raíz"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:530
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Si no se lista su impresora, elija una compatible (vea el manual de la "
-"misma) o una simliar."
+"Necesita un sistema de archivos verdadero (ext2/ext3, reiserfs, xfs o jfs) "
+"para este punto de montaje\n"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:532
#, c-format
-msgid "Printer"
-msgstr "Impresora"
+msgid "You can't use an encrypted file system for mount point %s"
+msgstr ""
+"No puede usar un sistema de archivos cifrado para el punto de montaje %s"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices were added:\n"
-msgstr "Se agregaron algunos dispositivos:\n"
+#: ../../fsedit.pm_.c:599
+msgid "Not enough free space for auto-allocating"
+msgstr "No hay espacio libre suficiente para la asignación automática"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometría: %s cilindros, %s cabezas, %s sectores\n"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
+msgstr "Nada para hacer"
-#: ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:694
#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Imprimiendo en la impresora \"%s\""
+msgid "Error opening %s for writing: %s"
+msgstr "Error al abrir %s para escribir: %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr "/etc/hosts.allow y /etc/hosts.deny ya configurados - no se cambiaron"
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Tape"
-msgstr "Restaurar desde cinta"
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
+msgstr "No hay controlador alternativo"
-#: ../../standalone/drakbug:1
+#: ../../harddrake/sound.pm_.c:171
#, 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's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-"Para enviar un reporte de errores, haga clic sobre el botón Reporte, que "
-"abrirá su\n"
-"navegador predeterminado en Anthill donde podrá subir la información de "
-"arriba como un reporte de error."
+"No hay contrlador alternativo OSS/ALSA conocido para su tarjeta de sonido (%"
+"s) que en este momento usa \"%s\""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the profile to configure"
-msgstr "Elija el perfil a configurar"
+#: ../../harddrake/sound.pm_.c:173
+msgid "Sound configuration"
+msgstr "Configuración de sonido"
-#: ../../security/l10n.pm:1
+#: ../../harddrake/sound.pm_.c:174
#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
msgstr ""
-"Longitud mínima y cantidad de dígitos y letras mayúsculas para contraseñas"
+"Aquí puede seleccionar un controlador alternativo (OSS o ALSA) para su "
+"tarjeta de sonido (%s)"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../harddrake/sound.pm_.c:176
#, c-format
msgid ""
"\n"
"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
"\n"
"\n"
-"Ingrese un nombre de la máquina Zeroconf sin puntos si no desea\n"
-"utilizar el nombre predeterminado."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Respaldar Ahora desde archivo de configuración"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr "Los puntos de montaje deberían contener sólo caracteres alfanuméricos"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Reiniciando el sistema de impresión ..."
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr "Sólo puede correr sin soporte para CDROM"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "Ver información sobre el hardware"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
-msgstr "Día"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr "Primer sector de la partición de arranque"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Fabricante de la impresora, modelo"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue (Imprimir, no encolar)"
+"Actualmente su tarjeta usa el controlador %s\"%s\" (el controlador predet. "
+"para su tarjeta es \"%s\")"
-#: ../../standalone.pm:1
-#, 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)"
-msgstr ""
-"[OPCIONES]...\n"
-"Configurador del Servidor de Terminales de Mandrake (MTS)\n"
-"--enable : habilitar MTS\n"
-"--disable : deshabilitar MTS\n"
-"--start : iniciar MTS\n"
-"--stop : detener MTS\n"
-"--adduser : añadir usuario existente a MTS (necesita "
-"nombre_de_usuario)\n"
-"--deluser : quitar usuario existente de MTS (necesita "
-"nombre_de_usaurio)\n"
-"--addclient : añadir máquina cliente a MTS (necesita dirección MAC, IP, "
-"nombre imagen nbi)\n"
-"--delclient : quitar máquina cliente de MTS (necesita dirección MAC, "
-"IP, nombre imagen nbi)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Máscara de subred:"
+#: ../../harddrake/sound.pm_.c:178
+msgid "Driver:"
+msgstr "Controlador:"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Set password expiration and account inactivation delays"
-msgstr ""
-"Ajustar expiración de contraseñas y demoras de desactivación de cuentas"
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+msgid "Help"
+msgstr "Ayuda"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Carga"
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
+msgstr "Ayuda para cambiar entre ALSA y OSS"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
+#: ../../harddrake/sound.pm_.c:186
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"
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Los dos parámetros críticos son la frecuencia de barrido vertical, que "
-"indica la frecuencia\n"
-"a la cual se refresca la pantalla entera, y más importante aún, la "
-"frecuencia de sincronización\n"
-"horizontal, la cual es la frecuencia de las líneas de barrido horizontal.\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"
-"Es MUY IMPORTANTE que no especifique un tipo de monitor con una\n"
-"frecuencia de sincronización superior a la capacidad real de su monitor:\n"
-"puede dañar su monitor.\n"
-" En caso de duda, elija una configuración conservadora."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
-msgstr "Modificar"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"It also provides a much higher API than OSS.\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"
+"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 ""
+"OSS (Open Sound System) fue el primer API de sonido. Es un API de sonido "
+"independiente del sistema operativo (está disponible en la mayoría de los "
+"sistemas Unix) pero es un API muy básico y limitado.\n"
+"Es más, todos los controladores OSS reinventan la rueda.\n"
"\n"
-" Los comandos \"%s\" y \"%s\" también permiten modificar las opciones de "
-"configuración para un trabajo de impresión particular. Simplemente añada las "
-"opciones deseadas a la línea de comando, por ejemplo \"%s <archivo>\".\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "¡Necesita el nombre del host, el nombre de usuario y la contraseña!"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Insert floppy"
-msgstr "Inserte un disquete"
+"ALSA (Advanced Linux Sound Architecture) es una arquitectura modular que\n"
+"soporta un amplio rango de tarjetas ISA, USB y PCI.\n"
+"\n"
+"También brinda un API de más alto nivel que OSS.\n"
+"\n"
+"Para utilizar ALSA, uno puede utilizar:\n"
+"- el API antiguo de compatibilidad OSS\n"
+"- el API nuevo de ALSA que brinda muchas características mejoradas pero "
+"necesita del uso de la bilbioteca ALSA.\n"
-#: ../../diskdrake/dav.pm:1
+#: ../../harddrake/sound.pm_.c:202
#, 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\"."
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-"WebDAV es un protocolo que le permite montar localmente un directorio de un\n"
-"servidor web, y tratarlo como un sistema de archivos local (siempre y "
-"cuando\n"
-"el servidor web está configurado como servidor WebDAV). Si desea añadir\n"
-"puntos de montaje WebDAV, seleccione \"Nuevo\"."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
-msgstr "nuevo"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable syslog reports to console 12"
-msgstr "Habilitar/Deshabilitar reporte de syslog en la consola 12"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Would you like to try again?"
-msgstr "¿Desea intentar nuevamente?"
+"El controlador antiguo \"%s\" está en la lista negra.\n"
+"\n"
+"Ha sido reportado como problemático para el núcleo al descargarlo.\n"
+"\n"
+"El controlador nuevo \"%s\" sólo se utilizará en el próximo arranque."
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "Asistente"
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+msgid "Please Wait... Applying the configuration"
+msgstr "Espere, por favor... Aplicando la configuración"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected server"
-msgstr "Editar servidor seleccionado"
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "Espere, por favor"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Por favor, elija dónde desea realizar la copia de respaldo"
+#: ../../harddrake/sound.pm_.c:210
+msgid "No known driver"
+msgstr "No hay controlador conocido"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Necesita reiniciar el equipo para que se efectúe la modificación de la tabla "
-"de particiones"
+msgid "There's no known driver for your sound card (%s)"
+msgstr "No hay un controlador conocido para su tarjeta de sonido (%s)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "No incluir cache del navegador"
+#: ../../harddrake/sound.pm_.c:214
+msgid "Unkown driver"
+msgstr "Controlador desconocido"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, c-format
msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-"Falló la verificación del sistema de archivos %s. ¿Desea reparar los "
-"errores? (cuidado, puede perder datos)"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Por favor, seleccione la distribución de su teclado."
-
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "Estándar"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Seleccione el tipo de su ratón, por favor."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
-msgstr "Conectar..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "¡Falló la configuración de la impresora \"%s\"!"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "not configured"
-msgstr "no configurada"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "About"
-msgstr "Acerca de"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "Configuración de los proxies"
+"No está listado el contrlador \"%s\" para su tarjeta de sonido\n"
+"\n"
+"Por favor, envíe la salida del comando \"lspcidrake -v\" a\n"
+"<install at mandrakesoft dot com>\n"
+"con el tema: unlisted sound driver \"%s\""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Comienzo: sector %s\n"
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+msgid "Auto-detect"
+msgstr "Detección automática"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Mask"
-msgstr "Ninguna máscara"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+msgid "Unknown|Generic"
+msgstr "Desconocido|Genérico"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface already configured"
-msgstr "Interfaz de red ya configurada"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Desconocido|CPH05X (bt878) [muchos fabricantes]"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
-msgstr "¡No se pudo acceder al disquete!"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Desconocido|CPH06X (bt878) [muchos fabricantes]"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
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."
+"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 ""
-"Atención: El software libre (Free Software) puede no ser estar "
-"necesariamente\n"
-"libre de patentes, y alguno software libre incluído puede estar cubierto "
-"por\n"
-"patentes en su país. Por ejemplo, los decodificadores MP3 incluídos pueden\n"
-"necesitar una licencia para uso adicional (vea http://www.mp3licensing.com\n"
-"para más detalles). Si no está seguro si una patente puede o no aplicarse\n"
-"a Usted, por favor consulte las leyes locales."
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Mail Server"
-msgstr "Servidor de correo"
+"El módulo bttv del núcleo GNU/Linux simplemente detecta automáticamente los "
+"parámetros correctos para la mayoría de las tarjetas de TV modernas.\n"
+"Si no se detecta correctamente la suya, aquí puede forzar los tipos de "
+"tarjeta y sintonizador adecuados. Simplemente seleccione los parámetros de "
+"su tarjeta de TV si lo necesita."
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "Por favor, haga clic sobre una partición"
+#: ../../harddrake/v4l.pm_.c:227
+msgid "Card model:"
+msgstr "Modelo de la tarjeta :"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Dispositivo multifunción en HP JetDirect"
+#: ../../harddrake/v4l.pm_.c:228
+msgid "Tuner type:"
+msgstr "Tipo de sintonizador :"
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linux"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
+msgstr "Cantidad de búferes de captura :"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
-msgstr "¡Que tenga un buen día!"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "Cantidad de búferes de captura para la captura con mmap"
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
+#: ../../harddrake/v4l.pm_.c:231
+msgid "PLL setting:"
+msgstr "Configuración del PLL :"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Upgrade %s"
-msgstr "Actualizar %s"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
+msgstr "Soporte para radio :"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Seleccione la conexión de la impresora"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
+msgstr "habilitar el soporte para radio"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
-msgstr "Buscando canales de TV, en progreso ..."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+"GNU/Linux es un sistema multiusuario, y esto significa que cada usuario\n"
+"puede tener sus preferencias propias, sus archivos propios, y así\n"
+"sucesivamente. Puede leer la \"Guía del Usuario\" para aprender más. Pero,\n"
+"a diferencia de \"root\", que es el administrador, los usuarios que agregue\n"
+"aquí no podrán cambiar nada excepto su configuración y sus archivos\n"
+"propios. Tendrá que crear al menos un usuario no privilegiado para Usted\n"
+"mismo. Esa cuenta es donde debería conectarse para el uso diario. Aunque es\n"
+"muy práctico ingresar como \"root\" diariamente, ¡también puede ser muy\n"
+"peligroso! El error más leve podría significar que su sistema deje de\n"
+"funcionar. Si comete un error serio como usuario no privilegiado, sólo\n"
+"puede llegar a perder algo de información, pero no todo el sistema.\n"
+"\n"
+"Primero tendrá que ingresar su nombre real. Esto no es obligatorio, por\n"
+"supuesto - ya que, en realidad, puede ingresar lo que desee. DrakX tomará\n"
+"entonces la primer palabra que ingresó y la copiará al campo \"Nombre de\n"
+"usuario\". Este es el nombre que este usuario en particular usará para\n"
+"ingresar al sistema. Lo puede cambiar. Luego tendrá que ingresar una\n"
+"contraseña aquí. La contraseña de un usuario no privilegiado (regular) no\n"
+"es tan crucial como la de \"root\" desde el punto de vista de la seguridad,\n"
+"pero esto no es razón alguna para obviarla: después de todo, son sus\n"
+"archivos los que están en riesgo.\n"
+"\n"
+"Si hace clic sobre \"Aceptar usuario\", entonces puede agregar tantos como\n"
+"desee. Agregue un usuario para cada uno de sus amigos: por ejemplo su padre\n"
+"o su hermana. Cuando haya terminado de agregar todos los usuarios que\n"
+"desee, seleccione \"Hecho\".\n"
+"\n"
+"Hacer clic sobre el botón \"Avanzadas\" le permite cambiar el \"shell\"\n"
+"predeterminado para ese usuario (bash por defecto)."
-#: ../../standalone/drakbackup:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:48
msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/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 ""
-"Error enviando el archivo por FTP.\n"
-" Por favor, corrija su configuración de FTP."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr "Comienzo de rango IP:"
+"Arriba se listan las particiones Linux existentes que se detectaron en su\n"
+"disco rígido. Puede mantener las elecciones hechas por el asistente, las\n"
+"mismas son buenas para las instalaciones más comunes. Si hace cambios, al\n"
+"menos debe definir una partición raíz (\"/\"). No elija una partición muy\n"
+"pequeña o no podrá instalar software suficiente. Si desea almacenar sus\n"
+"datos en una partición separada, también puede necesitar crear una\n"
+"partición para \"/home\" (sólo es posible si tiene más de una partición\n"
+"Linux disponible).\n"
+"\n"
+"Cada partición se lista como sigue: \"Nombre\", \"Capacidad\".\n"
+"\n"
+"\"Nombre\" está estructurado: \"tipo de disco rígido\", \"número de disco\n"
+"rígido\", \"número de partición\" (por ejemplo, \"hda1\").\n"
+"\n"
+"\"Tipo de disco rígido\" es \"hd\" si su disco es un disco IDE y \"sd\" si\n"
+"el mismo es un disco SCSI.\n"
+"\n"
+"\"Número de disco rígido\" siempre es una letra que sigue a \"hd\" o a\n"
+"\"sd\". Para los discos IDE:\n"
+"\n"
+" * \"a\" significa \"disco rígido maestro en la controladora IDE\n"
+"primaria\",\n"
+"\n"
+" * \"b\" significa \"disco rígido esclavo en la controladora IDE\n"
+"primaria\",\n"
+"\n"
+" * \"c\" significa \"disco rígido maestro en la controladora IDE\n"
+"secundaria\",\n"
+"\n"
+" * \"d\" significa \"disco rígido esclavo en la controladora IDE\n"
+"secundaria\".\n"
+"\n"
+"Para los discos SCSI, una \"a\" significa \"SCSI ID menor\", una \"b\"\n"
+"significa \"segunda SCSI ID menor\", etc."
-#: ../../services.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:79
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."
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
-"El demonio para el superservidor de Internet (normalmente llamado inetd) "
-"inicia\n"
-"una variedad de servicios adicionales de internet según sea necesario.\n"
-"Es el responsable de iniciar varios servicios, incluyendo telnet, ftp, rsh\n"
-"y rlogin. Al desactivar inetd, se desactivan todos los servicios que "
-"dependen de él."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
-msgstr "la altura de la barra de progreso"
+"La instalación de Mandrake Linux se divide en varios CD-ROMs. DrakX sabe si\n"
+"un paquete seleccionado se encuentra en otro CD y expulsará el CD corriente\n"
+"y le pedirá que inserte uno diferente cuando sea necesario."
-#: ../../standalone/drakbackup:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:84
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"
+"you are not supposed to know them all by heart.\n"
"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
"\n"
-"- Guardar usando %s en el host: %s\n"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "Argentina"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Domain Name Server"
-msgstr "Servidor de nombres de dominio"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Level:"
-msgstr "Nivel de seguridad:"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr "Los puntos de montaje deben comenzar con una /"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Inidique el dispositivo de su CD/DVD"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "CUPS server"
-msgstr "Servidor CUPS"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Servidor de correo Postfix"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "Salir sin grabar"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "Yemen"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
-msgstr "Este producto está disponible en el sitio web MandrakeStore"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Hay muchas cosas para seleccionar (%s).\n"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "GMT - DrakClock"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
-"%s\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(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"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
"\n"
-"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."
+"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 (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
+"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
+"\n"
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
-"Ocurrió un error:\n"
+"Ahora es el momento de especificar los programas que desea instalar en su\n"
+"sistema. Hay miles de paquetes disponibles para Mandrake Linux, y no se\n"
+"supone que los conozca a todos de memoria.\n"
"\n"
+"Si está realizando una instalación estándar desde un CD-ROM, primero se le\n"
+"pedirá que especifique los CDs que tiene (sólo en modo Experto). Verifique\n"
+"las etiquetas de los CDs y marque las casillas que corresponden a los que\n"
+"tiene disponibles para la instalación. Haga clic sobre \"Aceptar\" cuando\n"
+"esté listo para continuar.\n"
"\n"
-"%s\n"
+"Los paquetes se ordenan en grupos que corresponden a un uso particular de\n"
+"su máquina. Los grupos en sí mismos están clasificados en cuatro secciones:\n"
"\n"
-"Se puede deber a archivos de configuración del sistema corruptos\n"
-"en la llave USB, en este caso quitarlos y luego volver a iniciar\n"
-"Mandrake Move debería solucionar el problema. Para hacerlo,\n"
-"haga clic sobre el botón correspondiente.\n"
+" * \"Estación de trabajo\": si planea utilizar su máquina como una estación\n"
+"de trabajo, seleccione uno o más grupos correspondientes.\n"
"\n"
+" * \"Desarrollo\": si la máquina se utilizará para programación, elija\n"
+"el(los) grupo(s) deseado(s).\n"
"\n"
-"También puede querer volver a arrancar y quitar la llave USB, o\n"
-"examinar el contenido de la misma en otro SO, o incluso echar\n"
-"un vistazo a los archivos de registro en las consolas #3 y #4\n"
-"para intentar dilucidar qué está ocurriendo."
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "Detección del disco rígido"
+" * \"Servidor\": finalmente, si se pretende usar la máquina como un\n"
+"servidor aquí puede seleccionar los servicios más comunes que desea que se\n"
+"instalen en la misma.\n"
+"\n"
+" * \"Entorno gráfico\": seleccione aquí su entorno gráfico preferido. Si\n"
+"desea tener una estación de trabajo gráfica, ¡seleccione al menos uno!\n"
+"\n"
+"Si mueve el cursor del ratón sobre el nombre de un grupo se mostrará un\n"
+"pequeño texto explicativo acerca de ese grupo. Si deselecciona todos los\n"
+"grupos cuando está realizando una instalación regular (es decir, no una\n"
+"actualización), aparecerá un diálogo que propone opciones diferentes para\n"
+"una instalación mínima:\n"
+"\n"
+" * \"Con X\": instala la menor cantidad de paquetes posible para tener un\n"
+"escritorio gráfico que funcione;\n"
+"\n"
+" * \"Con documentación básica\": instala el sistema base más algunos\n"
+"utilitarios básicos y la documentación de los mismos. Esta instalación es\n"
+"adecuada para configurar un servidor;\n"
+"\n"
+" * \"Instalación realmente mínima\": instalará el mínimo necesario estricto\n"
+"para obtener un sistema Linux que funciona, sólo en línea de comandos. Esta\n"
+"instalación ocupa alrededor de 65Mb.\n"
+"\n"
+"Puede marcar la opción \"Selección por paquetes individuales\" que es útil\n"
+"si está familiarizado con los paquetes que se ofrecen o si desea tener un\n"
+"control total sobre lo que se instalará.\n"
+"\n"
+"Si inició la instalación en el modo \"Actualización\", puede deseleccionar\n"
+"todos los grupos para evitar instalar cualquier paquete nuevo. Esto es útil\n"
+"para reparar o actualizar un sistema existente."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:135
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
msgstr ""
-"No ha seleccionado ningún grupo de paquetes\n"
-"Elija por favor la mínima instalación que quiera."
+"Finalmente, dependiendo de si Usted elige seleccionar los paquetes\n"
+"individuales o no, se le presentará un árbol que contiene todos los\n"
+"paquetes clasificados por grupos y sub-grupos. Mientras navega por el\n"
+"árbol, puede seleccionar grupos enteros, sub-grupos, o simplemente\n"
+"paquetes.\n"
+"\n"
+"Tan pronto como selecciona un paquete en el árbol, aparece una descripción\n"
+"del mismo sobre la derecha. Cuando ha finalizado con su selección, haga\n"
+"clic sobre el botón \"Instalar\" que lanzará el proceso de instalación.\n"
+"Dependiendo de la velocidad de su hardware y de la cantidad de paquetes que\n"
+"se deben instalar, el proceso puede tardar un rato en completarse. En la\n"
+"pantalla se muestra una estimación del tiempo necesario para completar la\n"
+"instalación para ayudarlo a considerar si tiene tiempo suficiente par\n"
+"disfrutar una taza de café.\n"
+"\n"
+"!! Si ha sido seleccionado un paquete de servidor ya sea intencionalmente o\n"
+"porque era parte de un grupo completo, se le pedirá que confirme que\n"
+"realmente desea que se instalen esos servidores. Bajo Mandrake Linux,\n"
+"cualquier servidor instalado se inicia de manera predeterminada al momento\n"
+"del arranque. Aunque estos son seguros y no tienen problemas conocidos al\n"
+"momento en que se publicó la distribución, puede ocurrir que más tarde se\n"
+"descubran vulnerabilidades en la seguridad. En particular, si no sabe que\n"
+"es lo que se supone que hace un servicio o la razón por la cual se está\n"
+"instalando, entonces haga clic sobre \"No\". Si hace clic sobre \"Sí\" se\n"
+"instalarán todos los servicios listados y de manera predeterminada los\n"
+"mismos arrancarán automáticamente. !!\n"
+"\n"
+"La opción \"Dependencias automáticas\" simplemente deshabilita el diálogo\n"
+"de advertencia cuando el instalador selecciona automáticamente un paquete.\n"
+"Esto ocurre porque se determina que es necesario para satisfacer una\n"
+"dependencia con otro paquete para poder completar la instalación\n"
+"satisfactoriamente.\n"
+"\n"
+"El pequeño icono del disquete al final de la lista le permite cargar la\n"
+"lista de paquetes elegida durante una instalación previa. Haga clic sobre\n"
+"este icono y se le pedirá que inserte un disquete creado con anterioridad\n"
+"al final de otra instalación. Vea el segundo consejo del último paso para\n"
+"información sobre como crear dicho disquete."
-#: ../../network/adsl.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:171
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."
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-"Necesita el microcódigo de Alcatel.\n"
-"Puede proporcionarlo ahora en un disquete o en su partición Windows,\n"
-"o puede omitirlo y realizarlo luego."
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "Por favor, ingrese la URL del servidor WebDAV"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "Tajikistán"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "Aceptar"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "Descripción"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter summary text."
-msgstr "Por favor ingrese el texto del resumen."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Error al abrir %s para escribir: %s"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Tipo de ratón: %s\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Su tarjeta puede admitir aceleración 3D por hardware con XFree %s."
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "Elija un monitor"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "No se admite una etiqueta vacía"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
-msgstr "Maltés (Reino Unido)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "No se pueden agregar más particiones"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "Tamaño en MB: "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "Impresora remota"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
-msgstr "Por favor, elija el idioma a usar."
+"Ahora se le propone configurar su conexión de red/Internet. Si desea\n"
+"conectar su computadora a la Internet o a una red de área local, haga clic\n"
+"sobre \"Aceptar\". Se lanzará la detección automática de dispositivos de\n"
+"red y módems. Si esta detección falla, quite la marca de la casilla \"Usar\n"
+"detección automática\" la próxima vez. También puede elegir no configurar\n"
+"la red, o hacerlo más tarde; en ese caso simplemente haga clic sobre el\n"
+"botón \"Cancelar\".\n"
+"\n"
+"Los tipos de conexión disponibles son: módem tradicional, módem RDSI\n"
+"(ISDN), conexión ADSL, cable módem, y finalmente una simple conexión LAN\n"
+"(Ethernet).\n"
+"\n"
+"Aquí no entraremos en detalle en cada configuración. Simplemente debe\n"
+"asegurarse que su Proveedor de Servicios de Internet o su administrador del\n"
+"sistema le proporcionaron todos los parámetros de configuración.\n"
+"\n"
+"Puede consultar el capítulo de \"Guía del Usuario\" sobre las conexiones a\n"
+"la Internet para detalles acerca de la configuración, o simplemente esperar\n"
+"hasta que su sistema esté instalado y usar el programa que se describe aquí\n"
+"para configurar su conexión.\n"
+"\n"
+"Si desea configurar la red más tarde, luego de la instalación, o si ha\n"
+"finalizado de configurar su conexión de red, haga clic sobre \"Cancelar\"."
-#: ../../network/network.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:193
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 ""
-"ADVERTENCIA: Previamente se ha configurado este dispositivo para conectarse "
-"con Internet.\n"
-"Simplemente acepte para mantener la configuración del dispositivo.\n"
-"Al modificar los campos de abajo se ignorará esta configuración."
-
-#: ../../any.pm:1
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
+"You may now choose which services you wish to start at boot time.\n"
+"\n"
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
+"\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
-"Puedo configurar su computadora para que entre automáticamente con un "
-"usuario."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Floppy format"
-msgstr "Formato del disquete"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Generic Printers"
-msgstr "Impresoras genéricas"
+"Ahora puede elegir los servicios que desea iniciar durante el arranque.\n"
+"\n"
+"Aquí se presentan todos los servicios disponibles con la instalación\n"
+"corriente. Debe revisarlos con cuidado y quitar la marca de aquellos que no\n"
+"siempre son necesarios al arrancar.\n"
+"\n"
+"Puede obtener un pequeño texto explicativo acerca de un servicio\n"
+"seleccionando un servicio específico. Sin embargo, si no está seguro si un\n"
+"servicio es útil o no, es más seguro dejar el comportamiento\n"
+"predeterminado.\n"
+"\n"
+"!! Tenga mucho cuidado en esta etapa si pretende usar su máquina como un\n"
+"servidor: probablemente no deseará arrancar servicios que no necesita. Por\n"
+"favor recuerde que varios servicios pueden ser peligrosos si se habilitan\n"
+"en un servidor. En general, seleccione sólo aquellos servicios que\n"
+"realmente necesita. !!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:210
msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-"Por favor, elija la impresora a la cual deberían ir los trabajos o ingrese "
-"el nombre de un dispositivo o archivo en la línea de entrada"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
msgstr ""
-"Los escáneres en esta máquina están disponibles para otras computadoras"
+"GNU/Linux administra la hora en GMT (\"Greenwich Mean Time\", Hora del\n"
+"Meridiano de Greenwich) y la traduce a la hora local de acuerdo al huso\n"
+"horario que Usted seleccionó. Sin embargo, es posible desactivar esto\n"
+"quitando la marca de la casilla \"Reloj interno puesto a GMT\" de forma tal\n"
+"que el reloj de hardware es el mismo que el del sistema. Esto es útil\n"
+"cuando la máquina alberga otro sistema operativo como Windows.\n"
+"\n"
+"La opción \"Sincronización automática de hora (usando NTP)\" regulará\n"
+"automáticamente el reloj conectándose a un servidor remoto de la hora en la\n"
+"Internet. Elija un servidor ubicado cerca suyo en la lista que se presenta.\n"
+"Por supuesto debe tener una conexión con la Internet funcionando para que\n"
+"esta característica funcione. La misma instalará en su máquina un servidor\n"
+"de la hora que, opcionalmente, puede ser utilizado por otras máquinas en su\n"
+"red local."
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of the root partition"
-msgstr "Primer sector de la partición raíz"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:224
+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.\n"
+"\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
+msgstr ""
+"X (por X Window System) es el corazón de la interfaz gráfica de GNU/Linux\n"
+"en el que se apoyan todos los entornos gráficos (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) que se incluyen con Mandrake Linux. En esta sección,\n"
+"DrakX intentará configurar a X automáticamente.\n"
+"\n"
+"Es extremadamente raro que esto falle, a menos que el hardware sea muy\n"
+"antiguo (o muy nuevo). Si no falla, arrancará X automáticamente con la\n"
+"mejor resolución posible dependiendo del tamaño de su monitor. Luego\n"
+"aparecerá una ventana que le pregunta si la puede ver.\n"
+"\n"
+"Si está haciendo una instalación en modo \"Experto\", ingresará al\n"
+"asistente de configuración de X. Para más información sobre este asistente\n"
+"vea la sección correspondiente del manual.\n"
+"\n"
+"Si puede ver el mensaje durante la prueba, y responde \"Sí\", entonces\n"
+"DrakX continuará con el paso siguiente. Si no puede ver el mensaje,\n"
+"simplemente significa que la configuración no era la correcta y la prueba\n"
+"terminará automáticamente luego de 10 segundos, restaurando la pantalla.\n"
+"Consulte la sección de configuración de vídeo de la guía del usuario para\n"
+"más información sobre como configurar su pantalla."
+
+#: ../../help.pm_.c:246
+msgid ""
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
+msgstr ""
+"Finalmente, se le preguntará si desea o no ver la interfaz gráfica al\n"
+"arranque. Note que esto se le preguntará incluso si eligió no probar la\n"
+"configuración. Obviamente, deseará contestar \"No\" si su máquina va a\n"
+"actuar como servidor, o si no tuvo éxito en la configuración de\n"
+"la pantalla."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Alternative drivers"
-msgstr "Controladores alternativos"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:253
+msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
+msgstr ""
+"El CD-ROM de Mandrake Linux tiene un modo de rescate incorporado. Usted\n"
+"puede acceder al mismo arrancando desde el CD-ROM, presionando la tecla\n"
+">>F1<< durante el arranque y tecleando >>rescue<< en el prompt. Pero en\n"
+"caso que su computadora no pueda arrancar desde el CD-ROM, Usted debería\n"
+"recurrir a este paso al menos en dos situaciones:\n"
+"\n"
+" * cuando instala el cargador de arranque, DrakX sobreescribirá el sector\n"
+"de arranque (MBR) de su disco principal (a menos que esté utilizando otro\n"
+"administrador de arranque) de forma tal que pueda iniciar o bien Windows o\n"
+"bien GNU/Linux (asumiendo que tiene Windows en su sistema). Si necesita\n"
+"volver a instalar Windows, el proceso de instalación de Microsoft\n"
+"sobreescribirá el sector de arranque, y entonces ¡Usted no podrá iniciar\n"
+"GNU/Linux!\n"
+"\n"
+" * si surge un problema y Usted no puede iniciar GNU/Linux desde el disco\n"
+"rígido, este disquete será la única manera de iniciar GNU/Linux. El mismo\n"
+"contiene una buena cantidad de herramientas del sistema para restaurar un\n"
+"sistema que colapsó debido a una falla de energía, un error de tecleo\n"
+"infortunado, un error en una contraseña, o cualquier otro motivo.\n"
+"\n"
+"Si dice \"Sí\", se le pedirá que inserte un disquete dentro de la\n"
+"disquetera. El disquete que inserte debe estar vacío o contener datos que\n"
+"no necesite. No tendrá que formatearlo ya que DrakX sobreescribirá el\n"
+"disquete por completo."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:277
+msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-"Please check all options that you need.\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
+"\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
msgstr ""
+"Ahora necesita elegir el lugar de su disco rígido donde se instalará su\n"
+"sistema operativo Mandrake Linux. Si su disco rígido está vacío o si un\n"
+"sistema operativo existente está utilizando todo el espacio disponible,\n"
+"necesitará particionar el disco. Básicamente, particionar un disco rígido\n"
+"consiste en dividirlo lógicamente para crear espacio para instalar su\n"
+"sistema Mandrake Linux nuevo.\n"
"\n"
-"Por favor, marque todas las opciones que necesita.\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
-msgstr "Cabo Verde"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "si esta CPU tiene o no el bug de la coma de Cyrix 6x86"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr "Cargando configuración de la impresora... Por favor, espere"
+"Debido a que los efectos del particionado por lo general son irreversibles,\n"
+"el particionado puede ser intimidante y estresante si Usted es un usuario\n"
+"inexperto. Por fortuna, hay un asistente que simplifica este proceso. Antes\n"
+"de comenzar, por favor consulte el manual y tómese su tiempo.\n"
+"\n"
+"Si está corriendo la instalación en modo Experto, ingresará a DiskDrake, la\n"
+"herramienta de particionado de Mandrake Linux, que le permite un ajuste\n"
+"fino de sus particiones. Vea la sección DiskDrake en la \"Guía del\n"
+"Usuario\". Desde la interfaz de instalación, puede utilizar los asistentes\n"
+"como se describe aquí haciendo clic sobre el botón \"Asistente\" del\n"
+"diálogo.\n"
+"\n"
+"Si ya se han definido particiones, ya sea de una instalación previa o por\n"
+"medio de otra herramienta de particionado, simplemente seleccione esas para\n"
+"instalar su sistema Linux.\n"
+"\n"
+"Si no hay particiones definidas, necesitará crearlas usando el asistente.\n"
+"Dependiendo de la configuración de su disco rígido, están disponibles\n"
+"varias opciones:\n"
+"\n"
+" * \"Usar espacio libre\": esta opción simplemente llevará a un\n"
+"particionado automático de su(s) disco(s) vacío(s). No se le pedirán más\n"
+"detalles ni se le formularán más preguntas.\n"
+"\n"
+" * \"Usar partición existente\": el asistente ha detectado una o más\n"
+"particiones Linux existentes en su disco rígido. Si desea utilizarlas,\n"
+"elija esta opción. Si lo hace se le pedirá que elija los puntos de montaje\n"
+"asociados a cada una de las particiones. Los puntos de montaje legados se\n"
+"seleccionan automáticamente, y por lo general debería mantenerlos.\n"
+"\n"
+" * \"Usar el espacio libre en la partición Windows\": si Microsoft Windows\n"
+"está instalado en su disco rígido y ocupa todo el espacio disponible en el\n"
+"mismo, Usted tiene que liberar espacio para los datos de Linux. Para\n"
+"hacerlo, puede borrar su partición y datos Microsoft Windows (vea las\n"
+"soluciones \"Borrar el disco completo\" o \"Modo experto\") o cambie el\n"
+"tamaño de su partición Windows. El cambio de tamaño se puede realizar sin\n"
+"la pérdida de datos, siempre y cuando Usted ha desfragmentado con\n"
+"anterioridad la partición Windows. También se recomienda hacer una copia de\n"
+"respaldo de sus datos.. Se recomienda esta solución si desea utilizar tanto\n"
+"Mandrake Linux como Microsoft Windows en la misma computadora.\n"
+"\n"
+" Antes de elegir esta opción, por favor comprenda que después de este\n"
+"procedimiento, el tamaño de su partición Microsoft Windows será más pequeño\n"
+"que ahora. Tendrá menos espacio bajo Microsoft Windows para almacenar sus\n"
+"datos o instalar software nuevo.\n"
+"\n"
+" * \"Borrar el disco entero\": si desea borrar todos los datos y todas las\n"
+"particiones presentes en su disco rígido y reemplazarlas con su nuevo\n"
+"sistema Mandrake Linux, elija esta opción. Tenga cuidado con esta solución\n"
+"ya que no podrá revertir su elección después de confirmarla.\n"
+"\n"
+" !! Si elige esta opción, se perderán todos los datos en su disco. !!\n"
+"\n"
+" * \"Quitar Windows\": simplemente esto borrará todo en el disco y\n"
+"comenzará particionando todo desde cero. Se perderán todos los datos en su\n"
+"disco.\n"
+"\n"
+" !! Si elige esta opción, se perderán todos los datos en su disco. !!\n"
+"\n"
+" * \"Modo experto\": elija esta opción si desea particionar manualmente su\n"
+"disco rígido. Tenga cuidado - esta es una elección potente pero peligrosa.\n"
+"Puede perder todos sus datos con facilidad. Por lo tanto, no elija esta\n"
+"opción a menos que sepa lo que está haciendo. Para saber como utilizar el\n"
+"utilitario DiskDrake que se utiliza aquí, consulte la sección \"Administrar\n"
+"sus particiones\" de la \"\"Guía del Usuario\"\"."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:347
+msgid ""
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-"los primeros Pentium eran defectuosos y se colgaban decodificando el código "
-"de bytes F00F"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr "Guam"
+"Ya está. Ahora la instalación está completa y su sistema GNU/Linux está\n"
+"listo para ser utilizado. Simplemente haga clic sobre \"Aceptar\" para\n"
+"volver a arrancar el sistema. Puede iniciar GNU/Linux o Windows, cualquiera\n"
+"que prefiera (si está usando el arranque dual) tan pronto como su máquina\n"
+"haya vuelto a arrancar.\n"
+"\n"
+"El botón \"Avanzadas\" (sólo en modo Experto) le muestra dos botones más\n"
+"para:\n"
+"\n"
+" * \"Generar un disquete de instalación automática\": para crear un\n"
+"disquete de instalación que realizará una instalación completa sin la\n"
+"asistencia de un operador, similar a la instalación que ha configurado\n"
+"recién.\n"
+"\n"
+" Note que hay dos opciones diferentes disponibles después de hacer clic\n"
+"sobre el botón:\n"
+"\n"
+" * \"Reproducir\" . Esta es una instalación parcialmente automatizada ya\n"
+"que la etapa de particionado (y sólo esta etapa) permanece interactiva.\n"
+"\n"
+" * \"Automatizada\" . Instalación completamente automatizada: el disco\n"
+"rígido se sobreescribe por completo, y se pierden todos los datos.\n"
+"\n"
+" Esta característica es muy útil cuando se instala una cantidad grande de\n"
+"máquinas similares. Vea la sección Auto install (en inglés) en nuestro\n"
+"sitio web.\n"
+"\n"
+" * \"Guardar selección de paquetes\"(*): guarda la selección de paquetes\n"
+"como se hizo con anterioridad. Luego, cuando haga otra instalación, inserte\n"
+"el disquete en la disquetera y ejecute la instalación yendo a la pantalla\n"
+"de ayuda con [F1], e ingrese >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) Necesita un disquete formateado con FAT (para crear uno bajo GNU/Linux\n"
+"teclee \"mformat a:\")"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:378
msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-"Por favor, elija el puerto donde está conectada su impresora o ingrese el "
-"nombre de un dispositivo o archivo en la línea de entrada"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/Opciones/Prueba"
+"Se debe formatear cualquier partición nueva que ha sido definida para que\n"
+"se pueda utilizar (formatear significa crear un sistema de archivos).\n"
+"\n"
+"Puede desear volver a formatear algunas particiones ya existentes para\n"
+"borrar cualquier dato que pudieran contener. Si así lo desea, por favor\n"
+"seleccione también dichas particiones.\n"
+"\n"
+"Por favor note que no es necesario volver a formatear todas las particiones\n"
+"pre-existentes. Debe volver a formatear las particiones que contienen el\n"
+"sistema operativo (tales como \"/\", \"/usr\" o \"/var\") pero no tiene que\n"
+"volver a formatear particiones que contienen datos que desea preservar\n"
+"(típicamente \"/home\").\n"
+"\n"
+"Tenga sumo cuidado cuando selecciona las particiones. Después de formatear,\n"
+"se borrarán todos los datos en las particiones seleccionadas y no podrá\n"
+"recuperarlos en absoluto.\n"
+"\n"
+"Haga clic sobre \"Aceptar\" cuando esté listo para formatear las\n"
+"particiones.\n"
+"\n"
+"Haga clic sobre \"Cancelar\" si desea elegir otra partición para la\n"
+"instalación de su sistema operativo Mandrake Linux nuevo.\n"
+"\n"
+"Haga clic sobre \"Avanzado\" si desea seleccionar las particiones en las\n"
+"que se buscarán bloques defectuosos en el disco."
-#: ../../security/level.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:404
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."
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
+"\n"
+"Please be patient."
msgstr ""
-"Este nivel se debe usar con mucho cuidado. Hace su sistema más simple de\n"
-"usar, pero también mucho más vulnerable: no debe usarse para una máquina\n"
-"conectada en red con otras o a Internet. No hay contraseñas de acceso."
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mounting partition %s"
-msgstr "Montando la partición %s"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "Nombre del usuario"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "¿Qué partición desea usar para Linux4Win?"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to missing %s"
-msgstr "debido a que falta %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Test pages"
-msgstr "Páginas de prueba"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Logical volume name "
-msgstr "Nombre del volúmen lógico"
+"En este momento se está instalando su sistema operativo Mandrake Linux\n"
+"nuevo. Dependiendo de la cantidad de paquetes que instalará y de la\n"
+"velocidad de su computadora, esta operación puede tomar desde unos pocos\n"
+"minutos hasta una cantidad de tiempo significativa.\n"
+"\n"
+"Por favor, tenga paciencia."
-#: ../../standalone/drakbackup:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:412
msgid ""
-"List of data to restore:\n"
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-"Lista de datos a restaurar:\n"
+"Es probable que cuando instale Mandrake Linux algunos paquetes se hayan\n"
+"actualizado desde la publicación inicial. Se pueden haber corregido algunos\n"
+"errores, y solucionado problemas de seguridad. Para permitir que Usted se\n"
+"beneficie de estas actualizaciones, ahora se le propone transferirlas desde\n"
+"la Internet. Elija \"Sí\" si tiene funcionando una conexión con la\n"
+"Internet, o \"No\" si prefiere instalar los paquetes actualizados más\n"
+"tarde.\n"
"\n"
+"Si elije \"Sí\" se muestra una lista de lugares desde los que se pueden\n"
+"obtener las actualizaciones. Elija el más cercano a Usted. Luego aparece un\n"
+"árbol de selección de paquetes: revise la selección y presione \"Instalar\"\n"
+"para transferir e instalar los paquetes seleccionados, o \"Cancelar\" para\n"
+"abortar."
-#: ../../fs.pm:1
-#, c-format
-msgid "Checking %s"
-msgstr "Verificando %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "Opciones de la impresora por socket/TCP"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Memoria (DMA) de la tarjeta"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Desconectando desde la Internet "
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "Francia"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
-msgstr "examinar"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
-msgstr "Verificando software instalado..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "¡Falta el nombre de la impresora remota!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "¿Desea habilitar la impresión en las impresoras en la red local?\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "Turquía"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel Speedtouch usb"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Number of buttons"
-msgstr "Cantidad de botones"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamita \"numérico\" QWERTY"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Module"
-msgstr "Módulo"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:425
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
msgstr ""
-"Además, las colas no creadas con este programa o con \"foomatic-configure\" "
-"no se pueden transferir."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
-msgstr "Hardware"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Las teclas Ctrl y Alt simultáneamente"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "Estados Unidos"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "User umask"
-msgstr "Máscara de usuario"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "¿SO predeterminado?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "Suizo (germánico)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Configurar los monitores independientemente"
+"Antes de continuar, debería leer cuidadosamente los términos de la\n"
+"licencia. La misma cubre a toda la distribución Mandrake Linux, y si Usted\n"
+"no está de acuerdo con todos los términos en ella, haga clic sobre el botón\n"
+"\"Rechazar\". Esto terminará la instalación de inmediato. Para continuar\n"
+"con la instalación, haga clic sobre el botón \"Aceptar\"."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:432
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\"."
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
msgstr ""
-"Por favor seleccione la impresora que desea configurar. La configuración de "
-"la impresora se hará de forma totalmente automatizada. Si su impresora no se "
-"detectó correctamente o si prefiere una configuración personalizada, active "
-"la \"Configuración manual\"."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "Servidor NTP"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Sulogin(8) in single user level"
-msgstr "Sulogin(8) en nivel de usuario único"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Load/Save on floppy"
-msgstr "Cargar/Guardar en un disquete"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
-msgstr "¡Todavía este tema no tiene un bootsplash en %s!"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "bueno"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Saliendo en %d segundos"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Seleccione el puerto serie al que está conectado su módem."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Property"
-msgstr "Propiedad"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr "Configuración LAN"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "Ghana"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
-msgstr "Se necesita Ruta o Módulo"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Advanced Options"
-msgstr "Opciones avanzadas"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Configuration"
-msgstr "Ver configuración"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
-msgstr "Bug de la coma"
+"En este punto, es tiempo de elegir el nivel de seguridad deseado para su\n"
+"máquina. Como regla general, cuanto más expuesta está la máquina, y cuantos\n"
+"más cruciales sean los datos que tenga almacenados el nivel de seguridad en\n"
+"la misma deberá ser más alto. Sin embargo, un nivel de seguridad más alto\n"
+"generalmente se obtiene a expensas de la facilidad de uso. Consulte el\n"
+"capítulo \"msec\" del \"Manual de Referencia\" para obtener más información\n"
+"sobre el significado de dichos niveles.\n"
+"\n"
+"Si no sabe que elegir, mantenga la opción predeterminada."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:442
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"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -5259,61 +3585,60 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``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."
@@ -5332,2072 +3657,1461 @@ msgstr ""
"Para particionar el disco rígido seleccionado, puede utilizar estas\n"
"opciones:\n"
"\n"
-" * \"%s\": esta opción borra todas las particiones sobre el disco\n"
+" * \"Borrar todo\": esta opción borra todas las particiones sobre el disco\n"
"seleccionado.\n"
"\n"
-" * \"%s\": esta opción le permite crear particiones ext3 y swap\n"
-"automáticamente en el espacio libre de su disco rígido.\n"
+" * \"Asignación automática\": esta opción le permite crear particiones ext3\n"
+"y swap automáticamente en el espacio libre de su disco rígido.\n"
"\n"
-" * \"%s\": le da acceso a características adicionales:\n"
+" * \"Más\": le da acceso a características adicionales:\n"
"\n"
-" * \"%s\": guarda la tabla de particiones en un disquete. Útil para\n"
-"recuperar la tabla de particiones más adelante en caso que sea necesario.\n"
-"Es altamente recomendable realizar este paso.\n"
+" * \"Guardar tabla de particiones\": guarda la tabla de particiones en\n"
+"un disquete. Útil para recuperar la tabla de particiones más adelante en\n"
+"caso que sea necesario. Es altamente recomendable realizar este paso.\n"
"\n"
-" * \"%s\": esta opción le permitirá restaurar una tabla de particiones\n"
-"guardada previamente en un disquete.\n"
+" * \"Recuperar tabla de particiones\": esta opción le permitirá\n"
+"restaurar una tabla de particiones guardada previamente en un disquete.\n"
"\n"
-" * \"%s\": si su tabla de particiones está dañada puede intentar\n"
-"recuperarla utilizando esta opción. Por favor, tenga cuidado y recuerde que\n"
-"puede fallar.\n"
+" * \"Rescatar tabla de particiones\": si su tabla de particiones está\n"
+"dañada puede intentar recuperarla utilizando esta opción. Por favor, tenga\n"
+"cuidado y recuerde que puede fallar.\n"
"\n"
-" * \"%s\": descarta todos los cambios y carga su tabla de particiones\n"
-"inicial.\n"
+" * \"Volver a cargar\": descarta todos los cambios y carga su tabla de\n"
+"particiones inicial.\n"
"\n"
-" * \"%s\": si desmarca esta opción los usuarios estarán forzados a\n"
-"montar y desmontar manualmente los soportes removibles como los disquetes y\n"
-"los CD-ROM.\n"
+" * \"Montaje automático de soportes removibles\": si desmarca esta\n"
+"opción los usuarios estarán forzados a montar y desmontar manualmente los\n"
+"soportes removibles como los disquetes y los CD-ROMs.\n"
"\n"
-" * \"%s\": use esta opción si desea utilizar un asistente para particionar\n"
-"su disco rígido. Se recomienda esto si no tiene un buen conocimiento del\n"
-"particionado.\n"
+" * \"Asistente\": use esta opción si desea utilizar un asistente para\n"
+"particionar su disco rígido. Se recomienda esto si no tiene un buen\n"
+"conocimiento del particionado.\n"
"\n"
-" * \"%s\": use esta opción para cancelar sus cambios.\n"
+" * \"Deshacer\": use esta opción para cancelar sus cambios.\n"
"\n"
-" * \"%s\": permite realizar acciones adicionales sobre las particiones\n"
-"(tipo, opciones, formatear) y brinda más información.\n"
+" * \"Cambiar a modo normal/experto\": permite realizar acciones adicionales\n"
+"sobre las particiones (tipo, opciones, formatear) y brinda más información.\n"
"\n"
-" * \"%s\": cuando ha terminado de particionar su disco rígido, esto\n"
+" * \"Hecho\": cuando ha terminado de particionar su disco rígido, esto\n"
"guardará sus cambios en el disco.\n"
"\n"
-"Cuando se define el tamaño de una partición, puede realizar un ajuste fino\n"
-"del tamaño utilizando las teclas de las flechas de su teclado.\n"
-"\n"
"Nota: todas las opciones son accesibles por medio del teclado. Navegue a\n"
"través de las particiones usando [Tab] y las flechas [Arriba/Abajo].\n"
"\n"
"Cuando se selecciona una partición, puede utilizar:\n"
"\n"
-" * [Ctrl][C] para crear una partición nueva (cuando está seleccionada una\n"
+" * Ctrl-c para crear una partición nueva (cuando está seleccionada una\n"
"partición vacía);\n"
"\n"
-" * [Ctrl][D] para borrar una partición;\n"
+" * Ctrl-d para borrar una partición;\n"
"\n"
-" * [Ctrl][M] para configurar el punto de montaje.\n"
+" * Ctrl-m para configurar el punto de montaje.\n"
"\n"
"Para obtener información sobre los distintos tipos de sistemas de archivos\n"
"disponibles, por favor lea el capítulo acerca de ext2FS del \"Manual de\n"
"Referencia\".\n"
"\n"
"Si está instalando en una máquina PPC, querrá crear una pequeña partición\n"
-"HFS de \"bootstrap\" de al menos 1 MB que será utilizada por el cargador de\n"
+"HFS de \"bootstrap\" de al menos 1MB que será utilizada por el cargador de\n"
"arranque yaboot. Si opta por hacer la partición un poco más grande, digamos\n"
"50 MB, puede ver que es un lugar útil para almacenar un núcleo y ramdisk\n"
"alternativos para arrancar en situaciones de emergencia."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:513
msgid ""
-"Graphic Card\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-" 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"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\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 ""
-"Tarjeta gráfica\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-" Normalmente el instalador puede detectar y configurar automáticamente la\n"
-"tarjeta gráfica instalada en su máquina. Si este no es el caso, en esta\n"
-"lista puede elegir la tarjeta que realmente posee.\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"
-" En caso que estén disponibles diferentes servidores para su tarjeta, con\n"
-"o sin aceleración de 3D, entonces se le propone elegir el servidor que\n"
-"mejor satisface sus necesidades."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Hubo un error al instalar los paquetes:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Configuración de impresora de inyección de tinta Lexmark"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "Deshacer"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Save partition table"
-msgstr "Guardar la tabla de particiones"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "Finlandés"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "Macedonia"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
-msgstr ""
-"La compartición por usuario utiliza el grupo \"fileshare\". \n"
-"Puede utilizar UserDrake para añadir un usuario a este grupo."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "Esloveno"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Authorize:\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"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-"- only local ones if set to \"LOCAL\"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- none if set to \"NONE\".\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
msgstr ""
-"Autorizar:\n"
+"Se ha detectado más de una partición Microsoft Windows en su disco rígido.\n"
+"Por favor, elija aquella a la cual desea cambiarle el tamaño para poder\n"
+"instalar su sistema operativo Mandrake Linux nuevo.\n"
"\n"
-"- todos los servicios controlados por tcp_wrappers (ver hosts.deny(5)) si se "
-"configura en \"TODO\",\n"
+"Cada partición se lista como sigue: \"Nombre Linux\", \"Nombre Windows\"\n"
+"\"Capacidad\".\n"
"\n"
-"- sólo los locales si se configura en \"LOCAL\"\n"
+"\"Nombre Linux\" está estructurado: \"tipo de disco rígido\", \"número de\n"
+"disco rígido\", \"número de partición\" (por ejemplo, \"hda1\").\n"
"\n"
-"- ninguno si se configura en \"NINGUNO\".\n"
+"\"Tipo de disco rígido\" es \"hd\" si su disco es un disco IDE y \"sd\" si\n"
+"el mismo es un disco SCSI.\n"
"\n"
-"Para autorizar los servicios que necesita, use /etc/hosts.allow (ver hosts."
-"allow(5))."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr "Libia"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"Configurando los scripts, instalando el software, iniciando los servidores..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Impresora en puerto paralelo #%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"\"Número de disco rígido\" siempre es una letra que sigue a \"hd\" o a\n"
+"\"sd\". Para los discos IDE:\n"
"\n"
-"- Burn to CD"
-msgstr ""
+" * \"a\" significa \"disco rígido maestro en la controladora IDE\n"
+"primaria\",\n"
"\n"
-"- Grabar en CD"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "Tabla"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "No sé cómo formatear %s en el tipo %s"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Model"
-msgstr "Modelo"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "USB printer #%s"
-msgstr "Impresora USB #%s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Stop Server"
-msgstr "Detener el Servidor"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
+" * \"b\" significa \"disco rígido esclavo en la controladora IDE\n"
+"primaria\",\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
+" * \"c\" significa \"disco rígido maestro en la controladora IDE\n"
+"secundaria\",\n"
"\n"
-"Seleccione un tema para\n"
-"lilo y bootsplash,\n"
-"puede elegirlos\n"
-"por separado"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Modem"
-msgstr "Módem"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr "Tuvalu"
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr "Usar detección automática"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
-msgstr ""
-"GPM añade soporte del ratón para los programas Linux en modo texto, como\n"
-"el Midnight Commander. También permite operaciones de cortar-y-pegar con\n"
-"el ratón en la consola, e incluye soporte para menús emergentes en la "
-"consola."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr "Iniciado al arranque"
-
-#: ../advertising/12-mdkexpert.pl:1
-#, 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:"
-msgstr ""
-"Únase a los equipos de soporte de Mandrakesoft y de la Comunidad Linux en "
-"línea para compartir su conocimiento y ayudar a otros convirtiéndose en un "
-"Experto reconocido en el sitio web de soporte técnico en línea:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "No password aging for"
-msgstr "Sin edad de contraseñas para"
-
-#: ../../standalone/draksec:1
-#, 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"
-msgstr ""
-"Se pueden configurar las opciones siguientes para personalizar\n"
-"la seguridad de su sistema. Si necesita explicación, mire la ayuda "
-"emergente.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Encontrar automáticamente impresoras disponibles en máquinas remotas"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr "Timor Oriental"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
-msgstr "en Dispositivo de Cinta"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+" * \"d\" significa \"disco rígido esclavo en la controladora IDE\n"
+"secundaria\".\n"
"\n"
-"- Save to Tape on device: %s"
-msgstr ""
+"Para los discos SCSI, una \"a\" significa \"SCSI ID menor\", una \"b\"\n"
+"significa \"segunda SCSI ID menor\", etc.\n"
"\n"
-"- Guardar en cinta en el dispositivo: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Login name"
-msgstr "Nombre de conexión"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
-msgstr "Reportar archivos sin dueño"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr "Borrar perfil..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Instalando Foomatic ..."
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Por favor salga de la sesión y luego pulse Ctrl-Alt-BackSpace"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected"
-msgstr "detectada"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "Se necesita reiniciar la red. ¿Desea reiniciarla?"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package: "
-msgstr "Paquete:"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr "No se puede escribir /etc/sysconfig/bootsplash."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "¡ADVERTENCIA DE SEGURIDAD!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
-msgstr "No, no deseo entrada automática"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Herramienta para migrar desde Windows"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr "Todos los idiomas"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "Borrando %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s no encontrado...\n"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Testing your connection..."
-msgstr "Probando su conexión..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cache size"
-msgstr "Tamaño del caché"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Las contraseñas están activadas, pero tampoco se recomienda usar este\n"
-"nivel para un ordenador conectado a una red."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr "Sector de comienzo: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr "Congo (Brazzaville)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Read"
-msgstr "Lectura"
+"\"Nombre Windows\" es la letra de su unidad de disco bajo Windows (el\n"
+"primer disco o partición se denomina \"C:\")."
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Se necesita instalar el paquete %s. ¿Quiere instalarlo?"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
+msgstr "Por favor, tenga paciencia. Esta operación puede tomar varios minutos."
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
-msgstr "Seychelles"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:547
+msgid ""
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
+"\n"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
+"\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
+"\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
+"\n"
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
+"\n"
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
+"\n"
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
+"\n"
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
+msgstr ""
+"DrakX ahora necesita saber si desea realizar una instalación por defecto\n"
+"(\"Recomendada\") o si desea tener un control mayor (\"Experto\"). También\n"
+"puede elegir realizar una instalación nueva o una actualización de un\n"
+"sistema Mandrake Linux existente:\n"
+"\n"
+" * \"Instalar\": el sistema anterior se borrará por completo, sin embargo,\n"
+"dependiendo de lo que su máquina contiene actualmente, podrá mantener\n"
+"algunas particiones antiguas (Linux u otras) sin cambios;\n"
+"\n"
+" * \"Actualización\": esta clase de instalación le permite simplemente\n"
+"actualizar los paquetes que en este momento están instalados en su sistema\n"
+"Mandrake Linux. La misma mantiene las particiones corrientes de sus discos\n"
+"así como también las configuraciones de usuarios. Todos los otros pasos de\n"
+"instalación permanecen disponibles, de manera similar a lo que ocurre con\n"
+"una instalación normal;\n"
+"\n"
+" * \"Sólo actualizar paquetes\": esta clase nueva de instalación le permite\n"
+"actualizar un sistema Mandrake Linux existente a la vez que mantiene sin\n"
+"cambios todas las configuraciones del sistema. También es posible añadir\n"
+"paquetes nuevos a la instalación corriente.\n"
+"\n"
+"Las actualizaciones deberían funcionar sin problemas para los sistemas\n"
+"Mandrake Linux que contienen la versión \"8.1\" o una posterior.\n"
+"\n"
+"Dependiendo de su conocimiento de GNU/Linux, elija una de las opciones\n"
+"siguientes:\n"
+"\n"
+" * Recomendada: elija esta si nunca ha instalado un sistema operativo\n"
+"GNU/Linux. La instalación será muy fácil y sólo se le formularán unas pocas\n"
+"preguntas;\n"
+"\n"
+" * Experto: si tiene un conocimiento bueno de GNU/Linux, puede que desee\n"
+"realizar una instalación altamente personalizada. Algunas de las decisiones\n"
+"que tendrá que realizar pueden resultar difíciles si no tiene un buen\n"
+"conocimiento de GNU/Linux, por lo tanto, no se recomienda que aquellos sin\n"
+"una cantidad importante de experiencia elijan esta clase de instalación.\n"
+"\n"
+"Este manual documentará la instalación completa de tipo \"Experto\" Si\n"
+"elige la clase de instalación \"Recomendada\", simplemente ignore los pasos\n"
+"que se presentan aquí que sólo se aplican a la clase de instalación\n"
+"\"Experto\"."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:582
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"
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
-"For your printer Printerdrake has found:\n"
+"Click on the \"More\" button to be presented with the complete list of\n"
+"supported keyboards.\n"
"\n"
-"%s"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
msgstr ""
-"Printerdrake ha comparado el modelo que resultó de la detección automática "
-"con los modelos listados en su base de datos de impresoras para encontrar la "
-"mejor coincidencia. Esta elección puede estar equivocada, especialmente si "
-"su impresora no está listada en absoluto en la base de datos. Entonces, "
-"verifique si la elección es correcta y haga clic en \"El modelo es correcto"
-"\" , caso contrario, haga clic en \"Seleccionar el modelo manualmente\" de "
-"forma tal que pueda elegir el modelo de su impresora manualmente en la "
-"pantalla siguiente.\n"
+"Normalmente, DrakX selecciona el teclado adecuado para Usted (dependiendo\n"
+"del idioma que eligió) y Usted ni siquiera verá este paso. Sin embargo,\n"
+"podría no tener un teclado que se corresponde exactamente con su idioma:\n"
+"por ejemplo, si Usted es un argentino que habla inglés, todavía podría\n"
+"desear que su teclado sea un teclado Latinoamericano. O si habla castellano\n"
+"pero está en Inglaterra puede estar en la misma situación. En ambos casos,\n"
+"Usted tendrá que volver a este paso de la instalación y elegir un teclado\n"
+"apropiado de la lista.\n"
"\n"
-"Para su impresora Printerdrake ha encontrado:\n"
+"Haga clic sobre el botón \"Más\" para que se le presente la lista completa\n"
+"de los teclados soportados.\n"
"\n"
-"%s"
+"Si eligió una distribución de teclado basada en un alfabeto no latino, en\n"
+"el próximo diálogo se le pedirá que elija la combinación de teclas que\n"
+"cambiará la distribución del teclado entre la latina y la no latina."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Bad password on %s"
-msgstr "Contraseña incorrecta en %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:598
msgid ""
+"The first step is to choose your preferred language.\n"
"\n"
-"There is one unknown printer directly connected to your system"
+"Please choose your preferred language for installation and system usage.\n"
+"\n"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
+"\n"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
+"El primer paso es elegir el idioma de instalación. En el ejemplo se elige\n"
+"\"Spanish (Argentina)\"(*).\n"
"\n"
-"Hay una impresaora desconocida conectada directamente a su sistema"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Control key"
-msgstr "Tecla Control derecha"
+"Por favor, elija su idioma preferido para la instalación y el uso del\n"
+"sistema.\n"
+"\n"
+"Al hacer clic sobre el botón \"Avanzado\" podrá seleccionar otros idiomas\n"
+"para instalar en su estación de trabajo. Seleccionar otros idiomas\n"
+"instalará los archivos específicos para la documentación del sistema y las\n"
+"aplicaciones. Por ejemplo, si albergará a gente de Francia en su máquina,\n"
+"seleccione Español como idioma principal en la vista de árbol y en la\n"
+"sección avanzada haga clic sobre la estrella gris que corresponde a\n"
+"\"Francés|Francia\".\n"
+"\n"
+"Note que se pueden instalar múltiples idiomas. Una vez que ha seleccionado\n"
+"cualquier idioma adicional haga clic sobre el botón \"Aceptar\" para\n"
+"continuar.\n"
+"\n"
+"(*) Ya que de ahí viene el traductor [:-)]"
-#: ../../network/tools.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:617
msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
+"\n"
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
+"\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
msgstr ""
-"Inserte un disquete formateado con FAT en la disquetera %s con %s en el "
-"directorio raiz y presione %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "Zambia"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr "Administrador de la seguridad (login o correo electrónico)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr "Lo siento, sólo se soportan los núcleos 2.4."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr "Rumano (qwerty)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
-msgstr "En desarrollo ... por favor, espere."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "Egipto"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "República Checa"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "Tarjeta de sonido"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Import Fonts"
-msgstr "Importación de tipografías"
+"DrakX generalmente detecta la cantidad de botones que tiene su ratón. Si\n"
+"no, asume que Usted tiene un ratón de dos botones y lo configurará para que\n"
+"emule el tercer botón. DrakX sabrá automáticamente si es un ratón PS/2,\n"
+"serie o USB.\n"
+"\n"
+"Si desea especificar un tipo de ratón diferente, seleccione el tipo\n"
+"apropiado de la lista que se proporciona.\n"
+"\n"
+"Si elije un ratón distinto al predeterminado, se le presentará una pantalla\n"
+"de prueba. Use los botones y la rueda para verificar que la configuración\n"
+"es correcta. Si el ratón no está funcionando correctamente, presione la\n"
+"barra espaciadora o [Intro] para \"Cancelar\" y vuelva a elegir.\n"
+"\n"
+"Los ratones con rueda a veces no se detectan automáticamente. Necesitará\n"
+"seleccionarlo manualemente en la lista. Debe asegurarse de seleccionar el\n"
+"correspondiente en el puerto correcto al cual está conectado. Luego que ha\n"
+"presionado el botón \"Aceptar\", se muestra una imagen de un ratón. Debe\n"
+"mover la rueda de su ratón para activarlo correctamente. Luego, pruebe\n"
+"todos los botones y que el movimiento es correcto en todas direcciones."
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:638
msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"Tiene una partición Microsoft Windows de gran tamaño.\n"
-"Le sugiero que primero cambie el tamaño de la misma\n"
-"(para eso haga clic sobre ella, y luego sobre \"Redimensionar\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Suprimir archivos temporales"
+"Por favor seleccione el puerto correcto. Por ejemplo, el puerto \"COM1\"\n"
+"bajo Windows se denomina \"ttyS0\" bajo GNU/Linux."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:642
+msgid ""
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
+"\n"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
+"\n"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
"\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
+"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
msgstr ""
-"Felicidades, la configuración de la red y de la Internet ha terminado.\n"
+"Este es el punto de decisión más crucial para la seguridad de su sistema\n"
+"GNU/Linux: tendrá que ingresar la contraseña de \"root\". \"root\" es el\n"
+"administrador del sistema y es el único autorizado a hacer actualizaciones,\n"
+"agregar usuarios, cambiar la configuración general del sistema, etc.\n"
+"Resumiendo, ¡\"root\" puede hacer de todo!. Es por esto que deberá elegir\n"
+"una contraseña que sea difícil de adivinar - DrakX le dirá si la que eligió\n"
+"es demasiado fácil. Como puede ver, puede optar por no ingresar una\n"
+"contraseña, pero le recomendamos encarecidamente que ingrese una, aunque\n"
+"sea sólo por una razón: no piense que debido a que Usted arrancó GNU/Linux,\n"
+"sus otros sistemas operativos están seguros contra los errores. Eso no es\n"
+"cierto debido a que \"root\" puede sobrepasar todas las limitaciones y\n"
+"borrar, sin intención, todos los datos que se encuentran en las particiones\n"
+"accediendo a las mismas sin el cuidado suficiente. Es por esto que es\n"
+"importante que sea difícil convertirse en \"root\".\n"
"\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "Cambiar el tipo de partición"
+"La contraseña debería ser una mezcla de caracteres alfanuméricos y tener al\n"
+"menos una longitud de 8 caracteres. Nunca escriba la contraseña de \"root\"\n"
+"- eso hace que sea muy fácil comprometer a un sistema.\n"
+"\n"
+"Sin embargo, por favor no haga la contraseña muy larga o complicada debido\n"
+"a que Usted debe poder recordarla sin realizar mucho esfuerzo.\n"
+"\n"
+"La contraseña no se mostrará en la pantalla a medida que Usted la teclee.\n"
+"Por lo tanto, tendrá que teclear la contraseña dos veces para reducir la\n"
+"posibilidad de un error de tecleo. Si ocurre que Usted comete dos veces el\n"
+"mismo error de tecleo, tendrá que utilizar esta contraseña \"incorrecta\"\n"
+"la primera vez que se conecte.\n"
+"\n"
+"En modo experto, se le preguntará si se conectará a un servidor de\n"
+"autenticación, por ejemplo NIS o LDAP.\n"
+"\n"
+"Si su red usa los protocolos LDAP, NIS, o PDC Dominio de Windows para la\n"
+"autenticación, seleccione el botón apropiado como \"autenticación\". Si no\n"
+"sabe, pregunte al administrador de su red.\n"
+"\n"
+"Si su computadora no está conectada a alguna red administrada, querrá\n"
+"elegir \"Archivos locales\" para la autenticación."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:678
msgid ""
-"Resolution\n"
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\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 ""
-"Resolución\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
+"OS;\n"
"\n"
-" Aquí puede elegir las resoluciones y profundidades de color entre\n"
-"aquellas disponibles para su hardware. Elija la que mejor se ajuste a sus\n"
-"necesidades (tenga presente que eso se puede cambiar luego de la\n"
-"instalación) En el monitor se muestra un ejemplo de la configuración\n"
-"elegida."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Network Options"
-msgstr "Opciones de red"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable msec hourly security check"
-msgstr "Habilitar verificación horaria de seguridad de msec"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"Mostrar tema\n"
-"bajo la consola"
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr "(en %s)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
+" * if a grub or LILO boot sector is found, it will replace it with a new\n"
+"one.\n"
+"\n"
+"if in doubt, DrakX will display a dialog with various options.\n"
+"\n"
+" * \"Bootloader to use\": you have three choices:\n"
+"\n"
+" * \"GRUB\": if you prefer grub (text menu);\n"
+"\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\n"
+"\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
+"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
+"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
+"\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\n"
+"\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
msgstr ""
-"Una biblioteca que le defiende ante ataques de desbordamiento de búfer y "
-"ataques con cadenas de formato."
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr "promedio"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "New printer name"
-msgstr "Nuevo nombre de la impresora"
+"LILO y grub son cargadores de arranque para GNU/Linux. Normalmente, esta\n"
+"etapa está completamente automatizada. De hecho, DrakX analiza el sector de\n"
+"arranque del disco y actúa en función de lo que encuentre allí:\n"
+"\n"
+" * si encuentra un sector de arranque de Windows, lo reemplazará con un\n"
+"sector de arranque de grub/LILO de forma tal que Usted pueda arrancar\n"
+"GNU/Linux u otro sistema operativo;\n"
+"\n"
+" * si encuentra un sector de arranque de grub o LILO, lo reemplazará con\n"
+"uno nuevo;\n"
+"\n"
+"En caso de duda, DrakX mostrará un diálogo con varias opciones:\n"
+"\n"
+" * \"Cargador de arranque a usar\": tiene tres opciones:\n"
+"\n"
+" * \"LILO con menú gráfico\": si prefiere a LILO con su interfaz\n"
+"gráfica.\n"
+"\n"
+" * \"GRUB\": si prefiere a grub (menú de texto).\n"
+"\n"
+" * \"LILO con menú de texto\": si prefiere a LILO con su interfaz de\n"
+"texto.\n"
+"\n"
+" * \"Dispositivo de arranque\": en la mayoría de los casos, no cambiará lo\n"
+"predeterminado (\"/dev/hda\"), pero si lo prefiere, el cargador de arranque\n"
+"se puede instalar en el segundo disco rígido (\"/dev/hdb\"), o incluso en\n"
+"un disquete (\"/dev/fd0\").\n"
+"\n"
+" * \"Demora antes de arrancar la imagen predeterminada\": cuando vuelve a\n"
+"arrancar la computadora, esta es la demora que se garantiza al usuario para\n"
+"elegir - en el menú del cargador de arranque, una entrada distinta a la\n"
+"predeterminada.\n"
+"\n"
+"!! Tenga presente que si no elige instalar un cargador de arranque\n"
+"(seleccionando \"Cancelar\"), ¡Debe asegurarse que tiene una forma de\n"
+"arrancar a su sistema Mandrake Linux! También debe asegurarse que sabe lo\n"
+"que hace antes de cambiar cualquier opción. !!\n"
+"\n"
+"Haciendo clic sobre el botón \"Avanzadas\" en este diálogo se le ofrecerán\n"
+"muchas opciones avanzadas que están reservadas para el usuario experto."
-#: ../../fs.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:718
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 )."
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"Permitir que un usuario regular monte el sistema de archivos. El\n"
-"nombre del usuario se escribe a mtab de forma tal que pueda desmontar\n"
-"el sistema de archivos otra vez. Esta opción implica las opciones noexec,\n"
-"nosuid, y nodev (a menos que las opciones subsiguientes digan lo contrario,\n"
-"tales como en la línea de opciones user,exec,dev,suid)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr "Guinea Ecuatorial"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup System"
-msgstr "Respaldar el sistema"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Build Backup"
-msgstr "Realizar respaldo"
+"Luego que haya configurado los parámetros generales del cargador de\n"
+"arranque se mostrará la lista de opciones de arranque que estarán\n"
+"disponibles al momento de arrancar.\n"
+"\n"
+"Si hay otro sistema operativo instalado en su máquina, se agregará el mismo\n"
+"automáticamente al menú de arranque. Aquí puede elegir ajustar las opciones\n"
+"existentes. Seleccione una entrada y haga clic sobre \"Modificar\" para\n"
+"cambiar los parámetros de la misma o quitarla; \"Añadir\" crea una entrada\n"
+"nueva; y \"Hecho\" avanza al paso de instalación siguiente.\n"
+"\n"
+"También, puede ser que no desee dar acceso a los otros sistemas operativos\n"
+"a terceros. En este caso, puede borrar las entradas correspondientes. ¡Pero\n"
+"entonces, Usted necesitará un disquete de arranque para poder arrancar esos\n"
+"otros sistemas operativos!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:732
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\n"
+"\n"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
msgstr ""
-"Para imprimir un archivo desde la línea de comando (ventana de terminal) use "
-"el comando \"%s <archivo>\" o \"%s <archivo>\".\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "En este momento no hay alternativa posible"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwertz)"
-msgstr "Rumano (qwertz)"
+"Debe indicar donde desea colocar la información necesaria para arrancar en\n"
+"GNU/Linux.\n"
+"\n"
+"A menos que sepa exactamente lo que está haciendo, elija \"Primer sector\n"
+"del disco (MBR)\"."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Write Config"
-msgstr "Escribir configuración"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:739
+msgid ""
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
+"\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
+"\n"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
+msgstr ""
+"Aquí seleccionamos un sistema de impresión para que use su computadora.\n"
+"Otros sistemas operativos pueden ofrecerle uno, pero Mandrake Linux le\n"
+"ofrece tres.\n"
+"\n"
+" * \"pdq\" - \"print, don't queue\" (imprimir sin poner en cola), es la\n"
+"elección si Usted tiene una conexión directa a su impresora y desea evitar\n"
+"el pánico de los papeles trabados, y no tiene impresora en red alguna.\n"
+"Manejará sólo casos de red muy simples y es algo lento para las redes.\n"
+"Elija \"pdq\" si esta es su luna de miel con GNU/Linux. Después de la\n"
+"instalación puede cambiar sus elecciones ejecutando PrinterDrake desde el\n"
+"Centro de Control Mandrake y eligiendo el modo experto.\n"
+"\n"
+" * \"CUPS\" - \"Common Unix Printing System\" (Sistema de Impresión Común\n"
+"de Unix) es excelente imprimiendo en su impresora local y también en la\n"
+"otra punta del planeta. Es simple y puede actuar como servidor o cliente\n"
+"para el sistema de impresión antiguo \"lpd\", por lo que es compatible con\n"
+"los sistemas anteriores. Puede hacer muchas cosas, pero la configuración\n"
+"básica es tan simple como la de \"pdq\". Si necesita que emule a un\n"
+"servidor \"lpd\", debe encender el demonio \"cups-lpd\". Tiene interfaces\n"
+"gráficas para imprimir o elegir las opciones de la impresora.\n"
+"\n"
+" * \"lprNG\" - \"line printer daemon New Generation\" (servidor de\n"
+"impresora de líneas Nueva Generación). Este sistema puede hacer\n"
+"aproximadamente las mismas cosas que los otros, pero imprimirá en\n"
+"impresoras montadas sobre una red Novell, debido a que soporta el protocolo\n"
+"IPX, y puede imprimir directamente a comandos del shell. Si necesita Novell\n"
+"o imprimir a comandos de sin utilizar tuberías, utilice lprNG. De no ser\n"
+"así, se prefiere a CUPS ya que es más simple y es mejor al trabajar sobre\n"
+"redes."
-#: ../../services.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:759
msgid ""
-"The routed daemon allows for automatic IP router table updated via\n"
-"the RIP protocol. While RIP is widely used on small networks, more complex\n"
-"routing protocols are needed for complex networks."
-msgstr ""
-"El demonio routed permite actualizar automáticamente las tablas de "
-"enrutamiento IP\n"
-"gracias al protocolo RIP. Mientras que RIP se usa bastante en redes "
-"pequeñas,\n"
-"para redes más complejas, se necesitan protocolos de enrutamiento más "
-"complejos."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr "Kiribati"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Ratón Logitech (serie, antiguo tipo C7) con emulación de rueda"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Otras claves (no de drakbackup) ya están en su lugar"
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"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 does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
+"\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
+msgstr ""
+"DrakX ahora detecta cualquier dispositivo IDE presente en su computadora.\n"
+"También buscará una o más tarjetas SCSI PCI en su sistema. Si se encuentra\n"
+"una tarjeta SCSI DrakX instalará el controlador apropiado automáticamente.\n"
+"\n"
+"Debido a que la detección de hardware a veces no detectará alguna pieza de\n"
+"hardware DrakX le pedirá que confirme si tiene una tarjeta SCSI PCI. Haga\n"
+"clic sobre \"Sí\" si sabe que hay una tarjeta SCSI instalada en su máquina.\n"
+"Se le presentará una lista de tarjetas SCSI de la cual elegir. Haga clic\n"
+"sobre \"No\" si no tiene hardware SCSI. Si no está seguro puede verificar\n"
+"la lista de hardware detectado en su máquina seleccionando \"Ver\n"
+"información sobre el hardware\" y haciendo clic sobre \"Aceptar\". Examine\n"
+"la lista de hardware y luego haga clic sobre el botón \"Aceptar\" para\n"
+"volver a la pregunta sobre la interfaz SCSI.\n"
+"\n"
+"Si tiene que seleccionar su adaptador manualmente, DrakX le preguntará si\n"
+"desea especificar opciones para el mismo. Debería permitir que DrakX sondee\n"
+"el hardware buscando las opciones específicas que necesita el hardware para\n"
+"inicializarse. Por lo general esto funciona bien.\n"
+"\n"
+"Si DrakX no puede sondear las opciones que deben pasarse, necesitará\n"
+"proporcionar manualmente las opciones al controlador. Por favor revise la\n"
+"\"Guía del Usuario\" (capítulo 3, sección \"Recopilando información acerca\n"
+"de su hardware\") en busca de consejos para recopilar los parámetros\n"
+"necesarios a partir de la documentación del hardware, desde el sitio web\n"
+"del fabricante (si tiene acceso a la Internet) o desde Microsoft Windows\n"
+"(si utilizaba este hardware con Windows en su sistema)."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:781
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"
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
"\n"
-"You will be presented with a list of different parameters to change to get\n"
-"an optimal graphical display: Graphic Card\n"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\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"
+"For Linux, there are a few possible options:\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"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
"\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
"\n"
-"Monitor\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
"\n"
-" 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"
+" 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"
-"Resolution\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
"\n"
-" 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"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
"\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support;\n"
"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
+msgstr ""
+"Puede agregar entradas adicionales para Yaboot, ya sea para otros sistemas\n"
+"operativos, núcleos alternativos, o para una imagen de arranque de\n"
+"emergencia.\n"
"\n"
-"Test\n"
+"Para otros sistemas operativos, la entrada consiste sólo de una etiqueta y\n"
+"la partición raíz.\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"
+"Para Linux, hay algunas opciones posibles:\n"
"\n"
+" * Etiqueta: esta es simplemente el nombre que deberá teclear en el prompt\n"
+"de yaboot para seleccionar esta opción de arranque.\n"
"\n"
+" * Imagen: esta debería ser el nombre del núcleo a arrancar. Típicamente,\n"
+"vmlinux o una variación de vmlinux con una extensión.\n"
"\n"
-"Options\n"
+" * Raíz: el dispositivo \"root\" o \"/\" para su instalación Linux.\n"
"\n"
-" Here you can choose whether you want to have your machine automatically\n"
-"switch to a graphical interface at boot. Obviously, you want to check\n"
-"\"%s\" if your machine is to act as a server, or if you were not successful\n"
-"in getting the display configured."
-msgstr ""
-"X (por \"X Window System\") es el corazón de la interfaz gráfica de\n"
-"GNU/Linux en el que se apoyan todos los entornos gráficos (KDE, GNOME,\n"
-"AfterStep, WindowMaker, etc.) que se incluyen con Mandrake Linux.\n"
+" * Añadir: la opción de añadir al núcleo se usa bastante sobre el hardware\n"
+"Apple para asistir en la inicialización del hardware de vídeo, o para\n"
+"habilitar la emulación de los botones del ratón con el teclado para los\n"
+"botones 2do y 3ro del ratón que por lo general no tienen los ratones\n"
+"estándar de Apple. Algunos ejemplos son los siguientes:\n"
"\n"
-"Se le presentará la lista de parámetros diferentes a cambiar para obtener\n"
-"una presentación gráfica óptima: Tarjeta gráfica\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"hda=autotune\n"
"\n"
-" Normalmente el instalador puede detectar y configurar automáticamente la\n"
-"tarjeta gráfica instalada en su máquina. Si este no es el caso, en esta\n"
-"lista puede elegir la tarjeta que realmente posee.\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
-" En caso que estén disponibles diferentes servidores para su tarjeta, con\n"
-"o sin aceleración de 3D, entonces se le propone elegir el servidor que\n"
-"mejor satisface sus necesidades.\n"
+" * Initrd: esta opción se puede usar o bien para cargar los módulos\n"
+"iniciales, antes que esté disponible el dispositivo de arranque, o bien\n"
+"cargar una imagen de ramdisk para una situación de arranque de emergencia.\n"
"\n"
+" * Tamaño de Initrd: generalmente el tamaño por defecto del ramdisk es 4096\n"
+"bytes. Puede usar esta opción si necesita asignar un ramdisk mayor.\n"
"\n"
+" * Lectura-Escritura: normalmente la partición \"root\" se levanta en modo\n"
+"de sólo lectura, para permitir una verificación del sistema de archivos\n"
+"antes que el sistema se levante por completo. Aquí puede cambiar esta\n"
+"opción.\n"
"\n"
-"Monitor\n"
+" * NoVideo: en caso que el hardware de vídeo de Apple sea excepcionalmente\n"
+"problemático, puede seleccionar esta opción para arrancar en el modo\n"
+"\"novideo\", con soporte nativo para el frame-buffer.\n"
"\n"
-" Normalmente el instalador puede detectar y configurar automáticamente el\n"
-"monitor conectado a su máquina. Si este no es el caso, en esta lista puede\n"
-"elegir el monitor que realmente posee.\n"
+" * Predeterminada: selecciona a esta entrada como la opción Linux por\n"
+"defecto, que se puede elegir simplemente presionando [Intro] en el prompt\n"
+"de Yaboot. Esta entrada también se marcará con un \"*\", si presiona [Tab]\n"
+"para ver las selecciones del arranque."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:828
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
"\n"
+"Yaboot's main options are:\n"
"\n"
+" * Init Message: a simple text message displayed before the boot prompt;\n"
"\n"
-"Resolució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"
-" Aquí puede elegir las resoluciones y profundidades de color entre\n"
-"aquellas disponibles para su hardware. Elija la que mejor se ajuste a sus\n"
-"necesidades (tenga presente que eso se puede cambiar luego de la\n"
-"instalación) En el monitor se muestra un ejemplo de la configuración\n"
-"elegida.\n"
+" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+"yaboot. The first delay is measured in seconds and at this point, you can\n"
+"choose between CD, OF boot, MacOS or Linux;\n"
"\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\n"
"\n"
-"Probar\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
-" El sistema intentará abrir una pantalla gráfica con la resolución\n"
-"deseada. Si puede ver el mensaje durante la prueba, y responde \"%s\",\n"
-"entonces DrakX continuará con el paso siguiente. Si no puede ver el\n"
-"mensaje, significa que alguna parte de la configuración detectada\n"
-"automáticamente no era la correcta y la prueba terminará automáticamente\n"
-"luego de 12 segundos, restaurando el menú. Cambie los ajustes hasta obtener\n"
-"una pantalla correcta.\n"
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
+msgstr ""
+"Yaboot es un cargador de arranque para el hardware NewWorld MacIntosh. El\n"
+"mismo puede arrancar o GNU/Linux, o MacOS o MacOSX si se encuentran en su\n"
+"computadora. Normalmente, estos sistemas operativos se detectan e instalan\n"
+"correctamente. Si este no es el caso, puede agregar una entrada a mano en\n"
+"esta pantalla. Tenga cuidado de elegir los parámetros correctos.\n"
"\n"
+"Las opciones principales de Yaboot son:\n"
"\n"
+" * Mensaje de Init: un mensaje de texto simple que se muestra antes del\n"
+"prompt de arranque.\n"
"\n"
-"Opciones\n"
+" * Dispositivo de arranque: indica donde desea colocar la información\n"
+"necesaria para arrancar en GNU/Linux. Generalmente, se configura una\n"
+"partición bootstrap con anterioridad para contener esta información.\n"
"\n"
-" Aquí puede elegir si desea que su máquina cambie automáticamente a la\n"
-"interfaz gráfica al arrancar. Obviamente, querrá marcar \"%s\" si su\n"
-"sistema actuará como servidor, o si no tuvo éxito en la configuración de su\n"
-"pantalla."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr "Examinar"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr "CD-ROM"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "¿Desea intentar conectarse a Internet ahora?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "Belga"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "¿Tiene una tarjeta de sonido ISA?"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"No se ha detectado ningún adaptador de red ethernet en su sistema.\n"
-"No se puede configurar este tipo de conexión."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Windows"
-msgstr "Windows"
-
-#: ../../common.pm:1
-#, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "No se pueden realizar instantáneas de pantalla antes del particionado"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Name"
-msgstr "Nombre del host"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Archivo/Guardar _Como"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"Para acceder a impresoras en servidores CUPS remotos en su red local, sólo "
-"necesita habilitar la opción \"Encontrar automáticamente impresoras "
-"disponibles en máquinas remotas\"; los servidores CUPS informan a la máquina "
-"automáticamente sobre sus impresoras. Todas las impresoras que su máquina "
-"conoce corrientemente se listan en la sección \"Impresoras remotas\" en la "
-"ventana principal de Printerdrake. Si sus servidores CUPS no están en su red "
-"local, tiene que ingresar aquí las direcciones IP y opcionalmente los "
-"números de puerto para obtener la información de las impresoras de los "
-"servidores."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
-"%s no está en la base de datos de escáneres, ¿configurarlo manualmente?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "Demora antes de arrancar la imagen predeterminada"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Restrict command line options"
-msgstr "Restringir las opciones de la línea de comandos"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "East Europe"
-msgstr "Europa del este"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "Usar el espacio libre"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "usar dhcp"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr "Alerta por correo"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Internet configuration"
-msgstr "Configuración de Internet"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr "Uzbekistán"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected %s"
-msgstr "Detectada %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Autodetectar im_presoras"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "Finalizar"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Mostrar los paquetes seleccionados automáticamente"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr "Togo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "Flags del CPU reportados por el núcleo"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "¡Ocurrió algo malo! - ¿Está instalado mkisofs?"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "Vuelva a intentarlo, por favor"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The model is correct"
-msgstr "El modelo es correcto"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Falló el redimensionado de la FAT: %s"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr "Selección de paquetes individuales"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr "Esta partición no es redimensionable"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr "Ubicación"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "EEUU (cable-hrc)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr "S. de a. con journal"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr "Verificaciones de promiscuidad de tarjetas Ethernet"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
-msgstr "Esta máquina"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Letra DOS: %s (simplemente una adivinanza)\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr "Bahrein"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Seleccione los archivos o directorios y haga clic sobre 'Aceptar'"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit scsi modules"
-msgstr "omitir módulos scsi"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "familia de la CPU (ej: 6 para clase i686)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Puesto que está realizando una instalación por red, su red ya está "
-"configurada.\n"
-"Haga clic sobre aceptar para mantener su configuración, o pulse cancelar "
-"para\n"
-"volver a configurar sus conexiones de red y a Internet.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
-msgstr "Ejecutar verificaciones de seguridad diarias"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Distribución del teclado: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"Aquí puede elegir si las impresoras conectadas a esta máquina deberían poder "
-"accederse desde máquinas remotas y desde qué máquinas remotas."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr "Maltés (EE.UU.)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "La creación del disquete de arranque se completó satisfactoriamente \n"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Monta y desmonta todos los puntos de montaje de sistemas de archivos\n"
-"compartidos por medio de la red; como NFS (Network File System),\n"
-"SMB (Lan Manager/Windows) y NCP (Netware)"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Launch the wizard"
-msgstr "Lanzar el asistente"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Tvcard"
-msgstr "Tarjeta de TV"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Cambiar entre el modo normal/experto"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr "Tamaño"
-
-#: ../../help.pm:1
-#, c-format
-msgid "GRUB"
-msgstr "GRUB"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr "Groenlandia"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "Jueves"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "No es la cinta adecuada. La cinta está etiquetada %s."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
+" * Demora de Open Firmware: a diferencia de LILO, hay dos demoras\n"
+"disponibles con Yaboot. La primera se mide en segundos y aquí puede elegir\n"
+"entre CD, arranque OF, MacOS o Linux.\n"
"\n"
-"What would you like to do?"
-msgstr ""
-"Ya se ha realizado la configuración de la conexión compartida a Internet.\n"
-"Ahora está activa.\n"
+" * Demora de arranque del núcleo: esta demora es similar a la demora de\n"
+"arranque de LILO. Luego de seleccionar Linux, tendrá esta demora en décimas\n"
+"de segundo antes que se seleccione su descripción del núcleo\n"
+"predeterminada.\n"
"\n"
-"¿Qué desea hacer?"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Borrar todos los NBI"
+" * ¿Habilitar arranque desde el CD?: marcando esta opción Usted puede\n"
+"elegir \"C\" para el CD en el primer prompt de arranque.\n"
+"\n"
+" * ¿Habilitar arranque OF?: marcando esta opción Usted puede elegir \"N\"\n"
+"para Open Firmware en el primer prompt de arranque.\n"
+"\n"
+" * SO predeterminado: puede seleccionar qué sistema operativo arrancará por\n"
+"defecto cuando expira la demora de Open Firmware."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:860
+#, fuzzy
msgid ""
-"This dialog allows you to fine tune your bootloader:\n"
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
"\n"
-" * \"%s\": there are three choices for your bootloader:\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
"\n"
-" * \"%s\": if you prefer grub (text menu).\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
"\n"
-" * \"%s\": if you prefer LILO with its text menu interface.\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
-" * \"%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"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\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"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\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"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\n"
"\n"
-"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
-"are normally reserved for the expert user."
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
msgstr ""
-"Este diálogo le permite un ajuste fino de su cargador de arranque:\n"
+"Aquí se le presentan varios parámetros que conciernen a su máquina.\n"
+"Dependiendo de su hardware instalado, puede - o no, ver las entradas\n"
+"siguientes:\n"
"\n"
-" * \"%s\": hay tres opciones para su cargador de arranque:\n"
+" * \"Ratón\": verifique la configuración del ratón y haga clic sobre el\n"
+"botón para cambiarla, si es necesario.\n"
"\n"
-" * \"%s\": si prefiere a grub (menú de texto).\n"
+" * \"Teclado\": verifique la configuración de la disposición del teclado y\n"
+"haga clic sobre el botón para cambiarla, si es necesario.\n"
"\n"
-" * \"%s\": si prefiere a LILO con su interfaz de texto.\n"
+" * \"Huso horario\": DrakX, de manera predeterminada, adivina su huso\n"
+"horario a partir del idioma que Usted ha elegido. Pero nuevamente, al igual\n"
+"que con la elección del teclado, puede ocurrir que no se encuentre en el\n"
+"país que sugiere el idioma elegido. De ser así, puede necesitar hacer clic\n"
+"sobre el botón \"Huso horario\" para configurar el reloj de acuerdo al huso\n"
+"horario en el que se encuentre.\n"
"\n"
-" * \"%s\": si prefiere a LILO con su interfaz gráfica.\n"
+" * \"Impresora\": al hacer clic sobre el botón \"Sin impresora\" se abrirá\n"
+"el asistente de configuración de la impresora. Consulte el capítulo\n"
+"correspondiente de la \"Guía del Usuario\" para más información sobre como\n"
+"configurar una impresora nueva. La interfaz presentada allí es similar a la\n"
+"utilizada durante la instalación.\n"
"\n"
-" * \"%s\": en la mayoría de los casos, no cambiará lo predeterminado\n"
-"(\"%s\"), pero si lo prefiere el cargador de arranque se puede instalar en\n"
-"el segundo disco rígido (\"%s\") o incluso en un disquete (\"%s\")\n"
+" * \"Tarjeta de sonido\": si se detecta una tarjeta de sonido en su\n"
+"sistema, la misma se muestra aquí. Durante la instalación no es posible\n"
+"modificación alguna.\n"
"\n"
-" * \"%s\": luego de arrancar o volver a arrancar la computadora, esta es la\n"
-"demora que se garantiza al usuario para elegir, en el menú del cargador de\n"
-"arranque, una entrada distinta a la predeterminada.\n"
+" * \"Tarjeta de TV\": si se detecta una tarjeta de TV en su sistema, la\n"
+"misma se muestra aquí. Durante la instalación no es posible modificación\n"
+"alguna.\n"
"\n"
-"!! Tenga presente que si no elige instalar un cargador de arranque\n"
-"(seleccionando \"%s\"), ¡debe asegurarse que tiene una forma de arrancar a\n"
-"su sistema Mandrake Linux! También debe asegurarse que sabe lo que hace\n"
-"antes de cambiar cualquier opción. !!\n"
-"\n"
-"Haciendo clic sobre el botón \"%s\" en este diálogo se le ofrecerán\n"
-"opciones avanzadas que están reservadas para el usuario experto."
+" * \"Tarjeta RDSI\": si se detecta una tarjeta RDSI en su sistema, la misma\n"
+"se muestra aquí. Puede hacer clic sobre el botón para cambiar los\n"
+"parámetros asociados a la misma."
-#: ../../security/help.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:891
msgid ""
-"if set, send the mail report to this email address else send it to root."
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
-"si está activo, enviar el correo de reporte a esta dirección, caso contrario "
-"a root."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "¿Qué tipo de configuración de XFree desea tener?"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "More"
-msgstr "Más"
+"Elija la unidad de disco que desea borrar para instalar su partición\n"
+"Mandrake Linux nueva. Tenga cuidado, ¡se perderán todos los datos de la\n"
+"misma y no se podrán recuperar!."
-#: ../../standalone/drakbackup:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#: ../../help.pm_.c:896
msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"Esto usa la misma sintaxis que el programa 'cdrecord' de la línea de "
-"comandos. 'cdrecord --scanbus' también le mostrará el número de dispositivo."
+"Haga clic sobre \"Aceptar\" si desea borrar todos los datos y particiones\n"
+"presentes en esta unidad de disco. Tenga cuidado, luego de hacer clic sobre\n"
+"\"Aceptar\", no podrá recuperar los datos y las particiones presentes en\n"
+"esta unidad de disco, incluyendo los datos de Windows.\n"
+"\n"
+"Haga clic sobre \"Cancelar\" para cancelar esta operación sin perder los\n"
+"datos y las particiones presentes en esta unidad de disco."
-#: ../../security/level.pm:1
+#: ../../install2.pm_.c:111
#, 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."
+"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 ""
-"Con este nivel de seguridad, es posible utilizar el sistema como un "
-"servidor.\n"
-"La seguridad es lo suficientemente alta como para usar el sistema como un\n"
-"servidor que acepte conexiones de múltiples clientes. Nota: si su máquina "
-"sólo es un cliente en la Internet, mejor debería elegir un nivel inferior."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Server Name"
-msgstr "Nombre del servidor"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Password"
-msgstr "Contraseña de la cuenta"
+"No se puede acceder a los módulos del núcleo correspondientes a su núcleo "
+"(no se encuentra el archivo %s), esto generalmente singnifica que su "
+"disquete de arranque no contiene un núcleo de misma versión que el soporte "
+"de instalación (haga un nuevo disquete de arranque por favor)"
-#: ../../standalone/drakhelp:1
+#: ../../install2.pm_.c:167
#, c-format
-msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
-msgstr ""
-"no se puede mostrar %s\n"
-" No hay entrada de ayuda de este tipo\n"
+msgid "You must also format %s"
+msgstr "Tú también debes formatear %s"
-#: ../../any.pm:1
+#: ../../install_any.pm_.c:423
#, 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"
+"You have selected the following server(s): %s\n"
"\n"
-"On which drive are you booting?"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
msgstr ""
-"Decidió instalar el cargador de arranque en una partición.\n"
-"Esto implica que ya tiene un cargador de arranque en el disco desde el que "
-"arranca (ej.: System Commander).\n"
+"Ha seleccionado los siguientes servidores: %s\n"
"\n"
-"¿Desde qué disco arranca?"
+"\n"
+"Estos servidores se activan por defecto. No se les conocen problemas de\n"
+"seguridad, pero se pueden encontrar problemas nuevos. En ese caso, "
+"debeasegurarse de\n"
+"actualizarlos tan pronto como sea posible.\n"
+"\n"
+"\n"
+"¿Realmente desea instalar estos servidores?\n"
-#: ../../install_interactive.pm:1
+#: ../../install_any.pm_.c:441
#, c-format
msgid ""
-"WARNING!\n"
+"The following packages will be removed to allow upgrading your system: %s\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."
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-"¡ADVERTENCIA!\n"
+"Se quitarán los paquetes siguientes para permitir actualizar su sistema: %s\n"
"\n"
-"Ahora DrakX cambiará el tamaño de su partición Windows. Proceda con "
-"cuidado:\n"
-"esta operación es peligrosa. Si aún no lo hizo, primero debería salir de\n"
-"la instalación, ejecutar \"chkdsk c:\" desde una Línea de Comandos bajo\n"
-"Windows (atención, ejectuar el programa gráfico \"scandisk\" no es "
-"suficiente,\n"
-"¡asegúrese de usar \"chkdsk\" en una Línea de Comandos!), ejecutar \"defrag"
-"\"\n"
-"opcionalmente, y luego volver a iniciar la instalación. También debería "
-"hacer\n"
-"una copia de seguridad de sus datos.\n"
-"Cuando esté seguro, pulse sobre Aceptar."
+"\n"
+"¿Realmente desea quitar estos paquetes?\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tajik keyboard"
-msgstr "Teclado tajik"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
+msgstr "No se puede usar difusión sin un dominio NIS"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:879
#, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Inserte un disquete formateado con FAT en la disquetera %s"
+
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
+msgstr "Este disquete no está formateado con FAT"
+
+#: ../../install_any.pm_.c:895
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"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-"Puede copiar la configuración de la impresora que ha realizado para la cola %"
-"s a %s, su cola corriente. Todos los datos de configuración (nombre de la "
-"impresora, descripción, ubicación, tipo de conexión, y opciones "
-"predeterminadas) se transfieren, pero los trabajos de impresión no se "
-"transfieren.\n"
-"Debido a las siguientes razones no todas las colas se pueden transferir:\n"
+"Para utilizar esta selección de paquetes salvada, arranque la instalación "
+"con \"linux defcfg=floppy\""
-#: ../../standalone/drakfont:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, c-format
-msgid "Font List"
-msgstr "Lista de tipografías"
+msgid "Error reading file %s"
+msgstr "Error al leer el archivo %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_any.pm_.c:1040
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."
+"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 ""
-"Puede necesitar cambiar el dispositivo de arranque de Open Firmware para\n"
-" activar el cargador de arranque. Si no ve el prompt del cargador de\n"
-" arranque al reiniciar, mantenga presionado Command-Option-O-F al\n"
-" reiniciar e introduzca:\n"
-" setenv boot-device %s, \\\\:tbxi\n"
-" Luego escriba: shut-down\n"
-"La próxima vez que arranque debería ver el prompt del cargador de arranque."
+"Ocurrió un error - no se encontró ningún dispositivo válido para crear los "
+"nuevos sistemas de archivos. Por favor, verifique su equipo para saber la "
+"razón de este fallo"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_interactive.pm_.c:21
#, 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"
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"Parece que tiene una máquina desconocida o una OldWorld,\n"
-"El gestor de arranque yaboot no funcionará en la misma.\n"
-"La instalación continuará, pero necesitará\n"
-"utilizar BootX o alguna otra manera para arrancar su máquina"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Select file"
-msgstr "Elija un archivo"
+"Algún hardware de su computadora necesita controladores \"propietarios\" "
+"para funcionar.\n"
+"Puede encontrar información sobre ellos en: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:56
msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
+"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 ""
-"Elija la red o host donde se deberían hacer disponibles las impresoras "
-"locales:"
+"Debe tener una partición raíz.\n"
+"Para ello, cree una partición (o haga clic sobre una que ya existe).\n"
+"Luego elija la acción \"Punto de montaje\" y defínalo como '/'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
+msgstr "Debe tener una partición de intercambio"
+
+#: ../../install_interactive.pm_.c:62
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"
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"Estos comando también se utilizan en el campo \"Comando de impresión\" de "
-"los diálogos de impresión de muchas aplicaciones, pero aquí no se indica el "
-"nombre del archivo porque el archivo a imprimir lo proporciona la "
-"aplicación.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "Japón"
+"No dispone de una partición de intercambio\n"
+"\n"
+"¿Desea continuar de todas formas?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print option list"
-msgstr "Imprimir lista de opciones"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Debe tener una partición FAT montada en /boot/efi"
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "Se ha realizado el cambio, pero no se hará efectivo hasta que salga"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
+msgstr "Usar el espacio libre"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
-msgstr "País / Región"
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
+msgstr "No hay espacio libre suficiente para asignar las particiones nuevas"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search servers"
-msgstr "Buscar servidores"
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
+msgstr "Usar la partición existente"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "¡No se encuentra la cola del servidor NCP!"
+#: ../../install_interactive.pm_.c:102
+msgid "There is no existing partition to use"
+msgstr "No hay ninguna partición existente para usar"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Atención, se ha detectado otra conexión con la Internet, tal vez usando su "
-"red"
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
+msgstr "Usar la partición de Windows para loopback"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM etiquetado como \"%s\""
+#: ../../install_interactive.pm_.c:112
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "¿Qué partición desea usar para Linux4Win?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr "Soporte CDRW"
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
+msgstr "Elija los tamaños"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Guarda y recupera el mecanismo de entropía del sistema; usado para la\n"
-"generación de números aleatorios de gran calidad."
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
+msgstr "Tamaño de la partición raíz en MB: "
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr "Convierta su máquina en un servidor confiable."
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr "Tamaño de la partición de intercambio en MB: "
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr "Cerificar contraseña vacía en /etc/shadow"
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
+msgstr "Usar el espacio libre de la partición Windows"
-#: ../../network/network.pm:1
-#, c-format
-msgid " (driver %s)"
-msgstr " (controlador %s)"
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
+msgstr "¿A qué partición desea cambiarle el tamaño?"
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
-msgstr "Comenzar cuando se pida"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "Calculando los límites del sistema de archivos Windows"
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
-"Loopback file(s):\n"
-" %s\n"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-"Archivo(s) de loopback:\n"
-" %s\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr "No lo sé"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", host TCP/IP \"%s\", puerto %s"
+"El redimensionador de tamaño de la FAT no puede gestionar su partición, \n"
+"ocurrió el error siguiente: %s"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../install_interactive.pm_.c:137
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?"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-"Está a punto de configurar el un disquete de Instalación Automática. Esta "
-"característica es algo peligrosa y debe ser utilizada con cuidado.\n"
-"\n"
-"Con esa característica, podrá repetir la instalación que ha realizado en "
-"esta computadora, y se le consultará interactivamente en algunos pasos, para "
-"poder cambiar los valores de los mismos.\n"
-"\n"
-"Para máxima seguridad, el particionado y formateado nunca será realizado "
-"automáticamente, sin importar lo que eligió durante la instalación de esta "
-"computadora.\n"
-"\n"
-"¿Desea continuar?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Telugu"
-msgstr "Telugu"
+"Su partición Windows está muy fragmentada, por favor primero ejecute \"defrag"
+"\""
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:138
msgid ""
+"WARNING!\n"
"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
+"¡ADVERTENCIA!\n"
"\n"
-"\n"
-"Actualmente su tarjeta usa el controlador %s\"%s\" (el controlador predet. "
-"para su tarjeta es \"%s\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Uninstall"
-msgstr "Post-desinstalación"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Conectando a la Internet "
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
-msgstr " ("
+"Ahora DrakX cambiará el tamaño de su partición Windows. Proceda con "
+"cuidado:\n"
+"esta operación es peligrosa. Si aún no lo hizo, primero debería salir de\n"
+"la instalación, ejecutar scandisk bajo Windows (y opcionalmente ejecutar "
+"defrag),\n"
+"y luego volver a iniciar la instalación. También debería hacer una copia de\n"
+" seguridad de sus datos.\n"
+"Cuando esté seguro, pulse sobre Aceptar."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid level"
-msgstr "Nivel de cpuid"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "¿Qué tamaño desea conservar para windows en la"
-#: ../../printer/main.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Servidor Novell \"%s\", impresora \"%s\""
+msgid "partition %s"
+msgstr "partición %s"
-#: ../../keyboard.pm:1
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "Mongol (cirílico)"
+msgid "FAT resizing failed: %s"
+msgstr "Falló el redimensionado de la FAT: %s"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Add a module"
-msgstr "Agregar un módulo"
+#: ../../install_interactive.pm_.c:171
+msgid ""
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"No hay particiones FAT para redimensionar o para usar como loopback (o no "
+"queda espacio suficiente)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr "Perfil a borrar:"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr "Borrar el disco entero"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Local measure"
-msgstr "Medida local"
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr "Quitar Windows(TM)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
-msgstr "Advertencia: ¡Por lo general la dirección IP %s está reservada!"
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Tiene más de un disco rígido, ¿sobre cuál desea instalar Linux?"
-#: ../../mouse.pm:1
+#: ../../install_interactive.pm_.c:183
#, c-format
-msgid "busmouse"
-msgstr "ratón bus"
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Se perderán TODAS las particiones y sus datos en la unidad %s"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Crear imágenes de arranque con Etherboot habilitado:\n"
-" \t\tPara arrancar un núcelo por Etherboot, se debe crear una imagen de "
-"arranque initrd/núcleo especial\n"
-" \t\tmkinitrd-net hace mucho de esto y drakTermServ sólo es una "
-"interfaz gráfica\n"
-" \t\tpara ayudar a administrar/personalizar estas imágenes. Para crear\n"
-" \t\tel archivo /etc/dhcpd.conf.etherboot-pcimap.include que se "
-"incluye\n"
-" \t\ten dhcpd.conf, debería crear las imágenes Etherboot para al menos\n"
-" \t\tun núcleo completo."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Usuario de la cuenta (nombre de usuario)"
+#: ../../install_interactive.pm_.c:191
+msgid "Custom disk partitioning"
+msgstr "Particionamiento de disco personalizado"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
-msgstr "Bug de Fdiv"
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr "Usar fdisk"
-#: ../../network/drakfirewall.pm:1
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-"Configuración de drakfirewall\n"
-"\n"
-"Debe asegurarse que ha configurado su acceso de Red/Internet con\n"
-"drakconnect antes de continuar."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr "Aceptar eco ICMP difundido"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr "Uruguay"
+"Ahora puede particionar %s.\n"
+"Cuando haya terminado, no se olvide de guardar usando 'w'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Benin"
-msgstr "Benín"
+#: ../../install_interactive.pm_.c:227
+msgid "You don't have enough free space on your Windows partition"
+msgstr "No queda espacio libre suficiente en la partición de Windows"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "Servidor SMB/Windows \"%s\", compartida como \"%s\""
+#: ../../install_interactive.pm_.c:243
+msgid "I can't find any room for installing"
+msgstr "No se puede encontrar nada de espacio para instalar"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path selection"
-msgstr "Selección de ruta"
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+"El asistente de particionamiento de DrakX encontró las siguientes soluciones:"
-#: ../../standalone/scannerdrake:1
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid "Name/IP address of host:"
-msgstr "Nombre/dirección IP del host:"
+msgid "Partitioning failed: %s"
+msgstr "Falló el particionamiento: %s"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr "Levantando la red"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom & system settings"
-msgstr "Ajustes personalizados y del sistema"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr "Bajando la red"
-#: ../../partition_table/raw.pm:1
-#, c-format
+#: ../../install_steps.pm_.c:76
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."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"Está ocurriendo algo malo en su unidad. \n"
-"Ha fallado una prueba para verificar la integridad de los datos. \n"
-"Esto significa que escribir cualquier cosa en el disco terminará produciendo "
-"datos aleatorios, corruptos."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "¡Falta el nombre de host o la IP de la impresora!"
+"Ocurrió un error y no se puede gestionar de forma adecuada.\n"
+"Continúe bajo su propio riesgo."
-#: ../../standalone/drakbackup:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr ""
-"Por favor, marque a todos los usuarios que desea incluir en la copia de "
-"respaldo"
+msgid "Duplicate mount point %s"
+msgstr "Punto de montaje %s duplicado"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps.pm_.c:380
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+"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 ""
-"Printerdrake debe configurar el %s.\n"
-"Puede lanzar printerdrake desde el Centro de control de Mandrake en la "
-"sección Hardware."
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Key isn't writable"
-msgstr "La llave no se puede escribir"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bangladesh"
-msgstr "Bangladesh"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
-msgstr "Japón (cable)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Initial tests"
-msgstr "Pruebas iniciales"
+"Algunos paquetes importantes no fueron instalados correctamente.\n"
+"Seguramente su lector de CD o su CD de instalación sean defectuosos.\n"
+"Compruebe el CD de instalación en un sistema ya existente con el comando:\n"
+" rpm -qpl Mandrake/RPMS/*.rpm\n"
-#: ../../network/isdn.pm:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "Continue"
-msgstr "Continuar"
+msgid "Welcome to %s"
+msgstr "Bienvenido a %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom Restore"
-msgstr "Restauración personalizada"
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr "Ninguna disquetera disponible"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "Saturday"
-msgstr "Sábado"
+msgid "Entering step `%s'\n"
+msgstr "Entrando en la etapa '%s'\n"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:146
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."
+"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 ""
-"\"%s\": si se detecta una tarjeta de sonido en su sistema, la misma se\n"
-"muestra aquí. Si nota que la tarjeta de sonido mostrada no es la que está\n"
-"realmente instalada en su sistema, puede hacer clic sobre el botón y elegir\n"
-"otro controlador."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the root umask."
-msgstr "Configurar la umask de root."
-
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "Error al leer el archivo %s"
+"Su sistema tiene pocos recursos. Puede tener algún problema instalando\n"
+"Mandrake Linux. Si eso ocurre, puede intentar una instalación tipo texto.\n"
+"Para ello, presione 'F1' cuando arranque desde el CDROM, e introduzca 'text'."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr "Por script"
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr "Tipo de instalación"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "PLL setting:"
-msgstr "Configuración del PLL :"
+#: ../../install_steps_gtk.pm_.c:160
+msgid "Please choose one of the following classes of installation:"
+msgstr "Por favor, elija uno de los siguentes tipos de instalación:"
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Debe tener una partición FAT montada en /boot/efi"
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
+msgstr "Selección de grupos de paquetes"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
-msgstr " en "
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
+msgstr "Selección de paquetes individuales"
-#: ../../diskdrake/dav.pm:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid "The URL must begin with http:// or https://"
-msgstr "La URL debería empezar con http:// o https://"
+msgid "Total size: %d / %d MB"
+msgstr "Tamaño total: %d / %d MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Puede especificar directamente el URI para acceder a la impresora. El URI "
-"debe cumplir con las especificaciones Foomatic o CUPS. Recuerde que no todos "
-"los sistemas de impresión admiten URIs."
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
+msgstr "Paquete incorrecto"
-#: ../../any.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "Otro SO (SunOS...)"
+msgid "Name: %s\n"
+msgstr "Nombre: %s\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid "Install/Upgrade"
-msgstr "Instalación/Actualización"
+msgid "Version: %s\n"
+msgstr "Versión: %s\n"
-#: ../../install_steps_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid "%d packages"
-msgstr "%d paquetes"
+msgid "Size: %d KB\n"
+msgstr "Tamaño: %d KB\n"
-#: ../../crypto.pm:1 ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
-msgid "Costa Rica"
-msgstr "Costa Rica"
+msgid "Importance: %s\n"
+msgstr "Importancia: %s\n"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:360
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"
+"You can't select this package as there is not enough space left to install it"
msgstr ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Aplicación de respaldo y restauración\n"
-"\n"
-"--default : guarda directorios predeterminados.\n"
-"--debug : mostrar todos los mensajes de depuración.\n"
-"--show-conf : lista los archivos o directorios a respaldar.\n"
-"--config-info : explica las opciones de configuración (para usuarios "
-"no-X)\n"
-"--daemon : usa la configuración de demonio. \n"
-"--help : muestra este mensaje.\n"
-"--version : muestra el número de versión.\n"
+"No puede seleccionar este paquete porque no hay espacio suficiente para "
+"instalarlo"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain Authentication Required"
-msgstr "Se necesita autenticación de dominio"
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
+msgstr "Se van a instalar los siguientes paquetes"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Use libsafe for servers"
-msgstr "Utilizar libsafe para los servidores"
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
+msgstr "Se van a quitar los siguientes paquetes"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Icelandic"
-msgstr "Islandés"
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
+msgstr "No puede seleccionar/deseleccionar este paquete"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
-msgstr ""
-"\n"
-"Uso: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--testing] "
-"[-v|--version] "
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Este es un paquete obligatorio, no puede desmarcarlo"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
+msgstr "No puede desmarcar este paquete. Ya está instalado"
+
+#: ../../install_steps_gtk.pm_.c:395
msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
-"Ingrese el tamaño máximo\n"
-" permitido para Drakbackup (MB)"
+"Se debe actualizar este paquete\n"
+"¿Está seguro que quiere desmarcarlo?"
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Montajes circulares %s\n"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "No puede desmarcar este paquete. Debe ser actualizado"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo/grub mode"
-msgstr "Modo de Lilo/Grub"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
+msgstr "Mostrar los paquetes seleccionados automáticamente"
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "Martinica"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr "Instalar"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Disco rígido / NFS"
+#: ../../install_steps_gtk.pm_.c:407
+msgid "Load/Save on floppy"
+msgstr "Cargar/Guardar en un disquete"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Old user list:\n"
-msgstr "Lista de usuarios antigua:\n"
+#: ../../install_steps_gtk.pm_.c:408
+msgid "Updating package selection"
+msgstr "Actualizando la selección de paquetes"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
-msgstr "Buscar respaldos"
+#: ../../install_steps_gtk.pm_.c:413
+msgid "Minimal install"
+msgstr "Instalación mínima"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "a number"
-msgstr "un número"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
+msgstr "Elija los paquetes que desea instalar"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "Sueco"
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr "Instalando"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "¿Qué controlador de %s debo probar?"
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr "Estimando"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr ""
-"Recibirá una alerta si alguno de ls servicios seleccionados ya no está "
-"corriendo"
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr "Tiempo restante "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Weekday"
-msgstr "Día de semana"
+#: ../../install_steps_gtk.pm_.c:469
+msgid "Please wait, preparing installation..."
+msgstr "Preparando la instalación. Espere, por favor"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid "Filesystem types:"
-msgstr "Tipos de sistemas de archivos:"
+msgid "%d packages"
+msgstr "%d paquetes"
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "Northern Mariana Islands"
-msgstr "Islas Marianas del Norte"
+msgid "Installing package %s"
+msgstr "Instalando el paquete %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", dispositivo multifunción en HP JetDirect"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "Aceptar"
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "ninguno"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
+msgstr "Rechazar"
-#: ../../standalone/drakconnect:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
+"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 ""
-"Nombre del perfil a crear (el perfil nuevo se crea como copia del actual):"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Floppy"
-msgstr "Disquete"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "Referenciando a Ghostscript"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Bootloader"
-msgstr "Cargador de arranque"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
-msgstr "Autorizar todos los servicios controlados por tcp_wrappers"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "Desplazar"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Bootloader to use"
-msgstr "Cargador de arranque a usar"
+"¡Cambie su CD-ROM!\n"
+"\n"
+"Inserte el CD-ROM etiquetado como \"%s\" en la unidad y pulse Aceptar cuando "
+"lo haya hecho.\n"
+"Si no lo posee, pulse Cancelar para cancelar la instalación desde este CD-"
+"ROM."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "Máquina del servidor SMB"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
+msgstr "¿Seguir adelante?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Name Servers:"
-msgstr "Servidores de nombres:"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
+msgstr "Hubo un error al ordenar los paquetes:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Minute"
-msgstr "Minuto"
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
+msgstr "Hubo un error al instalar los paquetes:"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:10
msgid ""
"\n"
"Warning\n"
@@ -7434,18 +5148,18 @@ msgstr ""
"Haga el favor de leer cuidadosamente el presente documento. En caso de "
"desacuerdo\n"
"con el presente documento, no está autorizado a instalar los demás\n"
-"CD. En este caso seleccione 'Rechazar' para seguir la instalación sin\n"
-"estos CD.\n"
+"CDs. En este caso seleccione 'Rechazar' para seguir la instalación sin\n"
+"estos CDs.\n"
"\n"
"\n"
-"Algunos componentes de software contenidos en los siguientes CD no\n"
+"Algunos componentes de software contenidos en los siguientes CDs no\n"
"están sometidos a las licencias GPL o similares que permitan la copia,\n"
"adaptación o redistribución. Cada uno de los componentes de software\n"
"esta distribuido bajo los términos y condiciones de un acuerdo de\n"
"licencia propio. Por favor, dirájase a éste y acéptelo antes de instalarlo,\n"
"usarlo o redistribuirlo. Generalmente, estas licencias no autorizan la\n"
"copia (salvo las destinadas a copias de seguridad), la distribución, "
-"descompilación,\n"
+"decompilación,\n"
"desensamblado, ingeniería inversa, reconstitución de la lógica del\n"
"programa y/o modificación, salvo en la medida y para las necesidades\n"
"autorizadas por las leyes vigentes. Toda violación de la licencia\n"
@@ -7464,5010 +5178,3372 @@ msgstr ""
"derecho de la propiedad intelectual y otras leyes aplicables al derecho\n"
"del software.\n"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Expert mode"
-msgstr "/Modo _Experto"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Quitar esta impresora de Star Office/OpenOffice.org/GIMP"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"El servidor virtual de Linux (LVS) se usa para construir servidores de alto\n"
-"rendimiento y alta disponibilidad."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr "Micronesia"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 billones de colores (32 bits)"
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
+msgstr "Ocurrió un error"
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
-msgstr "Licencia"
+#: ../../install_steps_interactive.pm_.c:85
+msgid "Do you really want to leave the installation?"
+msgstr "¿Realmente desea salir de la instalación?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "La generación de claves puede tardar unos momentos."
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
+msgstr "Acuerdo de licencia"
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
"\n"
-"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"
+"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"
-"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"
+"2. Limited Warranty\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"
+"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"
-"<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"
+"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"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\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"
-"<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"
+"4. Intellectual Property Rights\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 ""
-"Aquí puede configurar el nivel y administrador de seguridad de su máquina.\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"
-"El Administrador de Seguridad es quien recibirá las alertas de seguridad si "
-"está activa\n"
-"la opción 'Alertas de seguridad'. Puede ser un nombre de usuario o un correo-"
-"e.\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 ""
+"EL PRESENTE TEXTO ES UNA TRADUCCIÓN A PROPÓSITO EXCLUSIVAMENTE\n"
+"INFORMATIVO DE LOS TÉRMINOS DE LA LICENCIA DE MANDRAKE LINUX. EN\n"
+"NINGÚN CASO LA PRESENTE TRADUCCIÓN TIENE VALOR LEGAL SIENDO OFICIAL\n"
+"EXCLUSIVAMENTE LA VERSIÓN EN FRANCÉS DE LA LICENCIA DE LINUX-MANDRAKE.\n"
+"No obstante, esperamos que esta traducción ayudará a los que hablan\n"
+"castellano a entenderla mejor.\n"
"\n"
-"El menú Nivel de seguridad permite seleccionar uno de los seis niveles "
-"preconfigurados provistos\n"
-"con msec. Estos niveles van desde seguridad pobre y facilidad de uso, hasta "
-"una\n"
-"configuración paranoica, úitl para aplicaciones servidor muy sensibles:\n"
"\n"
+"Introducción\n"
"\n"
-"<span foreground=\"royalblue3\">Pobre</span>: Este nivel es completamente "
-"inseguro\n"
-"pero muy fácil de usar. Sólo debería utilizarse para máquinas no conectadas "
-"a red\n"
-"alguna ni al alcance de cualquiera.\n"
+"El conjunto de elementos que incluye el sistema operativo y los\n"
+"diferentes componentes disponibles en la distribución Mandrake Linux\n"
+"se denominarán en adelante \"Programas\". Los programas incluyen en\n"
+"particular, pero de manera no limitativa, el conjunto de programas,\n"
+"procedimientos, reglas y documentaciones relativas al sistema\n"
+"operativo y a los diferentes componentes de la distribución\n"
+"Mandrake Linux.\n"
"\n"
"\n"
-"<span foreground=\"royalblue3\">Estándar</span>: Este es el nivel de "
-"seguridad\n"
-"recomendado para una computadora que se usará para conectar a la Internet "
-"como\n"
-"cliente.\n"
+"1. Licencia\n"
"\n"
+"Le rogamos leer cuidadosamente este documento. Éste constituye un\n"
+"contrato de licencia entre Ud. (persona física o persona moral) y\n"
+"MandrakeSoft S.A. aplicado a los programas. El hecho de instalar, \n"
+"duplicar o usar los programas de cualquier manera, indica\n"
+"que acepta explícitamente los términos y condiciones de esta licencia\n"
+"y que está totalmente de acuerdo en lo referente a los términos de la "
+"misma.\n"
+"En caso de no estar de acuerdo con el presente documento, no está\n"
+"autorizado a instalar, duplicar ni usar de ninguna manera\n"
+"este producto. El contrato de licencia sera automáticamente anulado\n"
+"sin aviso previo en el caso que no se cumplan las disposiciones\n"
+"de este documento. En caso de anulación Ud. tendrá que anular\n"
+"inmediatamente todo ejemplar y todas las copias de todos los programas\n"
+"y de todas las documentaciones que constituyen el sistema operativo y\n"
+"los diferentes componentes disponibles en en la distribución\n"
+"Mandrake Linux.\n"
"\n"
-"<span foreground=\"royalblue3\">Alto</span>: Ya hay algunas restricciones,\n"
-"y cada noche se ejecutan más verificaciones automáticas.\n"
"\n"
+"2. Garantía y limitaciones de garantía\n"
"\n"
-"<span foreground=\"royalblue3\">Más alto</span>: Ahora la seguridad es lo "
-"suficientemente\n"
-"alta para usar el sistema como un servidor que puede aceptar conexiones "
-"desde muchos\n"
-"clientes. Si su máquina sólo es un cliente en la Internet, debería elegir un "
-"nivel menor.\n"
+"Los programas y la documentación que los acompaña son proporcionados\n"
+"tal cual y sin ninguna garantía. MandrakeSoft S.A.\n"
+"no se responsabiliza de las consecuencias de un daño directo,\n"
+"especial, indirecto o accesorio, de cualquiera naturaleza que sea, en\n"
+"relación con la utilización de los programas, en particular y de\n"
+"manera no limitada, todos daños resultados por perdidas de\n"
+"beneficio, interrupción de actividad, pérdida de informaciones\n"
+"comerciales u otras perdidas financieras, así que por eventuales\n"
+"condenaciones e indemnizaciones debidas como consecuencia de una decisión "
+"de\n"
+"la justicia, y eso incluso si MandrakeSoft S.A. hubiera sido informada de "
+"la\n"
+"aparición o eventualidad de tales daños.\n"
"\n"
+"ADVERTENCIA EN CUANTO A LA POSESIÓN O USO DE PROGRAMAS PROHIBIDOS\n"
+"EN CIERTOS PAÃSES\n"
"\n"
-"<span foreground=\"royalblue3\">Paranoico</span>: Este es simlar al nivel "
-"anterior,\n"
-"pero el sistema está completamente cerrado y las características de "
-"seguridad\n"
-"están al máximo."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr ""
-"Detección automática de impresora (Impresoras locales, TCP/Socket, y SMB)"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr "Sagem (usando pppoa) usb"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"Ocurrió un error - no se encontró ningún dispositivo válido para crear los "
-"nuevos sistemas de archivos. Por favor, verifique su equipo para saber la "
-"razón de este fallo"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Iniciar el sistema de impresión al arrancar"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "¿Desea iniciar su conexión al arrancar?"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr "ID del procesador"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr "Solución de problemas de sonido"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "Polaco (distribución qwerty)"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Añadir Impresora"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"En ningún caso, ni MandrakeSoft S.A. ni sus proveedores podrán ser\n"
+"responsabilizados por un perjuicio especial, directo, indirecto o\n"
+"accesorio, de cualquier naturaleza (en particular y de manera\n"
+"no limitada, pérdidas de beneficio, interrupción de actividad,\n"
+"pérdida de informaciones comerciales u otras pérdidas financieras, así\n"
+"como por posibles condenaciones e indemnizaciones debidas\n"
+"consecuentes a una decisión de justicia) que resultaría de la\n"
+"utilización, detención o simple descarga desde uno de los sitios de\n"
+"transferencia de Mandrake Linux de programas prohibidos por la\n"
+"legislación a la que está sometido. Esta advertencia se aplica en\n"
+"particular a algunos componentes de criptografía fuerte incluídos en los\n"
+"programas.\n"
"\n"
-"Drakbackup activities via CD:\n"
"\n"
-msgstr ""
+"3. Licencia GPL y otras licencias\n"
"\n"
-"Actividades de Drakbackup por medio de CD:\n"
+"Los Programas están constituidos por módulos de programas creados por\n"
+"diversas personas (físicas o legales). Muchos de ellos se\n"
+"distribuyen bajo los términos de la Licencia Pública General GNU\n"
+"(denominada a partir de ahora \"GPL\") u otras licencias parecidas. La "
+"mayoría\n"
+"de estas licencias le permiten copiar, adaptar o redistribuir los\n"
+"módulos de los programas que cubren. Haga el favor de leer y de aceptar los "
+"términos y\n"
+"condiciones de las licencias que acompañan a cada uno de ellos antes de\n"
+"usarlos. Toda pregunta relativa a la licencia se debe dirigir al autor\n"
+"(o su representante) de dicho programa, y no a MandrakeSoft. Los\n"
+"programas desarrollados por MandrakeSoft están sometidos a la licencia\n"
+"GPL. La documentación escrita por MandrakeSoft esta sometida a una\n"
+"licencia especifica. Haga el favor de dirigirse a la documentación para\n"
+"obtener más información.\n"
"\n"
-
-#: ../../printer/printerdrake.pm:1
-#, 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"
+"4. Propiedad intelectual\n"
"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Va a instalar el sistema de impresión %s sobre un sistema corriendo en el "
-"nivel de seguridad %s.\n"
+"Todos los derechos, títulos e intereses de los diferentes programas\n"
+"son propiedad exclusiva de sus autores respectivos y están protegidos\n"
+"por el derecho de la propiedad intelectual y otras leyes aplicadas a los\n"
+"derechos de los programas. Las marcas \"Mandrake\" y \"Mandrake Linux\" "
+"así\n"
+"como los logotipos asociados son registrados por MandrakeSoft S.A.\n"
"\n"
-"Este sistema de impresión ejecuta un demonio (proceso en segundo plano) que "
-"espera trabajos de impresión y los gestiona. Las máquinas remotas pueden "
-"acceder también a este demonio a través de la red, así que es un potencial "
-"punto de ataque. Por eso, sólo unos pocos demonios seleccionados se inician "
-"por defecto en este nivel de seguridad.\n"
"\n"
-"¿Seguro que desea configurar la impresión para esta máquina?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Host \"%s\", puerto %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "Esta partición no puede usarse para el loopback"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr "El archivo ya existe. ¿Desea usarlo?"
+"5. Disposiciones diversas\n"
+" \n"
+"Si alguna disposición de este contrato de licencia fuera declarada\n"
+"nula, ilegal o inaplicable por un tribunal competente, esta\n"
+"disposición sería excluida del presente contrato. Sin embargo\n"
+"Ud. seguirá sometido a las otras disposiciones, que tendrán\n"
+"plenos efectos. El contrato de licencia está regido por las leyes\n"
+"francesas. Toda disputa relativa a los presentes términos será\n"
+"resuelta, preferentemente, por vía amigable. En caso de desacuerdo con\n"
+"MandrakeSoft S.A., el litigio será tramitado a los tribunales\n"
+"competentes de París, Francia. Para cualquier pregunta relacionada con\n"
+"este documento, por favor, póngase en contacto con MandrakeSoft S.A.\n"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
-msgstr "recibido: "
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
+msgstr "¿Está seguro que desea rechazar la licencia?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr "Tecla Alt derecha"
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "Teclado"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "la lista de controladores alternativos para esta tarjeta de sonido"
+#: ../../install_steps_interactive.pm_.c:218
+msgid "Please choose your keyboard layout."
+msgstr "Seleccione la distribución de su teclado."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Pasarela"
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
+msgstr "Aquí tiene la lista completa de teclados disponibles"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr "Tonga"
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
+msgstr "¿Qué tipo de instalación desea?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "Tunicia"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
+msgstr "Instalación/Actualización"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing"
-msgstr "Compartir escáner"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
+msgstr "¿Es una instalación o una actualización?"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile: "
-msgstr "Perfil: "
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr "Recomendada"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
-"Haga clic sobre un dispositivo en el árbol de la izquierda para obtener aquí "
-"información sobre el mismo."
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Experto"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr "Permitir/Prohibir conexión automática."
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade"
+msgstr "Actualización"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
-msgstr "¡XawTV no está instalado!"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade packages only"
+msgstr "Sólo actualizar los paquetes."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "No incluir archivos críticos (passwd, group, fstab)"
+#: ../../install_steps_interactive.pm_.c:282
+msgid "Please choose the type of your mouse."
+msgstr "Por favor, seleccione el tipo de su ratón."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "nombre antiguo de dispositivo estático utilizado en el paquete dev"
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr "Puerto del ratón"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
-msgstr "Habilitar registro de paquetes IPv4 extraños"
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
+msgstr "Seleccione el puerto serie al que está conectado el ratón, por favor."
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
-msgstr "Esta etiqueta ya está en uso"
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
+msgstr "Emulación de los botones"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"Bienvenido al Asistente de configuración de Impresoras\n"
-"\n"
-"Este asistente lo ayudará a instalar sus impresoras conectadas a esta "
-"computadora o conectadas directamente a la red.\n"
-"\n"
-"Si tiene impresoras conectadas a esta máquina, por favor enciéndalas para "
-"que se puedan detectar automáticamnte. También deberían estar conectadas y "
-"encendidas sus impresoras de red.\n"
-"\n"
-"Note que la detección automática de las impresoras de red toma más tiempo "
-"que sólo la detección automática de las impresoras conectadas a esta "
-"máquina. Entonces, desactive la detección automática de las impresoras de "
-"red si no lo necesita.\n"
-"\n"
-"Haga clic sobre \"Siguiente\" cuando esté listo, o sobre \"Cancelar\" si "
-"Usted no desea configurar sus impresoras ahora."
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
+msgstr "Emulación del botón 2"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
-msgstr "Griego (politónico)"
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
+msgstr "Emulación del botón 3"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Se perderán todos los datos de la partición %s después de formatearla"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr "Configurando tarjetas PCMCIA..."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection Time: "
-msgstr "Tiempo de conexión: "
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../standalone/livedrake:1
-#, 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."
-msgstr ""
-"Por favor, inserte el CD-ROM de la instalación en su unidad y presione "
-"Aceptar.\n"
-"Si no lo tiene, presione Cancelar para evitar la actualización en vivo."
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr "Configurando dispositivos IDE"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use group id for execution"
-msgstr "Usar ID del grupo para la ejecución"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "Elija el usuario predeterminado:"
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr "no hay particiones disponibles"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "Gabón"
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
+msgstr "Rastreando las particiones para encontrar los puntos de montaje"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Aquí no tiene que configurar las impresoras en los servidores CUPS remotos; "
-"las mismas se detectarán automáticamente."
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr "Seleccione los puntos de montaje"
-#: ../../any.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:386
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."
+"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 ""
-"Mandrake Linux puede soportar múltiples idiomas. Seleccione\n"
-"los que desea instalar. Los mismos estarán disponibles cuando\n"
-"su instalación esté completa y Usted reinicie su sistema."
+"¡No hay 1MB de espacio para bootstrap! La instalación continuará, pero para "
+"arrancar su sistema, necesitará crear la partición bootstrap en DiskDrake"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr "Directorio (o módulo) para poner la copia de respaldo en este host."
+#: ../../install_steps_interactive.pm_.c:395
+msgid "No root partition found to perform an upgrade"
+msgstr "No se encontró partición raíz para efectuar la actualización"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain"
-msgstr "Dominio"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr "Partición raíz"
-#: ../../any.pm:1
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Precise el tamaño de la RAM si es necesario (se encontraron %d MB)"
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr "¿Cual es la partición raíz (/) de su sistema?"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-"LILO y grub son cargadores de arranque para GNU/Linux. Normalmente esta\n"
-"etapa está completamente automatizada. DrakX analizará el sector de\n"
-"arranque del disco y actuará en función de lo que encuentre allí:\n"
-"\n"
-" * si encuentra un sector de arranque de Windows, lo reemplazará con un\n"
-"sector de arranque de grub/LILO de forma tal que Usted pueda cargar\n"
-"GNU/Linux u otro sistema operativo;\n"
-"\n"
-" * si encuentra un sector de arranque de grub o LILO, lo reemplazará con\n"
-"uno nuevo;\n"
-"\n"
-"Si no puede realizar una determinación, DrakX le preguntará dónde colocar\n"
-"el cargador de arranque."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "DNS 2 del proveedor (opcional)"
+"Necesita reiniciar el equipo para que se efectúe la modificación de la tabla "
+"de particiones"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "Dispositivo de arranque"
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr "Elija las particiones que desea formatear"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "¿A qué partición desea cambiarle el tamaño?"
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
+msgstr "¿Verificar el disco en busca de bloques malos?"
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr "Islas Circundantes Menores de los Estados Unidos"
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr "Formateando las particiones"
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid "Djibouti"
-msgstr "Djibuti"
+msgid "Creating and formatting file %s"
+msgstr "Creando y formateando el archivo %s"
-#: ../../standalone/logdrake:1
+#: ../../install_steps_interactive.pm_.c:470
#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Una herramienta para ver sus archivos de registro (logs)"
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+"Falló la verificación del sistema de archivos %s. ¿Desea reparar los "
+"errores? (cuidado, puede perder datos)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected on port %s"
-msgstr "detectada en el puerto %s"
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+"Espacio de intercambio insuficiente para completar la instalación, añada un "
+"poco más"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD"
-msgstr "LPD"
+#: ../../install_steps_interactive.pm_.c:479
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr ""
+"Buscando los paquetes disponibles y reconstruyendo la base de datos de RPM..."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Tarjeta gráfica: %s\n"
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr "Buscando los paquetes disponibles..."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Configurar como pre_Determinada"
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Looking at packages already installed..."
+msgstr "Buscando paquetes ya instalados..."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
-msgstr "Aceptar eco ICMP"
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr "Encontrando los paquetes a actualizar..."
-#: ../../bootloader.pm:1
+#: ../../install_steps_interactive.pm_.c:505
#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
+msgstr ""
+"Su sistema no tiene espacio suficiente para instalar o actualizar (%d > %d)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Series con emulación de rueda"
+#: ../../install_steps_interactive.pm_.c:541
+msgid ""
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
+msgstr ""
+"Por favor, seleccione cargar o guardar la selección de paquetes en "
+"disquete.\n"
+"El formato es el mismo que los disquetes generados para la instalación "
+"automática."
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "La partición extendida no está disponible en esta plataforma"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Load from floppy"
+msgstr "Cargar desde un disquete"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Splash selection"
-msgstr "Selección de Splash"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr "Guardar en un disquete"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Configuración de RDSI"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Loading from floppy"
+msgstr "Cargando desde un disquete"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "high"
-msgstr "Alta"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Package selection"
+msgstr "Selección de paquetes"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Compartir la conexión a Internet"
+#: ../../install_steps_interactive.pm_.c:552
+msgid "Insert a floppy containing package selection"
+msgstr "Introduzca un disquete que contenga la selección de paquetes"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Choose file"
-msgstr "Elija un archivo"
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
+msgstr "El tamaño seleccionado es mayor que el disponible"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Summary: "
-msgstr "Resumen: "
+#: ../../install_steps_interactive.pm_.c:649
+msgid "Type of install"
+msgstr "Tipo de instalación."
-#: ../../network/shorewall.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:650
msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
msgstr ""
-"¡Atención! Se ha detectado la configuración del cortafuegos existente. Puede "
-"que necesite algún ajuste manual tras la instalación."
+"No ha seleccionado ningún grupo de paquetes\n"
+"Elija por favor la mínima instalación que quiera."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Acceso de tarjetas de Impresora/Foto en \"%s\""
+#: ../../install_steps_interactive.pm_.c:653
+msgid "With X"
+msgstr "Con X"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
-msgstr "Verificación diaria de seguridad"
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
+msgstr "Con documentación básica (¡recomendado!)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Instalación mínima \"en serio\" (especialmente sin urpmi)"
+
+#: ../../install_steps_interactive.pm_.c:741
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"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 ""
-"¿Desea habilitar la impresión en las impresoras mencionadas arriba o en las "
-"impresoras en la red local?\n"
+"Si tiene todos los CDs de la lista siguiente, haga clic sobre \"Aceptar\".\n"
+"Si no tiene ningún CD, haga clic sobre \"Cancelar\".\n"
+"Si sólo le faltan algunos CDs, desmárquelos y haga clic sobre \"Aceptar\"."
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:746
#, c-format
-msgid "Printer default settings"
-msgstr "Configuraciones predeterminadas de la impresora"
+msgid "Cd-Rom labeled \"%s\""
+msgstr "CD-ROM etiquetado como \"%s\""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Ratón genérico PS2 con rueda"
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr "Preparando la instalación"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm_.c:776
#, 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)"
+"Installing package %s\n"
+"%d%%"
msgstr ""
-"el indicador WP en el registro CR0 fuerza protección contra escritura al "
-"nivel de página de memoria, permitiendo así que el procesador evite accesos "
-"del núcleo (es decir, esto es una protección contra los bugs)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Quitando la impresora antigua \"%s\" ..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Select a device !"
-msgstr "¡Seleccione un dispositivo!"
+"Instalando el paquete %s\n"
+"%d%%"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected server"
-msgstr "Quitar servidor seleccionado"
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
+msgstr "Configuración posterior a la instalación"
-#: ../../network/adsl.pm:1
+#: ../../install_steps_interactive.pm_.c:828
#, c-format
-msgid "Sagem (using dhcp) usb"
-msgstr "Sagem (usando dhcp) usb"
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Por favor, inserte el disquete de arranque en la unidad %s"
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:834
#, c-format
-msgid "French Southern Territories"
-msgstr "Terrotorios Franceses del Sur"
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "Por favor, inserte el disquete de módulos actualizados en la unidad %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "el nombre del fabricante del procesador"
+#: ../../install_steps_interactive.pm_.c:861
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates ?"
+msgstr ""
+"Ahora tiene la oportunidad de bajar paquetes actualizados. Estos paquetes\n"
+"han salido después de que se publicó la distribución. Puede que los mismos\n"
+"contengan correcciones de bugs o de seguridad.\n"
+"\n"
+"Para descargar estos paquetes, necesitará tener una conexión con la\n"
+"Internet que esté funcionando.\n"
+"\n"
+"¿Desea instalar las actualizaciones?"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:876
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."
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-" - Maintener %s:\n"
-" \t\tPara que los usuarios puedan conectarse al sistema desde un "
-"cliente sin disco, la entrada en\n"
-" \t\t/etc/shadow debe duplicarse en %s. drakTermServ ayuda\n"
-" \t\ten este aspecto añadiendo o quitando usuarios del sistema de "
-"este archivo."
+"Contactando con el sitio web de Mandrake Linux para obtener la lista de las "
+"réplicas disponibles"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
+msgstr "Elija un sitio de réplica del cual obtener los paquetes"
+
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-"Debería hacer una copia de seguridad de todos los datos de esta partición"
+"Contactando con el sitio de réplica para obtener la lista de los paquetes "
+"disponibles..."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "Instalando el paquete %s"
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr "¿Cuál es su huso horario?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr "Verificando dispositivo y configurando HPOJ..."
+#: ../../install_steps_interactive.pm_.c:923
+msgid "Hardware clock set to GMT"
+msgstr "Reloj interno puesto a GMT"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Por favor, para tener más particiones borre alguna para poder crear una "
-"partición extendida"
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Sincronización automática de hora (usando NTP)"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"Su impresora se configuró automáticamente para darle acceso a las unidades "
-"de tarjetas de fotos desde su PC. Ahora puede acceder a sus tarjetas de "
-"fotos utilizando el programa gráfico \"MtoolsFM\" (Menú: \"Aplicaciones\" -> "
-"\"Herramientas de Archivo\" -> \"Administrador de archivos MTools\") o los "
-"utilitarios \"mtools\" de línea de comandos (teclee \"man mtools\" para más "
-"información). Encontrará el sistema de archivos de la tarjeta bajo la letra "
-"de unidad \"p:\", o letras de unidad subsiguientes cuando tiene más de una "
-"impresora HP con unidades de tarjetas de fotos. En \"MtoolsFM\" puede "
-"cambiar entre las letras de unidad con el campo en la esquina superior "
-"derecha de la lista de archivos."
+#: ../../install_steps_interactive.pm_.c:931
+msgid "NTP Server"
+msgstr "Servidor NTP"
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "Elija los paquetes a instalar"
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
+msgstr "Servidor CUPS remoto"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "Se perderán TODAS las particiones y sus datos en la unidad %s"
+#: ../../install_steps_interactive.pm_.c:966
+msgid "No printer"
+msgstr "Sin impresora"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Su sistema no tiene espacio suficiente para instalar o actualizar (%d > %d)"
+#: ../../install_steps_interactive.pm_.c:982
+msgid "Do you have an ISA sound card?"
+msgstr "¿Tiene una tarjeta de sonido ISA?"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-"Cada impresora necesita un nombre (por ejemplo, \"impresora\"). No tiene por "
-"qué rellenar los campos Descripción ni Ubicación. Son comentarios para los "
-"usuarios."
+"Use \"sndconfig\" luego de la instalación para configurar su tarjeta de "
+"sonido"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-"\"%s\": al hacer clic sobre el botón \"%s\" se abrirá el asistente de\n"
-"configuración de la impresora. Consulte el capítulo correspondiente de la\n"
-"\"Guía de Comienzo\" para más información sobre cómo configurar una\n"
-"impresora nueva. La interfaz presentada allí es similar a la utilizada\n"
-"durante la instalación."
+"No se detectó tarjeta de sonido. Pruebe \"harddrake\" luego de la instalación"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr "Bután"
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
+msgstr "Resumen"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "Interfaz de red"
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
+msgstr "Ratón"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Falló la desconexión desde la Internet."
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
+msgstr "Huso horario"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
-msgstr "Leyendo los datos de la impresora ..."
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "Impresora"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "Coreano"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
+msgstr "Tarjeta RDSI"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Not connected"
-msgstr "No conectado"
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
+msgstr "Tarjeta de sonido"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "No internet connection configured"
-msgstr "No se configuró conexión con la Internet"
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
+msgstr "Tarjeta de TV"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
-msgstr "Griego"
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
+msgstr "LDAP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts y Nevis"
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+msgid "NIS"
+msgstr "NIS"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Ratón de 3 botones genérico con emulación de rueda"
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+msgid "Windows Domain"
+msgstr "Dominio Windows"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
-msgstr "¿Habilitar el arranque de OF?"
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+msgid "Local files"
+msgstr "Archivos locales"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "No se puede usar JFS para particiones menores de 32MB"
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr "Contraseña de root"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Borrar su soporte regrabable (1er. sesión)"
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr "Sin contraseña"
-#: ../../Xconfig/various.pm:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Frecuencia vertical del monitor: %s\n"
+msgid "This password is too short (it must be at least %d characters long)"
+msgstr ""
+"Esta contraseña es demasiado simple\n"
+"(tiene que tener por lo menos una longitud de %d caracteres)"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "Punto de montaje"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "Autentificación"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"Ocurrió un error:\n"
-"%s\n"
-"Intente cambiar algunos parámetros"
+#: ../../install_steps_interactive.pm_.c:1088
+msgid "Authentication LDAP"
+msgstr "Autentificación LDAP"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "Host TCP/IP \"%s\", puerto %s"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
+msgstr "LDAP Base dn"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "User :"
-msgstr "Usuario:"
+#: ../../install_steps_interactive.pm_.c:1090
+msgid "LDAP Server"
+msgstr "Servidor LDAP"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore system"
-msgstr "Restaurar archivos del sistema"
+#: ../../install_steps_interactive.pm_.c:1096
+msgid "Authentication NIS"
+msgstr "Autentificación NIS"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "Dominio NIS"
+
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr "Servidor NIS"
+
+#: ../../install_steps_interactive.pm_.c:1104
msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
+"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 ""
-"Estas son las máquinas en las cuales deberían estar disponibles los "
-"escáneres conectados localmente:"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
-msgstr "Última IP del rango de DHCP"
+"Para que esto funcione con un PDC de W2K, probablemente necesite que el "
+"administrador ejecute: C:\\>net localgroup \"Pre-Windows 2000 Compatible "
+"Access\" everyone /add y vuelva a iniciar el servidor.\n"
+"También necesitará el nombre de usuario/contraseña de un Administrador de "
+"Dominio para unir la máquina al dominio Windows(TM).\n"
+"Si todavía no está habilitada la red, DrakX intentará unirse al dominio "
+"luego de la etapa de configuración de red.\n"
+"Si esta configuración falla por algún motivo y no funciona la autenticación "
+"PDC, ejecute 'smbpasswd -j DOMINIO -U USUARIO%CONTRASEÑA' utilizando su "
+"Dominio Windows(TM), y Nombre de usuario/Contraseña de Administrador, luego "
+"del arranque del sistema.\n"
+"El comando 'wbinfo -t' probará si sus secretos de autenticación son buenos."
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Another one"
-msgstr "Otro"
+#: ../../install_steps_interactive.pm_.c:1106
+msgid "Authentication Windows Domain"
+msgstr "Dominio de Autenticación de Windows"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
+#: ../../install_steps_interactive.pm_.c:1108
+msgid "Domain Admin User Name"
+msgstr "Nombre de usuario del Administrador del Dominio"
-#: ../../lang.pm:1
-#, c-format
-msgid "Colombia"
-msgstr "Colombia"
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
+msgstr "Contraseña del Administrador del Dominio"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1144
msgid ""
-"Current configuration of `%s':\n"
+"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"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
msgstr ""
-"Configuración corriente de `%s':\n"
+"Un disquete de arranque personalizado da la posibilidad de arrancar su "
+"equipo\n"
+"bajo Linux sin depender del cargador de arranque normal. Esto puede ser "
+"útil\n"
+"si no desea instalar SILO en su sistema, o si cualquier otro sistema "
+"operativo borra\n"
+"SILO, o si SILO no funciona con su configuración de hardware. Un disquete\n"
+"de arranque personalizado también se puede usar con la imagen de rescate de\n"
+" Mandrake haciendo así mucho más fácil la recuperación en caso de fallo\n"
+"grave del sistema.\n"
"\n"
-"Red: %s\n"
-"Dirección IP: %s\n"
-"Atributo IP: %s\n"
-"Controlador: %s"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n Play"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr "Reunión"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "Detalles"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Por motivos de seguridad, se desconectará ahora."
+"Si desea crear un disquete de arranque para su sistema, inserte un disquete\n"
+"en la primer disquetera y presione \"Aceptar\"."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Synchronization tool"
-msgstr "Herramienta de sincronización"
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr "Primera disquetera"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking your system..."
-msgstr "Verificando su sistema..."
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "Segunda disquetera"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print"
-msgstr "Imprimir"
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "Omitir"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:1167
#, c-format
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+"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"
msgstr ""
-"Inserte la cinta con la etiqueta de volumen %s\n"
-" en la unidad de cinta %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "Mongolia"
+"Un disquete de arranque personalizado da la posibilidad de arrancar su "
+"equipo\n"
+"bajo Linux sin depender del cargador de arranque normal. Esto puede ser "
+"útil\n"
+"si no desea instalar LILO (o grub) en su sistema, o si cualquier otro "
+"sistema operativo borra\n"
+"LILO, o si LILO no funciona con su configuración de hardware. Un disquete\n"
+"de arranque personalizado también se puede usar con la imagen de rescate de\n"
+"Mandrake haciendo así mucho más fácil la recuperación en caso de fallo\n"
+"grave del sistema. ¿Desea crear un disquete de arranque para su sistema?\n"
+"%s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
-msgstr "Montado\n"
+#: ../../install_steps_interactive.pm_.c:1173
+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)."
+msgstr ""
+"\n"
+"\n"
+"(¡ATENCIÓN! Está utilizando XFS en su partición raíz,\n"
+"la creación de un disquete de arranque en un disquete de 1.44Mb puede "
+"fallar\n"
+"porque XFS necesita un controlador muy grande)."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS"
-msgstr "Configurar CUPS"
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "Disculpe, pero no hay ninguna disquetera disponible"
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Interface"
-msgstr "Interfaz gráfica"
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr "Elija la disquetera que desea usar para crear el disco de arranque"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:1189
#, c-format
-msgid "Restore Users"
-msgstr "Restaurar usuarios"
+msgid "Insert a floppy in %s"
+msgstr "Inserte un disquete en %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Clave de cifrado para %s"
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr "Creando el disquete de arranque"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to recover your system?"
-msgstr "¿Desea recuperar su sistema?"
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr "Preparando el cargador de arranque"
-#: ../../services.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1210
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."
+"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 to boot your machine"
msgstr ""
-"El portmapper gestiona las conexiones RPC; que usan protocolos como\n"
-"NFS y NIS. El servidor portmap se debe estar ejecutando en los sistemas que "
-"actúan\n"
-"como servidores para protocolos que usan el mecanismo RPC."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detected hardware"
-msgstr "Hardware detectado"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr "Mauricio"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
-msgstr "Myanmar (Birmano)"
+"Parece que tiene una máquina desconocida o demasiado\n"
+"antigua. El gestor de arranque yaboot no funcionará.\n"
+"La instalación continuará, pero necesitará\n"
+"utilizar BootX para arrancar su máquina."
-#: ../../fs.pm:1
-#, c-format
-msgid "Enabling swap partition %s"
-msgstr "Habilitando la partición swap %s"
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
+msgstr "¿Desea usar aboot?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
+#: ../../install_steps_interactive.pm_.c:1219
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
-"No hay particiones FAT para usar como loopback (o no queda espacio "
-"suficiente)"
+"Ocurrió un error al instalar aboot, \n"
+"¿desea forzar la instalación incluso si ello implicara la destrucción de la "
+"primera partición?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr "Armenio (antiguo)"
+#: ../../install_steps_interactive.pm_.c:1226
+msgid "Installing bootloader"
+msgstr "Instalando cargador de arranque"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-"Ya existe una impresora denominada \"%s\" bajo %s. \n"
-"Haga clic sobre \"Transferir\" para sobre-escribirla.\n"
-"También puede ingresar un nombre nuevo o saltear esta impresora."
+"Falló la instalación del cargador de arranque. Ocurrió el siguiente error:"
-#: ../advertising/12-mdkexpert.pl:1
+#: ../../install_steps_interactive.pm_.c:1240
#, c-format
msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
+"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 ""
-"Encuentre las soluciones a sus problemas por medio de la plataforma de "
-"soporte en línea de MandrakeSoft"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", host \"%s\", puerto %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Monaco"
-msgstr "Mónaco"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Falló el particionamiento: %s"
-
-#: ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formateo de %s falló"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Canada (cable)"
-msgstr "Canadá (cable)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Floppy creation completed"
-msgstr "Creación de disquete completada"
+"Puede necesitar cambiar el dispositivo de arranque de Open Firmware para\n"
+" activar el cargador de arranque. Si no ve el prompt del cargador de\n"
+" arranque al reiniciar, mantenga presionado Command-Option-O-F al\n"
+" reiniciar e introduzca:\n"
+" setenv boot-device %s, \\\\:tbxi\n"
+" Luego escriba: shut-down\n"
+"La próxima vez que arranque debería ver el prompt del cargador de arranque."
-#: ../../help.pm:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "Upgrade"
-msgstr "Actualización"
+msgid "Insert a blank floppy in drive %s"
+msgstr "Inserte un disquete en blanco en la unidad %s"
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
-msgstr "Estación de trabajo"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
+msgstr "Creando el disquete de instalación automática"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1289
msgid ""
-"Installing package %s\n"
-"%d%%"
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
msgstr ""
-"Instalando el paquete %s\n"
-"%d%%"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
-msgstr "Kirguizistán"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "Dispositivo multi-función en USB"
+"Algunas de las etapas no fueron completadas.\n"
+"\n"
+"¿Realmente desea salir ahora?"
-#: ../../../move/move.pm:1
+#: ../../install_steps_interactive.pm_.c:1300
#, 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"
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press return to reboot.\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."
+"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 ""
-"No detectamos llave USB alguna en su sistema. Si conecta\n"
-"una llave USB ahora, Mandrake Move podrá guardar los datos\n"
-"en su directorio personal de manera transparente y también\n"
-"la configuración del sistema, para el próximo arranque en esta\n"
-"computadora o en otra. Nota: si conecta una llave ahora, espere\n"
-"varios segundos antes de volver a detectar.\n"
+"Felicidades, la instalación está completa.\n"
+"Extraiga el soporte de arranque y presione Intro para reiniciar.\n"
"\n"
+"Para obtener información sobre correcciones disponibles para esta versión\n"
+"de Mandrake Linux, consulte el archivo de erratas disponible en\n"
"\n"
-"También puede continuar sin una llave USB - todavía podrá\n"
-"utilizar Mandrake Move como un Sistema Operativo Mandrake \"live\" normal."
+"%s\n"
+"\n"
+"\n"
+"Hay información disponible sobre cómo configurar su sistema en el capítulo "
+"de\n"
+"configuración tras la instalación de la guía de usuario oficial de Mandrake "
+"Linux."
-#: ../../help.pm:1
-#, c-format
-msgid "With basic documentation"
-msgstr "Con documentación básica"
+#: ../../install_steps_interactive.pm_.c:1313
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr "Anacron, un planificador de comandos periódicos."
+#: ../../install_steps_interactive.pm_.c:1318
+msgid "Generate auto install floppy"
+msgstr "Generar un disquete de instalación automática"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1320
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 `/'"
+"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 ""
-"Debe tener una partición raíz.\n"
-"Para ello, cree una partición (o haga clic sobre una que ya existe).\n"
-"Luego elija la acción \"Punto de montaje\" y defínalo como '/'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "Sahara Oeste"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "El nombre del proxy debe ser http://..."
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr "Sudáfrica"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Expulsar la cinta luego del respaldo"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Disquete/ISO Etherboot"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Modificar configuración de la impresora"
+"La instalación automática puede automatizarse por completo si lo desea,\n"
+"¡¡en ese caso se adueñará del disco rígido!!\n"
+"(la intención de esto es instalarlo en otro ordenador).\n"
+"\n"
+"Puede preferir reproducir la instalación.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
-msgstr "Elija una partición"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
+msgstr "Automatizada"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Edit current rule"
-msgstr "Editar regla corriente"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Replay"
+msgstr "Reproducir"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
-msgstr "%s"
+#: ../../install_steps_interactive.pm_.c:1328
+msgid "Save packages selection"
+msgstr "Guardar la selección de paquetes"
-#: ../../mouse.pm:1
+#: ../../install_steps_newt.pm_.c:20
#, c-format
-msgid "Please test the mouse"
-msgstr "Pruebe su ratón, por favor."
+msgid "Mandrake Linux Installation %s"
+msgstr "Instalación %s de Mandrake Linux"
-#: ../../fs.pm:1
-#, c-format
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
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)."
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-"No actualizar los tiempos de acceso al inodo en este sistema de archivos\n"
-"(ej: para un acceso más rápido al spool de noticias en un servidor de "
-"noticias)"
+" <Tab>/<Alt-Tab> entre elementos | <espacio> seleccionar | <F12> pantalla "
+"sig. "
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3 botones con emulación de rueda"
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
+msgstr "no se encuentra kdesu"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Sticky-bit"
-msgstr "Bit pegajoso"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
+msgstr "falta \"consolehelper\""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other Media"
-msgstr "Otros soportes"
+#: ../../interactive.pm_.c:152
+msgid "Choose a file"
+msgstr "Elija un archivo"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
+msgstr "Avanzada"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files"
-msgstr "Respaldar archivos del sistema"
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
+msgstr "Básico"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Sector"
-msgstr "Sector"
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
+msgstr "<- Anterior"
-#: ../../lang.pm:1
-#, c-format
-msgid "Qatar"
-msgstr "Qatar"
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+msgid "Next"
+msgstr "Siguiente"
-#: ../../any.pm:1
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr "Elección incorrecta, inténtelo de nuevo\n"
+
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "LDAP Base dn"
-msgstr "LDAP Base dn"
+msgid "Your choice? (default %s) "
+msgstr "¿Su elección? (por defecto %s)"
-#: ../../install_steps_gtk.pm:1
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
-"You can't select this package as there is not enough space left to install it"
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-"No puede seleccionar este paquete porque no hay espacio suficiente para "
-"instalarlo"
-
-#: ../../help.pm:1
-#, c-format
-msgid "generate auto-install floppy"
-msgstr "generar un disquete de instalación automática"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr "Modo de marcación"
-
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr "Compartir archivos"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "Limpiar /tmp en cada inicio del equipo"
+"Entradas que tendrá que rellenar:\n"
+"%s"
-#: ../../lang.pm:1
+#: ../../interactive/stdio.pm_.c:70
#, c-format
-msgid "Malawi"
-msgstr "Malawi"
+msgid "Your choice? (0/1, default `%s') "
+msgstr "¿Su elección? (0/1, por defecto '%s') "
-#: ../../standalone/drakTermServ:1
+#: ../../interactive/stdio.pm_.c:95
#, c-format
-msgid "local config: false"
-msgstr "configuración local: falso"
+msgid "Button `%s': %s"
+msgstr "Botón `%s': %s"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "System settings"
-msgstr "Ajustes del sistema"
+#: ../../interactive/stdio.pm_.c:96
+msgid "Do you want to click on this button?"
+msgstr "¿Desea pulsar este botón?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Por favor, seleccione el tipo de su ratón."
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
+msgstr "ingrese `void' para una entrada vacía"
-#: ../../services.pm:1
+#: ../../interactive/stdio.pm_.c:105
#, c-format
-msgid "running"
-msgstr "corriendo"
+msgid "Your choice? (default `%s'%s) "
+msgstr "¿Su elección? (por defecto %s'%s) "
-#: ../../standalone/harddrake2:1
+#: ../../interactive/stdio.pm_.c:123
#, c-format
-msgid "class of hardware device"
-msgstr "clase de dispositivo de hardware"
+msgid "=> There are many things to choose from (%s).\n"
+msgstr "=> Hay muchas cosas para seleccionar (%s).\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../interactive/stdio.pm_.c:126
msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
msgstr ""
-"Estas son las máquinas y redes en las cuales debería(n) estar disponible(s) "
-"la(s) impresora(s) conectada(s) localmente:"
-
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "Reino Unido"
+"Por favor, seleccione el primer número del rango de 10 que desee\n"
+"editar, o pulse Intro para continuar.\n"
+"¿Su elección?"
-#: ../../lang.pm:1
+#: ../../interactive/stdio.pm_.c:139
#, c-format
-msgid "Indonesia"
-msgstr "Indonesia"
+msgid ""
+"=> Notice, a label changed:\n"
+"%s"
+msgstr ""
+"=> Aviso, una etiqueta cambió:\n"
+"%s"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "predeterminado"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
+msgstr "Reenviar"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "France [SECAM]"
-msgstr "Francia [SECAM]"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "Checo (QWERTZ)"
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "restringir"
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "Alemán"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "must have"
-msgstr "necesario"
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Dvorak"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS no soporta impresoras en servidores Novell o impresoras que envían los "
-"datos en un comando formado libremente.\n"
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "Español"
-#: ../../lang.pm:1
-#, c-format
-msgid "Senegal"
-msgstr "Senegal"
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "Finlandés"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Command line"
-msgstr "Línea de comandos"
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "Francés"
-#: ../advertising/08-store.pl:1
-#, 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:"
-msgstr ""
-"Nuestro rango completo de soluciones Linux, así como también ofertas "
-"especiales sobre productos y otras \"cositas\", están disponibles en línea "
-"en nuestra tienda electrónica:"
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "Noruego"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "March"
-msgstr "Marzo"
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "Polaco"
-#: ../../any.pm:1
-#, c-format
-msgid "access to administrative files"
-msgstr "acceso a archivos administrativos"
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "Ruso"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
-msgstr ""
-"Error enviando correo con sendmail.\n"
-" Su correo-e de reporte no se envió.\n"
-" Por favor, configure a sendmail"
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
+msgstr "Sueco"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Do not allow set-user-identifier or set-group-identifier\n"
-"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
-"have suidperl(1) installed.)"
-msgstr ""
-"No permitir que tengan efecto el ajuste de los bits set-user-id o set-group-"
-"id\n"
-"(Esto parece seguro, pero de hecho es bastante inseguro si tiene\n"
-"suidperl(1) instalado)"
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "Británico"
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
-msgstr "Monserrat"
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "Estadounidense"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Dependencias automáticas"
+#: ../../keyboard.pm_.c:167
+msgid "Albanian"
+msgstr "Albano"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "Intercambio"
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
+msgstr "Armenio (antiguo)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom settings"
-msgstr "Ajustes personalizados"
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
+msgstr "Armenio (nuevo)"
-#: ../../../move/move.pm:1
-#, 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."
-msgstr ""
-"La llave USB parece tener habilitada la protección contra escritura, pero "
-"ahora\n"
-"no se puede desconectar de manera segura.\n"
-"\n"
-"\n"
-"Haga clic sobre el botón para reiniciar la máquina, desconéctela, quite\n"
-"dicha protección, vuelva a conectarla y lance Mandrake Move otra vez."
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
+msgstr "Armenio (fonético)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Other"
-msgstr "Restaurar otros"
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
+msgstr "Azerbadján (latín)"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "Tarjeta de TV"
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "Belga"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Impresora en un servidor SMB/Windows 95/98/NT"
+#: ../../keyboard.pm_.c:178
+msgid "Bengali"
+msgstr "Indio (Bengalí)"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_Configurar CUPS"
+#: ../../keyboard.pm_.c:179
+msgid "Bulgarian (phonetic)"
+msgstr "Búlgaro (fonético)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
-msgstr ", "
+#: ../../keyboard.pm_.c:180
+msgid "Bulgarian (BDS)"
+msgstr "Búlgaro (BDS)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
-msgstr "Enviar lspci"
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
+msgstr "Brasileño (ABNT-2)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Quitar host/red seleccionada."
+#: ../../keyboard.pm_.c:184
+msgid "Bosnian"
+msgstr "Bosnio"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix es un agente de transporte de correo (MTA), es decir el programa "
-"encargado de enviar el correo electrónico de una máquina a otra."
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
+msgstr "Bielorruso"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "Uzbek (cirílico)"
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "Suizo (germánico)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Aquí puede elegir la tecla o combinación de teclas que permitirá\n"
-"cambiar entre los diferentes esquemas de teclado\n"
-"(ej.: latino y no latino)"
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "Suizo (francés)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Network Hotplugging"
-msgstr "\"Enchufe en caliente\" de la red"
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "Checo (QWERTY)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr "si se pone en sí, reportar resultados de verificación en tty."
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr "Alemán (sin teclas muertas)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From CD"
-msgstr "Restaurar desde CD"
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
+msgstr "Indio (Devanagari)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Está a punto de configurar su computadora para compartir la conexión a "
-"Internet.\n"
-"Con esta característica, otras computadoras de su red local podrán usar la "
-"conexión a Internet de esta computadora.\n"
-"\n"
-"Debe asegurarse que ha configurado su acceso a la Red/Internet utilizando "
-"drakconnect antes de proceder.\n"
-"\n"
-"Nota: necesita un adaptador de red dedicado para configurar una red de área "
-"local (LAN)."
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "Danés"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr ""
-"Por favor, elija el adaptador de red que desea usar para conectarse a "
-"Internet"
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Dvorak (US)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-"Acceso a la tarjeta de memoria de fotos en su dispositivo multifunción HP"
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Noruego)"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
-msgstr ""
-"Mejore el rendimiento de su computadora con la ayuda de una selección de "
-"socios que ofrecen soluciones profesionales compatibles con Mandrake Linux"
+#: ../../keyboard.pm_.c:196
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (Sueco)"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
-msgstr "Autores: "
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "Estonio"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Ahora, la conexión compartida a Internet está inactiva."
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Georgiano (estilo \"ruso\")"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr "si se pone en sí, verificar suma de los archivos suid/sgid."
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Georgiano (estilo \"latín\")"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latin American"
-msgstr "Latinoamericano"
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "Griego"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Modo de impresión de texto japonés"
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
+msgstr "Indio (Gujarati)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Old device file"
-msgstr "Archivo de dispositivo antiguo"
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
+msgstr "Indio (Gurmukhi)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "Info: "
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "Húngaro"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Botón `%s': %s"
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "Croata"
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Espere, por favor"
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
+msgstr "Israelí"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr "Israelí (fonético)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "None"
-msgstr "Ninguno"
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr "Iraní"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "La IP ingresada no es correcta.\n"
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr "Islandés"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr ""
-"Por favor, asegúrese que el servidor cron está incluído entre sus servicios."
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "Italiano"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
-msgstr "Tarjeta ethernet"
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
+msgstr "Inuktitut"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete selected printer"
-msgstr "Borrar la impresora seleccionada"
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
+msgstr "Japonés de 106 teclas"
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "Info"
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
+msgstr "Coreano"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "Instalar"
+#: ../../keyboard.pm_.c:218
+msgid "Latin American"
+msgstr "Latinoamericano"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Haga clic sobre \"%s\" si desea borrar todos los datos y particiones\n"
-"presentes en esta unidad de disco. Tenga cuidado, luego de hacer clic sobre\n"
-"\"%s\", no podrá recuperar los datos y las particiones presentes en esta\n"
-"unidad de disco, incluyendo los datos de Windows.\n"
-"\n"
-"Haga clic sobre \"%s\" para detener esta operación sin perder los datos ni\n"
-"las particiones presentes en esta unidad de disco."
+#: ../../keyboard.pm_.c:219
+msgid "Laotian"
+msgstr "Laosiano"
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "Salir de la instalación"
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
+msgstr "Lituano AZERTY (antiguo)"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
-msgstr "Necesita una llave para guardar sus datos"
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
+msgstr "Lituano AZERTY (nuevo)"
-#: ../../standalone/drakgw:1
-#, 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)."
-msgstr ""
-"Se ha configurado todo.\n"
-"Ahora puede compartir su conexión a Internet con otros ordenadores de su red "
-"de área local, usando la configuración automática de la red (DHCP)."
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Lituano \"numérico\" QWERTY"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Servidor CUPS remoto"
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Lituano \"fonético\" QWERTY"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Ratón Sun"
+#: ../../keyboard.pm_.c:225
+msgid "Latvian"
+msgstr "Letón"
-#: ../../standalone/drakgw:1
-#, 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."
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
msgstr ""
-"Sólo hay un adaptador de red configurado en su sistema:\n"
-"\n"
-"%s\n"
-"\n"
-"Se va a configurar su red de área local con ese adaptador."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
-msgstr "Enviar cpuinfo"
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
+msgstr "Macedonio"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Minimal install"
-msgstr "Instalación mínima"
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
+msgstr "Myanmar (Birmano)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "Etiopía"
+#: ../../keyboard.pm_.c:229
+msgid "Mongolian (cyrillic)"
+msgstr "Mongol (cirílico)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
-msgstr "SÃ"
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
+msgstr "Maltés (Reino Unido)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
-msgstr "Habilitar \"crontab\" y \"at\" para los usuarios"
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
+msgstr "Maltés (EE.UU.)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr "Indio (Devanagari)"
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
+msgstr "Holandés"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- dispositivos PCI: el zócalo PCI, dispositivo y función de esta tarjeta\n"
-"- dispositivos EIDE: el dispositivo es o bien uno maestro o uno esclavo\n"
-"- dispositivos SCSI: el bus SCSI y los id de dispositivo SCSI"
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
+msgstr "Polaco (distribución qwerty)"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Tamaño total: %d / %d MB"
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
+msgstr "Polaco (distribución qwertz)"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "disabled"
-msgstr "deshabilitado"
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
+msgstr "Portugués"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Search for new scanners"
-msgstr "Buscar escáneres nuevos"
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr "Canadiense (Quebec)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Disabling servers..."
-msgstr "Desactivando los servidores..."
+#: ../../keyboard.pm_.c:239
+msgid "Romanian (qwertz)"
+msgstr "Rumano (qwertz)"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Falló la instalación de %s. Ocurrió el siguiente error:"
+#: ../../keyboard.pm_.c:240
+msgid "Romanian (qwerty)"
+msgstr "Rumano (qwerty)"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr "No se puede ejecutar mkinitrd -f /boot/initrd-%s.img %s."
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "Ruso (Yawerty)"
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"Ha seleccionado el/los siguientes servidores: %s\n"
-"\n"
-"\n"
-"Estos servidores se activan por defecto. No se les conocen problemas de\n"
-"seguridad, pero se pueden encontrar problemas nuevos. En ese caso, debe "
-"asegurarse de\n"
-"actualizarlos tan pronto como sea posible.\n"
-"\n"
-"\n"
-"¿Realmente desea instalar estos servidores?\n"
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
+msgstr "Esloveno"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Impresora de red (TCP/Socket)"
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "Eslovaco (QWERTZ)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup User files..."
-msgstr "Respaldar archivos de usuario..."
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "Eslovaco (QWERTY)"
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "Instalar el sistema"
+#: ../../keyboard.pm_.c:248
+msgid "Serbian (cyrillic)"
+msgstr "Serbio (cirílico)"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Primer servidor DNS (opcional)"
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
+msgstr "Tamil (Unicode)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-"Alternativamente, puede especificar el nombre de un dispositivo o archivo en "
-"la línea de entrada"
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
+msgstr "Tamil (TSCII)"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
-"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
-"symlink /etc/security/msec/server to point to\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
-"add a service if it is present in the file during the installation of\n"
-"packages."
-msgstr ""
-"Si SERVER_LEVEL (o SECURE_LEVEL si no está)\n"
-"es mayor que 3 en /etc/security/msec/security.conf, crea el\n"
-"symlink /etc/security/msec/server para que apunte a\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"chkconfig --add utiliza a /etc/security/msec/server para decidir\n"
-"añadir un servicio si está presente en el archivo\n"
-"durante la instalación de paquetes."
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr "Teclado tailandés"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "Ruso (fonético)"
+#: ../../keyboard.pm_.c:254
+msgid "Tajik keyboard"
+msgstr "Teclado tajik"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Config..."
-msgstr "Configuración de dhcpd..."
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Turco (modelo \"F\" tradicional)"
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "Instalación de LILO/grub"
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Turco (modelo \"Q\" moderno)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "Israelí"
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr "Ucraniano"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Impresora \"%s\" en el servidor \"%s\""
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "Estadounidense (internacional)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Ya se puede quitar el disquete"
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vietnamita \"numérico\" QWERTY"
-#: ../../help.pm:1
-#, c-format
-msgid "Truly minimal install"
-msgstr "Instalación realmente mínima"
+#: ../../keyboard.pm_.c:263
+msgid "Yugoslavian (latin)"
+msgstr "Yugoslavo (latín)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "Dinamarca"
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
+msgstr "Tecla Alt derecha"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "Desplazando una partición..."
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
+msgstr "Ambas teclas Shift simultáneamente"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "(This) DHCP Server IP"
-msgstr "IP de (este) servidor DHCP"
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
+msgstr "Las teclas Control y Shift simultáneamente"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Test of the configuration"
-msgstr "Probar la configuración"
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
+msgstr "Tecla CapsLock"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing %s ..."
-msgstr "Instalando %s ..."
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
+msgstr "Las teclas Ctrl y Alt simultáneamente"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Si le dijo al instalador que deseaba seleccionar los paquetes individuales,\n"
-"el mismo presentará un árbol que contiene todos los paquetes clasificados\n"
-"por grupos y subgrupos. Mientras navega por el árbol puede seleccionar\n"
-"grupos enteros, subgrupos, o paquetes individuales.\n"
-"\n"
-"Tan pronto como selecciona un paquete en el árbol, aparece una descripción\n"
-"del mismo sobre la derecha que le permite conocer el propósito del paquete.\n"
-"\n"
-"Es muy probable que la gran mayoría de las descripciones de los paquetes\n"
-"estén en inglés.\n"
-"\n"
-"!! Si ha sido seleccionado un paquete de servidor ya sea porque Usted\n"
-"seleccionó específicamente el paquete individual o porque el mismo era\n"
-"parte de un grupo de paquetes, se le pedirá que confirme que realmente\n"
-"desea que se instalen esos servidores. Bajo Mandrake Linux, cualquier\n"
-"servidor instalado se inicia de manera predeterminada al momento del\n"
-"arranque. Aunque estos son seguros y no tienen problemas conocidos al\n"
-"momento en que se publicó la distribución, es posible que se descubran\n"
-"vulnerabilidades en la seguridad luego que se terminó con esta versión de\n"
-"Mandrake Linux. En particular, si no sabe que es lo que se supone que hace\n"
-"un servicio o la razón por la cual se está instalando, entonces haga clic\n"
-"sobre \"%s\". Si hace clic sobre \"%s\" se instalarán todos los servicios\n"
-"listados y de manera predeterminada los mismos arrancarán automáticamente.\n"
-"!!\n"
-"\n"
-"La opción \"%s\" simplemente deshabilita el diálogo de advertencia que\n"
-"aparece cuando el instalador selecciona automáticamente un paquete para\n"
-"resolver un problema de dependencias. Algunos paquetes tienen relaciones\n"
-"entre ellos tales que la instalación de un paquete necesita que algún otro\n"
-"programa ya esté instalado. El instalador puede determinar qué paquetes se\n"
-"necesitan para satisfacer una dependencia para completar la instalación de\n"
-"manera satisfactoria.\n"
-"\n"
-"El pequeño icono del disquete al final de la lista le permite cargar la\n"
-"lista de paquetes elegida durante una instalación previa. Esto es útil si\n"
-"Usted tiene una cantidad de máquinas que desea configurar de manera\n"
-"idéntica. Haga clic sobre este icono y se le pedirá que inserte un disquete\n"
-"creado con anterioridad al final de otra instalación. Vea el segundo\n"
-"consejo del último paso para información sobre como crear dicho disquete."
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
+msgstr "Las teclas Alt y Shift simultáneamente"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr "Elija la clave de cifrado de su sistema de archivos"
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
+msgstr "La tecla \"Menú\""
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr "Sierra Leona"
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr "Tecla \"Windows\" de la izquierda"
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
-msgstr "Botswana"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
+msgstr "Tecla \"Windows\" de la derecha"
-#: ../../lang.pm:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid "Andorra"
-msgstr "Andorra"
+msgid "Circular mounts %s\n"
+msgstr "Montajes circulares %s\n"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "(default value: %s)"
-msgstr " (valor predeterminado: %s)"
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
+msgstr "Quite los volúmenes lógicos primero\n"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
+#: ../../modules.pm_.c:290
+msgid ""
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-"Configurar edad de contraseñas en \"max\" días y demorar el cambio a "
-"\"inactive\"."
+"El soporte PCMCIA no existe en los núcleos 2.2. Por favor, utilice un núcleo "
+"2.4."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Página de prueba alternativa (Letter)"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
+msgstr "Aquí puede configurar cada parámetro del módulo."
-#: ../../standalone/drakgw:1
-#, c-format
-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 ""
-"Configuración del servidor DHCP.\n"
-"\n"
-"Aquí puede seleccionar opciones diferentes para la configuración del "
-"servidor DHCP.\n"
-"Si no conoce el significado de una opción, simlpemente déjela como está.\n"
-"\n"
+#: ../../modules/parameters.pm_.c:18
+#, fuzzy
+msgid "modinfo is not available"
+msgstr "Ninguna disquetera disponible"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Choose an X server"
-msgstr "Seleccione un servidor X"
+#: ../../modules/parameters.pm_.c:50
+msgid "a number"
+msgstr "un número"
-#: ../../../move/tree/mdk_totem:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr "Copiando a memoria para permitir quitar el CD-ROM"
+msgid "%d comma separated numbers"
+msgstr "%d números separados por comas"
-#: ../../install_interactive.pm:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Tamaño de la partición de intercambio en MB: "
+msgid "%d comma separated strings"
+msgstr "%d cadenas de caracteres separadas por comas"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No changes to backup!"
-msgstr "¡No hay cambios para realizar respaldo!"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
+msgstr "números separados por comas"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "Formateado\n"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated strings"
+msgstr "cadenas de caracteres separadas por comas"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Type of install"
-msgstr "Tipo de instalación."
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Ratón Sun"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Impresora \"%s\" en el servidor SMB/Windows \"%s\""
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d números separados por comas"
+#: ../../mouse.pm_.c:33
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Ratón genérico PS2 con rueda"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"El protocolo rusers permite que los usuarios de una red identifiquen\n"
-"quien está conectado en otras máquinas que respondan."
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Configuración de pasos automáticos"
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "Barbados"
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
-msgstr ""
-"¿Desea saber más acerca de la comunidad de Código Abierto? Participe en el "
-"mundo del Software Libre!"
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Por favor, elija los datos a respaldar..."
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+msgid "Microsoft Explorer"
+msgstr "Microsoft Explorer"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
-msgstr ""
-"Falló la conexión.\n"
-"Verifique su configuración en el Centro de Control de Mandrake."
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
+msgstr "1 botón"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
-msgstr "recibido"
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "Ratón de 2 botones genérico"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr "Permitir su sólo a miembros del grupo wheel o a cualquier usuario"
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "Rueda"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
-msgstr "/Archivo/_Nuevo"
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "serie"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DNS Server IP"
-msgstr "La IP del servidor DNS"
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "Ratón de 3 botones genérico"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range End:"
-msgstr "Fin de rango IP:"
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
-msgstr "Alta"
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Añadir una impresora nueva al sistema"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr "Sin vídeo"
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
-msgstr "este campo describe al dispositivo"
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Agregando impresora a Star Office/OpenOffice.org/GIMP"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "MM Series"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printers"
-msgstr "Impresoras locales"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation image directory"
-msgstr "Directorio de imagen de instalación"
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Ratón Logitech (serie, antiguo tipo C7)"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "Servidor NIS"
+#: ../../mouse.pm_.c:68
+msgid "busmouse"
+msgstr "ratón bus"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Port: %s"
-msgstr "Puerto: %s"
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "2 botones"
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "España"
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "3 botones"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
-msgstr "configuración local: %s"
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "ninguno"
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "Este nombre de usuario ya fue añadido"
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "Sin ratón"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
-msgstr "Elija un archivo"
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
+msgstr "Pruebe su ratón, por favor."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr "Aplicar"
+#: ../../mouse.pm_.c:491
+msgid "To activate the mouse,"
+msgstr "Para activar el ratón,"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "/Autodetectar puertos disponibles"
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr "¡MUEVA SU RUEDA!"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr "San Marino"
+#: ../../my_gtk.pm_.c:65
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Ahora, la conexión compartida a Internet está desactivada"
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
+msgstr "Finalizar"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Belgium"
-msgstr "Bélgica"
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
+msgstr "Siguiente ->"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
-msgstr "Kuwait"
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "¿Es correcto?"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "Elija el gestor de ventanas a ejecutar:"
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "Info"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
-msgstr "Diciembre"
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
+msgstr "Expandir el árbol"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "sub-generación de la CPU"
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
+msgstr "Contraer el árbol"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
-msgstr "Aisstente Inicial"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr "Cambiar entre vista plana y ordenada por grupos"
-#: ../../lang.pm:1
-#, c-format
-msgid "Taiwan"
-msgstr "Taiwán"
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "usar pppoe"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "Pakistán"
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
+msgstr "usar pptp"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "por favor, espere, analizando el archivo: %s"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
+msgstr "usar dhcp"
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
+msgstr "Alcatel Speedtouch usb"
+
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
msgstr ""
-"Ocurrió un error y no se puede gestionar de forma adecuada.\n"
-"Continúe bajo su propio riesgo."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Importance: "
-msgstr "Importancia: "
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
+msgstr "Conectar a Internet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:30
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."
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-"Para poder imprimir con su impresora de inyección de tinta Lexmark y esta "
-"configuración, necesita los controladores de impresoras de inyección de "
-"tinta proporcionados por Lexmark (http://www.lexmark.com/). Haga clic en el "
-"vínculo \"Drivers\". Luego, seleccione su modelo y posteriormente \"Linux\" "
-"como sistema operativo. Los controladores vienen vienen como paquetes RPM o "
-"como scripts del shell con instalación gráfica interactiva. No necesita "
-"hacer esta configuración con las interfaces gráficas. Cancele directamente "
-"tras el acuerdo de licencia. Luego imprima las páginas de alineación del "
-"cabezal de impresión con \"lexmarkmaintain\" y ajuste la configuración de la "
-"alineación de la cabeza con este programa."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Permissions"
-msgstr "Permisos"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Nombre del proveedor (ej proveedor.net)"
+"La forma más común de conexión ADSL es con pppoe.\n"
+"Algunas conexiones usan pptp, otras pocas usan dhcp.\n"
+"Si no lo sabe con seguridad, elija 'usar pppoe'"
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:166
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'."
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-"Su sistema tiene pocos recursos. Puede tener algún problema instalando\n"
-"Mandrake Linux. Si eso ocurre, puede intentar una instalación tipo texto.\n"
-"Para ello, presione 'F1' cuando arranque desde el CDROM, e introduzca 'text'."
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "Usar la partición de Windows para loopback"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
-msgstr "Armenio (nuevo)"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection type: "
-msgstr "Tipo de conexión: "
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Graphical interface"
-msgstr "Interfaz gráfica"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "Chad"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "India"
-
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s con aceleración 3D por hardware"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr "Eslovaquia"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "Singapur"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "Camboya"
+#: ../../network/drakfirewall.pm_.c:12
+msgid "Web Server"
+msgstr "Servidor web"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Frecuencia horizontal del monitor: %s\n"
+#: ../../network/drakfirewall.pm_.c:17
+msgid "Domain Name Server"
+msgstr "Servidor de nombres de dominio"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr "Ruta"
+#: ../../network/drakfirewall.pm_.c:32
+msgid "Mail Server"
+msgstr "Servidor de correo"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
-msgstr "NO ENCONTRADO"
+#: ../../network/drakfirewall.pm_.c:37
+msgid "POP and IMAP Server"
+msgstr "Servidor POP e IMAP"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-"Aquí puede especificar una línea de comandos arbitraria en la cual debería "
-"ponerse el trabajo de impresión en vez de enviarse directamente a la "
-"impresora."
+#: ../../network/drakfirewall.pm_.c:111
+msgid "No network card"
+msgstr "Sin tarjeta de red"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:129
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"
+"drakfirewall configurator\n"
"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"El sistema de impresión (%s) no se iniciará automáticamente cuando arranque "
-"la máquina.\n"
-"\n"
-"Es posible que el inicio automático se desactivó al cambiar a un nivel de "
-"seguridad mayor, porque el sistema de impresión es un potencial punto de "
-"ataques.\n"
+"configurador de drakfirewall\n"
"\n"
-"¿Desea volver a activar el inicio automático de la impresión cuando el "
-"sistema se vuelva a encender?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Impresora %s\n"
-"¿Qué desea modificar de esta impresora?"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add host"
-msgstr "Añadir host"
+"Esto configura un cortafuegos personal para esta máquina Mandrake Linux.\n"
+"Para una solución potente de cortafuegos dedicada, por favor eche un "
+"vistazo\n"
+"a la distribución especializada MandrakeSecurity Firewall."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:135
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"
+"drakfirewall configurator\n"
"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-"Si realmente cree que sabe qué controlador es el adecuado para su tarjeta\n"
-"puede elegir uno en la lista de arriba.\n"
+"Configuración de drakfirewall\n"
"\n"
-"El controlador corriente para su tarjeta de sonido \"%s\" es \"%s\" "
+"Debe asegurarse que ha configurado su acceso de Red/Internet con\n"
+"drakconnect antes de continuar."
-#: ../../any.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr "¿A qué servicios desearía permitir conectarse desde la Internet?"
+
+#: ../../network/drakfirewall.pm_.c:153
msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-"¿Desea permitir a los usuarios exportar algunos directorios personales?\n"
-"Si lo hace, los usuarios podrán simplemente hacer clic sobre \"Compartir\" "
-"en Konqueror y Nautilus.\n"
-"\n"
-"\"Personalizar\" permite una granularidad por usuario.\n"
+"Puede ingresar otros puertos. \n"
+"Por ejemplo: 139/tcp 139/udp.\n"
+"Consulte /etc/services para más información."
-#: ../../install_steps_interactive.pm:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-"Por favor, seleccione cargar o guardar la selección de paquetes en "
-"disquete.\n"
-"El formato es el mismo que los disquetes generados para la instalación "
-"automática."
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "No CDROM support"
-msgstr "Sin soporte para CD-ROM"
+"Puerto no válido: %s.\n"
+"El formato adecuado es \"puerto/tcp\" o \"puerto/udp\", \n"
+"donde puerto es un número entre 1 y 65535."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "China (broadcast)"
-msgstr "China (difusión)"
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
+msgstr "Todo (sin cortafuegos)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use quota for backup files."
-msgstr "Usar cuota para archivos de respaldo"
+#: ../../network/drakfirewall.pm_.c:169
+msgid "Other ports"
+msgstr "Otros puertos"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Configurando la impresora \"%s\" ..."
+#: ../../network/ethernet.pm_.c:37
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
+msgstr ""
+"¿Qué cliente dhcp desea utilizar?\n"
+"dhcp-client es el predeterminado"
-#: ../../fs.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:88
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."
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-"No permitir la ejecución de binarios en el sistema de archivos montado.\n"
-"Esta opción puede ser útil para un servidor que tiene sistemas de archivos\n"
-"que contienen binaros para arquitecturas distintas a la propia."
+"No se ha detectado ningún adaptador de red ethernet en su sistema.\n"
+"No se puede configurar este tipo de conexión."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection"
-msgstr "Conexión a Internet"
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
+msgstr "Elija la interfaz de red"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:93
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
+"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
-"Error al cargar el módulo %s.\n"
-"¿Desea intentarlo de nuevo con otros parámetros?"
+"Por favor, elija el adaptador de red que desea usar para conectarse a "
+"Internet"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr "Bienvenido al mundo del Código Abierto"
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "no se encontró ninguna tarjeta de red"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnia Herzegovina"
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "Configurando la red"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:201
msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
-"Necesita un sistema de archivos verdadero (ext2/ext3, reiserfs, xfs o jfs) "
-"para este punto de montaje\n"
+"Por favor introduzca el nombre de su máquina (host) si lo conoce.\n"
+"Algunos servidores DHCP necesitan del nombre de la máquina para funcionar.\n"
+"El nombre de su máquina debería ser un nombre de máquina clasificado "
+"completamente,\n"
+"como \"mimaquina.milabo.micompa.com\"."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Debe ingresar el nombre o la IP del host.\n"
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "Nombre de la máquina"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "Holanda"
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+msgid "Network Configuration Wizard"
+msgstr "Asistente para la configuración de la red"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Enviando archivos por FTP"
+#: ../../network/isdn.pm_.c:22
+msgid "External ISDN modem"
+msgstr "Módem RDSI externo"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
msgstr "Tarjeta RDSI interna"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
+msgstr "¿De qué tipo es su conexión RDSI?"
+
+#: ../../network/isdn.pm_.c:45
msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
msgstr ""
-"No hay contrlador alternativo OSS/ALSA conocido para su tarjeta de sonido (%"
-"s) que en este momento usa \"%s\""
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Title"
-msgstr "Título"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Instalar y convertir tipografías"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
-msgstr "ATENCIÓN"
+"¿Qué configuración de RDSI prefiere?\n"
+"\n"
+"* La configuración antigua utiliza isdn4net. Tiene herramientas\n"
+" poderosas, pero es algo complicada de configurar para un recién \n"
+" llegado, y no es estándar.\n"
+"* La configuración nueva es más fácil de entender, más estándar,\n"
+" pero con menos herramientas.\n"
+"\n"
+"Le recomendamos la configuración ligera (esto es, la nueva).\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
-msgstr "Instalando cargador de arranque"
+#: ../../network/isdn.pm_.c:54
+msgid "New configuration (isdn-light)"
+msgstr "Configuración nueva (isdn-light)"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "replay"
-msgstr "reproducir"
+#: ../../network/isdn.pm_.c:54
+msgid "Old configuration (isdn4net)"
+msgstr "Configuración antigua (isdn4net)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
-msgstr "detectada %s"
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "Configuración de RDSI"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/isdn.pm_.c:166
msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
-"Expect es una extensión al lenguaje de scripting Tcl que permite sesiones "
-"interactivas sin la intervención del usuario."
+"Seleccione su proveedor.\n"
+" Si no está en la lista, elija No listado"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr "Islas Vírgenes (EE.UU.)"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol"
+msgstr "Protocolo de Europa"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "Archivo de respaldo incorrecto"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol (EDSS1)"
+msgstr "Protocolo de Europa (EDSS1)"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/isdn.pm_.c:181
+msgid "Protocol for the rest of the world"
+msgstr "Protocolo para el resto del mundo"
+
+#: ../../network/isdn.pm_.c:181
msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
-"Ya se ha realizado la configuración de la conexión compartida a la "
-"Internet.\n"
-"En este momento está deshabilitada.\n"
-"\n"
-"¿Qué desea hacer?"
+"Protocolo para el resto del mundo \n"
+" sin canal D (líneas alquiladas)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-"Ingrese la dirección IP y el puerto del host cuyas impresoras desea utilizar."
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
+msgstr "¿Qué protocolo desea utilizar?"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid "Pipe into command"
-msgstr "Enviar el trabajo a un comando"
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr "Se encontró la interfaz \"%s\", ¿desea utilizarla?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Algún hardware de su computadora necesita controladores \"propietarios\" "
-"para funcionar.\n"
-"Puede encontrar información sobre ellos en: %s"
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
+msgstr "¿Qué tipo de tarjeta tiene?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "Haití"
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
+msgstr "No lo sé"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "Detectando los dispositivos..."
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"Personalizado le permite especificar su propio día y hora. Las otras "
-"opciones usan run-parts en /etc/crontab."
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/isdn.pm_.c:210
msgid ""
-"Description of the fields:\n"
"\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
-"Descripción de los campos:\n"
"\n"
+"Si tiene una tarjeta ISA, los valores de la próxima pantalla deberían ser "
+"correctos.\n"
+"\n"
+"Si tiene una tarjeta PCMCIA, tiene que saber la irq y la e/s de su tarjeta.\n"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Basic options"
-msgstr "Opciones básicas"
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "Abortar"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
-msgstr "el nombre de la CPU"
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
+msgstr "Continuar"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr "Aceptar mensajes de error IPv4 simulados"
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
+msgstr "¿Cuál es su tarjeta RDSI?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Refrescando datos de impresora ..."
+#: ../../network/isdn.pm_.c:239
+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 ""
+"Se ha detectado una tarjeta RDSI PCI, pero no se conoce el tipo. Por favor, "
+"seleccione una tarjeta PCI en la pantalla siguiente."
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr "Tú también debes formatear %s"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+"No se encontró tarjeta PCI RDSI. Por favor, seleccione una en la pantalla "
+"siguiente."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "Cuidado: esta operación es peligrosa."
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Seleccione el puerto serie al que está conectado su módem."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "Introduzca un disquete que contenga la selección de paquetes"
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "Opciones de llamada por módem"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server: "
-msgstr "Servidor: "
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr "Nombre de la conexión"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Alerts:"
-msgstr "Alertas de seguridad:"
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
+msgstr "Número de teléfono"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
-msgstr "Suecia"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "ID de conexión"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Usar Expect para SSH"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr "CHAP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "Polonia"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Other ports"
-msgstr "Otros puertos"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "Por script"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "Cantidad de búferes de captura para la captura con mmap"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "Por terminal"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid " - detected"
-msgstr "- detectada"
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "Nombre de dominio"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr "Controladores SMBus"
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+msgid "First DNS Server (optional)"
+msgstr "Primer servidor DNS (opcional)"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Demora de la conexión (en seg)"
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+msgid "Second DNS Server (optional)"
+msgstr "Segundo servidor DNS (opcional)"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/modem.pm_.c:95
msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-"Algunos de los primeros chips i486DX-100 no pueden volver a modo operativo "
-"sin problemas luego que se ejecuta la instrucción \"halt\""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Croatian"
-msgstr "Croata"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Use existing partition"
-msgstr "Usar la partición existente"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "No se puede contactar al sitio de réplica %s"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Ayuda/_Acerca..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Borrar directorios de los usuarios antes de restaurar."
-
-#: ../../printer/printerdrake.pm:1
+#: ../../network/modem.pm_.c:97
#, 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?"
+"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
-"Va a configurar una impresora remota. Para esto, se necesita un acceso a la "
-"red funcionando, pero aún no ha configurado su red. Si sigue sin "
-"configuración de red, no podrá utilizar la impresoara que está configurando "
-"ahora. ¿Cómo desea proceder?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "Configuración de impresora CUPS"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr "no se pueden encontrar tipografías en las particiones montadas"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
-msgstr "Bug F00F"
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Domain Name:"
-msgstr "Nombre de dominio:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Root umask"
-msgstr "Máscara de root"
-
-#: ../../any.pm:1
-#, c-format
-msgid "On Floppy"
-msgstr "En disquete"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reboot by the console user"
-msgstr "El usuario puede reiniciar desde la consola"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Do nothing"
+msgstr "pero no hay coincidencias"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore"
-msgstr "Restaurar"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Install rpm"
+msgstr "Instalar"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Server:"
-msgstr "Servidor:"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Title"
+msgstr "Tabla"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
+#: ../../network/netconnect.pm_.c:29
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-"si se pone en sí, verificar si los dispositivos de red están en modo "
-"promiscuo."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Buscando los paquetes disponibles..."
+"\n"
+"Puede desconectarse o volver a configurar su conexión."
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can reconfigure your connection."
msgstr ""
-"Por favor espere, ajustando archivos de configuración del sistema en la "
-"llave USB..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
-msgstr "Mensaje de inicio"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "Rescatar la tabla de particiones"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "Chipre"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection complete."
-msgstr "Conexión completa."
+"\n"
+"Puede volver a configurar su conexión."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "Quitar del RAID"
+#: ../../network/netconnect.pm_.c:29
+msgid "You are currently connected to internet."
+msgstr "Ahora está conectado a Internet."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
+#: ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
msgstr ""
-"Esta clave de cifrado es demasiado simple\n"
-"(tiene que tener por lo menos una longitud de %d caracteres)"
+"\n"
+"Se puede conectar a Internet o volver a configurar su conexión."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Asistentes de configuración"
+#: ../../network/netconnect.pm_.c:32
+msgid "You are not currently connected to Internet."
+msgstr "Ahora no está conectado a Internet."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ISDN connection"
-msgstr "Conexión RDSI"
+#: ../../network/netconnect.pm_.c:36
+msgid "Connect"
+msgstr "Conectar"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CDROM / DVDROM"
+#: ../../network/netconnect.pm_.c:37
+msgid "Disconnect"
+msgstr "Desconectar"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
-msgstr "primario"
+#: ../../network/netconnect.pm_.c:38
+msgid "Configure the connection"
+msgstr "Configurar la conexión"
+
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
+msgstr "Configuración y conexión a Internet"
-#: ../../printer/main.pm:1
+#: ../../network/netconnect.pm_.c:94
#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr " en servidor SMB/Windows \"%s\", compartida como \"%s\""
+msgid "We are now going to configure the %s connection."
+msgstr "Ahora vamos a configurar la conexión %s."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
+#: ../../network/netconnect.pm_.c:103
#, 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"
-"!!"
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press OK to continue."
msgstr ""
-"Este diálogo se usa para elegir los servicios que desea iniciar durante el\n"
-"arranque.\n"
"\n"
-"DrakX listará todos los servicios disponibles con la instalación corriente.\n"
-"Debe revisarlos con cuidado y quitar la marca de aquellos que no siempre\n"
-"son necesarios al arrancar.\n"
"\n"
-"Cuando se selecciona un servicio obtendrá un pequeño texto explicativo\n"
-"acerca del mismo. Sin embargo, si no está seguro si un servicio es útil o\n"
-"no, es más seguro dejar el comportamiento predeterminado.\n"
"\n"
-"!! Tenga mucho cuidado en esta etapa si pretende usar su máquina como un\n"
-"servidor: probablemente no deseará arrancar servicios que no necesita. Por\n"
-"favor recuerde que varios servicios pueden ser peligrosos si se habilitan\n"
-"en un servidor. En general, seleccione sólo aquellos servicios que\n"
-"realmente necesita. !!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niue"
-msgstr "Niue"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "Omitir"
+"Ahora vamos a configurar la conexión %s.\n"
+"\n"
+"\n"
+"Pulse siguiente para continuar."
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Activa/desactiva todas las interfaces de red configuradas para iniciarse\n"
-"en el arranque del sistema."
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr "Configuración de la red"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/netconnect.pm_.c:133
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)"
+"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 ""
-"la frecuencia de la CPU en MHz (Megahertz que en una primera aproximación se "
-"puede considerar como la cantidad de millones instrucciones que la CPU puede "
-"ejecutar por segundo)"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "important"
-msgstr "importante"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "Herramienta de administración de impresoras de Mandrake Linux"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
-msgstr "Progreso total"
+"Puesto que está realizando una instalación por red, su red ya está "
+"configurada.\n"
+"Haga clic sobre aceptar para mantener su configuración, o pulse cancelar "
+"para\n"
+"volver a configurar sus conexiones de red y a Internet.\n"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:157
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"
+"Welcome to The Network Configuration Wizard.\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."
+"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 ""
-"DrakX primero detectará cualquier dispositivo IDE presente en su\n"
-"computadora. También buscará una o más tarjetas SCSI PCI en su sistema. Si\n"
-"se encuentra una tarjeta SCSI, DrakX instalará automáticamente el\n"
-"controlador apropiado.\n"
-"\n"
-"Debido a que la detección de hardware no es a prueba de errores, DrakX\n"
-"puede no detectar sus discos rígidos. De ser así, Usted tendrá que\n"
-"especificar su hardware manualmente.\n"
-"\n"
-"Si tuviese que especificar su adaptador SCSI PCI manualmente, DrakX le\n"
-"preguntará si desea configurar opciones para el mismo. Debería permitir a\n"
-"DrakX sondear el hardware en busca de las opciones específicas de la\n"
-"tarjeta que son necesarias para inicializar el adaptador. La mayoría de las\n"
-"veces, DrakX saldrá adelante en este paso sin problema alguno.\n"
+"Bienvenido al asistente para la configuración de la red\n"
"\n"
-"Si DrakX no puede sondear las opciones para determinar automáticamente qué\n"
-"parámetros debe pasar al hardware, Usted deberá configurar manualmente el\n"
-"controlador."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr "Aruba"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "Usuarios"
+"Estamos a punto de configurar su conexión de red/Internet.\n"
+"Si no desea usar la detección automática, desmarque la casilla.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Preparando el cargador de arranque"
+#: ../../network/netconnect.pm_.c:163
+msgid "Choose the profile to configure"
+msgstr "Elija el perfil a configurar"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
-"Ingrese la información de su usuario, la contraseña se utilizará para el "
-"protector de pantalla"
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
+msgstr "Usar detección automática"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Pasarela de red (ej %s)"
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
+msgstr "Modo experto"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
-msgstr "Las contraseñas no coinciden"
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
+msgstr "Detectando los dispositivos..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Ejemplos de IP correctas:\n"
+#: ../../network/netconnect.pm_.c:214
+msgid "Normal modem connection"
+msgstr "Conexión normal por módem"
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm_.c:214
#, c-format
-msgid "Please choose the media for backup."
-msgstr "Por favor, elija el soporte para la copia de respaldo."
+msgid "detected on port %s"
+msgstr "detectada en el puerto %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Frecuencia (MHz)"
+#: ../../network/netconnect.pm_.c:215
+#, fuzzy
+msgid "Winmodem connection"
+msgstr "Conexión normal por módem"
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Para utilizar esta selección de paquetes salvada, arranque la instalación "
-"con \"linux defcfg=floppy\""
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "detected"
+msgstr "detectada %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of the processor"
-msgstr "el número del procesador"
+#: ../../network/netconnect.pm_.c:216
+msgid "ISDN connection"
+msgstr "Conexión RDSI"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Reloj interno puesto a GMT"
+msgid "detected %s"
+msgstr "detectada %s"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "¿Desea iniciar una configuración nueva?"
+#: ../../network/netconnect.pm_.c:217
+msgid "ADSL connection"
+msgstr "Conexión ADSL"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Give a file name"
-msgstr "Indique el nombre de un archivo"
+#: ../../network/netconnect.pm_.c:218
+msgid "Cable connection"
+msgstr "Conexión por cable"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Por favor, elija el puerto al que está conectado su impresora."
+#: ../../network/netconnect.pm_.c:218
+msgid "cable connection detected"
+msgstr "detectada conexión por cable"
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "Cambie el CD-ROM"
+#: ../../network/netconnect.pm_.c:219
+msgid "LAN connection"
+msgstr "Conexión a la red local"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "Paraguay"
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
+msgstr "tarjeta(s) de red detectada(s)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "La configuración está completa, ¿desea aplicar los ajustes?"
+#: ../../network/netconnect.pm_.c:222
+msgid "Choose the connection you want to configure"
+msgstr "Elija la conexión que desea configurar"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
+#: ../../network/netconnect.pm_.c:246
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
-"Usar respaldos incrementales/diferenciales (no reemplazar respaldos "
-"antiguos)"
+"Ha configurado múltiples formas de conectarse a Internet.\n"
+"Seleccione la que quiere utilizar.\n"
+"\n"
-#: ../../standalone/drakTermServ:1
-#, 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:"
-msgstr ""
-" - Mantener /etc/dhcp.conf:\n"
-" \t\tPara arrancar los clientes desde la red, cada cliente necesita una "
-"entrada dhcpd.conf asignando una dirección IP\n"
-" \t\ty las imágenes de arranque para la máquina. drakTermServ ayuda a "
-"crear/quitar estas entradas.\n"
-"\t\t\t\n"
-" \t\t(Las tarjetas PCI pueden omitir la imagen - etherboot pedirá la "
-"imagen correcta. También\n"
-" \t\tdebería considerar que cuando etherboot busca las imágenes, espera "
-"nombres como\n"
-" \t\tboot-3c59x.nbi, en vez de boot-3c59x.2.4.19-16mdk.nbi)\n"
-"\t\t\t\n"
-" \t\tUna entrada típica de dhcpd.conf para soportar un cliente sin "
-"disco luce así:"
+#: ../../network/netconnect.pm_.c:247
+msgid "Internet connection"
+msgstr "Conexión a Internet"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr "No hay un controlador conocido para su tarjeta de sonido (%s)"
+#: ../../network/netconnect.pm_.c:253
+msgid "Do you want to start the connection at boot?"
+msgstr "¿Desea iniciar su conexión al arrancar?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "force"
-msgstr "forzar"
+#: ../../network/netconnect.pm_.c:267
+msgid "Network configuration"
+msgstr "Configuración de la red"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Exit"
-msgstr "Salir"
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
+msgstr "La red necesita ser reiniciada"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/netconnect.pm_.c:272
#, c-format
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
msgstr ""
-"NOTA: Dependiendo del modelo de la impresora y del sistema de impresión, se "
-"instalarán hasta %d MB de software adicional."
+"Ocurrió un problema mientras se reiniciaba la red: \n"
+"\n"
+"%s"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../network/netconnect.pm_.c:282
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
-"No tiene configurada ninguna interfaz.\n"
-"Configure la primera haciendo clic sobre 'Configurar'"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "Estonio"
+"Felicidades, la configuración de la red y de Internet ha terminado.\n"
+"\n"
+"Ahora se aplicará la configuración a su sistema.\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:286
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
-"Apache es un servidor de páginas web. Se usa para servir archivos HTML y "
-"programas CGI."
+"Después de esto, se recomienda que reinicie su entorno X\n"
+"para evitar el problema del cambio del nombre de la máquina."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/netconnect.pm_.c:287
msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
+"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 ""
-"Ingrese el nombre del dispositivo de\n"
-" su grabadora de CD, ej: 0,1,0"
+"Ocurrieron problemas durante la configuración.\n"
+"Verifique su conexión con net_monitor o mcc. Si su conexión no funciona, "
+"puede que desee volver a iniciar la configuración"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ALL"
-msgstr "TODO"
+#: ../../network/network.pm_.c:278
+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 ""
+"ADVERTENCIA: Previamente se ha configurado este dispositivo para conectarse "
+"con Internet.\n"
+"Simplemente acepte para mantener la configuración del dispositivo.\n"
+"Al modificar los campos de abajo se ignorará esta configuración."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Añadir/Quitar clientes"
+#: ../../network/network.pm_.c:283
+msgid ""
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
+msgstr ""
+"Por favor, introduzca la dirección IP de esta máquina.\n"
+"Cada valor tiene que introducirse como una dirección IP en notación\n"
+"decimal con puntos (por ejemplo: 1.2.3.4)."
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "Choose the network interface"
-msgstr "Elija la interfaz de red"
+msgid "Configuring network device %s"
+msgstr "Configurando el dispositivo de red %s"
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../network/network.pm_.c:294
#, c-format
-msgid "Unknown Model"
-msgstr "Modelo desconocido"
+msgid " (driver %s)"
+msgstr " (controlador %s)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
-msgstr "Grabadoras de CD/DVD"
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "Dirección IP"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Partición predeterminada de arranque\n"
-" (para arranque de MS-DOS, no para lilo)\n"
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr "Máscara de red"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Permitir a \"%s\" leer el archivo"
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image"
-msgstr "elija imagen"
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "Dirección IP automática"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "¡Se detectó la configuración del cortafuegos!"
+#: ../../network/network.pm_.c:299
+msgid "Start at boot"
+msgstr "Iniciar al arrancar"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "Nombre de la conexión"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
+msgstr "Las direcciones IP deben estar en el formato 1.2.3.4"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../network/network.pm_.c:326
msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-"coordenada x del cuadro de texto\n"
-"en cantidad de caracteres"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/network.pm_.c:330
msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
msgstr ""
-"Es posible que no pueda instalar lilo (ya que lilo no maneja un LV en PVs "
-"múltiples)"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Updating package selection"
-msgstr "Actualizando la selección de paquetes"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "¿Dónde desea montar el archivo de loopback %s?"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../network/network.pm_.c:350
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"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 ""
-"El disquete ha sido generado satisfactoriamente.\n"
-"Ahora puede repetir su instalación."
+"Por favor, defina el nombre de su máquina.\n"
+"El nombre de su máquina debería ser un nombre de máquina clasificado "
+"completamente,\n"
+"como \"mimaquina.milabo.micompa.com\".También puede introducir la dirección "
+"IP de la pasarela si tiene una"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Usar CD/DVDROM para la copia de respaldo"
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "Servidor DNS"
-#: ../../standalone/harddrake2:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "la cantidad de botones que tiene el ratón"
+msgid "Gateway (e.g. %s)"
+msgstr "Pasarela de red (ej %s)"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
-msgstr "Reproducir"
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "Dispositivo de pasarela de red"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup other files"
-msgstr "Respaldar otros archivos"
+#: ../../network/network.pm_.c:363
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "Las direcciones del servidor DNS deberían estar en el formato 1.2.3.4"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "Ninguna disquetera disponible"
+#: ../../network/network.pm_.c:367
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Las direcciones de la pasarela deberían estar en el formato 1.2.3.4"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Los archivos de respaldo están corruptos"
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
+msgstr "Configuración de los proxies"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
-msgstr "Norma de TV:"
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "Proxy HTTP"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr "Familia de cpuid"
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "Proxy FTP"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
+msgstr "Id tarjeta de red (útil para portátiles)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: thin"
-msgstr "tipo: delgado"
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
+msgstr "El nombre del proxy debe ser http://..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lituano AZERTY (nuevo)"
+#: ../../network/network.pm_.c:388
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "La Url debería empezar con 'ftp:' o 'http:'"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
-"sí, siginfica que el coprocesador matemático tiene adjunto un vector de "
-"excepciones"
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
+msgstr "¡Se detectó la configuración del cortafuegos!"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/shorewall.pm_.c:27
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"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
-"Eligió una partición RAID en software como partición raíz (/).\n"
-"Ningún cargador de arranque es capaz de manejar esto sin una partición /"
-"boot.\n"
-"Por favor, asegúrese de añadir una partición /boot."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "Otro SO (MacOS...)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Para activar el ratón,"
+"¡Atención! Se ha detectado la configuración del cortafuegos existente. Puede "
+"que necesite algún ajuste manual tras la instalación."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "Levantando la red"
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
+msgstr "Configuración de Internet"
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr ""
-"Luego de la instalación estarán disponibles las instantáneas de pantalla en %"
-"s"
+#: ../../network/tools.pm_.c:58
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "¿Desea intentar conectarse a Internet ahora?"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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:\")."
-msgstr ""
-"Se ha detectado más de una partición Microsoft Windows en su disco rígido.\n"
-"Por favor, elija aquella a la cual desea cambiar el tamaño para poder\n"
-"instalar su sistema operativo Mandrake Linux nuevo.\n"
-"\n"
-"Cada partición se lista como sigue: \"Nombre Linux\", \"Nombre Windows\",\n"
-"\"Capacidad\".\n"
-"\n"
-"\"Nombre Linux\" está estructurado: \"tipo de disco rígido\", \"número de\n"
-"disco rígido\", \"número de partición\" (por ejemplo, \"hda1\").\n"
-"\n"
-"\"Tipo de disco rígido\" es \"hd\" si su disco es un disco IDE y \"sd\" si\n"
-"el mismo es un disco SCSI.\n"
-"\n"
-"\"Número de disco rígido\" siempre es una letra que sigue a \"hd\" o a\n"
-"\"sd\". Para los discos IDE:\n"
-"\n"
-" * \"a\" significa \"disco rígido maestro en la controladora IDE\n"
-"primaria\",\n"
-"\n"
-" * \"b\" significa \"disco rígido esclavo en la controladora IDE\n"
-"primaria\",\n"
-"\n"
-" * \"c\" significa \"disco rígido maestro en la controladora IDE\n"
-"secundaria\",\n"
-"\n"
-" * \"d\" significa \"disco rígido esclavo en la controladora IDE\n"
-"secundaria\".\n"
-"\n"
-"Para los discos SCSI, una \"a\" significa \"SCSI ID menor\", una \"b\"\n"
-"significa \"segunda SCSI ID menor\", etc.\n"
-"\n"
-"\"Nombre Windows\" es la letra de su unidad de disco bajo Windows (el\n"
-"primer disco o partición se denomina \"C:\")."
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+msgid "Testing your connection..."
+msgstr "Probando su conexión..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
-msgstr "Tanzania"
+#: ../../network/tools.pm_.c:70
+msgid "The system is now connected to Internet."
+msgstr "Ahora no está conectado a Internet."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "Calculando los límites del sistema de archivos FAT"
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
+msgstr "Por motivos de seguridad, ahora será desconectado."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/tools.pm_.c:72
msgid ""
-"\n"
-"Backup Sources: \n"
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-"\n"
-"Fuentes de respaldo: \n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "custom"
-msgstr "personalizada"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Content of the file"
-msgstr "Contenido del archivo"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
-msgstr "Autentificación LDAP"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
-msgstr "para mantener %s"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
-msgstr "Permitirme elegir cualquier controlador"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
-msgstr "transmitido"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Palestine"
-msgstr "Palestina"
+"El sistema no parece estar conectado al Internet.\n"
+"Intente volver a configurar su conexión."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
+msgstr "Configuración de la conexión"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d cadenas de caracteres separadas por comas"
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
+msgstr "Por favor, complete o verifique el campo de abajo"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " isdn"
-msgstr " RDSI"
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr "IRQ de la tarjeta"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "Aquí tiene la lista completa de teclados disponibles"
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "Memoria (DMA) de la tarjeta"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Theme name"
-msgstr "Nombre del tema"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "E/S de la tarjeta"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/A_yuda"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "E/S_0 de la tarjeta"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitrary driver"
-msgstr "Eligiendo un controlador arbitrario"
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "E/S_1 de la tarjeta"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "Islas Cook"
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
+msgstr "Su número de teléfono personal"
-#: ../../standalone/scannerdrake:1
-#, 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."
-msgstr ""
-"Aquí puede elegir si los escáneres conectados a esta máquina deberían poder "
-"accederse desde máquinas remotas y desde qué máquinas remotas."
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
+msgstr "Nombre del proveedor (ej proveedor.net)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the width of the progress bar"
-msgstr "el ancho de la barra de progreso"
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
+msgstr "Número de teléfono del proveedor"
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formateando la partición %s"
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+msgid "Provider dns 1 (optional)"
+msgstr "DNS 1 del proveedor (opcional)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hostname required"
-msgstr "Se necesita nombre del host"
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+msgid "Provider dns 2 (optional)"
+msgstr "DNS 2 del proveedor (opcional)"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "Desmarcar las tipografías instaladas"
+#: ../../network/tools.pm_.c:109
+msgid "Choose your country"
+msgstr "Elija su país"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Rueda"
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
+msgstr "Modo de marcación"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit kernel version"
-msgstr "Enviar versión del núcleo"
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+msgid "Connection speed"
+msgstr "Velocidad de la conexión"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Cancel"
-msgstr "Cancelar"
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+msgid "Connection timeout (in sec)"
+msgstr "Demora de la conexión (en seg)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for configured scanners ..."
-msgstr "Buscando escáneres configurados ..."
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
+msgstr "Usuario de la cuenta (nombre de usuario)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Videocard"
-msgstr "Tarjeta de vídeo"
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
+msgstr "Contraseña de la cuenta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tRespaldar usando tar y bzip2\n"
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
+msgstr "Reino Unido"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Remove Selected"
-msgstr "Quitar los seleccionados."
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
+msgstr "mount falló: "
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Autodetectar _módems"
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
+msgstr "La partición extendida no está disponible en esta plataforma"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove printer"
-msgstr "Borrar impresora"
+#: ../../partition_table.pm_.c:685
+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 ""
+"Tiene un hueco en la tabla de particiones, pero no se puede usar.\n"
+"La única solución es desplazar sus particiones primarias para que el hueco "
+"esté después de las particiones extendidas"
-#: ../../standalone/drakbackup:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "View Last Log"
-msgstr "Ver último registro"
+msgid "Restoring from file %s failed: %s"
+msgstr "Falló la restauración a partir del archivo %s: %s"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "¿A qué servicios desearía permitir conectarse desde la Internet?"
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
+msgstr "Archivo de respaldo incorrecto"
-#: ../../standalone/printerdrake:1
+#: ../../partition_table.pm_.c:796
#, c-format
-msgid "Connection Type"
-msgstr "Tipo de conexión"
+msgid "Error writing to file %s"
+msgstr "Error al escribir en el archivo %s"
-#: ../../standalone/logdrake:1
-#, c-format
+#: ../../partition_table/raw.pm_.c:192
msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
msgstr ""
-"Bienvenido a la herramienta de configuración del correo.\n"
-"\n"
-"Aquí podrá configurar su sistema de alerta.\n"
-
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Other"
-msgstr "Otros"
+"Está ocurriendo algo malo en su disco. \n"
+"Ha fallado una prueba para verificar la integridad de los datos. \n"
+"Esto significa que escribir cualquier cosa en el disco terminará produciendo "
+"basura al azar"
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
-msgstr "Por defecto"
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr "necesario"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Emulación del botón 2"
+#: ../../pkgs.pm_.c:27
+msgid "important"
+msgstr "importante"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter a package name."
-msgstr "Por favor, ingrese el nombre de un paquete."
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr "muy bueno"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run chkrootkit checks"
-msgstr "Ejecutar verificaciones chkrootkit"
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr "bueno"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "type1inst building"
-msgstr "Construyendo Type1"
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr "quizás"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
+msgstr "PDQ - Print, Don't Queue (Imprimir, no encolar)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image file"
-msgstr "elija un archivo de imagen"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
+msgstr "PDQ"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "X server"
-msgstr "Servidor X"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
+msgstr "LPD - Line Printer Daemon (Demonio de impresora de líneas)"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin User Name"
-msgstr "Nombre de usuario del Administrador del Dominio"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
+msgstr "LPD"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Hubo un error mientras se buscaban canales de TV"
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
+msgstr "LPRng - LPR de nueva generación"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
-msgstr "Estadounidense (internacional)"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
+msgstr "LPRng"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Not installed"
-msgstr "No instalado"
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
+msgstr ""
+"CUPS - Common Unix Printing System (Sistema de impresión común de Unix)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Ambas teclas Alt simultáneamente"
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
+msgstr "CUPS"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "LAN connection"
-msgstr "Conexión a la red local"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+msgid "Unknown Model"
+msgstr "Modelo desconocido"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/-"
-msgstr "/Archivo/-"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "Impresora local"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Italian"
-msgstr "Italiano"
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
+msgstr "Impresora remota"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Basic"
-msgstr "Básico"
+#: ../../printer/main.pm_.c:28
+msgid "Printer on remote CUPS server"
+msgstr "Impresora en un servidor CUPS remoto"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+msgid "Printer on remote lpd server"
+msgstr "Impresora en un servidor lpd remoto"
-#: ../../lang.pm:1
-#, c-format
-msgid "Honduras"
-msgstr "Honduras"
+#: ../../printer/main.pm_.c:30
+msgid "Network printer (TCP/Socket)"
+msgstr "Impresora de red (TCP/Socket)"
-#: ../../help.pm:1
-#, c-format
-msgid "pdq"
-msgstr "pdq"
+#: ../../printer/main.pm_.c:31
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "Impresora en un servidor SMB/Windows 95/98/NT"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO"
-msgstr "E/S de la tarjeta"
+#: ../../printer/main.pm_.c:32
+msgid "Printer on NetWare server"
+msgstr "Impresora en un servidor NetWare"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Samba server"
-msgstr "Servidor Samba"
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+msgid "Enter a printer device URI"
+msgstr "Introduzca el URI del dispositivo de impresión"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Esta partición especial de Bootstrap\n"
-"es para el arranque\n"
-"dual de su sistema.\n"
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
+msgstr "Filtrar el trabajo en un comando"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Por favor, elija para cada paso si desea que se repita como su instalación, "
-"o el mismo será manual"
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
+msgstr "Modelo desconocido"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"También puede decidir aquí si los escáneres en las máquinas remotas deberían "
-"estar disponibles automáticamente en esta máquina."
+#: ../../printer/main.pm_.c:317
+msgid "Local Printers"
+msgstr "Impresoras locales"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Red por FTP.\n"
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+msgid "Remote Printers"
+msgstr "Impresoras remotas"
-#: ../../security/l10n.pm:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid "Reports check result to tty"
-msgstr "Reportar resultados de verificación en tty"
+msgid " on parallel port \\/*%s"
+msgstr " en el puerto paralelo \\/*%s"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Debe introducir un dispositivo un un nombre de archivo"
+msgid ", USB printer \\/*%s"
+msgstr ", impresora USB \\/*%s"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid "/_Quit"
-msgstr "/_Salir"
+msgid ", multi-function device on parallel port \\/*%s"
+msgstr ", dispositivo multifunción en puerto paralelo \\/*%s"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Memoria de la tarjeta gráfica: %s KB\n"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
+msgstr ", dispositivo multi-función en USB"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-"it under the terms of the GNU General Public License as published by\n"
-"the Free Software Foundation; either version 2, or (at your option)\n"
-"any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful,\n"
-"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-"GNU General Public License for more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
-msgstr ""
-" Este programa es software libre; puede redistribuirlo y/o modificarlo\n"
-" bajo los términos de la Licencia Pública General GNU publicada por la\n"
-" Free Software Foundation; ya sea la versión 2, o (a su opción) cualquier\n"
-" versión posterior.\n"
-"\n"
-" Este programa se distribuye con la esperanza que será útil, pero\n"
-" SIN GARANTÃA ALGUNA; incluso sin la garantía implícita de COMERCIABILIDAD\n"
-" o ADECUABILIDAD PARA UN PROPÓSITO PARTICULAR. Consulte la\n"
-" Licencia Pública General GNU para más detalles.\n"
-"\n"
-" Debería haber recibido una copia de la Licencia Pública General GNU\n"
-" junto con este programa; de no ser así, escriba a la Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
+msgstr ", dispositivo multifunción en HP JetDirect"
-#: ../../any.pm:1
-#, c-format
-msgid "access to compilation tools"
-msgstr "acceso a herramientas de compilación"
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
+msgstr ", dispositivo multifunción"
-#: ../../standalone/net_monitor:1
+#: ../../printer/main.pm_.c:344
#, c-format
-msgid "Global statistics"
-msgstr "Estadísticas globales"
+msgid ", printing to %s"
+msgstr ", imprimiendo en %s"
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:346
#, c-format
-msgid "Please select data to restore..."
-msgstr "Por favor, seleccione los datos a restaurar..."
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr " en servidor LPD \"%s\", impresora \"%s\""
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/main.pm_.c:348
#, 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"
-msgstr ""
-"Si piensa usar aboot, no olvide dejar espacio libre (2048 sectores es\n"
-"suficiente) al principio del disco"
+msgid ", TCP/IP host \"%s\", port %s"
+msgstr ", host TCP/IP \"%s\", puerto %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid "Standard test page"
-msgstr "Página de prueba estándar"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr " en servidor SMB/Windows \"%s\", compartida como \"%s\""
-#: ../../standalone/drakclock:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid "Time Zone"
-msgstr "Huso horario"
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr " en servidor Novell \"%s\", impresora \"%s\""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid "Create"
-msgstr "Crear"
+msgid ", using command %s"
+msgstr ", usando comando %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "What"
-msgstr "Qué"
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
+msgstr "Impresora \"en crudo\" (sin controlador)"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: ../../printer/main.pm_.c:647
#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Hubo un error al ordenar los paquetes:"
+msgid "(on %s)"
+msgstr "(en %s)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "Búlgaro (BDS)"
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
+msgstr "(en esta máquina)"
-#: ../../standalone/drakTermServ:1
+#: ../../printer/main.pm_.c:674
#, c-format
-msgid "Disable Server"
-msgstr "Deshabilitar el Servidor"
+msgid "On CUPS server \"%s\""
+msgstr "En servidor CUPS \"%s\""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem encryption key"
-msgstr "Clave de cifrado del sistema de archivos"
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
+msgstr " (Por defecto)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
-msgstr "Indio (Gujarati)"
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
+msgstr "Seleccione la conexión de la impresora"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-"\t\t\tSi bien puede utilizar una cantidad de direcciones IP, en vez de "
-"configurar una entrada\n"
-"\t\t\tespecífica para cada cliente, usar un esquema de direcciones fijas "
-"facilita el uso\n"
-"\t\t\tde la funcionalidad de archivos de configuración específicos para los "
-"clientes\n"
-"\t\t\tque brinda ClusterNFS.\n"
-"\t\t\t\n"
-"\t\t\tNota: La entrada \"#type\" sólo la utiliza drakTermServ. Los clientes "
-"pueden ser \"thin\"*/\n"
-"\t\t\to 'fat'. Los clientes livianos corren la mayoría del software en el "
-"servidor por medio de xdmcp, mientras que los clientes pesados corren la "
-"mayoría\n"
-"\t\t\tdel software en la máquina cliente. Un inittab especial,%s se\n"
-"\t\t\tescribe para los clientes livianos. Los archivos de configuración del "
-"sistema xdm-config, kdmrc, y gdm.conf se modifican\n"
-"\t\t\tsi se utilizan clientes livianos, para habilitar xdmcp. Debido a que "
-"hay problemas de seguridad al utilizar xdmcp,\n"
-"\t\t\thosts.deny y hosts.allow se modifican para limitar el acceso a la "
-"subred local.\n"
-"\t\t\t\n"
-"\t\t\tNota: La entrada \"#hdw_config\" también sólo la utiliza "
-"drakTermServ. Los clientes pueden ser o bien \n"
-"\t\t\t'true' o 'false'. 'true' permite conectarse como root en la máquina "
-"cliente\n"
-"\t\t\ty configurar el hardware de sonido, ratón, y X, usando herramientas "
-"'drak'. Esto se habilita \n"
-"\t\t\tcreando archivos de configuración separados asociados con la dirección "
-"IP del cliente y creando\n"
-"\t\t\tpuntos de montaje escr./lect. para permitir que el cliente cambie el "
-"archivo. Cuando está satisfecho \n"
-"\t\t\tcon la configuración, puede quitar los privilegios de conexión como "
-"root del cliente.\n"
-"\t\t\tNota: Debe detener/iniciar el servidor luego de añadir o cambiar "
-"clientes."
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Por favor, seleccione el primer número del rango de 10 que desee\n"
-"editar, o pulse Intro para continuar.\n"
-"¿Su elección?"
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
+msgstr "¿Como está conectada la impresora?"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:30
msgid ""
"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
msgstr ""
"\n"
-"Copyright (C) 2002 por MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Save theme"
-msgstr "guardar tema"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "Brasil"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install"
-msgstr "Instalación automática"
-
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration Wizard"
-msgstr "Asistente para la configuración de la red"
+"Aquí no tiene que configurar las impresoras en los servidores CUPS remotos; "
+"las mismas se detectarán automáticamente."
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
-msgstr "Montaje automático de soportes extraíbles"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+"Detección automática de impresora (Impresoras locales, TCP/Socket, y SMB)"
-#: ../../services.pm:1
-#, c-format
-msgid "Printing"
-msgstr "Imprimiendo"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+msgid "CUPS configuration"
+msgstr "Configuración de CUPS"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save:"
-msgstr "Ingrese el directorio a guardar:"
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+msgid "Specify CUPS server"
+msgstr "Especificar servidor CUPS"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:83
msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "No se encontraron impresoras conectadas directamente a su máquina"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "Crear una partición nueva"
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
+msgstr ""
+"Para obtener acceso a las impresoras en servidores CUPS remotos en su red "
+"local nada tiene que configurar; los servidores CUPS le informan a su "
+"máquina automáticamente sobre sus impresoras. En la sección \"Impresoras "
+"remotas\" de la ventana principal de Printerdrake se listan todas las "
+"impresoras que su máquina conoce. Cuando CUPS no está en la red local, tiene "
+"que ingresar la dirección IP del servidor CUPS y, opcionalmente, el número "
+"de puerto para obtener la información de la impresora desde el servidor, de "
+"lo contrario, deje los campos en blanco."
+
+#: ../../printer/printerdrake.pm_.c:84
+msgid ""
+"\n"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
+msgstr ""
+"\n"
+"Normalmente, CUPS se configura automáticamente de acuerdo con su\n"
+"entorno de red, para que pueda acceder a las impresoras de los\n"
+"servidores CUPS de su red local. Si esto no funciona correctamente,\n"
+"desactive la \"Configuración automática de CUPS\" y edite manualmente\n"
+"su archivo /etc/cups/cupsd.conf. No olvide reiniciar CUPS tras esto\n"
+"(comando: \"service cups restart\")."
+
+#: ../../printer/printerdrake.pm_.c:88
+msgid "The IP address should look like 192.168.1.20"
+msgstr "Las direcciones IP deberían parecerse a 192.168.1.20"
+
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
+msgstr "¡El número de puerto debe ser un número entero!"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Driver:"
-msgstr "Controlador:"
+#: ../../printer/printerdrake.pm_.c:99
+msgid "CUPS server IP"
+msgstr "IP del servidor CUPS"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
-msgstr "desconocido"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
+msgstr "Puerto"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "Usar fdisk"
+#: ../../printer/printerdrake.pm_.c:102
+msgid "Automatic CUPS configuration"
+msgstr "Configuración automática de CUPS"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "¡MUEVA SU RUEDA!"
+#: ../../printer/printerdrake.pm_.c:159
+msgid "Checking your system..."
+msgstr "Verificando su sistema..."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "sent: "
-msgstr "enviado: "
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+msgid "Printerdrake"
+msgstr "Printerdrake"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "Dirección IP automática"
+#: ../../printer/printerdrake.pm_.c:167
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr "No se encontraron impresoras conectadas directamente a su máquina"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:179
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"
+"The following printers\n"
"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
msgstr ""
-"Ya está. Ahora la instalación está completa y su sistema GNU/Linux está\n"
-"listo para ser utilizado. Simplemente haga clic sobre \"%s\" para volver a\n"
-"arrancar el sistema. Lo primero que debería ver tan pronto como su máquina\n"
-"haya finalizado sus pruebas de hardware, es el menú del cargador de\n"
-"arranque dándole la opción de elegir que sistema operativo arrancar.\n"
+"Las impresoras siguientes\n"
"\n"
-"El botón \"%s\" le muestra dos botones más para:\n"
-"\n"
-" * \"%s\": para crear un disquete de instalación que realizará una\n"
-"instalación completa automáticamente, sin la asistencia de un operador,\n"
-"similar a la instalación que ha configurado recién.\n"
-"\n"
-" Note que hay dos opciones diferentes disponibles después de hacer clic\n"
-"sobre el botón:\n"
-"\n"
-" * \"%s\" . Esta es una instalación parcialmente automatizada. La etapa\n"
-"de particionado es el único procedimiento interactivo.\n"
-"\n"
-" * \"%s\" . Instalación completamente automatizada: el disco rígido se\n"
-"sobreescribe por completo, y se pierden todos los datos.\n"
-"\n"
-" Esta característica es muy útil cuando se instala una cantidad grande de\n"
-"máquinas similares. Consulte la sección Auto install (en inglés) en nuestro\n"
-"sitio web para más información.\n"
-"\n"
-" * \"%s\"(*): guarda una lista de los paquetes seleccionados en esta\n"
-"instalación. Para usar esta selección con otra instalación, inserte el\n"
-"disquete en la disquetera y comience la instalación. En el prompt, presione\n"
-"la tecla [F1], y a continuación ingrese >>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) Necesita un disquete formateado con FAT (para crear uno bajo GNU/Linux\n"
-"teclee \"mformat a:\")"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Moldova"
-msgstr "Moldavia"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuration of a remote printer"
-msgstr "Configuración de una impresora remota"
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
-msgstr ""
-"Una plataforma en línea para responder a las necesidades específicas de "
-"soporte de la compañía."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "La Url debería empezar con 'ftp:' o 'http:'"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Oriya"
-msgstr "Oriya"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Añadir una regla nueva al final"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr "Instalación satisfactoria de LiLo y temas de Bootsplash"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:180
msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
+"The following printer\n"
+"\n"
msgstr ""
-"También puede decidir aquí si las impresoras en las máquinas remotas "
-"deberían estar disponibles automáticamente en esta máquina."
+"La impresora siguiente\n"
+"\n"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:182
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''"
+"\n"
+"and one unknown printer are "
msgstr ""
-"Aquí deben ir las diferentes opciones para el módulo %s.\n"
-"Las opciones son de la forma \"nombre=valor nombre2=valor2 ...\".\n"
-"Por ejemplo, \"io=0x300 irq=7\""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "¿Salir del programa sin grabar la tabla de particiones?"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Hard Drive"
-msgstr "en disco rígido"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "Installing packages..."
-msgstr "Instalando paquetes..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dutch"
-msgstr "Holandés"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Angola"
-msgstr "Angola"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "Se deben instalar los siguientes paquetes:\n"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "service setting"
-msgstr "configuración del servicio"
-
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "Personalizada"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
-msgstr "Letonia"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr "El archivo ya lo utiliza otro dispositivo loopback, seleccione otro"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr "Sólo lectura"
+"\n"
+"y una impresora desconocida están "
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:184
#, c-format
msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
+"\n"
+"and %d unknown printers are "
msgstr ""
-"Habilitar/deshabilitar protección de engaño de resolución de nombres. Si\n"
-"\"alert\" es verdadero, también reportar a syslog."
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
-msgstr "No hay controlador conocido"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
+"\n"
+"y %d impresoras desconocidas están "
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:187
msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
+"\n"
+"are "
msgstr ""
-"Si no es una de las que desea configurar, introduzca un nombre de "
-"dispositivo o archivo en la línea de entrada"
+"\n"
+"están "
-#: ../../standalone/draksound:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:187
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"
+"is "
msgstr ""
-"No se detectó tarjeta de sonido en su máquina. Por favor, verifique que "
-"tiene conectada correctamente una tarjeta de sonido soportada por Linux.\n"
-"\n"
-"\n"
-"Puede visitar nuestra base de datos de hardware en:\n"
-"\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"está "
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Configurar la red de área local..."
+#: ../../printer/printerdrake.pm_.c:189
+msgid "directly connected to your system"
+msgstr "conectada directamente a su sistema"
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:192
msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
+"\n"
+"There is one unknown printer directly connected to your system"
msgstr ""
-"La llave USB parece tener habilitada la protección contra escritura.\n"
-"Por favor desconéctela, quite dicha protección, y vuelva a conectarla."
-
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr "Lanza el sistema de sonido en su máquina"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
-msgstr "Verificar suma de los archivos suid/sgid"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run some checks against the rpm database"
-msgstr "Correr algunas pruebas contra la base de datos de rpm"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Execute"
-msgstr "Ejecutar"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Preparando base de datos de impresoras ..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Information"
-msgstr "Información"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "No network card"
-msgstr "Sin tarjeta de red"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "3 botones"
-
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Which filesystem do you want?"
-msgstr "¿Qué sistema de archivos desea?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Malta"
-msgstr "Malta"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Detailed information"
-msgstr "Información detallada"
+"\n"
+"Hay una impresaora desconocida conectada directamente a su sistema"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:194
#, 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."
+"There are %d unknown printers directly connected to your system"
msgstr ""
-"Configuraciones predeterminadas de la impresora\n"
"\n"
-"Debería asegurarse que el tamaño de página y el tipo de tinta/modo de "
-"impresión (si corresponde) y también la configuración de hardware de las "
-"impresoras láser (memoria, unidad de dúplex, bandejas adicionales) están "
-"configurados correctamente. Note que una calidad de impresión o resolución "
-"extremadamente alta puede ser bastante lenta."
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
-msgstr "Este disquete no está formateado con FAT"
+"Hay %d impresoras desconocidas conectadas directamente a su sistema"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "Configurando la red"
+#: ../../printer/printerdrake.pm_.c:200
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr ""
+"(Debe asegurarse que todas sus impresoras están conectadas y encendidas).\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:214
msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
msgstr ""
-"Esta opción guardará los archivos que cambiaron. El comportamiento exacto "
-"depende de si se utiliza el modo incremental o diferencial."
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Graphic Card"
-msgstr "Tarjeta gráfica"
+"¿Desea habilitar la impresión en las impresoras mencionadas arriba o en las "
+"impresoras en la red local?\n"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing Windows partition"
-msgstr "Cambiando tamaño a partición Windows"
+#: ../../printer/printerdrake.pm_.c:215
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "¿Desea habilitar la impresión en las impresoras en la red local?\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "Camerún"
+#: ../../printer/printerdrake.pm_.c:217
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "¿Desea habilitar la impresión en las impresoras mencionadas arriba?\n"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "DNS 1 del proveedor (opcional)"
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr "¿Está seguro que desea configurar la impresión en esta máquina?\n"
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:219
#, c-format
msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
msgstr ""
-"Ahora puede particionar %s.\n"
-"Cuando haya terminado, no se olvide de guardar usando 'w'"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finnish)"
-msgstr "Saami (sueco/finlandés)"
+"NOTA: Dependiendo del modelo de la impresora y del sistema de impresión, se "
+"instalarán hasta %d MB de software adicional."
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Close"
-msgstr "Cerrar"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+msgid "Add a new printer"
+msgstr "Añadir una impresora nueva"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:259
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."
+"\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 ""
-"\"%s\": verifique la selección corriente del país. Si Usted no se encuentra\n"
-"en este país haga clic sobre el botón \"%s\" y elija otro. Si su país no se\n"
-"muestra en la primer lista haga clic sobre el botón \"%s\" para obtener la\n"
-"lista completa de países."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Calendar"
-msgstr "Calendario"
+"\n"
+"Bienvenido al asistente de configuración de la impresora\n"
+"\n"
+"Este asistente le permite instalar impresoras locales o remotas para usarlas "
+"desde esta máquina y también desde otras máquinas de la red.\n"
+"\n"
+"Se le solicitará la información necesaria para configurar la impresora y "
+"darle acceso a los controladores de todas las impresoras disponibles, "
+"opciones del controlador y tipos de conexión de impresoras."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:272
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+"\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"
+"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) and you 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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Restaurar entrada\n"
-"del Catálogo seleccionada"
+"\n"
+"Bienvenido al Asistente de configuración de la impresora\n"
+"\n"
+"Este asistente lo ayudará a instalar sus impresoras conectadas a esta "
+"computadora, conectadas directamente a la red o a una máquina Windows "
+"remota.\n"
+"\n"
+"Si tiene impresoras conectadas a esta máquina, por favor enciéndalas para "
+"que se puedan detectar automáticamente. También deben estar conectadas y "
+"encendidas sus impresoras de red y sus máquinas Windows.\n"
+"\n"
+"Note que la detección automática de impresoras en la red toma más tiempo que "
+"sólo detectar las impresoras conectadas a esta máquina. Entonces, desactive "
+"la detección automática de impresoras de red o en máquinas Windows cuando no "
+"la necesita.\n"
+"\n"
+"Haga clic sobre \"Siguiente\" cuando esté listo, o sobre \"Cancelar\" si "
+"Usted no desea configurar sus impresoras ahora."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
+"\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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Para utilizar impresora LPD remota, necesita proporcionar el nombre de host "
-"del servidor de impresión y el nombre de la impresora en ese servidor."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
-msgstr "Islandia"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Configuración de la Red e Internet"
-
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
-msgstr "falta \"consolehelper\""
-
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr "parado"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "Si la FPU tiene o no un vector de irq"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr "Expandir el árbol"
+"\n"
+"Bienvenido al Asistente de configuración de Impresoras\n"
+"\n"
+"Este asistente lo ayudará a instalar sus impresoras conectadas a esta "
+"computadora o conectadas directamente a esta computadora.\n"
+"\n"
+"Si tiene impresoras conectadas a esta máquina, por favor enciéndalas para "
+"que se puedan detectar automáticamnte. También deberían estar conectadas y "
+"encendidas sus impresoras de red.\n"
+"\n"
+"Haga clic sobre \"Siguiente\" cuando esté listo, o sobre \"Cancelar\" si "
+"Usted no desea configurar sus impresoras ahora."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:289
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
"\n"
-"It has been reported to oops the kernel on unloading.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+"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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"El controlador antiguo \"%s\" está en la lista negra.\n"
"\n"
-"Ha sido reportado como problemático para el núcleo al descargarlo.\n"
+"Bienvenido al Asistente de configuración de Impresoras\n"
"\n"
-"El controlador nuevo \"%s\" sólo se utilizará en el próximo arranque."
-
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Expert Mode"
-msgstr "Modo experto"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "Opciones de la impresora"
+"Este asistente lo ayudará a instalar sus impresoras conectadas a esta "
+"computadora o conectadas directamente a la red.\n"
+"\n"
+"Si tiene impresoras conectadas a esta máquina, por favor enciéndalas para "
+"que se puedan detectar automáticamnte. También deberían estar conectadas y "
+"encendidas sus impresoras de red.\n"
+"\n"
+"Note que la detección automática de las impresoras de red toma más tiempo "
+"que sólo la detección automática de las impresoras conectadas a esta "
+"máquina. Entonces, desactive la detección automática de las impresoras de "
+"red si no lo necesita.\n"
+"\n"
+"Haga clic sobre \"Siguiente\" cuando esté listo, o sobre \"Cancelar\" si "
+"Usted no desea configurar sus impresoras ahora."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Local Network adress"
-msgstr "Dirección de red local"
+#: ../../printer/printerdrake.pm_.c:307
+msgid "Auto-detect printers connected to this machine"
+msgstr "Detectar automáticamente las impresoras conectadas a esta máquina"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Respaldar sus archivos del sistema. (directorio /etc)"
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+"Detectar automáticamente las impresoras conectadas directamente a la red "
+"local"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the user umask."
-msgstr "Configurar la umask de usuario."
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+"Detectar automáticamente las impersoras conectadas a máquinas que corren "
+"Microsoft Windows"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:329
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"
+"Congratulations, your printer is now installed and configured!\n"
"\n"
-"Do you want to install the updates ?"
+"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 ""
-"Ahora tiene la oportunidad de bajar paquetes actualizados. Estos paquetes\n"
-"se han actualizad después de que se publicó la distribución. Puede que los\n"
-"mismos contengan correcciones de bugs o de seguridad.\n"
"\n"
-"Para descargar estos paquetes, necesitará tener una conexión con la\n"
-"Internet que esté funcionando.\n"
+"Enhorabuena, su impresora está instalada y configurada.\n"
"\n"
-"¿Desea instalar las actualizaciones?"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Samba Server"
-msgstr "Servidor Samba"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Televisión por cable Australian Optus"
-
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> entre elementos | <espacio> selecciona | <F12> pantalla "
-"sig. "
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet:"
-msgstr "Subred:"
+"Puede imprimir usando el comando \"Imprimir\" de su aplicación (normalmente "
+"se encuentra en el menú \"Archivo\").\n"
+"\n"
+"Si quiere añadir, borrar o renombrar una impresora, o si quiere cambiar las "
+"opciones de configuración por defecto (bandeja de entrada de papel, calidad "
+"de impresión, ...), seleccione \"Impresora\" en la sección de \"Hardware\" "
+"del Centro de control de Mandrake."
-#: ../../lang.pm:1
-#, c-format
-msgid "Zimbabwe"
-msgstr "Zimbaue"
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Printer auto-detection"
+msgstr "Detección automática de impresoras"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:385
#, c-format
-msgid "When"
-msgstr "Cuándo"
+msgid ", network printer \"%s\", port %s"
+msgstr ", impresora de red \"%s\", puerto %s"
-#: ../../network/adsl.pm:1
+#: ../../printer/printerdrake.pm_.c:387
#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
-msgstr ""
-"Necesita el microcódigo Alcatel.\n"
-"Descárguelo en\n"
-"%s\n"
-"y copie mgmt.o en /usr/share/speedtouch"
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr ", impresora \"%s\" en el servidor SMB/Windows \"%s\""
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:391
#, c-format
-msgid "Hour"
-msgstr "Hora"
+msgid "Detected %s"
+msgstr "Detectada %s"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Segundo servidor DNS (opcional)"
+msgid "Printer on parallel port \\/*%s"
+msgstr "Impresora en puerto paralelo \\/*%s"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "Finland"
-msgstr "Finlandia"
+msgid "USB printer \\/*%s"
+msgstr "Impresora USB \\/*%s"
-#: ../../Xconfig/various.pm:1
+#: ../../printer/printerdrake.pm_.c:399
#, c-format
-msgid "Color depth: %s\n"
-msgstr "Profundidad de color: %s\n"
+msgid "Network printer \"%s\", port %s"
+msgstr "Impresora de red \"%s\", puerto %s"
-#: ../../install_steps_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:401
#, c-format
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "No puede desmarcar este paquete. Debe ser actualizado"
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Impresora \"%s\" en el servidor SMB/Windows \"%s\""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "Cargando desde un disquete"
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+msgid "Local Printer"
+msgstr "Impresora local"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "Huso horario - DrakClock"
+#: ../../printer/printerdrake.pm_.c:526
+msgid ""
+"No local printer found! To manually install a printer enter a device name/"
+"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
+"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
+"printer: /dev/usb/lp1, ...)."
+msgstr ""
+"No se encontró ninguna impresora local. Para instalar una manualmente, "
+"introduzca un nombre de dispositivo/nombre de archivo en la línea de entrada "
+"(Puertos paralelos: /dev/lp0, /dev/lp1, ..., equivalen a LPT1:, LPT2, ..., "
+"1ª impresora USB: /dev/usb/lp0, 2ª impresora USB: /dev/usb/lp1, ...)."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
-msgstr "Habilitar/Deshabilitar registro de paquetes IPv4 extraños."
+#: ../../printer/printerdrake.pm_.c:530
+msgid "You must enter a device or file name!"
+msgstr "Debe introducir un dispositivo un un nombre de archivo"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr "Eslovenia"
+#: ../../printer/printerdrake.pm_.c:539
+msgid "No printer found!"
+msgstr "¡No se encontró impresora alguna!"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse test"
-msgstr "Prueba del ratón"
+#: ../../printer/printerdrake.pm_.c:548
+msgid "Available printers"
+msgstr "Impresoras disponibles"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:552
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."
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
msgstr ""
-"Drakperm se utiliza para ver archivos a utilizar para ajustar los permisos, "
-"dueños, y grupos por medio de msec.\n"
-"También puede editar sus reglas propias que sobre-escribirán las "
-"predeterminadas."
+"Se detectó automáticamente la siguiente impresora, si no es una de las que "
+"quiere configurar, introduzca en la línea de entrada un nombre de "
+"dispositivo/nombre de archivo en la línea de entrada"
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:553
msgid ""
-"Enter a user\n"
-"%s"
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
msgstr ""
-"Introduzca un usuario\n"
-"%s"
+"Aquí tiene una lista de todas las impresoras detectadas automáticamente. Por "
+"favor, seleccione la impresora que quiere configurar o introduzca un nombre "
+"de dispositivo/nombre de archivo en la línea de entrada"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:555
msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
msgstr ""
-"- Dispositivos PCI y USB : esto lista el fabricante, dispositivo, ids del "
-"subfabricante y del subdispositivo PCI/USB"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "ProgressBar color selection"
-msgstr "selección del color de la barra de progreso"
+"La siguiente impresora se detectó automáticamente. La configuración de la "
+"impresora se hará de forma totalmente automatizada. Si su impresora no se "
+"detectó correctamente o si prefiere una configuración personalizada, active "
+"la \"Configuración manual\"."
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:556
msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-"Aquí están las diferentes entradas.\n"
-"Puede añadir otras o cambiar las que ya existen."
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
+"Aquí tiene una lista de las impresoras detectadas automáticamente. Por "
+"favor, seleccione la impresora que quiera configurar. La configuración de la "
+"impresora se hará de forma totalmente automatizada. Si su impresora no se "
+"detectó correctamente o si prefiere una configuración personalizada, active "
+"la \"Configuración manual\"."
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:558
msgid ""
-"Application Name\n"
-"or Full Path:"
+"Please choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-"Nombre de aplicación\n"
-"o ruta completa:"
+"Por favor, elija el puerto donde está conectada su impresora o ingrese el "
+"nombre de un dispositivo o archivo en la línea de entrada"
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:559
+msgid "Please choose the port where your printer is connected to."
+msgstr "Por favor, elija el puerto al que está conectado su impresora."
+
+#: ../../printer/printerdrake.pm_.c:561
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."
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-"Ejecuta los comandos programados por el comando at en el momento\n"
-"especificado al lanzar at, y ejecuta comandos por lotes (batch) cuando\n"
-"la carga promedio del sistema es suficientemente baja."
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
-msgstr "Soporte para radio :"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "Instalando paquetes SANE..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
-msgstr "SILO"
+"(Puertos paralelo: /dev/lp0, /dev/lp1, ..., equivalen a LPT1:, LPT2, ..., "
+"1er impresora USB: /dev/usb/lp0, 2da impresora USB: /dev/usb/lp1, ...) "
-#: ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Change type"
-msgstr "Cambiar tipo"
+#: ../../printer/printerdrake.pm_.c:565
+msgid "You must choose/enter a printer/device!"
+msgstr "¡Debe elegir/ingresar una impresora o un dispositivo!"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", impresora USB #%s"
+#: ../../printer/printerdrake.pm_.c:584
+msgid "Manual configuration"
+msgstr "Configuración manual"
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "Instalación de SILO"
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
+msgstr "Opciones de la impresora remota lpd"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:634
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."
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
-"Felicidades, la instalación está completa.\n"
-"Extraiga el soporte de arranque y presione Intro para reiniciar.\n"
-"\n"
-"Para obtener información sobre correcciones disponibles para esta versión\n"
-"de Mandrake Linux, consulte el archivo de erratas disponible en\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Hay información disponible sobre cómo configurar su sistema en el capítulo "
-"de\n"
-"configuración tras la instalación de la guía de usuario oficial de Mandrake "
-"Linux."
+"Para utilizar impresora LPD remota, necesita proporcionar el nombre de host "
+"del servidor de impresión y el nombre de la impresora en ese servidor."
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Habilitar el Protocolo de la Hora de Red (NTP)"
+#: ../../printer/printerdrake.pm_.c:635
+msgid "Remote host name"
+msgstr "Nombre de host del servidor remoto"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "paranoid"
-msgstr "Paranoica"
+#: ../../printer/printerdrake.pm_.c:636
+msgid "Remote printer name"
+msgstr "Nombre de la impresora remota"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "No enviar correos cuando no sea necesario"
+#: ../../printer/printerdrake.pm_.c:639
+msgid "Remote host name missing!"
+msgstr "¡Falta el nombre del host remoto!"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "Sus escáneres no estarán disponibles en la red."
+#: ../../printer/printerdrake.pm_.c:643
+msgid "Remote printer name missing!"
+msgstr "¡Falta el nombre de la impresora remota!"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Enviar reporte por correo-e luego de cada respaldo a :"
+msgid "Detected model: %s %s"
+msgstr "Modelo detectado: %s %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Este comando también se utiliza en el campo \"Comando de impresión\" de los "
-"diálogos de impresión de muchas aplicaciones. Pero aquí no se da el nombre "
-"del archivo porque el nombre del archivo a imprimir lo proporciona la "
-"aplicación.\n"
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Scanning network..."
+msgstr "Buscando en la red ..."
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, c-format
-msgid "Resolution"
-msgstr "Resolución"
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ", impresora \"%s\" en el servidor \"%s\""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
#, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Impresora \"%s\" en el servidor \"%s\""
+
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "Opciones de la impresora SMB (Windows 9x/NT)"
+
+#: ../../printer/printerdrake.pm_.c:796
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 "
@@ -12481,614 +8557,315 @@ msgstr ""
"cualquier otra información del nombre de usuario, contraseña y grupo de "
"trabajo que haga falta."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:797
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+" 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 ""
-"Permitir su sólo a miembros del grupo wheel o permitir su a cualquier "
-"usuario."
+"Si se detectó automáticamente la impresora deseada, simplemente elíjala de "
+"la lista y luego agregue el nombre de usuario, contraseña, y/o grupo de "
+"trabajo si es necesario."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
-msgstr "reconfigurar"
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
+msgstr "Máquina del servidor SMB"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Su tarjeta puede admitir aceleración 3D por hardware con XFree %s,\n"
-"ADVIERTA QUE ESTO ES EXPERIMENTAL Y PUEDE COLGAR SU ORDENADOR."
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr "IP del servidor SMB"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell timeout"
-msgstr "Tiempo de espera del shell"
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr "Nombre del recurso compartido"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Xinetd Service"
-msgstr "Servicio Xinetd"
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "Grupo de trabajo"
-#: ../../any.pm:1
-#, c-format
-msgid "access to network tools"
-msgstr "acceso a herramientas de red"
+#: ../../printer/printerdrake.pm_.c:806
+msgid "Auto-detected"
+msgstr "Detectada automáticamente"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "Transferencia de Firmware para HP LaserJet 1000"
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
+msgstr "¡Debe indicar el nombre o la dirección IP del servidor!"
-#: ../advertising/03-software.pl:1
-#, 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."
-msgstr ""
-"Mandrake Linux 9.2 le permite utilizar el último software para reproducir "
-"archivos de audio, editar y organizar sus imágenes o fotos, y reproduzcir "
-"vídeos"
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
+msgstr "¡No se encuentra el nombre del recurso compartido de Samba!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Aquí está la lista de todas las impresoras detectadas automáticamente."
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
+msgstr "¡ADVERTENCIA DE SEGURIDAD!"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:827
#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"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 ""
-"Ocurrió un error al instalar aboot, \n"
-"¿desea forzar la instalación incluso si ello implicara la destrucción de la "
-"primera partición?"
+"Está a punto de configurar la impresión a una cuenta Windows con contraseña. "
+"Debido a una falla en la arquitectura del cliente Samba la contraseña se "
+"pone como texto plano en la línea de comandos del cliente Samba que se usa "
+"para transmitir el trabajo de impresión al servidor Windows. Por lo tanto, "
+"es posible que cada usuario de esta máquina vea la clave en pantalla "
+"ejecutando \"ps auxwww\".\n"
+"\n"
+"Recomendamos utilizar alguna de las alternativas siguientes (en todos los "
+"casos tiene que asegurarse que sólo las máquinas de su red local tienen "
+"acceso al servidor Windows, por ejemplo utilizando un cortafuegos):\n"
+"\n"
+"Usar una cuenta sin contraseña en su servidor Windows, por ej. la cuenta "
+"\"GUEST\" o una cuenta especial dedicada a la impresión. No quite la "
+"protección con contraseña de una cuenta personal o de la cuenta del "
+"administrador.\n"
+"\n"
+"Configure a su servidor Windows para que la impresión esté disponible bajo "
+"el protocolo LPD y configure la impresión desde esta máquina bajo el tipo de "
+"conexión \"%s\" en PrinterDrake.\n"
+"\n"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
msgid ""
-"Restore Selected\n"
-"Files"
+"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 ""
-"Restaurar los archivos\n"
-"seleccionados"
+"Configure a su servidor Windows para que la impresión esté disponible bajo "
+"el protocolo IPP y configure la impresión desde esta máquina bajo el tipo de "
+"conexión \"%s\" en PrinterDrake.\n"
+"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:840
msgid ""
-"%s exists, delete?\n"
+"Connect your printer to a Linux server and let your Windows machine(s) "
+"connect to it as a client.\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."
+"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-"%s existe, ¿borrarlo?\n"
+"Conecte su impresora a un servidor Linux y permita que su(s) máquina(s) "
+"Windows se conecten al mismo como un cliente.\n"
"\n"
-"Advertencia: Si ya realizó este proceso probablemente deba\n"
-" purgar la entrada de authorized_keys en el servidor."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Por favor, complete o verifique el campo de abajo"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "¿Desea guardar las modificaciones en /etc/fstab?"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
-msgstr "Protocolo de arranque"
+"¿Realmente desea continuar configurando esta impresora como lo está haciendo?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "Discos-LVM %s\n"
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
+msgstr "Opciones de la impresora NetWare"
-#: ../../services.pm:1
-#, c-format
-msgid "On boot"
-msgstr "Al iniciar"
+#: ../../printer/printerdrake.pm_.c:912
+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 ""
+"Para imprimir en una impresora NetWare, es necesario escribir el nombre del "
+"servidor de impresión NetWare (¡Note que puede no ser el mismo que el nombre "
+"de la máquina en TCP/IP) así como el nombre de la cola de impresión que "
+"desea usar y el nombre de usuario y la contraseña apropiados."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "Se necesita el paquete %s. ¿Desea instalarlo?"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr "Servidor de impresión"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus identification"
-msgstr "Identificación del bus"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
+msgstr "Nombre de la cola de impresión"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vatican"
-msgstr "Vaticano"
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
+msgstr "¡No se encuentra el nombre del servidor NCP!"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please make a backup of your data first"
-msgstr "Por favor, haga primero una copia de seguridad de sus datos"
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
+msgstr "¡No se encuentra la cola del servidor NCP!"
-#: ../../harddrake/data.pm:1
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, c-format
-msgid "ADSL adapters"
-msgstr "Adaptadores ADSL"
+msgid ", host \"%s\", port %s"
+msgstr ", host \"%s\", puerto %s"
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Tiene más de un disco rígido, ¿sobre cuál desea instalar Linux?"
+msgid "Host \"%s\", port %s"
+msgstr "Host \"%s\", puerto %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Eritrea"
-msgstr "Eritrea"
+#: ../../printer/printerdrake.pm_.c:1030
+msgid "TCP/Socket Printer Options"
+msgstr "Opciones de la impresora por socket/TCP"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot ISO"
-msgstr "ISO de arranque"
+#: ../../printer/printerdrake.pm_.c:1032
+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) into the input fields."
+msgstr ""
+"Elija una de las impresoras detectadas automáticamente de la lista o ingrese "
+"el nombre del host o la IP y el número de puerto opcional (9100, por "
+"defecto) en los campos."
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Firmware needed"
-msgstr "Se necesita firmware"
+#: ../../printer/printerdrake.pm_.c:1033
+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 ""
+"Para imprimir en una impresora por socket o TCP, necesita proporcionar el "
+"nombre de host o dirección IP de la impresora y, opcionalmente, el número de "
+"puerto (9100, por defecto). En servidores HP JetDirect el número de puerto "
+"por lo general es 9100, en otros servidores puede variar. Consulte el manual "
+"de su hardware."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove List"
-msgstr "Quitar lista"
+#: ../../printer/printerdrake.pm_.c:1037
+msgid "Printer host name or IP missing!"
+msgstr "¡Falta el nombre de host o la IP de la impresora!"
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
-msgstr "Un entorno personalizable"
+#: ../../printer/printerdrake.pm_.c:1059
+msgid "Printer host name or IP"
+msgstr "Nombre de host o IP de la impresora"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
-msgstr "Inuktitut"
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
+msgstr "URI del dispositivo de impresión"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1108
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."
+"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 ""
-"Algunos protocolos, como rsync, se puede configurar del lado del servidor. "
-"En vez de usar una ruta de directorio, debería usar el nombre del 'módulo' "
-"para la ruta del servicio."
+"Puede especificar directamente el URI para acceder a la impresora. El URI "
+"debe cumplir con las especificaciones Foomatic o CUPS. Recuerde que no todos "
+"los sistemas de impresión admiten URIs."
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "Marruecos"
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
+msgstr "¡Debe introducir un URI válido!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "¿Qué modelo de impresora tiene?"
+#: ../../printer/printerdrake.pm_.c:1463
+msgid ""
+"Every printer needs a name (for example \"printer\"). The Description and "
+"Location fields do not need to be filled in. They are comments for the users."
+msgstr ""
+"Cada impresora necesita un nombre (por ejemplo, \"impresora\"). No tiene por "
+"qué rellenar los campos Descripción ni Ubicación. Son comentarios para los "
+"usuarios."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add a new printer"
-msgstr "Añadir una impresora nueva"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr "Nombre de la impresora"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " All of your selected data have been "
-msgstr " Todos los datos seleccionados han sido "
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
+msgstr "Descripción"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "Nepal"
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
+msgstr "Ubicación"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Borrar"
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+msgid "Reading printer database..."
+msgstr "Leyendo base de datos de impresoras ..."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
-msgstr "cpu #"
+#: ../../printer/printerdrake.pm_.c:1482
+msgid "Preparing printer database..."
+msgstr "Preparando base de datos de impresoras ..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "chunk size"
-msgstr "tamaño de los bloques"
+#: ../../printer/printerdrake.pm_.c:1578
+msgid "Your printer model"
+msgstr "El modelo de su impresora"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:1579
#, c-format
msgid ""
-"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
+"Printerdrake has compared the model name resulting from the printer auto-"
+"detection with the models listed in its printer database to find the best "
+"match. This choice can be wrong, especially when your printer is not listed "
+"at all in the database. So check whether the choice is correct and click "
+"\"The model is correct\" if so and if not, click \"Select model manually\" "
+"so that you can choose your printer model manually on the next screen.\n"
"\n"
-"If set to NONE, no issues are allowed.\n"
+"For your printer Printerdrake has found:\n"
"\n"
-"Else only /etc/issue is allowed."
+"%s"
msgstr ""
-"Si \"TODO\" permitir que existan /etc/issue y /etc/issue.net. Si \"NINGUNO\" "
-"no se permiten \"issues\".\n"
+"Printerdrake ha comparado el modelo que resultó de la detección automática "
+"con los modelos listados en su base de datos de impresoras para encontrar la "
+"mejor coincidencia. Esta elección puede estar equivocada, especialmente si "
+"su impresora no está listada en absoluto en la base de datos. Entonces, "
+"verifique si la elección es correcta y haga clic en \"El modelo es correcto"
+"\" , caso contrario, haga clic en \"Seleccionar el modelo manualmente\" de "
+"forma tal que pueda elegir el modelo de su impresora manualmente en la "
+"pantalla siguiente.\n"
"\n"
-"De lo contrario sólo se permite /etc/issue."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr "Habilitar/Deshabilitar sulogin(8) en nivel de usuario único."
-
-#. -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
-#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "los comandos antes de iniciar, o pulse 'c' para una linea de comandos."
-
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Problemas al instalar el paquete %s"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Recibirá una alerta si la carga es mayor que este valor"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Añadir un escáner manualmente"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh"
-msgstr "Refrescar"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Reload partition table"
-msgstr "Volver a cargar la tabla de particiones"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Sí, deseo entrada automática con este (usuario, escritorio)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Selected"
-msgstr "Restaurar seleccionados"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Buscar tipografías en la lista de instaladas"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "La red local no finalizó con `.0', saliendo."
+"Para su impresora Printerdrake ha encontrado:\n"
+"\n"
+"%s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Boot"
-msgstr "Arranque"
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+msgid "The model is correct"
+msgstr "El modelo es correcto"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " and the CD is in the drive"
-msgstr "y el CD está en la unidad de CD-ROM"
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+msgid "Select model manually"
+msgstr "Seleccionar el modelo manualmente"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Tuner type:"
-msgstr "Tipo de sintonizador :"
+#: ../../printer/printerdrake.pm_.c:1606
+msgid "Printer model selection"
+msgstr "Selección del modelo de impresora"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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"
-"\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 ""
-"Ahora es el momento de seleccionar un sistema de impresión para su\n"
-"computadora. Otros sistemas operativos pueden ofrecerle uno, pero Mandrake\n"
-"Linux le ofrece dos. Cada uno de los sistemas de impresión es mejor para un\n"
-"tipo de configuración particular.\n"
-"\n"
-" * \"%s\" - \"print, don't queue\" (imprimir sin poner en cola) es la\n"
-"elección si Usted tiene una conexión directa a su impresora y desea evitar\n"
-"el pánico de los papeles trabados, y no tiene impresora en red alguna\n"
-"(\"%s\" manejará sólo casos de red muy simples y es algo lento cuando se\n"
-"utiliza con las redes) Se recomienda utilizar \"pdq\" si esta es su primer\n"
-"experiencia con GNU/Linux.\n"
-"\n"
-" * \"%s\" - \"Common Unix Printing System\" (Sistema de Impresión Común de\n"
-"Unix) es una elección excelente para imprimir en su impresora local o en\n"
-"una en la otra punta del planeta. Es simple de configurar y puede actuar\n"
-"como servidor o cliente para el sistema de impresión antiguo \"lpd\", por\n"
-"lo que es compatible con sistemas operativos más antiguos que todavía\n"
-"pueden necesitar servicios de impresión. Si bien es bastante potente, la\n"
-"configuración básica es tan simple como la de \"pdq\". Si necesita que\n"
-"emule a un servidor \"lpd\", debe activar el demonio \"cups-lpd\". \"%s\"\n"
-"incluye interfaces gráficas para imprimir o elegir las opciones de la\n"
-"impresora y para administrar la impresora.\n"
-"\n"
-"Si hace una elección ahora y más tarde encuentra que a Usted no le gusta su\n"
-"sistema de impresión, puede cambiarlo ejecutando PrinterDrake desde el\n"
-"Centro de Control de Mandrake y haciendo clic sobre el botón para expertos."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
-msgstr "La tecla \"Menú\""
+#: ../../printer/printerdrake.pm_.c:1607
+msgid "Which printer model do you have?"
+msgstr "¿Qué modelo de impresora tiene?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1608
msgid ""
"\n"
"\n"
"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
msgstr ""
"\n"
"\n"
"Por favor, verifique que Printerdrake hizo correctamente la detección "
"automática del modelo de su impresora. Busque el modelo correcto en la lista "
-"si está resaltado un modelo equivocado o \"Impresora en crudo\"."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Administrator:"
-msgstr "Administrador de seguridad:"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
-msgstr "Ajustar el timeout del shell. Un valor de cero significa sin timeout."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "Copia del firmware exitosa"
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid ""
-"You can't use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-"No puede usar otro CD-ROM cuando están corriendo los programas siguientes: \n"
-"%s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
-msgstr ""
-"si se pone en sí, verificar permisos de archivos en dirs. personales de "
-"usuarios."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"No tiene ninguna conexión a Internet.\n"
-"Primero debe crear una haciendo clic sobre 'Configurar'"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Fonts copy"
-msgstr "Copiar tipografías"
+"si el cursor está sobre un modelo equivocado o si está en \"Impresora en "
+"crudo\"."
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
-msgstr "Automatizada"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "¿Desea probar la configuración?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1611
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
-msgstr ""
-"La impresora \"%s\" se quitó satisfactoriamnete de Star Office/OpenOffice."
-"org."
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save packages selection"
-msgstr "Guardar la selección de paquetes"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Actions"
-msgstr "/_Acciones"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Remove the last item"
-msgstr "Borrar el último elemento"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Lista de usuarios a restaurar (sólo importa la fecha más reciente por "
-"usuario)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
-msgstr "¡No se crearon imágenes de arranque por red!"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "usar pptp"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Seleccione qué servicios se deben iniciar automáticamente al arrancar"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check files/directories writable by everybody"
-msgstr "Verificar archivos/directorios que todos pueden escribir"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Aprender como usar esta impresora"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configure the network now"
-msgstr "Configurar la red ahora"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Elija un sitio de réplica del cual obtener los paquetes"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"El redimensionador de tamaño de la FAT no puede gestionar su partición, \n"
-"ocurrió el error siguiente: %s"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Size: "
-msgstr "Tamaño: "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "¿A qué sector desea desplazarla?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahamas"
-msgstr "Bahamas"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Do you want to click on this button?"
-msgstr "¿Desea pulsar este botón?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Manual configuration"
-msgstr "Configuración manual"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "search"
-msgstr "buscar"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Este paquete carga la definición de teclado que se indica en\n"
-"/etc/sysconfig/keyboard. Puede ser configurado con el programa kbdconfig.\n"
-"Debe dejarse activo en la mayoría de las máquinas."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (instalación del controlador de la pantalla)"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "El nombre de la máquina Zeroconf no debe contener un ."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr "Aceptar/Rechazar eco ICMP."
-
-#: ../../services.pm:1
-#, 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."
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
-"Syslog es el servicio a través del que varios demonios van a enviar\n"
-"sus mensajes de registro, que syslog va a redirigir a varios archivos\n"
-"de registro(log). Es una buena idea ejecutar siempre syslog."
-
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown/Others"
-msgstr "Desconocido/Otros"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
-msgstr "¡No se detectó tarjeta de TV!"
-
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Options"
-msgstr "Opciones"
+"Si no se lista su impresora, elija una compatible (vea el manual de la "
+"misma) o una simliar."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "La impresora \"%s\" ahora es la impresora predeterminada."
+#: ../../printer/printerdrake.pm_.c:1697
+msgid "OKI winprinter configuration"
+msgstr "Configuración de impresora de windows OKI"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1698
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -13105,274 +8882,238 @@ msgstr ""
"impresora no funcionará. El controlador ignorará la configuración del tipo "
"de conexión."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr "generación de la CPU (ej: 8 para PentiumIII, ...)"
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+msgid "Lexmark inkjet configuration"
+msgstr "Configuración de impresora de inyección de tinta Lexmark"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detected"
-msgstr "Detectada automáticamente"
+#: ../../printer/printerdrake.pm_.c:1719
+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 ""
+"Los controladores de impresión de inkjet que proporciona Lexmark sólo "
+"admiten impresoras locales, no impresoras en máquinas remotas o servidores "
+"de impresión. Por favor, conecte su impresora a un puerto local o "
+"configúrelo en la máquina a la que está conectada."
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1746
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)."
+"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 ""
-"Está a punto de configurar su computadora para instalar un servidor PXE como "
-"servidor DHCP\n"
-"y un servidor TFTP para construir un servidor de instalación.\n"
-"Con esa característica, otras computadoras en su red local se podrán "
-"instalar utilizando esta computadora como fuente.\n"
-"\n"
-"Debe asegurarse que ha configurado su acceso a la Red/Internet utilizando "
-"drakconnect antes de proceder.\n"
-"\n"
-"Nota: necesita un adaptador de red dedicado para configurar una red de área "
-"local (LAN)."
+"Para poder imprimir con su impresora de inyección de tinta Lexmark y esta "
+"configuración, necesita los controladores de impresoras de inyección de "
+"tinta proporcionados por Lexmark (http://www.lexmark.com/). Haga clic en el "
+"vínculo \"Drivers\". Luego, seleccione su modelo y posteriormente \"Linux\" "
+"como sistema operativo. Los controladores vienen vienen como paquetes RPM o "
+"como scripts del shell con instalación gráfica interactiva. No necesita "
+"hacer esta configuración con las interfaces gráficas. Cancele directamente "
+"tras el acuerdo de licencia. Luego imprima las páginas de alineación del "
+"cabezal de impresión con \"lexmarkmaintain\" y ajuste la configuración de la "
+"alineación de la cabeza con este programa."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr "Impresora láser GDI usando el formato Zenographics ZJ-Stream"
+
+#: ../../printer/printerdrake.pm_.c:1750
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"
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\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"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
"\n"
-"It also provides a much higher API than OSS.\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\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"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-"OSS (Open Sound System) fue el primer API de sonido. Es un API de sonido "
-"independiente del sistema operativo (está disponible en la mayoría de los "
-"sistemas UNIX(tm)) pero es un API muy básico y limitado.\n"
-"Es más, todos los controladores OSS reinventan la rueda.\n"
+"Su impresora pertenece al grupo de impresoras láser GDI (winprinters) "
+"vendidas por fabricantes diferentes que utilizan el formato raster "
+"Zenographics ZJ-stream para los datos enviados a la impresora. El "
+"controlador para estas impresoras todavía está en una etapa muy temprana de "
+"desarrollo y, en consecuencia puede no funcionar correctamente en todos los "
+"casos. En especial, es posible que la impresora sólo funcione cuando Usted "
+"elige el tamaño de papel A4.\n"
"\n"
-"ALSA (Advanced Linux Sound Architecture) es una arquitectura modular que\n"
-"soporta un amplio rango de tarjetas ISA, USB y PCI.\n"
+"Algunas de estas impresoras, como la HP LaserJet 1000, para la cual fue "
+"creado este controlador, necesitan que se les cargue el firmware luego que "
+"se encienden. En el caso de la HP LaserJet 1000 Usted tiene que buscar en el "
+"CD de controladores Windows o en su partición Windows, el archivo \"sihp1000."
+"img\" y subir el archivo a la impresora con alguno de los comandos "
+"siguientes:\n"
"\n"
-"También brinda un API de más alto nivel que OSS.\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
"\n"
-"Para utilizar ALSA, uno puede utilizar:\n"
-"- el API antiguo de compatibilidad OSS\n"
-"- el API nuevo de ALSA que brinda muchas características mejoradas pero "
-"necesita del uso de la bilbioteca ALSA.\n"
+"El primer comando se puede realizar como usuario no privilegiado, el segundo "
+"se debe realizar como root. Luego de hacer esto puede imprimir normalmente.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1972
msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"¡No hay 1MB de espacio para bootstrap! La instalación continuará, pero para "
-"arrancar su sistema, necesitará crear la partición bootstrap en DiskDrake"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
+"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 ""
-"Por favor, elija la impresora que desea configurar o ingrese el nombre de un "
-"dispositivo o archivo en la línea de entrada"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
-msgstr "Rechazar"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
-msgstr "LOCAL"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
-msgstr "HFS"
+"Configuraciones predeterminadas de la impresora\n"
+"\n"
+"Debería asegurarse que el tamaño de página y el tipo de tinta/modo de "
+"impresión (si corresponde) y también la configuración de hardware de las "
+"impresoras láser (memoria, unidad de dúplex, bandejas adicionales) están "
+"configurados correctamente. Note que una calidad de impresión o resolución "
+"extremadamente alta puede ser bastante lenta."
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake lanza una prueba del hardware, y opcionalmente configura\n"
-"el hardware nuevo/cambiado."
+msgid "Option %s must be an integer number!"
+msgstr "¡La opción %s debe ser un número entero!"
-#: ../../fs.pm:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Creando y formateando el archivo %s"
+msgid "Option %s must be a number!"
+msgstr "¡La opción %s debe ser un número!"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:1989
#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
-msgstr "si se pone en sí, verificar adiciones/remociones de archivos sgid."
+msgid "Option %s out of range!"
+msgstr "¡La opción %s está fuera de rango"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2028
#, 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"
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
-"La HP LaserJet 1000 necesita que se transfiera su firmware luego de "
-"encenderla. Descargue el paquete de controladores Windows desde el sitio web "
-"de HP (el firmware del CD de la impresora no funciona) y extraiga el archivo "
-"del firmware descomprimiendo el archivo auto-extraíble .exe con el "
-"utilitario unzip y busque el archivo sihp1000.img. Copie este archivo en el "
-"directorio /etc/printer. Allí el lo encontrará automáticamente el script que "
-"lo transfiere y lo transferirá cada vez que se conecte y encienda la "
-"impresora.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "Elegir un LVM existente al que añadir"
+"¿Quiere configurar esta impresora (\"%s\")\n"
+"como la impresora predeterminada?"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "xfs restart"
-msgstr "Reiniciar XFS"
+#: ../../printer/printerdrake.pm_.c:2051
+msgid "Test pages"
+msgstr "Páginas de prueba"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2052
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"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 ""
-"La impresora \"%s\" ya existe,\n"
-"¿realmente desea sobre-escribir la configuración de la misma?"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Usar los escáneres en los hosts:"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
-msgstr "Deseleccionar todas."
-
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "no hay particiones disponibles"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Management \n"
-msgstr "Administración de impresoras \n"
+"Por favor, seleccione las páginas de prueba que quiere imprimir.\n"
+"Nota: la página de prueba de foto puede tardar mucho tiempo en ser impresa e "
+"incluso en impresoras láser con muy poca memoria puede que no salga. En la "
+"mayoría de los casos, basta con imprimir la página de prueba estándar."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Nombres de dominio"
+#: ../../printer/printerdrake.pm_.c:2056
+msgid "No test pages"
+msgstr "No hay páginas de prueba"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
-msgstr "Clave de cifrado (otra vez)"
+#: ../../printer/printerdrake.pm_.c:2057
+msgid "Print"
+msgstr "Imprimir"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
-msgstr "¡No se encuentra el nombre del recurso compartido de Samba!"
+#: ../../printer/printerdrake.pm_.c:2114
+msgid "Standard test page"
+msgstr "Página de prueba estándar"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
-msgstr "Instalación de True Type realizada"
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
+msgstr "Página de prueba alternativa (Letter)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detection in progress"
-msgstr "Detección en progreso"
+#: ../../printer/printerdrake.pm_.c:2120
+msgid "Alternative test page (A4)"
+msgstr "Página de prueba alternativa (A4)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Construir el núcleo completo -->"
+#: ../../printer/printerdrake.pm_.c:2122
+msgid "Photo test page"
+msgstr "Página de prueba de foto"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "modem"
-msgstr "módem"
+#: ../../printer/printerdrake.pm_.c:2126
+msgid "Do not print any test page"
+msgstr "No imprimir ninguna página de prueba"
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "Bienvenido a %s"
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
+msgstr "Imprimir la(s) página(s) de prueba..."
-#: ../../standalone/drakhelp:1
+#: ../../printer/printerdrake.pm_.c:2159
#, 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"
+"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"
-"Usage: \n"
msgstr ""
-"drakhelp 0.1\n"
-"Copyright (C) 2003 MandrakeSoft.\n"
-"Esto es software libre y puede redistribuirse bajo los términos de la GNU "
-"GPL.\n"
+"La(s) página(s) de prueba se enviaron a la impresora.\n"
+"Puede que pase algo de tiempo antes de que comience la impresión.\n"
+"Estado de la impresión:\n"
+"%s\n"
"\n"
-"Uso:\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Por favor, inserte el disquete de módulos actualizados en la unidad %s"
+#: ../../printer/printerdrake.pm_.c:2163
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+msgstr ""
+"La(s) página(s) de prueba se enviaron al demonio de impresión.\n"
+"Puede que pase algo de tiempo antes de que comience la impresión.\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
-msgstr "Bootsplash"
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
+msgstr "¿Funcionó adecuadamente?"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+msgid "Raw printer"
+msgstr "Impresora en crudo"
+
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
+"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 ""
-"La siguiente impresora\n"
-"\n"
-"%s%s\n"
-"está conectada directamente a su sistema"
+"Para imprimir un archivo desde la línea de comando (ventana de terminal) "
+"utilice el comando \"%s <archivo>\" o una herramienta de impresión gráfica: "
+"\"xpp <archivo>\" o \"kprinter <archivo>\". Las herramientas gráficas le "
+"permiten seleccionar la impresora y modificar las opciones de configuración "
+"fácilmente.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Compartir impresoras en hosts/redes: "
+#: ../../printer/printerdrake.pm_.c:2218
+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 ""
+"Estos comando también se utilizan en el campo \"Comando de impresión\" de "
+"los diálogos de impresión de muchas aplicaciones, pero aquí no se indica el "
+"nombre del archivo porque el archivo a imprimir lo proporciona la "
+"aplicación.\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, c-format
msgid ""
"\n"
@@ -13386,7892 +9127,6004 @@ msgstr ""
"configuraciones deseadas a la línea de comando, por ejemplo \"%s <archivo>"
"\". "
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "DrakClock"
-msgstr "DrakClock"
-
-#: ../../modules/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
#, 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."
+"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\n"
+"\n"
msgstr ""
-"En algunos casos, el controlador de %s necesita información extra\n"
-"para funcionar correctamente, aunque normalmente funcione sin ella.\n"
-"¿Desea especificar información extra para el controlador o dejar que el "
-"mismo\n"
-"pruebe su equipo y encuentre la información que necesita? A veces,\n"
-"el probar el equipo puede provocar que éste se cuelgue, pero no debería\n"
-"causar ningún daño."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "No es el CD correcto. El disco está etiquetado %s."
+"Para conocer las opciones disponibles para la impresora corriente lea la "
+"lista que se muestra debajo o haga clic sobre el botón \"Imprimir lista de "
+"opciones\".%s%s\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2228
msgid ""
+"Here is a list of the available printing options for the current printer:\n"
"\n"
-"- Daemon, %s via:\n"
msgstr ""
+"Aquí tiene una lista de las opciones disponibles para la impresora actual:\n"
"\n"
-"- Servidor (%s) via :\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "Cuba"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr "Octubre"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belize"
-msgstr "Belice"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Buscando impresoras nuevas..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
-msgstr " (multi-sesión)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
-msgstr "Tiempo de espera de arranque del núcleo"
-
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, 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."
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
msgstr ""
-"Su tarjeta puede admitir aceleración 3D pero sólo con XFree %s.\n"
-"XFree %s admite su tarjeta y puede tener mejor comportamiento en 2D."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Activate/Disable daily security check."
-msgstr "Activar/desactivar verificaciones diarias de seguridad."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-R.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
-msgstr "Habilitar libsafe si es que se encuentra en el sistema"
+"Para imprimir un archivo desde la línea de comando (ventana de terminal) use "
+"el comando \"%s <archivo>\".\n"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
+msgid ""
+"This command you can also use in the \"Printing command\" field of the "
+"printing dialogs of many applications. But here do not supply the file name "
+"because the file to print is provided by the application.\n"
msgstr ""
-"El asistente de particionamiento de DrakX encontró las siguientes soluciones:"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "Húngaro"
+"Este comando también se utiliza en el campo \"Comando de impresión\" de los "
+"diálogos de impresión de muchas aplicaciones. Pero aquí no se da el nombre "
+"del archivo porque el nombre del archivo a imprimir lo proporciona la "
+"aplicación.\n"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
msgstr ""
-"Seleccione su proveedor.\n"
-" Si no está en la lista, elija No listado"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Sincronización automática de hora (usando NTP)"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Usar mi partición Windows"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Server"
-msgstr "Servidor LDAP"
+"Para obtener una lista de las opciones disponibles para la impresora actual, "
+"haga clic en el botón \"Imprimir lista de opciones\"."
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:2253
#, 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."
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
msgstr ""
-"El soporte PCMCIA se usa por lo general para admitir cosas como tarjetas\n"
-"de red o módems en ordenadores portátiles. No se iniciará salvo que\n"
-"esté configurado, por lo que no es un problema tenerlo instalado\n"
-"en máquinas que no lo necesiten."
+"Para imprimir un archivo desde la línea de comando (ventana de terminal) use "
+"el comando \"%s <archivo>\" o \"%s <archivo>\".\n"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Choose your country"
-msgstr "Elija su país"
+#: ../../printer/printerdrake.pm_.c:2257
+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 ""
+"También puede utilizar el interfaz gráfico \"xpdq\" para configurar las "
+"opciones y manipular los trabajos de impresión.\n"
+"Si está usando KDE como entorno de escritorio tiene un \"botón de pánico\", "
+"un icono en su escritorio etiquetado como \"¡DETENER impresora!\", que "
+"detiene todos los trabajos de impresión inmediatamente cuando hace clic en "
+"él. Esto es útil, por ejemplo, para atascos de papel.\n"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2261
#, c-format
msgid ""
"\n"
-"- System Files:\n"
+"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
+"a particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\".\n"
msgstr ""
"\n"
-"- Archivos del sistema:\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
-msgstr "Herramientas 'standalone'"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Where"
-msgstr "Dónde"
+" Los comandos \"%s\" y \"%s\" también permiten modificar las opciones de "
+"configuración para un trabajo de impresión particular. Simplemente añada las "
+"opciones deseadas a la línea de comando, por ejemplo \"%s <archivo>\".\n"
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm_.c:2271
#, c-format
-msgid "but not matching"
-msgstr "pero no hay coincidencias"
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Tarjetas de Impresora/Escaner/Foto en \"%s\""
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm_.c:2272
#, c-format
-msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
-msgstr ""
-"Aquí puede seleccionar un controlador alternativo (OSS o ALSA) para su "
-"tarjeta de sonido (%s)"
+msgid "Printing/Scanning on \"%s\""
+msgstr "Imprimiendo/Escaneando en \"%s\""
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2274
#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Configurando tarjetas PCMCIA..."
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Acceso de tarjetas de Impresora/Foto en \"%s\""
-#: ../../common.pm:1
+#: ../../printer/printerdrake.pm_.c:2275
#, c-format
-msgid "kdesu missing"
-msgstr "no se encuentra kdesu"
+msgid "Printing on the printer \"%s\""
+msgstr "Imprimiendo en la impresora \"%s\""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s necesita un nombre de usuario...\n"
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+msgid "Close"
+msgstr "Cerrar"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
-msgstr "Clave de cifrado"
+#: ../../printer/printerdrake.pm_.c:2281
+msgid "Print option list"
+msgstr "Imprimir lista de opciones"
-#: ../../mouse.pm:1
+#: ../../printer/printerdrake.pm_.c:2301
#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+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!"
+msgstr ""
+"Su dispositivo multifunción se configuró automáticamente para poder "
+"escanear. Ahora puede escanear con \"scanimage\" (\"scanimage -d hp:%s\" "
+"para especificar el escáner si tiene más de uno) desde la línea de comandos "
+"o con las interfaces gráficas \"xscanimage\" o \"xsane\". Si está usando "
+"GIMP, también puede escanear seleccionado la entrada apropiada del menú "
+"\"Archivo\"/\"Adquirir\". Ejecute también \"man scanimage\" en la línea de "
+"comandos para obtener más información.\n"
+"\n"
+"¡No utilice \"scannerdrake\" para este dispositivo!"
-#: ../../keyboard.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2322
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."
+"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 ""
-"Esta configuración se activará luego de la instalación.\n"
-"Durante la instalación, deberá utilizar la tecla Control derecha\n"
-"para cambiar entre las distintas distribuciones de teclado."
+"Su impresora se configuró automáticamente para darle acceso a las unidades "
+"de tarjetas de fotos desde su PC. Ahora puede acceder a sus tarjetas de "
+"fotos utilizando el programa gráfico \"MtoolsFM\" (Menú: \"Aplicaciones\" -> "
+"\"Herramientas de Archivo\" -> \"Administrador de archivos MTools\") o los "
+"utilitarios \"mtools\" de línea de comandos (teclee \"man mtools\" para más "
+"información). Encontrará el sistema de archivos de la tarjeta bajo la letra "
+"de unidad \"p:\", o letras de unidad subsiguientes cuando tiene más de una "
+"impresora HP con unidades de tarjetas de fotos. En \"MtoolsFM\" puede "
+"cambiar entre las letras de unidad con el campo en la esquina superior "
+"derecha de la lista de archivos."
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "Isla Navidad"
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+msgid "Reading printer data..."
+msgstr "Leyendo los datos de la impresora ..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Automatic"
-msgstr "Automático"
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+msgid "Transfer printer configuration"
+msgstr "Transferir configuración de la impresora"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2365
#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
+msgid ""
+"You can copy the printer configuration which you have done for the spooler %"
+"s to %s, your current spooler. All the configuration data (printer name, "
+"description, location, connection type, and default option settings) is "
+"overtaken, but jobs will not be transferred.\n"
+"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-"Falló la instalación del cargador de arranque. Ocurrió el siguiente error:"
+"Puede copiar la configuración de la impresora que ha realizado para la cola %"
+"s a %s, su cola corriente. Todos los datos de configuración (nombre de la "
+"impresora, descripción, ubicación, tipo de conexión, y opciones "
+"predeterminadas) se transfieren, pero los trabajos de impresión no se "
+"transfieren.\n"
+"Debido a las siguientes razones no todas las colas se pueden transferir:\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "canal EIDE/SCSI"
+#: ../../printer/printerdrake.pm_.c:2368
+msgid ""
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
+msgstr ""
+"CUPS no soporta impresoras en servidores Novell o impresoras que envían los "
+"datos en un comando formado libremente.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Poner esta impresora como predeterminada"
+#: ../../printer/printerdrake.pm_.c:2370
+msgid ""
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
+msgstr ""
+"PDQ sólo soporta impresoras locales, impresoras LPD remotas, e impresoras "
+"Socket/TCP.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Verifique que %s es la ruta correcta"
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr "LPD y LPRng no soportan impresoras IPP.\n"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "partición %s"
+#: ../../printer/printerdrake.pm_.c:2374
+msgid ""
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
+msgstr ""
+"Además, las colas no creadas con este programa o con \"foomatic-configure\" "
+"no se pueden transferir."
-#: ../../security/level.pm:1
-#, c-format
-msgid "Paranoid"
-msgstr "Paranoica"
+#: ../../printer/printerdrake.pm_.c:2375
+msgid ""
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
+msgstr ""
+"\n"
+"Tampoco se pueden transferir las impresoras configuradas con los archivos "
+"PPD provistos por sus fabricantes o con controladores CUPS nativos."
-#: ../../any.pm:1
-#, c-format
-msgid "NIS"
-msgstr "NIS"
+#: ../../printer/printerdrake.pm_.c:2376
+msgid ""
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
+msgstr ""
+"\n"
+"Marque las impresoras que desea transferir y haga clic \n"
+"sobre \"Transferir\"."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- Borrar usuario"
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
+msgstr "No transferir impresoras"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Location on the bus"
-msgstr "Ubicación en el bus"
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
+msgstr "Transferir"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2392
#, c-format
-msgid "No printer found!"
-msgstr "¡No se encontró impresora alguna!"
+msgid ""
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
+msgstr ""
+"Ya existe una impresora denominada \"%s\" bajo %s. \n"
+"Haga clic sobre \"Transferir\" para sobre-escribirla.\n"
+"También puede ingresar un nombre nuevo o saltear esta impresora."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
-msgstr "el nombre del fabricante del dispositivo"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr ""
+"El nombre de la impresora sólo debería contener letras, números y el guión "
+"bajo"
-#: ../../help.pm:1 ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
-msgid "Erase entire disk"
-msgstr "Borrar el disco entero"
+msgid ""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
+msgstr ""
+"La impresora \"%s\" ya existe,\n"
+"¿realmente desea sobre-escribir la configuración de la misma?"
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Default)"
-msgstr " (Por defecto)"
+#: ../../printer/printerdrake.pm_.c:2413
+msgid "New printer name"
+msgstr "Nuevo nombre de la impresora"
-#: ../../standalone/drakgw:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "Automatic reconfiguration"
-msgstr "Volver a configurar automáticamente"
+msgid "Transferring %s..."
+msgstr "Transfiriendo %s ..."
-#: ../../standalone/net_monitor:1
+#: ../../printer/printerdrake.pm_.c:2427
#, c-format
-msgid "Receiving Speed:"
-msgstr "Velocidad de recepción:"
+msgid ""
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
+msgstr ""
+"Ha transferido su impresora por defecto anterior (\"%s\"), ¿Debería ser "
+"también la impresora por defecto bajo el nuevo sistema de impresión %s?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
-msgstr "Islas Turks y Caicos"
+#: ../../printer/printerdrake.pm_.c:2437
+msgid "Refreshing printer data..."
+msgstr "Refrescando datos de impresora ..."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Ip"
-msgstr "Sin IP"
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+msgid "Configuration of a remote printer"
+msgstr "Configuración de una impresora remota"
-#: ../../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
-#, c-format
-msgid "<- Previous"
-msgstr "<- Anterior"
+#: ../../printer/printerdrake.pm_.c:2446
+msgid "Starting network..."
+msgstr "Iniciando la red ..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Transfer Now"
-msgstr "Transferir ahora"
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+msgid "Configure the network now"
+msgstr "Configurar la red ahora"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password and network authentication methods"
-msgstr "Configurar contraseña de root y métodos de autenticación de red"
+#: ../../printer/printerdrake.pm_.c:2480
+msgid "Network functionality not configured"
+msgstr "Funcionalidad de red no configurada"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "Cambiar entre vista plana y ordenada por grupos"
+#: ../../printer/printerdrake.pm_.c:2481
+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 ""
+"Va a configurar una impresora remota. Para esto, se necesita un acceso a la "
+"red funcionando, pero aún no ha configurado su red. Si sigue sin "
+"configuración de red, no podrá utilizar la impresoara que está configurando "
+"ahora. ¿Cómo desea proceder?"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Themes"
-msgstr "Temas"
+#: ../../printer/printerdrake.pm_.c:2484
+msgid "Go on without configuring the network"
+msgstr "Continuar sin configurar la red"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "Opciones: %s"
+#: ../../printer/printerdrake.pm_.c:2518
+msgid ""
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
+"La configuración de la red hecha durante la instalación no se puede iniciar "
+"ahora. Por favor, verifique si la red se hace accesible tras reiniciar su "
+"sistema y corrija la configuración usando el Centro de control de Mandrake, "
+"sección \"Redes e Internet\"/\"Conexión\", y tras esto configure la "
+"impresora, también utilizando el Centro de Control de Mandrake, sección "
+"\"Hardware\"/\"Impresora\"."
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2519
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
+"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 ""
-"En este momento está usando %s como gestor de arranque.\n"
-"Haga click sobre configurar para lanzar el asistente de configuración."
+"El acceso a la red no estaba corriendo y no se puede iniciar. Por favor, "
+"verifique su configuración y su hardware. Luego, intente configurar su "
+"impresora remota de nuevo."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "Configuración de impresora de windows OKI"
+#: ../../printer/printerdrake.pm_.c:2529
+msgid "Restarting printing system..."
+msgstr "Reiniciando el sistema de impresión ..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
-msgstr "Santa Helena"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "high"
+msgstr "Alta"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Puerto paralelo #%s"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "paranoid"
+msgstr "Paranoica"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid "Security Level"
-msgstr "Nivel de seguridad"
+msgid "Installing a printing system in the %s security level"
+msgstr "Instalando un sistema de impresión en el nivel de seguridad %s"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2570
#, c-format
msgid ""
-"Some steps are not completed.\n"
+"You are about to install the printing system %s on a system running in the %"
+"s security level.\n"
"\n"
-"Do you really want to quit now?"
+"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 ""
-"Algunas de las etapas no fueron completadas.\n"
+"Va a instalar el sistema de impresión %s sobre un sistema corriendo en el "
+"nivel de seguridad %s.\n"
"\n"
-"¿Realmente desea salir ahora?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "Sudán"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "Polaco (distribución qwertz)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
-msgstr "Siria"
+"Este sistema de impresión ejecuta un demonio (proceso en segundo plano) que "
+"espera trabajos de impresión y los gestiona. Las máquinas remotas pueden "
+"acceder también a este demonio a través de la red, así que es un potencial "
+"punto de ataque. Por eso, sólo unos pocos demonios seleccionados se inician "
+"por defecto en este nivel de seguridad.\n"
+"\n"
+"¿Seguro que desea configurar la impresión para esta máquina?"
-#: ../../printer/printerdrake.pm:1
-#, 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?"
-msgstr ""
-"¿Su impresora es un dispositivo multifunción de HP o Sony (OfficeJet, PSC, "
-"LaserJet 1100/1200/1220/3200/3300 con scanner, DeskJet 450, Sony IJP-V100), "
-"una HP PhotoSmart o una HP LaserJet 2200?"
+#: ../../printer/printerdrake.pm_.c:2604
+msgid "Starting the printing system at boot time"
+msgstr "Iniciar el sistema de impresión al arrancar"
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
+#: ../../printer/printerdrake.pm_.c:2605
#, c-format
msgid ""
-"Welcome to %s the operating system chooser!\n"
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\n"
"\n"
-"Choose an operating system from the list above or\n"
-"wait %d seconds for default boot.\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 ""
-"¡Bienvenido a %s, el selector de SO de arranque!\n"
+"El sistema de impresión (%s) no se iniciará automáticamente cuando arranque "
+"la máquina.\n"
"\n"
-"Elija un sistema operativo de la lista o espere %d segundos\n"
-"para que arranque el sistema predeterminado.\n"
+"Es posible que el inicio automático se desactivó al cambiar a un nivel de "
+"seguridad mayor, porque el sistema de impresión es un potencial punto de "
+"ataques.\n"
"\n"
+"¿Desea volver a activar el inicio automático de la impresión cuando el "
+"sistema se vuelva a encender?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "Portugués"
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
+msgstr "Verificando software instalado..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
-msgstr "Nombre del archivo de loopback: "
+#: ../../printer/printerdrake.pm_.c:2630
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "Borrando %s"
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "Las direcciones del servidor DNS deberían estar en el formato 1.2.3.4"
+#: ../../printer/printerdrake.pm_.c:2636
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "Instalando paquetes..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Control key"
-msgstr "Tecla Control izquierda"
+#: ../../printer/printerdrake.pm_.c:2685
+msgid "Select Printer Spooler"
+msgstr "Seleccione sistema de impresión (spooler)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
-msgstr "Serbia"
+#: ../../printer/printerdrake.pm_.c:2686
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "¿Qué sistema de impresión (spooler) desea usar?"
-#: ../../standalone/drakxtv:1
+#: ../../printer/printerdrake.pm_.c:2720
#, c-format
-msgid "Newzealand"
-msgstr "Nueva Zelanda"
+msgid "Configuring printer \"%s\"..."
+msgstr "Configurando la impresora \"%s\" ..."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
-msgstr "Este directorio debería permanecer dentro del sistema de archivos raíz"
+#: ../../printer/printerdrake.pm_.c:2731
+msgid "Installing Foomatic..."
+msgstr "Instalando Foomatic ..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
-msgstr "a través de la red"
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr "Opciones de la impresora"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
-msgstr "Tecla CapsLock"
+#: ../../printer/printerdrake.pm_.c:2810
+msgid "Preparing Printerdrake..."
+msgstr "Preparando a Printerdrake ..."
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "Cargador de arranque"
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+msgid "Configuring applications..."
+msgstr "Configurando las aplicaciones..."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Seleccione la cantidad de memoria de su tarjeta gráfica"
+#: ../../printer/printerdrake.pm_.c:2845
+msgid "Would you like to configure printing?"
+msgstr "¿Desea configurar la impresión?"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
+msgstr "Sistema de impresión: "
+
+#: ../../printer/printerdrake.pm_.c:2915
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))."
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
-"Habilitar/deshabilitar crontab y at para usuarios.\n"
-"\n"
-"Poner los permitidos en /etc/cron y /etc/at.allow\n"
-"(ver man at(1) y crontab(1))."
+"Están configuradas las impresoras siguientes. Haga doble clic sobre una para "
+"cambiar sus parámetros; para hacerla la predeterminada; para ver información "
+"acerca de la misma o para hacer que una impresora en un servidor CUPS remoto "
+"esté disponible para Star Office/OpenOffice.org/GIMP."
-#: ../../standalone.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2916
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."
+"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 ""
-"[OPCIONES]\n"
-"Aplicación de monitoreo y conexión de Internet y redes\n"
-"\n"
-"--defaultintf interfaz : mostar esta interfaz por defecto\n"
-"--connect : conectar a la Internet si no está conectado\n"
-"--disconnect : desconectar de la Internet si está conectado\n"
-"--force : utilizado con (dis)connect: forzar (des)conexión.\n"
-"--status : devuelve 1 si está conectado, 0 en caso "
-"contrario.\n"
-"--quiet : no ser interactivo. A utilizar con (dis)connect."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
-msgstr "Disponibilidad de direcciones IP dinámicas:"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "¿nombre de LVM?"
-
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "Se quitaron algunos dispositivos en la clase de hardware \"%s\":\n"
+"Están configuradas las impresoras siguientes. Haga doble clic sobre una de "
+"ellas para modificarla, para configurarla como predeterminada, o para "
+"obtener información sobre la misma."
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "%s interfaces %s encontradas"
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
+msgstr ""
+"Refrescar la lista de impresoras (para visualizar todas las impresoras CUPS "
+"remotas)"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Install"
-msgstr "Post-instalación"
+#: ../../printer/printerdrake.pm_.c:2960
+msgid "Change the printing system"
+msgstr "Cambiar el sistema de impresión"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The internal domain name"
-msgstr "El nombre de dominio interno"
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+msgid "Normal Mode"
+msgstr "Modo normal"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ de la tarjeta"
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+msgid "Do you want to configure another printer?"
+msgstr "¿Desea configurar otra impresora?"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "logdrake"
+#: ../../printer/printerdrake.pm_.c:3211
+msgid "Modify printer configuration"
+msgstr "Modificar configuración de la impresora"
-#: ../../standalone.pm:1
+#: ../../printer/printerdrake.pm_.c:3213
#, 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."
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
-"Aplicación de importación y monitoreo de tipografías\n"
-"--windows_import : importar desde todas las particiones Windows "
-"disponibles.\n"
-"--xls_fonts : mostrar todas las tipografías que ya existen en xls\n"
-"--strong : verificación fuerte de las tipografías.\n"
-"--install : aceptar cualquier tipografía o directorio de "
-"tipografías.\n"
-"--uninstall : desinstalar cualquier tipografía o directorio de tipog.\n"
-"--replace : reemplazar las tipografías si ya existen.\n"
-"--application : 0 ninguna aplicación.\n"
-" : 1 todas las aplicaciones soportadas disponibles.\n"
-" : nombre_de_aplicación como por ej. so para staroffice\n"
-" y gs para ghostscript."
-
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr "[--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Elija la disquetera que desea usar para crear el disco de arranque"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr "LILO con menú de texto"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
-msgstr "instantáneo"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Todo (sin cortafuegos)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
-msgstr "Debe especificar una imagen del núcleo"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", dispositivo multi-función en USB"
+"Impresora %s\n"
+"¿Qué desea modificar de esta impresora?"
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Do"
-msgstr "Hacer"
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
+msgstr "¡Hacerlo!"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr ""
-"Contactando con el sitio de réplica para obtener la lista de los paquetes "
-"disponibles..."
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+msgid "Printer connection type"
+msgstr "Tipo de conexión de la impresora"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lituano AZERTY (antiguo)"
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+msgid "Printer name, description, location"
+msgstr "Nombre de la impresora, descripción, ubicación"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasileño (ABNT-2)"
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
+msgstr "Fabricante de la impresora, modelo, controlador"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
-msgstr "Dirección IP del host/red:"
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
+msgstr "Fabricante de la impresora, modelo"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-"coordenada y del ángulo superior\n"
-"izquierdo de la barra de progreso"
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
+msgstr "Poner esta impresora como predeterminada"
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System installation"
-msgstr "Instalación del sistema"
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Agregar esta impresora a Star Office/OpenOffice.org/GIMP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
-msgstr "San Vicente y las Granadinas"
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Quitar esta impresora de Star Office/OpenOffice.org/GIMP"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid reboot by the console user."
-msgstr "Permitir/Prohibir reinicio por parte del usuario de la consola."
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+msgid "Print test pages"
+msgstr "Imprimir la(s) página(s) de prueba"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Open"
-msgstr "/Archivo/_Abrir"
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+msgid "Know how to use this printer"
+msgstr "Se sabe cómo usar esta impresora"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "Ubicación del archivo auto_install.cfg"
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+msgid "Remove printer"
+msgstr "Borrar impresora"
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:3282
#, c-format
-msgid "Open Firmware Delay"
-msgstr "Demora de Open firmware"
+msgid "Removing old printer \"%s\"..."
+msgstr "Quitando la impresora antigua \"%s\" ..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
-msgstr "Hungría"
+#: ../../printer/printerdrake.pm_.c:3307
+msgid "Default printer"
+msgstr "Impresora predeterminada"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:3308
#, c-format
-msgid "New Zealand"
-msgstr "Nueva Zelanda"
+msgid "The printer \"%s\" is set as the default printer now."
+msgstr "La impresora \"%s\" ahora es la impresora predeterminada."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Color configuration"
-msgstr "Configuración del color"
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Agregando impresora a Star Office/OpenOffice.org/GIMP"
-#: ../../security/level.pm:1
+#: ../../printer/printerdrake.pm_.c:3312
#, c-format
msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Ya hay algunas restricciones, y todas las noches se corren más "
-"verificaciones automáticas."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "please choose the date to restore"
-msgstr "Por favor, elija la fecha para restaurar"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
-msgstr "Antillas Holandesas"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr "Cambiando de ext2 a ext3"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Examinar un repositorio de restauración nuevo."
+"La impresora \"%s\" se agregó satisfactoriamente a Star Office/OpenOffice."
+"org."
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3313
#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"\n"
-"Bienvenido al asistente de configuración de la impresora\n"
-"\n"
-"Este asistente le permite instalar impresoras locales o remotas para usarlas "
-"desde esta máquina y también desde otras máquinas de la red.\n"
-"\n"
-"Se le solicitará la información necesaria para configurar la impresora y "
-"darle acceso a los controladores de todas las impresoras disponibles, "
-"opciones del controlador y tipos de conexión de impresoras."
+"No se pudo agregar la impresora \"%s\" a Star Office/OpenOffice.org/GIMP."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and %d unknown printers"
-msgstr "y %d impresoras desconocidas están "
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Quitando la impresora de Star Office/OpenOffice.org/GIMP"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:3317
#, 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)"
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-"Los chips Intel Pentium fabricados primero tienen un bug en el procesador de "
-"coma flotante que no lograba la precisión deseada cuando se realizaba una "
-"división de coma flotante (FDIV)"
+"La impresora \"%s\" se quitó satisfactoriamnete de Star Office/OpenOffice."
+"org."
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-"¡Se excedió la cuota de respaldo!\n"
-"%d MB usados vs %d MB asignados."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-"No se encontró tarjeta PCI RDSI. Por favor, seleccione una en la pantalla "
-"siguiente."
-
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
-msgstr "GB"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
-msgstr "Introduzca el nombre de usuario"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
-msgstr "¿Habilitar el arranque desde CD?"
+"No se pudo quitar la impresora \"%s\" de Star Office/OpenOffice.org/GIMP."
-#: ../../../move/move.pm:1
+#: ../../printer/printerdrake.pm_.c:3325
#, c-format
-msgid "Simply reboot"
-msgstr "Simplemente reiniciar"
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "¿Seguro que quiere borrar la impresora \"%s\"?"
-#: ../../interactive/stdio.pm:1
+#: ../../printer/printerdrake.pm_.c:3329
#, c-format
-msgid " enter `void' for void entry"
-msgstr "ingrese `void' para una entrada vacía"
+msgid "Removing printer \"%s\"..."
+msgstr "Quitando la impresora \"%s\" ..."
-#: ../../standalone/drakbackup:1
+#: ../../raid.pm_.c:35
#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr "Respaldos en soportes removibles - Usar catálogo para restaurar"
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "No se puede añadir una partición al RAID md%d _ya formateado_"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
-msgstr "Enero"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
+msgstr "Falló mkraid"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password history length"
-msgstr "Longitud de historia de contraseñas"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "Falló mkraid (¿quizás no estén las herramientas de raid (raidtools)?)"
-#: ../../network/netconnect.pm:1
+#: ../../raid.pm_.c:153
#, c-format
-msgid "Winmodem connection"
-msgstr "Conexión por winmodem"
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "No hay suficientes particiones para un RAID de nivel %d\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../security/main.pm_.c:36
msgid ""
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
"\n"
-"Congratulations, your printer is now installed and configured!\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\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."
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
+"\n"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
+"Estándar: Este es el nivel estándar recomendado para una computadora que se "
+"utilizará para conectarse\n"
+"a la Internet como cliente.\n"
"\n"
-"Enhorabuena, su impresora está instalada y configurada.\n"
+"Alta: Ya hay algunas restricciones, y más verificaciones automáticas se "
+"corren cada noche.\n"
"\n"
-"Puede imprimir usando el comando \"Imprimir\" de su aplicación (normalmente "
-"se encuentra en el menú \"Archivo\").\n"
+"Más alta: La seguridad ahora es lo suficientemente alta para utilizar el "
+"sistema como un servidor que\n"
+"puede aceptar conexiones de muchos clientes. Si su máquina sólo es un "
+"cliente de la Internet,\n"
+"debería elegir un nivel más bajo.\n"
"\n"
-"Si quiere añadir, borrar o renombrar una impresora, o si quiere cambiar las "
-"opciones de configuración por defecto (bandeja de entrada de papel, calidad "
-"de impresión, ...), seleccione \"Impresora\" en la sección de \"Hardware\" "
-"del Centro de control de Mandrake."
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "¡Ahora, puede ejecutar xawtv (!bajo X Window!)!\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr ""
-"Espacio de intercambio insuficiente para completar la instalación, añada un "
-"poco más"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "%s on %s"
-msgstr "%s en %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid remote root login."
-msgstr "Permitir/Prohibir conexión remota de root."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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"
+"Paranoico: Este es similar al nivel anterior, pero el sistema está cerrado "
+"por completo y las\n"
+"características de seguridad están al máximo\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 ""
-"GNU/Linux administra la hora en GMT (\"Greenwich Mean Time\", Hora del\n"
-"Meridiano de Greenwich) y la traduce a la hora local de acuerdo al huso\n"
-"horario que Usted seleccionó. Sin embargo, es posible desactivar esto\n"
-"quitando la marca de la casilla \"%s\", lo que hará que GNU/Linux sepa que\n"
-"el reloj del sistema y el reloj de hardware están en el mismo huso horario.\n"
-"Esto es útil cuando la máquina también alberga otro sistema operativo como\n"
-"Windows.\n"
-"\n"
-"La opción \"%s\" regulará automáticamente el reloj conectándose a un\n"
-"servidor remoto de la hora en la Internet. Para que esta característica\n"
-"funcione debe tener una conexión con la Internet funcionando. En realidad,\n"
-"esta opción instala un servidor de la hora que puede ser utilizado por\n"
-"otras máquinas en su red local."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
-msgstr "¡No se puede crear archivo de registro!"
+"Administrador de seguridad: Si se activa la opción 'Alertas de seguridad', "
+"se enviarán las alertas\n"
+"de seguridad a este usuario (nombre o correo-e)"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "¿Cuál es su huso horario?"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Nivel de seguridad:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Usar archivos .backupignore"
+#: ../../security/main.pm_.c:77
+#, fuzzy, c-format
+msgid " (default value: %s)"
+msgstr " (por defecto: %s)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
-msgstr "Guinea"
+#: ../../security/main.pm_.c:113
+msgid "Security Alerts:"
+msgstr "Alertas de seguridad:"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Ahora el sistema está conectado a la Internet."
+#: ../../security/main.pm_.c:115
+msgid "Security Administrator:"
+msgstr "Administrador de seguridad:"
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Islas Georgia del Sur y Sandwich del Sur"
+#: ../../security/main.pm_.c:128
+msgid "Network Options"
+msgstr "Opciones de red"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Japón (difusión)"
+#: ../../security/main.pm_.c:128
+msgid "System Options"
+msgstr "Opciones de sistema"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
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."
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
msgstr ""
-"Monitor\n"
-"\n"
-" Normalmente el instalador puede detectar y configurar automáticamente el\n"
-"monitor conectado a su máquina. Si es incorrecto, en esta lista puede\n"
-"elegir el monitor que realmente posee."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "Mozambique"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "Icono"
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Kill those programs"
-msgstr "Terminar dichos programas"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Por favor, elija qué desea respaldar"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 colores (8 bits)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "Lectura/Escritura"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "Tamaño: %s\n"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Hostname: "
-msgstr "Nombre de la máquina: "
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a rule"
-msgstr "Añadir una regla"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Tamaño de los bloques %s\n"
-
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
-msgstr "¡Construya el futuro de Linux!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printer"
-msgstr "Impresora local"
+"Se pueden configurar las opciones siguientes para personalizar\n"
+"la seguridad de su sistema. Si necesita ayuda, haga clic sobre Ayuda.\n"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Error accediendo al disquete, no se puede montar el dispositivo %s"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
+msgstr "Verificaciones periódicas"
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr "[--file=miarchivo] [--word=mipalabra] [--explain=regexp] [--alert]"
+#: ../../security/main.pm_.c:191
+msgid "Please wait, setting security level..."
+msgstr "Por favor espere, configurando el nivel de seguridad..."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ADSL connection"
-msgstr "Conexión ADSL"
+#: ../../security/main.pm_.c:197
+msgid "Please wait, setting security options..."
+msgstr "Por favor espere, configurando las opciones de seguridad..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
-"Sin configuración, por favor haga clic sobre el Asistente o Avanzado.\n"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Error!"
-msgstr "¡Error!"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "cable connection detected"
-msgstr "detectada conexión por cable"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "Permiso denegado transfiriendo %s a %s"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Reportar un error"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
-msgstr "Dominica"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "Redimensionar"
+"Lanzar el sistema de sonido ALSA (Arquitectura avanzada de sonido de Linux)"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Resolución: %s\n"
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
+msgstr "Anacron, un planificador de comandos periódicos."
-#: ../../install2.pm:1
-#, c-format
+#: ../../services.pm_.c:21
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)"
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-"No se puede acceder a los módulos del núcleo correspondientes a su núcleo "
-"(no se encuentra el archivo %s), esto generalmente significa que su disquete "
-"de arranque no contiene un núcleo de misma versión que el soporte de "
-"instalación (haga un nuevo disquete de arranque por favor)"
+"apmd se usa para monitorizar el estado de las baterías y enviar esa\n"
+"información a syslogd. También puede usarse para apagar el equipo cuando\n"
+"la batería está casi descargada."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../services.pm_.c:23
msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+"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 ""
-"Por favor, seleccione el puerto correcto. Por ejemplo, el puerto \"COM1\"\n"
-"bajo Windows se denomina \"ttyS0\" bajo GNU/Linux."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Se van a quitar los siguientes paquetes"
-
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr "Conectar a Internet"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
-msgstr "Usar la partición existente"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "Canadiense (Quebec)"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Dispositivo del ratón: %s\n"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Volver a seleccionar tipografías correctas"
+"Ejecuta los comandos programados por el comando at en el momento\n"
+"especificado al lanzar at, y ejecuta comandos por lotes (batch) cuando\n"
+"la carga promedio del sistema es suficientemente baja."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../services.pm_.c:25
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."
+"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 ""
-"Opciones\n"
-"\n"
-" Aquí puede elegir si desea que su máquina cambie automáticamente a la\n"
-"interfaz gráfica al arrancar. Obviamente, querrá marcar \"%s\" si su\n"
-"sistema actuará como servidor, o si no tuvo éxito en la configuración de su\n"
-"pantalla."
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert Corporativo"
+"cron es un programa UNIX estándar que ejecuta programas especificados por\n"
+"el usuario periódicamente. El cron de Vixie añade varias funcionalidades al "
+"cron de Unix \n"
+"básico, incluyendo una mayor seguridad y opciones de configuración más "
+"potentes."
-#: ../../standalone.pm:1
-#, c-format
+#: ../../services.pm_.c:28
msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+"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 ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolución"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Write protection"
-msgstr "Protección contra escritura"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "You've not selected any font"
-msgstr "No seleccionó tipografía alguna"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Language"
-msgstr "Elija su idioma"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer model selection"
-msgstr "Selección del modelo de impresora"
+"GPM añade soporte del ratón para los programas Linux en modo texto, como\n"
+"el Midnight Commander. También permite operaciones de cortar-y-pegar con\n"
+"el ratón en la consola, e incluye soporte para menúes emergentes en la "
+"consola."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:31
msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
msgstr ""
-"Se perderán todos los datos de la partición %s después de cambiar su tipo"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ISDN adapters"
-msgstr "Adaptadores RDSI"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d segundos"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Inserte un disquete en blanco en la unidad %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "¡Debe introducir un URI válido!"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr "Se encontró la interfaz \"%s\", ¿desea utilizarla?"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
-msgstr "Volver a configurar la interfaz y el servidor DHCP"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound configuration"
-msgstr "Configuración de sonido"
+"HardDrake lanza una prueba del hardware, y opcionalmente configura\n"
+"el hardware nuevo/cambiado."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
-msgstr "Página de prueba de foto"
+#: ../../services.pm_.c:33
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+msgstr ""
+"Apache es un servidor de páginas web. Se usa para servir archivos HTML y "
+"programas CGI."
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Particionamiento de disco personalizado"
+#: ../../services.pm_.c:34
+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 ""
+"El demonio para el superservidor de internet (normalmente llamado inetd) "
+"inicia\n"
+"una variedad de servicios adicionales de internet según sea necesario.\n"
+"Es el responsable de iniciar varios servicios, incluyendo telnet, ftp, rsh\n"
+"y rlogin. Al desactivar inetd, se desactivan todos los servicios que "
+"dependen de él."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Ingrese nombre de la impresora y comentarios"
+#: ../../services.pm_.c:38
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
+"Lanza el filtrado de paquetes para los núcleos de Linux de la serie 2.2,\n"
+"para configurar un cortafuegos que protege a su máquina de los ataques de la "
+"red."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:40
msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
+"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 ""
-"Las siguientes impresoras\n"
-"\n"
-"%s%s\n"
-"están conectadas directamente a su sistema"
+"Este paquete carga la definición de teclado que se indica en\n"
+"/etc/sysconfig/keyboard. Puede ser configurado con el programa kbdconfig.\n"
+"Debe dejarse activo en la mayoría de las máquinas."
-#: ../../network/modem.pm:1
-#, c-format
-msgid "You don't have any winmodem"
-msgstr "No tiene winmodem alguno"
+#: ../../services.pm_.c:43
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
+msgstr ""
+"Regeneración automática de la cabecera del núcleo en /boot para\n"
+"/usr/include/linux/{autoconf,version}.h"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: %s"
-msgstr "tipo: %s"
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr "Detección y configuración automática del hardware al arrancar."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "Eslovaco (QWERTY)"
+#: ../../services.pm_.c:46
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
+msgstr ""
+"Linuxconf a veces realizará varias tareas al arrancar para\n"
+"mantener la configuración del sistema."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:48
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."
+"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 ""
-"Esto debería ser una lista separada por comas de los usuarios locales o "
-"direcciones de correo electrónico donde desea enviar los resultados del "
-"respaldo. Necesitará tener funcionando un agente de transferencia de correo "
-"en su sistema."
+"lpd es el demonio de impresión, necesario para que lpr funcione\n"
+"correctamente. Básicamente, es un servidor que coloca las tareas de\n"
+"impresión en las colas de impresión adecuadas para cada impresora."
-#: ../../standalone/draksound:1
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "¡No se detectó tarjeta de sonido!"
+#: ../../services.pm_.c:50
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
+"El servidor virtual de Linux (LVS) se usa para construir servidores de alto\n"
+"rendimiento y alta disponibilidad."
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "Puerto del ratón"
+#: ../../services.pm_.c:52
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
+msgstr ""
+"named (BIND) es un servidor de nombres de dominio (DNS) usado para convertir "
+"los nombres de máquinas en direcciones IP."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
-msgstr "Verificar cuentas no seguras"
+#: ../../services.pm_.c:53
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
+msgstr ""
+"Monta y desmonta todos los puntos de montaje de sistemas de archivos\n"
+"compartidos por medio de la red; como NFS (Network File System),\n"
+"SMB (Lan Manager/Windows) y NCP (Netware)"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../services.pm_.c:55
msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
-"Debe reiniciar el Display Manager para que los cambios tengan efecto. \n"
-"(service dm restart - en la consola)"
+"Activa/desactiva todas las interfaces de red configuradas para iniciarse\n"
+"en el arranque del sistema."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Ftp Server"
-msgstr "Servidor FTP"
+#: ../../services.pm_.c:57
+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 ""
+"NFS es un protocolo muy popular para compartir archivos en redes TCP/IP.\n"
+"Este servicio proporciona la funcionalidad de servidor NFS, que se "
+"configura\n"
+"a través del archivo /etc/exports."
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr "Uganda"
+#: ../../services.pm_.c:60
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
+msgstr ""
+"NFS es un protocolo muy popular para compartir archivos en redes TCP/IP.\n"
+"Este servicio proporciona la funcionalidad de bloqueo de archivos por NFS."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
-msgstr "Conversión de tipografías %s"
+#: ../../services.pm_.c:62
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+"Activar el bloqueo numérico automáticamente bajo la consola y\n"
+"XFree al arrancar."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "el tipo de bus sobre el que está conectado el ratón"
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr "Admitir las win-impresoras OKI 4w y compatibles."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../services.pm_.c:65
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."
+"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 ""
-"A manera de revisión, DrakX presentará un resumen de las distintas\n"
-"informaciones que tiene acerca de su sistema. Dependiendo del hardware\n"
-"instalado puede tener algunas o todas las entradas siguientes. Cada entrada\n"
-"está compuesta del elemento de configuración a configurar, seguido de un\n"
-"pequeño resumen de la configuración corriente. Haga clic sobre el botón\n"
-"\"%s\" correspondiente para cambiar eso.\n"
-"\n"
-" * \"%s\": verifique la configuración de la disposición corriente del\n"
-"teclado y cámbiela si es necesario.\n"
-"\n"
-" * \"%s\": verifique la selección corriente del país. Si Usted no se\n"
-"encuentra en este país haga clic sobre el botón \"%s\" y elija otro. Si su\n"
-"país no se muestra en la primer lista haga clic sobre el botón \"%s\" para\n"
-"obtener la lista completa de países.\n"
-"\n"
-" * \"%s\": De manera predeterminada DrakX deduce su huso horario basándose\n"
-"en el país que ha elegido. Puede hacer clic sobre el botón \"%s\" si esto\n"
-"no es correcto.\n"
-"\n"
-" * \"%s\": verifique la configuración del ratón y haga clic sobre el botón\n"
-"para cambiarla, si es necesario.\n"
-"\n"
-" * \"%s\": al hacer clic sobre el botón \"%s\" se abrirá el asistente de\n"
-"configuración de la impresora. Consulte el capítulo correspondiente de la\n"
-"\"Guía de Comienzo\" para más información sobre cómo configurar una\n"
-"impresora nueva. La interfaz presentada allí es similar a la utilizada\n"
-"durante la instalación.\n"
-"\n"
-" * \"%s\": si se detecta una tarjeta de sonido en su sistema, la misma se\n"
-"muestra aquí. Si nota que la tarjeta de sonido mostrada no es la que está\n"
-"realmente instalada en su sistema, puede hacer clic sobre el botón y elegir\n"
-"otro controlador.\n"
-"\n"
-" * \"%s\": de manera predeterminada DrakX configura su interfaz gráfica en\n"
-"\"800x600\" o \"1024x768\" de resolución. Si eso no le satisface, haga clic\n"
-"sobre \"%s\" para volver a configurar su interfaz gráfica.\n"
-"\n"
-" * \"%s\": si se detecta una tarjeta de TV en su sistema, la misma se\n"
-"muestra aquí. Si tiene una tarjeta de TV y la misma no se detecta, haga\n"
-"clic sobre \"%s\" para intentar configurarla a mano.\n"
-"\n"
-" * \"%s\": si se detecta una tarjeta RDSI en su sistema, la misma se\n"
-"muestra aquí. Puede hacer clic sobre \"%s\" para cambiar los parámetros\n"
-"asociados a la misma.\n"
-"\n"
-" * \"%s\": si desea configurar ahora el acceso a la\n"
-"Internet o a su red local ahora mismo.\n"
-"\n"
-" * \"%s\": esta entrada le ofrece volver a definir el nivel de seguridad\n"
-"como se ajustó en un paso previo ()\n"
-"\n"
-" * \"%s\": si planifica conectar su máquina a la Internet, es una buena\n"
-"idea protegerse de las intrusiones configurando un cortafuegos. Consulte la\n"
-"sección correspondiente de la \"Guía de Comienzo\" para detalles acerca de\n"
-"los ajustes del cortafuegos.\n"
-"\n"
-" * \"%s\": si desea cambiar la configuración de su cargador de arranque,\n"
-"haga clic sobre ese botón. Esto debería estar reservado para usuarios\n"
-"avanzados.\n"
-"\n"
-" * \"%s\": aquí podrá tener un control fino sobre qué servicios correrán en\n"
-"su máquina. Si planifica utilizar esta máquina como servidor es una buena\n"
-"idea revisar estos ajustes."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr "Comores"
+"El soporte PCMCIA se usa por lo general para admitir cosas como tarjetas\n"
+"de red o módems en ordenadores portátiles. No se iniciará salvo que\n"
+"esté configurado, por lo que no es un problema tenerlo instalado\n"
+"en máquinas que no lo necesiten."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "May"
-msgstr "Mayo"
+#: ../../services.pm_.c:68
+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 ""
+"El portmapper gestiona las conexiones RPC; que usan protocolos como\n"
+"NFS y NIS. El servidor portmap se debe estar ejecutando en los sistemas que "
+"actúan\n"
+"como servidores para protocolos que usan el mecanismo RPC."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yaboot mode"
-msgstr "Modo de Yaboot"
+#: ../../services.pm_.c:71
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
+msgstr ""
+"Postfix es un agente de transporte de correo (MTA), es decir el programa "
+"encargado de enviar el correo electrónico de una máquina a otra."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Ratón de 3 botones genérico"
+#: ../../services.pm_.c:72
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
+"Guarda y recupera el mecanismo de entropía del sistema; usado para la\n"
+"generación de números aleatorios de gran calidad."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
-msgstr "EEUU (cable)"
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
+msgstr ""
+"Asignar dispositivos 'crudos' a dispositivos de bloque (como las "
+"particiones\n"
+"de los discos), para usar aplicaciones como Oracle"
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../services.pm_.c:76
msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+"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 ""
-"¡No se puede volver a iniciar LiLo!\n"
-"Ejecute \"lilo\" como root en la línea de comandos para completar la "
-"instalación del tema de LiLo."
+"El demonio routed permite actualizar automáticamente las tablas de "
+"enrutamiento IP\n"
+"gracias al protocolo RIP. Mientras que RIP se usa bastante en redes "
+"pequeñas,\n"
+"para redes más complejas, se necesitan protocolos de enrutamiento más "
+"complejos."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Elija otro soporte desde el cual restaurar"
+#: ../../services.pm_.c:79
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
+msgstr ""
+"El protocolo rstat permite a los usuarios de una red recoger\n"
+"información sobre el rendimiento de cualquier máquina de dicha red."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Software Manager"
-msgstr "Administrador de software"
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"El protocolo rusers permite que los usuarios de una red identifiquen\n"
+"quien está conectado en otras máquinas que respondan."
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
-msgstr "Reenviar"
+#: ../../services.pm_.c:83
+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 ""
+"El protocolo rwho permite que los usuarios remotos obtengan una lista\n"
+"de todos los usuarios conectados a una máquina que ejecuta el demonio rwho\n"
+"(similar al finger)."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD in place - continue."
-msgstr "CD en su lugar - continuar."
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
+msgstr "Lanza el sistema de sonido en su máquina"
-#: ../../common.pm:1
-#, c-format
-msgid "KB"
-msgstr "KB"
+#: ../../services.pm_.c:86
+msgid ""
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
+msgstr ""
+"Syslog es el servicio a través del que varios demonios van a enviar\n"
+"sus mensajes de registro, que syslog va a redirigir a varios archivos\n"
+"de registro(log). Es una buena idea ejecutar siempre syslog."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Network & Internet"
-msgstr "Redes e Internet"
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr "Carga los controladores para sus dispositivos USB."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituano \"fonético\" QWERTY"
+#: ../../services.pm_.c:89
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+msgstr "Inicia el servidor de tipografías X11 (obligatorio para correr XFree)."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Net Boot Images"
-msgstr "Imágenes de arranque por la red"
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Seleccione qué servicios se deben iniciar automáticamente al arrancar"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Compartir escáneres locales"
+#: ../../services.pm_.c:127
+msgid "Printing"
+msgstr "Imprimiendo"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "Falló la prueba Plug'n Play. Por favor, elija un monitor específico"
+#: ../../services.pm_.c:128
+msgid "Internet"
+msgstr "Internet"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Detect USB key again"
-msgstr "Volver a detectar llave USB"
+#: ../../services.pm_.c:131
+msgid "File sharing"
+msgstr "Compartir archivos"
-#: ../../services.pm:1
-#, c-format
-msgid "Services and deamons"
-msgstr "Servicios y demonios"
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+msgid "System"
+msgstr "Sistema"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name missing!"
-msgstr "¡Falta el nombre del host remoto!"
+#: ../../services.pm_.c:138
+msgid "Remote Administration"
+msgstr "Administración remota"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "with /usr"
-msgstr "con /usr"
+#: ../../services.pm_.c:146
+msgid "Database Server"
+msgstr "Servidor de base de datos"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "Network"
-msgstr "Red"
+msgid "Services: %d activated for %d registered"
+msgstr "Servicios: %d activados de %d registrados"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
-"Detectar automáticamente las impersoras conectadas a máquinas que corren "
-"Microsoft Windows"
+#: ../../services.pm_.c:191
+msgid "Services"
+msgstr "Servicios"
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "Esta contraseña es demasiado sencilla"
+#: ../../services.pm_.c:203
+msgid "running"
+msgstr "corriendo"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "Chkconfig obedece las reglas de msec"
+#: ../../services.pm_.c:203
+msgid "stopped"
+msgstr "parado"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "Eslovaco (QWERTZ)"
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
+msgstr "Servicios y demonios"
-#: ../advertising/06-development.pl:1
-#, c-format
+#: ../../services.pm_.c:222
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."
+"No additional information\n"
+"about this service, sorry."
msgstr ""
-"Modificar y crear en diferentes lenguajes tales como Perl, Python, C, C++ "
-"nunca ha sido tan fácil como ahora gracias a GNU gcc 3 y los mejores "
-"entornos de desarrollo Open Source."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No devices found"
-msgstr "No se encontraron dispositivos"
+"No hay información adicional para\n"
+"este servicio. Disculpe."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Instalación mínima \"en serio\" (especialmente sin urpmi)"
+#: ../../services.pm_.c:229
+msgid "On boot"
+msgstr "Al iniciar"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use daemon"
-msgstr "Usar servidor"
+#: ../../services.pm_.c:241
+msgid "Start"
+msgstr "Iniciar"
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "Autentificación"
+#: ../../services.pm_.c:241
+msgid "Stop"
+msgstr "Parar"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Agregar esta impresora a Star Office/OpenOffice.org/GIMP"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Gracias por elegir Mandrake Linux 9.0"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Servidores CUPS adicionales:"
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
+msgstr "Bienvenido al mundo del Código Abierto"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/01-thanks.pl_.c:11
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."
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
msgstr ""
-"Elija una de las impresoras detectadas automáticamente de la lista o ingrese "
-"el nombre del host o la IP y el número de puerto opcional (9100, por "
-"defecto) en los campos."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr "¿Dónde desea montar a %s?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "Argelia"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network"
-msgstr "Restaurar por medio de la red"
+"El éxito de MandrakeSoft se basa en el principio del Software Libre. Su "
+"sistema operativo nuevo es el resultado del trabajo colaborativo de parte de "
+"la Comunidad Linux mundial"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
-msgstr "Usar tar y bzip2 (en vez de tar y gzip)"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
+msgstr "Participe en el mundo del Software Libre"
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "Tamaño de initrd"
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr "¿Desea saber más acerca de la comunidad de Código Abierto?"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../share/advertising/02-community.pl_.c:11
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."
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
msgstr ""
-"En caso que estén disponibles diferentes servidores para su tarjeta, con o\n"
-"sin aceleración de 3D, entonces se le propone elegir el servidor que mejor\n"
-"satisface sus necesidades."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tRespaldar usando tar y gzip\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set as default"
-msgstr "Predeterminar"
+"Para compartir su conocimiento y ayudar a construir herramientas Linux, "
+"únase a los foros de discusión que encontrará en nuestras páginas web para "
+"la \"Comunidad\""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
+#: ../../share/advertising/03-internet.pl_.c:9
+msgid "Get the most from the Internet"
+msgstr "Aprovechar al máximo la Internet"
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on this machine"
-msgstr "Configurada en esta máquina"
+#: ../../share/advertising/03-internet.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
+msgstr ""
+"Mandrake Linux 9.0 ha seleccionado el mejor software para Usted. Navegue la "
+"web y vea animaciones con Mozilla y Konqueror, o lea su correo y organice su "
+"información personal con Evolution y KMail"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Ambas teclas Control simultáneamente"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr "¡Descubra las herramientas gráficas y multimedios más actualizadas!"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - mostrar esta ayuda \n"
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr "¡Lleve los multimedios al límite!"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../share/advertising/04-multimedia.pl_.c:11
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"
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-"[OPCIÓN]...\n"
-" --no-confirmation no pedir confirmación en modo MandrakeUpdate\n"
-" --no-verify-rpm no verificar firmas de los paquetes\n"
-" --changelog-first mostrar changelog antes de lista de archivos en "
-"ventana de descripción\n"
-" --merge-all-rpmnew proponer mezclar todos los archivos .rpmnew/.rpmsave "
-"encontrados"
+"Mandrake Linux 9.0 le permite utilizar el último software para reproducir "
+"archivos de audio, editar y organizar sus imágenes o fotos, y reproduzcir "
+"vídeos"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Configurando impresora predeterminada..."
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Juegos"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Interfaz %s (usando el módulo %s)"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Generating preview ..."
-msgstr "Generando previsualización..."
-
-#: ../../network/network.pm:1
-#, c-format
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
msgstr ""
-"La frec. debería tener el sufijo k, M o G (por ejemplo, \"2.46G\" para una "
-"frec. de 2.46 GHz), o añadir suficientes '0' (ceros)"
+"Mandrake Linux 9.0 brinda lo mejor en juegos de Código Abierto - arcade, "
+"acción, estrategia, ..."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ignore"
-msgstr "ignorar"
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+msgid "Mandrake Control Center"
+msgstr "Centro de control de Mandrake"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"Allow/Forbid X connections:\n"
-"\n"
-"- ALL (all connections are allowed),\n"
-"\n"
-"- LOCAL (only connection from local machine),\n"
-"\n"
-"- NONE (no connection)."
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-"Permitir/Prohibir conexiones X:\n"
-"\n"
-"- TODO (permitir todas las conexiones),\n"
-"\n"
-"- LOCAL (sólo conexiones desde la máquina local),\n"
-"\n"
-"- NINGUNO (ninguna conexión)."
+"Mandrake Linux 9.0 brinda una herramienta potente para personalizar y "
+"configurar su máquina por completo."
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", dispositivo multifunción en puerto paralelo #%s"
+#: ../../share/advertising/07-desktop.pl_.c:9
+msgid "User interfaces"
+msgstr "Interfaces de usuario"
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "serie"
+#: ../../share/advertising/07-desktop.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
+msgstr ""
+"Mandrake Linux 9.0 le brinda 11 interfaces de usuario que se pueden "
+"modificar por completo: KDE3, Gnome 2, WindowMaker..."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
-msgstr "DVD-ROM"
+#: ../../share/advertising/08-development.pl_.c:9
+msgid "Development simplified"
+msgstr "Desarrollo simplificado"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgiano (estilo \"latín\")"
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr "Mandrake Linux 9.0 es la mejor plataforma de desarrollo."
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
-msgstr "Obtenga lo mejor con los socios estratégicos de Mandrake Linux"
-
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-"Ahora puede proporcionar las opciones al módulo %s.\n"
-"Note que cualquier dirección debe ingresarse con el prefijo 0x, ej.: '0x123'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "Kenia"
+"Utilice el poder del compilador GNU gcc 3 así como también los mejores "
+"entornos de desarrollo de Código Abierto."
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Use \"Desmontar\" primero"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing mtools packages..."
-msgstr "Instalando paquetes mtools..."
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr "Convierta su máquina en un servidor confiable."
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a root partition"
-msgstr "Debe especificar una partición raíz"
+#: ../../share/advertising/09-server.pl_.c:10
+msgid ""
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
+msgstr ""
+"Transforme su máquina en un servidor Linux potente con unos pocos clic del "
+"ratón: servidor web, de correo, cortafuegos, router, servidor de archivos e "
+"impresoras, ..."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "first step creation"
-msgstr "primer paso de creación"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr "Optimice su seguridad"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Ambas teclas Shift simultáneamente"
+#: ../../share/advertising/10-mnf.pl_.c:10
+msgid ""
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr ""
+"MandrakeSecurity ofrece un rango que incluye el producto Multi Network "
+"Firewall (M.N.F.)."
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
msgstr ""
-" --id <id_etiqueta> - cargar el archivo de ayuda HTML que se refiere a "
-"id_etiqueta\n"
+"Este producto cortafuegos incluye características de red que le permiten "
+"satisfacer todas sus necesidades de seguridad"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select a scanner model"
-msgstr "Seleccione un modelo de escáner"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr "Este producto está disponible en el sitio web MandrakeStore"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
-msgstr "Aceptar/Rechazar mensajes de error IPv4 simulados."
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr "La tienda oficial de MandrakeSoft"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR de nueva generación"
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
+msgstr ""
+"Nuestro rango completo de soluciones Linux, así como también ofertas "
+"especiales sobre productos y otras \"cositas\", están disponibles en línea "
+"en nuestra tienda electrónica:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Configuración de Drakbackup"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr "Socios estratégicos"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr "Guardar como..."
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
+msgstr ""
+"MandrakeSoft trabaja junto a una selección de compañías que ofrecen "
+"soluciones profesionales compatibles con Mandrake Linux. En MandrakeStore "
+"está disponible una lista de dichos socios"
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr "Corea (del Norte)"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr "Descubra el catálogo Linux-Campus de entrenamiento de MandrakeSoft"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
msgstr ""
-"Todavía no se ha configurado esta interfaz.\n"
-"Lance el asistente de configuración en la ventana principal"
+"El programa de entrenamiento ha sido creado para responder a las necesidades "
+"tanto de los usuarios finales como de los expertos (Administración de "
+"sistemas y redes)"
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System configuration"
-msgstr "Configuración del sistema"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr "Certifíquese en Linux."
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "Conexión automática"
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+"Ya sea si elige enseñarse a sí mismo en línea o a través de nuestra red de "
+"socios de entrenamiento, el catálogo Linux-Campus lo prepara para el "
+"reconocido programa de certificación LPT (certificación técnica profesional "
+"a nivel mundial)."
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin Password"
-msgstr "Contraseña del Administrador del Dominio"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+msgid "Become a MandrakeExpert"
+msgstr "Conviértase en un MandrakeExpert"
-#: ../advertising/05-desktop.pl:1
-#, c-format
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
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, ..."
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"Adapte perfectamente su computadora a sus necesidades gracias a las 11 "
-"interfaces de usuario de Mandrake Linux las cuales se pueden modificar por "
-"completo: KDE3.1, Gnome 2.2, WindowMaker..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer ..."
-msgstr "Configurando impresora..."
+"Encuentre las soluciones a sus problemas por medio de la plataforma de "
+"soporte en línea de MandrakeSoft"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
-"To ensure data integrity after resizing the partition(s), \n"
-"filesystem checks will be run on your next boot into Windows(TM)"
+"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 ""
-"Para asegurar la integridad de los datos luego de cambiar el tamaño a\n"
-"las particiones, se pueden ejecutar verificaciones de los sist. de archivos\n"
-"la próxima vez que arranque en Windows(TM)"
+"Únase a los equipos de soporte de Mandrakesoft y de la Comunidad Linux en "
+"línea para compartir su conocimiento y ayudar a otros convirtiéndose en un "
+"Experto reconocido en el sitio web de soporte técnico en línea:"
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "MB"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert Corporativo"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-"si se pone en sí, correr algunas pruebas contra la base de datos de rpm."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr "Islas Vírgenes (Británicas)"
+"Una plataforma en línea para responder a las necesidades específicas de "
+"soporte de la compañía."
-#: ../../lang.pm:1
-#, c-format
-msgid "Bermuda"
-msgstr "Bermuda"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+"Todos los incidentes estarán seguidos por un único experto técnico "
+"calificado de MandrakeSoft."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
-msgstr "haga clic aquí si está seguro."
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
+msgstr "Descubra el Club de Mandrake y el Club Corporativo de Mandrake"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../share/advertising/17-mdkclub.pl_.c:10
msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
msgstr ""
-"No se econtró el archivo de configuración,\n"
-" por favor haga clic sobre Asistente o Avanzado."
+"El Club de Mandrake y el Club Corporativo de Mandrake fueron creados para "
+"las empresas y usuarios privados de Mandrake Linux que desean soportar "
+"directamente a su distribución Linux favorita a la vez que reciben "
+"privilegios especiales. Si Usted disfruta nuestros productos, si su empresa "
+"se beneficia con nuestros productos para ganar competitividad, si desea "
+"soportar el desarrollo de Mandrake Linux, ¡únase al Club de Mandrake!"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone.pm_.c:21
+#, fuzzy
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"
+"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"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\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"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
+"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 ""
-"Aquí se listan las particiones Linux existentes que se detectaron en su\n"
-"disco rígido. Puede mantener las elecciones hechas por el asistente, ya que\n"
-"las mismas son buenas para las instalaciones más comunes. Si hace cambios,\n"
-"al menos debe definir una partición raíz (\"/\"). No elija una partición\n"
-"muy pequeña o no podrá instalar software suficiente. Si desea almacenar sus\n"
-"datos en una partición separada, también puede necesitar crear una\n"
-"partición para \"/home\" (sólo es posible si tiene más de una partición\n"
-"Linux disponible)\n"
-"\n"
-"Cada partición se lista como sigue: \"Nombre\", \"Capacidad\".\n"
-"\n"
-"\"Nombre\" está estructurado: \"tipo de disco rígido\", \"número de disco\n"
-"rígido\", \"número de partición\" (por ejemplo, \"hda1\").\n"
-"\n"
-"\"Tipo de disco rígido\" es \"hd\" si su disco es un disco IDE y \"sd\" si\n"
-"el mismo es un disco SCSI.\n"
-"\n"
-"\"Número de disco rígido\" siempre es una letra que sigue a \"hd\" o a\n"
-"\"sd\". Para los discos IDE:\n"
-"\n"
-" * \"a\" significa \"disco rígido maestro en la controladora IDE\n"
-"primaria\",\n"
-"\n"
-" * \"b\" significa \"disco rígido esclavo en la controladora IDE\n"
-"primaria\",\n"
-"\n"
-" * \"c\" significa \"disco rígido maestro en la controladora IDE\n"
-"secundaria\",\n"
+" 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"
-" * \"d\" significa \"disco rígido esclavo en la controladora IDE\n"
-"secundaria\".\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"
-"Para los discos SCSI, una \"a\" significa \"SCSI ID menor\", una \"b\"\n"
-"significa \"segunda SCSI ID menor\", etc."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Remove"
-msgstr "Quitar"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr "Lesoto"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr "utopia 25"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Filtrar el trabajo en un comando"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Remove system config files"
-msgstr "Quitar archivos de configuración del sistema"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "Costa de Marfil"
+" You should have received a copy of the GNU General Public License\n"
+" along with this program; if not, write to the Free Software\n"
+" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
+#: ../../standalone.pm_.c:40
+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 name.\n"
msgstr ""
-"dispositivo dinámico nuevo generado por el devfs incorporado del núcleo"
-
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "Sí"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "¿Qué protocolo desea utilizar?"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Progress"
-msgstr "Progreso de restauración"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
-msgstr "Estonia"
-#: ../../partition_table.pm:1
-#, c-format
+#: ../../standalone.pm_.c:51
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."
+"[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 ""
-"Tiene un hueco en la tabla de particiones, pero no se puede usar.\n"
-"La única solución es desplazar sus particiones primarias para que el hueco "
-"esté después de las particiones extendidas"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
+#: ../../standalone.pm_.c:57
+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 ""
-"Elija el host donde se deberían hacer disponibles los escáneres locales:"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Channel"
-msgstr "Canal"
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Add"
-msgstr "Agregar"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr " Error durante el envío de correo. \n"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "Teclado"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone.pm_.c:68
msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
msgstr ""
-"Inserte el CD con la etiqueta de volumen %s\n"
-" en la unidad de CD bajo el punto de montaje /mnt/cdrom"
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone.pm_.c:70
msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
+"[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 ""
-"La tasa debería tener el sufijo k, M o G (por ejemplo, \"11M\" para 11M), o "
-"añadir suficientes '0' (ceros)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Elija la conexión que desea configurar"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Por favor espere, configurando el nivel de seguridad..."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Configurando el dispositivo de red %s"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
-msgstr "activado"
+#: ../../standalone.pm_.c:82
+#, fuzzy
+msgid "[keyboard]"
+msgstr "Teclado"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
msgstr ""
-"Por favor, elija la interfaz de red que se utilizará para el servidor DHCP."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Encontrando los paquetes a actualizar..."
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
-msgstr "Punto de montaje: "
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
-msgstr "analizar todas las tipografías"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid direct root login."
-msgstr "Permitir/Prohibir conexión directa de root."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr "Aceptar/Rechazar eco ICMP difundido."
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
-msgstr "Con X"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Configuración multi-monitor"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "No browser available! Please install one"
-msgstr "¡No hay un navegador disponible! Por favor, instale uno"
-#: ../../Xconfig/main.pm:1
-#, c-format
+#: ../../standalone.pm_.c:84
msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
+"[OPTIONS]\n"
+"Network & Internet connection and monitoring application\n"
"\n"
-"%s"
+"--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 ""
-"¿Conservar los cambios?\n"
-"La configuración actual es:\n"
-"\n"
-"%s"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "No se puede usar ReiserFS para particiones menores de 32MB"
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone.pm_.c:94
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)."
+"[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 ""
-"El protocolo rwho permite que los usuarios remotos obtengan una lista\n"
-"de todos los usuarios conectados a una máquina que ejecuta el demonio rwho\n"
-"(similar al finger)."
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "Nombre de dominio"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Compartir impresoras locales"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
-msgstr "Habilitar/Deshabilitar libsafe si es que se encuentra en el sistema."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Available printers"
-msgstr "Impresoras disponibles"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "NO"
-msgstr "NO"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "Vacío"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
-msgstr "ancho del texto"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "¿Dónde desea montar el dispositivo %s?"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "El \"lease\" predeterminado (en segundos)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../standalone.pm_.c:99
msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
msgstr ""
-"Ahora vamos a configurar la conexión %s.\n"
-"\n"
-"\n"
-"Presione \"%s\" para continuar."
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Interfaz \"%s\""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Con documentación básica (¡recomendado!)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr "1 botón"
+#: ../../standalone.pm_.c:100
+msgid ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone.pm_.c:114
#, c-format
msgid ""
"\n"
-"There are %d unknown printers directly connected to your system"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
-"\n"
-"Hay %d impresoras desconocidas conectadas directamente a su sistema"
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Test"
-msgstr "Probar"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea"
-msgstr "Corea"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "¿Su elección? (por defecto %s'%s) "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer"
-msgstr "Impresora en crudo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "nombre oficial del fabricante de la CPU"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
-msgstr "Inútil sin un Servidor de terminales"
+#: ../../standalone.pm_.c:168
+msgid "Installing packages..."
+msgstr "Instalando paquetes..."
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Vendor"
-msgstr "Fabricante"
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Por favor salga de la sesión y luego pulse Ctrl-Alt-BackSpace"
-#: ../../standalone/drakgw:1
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "Interface %s"
-msgstr "Interfaz %s"
+msgid "Please relog into %s to activate the changes"
+msgstr "Abra de nuevo una sesión %s para activar los cambios"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "Configuración del ratón"
+#: ../../standalone/drakTermServ_.c:239
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Configuración del Servidor de Terminales de Mandrake"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
-msgstr "Seleccione los puntos de montaje"
+#: ../../standalone/drakTermServ_.c:253
+msgid "Enable Server"
+msgstr "Habiltar el Servidor"
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr "Aceptar"
+#: ../../standalone/drakTermServ_.c:260
+msgid "Disable Server"
+msgstr "Deshabilitar el Servidor"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "Yugoslavo (latín)"
+#: ../../standalone/drakTermServ_.c:268
+msgid "Start Server"
+msgstr "Iniciar el Servidor"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "Instalando"
+#: ../../standalone/drakTermServ_.c:275
+msgid "Stop Server"
+msgstr "Detener el Servidor"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan con emulación de rueda"
+#: ../../standalone/drakTermServ_.c:283
+msgid "Etherboot Floppy/ISO"
+msgstr "Disquete/ISO Etherboot"
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
-msgstr "Lanzar UserDrake"
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
+msgstr "Imágenes de arranque por la red"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "¿Es una instalación o una actualización?"
+#: ../../standalone/drakTermServ_.c:294
+msgid "Add/Del Users"
+msgstr "Añadir/Quitar usuarios"
-#: ../../help.pm:1
-#, c-format
-msgid "ISDN card"
-msgstr "Tarjeta RDSI"
+#: ../../standalone/drakTermServ_.c:299
+msgid "Add/Del Clients"
+msgstr "Añadir/Quitar clientes"
-#: ../advertising/02-community.pl:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:328
+#, fuzzy
msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
+"\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
+"\n"
msgstr ""
-"Para compartir su conocimiento y ayudar a construir herramientas Linux, "
-"únase a los foros de discusión que encontrará en nuestras páginas web para "
-"la \"Comunidad\""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-Disco rígido.\n"
+" actualizaciones 2002 MandrakeSoft por Stew Benedict <sbenedict"
+"\\@mandrakesoft.com>"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:332
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"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\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 ""
-"Este paso se activa sólo si se encontró una partición GNU/Linux antigua en\n"
-"su máquina.\n"
-"\n"
-"DrakX ahora necesita saber si desea realizar una instalación nueva o una\n"
-"actualización de un sistema Mandrake Linux existente:\n"
-"\n"
-" * \"%s\": Esta opción borrará prácticamente por completo el sistema\n"
-"anterior. Si desea cambiar la forma en que se particionan sus discos, o\n"
-"cambiar el sistema de archivos, debería utilizar esta opción. Sin embargo,\n"
-"dependiendo de su esquema de particionado, puede evitar que se\n"
-"sobre-escriban algunos datos existentes.\n"
-"\n"
-" * \"%s\": Esta clase de instalación le permite actualizar los paquetes que\n"
-"en este momento están instalados en su sistema Mandrake Linux. No se\n"
-"alteran las particiones corrientes de sus discos ni los datos de los\n"
-"usuarios. La mayoría de los otros pasos de configuración permanecen\n"
-"disponibles, de manera similar a lo que ocurre con una instalación\n"
-"estándar.\n"
-"\n"
-"El uso de la opción \"Actualizar\" debería funcionar sin problemas para los\n"
-"sistemas Mandrake Linux que corren la versión \"8.1\" o una posterior. No\n"
-"se recomienda realizar una actualización sobre versiones anteriores a\n"
-"Mandrake Linux versión \"8.1\"."
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:365
msgid ""
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\n"
"\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"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\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"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\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 ""
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
"\n"
-" Copyright (C) 2001-2002 por MandrakeSoft \n"
-" DUPONT Sebastien (versión original)\n"
-" CHAUMETTE Damien <dchaumette@mandrakesoft.com>\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
"\n"
-" Este programa es software libre; lo puede redistribuir y/o modificar\n"
-" bajo los términos de la Licencia Pública General GNU publicada por la\n"
-" Free Software Foundation; ya sea la versión 2, o (a su elección)\n"
-" cualquier versión posterior.\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
"\n"
-" Este programa se distribuye con la esperanza que resultará útil, pero\n"
-" SIN GARANTÃA ALGUNA; incluso sin la garantía implícita de COMERCIABILIDAD\n"
-" o ADECUABILIDAD PARA UN PROPÓSITO PARTICULAR. Vea la Licencia Pública\n"
-" General GNU para más detalles.\n"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \n"
"\n"
-" Debería haber recibido una copia de la Licencia Pública General GNU junto\n"
-" con este programa; de no ser así, escriba a la Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
-" Gracias:\n"
-" - pfm2afm: \n"
-"\t por Ken Borgendale:\n"
-"\t Convertir un archivo .pfm de Windows a uno .afm (Adobe Font Metrics)\n"
-" - type1inst:\n"
-"\t por James Macnicol: \n"
-"\t type1inst genera archivos fonts.dir fonts.scale y Fontmap.\n"
-" - ttf2pt1: \n"
-"\t por Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convertir archivos de tipografías ttf a tipografías afm y pfb\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Impresora en un servidor CUPS remoto"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-"No se pudo quitar la impresora \"%s\" de Star Office/OpenOffice.org/GIMP."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
-msgstr "aquí si no lo está."
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
+msgstr "Disquete de arranque"
-#: ../../network/network.pm:1
-#, c-format
-msgid "DHCP host name"
-msgstr "Nombre de la máquina DHCP"
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
+msgstr "ISO de arranque"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "El \"lease\" máximo (en segundos)"
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
+msgstr "Construir el núcleo completo -->"
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Seleccione el puerto serie al que está conectado el ratón, por favor."
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
+msgstr "Esto tomará algunos minutos."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
-msgstr "¿Funcionó adecuadamente?"
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
+msgstr "¡No se seleccionó núcleo!"
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
-msgstr "Montar el sistema de archivos como sólo de lectura."
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
+msgstr "Construir NIC única -->"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "Pobre"
+#: ../../standalone/drakTermServ_.c:587
+msgid "No nic selected!"
+msgstr "¡No se seleccionó NIC!"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result by mail"
-msgstr "Reportar resultado de verificación por correo-e"
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
+msgstr "Construir todos los núcleos -->"
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
-msgstr "Granada"
+#: ../../standalone/drakTermServ_.c:604
+msgid "<-- Delete"
+msgstr "<-- Borrar"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
-msgstr "Comienzo del rango de DHCP"
+#: ../../standalone/drakTermServ_.c:611
+msgid "Delete All NBIs"
+msgstr "Borrar todos los NBI"
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "Inseguro"
+#: ../../standalone/drakTermServ_.c:668
+msgid ""
+"!!! Indicates the password in the system database is different than\n"
+" the one in the Terminal Server database.\n"
+"Delete/re-add the user to the Terminal Server to enable login."
+msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "SSH server"
-msgstr "Servidor SSH"
+#: ../../standalone/drakTermServ_.c:673
+msgid "Add User -->"
+msgstr "Añadir usuario -->"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sectores"
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
+msgstr "<-- Borrar usuario"
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "No"
+#: ../../standalone/drakTermServ_.c:720
+#, fuzzy, c-format
+msgid "type: %s"
+msgstr "Tipo: "
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "Guadalupe"
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
+msgstr "¡No se crearon imágenes de arranque por red!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Kannada"
-msgstr "Kannada"
+#: ../../standalone/drakTermServ_.c:773
+#, fuzzy
+msgid "Thin Client"
+msgstr "Cliente DHCP"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
-msgstr "no se pueden encontrar tipografías.\n"
+#: ../../standalone/drakTermServ_.c:775
+#, fuzzy
+msgid "Allow Thin Clients"
+msgstr "Añadir/Quitar clientes"
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "¿Desea que la tecla BackSpace envíe un Delete en la consola?"
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
+msgstr "Añadir cliente -->"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Frecuencia de barrido vertical"
+#: ../../standalone/drakTermServ_.c:821
+#, fuzzy
+msgid "<-- Edit Client"
+msgstr "<-- Borrar cliente"
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Entrando en la etapa '%s'\n"
+#: ../../standalone/drakTermServ_.c:837
+#, fuzzy
+msgid "Delete Client"
+msgstr "<-- Borrar cliente"
-#: ../../lang.pm:1
-#, c-format
-msgid "Niger"
-msgstr "Níger"
+#: ../../standalone/drakTermServ_.c:843
+msgid "dhcpd Config..."
+msgstr "Configuración de dhcpd..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
+#: ../../standalone/drakTermServ_.c:876
+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
-#, c-format
-msgid "Removing %s ..."
-msgstr "Quitando %s ..."
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No printer"
-msgstr "Sin impresora"
+#: ../../standalone/drakTermServ_.c:901
+#, fuzzy
+msgid "Netmask:"
+msgstr "Máscara de red"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "alert configuration"
-msgstr "configuración de alerta"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "Opciones de la impresora NetWare"
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "%s BootSplash (%s) preview"
-msgstr "Bootsplash de %s. No se puede crear la previsualización (%s)"
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "February"
-msgstr "Febrero"
+#: ../../standalone/drakTermServ_.c:929
+#, fuzzy
+msgid "Domain Name:"
+msgstr "Nombre de dominio"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
-msgstr "General"
+#: ../../standalone/drakTermServ_.c:937
+#, fuzzy
+msgid "Name Servers:"
+msgstr "Servidor Samba"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
-msgstr "/etc/issue*.exist"
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "Añadir un usuario"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuración de la red (%d adaptadores)"
+#: ../../standalone/drakTermServ_.c:1001
+msgid "dhcpd Server Configuration"
+msgstr "Configuración del servidor dhcpd"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "April"
-msgstr "Abril"
+#: ../../standalone/drakTermServ_.c:1002
+#, fuzzy
+msgid ""
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
+msgstr ""
+"La mayoría de los valores se tomaron de su\n"
+"sistema actual. Los puede modificar si es necesario."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Deactivate now"
-msgstr "Desactivar ahora"
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
+msgstr ""
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Falta el paquete obligatorio %s"
+#: ../../standalone/drakTermServ_.c:1018
+msgid "Write Config"
+msgstr "Escribir configuración"
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Filipinas"
+#: ../../standalone/drakTermServ_.c:1120
+msgid "Please insert floppy disk:"
+msgstr "Por favor, inserte un disquete:"
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "Aceptar"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
+msgstr "¡No se pudo acceder al disquete!"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "drakTermServ Overview"
-msgstr "Generalidades de drakTermServ"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
+msgstr "Ya se puede quitar el disquete"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
-msgstr "Nombre de la cola de impresión"
+#: ../../standalone/drakTermServ_.c:1129
+msgid "No floppy drive available!"
+msgstr "¡Ninguna disquetera disponible!"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakTermServ_.c:1138
#, c-format
-msgid "Do you want to use aboot?"
-msgstr "¿Desea usar aboot?"
+msgid "Etherboot ISO image is %s"
+msgstr "La imagen ISO Etherboot es %s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belarusian"
-msgstr "Bielorruso"
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "¡Ocurrió algo malo! - ¿Está instalado mkisofs?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "¡Primero debe crear /etc/dhcpd.conf!"
+
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
-"PDQ sólo soporta impresoras locales, impresoras LPD remotas, e impresoras "
-"Socket/TCP.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move files to the new partition"
-msgstr "Mover los archivos a la nueva partición"
+#: ../../standalone/drakautoinst_.c:40
+msgid "Error!"
+msgstr "¡Error!"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
-"Añada aquí los servidores CUPS cuyas impresoras desea usar. Sólo necesita "
-"hacer esto si los servidores no difunden la información de sus impresoras en "
-"la red local."
+msgid "I can't find needed image file `%s'."
+msgstr "No se encuentra el archivo de imagen `%s' necesario."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:43
+msgid "Auto Install Configurator"
+msgstr "Configurador de Instalación Automática"
+
+#: ../../standalone/drakautoinst_.c:44
msgid ""
+"You are about to configure an Auto Install floppy. This feature is somewhat "
+"dangerous and must be used circumspectly.\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\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"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
+"For maximum safety, the partitioning and formatting will never be performed "
+"automatically, whatever you chose during the install of this computer.\n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
+"Do you want to continue?"
msgstr ""
+"Está a punto de configurar el un disquete de Instalación Automática. Esta "
+"característica es algo peligrosa y debe ser utilizada con cuidado.\n"
"\n"
-"Bienvenido al Asistente de configuración de Impresoras\n"
+"Con esa característica, podrá repetir la instalación que ha realizado en "
+"esta computadora, y se le consultará interactivamente en algunos pasos, para "
+"poder cambiar los valores de los mismos.\n"
"\n"
-"Este asistente lo ayudará a instalar sus impresoras conectadas a esta "
+"Para máxima seguridad, el particionado y formateado nunca será realizado "
+"automáticamente, sin importar lo que eligió durante la instalación de esta "
"computadora.\n"
"\n"
-"Si tiene impresoras conectadas a esta máquina, por favor enciéndalas para "
-"que se puedan detectar automáticamnte.\n"
-"\n"
-"Haga clic sobre \"Siguiente\" cuando esté listo, o sobre \"Cancelar\" si "
-"Usted no desea configurar sus impresoras ahora."
+"¿Desea continuar?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
-msgstr "Pitcairn"
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Restaurar desde Catálogo"
+#: ../../standalone/drakautoinst_.c:62
+#, fuzzy
+msgid "replay"
+msgstr "Reproducir"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "IDE"
-msgstr "IDE"
+#: ../../standalone/drakautoinst_.c:66
+msgid "Automatic Steps Configuration"
+msgstr "Configuración de pasos automáticos"
-#: ../../fs.pm:1
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "falló el montaje de la partición %s en el directorio %s"
+#: ../../standalone/drakautoinst_.c:67
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
+msgstr ""
+"Por favor, elija para cada paso si desea que se repita como su instalación, "
+"o el mismo será manual"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
-msgstr "Pantalla de LiLo"
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+msgid "Creating auto install floppy"
+msgstr "Creando el disquete de instalación automática"
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO con menú gráfico"
+#: ../../standalone/drakautoinst_.c:139
+msgid ""
+"\n"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
+msgstr ""
+"\n"
+"Bienvenido.\n"
+"\n"
+"Los parámetros de la instalación automáticas están disponibles en las "
+"secciones de la izquierda"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "Estimando"
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
+msgstr "¡Felicidades!"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
-msgstr "No puede desmarcar este paquete. Ya está instalado"
+#: ../../standalone/drakautoinst_.c:235
+msgid ""
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
+msgstr ""
+"El disquete ha sido generado satisfactoriamente.\n"
+"Ahora puede repetir su instalación."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", impresora \"%s\" en el servidor SMB/Windows \"%s\""
+#: ../../standalone/drakautoinst_.c:273
+msgid "Auto Install"
+msgstr "Instalación automática"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "¿Seguir adelante?"
+#: ../../standalone/drakautoinst_.c:343
+msgid "Add an item"
+msgstr "Añadir un elemento"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr ""
-"Buscando los paquetes disponibles y reconstruyendo la base de datos de RPM..."
+#: ../../standalone/drakautoinst_.c:350
+msgid "Remove the last item"
+msgstr "Borrar el último elemento"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
+msgstr "Cron todavía no está disponible como no-root"
+
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
+msgstr "ATENCIÓN"
+
+#: ../../standalone/drakbackup_.c:691
+msgid "FATAL"
+msgstr "FATAL"
+
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
+msgstr "INFO"
+
+#: ../../standalone/drakbackup_.c:704
msgid ""
"\n"
" DrakBackup Report \n"
+"\n"
msgstr ""
"\n"
" Reporte de DrakBackup \n"
+"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "¡No parece ser un soporte grabable!"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "Especificar las opciones"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "New user list:\n"
-msgstr "Lista de usuarios nueva:\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "¡Debe indicar el nombre o la dirección IP del servidor!"
-
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:705
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\"."
-msgstr ""
-"Un disquete de arranque personalizado da la posibilidad de arrancar su "
-"equipo\n"
-"bajo Linux sin depender del cargador de arranque normal. Esto puede ser "
-"útil\n"
-"si no desea instalar SILO en su sistema, o si cualquier otro sistema "
-"operativo borra\n"
-"SILO, o si SILO no funciona con su configuración de hardware. Un disquete\n"
-"de arranque personalizado también se puede usar con la imagen de rescate de\n"
-" Mandrake haciendo así mucho más fácil la recuperación en caso de fallo\n"
-"grave del sistema.\n"
+" DrakBackup Daemon Report\n"
+"\n"
"\n"
-"Si desea crear un disquete de arranque para su sistema, inserte un disquete\n"
-"en la primer disquetera y presione \"Aceptar\"."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-"No puede usar un sistema de archivos cifrado para el punto de montaje %s"
+"\n"
+" Reporte del servidor DrakBackup\n"
+"\n"
+"\n"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password history length to prevent password reuse."
+#: ../../standalone/drakbackup_.c:709
+msgid ""
+"\n"
+" DrakBackup Report Details\n"
+"\n"
+"\n"
msgstr ""
-"Configurar la longitud de la historia de contraseñas para prevenir "
-"reutilización de contraseñas."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
-msgstr "Isla Norfolk"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Theme installation failed!"
-msgstr "¡Falló la instalación de los temas!"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
-msgstr "Nada para hacer"
+"\n"
+" Detalles del reporte de DrakBackup\n"
+"\n"
+"\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "Usar para loopback"
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+msgid "Total progess"
+msgstr "Progreso total"
-#: ../../standalone/drakbug:1
+#: ../../standalone/drakbackup_.c:785
#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr "Herramienta de Reporte de Errores de Mandrake"
+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 ""
+"%s existe, ¿borrarlo?\n"
+"\n"
+"Advertencia: Si ya realizó este proceso probablemente deba\n"
+" purgar la entrada de authorized_keys en el servidor."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
-msgstr "Aplicar filtro"
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
+msgstr "La generación de claves puede tardar unos momentos."
-#: ../../network/adsl.pm:1
+#: ../../standalone/drakbackup_.c:801
#, c-format
-msgid "use pppoe"
-msgstr "usar pppoe"
+msgid "ERROR: Cannot spawn %s."
+msgstr "ERROR: No se puede lanzar %s."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid "Moving files to the new partition"
-msgstr "Moviendo los archivos a la nueva partición"
+msgid "No password prompt on %s at port %s"
+msgstr "Sin pedido de contraseña en %s en el puerto %s"
-#: ../../Xconfig/card.pm:1
+#: ../../standalone/drakbackup_.c:819
#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s con aceleración 3D EXPERIMENTAL por hardware"
+msgid "Bad password on %s"
+msgstr "Contraseña incorrecta en %s"
-#: ../../help.pm:1 ../../interactive.pm:1
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "Advanced"
-msgstr "Avanzada"
+msgid "Permission denied transferring %s to %s"
+msgstr "Permiso denegado transfiriendo %s a %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:821
#, c-format
-msgid "Transfer"
-msgstr "Transferir"
+msgid "Can't find %s on %s"
+msgstr "No puedo encontrar %s en %s"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Sueco)"
+msgid "%s not responding"
+msgstr "%s no responde"
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup_.c:828
#, c-format
-msgid "Afghanistan"
-msgstr "Afganistán"
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+"Transferencia exitosa\n"
+"Puede verificar que se puede conectar al servidor con:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"sin que se le pida una contraseña."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "More Options"
-msgstr "Más opciones"
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
+msgstr "¡El sitio WebDAV remoto ya está sincronizado!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr "Borrar los archivos tar del disco luego de respaldar a otro soporte."
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
+msgstr "¡Falló la transferencia WebDAV!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "Burundi"
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
+msgstr "¡No hay CDR/DVDR en la unidad!"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron es un programa UNIX estándar que ejecuta programas especificados por\n"
-"el usuario periódicamente. El cron de Vixie añade varias funcionalidades al "
-"cron de Unix \n"
-"básico, incluyendo una mayor seguridad y opciones de configuración más "
-"potentes."
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
+msgstr "¡No parece ser un soporte grabable!"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr "Añadir cliente -->"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
+msgstr "¡No es un soporte borrable!"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "¡Lea con cuidado!"
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
+msgstr "Borrar el soporte puede tardar unos momentos."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
-msgstr "RW"
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
+msgstr "Problema de permisos al acceder al CD."
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakbackup_.c:1060
#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Por favor,\n"
-"teclee su norma de tv y país"
+msgid "No tape in %s!"
+msgstr "¡No hay cinta en %s!"
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "Puerto"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
+msgstr "Respaldar archivos del sistema..."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
-msgstr "No (sólo expertos)"
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+msgid "Hard Disk Backup files..."
+msgstr "Respaldar archivos del disco rígido..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-msgstr "¡No se seleccionó núcleo!"
+#: ../../standalone/drakbackup_.c:1236
+msgid "Backup User files..."
+msgstr "Respaldar archivos de usuario..."
-#. -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
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Pulse intro para iniciar el SO elegido, pulse 'e' para editar"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
+msgstr "Progreso de respaldo del disco rígido..."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
+#: ../../standalone/drakbackup_.c:1290
+msgid "Backup Other files..."
+msgstr "Respaldar otros archivos..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The encryption keys do not match"
-msgstr "Las claves de cifrado no coinciden"
+#: ../../standalone/drakbackup_.c:1296
+msgid "No changes to backup!"
+msgstr "¡No hay cambios para realizar respaldo!"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, c-format
msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-"Para un CD multisesión, sólo la primer sesión borrará el CDRW. De lo "
-"contrario, el CDRW se borra antes de cada respaldo."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "USB printer"
-msgstr "Impresora USB"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Tecla \"Windows\" de la derecha"
+"\n"
+"Actividades de Drakbackup por medio de %s:\n"
+"\n"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr "si se pone en sí, verificar contraseña vacía en /etc/shadow."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
+#: ../../standalone/drakbackup_.c:1319
#, 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."
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-"Antes de continuar, debería leer cuidadosamente los términos de la\n"
-"licencia. La misma cubre a toda la distribución Mandrake Linux. Si está de\n"
-"acuerdo con todos los términos en la misma, marque la casilla \"%s\". Si\n"
-"no, simplemente apague su computadora."
+"lista de archivos envíada por FTP: %s\n"
+" "
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1322
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
"\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
msgstr ""
-"Aquí tiene una lista de las opciones disponibles para la impresora actual:\n"
"\n"
+" Problema en la conexión FTP: No fue posible enviar sus archivos de copia de "
+"respaldo por FTP.\n"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "Resoluciones"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1340
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."
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-"configurador de drakfirewall\n"
"\n"
-"Esto configura un cortafuegos personal para esta máquina Mandrake Linux.\n"
-"Para una solución potente de cortafuegos dedicada, por favor eche un "
-"vistazo\n"
-"a la distribución especializada MandrakeSecurity Firewall."
+"Actividades de Drakbackup por medio de CD:\n"
+"\n"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1345
msgid ""
-"Please enter your username, password and domain name to access this host."
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-"Por favor, ingrese su nombre de usuario, contraseña y nombre de dominio para "
-"acceder a este host."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Remove selected host"
-msgstr "Quitar host seleccionado"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network configuration"
-msgstr "Configuración de la red"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Autodetectar unidades _jaz"
-
-#: ../../any.pm:1
-#, c-format
-msgid "No sharing"
-msgstr "No compartir"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Bajar un nivel la regla seleccionada"
+"\n"
+"Actividades de Drakbackup por medio de cinta:\n"
+"\n"
-#: ../../common.pm:1
-#, c-format
-msgid "TB"
-msgstr "TB"
+#: ../../standalone/drakbackup_.c:1354
+msgid " Error during mail sending. \n"
+msgstr " Error durante el envío de correo. \n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "FATAL"
-msgstr "FATAL"
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
+msgstr "¡No se puede crear catálogo!"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh the list"
-msgstr "Refrescar la lista"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+msgid "File Selection"
+msgstr "Selección de archivos."
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - %s por cliente:\n"
-" \t\tA través de clusternfs, cada cliente sin disco puede tener sus "
-"archivos de configuración únicos\n"
-" \t\ten el sist. de archivos raíz del servidor. En el futuro "
-"drakTermServ ayudará a crear\n"
-" \t\testos archivos."
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
+msgstr "Seleccione los archivos o directorios y haga clic sobre 'Agregar'"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1573
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"
+"Please check all options that you need.\n"
msgstr ""
-"El servidor DHCP permitirá a otras computadoras arrancar utilizando PXE en "
-"el rango de direcciones dado.\n"
-"\n"
-"La dirección de red es %s utilizando una máscara de red de %s.\n"
"\n"
+"Por favor, marque todas las opciones que necesita.\n"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete"
-msgstr "Borrar"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1574
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?"
+"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-"Puede configurar su computadora para que inicie X automáticamente\n"
-"al arrancar. ¿Desea que se lance X cuando reinicie?"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
-msgstr "Crear el disquete"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnect %s"
-msgstr "Desconectar %s"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
-msgstr "Estado:"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "Proxy HTTP"
+"Estas opciones pueden respaldar y restaurar todos los archivos en el "
+"directorio /etc.\n"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "SSH Server"
-msgstr "Servidor SSH"
+#: ../../standalone/drakbackup_.c:1575
+msgid "Backup your System files. (/etc directory)"
+msgstr "Respaldar sus archivos del sistema. (directorio /etc)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-Red por rsync.\n"
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
+msgstr "Usar repaldo incremental (no reemplazar respaldos antiguos)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
-msgstr "Protocolo europeo"
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
+msgstr "No incluir archivos críticos (passwd, group, fstab)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", impresora \"%s\" en el servidor \"%s\""
+#: ../../standalone/drakbackup_.c:1578
+msgid ""
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
+msgstr ""
+"Con esta opción podrá restaurar cualquier versión de su\n"
+"directorio /etc."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
+#: ../../standalone/drakbackup_.c:1595
+msgid "Please check all users that you want to include in your backup."
msgstr ""
-"Note que, corrientemente, todos los soportes de \"red\" también utilizan el "
-"disco rígido."
+"Por favor, marque a todos los usuarios que desa incluir en la copia de "
+"respaldo"
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
-#, c-format
-msgid "Error"
-msgstr "Error"
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
+msgstr "No incluir el cache del navegador"
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
-msgstr "permitir \"su\""
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
+msgstr "Usar respaldos incrementales (no reemplazar respaldos antiguos)"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Australia"
-msgstr "Australia"
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+msgid "Remove Selected"
+msgstr "Quitar los seleccionados."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "por favor, espere mientras corre ttmkfdir..."
+#: ../../standalone/drakbackup_.c:1679
+msgid "Windows (FAT32)"
+msgstr "Windows (FAT32)"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Configurar sólo la tarjeta \"%s\"%s"
+#: ../../standalone/drakbackup_.c:1714
+msgid "Users"
+msgstr "Usuarios"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Level"
-msgstr "Nivel"
+#: ../../standalone/drakbackup_.c:1740
+msgid "Use network connection to backup"
+msgstr "Usar conexión de red para realizar copia de respaldo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Change the printing system"
-msgstr "Cambiar el sistema de impresión"
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
+msgstr "Método de red:"
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
+msgstr "Usar Expect para SSH"
+
+#: ../../standalone/drakbackup_.c:1747
msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-"Su sistema soporta configuración multi-monitor.\n"
-"¿Qué desea hacer?"
+"Crear/Transferir\n"
+"claves de respaldo para SSH"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr "mount falló: "
+#: ../../standalone/drakbackup_.c:1748
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+"Transferir \n"
+"Ahora"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "Servicios al inicio"
+#: ../../standalone/drakbackup_.c:1749
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
+msgstr ""
+"Otro (no drakbackup)\n"
+"las claves ya están en su lugar"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Dirección de difusión:"
+#: ../../standalone/drakbackup_.c:1753
+msgid "Please enter the host name or IP."
+msgstr "Por favor, ingrese el nombre o la IP del host"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1758
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."
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-"el núcleo GNU/Linux necesita correr un lazo de cálculo al arrancar para "
-"inicializar un contador. El resultado se almacena como bogomips como una "
-"manera de hacer un \"benchmark\" de la CPU."
+"Por favor, ingrese el directorio (o módulo) para\n"
+" poner la copia de respaldo en este host."
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "Imagen"
+#: ../../standalone/drakbackup_.c:1763
+msgid "Please enter your login"
+msgstr "Por favor, ingrese su nombre de usuario (login)"
-#: ../../services.pm:1
-#, c-format
-msgid "Remote Administration"
-msgstr "Administración remota"
+#: ../../standalone/drakbackup_.c:1768
+msgid "Please enter your password"
+msgstr "Por favor, ingrese su contraseña"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-msgstr ""
-"No se pudo agregar la impresora \"%s\" a Star Office/OpenOffice.org/GIMP."
+#: ../../standalone/drakbackup_.c:1774
+msgid "Remember this password"
+msgstr "Recordar esta contraseña"
-#: ../../modules.pm:1
-#, c-format
-msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-"El soporte PCMCIA no existe en los núcleos 2.2. Por favor, utilice un núcleo "
-"2.4."
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
+msgstr "¡Necesita el nombre del host, el nombre de usuario y la contraseña!"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Selected All"
-msgstr "Seleccionar todas."
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
+msgstr "Usar CD/DVDROM para la copia de respaldo"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
+#: ../../standalone/drakbackup_.c:1882
+msgid ""
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-"CUPS - Common Unix Printing System (Sistema de impresión común de Unix)"
+"Por favor, elija su dispositivo CD/DVD\n"
+"(Presione Intro para propagar las configuraciones a otros campos.\n"
+"Este campo no es necesario, sólo una herramienta para completar el "
+"formulario.)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Webmin Service"
-msgstr "Servicio Webmin"
+#: ../../standalone/drakbackup_.c:1887
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Por favor, elija el tamaño de su CD/DVD"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
-msgstr "dispositivo"
+#: ../../standalone/drakbackup_.c:1893
+msgid "Please check for multisession CD"
+msgstr "Por favor, marque para CD multi-sesión"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Ingrese el directorio donde guardar:"
+#: ../../standalone/drakbackup_.c:1899
+msgid "Please check if you are using CDRW media"
+msgstr "Por favor, marque si está utilizando un soporte CDRW"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
-msgstr "Grecia"
+#: ../../standalone/drakbackup_.c:1905
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Por favor, marque si desea borrar su soporte regrabable (1er. sesión)"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "Todo"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "¿Qué sistema de impresión (spooler) desea usar?"
+#: ../../standalone/drakbackup_.c:1906
+msgid " Erase Now "
+msgstr " Borrar Ahora "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
-msgstr "Julio"
+#: ../../standalone/drakbackup_.c:1912
+msgid "Please check if you are using a DVDR device"
+msgstr "Por favor, marque si está utilizando un dispositivo DVDR"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Prints into %s"
-msgstr "Imprimiendo en %s"
+#: ../../standalone/drakbackup_.c:1918
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Por favor, marque si está utilizando un dispositivo DVDRAM"
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "Ocurrió un error"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1931
msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-"Se debe actualizar este paquete\n"
-"¿Está seguro que quiere desmarcarlo?"
+"Por favor, ingrese el nombre del dispositivo de\n"
+" su grabadora de CD, ej: 0,1,0"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "Tamil (disposición de máquina de escribir)"
+#: ../../standalone/drakbackup_.c:1964
+msgid "No CD device defined!"
+msgstr "¡No se definió dispositivo de CD!"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
-msgstr "Usar contraseña para autenticar usuarios."
+#: ../../standalone/drakbackup_.c:2012
+msgid "Use tape to backup"
+msgstr "Usar cinta para realizar respaldo"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
msgstr ""
-"Permitir/Prohibir la lista de usuarios del sistema en administradores de "
-"conexión (kdm y gdm)."
+"Por favor, ingrese el nombre del dispositivo a utilizar para el respaldo"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
-msgstr "manual"
+#: ../../standalone/drakbackup_.c:2021
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Por favor, marque si desea utilizar un dispositivo que no rebobina."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
-msgstr "Archivo a buscar:"
+#: ../../standalone/drakbackup_.c:2027
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Por favor, marque si primero desea borrar su cinta."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Fabricante de la impresora, modelo, controlador"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+#: ../../standalone/drakbackup_.c:2033
+msgid "Please check if you want to eject your tape after the backup."
msgstr ""
-"No hay soporte alguno, o está protegido contra escritura, en el dispositivo %"
-"s.\n"
-"Por favor, inserte uno."
+"Por favor, marque si desea expulsar su cinta luego de la copia de seguridad."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
msgid ""
-"Directory %s already contains data\n"
-"(%s)"
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
msgstr ""
-"El directorio %s ya tiene algunos datos\n"
-"(%s)"
+"Por favor, ingrese el tamaño máximo\n"
+" permitido para Drakbackup"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Impresora en un servidor NetWare"
+#: ../../standalone/drakbackup_.c:2103
+msgid "Please enter the directory to save to:"
+msgstr "Por favor, ingrese el directorio donde guardar:"
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Proporcione el tamaño de la RAM en MB"
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+msgid "Use quota for backup files."
+msgstr "Usar cuota para archivos de respaldo"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr "Viernes"
+#: ../../standalone/drakbackup_.c:2180
+msgid "Network"
+msgstr "Red"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Desconexión desde la Internet completada."
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
+msgstr "CDROM / DVDROM"
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "Nombre y apellidos"
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
+msgstr "Disco rígido / NFS"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "done"
-msgstr "hecho"
+#: ../../standalone/drakbackup_.c:2195
+msgid "Tape"
+msgstr "Cinta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Por favor, desmarque o quítelo la próxima vez."
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
+msgstr "cada hora"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Higher"
-msgstr "Más alta"
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
+msgstr "cada día"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Elija las particiones que desea formatear"
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
+msgstr "cada semana"
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
+msgstr "cada mes"
+
+#: ../../standalone/drakbackup_.c:2229
+msgid "Use daemon"
+msgstr "Usar servidor"
+
+#: ../../standalone/drakbackup_.c:2234
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"
+"Please choose the time \n"
+"interval between each backup"
msgstr ""
-"No se detectó tarjeta de TV en su máquina. Por favor, verifique que tiene "
-"conectada correctamente una tarjeta de vídeo/TV soportada por Linux.\n"
-"\n"
-"\n"
-"Puede visitar nuestra base de datos de hardware en:\n"
+"Por favor, elija el intervalo de\n"
+" tiempo entre cada copia de respaldo"
+
+#: ../../standalone/drakbackup_.c:2240
+msgid ""
+"Please choose the\n"
+"media for backup."
+msgstr ""
+"Por favor, elija el soporte\n"
+"para la copia de respaldo."
+
+#: ../../standalone/drakbackup_.c:2247
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
"\n"
+"Note that currently all 'net' medias also use the hard drive."
+msgstr ""
+"Por favor, asegúrese que el servidor cron está incluído entre sus "
+"servicios.\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't find %s on %s"
-msgstr "No puedo encontrar %s en %s"
+"Note que, por ahora, todos los soportes de \"red\" también utilizan el disco."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "Japonés de 106 teclas"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
+msgstr "Enviar reporte por correo-e luego de cada respaldo a :"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
-msgstr ""
-"No se pueden instalar los paquetes necesarios para compartir sus escáneres."
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr "Borrar los archivos tar del disco luego de respaldar a otro soporte."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Esto tomará algunos minutos."
+#: ../../standalone/drakbackup_.c:2324
+msgid "What"
+msgstr "Qué"
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
+#: ../../standalone/drakbackup_.c:2329
+msgid "Where"
+msgstr "Dónde"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "June"
-msgstr "Junio"
+#: ../../standalone/drakbackup_.c:2334
+msgid "When"
+msgstr "Cuándo"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Usar los escáneres en computadoras remotas"
+#: ../../standalone/drakbackup_.c:2339
+msgid "More Options"
+msgstr "Más opciones"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Delete selected rule"
-msgstr "Borrar la regla seleccionada"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+msgid "Drakbackup Configuration"
+msgstr "Configuración de Drakbackup"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Accediendo impresoras en servidores CUPS remotos"
+#: ../../standalone/drakbackup_.c:2376
+msgid "Please choose where you want to backup"
+msgstr "Por favor, elija dónde desea realizar la copia de respaldo"
-#: ../../any.pm:1
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Inserte un disquete en %s"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
+msgstr "en disco rígido"
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
-msgstr "Maldivas"
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
+msgstr "a través de la red"
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "compacto"
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
+msgstr "en CDROM"
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
-msgstr "1 minuto"
+#: ../../standalone/drakbackup_.c:2406
+msgid "on Tape Device"
+msgstr "en Dispositivo de Cinta"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: fat"
-msgstr "tipo: grueso"
+#: ../../standalone/drakbackup_.c:2449
+msgid "Please choose what you want to backup"
+msgstr "Por favor, elija qué desea respaldar"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "on channel %d id %d\n"
-msgstr "en el canal %d id %d\n"
+#: ../../standalone/drakbackup_.c:2450
+msgid "Backup system"
+msgstr "Respaldar el sistema"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
-msgstr ", dispositivo multifunción"
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
+msgstr "Respaldar usuarios"
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr "Laos"
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
+msgstr "Seleccionar manualmente el usuario"
-#: ../advertising/04-configuration.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2537
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!"
+"\n"
+"Backup Sources: \n"
msgstr ""
-"Mandrake Linux 9.2 le brinda el Centro de Control de Mandrake, una "
-"herramienta potente para adaptar por completo su computadora al uso que hace "
-"de la misma. Configure y personalice elementos tales como el nivel de "
-"seguridad, los periféricos (pantalla, ratón, teclado...), la conexión con la "
-"Internet, ¡y mucho más!"
+"\n"
+"Fuentes de respaldo: \n"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
+#: ../../standalone/drakbackup_.c:2538
+msgid ""
+"\n"
+"- System Files:\n"
msgstr ""
-"Activar/desactivar verificaciones de promiscuidad de tarjetas Ethernet."
+"\n"
+"- Archivos del sistema:\n"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
+#: ../../standalone/drakbackup_.c:2540
+msgid ""
+"\n"
+"- User Files:\n"
msgstr ""
-"No hay particiones FAT para redimensionar (o no queda espacio suficiente)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr "Subir"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
-msgstr "Cortafuegos"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr "Ãrea:"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr "Controladores (E)IDE/ATA"
+"\n"
+"- Archivos de usuario:\n"
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
+#: ../../standalone/drakbackup_.c:2542
+msgid ""
+"\n"
+"- Other Files:\n"
msgstr ""
-"Toda la E/S del sistema de archivos debería hacerse de manera sincrónica."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "Servidor de impresión"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Custom configuration"
-msgstr "Configuración personalizada"
+"\n"
+"- Otros archivos:\n"
-#: ../../standalone/drakpxe:1
+#: ../../standalone/drakbackup_.c:2544
#, 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"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-"Por favor, indique donde estará disponible la imagen de instalación.\n"
-"\n"
-"Si no tiene un directorio existente, por favor copie el contenido del CD o "
-"del DVD.\n"
"\n"
+"- Guardar en el disco en la ruta: %s\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint Pierre y Miquelon"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
-msgstr "Septiembre"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "guardando tema de Bootsplash..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
-msgstr "Portugal"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "¿Tiene alguna otra?"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", printing to %s"
-msgstr ", imprimiendo en %s"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Asignar nombre de máquina desde dirección DHCP"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to normal mode"
-msgstr "Cambiar al modo normal"
-
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
-msgstr "Genérico"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Cilindros %d a %d\n"
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+"\n"
+"- Borrar los archivos tar del disco luego de la copia de respaldo.\n"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
-msgstr "SU TEXTO AQUÃ"
+#: ../../standalone/drakbackup_.c:2553
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+"\n"
+"- Grabar en CD"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "New profile..."
-msgstr "Nuevo perfil..."
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
+msgstr "RW"
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
+#: ../../standalone/drakbackup_.c:2555
#, c-format
-msgid "NONE"
-msgstr "NINGUNO"
+msgid " on device: %s"
+msgstr " en el dispositivo: %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "¿A qué disco desea desplazarla?"
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
+msgstr " (multi-sesión)"
-#: ../../standalone/draksplash:1
+#: ../../standalone/drakbackup_.c:2557
#, c-format
-msgid "Display logo on Console"
-msgstr "Mostrar logo en la consola"
+msgid ""
+"\n"
+"- Save to Tape on device: %s"
+msgstr ""
+"\n"
+"- Guardar en cinta en el dispositivo: %s"
-#: ../../any.pm:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "Windows Domain"
-msgstr "Dominio Windows"
+msgid "\t\tErase=%s"
+msgstr "\t\tErase=%s"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:2561
#, c-format
-msgid "Saami (norwegian)"
-msgstr "Saami (noruego)"
+msgid ""
+"\n"
+"- Save via %s on host: %s\n"
+msgstr ""
+"\n"
+"- Guardar usando %s en el host: %s\n"
-#: ../../standalone/drakpxe:1
+#: ../../standalone/drakbackup_.c:2562
#, c-format
-msgid "Interface %s (on network %s)"
-msgstr "Interfaz %s (en la red %s)"
+msgid ""
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
+msgstr ""
+"\t\t nombre de usuario: %s\n"
+"\t\t en ruta: %s \n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
-msgstr "INFO"
+#: ../../standalone/drakbackup_.c:2563
+msgid ""
+"\n"
+"- Options:\n"
+msgstr ""
+"\n"
+"- Opciones:\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
-msgstr "Wallis y Futuna"
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
+msgstr "\tNo incluir archivos del sistema\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "¡Primero debe crear /etc/dhcpd.conf!"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
+msgstr "\tRespaldar usando tar y bzip2\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
-msgstr "FPU está presente"
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
+msgstr "\tRespaldar usando tar y gzip\n"
-#: ../../services.pm:1
+#: ../../standalone/drakbackup_.c:2572
#, c-format
msgid ""
-"No additional information\n"
-"about this service, sorry."
+"\n"
+"- Daemon (%s) include:\n"
msgstr ""
-"No hay información adicional para\n"
-"este servicio. Disculpe."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "No se encontraron escáneres disponibles en su sistema.\n"
+"\n"
+"- Servidor (%s) incluye :\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Construir NIC única -->"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
+msgstr "\t-Disco rígido.\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "Islas Marshall"
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
+msgstr "\t-CDROM.\n"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "¿Es correcto?"
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
+msgstr "\t-Tape \n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
+msgstr "\t-Red por FTP.\n"
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr "Contraseña de root"
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
+msgstr "\t-Red por SSH.\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Construir todos los núcleos -->"
+#: ../../standalone/drakbackup_.c:2578
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Red por rsync.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVDRAM device"
-msgstr "Dispositivo DVDRAM"
+#: ../../standalone/drakbackup_.c:2579
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Red por webdav.\n"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
-msgstr "si se pone en sí, reportar archivos sin dueño."
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
+msgstr ""
+"Sin configuración, por favor haga clic sobre el Asistente o Avanzado.\n"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2587
msgid ""
-"You don't have a swap partition.\n"
+"List of data to restore:\n"
"\n"
-"Continue anyway?"
msgstr ""
-"No dispone de una partición de intercambio\n"
+"Lista de datos a restaurar:\n"
"\n"
-"¿Desea continuar de todas formas?"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Version: "
-msgstr "Versión: "
+#: ../../standalone/drakbackup_.c:2754
+msgid ""
+"List of data corrupted:\n"
+"\n"
+msgstr ""
+"Lista de datos corruptos:\n"
+"\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Server IP missing!"
-msgstr "¡Falta la IP del servidor!"
+#: ../../standalone/drakbackup_.c:2756
+msgid "Please uncheck or remove it on next time."
+msgstr "Por favor, desmarque o quítelo la próxima vez."
-#: ../../lang.pm:1
-#, c-format
-msgid "Suriname"
-msgstr "Surinam"
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
+msgstr "Los archivos de respaldo están corruptos"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use a floppy"
-msgstr "Usar un disquete"
+#: ../../standalone/drakbackup_.c:2787
+msgid " All of your selected data have been "
+msgstr " Todos los datos seleccionados han sido "
-#: ../../any.pm:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "Enable ACPI"
-msgstr "Habilitar ACPI"
+msgid " Successfuly Restored on %s "
+msgstr " Recuperados satisfactoriamente en %s"
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
-msgstr "Dar acceso de escritura a usuarios regulares"
+#: ../../standalone/drakbackup_.c:2906
+msgid " Restore Configuration "
+msgstr " Configuración de la restauración"
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
-msgstr "Entorno gráfico"
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
+msgstr "Se pueden restaurar los otros archivos."
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
-msgstr "Gibraltar"
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
+msgstr ""
+"Lista de usuarios a restaurar (sólo importa la fecha más reciente por "
+"usuario)"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Do nothing"
-msgstr "Hacer nada"
+#: ../../standalone/drakbackup_.c:3019
+msgid "Backup the system files before:"
+msgstr "Respaldar los archivos del sistema anteriores a:"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete Client"
-msgstr "Borrar cliente"
+#: ../../standalone/drakbackup_.c:3021
+msgid "please choose the date to restore"
+msgstr "Por favor, elija la fecha para restaurar"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "Tipo de sistema de. archivos: "
+#: ../../standalone/drakbackup_.c:3057
+msgid "Use Hard Disk to backup"
+msgstr "Usar el disco rígido para copia de respaldo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting network..."
-msgstr "Iniciando la red ..."
+#: ../../standalone/drakbackup_.c:3060
+msgid "Please enter the directory to save:"
+msgstr "Por favor, ingrese el directorio a guardar:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
-msgstr "Vietnam"
+#: ../../standalone/drakbackup_.c:3103
+msgid "FTP Connection"
+msgstr "Conexión FTP"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Descripción de los campos"
+#: ../../standalone/drakbackup_.c:3110
+msgid "Secure Connection"
+msgstr "Conexión segura"
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr "Optimice su seguridad"
+#: ../../standalone/drakbackup_.c:3134
+msgid "Restore from Hard Disk."
+msgstr "Restaurar desde el disco rígido."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
msgstr ""
-"\n"
-"\n"
-" Gracias:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
+"Por favor, ingrese el directorio donde se almacenan las copias de respaldo"
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Help"
-msgstr "Ayuda"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
-msgstr "Verificar si los dispositivos de red están en modo promiscuo"
+#: ../../standalone/drakbackup_.c:3204
+msgid "Select another media to restore from"
+msgstr "Elija otro soporte desde el cual restaurar"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Your personal phone number"
-msgstr "Su número de teléfono personal"
+#: ../../standalone/drakbackup_.c:3206
+msgid "Other Media"
+msgstr "Otros soportes"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which size do you want to keep for Windows on"
-msgstr "¿Qué tamaño desea conservar para Windows en la"
+#: ../../standalone/drakbackup_.c:3211
+msgid "Restore system"
+msgstr "Restaurar archivos del sistema"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"La(s) página(s) de prueba se enviaron al demonio de impresión.\n"
-"Puede que pase algo de tiempo antes de que comience la impresión.\n"
+#: ../../standalone/drakbackup_.c:3212
+msgid "Restore Users"
+msgstr "Restaurar usuarios"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Username required"
-msgstr "Se necesita nombre de usuario"
+#: ../../standalone/drakbackup_.c:3213
+msgid "Restore Other"
+msgstr "Restaurar otros"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Device"
-msgstr "Dispositivo"
+#: ../../standalone/drakbackup_.c:3215
+msgid "select path to restore (instead of /)"
+msgstr "seleccione la ruta para restaurar (en vez de /)"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-"Dependiendo del idioma predeterminado que eligió en , DrakX selecciona\n"
-"automáticamente un tipo particular de configuración del teclado. Sin\n"
-"embargo, podría no tener un teclado que se corresponde exactamente con su\n"
-"idioma: por ejemplo, si Usted es un argentino que habla inglés, todavía\n"
-"podría desear que su teclado sea un teclado inglés. O si habla castellano\n"
-"pero está en Inglaterra puede estar en la misma situación en la cual su\n"
-"idioma nativo y su teclado no coinciden. En cualquier caso, este paso de\n"
-"instalación le permitirá elegir un teclado apropiado de una lista.\n"
-"\n"
-"Haga clic sobre el botón \"%s\" para que se le presente la lista completa\n"
-"de los teclados soportados.\n"
-"\n"
-"Si eligió una distribución de teclado basada en un alfabeto no latino, el\n"
-"próximo diálogo le permitirá elegir la combinación de teclas que cambiará\n"
-"la distribución del teclado entre la latina y la no latina."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Opciones de la impresora SMB (Windows 9x/NT)"
+"Realizar respaldo nuevo antes de restaurar (sólo para respaldos "
+"incrementales)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
+msgstr "Borrar directorios de los usuarios antes de restaurar."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
+#: ../../standalone/drakbackup_.c:3334
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-"Cambió la lista de usuarios válidos, volviendo a escribir archivo de "
-"configuración."
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "mkinitrd optional arguments"
-msgstr "argumentos opcionales para mkinitrd"
+"Restaurar entrada\n"
+"del Catálogo seleccionada"
-#: ../advertising/03-software.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3344
msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
+"Restore Selected\n"
+"Files"
msgstr ""
-"Navegue la web con Mozilla o Konqueror, lea su correo electrónico con "
-"Evolution o KMail, cree sus documentos con OpenOffice.org."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protocolo para el resto del mundo"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print test pages"
-msgstr "Imprimir la(s) página(s) de prueba"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Activate now"
-msgstr "Activar ahora"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
-msgstr "64 MB o más"
+"Restaurar los archivos\n"
+"seleccionados"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3361
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."
+"Change\n"
+"Restore Path"
msgstr ""
-"Por favor, seleccione las páginas de prueba que quiere imprimir.\n"
-"Nota: la página de prueba de foto puede tardar mucho tiempo en ser impresa e "
-"incluso en impresoras láser con muy poca memoria puede que no salga. En la "
-"mayoría de los casos, basta con imprimir la página de prueba estándar."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Por favor, seleccione el dispositivo donde está conectado su %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Not formatted\n"
-msgstr "No formateado\n"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Periodic Checks"
-msgstr "Verificaciones periódicas"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "PXE Server Configuration"
-msgstr "Configuración del servidor PXE"
+"Cambiar la\n"
+"ruta de restauración"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:3427
#, c-format
-msgid "Backup the system files before:"
-msgstr "Respaldar los archivos del sistema anteriores a:"
+msgid "Backup files not found at %s."
+msgstr "Copiar archivos no encontrados en %s."
-#: ../../security/level.pm:1
+#: ../../standalone/drakbackup_.c:3440
#, c-format
msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-"Éste es el nivel de seguridad estándar recomendado para una máquina que se\n"
-"utilizará para conectarse a la Internet como cliente."
-
-#: ../../any.pm:1
-#, c-format
-msgid "First floppy drive"
-msgstr "Primera disquetera"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Archivo/_Salir"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak"
-msgstr "Dvorak"
+"Inserte el CD con la etiqueta de volumen %s\n"
+" en la unidad de CD bajo el punto de montaje /mnt/cdrom"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose the new size"
-msgstr "Eligiendo el tamaño nuevo"
+#: ../../standalone/drakbackup_.c:3440
+msgid "Restore From CD"
+msgstr "Restaurar desde CD"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakbackup_.c:3442
#, c-format
-msgid "Media class"
-msgstr "Clase de soporte"
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr "No es el CD correcto. El disco está etiquetado %s."
-#: ../../standalone/XFdrake:1
+#: ../../standalone/drakbackup_.c:3452
#, c-format
-msgid "You need to log out and back in again for changes to take effect"
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
-"Debe desconectarse y volver a conectarse para que los cambios tengan efecto"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
-msgstr "Esta versión de Scannerdrake deconoce al %s."
+"Inserte la cinta con la etiqueta de volumen %s\n"
+" en la unidad de cinta %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Faroe Islands"
-msgstr "Islas Feroe"
+#: ../../standalone/drakbackup_.c:3452
+msgid "Restore From Tape"
+msgstr "Restaurar desde cinta"
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakbackup_.c:3454
#, c-format
-msgid "Restart XFS"
-msgstr "Reiniciar XFS"
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr "No es la cinta adecuada. La cinta está etiquetada %s."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
-msgstr "Añadir host/red"
+#: ../../standalone/drakbackup_.c:3474
+msgid "Restore Via Network"
+msgstr "Restaurar por medio de la red"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakbackup_.c:3474
#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Scannerdrake no se iniciará ahora."
+msgid "Restore Via Network Protocol: %s"
+msgstr "Restaurar por medio del protocolo de red: %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model name"
-msgstr "Nombre del modelo"
+#: ../../standalone/drakbackup_.c:3475
+msgid "Host Name"
+msgstr "Nombre del host"
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
-msgstr "Albania"
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
+msgstr "Ruta del host o módulo"
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr "Territorio Británico del Océano Ãndico"
+#: ../../standalone/drakbackup_.c:3483
+msgid "Password required"
+msgstr "Se necesita contraseña"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Normal Mode"
-msgstr "Modo normal"
+#: ../../standalone/drakbackup_.c:3489
+msgid "Username required"
+msgstr "Se necesita nombre de usuario"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "¡No hay CDR/DVDR en la unidad!"
+#: ../../standalone/drakbackup_.c:3492
+msgid "Hostname required"
+msgstr "Se necesita nombre del host"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer connection type"
-msgstr "Tipo de conexión de la impresora"
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
+msgstr "Se necesita Ruta o Módulo"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
-msgstr "¡No hay ningún adaptador de red en su sistema!"
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
+msgstr "Archivos restaurados..."
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network %s"
-msgstr "Red %s"
+#: ../../standalone/drakbackup_.c:3513
+msgid "Restore Failed..."
+msgstr "Falló la restauración..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
-msgstr "Malayo"
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
+msgstr "Restaurar todas las copias de respaldo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
-msgstr "¡La opción %s está fuera de rango"
+#: ../../standalone/drakbackup_.c:3760
+msgid "Custom Restore"
+msgstr "Restauración personalizada"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connect %s"
-msgstr "Conectar %s"
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
+msgstr "CD en su lugar - continuar."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "Reiniciando CUPS..."
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
+msgstr "Examinar un repositorio de restauración nuevo."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Tarjetas de Impresora/Escaner/Foto en \"%s\""
+#: ../../standalone/drakbackup_.c:3813
+msgid "Restore From Catalog"
+msgstr "Restaurar desde Catálogo"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
-msgstr "Continuar sin llave USB"
+#: ../../standalone/drakbackup_.c:3841
+msgid "Restore Progress"
+msgstr "Progreso de restauración"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Punto de montaje %s duplicado"
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+msgid "Previous"
+msgstr "Anterior"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
-msgstr "si se pone en sí, ejecutar verificaciones chkrootkit."
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+msgid "Save"
+msgstr "Guardar"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "Configuración de la conexión"
+#: ../../standalone/drakbackup_.c:3946
+msgid "Build Backup"
+msgstr "Realizar copia de respaldo"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|Generic"
-msgstr "Desconocido|Genérico"
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+msgid "Restore"
+msgstr "Restaurar"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4189
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."
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
msgstr ""
-"Es probable que cuando instale Mandrake Linux algunos paquetes se hayan\n"
-"actualizado desde la publicación inicial. Se pueden haber corregido algunos\n"
-"errores y solucionado problemas de seguridad. Para permitir que Usted se\n"
-"beneficie de estas actualizaciones, ahora se le propone transferirlas desde\n"
-"la Internet. Marque \"%s\" si tiene funcionando una conexión con la\n"
-"Internet, o \"%s\" si prefiere instalar los paquetes actualizados más\n"
-"tarde.\n"
-"\n"
-"Si elige \"%s\" se mostrará una lista de lugares desde los que se pueden\n"
-"obtener las actualizaciones. Elija el más cercano a Usted. Luego aparece un\n"
-"árbol de selección de paquetes: revise la selección y presione \"%s\" para\n"
-"transferir e instalar los paquetes seleccionados, o \"%s\" para abortar."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-msgstr "Myanmar"
-
-#: ../../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
-#, c-format
-msgid "Quit"
-msgstr "Salir"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "Asignación automática"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "¿Verificar el disco en busca de bloques malos?"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Other MultiMedia devices"
-msgstr "Otros dispositivos multimedios"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "burner"
-msgstr "grabadora"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Bug Description/System Information"
-msgstr "Información del sistema/Descripción del error"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (Default is all users)"
-msgstr "(Todos los usuarios predeterminadamente)"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "No remote machines"
-msgstr "Ninguna máquina remota"
+"Error enviando correo con sendmail.\n"
+" Su correo-e de reporte no se envió.\n"
+" Por favor, configure a sendmail"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4195
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."
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
msgstr ""
-"\n"
-"Bienvenido al Asistente de configuración de Impresoras\n"
-"\n"
-"Este asistente lo ayudará a instalar sus impresoras conectadas a esta "
-"computadora.\n"
-"\n"
-"Si tiene impresoras conectadas a esta máquina, por favor enciéndalas para "
-"que se puedan detectar automáticamnte.\n"
-"\n"
-"Haga clic sobre \"Siguiente\" cuando esté listo, o sobre \"Cancelar\" si "
-"Usted no desea configurar sus impresoras ahora."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "Autentificación NIS"
+"Error enviando el archivo por FTP.\n"
+" Por favor, corrija su configuración de FTP."
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4209
msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
msgstr ""
-"La opción \"Restringir las opciones de la línea de comandos\"\n"
-"no tiene sentido sin contraseña"
+"Deben estar instalados los paquetes siguientes:\n"
+" @list_of_rpm_to_install"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Ahora, la conexión compartida a Internet está activada ahora"
+#: ../../standalone/drakbackup_.c:4232
+msgid "Please select data to restore..."
+msgstr "Por favor, seleccione los datos a restaurar..."
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "Emiratos Ãrabes Unidos"
+#: ../../standalone/drakbackup_.c:4267
+msgid "Please select media for backup..."
+msgstr "Por favor, seleccione el soporte para la copia de respaldo..."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "E/S_0 de la tarjeta"
+#: ../../standalone/drakbackup_.c:4275
+msgid "Please select data to backup..."
+msgstr "Por favor, elija los datos a respaldar..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
-msgstr "Deshabilitar configuración local"
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
+msgid ""
+"No configuration file found \n"
+"please click Wizard or Advanced."
+msgstr ""
+"No se econtró el archivo de configuración,\n"
+" por favor haga clic sobre Asistente o Avanzado."
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "Tailandia"
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
+msgstr "En desarrollo ... por favor, espere."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "E/S_1 de la tarjeta"
+#: ../../standalone/drakbackup_.c:4382
+msgid "Backup system files"
+msgstr "Respaldar archivos del sistema"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
-msgstr "Buscar:"
+#: ../../standalone/drakbackup_.c:4384
+msgid "Backup user files"
+msgstr "Respaldar archivos de usuarios"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "Kazajstán"
+#: ../../standalone/drakbackup_.c:4386
+msgid "Backup other files"
+msgstr "Respaldar otros archivos"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
-msgstr "Routers:"
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
+msgstr "Progreso total"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Write"
-msgstr "Escribir"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
+msgstr "Envío de archivos por FTP"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Mostrar todas las impresoras CUPS remotas"
+#: ../../standalone/drakbackup_.c:4416
+msgid "Sending files..."
+msgstr "Enviando archivos..."
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Instalación %s de Mandrake Linux"
+#: ../../standalone/drakbackup_.c:4500
+msgid "Backup Now from configuration file"
+msgstr "Respaldar Ahora desde archivo de configuración"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
-msgstr "Controlador desconocido"
+#: ../../standalone/drakbackup_.c:4505
+msgid "View Backup Configuration."
+msgstr "Ver configuración del respaldo"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "Teclado tailandés"
+#: ../../standalone/drakbackup_.c:4526
+msgid "Wizard Configuration"
+msgstr "Configuración del Asistente"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr "Isla Bouvet"
+#: ../../standalone/drakbackup_.c:4531
+msgid "Advanced Configuration"
+msgstr "Configuración avanzada"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "Opciones de llamada por módem"
+#: ../../standalone/drakbackup_.c:4536
+msgid "Backup Now"
+msgstr "Respaldar Ahora"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "Si no se proporciona un puerto, se tomará 631 como predeterminado."
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
+msgstr "Drakbackup"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4624
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 ""
-" - Archivos de configuración del sistema por cliente:\n"
-" \t\tA través de clusternfs, cada cliente sin disco puede tener sus "
-"archivos de configuración únicos\n"
-" \t\ten el sist. de archivos raíz del servidor. Al permitir la "
-"configuración de hardware del cliente local,\n"
-" \tlos clientes pueden personalizar archivos como /etc/modules.conf, /"
-"etc/sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard sobre una base por cliente.\n"
-"\n"
-" Nota: Habilitar la configuración local del hardware del cliente "
-"habilita conexión de root al servidor \n"
-" de terminal en cada cliente que tenga esta opción habilitada. Se "
-"puede volver a deshabilitar\n"
-" esto, conservando los archivos de configuración, una vez que configuró "
-"la máquina cliente."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
+"options description:\n"
+"\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
+msgstr ""
+"descripción de las opciones:\n"
+"\n"
+" En este paso Drakbackup le permite cambiar:\n"
+"\n"
+" - El modo de compresión:\n"
+" \n"
+" Si marca compresión bzip2, comprimirá mejor sus datos\n"
+" que gzip (alrededor del 2-10 %).\n"
+" Por defecto, esta opción no está marcada dado que este\n"
+" modo de compresión necesita más tiempo (100 veces más)\n"
+" \n"
+" - El modo de actualización:\n"
+"\n"
+" Esta opción actualizará su respaldo, pero no es\n"
+" realmente útil ya que necesita descomprimirlo\n"
+" antes que pueda actualizarlo.\n"
+" \n"
+" - el modo .backupignore:\n"
+"\n"
+" Al igual que cvs, Drakbackup ignorará todas las referencias\n"
+" incluídas en los archivos .backupignore de cada directorio.\n"
+" ej: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
+
+#: ../../standalone/drakbackup_.c:4654
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."
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-"¡Cambie su CD-ROM!\n"
"\n"
-"Inserte el CD-ROM etiquetado como \"%s\" en la unidad y pulse Aceptar cuando "
-"lo haya hecho.\n"
-"Si no lo posee, pulse Cancelar para cancelar la instalación desde este CD-"
-"ROM."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "Polaco"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Online"
-msgstr "Mandrake Online"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
-msgstr "\t-Red por webdav.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", dispositivo multifunción en puerto paralelo"
+" Algunos errores con sendmail son causados por\n"
+" una configuración mala de postfix. Para resolverlo tiene\n"
+" que configurar myhostname o mydomain en /etc/postfix/main.cf\n"
+"\n"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4662
msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
msgstr ""
-"No se ha detectado ningún adaptador de red en su sistema. Por favor, ejecute "
-"la herramienta de configuración del hardware."
-
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "Máscara de red"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "No hard drives found"
-msgstr "¡No se encontraron discos rígidos!"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "2 botones"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "¿De qué tipo es su conexión RDSI?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "Etiqueta"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "Guardar en un disquete"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check open ports"
-msgstr "Verificar puertos abiertos"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Edit selected printer"
-msgstr "Editar impresora seleccionada"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Detección automática de impresoras"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "¿Cuál de las siguientes es su tarjeta RDSI?"
+"descripción de las opciones:\n"
+"\n"
+" - Respladar archivos del sistema:\n"
+" \n"
+"\tEsta opción permite respaldar su directorio /etc, que\n"
+"\tcontiene todos los archivos de configuración. Por favor\n"
+"\ttenga cuidado durante la restauración de no sobre-escribir:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Respaldar archivos de usuario:\n"
+"\n"
+"\tEsta opción permite seleccionar todos los usuarios que\n"
+"\tdesea respaldar.\n"
+"\tPara preservar espacio, se recomienda no incluir el\n"
+"\tcache del navegador web.\n"
+"\n"
+" - Respaldar otros archivos:\n"
+"\n"
+"\tEsta opción permite añadir más datos a guardar.\n"
+"\tCon el otro respaldo no es posible, por ahora,\n"
+"\tseleccionar el respaldo incremental.\t\t\n"
+" \n"
+" - Respaldo incremental:\n"
+"\n"
+"\tEl respaldo incremental es la opción más potente.\n"
+"\tLe permite respaldar todos sus datos la primera\n"
+"\tvez, y luego sólo aquellos que cambiaron.\n"
+"\tLuego, podrá, durante la etapa de restauración,n\trestaurar sus datos "
+"desde una fecha especificada.\n"
+"\t\n"
+"\tSi no ha seleccionado esta opción todos los\n"
+"\trespaldos antiguos se borran antes de volver a respaldar.\n"
+"\n"
+"\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4701
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."
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
+"\n"
msgstr ""
-"NFS es un protocolo muy popular para compartir archivos en redes TCP/IP.\n"
-"Este servicio proporciona la funcionalidad de servidor NFS, que se "
-"configura\n"
-"a través del archivo /etc/exports."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Msec"
-msgstr "Msec"
+"descripción de la restauración:\n"
+" \n"
+"Sólo se utilizará la fecha más reciente, ya que con respaldos \n"
+"incrementales sólo es necesario restaurar uno a uno los antiguos.\n"
+"\n"
+"Por lo tanto, si no desea restaurar un usuario, por favor desmarque\n"
+"todas las casillas de los mismos.\n"
+"\n"
+"En caso contrario, sólo puede seleccionar alguno de éstos\n"
+"\n"
+" - Respaldos incrementales:\n"
+"\n"
+"\tEl respaldo incremental es la opción más potente.\n"
+"\tLe permite respaldar todos sus datos la primera\n"
+"\tvez, y luego sólo aquellos que cambiaron.\n"
+"\tLuego, podrá, durante la etapa de restauración,\n"
+"\trestaurar sus datos desde una fecha especificada.\n"
+"\tSi no ha seleccionado esta opción todos los\n"
+"\trespaldos antiguos se borran antes de volver a respaldar...\n"
+"\n"
+"\n"
+"\n"
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4727
+#, fuzzy
msgid ""
-"=> Notice, a label changed:\n"
-"%s"
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
-"=> Aviso, una etiqueta cambió:\n"
-"%s"
+" Copyright (C) 2001 MandrakeSoft por DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
-msgstr "Cantidad de búferes de captura :"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "¿Su elección? (0/1, por defecto '%s') "
+#: ../../standalone/drakbackup_.c:4729
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+" actualizaciones 2002 MandrakeSoft por Stew Benedict <sbenedict"
+"\\@mandrakesoft.com>"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4732
+#, fuzzy
msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a file system).\n"
+"Description:\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"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\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"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\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"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
"\n"
-"Click on \"%s\" when you are ready to format partitions.\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\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 ""
-"Se debe formatear cualquier partición nueva que ha sido definida para que\n"
-"se pueda utilizar (formatear significa crear un sistema de archivos)\n"
+" Copyright (C) 2001 MandrakeSoft por DUPONT Sebastien <dupont_s\\@epita.fr>\n"
"\n"
-"Puede desear volver a formatear algunas particiones ya existentes para\n"
-"borrar cualquier dato que pudieran contener. Si así lo desea, por favor\n"
-"seleccione también dichas particiones.\n"
+" 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"
-"Por favor note que no es necesario volver a formatear todas las particiones\n"
-"preexistentes. Debe volver a formatear las particiones que contienen el\n"
-"sistema operativo (tales como \"/\", \"/usr\" o \"/var\") pero no tiene que\n"
-"volver a formatear particiones que contienen datos que desea preservar\n"
-"(típicamente \"/home\")\n"
+" 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"
+" _____________________\n"
+"\n"
+"Descripción:\n"
+"\n"
+" Drakbackup se usa para respaldar su sistema.\n"
+" Durante la configuración puede seleccionar:\n"
+"\t- Archivos del sistema,\n"
+"\t- Archivos de usuarios,\n"
+"\t- Otros archivos.\n"
+"\to Todo su sistema ... y Otros (como Particiones Windows)\n"
+"\n"
+" Drakbackup le permite respaldar su sistema sobre:\n"
+"\t- Disco rígido.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (con autoboot, rescue y autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Cinta.\n"
+"\n"
+" Drakbackup le permite restaurar su sistema a un\n"
+" directorio seleccionado por el usuario.\n"
+"\n"
+" Predeterminadamente se almacenarán los respaldos en su\n"
+" directorio /var/drakbackup.\n"
"\n"
-"Por favor, tenga sumo cuidado cuando selecciona las particiones. Después de\n"
-"formatear se borrarán todos los datos en las particiones seleccionadas y no\n"
-"podrá recuperarlos en absoluto.\n"
+" Archivo de configuración:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
"\n"
-"Haga clic sobre \"%s\" cuando esté listo para formatear las particiones.\n"
"\n"
-"Haga clic sobre \"%s\" si desea elegir otra partición para la instalación\n"
-"de su sistema operativo Mandrake Linux nuevo.\n"
+"Paso de restauración:\n"
+" \n"
+" Durante la restauración, DrakBackup quitará su \n"
+" directorio original y verificará que todos \n"
+" los archivos de respaldo no estén corruptos. Se \n"
+" recomienda que haga un último respaldo antes de restaurar.\n"
+"\n"
"\n"
-"Haga clic sobre \"%s\" si desea seleccionar las particiones en las que se\n"
-"buscarán bloques defectuosos en el disco."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "French"
-msgstr "Francés"
+#: ../../standalone/drakbackup_.c:4769
+msgid ""
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
+msgstr ""
+"descricpión de las opciones:\n"
+"\n"
+"Por favor, tenga cuidado cuando use respaldos por ftp, porque\n"
+"sólo los respaldos ya hechos se envían al servidor.\n"
+"Por el momento, necesita realizar el respaldo en su disco rígido\n"
+"antes de enviarlo al servidor.\n"
+"\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTY)"
-msgstr "Checo (QWERTY)"
+#: ../../standalone/drakbackup_.c:4778
+msgid ""
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
+msgstr ""
+"\n"
+"Problemas durante la restauración:\n"
+"\n"
+"Durante el paso de restauración, Drakbackup verificará todos los\n"
+"archivos de respaldo antes de restaurarlos.\n"
+"Antes de la restuaración, Drakbackup quitará el\n"
+"directorio original, y perderá todos los datos en el mismo.\n"
+"Es importante ser cuidadoso y no modificar los archivos de\n"
+"datos de respaldo a mano.\n"
-#: ../../security/l10n.pm:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Allow X Window connections"
-msgstr "Permitir conexiones X Window"
+msgid "Installation of %s failed. The following error occured:"
+msgstr "Falló la instalación de %s. Ocurrió el siguiente error:"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "Detección de hardware en progreso"
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
+msgstr "Herramienta de Reporte de Errores de Mandrake"
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
-#, c-format
-msgid "Net Device"
-msgstr "Dispositivo de red"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Aisstente Inicial"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "Resumen"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Herramienta de sincronización"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-"(Puertos paralelo: /dev/lp0, /dev/lp1, ..., equivalen a LPT1:, LPT2, ..., "
-"1er impresora USB: /dev/usb/lp0, 2da impresora USB: /dev/usb/lp1, ...) "
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+msgid "Standalone Tools"
+msgstr "Herramientas 'standalone'"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Next"
-msgstr "Siguiente"
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "No puede instalar el cargador de arranque en una partición %s\n"
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msec"
-#: ../../network/network.pm:1
-#, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp/zeroconf)"
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Control remoto"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Bienvenido.\n"
-"\n"
-"Los parámetros de la instalación automáticas están disponibles en las "
-"secciones de la izquierda"
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Administrador de software"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
-msgstr ""
-"se necesita el paquete 'ImageMagick' para un funcionamiento correcto.\n"
-"Haga clic sobre \"Aceptar\" para instalarlo o sobre \"Cancelar\" para salir"
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Telnet server"
-msgstr "Servidor Telnet"
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Herramienta para migrar desde Windows"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lituano \"numérico\" QWERTY"
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
-#: ../../install_any.pm:1
-#, c-format
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Asistentes de configuración"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Application:"
+msgstr "Aplicación:"
+
+#: ../../standalone/drakbug_.c:76
+msgid "Package: "
+msgstr "Paquete:"
+
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
+msgstr "Núcleo:"
+
+#: ../../standalone/drakbug_.c:78
+msgid "Release: "
+msgstr "Versión:"
+
+#: ../../standalone/drakbug_.c:93
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
"\n"
"\n"
-"Do you really want to remove these packages?\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
msgstr ""
-"Se quitarán los paquetes siguientes para permitir actualizar su sistema: %s\n"
"\n"
"\n"
-"¿Realmente desea quitar estos paquetes?\n"
+"Para enviar un reporte de errores, haga clic sobre el botón Reporte.\n"
+"Esto abrirá una ventana del navegador web en https://drakbug.mandrakesoft."
+"com\n"
+"donde encontrará un formulario para completar. La información que se\n"
+"muestra arriba será transferida a ese servidor\n"
+"\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
-msgstr "Anguilla"
+#: ../../standalone/drakbug_.c:112
+msgid "Report"
+msgstr "Reporte"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "Dominio NIS"
+#: ../../standalone/drakbug_.c:148
+msgid "Not installed"
+msgstr "No instalado"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "Antártica"
+#: ../../standalone/drakbug_.c:160
+#, fuzzy
+msgid "Package not installed"
+msgstr "No instalado"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Archivos de usuario:\n"
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
+msgstr "conectando con el asistente Bugzilla..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
-msgstr "Opciones de montaje"
+#: ../../standalone/drakbug_.c:180
+msgid "No browser available! Please install one"
+msgstr "¡No hay un navegador disponible! Por favor, instale uno"
-#: ../../lang.pm:1
+#: ../../standalone/drakconnect_.c:75
#, c-format
-msgid "Jamaica"
-msgstr "Jamaica"
+msgid "Network configuration (%d adapters)"
+msgstr "Configuración de la red (%d adaptadores)"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
-msgstr ""
-"Asignar dispositivos 'crudos' a dispositivos de bloque (como las particiones "
-"de los discos), para usar aplicaciones como Oracle o reproductores DVD"
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+msgid "Profile: "
+msgstr "Perfil: "
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Preparando la instalación. Espere, por favor"
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
+msgstr "Borrar perfil..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "Checo (QWERTZ)"
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
+msgstr "Perfil a borrar:"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Id tarjeta de red (útil para portátiles)"
+#: ../../standalone/drakconnect_.c:125
+msgid "New profile..."
+msgstr "Nuevo perfil..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "¡El número de puerto debe ser un número entero!"
+#: ../../standalone/drakconnect_.c:131
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Nombre del perfil a crear (el perfil nuevo se crea como copia del actual):"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "You must choose an image file first!"
-msgstr "¡Primero debe elegir un archivo de imagen!"
+#: ../../standalone/drakconnect_.c:157
+msgid "Hostname: "
+msgstr "Nombre de la máquina: "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Restaurar desde el disco rígido."
+#: ../../standalone/drakconnect_.c:164
+msgid "Internet access"
+msgstr "Acceso a Internet"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "Añadir al LVM"
+#: ../../standalone/drakconnect_.c:177
+msgid "Type:"
+msgstr "Tipo:"
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "Servidor DNS"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "Pasarela:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr "Trinidad y Tobago"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Interface:"
+msgstr "Interfaz:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD y LPRng no soportan impresoras IPP.\n"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
+msgstr "Estado:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host name or IP."
-msgstr "Nombre de la máquina o IP."
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
+msgstr "Por favor, espere"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Edit"
-msgstr "/_Editar"
+#: ../../standalone/drakconnect_.c:216
+msgid "Configure Internet Access..."
+msgstr "Configurar el acceso a Internet..."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "simple"
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+msgid "LAN configuration"
+msgstr "Configuración de la red local"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "Borrar todas"
+#: ../../standalone/drakconnect_.c:228
+msgid "Driver"
+msgstr "Controlador"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No test pages"
-msgstr "No hay páginas de prueba"
+#: ../../standalone/drakconnect_.c:228
+msgid "Interface"
+msgstr "Interfaz"
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr "Islas Malvinas"
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
+msgstr "Protocolo"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptador %s: %s"
+#: ../../standalone/drakconnect_.c:228
+msgid "State"
+msgstr "Estado"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Boot disk creation"
-msgstr "Creación de disquetes de arranque"
+#: ../../standalone/drakconnect_.c:240
+msgid "Configure Local Area Network..."
+msgstr "Configurar la red de área local..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
-msgstr "Lunes"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
+msgstr "Haga clic aquí para lanzar el asistente ->"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown model"
-msgstr "Modelo desconocido"
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "Asistente..."
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
-msgstr ""
-"si se pone en sí, verificar archivos/directorios que todos pueden escribir."
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
+msgstr "Aplicar"
-#: ../../help.pm:1
-#, c-format
-msgid "authentication"
-msgstr "autenticación"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Connected"
+msgstr "Conectado"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now"
-msgstr "Respaldar Ahora"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Not connected"
+msgstr "No conectado"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/_Archivo"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
+msgstr "Conectar..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Quitando la impresora de Star Office/OpenOffice.org/GIMP"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
+msgstr "Desconectar..."
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:400
msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Lanza el filtrado de paquetes para los núcleos de Linux de la serie 2.2,\n"
-"para configurar un cortafuegos que protege a su máquina de los ataques de la "
-"red."
+"Atención, se ha detectado otra conexión con la Internet, tal vez está usando "
+"su red"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Editable"
-msgstr "Editable"
+#: ../../standalone/drakconnect_.c:427
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"No tiene configurada ninguna interfaz.\n"
+"Configure la primera haciendo clic sobre 'Configurar'"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
-msgstr "¿Qué cliente dhcp desea utilizar? (dhcp-client es el predeterminado)"
+#: ../../standalone/drakconnect_.c:449
+msgid "LAN Configuration"
+msgstr "Configuración LAN"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr "Tamil (disposición ISCII)"
+msgid "Adapter %s: %s"
+msgstr "Adaptador %s: %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
-msgstr "Mayotte"
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
+msgstr "Protocolo de arranque"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
-msgstr ""
-"Ajustar el tamaño de la historia de comandos. Un valor de -1 significa "
-"ilimitada."
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
+msgstr "Iniciado al arranque"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d KB\n"
-msgstr "%d KB\n"
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
+msgstr "cliente DHCP"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Creando el disquete de instalación automática"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "activate now"
+msgstr "activar ahora"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for scanners ..."
-msgstr "Buscando escáneres..."
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "deactivate now"
+msgstr "desactivar ahora"
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
-msgstr "Rusia"
+#: ../../standalone/drakconnect_.c:499
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Todavía no se ha configurado esta interfaz.\n"
+"Lance el asistente de configuración en la ventana principal"
-#: ../../steps.pm:1
-#, c-format
-msgid "Partitioning"
-msgstr "Particionando"
+#: ../../standalone/drakconnect_.c:556
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"No tiene ninguna conexión a Internet.\n"
+"Primero debe crear una haciendo clic sobre 'Configurar'"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
-msgstr "tarjeta(s) de red detectada(s)"
+#: ../../standalone/drakconnect_.c:580
+msgid "Internet connection configuration"
+msgstr "Configuración de la conexión a Internet"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
-msgstr "Syslog"
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet Connection Configuration"
+msgstr "Configuración de la conexión a Internet"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create catalog!"
-msgstr "¡No se puede crear catálogo!"
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+msgid "Connection type: "
+msgstr "Tipo de conexión: "
-#: ../advertising/11-mnf.pl:1
-#, 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."
-msgstr ""
-"Complete su configuración de seguridad con este software fácil de usar que "
-"combina componentes de alto rendimiento tales como un cortafuegos, un "
-"servidor y cliente de red privada virtual (VPN), un sistema de detección de "
-"intrusos y un administrador del tráfico."
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
+msgstr "Parámetros"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
-msgstr "No hay espacio libre suficiente para la asignación automática"
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Pasarela"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "Contraseña de root"
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
+msgstr "Tarjeta ethernet"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable IP spoofing protection"
-msgstr "Habilitar protección contra engaño de IP"
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
+msgstr "Cliente DHCP"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
-msgstr ""
-"No hay controlador libre para su tarjeta de sonido (%s), pero hay uno "
-"propietario en \"%s\"."
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group :"
-msgstr "Grupo:"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Module name"
+msgstr "Nombre del módulo"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "Se perderán todos los datos de la partición %s tras cambiar su tamaño"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Size"
+msgstr "Tamaño"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Configuración de la conexión a Internet"
+#: ../../standalone/drakfloppy_.c:45
+msgid "drakfloppy"
+msgstr "drakfloppy"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
-msgstr ""
-"Añadir el nombre como una excepción al manejo de edad de contraseñas por "
-"msec."
+#: ../../standalone/drakfloppy_.c:63
+msgid "boot disk creation"
+msgstr "Creado de disquetes que arrancan"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "USB"
-msgstr "USB"
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr "predeterminado"
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakfloppy_.c:87
#, c-format
-msgid "Scanning for TV channels"
-msgstr "Buscando canales de TV"
+msgid "DrakFloppy Error: %s"
+msgstr "Error de DrakFloppy: %s"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
-msgstr "Núcleo:"
+#: ../../standalone/drakfloppy_.c:98
+msgid "kernel version"
+msgstr "versión del núcleo"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_About..."
-msgstr "/_Acerca..."
+#: ../../standalone/drakfloppy_.c:104
+msgid "General"
+msgstr "General"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
-msgstr "Indio (Bengalí)"
+#: ../../standalone/drakfloppy_.c:109
+msgid "Expert Area"
+msgstr "Ãrea experta"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
-msgstr "Preferencia: "
+#: ../../standalone/drakfloppy_.c:112
+msgid "mkinitrd optional arguments"
+msgstr "argumentos opcionales para mkinitrd"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Servicios: %d activados de %d registrados"
+#: ../../standalone/drakfloppy_.c:113
+msgid "Add a module"
+msgstr "Agregar un módulo"
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "Crear un disco de arranque"
+#: ../../standalone/drakfloppy_.c:133
+msgid "force"
+msgstr "forzar"
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "Islas Salomón"
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
+msgstr "si es necesario"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Por favor, pruebe su ratón:"
+#: ../../standalone/drakfloppy_.c:135
+msgid "omit scsi modules"
+msgstr "omitir módulos scsi"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(módulo %s)"
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
+msgstr "omitir módulos raid"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
-msgstr "Grupo de trabajo"
+#: ../../standalone/drakfloppy_.c:172
+msgid "Remove a module"
+msgstr "Quitar un módulo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Nombre de host o IP de la impresora"
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
+msgstr "Salida"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "down"
-msgstr "desactivada"
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
+msgstr "Crear el disquete"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "Host Path or Module"
-msgstr "Ruta del host o módulo"
+msgid "Be sure a media is present for the device %s"
+msgstr "Asegúrese que hay un soporte para el dispositivo %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakfloppy_.c:341
#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
-"El nombre de la impresora sólo debería contener letras, números y el guión "
-"bajo"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Show current interface configuration"
-msgstr "Mostrar la configuración corriente de la interfaz"
+"No hay soporte alguno, o está protegido contra escritura, en el dispositivo %"
+"s.\n"
+"Por favor, inserte uno."
-#: ../../standalone/printerdrake:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "Add Printer"
-msgstr "Añadir Impresora"
+msgid "Unable to fork: %s"
+msgstr "No se puede hacer fork: %s"
-#: ../../security/help.pm:1
+#: ../../standalone/drakfloppy_.c:349
#, 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."
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
msgstr ""
-"El argumento especifica si los clientes están autorizados a conectar\n"
-"al servidor X en el puerto TCP 6000 o no."
+"No se puede cerrar mkbootdisk adecuadamente: \n"
+" %s \n"
+" %s"
-#: ../../help.pm:1
-#, c-format
-msgid "Development"
-msgstr "Desarrollo"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
+msgstr "Buscar tipografías instaladas"
-#: ../../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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Done"
-msgstr "Hecho"
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
+msgstr "Desmarcar las tipografías instaladas"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Web Server"
-msgstr "Servidor web"
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
+msgstr "analizar todas las tipografías"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "Chile"
+#: ../../standalone/drakfont_.c:242
+msgid "no fonts found"
+msgstr "no se encontraron tipografías"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tNo incluir archivos del sistema\n"
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+msgid "done"
+msgstr "hecho"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Los controladores de impresión de inkjet que proporciona Lexmark sólo "
-"admiten impresoras locales, no impresoras en máquinas remotas o servidores "
-"de impresión. Por favor, conecte su impresora a un puerto local o "
-"configúrelo en la máquina a la que está conectada."
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
+msgstr "no se pueden encontrar tipografías en las particiones montadas"
-#: ../../printer/printerdrake.pm:1
-#, 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!"
-msgstr ""
-"Su dispositivo multifunción se configuró automáticamente para poder "
-"escanear. Ahora puede escanear con \"scanimage\" (\"scanimage -d hp:%s\" "
-"para especificar el escáner si tiene más de uno) desde la línea de comandos "
-"o con las interfaces gráficas \"xscanimage\" o \"xsane\". Si está usando "
-"GIMP, también puede escanear seleccionado la entrada apropiada del menú "
-"\"Archivo\"/\"Adquirir\". Ejecute también \"man scanimage\" en la línea de "
-"comandos para obtener más información.\n"
-"\n"
-"¡No utilice \"scannerdrake\" para este dispositivo!"
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
+msgstr "Volver a seleccionar tipografías correctas"
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "(%s ya fue añadido)"
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
+msgstr "no se pueden encontrar tipografías.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation in progress"
-msgstr "Instalación del cargador de arranque en progreso"
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
+msgstr "Buscar tipografías en la lista de instaladas"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
-msgstr ", usando comando %s"
+#: ../../standalone/drakfont_.c:359
+msgid "Fonts copy"
+msgstr "Copiar tipografías"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Las teclas Alt y Shift simultáneamente"
+#: ../../standalone/drakfont_.c:363
+msgid "True Type fonts installation"
+msgstr "Instalación de tipografías True Type"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
-msgstr "Flags"
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
+msgstr "por favor, espere mientras corre ttmkfdir..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Users"
-msgstr "Añadir/Quitar usuarios"
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
+msgstr "Instalación de True Type realizada"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Falta dirección IP del host/red."
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
+msgstr "Conversión de tipografías"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
-msgstr "cada semana"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
+msgstr "Construyendo Type1"
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "Configuración"
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
+msgstr "Referenciando a Ghostscript"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "La IP del host/red ingresada no es correcta.\n"
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
+msgstr "Conversión de tipografías TTF"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "Crear/Transferir claves de respaldo para SSH"
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
+msgstr "Conversión de tipografías PFM"
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr "Aquí tiene la lista completa de países disponibles"
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
+msgstr "Suprimir archivos temporales"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Página de prueba alternativa (A4)"
+#: ../../standalone/drakfont_.c:459
+msgid "Restart XFS"
+msgstr "Reiniciar XFS"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
+msgstr "Suprimir archivos de tipografías"
+
+#: ../../standalone/drakfont_.c:528
+msgid "xfs restart"
+msgstr "Reiniciar XFS"
+
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
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."
+"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 using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
msgstr ""
-"Si tiene todos los CD de la lista siguiente, haga clic sobre \"Aceptar\".\n"
-"Si no tiene ningún CD, haga clic sobre \"Cancelar\".\n"
-"Si sólo le faltan algunos CD, desmárquelos y haga clic sobre \"Aceptar\"."
+"Antes de instalar cualquier tipografía, asegúrese que tiene derecho de "
+"usarlas\n"
+"e instalarlas en su sistema.\n"
+"\n"
+"-Puede instalar las tipografías usando la manera normal. En casos raros,\n"
+"puede ser que tipografías \"falsas\" congelen a su servidor X."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
-msgstr "Por favor, espere"
+#: ../../standalone/drakfont_.c:621
+msgid "Fonts Importation"
+msgstr "Importación de tipografías"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
+msgstr "Obtener tipografías de Windows"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup user files"
-msgstr "Respaldar archivos de usuarios"
+#: ../../standalone/drakfont_.c:658
+msgid "Uninstall Fonts"
+msgstr "Desinstalar tipografías"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "New"
-msgstr "Nuevo"
+#: ../../standalone/drakfont_.c:669
+msgid "Advanced Options"
+msgstr "Opciones avanzadas"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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\"."
-msgstr ""
-"Este es el punto de decisión más crucial para la seguridad de su sistema\n"
-"GNU/Linux: tendrá que ingresar la contraseña de \"root\". El usuario\n"
-"\"root\" es el administrador del sistema y es el único autorizado a hacer\n"
-"actualizaciones, agregar usuarios, cambiar la configuración general del\n"
-"sistema, etc. Resumiendo, ¡\"root\" puede hacer de todo! Es por esto que\n"
-"deberá elegir una contraseña que sea difícil de adivinar - DrakX le dirá si\n"
-"la que eligió es demasiado fácil. Como puede ver no es forzoso ingresar una\n"
-"contraseña, pero le recomendamos encarecidamente que ingrese una. GNU/Linux\n"
-"es tan propenso a errores del operador como cualquier otro sistema\n"
-"operativo. Es importante que sea difícil convertirse en \"root\" debido a\n"
-"que \"root\" puede sobrepasar todas las limitaciones y borrar, sin\n"
-"intención, todos los datos que se encuentran en las particiones accediendo\n"
-"a las mismas sin el cuidado suficiente.\n"
+#: ../../standalone/drakfont_.c:677
+msgid "Font List"
+msgstr "Lista de tipografías"
+
+#: ../../standalone/drakfont_.c:737
+#, fuzzy
+msgid ""
"\n"
-"La contraseña debería ser una mezcla de caracteres alfanuméricos y tener al\n"
-"menos una longitud de 8 caracteres. Nunca escriba la contraseña de \"root\"\n"
-"- por ejemplo, en un papel - eso hace que sea muy fácil comprometer a un\n"
-"sistema.\n"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@mandrakesoft.com\n"
"\n"
-"Sin embargo, no debería hacer la contraseña muy larga o complicada ¡debido\n"
-"a que Usted debe poder recordarla!\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"
-"La contraseña no se mostrará en la pantalla a medida que Usted la teclee.\n"
-"Por lo tanto tendrá que teclear la contraseña dos veces para reducir la\n"
-"posibilidad de un error de tecleo. Si ocurre que Usted comete dos veces el\n"
-"mismo error de tecleo, tendrá que utilizar esta contraseña \"incorrecta\"\n"
-"la primera vez que se conecte.\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"
-"Si desea que el acceso a esta computadora esté controlado por un servidor\n"
-"de autenticación, haga clic sobre el botón \"%s\".\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"
-"Si su red usa los protocolos LDAP, NIS, o servicios de autenticación de PDC\n"
-"Dominio de Windows, seleccione el botón apropiado como método de\n"
-"autenticación para \"%s\".\n"
-"Si no sabe cual utilizar, debería preguntar al administrador de su red.\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"
"\n"
-"Si ocurre que tiene problemas para recordar contraseñas, puede elegir el\n"
-"botón \"%s\", si es que su computadora nunca estará conectada a la Internet\n"
-"o Usted confía absolutamente en cualquier persona que tenga acceso a la\n"
-"misma."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
-msgstr "Protección contra engaño de resolución de nombres"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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."
msgstr ""
-"En este punto, DrakX le permitirá elegir el nivel de seguridad deseado para\n"
-"la máquina. Como regla general, el nivel de seguridad debería ser mayor\n"
-"cuanto más cruciales sean los datos que tenga almacenados, o si la máquina\n"
-"estará directamente expuesta a la Internet. No obstante, un nivel de\n"
-"seguridad más alto generalmente se obtiene a expensas de la facilidad de\n"
-"uso.\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"
-"Si no sabe cual elegir, no cambie la opción predeterminada."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "Cargar desde un disquete"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Se detectó automáticamente la impresora siguientes. "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Uses command %s"
-msgstr "Usando comando %s"
+" 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."
+
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:862
+msgid "Choose the applications that will support the fonts:"
+msgstr "Elija las aplicaciones que soportarán las tipografías:"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
-msgstr "Disquete de arranque"
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
+msgstr "Ghostscript"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "Noruego"
+#: ../../standalone/drakfont_.c:877
+msgid "StarOffice"
+msgstr "StarOffice"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for new scanners ..."
-msgstr "Buscando escáneres nuevos..."
+#: ../../standalone/drakfont_.c:884
+msgid "Abiword"
+msgstr "Abiword"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Servidor de World Wide Web Apache"
+#: ../../standalone/drakfont_.c:891
+msgid "Generic Printers"
+msgstr "Impresoras genéricas"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "stepping de la CPU (número de sub-modelo - generación)"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
+msgstr ""
+"Seleccione el archivo o directorio de tipografías y haga clic sobre 'Agregar'"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "select path to restore (instead of /)"
-msgstr "seleccione la ruta para restaurar (en vez de /)"
+#: ../../standalone/drakfont_.c:1005
+msgid "Install List"
+msgstr "Instalar lista"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Configure bootsplash picture"
-msgstr "Configurar foto de bootsplash"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
+msgstr "haga clic aquí si está seguro."
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr "Georgia"
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
+msgstr "aquí si no lo está."
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "China"
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
+msgstr "Deseleccionar todas."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr ""
-"(Debe asegurarse que todas sus impresoras están conectadas y encendidas).\n"
+#: ../../standalone/drakfont_.c:1116
+msgid "Selected All"
+msgstr "Seleccionar todas."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "Leyendo datos de impresoras instaladas..."
+#: ../../standalone/drakfont_.c:1120
+msgid "Remove List"
+msgstr "Quitar lista"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
-msgstr " Borrar Ahora "
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+msgid "Initials tests"
+msgstr "Pruebas iniciales"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "servidor"
+#: ../../standalone/drakfont_.c:1145
+msgid "Copy fonts on your system"
+msgstr "Copiar tipografías en su sistema"
-#: ../../install_any.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Inserte un disquete formateado con FAT en la disquetera %s"
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
+msgstr "Instalar y convertir tipografías"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "sí, significa que el procesador tiene un coprocesador matemático"
+#: ../../standalone/drakfont_.c:1153
+msgid "Post Install"
+msgstr "Post-instalación"
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Espere, por favor... Aplicando la configuración"
+#: ../../standalone/drakfont_.c:1178
+msgid "Remove fonts on your system"
+msgstr "Quitar tipografías de su sistema"
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "¡Bienvenido a GRUB, el selector de SO de arranque!"
+#: ../../standalone/drakfont_.c:1182
+msgid "Post Uninstall"
+msgstr "Post-desinstalación"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "Grub"
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
+msgstr "Compartir la conexión a Internet"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
-msgstr "Controladores SCSI"
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Lo siento, sólo se soportan los núcleos 2.4."
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr " en servidor LPD \"%s\", impresora \"%s\""
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Ahora, la conexión compartida a Internet está activada ahora"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Eligiendo un administrador de conexión"
+#: ../../standalone/drakgw_.c:126
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+"Ya se ha realizado la configuración de la conexión compartida a Internet.\n"
+"Ahora está activa.\n"
+"\n"
+"¿Qué desea hacer?"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Nombre de la máquina Zeroconf"
+#: ../../standalone/drakgw_.c:130
+msgid "disable"
+msgstr "desactivar"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
-msgstr "Ajuste personalizado/entrada crontab:"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
+msgstr "rechazar"
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Las direcciones IP deben estar en el formato 1.2.3.4"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "reconfigure"
+msgstr "reconfigurar"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Configurar el sistema de impresión CUPS"
+#: ../../standalone/drakgw_.c:133
+msgid "Disabling servers..."
+msgstr "Desactivando los servidores..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "Ecuador"
+#: ../../standalone/drakgw_.c:142
+msgid "Internet connection sharing is now disabled."
+msgstr "Ahora, la conexión compartida a Internet está inactiva."
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Add an item"
-msgstr "Añadir un elemento"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Ahora, la conexión compartida a Internet está desactivada"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
+#: ../../standalone/drakgw_.c:150
+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 ""
-"Las impresoras en esta máquina están disponibles para otras computadoras"
+"Ya se ha realizado la configuración de la conexión compartida a Internet.\n"
+"Ahora está inactiva.\n"
+"\n"
+"¿Qué desea hacer?"
-#: ../../lang.pm:1
-#, c-format
-msgid "China (Hong Kong)"
-msgstr "China (Hong Kong)"
+#: ../../standalone/drakgw_.c:154
+msgid "enable"
+msgstr "activar"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "No se encuentra el archivo de imagen `%s' necesario."
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
+msgstr "Activando los servidores..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"No se detectó tarjeta de sonido. Pruebe \"harddrake\" luego de la instalación"
+#: ../../standalone/drakgw_.c:166
+msgid "Internet connection sharing is now enabled."
+msgstr "Ahora, la conexión compartida a Internet está activa."
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:183
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"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 ""
-"Puerto no válido: %s.\n"
-"El formato adecuado es \"puerto/tcp\" o \"puerto/udp\", \n"
-"donde puerto es un número entre 1 y 65535."
+"Está a punto de configurar su computadora para compartir la conexión a "
+"Internet.\n"
+"Con esta característica, otras computadoras de su red local podrán usar la "
+"conexión a Internet de esta computadora.\n"
+"\n"
+"Debe asegurarse que ha configurado su acceso a la Red/Internet utilizando "
+"drakconnect antes de proceder.\n"
+"\n"
+"Nota: necesita un adaptador de red dedicado para configurar una red de área "
+"local (LAN)."
-#: ../../any.pm:1
+#: ../../standalone/drakgw_.c:211
#, c-format
-msgid "Shell"
-msgstr "Shell"
+msgid "Interface %s (using module %s)"
+msgstr "Interfaz %s (usando el módulo %s)"
-#: ../../lang.pm:1
+#: ../../standalone/drakgw_.c:212
#, c-format
-msgid "Sao Tome and Principe"
-msgstr "Santo Tomé y Príncipe"
+msgid "Interface %s"
+msgstr "Interfaz %s"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr "¡No hay ningún adaptador de red en su sistema!"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
+#: ../../standalone/drakgw_.c:221
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
msgstr ""
-"No se puede conectar utilizando el nombre de usuario %s (¿contraseña "
-"incorrecta?)"
+"No se ha detectado ningún adaptador de red en su sistema. Por favor, ejecute "
+"la herramienta de configuración del hardware."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbadján (latín)"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr "Interfaz de red"
-#: ../../standalone/drakbug:1
+#: ../../standalone/drakgw_.c:228
#, c-format
-msgid "Package not installed"
-msgstr "Paquete no instalado"
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"%s\n"
+"\n"
+"I am about to setup your Local Area Network with that adapter."
+msgstr ""
+"Sólo hay un adaptador de red configurado en su sistema:\n"
+"\n"
+"%s\n"
+"\n"
+"Se va a configurar su red de área local con ese adaptador."
-#: ../../lang.pm:1
-#, c-format
-msgid "American Samoa"
-msgstr "Samoa Americana"
+#: ../../standalone/drakgw_.c:235
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+"Por favor, elija qué adaptador de red estará conectado a su red de área "
+"local."
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Become a MandrakeExpert"
-msgstr "Conviértase en un MandrakeExpert"
+#: ../../standalone/drakgw_.c:261
+msgid "Network interface already configured"
+msgstr "Interfaz de red ya configurada"
-#: ../../standalone/drakconnect:1
+#: ../../standalone/drakgw_.c:262
#, c-format
-msgid "Protocol"
-msgstr "Protocolo"
+msgid ""
+"Warning, the network adapter (%s) is already configured.\n"
+"\n"
+"Do you want an automatic re-configuration?\n"
+"\n"
+"You can do it manually but you need to know what you're doing."
+msgstr ""
+"Atención, el adaptador de red (%s) ya está configurado.\n"
+"\n"
+"¿Desea volver a configurarlo automáticamente?\n"
+"\n"
+"Puede hacerlo manualmente pero necesita saber lo que está haciendo."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Copiar tipografías en su sistema"
+#: ../../standalone/drakgw_.c:267
+msgid "Automatic reconfiguration"
+msgstr "Volver a configurar automáticamente"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
-msgstr "Ayuda de Harddrake"
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
+#: ../../standalone/drakgw_.c:268
+msgid "Show current interface configuration"
+msgstr "Mostrar la configuración corriente de la interfaz"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Configuración del Servidor de Terminales de Mandrake"
+#: ../../standalone/drakgw_.c:269
+#, fuzzy
+msgid "Current interface configuration"
+msgstr "Mostrar la configuración corriente de la interfaz"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:270
#, c-format
msgid ""
+"Current configuration of `%s':\n"
"\n"
-" DrakBackup Report Details\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
+msgstr ""
+"Configuración corriente de `%s':\n"
+"\n"
+"Red: %s\n"
+"Dirección IP: %s\n"
+"Atributo IP: %s\n"
+"Controlador: %s"
+
+#: ../../standalone/drakgw_.c:283
+#, fuzzy
+msgid ""
+"I can keep your current configuration and assume you already set up a DHCP "
+"server; in that case please verify I correctly read the Network that you use "
+"for your local network; I will not reconfigure it and I will not touch your "
+"DHCP server configuration.\n"
"\n"
+"The default DNS entry is the Caching Nameserver configured on the firewall. "
+"You can replace that with your ISP DNS IP, for example.\n"
+"\t\t \n"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
"\n"
msgstr ""
+"Puedo mantener su configuración corriente y asumir que ya configuró un "
+"servidor DHCP; en ese caso, por favor verifique que leo correctamente la Red "
+"que usó para su red local; no la volveré a configurar y no tocaré la "
+"configuración de su servidor DHCP.\n"
"\n"
-" Detalles del reporte de DrakBackup\n"
+"La entrada DNS predeterminada es el Servidor de nombres de caché configurado "
+"en el cortafuegos. Lo puede reemplazar, por ej., con la IP del DNS de su "
+"ISP.\n"
"\n"
+"De lo contrario, puedo volver a configurar su interfaz y (volver a) "
+"configurar un servidor DHCP por Usted.\n"
"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
-msgstr "Restaurar todas las copias de respaldo"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
-msgstr " en el puerto paralelo #%s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
-msgstr ""
-"Configurar la longitud mínima de contraseña y la cantidad mínima de dígitos "
-"y cantidad mínima de letras mayúsculas."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr "si se pone en sí, verificar puertos abiertos."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Borrar el soporte puede tardar unos momentos."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "No puede seleccionar/deseleccionar este paquete"
-
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "Advertencia"
+#: ../../standalone/drakgw_.c:290
+msgid "Local Network adress"
+msgstr "Dirección de red local"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakgw_.c:294
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"
-"- Other Files:\n"
msgstr ""
+"Configuración del servidor DHCP.\n"
+"\n"
+"Aquí puede seleccionar opciones diferentes para la configuración del "
+"servidor DHCP.\n"
+"Si no conoce el significado de una opción, simlpemente déjela como está.\n"
"\n"
-"- Otros archivos:\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name"
-msgstr "Nombre de host del servidor remoto"
+#: ../../standalone/drakgw_.c:300
+msgid "(This) DHCP Server IP"
+msgstr "IP de (este) servidor DHCP"
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr "acceso a programas X"
+#: ../../standalone/drakgw_.c:301
+msgid "The DNS Server IP"
+msgstr "La IP del servidor DNS"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "Calculando el espacio de la partición Windows"
+#: ../../standalone/drakgw_.c:302
+msgid "The internal domain name"
+msgstr "El nombre de dominio interno"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Refrescar"
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
+msgstr "Comienzo del rango de DHCP"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Italy"
-msgstr "Italia"
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
+msgstr "Fin del rango de DHCP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
-msgstr "Islas Caimán"
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
+msgstr "El \"lease\" predeterminado (en segundos)"
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "error desmontando %s: %s"
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
+msgstr "El \"lease\" máximo (en segundos)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "Nombre de la impresora"
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
+msgstr "Volver a configurar la interfaz y el servidor DHCP"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
-msgstr "desactivar"
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
+msgstr "La red local no finalizó con `.0', saliendo."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid "Do it!"
-msgstr "¡Hacerlo!"
+msgid "Potential LAN address conflict found in current config of %s!\n"
+msgstr ""
+"¡Se encontró un conflicto potencial de direcciones LAN en la configuración "
+"de %s!\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
-msgstr "%s no responde"
+#: ../../standalone/drakgw_.c:335
+msgid "Configuring..."
+msgstr "Configurando..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select model manually"
-msgstr "Seleccionar el modelo manualmente"
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+"Configurando los scripts, instalando el software, iniciando los servidores..."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakgw_.c:372
#, c-format
-msgid "Format"
-msgstr "Formatear"
+msgid "Problems installing package %s"
+msgstr "Problemas al instalar el paquete %s"
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:505
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'"
+"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 ""
-"La forma más común de conexión ADSL es con pppoe.\n"
-"Algunas conexiones usan pptp, otras pocas usan dhcp.\n"
-"Si no lo sabe con seguridad, elija 'usar pppoe'"
+"Se ha configurado todo.\n"
+"Ahora puede compartir su conexión a Internet con otros ordenadores de su red "
+"de área local, usando la configuración automática de la red (DHCP)."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
-msgstr "Varios"
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
+msgstr "La configuración ya se ha hecho, pero ahora está desactivada."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
-msgstr "Zip"
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
+msgstr "La configuración ya se ha hecho, y ahora está activada."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
-msgstr "Tecla Alt izquierda"
+#: ../../standalone/drakgw_.c:525
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "No se ha configurado la conexión compartida a Internet."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Load setting"
-msgstr "Cargar ajuste"
+#: ../../standalone/drakgw_.c:531
+msgid "Internet connection sharing configuration"
+msgstr "Configuración de la conexión compartida a Internet"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:539
#, c-format
msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
"\n"
+"%s\n"
"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
+"Click on Configure to launch the setup wizard."
msgstr ""
+"¡Bienvenido a la herramienta para compartir la conexión a Internet!\n"
"\n"
+"%s\n"
"\n"
-"Printerdrak no pudo determinar qué modelo es su impresora %s. Por favor, "
-"escoja el modelo correcto de la lista."
+"Haga click sobre Configurar para lanzar el asistente de configuración."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Configurar esta impresora como la predeterminada"
+#: ../../standalone/drakperm_.c:36
+msgid "group"
+msgstr "grupo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:36
+msgid "path"
+msgstr "ruta"
+
+#: ../../standalone/drakperm_.c:36
+msgid "permissions"
+msgstr "permisos"
+
+#: ../../standalone/drakperm_.c:36
+msgid "user"
+msgstr "usuario"
+
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
+msgstr "Subir"
+
+#: ../../standalone/drakperm_.c:44
+msgid "delete"
+msgstr "borrar"
+
+#: ../../standalone/drakperm_.c:45
+msgid "edit"
+msgstr "editar"
+
+#: ../../standalone/drakperm_.c:46
+msgid "Down"
+msgstr "Bajar"
+
+#: ../../standalone/drakperm_.c:47
+msgid "add a rule"
+msgstr "añadir una regla"
+
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
+msgstr "seleccionar archivo a ver/editar"
+
+#: ../../standalone/drakperm_.c:51
msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+"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 ""
-"\n"
-"Marque las impresoras que desea transferir y haga clic \n"
-"sobre \"Transferir\"."
+"Drakperm se utiliza para ver archivos a utilizar para ajustar los permisos, "
+"dueños, y grupos por medio de msec.\n"
+"También puede editar sus reglas propias que sobre-escribirán las "
+"predeterminadas."
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
+#: ../../standalone/drakperm_.c:56
+msgid "Add a new rule at the end"
+msgstr "Añadir una regla nueva al final"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
-msgstr "Albano"
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
+msgstr "Editar regla corriente"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "Lituania"
+#: ../../standalone/drakperm_.c:58
+msgid "Up selected rule one level"
+msgstr "Subir un nivel la regla seleccionada"
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "Compacto"
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
+msgstr "Bajar un nivel la regla seleccionada"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Modelo detectado: %s %s"
+#: ../../standalone/drakperm_.c:60
+msgid "Delete selected rule"
+msgstr "Borrar la regla seleccionada"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
-msgstr "MandrakeSoft ha seleccionado el mejor software para Usted"
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
+msgstr "examinar"
-#: ../../any.pm:1
-#, c-format
-msgid "Local files"
-msgstr "Archivos locales"
+#: ../../standalone/drakperm_.c:231
+msgid "Current user"
+msgstr "Usuario corriente"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "quizás"
+#: ../../standalone/drakperm_.c:236
+msgid "Permissions"
+msgstr "Permisos"
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
-msgstr "Panamá"
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
+msgstr "Ruta"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Can't open %s!"
-msgstr "¡No puedo abrir %s!"
+#: ../../standalone/drakperm_.c:238
+msgid "Property"
+msgstr "Propiedad"
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
+msgstr "bit pegajoso"
+
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
+msgstr "Set-UID"
+
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
+msgstr "Set-GID"
+
+#: ../../standalone/drakperm_.c:296
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?"
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
msgstr ""
-"Parece que su tarjeta gráfica tiene un conector de salida para TV.\n"
-"Se puede configurar para trabajar con el frame-buffer.\n"
-"\n"
-"Para esto Usted tiene que conectar su tarjeta gráfica a su TV antes de "
-"arrancar su computadora.\n"
-"Luego, elija la entrada \"TVout\" en el cargador de arranque\n"
-"\n"
-"¿Tiene Usted esta característica?"
+"Usado para directorio:\n"
+" sólo el dueño del directorio o archivo en este directorio lo puede borrar"
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "Monitor"
+#: ../../standalone/drakperm_.c:297
+msgid "Use owner id for execution"
+msgstr "Usar ID del dueño para la ejecución"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:298
+msgid "Use group id for execution"
+msgstr "Usar ID del grupo para la ejecución"
+
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
+msgstr "cuando está marcado, el grupo y el dueño no se cambiarán"
+
+#: ../../standalone/drakperm_.c:304
+msgid "Path selection"
+msgstr "Selección de ruta"
+
+#: ../../standalone/drakperm_.c:350
+msgid "user :"
+msgstr "usuario :"
+
+#: ../../standalone/drakperm_.c:352
+msgid "group :"
+msgstr "grupo :"
+
+#: ../../standalone/draksound_.c:46
+msgid "No Sound Card detected!"
+msgstr "¡No se detectó tarjeta de sonido!"
+
+#: ../../standalone/draksound_.c:47
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"
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Está a punto de configurar la impresión a una cuenta Windows con contraseña. "
-"Debido a una falla en la arquitectura del cliente Samba la contraseña se "
-"pone como texto plano en la línea de comandos del cliente Samba que se usa "
-"para transmitir el trabajo de impresión al servidor Windows. Por lo tanto, "
-"es posible que cada usuario de esta máquina vea la clave en pantalla "
-"ejecutando \"ps auxwww\".\n"
+"No se detectó tarjeta de sonido en su máquina. Por favor, verifique que "
+"tiene conectada correctamente una tarjeta de sonido soportada por Linux.\n"
"\n"
-"Recomendamos utilizar alguna de las alternativas siguientes (en todos los "
-"casos tiene que asegurarse que sólo las máquinas de su red local tienen "
-"acceso al servidor Windows, por ejemplo utilizando un cortafuegos):\n"
"\n"
-"Usar una cuenta sin contraseña en su servidor Windows, por ej. la cuenta "
-"\"GUEST\" o una cuenta especial dedicada a la impresión. No quite la "
-"protección con contraseña de una cuenta personal o de la cuenta del "
-"administrador.\n"
+"Puede visitar nuestra base de datos de hardware en:\n"
"\n"
-"Configure a su servidor Windows para que la impresión esté disponible bajo "
-"el protocolo LPD y configure la impresión desde esta máquina bajo el tipo de "
-"conexión \"%s\" en PrinterDrake.\n"
"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil colores (16 bits)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/draksound_.c:54
msgid ""
"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-"\n"
-"- Guardar en el disco en la ruta: %s\n"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Quitar tipografías de su sistema"
-
-#: ../../standalone/drakgw:1
-#, 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."
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-"Atención, el adaptador de red (%s) ya está configurado.\n"
"\n"
-"¿Desea volver a configurarlo automáticamente?\n"
"\n"
-"Puede hacerlo manualmente pero necesita saber lo que está haciendo."
+"\n"
+"Nota: si tiene una tarjeta de sonido ISA PnP, tendrá que utilizar el "
+"programa sndconfig. Simplemente teclee \"sndconfig\" en una consola."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "X al arrancar"
+#: ../../standalone/draksplash_.c:21
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr ""
+"se necesita el paquete 'ImageMagick' para un funcionamiento correcto.\n"
+"Haga clic sobre \"Aceptar\" para instalarlo o sobre \"Cancelar\" para salir"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
-msgstr " ADSL"
+#: ../../standalone/draksplash_.c:67
+msgid "first step creation"
+msgstr "primer paso de creación"
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "No hay suficientes particiones para un RAID de nivel %d\n"
+#: ../../standalone/draksplash_.c:70
+msgid "final resolution"
+msgstr "resolución final"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "formatos de disquete que acepta la disquetera"
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+msgid "choose image file"
+msgstr "elija un archivo de imagen"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "Falló la copia del firmware, el archivo %s no se encuentra"
+#: ../../standalone/draksplash_.c:72
+msgid "Theme name"
+msgstr "Nombre del tema"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: true"
-msgstr "configuración local: verdadero"
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
+msgstr "Examinar"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
+msgid "Configure bootsplash picture"
+msgstr "Configurar foto de bootsplash"
+
+#: ../../standalone/draksplash_.c:90
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."
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
-"Están configuradas las impresoras siguientes. Haga doble clic sobre una de "
-"ellas para modificarla, para configurarla como predeterminada, o para "
-"obtener información sobre la misma."
+"coordenada x del cuadro de texto\n"
+"en cantidad de caracteres"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connected"
-msgstr "Conectado"
+#: ../../standalone/draksplash_.c:91
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr ""
+"coordenada y del cuadro de texto\n"
+"en cantidad de caracteres"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
-msgstr "Macedonio"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
+msgstr "ancho del texto"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "Mali"
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
+msgstr "altura del cuadro de texto"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
-msgstr "Puentes y controladores del sistema"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
+"coordenada x del ángulo superior\n"
+"izquierdo de la barra de progreso"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "/Archivo/_Guardar"
+#: ../../standalone/draksplash_.c:95
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
+"coordenada y del ángulo superior\n"
+"izquierdo de la barra de progreso"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "No details"
-msgstr "Sin detalles"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
+msgstr "el ancho de la barra de progreso"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "muy bueno"
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
+msgstr "la altura de la barra de progreso"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
+msgstr "el color de la barra de progreso"
+
+#: ../../standalone/draksplash_.c:113
msgid "Preview"
msgstr "previsualizar"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Remote Control"
-msgstr "Control remoto"
+#: ../../standalone/draksplash_.c:115
+msgid "Save theme"
+msgstr "guardar tema"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select media for backup..."
-msgstr "Por favor, seleccione el soporte para la copia de respaldo..."
+#: ../../standalone/draksplash_.c:116
+msgid "Choose color"
+msgstr "elija color"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
-msgstr "Correo-e erróneo"
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
+msgstr "Mostrar logo en la consola"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Servidor XFree86: %s\n"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
+msgstr "Predeterminadamente el mensaje del núcleo es \"silencioso\""
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, c-format
-msgid "Allow Thin Clients"
-msgstr "Permitir Clientes livianos"
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr "¡Todavía este tema no tiene un bootsplash en %s!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgiano (estilo \"ruso\")"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
+msgstr "guardando tema de Bootsplash..."
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_Opciones"
+#: ../../standalone/draksplash_.c:428
+msgid "ProgressBar color selection"
+msgstr "selección del color de la barra de progreso"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Your printer model"
-msgstr "El modelo de su impresora"
+#: ../../standalone/draksplash_.c:449
+msgid "You must choose an image file first!"
+msgstr "¡Primero debe elegir un archivo de imagen!"
+
+#: ../../standalone/draksplash_.c:458
+msgid "Generating preview ..."
+msgstr "Generando previsualización..."
-#: ../../any.pm:1
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Bootsplash de %s. No se puede crear la previsualización (%s)"
+
+#: ../../standalone/drakxtv_.c:46
msgid ""
+"XawTV isn't installed!\n"
"\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)."
-msgstr ""
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
"\n"
"\n"
-"(¡ATENCIÓN! Está utilizando XFS en su partición raíz,\n"
-"la creación de un disquete de arranque en un disquete de 1.44Mb puede "
-"fallar\n"
-"porque XFS necesita un controlador muy grande)."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
+"¡XawTV no está instalado!\n"
"\n"
-"- Borrar los archivos tar del disco luego de la copia de respaldo.\n"
+"\n"
+"Si tiene una tarjeta de TV pero DrakX no la detectó (\"/etc/modules\" no\n"
+"tiene el módulo bttv ni saa7134) ni instaló xawtv, por favor envíe\n"
+"el resultado de \"lspcidrake -v -f\" a \"install@mandrakesoft.com\" con\n"
+"el tema \"undetected TV card\".\n"
+"\n"
+"Lo puede instalar tecleando \"urpmi xawtv\", como root, en la consola."
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
-msgstr ""
-"No se encontró imagen de CD o DVD, por favor copie el programa de "
-"instalación y los archivos rpm"
+#: ../../standalone/drakxtv_.c:63
+msgid "Canada (cable)"
+msgstr "Canadá (cable)"
-#: ../advertising/04-configuration.pl:1
-#, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "Herramienta de configuración multipropósito de Mandrake"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
+msgstr "EEUU (difusión)"
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Save"
-msgstr "Guardar"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
+msgstr "EEUU (cable)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
-msgstr "El %s no está soportado"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
+msgstr "EEUU (cable-hrc)"
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr "Carga los controladores para sus dispositivos USB."
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
+msgstr "China (difusión)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Disk"
-msgstr "Disco"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
+msgstr "Japón (difusión)"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Introduzca el URI del dispositivo de impresión"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
+msgstr "Japón (cable)"
-#: ../advertising/01-thanks.pl:1
-#, 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."
-msgstr ""
-"El éxito de MandrakeSoft se basa en el principio del Software Libre. Su "
-"sistema operativo nuevo es el resultado del trabajo colaborativo de parte de "
-"la Comunidad Linux mundial"
+#: ../../standalone/drakxtv_.c:65
+msgid "East Europe"
+msgstr "Europa del este"
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "Israel"
+#: ../../standalone/drakxtv_.c:65
+msgid "France [SECAM]"
+msgstr "Francia [SECAM]"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "Guayana Francesa"
+#: ../../standalone/drakxtv_.c:65
+msgid "Ireland"
+msgstr "Irlanda"
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "default:LTR"
+#: ../../standalone/drakxtv_.c:65
+msgid "West Europe"
+msgstr "Europa del oeste"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
-msgstr "¡Debe ingresar un comando!"
+#: ../../standalone/drakxtv_.c:66
+msgid "Australia"
+msgstr "Australia"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
-msgstr "Seleccionar manualmente el usuario"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
+msgstr "Nueva Zelanda"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Transferir configuración de la impresora"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
+msgstr "Sudáfrica"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "¿Desea habilitar la impresión en las impresoras mencionadas arriba?\n"
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
+msgstr "Argentina"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of suid root files"
-msgstr "Verificar adiciones/remociones de archivos suid root"
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
+msgstr "Televisión por cable Australian Optus"
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:102
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."
+"Please,\n"
+"type in your tv norm and country"
msgstr ""
-"Para que esto funcione con un PDC de W2K, probablemente necesite que el "
-"administrador ejecute: C:\\>net localgroup \"Pre-Windows 2000 Compatible "
-"Access\" everyone /add y vuelva a iniciar el servidor.\n"
-"También necesitará el nombre de usuario/contraseña de un Administrador de "
-"Dominio para unir la máquina al dominio Windows(TM).\n"
-"Si todavía no está habilitada la red, DrakX intentará unirse al dominio "
-"luego de la etapa de configuración de red.\n"
-"Si esta configuración falla por algún motivo y no funciona la autenticación "
-"PDC, ejecute 'smbpasswd -j DOMINIO -U USUARIO%%CONTRASEÑA' utilizando su "
-"Dominio Windows(TM), y Nombre de usuario/Contraseña de Administrador, luego "
-"del arranque del sistema.\n"
-"El comando 'wbinfo -t' probará si sus secretos de autenticación son buenos."
+"Por favor,\n"
+"teclee su norma de tv y país"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Puerto %s)"
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
+msgstr "Norma de TV:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Usar conexión de red para realizar copia de respaldo"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
+msgstr "Ãrea:"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Kernel version"
-msgstr "Versión del núcleo"
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
+msgstr "Buscando canales de TV, en progreso ..."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
+msgstr "Buscando canales de TV"
+
+#: ../../standalone/drakxtv_.c:120
+msgid "There was an error while scanning for TV channels"
+msgstr "Hubo un error mientras se buscaban canales de TV"
+
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
+msgstr "¡XawTV no está instalado!"
+
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
+msgstr "¡Que tenga un buen día!"
+
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "¡Ahora, puede ejecutar xawtv (!bajo X Window!)!\n"
+
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
+msgstr "¡No se detectó tarjeta de TV!"
+
+#: ../../standalone/drakxtv_.c:148
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"
+"No TV Card has been detected on your machine. Please verify that a Linux-"
+"supported Video/TV Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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."
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Ahora es el momento de especificar los programas que desea instalar en su\n"
-"sistema. Hay miles de paquetes disponibles para Mandrake Linux, y para\n"
-"hacer más simple el manejo de los paquetes, los mismos se han puesto en\n"
-"grupos de aplicaciones similares.\n"
-"\n"
-"Los paquetes se ordenan en grupos que corresponden a un uso particular de\n"
-"su máquina. Mandrake Linux tiene cuatro instalaciones predefinidas\n"
-"disponibles. Puede pensar en estas clases de instalación como contenedores\n"
-"para los distintos paquetes. Puede mezclar y hacer coincidir aplicaciones\n"
-"de varios grupos, por lo que una instalación de \"Estación de trabajo\"\n"
-"puede tener instaladas aplicaciones del grupo \"Desarrollo\".\n"
-"\n"
-" * \"%s\": si planifica utilizar su máquina como una estación de trabajo,\n"
-"seleccione una o más aplicaciones del grupo estación de trabajo.\n"
-"\n"
-" * \"%s\": si la máquina se utilizará para programación, elija los paquetes\n"
-"apropiados de ese grupo.\n"
-"\n"
-" * \"%s\": si pretende usar la máquina como un servidor, seleccione cuáles\n"
-"de los servicios más comunes desea instalar en su máquina.\n"
-"\n"
-" * \"%s\": aquí es donde seleccionará su entorno gráfico preferido. Si\n"
-"desea tener una estación de trabajo gráfica, debe seleccionar al menos uno.\n"
-"\n"
-"Si mueve el cursor del ratón sobre el nombre de un grupo se mostrará un\n"
-"pequeño texto explicativo acerca de ese grupo. Si deselecciona todos los\n"
-"grupos cuando está realizando una instalación regular (es decir, no una\n"
-"actualización), aparecerá un diálogo que propone opciones diferentes para\n"
-"una instalación mínima:\n"
-"\n"
-" * \"%s\": instala la menor cantidad de paquetes posible para tener un\n"
-"escritorio gráfico que funcione.\n"
+"No se detectó tarjeta de TV en su máquina. Por favor, verifique que tiene "
+"conectada correctamente una tarjeta de vídeo/TV soportada por Linux.\n"
"\n"
-" * \"%s\": instala el sistema base más algunos utilitarios básicos y la\n"
-"documentación de los mismos. Esta instalación es adecuada para configurar\n"
-"un servidor.\n"
"\n"
-" * \"%s\": instalará el mínimo necesario estricto para obtener un sistema\n"
-"Linux que funciona. Con esta instalación sólo tendrá una interfaz de línea\n"
-"de comandos. Esta instalación ocupa alrededor de 65 MB.\n"
+"Puede visitar nuestra base de datos de hardware en:\n"
"\n"
-"Puede marcar la casilla \"%s\" que es útil si está familiarizado con los\n"
-"paquetes que se ofrecen, o si desea tener un control total sobre lo que se\n"
-"instalará.\n"
"\n"
-"Si inició la instalación en el modo \"%s\" puede deseleccionar todos los\n"
-"grupos para evitar instalar cualquier paquete nuevo. Esto es útil para\n"
-"reparar o actualizar un sistema existente."
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "Aceptar el usuario"
+"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
-msgstr "Servidor"
+#: ../../standalone/harddrake2_.c:17
+msgid "Alternative drivers"
+msgstr "Controladores alternativos"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
-msgstr "Tecla Mayús izquierda"
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
+msgstr "la lista de controladores alternativos para esta tarjeta de sonido"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " local network"
-msgstr " Red local"
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
+msgstr "Bus"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "Elección incorrecta, inténtelo de nuevo\n"
+#: ../../standalone/harddrake2_.c:21
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+"esto es el bus físico sobre el cual se conecta el dispositivo (ej.: PCI, "
+"USB, ...)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
-msgstr "Syslog reporta en la consola 12"
+#: ../../standalone/harddrake2_.c:22
+msgid "Channel"
+msgstr "Canal"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search new servers"
-msgstr "Buscar servidores nuevos"
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
+msgstr "canal EIDE/SCSI"
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
-msgstr "Islas Heard y McDonald"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
+msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
-msgstr "No hay controlador alternativo"
+#: ../../standalone/harddrake2_.c:23
+msgid ""
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "Cambiar al modo experto"
+#: ../../standalone/harddrake2_.c:26
+msgid "Bus identification"
+msgstr "Identificación del bus"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
-msgstr "(en esta máquina)"
+#: ../../standalone/harddrake2_.c:27
+msgid ""
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
+msgstr ""
+"- Dispositivos PCI y USB : esto lista el fabricante, dispositivo, "
+"subfabricante e id de subdispositivo PCI/USB"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Las direcciones de la pasarela deberían estar en el formato 1.2.3.4"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
+msgstr "Ubicación en el bus"
-#: ../../network/modem.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:30
msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
+"- 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 ""
-"winmodem basado en \"%s\" detectado, ¿desea instalar el software necesario?"
+"- dispositivos PCI: el zócalo PCI, dispositivo y función de esta tarjeta\n"
+"- dispositivos EIDE: el dispositivo es o bien uno maestro o uno esclavo\n"
+"- dispositivos SCSI: el bus SCSI y los id de dispositivo SCSI"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Buscando paquetes ya instalados..."
+#: ../../standalone/harddrake2_.c:33
+#, fuzzy
+msgid "Cache size"
+msgstr "tamaño de los bloques"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Usar respaldos diferenciales"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Driver"
-msgstr "Controlador"
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
msgstr ""
-"Linuxconf a veces realizará varias tareas al arrancar para\n"
-"mantener la configuración del sistema."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVD-R device"
-msgstr "Dispositivo DVDR"
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
+msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Impresora en un servidor lpd remoto"
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, 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."
+#: ../../standalone/harddrake2_.c:36
+#, fuzzy
+msgid "Cpuid level"
+msgstr "Nivel de seguridad"
+
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
msgstr ""
-"Antes de instalar cualquier tipografía, asegúrese que tiene derecho de "
-"usarlas\n"
-"e instalarlas en su sistema.\n"
-"\n"
-"-Puede instalar las tipografías usando la manera normal. En casos raros,\n"
-"puede ser que tipografías \"falsas\" congelen a su servidor X."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
+msgstr ""
+
+#: ../../standalone/harddrake2_.c:37
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."
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
msgstr ""
-"Yaboot es un cargador de arranque para el hardware NewWorld MacIntosh. El\n"
-"mismo puede arrancar o GNU/Linux, o MacOS o MacOSX si se encuentran en su\n"
-"computadora. Normalmente, estos sistemas operativos se detectan e instalan\n"
-"correctamente. Si este no es el caso, puede agregar una entrada a mano en\n"
-"esta pantalla. Tenga cuidado de elegir los parámetros correctos.\n"
-"\n"
-"Las opciones principales de Yaboot son:\n"
-"\n"
-" * Mensaje de Init: un mensaje de texto simple que se muestra antes del\n"
-"prompt de arranque.\n"
-"\n"
-" * Dispositivo de arranque: indica donde desea colocar la información\n"
-"necesaria para arrancar en GNU/Linux. Generalmente, se configura una\n"
-"partición bootstrap con anterioridad para contener esta información.\n"
-"\n"
-" * Demora de Open Firmware: a diferencia de LILO, hay dos demoras\n"
-"disponibles con Yaboot. La primera se mide en segundos y aquí puede elegir\n"
-"entre CD, arranque OF, MacOS o Linux.\n"
-"\n"
-" * Demora de arranque del núcleo: esta demora es similar a la demora de\n"
-"arranque de LILO. Luego de seleccionar Linux, tendrá esta demora en décimas\n"
-"de segundo antes que se seleccione su descripción del núcleo\n"
-"predeterminada.\n"
-"\n"
-" * ¿Habilitar arranque desde el CD?: marcando esta opción Usted puede\n"
-"elegir \"C\" para el CD en el primer prompt de arranque.\n"
-"\n"
-" * ¿Habilitar arranque OF?: marcando esta opción Usted puede elegir \"N\"\n"
-"para Open Firmware en el primer prompt de arranque.\n"
-"\n"
-" * SO predeterminado: puede seleccionar qué sistema operativo arrancará por\n"
-"defecto cuando expira la demora de Open Firmware."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
-msgstr "Miércoles"
+#: ../../standalone/harddrake2_.c:38
+#, fuzzy
+msgid "This field describes the device"
+msgstr "este campo describe al dispositivo"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "Alemania"
+#: ../../standalone/harddrake2_.c:39
+msgid "Old device file"
+msgstr "Archivo de dispositivo antiguo"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
-msgstr "Austria"
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
+msgstr "nombre antiguo de dispositivo estático utilizado en el paquete dev"
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "Sin ratón"
+#: ../../standalone/harddrake2_.c:41
+msgid "New devfs device"
+msgstr "Dispositivo devfs nuevo"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "Indique el tamaño de soporte de su CD/DVD (MB)"
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+"dispositivo dinámico nuevo generado por el devfs incorporado del núcleo"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check permissions of files in the users' home"
-msgstr "Verificar permisos de archivos en dirs. personales de usuarios"
+#: ../../standalone/harddrake2_.c:43
+msgid "Module"
+msgstr "Módulo"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr "el módulo del núcleo GNU/Linux que maneja ese dispositivo"
+
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
msgstr ""
-"Use \"sndconfig\" luego de la instalación para configurar su tarjeta de "
-"sonido"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "Contraer el árbol"
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
+msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Configurador de Instalación Automática"
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "Configurar la red"
+#: ../../standalone/harddrake2_.c:46
+msgid ""
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "¿Dónde quiere instalar el cargador de arranque?"
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
+msgstr ""
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
msgstr ""
-"El primer paso es elegir el idioma de instalación. En el ejemplo se elige\n"
-"\"Europa\" como región y \"Español\" como idioma.\n"
-"\n"
-"Su elección de idioma preferido afectará al idioma de la documentación, el\n"
-"instalador y el sistema en general. Seleccione primero la región en la que\n"
-"se encuentra, y luego el idioma que habla.\n"
-"\n"
-"Al hacer clic sobre el botón \"%s\" podrá seleccionar otros idiomas para\n"
-"instalar en su estación de trabajo, instalando así los archivos específicos\n"
-"para esos idiomas para la documentación y las aplicaciones. Por ejemplo, si\n"
-"albergará a gente de Francia en su máquina, seleccione Español como idioma\n"
-"principal en la vista de árbol y \"%s\" en la sección avanzada.\n"
-"\n"
-"Note que no está limitado a elegir un único idioma adicional. Puede elegir\n"
-"varios, o incluso instalarlos a todos eligiendo la casilla \"%s\".\n"
-"Seleccionar el soporte para un idioma significa que se instalarán las\n"
-"traducciones, tipografías, correctores ortográficos, etc. para dicho\n"
-"idioma. Adicionalmente, la casilla \"%s\" permite que fuerce al sistema a\n"
-"utilizar Unicode (UTF-8) Sin embargo, note que esta es una característica\n"
-"experimental. Si selecciona diferentes idiomas que necesitan codificaciones\n"
-"diferentes, de cualquier manera se instalará el soporte para Unicode.\n"
-"\n"
-"Para cambiar de un idioma a otro, Usted puede ejecutar el comando\n"
-"\"localedrake\". Si lo hace como \"root\" cambiará el idioma todo el\n"
-"sistema, si lo hace como usuario no privilegiado cambiará sólo el idioma\n"
-"predeterminado de ese usuario."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr "El %s no está soportado por esta versión de Mandrake Linux."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "tape"
-msgstr "cinta"
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr "cliente DHCP"
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Listar usuarios del sistema en administradores de conexión (kdm y gdm)"
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Ratón Logitech (serie, antiguo tipo C7)"
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
+msgstr ""
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Falló la restauración a partir del archivo %s: %s"
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:53
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"
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-"No se puede leer la tabla de particiones de %s, está demasiado corrupta :(\n"
-"Se puede seguir, borrando las particiones malas (¡perderá TODOS LOS "
-"DATOS!).\n"
-"La otra solución es no permitir que DrakX modifique la tabla de "
-"particiones.\n"
-"(el error es %s)\n"
-"\n"
-"¿Está de acuerdo en perder todas las particiones?\n"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Find Package"
-msgstr "Encontrar paquete"
+#: ../../standalone/harddrake2_.c:55
+#, fuzzy
+msgid "Floppy format"
+msgstr "Formatear"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "¿Está seguro que desea configurar la impresión en esta máquina?\n"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "New devfs device"
-msgstr "Dispositivo devfs nuevo"
+#: ../../standalone/harddrake2_.c:56
+#, fuzzy
+msgid "Level"
+msgstr "nivel"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
-msgstr "ERROR: No se puede lanzar %s."
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Boot Style Configuration"
-msgstr "Configuración del estilo de arranque"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
+msgstr "Clase de medio"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Sincronización automática de la hora"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
+msgstr "clase de dispositivo de hardware"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "Copiar archivos no encontrados en %s."
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+msgid "Model"
+msgstr "Modelo"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "Armenio (fonético)"
+#: ../../standalone/harddrake2_.c:58
+msgid "hard disk model"
+msgstr "modelo de disco rígido"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Card model:"
-msgstr "Modelo de la tarjeta :"
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
-msgstr "Cliente liviano"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Model name"
+msgstr "Nombre del módulo"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
-msgstr "Gracias por elegir Mandrake Linux 9.2"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Official vendor name of the cpu"
+msgstr "el nombre del fabricante del dispositivo"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Start Server"
-msgstr "Iniciar el Servidor"
+#: ../../standalone/harddrake2_.c:61
+msgid "Number of buttons"
+msgstr "Cantidad de botones"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr "Turkmenistán"
+#: ../../standalone/harddrake2_.c:62
+#, fuzzy
+msgid "Name"
+msgstr "Nombre: "
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "All remote machines"
-msgstr "Todas las máquinas remotas"
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "network printer port"
+msgstr ", impresora de red \"%s\", puerto %s"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Install themes"
-msgstr "Instalar temas"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
+msgstr ""
-# este es el idioma de ejemplo en la ayuda de la seleccion de idiomas;
-# en la traduccion de la ayuda se usa el frances como idioma extra de ejemplo
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
-msgstr "Français"
+#: ../../standalone/harddrake2_.c:64
+#, fuzzy
+msgid "the number of the processor"
+msgstr "el color de la barra de progreso"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "Preparando la instalación"
+#: ../../standalone/harddrake2_.c:65
+#, fuzzy
+msgid "Model stepping"
+msgstr "configuración de la carga"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Editar host/red seleccionada"
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add User -->"
-msgstr "Añadir usuario -->"
+#: ../../standalone/harddrake2_.c:66
+#, fuzzy
+msgid "The type of bus on which the mouse is connected"
+msgstr "Seleccione el puerto serie al que está conectado el ratón, por favor."
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "Nauru"
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
+msgstr "el nombre del fabricante del dispositivo"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Instalación de tipografías True Type"
+#: ../../standalone/harddrake2_.c:68
+#, fuzzy
+msgid "the vendor name of the processor"
+msgstr "el nombre del fabricante del dispositivo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr ""
-"Detectar automáticamente las impresoras conectadas directamente a la red "
-"local"
+#: ../../standalone/harddrake2_.c:82
+msgid "/_Quit"
+msgstr "/_Salir"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN configuration"
-msgstr "Configuración de la red local"
+#: ../../standalone/harddrake2_.c:83
+#, fuzzy
+msgid "/Autodetect _printers"
+msgstr "Detectada automáticamente"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "hard disk model"
-msgstr "modelo de disco rígido"
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
+msgstr "/_Opciones"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Maintener /etc/exports:\n"
-" \t\tClusternfs permite exportar la raíz del sistema de archivos a "
-"los clientes sin disco. drakTermServ\n"
-" \t\tconfigura la entrada correcta para permitir acceso anónimo al "
-"sistema de archivos raíz desde\n"
-" \t\tlos clientes sin disco.\n"
-"\n"
-" \t\tUna entrada exports típica para clusternfs es:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t\t/home SUBRED/MÃSCARA(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tDonde SUBRED/MÃSCARA están definidas por su red."
+#: ../../standalone/harddrake2_.c:85
+#, fuzzy
+msgid "/Autodetect _modems"
+msgstr "Detectada automáticamente"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "No puede usar un Volumen Lógico LVM para el punto de montaje %s"
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
+msgstr "/A_yuda"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "Obtener tipografías de Windows"
+#: ../../standalone/harddrake2_.c:89
+msgid "/_Help..."
+msgstr "/A_yuda..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
+msgstr "Ayuda de Harddrake"
-#: ../../standalone/drakclock:1
-#, c-format
+#: ../../standalone/harddrake2_.c:93
msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
+"Description of the fields:\n"
+"\n"
msgstr ""
-"Su computadora puede sincronizar su reloj\n"
-"con un servidor remoto usando NTP"
+"Descripción de los campos:\n"
+"\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "Iraní"
+#: ../../standalone/harddrake2_.c:96
+msgid ""
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
-msgstr "Croacia"
+#: ../../standalone/harddrake2_.c:96
+#, fuzzy
+msgid "Select a device !"
+msgstr "Seleccione un escáner."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "Pasarela:"
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
+msgstr "/_Informar de un error"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add server"
-msgstr "Añadir servidor"
+#: ../../standalone/harddrake2_.c:102
+msgid "/_About..."
+msgstr "/_Acerca..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name"
-msgstr "Nombre de la impresora remota"
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
+msgstr "Acerca de Harddrake"
-#: ../advertising/10-security.pl:1
-#, c-format
+#: ../../standalone/harddrake2_.c:105
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."
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
msgstr ""
-"MandrakeSoft ha diseñado herramientas exclusivas para crear la versión de "
-"Linux más segura jamás: DrakSec, una herramienta de administración de la "
-"seguridad del sistema, y un cortafuegos potente se juntan para reducir "
-"drásticamente los riesgos de hacking."
+"Este es HardDrake, una herramienta de configuración de hardware de "
+"Mandrake.\n"
+"Versión:"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "Dispositivo: "
+#: ../../standalone/harddrake2_.c:106
+msgid "Author:"
+msgstr "Autor:"
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
+#: ../../standalone/harddrake2_.c:113
+msgid "Detection in progress"
+msgstr "Detección en progreso"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "Acuerdo de licencia"
+#: ../../standalone/harddrake2_.c:119
+msgid "Harddrake2 version "
+msgstr "Harddrake2 versión"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "System Options"
-msgstr "Opciones de sistema"
+#: ../../standalone/harddrake2_.c:126
+msgid "Detected hardware"
+msgstr "Hardware detectado"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Please choose the desired security level"
-msgstr "Por favor, elija el nivel de seguridad deseado"
+#: ../../standalone/harddrake2_.c:129
+msgid "Information"
+msgstr "Información"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "Este host ya está en la lista, no se puede volver a añadir.\n"
+#: ../../standalone/harddrake2_.c:131
+msgid "Configure module"
+msgstr "Configurar módulo"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", USB printer"
-msgstr ", impresora USB"
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
+msgstr "Ejecutar herramienta de configuración"
-#: ../../standalone/drakfloppy:1
+#: ../../standalone/harddrake2_.c:143
#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-"No se puede cerrar mkbootdisk adecuadamente: \n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+msgid "Running \"%s\" ..."
+msgstr "Ejecutando \"%s\" ..."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/harddrake2_.c:159
msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-"Los respaldos incrementales sólo guardan archivos que cambiaron o que son "
-"nuevos desde el último respaldo."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Elija las aplicaciones que soportarán las tipografías:"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "Configuración de X"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hd"
-msgstr "disco"
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
+msgstr "primario"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turco (modelo \"F\" tradicional)"
+#: ../../standalone/harddrake2_.c:231
+msgid "secondary"
+msgstr "secundario"
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "¡Felicidades!"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect modems"
+msgstr "Detectada automáticamente"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Usar ID del dueño para la ejecución"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect printers"
+msgstr "Detectada automáticamente"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow remote root login"
-msgstr "Permitir conexión remota de root"
+#: ../../standalone/harddrake2_.c:261
+#, fuzzy
+msgid "/Options"
+msgstr "/_Opciones"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Down"
-msgstr "Bajar"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "Seleccione la distribución de su teclado."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Impresora \"en crudo\" (sin controlador)"
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr "¿Desea que la tecla BackSpace envíe un Delete en la consola?"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Install rpm"
-msgstr "Instalar rpm"
+#: ../../standalone/livedrake_.c:18
+msgid "Change Cd-Rom"
+msgstr "Cambie el CD-ROM"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/livedrake_.c:19
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"
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
-"Para imprimir un archivo desde la línea de comando (ventana de terminal) "
-"utilice el comando \"%s <archivo>\" o una herramienta de impresión gráfica: "
-"\"xpp <archivo>\" o \"kprinter <archivo>\". Las herramientas gráficas le "
-"permiten seleccionar la impresora y modificar las opciones de configuración "
-"fácilmente.\n"
+"Por favor, inserte el CD-ROM de la instalación en su unidad y presione "
+"Aceptar.\n"
+"Si no lo tiene, presione Cancelar para evitar la actualización en vivo."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "Tiempo restante "
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
+msgstr "¡¡¡ No se puede iniciar la actualización en vivo !!!\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "Británico"
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
+msgstr "Se ha realizado el cambio, pero no se hará efectivo hasta que salga"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "Desmontar"
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
+msgstr "logdrake"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
+#: ../../standalone/logdrake_.c:68
+msgid "Show only for the selected day"
+msgstr "Mostrar sólo para el día seleccionado"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "Desinstalar tipografías"
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
+msgstr "/Archivo/_Nuevo"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Por favor espere, detectando y configurando dispositivos..."
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
+msgstr "<control>N"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "Alemán (sin teclas muertas)"
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
+msgstr "/Archivo/_Abrir"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tEnviar correo a %s\n"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
+msgstr "<control>A"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
-msgstr "Transfiriendo %s ..."
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr "/Archivo/_Guardar"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil colores (15 bits)"
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
+msgstr "<control>G"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
-msgstr "Puede exportar usando NFS o Samba. ¿Cuál elige"
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
+msgstr "/Archivo/Guardar _Como"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "Gambia"
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr "/Archivo/-"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Centro de control de Mandrake"
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
+msgstr "/Opciones/Prueba"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Reboot"
-msgstr "Reiniciar"
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
+msgstr "/Ayuda/_Acerca..."
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device"
-msgstr "Dispositivo multifunción"
+#: ../../standalone/logdrake_.c:145
+msgid "User"
+msgstr "Usuario"
-#: ../../network/drakfirewall.pm:1
-#, 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."
-msgstr ""
-"Puede ingresar otros puertos. \n"
-"Por ejemplo: 139/tcp 139/udp.\n"
-"Consulte /etc/services para más información."
+#: ../../standalone/logdrake_.c:146
+msgid "Messages"
+msgstr "Mensajes"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Tape \n"
+#: ../../standalone/logdrake_.c:147
+msgid "Syslog"
+msgstr "Syslog"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
-msgstr ""
-"No se instaló navegador en su sistema, por favor instale uno si desea "
-"navegar el sistema de ayuda"
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
+msgstr "Explicaciones de las herramientas de Mandrake"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remember this password"
-msgstr "Recordar esta contraseña"
+#: ../../standalone/logdrake_.c:151
+msgid "search"
+msgstr "buscar"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "debido a que no se satisfizo %s"
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
+msgstr "Una herramienta para ver sus archivos de registro (logs)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Ahora, la conexión compartida a Internet está activa."
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
+msgstr "Configuración"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Red por SSH.\n"
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
+msgstr "coincidencia"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-"Si se detectó automáticamente la impresora deseada, simplemente elíjala de "
-"la lista y luego agregue el nombre de usuario, contraseña, y/o grupo de "
-"trabajo si es necesario."
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
+msgstr "pero no hay coincidencias"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " cable"
-msgstr " Cable"
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
+msgstr "Elija un archivo"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
-msgstr "Usar el espacio libre de la partición Windows"
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
+msgstr "Calendario"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "se encontró %s en %s, ¿configurarlo automáticamente?"
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
+msgstr "Contenido del archivo"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Controlador XFree86: %s\n"
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+msgid "Mail alert"
+msgstr "Alerta por correo"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/logdrake_.c:245
#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr "Este host/red ya está en la lista, no se puede volver a añadir.\n"
+msgid "please wait, parsing file: %s"
+msgstr "por favor, espere, analizando el archivo: %s"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Elija los paquetes que desea instalar"
+#: ../../standalone/logdrake_.c:392
+msgid "Mail alert configuration"
+msgstr "Configuración de alerta por correo"
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
-msgstr "Papúa Nueva Guinea"
+#: ../../standalone/logdrake_.c:393
+msgid ""
+"Welcome to the mail configuration utility.\n"
+"\n"
+"Here, you'll be able to set up the alert system.\n"
+msgstr ""
+"Bienvenido a la herramienta de configuración del correo.\n"
+"\n"
+"Aquí podrá configurar su sistema de alerta.\n"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Dispositivo multifunción en puerto paralelo"
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
+msgstr "Servidor de World Wide Web Apache"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Busy files"
-msgstr "Archivos ocupados"
+#: ../../standalone/logdrake_.c:401
+msgid "Domain Name Resolver"
+msgstr "Nombres de dominio"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "Serbio (cirílico)"
+#: ../../standalone/logdrake_.c:402
+msgid "Ftp Server"
+msgstr "Servidor FTP"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Ingrese el directorio donde se almacenan las copias de respaldo"
+#: ../../standalone/logdrake_.c:403
+msgid "Postfix Mail Server"
+msgstr "Servidor de correo Postfix"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
-msgstr "Predeterminadamente el mensaje del núcleo es \"silencioso\""
+#: ../../standalone/logdrake_.c:404
+msgid "Samba Server"
+msgstr "Servidor Samba"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/logdrake_.c:405
+msgid "SSH Server"
+msgstr "Servidor SSH"
+
+#: ../../standalone/logdrake_.c:406
+msgid "Webmin Service"
+msgstr "Servicio Webmin"
+
+#: ../../standalone/logdrake_.c:407
+msgid "Xinetd Service"
+msgstr "Servicio Xinetd"
+
+#: ../../standalone/logdrake_.c:414
+msgid "service setting"
+msgstr "configuración del servicio"
+
+#: ../../standalone/logdrake_.c:415
msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
-"¿Quiere configurar esta impresora (\"%s\")\n"
-"como la impresora predeterminada?"
+"Recibirá una alerta si se detiene la ejecución de uno de los servicios "
+"seleccionados"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
-msgstr "Fin del rango de DHCP"
+#: ../../standalone/logdrake_.c:428
+msgid "load setting"
+msgstr "configuración de la carga"
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "Creando el disquete de arranque"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
+msgstr "Recibirá una alerta si la carga es mayor que este valor"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Por favor espere, probando su conexión..."
+#: ../../standalone/logdrake_.c:444
+msgid "alert configuration"
+msgstr "configuración de alerta"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "Bajando la red"
+#: ../../standalone/logdrake_.c:445
+msgid "Please enter your email address below "
+msgstr "Por favor, ingrese su dirección de correo electrónico debajo "
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "ID de conexión"
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
+msgstr "Guardar como..."
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS es un protocolo muy popular para compartir archivos en redes TCP/IP.\n"
-"Este servicio proporciona la funcionalidad de bloqueo de archivos por NFS."
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "Seleccione el tipo de su ratón, por favor."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
-msgstr "Cliente DHCP"
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
+msgstr "¿Emular el tercer botón?"
-#: ../../standalone/harddrake2:1
-#, 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"
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Configuración de la red"
+
+#: ../../standalone/net_monitor_.c:96
+#, fuzzy
+msgid "Profile "
+msgstr "Perfil: "
+
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
msgstr ""
-"Este es HardDrake, una herramienta de configuración de hardware de "
-"Mandrake.\n"
-"<span foreground=\"royalblue3\">Versión:</span> %s\n"
-"<span foreground=\"royalblue3\">Autor:</span> Thierry Vignaud &lt;tvignaud"
-"@mandrakesoft.com&gt;\n"
-"\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
-msgstr "rechazar"
+#: ../../standalone/net_monitor_.c:103
+#, fuzzy
+msgid "Sending Speed:"
+msgstr "Enviando archivos..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Imprimiendo/Escaneando en \"%s\""
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
+msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit raid modules"
-msgstr "omitir módulos raid"
+#: ../../standalone/net_monitor_.c:106
+#, fuzzy
+msgid "Connection Time: "
+msgstr "Tipo de conexión: "
-#: ../../services.pm:1
-#, 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)."
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
msgstr ""
-"lpd es el demonio de impresión, necesario para que lpr funcione\n"
-"correctamente. Básicamente, es un servidor que coloca las tareas de\n"
-"impresión en las colas de impresión adecuadas para cada impresora."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
-msgstr "irlandés"
+#: ../../standalone/net_monitor_.c:147
+#, fuzzy
+msgid "Wait please, testing your connection..."
+msgstr "Probando su conexión..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sunday"
-msgstr "Domingo"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Conectar a Internet"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Configuración de la conexión a Internet"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Conectar a Internet"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
-msgstr "números separados por comas"
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, 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\")"
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
msgstr ""
-"Una vez que seleccionó un dispositivo, podrá ver información sobre el mismo "
-"en los campos mostrados en el marco derecho (\"Información\")"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Subir un nivel la regla seleccionada"
+#: ../../standalone/net_monitor_.c:225
+#, fuzzy
+msgid "Connection complete."
+msgstr "Velocidad de la conexión"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../standalone/net_monitor_.c:226
msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-"El siguiente escáner\n"
-"\n"
-"%s\n"
-"está disponible en su sistema.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "¿Seguro que quiere borrar la impresora \"%s\"?"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "I can't find any room for installing"
-msgstr "No se puede encontrar nada de espacio para instalar"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Default printer"
-msgstr "Impresora predeterminada"
+#: ../../standalone/net_monitor_.c:330
+#, fuzzy
+msgid "Color configuration"
+msgstr "configuración de alerta"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
msgstr ""
-"Ha configurado múltiples formas de conectarse a Internet.\n"
-"Seleccione la que quiere utilizar.\n"
-"\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Modify RAID"
-msgstr "Modificar el RAID"
-
-#: ../../network/isdn.pm:1
-#, 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."
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
msgstr ""
-"Se ha detectado una tarjeta RDSI PCI, pero no se conoce el tipo. Por favor, "
-"seleccione una tarjeta PCI en la pantalla siguiente."
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr "Añadir un usuario"
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "Discos-RAID %s\n"
+#: ../../standalone/net_monitor_.c:400
+#, fuzzy
+msgid "Local measure"
+msgstr "Archivos locales"
-#: ../../lang.pm:1
-#, c-format
-msgid "Liberia"
-msgstr "Liberia"
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
msgstr ""
-"No se pueden instalar los paquetes necesarios para configurar un escáner con "
-"Scannerdrake."
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../standalone/net_monitor_.c:453
+#, fuzzy
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"
+"Warning, another internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Por favor, ingrese el nombre de la Interfaz conectada a la Internet.\n"
-"\n"
-"Ejemplos:\n"
-"\t\tppp+ para conexiones por módem o DSL,\n"
-"\t\teth0, o eth1 para conexión por cable,\n"
-"\t\tippp+ para una conexión RDSI.\n"
+"Atención, se ha detectado otra conexión con la Internet, tal vez está usando "
+"su red"
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Elija su teclado"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "Conectar"
-#: ../../steps.pm:1
-#, c-format
-msgid "Format partitions"
-msgstr "Formateo de particiones"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Disconnect %s"
+msgstr "Desconectar"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Corrección automática de la configuración de CUPS"
+#: ../../standalone/printerdrake_.c:47
+msgid "Reading printer data ..."
+msgstr "Leyendo los datos de la impresora ..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Running \"%s\" ..."
-msgstr "Ejecutando \"%s\" ..."
+#: ../../standalone/scannerdrake_.c:39
+msgid "Detecting devices ..."
+msgstr "Detectando dispositivos..."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "enable radio support"
-msgstr "habilitar el soporte para radio"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
+msgstr "Probar puertos"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Compartir escáneres en hosts: "
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr "El %s no está soportado por esta versión de Mandrake Linux."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/scannerdrake_.c:54
#, c-format
-msgid "Loopback file name: %s"
-msgstr "Nombre del archivo de loopback: %s"
+msgid "%s found on %s, configure it?"
+msgstr "se encontró %s en %s, ¿configurarlo?"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/scannerdrake_.c:57
#, c-format
-msgid "Please choose the printer to which the print jobs should go."
+msgid "%s is not in the scanner database, configure it manually?"
msgstr ""
-"Por favor, elija la impresora a la cual deberían ir los trabajos de "
-"impresión."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not transfer printers"
-msgstr "No transferir impresoras"
+"%s no está en la base de datos de escáneres, ¿configurarlo manualmente?"
-#: ../../help.pm:1
-#, c-format
-msgid "Delay before booting the default image"
-msgstr "Demora antes de arrancar la imagen predeterminada"
+#: ../../standalone/scannerdrake_.c:63
+msgid "Select a scanner"
+msgstr "Seleccione un escáner."
-#: ../../standalone/drakbackup:1
+#: ../../standalone/scannerdrake_.c:91
#, c-format
-msgid "Use Hard Disk to backup"
-msgstr "Usar el disco rígido para copia de respaldo"
+msgid "This %s scanner is unsupported"
+msgstr "El escáner %s no está soportado"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
+#: ../../standalone/scannerdrake_.c:105
#, c-format
-msgid "Configure"
-msgstr "Configurar"
+msgid ""
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
+msgstr ""
+"Scannerdrake no pudo detectar su escáner %s.\n"
+"Por favor, seleccione el dispositivo donde está conectado su escáner"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake"
-msgstr "Scannerdrake"
+#: ../../standalone/scannerdrake_.c:107
+msgid "choose device"
+msgstr "elija el dispositivo"
-#: ../../standalone/drakconnect:1
+#: ../../standalone/scannerdrake_.c:113
#, c-format
msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
msgstr ""
-"Atención, se ha detectado otra conexión con la Internet, tal vez está usando "
-"su red"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
-msgstr "Respaldar usuarios"
+"printerdrake puede configurar este escáner %s.\n"
+"Puede lanzar printerdrake desde el Centro de control de Mandrake en la "
+"sección Hardware."
-#: ../../network/network.pm:1
+#: ../../standalone/scannerdrake_.c:118
#, 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."
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
msgstr ""
-"Por favor, defina el nombre de su máquina.\n"
-"El nombre de su máquina debería ser un nombre de máquina clasificado "
-"completamente,\n"
-"como \"mimaquina.milabo.micompa.com\".También puede introducir la dirección "
-"IP de la pasarela si tiene una"
+"Su escáner %s ha sido configurado.\n"
+"Ahora puede escanear documentos usando \"XSane\" en el menú Multimedios/"
+"Gráficos."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "Select Printer Spooler"
-msgstr "Seleccione sistema de impresión (spooler)"
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Se quitaron algunos dispositivos en la clase de hardware \"%s\":\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Create new theme"
-msgstr "Crear un tema nuevo"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
+msgstr "Se agregaron algunos dispositivos:\n"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
-msgstr "Explicaciones de las herramientas de Mandrake"
+#: ../../standalone/service_harddrake_.c:64
+#, fuzzy
+msgid "Hardware probing in progress"
+msgstr "Detección en progreso"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "No image found"
-msgstr "No se encontró imagen"
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "Elija su idioma"
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
-"Algunos paquetes importantes no fueron instalados correctamente.\n"
-"Seguramente su lector de CD o su CD de instalación sean defectuosos.\n"
-"Compruebe el CD de instalación en un sistema ya existente con el comando:\n"
-" rpm -qpl Mandrake/RPMS/*.rpm\n"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "Tipo de instalación"
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
-msgstr "Mandrake Linux 9.2 es la mejor plataforma de desarrollo."
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
+msgstr "Detección del disco rígido"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Detected model: %s"
-msgstr "Modelo detectado: %s"
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "Configuración del ratón"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
-msgstr "¡\"%s\" no es un correo-e válido!"
+#: ../../steps.pm_.c:18
+msgid "Choose your keyboard"
+msgstr "Elija su teclado"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"El administrador de conexión X11 le permite conectarse gráficamente\n"
-"a su sistema con el X Window System corriendo y soporta correr varias\n"
-"sesiones X diferentes en su máquina local a la vez."
+#: ../../steps.pm_.c:19
+msgid "Security"
+msgstr "Seguridad"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr "si se pone en sí, ejecutar las verificaciones de seguridad diarias."
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "Sistemas de archivos"
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
-msgstr "Azerbayán"
+#: ../../steps.pm_.c:21
+msgid "Format partitions"
+msgstr "Formateo de particiones"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Nombre del dispositivo a utilizar para el respaldo"
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "Elija los paquetes a instalar"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
-msgstr "¡No hay cinta en %s!"
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "Instalar el sistema"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-" --doc <enlace> - enlazar a otra página web (para la interfaz de "
-"bienvenida de WM)\n"
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "Añadir un usuario"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "Configurar la red"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "Servicios al inicio"
+
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "Cargador de arranque"
+
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "Crear un disco de arranque"
+
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "Configuración de X"
+
+#: ../../steps.pm_.c:34
+msgid "Install system updates"
+msgstr "Actualiz. del sistema"
+
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "Salir de la instalación"
+
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
msgstr ""
-"esto es el bus físico sobre el cual se conecta el dispositivo (ej.: PCI, "
-"USB, ...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "¿Cómo está conectada la impresora?"
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "Servidor, Web/FTP"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security level"
-msgstr "Nivel de seguridad"
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
+msgstr "Computadora de Red (cliente)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "final resolution"
-msgstr "resolución final"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Servidor NFS, servidor SMB, servidor proxy, servidor SSH"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
-msgstr "Servicios"
+#: ../../share/compssUsers:999
+msgid "Office"
+msgstr "Oficina"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Auto configuration"
-msgstr "Configuración automática"
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Estación de trabajo GNOME"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Herramientas para su Palm Pilot o su Visor"
#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Estación de trabajo de Oficina"
+msgid "Workstation"
+msgstr "Estación de trabajo"
+
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Servidor, Cortafuegos/Router"
+
+#: ../../share/compssUsers:999
+msgid "Domain Name and Network Information Server"
+msgstr "Servidor de Información de Red y de Nombres de Dominio"
#: ../../share/compssUsers:999
msgid ""
@@ -21282,68 +15135,78 @@ msgstr ""
"de cálculo (kspread, gnumeric), visualizadores PDF, etc"
#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Estación de Juegos"
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "Herramientas de audio: reproductores mp3 o midi, mezcladores, etc"
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Programas de entretenimiento: arcade, tableros, estrategia, etc"
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Soporte de aplicaciones de terceros"
#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Estación Multimedios"
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Libros y COMOs sobre Linux y Software Libre"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Programas de reproducción/edición de sonido y vídeo"
+msgid "KDE Workstation"
+msgstr "Estación de trabajo KDE"
#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Estación Internet"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Conjunto de herramientas para leer y enviar correo y noticias (mutt, tin...) "
-"y para navegar por la Web"
+msgid "Multimedia - Video"
+msgstr "Multimedios - Vídeo"
#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Computadora de Red (cliente)"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+"Conjunto de herramientas para correo, noticias, web, transferencia de "
+"archivos, y chat"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Clientes para los distintos protocolos incluyendo a ssh"
+msgid "Database"
+msgstr "Servidor, Bases de Datos"
#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Configuración"
+msgid "PostgreSQL or MySQL database server"
+msgstr "Servidor de base de datos PostgreSQL o MySQL"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
msgstr "Herramientas para facilitar la configuración de su computadora"
#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Estación de trabajo Científica"
+msgid "Multimedia - Sound"
+msgstr "Multimedios - Sonido"
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
-msgstr "Aplicaciones científicas tales como gnuplot"
+msgid "Documentation"
+msgstr "Documentación"
#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr "Herramientas para la consola"
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editores, shells, manipulación de archivos, terminales"
+msgid "Postfix mail server, Inn news server"
+msgstr "Servidor de correo Postfix, servidor de noticias Inn"
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "Estación de trabajo KDE"
+msgid "Internet station"
+msgstr "Estación Internet"
+
+#: ../../share/compssUsers:999
+msgid "Multimedia station"
+msgstr "Estación Multimedios"
+
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Configuración"
+
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "Más escritorios gráficos (Gnome, IceWM)"
#: ../../share/compssUsers:999
msgid ""
@@ -21354,2044 +15217,429 @@ msgstr ""
"herramientas que lo acompañan"
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Estación de trabajo GNOME"
+msgid "Graphical Environment"
+msgstr "Entorno gráfico"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Entorno gráfico con un conjunto de herramientas de escritorio y aplicaciones "
-"amigables"
+msgid "Development"
+msgstr "Desarrollo"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Otros entornos gráficos"
+msgid "Apache, Pro-ftpd"
+msgstr "Apache y Pro-ftpd"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgid "Tools to create and burn CD's"
+msgstr "Herramientas para crear y grabar CDs"
+
+#: ../../share/compssUsers:999
+msgid "Office Workstation"
+msgstr "Estación de trabajo de Oficina"
+
+#: ../../share/compssUsers:999
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+
+#: ../../share/compssUsers:999
+msgid "Graphics programs such as The Gimp"
+msgstr "Programas gráficos, tales como El Gimp"
+
+#: ../../share/compssUsers:999
+msgid "DNS/NIS "
+msgstr "DNS/NIS"
#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr "Bibliotecas de desarrollo C y C++, programas y archivos *.h"
#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Documentación"
+msgid "Network Computer server"
+msgstr "Computadora servidor de red"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Libros y COMOs sobre Linux y Software Libre"
+msgid "Mail/Groupware/News"
+msgstr "Servidor, Correo/Groupware/Noticias"
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr "LSB"
+msgid "Game station"
+msgstr "Estación de Juegos"
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Linux Standard Base. Soporte de aplicaciones de terceros"
+msgid "Video players and editors"
+msgstr "Reproductores y editores de vídeo"
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Servidor, Web/FTP"
+msgid "Multimedia - Graphics"
+msgstr "Multimedios - Gráficos"
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache y Pro-ftpd"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Programas de entretenimiento: arcade, tableros, estrategia, etc"
#: ../../share/compssUsers:999
-msgid "Mail"
-msgstr "Correo"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"Conjunto de herramientas para leer y enviar correo y noticiar (pine, mutt, "
+"tin...) y para navegar por la Web"
#: ../../share/compssUsers:999
-msgid "Postfix mail server"
-msgstr "Servidor de correo Postfix"
+msgid "Personal Finance"
+msgstr "Finanzas personales"
#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Servidor, Bases de Datos"
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Entorno gráfico con un conjunto de herramientas de escritorio y aplicaciones "
+"amigables"
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "Servidor de base de datos PostgreSQL o MySQL"
+msgid "Clients for different protocols including ssh"
+msgstr "Clientes para los distintos protocolos incluyendo a ssh"
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Servidor, Cortafuegos/Router"
+msgid "LSB"
+msgstr "LSB"
#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Pasarela de acceso a Internet"
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS"
+msgid "Sound and video playing/editing programs"
+msgstr "Programas de reproducción/edición de sonido y vídeo"
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Servidor de Información de Red y de Nombres de Dominio"
+msgid "Other Graphical Desktops"
+msgstr "Otros entornos gráficos"
#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Computadora servidor de red"
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editores, shells, manipulación de archivos, terminales"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "Servidor NFS, servidor SMB, servidor proxy, servidor SSH"
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "Programas para administrar sus finanzas, tales como gnucash"
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
-msgstr ""
-"Conjunto de herramientas para leer y enviar correo y noticias y para navegar "
-"por la Web"
+msgid "Personal Information Management"
+msgstr "Administración de la información personal"
-#~ msgid "The setup has already been done, and it's currently enabled."
-#~ msgstr "La configuración ya se ha hecho, y ahora está activada."
+#: ../../share/compssUsers:999
+msgid "Multimedia - CD Burning"
+msgstr "Multimedios - Grabación de CD"
-#~ msgid "Logs"
-#~ msgstr "Registros"
+#: ../../share/compssUsers:999
+msgid "Scientific Workstation"
+msgstr "Estación de trabajo Científica"
-#~ msgid "The setup has already been done, but it's currently disabled."
-#~ msgstr "La configuración ya se ha hecho, pero ahora está desactivada."
+#~ msgid "can not open /etc/inittab for reading: %s"
+#~ msgstr "¡no se puede abrir /etc/inittab para lectura: %s !"
-#~ msgid "Profile "
-#~ msgstr "Perfil "
+#, fuzzy
+#~ msgid "cpu number "
+#~ msgstr "un número"
#~ msgid ""
-#~ "Welcome to the Internet Connection Sharing utility!\n"
+#~ "You now have the opportunity to download encryption software.\n"
#~ "\n"
-#~ "%s\n"
+#~ "WARNING:\n"
#~ "\n"
-#~ "Click on Configure to launch the setup wizard."
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
+#~ "\n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
+#~ "\n"
+#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
+#~ "\n"
+#~ "\n"
+#~ "For any queries relating to these agreement, please contact \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
#~ msgstr ""
-#~ "¡Bienvenido a la herramienta para compartir la conexión a Internet!\n"
+#~ "Ahora tiene la posibilidad de bajar por la red paquetes específicos\n"
+#~ "durante el procedimiento de instalación, incuídos programas de cifrado.\n"
#~ "\n"
-#~ "%s\n"
+#~ "ADVERTENCIA:\n"
#~ "\n"
-#~ "Haga click sobre Configurar para lanzar el asistente de configuración."
-
-#~ msgid "Internet Connection Sharing configuration"
-#~ msgstr "Configuración de la conexión compartida a Internet"
-
-#~ msgid "No Internet Connection Sharing has ever been configured."
-#~ msgstr "No se ha configurado la conexión compartida a Internet."
+#~ "Debido a las diferencias de los requisitos aplicables a ese tipo de\n"
+#~ "programas por las distintas jurisdicciones, es el cliente y/o el usuario "
+#~ "final\n"
+#~ "de dichos programas quien debe verificar que las leyes de su jurisdicción "
+#~ "le\n"
+#~ "permitan bajar, guardar y/o utilizar dichos programas.\n"
+#~ "\n"
+#~ "En particular el cliente y/o usuario final debe tener un cuidado "
+#~ "especial\n"
+#~ "de no violar las leyes de su de su jurisdicción. En el caso de que el "
+#~ "cliente y/o\n"
+#~ "el usuario final no respetase las condiciones de las leyes que le son\n"
+#~ "aplicables, es posible que sea severamente sancionado por la ley.\n"
+#~ "\n"
+#~ "En ningún caso MandrakeSoft ni ninguno de sus fabricantes y/o\n"
+#~ "distribuidores se puede considerar responsable por daños especiales, "
+#~ "directos\n"
+#~ "o indirectos de cualquier tipo (incluyendo, pero sin limitarse a ello, "
+#~ "pérdida\n"
+#~ "de beneficios, ruptura de negocios, pérdida de datos comerciales u otras\n"
+#~ "pérdidas pecuniarias, o eventuales responsabilidades e indemnizaciones\n"
+#~ "a pagar debido a decisiones de la justicia) que puedan ocurrir mediante "
+#~ "el\n"
+#~ "uso, posesión o el sólo hecho de descargar de Internet o por otro medio, "
+#~ "programas\n"
+#~ "a los cuales el cliente y/o usuario final tenga acceso después de haber\n"
+#~ "firmado el presente convenio.\n"
+#~ "\n"
+#~ "Para preguntas relativas a este convenio, póngase en contacto con\n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
-#~ msgid "when checked, owner and group won't be changed"
-#~ msgstr "cuando está marcado, el grupo y el dueño no se cambiarán"
+#~ msgid "Proxy configuration"
+#~ msgstr "Configuración del proxy"
#~ msgid ""
-#~ "XawTV isn't installed!\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do have a TV card but DrakX has neither detected it (no bttv nor "
-#~ "saa7134\n"
-#~ "module in \"/etc/modules\") nor installed xawtv, please send the\n"
-#~ "results of \"lspcidrake -v -f\" to \"install@mandrakesoft.com\"\n"
-#~ "with subject \"undetected TV card\".\n"
-#~ "\n"
+#~ "Welcome to the proxy configuration utility.\n"
#~ "\n"
-#~ "You can install it by typing \"urpmi xawtv\" as root, in a console."
+#~ "Here, you'll be able to set up your http and ftp proxies\n"
+#~ "with or without login and password\n"
#~ msgstr ""
-#~ "¡XawTV no está instalado!\n"
+#~ "Bienvenido a la herramienta de configuración del proxy.\n"
#~ "\n"
-#~ "\n"
-#~ "Si tiene una tarjeta de TV pero DrakX no la detectó (\"/etc/modules\" no\n"
-#~ "tiene el módulo bttv ni saa7134) ni instaló xawtv, por favor envíe\n"
-#~ "el resultado de \"lspcidrake -v -f\" a \"install@mandrakesoft.com\" con\n"
-#~ "el tema \"undetected TV card\".\n"
-#~ "\n"
-#~ "Lo puede instalar tecleando \"urpmi xawtv\", como root, en la consola."
+#~ "Aquí podrá configurar sus proxies http y ftp con o sin\n"
+#~ "usuario y contraseña.\n"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#~ 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"
-#~ "required to be installed. The installer can determine which packages are\n"
-#~ "required to satisfy a dependency to successfully complete the "
-#~ "installation.\n"
-#~ "\n"
-#~ "The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-#~ "package list created during a previous installation. This is useful if "
-#~ "you\n"
-#~ "have a number of machines that you wish to configure identically. "
-#~ "Clicking\n"
-#~ "on this icon will ask you to insert a floppy disk previously created at "
-#~ "the\n"
-#~ "end of another installation. See the second tip of last step on how to\n"
-#~ "create such a floppy."
+#~ "Please fill in the http proxy informations\n"
+#~ "Leave it blank if you don't want an http proxy"
#~ msgstr ""
-#~ "Si le dijo al instalador que deseaba seleccionar los paquetes "
-#~ "individuales,\n"
-#~ "el mismo presentará un árbol que contiene todos los paquetes "
-#~ "clasificados\n"
-#~ "por grupos y subgrupos. Mientras navega por el árbol puede seleccionar\n"
-#~ "grupos enteros, subgrupos, o paquetes individuales.\n"
-#~ "\n"
-#~ "Tan pronto como selecciona un paquete en el árbol, aparece una "
-#~ "descripción\n"
-#~ "del mismo sobre la derecha que le permite conocer el propósito del "
-#~ "paquete.\n"
-#~ "\n"
-#~ "Es muy probable que la gran mayoría de las descripciones de los paquetes\n"
-#~ "estén en inglés.\n"
-#~ "\n"
-#~ "!! Si ha sido seleccionado un paquete de servidor ya sea porque Usted\n"
-#~ "seleccionó específicamente el paquete individual o porque el mismo era\n"
-#~ "parte de un grupo de paquetes, se le pedirá que confirme que realmente\n"
-#~ "desea que se instalen esos servidores. Bajo Mandrake Linux, cualquier\n"
-#~ "servidor instalado se inicia de manera predeterminada al momento del\n"
-#~ "arranque. Aunque estos son seguros y no tienen problemas conocidos al\n"
-#~ "momento en que se publicó la distribución, es posible que se descubran\n"
-#~ "vulnerabilidades en la seguridad luego que se terminó con esta versión "
-#~ "de\n"
-#~ "Mandrake Linux. En particular, si no sabe que es lo que se supone que "
-#~ "hace\n"
-#~ "un servicio o la razón por la cual se está instalando, entonces haga "
-#~ "clic\n"
-#~ "sobre \"%s\". Si hace clic sobre \"%s\" se instalarán todos los "
-#~ "servicios\n"
-#~ "listados y de manera predeterminada los mismos arrancarán "
-#~ "automáticamente.\n"
-#~ "!!\n"
-#~ "\n"
-#~ "La opción \"%s\" simplemente deshabilita el diálogo de advertencia que\n"
-#~ "aparece cuando el instalador selecciona automáticamente un paquete para\n"
-#~ "resolver un problema de dependencias. Algunos paquetes tienen relaciones\n"
-#~ "entre ellos tales que la instalación de un paquete necesita que algún "
-#~ "otro\n"
-#~ "programa ya esté instalado. El instalador puede determinar qué paquetes "
-#~ "se\n"
-#~ "necesitan para satisfacer una dependencia para completar la instalación "
-#~ "de\n"
-#~ "manera satisfactoria.\n"
-#~ "\n"
-#~ "El pequeño icono del disquete al final de la lista le permite cargar la\n"
-#~ "lista de paquetes elegida durante una instalación previa. Esto es útil "
-#~ "si\n"
-#~ "Usted tiene una cantidad de máquinas que desea configurar de manera\n"
-#~ "idéntica. Haga clic sobre este icono y se le pedirá que inserte un "
-#~ "disquete\n"
-#~ "creado con anterioridad al final de otra instalación. Vea el segundo\n"
-#~ "consejo del último paso para información sobre como crear dicho disquete."
+#~ "Por favor, rellene las informaciones del proxy http.\n"
+#~ "Déjelo en blanco si no quiere un proxy http."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#~ 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"
-#~ "GNU/Linux. To do so, you can delete your Microsoft Windows partition and\n"
-#~ "data (see ``Erase entire disk'' solution) or resize your Microsoft "
-#~ "Windows\n"
-#~ "FAT or NTFS partition. Resizing can be performed without the loss of any\n"
-#~ "data, provided you have previously defragmented the Windows partition.\n"
-#~ "Backing up your data is strongly recommended.. Using this option is\n"
-#~ "recommended if you want to use both Mandrake Linux and Microsoft Windows "
-#~ "on\n"
-#~ "the same computer.\n"
-#~ "\n"
-#~ " Before choosing this option, please understand that after this\n"
-#~ "procedure, the size of your Microsoft Windows partition will be smaller\n"
-#~ "then when you started. You will have less free space under Microsoft\n"
-#~ "Windows to store your data or to install new software.\n"
-#~ "\n"
-#~ " * \"%s\": if you want to delete all data and all partitions present on\n"
-#~ "your hard drive and replace them with your new 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 "
-#~ "Guide''."
-#~ msgstr ""
-#~ "Ahora necesita elegir el lugar de su disco rígido donde se instalará su\n"
-#~ "sistema operativo Mandrake Linux. Si su disco rígido está vacío o si un\n"
-#~ "sistema operativo existente está utilizando todo el espacio disponible,\n"
-#~ "necesitará particionar el disco. Básicamente, particionar un disco "
-#~ "rígido\n"
-#~ "consiste en dividirlo lógicamente para crear espacio para instalar su\n"
-#~ "sistema Mandrake Linux nuevo.\n"
-#~ "\n"
-#~ "Debido a que el proceso de particionado de un disco rígido por lo "
-#~ "general\n"
-#~ "es irreversible y puede llevar a pérdida de datos si ya hay un sistema\n"
-#~ "operativo instalado en el disco, el particionado puede ser intimidante y\n"
-#~ "estresante si Usted es un usuario inexperto. Por fortuna, DrakX incluye "
-#~ "un\n"
-#~ "asistente que simplifica este proceso. Antes de continuar con este paso,\n"
-#~ "por favor lea el resto de esta sección y, por sobre todo, tómese su "
-#~ "tiempo.\n"
-#~ "\n"
-#~ "Dependiendo de la configuración de su disco rígido, están disponibles\n"
-#~ "varias opciones:\n"
-#~ "\n"
-#~ " * \"%s\": esta opción simplemente llevará a un particionado automático "
-#~ "de\n"
-#~ "su(s) disco(s) vacío(s). Si elige esta opción, no se le pedirán más\n"
-#~ "detalles ni se le formularán más preguntas.\n"
-#~ "\n"
-#~ " * \"%s\": el asistente ha detectado una o más particiones Linux "
-#~ "existentes\n"
-#~ "en su disco rígido. Si desea utilizarlas, elija esta opción. Entonces se "
-#~ "le\n"
-#~ "pedirá que elija los puntos de montaje asociados a cada una de las\n"
-#~ "particiones. Los puntos de montaje legados se seleccionan "
-#~ "automáticamente,\n"
-#~ "y por lo general es buena idea mantenerlos.\n"
-#~ "\n"
-#~ " * \"%s\": si Microsoft Windows está instalado en su disco rígido y "
-#~ "ocupa\n"
-#~ "todo el espacio disponible en el mismo, Usted tendrá que liberar espacio\n"
-#~ "para Linux. Para hacerlo, puede borrar su partición y datos Microsoft\n"
-#~ "Windows (vea la solución \"Borrar el disco entero\") o cambiar el tamaño "
-#~ "de\n"
-#~ "su partición Microsoft Windows FAT o NTFS. El cambio de tamaño se puede\n"
-#~ "realizar sin la pérdida de datos, siempre y cuando Usted haya\n"
-#~ "desfragmentado con anterioridad la partición Windows. Es altamente\n"
-#~ "recomendable hacer una copia de respaldo de sus datos. Se recomienda "
-#~ "usar\n"
-#~ "esta solución si desea utilizar tanto Mandrake Linux como Microsoft "
-#~ "Windows\n"
-#~ "en la misma computadora.\n"
-#~ "\n"
-#~ " Antes de elegir esta opción, por favor comprenda que después de este\n"
-#~ "procedimiento el tamaño de su partición Microsoft Windows será más "
-#~ "pequeño\n"
-#~ "que cuando comenzó. Tendrá menos espacio bajo Microsoft Windows para\n"
-#~ "almacenar sus datos o instalar software nuevo.\n"
-#~ "\n"
-#~ " * \"%s\": si desea borrar todos los datos y todas las particiones\n"
-#~ "presentes en su disco rígido y reemplazarlos con su nuevo sistema "
-#~ "Mandrake\n"
-#~ "Linux, elija esta opción. Tenga cuidado con esta solución ya que no "
-#~ "podrá\n"
-#~ "revertir su elección después de confirmarla.\n"
-#~ "\n"
-#~ " !! Si elige esta opción, se perderán todos los datos en su disco. !!\n"
-#~ "\n"
-#~ " * \"%s\": esto simplemente borrará todo en el disco y comenzará\n"
-#~ "particionando todo desde cero. Se perderán todos los datos en su disco.\n"
-#~ "\n"
-#~ " !! Si elige esta opción, se perderán todos los datos en su disco. !!\n"
-#~ "\n"
-#~ " * \"%s\": elija esta opción si desea particionar manualmente su disco\n"
-#~ "rígido. Tenga cuidado - esta es una elección potente pero peligrosa y "
-#~ "puede\n"
-#~ "perder todos sus datos con facilidad. Esa es la razón por la cual esta\n"
-#~ "opción realmente sólo se recomienda si ha hecho algo como esto antes y\n"
-#~ "tiene algo de experiencia. Para más instrucciones acerca de la "
-#~ "utilización\n"
-#~ "del utilitario DiskDrake, consulte la sección \"Administrar sus\n"
-#~ "particiones\" de la \"Guía de Comienzo\"."
+#~ msgid "URL"
+#~ msgstr "URL"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#~ msgid ""
-#~ "The Mandrake Linux installation is distributed on several CD-ROMs. If a\n"
-#~ "selected package is located on another CD-ROM, DrakX will eject the "
-#~ "current\n"
-#~ "CD and ask you to insert the correct CD as required."
-#~ msgstr ""
-#~ "La instalación de Mandrake Linux se distribuye en varios CD-ROM. Si un\n"
-#~ "paquete seleccionado se encuentra en otro CD-ROM, DrakX expulsará el CD\n"
-#~ "corriente y le pedirá que inserte el CD correcto según sea necesario."
+#~ msgid "port"
+#~ msgstr "puerto"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#~ 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 sorts packages groups in four categories. You "
-#~ "can\n"
-#~ "mix and match applications from the various categories, so a\n"
-#~ "``Workstation'' installation can still have applications from the\n"
-#~ "``Development'' category installed.\n"
-#~ "\n"
-#~ " * \"%s\": if you plan to use your machine as a workstation, select one "
-#~ "or\n"
-#~ "more of the groups that are in the workstation category.\n"
-#~ "\n"
-#~ " * \"%s\": if plan on using your machine for programming, select the\n"
-#~ "appropriate groups from that category.\n"
-#~ "\n"
-#~ " * \"%s\": if your machine is intended to be a server, select which of "
-#~ "the\n"
-#~ "more common services you wish to install on your machine.\n"
-#~ "\n"
-#~ " * \"%s\": this is where you will choose your preferred graphical\n"
-#~ "environment. At least one must be selected if you want to have a "
-#~ "graphical\n"
-#~ "interface available.\n"
-#~ "\n"
-#~ "Moving the mouse cursor over a group name will display a short "
-#~ "explanatory\n"
-#~ "text about that group. If you unselect all groups when performing a "
-#~ "regular\n"
-#~ "installation (as opposed to an upgrade), a dialog will pop up proposing\n"
-#~ "different options for a minimal installation:\n"
-#~ "\n"
-#~ " * \"%s\": install the minimum number of packages possible to have a\n"
-#~ "working graphical desktop.\n"
-#~ "\n"
-#~ " * \"%s\": installs the base system plus basic utilities and their\n"
-#~ "documentation. This installation is suitable for setting up a server.\n"
-#~ "\n"
-#~ " * \"%s\": will install the absolute minimum number of packages "
-#~ "necessary\n"
-#~ "to get a working Linux system. With this installation you will only have "
-#~ "a\n"
-#~ "command line interface. The total size of this installation is about 65\n"
-#~ "megabytes.\n"
-#~ "\n"
-#~ "You can check the \"%s\" box, which is useful if you are familiar with "
-#~ "the\n"
-#~ "packages being offered or if you want to have total control over what "
-#~ "will\n"
-#~ "be installed.\n"
-#~ "\n"
-#~ "If you started the installation in \"%s\" mode, you can unselect all "
-#~ "groups\n"
-#~ "to avoid installing any new package. This is useful for repairing or\n"
-#~ "updating an existing system."
-#~ msgstr ""
-#~ "Ahora es el momento de especificar los programas que desea instalar en "
-#~ "su\n"
-#~ "sistema. Hay miles de paquetes disponibles para Mandrake Linux, y para\n"
-#~ "hacer más simple el manejo de los paquetes, los mismos se han puesto en\n"
-#~ "grupos de aplicaciones similares.\n"
-#~ "\n"
-#~ "Los paquetes se clasifican en grupos que corresponden a un uso "
-#~ "particular\n"
-#~ "de su máquina. Mandrake Linux clasifica los grupos de paquetes en cuatro\n"
-#~ "categorías. Puede mezclar. Puede mezclar y hacer coincidir aplicaciones "
-#~ "de\n"
-#~ "varias categorías, por lo que una instalación de \"Estación de trabajo\"\n"
-#~ "puede tener instaladas aplicaciones de la categoría \"Desarrollo\".\n"
-#~ "\n"
-#~ " * \"%s\": si planifica utilizar su máquina como una estación de "
-#~ "trabajo,\n"
-#~ "seleccione una o más aplicaciones de la categoría estación de trabajo.\n"
-#~ "\n"
-#~ " * \"%s\": si planifica utilizar su máquina para programar, elija los\n"
-#~ "paquetes apropiados de esa categoría.\n"
-#~ "\n"
-#~ " * \"%s\": si pretende usar la máquina como un servidor, seleccione "
-#~ "cuáles\n"
-#~ "de los servicios más comunes desea instalar en su máquina.\n"
-#~ "\n"
-#~ " * \"%s\": aquí es donde seleccionará su entorno gráfico preferido. Si\n"
-#~ "desea tener una estación de trabajo gráfica, debe seleccionar al menos "
-#~ "uno.\n"
-#~ "\n"
-#~ "Si mueve el cursor del ratón sobre el nombre de un grupo se mostrará un\n"
-#~ "pequeño texto explicativo acerca de ese grupo. Si deselecciona todos los\n"
-#~ "grupos cuando está realizando una instalación regular (es decir, no una\n"
-#~ "actualización), aparecerá un diálogo que propone opciones diferentes "
-#~ "para\n"
-#~ "una instalación mínima:\n"
-#~ "\n"
-#~ " * \"%s\": instala la menor cantidad de paquetes posible para tener un\n"
-#~ "escritorio gráfico que funcione.\n"
-#~ "\n"
-#~ " * \"%s\": instala el sistema base más algunos utilitarios básicos y la\n"
-#~ "documentación de los mismos. Esta instalación es adecuada para "
-#~ "configurar\n"
-#~ "un servidor.\n"
-#~ "\n"
-#~ " * \"%s\": instalará el mínimo necesario estricto para obtener un "
-#~ "sistema\n"
-#~ "Linux que funciona. Con esta instalación sólo tendrá una interfaz de "
-#~ "línea\n"
-#~ "de comandos. Esta instalación ocupa alrededor de 65 MB.\n"
-#~ "\n"
-#~ "Puede marcar la casilla \"%s\" que es útil si está familiarizado con los\n"
-#~ "paquetes que se ofrecen, o si desea tener un control total sobre lo que "
-#~ "se\n"
-#~ "instalará.\n"
-#~ "\n"
-#~ "Si inició la instalación en el modo \"%s\" puede deseleccionar todos los\n"
-#~ "grupos para evitar instalar cualquier paquete nuevo. Esto es útil para\n"
-#~ "reparar o actualizar un sistema existente."
+#~ msgid "Url should begin with 'http:'"
+#~ msgstr "La Url debería empezar por 'http:'"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#~ 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 near to you. A package-selection tree "
-#~ "will\n"
-#~ "appear: review the selection, and press \"%s\" to retrieve and install "
-#~ "the\n"
-#~ "selected package(s), or \"%s\" to abort."
-#~ msgstr ""
-#~ "Es probable que cuando instale Mandrake Linux algunos paquetes se hayan\n"
-#~ "actualizado desde la publicación inicial. Se pueden haber corregido "
-#~ "algunos\n"
-#~ "errores y solucionado problemas de seguridad. Para permitir que Usted se\n"
-#~ "beneficie de estas actualizaciones, ahora se le propone transferirlas "
-#~ "desde\n"
-#~ "la Internet. Marque \"%s\" si tiene funcionando una conexión con la\n"
-#~ "Internet, o \"%s\" si prefiere instalar los paquetes actualizados más\n"
-#~ "tarde.\n"
-#~ "\n"
-#~ "Si elige \"%s\" se mostrará una lista de lugares desde los que se pueden\n"
-#~ "obtener las actualizaciones. Elija el más cercano a Usted. Luego aparece "
-#~ "un\n"
-#~ "árbol de selección de paquetes: revise la selección y presione \"%s\" "
-#~ "para\n"
-#~ "transferir e instalar los paquetes seleccionados, o \"%s\" para abortar."
+#~ msgid "The port part should be numeric"
+#~ msgstr "La parte del puerto debería ser numérica"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#~ msgid ""
-#~ "Depending on the language you chose in section , DrakX will "
-#~ "automatically\n"
-#~ "select a particular type of keyboard configuration. Check the selection\n"
-#~ "suits you or choose another keyboard layout.\n"
-#~ "\n"
-#~ "Also, you may not have a keyboard that corresponds exactly to your\n"
-#~ "language: for example, if you are an English-speaking Swiss native, you "
-#~ "may\n"
-#~ "have a Swiss keyboard. Or if you speak English and are located in "
-#~ "Quebec,\n"
-#~ "you may find yourself in the same situation where your native language "
-#~ "and\n"
-#~ "country-set keyboard do not match. In either case, this installation "
-#~ "step\n"
-#~ "will allow you to select an appropriate keyboard from a list.\n"
-#~ "\n"
-#~ "Click on the \"%s\" button to be presented with the complete list of\n"
-#~ "supported keyboards.\n"
-#~ "\n"
-#~ "If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-#~ "dialog will allow you to choose the key binding that will switch the\n"
-#~ "keyboard between the Latin and non-Latin layouts."
+#~ "Please fill in the ftp proxy informations\n"
+#~ "Leave it blank if you don't want an ftp proxy"
#~ msgstr ""
-#~ "Dependiendo del idioma que eligió en , DrakX selecciona automáticamente "
-#~ "un\n"
-#~ "tipo particular de configuración del teclado. Verifique que la selección "
-#~ "le\n"
-#~ "satisface o elija otra distribución de teclado.\n"
-#~ "\n"
-#~ "También, puede ser que Usted no tenga un teclado que se corresponde\n"
-#~ "exactamente con su idioma: por ejemplo, si Usted es un argentino que "
-#~ "habla\n"
-#~ "inglés, todavía podría desear que su teclado sea un teclado inglés. O si\n"
-#~ "habla castellano pero está en Inglaterra puede estar en la misma "
-#~ "situación\n"
-#~ "en la cual su idioma nativo y su teclado no coinciden. En cualquier "
-#~ "caso,\n"
-#~ "este paso de instalación le permitirá elegir un teclado apropiado de una\n"
-#~ "lista.\n"
-#~ "\n"
-#~ "Haga clic sobre el botón \"%s\" para que se le presente la lista "
-#~ "completa\n"
-#~ "de los teclados soportados.\n"
-#~ "\n"
-#~ "Si eligió una distribución de teclado basada en un alfabeto no latino, "
-#~ "el\n"
-#~ "próximo diálogo le permitirá elegir la combinación de teclas que "
-#~ "cambiará\n"
-#~ "la distribución del teclado entre la latina y la no latina."
+#~ "Por favor, rellene las informaciones del proxy ftp.\n"
+#~ "Déjelo en blanco si no quiere un proxy ftp."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#~ 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 auto-detect network devices and modems. "
-#~ "If\n"
-#~ "this detection fails, uncheck the \"%s\" box. You may also choose not to\n"
-#~ "configure the network, or to do it later, in which case clicking the \"%s"
-#~ "\"\n"
-#~ "button will take you to the next step.\n"
-#~ "\n"
-#~ "When configuring your network, the available connections options are:\n"
-#~ "Normal modem connection, Winmodem connection, ISDN modem, ADSL "
-#~ "connection,\n"
-#~ "cable modem, and finally a simple LAN connection (Ethernet).\n"
-#~ "\n"
-#~ "We will not detail each configuration option - just make sure that you "
-#~ "have\n"
-#~ "all the parameters, such as IP address, default gateway, DNS servers, "
-#~ "etc.\n"
-#~ "from your Internet Service Provider or system administrator.\n"
-#~ "\n"
-#~ "Winmodems are special integrated low-end modems that require an "
-#~ "additional\n"
-#~ "software to work compared to Normal modems. Some of those modems "
-#~ "actually\n"
-#~ "work under Mandrake Linux, some others not. You can consult the list of\n"
-#~ "supported modems at LinModems.\n"
-#~ "\n"
-#~ "You can consult the ``Starter Guide'' chapter about Internet connections\n"
-#~ "for details about the configuration, or simply wait until your system is\n"
-#~ "installed and use the program described there to configure your "
-#~ "connection."
+#~ "Please enter proxy login and password, if any.\n"
+#~ "Leave it blank if you don't want login/passwd"
#~ msgstr ""
-#~ "Ahora configurará su conexión de red/Internet. Haga clic sobre \"%s\" si\n"
-#~ "desea conectar su computadora a la Internet o a una red de área local.\n"
-#~ "Mandrake Linux intentará detectar automáticamente los dispositivos de red "
-#~ "y\n"
-#~ "módems. Si esta detección falla, quite la marca de la casilla \"%s\".\n"
-#~ "También puede elegir no configurar la red, o hacerlo más tarde, en cuyo\n"
-#~ "caso hacer clic sobre el botón \"%s\" lo llevará al paso siguiente.\n"
-#~ "\n"
-#~ "Cuando configura su red las opciones de conexión disponibles son: "
-#~ "conexión\n"
-#~ "con módem tradicional, conexión con Winmodem, conexión con módem RDSI\n"
-#~ "(ISDN), conexión ADSL, cable módem, y finalmente una simple conexión LAN\n"
-#~ "(Ethernet).\n"
-#~ "\n"
-#~ "Aquí no entraremos en detalle en cada opción de configuración - "
-#~ "simplemente\n"
-#~ "debe asegurarse que su Proveedor de Servicios de Internet o su\n"
-#~ "administrador del sistema le proporcionaron todos los parámetros de\n"
-#~ "configuración, tales como la dirección IP, la pasarela predeterminada, "
-#~ "los\n"
-#~ "servidores DNS, etc.\n"
-#~ "\n"
-#~ "Los Winmodem son módems de gama baja, especiales e integrados, que\n"
-#~ "necesitan un software adicional para funcionar comparados a los módem\n"
-#~ "normales. En realidad, algunos de esos módem funcionan bajo Mandrake "
-#~ "Linux,\n"
-#~ "algunos otros no. Puede consultar la lista de módem soportados en\n"
-#~ "LinModems.\n"
-#~ "\n"
-#~ "Puede consultar el capítulo de \"Guía de Comienzo\" sobre las conexiones "
-#~ "a\n"
-#~ "la Internet para detalles acerca de la configuración, o simplemente "
-#~ "esperar\n"
-#~ "hasta que su sistema esté instalado y usar el programa que se describe "
-#~ "allí\n"
-#~ "para configurar su conexión."
+#~ "Por favor, introduzca usuario y contraseña del proxy, si es necesario.\n"
+#~ "Déjelo en blanco si no desea usuario/contraseña."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#~ msgid ""
-#~ "X (for X Window System) is the heart of the GNU/Linux graphical "
-#~ "interface\n"
-#~ "on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-#~ "WindowMaker, etc.) bundled with 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 picture.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Test\n"
-#~ "\n"
-#~ " Depending on your hardware, this entry might not appear.\n"
-#~ "\n"
-#~ " the system will try to open a graphical screen at the desired\n"
-#~ "resolution. If you can see the message during the test and answer \"%s"
-#~ "\",\n"
-#~ "then DrakX will proceed to the next step. If you cannot see the message, "
-#~ "it\n"
-#~ "means that some part of the auto-detected configuration was incorrect "
-#~ "and\n"
-#~ "the test will automatically end after 12 seconds, bringing you back to "
-#~ "the\n"
-#~ "menu. Change settings until you get a correct graphical display.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Options\n"
-#~ "\n"
-#~ " Here you can choose whether you want to have your machine "
-#~ "automatically\n"
-#~ "switch to a graphical interface at boot. Obviously, you want to check\n"
-#~ "\"%s\" if your machine is to act as a server, or if you were not "
-#~ "successful\n"
-#~ "in getting the display configured."
-#~ msgstr ""
-#~ "X (por \"X Window System\") es el corazón de la interfaz gráfica de\n"
-#~ "GNU/Linux en el que se apoyan todos los entornos gráficos (KDE, GNOME,\n"
-#~ "AfterStep, WindowMaker, etc.) que se incluyen con Mandrake Linux.\n"
-#~ "\n"
-#~ "Se le presentará la lista de parámetros diferentes a cambiar para "
-#~ "obtener\n"
-#~ "una presentación gráfica óptima: Tarjeta gráfica\n"
-#~ "\n"
-#~ " Normalmente el instalador puede detectar y configurar automáticamente "
-#~ "la\n"
-#~ "tarjeta gráfica instalada en su máquina. Si este no es el caso, en esta\n"
-#~ "lista puede elegir la tarjeta que realmente posee.\n"
-#~ "\n"
-#~ " En caso que estén disponibles diferentes servidores para su tarjeta, "
-#~ "con\n"
-#~ "o sin aceleración de 3D, entonces se le propone elegir el servidor que\n"
-#~ "mejor satisface sus necesidades.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Monitor\n"
-#~ "\n"
-#~ " Normalmente el instalador puede detectar y configurar automáticamente "
-#~ "el\n"
-#~ "monitor conectado a su máquina. Si es incorrecto, en esta lista puede\n"
-#~ "elegir el monitor que realmente posee.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Resolución\n"
-#~ "\n"
-#~ " Aquí puede elegir las resoluciones y profundidades de color "
-#~ "disponibles\n"
-#~ "para su hardware. Elija la que mejor se ajuste a sus necesidades (tenga\n"
-#~ "presente que eso se puede cambiar luego de la instalación) En el imagen "
-#~ "del\n"
-#~ "monitor se muestra un ejemplo de la configuración elegida.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Probar\n"
-#~ "\n"
-#~ " Esta entrada puede no aparecer, dependiendo de su hardware.\n"
-#~ "\n"
-#~ " El sistema intentará abrir una pantalla gráfica con la resolución\n"
-#~ "deseada. Si puede ver el mensaje durante la prueba, y responde \"%s\",\n"
-#~ "entonces DrakX continuará con el paso siguiente. Si no puede ver el\n"
-#~ "mensaje, significa que alguna parte de la configuración detectada\n"
-#~ "automáticamente no era la correcta y la prueba terminará automáticamente\n"
-#~ "luego de 12 segundos, restaurando el menú. Cambie los ajustes hasta "
-#~ "obtener\n"
-#~ "una pantalla correcta.\n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
-#~ "Opciones\n"
-#~ "\n"
-#~ " Aquí puede elegir si desea que su máquina cambie automáticamente a la\n"
-#~ "interfaz gráfica al arrancar. Obviamente, querrá marcar \"%s\" si su\n"
-#~ "sistema actuará como servidor, o si no tuvo éxito en la configuración de "
-#~ "su\n"
-#~ "pantalla."
+#~ msgid "login"
+#~ msgstr "usuario"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#~ msgid ""
-#~ "Resolution\n"
-#~ "\n"
-#~ " Here you can choose the resolutions and color depths available for "
-#~ "your\n"
-#~ "hardware. Choose the one that best suits your needs (you will be able to\n"
-#~ "change that after installation though). A sample of the chosen\n"
-#~ "configuration is shown in the monitor picture."
-#~ msgstr ""
-#~ "Resolución\n"
-#~ "\n"
-#~ " Aquí puede elegir las resoluciones y profundidades de color "
-#~ "disponibles\n"
-#~ "para su hardware. Elija la que mejor se ajuste a sus necesidades (tenga\n"
-#~ "presente que eso se puede cambiar luego de la instalación) En el imagen "
-#~ "del\n"
-#~ "monitor se muestra un ejemplo de la configuración elegida."
+#~ msgid "password"
+#~ msgstr "contraseña"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#~ msgid ""
-#~ "This is the most crucial decision point for the security of your GNU/"
-#~ "Linux\n"
-#~ "system: you have to enter the \"root\" password. \"Root\" is the system\n"
-#~ "administrator and is the only user authorized to make updates, add "
-#~ "users,\n"
-#~ "change the overall system configuration, and so on. In short, \"root\" "
-#~ "can\n"
-#~ "do everything! That is why you must choose a password that is difficult "
-#~ "to\n"
-#~ "guess - DrakX will tell you if the password you chose is too easy. As "
-#~ "you\n"
-#~ "can see, you are not forced to enter a password, but we strongly advise "
-#~ "you\n"
-#~ "against this. GNU/Linux is just as prone to operator error as any other\n"
-#~ "operating system. Since \"root\" can overcome all limitations and\n"
-#~ "unintentionally erase all data on partitions by carelessly accessing the\n"
-#~ "partitions themselves, it is important that it be difficult to become\n"
-#~ "\"root\".\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. Never write down the \"root\" password -- it makes it "
-#~ "far\n"
-#~ "too easy to compromise a system.\n"
-#~ "\n"
-#~ "One caveat -- do not make the password too long or complicated because "
-#~ "you\n"
-#~ "must be able to remember it!\n"
-#~ "\n"
-#~ "The password will not be displayed on screen as you type it in. To "
-#~ "reduce\n"
-#~ "the chance of a blind typing error you will need to enter the password\n"
-#~ "twice. If you do happen to make the same typing error twice, this\n"
-#~ "``incorrect'' password will be the one you will have use the first time "
-#~ "you\n"
-#~ "connect.\n"
-#~ "\n"
-#~ "If you wish access to this computer to be controlled by an "
-#~ "authentication\n"
-#~ "server, click the \"%s\" button.\n"
-#~ "\n"
-#~ "If your network uses either LDAP, NIS, or PDC Windows Domain "
-#~ "authentication\n"
-#~ "services, select the appropriate one for \"%s\". If you do not know "
-#~ "which\n"
-#~ "one to use, you should ask your network administrator.\n"
-#~ "\n"
-#~ "If you happen to have problems with remembering passwords, if your "
-#~ "computer\n"
-#~ "will never be connected to the Internet and you absolutely trust "
-#~ "everybody\n"
-#~ "who uses your computer, you can choose to have \"%s\"."
-#~ msgstr ""
-#~ "Este es el punto de decisión más crucial para la seguridad de su sistema\n"
-#~ "GNU/Linux: tendrá que ingresar la contraseña de \"root\". El usuario\n"
-#~ "\"root\" es el administrador del sistema y es el único autorizado a "
-#~ "hacer\n"
-#~ "actualizaciones, agregar usuarios, cambiar la configuración general del\n"
-#~ "sistema, etc. Resumiendo, ¡\"root\" puede hacer de todo! Es por esto que\n"
-#~ "deberá elegir una contraseña que sea difícil de adivinar - DrakX le dirá "
-#~ "si\n"
-#~ "la que eligió es demasiado fácil. Como puede ver no es forzoso ingresar "
-#~ "una\n"
-#~ "contraseña, pero le recomendamos encarecidamente que ingrese una. GNU/"
-#~ "Linux\n"
-#~ "es tan propenso a errores del operador como cualquier otro sistema\n"
-#~ "operativo. Es importante que sea difícil convertirse en \"root\" debido "
-#~ "a\n"
-#~ "que \"root\" puede sobrepasar todas las limitaciones y borrar, sin\n"
-#~ "intención, todos los datos que se encuentran en las particiones "
-#~ "accediendo\n"
-#~ "a las mismas sin el cuidado suficiente.\n"
-#~ "\n"
-#~ "La contraseña debería ser una mezcla de caracteres alfanuméricos y tener "
-#~ "al\n"
-#~ "menos una longitud de 8 caracteres. Nunca escriba la contraseña de \"root"
-#~ "\"\n"
-#~ "- por ejemplo, en un papel - eso hace que sea muy fácil comprometer a un\n"
-#~ "sistema.\n"
-#~ "\n"
-#~ "Sin embargo, no debería hacer la contraseña muy larga o complicada "
-#~ "¡debido\n"
-#~ "a que Usted debe poder recordarla!\n"
-#~ "\n"
-#~ "La contraseña no se mostrará en la pantalla a medida que Usted la "
-#~ "teclee.\n"
-#~ "Por lo tanto tendrá que teclear la contraseña dos veces para reducir la\n"
-#~ "posibilidad de un error de tecleo. Si ocurre que Usted comete dos veces "
-#~ "el\n"
-#~ "mismo error de tecleo, tendrá que utilizar esta contraseña \"incorrecta"
-#~ "\"\n"
-#~ "la primera vez que se conecte.\n"
-#~ "\n"
-#~ "Si desea que el acceso a esta computadora esté controlado por un "
-#~ "servidor\n"
-#~ "de autenticación, haga clic sobre el botón \"%s\".\n"
-#~ "\n"
-#~ "Si su red usa los protocolos LDAP, NIS, o servicios de autenticación de "
-#~ "PDC\n"
-#~ "Dominio de Windows, seleccione el botón apropiado como método de\n"
-#~ "autenticación. Si no sabe cual utilizar, debería preguntar al "
-#~ "administrador\n"
-#~ "de su red.\n"
-#~ "\n"
-#~ "Si ocurre que tiene problemas para recordar contraseñas, puede elegir el\n"
-#~ "botón \"%s\", si es que su computadora nunca estará conectada a la "
-#~ "Internet\n"
-#~ "y Usted confía absolutamente en cualquier persona que tenga acceso a la\n"
-#~ "misma."
+#~ msgid "re-type password"
+#~ msgstr "contraseña (otra vez)"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#~ msgid ""
-#~ "You can add additional entries in yaboot for other operating systems,\n"
-#~ "alternate kernels, or for an emergency boot image.\n"
-#~ "\n"
-#~ "For other OSs, the entry consists only of a label and the \"root\"\n"
-#~ "partition.\n"
-#~ "\n"
-#~ "For Linux, there are a few possible options:\n"
-#~ "\n"
-#~ " * Label: this is the name you will have to type at the yaboot prompt to\n"
-#~ "select this boot option.\n"
-#~ "\n"
-#~ " * Image: this is the name of the kernel to boot. Typically, vmlinux or "
-#~ "a\n"
-#~ "variation of vmlinux with an extension.\n"
-#~ "\n"
-#~ " * Root: the \"root\" device or ``/'' for your Linux installation.\n"
-#~ "\n"
-#~ " * Append: on Apple hardware, the kernel append option is often used to\n"
-#~ "assist in initializing video hardware, or to enable keyboard mouse "
-#~ "button\n"
-#~ "emulation for the missing 2nd and 3rd mouse buttons on a stock Apple "
-#~ "mouse.\n"
-#~ "The following are some examples:\n"
-#~ "\n"
-#~ " \t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-#~ "hda=autotune\n"
-#~ "\n"
-#~ " \t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-#~ "\n"
-#~ " * Initrd: this option can be used either to load initial modules before\n"
-#~ "the boot device is available, or to load a ramdisk image for an "
-#~ "emergency\n"
-#~ "boot situation.\n"
-#~ "\n"
-#~ " * Initrd-size: the default ramdisk size is generally 4096 Kbytes. If "
-#~ "you\n"
-#~ "need to allocate a large ramdisk, this option can be used to specify a\n"
-#~ "ramdisk larger than the default.\n"
-#~ "\n"
-#~ " * Read-write: normally the \"root\" partition is initially mounted as\n"
-#~ "read-only, to allow a file system check before the system becomes "
-#~ "``live''.\n"
-#~ "You can override the default with this option.\n"
-#~ "\n"
-#~ " * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-#~ "problematic, you can select this option to boot in ``novideo'' mode, "
-#~ "with\n"
-#~ "native frame buffer support.\n"
-#~ "\n"
-#~ " * Default: selects this entry as being the default Linux selection,\n"
-#~ "selectable by pressing ENTER at the yaboot prompt. This entry will also "
-#~ "be\n"
-#~ "highlighted with a ``*'' if you press [Tab] to see the boot selections."
-#~ msgstr ""
-#~ "Puede agregar entradas adicionales para Yaboot, ya sea para otros "
-#~ "sistemas\n"
-#~ "operativos, núcleos alternativos, o para una imagen de arranque de\n"
-#~ "emergencia.\n"
-#~ "\n"
-#~ "Para otros sistemas operativos, la entrada consiste sólo de una etiqueta "
-#~ "y\n"
-#~ "la partición raíz.\n"
-#~ "\n"
-#~ "Para Linux, hay algunas opciones posibles:\n"
-#~ "\n"
-#~ " * Etiqueta: esta es simplemente el nombre que deberá teclear en el "
-#~ "prompt\n"
-#~ "de yaboot para seleccionar esta opción de arranque.\n"
-#~ "\n"
-#~ " * Imagen: esta debería ser el nombre del núcleo a arrancar. "
-#~ "Típicamente,\n"
-#~ "vmlinux o una variación de vmlinux con una extensión.\n"
-#~ "\n"
-#~ " * Raíz: el dispositivo \"root\" o \"/\" para su instalación Linux.\n"
-#~ "\n"
-#~ " * Añadir: la opción de añadir al núcleo se usa bastante sobre el "
-#~ "hardware\n"
-#~ "Apple para asistir en la inicialización del hardware de vídeo, o para\n"
-#~ "habilitar la emulación de los botones del ratón con el teclado para los\n"
-#~ "botones 2do y 3ro del ratón que por lo general no tienen los ratones\n"
-#~ "estándar de Apple. Algunos ejemplos son los siguientes:\n"
-#~ "\n"
-#~ " video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-#~ "hda=autotune\n"
-#~ "\n"
-#~ " video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-#~ "\n"
-#~ " * Initrd: esta opción se puede usar o bien para cargar los módulos\n"
-#~ "iniciales, antes que esté disponible el dispositivo de arranque, o bien\n"
-#~ "cargar una imagen de ramdisk para una situación de arranque de "
-#~ "emergencia.\n"
-#~ "\n"
-#~ " * Tamaño de Initrd: generalmente el tamaño por defecto del ramdisk es "
-#~ "4096\n"
-#~ "bytes. Puede usar esta opción si necesita asignar un ramdisk mayor.\n"
-#~ "\n"
-#~ " * Lectura-Escritura: normalmente la partición \"root\" se levanta en "
-#~ "modo\n"
-#~ "de sólo lectura, para permitir una verificación del sistema de archivos\n"
-#~ "antes que el sistema se levante por completo. Aquí puede cambiar esta\n"
-#~ "opción.\n"
-#~ "\n"
-#~ " * NoVideo: en caso que el hardware de vídeo de Apple sea "
-#~ "excepcionalmente\n"
-#~ "problemático, puede seleccionar esta opción para arrancar en el modo\n"
-#~ "\"novideo\", con soporte nativo para el frame-buffer.\n"
-#~ "\n"
-#~ " * Predeterminada: selecciona a esta entrada como la opción Linux por\n"
-#~ "defecto, que se puede elegir simplemente presionando [Intro] en el "
-#~ "prompt\n"
-#~ "de Yaboot. Esta entrada también se marcará con un \"*\", si presiona "
-#~ "[Tab]\n"
-#~ "para ver las selecciones del arranque."
+#~ msgid "The passwords don't match. Try again!"
+#~ msgstr "Las contraseñas no coinciden. ¡Inténtelo de nuevo!"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-#~ "local time according to the time zone you selected. If the clock on your\n"
-#~ "motherboard is set to local time, you may deactivate this by unselecting\n"
-#~ "\"%s\", which will let GNU/Linux know that the system clock and the\n"
-#~ "hardware clock are in the same time zone. This is useful when the "
-#~ "machine\n"
-#~ "also hosts another operating system like Windows.\n"
-#~ "\n"
-#~ "The \"%s\" option will automatically regulate the clock by connecting to "
-#~ "a\n"
-#~ "remote time server on the Internet. For this feature to work, you must "
-#~ "have\n"
-#~ "a working Internet connection. It is best to choose a time server "
-#~ "located\n"
-#~ "near you. This option actually installs a time server that can be used "
-#~ "by\n"
-#~ "other machines on your local network as well."
-#~ msgstr ""
-#~ "GNU/Linux administra la hora en GMT (\"Greenwich Mean Time\", Hora del\n"
-#~ "Meridiano de Greenwich) y la traduce a la hora local de acuerdo al huso\n"
-#~ "horario que Usted seleccionó. Sin embargo, es posible desactivar esto\n"
-#~ "quitando la marca de la casilla \"%s\", lo que hará que GNU/Linux sepa "
-#~ "que\n"
-#~ "el reloj del sistema y el reloj de hardware están en el mismo huso "
-#~ "horario.\n"
-#~ "Esto es útil cuando la máquina también alberga otro sistema operativo "
-#~ "como\n"
-#~ "Windows.\n"
-#~ "\n"
-#~ "La opción \"%s\" regulará automáticamente el reloj conectándose a un\n"
-#~ "servidor remoto de la hora en la Internet. Para que esta característica\n"
-#~ "funcione debe tener una conexión con la Internet funcionando. En "
-#~ "realidad,\n"
-#~ "esta opción instala un servidor de la hora que puede ser utilizado por\n"
-#~ "otras máquinas en su red local."
+#~ msgid "Can't write file %s"
+#~ msgstr "No se puede escribir el archivo %s"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#~ msgid ""
-#~ "Usually, DrakX has no problems detecting the number of buttons on your\n"
-#~ "mouse. If it does, it assumes you have a two-button mouse and will\n"
-#~ "configure it for third-button emulation. The third-button mouse button of "
-#~ "a\n"
-#~ "two-button mouse can be ``pressed'' by simultaneously clicking the left "
-#~ "and\n"
-#~ "right mouse buttons. DrakX will automatically know whether your mouse "
-#~ "uses\n"
-#~ "a PS/2, serial or USB interface.\n"
-#~ "\n"
-#~ "In case you have a 3 buttons mouse without wheel, you can choose the "
-#~ "mouse\n"
-#~ "that says \"%s\". DrakX will then configure your mouse so that you can\n"
-#~ "simulate the wheel with it: to do so, press the middle button and move "
-#~ "your\n"
-#~ "mouse up and down.\n"
-#~ "\n"
-#~ "If for some reason you wish to specify a different type of mouse, select "
-#~ "it\n"
-#~ "from the list provided.\n"
-#~ "\n"
-#~ "If you choose a mouse other than the default, a test screen will be\n"
-#~ "displayed. Use the buttons and wheel to verify that the settings are\n"
-#~ "correct and that the mouse is working correctly. If the mouse is not\n"
-#~ "working well, press the space bar or [Return] key to cancel the test and "
-#~ "to\n"
-#~ "go back to the list of choices.\n"
-#~ "\n"
-#~ "Wheel mice are occasionally not detected automatically, so you will need "
-#~ "to\n"
-#~ "select your mouse from a list. Be sure to select the one corresponding "
-#~ "to\n"
-#~ "the port that your mouse is attached to. After selecting a mouse and\n"
-#~ "pressing the \"%s\" button, a mouse image is displayed on-screen. Scroll\n"
-#~ "the mouse wheel to ensure that it is activated correctly. Once you see "
-#~ "the\n"
-#~ "on-screen scroll wheel moving as you scroll your mouse wheel, test the\n"
-#~ "buttons and check that the mouse pointer moves on-screen as you move "
-#~ "your\n"
-#~ "mouse."
-#~ msgstr ""
-#~ "Por lo general, DrakX no tiene problemas en detectar la cantidad de "
-#~ "botones\n"
-#~ "que tiene su ratón. En caso contrario, asume que Usted tiene un ratón de\n"
-#~ "dos botones y lo configurará para que emule el tercer botón. El tercer\n"
-#~ "botón del ratón de un ratón de dos botones se puede \"presionar\" "
-#~ "haciendo\n"
-#~ "clic simultáneamente sobre el botón izquierdo y el derecho. DrakX sabrá\n"
-#~ "automáticamente si su ratón utiliza una interfaz PS/2, serie o USB.\n"
-#~ "\n"
-#~ "En caso que tenga un ratón de 3 botones sin rueda, puede elegir el ratón\n"
-#~ "que dice \"%s\". Entonces, DrakX configurará su ratón de forma tal que\n"
-#~ "pueda simular la rueda con el mismo: para hacerlo, presione el botón del\n"
-#~ "medio y, sin soltarlo, mueva su ratón arriba y abajo.\n"
-#~ "\n"
-#~ "Si, por alguna razón, desea especificar un tipo de ratón diferente,\n"
-#~ "selecciónelo de la lista que se proporciona.\n"
-#~ "\n"
-#~ "Si elige un ratón distinto al predeterminado, se le presentará una "
-#~ "pantalla\n"
-#~ "de prueba. Use los botones y la rueda para verificar que la "
-#~ "configuración\n"
-#~ "es correcta y que el ratón está funcionando correctamente. Si el ratón "
-#~ "no\n"
-#~ "está funcionando bien, presione la barra espaciadora o la tecla [Intro]\n"
-#~ "para cancelar la prueba y volver a la lista de opciones.\n"
-#~ "\n"
-#~ "Los ratones con rueda a veces no se detectan automáticamente por lo que\n"
-#~ "deberá seleccionar su ratón de una lista. Debe asegurarse de seleccionar "
-#~ "el\n"
-#~ "correspondiente al puerto en el cual está conectado su ratón. Después de\n"
-#~ "seleccionar un ratón y presionar el botón \"%s\", se muestra una imagen "
-#~ "de\n"
-#~ "un ratón en la pantalla. Mueva la rueda de su ratón para asegurarse que\n"
-#~ "está activa correctamente. Una vez que ve que se mueve la rueda en la\n"
-#~ "pantalla a medida que mueve la rueda de su ratón, pruebe los botones y\n"
-#~ "verifique que el puntero del ratón se mueve en la pantalla a medida que\n"
-#~ "mueve su ratón."
+#~ msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#~ msgid ""
-#~ "GNU/Linux is a multi-user system, meaning each user may have their own\n"
-#~ "preferences, their own files and so on. You can read the ``Starter "
-#~ "Guide''\n"
-#~ "to learn more about multi-user systems. But unlike \"root\", who is the\n"
-#~ "system administrator, the users you add at this point will not be\n"
-#~ "authorized to change anything except their own files and their own\n"
-#~ "configurations, protecting the system from unintentional or malicious\n"
-#~ "changes that impact on the system as a whole. You will have to create at\n"
-#~ "least one regular user for yourself -- this is the account which you "
-#~ "should\n"
-#~ "use for routine, day-to-day use. Although it is very easy to log in as\n"
-#~ "\"root\" to do anything and everything, it may also be very dangerous! A\n"
-#~ "very simple mistake could mean that your system will not work any more. "
-#~ "If\n"
-#~ "you make a serious mistake as a regular user, the worst that will happen "
-#~ "is\n"
-#~ "that you will lose some information, but not affect the entire system.\n"
-#~ "\n"
-#~ "The first field asks you for a real name. Of course, this is not "
-#~ "mandatory\n"
-#~ "-- you can actually enter whatever you like. DrakX will use the first "
-#~ "word\n"
-#~ "you typed in this field and copy it to the \"%s\" field, which is the "
-#~ "name\n"
-#~ "this user will enter to log onto the system. If you like, you may "
-#~ "override\n"
-#~ "the default and change the user name. The next step is to enter a "
-#~ "password.\n"
-#~ "From a security point of view, a non-privileged (regular) user password "
-#~ "is\n"
-#~ "not as crucial as the \"root\" password, but that is no reason to "
-#~ "neglect\n"
-#~ "it by making it blank or too simple: after all, your files could be the\n"
-#~ "ones at risk.\n"
-#~ "\n"
-#~ "Once you click on \"%s\", you can add other users. Add a user for each "
-#~ "one\n"
-#~ "of your friends: your father or your sister, for example. Click \"%s\" "
-#~ "when\n"
-#~ "you have finished adding users.\n"
-#~ "\n"
-#~ "Clicking the \"%s\" button allows you to change the default \"shell\" "
-#~ "for\n"
-#~ "that user (bash by default).\n"
-#~ "\n"
-#~ "When you have finished adding users, you will be proposed 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 ""
-#~ "GNU/Linux es un sistema multiusuario, y esto significa que cada usuario\n"
-#~ "puede tener sus preferencias propias, sus archivos propios, y así\n"
-#~ "sucesivamente. Puede leer la \"Guía de Comienzo\" para aprender más. "
-#~ "Pero,\n"
-#~ "a diferencia de \"root\", que es el administrador del sistema, los "
-#~ "usuarios\n"
-#~ "que agregue en este punto no estarán autorizados a cambiar nada excepto "
-#~ "su\n"
-#~ "configuración y sus archivos propios, protegiendo al sistema contra "
-#~ "cambios\n"
-#~ "no intencionales o maliciosos que pueden impactar al sistema como un "
-#~ "todo.\n"
-#~ "Tendrá que crear al menos un usuario no privilegiado para Usted mismo - "
-#~ "esa\n"
-#~ "cuenta es la que debería utilizar para el uso rutinario diario. Aunque "
-#~ "es\n"
-#~ "muy práctico ingresar como \"root\" para hacer cualquier cosa y de todo,\n"
-#~ "¡también puede ser muy peligroso! Un error podría significar que su "
-#~ "sistema\n"
-#~ "deje de funcionar. Si comete un error serio como usuario no "
-#~ "privilegiado,\n"
-#~ "sólo puede llegar a perder algo de información, pero no afectar a todo "
-#~ "el\n"
-#~ "sistema.\n"
-#~ "\n"
-#~ "El primer campo le pide un nombre real. Por supuesto, esto no es\n"
-#~ "obligatorio - en realidad, puede ingresar lo que desee. DrakX usará la\n"
-#~ "primer palabra que ingresó y la copiará al campo \"%s\", que es el "
-#~ "nombre\n"
-#~ "que este usuario en particular usará para ingresar al sistema. Si lo "
-#~ "desea,\n"
-#~ "puede omitir lo predeterminado y cambiar el nombre de usuario. El "
-#~ "próximo\n"
-#~ "paso es ingresar una contraseña. La contraseña de un usuario no\n"
-#~ "privilegiado (regular) no es tan crucial como la de \"root\" desde el "
-#~ "punto\n"
-#~ "de vista de la seguridad, pero esto no es razón alguna para obviarla o\n"
-#~ "hacerla muy simple: después de todo, son sus archivos los que podrían "
-#~ "estar\n"
-#~ "en peligro.\n"
-#~ "\n"
-#~ "Una vez que hace clic sobre \"%s\", puede agregar otros usuarios. "
-#~ "Agregue\n"
-#~ "un usuario para cada uno de sus amigos: por ejemplo su padre o su "
-#~ "hermana.\n"
-#~ "Haga clic sobre \"%s\" cuando haya terminado de agregar todos los "
-#~ "usuarios\n"
-#~ "que desee.\n"
-#~ "\n"
-#~ "Hacer clic sobre el botón \"%s\" le permite cambiar el \"shell\"\n"
-#~ "predeterminado para ese usuario (bash, por defecto)\n"
-#~ "\n"
-#~ "Cuando haya finalizado de añadir todos los usuarios se le propone elegir "
-#~ "un\n"
-#~ "usuario para conectarse automáticamente en el sistema cuando arranca la\n"
-#~ "computadora. Si está interesado en esta característica (y no le importa\n"
-#~ "mucho la seguridad local), elija el usuario y administrador de ventanas\n"
-#~ "deseado. Si no está interesado en esta característica, quite la marca de "
-#~ "la\n"
-#~ "casilla \"%s\". Haga clic sobre \"%s\" una vez que seleccionó su\n"
-#~ "preferencia."
+#~ msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#, fuzzy
#~ msgid ""
-#~ "This dialog allows you to fine tune your bootloader:\n"
-#~ "\n"
-#~ " * \"%s\": there are three choices for your bootloader:\n"
-#~ "\n"
-#~ " * \"%s\": if you prefer grub (text menu).\n"
-#~ "\n"
-#~ " * \"%s\": if you prefer LILO with its text menu interface.\n"
-#~ "\n"
-#~ " * \"%s\": if you prefer LILO with its graphical interface.\n"
-#~ "\n"
-#~ " * \"%s\": in most cases, you will not change the default (\"%s\"), but "
-#~ "if\n"
-#~ "you prefer, the bootloader can be installed on the second hard drive\n"
-#~ "(\"%s\"), or even on a floppy disk (\"%s\");\n"
-#~ "\n"
-#~ " * \"%s\": after a boot or a reboot of the computer, this is the delay\n"
-#~ "given to the user at the console to select a boot entry other than the\n"
-#~ "default.\n"
-#~ "\n"
-#~ " * \"%s\": ACPI is a new standard (appeared during year 2002) for power\n"
-#~ "management, notably for laptops. If you know your hardware supports it "
-#~ "and\n"
-#~ "you need it, check this box.\n"
-#~ "\n"
-#~ " * \"%s\": If you noticed hardware problems on your machine (IRQ "
-#~ "conflicts,\n"
-#~ "instabilities, machine freeze, ...) you should try disabling APIC by\n"
-#~ "checking this box.\n"
-#~ "\n"
-#~ "!! 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."
+#~ "Warning, another internet connexion has been detected, maybe using your "
+#~ "network"
#~ msgstr ""
-#~ "Este diálogo le permite un ajuste fino de su cargador de arranque:\n"
-#~ "\n"
-#~ " * \"%s\": hay tres opciones para su cargador de arranque:\n"
-#~ "\n"
-#~ " * \"%s\": si prefiere a grub (menú de texto).\n"
-#~ "\n"
-#~ " * \"%s\": si prefiere a LILO con su interfaz de texto.\n"
-#~ "\n"
-#~ " * \"%s\": si prefiere a LILO con su interfaz gráfica.\n"
-#~ "\n"
-#~ " * \"%s\": en la mayoría de los casos, no cambiará lo predeterminado\n"
-#~ "(\"%s\"), pero si lo prefiere el cargador de arranque se puede instalar "
-#~ "en\n"
-#~ "el segundo disco rígido (\"%s\") o incluso en un disquete (\"%s\")\n"
-#~ "\n"
-#~ " * \"%s\": luego de arrancar o volver a arrancar la computadora, esta es "
-#~ "la\n"
-#~ "demora que se garantiza al usuario para elegir, en el menú del cargador "
-#~ "de\n"
-#~ "arranque, una entrada distinta a la predeterminada.\n"
-#~ "\n"
-#~ " * \"%s\": ACPI es un estándar nuevo (apareció durante el año 2002) para\n"
-#~ "administración de energía, notablemente para las portátiles. Si Usted "
-#~ "sabe\n"
-#~ "que su hardware lo soporta y lo necesita, marque esta casilla.\n"
-#~ "\n"
-#~ " * \"%s\": Si notó problemas de hardware en su máquina (conflictos de "
-#~ "IRQ,\n"
-#~ "inestabilidad, congelamiento de la máquina, ...) debería intentar\n"
-#~ "deshabilitar APIC marcando esta casilla.\n"
-#~ "\n"
-#~ "!! Tenga presente que si no elige instalar un cargador de arranque\n"
-#~ "(seleccionando \"%s\"), ¡debe asegurarse que tiene una forma de arrancar "
-#~ "a\n"
-#~ "su sistema Mandrake Linux! También debe asegurarse que sabe lo que hace\n"
-#~ "antes de cambiar cualquier opción. !!\n"
-#~ "\n"
-#~ "Haciendo clic sobre el botón \"%s\" en este diálogo se le ofrecerán\n"
-#~ "opciones avanzadas que están reservadas para el usuario experto."
+#~ "Atención, se ha detectado otra conexión con la Internet, tal vez está "
+#~ "usando su red"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#~ msgid ""
-#~ "Before continuing, you should carefully read the terms of the license. "
-#~ "It\n"
-#~ "covers the entire Mandrake Linux distribution. If you do agree with all "
-#~ "the\n"
-#~ "terms in it, check the \"%s\" box. If not, clicking on the \"%s\" button\n"
-#~ "will reboot your computer."
-#~ msgstr ""
-#~ "Antes de continuar, debería leer cuidadosamente los términos de la\n"
-#~ "licencia. La misma cubre a toda la distribución Mandrake Linux. Si está "
-#~ "de\n"
-#~ "acuerdo con todos los términos en la misma, marque la casilla \"%s\". Si\n"
-#~ "no, simplemente apague su computadora."
+#~ msgid "no help implemented yet.\n"
+#~ msgstr "todavía no está implementada la ayuda.\n"
+
+#~ msgid "Please click on a medium"
+#~ msgstr "Por favor, haga clic sobre un medio"
+
+#~ msgid "Removing LPRng..."
+#~ msgstr "Quitando LPRng..."
+
+#~ msgid "Removing LPD..."
+#~ msgstr "Quitando LPD..."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#~ 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. Don't forget to\n"
-#~ "remove the installation media (CD-ROM or floppy). The first thing you\n"
-#~ "should see after your computer has finished doing its hardware tests is "
-#~ "the\n"
-#~ "bootloader menu, giving you the choice of which operating system to "
-#~ "start.\n"
-#~ "\n"
-#~ "The \"%s\" button shows two more buttons to:\n"
-#~ "\n"
-#~ " * \"%s\": to create an installation floppy disk that will automatically\n"
-#~ "perform a whole installation without the help of an operator, similar to\n"
-#~ "the installation you just configured.\n"
-#~ "\n"
-#~ " Note that two different options are available after clicking the "
-#~ "button:\n"
-#~ "\n"
-#~ " * \"%s\". This is a partially automated installation. The "
-#~ "partitioning\n"
-#~ "step is the only interactive procedure.\n"
-#~ "\n"
-#~ " * \"%s\". Fully automated installation: the hard disk is completely\n"
-#~ "rewritten, all data is lost.\n"
-#~ "\n"
-#~ " This feature is very handy when installing a number of similar "
-#~ "machines.\n"
-#~ "See the Auto install section on our web site for more information.\n"
+#~ "Description:\n"
+#~ "\n"
+#~ " Drakbackup is used to backup your system.\n"
+#~ " During the configuration you can select \n"
+#~ "\t- System files, \n"
+#~ "\t- Users files, \n"
+#~ "\t- Other files.\n"
+#~ "\tor All your system ... and Other (like Windows Partitions)\n"
+#~ "\n"
+#~ " Drakbackup allows you to backup your system on:\n"
+#~ "\t- Harddrive.\n"
+#~ "\t- NFS.\n"
+#~ "\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+#~ "\t- FTP.\n"
+#~ "\t- Rsync.\n"
+#~ "\t- Webdav.\n"
+#~ "\t- Tape.\n"
+#~ "\n"
+#~ " Drakbackup allows you to restore your system to\n"
+#~ " a user selected directory.\n"
+#~ "\n"
+#~ " Per default all backup will be stored on your\n"
+#~ " /var/lib/drakbackup directory\n"
+#~ "\n"
+#~ " Configuration file:\n"
+#~ "\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+#~ "\n"
+#~ "Restore Step:\n"
+#~ " \n"
+#~ " During the restore step, Drakbackup will remove\n"
+#~ " your original directory and verify that all\n"
+#~ " backup files are not corrupted. It is recommended\n"
+#~ " you do a last backup before restoring.\n"
+#~ " \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 ""
-#~ "Ya está. Ahora la instalación está completa y su sistema GNU/Linux está\n"
-#~ "listo para ser utilizado. Simplemente haga clic sobre \"%s\" para volver "
-#~ "a\n"
-#~ "arrancar el sistema. Lo primero que debería ver tan pronto como su "
-#~ "máquina\n"
-#~ "haya finalizado sus pruebas de hardware, es el menú del cargador de\n"
-#~ "arranque dándole la opción de elegir que sistema operativo arrancar.\n"
+#~ "Descripción:\n"
#~ "\n"
-#~ "El botón \"%s\" le muestra dos botones más para:\n"
+#~ " Drakbackup se usa para respaldar su sistema.\n"
+#~ " Durante la configuración puede seleccionar:\n"
+#~ "\t- Archivos del sistema,\n"
+#~ "\t- Archivos de usuarios,\n"
+#~ "\t- Otros archivos.\n"
+#~ "\to Todo su sistema ... y Otros (como Particiones Windows)\n"
#~ "\n"
-#~ " * \"%s\": para crear un disquete de instalación que realizará una\n"
-#~ "instalación completa automáticamente, sin la asistencia de un operador,\n"
-#~ "similar a la instalación que ha configurado recién.\n"
+#~ " Drakbackup le permite respaldar su sistema sobre:\n"
+#~ "\t- Disco rígido.\n"
+#~ "\t- NFS.\n"
+#~ "\t- CDROM (CDRW), DVDROM (con autoboot, rescue y autoinstall.).\n"
+#~ "\t- FTP.\n"
+#~ "\t- Rsync.\n"
+#~ "\t- Webdav.\n"
+#~ "\t- Cinta.\n"
#~ "\n"
-#~ " Note que hay dos opciones diferentes disponibles después de hacer "
-#~ "clic\n"
-#~ "sobre el botón:\n"
+#~ " Drakbackup le permite restaurar su sistema a un\n"
+#~ " directorio seleccionado por el usuario.\n"
#~ "\n"
-#~ " * \"%s\" . Esta es una instalación parcialmente automatizada. La "
-#~ "etapa\n"
-#~ "de particionado es el único procedimiento interactivo.\n"
+#~ " Por defecto, se almacenarán los respaldos en su\n"
+#~ " directorio /var/lib/drakbackup.\n"
#~ "\n"
-#~ " * \"%s\" . Instalación completamente automatizada: el disco rígido "
-#~ "se\n"
-#~ "sobreescribe por completo, y se pierden todos los datos.\n"
+#~ " Archivo de configuración:\n"
+#~ "\t/etc/drakconf/drakbackup/drakbakup.conf\n"
#~ "\n"
-#~ " Esta característica es muy útil cuando se instala una cantidad grande "
-#~ "de\n"
-#~ "máquinas similares. Consulte la sección Auto install (en inglés) en "
-#~ "nuestro\n"
-#~ "sitio web para más información.\n"
#~ "\n"
-#~ " * \"%s\"(*): guarda una lista de los paquetes seleccionados en esta\n"
-#~ "instalación. Para usar esta selección con otra instalación, inserte el\n"
-#~ "disquete en la disquetera y comience la instalación. En el prompt, "
-#~ "presione\n"
-#~ "la tecla [F1], y a continuación ingrese >>linux defcfg=\"floppy\"<<.\n"
+#~ "Paso de restauración:\n"
+#~ " \n"
+#~ " Durante la restauración, DrakBackup quitará su \n"
+#~ " directorio original y verificará que todos \n"
+#~ " los archivos de respaldo no estén corruptos. Se \n"
+#~ " recomienda que haga un último respaldo antes de restaurar.\n"
+#~ " \n"
#~ "\n"
-#~ "(*) Necesita un disquete formateado con FAT (para crear uno bajo GNU/"
-#~ "Linux\n"
-#~ "teclee \"mformat a:\")"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#~ 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"
+#~ "drakbug version %s\n"
+#~ "Copyright (C) 2002 MandrakeSoft.\n"
+#~ "This is free software and may be redistributed under the terms of the GNU "
+#~ "GPL.\n"
#~ "\n"
-#~ "If you do not know what to choose, stay with the default option. You "
-#~ "will\n"
-#~ "be able to change that security level later with tool draksec from the\n"
-#~ "Mandrake Control Center.\n"
+#~ "usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
#~ "\n"
-#~ "The \"%s\" field can inform the system of the user on this computer that\n"
-#~ "will be responsible for security. Security messages will be sent to that\n"
-#~ "address."
+#~ "OPTIONS:\n"
#~ msgstr ""
-#~ "En este punto, DrakX le permitirá elegir el nivel de seguridad deseado "
-#~ "para\n"
-#~ "la máquina. Como regla general, el nivel de seguridad debería ser mayor\n"
-#~ "cuanto más cruciales sean los datos que tenga almacenados, o si la "
-#~ "máquina\n"
-#~ "estará directamente expuesta a la Internet. No obstante, un nivel de\n"
-#~ "seguridad más alto generalmente se obtiene a expensas de la facilidad de\n"
-#~ "uso.\n"
+#~ "drakbug versión %s\n"
+#~ "Copyright (C) 2002 MandrakeSoft.\n"
+#~ "Esto es software libre y se puede volver a distribuir bajo los términos "
+#~ "de la GPL GNU.\n"
#~ "\n"
-#~ "Si no sabe cual elegir, no cambie la opción predeterminada. Podrá "
-#~ "cambiar\n"
-#~ "ese nivel de seguridad más adelante con la herramienta draksec del "
-#~ "Centro\n"
-#~ "de Control de Mandrake.\n"
+#~ "uso: drakbug [OPCIONES] [NOMBRE_DEL_PROGRAMA]\n"
#~ "\n"
-#~ "El campo \"%s\" puede informar al sistema del usuario en esta "
-#~ "computadora\n"
-#~ "que será responsable de la seguridad. Los mensajes relativos a la "
-#~ "seguridad\n"
-#~ "se enviarán a esa dirección."
+#~ "OPCIONES:\n"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#~ msgid ""
-#~ "Your choice of preferred language will affect the language of the\n"
-#~ "documentation, the installer and the system in general. Select first the\n"
-#~ "region you are located in, and then the language you speak.\n"
-#~ "\n"
-#~ "Clicking on the \"%s\" button will allow you to select other languages "
-#~ "to\n"
-#~ "be installed on your workstation, thereby installing the language-"
-#~ "specific\n"
-#~ "files for system documentation and applications. For example, if you "
-#~ "will\n"
-#~ "host users from Spain on your machine, select English as the default\n"
-#~ "language in the tree view and \"%s\" in the Advanced section.\n"
-#~ "\n"
-#~ "About UTF-8 (unicode) support: Unicode is a new character encoding meant "
-#~ "to\n"
-#~ "cover all existing languages. Though full support for it in GNU/Linux is\n"
-#~ "still under development. For that reason, Mandrake Linux will be using "
-#~ "it\n"
-#~ "or not depending on the user choices:\n"
-#~ "\n"
-#~ " * If you choose a languages with a strong legacy encoding (latin1\n"
-#~ "languages, Russian, Japanese, Chinese, Korean, Thai, Greek, Turkish, "
-#~ "most\n"
-#~ "iso-8859-2 languages), the legacy encoding will be used by default;\n"
-#~ "\n"
-#~ " * Other languages will use unicode by default;\n"
-#~ "\n"
-#~ " * If two or more languages are required, and those languages are not "
-#~ "using\n"
-#~ "the same encoding, then unicode will be used for the whole system;\n"
-#~ "\n"
-#~ " * Finally, unicode can also be forced for the system at user request by\n"
-#~ "selecting option \"%s\" independently of which language(s) have been\n"
-#~ "chosen.\n"
-#~ "\n"
-#~ "Note that you're not limited to choosing a single additional language. "
-#~ "You\n"
-#~ "may choose several ones, or even install them all by selecting the \"%s"
-#~ "\"\n"
-#~ "box. Selecting support for a language means translations, fonts, spell\n"
-#~ "checkers, etc. for that language will be installed.\n"
-#~ "\n"
-#~ "To switch between the various languages installed on the system, you can\n"
-#~ "launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
-#~ "language used by the entire system. Running the command as a regular "
-#~ "user\n"
-#~ "will only change the language settings for that particular user."
-#~ msgstr ""
-#~ "El primer paso es elegir el idioma de instalación. En el ejemplo se "
-#~ "elige\n"
-#~ "\"%s\" como región y \"%s\" como idioma.\n"
-#~ "\n"
-#~ "Su elección de idioma preferido afectará al idioma de la documentación, "
-#~ "el\n"
-#~ "instalador y el sistema en general. Seleccione primero la región en la "
-#~ "que\n"
-#~ "se encuentra, y luego el idioma que habla.\n"
-#~ "\n"
-#~ "Al hacer clic sobre el botón \"%s\" podrá seleccionar otros idiomas para\n"
-#~ "instalar en su sistema, instalando así los archivos específicos para "
-#~ "esos\n"
-#~ "idiomas para la documentación y las aplicaciones. Por ejemplo, si "
-#~ "albergará\n"
-#~ "a gente de Francia en su máquina, seleccione Español como idioma "
-#~ "principal\n"
-#~ "en la vista de árbol y \"%s\" en la sección avanzada.\n"
-#~ "\n"
-#~ "Acerca del soporte UTF-8 (Unicode): Unicode es una codificación nueva de\n"
-#~ "caracteres que pretende cubrir todos los idiomas existentes. Sin "
-#~ "embargo,\n"
-#~ "el soporte completo para Unicode bajo GNU/Linux todavía está en "
-#~ "desarrollo.\n"
-#~ "Por esta razón, Mandrake Linux lo usará o no dependiendo de las "
-#~ "elecciones\n"
-#~ "del usuario:\n"
-#~ "\n"
-#~ " * Si elige un idioma con codificación legada fuerte (idiomas latin1, "
-#~ "ruso,\n"
-#~ "japonés, chino, coreano, thai, griego, turco, la mayoría de los idiomas\n"
-#~ "ISO-8859-2), de manera predeterminada se usará la codificación legada.\n"
-#~ "\n"
-#~ " * Otros idiomas utilizarán Unicode de manera predeterminada.\n"
-#~ "\n"
-#~ " * Si se necesitan dos o más idiomas, y dichos idiomas no utilizan la "
-#~ "misma\n"
-#~ "codificación, entonces el sistema completo utilizará Unicode.\n"
-#~ "\n"
-#~ " * Finalmente, también se puede forzar el uso de Unicode para todo el\n"
-#~ "sistema a pedido del usuario seleccionando la opción \"%s\" sin importar\n"
-#~ "qué idiomas han sido seleccionados.\n"
-#~ "\n"
-#~ "Note que no está limitado a elegir un único idioma adicional. Puede "
-#~ "elegir\n"
-#~ "varios, o incluso instalarlos a todos marcando la casilla \"%s\".\n"
-#~ "Seleccionar el soporte para un idioma significa que se instalarán las\n"
-#~ "traducciones, tipografías, correctores ortográficos, etc. para dicho\n"
-#~ "idioma.\n"
-#~ "\n"
-#~ "Para cambiar de un idioma a otro, Usted puede ejecutar el comando\n"
-#~ "\"/usr/sbin/localedrake\" como \"root\" para cambiar el idioma de todo "
-#~ "el\n"
-#~ "sistema. Ejecutar el comando como usuario no privilegiado sólo cambiará "
-#~ "la\n"
-#~ "configuración de idioma para ese usuario en particular."
+#~ msgid " --help - print this help message.\n"
+#~ msgstr " --help - imprimir este mensaje de ayuda.\n"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#~ msgid ""
-#~ "LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
-#~ "automated. DrakX will analyze the disk boot sector and act according to\n"
-#~ "what it finds there:\n"
-#~ "\n"
-#~ " * if a Windows boot sector is found, it will replace it with a grub/"
-#~ "LILO\n"
-#~ "boot sector. This way you will be able to load either GNU/Linux or any\n"
-#~ "other OS installed on your machine.\n"
-#~ "\n"
-#~ " * if a grub or LILO boot sector is found, it will replace it with a new\n"
-#~ "one.\n"
-#~ "\n"
-#~ "If it cannot make a determination, DrakX will ask you where to place the\n"
-#~ "bootloader. Generally, the \"%s\" is the safest place. Choosing \"%s\"\n"
-#~ "won't install any bootloader. Use it only if you know what you are doing."
+#~ msgid " --report - program should be one of mandrake tools\n"
#~ msgstr ""
-#~ "LILO y grub son cargadores de arranque para GNU/Linux. Normalmente esta\n"
-#~ "etapa está completamente automatizada. DrakX analizará el sector de\n"
-#~ "arranque del disco y actuará en función de lo que encuentre allí:\n"
-#~ "\n"
-#~ " * si encuentra un sector de arranque de Windows, lo reemplazará con un\n"
-#~ "sector de arranque de grub/LILO de forma tal que Usted pueda cargar\n"
-#~ "GNU/Linux o cualquier otro sistema operativo instalado en su máquina;\n"
-#~ "\n"
-#~ " * si encuentra un sector de arranque de grub o LILO, lo reemplazará con\n"
-#~ "uno nuevo;\n"
-#~ "\n"
-#~ "Si no puede realizar una determinación, DrakX le preguntará dónde "
-#~ "colocar\n"
-#~ "el cargador de arranque. Generalmente, el \"%s\" es el lugar más seguro. "
-#~ "Si\n"
-#~ "no va a instalar cargador de arranque alguno seleccione \"%s\". Úselo\n"
-#~ "solamente si sabe lo que está haciendo."
+#~ " --report - el programa debería ser una de las herramientas de "
+#~ "mandrake\n"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
-#~ msgid ""
-#~ "At this point, you need to choose which partition(s) will be used for "
-#~ "the\n"
-#~ "installation of your Mandrake Linux system. If partitions have already "
-#~ "been\n"
-#~ "defined, either from a previous installation of GNU/Linux or 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\": un-checking this option will force users to manually mount "
-#~ "and\n"
-#~ "unmount removable media such as floppies and CD-ROMs.\n"
-#~ "\n"
-#~ " * \"%s\": use this option if you wish to use a wizard to partition your\n"
-#~ "hard drive. This is recommended if you do not have a good understanding "
-#~ "of\n"
-#~ "partitioning.\n"
-#~ "\n"
-#~ " * \"%s\": use this option to cancel your changes.\n"
-#~ "\n"
-#~ " * \"%s\": allows additional actions on partitions (type, options, "
-#~ "format)\n"
-#~ "and gives more information about the hard drive.\n"
-#~ "\n"
-#~ " * \"%s\": when you are finished partitioning your hard drive, this will\n"
-#~ "save your changes back to disk.\n"
-#~ "\n"
-#~ "When defining the size of a partition, you can finely set the partition\n"
-#~ "size by using the Arrow keys of your keyboard.\n"
-#~ "\n"
-#~ "Note: you can reach any option using the keyboard. Navigate through the\n"
-#~ "partitions using [Tab] and the [Up/Down] arrows.\n"
-#~ "\n"
-#~ "When a partition is selected, you can use:\n"
-#~ "\n"
-#~ " * Ctrl-c to create a new partition (when an empty partition is "
-#~ "selected)\n"
-#~ "\n"
-#~ " * Ctrl-d to delete a partition\n"
-#~ "\n"
-#~ " * Ctrl-m to set the mount point\n"
-#~ "\n"
-#~ "To get information about the different file system types available, "
-#~ "please\n"
-#~ "read the ext2FS chapter from the ``Reference Manual''.\n"
-#~ "\n"
-#~ "If you are installing on a PPC machine, you will want to create a small "
-#~ "HFS\n"
-#~ "``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-#~ "bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-#~ "may find it a useful place to store a spare kernel and ramdisk images "
-#~ "for\n"
-#~ "emergency boot situations."
+#~ msgid " --incident - program should be one of mandrake tools\n"
#~ msgstr ""
-#~ "Ahora necesita elegir qué particiones se utilizarán para la instalación "
-#~ "de\n"
-#~ "su sistema Mandrake Linux. Si ya se han definido particiones, ya sea por\n"
-#~ "una instalación previa de GNU/Linux o con otra herramienta de "
-#~ "particionado,\n"
-#~ "puede utilizarlas. De lo contrario, se deben definir particiones en el\n"
-#~ "disco rígido.\n"
-#~ "\n"
-#~ "Para crear particiones, primero debe seleccionar un disco rígido. Puede\n"
-#~ "seleccionar el disco a particionar haciendo clic sobre \"hda\" para el\n"
-#~ "primer disco IDE, \"hdb\" para el segundo, \"sda\" para el primer disco\n"
-#~ "SCSI y así sucesivamente.\n"
-#~ "\n"
-#~ "Para particionar el disco rígido seleccionado, puede utilizar estas\n"
-#~ "opciones:\n"
-#~ "\n"
-#~ " * \"%s\": esta opción borra todas las particiones sobre el disco\n"
-#~ "seleccionado.\n"
-#~ "\n"
-#~ " * \"%s\": esta opción le permite crear particiones ext3 y swap\n"
-#~ "automáticamente en el espacio libre de su disco rígido.\n"
-#~ "\n"
-#~ "\"%s\": le da acceso a características adicionales:\n"
-#~ "\n"
-#~ " * \"%s\": guarda la tabla de particiones en un disquete. Útil para\n"
-#~ "recuperar la tabla de particiones más adelante en caso que sea "
-#~ "necesario.\n"
-#~ "Es altamente recomendable realizar este paso.\n"
-#~ "\n"
-#~ " * \"%s\": esta opción le permitirá restaurar una tabla de particiones\n"
-#~ "guardada previamente en un disquete.\n"
-#~ "\n"
-#~ " * \"%s\": si su tabla de particiones está dañada puede intentar\n"
-#~ "recuperarla utilizando esta opción. Por favor, tenga cuidado y recuerde "
-#~ "que\n"
-#~ "puede fallar.\n"
-#~ "\n"
-#~ " * \"%s\": descarta todos los cambios y carga la tabla de particiones "
-#~ "que\n"
-#~ "estaba originalmente en el disco rígido.\n"
-#~ "\n"
-#~ " * \"%s\": si desmarca esta opción los usuarios estarán forzados a montar "
-#~ "y\n"
-#~ "desmontar manualmente los soportes removibles como los disquetes y los\n"
-#~ "CD-ROM.\n"
-#~ "\n"
-#~ " * \"%s\": use esta opción si desea utilizar un asistente para "
-#~ "particionar\n"
-#~ "su disco rígido. Se recomienda esto si no tiene un buen conocimiento del\n"
-#~ "particionado.\n"
-#~ "\n"
-#~ " * \"%s\": use esta opción para deshacer sus cambios.\n"
-#~ "\n"
-#~ " * \"%s\": permite realizar acciones adicionales sobre las particiones\n"
-#~ "(tipo, opciones, formatear) y brinda más información acerca del disco\n"
-#~ "rígido.\n"
-#~ "\n"
-#~ " * \"%s\": cuando ha terminado de particionar su disco rígido, esto\n"
-#~ "guardará sus cambios en el disco.\n"
-#~ "\n"
-#~ "Cuando se define el tamaño de una partición, puede realizar un ajuste "
-#~ "fino\n"
-#~ "del tamaño utilizando las teclas de las flechas de su teclado.\n"
-#~ "\n"
-#~ "Nota: todas las opciones son accesibles por medio del teclado. Navegue a\n"
-#~ "través de las particiones usando [Tab] y las flechas [Arriba/Abajo].\n"
-#~ "\n"
-#~ "Cuando se selecciona una partición, puede utilizar:\n"
-#~ "\n"
-#~ " * [Ctrl] [C] para crear una partición nueva (cuando está seleccionada "
-#~ "una\n"
-#~ "partición vacía);\n"
-#~ "\n"
-#~ " * [Ctrl] [D] para borrar una partición;\n"
-#~ "\n"
-#~ " * [Ctrl] [M] para configurar el punto de montaje.\n"
-#~ "\n"
-#~ "Para obtener información sobre los distintos tipos de sistemas de "
-#~ "archivos\n"
-#~ "disponibles, por favor lea el capítulo acerca de ext2FS del \"Manual de\n"
-#~ "Referencia\".\n"
-#~ "\n"
-#~ "Si está instalando en una máquina PPC, querrá crear una pequeña "
-#~ "partición\n"
-#~ "HFS de \"bootstrap\" de al menos 1 MB que será utilizada por el cargador "
-#~ "de\n"
-#~ "arranque yaboot. Si opta por hacer la partición un poco más grande, "
-#~ "digamos\n"
-#~ "50 MB, puede ver que es un lugar útil para almacenar un núcleo y ramdisk\n"
-#~ "alternativos para arrancar en situaciones de emergencia."
+#~ " --incident - el programa debería ser una de las herramientas de "
+#~ "mandrake\n"
+
+#~ msgid "usage: drakfloppy\n"
+#~ msgstr "uso: drakfloppy\n"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#~ 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 wish to configure your Internet or local network "
-#~ "access\n"
-#~ "now.\n"
-#~ "\n"
-#~ " * \"%s\": this entry allows you to redefine the security level as set in "
-#~ "a\n"
-#~ "previous step ().\n"
-#~ "\n"
-#~ " * \"%s\": if you plan to connect your machine to the Internet, it's a "
-#~ "good\n"
-#~ "idea to protect yourself from intrusions by setting up a firewall. "
-#~ "Consult\n"
-#~ "the corresponding section of the ``Starter Guide'' for details about\n"
-#~ "firewall settings.\n"
-#~ "\n"
-#~ " * \"%s\": if you wish to change your bootloader configuration, click "
-#~ "that\n"
-#~ "button. This should be reserved to advanced users.\n"
-#~ "\n"
-#~ " * \"%s\": here you'll be able to fine control which services will be "
-#~ "run\n"
-#~ "on your machine. If you plan to use this machine as a server it's a good\n"
-#~ "idea to review this setup."
+#~ "Usage: harddrake [-h|--help] [--test]\n"
#~ msgstr ""
-#~ "A manera de revisión, DrakX presentará un resumen de las distintas\n"
-#~ "informaciones que tiene acerca de su sistema. Dependiendo del hardware\n"
-#~ "instalado puede tener algunas o todas las entradas siguientes. Cada "
-#~ "entrada\n"
-#~ "está compuesta del elemento de configuración a configurar, seguido de un\n"
-#~ "pequeño resumen de la configuración corriente. Haga clic sobre el botón\n"
-#~ "\"%s\" correspondiente para cambiar eso.\n"
-#~ "\n"
-#~ " * \"%s\": verifique la configuración de la disposición corriente del\n"
-#~ "teclado y cámbiela si es necesario.\n"
-#~ "\n"
-#~ " * \"%s\": verifique la selección corriente del país. Si Usted no se\n"
-#~ "encuentra en este país haga clic sobre el botón \"%s\" y elija otro. Si "
-#~ "su\n"
-#~ "país no se muestra en la primer lista haga clic sobre el botón \"%s\" "
-#~ "para\n"
-#~ "obtener la lista completa de países.\n"
-#~ "\n"
-#~ " * \"%s\": De manera predeterminada DrakX deduce su huso horario "
-#~ "basándose\n"
-#~ "en el país que ha elegido. Puede hacer clic sobre el botón \"%s\" si "
-#~ "esto\n"
-#~ "no es correcto.\n"
#~ "\n"
-#~ " * \"%s\": verifique la configuración del ratón y haga clic sobre el "
-#~ "botón\n"
-#~ "para cambiarla, si es necesario.\n"
-#~ "\n"
-#~ " * \"%s\": al hacer clic sobre el botón \"%s\" se abrirá el asistente de\n"
-#~ "configuración de la impresora. Consulte el capítulo correspondiente de "
-#~ "la\n"
-#~ "\"Guía de Comienzo\" para más información sobre cómo configurar una\n"
-#~ "impresora nueva. La interfaz presentada allí es similar a la utilizada\n"
-#~ "durante la instalación.\n"
-#~ "\n"
-#~ " * \"%s\": si se detecta una tarjeta de sonido en su sistema, la misma "
-#~ "se\n"
-#~ "muestra aquí. Si nota que la tarjeta de sonido mostrada no es la que "
-#~ "está\n"
-#~ "realmente instalada en su sistema, puede hacer clic sobre el botón y "
-#~ "elegir\n"
-#~ "otro controlador.\n"
-#~ "\n"
-#~ " * \"%s\": de manera predeterminada DrakX configura su interfaz gráfica "
-#~ "en\n"
-#~ "\"800x600\" o \"1024x768\" de resolución. Si eso no le satisface, haga "
-#~ "clic\n"
-#~ "sobre \"%s\" para volver a configurar su interfaz gráfica.\n"
-#~ "\n"
-#~ " * \"%s\": si se detecta una tarjeta de TV en su sistema, la misma se\n"
-#~ "muestra aquí. Si tiene una tarjeta de TV y la misma no se detecta, haga\n"
-#~ "clic sobre \"%s\" para intentar configurarla a mano.\n"
-#~ "\n"
-#~ " * \"%s\": si se detecta una tarjeta RDSI en su sistema, la misma se\n"
-#~ "muestra aquí. Puede hacer clic sobre \"%s\" para cambiar los parámetros\n"
-#~ "asociados a la misma.\n"
-#~ "\n"
-#~ " * \"%s\": haga clic sobre \"%s\" si desea configurar ahora el acceso a "
-#~ "la\n"
-#~ "Internet o a su red local.\n"
-#~ "\n"
-#~ " * \"%s\": esta entrada le ofrece volver a definir el nivel de seguridad\n"
-#~ "como se ajustó en un paso previo ()\n"
-#~ "\n"
-#~ " * \"%s\": si planifica conectar su máquina a la Internet, es una buena\n"
-#~ "idea protegerse de las intrusiones configurando un cortafuegos. Consulte "
-#~ "la\n"
-#~ "sección correspondiente de la \"Guía de Comienzo\" para detalles acerca "
-#~ "de\n"
-#~ "los ajustes del cortafuegos.\n"
-#~ "\n"
-#~ " * \"%s\": si desea cambiar la configuración de su cargador de arranque,\n"
-#~ "haga clic sobre ese botón. Esto debería estar reservado para usuarios\n"
-#~ "avanzados.\n"
-#~ "\n"
-#~ " * \"%s\": aquí podrá tener un control fino sobre qué servicios correrán "
-#~ "en\n"
-#~ "su máquina. Si planifica utilizar esta máquina como servidor es una "
-#~ "buena\n"
-#~ "idea revisar estos ajustes."
+#~ "uso: harddrake [-h|--help] [--test]\n"
+
+#~ msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+#~ msgstr "uso: keyboarddrake [--expert] [teclado]\n"
+
+#~ msgid "Probing %s class\n"
+#~ msgstr "Probando clase %s\n"
+
+#~ msgid "detected on interface %s"
+#~ msgstr "detectada en la interfaz %s"
+
+#~ msgid "Periodic Checks 2"
+#~ msgstr "Verificaciones periódicas 2"
+
+#~ msgid "unable to backup lilo message"
+#~ msgstr "no se puede hacer copia de respaldo del mensaje de LiLo"
+
+#~ msgid "can't change lilo message"
+#~ msgstr "no se puede cambiar el mensaje de LiLo"
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index 20ec77933..0166da739 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -1,3289 +1,1852 @@
-# Translation of DrakX.po to Estonian.
-# Copyright (C) 2003 Free Software Foundation, Inc.
-# Riho Kurg <rx@linux.ee>, 1999-2003.
-# Marek Laane <bald@online.ee>, 2002-2003.
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# Riho Kurg <rx@linux.ee>, 1999-2001.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX-et\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
-"PO-Revision-Date: 2003-12-02 09:20+0200\n"
+"Project-Id-Version: DrakX VERSION\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"PO-Revision-Date: 2002-12-06 19:02+0200\n"
"Last-Translator: Marek Laane <bald@online.ee>\n"
-"Language-Team: Estonian <et@li.org>\n"
+"Language-Team: Estonian <kde-et@linux.ee>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.2\n"
+"X-Generator: KBabel 0.9.6\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Partitsioonidelt haakepunktide otsimine"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr "Kui on 'jah', kontrollitakse suid root failide lisamist/eemaldamist."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s nõuab masina nime, MAC aadressi, IP-d, nbi-laadepilti, 0/1 "
-"THIN_CLIENT puhul, 0/1 kohaliku seadistuse puhul...\n"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr "Seadistust on muudetud - kas käivitada clusternfs/dhcpd uuesti?"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tPuhasta=%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Diferentsvarundus salvestab ainult pärast 'baasvarunduse' loomist muudetud "
-"või loodud failid."
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "network printer port"
-msgstr "võrguprinteri port"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Sisestage palun flopi:"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr "DrakTermServ"
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Tabeli varukoopia ei ole sama suurusega\n"
-"Kas ikkagi jätkata?"
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Which username"
-msgstr "Milline kasutajanimi"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "Millisele sektorile soovite seda tõsta?"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Restore partition table"
-msgstr "Taasta partitsioonitabel"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB või rohkem"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure hostname..."
-msgstr "Masinanime seadmine..."
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "Valige X server"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "CUPS serveril \"%s\""
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "X server"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Post-install configuration"
-msgstr "Paigaldusjärgne seadistamine"
+#
+#: ../../Xconfig/card.pm_.c:230
+msgid "Multi-head configuration"
+msgstr "Mitme monitori seadistamine"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-"Turvatase on praegu %s\n"
-"Valige, milliseid loabitte soovite näha/muuta"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Kasutage pigem ``%s''"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Type"
-msgstr "Tüüp"
+"Süsteemis on võimalik kasutada mitut monitori.\n"
+"Mida Te soovite teha?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Üle kanda ei saa ka printereid, mis on seadistatud nende tootjate pakutud "
-"PPD failidega või loomupäraste CUPS draiveritega."
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
+msgstr "Valige graafikamälu suurus"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "XFree sätted"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Teie süsteemiga on ühendatud\n"
-"\n"
-"%s%s\n"
-"printer(id)"
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Millist XFree seadistust soovite kasutada?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
-msgstr "Kesk-Aafrika Vabariik"
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
+msgstr "Seadista kõik monitorid sõltumatult"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "Lüüsipoolne seade"
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
+msgstr "Kasuta Xinerama laiendusi"
-#: ../../standalone/drakfloppy:1
+#: ../../Xconfig/card.pm_.c:389
#, c-format
-msgid "Advanced preferences"
-msgstr "Muud valikud"
+msgid "Configure only card \"%s\"%s"
+msgstr "Seadista ainult kaart \"%s\"%s"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Net Method:"
-msgstr "Võrgumeetod:"
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Ethernetcard"
-msgstr "Võrgukaart"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s koos 3D graafikakiirendi toega"
-#: ../../security/l10n.pm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-"Kui on lubatud, saadab meiliraporti sellele aadressile, muidu "
-"administraatorile."
-
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr "Parameetrid"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "no"
-msgstr "ei"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Auto-detect"
-msgstr "Automaattuvastus"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface:"
-msgstr "Liides:"
+"Teie videokaardi 3D graafikakiirendit saab kasutada vaid koos XFree %s-ga.\n"
+"XFree %s toetab Teie videokaarti ja võib omada paremat 2D tuge."
-#: ../../steps.pm:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid "Select installation class"
-msgstr "Valige paigaldusmeetod"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "Teie kaardi 3D graafikakiirendit toetab XFree %s."
-#: ../../network/tools.pm:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Paistab, et süsteem ei ole Internetti ühendatud.\n"
-"Palun seadistage ühendus uuesti."
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s koos EKSPERIMENTAALSE 3D kiirendi toega"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+"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."
msgstr ""
-"Ühendage oma printer Linux-serveri külge ja lubage oma Windowsi masina(te)l "
-"sellega ühendust võtta kliendina.\n"
-"\n"
-"Kas soovite tõesti jätkata selle printeri seadistamist?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belarus"
-msgstr "Valgevene"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Viga faili %s kirjutamisel"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result to syslog"
-msgstr "Kontrolli tulemused saadetakse syslog-i"
+"Teie videokaardi 3D graafikakiirendit saab kasutada vaid koos XFree %s-ga.\n"
+"SEE ON AGA EKSPERIMENTAALNE JA VÕIB OLLA EBASTABIILNE.\n"
+"Teie kaarti toetab ka XFree %s, millel on ehk parem 2D tugi."
-#: ../../services.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"Apmd on kasutusel põhiliselt sülearvutites akude täituvuse jälgimiseks.\n"
-"Samuti suudab see aku tühjenemisel süsteemi viisakalt seisata."
+"Teie videokaardi 3D graafikakiirendit saab kasutada koos XFree %s-ga.\n"
+"SEE ON AGA EKSPERIMENTAALNE JA VÕIB OLLA EBASTABIILNE."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tape to backup"
-msgstr "Varundamine lindile"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (paigalduse kuvadraiver)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Paigaldamiseks on valitud järgmised paketid"
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "Isetehtud"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS configuration"
-msgstr "CUPSi seadistused"
+#: ../../Xconfig/main.pm_.c:102
+msgid "Graphic Card"
+msgstr "Graafikakaart"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total progress"
-msgstr "Edenemine kokku"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "Monitor"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "Kuvatihedus"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "Paigutan ümber"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
+msgstr "Test"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-"\n"
-"Drakbackupi tegevus %s vahendusel:\n"
-"\n"
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Eelistused"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "yes"
-msgstr "jah"
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "Olgu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr "("
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "Välju"
-#: ../../network/netconnect.pm:1
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
-"Welcome to The Network Configuration Wizard.\n"
+"Keep the changes?\n"
+"The current configuration is:\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"
+"%s"
msgstr ""
-"Internetiühenduse nõustaja\n"
+"Kas säilitada muudatused?\n"
+"Olemasolevad sätted:\n"
"\n"
-"Nüüd hakkame Internetiühendust seadistama.\n"
-"Kui Te ei soovi automaatset tuvastamist, siis jätke see märkimata.\n"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "Liibanon"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Stop"
-msgstr "Peata"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Edit selected host"
-msgstr "Muuda valitud masinat"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD device defined!"
-msgstr "CD-seade on määramata!"
-
-#: ../../network/shorewall.pm:1
-#, c-format
-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 ""
-"Palun sisestage Internetiühendust teostava seadme nimi.\n"
-" \n"
-"Näited:\n"
-" ppp+ modemi- või DSL ühenduse korral. \n"
-" eth0 või eth1 kaabliühenduse korral, \n"
-" ippp+ ISDN ühenduse korral.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tKasutatakse .backupignore faile\n"
+"%s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "Bulgaaria (foneetiline)"
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "Valige monitor"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP start ip"
-msgstr "DHCP vahemiku alguse ip"
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
+msgstr "Plug'n Play"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "256 kB"
-msgstr "256 kB"
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "Tavaline"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Don't rewind tape after backup"
-msgstr "Linti ei kerita pärast varundamist algusse"
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+msgid "Vendor"
+msgstr "Tootja"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "Alglaaduri põhiseadistused"
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr "Plug'n Play test ebaõnnestus. Palun valige monitor täpsemalt"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
+"\n"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
-
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Tape"
-msgstr "Lint"
+"Kaks kriitilist suurust on ekraanisagedus, mis määrab kogu kuva\n"
+"uuendamise aja, ja realaotussagedus\n"
+"\n"
+"On VÄGA TÄHTIS, et Te ei määraks siinkohal monitori, mille realaotus on\n"
+"suurem, kui Teie monitor võimaldab. Vastasel juhul võib Teie monitor "
+"hävida.\n"
+"Kui kahtlete, valige pigem väiksem väärtus."
-#: ../../lang.pm:1
-#, c-format
-msgid "Malaysia"
-msgstr "Malaisia"
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "Realaotussagedus"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning network..."
-msgstr "Võrgu uurimine..."
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "Ekraaniuuendussagedus"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr "Selle valikuga võite taastada kataloogi /etc suvalise versiooni."
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 värvi (8 bitti)"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr "Muutus on tehtud. Kas käivitada nüüd kuvahaldur uuesti ?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tuhat värvi (15 bitti)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (French layout)"
-msgstr "Å veitsi (Prantsuse asetus)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tuhat värvi (16 bitti)"
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid ebaõnnestus (võib-olla puudub 'raidtools'?)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miljonit värvi (24 bitti)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "August"
-msgstr "August"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miljardit värvi (32 bitti)"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "FTP server"
-msgstr "FTP server"
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "Kuvatihedused"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Webcam"
-msgstr "Veebikaamera"
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "Valige kuvatihedus ja värvisügavus"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "(Teise taseme) CPU puhvri suurus"
+msgid "Graphics card: %s"
+msgstr "Graafikakaart: %s"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Soundcard"
-msgstr "Helikaart"
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr "Katkesta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Month"
-msgstr "Kuu"
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "Proovime seadistusi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search for files to restore"
-msgstr "Taastatavate failide otsimine"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "Kas soovite seadistusi proovida?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Luxembourg"
-msgstr "Luksemburg"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Hoiatus: selle graafikakaardi test võib Teie arvuti peatada"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Faili trükkimiseks käsurealt (terminaliaken) kasutage käsku \"%s <fail>\".\n"
+msgid "Keyboard layout: %s\n"
+msgstr "Klaviatuuriasetus: %s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid "Level %s\n"
-msgstr "Tase %s\n"
+msgid "Mouse type: %s\n"
+msgstr "Hiire tüüp: %s\n"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid "Syriac (phonetic)"
-msgstr "Süüria (foneetiline)"
+msgid "Mouse device: %s\n"
+msgstr "Hiire port: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid "Iran"
-msgstr "Iraan"
+msgid "Monitor: %s\n"
+msgstr "Monitor: %s\n"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Bus"
-msgstr "Siin"
+msgid "Monitor HorizSync: %s\n"
+msgstr "Realaotussagedus: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Iraq"
-msgstr "Iraak"
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Ekraanisagedus: %s\n"
-#: ../../standalone/drakbug:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid "connecting to %s ..."
-msgstr "ühenduse loomine: %s ..."
+msgid "Graphics card: %s\n"
+msgstr "Graafikakaart: %s\n"
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Võimalik kohtvõrgu aadressi konflikt %s seadistuses!\n"
+msgid "Graphics memory: %s kB\n"
+msgstr "Videomälu: %s kB\n"
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid "Configuring..."
-msgstr "Seadistamine..."
+msgid "Color depth: %s\n"
+msgstr "Värvisügavus: %s\n"
-#: ../../harddrake/v4l.pm:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
-msgstr ""
-"Enamiku moodsate TV-kaartide puhul avastab GNU/Linuxi kerneli bttv-moodul "
-"automaatselt õiged parameetrid.\n"
-"Kui kaart siiski valesti tuvastati, võite siin määrata õige tuuneri ja "
-"kaardi tüübi. Valige vajadusel korral sobivad TV-kaardi parameetrid"
+msgid "Resolution: %s\n"
+msgstr "Kuvatihedus: %s\n"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Password (again)"
-msgstr "Salasõna (uuesti)"
+msgid "XFree86 server: %s\n"
+msgstr "XFree86 server: %s\n"
-#: ../../standalone/drakfont:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Search installed fonts"
-msgstr "Paigaldatud fontide otsimine"
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 juhtprogramm: %s\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default desktop"
-msgstr "Vaikimisi töölaud"
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "X käivitub koos süsteemiga"
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:62
msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
-"Veateate edastamiseks vajutage nupule 'Raport'.\n"
-"See avab veebilehitseja akna aadressil %s,\n"
-"kus leiate eest täitmist ootava vormi. Ülal näidatud info kantakse\n"
-"serverile üle."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr "Venezuela"
-
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "IP address"
-msgstr "IP aadress"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "Valige suurused"
+"Teie arvutis on võimalik käivitada X juba alglaadimisel.\n"
+"Kas soovite nii teha?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:73
msgid ""
-"List of data corrupted:\n"
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
"\n"
-msgstr ""
-"Vigaste andmete loend:\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"
-
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
-msgstr ""
-"Saab haakida ainult otsesel märkimisel\n"
-"(st, et võti -a ei haagi failisüsteemi)."
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
+"Do you have this feature?"
msgstr ""
-"Teie modem ei ole toetatud.\n"
-"Ehk saate abi aadressilt http://www.linmodems.org"
+"Paistab, et Teie videokaardil on TV OUT väljund.\n"
+"Seda on võimalik kasutada järgnevalt:\n"
+"\n"
+"Ühendage arvuti televiisoriga enne alglaadimist ja valige laademenüüst\n"
+" \"TVout\" \n"
+"\n"
+"Kas soovite seda kasutama hakata?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose another partition"
-msgstr "Valige muu partitsioon"
+#: ../../Xconfig/various.pm_.c:85
+msgid "What norm is your TV using?"
+msgstr "Millist TV-standardit Te kasutate?"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Current user"
-msgstr "Praegune kasutaja"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
+msgstr "Partitsiooni algusesse"
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
-msgstr "Kasutajanimi"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
+msgstr "Ketta algusesse (MBR)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Vasakpoolne \"Windows\"-klahv"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "SILO paigaldamine"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "Guyana"
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
+msgstr "Kuhu soovite alglaaduri paigaldada?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Dhcpd serveri seadistamine"
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "LILO/grub paigaldamine"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Kasutusel kataloogis:\n"
-" ainult faili või kataloogi omanik saab seda kustutada"
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
+msgstr "SILO"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " Novelli serveril \"%s\", printer \"%s\""
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
+msgstr "LILO tekstiresiimis"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Name"
-msgstr "Printeri nimi"
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
+msgstr "LILO graafikaresiimis"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
-msgstr "USB mälupulga seadistamine"
+#: ../../any.pm_.c:142
+msgid "Grub"
+msgstr "Grub"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
-msgstr "Eemalda moodul"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "Laadimine DOS/Windowsist (loadlin)"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Password"
-msgstr "Salasõna"
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Muud seadistused"
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "Alglaaduri peasätted"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr "Skaneerimine Teie HP mitmefunktsionaalsel seadmel"
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
+msgstr "Eelistatav alglaadur"
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "Juur"
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "Alglaaduri paigaldus"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "Valige olemasolev RAID, millele lisada"
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "Alglaadimisseade"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Türgi (modernne \"Q\" mudel)"
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "Kompaktne"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo message not found"
-msgstr "LiLo sõnumit ei leitud"
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "kompaktne"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Kerneli päise automaatne regenereerimine partitsioonil /boot\n"
-"/usr/include/linux/{autoconf,version}.h jaoks"
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "Graafikamood"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
-msgstr "kui vaja"
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
+msgstr "Ooteaeg alglaadimisel"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
-msgstr ""
-"Võrguajaprotokolli lubamiseks\n"
-"on vaja paigaldada pakett ntp"
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
+msgid "Password"
+msgstr "Salasõna"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Failed..."
-msgstr "Taastamine ebaõnnestus..."
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "Salasõna (uuesti)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "Parool salvestatakse selle süsteemi tarbeks drakbackupi seadistustes."
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "Piira käsurea suvandeid"
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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 ""
-"Järgnev lõppkasutaja litsents on eksimuste vältimiseks originaalkeeles!\n"
-"\n"
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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"
+#: ../../any.pm_.c:171
+msgid "restrict"
+msgstr "piiratud"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default user"
-msgstr "Vaikimisi kasutaja"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "Puhasta /tmp igal laadimisel"
-#: ../../standalone/draksplash:1
+#: ../../any.pm_.c:174
#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"edenemisriba ülemise vasaku\n"
-"nurga x-koordinaat"
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Kui vaja, täpsusta RAM suurust (leitud %d MB)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Current interface configuration"
-msgstr "Liidese praegune seadistus"
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
+msgstr "Võimalda mitut profiili"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LDP - Otsetrükkimisdeemon"
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "Anna mälu suurus megabaitides"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../any.pm_.c:182
msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"Kui Teil on ISA kaart, siis peaks järgmised väärtused olema õiged.\n"
-"\n"
-"Kui Teil on PCMCIA kaart, peate ise teadma selle IRQ ning IO väärtusi.\n"
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr "Säte ``Piira käsurea suvandeid'' ei ole kasutatav ilma salasõnata"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not print any test page"
-msgstr "Ära trüki testlehekülge"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "Palun proovige veel"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr "Gurmukhi"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "Salasõnad ei klapi"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s on juba kasutusel\n"
+#: ../../any.pm_.c:191
+msgid "Init Message"
+msgstr "Initsialiseerimisteade"
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
-msgstr "APIC sunnitakse mitte toimima"
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
+msgstr "Open Firmware viivitus"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr "Salasõna on liiga lühike (peaks olema vähemalt %d tähemärki)"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
+msgstr "Ajapiirang kerneli laadimisel"
-#: ../../standalone.pm:1
-#, c-format
-msgid "[keyboard]"
-msgstr "[klaviatuur]"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
+msgstr "CD-lt laadimine lubatud?"
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP vahendaja"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
+msgstr "OF laadimine lubatud?"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install List"
-msgstr "Paigaldusloend"
+#: ../../any.pm_.c:197
+msgid "Default OS?"
+msgstr "Vaikimisi OS?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:231
msgid ""
-"Change\n"
-"Restore Path"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
+"\n"
+"On which drive are you booting?"
msgstr ""
-"Muuda\n"
-"taastamise asukohta"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Ainult valitud päeval näitamine"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tKettast lubatakse kasutada %s Mb\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Märkus: paralleelporte ei tuvastata)"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Millist tüüpi kaart Teil on?"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Security"
-msgstr "Turvalisus"
+"Otsustasite paigaldada alglaaduri partitsioonile.\n"
+"See eeldab, et Teil on juba alglaadur kõvakettal, millelt Te alglaadimise "
+"sooritate (nt System Commander).\n"
+"\n"
+"Milliselt kettalt Te alglaadimise teete?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:247
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"
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
-"Valikute seadistamiseks ja trükkimistööde haldamiseks saab kasutada ka "
-"graafilist liidest \"xpdq\".\n"
-"Kui kasutate töölauakeskkonnana KDE-d, on Teil töölaual \"paanikanupp\", "
-"ikoon nimetusega \"PEATA printer!\", millele klõpsates peatatakse otsekohe "
-"kõik trükkimistööd. See on kasulik näiteks paberiummistuste esinemisel.\n"
+"Praegu on kasutusel sellised kirjed.\n"
+"Te võite neid lisada ning olemasolevaid muuta."
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "Lisa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Varukoopiaid taastamiseks ei leitud...\n"
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "Tehtud"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown"
-msgstr "Tundmatu"
+#: ../../any.pm_.c:257
+msgid "Modify"
+msgstr "Muuda"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "See server on juba nimekirjas ja seda ei ole võimalik uuesti lisada.\n"
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "Millisele sektorile soovite seda tõsta?"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Network Configuration"
-msgstr "Võrgu seadistused"
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "Linux"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "Muu OS (SunOS...)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Protokoll ülejäänud maailma tarbeks\n"
-"Ilma D-kanalita (liisitud liinid)"
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "Muu OS (MacOS...)"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ seadistab selle faili, et see saaks töötada koos "
-"laadepiltidega, mille\n"
-" \t\ttekitab mkinitrd-net, samuti kirjed failis /etc/dhcpd.conf, et "
-"pakkuda igale kettata\n"
-" \t\ttööjaamale alglaadimiseks laadepilti.\n"
-"\n"
-" \t\tTüüpiline tftp seadetefail näeb välja selline:\n"
-" \t\t\n"
-" \tservice tftp\n"
-" \t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \t\tSiin tehtud muudatused võrreldes vaikepaigaldusega muudavad "
-"tühistamislipu\n"
-" \t\tväärtuseks 'no' ning kataloogirajaks muudetakse /var/lib/"
-"tftpboot, kuhu mkinitrd\n"
-" \t\tsalvestab oma laadepildid."
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "Muu OS (windows...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Võti %s peab olema arv!"
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "Laadefail"
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, c-format
-msgid "Notice"
-msgstr "Märguanne"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "Juur"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "Te ei ole seadistanud X-i. Kas Te tõesti ei taha seda teha?"
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
+msgstr "Lisand"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Printeri seadistused peaksid toimima täiesti automaatselt. Kui printer "
-"tuvastati valesti või Te eelistate seadistusi korrigeerida, lülitage sisse "
-"\"Käsitsiseadistamine\"."
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "What type of partitioning?"
-msgstr "Mis tüüpi partitsioonid teete?"
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "Read-write"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-" "
-msgstr ""
-"FTP kaudu saadetud faililoend: %s\n"
-" "
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "Tabel"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface"
-msgstr "Liides"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "Ebaturvaline"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Multisession CD"
-msgstr "Mitmeseansiline CD"
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "Pealdis"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated strings"
-msgstr "komaga eraldatud stringi"
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "Vaikimisi"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "Nende masinate skännereid saab selle arvutiga kasutada:"
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
+msgstr "Initrd suurus"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Messages"
-msgstr "Sõnumid"
+#: ../../any.pm_.c:318
+msgid "NoVideo"
+msgstr "NoVideo"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Tundmatu|CPH06X (bt878) [paljud tootjad]"
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "Eemalda kirje"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP ja IMAP server"
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "Tühi kirjetähis ei ole lubatud"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mexico"
-msgstr "Mehhiko"
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
+msgstr "Teil peab olema kerneli laadepilt"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model stepping"
-msgstr "Mudeli alamtüüp"
+#: ../../any.pm_.c:330
+msgid "You must specify a root partition"
+msgstr "Teil peab olema juurpartitsioon"
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
-msgstr "Rwanda"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "Selline pealdis on juba kasutusel"
-#: ../../lang.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Switzerland"
-msgstr "Å veits"
+msgid "Found %s %s interfaces"
+msgstr "Leiti %s %s liidest"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr "Brunei"
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "On Teil veel kaarte?"
-#: ../../modules/interactive.pm:1
+#: ../../any.pm_.c:642
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Kas Teil on ikka mõni %s liides?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "Seadistustefaili saab lugeda ainult administraator. \n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Võrguprinteri (lpd) seadistused"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"GNU/Linux on paljude kasutajatega süsteem, mis tähendab, et igal kasutajal\n"
-"võivad olla oma eelistused, failid jne. Selle kontseptsiooni kohta leiab "
-"lähemat\n"
-"infot \"Kasutaja käsiraamatust\". Kuid erinevalt administraatorist ei ole\n"
-"kasutajal õigust muuta midagi muud kui vaid oma faile ja enda seadistusi.\n"
-"Te peaksite looma ka endale vähemalt ühe tavakasutaja konto, millele sisse\n"
-"logida igapäevategevuseks. Kuigi võib olla vägagi praktiline logida iga "
-"päev\n"
-"sisse administraatorina, võib see olla ka väga ohtlik! Vähimgi viga võib sel"
-"\\ puhul tähendada, et süsteem lakkab töötamast. Kui teete tõsise vea "
-"tavakasutajana,\n"
-"võite kaotada ainult mõningat infot, kuid süsteem jääb töökorda.\n"
-"\n"
-"Kõigepealt tuleks sisestada oma tegelik nimi. See ei ole mõistagi "
-"kohustuslik - tegelikult võite sisestada, mida soovite. DrakX võtab esimese "
-"sisestatud sõna\n"
-"ning kopeerib selle väljale \"%s\". See on siis nimi, mille all konkreetne "
-"kasutaja\n"
-"saab ennast süsteemi sisse logida. Seda saab ka hiljem muuta. Seejärel "
-"tuleb\n"
-"sisestada parool. Privileegideta (tavalise) kasutaja parool ei ole "
-"turvalisuse mõttes\n"
-"nii oluline kui administraatori oma, kuid pole põhjust sellest ka "
-"naljanumbrit teha:\n"
-"lõppeks on ju mängus Teie failid.\n"
-"\n"
-"Kui klõpsate nupule \"%s\", võite lisada veel nii palju kasutajaid, kui "
-"vaja.\n"
-"Lisage üks kasutaja iga inimese kohta, kes Teie arvutit kasutab. Kui olete "
-"kõik\n"
-"soovitud sisestanud, vajutage nupule \"%s\".\n"
-"\n"
-"Klõps nupule \"%s\" võimaldab muuta kasutajale määratavat vaike-\"shelli\"\n"
-"(vaikimisi on see bash).\n"
-"\n"
-"Kui olete kasutajate lisamise lõpetanud, pakutakse Teile valida kasutaja, "
-"kel on\n"
-"õigus logida süsteemi automaatselt, kui arvuti algkäivituse teeb. Kui see "
-"võimalus\n"
-"Teile huvi pakub (ja kohalik turvalisus muret ei valmista), valige "
-"meelepärane\n"
-"kasutaja ning aknahaldur ja vajutage \"%s\". Kui Te sellest aga huvitatud ei "
-"ole,\n"
-"eemaldage märge kastist \"%s\"."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Internet Access..."
-msgstr "Internetiühenduse seadistamine..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Valige palun varundamiste vaheline ajaline intervall"
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "Ei"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Norway"
-msgstr "Norra"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "Jah"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Delete profile"
-msgstr "Kustuta profiil"
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "Info riistvara kohta"
-#: ../../keyboard.pm:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Danish"
-msgstr "Taani"
+msgid "Installing driver for %s card %s"
+msgstr "Paigaldame juhtprogrammi %s kaardile %s"
-#: ../../services.pm:1
+#: ../../any.pm_.c:663
#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr "Lülitab automaatselt alglaadimise ajal sisse NumLock-i."
+msgid "(module %s)"
+msgstr "(moodul %s)"
-#: ../../network/network.pm:1
+#: ../../any.pm_.c:674
#, 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)."
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-"Palun andke IP parameetrid selle masina jaoks.\n"
-"Kõik read tuleb sisestada IP-aadressi kujul\n"
-"(näiteks 12.34.56.78)"
+"Nüüd võite määrata oma parameetrid moodulile %s.\n"
+"Pange tähele, et iga aadress tuleb sisestada prefiksiga 0x, nt '0x123'"
-#: ../../help.pm:1
+#: ../../any.pm_.c:680
#, 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."
+"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 ""
-"Mandrake Linuxi paigalduspaketid on jagatud mitme CD-ROMi vahel. DrakX\n"
-"suudab ära tunda, kui valitud pakett asub muul CD-ROMil, ning väljastab "
-"siis\n"
-"seesoleva CD ja palub sisestada selle, mida parajasti vaja läheb."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
-msgstr "Märkimise korral ei muudeta omanikku ja gruppi"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "Bulgaaria"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
-msgstr "Teisipäev"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "Protsessorid"
+"Nüüd võite moodulile %s parameetreid määrata.\n"
+"Parameetrid on vormingus \"nimi=väärtus nimi2=väärtus2 ...\".\n"
+"Näiteks: \"io=0x300 irq=7\""
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "Svalbard ja Jan Mayen"
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "Mooduli parameetrid:"
-#: ../../standalone/drakTermServ:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "No NIC selected!"
-msgstr "Võrgukaarti pole valitud!"
+msgid "Which %s driver should I try?"
+msgstr "Millist %s juhtprogrammi peaksime proovima?"
-#: ../../network/netconnect.pm:1
+#: ../../any.pm_.c:703
#, 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."
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
-"Seadistamisel esines probleeme.\n"
-"Kontrollige oma ühendust net_monitor või mcc abil. Kui ühendus ei tööta, "
-"tuleks see uuesti seadistada."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "partitsioon %s kannab nüüd nime %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Other files..."
-msgstr "Muude failide varundamine..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
-msgstr "Kongo (Kinshasa)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "SMB serveri IP"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Ketta %s partitsioonitabel salvestatakse!"
+"Mõnedel juhtudel vajab %s juhtprogramm tööks lisainformatsiooni,\n"
+"kuigi tavaliselt saab ka ilma hakkama. Kas soovite eraldi parameetreid\n"
+"määrata või lasta juhtprogrammil ise Teie arvutit kompida? Võib juhtuda,\n"
+"et see viib arvuti segadusse, kuid ei tohiks mingit jäävat kahju teha."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing HPOJ package..."
-msgstr "HPOJ pakettide paigaldamine..."
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
+msgstr "Proovida niisama"
-#: ../../any.pm:1
-#, 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"
-msgstr ""
-"Isetehtud alglaadimisketas annab Teile võimaluse laadida Linux flopilt\n"
-"sõltumata tavalisest alglaadijast. See võib abiks olla, kui Te ei soovi\n"
-"LiLo-t (grubi) kõvakettale kirjutada või mõni muu operatsioonisüsteem LiLo\n"
-"ära kustutab või ei õnnestu LiLo-t Teie riistvara peal kasutada.\n"
-"Alglaadimisflopi on kasutatav ka hädaabikettana, kui kõvakettal oleva\n"
-"failisüsteemiga peaks mingi õnnetus juhtuma.\n"
-"Hoidke end ja Teid hoiab ka Jumal!\n"
-"%s"
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "Määrata parameetrid"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:719
#, c-format
msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
-"\n"
-" DrakBackup deemoni raport\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latvian"
-msgstr "Läti"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr "kord kuus"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Retry"
-msgstr "Proovi uuesti"
+"Mooduli %s laadimine ei õnnestunud.\n"
+"Kas soovite proovida parameetreid muuta?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr "Mooduli nimi"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
+msgstr "ligipääs X-i rakendustele"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Start at boot"
-msgstr "Käivitub alglaadimisel"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
+msgstr "ligipääs rpm vahenditele"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Muutvarunduse kasutamine"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
+msgstr "\"su\" lubamine"
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "Ketta algusesse (MBR)"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
+msgstr "ligipääs administreerimisfailidele"
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "El Salvador"
+#: ../../any.pm_.c:738
+msgid "access to network tools"
+msgstr "ligipääs võrgutöövahenditele"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
-msgstr "Juhtkang"
+#: ../../any.pm_.c:739
+msgid "access to compilation tools"
+msgstr "ligipääs kompileerimisvahenditele"
-#: ../../standalone/harddrake2:1
+#: ../../any.pm_.c:744
#, c-format
-msgid "DVD"
-msgstr "DVD"
+msgid "(already added %s)"
+msgstr "(juba lisatud %s)"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
-msgstr "Unicode kasutamine vaikimisi"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "Salasõna on liiga lihtne"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "GNU/Linuxi kerneli moodul, mis käsitleb seda seadet"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
+msgstr "Palun andke kasutajatunnus"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Kas arvuti sisekell on seatud GMT ajale?"
+#: ../../any.pm_.c:751
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr ""
+"Kasutajatunnus tohib sisaldada ainult väikesi tähti, numbreid ning märke '-' "
+"ja '_'"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "Proovin päästa partitsioonitabelit"
+#: ../../any.pm_.c:752
+msgid "The user name is too long"
+msgstr "See kasutajatunnus on liiga pikk"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Võti %s peab olema täisarv!"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "See kasutajatunnus on juba lisatud"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
-msgstr "Salasõna kasutamine kasutajate autentimiseks"
+#: ../../any.pm_.c:757
+msgid "Add user"
+msgstr "Lisa kasutaja"
-#: ../../interactive/stdio.pm:1
+#: ../../any.pm_.c:758
#, c-format
msgid ""
-"Entries you'll have to fill:\n"
+"Enter a user\n"
"%s"
msgstr ""
-"Teil tuleb täita kirjed:\n"
+"Sisesta kasutaja\n"
"%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-"Muule andmekandjale varundamisel luuakse failid algul kõvakettal ja alles "
-"seejärel liigutatakse muule andmekandjale. Selle valiku märkimine eemaldab "
-"pärast varundamist kõvakettalt tar-failid."
-
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Ei saa kiiruuendust alustada !!!\n"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "Nimi: "
+#: ../../any.pm_.c:759
+msgid "Accept user"
+msgstr "Kasutaja õige"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
-msgstr "ühendatud"
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "Pärisnimi"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 miljonit värvi (24 bitti)"
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "Kasutajatunnus"
-#: ../../any.pm:1
-#, c-format
-msgid "Allow all users"
-msgstr "Lubatud kõigile kasutajatele"
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "Käsurida"
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr "MandrakeSofti ametlik kauplusladu"
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "Ikoon"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "Muudan suurust"
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "Vaikimisi sisenemine"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:804
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
-"Drakbackupi suurim\n"
-" lubatud suurus (Mb)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Cable connection"
-msgstr "Kaabliühendus"
-
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, c-format
-msgid "User"
-msgstr "Kasutaja"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Uus varundamine enne taastamist (ainult muutvarunduse puhul)"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "mkraid ebaõnnestus"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Name"
-msgstr "Nimi"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Emuleeri 3. hiirenuppu"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
-msgstr "Sgid-failide lisamise/eemaldamise kontroll"
+"Teie arvutit saab seada vaikimisi kasutaja sisenemisele.\n"
+"Kas soovite seda võimalust kasutada?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files..."
-msgstr "Failide saatmine..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "Iisraeli (foneetiline)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
-msgstr "ligipääs rpm vahenditele"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Printeri/seadme valimine/sisestamine on kohustuslik!"
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "Valige vaikimisi kasutaja:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "CD-le ligipääsul tekkis loaprobleem."
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
+msgstr "Valige palun käivitatav aknahaldur:"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "Sissehelistamiskeskuse number"
+#: ../../any.pm_.c:824
+msgid "Please choose a language to use."
+msgstr "Palun valige kasutatav keel."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr "Viga: helikaardi juhtprogramm \"%s\" ei ole loendis"
+#: ../../any.pm_.c:826
+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 ""
+"Mandrake Linux toetab paljusid keeli. Valige keeled, mida\n"
+"soovite paigaldada. Kui paigaldus on lõpetatud ja Te teete\n"
+"süsteemile taaskäivituse, saate neid kasutada."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Printeri nimi, kirjeldus, asukoht"
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "Kõik"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
-msgstr "USA (tele)"
+#: ../../any.pm_.c:961
+msgid "Allow all users"
+msgstr "Lubatud kõigile kasutajatele"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Kasuta Xinerama laiendusi"
+#: ../../any.pm_.c:961
+msgid "No sharing"
+msgstr "Jagamiseta"
-#: ../../diskdrake/interactive.pm:1
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
#, c-format
-msgid "Loopback"
-msgstr "Loopback"
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr "Pakett %s tuleks kindlasti paigaldada. Kas soovite seda teha?"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "West Europe"
-msgstr "Lääne-Euroopa"
+#: ../../any.pm_.c:973
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
+msgstr "Eksportida saab NFS või Samba abil. Palun valige, kumba kasutada."
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
-msgid "On CD-R"
-msgstr "CD-R-ile"
+msgid "Mandatory package %s is missing"
+msgstr "Puudub kohustuslik pakett %s"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../any.pm_.c:987
msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
+"Would you like to allow users to share some of their directories?\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror "
+"and nautilus.\n"
"\n"
-"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"
+"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-"[VÕTMED] [RAKENDUSE_NIMI]\n"
+"Kas lubada kasutajatel jagada mõningaid oma katalooge?\n"
+"Lubamine võimaldab kasutajal seda teha lihtsalt klõpsuga sildil \"Jaga\" "
+"konqueroris ja nautiluses.\n"
"\n"
-"VÕTMED:\n"
-" --help - näitab käesolevat abiteadet.\n"
-" -report - rakendus peab olema üks Mandrake tööriistadest\n"
-" -incident - rakendus peab olema üks Mandrake tööriistadest"
+"\"Isetehtud\" lubab määrata seda kasutajate kaupa.\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake2 version %s"
-msgstr "Harddrake2 versioon %s"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
+msgstr "Userdrake käivitamine"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Preferences"
-msgstr "Eelistused"
+#: ../../any.pm_.c:1003
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
+msgstr ""
+"Kasutaja kaupa jagamise lubamine rakendab gruppi \"fileshare\". \n"
+"Sellesse gruppi kasutajate lisamiseks saab tarvitada userdraket."
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr "Svaasimaa"
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
+msgstr "Tere tulemast, kräkkerid"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "Dominikaani Vabariik"
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Vähene"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr "%s kopeerimine"
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
+msgstr "Standardne"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Choose color"
-msgstr "Värvi valimine"
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Kõrge"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac"
-msgstr "Süüria"
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+msgid "Higher"
+msgstr "Veel kõrgem"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "Paranoiline"
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1061
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!"
+"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 ""
-"Valige kõvaketas, mida soovite puhastada oma uue Mandrake Linuxi\n"
-"paigaldamiseks. Ettevaatust, kõik sellel leiduvad andmed hävitatakse\n"
-"ja neid ei saa enam taastada."
-
-#. -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
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Kasutage valiku tegemiseks klahve %c ja %c."
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Tavaline 2 nupuga hiir"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Märkimisel võib \"%s\" faili käivitada"
-
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr "Eemalda enne kettarühmad (logical volumes)\n"
-
-#. -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
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Valik laetakse automaatselt %d sekundi jooksul"
+"See tase muudab küll süsteemi lihtsalt kasutatavaks, kuid väga\n"
+"haavatavaks: ligipääsupiirangute puudumise tõttu ei peaks arvutit ühendama\n"
+"ei teiste arvutitega ega ka mitte Internetti."
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../any.pm_.c:1064
msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
-"/etc/sysconfig/bootsplash kirjutamine ebaõnnestus\n"
-"Faili ei leitud."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet access"
-msgstr "Internetiühendus"
+"Salasõnad on nüüd kasutusel, kuid võrku ühendamine ei ole siiski soovitav."
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../any.pm_.c:1065
msgid ""
-"y coordinate of text box\n"
-"in number of characters"
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
-"tekstikasti y-koordinaat\n"
-"arvulises väljenduses"
+"See on sobilik turvatase arvutile, mis ühendatakse Internetti kui klient."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1066
msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
-"Praeguse printeri puhul kasutuskõlblike valikute loendi vaatamiseks vajutage "
-"nupule \"Trükkimisvalikute loend\"."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr "Serverite käivitamine..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Trükitakse testlehekülg(i)..."
+"Mõned piirangud on juba peal ja igal ööl viiakse läbi veel hulk automaatseid "
+"kontrollimisi."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1067
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."
+"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 ""
-"Ülekanne oli edukas\n"
-"Võite kontrollida, kas suudate serverile sisse logida käsuga:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"ilma et Teilt küsitaks parooli."
-
-# c-format
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Haakepunktile %s on juba partitsioon määratud\n"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
-msgstr "Msec igatunnise turvakontrolli lubamine/keelamine"
+"Sellel turvatasemel võib süsteemi kasutada Internetis ka serverina.\n"
+" Turvalisus on nüüd piisavalt kõrge, et töötades serverina võib masin\n"
+"vastu võtta ka palju kliente. Märkus: kui Teie masin kasutab Internetti\n"
+"ainult kliendina, võiks valida madalama taseme."
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1070
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''."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-"Olete jõudnud punkti, kus peate otsustama, kuhu täpselt Mandrake Linux\n"
-"oma kõvakettal paigaldada. Kui kõvaketas on tühi või mõni muu\n"
-"operatsioonisüsteem seda täielikult kasutab, on vaja partitsioneerida.\n"
-"Partitsioneerimine on tegevus, mille käigus tekitatakse kettale loogilised\n"
-"piirkonnad Teie uue Mandrake Linux süsteemi paigaldamiseks.\n"
-"\n"
-"Kuna partitsioneerimine ei ole pööratav protsess, siis peab kogemusteta\n"
-"kasutaja olema iseäranis ettevaatlik! Selle tegevuse lihtsustamiseks ja\n"
-"vigade vähendamiseks on Teie jaoks loodudki käesolev nõustaja. Siiski,\n"
-"palun varuge natuke ettevalmistusaega.\n"
-"\n"
-"Sõltuvalt kõvaketta omadustest on ketta jagamiseks ehk partitsioneerimiseks\n"
-"mitmeid võimalusi.\n"
-"\n"
-" * \"%s\": see partitsioneerib lihtsalt Teie tühja(d) kõvaketta(d).\n"
-"Mingeid edasisi küsimusi ei esitata.\n"
-"\n"
-" * \"%s\": nõustaja avastas kõvakettal vähemalt\n"
-"ühe Linuxi partitsiooni. Kui soovite seda/neid kasutada, valige see "
-"võimalus.\n"
-"Seejärel palutakse valida iga partitsiooniga seonduvad haakepunktid. "
-"Vaikimisi\n"
-"valitakse need juba ette ära ja üldiselt oleks mõistlik neid mitte muuta.\n"
-"\n"
-" * \"%s\": kui kõvakettale on paigaldatud\n"
-"Microsoft Windows ja see haarab enda alla kogu kõvaketta, võite luua vabale\n"
-"alale nurgakese Linuxi andmetele. Selleks võib hävitada Microsoft Windowsi\n"
-"partitsiooni koos andmetega (vaata võimalusi \"Puhasta kogu ketas\" või\n"
-"\"Ekspertresiim\") või selle suurust muuta. Viimast on võimalik sooritada "
-"ilma\n"
-"andmeid kaotamata, seda küll eeldusel, et olete varem Windowsi partitsiooni\n"
-"defragmenteerinud. Siiski ei tule kindlasti kahjuks ka andmetest varukoopia\n"
-"valmistamine... See lahendus on soovitatav, kui tahate kasutada ühel "
-"arvutil\n"
-"nii Mandrake Linuxit kui Microsoft Windowsit.\n"
-"\n"
-" Enne selle valiku kasuks otsustamist pidage silmas, et kirjeldatud "
-"protseduuri\n"
-"järel on Teie Microsoft Windowsi partitsioon senisest väiksem, mis tähendab, "
-"et\n"
-"sellel on ka vähem ruumi andmete salvestamiseks või uue tarkvara "
-"paigaldamiseks.\n"
-"\n"
-" * \"%s\": kui soovite kustutada kõik andmed ja partitsioonid, mis\n"
-"kõvakettal parajasti on, ning asendada need uue Mandrake Linuxi süsteemiga, "
-"on\n"
-"see õige valik. Aga tasub olla ettevaatlik, sest pärast selle valiku "
-"langetamist\n"
-"tagasiteed enam ei ole...\n"
-"\n"
-" !! Kui valite selle võimaluse, kaotate kõik kõvakettal olevad andmed. !!\n"
-"\n"
-" * \"%s\": see puhastab kõvaketta senistest andmetest ja\n"
-"käivitab uue paigaldusprotsessi, luues kõik partitsioonid uuesti. Kaovad ka\n"
-"kõik kettal olnud andmed.\n"
-"\n"
-" !! Kui valite selle võimaluse, kaotate kõik kõvakettal olevad andmed. !!\n"
-"\n"
-" ' \"%s\": valige see, kui soovite ise kontrollida kõvaketta jagamist\n"
-"partitsioonideks. Kuid olge ettevaatlik - see on küll võimas, aga ohte "
-"sisaldav\n"
-"valik, mille puhul võib kergesti kaotada olemasolevad andmed. Seepärast ei\n"
-"peaks seda valima, kui Te pole endas päris kindel. Täpsemalt saab teada,\n"
-"kuidas kasutada DiskDrake võimalusi, \"Käivitusjuhiste\" osast "
-"\"Partitsioonide\n"
-"haldamine\"."
+"Süsteem on täielikult suletud. Võrgust kasutamine on võimalik ainult\n"
+"spetsiaalselt loodud juurdepääsuteid kasutades."
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
-msgstr "Ukraina"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Application:"
-msgstr "Rakendus:"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "External ISDN modem"
-msgstr "Väline ISDN modem"
+#: ../../any.pm_.c:1076
+msgid "DrakSec Basic Options"
+msgstr "DrakSeci põhiseadistused"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr "Kui on 'jah', antakse kontrolli tulemustest teada meilitsi."
+#: ../../any.pm_.c:1077
+msgid "Please choose the desired security level"
+msgstr "Palun valige meelepärane turvatase"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Teie valik? (vaikimisi %s)"
+#: ../../any.pm_.c:1080
+msgid "Security level"
+msgstr "Turvatase"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr "Probleemi otsimine"
+#: ../../any.pm_.c:1082
+msgid "Use libsafe for servers"
+msgstr "Serveritel kasutatakse libsafe'i"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1083
msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"Testlehekülg on saadetud printerile.\n"
-"Nüüd võib minna natuke aega, enne kui printer alustab.\n"
-"Staatus:\n"
-"%s\n"
-"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
-msgstr "kord päevas"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and one unknown printer"
-msgstr "ja üks tundmatu printer"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Ireland"
-msgstr "Iirimaa"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Restore Configuration "
-msgstr " Taastamise seadistamine "
+"A library which defends against buffer overflow and format string attacks."
+msgstr "Teek, mis kaitseb puhvri ületäite ja vormingustringide rünnaku vastu."
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Kas see on sobiv?"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
+msgstr "Turvaadministraator (kasutajatunnus või e-posti aadress)"
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1166
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."
+"Here you can choose the key or key combination that will \n"
+"allow switching between the different keyboard layouts\n"
+"(eg: latin and non latin)"
msgstr ""
-"Nüüd võite seadistada oma Interneti-/võrguühenduse. Kui soovite, et arvuti\n"
-"oleks ühendatud Internetti või kohtvõrku, vajutage \"%s\". Seejärel "
-"käivitub\n"
-"võrguseadmete ja modemi automaattuvastus. Kui see ei õnnestu, jätke\n"
-"järgmisel korral kastike \"%s\" märkimata.\n"
-"Muidugi võib ka võrgu seadistamisest loobuda või seda hiljem teha.\n"
-"Sellisel juhul vajutage nupule \"%s\".\n"
-"\n"
-"Võimalikud ühendusviisid on: tavaline modem, ISDN modem, ADSL ühendus,\n"
-"kaablimodem ning lõpuks kohtvõrk ehk LAN (Ethernet).\n"
-"\n"
-"Siinkohal ei hakka me kogu seadistamist lahti seletama. Kontrollige "
-"lihtsalt, et\n"
-"oleksite oma internetiteenuse pakkujalt või süsteemi administraatorilt "
-"saanud\n"
-"kõik võrguühendusega seonduvad parameetrid.\n"
-"\n"
-"Seadistamisest kõneleb lähemalt \"Käivitusjuhiste\" Internetiühendusest "
-"pajatav\n"
-"peatükk, kuid võib ka oodata, kuni süsteem on paigaldatud ja kasutada siis\n"
-"ühenduse seadistamiseks seal kirjeldatud rakendust."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Nõustaja seadistamine"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Autoprobe"
-msgstr "Proovida niisama"
+"Siin saab valida klahvi või klahvikombinatsiooni, mis laseb\n"
+"vahetada klaviatuuri (nt ladina ja mitte-ladina tähestikuga)"
-#: ../../security/help.pm:1
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, c-format
msgid ""
-"if set to yes, check for :\n"
-"\n"
-"- empty passwords,\n"
+"Welcome to %s the operating system chooser!\n"
"\n"
-"- no password in /etc/shadow\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
"\n"
-"- for users with the 0 id other than root."
msgstr ""
-"Kui on 'jah', kontrollitakse:\n"
-"\n"
-"- tühja salasõna,\n"
+"Tere tulemast! Laadimisel aitab Teid %s!\n"
"\n"
-"- salasõna puudumist /etc/shadow-s\n"
+"Valige nimekirjast eelistatav OS,\n"
+"vaikimisi oodake %d sekundit.\n"
"\n"
-"- kasutajaid ID-ga 0, kes pole administraatorid."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files..."
-msgstr "Süsteemsete failide varundamine..."
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Tere tulemast! Laadimisel aitab Teid GRUB!"
-#: ../../any.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:986
#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Üldlevi kasutamine on ilma NIS domeenita võimatu"
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Kasutage valiku tegemiseks %c ja %c klahve"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Printeri \"%s\" eemaldamine..."
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Enter laeb Teie valiku, 'e' laseb muuta"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell history size"
-msgstr "Shelli puhvri suurus"
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "suvandeid enne laadimist ja 'c' veel enam."
-#: ../../standalone/drakfloppy:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:995
#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Valik laetakse automaatselt %d sekundi jooksul"
-#: ../../standalone/drakpxe:1
-#, 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"
-msgstr ""
-"Andke palun faili auto_install.cfg asukoht.\n"
-"\n"
-"Jätke tühjaks, kui Te ei soovi määrata automaatpaigalduse resiimi.\n"
-"\n"
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
+msgstr "/boot on liiga täis"
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on other machines"
-msgstr "Seadistatud muudel masinatel"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "Töölaud"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "Infotase, mida võib saada cpuid instruktsiooni vahendusel"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "Startmenüü"
-#: ../../lang.pm:1
+#: ../../bootloader.pm_.c:1120
#, c-format
-msgid "Peru"
-msgstr "Peruu"
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "Alglaadurit ei ole võimalik paigaldada %s partitsioonile\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " on device: %s"
-msgstr " seadmel: %s"
+#: ../../bootlook.pm_.c:53
+msgid "Boot Style Configuration"
+msgstr "Alglaaduri stiil"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "Eemalda Windows(TM)"
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
+msgstr "/_Fail"
-#: ../../services.pm:1
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Käivitab X fondiserveri, ilma milleta X lihtsalt ei lähe käima."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
+msgstr "/Fail/_Välju"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"Enamik väärtusi on võetud Teie töötavast\n"
-"süsteemist. Võite neid vajadusel muuta."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
+msgstr "<control>Q"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Valige fondifail või kataloog ja klõpsake 'Lisa'"
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
+msgstr "NewStyle kategoriseeritud jälgimine"
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "Madagaskar"
+#: ../../bootlook.pm_.c:83
+msgid "NewStyle Monitor"
+msgstr "NewStyle jälgimine"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
+#: ../../bootlook.pm_.c:84
+msgid "Traditional Monitor"
+msgstr "Tavaline jälgimine"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
-msgstr "Cron-i saab praegu kasutada ainult administraator"
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
+msgstr "Traditsiooniline Gtk+ jälgimine"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "System"
-msgstr "Süsteem"
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
+msgstr "Käivita alglaadimisel Aurora"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Kas soovite kasutada seda omadust?"
+#: ../../bootlook.pm_.c:89
+msgid "Lilo/grub mode"
+msgstr "Lilo/grub resiim"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr "Araabia"
+#: ../../bootlook.pm_.c:89
+msgid "Yaboot mode"
+msgstr "Yaboot resiim"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:138
+msgid "Install themes"
+msgstr "Teemade paigaldamine"
+
+#: ../../bootlook.pm_.c:139
msgid ""
-"\n"
-"- Options:\n"
+"Display theme\n"
+"under console"
msgstr ""
-"\n"
-"- Valikud:\n"
+"Teema näitamine\n"
+"konsoolis"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Password required"
-msgstr "Parooli nõudmine"
+#: ../../bootlook.pm_.c:140
+msgid "Create new theme"
+msgstr "Uue teema loomine"
-#: ../../common.pm:1
+#: ../../bootlook.pm_.c:184
#, c-format
-msgid "%d minutes"
-msgstr "%d minutit"
+msgid "Backup %s to %s.old"
+msgstr "Tee %s -st varukoopia %s.old"
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: ../../bootlook.pm_.c:187
#, c-format
-msgid "Graphics card: %s"
-msgstr "Graafikakaart: %s"
+msgid "Copy %s to %s"
+msgstr "Tee %s -st koopia %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV transfer failed!"
-msgstr "WebDAVi ülekanne ebaõnnestus!"
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+msgstr "Viga"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "XFree seadistused"
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
+msgstr "Lilo sõnumit ei leitud"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Choose action"
-msgstr "Valige tegevus"
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr "/etc/sysconfig/bootsplash kirjutamine ebaõnnestus."
-#: ../../lang.pm:1
+#: ../../bootlook.pm_.c:222
#, c-format
-msgid "French Polynesia"
-msgstr "Prantsuse Polüneesia"
+msgid "Write %s"
+msgstr "Kirjuta %s"
-#: ../../help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:224
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."
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-"Tavaliselt tuvastab DrakX hõlpsasti, mitme nupuga hiirt Te kasutate. Kui\n"
-"see välja ei tule, eeldatakse, et Teil on kahe nupuga hiir, ning "
-"kasutatakse\n"
-"kolmanda nupu emuleerimist. Kahenupulisel hiirel saab kolmandat nuppu\n"
-"\"vajutada\" üheaegselt vasakut ja paremat nuppu vajutades. DrakX tuvastab\n"
-"automaatselt, kas tegemist on PS/2, jadapordi või USB-hiirega.\n"
-"\n"
-"Kui soovite muuta hiiretüüpi, valige pakutud nimekirjast sobiv tüüp.\n"
-"\n"
-"Kui valite mõne muu hiiretüübi kui vaikimisi määratu, palutakse Teil seda\n"
-"testida. Kasutage nuppe ja ratast kontrollimaks, et valik oli õige. Kui\n"
-"hiir ei käitu korralikult, vajutage tühikuklahvi või klahvi [Return], mis "
-"viib\n"
-"Teid tagasi dialoogi ja lubab sooritada uue valiku.\n"
-"\n"
-"Vahel ei õnnestu rattaga hiirt automaatselt tuvastada. Siis tuleb see "
-"loendist\n"
-"käsitsi valida. Kontrollige, et valite õigesse porti ühendatud hiiretüübi. "
-"Kui\n"
-"vajutate nupule \"%s\", näidatakse hiire kujutist. Siis tuleb Teil "
-"liigutada\n"
-"hiireratast, et see korrektselt aktiveerida. Seejärel testige, kas kõik "
-"nupud\n"
-"ja liigutused toimivad korralikult."
+"/etc/sysconfig/bootsplash kirjutamine ebaõnnestus\n"
+"Faili ei leitud."
-#: ../../services.pm:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Toetab OKI 4w ja sellega ühilduvaid winprintereid."
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr "Mkinitrd -f /boot/initrd-%s.img %s käivitamine ebaõnnestus."
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:238
#, c-format
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr "Loo initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+
+#: ../../bootlook.pm_.c:244
msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-"Kataloogipuu tipus failis .backupignore loetletud faile või metamärkidega "
-"tähistatud faile ei varundata."
-
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Helisüsteemi ALSA (Advanced Linux Sound Architecture) käivitamine"
+"LiLo taaskäivitamine ebaõnnestus!\n"
+"Käivitage \"lilo\" administraatorinia käsurealt LiLo teema paigaldamise "
+"lõpetamiseks."
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Juhtprogrammi %s paigaldamine kaardile %s"
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
+msgstr "Taaskäivita 'lilo'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Kandsite üle oma senise vaikeprinteri (\"%s\"). Kas see peaks olema "
-"vaikeprinter ka uue trükkimissüsteemi %s puhul?"
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+msgid "Notice"
+msgstr "Märguanne"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Enable Server"
-msgstr "Serveri lubamine"
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr "LiLo ja käivituslogo teemade paigaldus õnnestus"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ukrainian"
-msgstr "Ukraina"
+#: ../../bootlook.pm_.c:251
+msgid "Theme installation failed!"
+msgstr "Teema paigaldamine ebaõnnestus!"
-#: ../../printer/printerdrake.pm:1
+#: ../../bootlook.pm_.c:259
#, 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."
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"Võrguühendus ei töötanud ja seda ei saa ka käivitada. Kontrollige palun oma "
-"seadistusi ja riistvara. Seejärel proovige uuesti seadistada võrguprinterit."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Märkimisel võib \"%s\" faili kirjutada"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Pange palun alglaadimisflopi seadmesse %s"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local network(s)"
-msgstr "Kohalik võrk"
+"Praegu on Teil alglaadimise haldurina kasutusel %s.\n"
+"Valige seadistamisnõustaja käivitamiseks 'Seadista'."
-#: ../../help.pm:1
-#, c-format
-msgid "Remove Windows"
-msgstr "Eemalda Windows"
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
+msgstr "Seadista"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-"Teie %s skänner on seadistatud.\n"
-"Nüüd võite skaneerida dokumente, kasutades selleks rakendust \"XSane\", "
-"mille leiate rakenduste menüüs rubriigist Multimeedia/Graafika."
+#: ../../bootlook.pm_.c:268
+msgid "Splash selection"
+msgstr "Käivituslogo valik"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Firewire controllers"
-msgstr "Firewire kontrollerid"
+#: ../../bootlook.pm_.c:271
+msgid "Themes"
+msgstr "Teemad"
-#: ../../help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:273
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!"
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
msgstr ""
-"Kui olete määranud alglaaduri üldised parameetrid, näidatakse loendit\n"
-"alglaadimise ajal kasutatavatest valikutest.\n"
-"\n"
-"Kui masinale on paigaldatud veel mõni operatsioonisüsteem, lisatakse see\n"
-"automaatselt alglaaduri menüüsse. Siin saate olemasolevaid valikuid oma\n"
-"maitse järgi häälestada: klõpsates nupul \"%s\" saate uue kirje lisada,\n"
-" \"%s\" või \"%s\" võimaldab kirjet muuta või eemaldada.\n"
-"\"%s\" viib Teid paigalduse järgmise sammu juurde.\n"
"\n"
-"Teil võib muidugi olla ka soov mitte anda kellelegi ligipääsu teistele\n"
-"operatsioonisüsteemidele, millisel juhul võite vastavad kirjed kustutada.\n"
-"Aga siis läheb Teil kindlasti vaja alglaadimisketast, et ka ise neile ligi "
-"pääseda!"
+"Valige teema lilole\n"
+"ja käivituslogole,\n"
+"neid võib valida\n"
+"ka eraldi"
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
+msgstr "Lilo ekraan"
+
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
+msgstr "Käivituslogo"
+
+#: ../../bootlook.pm_.c:316
msgid "System mode"
msgstr "Töömood"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Et kasutada NetWare printerit, peate sisestama NetWare printserveri nime "
-"(NB! See võib olla erinev tema TCP/IP nimest!), samuti trükijärjekorra nime "
-"serveril ning kasutajatunnuse ja salasõna."
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
+msgstr "Käivita X-Windows alglaadimisel"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Netmask:"
-msgstr "Võrgumask:"
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
+msgstr "Ei taha automaatselt siseneda"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
-msgstr "Tee seda hiljem"
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr ""
+"Jah, soovin automaatset sisselogimist sellele (kasutajale, keskkonnale)"
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "Lisand"
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
+msgstr "Olgu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Värskenda printeriloendit (näitamaks kõiki saadaolevaid CUPS printserveri "
-"printereid)"
+#: ../../common.pm_.c:107
+msgid "GB"
+msgstr "GB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Kui see on sisse lülitatud, konrollitakse CUPSi igal käivitamisel "
-"automaatselt, et\n"
-"\n"
-"- kui LPD/LPRng on paigaldatud, ei kirjutaks CUPS üle faili /etc/printcap\n"
-"\n"
-"- kui /etc/cups/cupsd.conf puudub, see loodaks\n"
-"\n"
-"- kui printeriinfo läheb üldlevisse, ei ole seal serveri nimeks \"localhost"
-"\".\n"
-"\n"
-"Kui mõni neist sammudest tekitab probleeme, lülitage võimalus välja, aga "
-"siis peate nende eest ise hoolt kandma."
+#: ../../common.pm_.c:107
+msgid "KB"
+msgstr "KB"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Automaatne paigaldus võib olla ka sedavõrd tegija,\n"
-"et kasutab ära kogu kõvaketta !!\n"
-"\n"
-"Võite valida ka lihtsalt paigalduse kordamise.\n"
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Võrguprinter \"%s\", port %s"
+#: ../../common.pm_.c:115
+msgid "TB"
+msgstr "TB"
-#: ../../standalone/drakgw:1
+#: ../../common.pm_.c:123
#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "Palun valige, millist võrguliidest soovite kasutada kohtvõrgu jaoks."
+msgid "%d minutes"
+msgstr "%d minutit"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
-msgstr "Muude failide taastamiseks vajutage 'Olgu'."
+#: ../../common.pm_.c:125
+msgid "1 minute"
+msgstr "1 minut"
-#: ../../install_steps_interactive.pm:1
+#: ../../common.pm_.c:127
#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Palun valige klaviatuuriasetus."
+msgid "%d seconds"
+msgstr "%d sekundit"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "Printeri seadme URI"
+#: ../../common.pm_.c:172
+msgid "Can't make screenshots before partitioning"
+msgstr "Hetktõmmiseid ei saa teha enne partitsioneerimist"
-#: ../../standalone/drakbackup:1
+#: ../../common.pm_.c:179
#, c-format
-msgid "Not erasable media!"
-msgstr "Seda andmekandjat ei saa puhastada!"
+msgid "Screenshots will be available after install in %s"
+msgstr "Hetktõmmised asuvad pärast paigaldust asukohas %s"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "Terminalipõhine"
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+msgid "France"
+msgstr "Prantsusmaa"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr "IP võltsimiskaitse lubamine/keelamine"
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
+msgstr "Costa Rica"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Trükkimissüsteemi paigaldamine turvatasemel '%s'"
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+msgid "Belgium"
+msgstr "Belgia"
-#: ../../any.pm:1
-#, c-format
-msgid "The user name is too long"
-msgstr "See kasutajanimi on liiga pikk"
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
+msgstr "Tšehhi"
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "Muu OS (windows...)"
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+msgid "Germany"
+msgstr "Saksamaa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr "WebDAVi kaugsait on juba sünkroonis!"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+msgid "Greece"
+msgstr "Kreeka"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
-msgstr "Printeri andmebaasi lugemine..."
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+msgid "Norway"
+msgstr "Norra"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Loo kiirpaigaldusflopi"
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+msgid "Sweden"
+msgstr "Rootsi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t kasutajatunnus: %s\n"
-"\t\t asukohas: %s \n"
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
+msgstr "Holland"
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr "Somaalia"
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+msgid "Italy"
+msgstr "Itaalia"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr "Vabavara-juhtprogramm puudub"
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+msgid "Austria"
+msgstr "Austria"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
-msgstr "Vaik."
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
+msgstr "USA"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../diskdrake/dav.pm_.c:19
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"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 ""
-"See sarnaneb eelmisele tasemele, ainult et süsteem on täiesti suletud ja "
-"turvaseadistused maksimumi peale keeratud."
+"WebDAV on protokoll, mis võimaldab haakida veebiserveri kataloogi\n"
+"kohalikult ning käsitleda seda kui kohalikku failisüsteemi (eeldusel, et\n"
+"veebiserver on seadistatud WebDAVi serverina). Kui soovite lisada\n"
+"WebDAVi haakepunkte, vajutage nupule \"Uus\"."
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "Nicaragua"
+#: ../../diskdrake/dav.pm_.c:27
+msgid "New"
+msgstr "Uus"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "Uus-Kaledoonia"
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Lahuta"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Euroopa protokoll (EDSS1)"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Haagi"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Delete"
-msgstr "/_Kustuta"
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
+msgstr "Server"
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "Graafikamood"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Haakepunkt"
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
-msgstr "Omaan"
+#: ../../diskdrake/dav.pm_.c:85
+msgid "Please enter the WebDAV server URL"
+msgstr "Palun sisestage WebDAV-serveri URL"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Sisestage palun siia oma e-posti aadress"
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
+msgstr "URL peab algama kas http:// või https://"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Network Monitoring"
-msgstr "Võrgu jälgimine"
+#: ../../diskdrake/dav.pm_.c:109
+msgid "Server: "
+msgstr "Server: "
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "SunOS"
-msgstr "SunOS"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
+msgstr "Haakepunkt:"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "New size in MB: "
-msgstr "Uus suurus (MB): "
+msgid "Options: %s"
+msgstr "Eelistused: %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Partitsioonitabeli tüüp: %s\n"
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
+msgstr "Palun tehke oma andmetest kõigepealt varukoopia"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication Windows Domain"
-msgstr "Windowsi domeeni autentimine"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "Lugege hoolega!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "USA"
+#: ../../diskdrake/hd_gtk.pm_.c:100
+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 ""
+"Kui soovite kasutada aboot-i, jätke palun ketta algusesse vähemalt 2048 \n"
+"sektorit vaba ruumi"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr "Nuppude emuleerimine"
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "Nõustaja"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", võrguprinter \"%s\", port %s"
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
+msgstr "Valige tegevus"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
-"\n"
-"Drakbackupi tegevus lindi vahendusel:\n"
-"\n"
+"Teil on üks suur FAT partitsioon\n"
+"(tavaliselt kasutab sellist MS DOS/Windows)\n"
+"Soovitame teil esmalt selle suurust muuta\n"
+"(klõpsake ja siis valige \"Muuda\")"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-" FTP ühenduse probleem: FTP kaudu pole võimalik saata Teie varukoopiafaile.\n"
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "Palun valige partitsioon"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Sending Speed:"
-msgstr "Saatmise kiirus:"
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "Üksikasjad"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"The classic bug sound tester is to run the following commands:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
-"currently uses\n"
-"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services're configured to be run on\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Klassikaline võimalus Teie arvuti heliprobleeme kindlaks teha on käivitada "
-"järgmised käsud:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" näitab, millist draiverit Teie\n"
-"helikaart vaikimisi kasutab\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" näitab, millist draiverit\n"
-"praegu kasutatakse\n"
-"\n"
-"- \"/sbin/lsmod\" näitab, kas vastav moodul (draiver) on hetkel laetud\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" ja \"/sbin/chkconfig --list alsa\"\n"
-"näitavad, kas teenused \"sound\" ja \"alsa\" käivituvad.\n"
-"\n"
-"- \"aumix -q\" näitab, kas heli pole mitte summutatud (M - mute)\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" näitab, milline programm hetkel\n"
-"helikaarti kasutab.\n"
+#: ../../diskdrake/hd_gtk.pm_.c:254
+msgid "No hard drives found"
+msgstr "Kõvakettaid ei leitud"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
-msgstr "Seiskamisviga"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Meilihoiatuse seadistused"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "FAT"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr "Tokelau"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Matching"
-msgstr "Sobib"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Journalised FS"
+msgstr "Kirjendatud FS"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bosnian"
-msgstr "Bosnia"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Release: "
-msgstr "Väljalase: "
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "Saaleala"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection speed"
-msgstr "Ühenduse kiirus"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "Tühi"
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr "Namiibia"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "Muu"
-#: ../../services.pm:1
-#, c-format
-msgid "Database Server"
-msgstr "Andmebaasi server"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "Failisüsteemi tüübid: "
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr "ketta eriomadused (nt. kirjutamine ja/või DVD tugi)"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "Tekita"
-#: ../../raid.pm:1
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Juba vormindatud RAID-ile (md%d) ei saa partitsiooni lisada"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "Tüüp"
-#: ../../standalone/drakclock:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid "Network Time Protocol"
-msgstr "Võrguajaprotokoll"
+msgid "Use ``%s'' instead"
+msgstr "Kasutage pigem ``%s''"
+
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "Kustuta"
+
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
+msgstr "Kasutage enne \"Lahuta\""
-#: ../../Xconfig/card.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, 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."
-msgstr ""
-"Teie videokaardi 3D graafikakiirendit saab kasutada vaid koos XFree %s-ga.\n"
-"SEE ON AGA EKSPERIMENTAALNE JA VÕIB OLLA EBASTABIILNE.\n"
-"Teie kaarti toetab ka XFree %s, millel on ehk parem 2D tugi."
+"After changing type of partition %s, all data on this partition will be lost"
+msgstr "Partitsiooni %s tüübi muutmisel hävivad kõik seal olnud andmed"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Palun oodake, sätin turvaparameetreid..."
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose a partition"
+msgstr "Valige partitsioon"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "Tundmatu|CPH05X (bt878) [paljud tootjad]"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose another partition"
+msgstr "Valige muu partitsioon"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Käivita X Windows alglaadimisel"
+#: ../../diskdrake/interactive.pm_.c:202
+msgid "Exit"
+msgstr "Välju"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr "kord tunnis"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
+msgstr "Tavakasutaja > Ekspert"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
-msgstr "Parempoolne Shift-klahv"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
+msgstr "Ekspert > Tavakasutaja"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " edukalt taastatud %s -l "
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "Tagasi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Printer tehakse CUPS-ile kättesaadavaks"
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "Kas ikkagi jätkata?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr "Antigua ja Barbuda"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "Välju ilma salvestamata"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! Näitab, et parool antud süsteemis erineb sellest, mida teab\n"
-"terminalserver.\n"
-"Palun kustutage ja looge see kasutaja terminalserveris uuesti, et "
-"võimaldada\n"
-"sisselogimist."
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "Kas väljuda partitsioonitabelit salvestamata?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "Hispaania"
+#: ../../diskdrake/interactive.pm_.c:257
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "Kas salvestada /etc/fstab muudatused"
-#: ../../services.pm:1
-#, c-format
-msgid "Start"
-msgstr "Käivita"
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "Kustuta kõik"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
-msgstr "Administraatori otsesisselogimine"
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
+msgstr "Paiguta ise"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring applications..."
-msgstr "Rakenduste seadistamine..."
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+msgid "More"
+msgstr "Veel..."
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"Printeri seadistamise nõustaja\n"
-"\n"
-"Nõustaja aitab Teil paigaldada printeri(d), mis on ühendatud selle arvutiga, "
-"otse võrku või võrgus asuva Windowsi masinaga.\n"
-"\n"
-"Kui Teil on printer(eid), mis on ühendatud selle masinaga, ühendage see/need "
-"palun arvutiga ja lülitage sisse, et seda/neid oleks võimalik automaatselt "
-"tuvastada. Ka võrguprinter(id) ja Windowsi-masinad peavad olema ühendatud ja "
-"sisse lülitatud.\n"
-"\n"
-"Pange tähele, et võrguprinteri(te) automaattuvastus võtab rohkem aega kui "
-"ainult selle masinaga ühendatud printeri(te) tuvastamine. Nii et kui teil "
-"seda vaja ei ole, lülitage võrgus ja/või Windowsi taga olevate printeri(te) "
-"automaattuvastus välja.\n"
-"\n"
-"Kui olete valmis, vajutage \"Järgmine\", või \"Katkesta\", kui Te ei soovi "
-"printeri(te) seadistamisega praegu tegelda."
+#: ../../diskdrake/interactive.pm_.c:278
+msgid "Hard drive information"
+msgstr "Kõvaketta info"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
-msgstr "Tavaline modemiühendus"
+#: ../../diskdrake/interactive.pm_.c:310
+msgid "All primary partitions are used"
+msgstr "Kõik primaarsed partitsioonid on kasutusel"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "File Selection"
-msgstr "Failivalik"
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "Partitsioone ei saa enam lisada"
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
+#: ../../diskdrake/interactive.pm_.c:312
+msgid ""
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
+msgstr ""
+"Et saada rohkem partitsioone, kustutage palun üks, et luua laiendatud "
+"partitsioon"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Lint puhastatakse enne varundamist"
+#: ../../diskdrake/interactive.pm_.c:322
+msgid "Save partition table"
+msgstr "Kirjuta partitsioonitabel"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
-msgstr "Seadistamisvahendi kävitamine"
+#: ../../diskdrake/interactive.pm_.c:323
+msgid "Restore partition table"
+msgstr "Taasta partitsioonitabel"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "Alglaaduri paigaldus"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
+msgstr "Päästa partitsioonitabel"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Juurpartitsiooni suurus (MB): "
+#: ../../diskdrake/interactive.pm_.c:326
+msgid "Reload partition table"
+msgstr "Laadi partitsioonitabel uuesti"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "See pakett on kohustuslik"
+#: ../../diskdrake/interactive.pm_.c:331
+msgid "Removable media automounting"
+msgstr "Eemaldatava andmekandja autohaakimine"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "Valige fail"
+
+#: ../../diskdrake/interactive.pm_.c:347
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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"The backup partition table has not the same size\n"
+"Still continue?"
msgstr ""
-" - Etherbooti flopide/CD-de loomine:\n"
-" \tKettata tööjaamad vajavad kas ROM-laadepilti võrguliidesel või "
-"alglaadimisflopit\n"
-" \tvõi -CD-d alglaadimise käivitamiseks. drakTermServ aitab neid "
-"laadepilte luua,\n"
-" \ttuginedes kliendi masina võrguliidesele.\n"
-" \t\t\n"
-" \tLihtne näide alglaadimisflopi loomisest käsitsi 3com 3c509 jaoks:\n"
-" \t\t\n"
-" \tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"Tabeli varukoopia ei ole sama suurusega\n"
+"Kas ikkagi jätkata?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "Etherboot ISO-laadefail on %s"
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "Hoiatus"
-#: ../../services.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:362
msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
-"named (BIND) on kasutusel nimeserverites, mis teenindavad DNS hierarhiat, "
-"tõlkimaks nimesid IP-aadressideks."
+"Pange tühi flopi masinasse\n"
+"Kõik andmed sellel hävivad"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr "Saint Lucia"
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
+msgstr "Proovin päästa partitsioonitabelit"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "November"
+#: ../../diskdrake/interactive.pm_.c:379
+msgid "Detailed information"
+msgstr "Üksikasjalik info"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
-msgstr "Lahuta..."
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "Muuda suurust"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Report"
-msgstr "Raport"
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "Liiguta"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr "Belau"
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "Vorminda"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "tase"
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "Lisa RAIDi"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr ""
-"Iga teadet jälgib ja lahendab konkreetne ja kvalifitseeritud MandrakeSofti "
-"tehniline töötaja."
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "Lisa LVMi"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "Paketigruppide valik"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "Eemalda RAIDist"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Kohalik riistvara\n"
-"seadistus on lubatud."
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "Eemalda LVMist"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Taastamine võrguprotokolli abil: %s"
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "Modifitseeri RAIDi"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr "Siin saab seadistada mooduli kõiki parameetreid."
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
+msgstr "Kasuta loopback-ina"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Valige kuvatihedus ja värvisügavus"
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "Loo uus partitsioon"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
-msgstr "Kas emuleerida keskmist hiirenuppu?"
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "Algsektor: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "Suurus (MB): "
+
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "Failisüsteemi tüüp: "
+
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Eelistus: "
+
+#: ../../diskdrake/interactive.pm_.c:481
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
@@ -3294,1898 +1857,1725 @@ msgstr ""
"Eemaldage kõigepealt mõni primaarne partitsioon ja \n"
"tekitage laiendatud partitsioon."
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr "Haagi"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Automaatpaigaldusflopi loomine"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Install updates"
-msgstr "Uuenduste paigaldus"
+#: ../../diskdrake/interactive.pm_.c:511
+msgid "Remove the loopback file?"
+msgstr "Kas eemaldada loopback fail?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
-msgstr "tekstikasti kõrgus"
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "Muuda partitsiooni tüüpi"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "State"
-msgstr "Olek"
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+msgid "Which filesystem do you want?"
+msgstr "Millist failisüsteemi soovite kasutada?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Kontrollige, et andmekandja on seadmes %s"
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
+msgstr "Ext2 vahetamine ext3 vastu"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Enable multiple profiles"
-msgstr "Mitme profiili lubamine"
+msgid "Where do you want to mount loopback file %s?"
+msgstr "Kuhu soovite haakida loopback-faili %s?"
-#: ../../fs.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr "Failisüsteemis ei interpreteerita märgi- või blokieriseadmeid."
+msgid "Where do you want to mount device %s?"
+msgstr "Kuhu soovite haakida seadme %s?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
-"Need valikud võivad varundada ja taastada kõik failid kataloogis /etc.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Local printer"
-msgstr "Kohalik printer"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Files Restored..."
-msgstr "Taastatud failid..."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
-msgstr "Pakettide valik"
+"Seda haakepunkti ei saa eemaldada, sest partitsioon on kasutusel\n"
+"loopback-ina. Eemaldage esmalt loopback"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:606
#, c-format
-msgid "Mauritania"
-msgstr "Mauritaania"
+msgid "Where do you want to mount %s?"
+msgstr "Kuhu soovite haakida %s?"
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
-"Teie praegune seadistus on võimalik säilitada ja eeldada, et DHCP server on "
-"juba seadistatud. Sellisel juhul kontrollige, et võrk, mida kasutate "
-"kohtvõrgu tarbeks, on õigesti tuvastatud. Seda ei hakata ümber seadistama "
-"ega Teie DHCP serveri seadistust muutma.\n"
-"\n"
-"Vaikimisi DNS kirje on tulemüüri poolt seadistatud puhverdav nimeserver. See "
-"on võimalik asendada näiteks Teie ISP DNSi IP-ga.\n"
-"\t\t \n"
-"Vastasel juhul seadistan Teie liidese ümber ja seadistan (ümber) ka DHCP "
-"serveri.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "Arvutan FAT failisüsteemi piire"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Kohalikku printerit ei leitud! Printeri paigaldamiseks käsitsi märkige "
-"sisendireale seadmenimi/failinimi (paralleelpordid: /dev/lp0, /dev/lp1..., "
-"mille vasteks teistes süsteemides on LPT1, LPT2...; esimene USB printer: /"
-"dev/usb/lp0, teine USB printer: /dev/usb/lp1...)"
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "Muudan suurust"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All primary partitions are used"
-msgstr "Kõik primaarsed partitsioonid on kasutusel"
+#: ../../diskdrake/interactive.pm_.c:662
+msgid "This partition is not resizeable"
+msgstr "See partitsioon ei ole muudetav"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "LPD serveril \"%s\", printer \"%s\""
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
+msgstr "Selle partitsiooni andmetest võiks olla varukoopia"
-#: ../../network/netconnect.pm:1
+#: ../../diskdrake/interactive.pm_.c:669
#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Soovitame uuesti käivitada ka X keskkonna, et vältida võimalikke\n"
-"masinanime muutmisest tingitud probleeme."
+msgid "After resizing partition %s, all data on this partition will be lost"
+msgstr "Partitsiooni %s suuruse muutmisel hävivad sellel kõik andmed"
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Riistvara automaatne tuvastamine ja seadistamine alglaadimisel."
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "Valige uus suurus"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation Server Configuration"
-msgstr "Paigaldusserveri seadistamine"
+#: ../../diskdrake/interactive.pm_.c:675
+msgid "New size in MB: "
+msgstr "Uus suurus (MB): "
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "IDE seadistamine"
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "Millisele kettale soovite seda ümber paigutada?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Võrguvalmidus on seadistamata"
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "Sektor"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Configure module"
-msgstr "Mooduli seadistamine"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "Millisele sektorile soovite seda ümber paigutada?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "Kookosesaared"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "Paigutan ümber"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Muudatuste rakendamiseks vajate alglaadimist"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "Liigutan partitsiooni..."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
-msgstr "Sissehelistamiskeskuse number"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr "Vali olemasolev RAID, millele lisada"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Host %s"
-msgstr "Masin %s"
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "uus"
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
-msgstr "Fidži"
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
+msgstr "Vali olemasolev LVM, millele lisada"
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
-msgstr "Armeenia"
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
+msgstr "LVM nimi?"
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "Teine flopiseade"
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
+msgstr "Seda partitsiooni ei saa loopback-ina kasutada"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
-msgstr "HardDrake info"
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
+msgstr "Loopback"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
-msgstr "X Window TCP ühenduste autentimine"
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
+msgstr "Loopback faili nimi:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr "Ketta eriomadused"
+#: ../../diskdrake/interactive.pm_.c:831
+msgid "Give a file name"
+msgstr "Failinimi"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Pange tühi flopi masinasse\n"
-"Kõik andmed sellel hävivad"
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
+msgstr "See fail on juba loopback-ina kasutusel, valige mõni muu"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "Suurus: %s"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
+msgstr "Fail on juba olemas. Kas kasutada seda?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Ctrl- ja Shift-klahvid korraga"
+#: ../../diskdrake/interactive.pm_.c:858
+msgid "Mount options"
+msgstr "Haakimise valikud"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "secondary"
-msgstr "teisene"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
+msgstr "Mitmesugust"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Varundamise seadistuste vaatamine"
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "seade"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr "Kui on 'jah', saadetakse kontrolli tulemused syslog-i."
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "tase"
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "Salasõna puudub"
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "ühiku suurus"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nigeria"
-msgstr "Nigeeria"
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
+msgstr "Vaadake ette: see võib olla ohtlik."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s nõuab masina nime...\n"
+#: ../../diskdrake/interactive.pm_.c:962
+msgid "What type of partitioning?"
+msgstr "Mis tüüpi partitsioonid teete?"
-#: ../../install_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:978
#, c-format
-msgid "There is no existing partition to use"
-msgstr "Kasutatavat partitsiooni ei leitud"
+msgid "The package %s is needed. Install it?"
+msgstr "Vajalik on pakett %s. Kas paigaldada see?"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:992
msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
-"Teie süsteemiga on ühendatud\n"
-"\n"
-"%s\n"
-"skännerid.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Mitme funktsiooniga seade paralleelpordis #%s"
+"Vabandust, aga ei saa nõustuda /boot kataloogi paigutamisega kaugemale "
+"silindrist 1024.\n"
+"Kui kasutate LILO-t, ei tööta see sel moel, kui aga ei kasuta, ei ole Teile "
+"ka /boot vajalik"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:996
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."
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-"Et kasutada TCP/Socket printerit, tuleb määrata printeri masinanimi või IP "
-"ning kui teate, ka pordi number (vaikimisi on see 9100). HP JetDirect "
-"serveritel on pordi number tavaliselt 9100, teistel serveritel võib see olla "
-"teistsugune. Kontrollige seda oma riistvara käsiraamatust."
+"Partitsioon, mida soovite kasutada juurkataloogi (/) hoidmiseks, asub\n"
+"füüsiliselt tagapool silindrit 1024 ja Teil ei ole /boot partitsiooni.\n"
+"Kui plaanite kasutada LILO alglaadurit, lisage kindlasti /boot partitsioon"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Hard drive information"
-msgstr "Kõvaketta info"
+#: ../../diskdrake/interactive.pm_.c:1002
+msgid ""
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
+msgstr ""
+"Olete valinud juurpartitsiooniks (/) tarkvaralise RAID-i.\n"
+"Ilma /boot partitsioonita ei ole võimalik sellist süsteemi laadida.\n"
+"Lisage kindlasti /boot partitsioon!"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid "Russian"
-msgstr "Vene"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "Ketta %s partitsioonitabel salvestatakse!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Jordan"
-msgstr "Jordaania"
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
+msgstr "Muudatuste rakendamiseks vajate alglaadimist"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1037
#, c-format
-msgid "Hide files"
-msgstr "Failide peitmine"
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr "Partitsiooni %s vormindamisel hävivad sellel kõik andmed"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Selle masinaga ühendatud printerite automaattuvastus"
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "Vormindan"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "Flopiseade ei ole kättesaadav"
+msgid "Formatting loopback file %s"
+msgstr "Vormindan loopback faili %s"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "Bolivia"
-msgstr "Boliivia"
+msgid "Formatting partition %s"
+msgstr "Vormindan partitsiooni %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Seadistage oma Windows-server nii, et printer oleks kättesaadav IPP "
-"protokolliga, ning seadistage trükkimine sellelt masinalt \"%s\" "
-"ühendustüübiga Printerdrakes.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Hide files"
+msgstr "Failide peitmine"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "Vigane pakett"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Move files to the new partition"
+msgstr "Liiguta failid uuele partitsioonile"
-#: ../advertising/07-server.pl:1
+#: ../../diskdrake/interactive.pm_.c:1053
#, 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!"
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-"Kujundage vaid mõne hiireklõpsuga enda masinast võimas Linuxi server: "
-"veebiserver, meili-, tulemüüri-, marsruutimis-, faili- ja printserver..."
+"Kataloogis %s on juba andmed\n"
+"(%s)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "DrakSec Basic Options"
-msgstr "DrakSeci põhiseadistused"
+#: ../../diskdrake/interactive.pm_.c:1064
+msgid "Moving files to the new partition"
+msgstr "Failide liigutamine uuele partitsioonile"
-#: ../../standalone/draksound:1
+#: ../../diskdrake/interactive.pm_.c:1068
#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Märkus: kui Teil on ISA PnP helikaart, tuleb kasutada rakendust sndconfig. "
-"Selleks kirjutage käsureale \"sndconfig\"."
+msgid "Copying %s"
+msgstr "%s kopeerimine"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1072
#, c-format
-msgid "Romania"
-msgstr "Rumeenia"
+msgid "Removing %s"
+msgstr "%s eemaldamine"
-#: ../../standalone/drakperm:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid "Group"
-msgstr "Grupp"
+msgid "partition %s is now known as %s"
+msgstr "partitsioon %s kannab nüüd nime %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Canada"
-msgstr "Kanada"
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "Seade: "
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "choose device"
-msgstr "valige seade"
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "DOS kettatähis: %s (arvatavasti)\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from LVM"
-msgstr "Eemalda LVMist"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "Tüüp: "
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Timezone"
-msgstr "Ajavöönd"
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "Nimi: "
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "German"
-msgstr "Saksa"
+msgid "Start: sector %s\n"
+msgstr "Algus: sektor %s\n"
-#: ../../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
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "Next ->"
-msgstr "Järgmine ->"
+msgid "Size: %s"
+msgstr "Suurus: %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid ""
-"Turning on this allows to print plain text files in japanese language. Only "
-"use this function if you really want to print text in japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Selle lubamine võimaldab trükkida jaapanikeelseid tekstifaile. Kasutage seda "
-"ainult siis, kui soovite tõesti jaapanikeelseid tekste trükkida, sest kui "
-"see on sisse lülitatud, ei ole enam võimalik trükkida ladina tähestiku "
-"diakriitiliste märkidega tähti ega kohandada veeriseid, märgisuurust jne. "
-"See puudutab ainult käesoleva masinaga ühendatud printereid. Kui soovite "
-"trükkida jaapanikeelset teksti võrgus asuva masinaga ühendatud printeril, "
-"tuleb see funktsioon tollel masinal sisse lülitada."
+msgid ", %s sectors"
+msgstr ", %s sektorit"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Võimalik, et on tegemist\n"
-"juhtpartitsiooniga, parem oleks\n"
-"seda mitte puutuda.\n"
+msgid "Cylinder %d to %d\n"
+msgstr "Silindrid %d kuni %d\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "Vormindatud\n"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Realaotussagedus"
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "Vormindamata\n"
+
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
+msgstr "Haagitud\n"
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Edit"
-msgstr "Muuda"
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, c-format
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+"Loopback file(s):\n"
+" %s\n"
msgstr ""
-"Seda haakepunkti ei saa eemaldada, sest partitsioon on kasutusel\n"
-"loopback-ina. Eemaldage esmalt loopback"
+"Loopback fail(id):\n"
+" %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1132
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\""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"Paigalduse ajal seadistatud võrku ei õnnestu praegu käivitada. Kontrollige "
-"palun, kas võrk on kättesaadav pärast süsteemi uut alglaadimist, ning "
-"korrigeerige seadistust Mandrake Juhtimiskeskuse sektsioonis \"Kohtvõrk ja "
-"Internet\"/\"Ühendus\", misjärel seadistage printer samuti Juhtimiskeskuses, "
-"aga sektsioonis \"Riistvara\"/\"Printer\". "
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "USB controllers"
-msgstr "USB kontrollerid"
+"Partitsioonilt toimub alglaadimine\n"
+" (MS-DOS-i, mitte lilo jaoks)\n"
-#: ../../Xconfig/various.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "What norm is your TV using?"
-msgstr "Millist TV-standardit Te kasutate?"
+msgid "Level %s\n"
+msgstr "Tase %s\n"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "Type:"
-msgstr "Tüüp: "
+msgid "Chunk size %s\n"
+msgstr "Ühiku suurus %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Share name"
-msgstr "Jagatav printer"
+msgid "RAID-disks %s\n"
+msgstr "RAID-kettad %s\n"
-#: ../../standalone/drakgw:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "enable"
-msgstr "lubada"
+msgid "Loopback file name: %s"
+msgstr "Loopback faili nimi: %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-"Proovin hankida Mandrake Linuxi veebisaidilt saadaolevate peeglite "
-"nimekirja..."
+"\n"
+"Võimalik, et on tegemist\n"
+"juhtpartitsiooniga, parem oleks\n"
+"seda mitte puutuda.\n"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"Võrgu taaskäivitamisel tekkis viga: \n"
"\n"
-"%s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove the loopback file?"
-msgstr "Kas eemaldada loopback fail?"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Valiku suurus ületab saadaolevat kettaruumi"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP server name missing!"
-msgstr "NCP serveri nimi puudub!"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose your country."
-msgstr "Palun valige oma maa."
+"See on eriline, alglaadimisel\n"
+"kasutatav partitsioon, mis\n"
+"võimaldab mitme operatsioonisüsteemi\n"
+"laadimist.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Kõvaketta varundamine..."
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
+msgstr "Ainult lugemisõigusega"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid "Laotian"
-msgstr "Laose"
+msgid "Size: %s\n"
+msgstr "Suurus: %s\n"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "Samoa"
-msgstr "Samoa"
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Geomeetria: %s silindrit, %s pead, %s sektorit\n"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Protokoll rstat laseb üle võrgu saada informatsiooni\n"
-"süsteemi töö kohta. Ettevaatust!"
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
+msgstr "Info: "
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid "Re-generating list of configured scanners ..."
-msgstr "Seadistatud skännerite nimekirja taasloomine..."
+msgid "LVM-disks %s\n"
+msgstr "LVM-kettad %s\n"
-#: ../../modules/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid "Module configuration"
-msgstr "Mooduli seadistamine"
+msgid "Partition table type: %s\n"
+msgstr "Partitsioonitabeli tüüp: %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../diskdrake/interactive.pm_.c:1169
#, c-format
-msgid "Scanner"
-msgstr "Skänner"
+msgid "on channel %d id %d\n"
+msgstr "kanalil %d id %d\n"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Hoiatus: selle graafikakaardi test võib Teie arvuti peatada"
+#: ../../diskdrake/interactive.pm_.c:1199
+msgid "Filesystem encryption key"
+msgstr "Failisüsteemi krüptovõti"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Kasutajanimi tohib sisaldada ainult väikesi tähti, numbreid ning märke '-' "
-"ja '_'"
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
+msgstr "Valige failisüsteemi krüptovõti"
-#: ../../standalone/drakbug:1
+#: ../../diskdrake/interactive.pm_.c:1203
#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
+msgid "This encryption key is too simple (must be at least %d characters long)"
+msgstr "See krüptovõti on liiga lihtne (peaks olema vähemalt %d märki)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "Tere tulemast, kräkkerid"
+#: ../../diskdrake/interactive.pm_.c:1204
+msgid "The encryption keys do not match"
+msgstr "Krüptovõtmed ei klapi"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "Mooduli parameetrid:"
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
+msgstr "Krüptovõti"
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
-msgstr "Tagage oma võrkude turvalisus MNF (Multi Network Firewall) abil"
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
+msgstr "Krüptovõti (uuesti)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Jätkata ilma võrku seadistamata"
+#: ../../diskdrake/removable.pm_.c:47
+msgid "Change type"
+msgstr "Muuda tüüpi"
-#: ../../network/isdn.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "Abort"
-msgstr "Loobu"
+msgid "Can't login using username %s (bad password?)"
+msgstr "Sisselogimine kasutajanimega %s ebaõnnestus (vale parool?)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "Parooli ei pärita masinal %s pordis %s"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Nõutav on domeeni autentimine"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse ratta emuleerimisega"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Veel üks"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Võrguskänneri kasutamine"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Milline kasutajanimi"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
+"Please enter your username, password and domain name to access this host."
msgstr ""
-"Teie Windowsi partitsioon on fragmenteerunud. Palun tehke arvutile uus "
-"alglaadimine, käivitage Windows ja seejärel utiliit 'defrag' ning tulge siis "
-"Mandrake Linuxi paigalduse juurde tagasi."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norra)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Kõvaketta varundamise edenemine..."
-
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Fork ebaõnnestus: %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "Tüüp: "
+"Palun sisestage sellele masinale ligipääsuks oma kasutajanimi, parool ja "
+"domeeni nimi."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Muuda klienti"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+msgid "Username"
+msgstr "Kasutajanimi"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "no fonts found"
-msgstr "fonte ei leitud"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Domeen"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Mouse"
-msgstr "Hiir"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+msgid "Search servers"
+msgstr "Serverite otsing"
-#: ../../bootloader.pm:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "not enough room in /boot"
-msgstr "/boot on liiga täis"
+msgid "%s formatting of %s failed"
+msgstr "%s vormindamine seadmel %s ebaõnnestus"
-#: ../../install_steps_gtk.pm:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "trying to promote %s"
-msgstr "püüan välja pakkuda %s"
+msgid "I don't know how to format %s in type %s"
+msgstr "Ei oska seadet %s vormindada tüüpi %s"
-#: ../../lang.pm:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
+msgid "mounting partition %s in directory %s failed"
+msgstr "partitsiooni %s haakimine kataloogis %s ebaõnnestus"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid "Host name"
-msgstr "Masinanimi"
+msgid "error unmounting %s: %s"
+msgstr "viga %s lahutamisel: %s"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the color of the progress bar"
-msgstr "edenemisriba värv"
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "lihtne"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Fondifailide kustutamine"
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
+msgstr "koos /usr-ga"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to RAID"
-msgstr "Lisa RAIDi"
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "server"
-#: ../../help.pm:1
+#: ../../fsedit.pm_.c:240
#, c-format
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"
+"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"
-" * 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."
+"Do you agree to loose all the partitions?\n"
msgstr ""
-"Yabooti jaoks on võimalik lisada kirjeid kas teiste operatsioonisüsteemide,\n"
-"alternatiivsete kernelite või hädaolukorras alglaadimistõmmise leidmiseks.\n"
-"\n"
-"Teiste operatsioonisüsteemide kirje sisaldab vaid pealdist ja "
-"juurpartitsiooni.\n"
-"\n"
-"Linuxi puhul on võimalusi rohkem:\n"
-"\n"
-" * Pealdis: lihtsalt nimetus, mida tuleb kirjutada, kui yaboot pärib teilt "
-"alglaadimise\n"
-"ajal, mida laadida.\n"
-"\n"
-" * Laadepilt: alglaaditava kerneli nimetus, tavaliselt vmlinux laiendiga või "
-"ilma selleta.\n"
-"\n"
-" * Juur: juurseade ehk Teie Linuxi ``/''.\n"
-"\n"
-" * Lisand: eriti Apple'i puhul kasutatakse kerneli lisa sageli "
-"videoriistvara lähtestamiseks\n"
-"või hiirenupu emuleerimiseks klaviatuuril, sest Apple'i riistvarapoodides on "
-"vaid\n"
-"harva näha kahe või kolme nupuga hiiri. Mõned näited:\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: seda võimalust võib kasutada kas initsialiseerimismoodulite "
-"laadimiseks\n"
-"enne alglaadimisseadmeni jõudmist või ramdisk-laadepildi laadimiseks\n"
-"hädaolukorras.\n"
-"\n"
-" * Initrd-size: ramdiski suurus on tavaliselt 4096 baiti. Kui teil peaks "
-"minema\n"
-"tarvis suuremat, saab seda siin määrata.\n"
-"\n"
-" * Read-write: tavaliselt initsialiseeritakse juurpartitsioon esmalt vaid "
-"loetavana,\n"
-"et sooritada failisüsteemi kontroll enne seda, kui süsteem ``ellu ärkab''.\n"
-"Siin saab seda muuta.\n"
-"\n"
-" * NoVideo: kui Apple'i videoriistvara peaks väga tõsiseid probleeme "
-"tekitama,\n"
-"saab siin valida võimaluse teha alglaadimine resiimis ``novideo'' ehk siis\n"
-"native frame-buffer toega.\n"
+"Partitsioonitabel seadmel %s on loetamatu, liiga rikutud DrakX-i jaoks :(\n"
+"Proovin loetamatud kirjed puhastada, kuid ANDMED NEIL HÄVIVAD.\n"
+"Teine võimalus on keelata DrakX-il partitsioonitabeli muutmine.\n"
+"(Viga oli selline: %s)\n"
"\n"
-" * Vaikimisi: määrab antud kirje vaikimisi Linuxi valikuks, mida saab "
-"alglaadida\n"
-"yabooti käsurea ilmudes vaid vajutusega klahvile ENTER. Kui vajutate "
-"alglaadimise\n"
-"valikute uurimiseks [Tab], on see kirje tähistatud tärniga (``*'')."
+"Kas olete nõus kõigi partitsioonide kaotamisega?\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr "Printer \"%s\" lisati edukalt StarOffice/OpenOffice.org/GIMP-ile."
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr "JFS ei ole kasutatav alla 16MB partitsioonidel"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Flopiseade ei ole kättesaadav!"
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "ReiserFS ei ole kasutatav alla 32MB partisioonidel"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"Seda, millised valikud on saadaval praeguse printeri puhul, saab teada kas "
-"allpool seisvast loendist või pärast vajutust nupule \"Trükkimisvalikute "
-"loend\".%s%s%s\n"
-"\n"
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
+msgstr "Haakepunktid peavad algama kaldkriipsuga (/)"
-#: ../../lang.pm:1
+# c-format
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "Saudi Arabia"
-msgstr "Saudi Araabia"
+msgid "There is already a partition with mount point %s\n"
+msgstr "Haakepunktile %s on juba partitsioon määratud\n"
-#: ../../services.pm:1
+#: ../../fsedit.pm_.c:526
#, c-format
-msgid "Internet"
-msgstr "Internet"
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr "Te ei saa haakepunkti %s jaoks LVM loogilist ketast kasutada"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "Kas ikkagi jätkata?"
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
+msgstr "See kataloog peab jääma kokku juurfailisüsteemiga"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:530
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Kui Teie printerit loendis ei leidu, valige mõni ühilduv (vaadake printeri "
-"käsiraamatust) või sarnane."
+"See haakepunkt vajab tõelist (ext2/ext3, reiserfs, xfs või jfs) "
+"failisüsteemi\n"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:532
#, c-format
-msgid "Printer"
-msgstr "Printer"
+msgid "You can't use an encrypted file system for mount point %s"
+msgstr "Te ei saa haakepunkti %s jaoks krüptitud failisüsteemi kasutada"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices were added:\n"
-msgstr "Mõned seadmed lisati:\n"
+#: ../../fsedit.pm_.c:599
+msgid "Not enough free space for auto-allocating"
+msgstr "Ei ole piisavalt ruumi automaatpaigutuseks"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geomeetria: %s silindrit, %s pead, %s sektorit\n"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
+msgstr "Pole midagi teha"
-#: ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:694
#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Trükkimine printeril \"%s\""
+msgid "Error opening %s for writing: %s"
+msgstr "%s avamine kirjutamiseks ebaõnnestus: %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr "/etc/hosts.allow ja /etc/hosts.deny on juba seadistatud - ei muudeta"
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
+msgstr "cpu /* "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Tape"
-msgstr "Taastamine lindilt"
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
+msgstr "Alternatiivne draiver puudub"
-#: ../../standalone/drakbug:1
+#: ../../harddrake/sound.pm_.c:171
#, 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's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-"Veateate edastamiseks vajutage nupule 'Raport'.\n"
-"See avab veebilehitseja akna Anthillis, kus saate ülal näidatud info "
-"veateatena edastada."
+"Pole teada ühtegi alternatiivset OSS/ALSA draiverit Teie helikaardile (%s), "
+"millel praegu on kasutusel \"%s\""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the profile to configure"
-msgstr "Valige profiil, mida seadistada"
+#: ../../harddrake/sound.pm_.c:173
+msgid "Sound configuration"
+msgstr "Heliseadistused"
-#: ../../security/l10n.pm:1
+#: ../../harddrake/sound.pm_.c:174
#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
-msgstr "Salasõna miinimumpikkus ning numbrite ja suurtähtede hulk"
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
+msgstr ""
+"Siin saate valida alternatiivse draiveri (kas OSS või ALSA) oma helikaardile "
+"(%s)."
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../harddrake/sound.pm_.c:176
#, c-format
msgid ""
"\n"
"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
"\n"
"\n"
-"Sisestage Zeroconfi masina nimi (ilma punktideta), kui Te\n"
-"ei soovi kasutada vaikimisi antud masina nime."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Varunda seadistustefail kohe!"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr "Haakepunkti nimi tohib sisaldada vaid tähti ja numbreid"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Trükkimissüsteemi taaskäivitamine..."
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr "Töötada saab ainult ilma CD-ROM toetuseta"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "Info riistvara kohta"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
-msgstr "Päev"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr "Partitsiooni algusesse"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Printeri tootja, mudel"
+"Teie helikaart kasutab praegu %s\"%s\" draiverit (selle kaardi vaikedraiver "
+"on \"%s\")"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Trüki kohe"
-
-#: ../../standalone.pm:1
-#, 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)"
-msgstr ""
-"[VÕTMED]...\n"
-"Mandrake terminaliserveri seadistaja\n"
-"--enable : lubab MTSi\n"
-"--disable : keelab MTSi\n"
-"--start : käivitab MTSi\n"
-"--stop : peatab MTSi\n"
-"--adduser : lisab olemasoleva kasutaja MTSile (nõutav on "
-"kasutajanimi)\n"
-"--deluser : kustutab olemasoleva kasutaja MTSist (nõutav on "
-"kasutajanimi)\n"
-"--addclient : lisab kliendimasina MTSile (nõutav on MAC-aadress, IP, "
-"nbi laadepildi nimi)\n"
-"--delclient : kustutab kliendimasina MTSist (nõutav on MAC-aadress, IP, "
-"nbi laadepildi nimi)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Alamvõrgu mask:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Set password expiration and account inactivation delays"
-msgstr "Salasõna aegumise ja konto tühistamise viivituse määramine"
+#: ../../harddrake/sound.pm_.c:178
+msgid "Driver:"
+msgstr "Draiver: "
+
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+msgid "Help"
+msgstr "Abi"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Koormus"
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
+msgstr "ALSA ja OSS abi vahel lülitamine"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
+#: ../../harddrake/sound.pm_.c:186
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"
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Kaks kriitilist suurust on ekraanisagedus, mis määrab kogu kuva\n"
-"uuendamise aja, ja realaotussagedus\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"
-"On VÄGA TÄHTIS, et Te ei määraks siinkohal monitori, mille realaotus on\n"
-"suurem, kui Teie monitor võimaldab. Vastasel juhul võib Teie monitor "
-"hävida.\n"
-"Kui kahtlete, valige pigem väiksem väärtus."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
-msgstr "Muuda"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"It also provides a much higher API than OSS.\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"
+"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 ""
+"OSS (Open Sound System) oli esimene heli-API. See on op-süsteemist sõltumatu "
+"heli-API (saadaval enamiku unix-süsteemide tarbeks), kuid samas väga "
+"elementaarne ja piiratud.\n"
+"Ja pealegi kipuvad OSS-draiverid kogu aeg jalgratast uuesti leiutama.\n"
"\n"
-"Käsud \"%s\" ja \"%s\" võimaldavad samuti muuta konkreetse trükkimistöö "
-"valikuid. Selleks tuleb vaid lisada soovitud valikud käsureale, näiteks \"%s "
-"<fail>\".\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Vaja läheb masinanime, kasutajatunnust ja parooli!"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Insert floppy"
-msgstr "Sisestage flopi"
+"ALSA (Advandes Linux Sound Architecture) kujutab endast moodulistatud\n"
+"arhitektuuri, mis toetab päris suurt hulka ISA-, USB- ja PCI-kaarte.\n"
+"\n"
+"See pakub ka palju arenenumat API-t kui OSS.\n"
+"\n"
+"Alsa kasutamiseks võib tarvitada:\n"
+" -vana ühilduvat OSS API-t\n"
+"- uut ALSA API-t, mis pakub hulga täiustatud võimalusi, kuid\n"
+"nõuab ALSA teegi kasutamist.\n"
-#: ../../diskdrake/dav.pm:1
+#: ../../harddrake/sound.pm_.c:202
#, 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\"."
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-"WebDAV on protokoll, mis võimaldab haakida veebiserveri kataloogi\n"
-"kohalikult ning käsitleda seda kui kohalikku failisüsteemi (eeldusel, et\n"
-"veebiserver on seadistatud WebDAV-serverina). Kui soovite lisada\n"
-"WebDAVi haakepunkte, vajutage nupule \"Uus\"."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
-msgstr "uus"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable syslog reports to console 12"
-msgstr "Syslog-i teadete konsoolile 12 saatmise lubamine/keelamine"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Kas soovite uuesti proovida?"
+"Vana \"%s\" draiver on mustas nimekirjas.\n"
+"\n"
+"On teatatud, et see tekitab mahalaadimisel kernelile jama.\n"
+"\n"
+"Uut \"%s\" draiverit kasutatakse järgmisel alglaadimisel."
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "Nõustaja"
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+msgid "Please Wait... Applying the configuration"
+msgstr "Palun oodake... Rakendan seadistusi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected server"
-msgstr "Valitud serveri muutmine"
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "Palun oodake"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Valige palun, kuhu soovite varukoopia salvestada"
+#: ../../harddrake/sound.pm_.c:210
+msgid "No known driver"
+msgstr "Draiverit ei õnnestunud tuvastada"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Partitsioonitabeli säilitamiseks vajate alglaadimist"
+msgid "There's no known driver for your sound card (%s)"
+msgstr "Teie helikaardile (%s) ei õnnestunud tuvastada draiverit"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Veebilehitseja mälupuhvri kõrvalejätmine"
+#: ../../harddrake/sound.pm_.c:214
+msgid "Unkown driver"
+msgstr "Tundmatu draiver"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, c-format
msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-"Failisüsteemi %s kontroll ebaõnnestus. Kas soovite vigu parandada? "
-"(Ettevaatust, võite kaotada andmed!)"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Palun valige klaviatuuriasetus."
-
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "Standardne"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Palun valige hiire tüüp."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
-msgstr "Ühenda..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Printeri \"%s\" seadistamine ebaõnnestus!"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "not configured"
-msgstr "seadistamata"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "About"
-msgstr "Misvärk"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "Vahendajate seadistused"
+"Teie helikaardi \"%s\" draiver ei ole loendis\n"
+"\n"
+"Palun saatke käsu \"lspcidrake -v\" väljund aadressile\n"
+"<install at mandrakesoft dot com>,\n"
+"kirjutades subjektireale: unlisted sound driver \"%s\""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Algus: sektor %s\n"
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+msgid "Auto-detect"
+msgstr "Automaattuvastus"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Mask"
-msgstr "Mask puudub"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+msgid "Unknown|Generic"
+msgstr "Tundmatu|Tavaline"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface already configured"
-msgstr "Võrguliides on juba seadistatud"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Tundmatu|CPH05X (bt878) [paljud tootjad]"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
-msgstr "Ei suuda flopit leida!"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Tundmatu|CPH06X (bt878) [paljud tootjad]"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
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."
+"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 ""
-"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."
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Mail Server"
-msgstr "Meiliserver"
+"Enamiku moodsate TV-kaartide puhul avastab GNU/Linuxi kerneli bttv-moodul "
+"automaatselt õiged parameetrid.\n"
+"Kui kaart siiski valesti tuvastati, võite siin määrata õige tuuneri ja "
+"kaardi tüübi. Valige vajadusel korral sobivad tv-kaardi parameetrid"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "Palun valige partitsioon"
+#: ../../harddrake/v4l.pm_.c:227
+msgid "Card model:"
+msgstr "Kaardi mudel:"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Mitme funktsiooniga seade HP JetDirectil"
+#: ../../harddrake/v4l.pm_.c:228
+msgid "Tuner type:"
+msgstr "Tuuneri tüüp:"
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linux"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
+msgstr "Hõivepuhvrite arv:"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
-msgstr "Peatse jällenägemiseni!"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "hõivatavate puhvrite arv mmap-i jaoks"
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
+#: ../../harddrake/v4l.pm_.c:231
+msgid "PLL setting:"
+msgstr "PLL:"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Upgrade %s"
-msgstr "%s uuendus"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
+msgstr "Raadiotugi:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Valige printeri ühendusviis"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
+msgstr "raadiotoe lubamine"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
-msgstr "Telekanalite otsingu edenemine ..."
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+"GNU/Linux on paljude kasutajatega süsteem, mis tähendab, et igal kasutajal\n"
+"võivad olla oma eelistused, failid jne. Selle kontseptsiooni kohta leiab "
+"lähemat\n"
+"infot \"Kasutaja käsiraamatust\". Kuid erinevalt administraatorist ei ole\n"
+"kasutajal õigust muuta midagi muud kui vaid oma faile ja enda seadistusi.\n"
+"Te peaksite looma ka endale vähemalt ühe tavakasutaja konto, millele sisse\n"
+"logida igapäevategevuseks. Kuigi võib olla vägagi praktiline logida iga "
+"päev\n"
+"sisse administraatorina, võib see olla ka väga ohtlik! Vähimgi viga võib sel"
+"\\ puhul tähendada, et süsteem lakkab töötamast. Kui teete tõsise vea "
+"tavakasutajana,\n"
+"võite kaotada ainult mõningat infot, kuid süsteem jääb töökorda.\n"
+"\n"
+"Kõigepealt tuleks sisestada oma tegelik nimi. See ei ole mõistagi "
+"kohustuslik - tegelikult võite sisestada, mida soovite. DrakX võtab esimese "
+"sisestatud sõna\n"
+"ning määrab selle \"kasutajanimeks\". See on siis nimi, mille all konkreetne "
+"kasutaja\n"
+"saab ennast süsteemi sisse logida. Seda saab ka hiljem muuta. Seejärel "
+"tuleb\n"
+"sisestada parool. Privileegideta (tavalise) kasutaja parool ei ole "
+"turvalisuse mõttes\n"
+"nii oluline kui administraatori oma, kuid pole põhjust sellest ka "
+"naljanumbrit teha:\n"
+"lõppeks on ju mängus Teie failid.\n"
+"\n"
+"Kui klõpsate nupule \"Kasutaja õige\", võite lisada veel nii palju "
+"kasutajaid, kui vaja.\n"
+"Lisage üks kasutaja iga inimese kohta, kes Teie arvutit kasutab. Kui olete "
+"kõik\n"
+"soovitud sisestanud, vajutage nupule \"Tehtud\".\n"
+"\n"
+"Klõps nupule \"Täpsemalt\" võimaldab muuta kasutajale määratavat vaike-"
+"\"shelli\"\n"
+"(vaikimisi on see bash).\n"
+"\n"
+"Kui olete kasutajate lisamise lõpetanud, pakutakse Teile valida kasutaja, "
+"kel on\n"
+"õigus logida süsteemi automaatselt, kui arvuti algkäivituse teeb. Kui see "
+"võimalus\n"
+"Teile huvi pakub (ja kohalik turvalisus muret ei valmista), valige "
+"meelepärane\n"
+"kasutaja ning aknahaldur ja vajutage \"Jah\". Kui Te sellest aga huvitatud "
+"ei ole,\n"
+"vajutage kohe \"Ei\"."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:48
msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/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 ""
-"Viga faili saatmisel FTP kaudu.\n"
-" Palun korrigeerige FTP seadistusi."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr "IP vahemiku algus:"
+"Ülal on toodud kõik Teie kõvakettal olemasolevad Linuxi partitsioonid\n"
+"Vaikimisi on need enamasti üsna mõistlikud. Kui teete nendes muutusi,\n"
+"pidage meeles, et kindlasti vajate juurpartitsiooni (\"/\"). Liiga väikeste\n"
+"partitsioonide puhul võib tekkida raskusi piisava hulga tarkvara "
+"paigaldamisel.\n"
+"Kasutajate jaoks on sageli mõistlik luua eraldi \"/home\" partitsioon.\n"
+"(Seda mõistagi juhul, kui tegemist on enam kui ühe Linuxi partitsiooniga).\n"
+"\n"
+"Iga partitsiooni juures on toodud abiinfona \"Nimi\" ja \"Mahutavus\".\n"
+"\n"
+"\"Nimi\" koosneb kõvakettatüübist, selle numbrist ja partitsiooni\n"
+"numbrist (näiteks \"hda1\").\n"
+"\n"
+"Kõvaketta tüüp on \"hd\", kui on tegemist IDE kettaga, ning \"sd\", kui on\n"
+"tegemist SCSI kettaga.\n"
+"\n"
+"Kõvaketta number on alati täht \"hd\" või \"sd\" järel. IDE ketastel:\n"
+"\n"
+" * \"a\" - esmase IDE kontrolleri ülem,\n"
+"\n"
+" * \"b\" - esmase IDE kontrolleri allutatu,\n"
+"\n"
+" * \"c\" - teisese IDE kontrolleri ülem,\n"
+"\n"
+" * \"d\" - teisese IDE kontrolleri allutatu.\n"
+"\n"
+"SCSI ketaste puhul on \"a\" esimene, \"b\" teine ja nii edasi."
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:79
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."
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
-"Interneti \"superserver\" nimega inetd laseb käivituda mitmetel võrgu-\n"
-"teenustel, nagu telnet, ftp, rsh, rlogin jne. Inetdi keelamine keelab\n"
-"ka kõik teenused, mida see haldab."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
-msgstr "edenemisriba kõrgus"
+"Mandrake Linuxi paigalduspaketid on jagatud mitme CD-ROMi vahel. DrakX\n"
+"suudab ära tunda, kui valitud pakett asub muul CD-ROMil, ning väljastab "
+"siis\n"
+"seesoleva CD ja palub sisestada selle, mida parajasti vaja läheb."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:84
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"
+"you are not supposed to know them all by heart.\n"
"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
"\n"
-"- Salvestamine %s vahendusel masinale: %s\n"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "Argentina"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Domain Name Server"
-msgstr "Nimeserver"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Level:"
-msgstr "Turvatase:"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr "Haakepunktid peavad algama kaldkriipsuga (/)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "CD/DVD-seade"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "CUPS server"
-msgstr "CUPS server"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Postfix meiliserver"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "Välju ilma salvestamata"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "Jeemen"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
-msgstr "See toode on saadaval MandrakeStore veebisaidil"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Nüüd on Teil mitmeid valikuid (%s).\n"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "GMT - DrakClock"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
-"%s\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
+"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
+"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
"\n"
-"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"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
"\n"
-"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."
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
-"Tekkis viga:\n"
+"Nüüd on aeg määrata rakendused, mida soovite oma süsteemi paigaldada.\n"
+"Mandrake Linux pakub tuhandeid pakette ja mõistagi ei eelda keegi, et Te\n"
+"neid kõiki juba ette tunneksite.\n"
"\n"
+"Kui sooritate kõige tavalisemat paigaldust CD-ROMidelt, palutakse Teil "
+"esmalt\n"
+"määrata CD-d, mis Teil kasutada on (ainult ekspertresiimis). Vaadake CD-de\n"
+"pealdisi ning märkige need CD-d, mis Teil olemas on. Kui olete valmis,\n"
+"vajutage \"Olgu\".\n"
"\n"
-"%s\n"
+"Paketid on rühmitatud gruppidesse vastavalt nende kasutusalale. Grupid ise "
+"on\n"
+"jagatud nelja sektsiooni:\n"
"\n"
-"Selle põhjus võib olla vigaste süsteemsete seadistusfailide\n"
-"olemasolu USB mälupulgal, millisel juhul eemaldage failid ja\n"
-"taaskäivitage Mandrake Move, mis peaks asjad korda tegema.\n"
-"Selleks klõpsake vastaval nupul.\n"
+" * \"Tööjaam\": kui kavatsete kasutada arvutit tööjaama, valige siit "
+"sektsioonist\n"
+"üks või enam gruppidest;\n"
"\n"
+" * \"Arendus\": kui kavatsete kasutada arvutit programmeerimiseks, valige\n"
+"soovitud grupid siit;\n"
"\n"
-"Te võite ka teha taaskäivituse ja ühendada mälupulga lahti\n"
-"või uurida selle sisu mõnes muus operatsioonisüsteemis või ka\n"
-"vaadata logifaile konsoolil 3 ja 4, et aru saada, mis siis lahti on."
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "Kõvaketta leidmine"
+" * \"Server\": kui arvuti peab täitma serveri ülesandeid, saate siit "
+"valida,\n"
+"milliseid kõige enam levinud teenuseid oma masinale paigaldada;\n"
+"\n"
+" * \"Graafiline töökeskkond\": lõppeks saate siit valida meelepärase "
+"graafilise\n"
+"töökeskkonna. Neist tuleb valida vähemalt üks, kui soovite kasutada "
+"graafilist tööjaama!\n"
+"\n"
+"Hiire asetamine grupi nime peale toob nähtavale selle lühikirjelduse. Kui "
+"olete\n"
+"tavapärast paigaldust tehes kõik grupid valimata jätnud (seega talitanud\n"
+"vastupidi uuenduse mõttele), ilmub dialoog, mis pakub mitmesuguseid\n"
+"võimalusi minimaalseks paigalduseks.\n"
+"\n"
+" * \"X-iga\": paigaldatakse minimaalselt graafiliseks töölauaks vajalikud "
+"paketid;\n"
+"\n"
+" * \"Baasdokumentatsiooniga\": paigaldatakse baassüsteem ning põhilised\n"
+"utiliidid ja nende dokumentatsioon. See peaks sobima näiteks serverile;\n"
+"\n"
+" * \"Tõeline miinimumpaigaldus\": paigaldatakse minimaalne hulk pakette,\n"
+"mida on vaja Linuxi töötamiseks (vaid käsurealt). See võtab ruumi umbes\n"
+"65 MB.\n"
+"\n"
+"Ära märkida saab kasti \"Pakettide individuaalne valik\", mis on kasuks, "
+"kui\n"
+"tunnete pakette, mida Teile pakutakse, või kui soovite totaalset kontrolli\n"
+"selle üle, mida Teie masinasse paigaldatakse.\n"
+"\n"
+"Kui käivitasite paigalduse resiimis \"Uuendus\", võite jätta kõik grupid\n"
+"valimata, mis takistab uute pakettide paigaldamist. Seda tasub tarvitada\n"
+"näiteks olemasoleva süsteemi parandamisel või värskendamisel."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../help.pm_.c:135
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
msgstr ""
-"Te ei valinud ühtegi paketigruppi.\n"
-"Palun valige meelepärane minimaalne paigaldus:"
+"Sõltuvalt sellest, kas valisite individuaalse pakettide valiku või mitte,\n"
+"näidatakse Teile gruppidesse ja alamgruppidesse rühmitatult kõiki pakette\n"
+"sisaldavat puud. Seda mööda liikudes võite valida või etteantud valiku\n"
+"tühistada tervete gruppide, alamgruppide või üksikute pakettide kaupa.\n"
+"\n"
+"Kui valite puus mõne paketi, ilmub paremal selle kirjeldus. Kui valik on\n"
+"lõpetatud, vajutage nupule \"Paigalda\", mis käivitab paigaldusprotsessi.\n"
+"Sõltuvalt riistvara kiirusest ja valitud pakettide arvust, võib kuluda "
+"päris\n"
+"palju aega selle lõpulejõudmiseks. Ekraanil näidatakse oletatavat aega.\n"
+"mis paigaldamisele kulub, lastes Teil ühtlasi hinnata, kas sellest piisab\n"
+"tassikese kohvi nautimiseks.\n"
+"\n"
+"!! Kui tahtlikult või seetõttu, et asi kuulus gruppi, on valitud mõni "
+"serveripakett,\n"
+"palutakse Teilt kinnitust, et Te ikka tõesti soovite neid servereid "
+"paigaldada.\n"
+"Mandrake Linuxi puhul käivitatakse kõik paigaldatud serverid vaikimisi\n"
+"alglaadimise käigus. Isegi kui nad olid turvalised ja teadaolevalt "
+"probleemivabad\n"
+"ajal, mis valmis distributsioon, võib kergesti juhtuda, et pärast Mandrake "
+"Linuxi\n"
+"praeguse versiooni valmimist leiti neist turvaauke. Kui Te ei tea, mida "
+"konkreetne\n"
+"teenus pakub või miks see üldse paigaldatakse, klõpsake nupul \"Ei\", sest\n"
+"klõps nupul \"Jah\" paigaldab loetletud serverid ning nad käivituvad\n"
+"alglaadimise ajal automaatselt. !!\n"
+"\n"
+"Lisavõimalus \"Automaatsõltuvused\" lihtsalt keelab hoiatava dialoogi, mis "
+"ilmub\n"
+"alati, kui paigaldaja valib automaatselt mõne paketi. See juhtub siis, kui "
+"leitakse,\n"
+"et paigalduse edukaks lõpetamiseks on vajalik paigaldada veel mõni muu "
+"pakett.\n"
+"\n"
+"Väike flopiketta ikoon loendi all võimaldab avada eelmise paigalduse ajal "
+"valitud\n"
+"pakettide nimekirja. Sellel klõpsamise järel palutakse Teil sisestada "
+"flopiketas,\n"
+"mille lõite eelmise paigalduse lõpul. Vaadake ka eelmise sammu teist "
+"nõuannet\n"
+"selle kohta, kuidas sellist flopiketast luua."
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../help.pm_.c:171
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."
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-"Teil läheb vaja Alcateli Microcode'i.\n"
-"Te võite nüüd selle paigaldada flopilt või Windowsi partitsiiinil\n"
-"või ka sammu vahele jätta ja hoopis hiljem paigaldamise ette võtta."
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "Palun sisestage WebDAV-serveri URL"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "Tadžikistan"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "Nõus"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "Kirjeldus"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter summary text."
-msgstr "Palun sisestage kokkuvõte."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "%s avamine kirjutamiseks ebaõnnestus: %s"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Hiire tüüp: %s\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Teie kaardi 3D graafikakiirendit toetab XFree %s."
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "Valige monitor"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "Tühi kirjetähis ei ole lubatud"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
-msgstr "Malta (briti)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "Partitsioone ei saa enam lisada"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "Suurus (MB): "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "Võrguprinter"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
-msgstr "Valige palun kasutatav keel."
+"Nüüd võite seadistada oma Interneti-/võrguühenduse. Kui soovite, et arvuti\n"
+"oleks ühendatud Internetti või kohtvõrku, vajutage \"Olgu\". Seejärel "
+"käivitub\n"
+"võrguseadmete ja modemi automaattuvastus. Kui see ei õnnestu, jätke\n"
+"järgmisel korral kastike \"Automaattuvastuse kasutamine\" märkimata.\n"
+"Muidugi võib ka võrgu seadistamisest loobuda või soovida seda hiljem teha.\n"
+"Sellisel juhul vajutage nupule \"Loobu\".\n"
+"\n"
+"Võimalikud ühendusviisid on: tavaline modem, ISDN modem, ADSL ühendus,\n"
+"kaablimodem ning lõpuks kohtvõrk ehk LAN (Ethernet).\n"
+"\n"
+"Siinkohal ei hakka me kogu seadistamist lahti seletama. Kontrollige "
+"lihtsalt, et\n"
+"oleksite oma internetiteenuse pakkujalt või süsteemi administraatorilt "
+"saanud\n"
+"kõik võrguühendusega seonduvad parameetrid.\n"
+"\n"
+"Seadistamisest kõneleb lähemalt \"Käivitusjuhiste\" Internetiühendusest "
+"pajatav\n"
+"peatükk, kuid võib ka oodata, kuni süsteem on paigaldatud ja kasutada siis "
+"ühenduse seadistamiseks seal kirjeldatud rakendust.\n"
+"\n"
+"Kui soovite seadistada võrku pärast paigaldust või olete lõpetanud selle\n"
+"seadistamise, vajutage nuppu \"Katkesta\"."
-#: ../../network/network.pm:1
-#, c-format
+#: ../../help.pm_.c:193
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."
+"You may now choose which services you wish to start at boot time.\n"
+"\n"
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
+"\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
-"HOIATUS: See seade on juba seadistatud Interneti jaoks.\n"
-"Valige lihtsalt 'Olgu', et seadistust mitte muuta.\n"
-"Allolevate väljade muutmine tühistab varasema seadistuse."
-
-#: ../../any.pm:1
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
-msgstr "Teie arvutit saab seada vaikimisi kasutaja sisenemisele."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Floppy format"
-msgstr "Flopi vorming"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Generic Printers"
-msgstr "Tavalised printerid"
+"Nüüd saate valida, millised teenused peaks käivitama alglaadimisel.\n"
+"\n"
+"Siin on üles loetud kõik teenused, mis on saadaval antud paigalduse puhul.\n"
+"Uurige neid hoolega ja jätke valimata kõik, mida ei ole alglaadimise ajal\n"
+"tingimata vajalik käivitada.\n"
+"\n"
+"Konkreetset teenust valides näete selle kohta lühikest seletavat teksti. "
+"Kui\n"
+"Te ei ole aga kindel, kas teenus on kasulik või mitte, on mõistlik jätta "
+"kehtima\n"
+"vaikevalik (olgu see siis lubav või mitte).\n"
+"\n"
+"!! Kui kavatsete oma süsteemi kasutada serverina, olge eriti tähelepanelik:\n"
+"tõenäoliselt ei soovi Te käivitada mittevajalikke teenuseid. Pidage meeles, "
+"et\n"
+"mõned teenused võivad serveril kasutatuna olla isegi ohtlikud. Üldiselt "
+"tasub\n"
+"valida ainult neid teenuseid, mida Teil tõesti vaja läheb.\n"
+"!!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:210
msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
msgstr ""
-"Valige palun printer, kuhu trükitööd tuleks saata, või kirjutage "
-"sisendireale seadmenimi/failinimi"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr "Selle arvuti külge ühendatud skännerid on teistele kättesaadavad"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of the root partition"
-msgstr "Juurpartitsiooni algusesse"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Alternative drivers"
-msgstr "Alternatiivsed juhtprogrammid"
+"GNU/Linux kasutab GMT aega (Greenwichi aeg) ning teisendab selle\n"
+"kohalikuks ajaks vastavalt Teie valitud ajavööndile. Seda võib siiski ka "
+"välja\n"
+"lülitada, kui jätta märkima \"Arvutikell kasutab GMT-d\". Sellisel juhul "
+"kajastab\n"
+"arvutikell sama aega, mis süsteemi kell. See võib olla kasulik, kui masinas "
+"on\n"
+"veel mõni operatsioonisüsteem, näiteks Windows.\n"
+"\n"
+"Võimalus \"Aja automaatne sünkroniseerimine\" võimaldab kellaaega "
+"reguleerida,\n"
+"ühendudes Internetis mõne ajaserveriga. Pakutavas nimekirjas valige mõni\n"
+"lähemal asuv server. Mõistagi peab selle võimaluse kasutamiseks olema ka\n"
+"internetiühendus. Tegelikult paigaldab see Teie arvutile ajaserveri, mida "
+"saab\n"
+"kasutada isegi teiste kohtvõrgus olevate masinate aja täpsustamiseks."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:224
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.\n"
"\n"
-"Please check all options that you need.\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
msgstr ""
+"X (ehk X Window System) kujutab endast GNU/Linuxi graafilise "
+"kasutajaliidese\n"
+"tuuma ja südant, millele toetuvad kõik Mandrake Linuxiga kaasas käivad\n"
+"graafilised töökeskkonnad (KDE, GNOME, AfterStep, WindowMaker jne).\n"
"\n"
-"Märkige pakun ära kõik vajalikud valikud.\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
-msgstr "Cabo Verde"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "kas sel CPU-l on Cyrix 6x86 \"koomaviga\""
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr "Printeri seadistuse laadimine... Palun oodake"
+"Siin näidatakse Teie riistvara puhul võimalikke kuvatihedusi ja "
+"värvisügavusi.\n"
+"Valige see, mis Teie vajadustele kõige paremini sobib (seda on võimalik "
+"pärast\n"
+"paigaldust ka muuta). Kui olete monitoril näidatud eelvaatega rahul, "
+"klõpsake nupul\n"
+"\"Olgu\". Seejärel ilmub aken küsimusega, kas Te näete seda.\n"
+"\n"
+"Kui valisite paigalduse \"Ekspertresiimi\", saate võimaluse kasutada X-i\n"
+"seadistamise nõustajat. Selle kohta vaadake lähemalt käsiraamatu vastavat "
+"osa.\n"
+"\n"
+"Kui näete testi ajal sõnumit ja vastate \"Jah\", jätkab DrakX järgmise "
+"sammuga.\n"
+"Kui Te aga sõnumit ei näe, tähendab see, et seadistus ei olnud õige ning "
+"test\n"
+"lõpeb automaatselt 10 sekundi pärast, taastades varasema ekraani. Seejärel\n"
+"uurige lähemalt kasutaja käsiraamatu videoseadistuste osa, kus räägitakse\n"
+"põhjalikult monitori ja videokaardi seadistamisest."
+
+#: ../../help.pm_.c:246
+msgid ""
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
+msgstr ""
+"Lõpuks küsitakse Teie käest, kas soovite kasutada graafilist töökeskkonda\n"
+"kohe alglaadimisel. Pange tähele, et seda päritakse ka siis, kui Te ei "
+"proovinudki\n"
+"seadistusi testida. On üsna ilmne, et vastus kõlab \"Ei\", kui masina "
+"ülesanne\n"
+"on tegutseda serverina või kui Teid ei kippunud seadistamise ajal edu saatma."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
+#: ../../help.pm_.c:253
+msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
+msgstr ""
+"Mandrake Linuxi CD-ROM võib toimida ka päästeresiimis. Seda saab kasutada\n"
+"järgmiselt: teete alglaadimise CD-ROMilt, vajutate selle ajal >>F1<< ning \n"
+"kirjutate käsureale >>rescue<<. Kui Teie arvuti aga ei ole võimeline tegema\n"
+"alglaadimist CD-ROMilt, tuleks tulla selle sammu juurde tagasi abi otsima\n"
+"vähemalt kahe situatsiooni korral:\n"
+"\n"
+" * alglaadurit paigaldades kirjutab DrakX üle Teie põhiketta avasektori "
+"(MBR;\n"
+"muidugi ainult juhul, kui Te ei kasuta mõnda muud alglaadurit), mis "
+"võimaldab\n"
+"käivitada näiteks nii Windowsi kui GNU/Linuxi (eeldusel mõistagi, et Teie\n"
+"süsteemis on Windows). Kui tekib vajadus Windows uuesti paigaldada, "
+"kirjutab\n"
+"Microsofti paigaldusprotsess avasektori üle ning Te ei suuda enam käivitada\n"
+"GNU/Linuxit!\n"
+"\n"
+" *kui tekib mingi probleem ja GNU/Linuxit pole võimalik käivitada "
+"kõvakettalt,\n"
+"on flopiketas ainuke võimalus seda käima saada. Sellel leiduvad mõningad\n"
+"süsteemi taastamise vahendid, kui too on kannatada saanud voolukatkestuse,\n"
+"ebaõnnestunud redigeerimise, paroolieksimuse või mõne muu põhjuse tõttu.\n"
+"\n"
+"Kui vastate \"Jah\", palutakse sisestada seadmesse flopiketas. See peab "
+"olema\n"
+"puhas või vähemalt andmetega, mida Teil enam vaja ei lähe. Teil pole vaja "
+"seda\n"
+"ise vormindada, selle mure võtab DrakX enda kanda."
+
+#: ../../help.pm_.c:277
+msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft 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"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
+"\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
msgstr ""
-"varased pentiumid olid vigased ning hangusid F00F baidikoodi dekodeerimisel"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr "Guam"
+"Olete jõudnud punkti, kus peate otsustama, kuhu täpselt Mandrake Linux\n"
+"oma kõvakettal paigaldada. Kui kõvaketas on tühi või mõni muu\n"
+"operatsioonisüsteem seda täielikult kasutab, on vaja partitsioneerida.\n"
+"Partitsioneerimine on tegevus, mille käigus tekitatakse kettale loogilised\n"
+"piirkonnad Teie uue Mandrake Linux süsteemi paigaldamiseks.\n"
+"\n"
+"Kuna partitsioneerimine ei ole pööratav protsess, siis peab kogemusteta\n"
+"kasutaja olema iseäranis ettevaatlik! Selle tegevuse lihtsustamiseks ja\n"
+"vigade vähendamiseks on Teie jaoks loodudki käesolev nõustaja. Siiski,\n"
+"palun varuge natuke ettevalmistusaega.\n"
+"\n"
+"Kui käivitasite paigalduse ekspertresiimis, ootab Teid ees DiskDrake,\n"
+"Mandrake Linuxi partitsioneerimisvahend, mis võimaldab partitsioone\\ "
+"täpselt häälestada. Vaadake \"Käivitusjuhendis\" DiskDrake peatükki.\n"
+"Paigalduse töökeskkonnas võite kasutada siin kirjeldatud nõustajaid\n"
+"dialoogi nupule \"Nõustaja\" vajutades.\n"
+"\n"
+"Kui partitsioonid on juba olemas kas eelmisest paigaldusest või mõne\n"
+"muu partitsioneerimisvahendi abil looduna, tuleb need lihtsalt valida "
+"Linuxi\n"
+"süsteemi paigaldamiseks.\n"
+"\n"
+"Kui partitsioone veel ei ole, tuleb need nõustajat kasutades luua. "
+"Sõltuvalt\n"
+"kõvaketta omadustest on selleks mitmeid võimalusi.\n"
+"\n"
+" * \"Kasuta vaba ruumi\": see partitsioneerib lihtsalt Teie tühja(d) "
+"kõvaketta(d).\n"
+"Mingeid edasisi küsimusi ei esitata.\n"
+"\n"
+" * \"Kasuta olemasolevat partitsiooni\": nõustaja avastas kõvakettal ühe "
+"või\n"
+"rohkem Linuxi partitsiooni. Kui soovite neid kasutada, valige see võimalus.\n"
+"Seejärel palutakse valida iga partitsiooniga seonduvad haakepunktid. "
+"Vaikimisi\n"
+"valitakse need juba ette ära ja üldiselt oleks mõistlik neid mitte muuta.\n"
+"\n"
+" * \"Kasuta vaba ruumi Windowsi partitsioonil\": kui kõvakettale on "
+"paigaldatud\n"
+"Microsoft Windows ja see haarab enda alla kogu kõvaketta, võite luua vabale\n"
+"alale nurgakese Linuxi andmetele. Selleks võib hävitada Microsoft Windowsi\n"
+"partitsiooni koos andmetega (vaata võimalusi \"Puhasta kogu ketas\" või\n"
+"\"Ekspertresiim\") või selle suurust muuta. Viimast on võimalik sooritada "
+"ilma\n"
+"andmeid kaotamata, seda küll eeldusel, et olete varem Windowsi partitsiooni\n"
+"defragmenteerinud. Siiski ei tule kindlasti kahjuks ka andmetest varukoopia\n"
+"valmistamine... See lahendus on soovitatav, kui tahate kasutada ühel "
+"arvutil\n"
+"nii Mandrake Linuxit kui Microsoft Windowsit.\n"
+"\n"
+" Enne selle valiku kasuks otsustamist pidage silmas, et kirjeldatud "
+"protseduuri\n"
+"järel on Teie Microsoft Windowsi partitsioon senisest väiksem, mis tähendab, "
+"et\n"
+"sellel on ka vähem ruumi andmete salvestamiseks või uue tarkvara "
+"paigaldamiseks.\n"
+"\n"
+" * \"Puhasta kogu ketas\": kui soovite kustutada kõik andmed ja "
+"partitsioonid, mis\n"
+"kõvakettal parajasti on, ning asendada need uue Mandrake Linuxi süsteemiga, "
+"on\n"
+"see õige valik. Aga tasub olla ettevaatlik, sest pärast selle valiku "
+"langetamist\n"
+"tagasiteed enam ei ole...\n"
+"\n"
+" !! Kui valite selle võimaluse, kaotate kõik kõvakettal olevad andmed. !!\n"
+"\n"
+" * \"Eemalda Windows\": see puhastab kõvaketta senistest andmetest ja\n"
+"käivitab uue paigaldusprotsessi, luues kõik partitsioonid uuesti. Kaovad ka\n"
+"kõik kettal olnud andmed.\n"
+"\n"
+" !! Kui valite selle võimaluse, kaotate kõik kõvakettal olevad andmed. !!\n"
+"\n"
+" ' \"Ekspertresiim\": valige see, kui soovite ise kontrollida kõvaketta "
+"jagamist\n"
+"partitsioonideks. Kuid olge ettevaatlik - see on küll võimas, aga ohte "
+"sisaldav\n"
+"valik, mille puhul võib kergesti kaotada olemasolevad andmed. Seepärast ei\n"
+"peaks seda valima, kui Te pole endas päris kindel. Täpsemalt saab teada,\n"
+"kuidas kasutada DiskDrake võimalusi, \"Käivitusjuhiste\" osast "
+"\"Partitsioonide\n"
+"haldamine\"."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:347
msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-"Valige palun port, kuhu printer on ühendatud, või kirjutage sisendireale "
-"seadmenimi/failinimi"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/Eelistused/Test"
+"Ja nüüd ongi paigaldus selja taga ning Teie GNU/Linuxi süsteem valmis "
+"tööks.\n"
+"Selleks tuleb vaid klõpsata \"Olgu\" ning arvuti teeb taaskäivituse, mille "
+"järel\n"
+"võite valida, kas käivitada GNU/Linux või Windows (kui Teie arvutil on mitu\n"
+"süsteemi).\n"
+"\n"
+"Nupp \"Muud\" (ainult ekspertresiimis) pakub veel kaks võimalust:\n"
+"\n"
+" * \"Tekita automaatpaigalduse flopi\": loob paigaldusflopi, mis sooritab "
+"kogu\n"
+"paigalduse ilma kasutajata, paigaldus ise on samasugune nagu äsja\n"
+"seljataha jäänu.\n"
+"\n"
+" Selle valiku korral ilmub veel kaks erinevat võimalust:\n"
+"\n"
+" * \"Ümbermängimine\". See on osaliselt automaatne, sest "
+"partitsioneerimisel\n"
+"(aga ka ainult seal) on võimalik sekkuda.\n"
+"\n"
+" * \"Automaatne\". Täisautomaatne paigaldus: kõvaketas kirjutatakse "
+"täielikult\n"
+"uuesti, kõik varasemad andmed kustutatakse.\n"
+"\n"
+" See võimalus võib olla kasulik, kui paigaldamine on kavas ette võtta "
+"paljudel\n"
+"ühesugustel masinatel. Lähemalt vaadake meie veebileheküljel\n"
+"automaatpaigalduse sektsiooni.\n"
+"\n"
+" * \"Salvesta pakettide valik\"(*): salvestab paigalduse käigus valitud "
+"pakettide\n"
+"nimekirja. Kui nüüd võtate ette uue paigalduse, asetage flopi seadmesse "
+"ning\n"
+"käivitage paigaldus klahvile [F1] vajutades abiekraani vahendusel, andes "
+"käsu\n"
+">>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) Selleks läheb vaja FAT-vormingus flopit (sellise loomiseks GNU/Linuxis\n"
+"andke käsk \"mformat a:\")"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:378
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."
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-"See tase muudab küll süsteemi lihtsalt kasutatavaks, kuid väga\n"
-"haavatavaks: ligipääsupiirangute puudumise tõttu ei peaks arvutit ühendama\n"
-"ei teiste arvutitega ega ka mitte Internetti."
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mounting partition %s"
-msgstr "Partitsiooni %s haakimine"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "Kasutajanimi"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Millisele partitsioonile soovite paigaldada Linux4Win?"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to missing %s"
-msgstr "puuduva %s tõttu"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Test pages"
-msgstr "Testleheküljed"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Logical volume name "
-msgstr "Loogilise ketta nimi "
+"Kõik värskelt loodud partitsioonid tuleb enne kasutamist vormindada\n"
+"ehk sinna tuleb luua failisüsteemid.\n"
+"\n"
+"Samuti võib vormindada varem olemas olnud partitsioonid, kui soovite\n"
+"seal leiduvad andmed ära kustutada.\n"
+"\n"
+"Pange tähele, et alati ei ole kõigi vanade partitsioonide vormindamine\n"
+"vajalik. Kindlasti tuleb vormindada partitsioonid, kus varem asus \"/\", \"/"
+"usr\"\n"
+"või \"/var\", aga kasutajate faile sisaldav \"/home\" võiks jääda alles.\n"
+"\n"
+"Olge partitsioonide valikul hoolas. Pärast vormindamist on kõik valitud\n"
+"partitsioonidel asunud andmed kustutatud ning neid pole võimalik taastada.\n"
+"\n"
+"Klõpsake \"Olgu\", kui olete vormindamiseks valmis.\n"
+"\n"
+"Klõpsake \"Katkesta\", kui soovite valida oma uue Mandrake Linuxi süsteemi\n"
+"paigaldamiseks mõne muu partitsiooni.\n"
+"\n"
+"Klõpsake \"Muud\", kui soovite valida partitsioone, millel kontrollitaks "
+"halbade\n"
+"blokkide olemasolu."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:404
msgid ""
-"List of data to restore:\n"
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
"\n"
+"Please be patient."
msgstr ""
-"Taastatavate andmete loend:\n"
+"Teie uut Mandrake Linux süsteemi hakati nüüd paigaldama.\n"
+"Selleks võib olenevalt valitud pakettide arvust ja Teie arvuti\n"
+"kiirusest kuluda mõni kuni mõnikümmend minutit.\n"
"\n"
+"Palun varuge kannatust."
-#: ../../fs.pm:1
-#, c-format
-msgid "Checking %s"
-msgstr "%s kontrollimine"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/Socket printeri seadistused"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Kaardi mälu (DMA)"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Internetiühenduse katkestamine "
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "Prantsusmaa"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
-msgstr "lehitse"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
-msgstr "Paigaldatud tarkvara kontroll..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Võrguprinteri nimi puudub!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Kas soovite trükkimist lubada printeritel Teie kohtvõrgus?\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "Türgi"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch USB"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Number of buttons"
-msgstr "Nuppude arv"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnami \"numbrireaga\" QWERTY"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Module"
-msgstr "Moodul"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:412
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
+"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-"Lisaks sellele ei saa üle kanda järjekordi, mis on loodud käesoleva "
-"programmi või \"foomatic-configure\" poolt."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
-msgstr "Riistvara"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl- ja Alt-klahvid korraga"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "USA"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "User umask"
-msgstr "Kasutaja umask"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "Vaikimisi OS?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "Å veitsi (Saksa asetus)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Seadista kõik monitorid sõltumatult"
+"On tõenäoline, et praegu, kui Te paigaldate Mandrake Linuxit, on mõned\n"
+"paketid jõudnud pärast väljalaset juba uuenduskuuri üle elada. Mõnes on ära\n"
+"parandatud paar väiksemat viga, mõnes turvaprobleemid. Et võiksite neist\n"
+"uuendustest tulu lõigata, on Teil nüüd võimalik need Internetist alla "
+"laadida.\n"
+"Klõpsake \"Jah\", kui Teie internetiühendus töötab, või \"Ei\", kui "
+"eelistate\n"
+"pakette uuendada millalgi hiljem.\n"
+"\n"
+"Kui valite \"Jah\", näidatakse Teile loendit kohtadega, kust uuendusi "
+"tõmmata\n"
+"saab. Valige endale lähim paik. Seejärel ilmub paketivaliku puu. Vaadake "
+"see\n"
+"üle ning vajutage \"Paigalda\", kui soovite valitud paketi(d) alla laadida "
+"ja\n"
+"paigaldada, või \"Katkesta\", kui Te ei soovi seda teha."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:425
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\"."
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
msgstr ""
-"Valige palun printer, mida soovite rakendada. Printeri seadistused peaksid "
-"toimima täiesti automaatselt. Kui printer tuvastati valesti või Te eelistate "
-"selle seadistusi korrigeerida, lülitage sisse \"Käsitsiseadistamine\"."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "NTP server"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Sulogin(8) in single user level"
-msgstr "Sulogin(8) üksikkasutaja tasemel"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Load/Save on floppy"
-msgstr "Laadi flopilt/Salvesta flopile"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
-msgstr "Sellel teemal ei ole veel ühtegi käivituslogo %s !"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "kena"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Lõpuni %d sekundit"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Millisesse jadaporti on Teie modem ühendatud?"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Property"
-msgstr "Omadus"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr "LAN seadistused"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "Ghana"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
-msgstr "Kataloogi või mooduli nõudmine"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Advanced Options"
-msgstr "Muud valikud"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Configuration"
-msgstr "Seadistuse vaatamine"
+"Enne jätkamist lugege hoolikalt läbi litsentsileping. See kehtib kogu "
+"Mandrake\n"
+"Linuxi distributsiooni kohta ja kui Te ei ole selles mingi punktiga nõus, "
+"vajutage\n"
+"\"Keeldun\", mis katkestab otsekohe paigaldusprotsessi. Paigalduse "
+"jätkamiseks\n"
+"vajutage \"Nõustun\"."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
-msgstr "\"Koomaviga\""
+#: ../../help.pm_.c:432
+msgid ""
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
+msgstr ""
+"Nüüd on aeg valida masinale meelepärane turvatase. Rusikareeglina peaks\n"
+"turvatase olema seda kõrgem, mida ligipääsule avatum see on ja mida rohkem\n"
+"leidub sellel olulise tähtsusega andmeid. Samas tähendab kõrgem turvatase\n"
+"üldiselt kasutamislihtsuse kahanemist. Turvatasemete täpsema kirjelduse\n"
+"leiate käsiraamatu peatükist \"msec\".\n"
+"\n"
+"Kui Te ei tea, mida valida, leppige pakutud võimalusega."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:442
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"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -5195,68 +3585,67 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
"Nüüd peate valima partitsiooni(d), kuhu soovite Mandrake Linuxi paigaldada.\n"
"Kui need on juba olemas kas GNU/Linuxi varasema paigalduse või mõne muu\n"
-"kettajagamisvahendi tegevuse tulemusena, võite kasutada olemasolevaid\n"
+"partitsioneerimisvahendi tegevuse tulemusena, võite kasutada olemasolevaid\n"
"partitsioone. Vastasel juhul tuleb need luua.\n"
"\n"
"Partitsioon on loogiliselt eraldatud kõvaketta piirkond, mille suurust\n"
@@ -5273,41 +3662,39 @@ msgstr ""
"\n"
"Valitud ketta partitsioneerimiseks on järgmised võimalused:\n"
"\n"
-" * \"%s\": kustutatakse kõik olemasolevad partitsioonid\n"
+" * \"Puhasta kõik\": kustutatakse kõik olemasolevad partitsioonid\n"
"sellel kettal.\n"
"\n"
-" * \"%s\": sel juhul tekitatakse Linuxile vajalikud\n"
+" * \"Paiguta automaatselt\": sel juhul tekitatakse Linuxile vajalikud\n"
"partitsioonid vabale kettapinnale automaatselt.\n"
"\n"
-"\"%s\": pakub mõned lisavõimalused:\n"
-" * \"%s\": salvestab partitsioonitabeli flopikettale.\n"
+"\"Rohkem\": pakub mõned lisavõimalused:\n"
+" * \"Salvesta partitsioonitabel\": salvestab partitsioonitabeli "
+"flopikettale.\n"
"Sellest on kasu hilisemal partitsioonitabeli taastamisel, kui seda vaja\n"
"peaks olema. Igal juhul on äärmiselt soovitav see samm ette võtta.\n"
"\n"
-" * \"%s\": võimaldab taastada flopikettalt varem\n"
+" * \"Taasta partitsioonitabel\": võimaldab taastada flopikettalt varem\n"
"salvestatud partitsioonitabeli.\n"
"\n"
-" * \"%s\": kui partitsioonitabel on vigastatud, võib\n"
+" * \"Päästa partitsioonitabel\": kui partitsioonitabel on vigastatud, võib\n"
"proovida seda parandada. Palun ärge selle peale siiski liiga palju lootke.\n"
"\n"
-" * \"%s\": kui soovite tühistada kõik enda tehtud muutused ja alustada algse "
-"partitsioonitabeliga.\n"
+" * \"Lae uuesti\": kui soovite tühistada kõik enda tehtud muutused ja "
+"alustada algse partitsioonitabeliga.\n"
"\n"
-" * \"%s\": selle võimaluse\n"
+" * \"Eemaldatava andmekandja automaathaakimine\": selle võimaluse\n"
"tühistamine sunnib kasutajaid käsitsi haakima ja lahutama eemaldatavaid\n"
"andmekandjaid, st flopikettaid ja CD-ROMe.\n"
"\n"
-" * \"%s\": kui soovite uue partitsioonitabeli loomisel samm-sammulist\n"
+" * \"Nõustaja\": kui soovite uue partitsioonitabeli loomisel samm-sammulist\n"
"juhatust. See on soovitatav, kui Te ei ole varem midagi sellist teinud.\n"
"\n"
-" * \"%s\": selle võimalusega saab tühistada kõik tehtud muudatused.\n"
+" * \"Tühista\": selle võimalusega saab tühistada kõik tehtud muudatused.\n"
"\n"
-" * \"%s\": võimaldab partitsioonidega ette\n"
+" * \"Tava/Ekspertresiimi lülitamine\": võimaldab partitsioonidega ette\n"
"võtta lisaoperatsioone (tüüp, võtmed, vorming) ning pakub rohkem infot.\n"
"\n"
-" * \"%s\": Partitsiooni suurust määrates saate seda täpselt paika\n"
-"panna klaviatuuril asuvaid nooleklahve kasutades.\n"
-"\n"
"Märkus: igale võimalusele pääseb ligi ka klaviatuuri abil. Partitsioonidel\n"
"saab liikuda klahvidega [Tab] ning üles-alla nooleklahvidega.\n"
"\n"
@@ -5328,1964 +3715,1347 @@ msgstr ""
"on see päris hea koht, kuhu hädaolukorraks paigutada tagavarakernel\n"
"ja ramdisk-laadepildid."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:513
msgid ""
-"Graphic Card\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
+"\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
"\n"
-" 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"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\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 ""
-"Videokaart\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"
-" Paigaldaja tuvastab ja seadistab tavaliselt automaatselt masinale\n"
-"paigaldatud videokaardi. Kui see ei õnnestu, saate nimekirjast valida\n"
-"kaardi, mis tegelikult on masinale paigaldatud.\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
"\n"
-" Juhul, kui Teie kaardile peaks saada olema erinevaid servereid nii 3D\n"
-"kiirendusega kui ilma, saate valida serveri, mis Teie vajadustele\n"
-"kõige enam vastab."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Pakettide paigaldamisel tekkis viga:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Lexmark inkjeti seadistused"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "Tagasi"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Save partition table"
-msgstr "Kirjuta partitsioonitabel"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "Soome"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "Makedoonia"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
-msgstr ""
-"Kasutaja kaupa jagamise lubamine rakendab gruppi \"fileshare\". \n"
-"Sellesse gruppi kasutajate lisamiseks saab tarvitada userdraket."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "Sloveenia"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Authorize:\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"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-"- only local ones if set to \"LOCAL\"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- none if set to \"NONE\".\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
msgstr ""
-"Autoriseeritakse:\n"
+"Teie arvuti kõvakettal on rohkem kui üks Microsoft Windowsi partitsioon.\n"
+"Palun valige välja see, mille suurust soovite Mandrake Linuxi jaoks muuta.\n"
"\n"
-"- kõik teenused, mida kontrollib tcp_wrappers (vt hosts.deny (5)), kui on "
-"\"KÕIK\",\n"
+"Teie abistamiseks on igal partitsioonil näidatud \"Nimi Linuxis\", \"Nimi "
+"Windowsis\" ja \"Mahutavus\".\n"
"\n"
-"- ainult kohalikud, kui on \"KOHALIK\",\n"
+"\"Nimi Linuxis\" koosneb kõvakettatüübist, selle numbrist ja partitsiooni\n"
+"numbrist (näiteks \"hda1\").\n"
"\n"
-"- mitte ühtegi teenust, kui on \"MITTE KEEGI\".\n"
+"Kõvaketta tüüp on \"hd\", kui on tegemist IDE-kettaga, ja \"sd\", kui on\n"
+"tegemist SCSI-kettaga.\n"
"\n"
-"Vajalike teenuste autoriseerimiseks kasutage faili /etc/hosts.allow (vt "
-"hosts.allow(5))."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr "Liibüa"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Häälestan skriptid, paigaldan tarkvara, käivitan serverid..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Printer paralleelpordis #%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"Kõvaketta number on alati täht \"hd\" või \"sd\" järel. IDE-ketastel:\n"
"\n"
-"- Burn to CD"
-msgstr ""
+" * \"a\" - esmase IDE kontrolleri ülem,\n"
"\n"
-"- Kirjutamine CD-le"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "Tabel"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Ei oska seadet %s vormindada tüüpi %s"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Model"
-msgstr "Mudel"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "USB printer #%s"
-msgstr "USB printer #%s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Stop Server"
-msgstr "Serveri peatamine"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
+" * \"b\" - esmase IDE kontrolleri allutatu,\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
+" * \"c\" - teisese IDE kontrolleri ülem,\n"
"\n"
-"Valige teema LiLo-le\n"
-"ja käivituslogole,\n"
-"neid võib valida\n"
-"ka eraldi"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Modem"
-msgstr "Modem"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr "Tuvalu"
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr "Kasuta automaattuvastust"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
-msgstr ""
-"GPM annab võimaluse kasutada hiirt ka tekstikonsoolil. Lisaks tavalisele\n"
-"lõikamisele/kleepimisele saab kasutada ka menüüsüsteeme."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr "Käivitub laadimisel"
-
-#: ../advertising/12-mdkexpert.pl:1
-#, 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:"
-msgstr ""
-"Ühinege MandrakeSofti tugimeeskondadega ning Linuxi kogukonnaga Internetis, "
-"et jagada oma kogemusi ning aidata ka teistel saada tunnustatud ekspertideks "
-"tehnilise toe veebileheküljel:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "No password aging for"
-msgstr "Salasõna ei aegu"
-
-#: ../../standalone/draksec:1
-#, 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"
-msgstr ""
-"Süsteemi turvalisuse kohandamiseks saab seadistada\n"
-"järgmisi parameetreid. Seletuste saamiseks vaadake abivihjeid.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Otsi automaatselt kõiki kättesaadavaid võrguprintereid"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr "Ida-Timor"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
-msgstr "lindiseadmele"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+" * \"d\" - teisese IDE kontrolleri allutatu.\n"
"\n"
-"- Save to Tape on device: %s"
-msgstr ""
+"SCSI-ketaste puhul on \"a\" esimene, \"b\" teine ja nii edasi.\n"
"\n"
-"- Salvestamine lindile seadmel: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Login name"
-msgstr "Kasutajatunnus"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
-msgstr "Omanikuta failidest teatamine"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr "Kustuta profiil..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Foomaticu paigaldamine..."
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Palun väljuge ja vajutage siis Ctrl-Alt-BackSpace"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected"
-msgstr "tuvastati"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "Võrk tuleb uuesti käivitada. Kas soovite seda teha?"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package: "
-msgstr "Pakett:"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr "/etc/sysconfig/bootsplash kirjutamine ebaõnnestus."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "TURVAHOIATUS!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
-msgstr "Ei taha automaatselt siseneda"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Windowsi ümberkolimise vahend"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr "Kõik keeled"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "%s eemaldamine"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s ei leitud...\n"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Testing your connection..."
-msgstr "Testime Teie ühendust..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cache size"
-msgstr "Puhvri suurus"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Salasõnad on nüüd kasutusel, kuid võrku ühendamine ei ole siiski soovitav."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr "Algsektor: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr "Kongo (Brazzaville)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Read"
-msgstr "Lugeda"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Pakett %s tuleks kindlasti paigaldada. Kas soovite seda teha?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
-msgstr "Seišellid"
+"\n"
+"\"Nimi Windowsis\" on täht, millega Microsoft Windows vastavat seadet\n"
+"tähistab (esimene ketas või partitsioon kannab nime \"C:\")."
-#: ../../printer/printerdrake.pm:1
-#, 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"
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
+msgstr "Palun varuge kannatust. Selleks võib kuluda mõnigi minut."
+
+#: ../../help.pm_.c:547
+msgid ""
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
+"\n"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
+"\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
+"\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
+"\n"
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
+"\n"
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
+"\n"
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
+"\n"
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
+msgstr ""
+"DrakX soovib nüüd teada, kas eelistate sooritada tavalist (\"Soovitatav\")\n"
+"paigaldust või kontrollida seda olulisel määral (\"Ekspert\"). Valida saab "
+"ka\n"
+"seda, kas tegemist on uue paigaldusega või varasema süsteemi uuendamisega.\n"
+"\n"
+" * \"Paigaldamine\": pühib täielikult minema varasema(d) süsteemi(d). "
+"Sõltuvalt\n"
+"sellest, mis on praegu Teie masinale paigaldatud, on siiski võimalik jätta "
+"mõned\n"
+"vanad partitsioonid (olgu Linux või mitte) muutmata.\n"
+"\n"
+" * \"Uuendamine\": selle abil saab uuendada praeguse Mandrake Linuxi "
+"süsteemi\n"
+"pakette. Kõvaketta partitsioonid ja kasutaja(te) seadistused jäävad "
+"puutumata.\n"
+"Muud seadistamisjärgud on siiski sarnaselt tavapaigaldusele interaktiivsed.\n"
+"\n"
+" * \"Ainult pakettide uuendamine\": see uus paigaldusviis võimaldab "
+"uuendada\n"
+"olemasolevat Mandrake Linuxi süsteemi, jättes kõik selle seadistused "
+"puutumata.\n"
+"Praegusele süsteemile on võimalik lisada ka uusi pakette.\n"
+"\n"
+"Uuendamine peaks toimina edukalt Mandrake Linuxi süsteemidel, mille "
+"versioon\n"
+"on \"8.1\" või uuem.\n"
+"\n"
+"Sõltuvalt Teie GNU/Linuxi alastest teadmistest saate valida erineva "
+"tasemega\n"
+"paigaldus- või uuendusmeetodi:\n"
+"\n"
+"* Soovitatav: Te ei ole varem GNU/Linuxit paigaldanud. Kõik tehakse lihtsaks "
+"ja esitatakse vähe küsimusi.\n"
+"\n"
+"* Ekspert: Te tunnete end GNU/Linuxi keskkonnas vabalt ja soovite\n"
+"süsteemi, mis sobiks nagu valatult Teie täpsete ootustega.\n"
+"Aga palun, palun: ÄRGE VALIGE SEDA, KUI TE TÄPSELT EI TEA, MIDA TEETE!"
+
+#: ../../help.pm_.c:582
+msgid ""
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
-"For your printer Printerdrake has found:\n"
+"Click on the \"More\" button to be presented with the complete list of\n"
+"supported keyboards.\n"
"\n"
-"%s"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
msgstr ""
-"Printerdrake võrdles printeri automaattuvastusel leitud mudelinime oma "
-"printeri andmebaasis leiduvate mudelitega, et leida sobiv vaste. Valik võib "
-"olla ekslik, eriti juhul, kui Teie printerit ei peaks mingil põhjusel "
-"andmebaasis leiduma. Seepärast kontrollige, kas valik on õige ning vajutage "
-"\"Mudel õige\", kui see on nii, või \"Mudeli valik käsitsi\", kui midagi on "
-"valesti, mille järel saate järgmisel sammul valida printeri mudeli "
-"iseseisvalt.\n"
+"Tavaliselt valib DrakX klaviatuuri Teie eest juba ära (sõltuvalt valitud\n"
+"keelest). Kuid see võib tekitada olukorra, kus Teil ikkagi pole just see\n"
+"klaviatuur, mida soovite: kui olete näiteks inglise keelt kõnelev\n"
+"šveitslane, võite siiski soovida Šveitsi asetusega klaviatuuri. Teine kohe\n"
+"pähe tulev juhtum on inglise keele kõneleja Quebecis. Mõlemal juhul on\n"
+"mõtet naasta paigalduse selle sammu juurde ja valida loendist vajalik\n"
+"klaviatuur.\n"
"\n"
-"Teie printeri puhul leidis Printerdrake:\n"
+"Klõpsake nupul \"Rohkem\", mis näitab kõiki toetatud klaviatuure.\n"
"\n"
-"%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Bad password on %s"
-msgstr "Halb parool %s puhul"
+"Kui valite mitte-ladina tähestikuga klaviatuuri, palutakse Teil järgmises\n"
+"dialoogis valida klahv või klahvikombinatsioon, mis vahetab ladina ja\n"
+"mitte-ladina asetusega klaviatuuri."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:598
msgid ""
+"The first step is to choose your preferred language.\n"
"\n"
-"There is one unknown printer directly connected to your system"
+"Please choose your preferred language for installation and system usage.\n"
+"\n"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
+"\n"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
+"Esimene samm on meelepärase keele valik.\n"
"\n"
-"Üks tundmatu printer on Teie süsteemi otse ühendatud"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Control key"
-msgstr "Parempoolne Ctrl-klahv"
+"Palun valige keel, mida kasutada paigaldamisel ja hilisemas töös.\n"
+"\n"
+"Klõpsates nupul \"Muud\", võite valida muid keeli, mida Teie tööjaamale\n"
+"paigaldada. Teiste keelte valikul paigaldatakse vastava keele rakenduste\n"
+"ja dokumentatsiooni failid. Kui Teie masinal töötab näiteks kasutajaid\n"
+"Hispaaniast, valige puuvaates põhikeeleks inglise keel ning sektsioonis\n"
+"\"Muud\" märkige ära \"Hispaania|Hispaania\".\n"
+"\n"
+"Paigaldada võib ka mitu keelt. Kui olete valinud, millised lisakeeled\n"
+"paigaldada, klõpsake jätkamiseks nupul \"Olgu\".\n"
+"\n"
+"Ühelt keelelt teisele lülitumiseks võite administraatorina anda käsu\n"
+"\"/usr/sbin/localedrake\", mis võimaldab muuta kogu süsteemi keelt,\n"
+"või tavakasutajana muuta ainult enda kohta käivat keeleseadistust."
-#: ../../network/tools.pm:1
-#, c-format
+#: ../../help.pm_.c:617
msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
+"\n"
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
+"\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
msgstr ""
-"Pange FAT-vormingus flopi seadmesse %s, nii et %s oleks juurkataloogis, ning "
-"vajutage %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "Sambia"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr "Turvaadministraator (kasutajatunnus või e-posti aadress)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr "Vabandust, me toetame ainult 2.4 kerneleid."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr "Rumeenia (QWERTY)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
-msgstr "Tegutsen... palun oodake."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "Egiptus"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "Tšehhi"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "Helikaart"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Import Fonts"
-msgstr "Fontide importimine"
+"Tavaliselt tuvastab DrakX hõlpsasti, mitme nupuga hiirt Te kasutate. Kui\n"
+"see välja ei tule, eeldatakse, et Teil on kahe nupuga hiir, ning "
+"kasutatakse\n"
+"kolmanda nupu emuleerimist. DrakX tuvastab automaatselt, kas tegemist on\n"
+"PS/2, jadapordi või USB-hiirega.\n"
+"\n"
+"Kui soovite muuta hiiretüüpi, valige pakutud nimekirjast sobiv tüüp.\n"
+"\n"
+"Kui valite mõne muu hiiretüübi kui vaikimisi määratu, palutakse Teil seda\n"
+"testida. Kasutage nuppe ja ratast kontrollimaks, et valik oli õige. Kui\n"
+"hiir ei käitu korralikult, vajutage tühikuklahvi või klahvi [Return], mis "
+"viib\n"
+"Teid tagasi dialoogi ja lubab sooritada uue valiku.\n"
+"\n"
+"Vahel ei õnnestu rattaga hiirt automaatselt tuvastada. Siis tuleb see "
+"loendist\n"
+"käsitsi valida. Kontrollige, et valite õigesse porti ühendatud hiiretüübi. "
+"Kui\n"
+"vajutate nupule \"Olgu\", näidatakse hiire kujutist. Siis tuleb Teil "
+"liigutada\n"
+"hiireratast, et see korrektselt aktiveerida. Seejärel testige, kas kõik "
+"nupud\n"
+"ja liigutused toimivad korralikult."
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../help.pm_.c:638
msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"Teil on üks suur FAT partitsioon\n"
-"(tavaliselt kasutab sellist MS DOS/Windows)\n"
-"Soovitame Teil esmalt selle suurust muuta\n"
-"(klõpsake ja siis valige \"Muuda\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Ajutiste failide kustutamine"
+"Palun valige õige port. Näiteks MS Windowsi \"COM1\" kannab\n"
+"GNU/Linuxis nime \"ttyS0\"."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+#: ../../help.pm_.c:642
+msgid ""
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
"\n"
-msgstr ""
-"Õnnitleme, võrk ja internetiühendus on seadistatud.\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
"\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "Muuda partitsiooni tüüpi"
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Resolution\n"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
"\n"
-" 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."
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
+"\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
+"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
msgstr ""
-"Kuvatihedus\n"
+"Nüüd on kätte jõudnud kõige olulisem hetk Teie arvuti turvalisuse "
+"tagamisel:\n"
+"Teil tuleb määrata \"administraatori\" parool. Administraator haldab kogu\n"
+"süsteemi ja ainult temal on õigus uuendusi ette võtta, kasutajaid lisada, "
+"muuta\n"
+"kogu süsteemi seadistusi ja nii edasi. Ehk teisisõnu - administraator võib "
+"teha\n"
+"kõike! Seepärast tuleks parool valida selline, mida oleks raske ära arvata.\n"
+"DrakX ütleb Teile, kui parool tundub olevat liiga lihtne. Te võite muidugi "
+"jätta\n"
+"ka parooli sisestamata, aga me soovitame väga tungivalt seda siiski teha - \n"
+"kasvõi juba sel põhjusel, et kuigi Te paigaldate endale GNU/Linuxi "
+"süsteemi,\n"
+"ei tähenda see veel, et vigu ette ei võiks tulla. Kuna administraator võib\n"
+"kõiki piiranguid muuta ning vahel tahtmatultki kustutada oma hooletu\n"
+"tegevusega kõik andmed mingilt partitsioonilt, on päris oluline, et\n"
+"administraatoriks saamine ei oleks eriti lihtne.\n"
"\n"
-" Siin saate valida Teie riistvaraga sobiva kuvatiheduse ja värvisügavuse.\n"
-"Kui Te paigalduse järel leiate, et siin valitu siiski ei kõlba, saate seda\n"
-"hiljem muuta. Valitud seadistust näidatakse monitoril."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Network Options"
-msgstr "Võrguparameetrid"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable msec hourly security check"
-msgstr "Msec igatunnise turvakontrolli lubamine"
+"Parool võib koosneda nii tähtedest kui numbritest ja peab olema vähemalt\n"
+"8 (kaheksa) märki pikk. Ärge pange kunagi administraatori parooli kirja - "
+"see\n"
+"võib muuta ligipääsu Teie süsteemile võõrastele liiga hõlpsaks.\n"
+"\n"
+"Kui Te parooli sisestate, seda ekraanil ei näidata. Te peate selle "
+"sisestama\n"
+"kaks korda, mis väldib kirjutamisvea võimaluse. Siiski, kui Te teete "
+"ühesuguse\n"
+"vea kaks korda järjest, on just see \"vigane\" parool, mida Teilt oodatakse\n"
+"administraatorina sisselogimisel.\n"
+"\n"
+"Ekspertresiimis päritakse Teie käest, kas soovite ühendust mõne\n"
+"autentimisserveriga (nt NIS või LDAP).\n"
+"\n"
+"Kui Teie võrgus on kasutusel LDAP või PDC Windowsi domeeni autentimise\n"
+"teenused, valige neist sobilik autentimismeetodiks. Kui Te aga ei juhtu "
+"teadma,\n"
+"mida teha, pöörduge oma võrgu administraatori poole.\n"
+"\n"
+"Kui arvuti ei ole ühendatud ühtegi administreeritavasse võrku, on mõttekas\n"
+"valida autentimisviis \"Kohalikud failid\"."
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../help.pm_.c:678
msgid ""
-"Display theme\n"
-"under console"
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, 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 in doubt, DrakX will display a dialog with various options.\n"
+"\n"
+" * \"Bootloader to use\": you have three choices:\n"
+"\n"
+" * \"GRUB\": if you prefer grub (text menu);\n"
+"\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\n"
+"\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
+"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
+"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
+"\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\n"
+"\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
msgstr ""
-"Teema näitamine\n"
-"konsoolis"
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr "(masinal %s)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "MM seeria"
+"LILO ja grub on GNU/Linuxi alglaadurid. Tavaliselt käib see täiesti "
+"automaatselt.\n"
+"DrakX analüüsib Teie kõvaketta algsektorit ning tegutseb vastavalt sellele,\n"
+"mida ta sealt leiab:\n"
+"\n"
+" * kui avastatakse Windowsi alglaadimissektor, asendatakse see grub/LILO\n"
+"alglaadimissektoriga, pärast mida on Teil võimalus laadida kas GNU/Linux\n"
+"või mõni muu operatsioonisüsteem.\n"
+"\n"
+" * kui leitakse grubi või LILO alglaadimissektor, asendatakse see uuega.\n"
+"\n"
+"kui DrakX ei suuda selgusele jõuda, palub ta valiku teha Teil.\n"
+"\n"
+" * \"Alglaaduri valik\": siin on kolm valikut:\n"
+"\n"
+" * \"GRUB\": kui eelistate grubi (tekstimenüü).\n"
+"\n"
+" * \"LILO graafilisena\": kui eelistate LILOt graafilisel kuju.\n"
+"\n"
+" * \"LILO tekstiresiimis\": kui eelistate LILOt teksti kujul.\n"
+"\n"
+" * \"Alglaadimisseade\": enamasti ei ole sügavat mõtet muuta vaikimisi "
+"valikut\n"
+"(\"/dev/hda\"), aga kui Te väga soovite, võib alglaaduri paigaldada ka "
+"teisele\n"
+"kõvakettale (\"/dev/dhdb\") või isegi flopikettale (\"/dev/fd0\").\n"
+"\n"
+" * \"Viivitus\": arvutile alglaadimist tehes pakutakse Teile võimalust "
+"väikeseks\n"
+"pausiks, mille jooksul saab alglaadimismenüüst valida mõne muu kirje kui\n"
+"vaikimisi pakutu.\n"
+"\n"
+"!! Pange tähele, et kui Te otsustate alglaadurit mitte paigaldada (klõpsates "
+"siin\n"
+"nupule \"Katkesta\"), peate kuidagi leidma mooduse, kuidas oma Mandrake\n"
+"Linux siiski tööle saada! Ja päris hea oleks, kui Te kindlalt teaksite, mida "
+"teete,\n"
+"enne kui mõnda siin pakutud võimalust muuta. !!\n"
+"\n"
+"Klõpsuga nupul \"Muud\" saab näha veel mitmeid valikuid, mis on mõeldud\n"
+"kogenud kasutajatele."
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:718
msgid ""
-"A library which defends against buffer overflow and format string attacks."
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"Teek, mis kaitseb puhvri ületäite ja vormingustringide rünnakute vastu."
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr "keskmine"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "New printer name"
-msgstr "Uus printeri nimi"
+"Kui olete määranud alglaaduri üldised parameetrid, näidatakse loendit\n"
+"alglaadimise ajal kasutatavatest valikutest.\n"
+"\n"
+"Kui masinale on paigaldatud veel mõni operatsioonisüsteem, lisatakse see\n"
+"automaatselt alglaaduri menüüsse. Siin saate olemasolevaid valikuid oma\n"
+"maitse järgi häälestada. Valige kirje ja klõpsake nupul \"Muuda\" selle\n"
+"muutmiseks või kustutamiseks. \"Lisa\" võimaldab luua uue kirje ning\n"
+"\"Tehtud\" viib Teid paigalduse järgmise sammu juurde.\n"
+"\n"
+"Teil võib muidugi olla ka soov mitte anda kellelegi ligipääsu teistele\n"
+"operatsioonisüsteemidele, millisel juhul võite vastavad kirjed kustutada.\n"
+"Aga siis läheb Teil kindlasti vaja alglaadimisketast, et ka ise neile ligi "
+"pääseda!"
-#: ../../fs.pm:1
-#, c-format
+#: ../../help.pm_.c:732
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 )."
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\n"
+"\n"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
msgstr ""
-"Võimaldab tavakasutajal failisüsteemi haakida. Haakimist\n"
-"teostava kasutaja nimi kirjutatakse mtab-i, nii et ta saab ka\n"
-"failisüsteemi lahutada. See võti tähendab võtmeid noexec,\n"
-"nosuid ja nodev (kui neid ei tühista järgnevad võtmed, nagu\n"
-"näiteks võtmerida user,exec,dev,suid )."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr "Ekvatoriaal-Guinea"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup System"
-msgstr "süsteemseid faile"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Build Backup"
-msgstr "Loo varukoopia"
+"Nüüd peate valima, milliselt kettaosalt soovite GNU/Linuxit laadida.\n"
+"\n"
+"Valige \"Kõvaketta esimene sektor (MBR)\", kui Te ei tea täpselt, mida\n"
+"teha."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:739
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
+"\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
+"\n"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
msgstr ""
-"Faili trükkimiseks käsurealt (terminaliaken) kasutage käsku \"%s <fail>\" "
-"või \"%s <fail>\".\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Praegu ei ole ühtegi teist võimalust"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwertz)"
-msgstr "Rumeenia (QWERTZ)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Write Config"
-msgstr "Salvesta seadistus"
+"Siin saate valida oma arvutile trükkimissüsteemi. Teised "
+"operatsioonisüsteemid\n"
+"võivad Teile pakkuda vaid üht süsteemi, kuid Mandrake Linuxi puhul saate\n"
+"valida tervelt kahe seast.\n"
+"\n"
+" * \"pdq\" - mis tähendab ``trüki kohe'' (``print, don't queue'') - tuleks "
+"valida siis,\n"
+"kui Teil on printeriga otseühendus, Te ei soovi näha mingeid järjekordi ja "
+"Teil\n"
+"ei ole võrgus asuvaid printereid. Võrkude puhul on \"pdq\" mõnevõrra aeglane "
+"ja\n"
+"tal võib esineda tegutsemisraskusi. Kui see on Teie esimene retk GNU/Linuxi\n"
+"maailma, valige \"pdq\". Kui soovite valikut hiljem muuta, siis saate seda "
+"teha\n"
+"Mandrake juhtimiskeskuses PrinterDrake abil.\n"
+"\n"
+" * \"CUPS\" - ``tavaline UNIXi trükkimissüsteem'' (``Common Unix Printing\n"
+"System'') - on hiilgav valik trükkimiseks Teie kohalikul printeril ja veel "
+"nii pooles\n"
+"maailmas. See on lihtne süsteem, mis võib olla nii kliendiks kui serveriks "
+"iidsele\n"
+"trükkimissüsteemile \"lpd\". See on ka ühilduv varasemate süsteemidega. "
+"\"CUPS\"\n"
+"suudab teha palju asju, kuid põhitegutsemine on sama lihtne kui \"pdq\" "
+"puhul.\n"
+"Kui Teil on vajadus emuleerida \"lpd\"-serverit, tuleb sisse lülitada\n"
+"\"cups-lpd\"-deemon. \"CUPSil\" on ka mitu graafilist kasutajaliidest\n"
+"trükkimiseks või printeri seadistamiseks."
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:759
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."
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"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 does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
+"\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
msgstr ""
-"Routed on RIP deemon, mis vahetab selle protokolli alusel\n"
-"marsruutimisinfot. Kui Teil on RIP kasutusel, on vajalik ka routed."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr "Kiribati"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech (jadaport, vana C7 tüüpi) ratta emuleerimisega"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Muud (drakbackupi-välised) võtmed on juba paigas"
+"Esmalt otsib DrakX üles kõik Teie arvuti IDE-seadmed, püüdes samal ajal\n"
+"tuvastada ka PCI siini SCSI-liideseid. Kui viimaseid leitakse ja vastav(ad)\n"
+"draiver(id) on teada, siis laetakse ja paigaldatakse kõik vajalik "
+"automaatselt.\n"
+"\n"
+"Riistvara tuvastamine ei pruugi alati siiski õnnestuda ja kui see nii "
+"peaks \n"
+"minema, palub DrakX Teil teatada, kas masinas on mõni PCI SCSI-liides.\n"
+"Vajutage \"Jah\", kui olete kindel, et Teil on SCSI-liides, ning seejärel\n"
+"palutakse Teil ilmuvast loendist sobiv valida. Kui SCSI-liidest ei ole, on "
+"mõtet\n"
+"vastata \"Ei\". Kui Te ei ole kindel, võite kontrollida oma masina "
+"riistvara,\n"
+"vajutades \"Näita riistvara infot\" ja \"Olgu\". Vaadake riistvara nimekiri "
+"üle\n"
+"ning vajutage \"Olgu\", mis toob Teid tagasi SCSI-liidese küsimuse juurde.\n"
+"\n"
+"Kui peate oma adapteri käsitsi määrama, küsib DrakX, kas soovite määrata\n"
+"ka selle parameetrid. Siin oleks mõtet lasta tegutseda DrakX-l, mis proovib\n"
+"järele liidese spetsiifilised omadused, mida see initsialiseerimiseks "
+"vajab.\n"
+"Tavaliselt õnnestub see edukalt.\n"
+"\n"
+"Kui automaatne parameetrite otsimine ei tööta, tutvuge palun lähemalt\n"
+"oma SCSI liidese dokumentatsiooniga või küsige abi riistvara müüjalt."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:781
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"
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
"\n"
-"You will be presented with a list of different parameters to change to get\n"
-"an optimal graphical display: Graphic Card\n"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\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"
+"For Linux, there are a few possible options:\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"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
"\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
"\n"
-"Monitor\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
"\n"
-" 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"
+" 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"
-"Resolution\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
"\n"
-" 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"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
"\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support;\n"
"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
+msgstr ""
+"Yabooti jaoks on võimalik lisada kirjeid kas teiste operatsioonisüsteemide,\n"
+"alternatiivsete kernelite või hädaolukorras alglaadimistõmmise leidmiseks.\n"
"\n"
-"Test\n"
+"Teiste operatsioonisüsteemide kirje sisaldab vaid pealdist ja "
+"juurpartitsiooni.\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"
+"Linuxi puhul on võimalusi rohkem:\n"
"\n"
+" * Pealdis: lihtsalt nimetus, mida tuleb kirjutada, kui yaboot pärib teilt "
+"alglaadimise\n"
+"ajal, mida laadida.\n"
"\n"
+" * Laadepilt: alglaaditava kerneli nimetus, tavaliselt vmlinux koos või ilma "
+"laiendita.\n"
"\n"
-"Options\n"
+" * Juur: juurseade ehk Teie Linuxi ``/''.\n"
"\n"
-" Here you can choose whether you want to have your machine automatically\n"
-"switch to a graphical interface at boot. Obviously, you want to check\n"
-"\"%s\" if your machine is to act as a server, or if you were not successful\n"
-"in getting the display configured."
-msgstr ""
-"X (ehk X Window System) kujutab endast GNU/Linuxi graafilise "
-"kasutajaliidese\n"
-"tuuma ja südant, millele toetuvad kõik Mandrake Linuxiga kaasas käivad\n"
-"graafilised töökeskkonnad (KDE, GNOME, AfterStep, WindowMaker jne).\n"
+" * Lisand: eriti Apple'i puhul kasutatakse kerneli lisa sageli "
+"videoriistvara lähtestamiseks\n"
+"või hiirenupu emuleerimiseks klaviatuuril, sest Apple'i riistvarapoodides on "
+"vaid\n"
+"harva näha kahe või kolme nupuga hiiri. Mõned näited:\n"
"\n"
-"Siin näidatakse Teile tervet nimekirja parameetreid, mida saab muuta,\n"
-"et graafiline kasutajaliides oleks just Teile meelepärane: Videokaart\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"hda=autotune\n"
"\n"
-" Paigaldaja tuvastab ja seadistab tavaliselt automaatselt masinale\n"
-"paigaldatud videokaardi. Kui see ei õnnestu, saate nimekirjast valida\n"
-"kaardi, mis tegelikult on masinale paigaldatud.\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
-" Juhul, kui Teie kaardile peaks saada olema erinevaid servereid nii 3D\n"
-"kiirendusega kui ilma, saate valida serveri, mis Teie vajadustele\n"
-"kõige enam vastab.\n"
+" * Initrd: seda võimalust võib kasutada kas initsialiseerimismoodulite "
+"laadimiseks\n"
+"enne alglaadimisseadmeni jõudmist või ramdisk-laadepildi laadimiseks\n"
+"hädaolukorras.\n"
"\n"
+" * Initrd-size: ramdiski suurus on tavaliselt 4096 baiti. Kui teil peaks "
+"minema\n"
+"tarvis suuremat, saab seda siin määrata.\n"
"\n"
+" * Read-write: tavaliselt initsialiseeritakse juurpartitsioon esmalt vaid "
+"loetavana,\n"
+"et sooritada failisüsteemi kontroll enne seda, kui süsteem ``ellu ärkab''.\n"
+"Siin saab seda muuta.\n"
"\n"
-"Monitor\n"
+" * NoVideo: kui Apple'i videoriistvara peaks olema tõeliselt "
+"problemaatiline,\n"
+"saab siin valida võimaluse teha alglaadimine resiimis ``novideo'' ehk siis\n"
+"native frame-buffer toega.\n"
"\n"
-" Paigaldaja tuvastab ja seadistab tavaliselt automaatselt Teie masinaga\n"
-"ühendatud monitori. Kui see ei peaks siiski õnnestuma, saate siin toodud\n"
-"nimekirjast valida monitori, mis Teil tegelikult on.\n"
+" * Vaikimisi: määrab antud kirje vaikimisi Linuxi valikuks, mida saab "
+"alglaadida\n"
+"yabooti käsurea ilmudes vaid vajutusega klahvile ENTER. Kui vajutate "
+"alglaadimise\n"
+"valikute uurimiseks [Tab], on see kirje märgistatud tärniga (``*'')."
+
+#: ../../help.pm_.c:828
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
"\n"
+"Yaboot's main options are:\n"
"\n"
+" * Init Message: a simple text message displayed before the boot prompt;\n"
"\n"
-"Kuvatihedus\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"
-" Siin saate valida Teie riistvaraga sobiva kuvatiheduse ja värvisügavuse.\n"
-"Kui Te paigalduse järel leiate, et siin valitu siiski ei kõlba, saate seda\n"
-"hiljem muuta. Valitud seadistust näidatakse monitoril.\n"
+" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+"yaboot. The first delay is measured in seconds and at this point, you can\n"
+"choose between CD, OF boot, MacOS or Linux;\n"
"\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\n"
"\n"
-"Test\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
-" süsteem püüab avada graafilist akent soovitud kuvatihedusega. Kui näete\n"
-"testi ajal sõnumit ja vastate \"%s\", suundub DrakX järgmise sammu juurde.\n"
-"Kui Te sõnumit ei näe, tähendab see, et miski automaatselt tuvastatud\n"
-"seadistuses oli mäda ja test lõpeb automaatselt 12 sekundi pärast, tuues\n"
-"Teid menüüsse tagasi. Seal saate muuta seadistusi, kuni Teil õnnestub\n"
-"leida see, mis tagab korrektse ja meelepärase graaafilise kasutajaliidese.\n"
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
+msgstr ""
+"Yaboot on alglaadur NewWorld Macintosh riistvara jaoks. See suudab laadida "
+"nii\n"
+"GNU/Linuxi, MacOSi kui MacOSX, kui need on Teil olemas. Tavaliselt\n"
+"tuvastatakse ja paigaldatakse need operatsioonisüsteemid korrektselt.\n"
+"Kui see nii ei ole, saate praegu käsitsi kirjeid lisada. Kuid olge "
+"parameetrite\n"
+"valikul hästi hoolas ja ettevaatlik.\n"
"\n"
+"Yabooti põhivalikud on järgmised:\n"
"\n"
+" * Initsialiseerimisteade: tavaline tekstisõnum, mida näidatakse enne\n"
+"alglaadimise käsurea ilmumist.\n"
"\n"
-"Valikud\n"
+" * Alglaadimisseade: näitab, kuhu soovite panna info, mida läheb vaja\n"
+"GNU/Linuxi algkäivituseks. Üldiselt tuleks selle info tarbeks juba varem "
+"luua\n"
+"alglaadimispartitsioon.\n"
"\n"
-" Siin saab määrata, kas soovite, et masin käivitaks alglaadimise ajal\n"
-"automaatselt graafilise kasutajaliidese. Ilmselt on Teie vastus \"%s\",\n"
-"kui soovite, et masin toimiks serverina, või kui Teid ei kippunud\n"
-"seadistamise ajal edu saatma."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr "Lehitse"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr "CD-ROM"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Kas soovite oma Internetiühendust proovida?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "Belgia"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Kas Teil on ISA helikaart?"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Ühtegi võrgukaarti ei õnnestunud tuvastada\n"
-"Seega ei saa ka sellist ühendust seadistada."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Windows"
-msgstr "Windows"
-
-#: ../../common.pm:1
-#, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "Hetktõmmiseid ei saa teha enne partitsioneerimist"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Name"
-msgstr "Masinanimi"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Fail/Salvesta _Kui"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"Juurdepääsu saamiseks CUPS serverite printeritele Teie kohtvõrgus tuleb vaid "
-"ära märkida võimalus \"Otsi automaatselt kõiki kättesaadavaid võrguprintereid"
-"\". CUPS serverid annavad Teie masinale automaatselt teada oma printeritest. "
-"Kõik Teie masinale parajasti kättesaadavad printerid on näidatud "
-"Printerdrake peaakna sektsioonis \"Võrguprinterid\". Kui CUPS server(id) ei "
-"asu kohtvõrgus, tuleb nende kohta info hankimiseks sisestada IP aadress(id) "
-"ning võimaluse/vajaduse korral ka pordi number."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr "%s puudub skännerite andmebaasis, kas seadistada see käsitsi?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "Ooteaeg alglaadimisel"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Restrict command line options"
-msgstr "Piira käsurea suvandeid"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "East Europe"
-msgstr "Ida-Euroopa"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "Kasuta vaba ruumi"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "dhcp"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr "Meilihoiatus"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Internet configuration"
-msgstr "Internetiseadistused"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr "Usbekistan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected %s"
-msgstr "Tuvastati %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/_Printerite automaattuvastus"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "Lõpeta"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Näita automaatselt valitud pakette"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr "Togo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "CPU lipud kerneli teatel"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Midagi läks valesti! - Kas mkisofs on ikka paigaldatud?"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "Palun proovige veel"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The model is correct"
-msgstr "Mudel õige"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FATi suuruse muutmine ebaõnnestus: %s"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr "Valik paketthaaval"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr "See partitsioon ei ole muudetav"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr "Asukoht"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "USA (kaabel-hrc)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr "Kirjendatud FS"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr "Võrgukaardi mitte-eelisoleku kontroll"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
-msgstr "See masin"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS kettatähis: %s (arvatavasti)\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr "Bahrein"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Valige failid või kataloogid ja klõpsake 'Olgu'"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit scsi modules"
-msgstr "scsi moodulite vahelejätt"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "CPU perekond (nt 6, kui on i686)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Võrguühendus on juba seadistatud, sest paigaldatakse ju võrgust.\n"
-"Kui soovite neid seadistusi säilitada, valige 'Olgu', muidu katkestage ja "
-"saate seadistada uuesti.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
-msgstr "Igapäevase turvakontrolli lubamine"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Klaviatuuriasetus: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"Siin saate valida, millised selle arvuti külge kinnitatud printerid peaksid "
-"olema kättesaadavad ka teistele kohtvõrgu arvutitele ja millistele nende "
-"hulgast."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr "Malta (USA)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "Alglaadimisflopi loomine edukalt lõpetatud \n"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Haagib ja lahutab kõiki võrgufailisüsteeme\n"
-"(nii NFS, SMB kui ka NCP)."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Launch the wizard"
-msgstr "Nõustaja käivitamine"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Tvcard"
-msgstr "TV-kaart"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Ekspert > Tavakasutaja"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr "Suurus"
-
-#: ../../help.pm:1
-#, c-format
-msgid "GRUB"
-msgstr "GRUB"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr "Gröönimaa"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "Neljapäev"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Lindi nimi pole korrektne. Lint kannab nime %s."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
+" * Open Firmware viivitus: Erinevalt LILOst on yabooti puhul võimalik kaks\n"
+"viivitust. Esimest mõõdetakse sekundites ning selle ajal on Teil võimalik "
+"valida\n"
+"CD või OF alglaadimise, MacOS-i või Linuxi vahel.\n"
"\n"
-"What would you like to do?"
-msgstr ""
-"Internetiühenduse jagamine on juba seadistatud\n"
-"ja see on ka praegu aktiivne.\n"
+" * Kernel alglaadimise viivitus: See on sarnane LILO alglaadimise "
+"viivitusele.\n"
+"Pärast Linuxi valimist tekib sekundikümnendikes määratav viivitus, enne kui\n"
+"valitakse kerneli vaikekirjeldus.\n"
"\n"
-"Mida soovite ette võtta?"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Kustuta kõik võrgu alglaadefailid"
+" * Lubada alglaadimine CD-lt?: Selle valimine võimaldab alglaadimise "
+"käsureale\n"
+"``C'' kirjutades valida CD.\n"
+"\n"
+" * Lubada OF alglaadimine?: Selle valimine võimaldab alglaadimise käsureale\n"
+"``N'' kirjutades valida Open Firmware.\n"
+"\n"
+" * OS vaikimisi: Siin võite valida, milline operatsioonisüsteem laaditakse "
+"vaikimisi,\n"
+"kui Open Firmware viivitus läbi saab."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:860
msgid ""
-"This dialog allows you to fine tune your bootloader:\n"
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
"\n"
-" * \"%s\": there are three choices for your bootloader:\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
"\n"
-" * \"%s\": if you prefer grub (text menu).\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
"\n"
-" * \"%s\": if you prefer LILO with its text menu interface.\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
-" * \"%s\": if you prefer LILO with its graphical interface.\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\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"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\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"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\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."
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
msgstr ""
-"See dialoog aitab täpselt häälestada alglaadimist:\n"
-"\n"
-" * \"%s\": siin on kolm valikut:\n"
+"Siin näidatakse mitmeid Teie masinat puudutavaid parameetreid. Sõltuvalt\n"
+"riistvarast võite siin näha (või mitte näha) järgmisi kirjeid:\n"
"\n"
-" * \"%s\": kui eelistate grubi (tekstimenüü).\n"
+" * \"Hiir\": võimalus kontrollida hiire seadistusi ja neid vajadusel muuta.\n"
"\n"
-" * \"%s\": kui eelistate LiLot teksti kujul.\n"
+" * \"Klaviatuur\": võimalus kontrollida klaviatuuritabeli seadistusi ja "
+"neid\n"
+"vajaduse korral muuta.\n"
"\n"
-" * \"%s\": kui eelistate LiLot graafilisel kujul.\n"
+" * \"Ajavöönd\": DrakX arvab vaikimisi ajavööndi ära valitud keele põhjal. "
+"Kuid\n"
+"nagu klaviatuuri puhul, võib ka siin ette tulla, et Te ei viibi näiteks "
+"maal,\n"
+"millele valitud keel vastab. Sellisel juhul tuleks klõpsata nupul \"Ajavöönd"
+"\",\n"
+"et seada kell selle ajavööndi ajale, kus Te parajasti viibite.\n"
"\n"
-" * \"%s\": enamasti ei ole sügavat mõtet muuta vaikimisi valikut\n"
-"(\"%s\"), aga kui Te väga soovite, võib alglaaduri paigaldada ka teisele\n"
-"kõvakettale (\"%s\") või isegi flopikettale (\"%s\").\n"
+" * \"Printer\": klõps nupul \"Printer puudub\" avab printeri seadistamise "
+"nõustaja.\n"
+"Seda, kuidas uut printerit seadistada, vaadake lähemalt käivitusjuhiste "
+"vastavast\n"
+"peatükist. Siin nähtav on sarnane paigaldusajal nähtuga.\n"
"\n"
-" * \"%s\": arvutile alglaadimist tehes pakutakse Teile võimalust väikeseks\n"
-"pausiks, mille jooksul saab alglaadimismenüüst valida mõne muu kirje kui\n"
-"vaikimisi pakutu.\n"
+" * \"Helikaart\": kui süsteemis leiti helikaart, näidatakse seda. Paigalduse "
+"ajal pole\n"
+"seda võimalik (ümber) seadistada.\n"
"\n"
-"!! Pange tähele, et kui Te otsustate alglaadurit mitte paigaldada (klõpsates "
-"siin\n"
-"nupule \"%s\"), peate kuidagi leidma mooduse, kuidas oma Mandrake\n"
-"Linux siiski tööle saada! Ja päris hea oleks, kui Te kindlalt teaksite, mida "
-"teete,\n"
-"enne kui mõnda siin pakutud võimalust muuta. !!\n"
+" * \"TV-kaart\": kui süsteemis leiti TV-kaart, näidatakse seda. Paigalduse "
+"ajal pole\n"
+"seda võimalik (ümber) seadistada.\n"
"\n"
-"Klõpsuga nupul \"%s\" saab näha veel mitmeid valikuid, mis on mõeldud\n"
-"kogenud kasutajatele."
+" * \"ISDN-kaart\": kui süsteemis leiti ISDN-kaart, näidatakse seda. Nupule "
+"vajutades\n"
+"saab muuta sellega seonduvaid parameetreid."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../help.pm_.c:891
msgid ""
-"if set, send the mail report to this email address else send it to root."
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
-"Kui on lubatud, saadab meiliraporti sellele aadressile, muidu "
-"administraatorile."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Millist XFree seadistust soovite kasutada?"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "More"
-msgstr "Veel..."
+"Valige kõvaketas, mida soovite puhastada oma uue Mandrake Linuxi\n"
+"paigaldamiseks. Ettevaatust, kõik sellel leiduvad andmed hävitatakse\n"
+"ega ole enam taastatavad."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:896
msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"Kasutatakse samasugust süntaksit, nagu tarvitab käsurearakendus 'cdrecord'. "
-"'cdrecord -scanbus' näitab ka seadme numbrit."
+"Valige \"Olgu\", kui soovite kustutada kõik sellel kettal asuvad\n"
+"partitsioonid. Ettevaatust, pärast \"Olgu\" klõpsamist ei ole enam\n"
+"võimalik sellelt kettalt andmeid taastada.\n"
+"\n"
+"Katkestamiseks valige \"Katkesta\"."
-#: ../../security/level.pm:1
+#: ../../install2.pm_.c:111
#, 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."
+"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 ""
-"Sellel turvatasemel võib süsteemi kasutada Internetis ka serverina.\n"
-"Turvalisus on nüüd piisavalt kõrge, et töötades serverina võib masin\n"
-"vastu võtta ka palju kliente. Märkus: kui Teie masin kasutab Internetti\n"
-"ainult kliendina, võiks valida madalama taseme."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Server Name"
-msgstr "Serveri nimi"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Password"
-msgstr "Salasõna"
+"Ligipääs Teie kernelile vastavatele kerneli moodulitele ebaõnnestus (puudub "
+"fail %s), mis enamasti tähendab, et Teie alglaadimisflopi ei ole sünkroonis "
+"paigaldus-andmekandjaga (palun looge uus alglaadimisflopi)"
-#: ../../standalone/drakhelp:1
+#: ../../install2.pm_.c:167
#, c-format
-msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
-msgstr ""
-"%s näitamine ei õnnestu.\n"
-"Sellist tüüpi abikirjet ei ole.\n"
+msgid "You must also format %s"
+msgstr "Vormindada tuleb ka %s"
-#: ../../any.pm:1
+#: ../../install_any.pm_.c:423
#, 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"
+"You have selected the following server(s): %s\n"
"\n"
-"On which drive are you booting?"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
msgstr ""
-"Otsustasite paigaldada alglaaduri partitsioonile.\n"
-"See eeldab, et Teil on juba alglaadur kõvakettal, millelt Te alglaadimise "
-"sooritate (nt System Commander).\n"
+"Olete valinud järgmise(d) serveri(d): %s\n"
"\n"
-"Milliselt kettalt Te alglaadimise teete?"
+"\n"
+"Need serverid aktiveeritakse vaikimisi. Pole küll teada, et neil oleks\n"
+"turvaprobleeme, aga nende leidmine tulevikus pole sugugi välistatud.\n"
+"Kui peaks nii minema, kontrollige, et suudate uuenduse võimalikult\n"
+"ruttu hankida.\n"
+"\n"
+"\n"
+"Kas tõesti paigaldada need serverid?\n"
-#: ../../install_interactive.pm:1
+#: ../../install_any.pm_.c:441
#, c-format
msgid ""
-"WARNING!\n"
+"The following packages will be removed to allow upgrading your system: %s\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."
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-"HOIATUS!\n"
+"Süsteemi uuendamiseks tuleb eemaldada järgmised paketid: %s\n"
"\n"
-"DrakX hakkab Teie Windowsi partitsiooni suurust muutma.\n"
-"Olge ettevaatlik: see operatsioon võib olla ohtlik Teie failidele.\n"
-"Palun käivitage enne seda, kui asute paigalduse juurde,\n"
-"Windowsis käsurealt \"chkdsk c:\" (arvestage, et graafilisest\n"
-"rakendusest \"scandisk\" ei piisa, seepärast kasutage\n"
-"kindlasti käsurealt käivitatavat \"chkdsk\"!).\n"
-"Lisaks sellele defragmenteerige ketas ja alles siis asuge\n"
-"taas paigalduse kallale. Kasulik oleks juba Windowsis\n"
-"ka oma andmetest tagavarakoopia teha.\n"
-"Kui olete oma otsuses kindel, vajutage \"Olgu\"."
+"\n"
+"Kas tõesti eemaldada need paketid?\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tajik keyboard"
-msgstr "Tadžiki"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
+msgstr "Üldlevi kasutamine on ilma NIS domeenita võimatu"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:879
#, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Pange FAT-vormingus flopi seadmesse %s"
+
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
+msgstr "See flopi ei ole FAT-vormingus"
+
+#: ../../install_any.pm_.c:895
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"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-"Teil on võimalus kopeerida printeri seadistused, mida määrasite spuulerile %"
-"s, Teie praegusele spuulerile %s. Üle kantakse kõik seadistused (printeri "
-"nimi, kirjeldus, asukoht, ühendusviis, vaikevalikud), aga mitte tööd.\n"
-"Kõiki järjekordi ei saa üle kanda järgmistel põhjustel:\n"
+"Selle paketivaliku kasutamiseks alustage paigaldamist käsuga \"linux "
+"defcfg=floppy\""
-#: ../../standalone/drakfont:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, c-format
-msgid "Font List"
-msgstr "Fontide loend"
+msgid "Error reading file %s"
+msgstr "Viga faili %s lugemisel"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_any.pm_.c:1040
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."
+"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 ""
-"Alglaaduri võimaldamiseks tuleb Teil muuta oma Open Firmware\n"
-" alglaadimisseadet. Hoidke taaskäivituse ajal all klahve\n"
-" Command-Option-O-F ja kirjutage:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Seejärel kirjutage: shut-down\n"
-"Järgmisel käivitusel peaksite nägema alglaaduri käsurida."
+"Tekkis viga: failisüsteemi loomiseks ei leitud ühtki seadet. Palun "
+"kontrollige oma riistvara."
-#: ../../install_steps_interactive.pm:1
+#: ../../install_interactive.pm_.c:21
#, 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"
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"Paistab, et Teil on OldWorld-i või hoopis tundmatu\n"
-" masin, igatahes alglaadur yaboot siin ei tööta.\n"
-"Paigaldus küll jätkub, aga masina käivitamiseks\n"
-" tuleb Teil kasutada BootX-i või mingit muud nippi"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Select file"
-msgstr "Valige fail"
+"Osa Teie riistvarast nõuab tarnijapoolseid draivereid.\n"
+"Infot nende kohta saate: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:56
msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
+"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 ""
-"Valige palun võrk või masin, mille jaoks soovite siinseid printereid välja "
-"jagada."
+"Teil peab olema juurpartitsioon.\n"
+"Selleks looge uus partitsioon (või valige üks olemasolevatest).\n"
+"Siis valige tegevus \"Haakepunkt\" ja määrake see kui '/'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
+msgstr "Teil peab olema saaleala"
+
+#: ../../install_interactive.pm_.c:62
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"
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"Neid käske saab kasutada ka paljude rakenduste trükkimisdialoogi väljal "
-"\"Trükkimiskäsk\", kuid seal pole vaja kirjutada failinime, sest selle annab "
-"rakendus ise.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "Jaapan"
+"Saaleala ei ole määratud.\n"
+"\n"
+"Kas ikkagi jätkata?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print option list"
-msgstr "Trükkimisvalikute loend"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Teil peab olema FAT-partitsioon haagitud asukohas /boot/efi"
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "Muudatus on tehtud, aga selle rakendamiseks tuleb välja logida"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
+msgstr "Kasuta vaba ruumi"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
-msgstr "Maa / Piirkond"
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
+msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search servers"
-msgstr "Serverite otsing"
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
+msgstr "Kasuta olemasolevat partitsiooni"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "NCP järjekorra nimi puudub!"
+#: ../../install_interactive.pm_.c:102
+msgid "There is no existing partition to use"
+msgstr "Kasutatavat partitsiooni ei leitud"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Hoiatus, avastati veel üks Internetiühendus, mis võib-olla kasutab Teie võrku"
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
+msgstr "Kasuta Windowsi partitsiooni loopbackina"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD pealdisega \"%s\""
+#: ../../install_interactive.pm_.c:112
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Millisele partitsioonile soovite paigaldada Linux4Win?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr "CD-RW andmekandja"
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
+msgstr "Valige suurused"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Salvestab ja taastab juhuarvude genereerimiseks vajaliku\n"
-"süsteemse entroopiasalve."
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
+msgstr "Juurpartitsiooni suurus (MB): "
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr "Muutke oma masin usaldust väärivaks serveriks"
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr "Saaleala suurus (MB): "
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr "Tühja salasõna kontroll /etc/shadow-s"
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
+msgstr "Kasuta vaba ruumi Windowsi partitsioonil"
-#: ../../network/network.pm:1
-#, c-format
-msgid " (driver %s)"
-msgstr " (juhtprogramm %s)"
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
+msgstr "Millist partitsiooni soovite muuta?"
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
-msgstr "Vajaduse korral"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "Arvutan Windowsi failisüsteemi piire"
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
-"Loopback file(s):\n"
-" %s\n"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-"Loopback fail(id):\n"
-" %s\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr "Ei tea"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP masinal \"%s\", port %s"
+"FAT-partitsiooni suurust ei õnnestunud muuta, \n"
+"ilmnes selline viga: %s"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../install_interactive.pm_.c:137
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?"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-"Püüate hakata seadistama automaatpaigalduse flopit. See on natuke ohtlik "
-"tegevus, mida tuleb teha väga ettevaatlikult.\n"
-"\n"
-"Seda võimalust kasutades saate korrata arvutile tehtud paigaldust ning mõne "
-"sammu puhul ka ise kaasa rääkida, et üksikuid väärtusi muuta.\n"
-"\n"
-"Täieliku turvalisuse huvides ei tuleks partitsioneerimist ja vormindamist "
-"kunagi lubada automaatselt sooritada, seda hoolimata sellest, millise "
-"võimaluse kasuks olete paigalduse algul otsustanud.\n"
-"\n"
-"Kas soovite nüüd jätkata?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Telugu"
-msgstr "Telugu"
+"Teie Windowsi partitsioon on fragmenteerunud. Palun tehke arvutile uus "
+"alglaadimine, käivitage Windows ja seejärel utiliit 'defrag' ning tulge siis "
+"Mandrake Linuxi paigalduse juurde tagasi."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:138
msgid ""
+"WARNING!\n"
"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
+"HOIATUS!\n"
"\n"
-"\n"
-"Teie helikaart kasutab praegu %s\"%s\" juhtprogrammi (selle kaardi "
-"vaikedraiver on \"%s\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Uninstall"
-msgstr "Eemaldamisjärgsed seadistused"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Internetiühenduse loomine "
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid level"
-msgstr "Cpuid tase"
+"DrakX hakkab Teie Windowsi partitsiooni suurust muutma.\n"
+"Olge ettevaatlik: see operatsioon võib olla ohtlik Teie failidele.\n"
+"Palun kasutage enne scandisk-i, defrag-i ja tehke tagavarakoopia.\n"
+"Kui olete oma otsuses kindel, vajutage \"Olgu\"."
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Novelli serveril \"%s\", printer \"%s\""
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Kui palju ruumi jätate Windowsi jaoks?"
-#: ../../keyboard.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "Mongoli (kirillitsa)"
+msgid "partition %s"
+msgstr "partitsioon %s"
-#: ../../standalone/drakfloppy:1
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid "Add a module"
-msgstr "Lisa moodul"
+msgid "FAT resizing failed: %s"
+msgstr "FATi suuruse muutmine ebaõnnestus: %s"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr "Kustutatav profiil:"
+#: ../../install_interactive.pm_.c:171
+msgid ""
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
+msgstr "Sobivat FAT-partitsiooni ei leitud (ei ole piisavalt ruumi)"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Local measure"
-msgstr "Kohalikud andmed"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr "Tühjenda kogu ketas"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
-msgstr "Hoiatus : IP aadress %s on tavaliselt reserveeritud !"
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr "Eemalda Windows(TM)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "busmouse"
-msgstr "siinihiir"
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Teil on rohkem kui üks kõvaketas, millisele neist paigaldate Linuxi?"
-#: ../../standalone/drakTermServ:1
+#: ../../install_interactive.pm_.c:183
#, 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."
-msgstr ""
-" - Etherboot-suutlike laadepiltide loomine:\n"
-" \tKerneli alglaadimiseks etherboodi vahendusel tuleb luua eriline "
-"kernel/initrd laadepilt.\n"
-" \tSuure osa tööst teeb ära mkinitrd-net ning drakTermServ on vaid "
-"graafiline\n"
-" \tkasutajaliides, aitamaks neid laadepilte hallata ja/või kohandada. "
-"Faili /etc/dhcpd.conf.etherboot-pcimap.include loomiseks, \n"
-" \tmis kaasatakse faili dhcpd.conf, tuleb luua etherboot-laadepildid "
-"vähemalt ühele kernelile."
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Kettal %s hävivad KÕIK partitsioonid ja andmed"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Kasutajatunnus"
+#: ../../install_interactive.pm_.c:191
+msgid "Custom disk partitioning"
+msgstr "Partitsioneerin ise"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
-msgstr "FDIV viga"
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr "Kasuta fdisk-i"
-#: ../../network/drakfirewall.pm:1
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-"drakfirewalli seadistaja\n"
-"\n"
-"Kontrollige enne jätkamist, et olete seadistanud pääsu võrku/Internetti\n"
-"drakconnecti abil."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr "Üldlevi icmp echo lubamine"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr "Uruguay"
+"Nüüd saate partitsioneerida %s kõvaketta\n"
+"Kui olete valmis, salvestage käsuga 'w'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Benin"
-msgstr "Benin"
+#: ../../install_interactive.pm_.c:227
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Teil ei ole piisavalt vaba ruumi Windowsi partitsioonil"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "SMB/Windowsi serveril \"%s\", jagatud printer \"%s\""
+#: ../../install_interactive.pm_.c:243
+msgid "I can't find any room for installing"
+msgstr "Paigalduseks ei ole üldse ruumi"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path selection"
-msgstr "Asukoha valik"
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "DrakX kettajagamise nõustaja leidis sellised lahendused:"
-#: ../../standalone/scannerdrake:1
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid "Name/IP address of host:"
-msgstr "Masina nimi/IP aadress:"
+msgid "Partitioning failed: %s"
+msgstr "Ketta jagamine ebaõnnestus: %s"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr "Võrgu käimapanek"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom & system settings"
-msgstr "Isetehtud ja süsteemsed seadistused"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr "Võrgu seiskamine"
-#: ../../partition_table/raw.pm:1
-#, c-format
+#: ../../install_steps.pm_.c:76
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."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"Teie kõvakettal juhtub imelikke asju. \n"
-"Andmete pidevuse kontroll ebaõnnestus. \n"
-"See tähendab, et kettale kirjutamisel tekivad jamad."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Printeri masinanimi või IP puudub!"
+"Tekkis mingi viga, aga seda ei suuda programm ise klaarida.\n"
+"Jätkake omal vastutusel."
-#: ../../standalone/drakbackup:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Märkige palun kõik kasutajad, keda soovite varukoopiasse kaasata."
+msgid "Duplicate mount point %s"
+msgstr "Haakepunkt %s on määratud topelt"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps.pm_.c:380
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+"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 ""
-"See %s skänner tuleb seadistada printerdrake abil.\n"
-"Printerdrake saab käivitada Mandrake juhtimiskeskuse riistvara sektsioonist."
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Key isn't writable"
-msgstr "Mälupulk ei ole kirjutatav!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bangladesh"
-msgstr "Bangladesh"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
-msgstr "Jaapan (kaabel)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Initial tests"
-msgstr "Käivitustestid"
+"Mõned tähtsad paketid ei saanud korralikult paika.\n"
+"Teie CD-lugeja või CD on ilmselt vigane.\n"
+"Paketifaile CD-l saate kontrollida käsuga \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../network/isdn.pm:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "Continue"
-msgstr "Jätka"
+msgid "Welcome to %s"
+msgstr "See ongi %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom Restore"
-msgstr "Taastamise kohandamine"
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr "Flopiseade ei ole kättesaadav"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "Saturday"
-msgstr "Laupäev"
+msgid "Entering step `%s'\n"
+msgstr "Järgmine samm: '%s'\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:146
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."
+"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 ""
-"\"%s\": kui süsteemis leiti helikaart, näidatakse seda siin.\n"
-"Kui märkate, et näidatav helikaart ei ole mitte see, mis süsteemis\n"
-"Teie teada tegelikult on, klõpsake nuppu ja valige uus juhtprogramm."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the root umask."
-msgstr "Administraatori umask-i määramine"
-
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "Viga faili %s lugemisel"
+"Teie süsteemil napib ressurse ja paigaldamine võib ebaõnnestuda.\n"
+"Kui nii juhtub, proovige palun tekstipõhist paigaldust. Selleks\n"
+"vajutage CDROMilt laadimisel F1 ja sisestage 'text'"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr "Skriptipõhine"
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr "Paigaldusmeetod"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "PLL setting:"
-msgstr "PLL:"
+#: ../../install_steps_gtk.pm_.c:160
+msgid "Please choose one of the following classes of installation:"
+msgstr "Palun valige üks järgnevatest paigaldusmeetoditest:"
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Teil peab olema FAT-partitsioon haagitud asukohas /boot/efi"
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
+msgstr "Paketigruppide valik"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
-msgstr " masinal "
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
+msgstr "Valik paketthaaval"
-#: ../../diskdrake/dav.pm:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid "The URL must begin with http:// or https://"
-msgstr "URL peab algama kas http:// või https://"
+msgid "Total size: %d / %d MB"
+msgstr "Suurus kokku: %d / %d MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Siin saab määrata konkreetse URI printerile ligipääsuks. URI peab järgima "
-"CUPSi või Foomaticu spetsifikatsiooni. Pange tähele, et mitte kõik spuulerid "
-"ei toeta kõiki URI tüüpe."
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
+msgstr "Vigane pakett"
-#: ../../any.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "Muu OS (SunOS...)"
+msgid "Name: %s\n"
+msgstr "Nimi: %s\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid "Install/Upgrade"
-msgstr "Paigaldus/Uuendamine"
+msgid "Version: %s\n"
+msgstr "Versioon: %s\n"
-#: ../../install_steps_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid "%d packages"
-msgstr "%d paketti"
+msgid "Size: %d KB\n"
+msgstr "Suurus: %d KB\n"
-#: ../../crypto.pm:1 ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
-msgid "Costa Rica"
-msgstr "Costa Rica"
+msgid "Importance: %s\n"
+msgstr "Tähtsus: %s\n"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:360
msgid ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Backup and Restore application\n"
-"\n"
-"--default : save default directories.\n"
-"--debug : show all debug messages.\n"
-"--show-conf : list of files or directories to backup.\n"
-"--config-info : explain configuration file options (for non-X "
-"users).\n"
-"--daemon : use daemon configuration. \n"
-"--help : show this message.\n"
-"--version : show version number.\n"
-msgstr ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Varundamis- ja taastamisrakendus\n"
-"\n"
-"--default : salvestab vaikekataloogid.\n"
-"--debug : näitab kõiki silumisteateid.\n"
-"--show-conf : varundatavate failide või kataloogide loend.\n"
-"--config-info : selgitab seadetefaili võtmeid (X-i "
-"mittekasutajaile).\n"
-"--daemon : kasutab deemoni seadistusi.\n"
-"--help : näitab käesolevat abiteadet.\n"
-"--version : näitab versiooni nime.\n"
+"You can't select this package as there is not enough space left to install it"
+msgstr "Seda paketti ei saa valida, sest paigalduseks napib kettaruumi"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain Authentication Required"
-msgstr "Nõutav on domeeni autentimine"
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
+msgstr "Paigaldamiseks on valitud järgmised paketid"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Use libsafe for servers"
-msgstr "Serveritel kasutatakse libsafe'i"
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
+msgstr "Eemaldamiseks on valitud järgmised paketid"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Icelandic"
-msgstr "Islandi"
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
+msgstr "Seda paketti ei saa (mitte) valida"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
-msgstr ""
-"\n"
-"Kasutamine: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version]"
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "See pakett on kohustuslik"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
+msgstr "See pakett on juba paigaldatud"
+
+#: ../../install_steps_gtk.pm_.c:395
msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
-"Drakbackupi suurim\n"
-" lubatud suurus (Mb)"
+"Selle paketi peaks uuendama.\n"
+"Olete kindel, et Te ei vali seda?"
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Ringühendus %s\n"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "Selle paketi peate valima, sest selle uuendamine on kohustuslik"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo/grub mode"
-msgstr "LiLo/grub resiim"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
+msgstr "Näita automaatselt valitud pakette"
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "Martinique"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr "Paigaldamine"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Kõvaketas / NFS"
+#: ../../install_steps_gtk.pm_.c:407
+msgid "Load/Save on floppy"
+msgstr "Laadi flopilt/Salvesta flopile"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Old user list:\n"
-msgstr "Vanad kasutajate failid:\n"
+#: ../../install_steps_gtk.pm_.c:408
+msgid "Updating package selection"
+msgstr "Paketivaliku uuendamine"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
-msgstr "Varukoopiate otsimine"
+#: ../../install_steps_gtk.pm_.c:413
+msgid "Minimal install"
+msgstr "Minimaalne paigaldus"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "a number"
-msgstr "number"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
+msgstr "Valige paketid, mida soovite paigaldada"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "Rootsi"
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr "Paigaldan"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Millist %s juhtprogrammi peaksime proovima?"
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr "Oletan"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr "Saate hoiatuse, kui üks valitud teenustest enam ei tööta"
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr "Aega jäänud "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Weekday"
-msgstr "Nädalapäev"
+#: ../../install_steps_gtk.pm_.c:469
+msgid "Please wait, preparing installation..."
+msgstr "Palun oodake, valmistun paigalduseks..."
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid "Filesystem types:"
-msgstr "Failisüsteemi tüübid: "
+msgid "%d packages"
+msgstr "%d paketti"
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "Northern Mariana Islands"
-msgstr "Põhja-Mariaani saared"
+msgid "Installing package %s"
+msgstr "Paketi %s paigaldamine"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", mitme funktsiooniga seade HP JetDirectil"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "Nõus"
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "ei soovi"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
+msgstr "Keeldun"
-#: ../../standalone/drakconnect:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr "Loodava profiili nimi (uus profiil luuakse praeguse koopiana) :"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Floppy"
-msgstr "Flopi"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "Ghostcsripti määratlused"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Bootloader"
-msgstr "Alglaadur"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
-msgstr "Kõigi teenuste aktsepteerimine, mida kontrollib tcp_wrappers"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "Liiguta"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Bootloader to use"
-msgstr "Eelistatav alglaadur"
+"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 ""
+"Vahetage CD-ROM!\n"
+"\n"
+"Palun sisestage CD pealdisega \"%s\" lugejasse ja vajutage <Olgu>.\n"
+"Kui teil säherdust ei ole, vajutage <Katkesta>."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "SMB serveri nimi"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
+msgstr "Ikkagi edasi?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Name Servers:"
-msgstr "Nimeserverid:"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
+msgstr "Pakettide tellimisel tekkis viga:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Minute"
-msgstr "Minutit"
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
+msgstr "Pakettide paigaldamisel tekkis viga:"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:10
msgid ""
"\n"
"Warning\n"
@@ -7347,4923 +5117,3341 @@ msgstr ""
"nende autorile ning on kaitstud tarkvara puhul kehtivate intellektuaalse\n"
"omandi ja autoriõiguse seadustega.\n"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Expert mode"
-msgstr "/_Ekspertresiim"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Eemalda StarOffice/OpenOffice.org/GIMP-ilt"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linuxi virtuaalserver, mis on mõeldud veatult töötavaks ja igati\n"
-"kättesaadavaks serveriks."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr "Mikroneesia"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 miljardit värvi (32 bitti)"
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
+msgstr "Tekkis mingi viga"
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
-msgstr "Litsents"
+#: ../../install_steps_interactive.pm_.c:85
+msgid "Do you really want to leave the installation?"
+msgstr "Kas tõesti loobuda paigaldusest ja väljuda?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "Võtmete genereerimine võtab mõne hetke aega"
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
+msgstr "Lõppkasutaja litsentsileping"
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
+"Introduction\n"
"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
-"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"
+"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"
-"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"
+"2. Limited Warranty\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"
+"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"
-"<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"
+"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"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\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"
-"<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"
+"4. Intellectual Property Rights\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 ""
-"Siin saate seadistada oma arvuti turvataseme ja määrata "
-"turvaadministraatori.\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"
-"Turvaadministraator on isik, kes saab turvahoiatusi, kui vastav võimalus on\n"
-"sisse lülitatud. Siin võib anda e-posti aadressi või nime.\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 ""
+"Järgnev lõppkasutaja litsents on eksimuste vältimiseks originaalkeeles!\n"
"\n"
-"Turvataseme menüü lubab valida kuue eelnevalt määratud turvataseme\n"
-"vahel, mida pakub msec. Need ulatuvad nigelast turvalisusest ja hõlpsast\n"
-"kasutamisest paranoilise turvalisuseni, mis sobib tundlikele "
-"serverirakendustele:\n"
+"Introduction\n"
"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
-"<span foreground=\"royalblue3\">Vähene</span>: See ei ole üldse turvaline,\n"
-"kuid muudab arvuti kasutamise väga hõlpsaks. Seda tuleks kasutada ainult\n"
-"masinatel, mis ei ole võrku ühendatud ja millele ei pääse hõlpsasti ligi.\n"
"\n"
+"1. License Agreement\n"
"\n"
-"<span foreground=\"royalblue3\">Standardne</span>: see on tavaline "
-"turvatase,\n"
-"mida võib soovitada arvutile, mis on Internetti ühendatud kliendina.\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"
-"<span foreground=\"royalblue3\">Kõrge</span>: On juba mõningaid piiranguid,\n"
-"igal ööl sooritatakse märksa rohkem automaatseid kontrollimisi.\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"
-"<span foreground=\"royalblue3\">Väga kõrge</span>: Turvalisus on piisav, et\n"
-"süsteemi saaks kasutada serverina, mis võib vastu võtta ühendusi paljudelt\n"
-"klientidelt. Kui Teie masin on Internetis vaid kui klient, oleks mõttekam\n"
-"valida madalam tase.\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"
-"<span foreground=\"royalblue3\">Paranoiline</span>: See sarnaneb eelmisele\n"
-"tasemele, ainult et süsteem on täiesti suletud ja turvaseadistused\n"
-"maksimumi peale keeratud."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr "Printeri automaattuvastus (kohalikud, TCP/Socketi ja SMB printerid)"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr "Sagem (pppoa vahendusel) usb"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"Tekkis viga: failisüsteemi loomiseks ei leitud ühtki seadet. Palun "
-"kontrollige oma riistvara."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Trükkimissüsteem käivitatakse alglaadimisel"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Kas soovite luua ühenduse juba alglaadimisel?"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr "Protsessori ID"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr "Heliprobleemide lahendamine"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "Poola (QWERTY)"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Add Printer"
-msgstr "/Lis_a printer"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
"\n"
-"Drakbackup activities via CD:\n"
+"3. The GPL License and Related Licenses\n"
"\n"
-msgstr ""
+"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"
-"Drakbackupi tegevus CD vahendusel:\n"
"\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
+"4. Intellectual Property Rights\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"
+"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"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Te püüate praegu paigaldada trükkimissüsteemi %s süsteemi, mis töötab "
-"turvatasemel '%s'.\n"
"\n"
-"See trükkimissüsteem käivitab deemoni (taustal töötava protsessina), mis "
-"võtab vastu ja käsitleb trükkimistöid. Deemonile pääseb võrgu kaudu ligi ka "
-"kaugmasinatelt, mistõttu see kujutab endast võimaliku rünnaku objekti. "
-"Seetõttu käivitatakse selle turvataseme puhul vaikimisi ainult mõned valitud "
-"deemonid.\n"
+"5. Governing Laws \n"
"\n"
-"Kas soovite tõesti seadistada trükkimist sellel masinal?"
+"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"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Masin \"%s\", port %s"
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
+msgstr "Kas Te tõesti ei ole litsentsilepinguga nõus?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "Seda partitsiooni ei saa loopback-ina kasutada"
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "Klaviatuur"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr "Fail on juba olemas. Kas kasutada seda?"
+#: ../../install_steps_interactive.pm_.c:218
+msgid "Please choose your keyboard layout."
+msgstr "Palun valige klaviatuuriasetus."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
-msgstr "saadud: "
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
+msgstr "Võimalike klaviatuuride täielik nimekiri"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr "Parempoolne Alt-klahv"
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
+msgstr "Millist paigaldusmeetodit Te soovite?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "selle helikaardi alternatiivsete juhtprogrammide loend"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
+msgstr "Paigaldamine/Uuendus"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Vaikelüüs"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
+msgstr "Kas see on paigaldus või uuendus?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr "Tonga"
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr "Soovitatav"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "Tuneesia"
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Ekspert"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing"
-msgstr "Skänneri jagamine"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade"
+msgstr "Uuendus"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile: "
-msgstr "Profiil: "
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade packages only"
+msgstr "Ainult pakettide uuendamine"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
-"Klõps seadmel vasakul asuvas puus näitab siin selle kohta käivat infot."
+#: ../../install_steps_interactive.pm_.c:282
+msgid "Please choose the type of your mouse."
+msgstr "Palun valige hiire tüüp."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr "Automaatse sisselogimise lubamine/keelamine"
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr "Hiire port"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
-msgstr "XawTV ei ole paigaldatud!"
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
+msgstr "Millisesse jadaporti on Teie hiir ühendatud?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Kriitilised failid jäetakse välja (passwd, group, fstab)"
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
+msgstr "Nuppude emuleerimine"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "vana staatiline seadmenimi, mis oli kasutusel paketis dev"
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
+msgstr "Emuleeri 2. hiirenuppu"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
-msgstr "Ipv4 veidrate pakettide logimise lubamine"
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
+msgstr "Emuleeri 3. hiirenuppu"
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
-msgstr "Selline pealdis on juba kasutusel"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr "PCMCIA kaartide seadmine..."
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"Printeri seadistamise nõustaja\n"
-"\n"
-"Nõustaja aitab Teil paigaldada printeri(d), mis on ühendatud selle arvutiga "
-"või otse võrku.\n"
-"\n"
-"Kui Teil on printer(eid), mis on ühendatud selle masinaga, ühendage palun "
-"see/need arvutiga ja lülitage sisse, et seda/neid saaks automaatselt "
-"tuvastada. Ka võrguprinter(id) peavad olema ühendatud ja sisse lülitatud.\n"
-"\n"
-"Pange tähele, et võrguprinterite automaattuvastus võtab rohkem aega kui "
-"ainult selle masinaga ühendatud printeri(te) automaatne tuvastamine. Nii et "
-"kui te seda ei vaja, lülitage võrguprinterite automaattuvastus välja.\n"
-"\n"
-"Kui olete valmis, vajutage \"Järgmine\", või \"Katkesta\", kui Te ei soovi "
-"praegu printeri(te) seadistamisega tegelda."
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
-msgstr "Kreeka (polütoonne))"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr "IDE seadistamine"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Partitsiooni %s vormindamisel hävivad sellel kõik andmed"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection Time: "
-msgstr "Ühenduse kestvus: "
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr "Ei leia partitsioone"
-#: ../../standalone/livedrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
+msgstr "Partitsioonidelt haakepunktide otsimine"
+
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr "Valige haakepunktid"
+
+#: ../../install_steps_interactive.pm_.c:386
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."
+"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 ""
-"Palun sisestage paigaldus-CD lugejasse ja vajutage <Olgu>.\n"
-"Kui teil säherdust ei ole, vajutage <Katkesta>, et kiiruuendust vältida."
+"Ruumi 1MB-se alglaadimisala loomiseks napib! Paigaldus jätkub, kuid süsteemi "
+"alglaadimiseks tuleb Teil luua DiskDrake abil alglaadimisala"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use group id for execution"
-msgstr "Käivitamiseks kasutatakse grupi id-d"
+#: ../../install_steps_interactive.pm_.c:395
+msgid "No root partition found to perform an upgrade"
+msgstr "Uuendamiseks vajalikku juurpartitsiooni ei leitud"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "Valige vaikimisi kasutaja:"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr "Juurpartitsioon"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "Gabon"
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr "Millisel partitsioonil hoiate juurkataloogi (/)?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Kui võrgus on CUPS server, siis ei ole Teil vaja siin printereid seadistada, "
-"need leitakse automaatselt."
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr "Partitsioonitabeli säilitamiseks vajate alglaadimist"
-#: ../../any.pm:1
-#, 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."
-msgstr ""
-"Mandrake Linux toetab paljusid keeli. Valige keeled, mida\n"
-"soovite paigaldada. Kui paigaldus on lõpetatud ja Te teete\n"
-"süsteemile taaskäivituse, saate neid kasutada."
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr "Valige partitsioonid, mida soovite vormindada"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr "Kataloog (või moodul), kuhu sellel masinal varukoopia salvestada"
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
+msgstr "Blokkide kontroll?"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain"
-msgstr "Domeen"
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr "Vormindan partitsioone"
-#: ../../any.pm:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Kui vaja, täpsustage RAM suurust (leitud %d MB)"
+msgid "Creating and formatting file %s"
+msgstr "Loon ja vormindan faili %s"
-#: ../../help.pm:1
+#: ../../install_steps_interactive.pm_.c:470
#, 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."
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-"LiLo ja grub on GNU/Linuxi alglaadurid. Tavaliselt käib siin kõik täiesti\n"
-"automaatselt. DrakX uurib ketta alglaadimissektorit ja talitab vastavalt\n"
-"sellele, mida ta sealt leiab:\n"
-"\n"
-" * kui leitakse Windowsi alglaadimissektor, asendatatakse see grub/LiLo\n"
-"alglaadimissektoriga. Nii võite laadida kas GNU/Linuxi või mõne muu OS-i.\n"
-"\n"
-" * kui leitakse grub-i või LiLo alglaadimissektor, asendatakse see uuega.\n"
-"\n"
-"Kui DrakX ei suuda asjast aru saada, küsitakse Teie käest, kuhu alglaadur\n"
-"paigutada."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "DNS 2 (võib jätta tühjaks)"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "Alglaadimisseade"
+"Failisüsteemi %s kontroll ebaõnnestus. Kas soovite vigu parandada? "
+"(Ettevaatust, võite kaotada andmed!)"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Millist partitsiooni soovite muuta?"
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Saaleala on paigalduseks liiga väike, palun suurendage seda"
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr "Ühendriikide hajasaared"
+#: ../../install_steps_interactive.pm_.c:479
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Otsin saadaolevaid pakette ja loon uuesti rpm andmebaasi..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Djibouti"
-msgstr "Djibouti"
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr "Otsin saadaolevaid pakette..."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Vahend logide jälgimiseks"
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Looking at packages already installed..."
+msgstr "Tuvastan juba paigaldatud pakette..."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected on port %s"
-msgstr "leiti pordis %s"
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr "Otsin uuendatavaid pakette..."
-#: ../../printer/data.pm:1
+#: ../../install_steps_interactive.pm_.c:505
#, c-format
-msgid "LPD"
-msgstr "LPD"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
+msgstr ""
+"Teie kõvakettal ei ole piisavalt vaba ruumi paigalduseks või uuenduseks (%d "
+"> %d)"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Graafikakaart: %s\n"
+#: ../../install_steps_interactive.pm_.c:541
+msgid ""
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
+msgstr ""
+"Valige palun paketivaliku laadimine või salvestamine flopil(t).\n"
+"Vorming on sama, mis automaatpaigaldusega loodud flopide puhul."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Määra _vaikeprinteriks"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Load from floppy"
+msgstr "Laadi flopilt"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
-msgstr "Icmp echo lubamine"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr "Salvesta flopile"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Loading from floppy"
+msgstr "Laadimine flopilt"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC seeria ratta emuleerimisega"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Package selection"
+msgstr "Pakettide valik"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "Sellel platvormil ei saa laiendatud partitsiooni luua"
+#: ../../install_steps_interactive.pm_.c:552
+msgid "Insert a floppy containing package selection"
+msgstr "Sisestage palun paketivalikut sisaldav flopi"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Splash selection"
-msgstr "Käivituslogo valik"
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
+msgstr "Valiku suurus ületab saadaolevat kettaruumi"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "ISDN seadistused"
+#: ../../install_steps_interactive.pm_.c:649
+msgid "Type of install"
+msgstr "Paigalduse tüüp"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "high"
-msgstr "kõrge"
+#: ../../install_steps_interactive.pm_.c:650
+msgid ""
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Te ei valinud ühtegi paketigruppi.\n"
+"Palun valige meelepärane minimaalne paigaldus:"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Internetiühenduse jagamine"
+#: ../../install_steps_interactive.pm_.c:653
+msgid "With X"
+msgstr "X-iga"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Choose file"
-msgstr "Faili valimine"
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
+msgstr "Baasdokumentatsiooniga (soovitatav!)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Summary: "
-msgstr "Kokkuvõte: "
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Tõeliselt minimaalne (eriti just ilma urpmi-ta)"
-#: ../../network/shorewall.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:741
msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
+"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 ""
-"Hoiatus! Leiti olemasolevad tulemüüri seadistused. Tõenäoliselt peaksite "
-"need hiljem üle vaatama."
+"Kui Teil on olemas kõik alltoodud CD-d, klõpsake <Olgu>.\n"
+"Kui Teil ei ole ühtki neist, klõpsake <Katkesta>.\n"
+"Kui puuduvad mõned CD-d, märkige vaid olemasolevad ja siis <Olgu>."
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:746
#, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Trükkimine/fotokaartide ligipääs seadmel \"%s\""
+msgid "Cd-Rom labeled \"%s\""
+msgstr "CD pealdisega \"%s\""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
-msgstr "Igapäevane turvakontroll"
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr "Valmistun paigalduseks"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:776
#, c-format
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"Installing package %s\n"
+"%d%%"
msgstr ""
-"Kas soovite trükkimist lubada ülalmainitud printeritel või printeritel Teie "
-"kohtvõrgus?\n"
+"Paketi %s paigaldamine\n"
+"%d%%"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer default settings"
-msgstr "Printeri vaikeseadistused"
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
+msgstr "Paigaldusjärgsed sätted"
-#: ../../mouse.pm:1
+#: ../../install_steps_interactive.pm_.c:828
#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Tavaline PS2 rattaga hiir"
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Pange palun alglaadimisflopi seadmesse %s"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm_.c:834
#, c-format
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "Pange palun moodulite uuendamise flopi seadmesse %s"
+
+#: ../../install_steps_interactive.pm_.c:861
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)"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates ?"
msgstr ""
-"WP lipp CR0 registris kehtestab kirjutuskaitse mälulehekülje tasemel, "
-"võimaldades nii protsessoril takistada kerneli kontrollimatut ligipääsu "
-"kasutajamälule (kannab ka nimetust veavalvur)"
+"Teil on nüüd võimalus alla laadida uuendatud pakette. Need on välja lastud\n"
+"pärast Mandrake Linuxi distributsiooni ilmumist ja võivad sisaldada vigade\n"
+"parandusi või turvauuendusi.\n"
+"\n"
+"Allalaadimiseks peab Teil olema töötav internetiühendus.\n"
+"\n"
+"Kas soovite uuendusi paigaldada?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Vana printeri \"%s\" eemaldamine..."
+#: ../../install_steps_interactive.pm_.c:876
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgstr ""
+"Proovin hankida Mandrake Linuxi veebisaidilt saadaolevate peeglite "
+"nimekirja..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Select a device !"
-msgstr "Valige seade !"
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
+msgstr "Valige peegel, millelt lugeda pakettide nimekiri"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected server"
-msgstr "Valitud serveri eemaldamine"
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Proovin lugeda peeglilt pakettide nimekirja..."
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using dhcp) usb"
-msgstr "Sagem (dhcp vahendusel) usb"
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr "Millises ajavöötmes asute?"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Southern Territories"
-msgstr "Prantsuse Lõunaalad"
+#: ../../install_steps_interactive.pm_.c:923
+msgid "Hardware clock set to GMT"
+msgstr "Arvuti sisekell on seatud GMT ajale"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "protsessori tootja nimi"
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Aja automaatne sünkroniseerimine (NTP abil)"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - %s haldamine:\n"
-" \t\tEt kasutajad saaksid kettata tööjaamalt süsteemi logida, peab "
-"nende kirje\n"
-" \t\tfailis /etc/shadow leiduma ka failis %s.\n"
-" \t\tdrakTermServ aitab süsteemi kasutajaid faili lisada või sealt "
-"eemaldada."
+#: ../../install_steps_interactive.pm_.c:931
+msgid "NTP Server"
+msgstr "NTP server"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr "Selle partitsiooni andmetest võiks olla varukoopia"
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
+msgstr "CUPS printserver"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "Paketi %s paigaldamine"
+#: ../../install_steps_interactive.pm_.c:966
+msgid "No printer"
+msgstr "Printer puudub"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr "Kontrollin ja häälestan HPOJ.."
+#: ../../install_steps_interactive.pm_.c:982
+msgid "Do you have an ISA sound card?"
+msgstr "Kas Teil on ISA helikaart?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Et saada rohkem partitsioone, kustutage palun üks, et luua laiendatud "
-"partitsioon"
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
+msgstr "Helikaardi seadistamiseks käivitage pärast paigaldust \"sndconfig\""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-"Teie printer on seadistatud automaatselt ja võimaldab Teil oma arvutilt ligi "
-"pääseda fotokaardiketastele. Fotokaartidele pääseb ligi graafilise rakenduse "
-"\"MtoolsFM\" (menüüs: \"Rakendused\" -> \"Failivahendid\" -> \"Failihaldur "
-"MTools\") või käsureavahendi \"mtools\" abil (andke käsureal käsk \"man "
-"mtools\", et saada selle kohta rohkem infot). Kaartide failisüsteemi leiate "
-"kettal \"p:\" või mõnel sellele järgneva tähega kettal, kui Teil juhtub "
-"olema enam kui üks HP fotokaardiseadmega printer. Rakenduses \"MtoolsFM\" "
-"võite liikuda ketaste vahel faililoendi ülal paremas nurgas asuval väljal "
-"leiduvaid tähti vahetades."
+"Helikaarti ei leitud. Proovige see leida pärast paigaldust \"harddrake\" abil"
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "Pakettide valik"
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
+msgstr "Kokkuvõte"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "Kettal %s hävivad KÕIK partitsioonid ja andmed"
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
+msgstr "Hiir"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Teie kõvakettal ei ole piisavalt vaba ruumi paigalduseks või uuenduseks (%d "
-"> %d)"
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
+msgstr "Ajavöönd"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Iga printer vajab nime (näiteks \"printer\"). Kirjelduse ja asukoha välja ei "
-"ole vaja tingimata täita, need on vaid kommentaarid kasutajatele."
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "Printer"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"\"%s\": klõps nupul \"%s\" avab printeri seadistamise\n"
-"nõustaja. Uurige lähemalt käivitusjuhiste vastavast peatükist, kuidas\n"
-"uut printerit häälestada. Siin näidatav sarnaneb sellele, mida võisite\n"
-"näha paigalduse ajal."
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
+msgstr "ISDN kaart"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr "Bhutan"
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
+msgstr "Helikaart"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "Võrguliides"
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
+msgstr "TV kaart"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Internetiühenduse katkestamine ebaõnnestus."
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
+msgstr "LDAP"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
-msgstr "Printeri andmete lugemine..."
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+msgid "NIS"
+msgstr "NIS"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "Korea"
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+msgid "Windows Domain"
+msgstr "Windowsi domeen"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Not connected"
-msgstr "Ei ole ühendatud"
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+msgid "Local files"
+msgstr "Kohalikud failid"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "No internet connection configured"
-msgstr "Internetiühendus pole seadistatud"
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr "Juurkasutaja salasõna"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
-msgstr "Kreeka"
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr "Salasõna puudub"
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts ja Nevis"
+msgid "This password is too short (it must be at least %d characters long)"
+msgstr "Salasõna on liiga lühike (peaks olema vähemalt %d tähemärki)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Tavaline 3 nupuga hiir ratta emuleerimisega"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "Autentimisviis"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
-msgstr "OF laadimine lubatud?"
+#: ../../install_steps_interactive.pm_.c:1088
+msgid "Authentication LDAP"
+msgstr "LDAP autentimine"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "JFS ei ole kasutatav alla 16MB partitsioonidel"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
+msgstr "LDAPi alus dn"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "RW andmekandja puhastamine (esimene seanss)"
+#: ../../install_steps_interactive.pm_.c:1090
+msgid "LDAP Server"
+msgstr "LDAP server"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Ekraaniuuendussagedus: %s\n"
+#: ../../install_steps_interactive.pm_.c:1096
+msgid "Authentication NIS"
+msgstr "NIS autentimine"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "Haakepunkt"
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "NIS domeen"
-#: ../../Xconfig/test.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr "NIS server"
+
+#: ../../install_steps_interactive.pm_.c:1104
msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
+"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 ""
-"Juhtus viga:\n"
-"%s\n"
-"Proovige mõnda parameetrit muuta"
+"Et see töötaks W2K primaarse domeenikontrolleri puhul, on Teil vaja "
+"administraatori privileege, et käivitada serveril käsk \"C:\\>net "
+"localgroup \"Pre-Windows 2000 Compatible Access\" everyone /add\" ja teha "
+"sellele alglaadimine.\n"
+"Samuti on Teil vaja domeeni administraatori kasutajanime/parooli, et "
+"ühendada see masin Windows(TM) domeeniga.\n"
+"Kui võrguühendus ei ole veel seadistatud, üritab DrakX domeeni ühenduda "
+"pärast võrgu seadistamist.\n"
+"Kui midagi peaks ebaõnnestuma ja domeeni autentimine ei tööta, käivitage "
+"pärast alglaadimist käsurealt 'smbpasswd -j DOMEEN -U KASUTAJA%PAROOL, kus "
+"DOMEEN on Teie Windows(TM) domeen ja KASUTAJA%PAROOL on domeeni "
+"administraator parooliga.\n"
+"Käsk 'wbinfo -t' võimaldab kontrollida, kas domeeni autentimisfraasid on "
+"õiged."
-#: ../../printer/main.pm:1
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "TCP/IP masinal \"%s\", port %s"
+#: ../../install_steps_interactive.pm_.c:1106
+msgid "Authentication Windows Domain"
+msgstr "Windows domeeni autentimine"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "User :"
-msgstr "Kasutaja :"
+#: ../../install_steps_interactive.pm_.c:1108
+msgid "Domain Admin User Name"
+msgstr "Domeeni administraatori kasutajatunnus"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore system"
-msgstr "Süsteemi taastamine"
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
+msgstr "Domeeni administraatori parool"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1144
msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
+"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\"."
msgstr ""
-"Nende masinate jaoks on selle arvuti küljes olevad skännerid kättesaadavaks "
-"tehtud:"
+"Isetehtud alglaadimisketas annab Teile võimaluse laadida Linux flopilt\n"
+"sõltumata tavalisest alglaadijast. See võib abiks olla, kui Te ei soovi\n"
+"SILO-t kõvakettale kirjutada või mõni muu operatsioonisüsteem SILO\n"
+"ära kustutab või ei õnnestu SILO-t Teie riistvara peal kasutada.\n"
+"Alglaadmisflopi on kasutatav ka hädaabikettana, kui kõvakettal oleva\n"
+"failisüsteemiga peaks mingi õnnetus juhtuma. Hoidke end ja Teid hoiab\n"
+"ka Jumal!\n"
+"\n"
+"Alglaadimisketta loomiseks asetage flopi esimesse seadmesse ning vajutage\n"
+"\"Olgu\"."
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
-msgstr "DHCP vahemiku lõpu ip"
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr "Esimene flopiseade"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Another one"
-msgstr "Veel üks"
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "Teine flopiseade"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "Jäta vahele"
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:1167
#, c-format
-msgid "Colombia"
-msgstr "Colombia"
+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"
+msgstr ""
+"Isetehtud alglaadimisketas annab Teile võimaluse laadida Linux flopilt\n"
+"sõltumata tavalisest alglaadijast. See võib abiks olla, kui Te ei soovi\n"
+"LILO-t (grubi) kõvakettale kirjutada või mõni muu operatsioonisüsteem LILO\n"
+"ära kustutab või ei õnnestu LILO-t Teie riistvara peal kasutada.\n"
+"Alglaadmisflopi on kasutatav ka hädaabikettana, kui kõvakettal oleva\n"
+"failisüsteemiga peaks mingi õnnetus juhtuma. Hoidke end ja Teid hoiab\n"
+"ka Jumal!\n"
+"%s"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1173
msgid ""
-"Current configuration of `%s':\n"
"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"\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)."
msgstr ""
-"'%s' praegused seadistused:\n"
"\n"
-"Võrk: %s\n"
-"IP aadress: %s\n"
-"IP omistamine: %s\n"
-"Juhtprogramm: %s"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n Play"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr "Réunion"
+"\n"
+"(HOIATUS! Te kasutate juurpartitsioonil XFS-i, mistõttu\n"
+"alglaadimisketta loomine 1,44MB-sele flopile tõenäoliselt\n"
+"ei õnnestu, sest XFS vajab väga suurt draiverit)."
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "Üksikasjad"
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "Flopiseade ei ole kättesaadav"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Turvakaalutlusel katkestan nüüd ühenduse."
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr "Valige flopiseade, mida kasutada alglaadimisketta tegemiseks"
-#: ../../standalone/drakbug:1
+#: ../../install_steps_interactive.pm_.c:1189
#, c-format
-msgid "Synchronization tool"
-msgstr "Sünkroniseerimisvahend"
+msgid "Insert a floppy in %s"
+msgstr "Pange flopi seadmesse %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking your system..."
-msgstr "Süsteemi kontrollimine..."
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr "Alglaadimisketta loomine..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print"
-msgstr "Trüki"
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr "Alglaaduri ettevalmistamine..."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1210
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+"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 to boot your machine"
msgstr ""
-"Sisestage lint nimega %s\n"
-" lindiseadmesse %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "Mongoolia"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
-msgstr "Haagitud\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS"
-msgstr "CUPSi seadistamine"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Interface"
-msgstr "Graafiline kasutajaliides"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Users"
-msgstr "Kasutajate taastamine"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Encryption key for %s"
-msgstr "%s krüptovõti"
+"Paistab, et Teil on OldWorld-i või hoopis tundmatu\n"
+" masin, igatahes alglaadur yaboot siin ei tööta.\n"
+"Paigaldus küll jätkub, aga masina käivitamiseks\n"
+" tuleb Teil kasutada BootX-i"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to recover your system?"
-msgstr "Kas soovite süsteemi taastada?"
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
+msgstr "Kas soovite kasutada aboot-i?"
-#: ../../services.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1219
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."
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
-"Portmapper haldab RPC ühendusi, mida kasutavad NFS ja NIS.\n"
-"Neil serveritel on see hädavajalik."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detected hardware"
-msgstr "Tuvastatud riistvara"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr "Mauritius"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
-msgstr "Myanmari (Birma)"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Enabling swap partition %s"
-msgstr "Vormindan saaleala %s"
+"Viga aboot-i installimisel, \n"
+"kas sundida peale, riskides esimese partitsiooni hävinguga?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"Sobivat FAT-partitsiooni loopback-ina kasutamiseks ei leitud (ei ole "
-"piisavalt ruumi)"
+#: ../../install_steps_interactive.pm_.c:1226
+msgid "Installing bootloader"
+msgstr "Alglaaduri paigaldamine"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr "Armeenia (vanem)"
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Alglaaduri paigaldamine ebaõnnestus. Tekkis järgnev viga:"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:1240
#, 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."
+"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 ""
-"Printer nimega \"%s\" on juba %s olemas. \n"
-"Vajutage \"Kanna üle\" selle ülekirjutamiseks.\n"
-"Te võite küll ka sisestada uue nime või selle printeri vahele jätta."
-
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
-msgstr "Leidke oma probleemidele lahendus MandrakeSofti internetitoe abil"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", masin \"%s\", port %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Monaco"
-msgstr "Monaco"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Ketta jagamine ebaõnnestus: %s"
-
-#: ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s vormindamine seadmel %s ebaõnnestus"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Canada (cable)"
-msgstr "Kanada (kaabel)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Floppy creation completed"
-msgstr "Flopi loomine lõpetatud"
+"Alglaaduri võimaldamiseks tuleb Teil muuta oma Open Firmware\n"
+" alglaadimisseadet. Hoidke taaskäivituse ajal all klahve\n"
+" Command-Option-O-F ja kirjutage:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+" Seejärel kirjutage: shut-down\n"
+"Järgmisel käivitusel peaksite nägema alglaaduri käsurida."
-#: ../../help.pm:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "Upgrade"
-msgstr "Uuendus"
+msgid "Insert a blank floppy in drive %s"
+msgstr "Pange palun tühi flopi seadmesse %s"
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
-msgstr "Tööjaam"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
+msgstr "Kiirpaigaldusflopi loomine..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1289
msgid ""
-"Installing package %s\n"
-"%d%%"
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
msgstr ""
-"Paketi %s paigaldamine\n"
-"%d%%"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
-msgstr "Kõrgõzstan"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "Mitme funktsiooniga seade USB-l"
+"Mõned sammud ei ole lõpule viidud.\n"
+"\n"
+"Kas soovite tõesti praegu lõpetada ja väljuda?"
-#: ../../../move/move.pm:1
+#: ../../install_steps_interactive.pm_.c:1300
#, 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"
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press return to reboot.\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."
+"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 ""
-"Teie süsteemist ei suudetud leida ühtki USB mälupulka.\n"
-"Kui ühendate USB mälupulga nüüd, võib Mandrake Move\n"
-"salvestada läbipaistvalt Teie kodukataloogi andmed ning\n"
-"süsteemse seadistuse järgmiseks alglaadimiseks sellel\n"
-"või mõnel muul arvutil. Märkus: kui ühendate mälupulga\n"
-"praegu, oodake mõni sekund, enne kui proovite seda\n"
-"uuesti tuvastada.\n"
+"Õnnitlen, paigaldamine on edukalt lõpetatud.\n"
+"Võtke palun välja flopi ja/või CD ja vajutage Enter alglaadimiseks.\n"
+"\n"
+"\n"
+"Informatsiooni selle distributsiooni paranduste kohta (Errata) saab\n"
+"Mandrake Linuxi koduleheküljelt:\n"
"\n"
"\n"
-"Võite muidugi jätkata ka ilma USB mälupulgata - ka sel\n"
-"juhul on Teil võimalik kasutada Mandrake Move'i kui\n"
-"tavalist Mandrake operatsioonisüsteemi."
+"%s\n"
+"\n"
+"\n"
+"Abi süsteemi edasiseks seadistamiseks saab eelkõige dokumendist\n"
+"\"Official Mandrake Linux User's Guide\"."
-#: ../../help.pm:1
-#, c-format
-msgid "With basic documentation"
-msgstr "Baasdokumentatsiooniga"
+#: ../../install_steps_interactive.pm_.c:1313
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr ""
-"Anacron käivitab programme perioodiliselt analoogiliselt cron-ile.\n"
-"Kasutage seda juhul, kui Teie arvuti ei tööta 24h."
+#: ../../install_steps_interactive.pm_.c:1318
+msgid "Generate auto install floppy"
+msgstr "Loo kiirpaigaldusflopi"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1320
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 `/'"
+"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 ""
-"Teil peab olema juurpartitsioon.\n"
-"Selleks looge uus partitsioon (või valige üks olemasolevatest).\n"
-"Siis valige tegevus \"Haakepunkt\" ja määrake see kui '/'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "Lääne-Sahara"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Vahendaja peab olema kujul http://..."
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr "Lõuna-Aafrika"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Lint väljastatakse pärast varundamist"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot flopi/ISO"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Printeri seadistuste muutmine"
+"Automaatne paigaldus võib olla ka sedavõrd tegija,\n"
+"et kasutab ära kogu kõvaketta !!\n"
+"\n"
+"Võite valida ka lihtsalt paigalduse kordamise.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
-msgstr "Valige partitsioon"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
+msgstr "Automaatne"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Edit current rule"
-msgstr "Muuda praegust reeglit"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Replay"
+msgstr "Kordamine"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
-msgstr "%s"
+#: ../../install_steps_interactive.pm_.c:1328
+msgid "Save packages selection"
+msgstr "Salvesta paketivalik"
-#: ../../mouse.pm:1
+#: ../../install_steps_newt.pm_.c:20
#, c-format
-msgid "Please test the mouse"
-msgstr "Palun testige hiirt"
+msgid "Mandrake Linux Installation %s"
+msgstr "Mandrake Linuxi paigaldamine %s"
-#: ../../fs.pm:1
-#, c-format
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
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)."
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-"Inode juurdepääsu kordi sellel failisüsteemil ei värskendada\n"
-"(nt kiiremaks juurdepääsuks uudistepuhvrile uudisteserveri kiirendamiseks)."
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3 nupuga hiir ratta emuleerimisega"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Sticky-bit"
-msgstr "Kleepumisbitt"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other Media"
-msgstr "Muu andmekandja"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files"
-msgstr "Süsteemsete failide varundamine"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Sector"
-msgstr "Sektor"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Qatar"
-msgstr "Katar"
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Base dn"
-msgstr "LDAPi alus dn"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "Seda paketti ei saa valida, sest paigalduseks napib kettaruumi"
-
-#: ../../help.pm:1
-#, c-format
-msgid "generate auto-install floppy"
-msgstr "Loo kiirpaigaldusflopi"
+" <Tab>/<Alt-Tab> väljade vahel | <Space> valib | <F12> järgmine samm "
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr "Valimisviis"
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
+msgstr "kdesu puudub"
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr "Failide jagamine"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
+msgstr "consolehelper puudub"
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "Puhasta /tmp igal laadimisel"
+#: ../../interactive.pm_.c:152
+msgid "Choose a file"
+msgstr "Valige fail"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malawi"
-msgstr "Malawi"
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
+msgstr "Edasijõudnud"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: false"
-msgstr "kohalik seadistus: false"
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
+msgstr "Põhiline"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "System settings"
-msgstr "Süsteemsed seadistused"
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
+msgstr "<- Eelmine"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Palun valige hiire tüüp."
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+msgid "Next"
+msgstr "Järgmine"
-#: ../../services.pm:1
-#, c-format
-msgid "running"
-msgstr "töötab"
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr "Halb valik, proovige palun uuesti\n"
-#: ../../standalone/harddrake2:1
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "class of hardware device"
-msgstr "riistvaralise seadme klass"
+msgid "Your choice? (default %s) "
+msgstr "Teie valik? (vaikimisi %s)"
-#: ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-"Nende masinate ja võrkude jaoks on selle arvuti küljes olevad printerid "
-"kättesaadavaks tehtud:"
-
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "Suurbritannia"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Indonesia"
-msgstr "Indoneesia"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "vaikeväärtus"
+"Teil tuleb täita kirjed:\n"
+"%s"
-#: ../../standalone/drakxtv:1
+#: ../../interactive/stdio.pm_.c:70
#, c-format
-msgid "France [SECAM]"
-msgstr "Prantsusmaa [SECAM]"
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Teie valik? (0/1, vaikimisi '%s')"
-#: ../../any.pm:1
+#: ../../interactive/stdio.pm_.c:95
#, c-format
-msgid "restrict"
-msgstr "piiratud"
+msgid "Button `%s': %s"
+msgstr "Nupp '%s': %s"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "must have"
-msgstr "vajalik"
+#: ../../interactive/stdio.pm_.c:96
+msgid "Do you want to click on this button?"
+msgstr "Kas soovite sellel nupul klõpsata?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS ei toeta printereid Novelli serveritel ega printereid, mis saadavad "
-"andmeid suvalise vormiga käskudena.\n"
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
+msgstr " kirjutage tühja kirje puhul 'void'"
-#: ../../lang.pm:1
+#: ../../interactive/stdio.pm_.c:105
#, c-format
-msgid "Senegal"
-msgstr "Senegal"
+msgid "Your choice? (default `%s'%s) "
+msgstr "Teie valik? (vaikimisi '%s'%s)"
-#: ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm_.c:123
#, c-format
-msgid "Command line"
-msgstr "Käsurida"
+msgid "=> There are many things to choose from (%s).\n"
+msgstr "=> Nüüd on Teil mitmeid valikuid (%s).\n"
-#: ../advertising/08-store.pl:1
-#, c-format
+#: ../../interactive/stdio.pm_.c:126
msgid ""
-"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available on our e-store:"
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
msgstr ""
-"Täisvaliku meie Linuxi lahendusi, samuti toodete eripakkumised ja muud "
-"\"soodustused\", leiate meie internetikaubamajast:"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "March"
-msgstr "Märts"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to administrative files"
-msgstr "ligipääs administreerimisfailidele"
+"Valige palun esimene number kümnesest vahemikust, mida soovite\n"
+"muuta, või vajutage Enter jätkamiseks.\n"
+"Ja Teie valik on? "
-#: ../../standalone/drakbackup:1
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
-"Viga meili saatmisel.\n"
-" Raportimeili ei õnnestunud saata.\n"
-" Seadistage palun sendmail"
+"=> Pange tähele, et pealdis on muutunud:\n"
+"%s"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Do not allow set-user-identifier or set-group-identifier\n"
-"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
-"have suidperl(1) installed.)"
-msgstr ""
-"Ei luba toimida bittidel set-user-identifier või set-group-identifier\n"
-"(see võib tunduda turvaline, aga tegelikult ei ole, eriti kui on\n"
-"paigaldatud suidperl(1).)"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
+msgstr "Uuestisaatmine"
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
-msgstr "Montserrat"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "Tšehhi (QWERTZ)"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Automaatsõltuvused"
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "Saksa"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "Saaleala"
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Dvorak"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom settings"
-msgstr "Isetehtud"
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "Hispaania"
-#: ../../../move/move.pm:1
-#, 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."
-msgstr ""
-"USB mälupulk paistab olevat kirjutuskaitsega, kuid praegu ei paista\n"
-"olevat turvalist võimalust seda lahti ühendada.\n"
-"\n"
-"\n"
-"Klõpsake nupule masina taaskäivitamiseks, ühendage mälupulk lahti,\n"
-"eemaldage kirjutuskaitse, ühendage seade uuesti ja käivitage taas Mandrake "
-"Move."
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "Soome"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Other"
-msgstr "Muu taastamine"
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "Prantsuse"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "TV kaart"
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "Norra"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT printserver"
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "Poola"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/Seadista _CUPS"
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "Vene"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
-msgstr ", "
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
+msgstr "Rootsi"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
-msgstr "lspci edastamine"
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "Briti"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Eemalda valitud masin/võrk"
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "USA"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix on meili transpordiagent, see tähendab rakendus,\n"
-"mis toimetab meili ühest masinast teise."
+#: ../../keyboard.pm_.c:167
+msgid "Albanian"
+msgstr "Albaania"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "Usbeki (kirillitsa)"
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
+msgstr "Armeenia (vanem)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Siin saab valida klahvi või klahvikombinatsiooni, mis laseb\n"
-"vahetada klaviatuuri (nt ladina ja mitte-ladina tähestikuga)"
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
+msgstr "Armeenia (trükimasin)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Võrgu kohene valmidus (hotplugging)"
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
+msgstr "Armeenia (foneetiline)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr "Kui on 'jah', saadetakse kontrolli tulemused tty-sse."
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
+msgstr "Aserbaidžaani (ladina)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From CD"
-msgstr "Taastamine CD-lt"
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "Belgia"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Nüüd on Teil võimalik seadistada oma arvutit Internetiühendust jagama.\n"
-"Selle võimaluse abil saavad teised Teie kohtvõrgu arvutid kasutada selle "
-"masina Internetiühendust.\n"
-"\n"
-"Kontrollige enne jätkamist, et olete seadistanud oma võrgu/Internetiühenduse "
-"drakconnecti abil.\n"
-"\n"
-"Märkus: kohtvõrgu (LAN) jaoks on vajalik eraldi võrgukaardi olemasolu."
+#: ../../keyboard.pm_.c:178
+msgid "Bengali"
+msgstr "Bengali"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr ""
-"Palun valige, millist võrguliidest soovite Internetiühenduse jaoks kasutada"
+#: ../../keyboard.pm_.c:179
+msgid "Bulgarian (phonetic)"
+msgstr "Bulgaaria (foneetiline)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Digifoto mälukaardi lugeja Teie HP mitmefunktsionaalsel seadmel"
+#: ../../keyboard.pm_.c:180
+msgid "Bulgarian (BDS)"
+msgstr "Bulgaaria (BDS)"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
-msgstr ""
-"Suurendage oma arvuti jõudlust meie partnerite abiga, kes pakuvad Mandrake "
-"Linuxiga ühilduvaid professionaalseid rakendusi"
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
+msgstr "Brasiilia (ABNT-2)"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
-msgstr "Autorid: "
+#: ../../keyboard.pm_.c:184
+msgid "Bosnian"
+msgstr "Bosnia"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Internetiühendust nüüd enam ei jagata."
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
+msgstr "Valgevene"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr "Kui on 'jah', kontrollitakse suid/sgid failide checksum-i."
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "Å veitsi (Saksa asetus)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latin American"
-msgstr "Ladina-Ameerika"
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "Å veitsi (Prantsuse asetus)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Jaapani teksti trükkimisresiim"
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "Tšehhi (QWERTY)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Old device file"
-msgstr "Vana seadmefail"
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr "Saksa (ilma sammuta)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "Info: "
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
+msgstr "Devanaagari"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Nupp '%s': %s"
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "Taani"
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Palun oodake"
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Dvorak (US)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Norra)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "None"
-msgstr "Puudub"
+#: ../../keyboard.pm_.c:196
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (Rootsi)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Sisestatud IP aadress ei ole korrektne.\n"
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "Eesti"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Kontrollige palun, et cron-deemon on teenuste seas ja töötab."
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Gruusia (\"vene\" asetus)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
-msgstr "Võrgukaart"
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Gruusia (\"ladina\" asetus)"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete selected printer"
-msgstr "Kustuta valitud printer"
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "Kreeka"
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "Info"
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
+msgstr "Gudžarati"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "Paigaldus"
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
+msgstr "Gurmukhi"
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Valige \"%s\", kui soovite kustutada kõik sellel kettal asuvad\n"
-"partitsioonid. Ettevaatust, pärast \"%s\" klõpsamist ei ole enam\n"
-"võimalik sellelt kettalt andmeid taastada.\n"
-"\n"
-"Katkestamiseks valige \"%s\", mis katkestab tegevuse ilma andmeid\n"
-"ja käesoleval kõvakettal olevaid partitsioone kustutamata."
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "Ungari"
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "Välju programmist"
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "Horvaadi"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
-msgstr "Andmete salvestamiseks läheb vaja mälupulka"
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
+msgstr "Iisraeli"
-#: ../../standalone/drakgw:1
-#, 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)."
-msgstr ""
-"Kõik on seadistatud.\n"
-"Nüüd saate Internetiühendust jagada teistele kohtvõrgu arvutitele, kasutades "
-"neil automaatset konfigureerimist (DHCP)."
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr "Iisraeli (foneetiline)"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
-msgstr "CUPS printserver"
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr "Iraani"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Suni hiir"
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr "Islandi"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Teil on vaid üks seadistatud võrguliides:\n"
-"\n"
-"%s\n"
-"\n"
-"Kohtvõrgu seadistused seotakse selle liidesega."
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "Itaalia"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
-msgstr "cpuinfo edastamine"
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
+msgstr "Inuktitut"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Minimal install"
-msgstr "Minimaalne paigaldus"
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
+msgstr "Jaapani 106 klahviga"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "Etioopia"
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
+msgstr "Korea"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
-msgstr "JAH"
+#: ../../keyboard.pm_.c:218
+msgid "Latin American"
+msgstr "Ladina-Ameerika"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
-msgstr "\"Crontab\" ja \"at\" lubamine kasutajatele"
+#: ../../keyboard.pm_.c:219
+msgid "Laotian"
+msgstr "Laose"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr "Devanaagari"
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
+msgstr "Leedu AZERTY (vanem)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-" -pci seadmed: näitab PCI pesa, seadet ja kaardi funktsiooni\n"
-"- eide seadmed: seade on kas ülem või allutatu\n"
-"- scsi seadmed: scsi siin ja scsi seadme id-d"
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
+msgstr "Leedu AZERTY (uuem)"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Suurus kokku: %d / %d MB"
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Leedu \"numbrireaga\" QWERTY"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "disabled"
-msgstr "keelatud"
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Leedu \"foneetiline\" QWERTY"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Search for new scanners"
-msgstr "Uute skännerite otsimine..."
+#: ../../keyboard.pm_.c:225
+msgid "Latvian"
+msgstr "Läti"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Disabling servers..."
-msgstr "Serverite peatamine..."
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
+msgstr "Malajalami"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "%s paigaldamine ebaõnnestus. Tekkis järgmine viga:"
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
+msgstr "Makedoonia"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr "mkinitrd -f /boot/initrd-%s.img %s käivitamine ebaõnnestus."
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
+msgstr "Myanmari (Birma)"
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"Olete valinud järgmise(d) serveri(d): %s\n"
-"\n"
-"\n"
-"Need serverid aktiveeritakse vaikimisi. Pole küll teada, et neil oleks\n"
-"turvaprobleeme, aga nende leidmine tulevikus pole sugugi välistatud.\n"
-"Kui peaks nii minema, kontrollige, et suudate uuenduse võimalikult\n"
-"ruttu hankida.\n"
-"\n"
-"\n"
-"Kas tõesti paigaldada need serverid?\n"
+#: ../../keyboard.pm_.c:229
+msgid "Mongolian (cyrillic)"
+msgstr "Mongoli (kirillitsa)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Võrguprinter (TCP/Socket)"
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
+msgstr "Malta (briti)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup User files..."
-msgstr "Kasutajafailide varundamine..."
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
+msgstr "Malta (USA)"
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "Süsteemi paigaldus"
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
+msgstr "Hollandi"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Esimene nimeserver (soovituslik)"
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
+msgstr "Poola (QWERTY)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr "Soovi korral võite ka sisendireal määrata seadmenime/failinime"
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
+msgstr "Poola (QWERTZ)"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
-"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
-"symlink /etc/security/msec/server to point to\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
-"add a service if it is present in the file during the installation of\n"
-"packages."
-msgstr ""
-"Kui SERVER_LEVEL (või selle puudumisel SECURE_LEVEL) failis \n"
-"/etc/security/msec/security.conf on suurem kui 3, loob sümbolviida \n"
-"/etc/security/msec/server, mis osutab failile \n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"/etc/security/msec/server on fail, mida chkconfig --add kasutab\n"
-"otsustamaks, kas lisada teenus või mitte, kui see on pakettide\n"
-"paigaldamise ajal failis olemas."
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
+msgstr "Portugali"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "Vene (foneetiline)"
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr "Kanada (Quebec)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Config..."
-msgstr "Dhcpd seadistamine..."
+#: ../../keyboard.pm_.c:239
+msgid "Romanian (qwertz)"
+msgstr "Rumeenia (QWERTZ)"
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "LiLo/grub paigaldamine"
+#: ../../keyboard.pm_.c:240
+msgid "Romanian (qwerty)"
+msgstr "Rumeenia (QWERTY)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "Iisraeli"
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "Vene (Yawerty)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Printer \"%s\" serveril \"%s\""
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
+msgstr "Sloveenia"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Flopi võib nüüd välja võtta"
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "Slovaki (QWERTZ)"
-#: ../../help.pm:1
-#, c-format
-msgid "Truly minimal install"
-msgstr "Tõeliselt minimaalne paigaldus"
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "Slovaki (QWERTY)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "Taani"
+#: ../../keyboard.pm_.c:248
+msgid "Serbian (cyrillic)"
+msgstr "Serbia (kirillitsa)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "Liigutan partitsiooni..."
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
+msgstr "Tamili (Unicode)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "(This) DHCP Server IP"
-msgstr "(Selle) DHCP serveri IP"
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
+msgstr "Tamili (TSCII)"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Test of the configuration"
-msgstr "Proovime seadistusi"
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr "Tai"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing %s ..."
-msgstr "%s paigaldamine..."
+#: ../../keyboard.pm_.c:254
+msgid "Tajik keyboard"
+msgstr "Tadžiki"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Sõltuvalt sellest, kas valisite individuaalse pakettide valiku või mitte,\n"
-"näidatakse Teile gruppidesse ja alamgruppidesse rühmitatult kõiki pakette\n"
-"sisaldavat puud. Seda mööda liikudes võite valida või etteantud valiku\n"
-"tühistada tervete gruppide, alamgruppide või üksikute pakettide kaupa.\n"
-"\n"
-"Kui valite puus mõne paketi, ilmub paremal selle kirjeldus, mis annab\n"
-"teada, milline on paketi ülesanne.\n"
-"\n"
-"!! Kui tahtlikult või seetõttu, et asi kuulus gruppi, on valitud mõni "
-"serveripakett,\n"
-"palutakse Teilt kinnitust, et Te ikka tõesti soovite neid servereid "
-"paigaldada.\n"
-"Mandrake Linuxi puhul käivitatakse kõik paigaldatud serverid vaikimisi\n"
-"alglaadimise käigus. Isegi kui nad olid turvalised ja teadaolevalt "
-"probleemivabad\n"
-"ajal, mis valmis distributsioon, võib kergesti juhtuda, et pärast Mandrake "
-"Linuxi\n"
-"praeguse versiooni valmimist leiti neist turvaauke. Kui Te ei tea, mida "
-"konkreetne\n"
-"teenus pakub või miks see üldse paigaldatakse, klõpsake nupul \"%s\", sest\n"
-"klõps nupul \"%s\" paigaldab loetletud serverid ning nad käivituvad\n"
-"alglaadimise ajal automaatselt. !!\n"
-"\n"
-"Lisavõimalus \"%s\" lihtsalt keelab hoiatava dialoogi, mis ilmub\n"
-"alati, kui paigaldaja valib automaatselt mõne paketi. See juhtub siis, kui "
-"leitakse,\n"
-"et paigalduse edukaks lõpetamiseks on vajalik paigaldada veel mõni muu "
-"pakett.\n"
-"\n"
-"Väike flopiketta ikoon loendi all võimaldab avada eelmise paigalduse ajal "
-"valitud\n"
-"pakettide nimekirja. Sellel klõpsamise järel palutakse Teil sisestada "
-"flopiketas,\n"
-"mille lõite eelmise paigalduse lõpul. Vaadake ka eelmise sammu teist "
-"nõuannet\n"
-"selle kohta, kuidas sellist flopiketast luua."
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Türgi (traditsiooniline \"F\" mudel)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr "Valige failisüsteemi krüptovõti"
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Türgi (modernne \"Q\" mudel)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr "Ukraina"
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
-msgstr "Botswana"
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "USA (rahvusvaheline)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Andorra"
-msgstr "Andorra"
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vietnami \"numbrireaga\" QWERTY"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "(default value: %s)"
-msgstr "(vaikeväärtus: %s)"
+#: ../../keyboard.pm_.c:263
+msgid "Yugoslavian (latin)"
+msgstr "Jugoslaavia (ladina)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
-msgstr ""
-"Määrab salasõna aeguma \"maks.\" n päeva pärast ning viivituse enne muutmist "
-"\"mittekehtivaks\"."
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
+msgstr "Parempoolne Alt-klahv"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Alternatiivne testlehekülg (Letter)"
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
+msgstr "Mõlemad Shift-klahvid korraga"
-#: ../../standalone/drakgw:1
-#, c-format
-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 ""
-"DHCP serveri seadistused.\n"
-"\n"
-"Siin saab valida erinevaid võimalusi DHCP serveri seadistustele.\n"
-"Kui te ei tea mõne valiku tähendust, jätke see puutumata.\n"
-"\n"
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
+msgstr "Ctrl- ja Shift-klahvid korraga"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Choose an X server"
-msgstr "Valige X server"
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
+msgstr "CapsLock-klahv"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr "Kopeerimine mällu CD-ROM eemaldamise võimaldamiseks"
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
+msgstr "Ctrl- ja Alt-klahvid korraga"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Saaleala suurus (MB): "
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
+msgstr "Alt- ja Shift-klahvid korraga"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No changes to backup!"
-msgstr "Varukoopiaga võrreldes pole mingeid muutusi!"
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
+msgstr "\"Menüü\"-klahv"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "Vormindatud\n"
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr "Vasakpoolne \"Windows\"-klahv"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Type of install"
-msgstr "Paigalduse tüüp"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
+msgstr "Parempoolne \"Windows\"-klahv"
-#: ../../printer/printerdrake.pm:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Printer \"%s\" SMB/Windows serveril \"%s\""
+msgid "Circular mounts %s\n"
+msgstr "Ringühendus %s\n"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d komaga eraldatud numbrit"
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
+msgstr "Eemalda enne kettarühmad (logical volumes)\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../modules.pm_.c:290
msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Protokoll rusers laseb üle võrgu saada informatsiooni\n"
-"süsteemi kasutajate kohta. Ettevaatust!"
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+msgstr "2.2 kernelitel pole enam PCMCIA tuge. Kasutage palun 2.4 kernelit."
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Automaatsete sammude seadistamine"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
+msgstr "Siin saab seadistada mooduli kõiki parameetreid."
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "Barbados"
+#: ../../modules/parameters.pm_.c:18
+msgid "modinfo is not available"
+msgstr "'modinfo' ei ole kättesaadav"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
-msgstr ""
-"Kas soovite avatud tarkvara kogukonnast rohkem teada saada? Liituge vaba "
-"tarkvara maailmaga!"
+#: ../../modules/parameters.pm_.c:50
+msgid "a number"
+msgstr "number"
-#: ../../standalone/drakbackup:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "Please select data to backup..."
-msgstr "Valige palun varundamiseks andmed..."
+msgid "%d comma separated numbers"
+msgstr "%d komaga eraldatud numbrit"
-#: ../../standalone/net_monitor:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
-msgstr ""
-"Ühenduse loomine ebaõnnestus.\n"
-"Kontrollige palun seadistusi Mandrake juhtimiskeskuse abil."
+msgid "%d comma separated strings"
+msgstr "%d komaga eraldatud stringi"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
-msgstr "saadud"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
+msgstr "komaga eradatud numbrit"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr "Su lubamine ainult grupi wheel liikmetele või igale kasutajale"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated strings"
+msgstr "komaga eraldatud stringi"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
-msgstr "/Fail/_Uus"
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Suni hiir"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DNS Server IP"
-msgstr "Nimeserveri IP"
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range End:"
-msgstr "IP vahemiku lõpp:"
+#: ../../mouse.pm_.c:33
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Tavaline PS2 rattaga hiir"
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
-msgstr "Kõrge"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Lisa uus printer süsteemi"
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr "NoVideo"
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
-msgstr "see väli kirjeldab seadet"
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Printeri lisamine StarOffice/OpenOffice.org/GIMP-ile"
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+msgid "Microsoft Explorer"
+msgstr "Microsoft Explorer"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printers"
-msgstr "Kohalikud printerid"
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
+msgstr "1 nupuga"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation image directory"
-msgstr "Paigalduslaadefaili kataloog"
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "Tavaline 2 nupuga hiir"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "NIS server"
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "Rattaga"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Port: %s"
-msgstr "Port: %s"
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "jadapordi"
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "Hispaania"
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "Tavaline 3 nupuga hiir"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
-msgstr "kohalik seadistus: %s"
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "See kasutajanimi on juba lisatud"
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
-msgstr "Valige fail"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr "Rakenda"
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Logitech CC seeria"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Kättesaadavate portide automaattuvastus"
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr "San Marino"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "MM seeria"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Internetiühendust hetkel ei jagata"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Belgium"
-msgstr "Belgia"
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech (jadaport, vana C7 tüüpi)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
-msgstr "Kuveit"
+#: ../../mouse.pm_.c:68
+msgid "busmouse"
+msgstr "siinihiir"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "Valige palun käivitatav aknahaldur:"
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "2 nupuga"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
-msgstr "Detsember"
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "3 nupuga"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "CPU alampõlvkond"
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "ei soovi"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
-msgstr "Esimese korra nõustaja"
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "Hiir puudub"
-#: ../../lang.pm:1
-#, c-format
-msgid "Taiwan"
-msgstr "Taiwan"
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
+msgstr "Palun testige hiirt"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "Pakistan"
+#: ../../mouse.pm_.c:491
+msgid "To activate the mouse,"
+msgstr "Hiire aktiveerimiseks"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "palun oodake, analüüsin faili: %s"
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr "KEERUTAGE RATTAKEST!"
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Tekkis mingi viga, aga seda ei suuda programm ise klaarida.\n"
-"Jätkake omal vastutusel."
+#: ../../my_gtk.pm_.c:65
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*.*-r-*"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Importance: "
-msgstr "Tähtsus: "
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
+msgstr "Lõpeta"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-"Trükkimiseks Lexmarki inkjetil antud seadistusega läheb Teil tarvis Lexmarki "
-"pakutavaid inkjet printeri draivereid (http://www.lexmark.com/). Klõpsake "
-"viidal \"Drivers\". Seejärel valige oma mudel ja seejärel "
-"operatsioonisüsteem \"Linux\". Draiverid on kas RPM-paketid või "
-"shelliskriptid interaktiivse graafilise paigalduse võimalusega. Te ei pruugi "
-"seda seadistust sooritada graafiliste kasutajaliideste abil. Katkestage kohe "
-"pärast litsentsilepinguga nõustumist. Seejärel trükkige \"lexmarkmaintain\" "
-"abil printeripea joondamise leheküljed ning kohandage selle rakenduse abil "
-"pea joondamise seadistust."
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
+msgstr "Järgmine ->"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Permissions"
-msgstr "Loabitid"
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "Kas see on sobiv?"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Teenusepakkuja tunnus (näiteks minuisp.ee)"
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "Info"
-#: ../../install_steps_gtk.pm:1
-#, 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'."
-msgstr ""
-"Teie süsteemil napib ressurse ja paigaldamine võib ebaõnnestuda.\n"
-"Kui nii juhtub, proovige palun tekstipõhist paigaldust. Selleks\n"
-"vajutage CDROMilt laadimisel F1 ja sisestage 'text'"
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
+msgstr "Ava puu"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "Kasuta Windowsi partitsiooni loopbackina"
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
+msgstr "Sulge puu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
-msgstr "Armeenia (trükimasin)"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr "Sorteeritud või sorteerimata"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection type: "
-msgstr "Ühenduse tüüp: "
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "pppoe"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Graphical interface"
-msgstr "Graafiline kasutajaliides"
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
+msgstr "pptp"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "Tšaad"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
+msgstr "dhcp"
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "India"
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
+msgstr "Alcatel speedtouch USB"
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s koos 3D graafikakiirendi toega"
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
+msgstr "Sagem (pppoe vahendusel) usb"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr "Slovakkia"
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
+msgstr "Loo internetiühendus"
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "Singapur"
+#: ../../network/adsl.pm_.c:30
+msgid ""
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"Kõige tavalisem ühendusviis ADSL jaoks on pppoe.\n"
+"Mõnel juhul aga kasutatakse pptp-d, harva dhcp-d.\n"
+"Kui Te ei tea, kasutage pppoe-d"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "Kambodža"
+#: ../../network/adsl.pm_.c:166
+msgid ""
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
+msgstr ""
+"Selleks vajate Alcatel'i mikrokoodi.\n"
+"Seda saate alla laadida võrgust\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"ja saadud 'mgmt.o' kopeerige kataloogi /usr/share/speedtouch"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Realaotussagedus: %s\n"
+#: ../../network/drakfirewall.pm_.c:12
+msgid "Web Server"
+msgstr "Veebiserver"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr "Asukoht"
+#: ../../network/drakfirewall.pm_.c:17
+msgid "Domain Name Server"
+msgstr "Nimeserver"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
-msgstr "EI LEITUD"
+#: ../../network/drakfirewall.pm_.c:32
+msgid "Mail Server"
+msgstr "Meiliserver"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr "Siin saate määrata printeri asemele suvalise käsurea."
+#: ../../network/drakfirewall.pm_.c:37
+msgid "POP and IMAP Server"
+msgstr "POP ja IMAP server"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:111
+msgid "No network card"
+msgstr "Võrgukaart puudub"
+
+#: ../../network/drakfirewall.pm_.c:129
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"
+"drakfirewall configurator\n"
"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"Trükkimissüsteemi (%s) ei käivitata automaatselt arvuti alglaadimisel.\n"
-"\n"
-"On võimalik, et automaatkäivitus lülitati välja seoses kõrgema turvataseme "
-"valikuga, sest trükkimissüsteem on võimaliku rünnaku objekt.\n"
+"drakfirewalli seadistaja\n"
"\n"
-"Kas soovite trükkimissüsteemi automaatkäivituse taas sisse lülitada?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Printer %s\n"
-"Mida soovite muuta?"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add host"
-msgstr "Lisa masin"
+"Selle vahendiga saate luua lihtsa kaitse Interneti ohtude vastu.\n"
+"Kui vajate võimsat tulemüüri, vaadake palun\n"
+"spetsiaalset MandrakeSecurity Firewall distributsiooni."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:135
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"
+"drakfirewall configurator\n"
"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-"Kui Te tõesti arvate, et teate, milline juhtprogramm Teie helikaardile\n"
-"tegelikult sobib, võite valida selle ülaltoodud nimekirjast.\n"
+"drakfirewalli seadistaja\n"
"\n"
-"Teie praegune helikaart \"%s\" kasutab juhtprogrammi \"%s\" "
+"Kontrollige enne jätkamist, et olete seadistanud pääsu võrku/Internetti\n"
+"drakconnecti abil."
-#: ../../any.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr "Millistel teenustel soovite lubada kasutada internetiühendust?"
+
+#: ../../network/drakfirewall.pm_.c:153
msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-"Kas lubada kasutajatel jagada mõningaid oma katalooge?\n"
-"Lubamine võimaldab kasutajal seda teha lihtsalt klõpsuga sildil \"Jaga\" "
-"Konqueroris ja Nautiluses.\n"
-"\n"
-"\"Isetehtud\" lubab määrata seda kasutajate kaupa.\n"
+"Sisestada võib mitmesuguseid porte. \n"
+"Sobivad näiteks: 139/tcp 139/udp.\n"
+"Vaadake lähemalt /etc/services."
-#: ../../install_steps_interactive.pm:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-"Valige palun paketivaliku laadimine või salvestamine flopil(t).\n"
-"Vorming on sama, mis automaatpaigaldusega loodud flopide puhul."
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "No CDROM support"
-msgstr "CD-ROM toetuseta"
+"Määrati vale port: %s\n"
+"Õige määrang on \"port/tcp\" või \"port/udp\", \n"
+"kus port on number 1 ja 65535 vahel."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "China (broadcast)"
-msgstr "Hiina (tele)"
+#
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
+msgstr "Kõik (tulemüür puudub)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use quota for backup files."
-msgstr "Kvootide kasutamine varukoopiafailidel"
+#: ../../network/drakfirewall.pm_.c:169
+msgid "Other ports"
+msgstr "Muud pordid"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Printeri \"%s\" seadistamine..."
+#: ../../network/ethernet.pm_.c:37
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
+msgstr ""
+"Millist DHCP klienti soovite kasutada?\n"
+"Vaikimisi on selleks 'dhcp-client'"
-#: ../../fs.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:88
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."
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-"Ei luba ühegi binaarfaili käivitamist haagitud failisüsteemis.\n"
-"See on kasulik serveritel, mille failisüsteemides on süsteemist\n"
-"erineva arhitektuuriga binaarfaile."
+"Ühtki võrgukaarti ei õnnestunud tuvastada\n"
+"Seega ei saa ka sellist ühendust seadistada."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection"
-msgstr "Internetiühendus"
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
+msgstr "Valige võrguliides"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:93
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
+"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
-"Mooduli %s laadimine ei õnnestunud.\n"
-"Kas soovite proovida parameetreid muuta?"
+"Palun valige, millist võrguliidest soovite internetiühenduse jaoks kasutada"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr "Tere tulemast avatud tarkvara maailma"
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "võrgukaarti ei leitud"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnia ja Hertsegoviina"
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "Võrguseadistused"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:201
msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
-"See haakepunkt vajab tõelist (ext2/ext3, reiserfs, xfs või jfs) "
-"failisüsteemi\n"
+"Palun sisestage oma masina nimi.\n"
+"Seda nõuavad ka mõned DHCP serverid.\n"
+"Masina nimi peab olema esitatud täiskujul,\n"
+"nagu ``minumasin.minufirma.ee''."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Sisestage palun masinanimi või IP aadress.\n"
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "Masinanimi"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "Holland"
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+msgid "Network Configuration Wizard"
+msgstr "Võrguseadistuste nõustaja"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Failide saatmine FTP vahendusel"
+#: ../../network/isdn.pm_.c:22
+msgid "External ISDN modem"
+msgstr "Väline ISDN modem"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
msgstr "Sisemine ISDN kaart"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
+msgstr "Millist ISDN ühendust kasutate?"
+
+#: ../../network/isdn.pm_.c:45
msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
msgstr ""
-"Pole teada ühtegi alternatiivset OSS/ALSA juhtprogrammi Teie helikaardile (%"
-"s), millel praegu on kasutusel \"%s\""
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Title"
-msgstr "Tiitel"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Fontide paigaldamine ja teisendamine"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
-msgstr "HOIATUS"
+"Millist ISDN seadistust eelistate?\n"
+"\n"
+"* Vana seadistus kasutab isdn4net-i. Sellel on võimsaid\n"
+" vahendeid, kuid seadistamine on keerukas ja mittestandardne.\n"
+"\n"
+"* Uus seadistus on hõlpsamini mõistetav, vastab paremini\n"
+" standarditele, kuid pakub vähem tööriistu.\n"
+"\n"
+"Meie soovitus on kasutada light-seadistust.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
-msgstr "Alglaaduri paigaldamine"
+#
+#: ../../network/isdn.pm_.c:54
+msgid "New configuration (isdn-light)"
+msgstr "Uus seadistus (isdn-light)"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "replay"
-msgstr "korda"
+#
+#: ../../network/isdn.pm_.c:54
+msgid "Old configuration (isdn4net)"
+msgstr "Vana seadistus (isdn4net)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
-msgstr "tuvastati %s"
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "ISDN sätted"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/isdn.pm_.c:166
msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
-"Expect on skriptikeele Tcl laiend, mis võimaldab interaktiivseid seansse "
-"ilma kasutaja sekkumiseta."
+"Valige oma teenusepakkuja.\n"
+"Kui see ei ole nimekirjas, valige Tundmatu."
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr "Neitsisaared (USA)"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol"
+msgstr "Euroopa protokoll"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "Kõlbmatu varukoopia"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol (EDSS1)"
+msgstr "Euroopa protokoll (EDSS1)"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/isdn.pm_.c:181
+msgid "Protocol for the rest of the world"
+msgstr "Protokoll ülejäänud maailma tarbeks"
+
+#: ../../network/isdn.pm_.c:181
msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
-"Internetiühenduse jagamine on juba seadistatud,\n"
-"aga hetkel on see keelatud.\n"
-"\n"
-"Mida soovite ette võtta?"
+"Protokoll ülejäänud maailma tarbeks\n"
+"Ilma D-kanalita (liisitud liinid)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-"Sisestage serveri IP aadress ja port, mille printereid soovite kasutada."
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
+msgstr "Millist protokolli soovite kasutada?"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid "Pipe into command"
-msgstr "Töö toru kaudu käsuks"
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr "Leiti \"%s\" liides, kas soovite seda kasutada?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Osa Teie riistvarast nõuab tarnijapoolseid draivereid.\n"
-"Infot nende kohta saate: %s"
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
+msgstr "Millist tüüpi kaart Teil on?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "Haiti"
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
+msgstr "Ei tea"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "Otsin seadmeid..."
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"Isetehtud võimaldab Teil määrata päeva ja aja oma tahtmist mööda. Muude "
-"võimaluste puhul kasutatakse /etc/crontab-is leiduvat run-parts'i."
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/isdn.pm_.c:210
msgid ""
-"Description of the fields:\n"
"\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
-"Väljade kirjeldus:\n"
"\n"
+"Kui Teil on ISA kaart, siis peaks järgmised väärtused olema õiged.\n"
+"\n"
+"Kui Teil on PCMCIA kaart, peaksite Te ise teadma selle IRQ ning IO "
+"väärtusi.\n"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Basic options"
-msgstr "Põhiseadistused"
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "Loobu"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
-msgstr "protsessori (CPU) nimi"
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
+msgstr "Jätka"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr "IPv4 võltsveateadete lubamine"
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
+msgstr "Milline on Teie ISDN kaart?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Printeri andmete värskendamine..."
+#: ../../network/isdn.pm_.c:239
+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 ""
+"Leiti küll PCI ISDN kaart, kuid selle tüüp on tundmatu. Palun valige PCI "
+"kaart järgmisel sammul."
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr "Vormindada tuleb ka %s"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "PCI ISDN kaarti ei leitud. Palun valige see järgmisel sammul."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "Vaadake ette: see võib olla ohtlik."
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Millisesse jadaporti on Teie modem ühendatud?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "Sisestage palun paketivalikut sisaldav flopi"
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "DialUp parameetrid"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server: "
-msgstr "Server: "
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr "Ühenduse nimi"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Alerts:"
-msgstr "Turvahoiatused:"
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
+msgstr "Sissehelistamiskeskuse number"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
-msgstr "Rootsi"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "Kasutajakonto"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Expecti kasutamine SSH jaoks"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr "CHAP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "Poola"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Other ports"
-msgstr "Muud pordid"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "Skriptipõhine"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "hõivatavate puhvrite arv mmap-i jaoks"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "Terminalipõhine"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid " - detected"
-msgstr " - tuvastatud"
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "Domeeninimi"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr "SMBus kontrollerid"
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+msgid "First DNS Server (optional)"
+msgstr "Esimene nimeserver (soovituslik)"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Ühenduse aegumine (sekundites)"
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+msgid "Second DNS Server (optional)"
+msgstr "Teine nimeserver (soovituslik)"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/modem.pm_.c:95
msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-"Mõned varasemad i486DX-100 kiibid ei suutnud korralikult naasta tööresiimi, "
-"kui oli kasutatud käsklust \"seiska\" (\"halt\")"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Croatian"
-msgstr "Horvaadi"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Use existing partition"
-msgstr "Kasuta olemasolevat partitsiooni"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Ühendust peegliga %s ei saadud"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Abi/_Misvärk"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Kasutaja kataloogid eemaldatakse enne taastamist"
+"Teie modem ei ole toetatud.\n"
+"Ehk saate abi aadressilt http://www.linmodems.org"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/modem.pm_.c:97
#, 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?"
+"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
-"Kavatsesite hakata seadistama võrguprinterit. Selleks läheb vaja töötavat "
-"võrguühendust, aga Teil on võrk veel seadistamata. Kui Te jätkate ilma võrku "
-"seadistamata, et ole Teil võimalik kasutada printerit, mida te tahate "
-"seadistada. Kuidas peaks nüüd edasi talitama?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "CUPS printeri seadistused"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr "ei suutnud haagitud partitsioonidel leida ühtegi fonti"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
-msgstr "F00f viga"
-
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Domain Name:"
-msgstr "Domeeninimi:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Root umask"
-msgstr "Administraatori umask"
-
-#: ../../any.pm:1
-#, c-format
-msgid "On Floppy"
-msgstr "Flopil"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reboot by the console user"
-msgstr "Taaskäivituse lubamine konsooli kasutajale"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore"
-msgstr "Taastamine"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Server:"
-msgstr "Server:"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
-msgstr "Kui on 'jah', kontrollitakse, kas võrguseadmed on mitte-eelisresiimis."
+"Leiti \"%s\" kiibil põhinev \"winmodem\". Kas paigaldada vajalik tarkvara?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Otsin saadaolevaid pakette..."
+#: ../../network/modem.pm_.c:97
+msgid "Do nothing"
+msgstr "Ära tee midagi"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Palun oodake, loon süsteemi seadistustefailid USB mälupulgal..."
+#: ../../network/modem.pm_.c:97
+msgid "Install rpm"
+msgstr "Paigalda RPM"
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
-msgstr "Initsialiseerimisteade"
+#: ../../network/modem.pm_.c:97
+msgid "Title"
+msgstr "Tiitel"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "Päästa partitsioonitabel"
+#: ../../network/netconnect.pm_.c:29
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
+msgstr ""
+"\n"
+"Saate ühenduse katkestada või uuesti seadistada."
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "Küpros"
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr ""
+"\n"
+"Saate seadistada ühenduse uuesti."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection complete."
-msgstr "Ühendus on loodud."
+#: ../../network/netconnect.pm_.c:29
+msgid "You are currently connected to internet."
+msgstr "Hetkel olete Internetiga ühendatud."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "Eemalda RAIDist"
+#: ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr ""
+"\n"
+"Saate ühenduda Internetti või seadistada ühendus uuesti."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "See krüptovõti on liiga lihtne (peaks olema vähemalt %d märki)"
+#: ../../network/netconnect.pm_.c:32
+msgid "You are not currently connected to Internet."
+msgstr "Hetkel ei ole Te Internetti ühendatud."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Seadistamise nõustajad"
+#: ../../network/netconnect.pm_.c:36
+msgid "Connect"
+msgstr "Ühenda"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN ühendus"
+#: ../../network/netconnect.pm_.c:37
+msgid "Disconnect"
+msgstr "Katkesta ühendus"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CD-R / DVD-R"
+#: ../../network/netconnect.pm_.c:38
+msgid "Configure the connection"
+msgstr "Ühenduse seadistamine"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
-msgstr "esmane"
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
+msgstr "Internetiühenduse seadistamine"
-#: ../../printer/main.pm:1
+#: ../../network/netconnect.pm_.c:94
#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr " SMB/Windowsi serveril \"%s\", jagatud printer \"%s\""
+msgid "We are now going to configure the %s connection."
+msgstr "Nüüd on aeg seadistada %s ühendus."
-#: ../../help.pm:1
+#: ../../network/netconnect.pm_.c:103
#, 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"
-"!!"
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press OK to continue."
msgstr ""
-"Nüüd saate valida, millised teenused peaks käivitama alglaadimisel.\n"
"\n"
-"Siin on üles loetud kõik teenused, mis on saadaval antud paigalduse puhul.\n"
-"Uurige neid hoolega ja jätke valimata kõik, mida ei ole alglaadimise ajal\n"
-"tingimata vajalik käivitada.\n"
"\n"
-"Konkreetset teenust valides näete selle kohta lühikest seletavat teksti. "
-"Kui\n"
-"Te ei ole aga kindel, kas teenus on kasulik või mitte, on mõistlik jätta "
-"kehtima\n"
-"vaikevalik (olgu see siis lubav või mitte).\n"
"\n"
-"!! Kui kavatsete oma süsteemi kasutada serverina, olge eriti tähelepanelik:\n"
-"tõenäoliselt ei soovi Te käivitada mittevajalikke teenuseid. Pidage meeles, "
-"et\n"
-"mõned teenused võivad serveril kasutatuna olla isegi ohtlikud. Üldiselt "
-"tasub\n"
-"valida ainult neid teenuseid, mida Teil tõesti vaja läheb.\n"
-"!!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niue"
-msgstr "Niue"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "Jäta vahele"
+"Nüüd on aeg seadistada %s ühendus.\n"
+"\n"
+"\n"
+"Vajutage jätkamiseks Olgu."
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr "Aktiveerib süsteemi alglaadimisel kõik vajalikud võrguliidesed."
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr "Võrgu sätted"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/netconnect.pm_.c:133
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)"
+"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 ""
-"CPU sagedus megahertsides (seda võib ligilähedaselt samastada operatsioonide "
-"arvuga, mida CPU suudab sekundis sooritada)"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "important"
-msgstr "tähtis"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "Mandrake Linuxi printerite haldur"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
-msgstr "Edenemine kokku"
+"Võrguühendus on juba seadistatud, sest installitakse ju võrgust.\n"
+"Kui soovite neid seadistusi säilitada, valige Olgu, muidu katkestage ja "
+"saate seadistada uuesti.\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:157
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"
+"Welcome to The Network Configuration Wizard.\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."
+"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 ""
-"Esmalt otsib DrakX üles kõik Teie arvuti IDE-seadmed, püüdes samal ajal\n"
-"tuvastada ka PCI siini SCSI-liideseid. Kui viimaseid leitakse ja vastav(ad)\n"
-"draiver(id) on teada, siis laetakse ja paigaldatakse kõik vajalik "
-"automaatselt.\n"
-"\n"
-"Riistvara tuvastamine ei pruugi alati siiski õnnestuda ja kui see nii "
-"peaks \n"
-"minema, palub DrakX Teil teatada, kas masinas on mõni PCI SCSI-liides.\n"
-"\n"
-"Kui peate oma adapteri käsitsi määrama, küsib DrakX, kas soovite määrata\n"
-"ka selle parameetrid. Siin oleks mõtet lasta tegutseda DrakX-l, mis proovib\n"
-"järele liidese spetsiifilised omadused, mida see initsialiseerimiseks "
-"vajab.\n"
-"Tavaliselt õnnestub see edukalt.\n"
+"Internetiühenduse Nõustaja\n"
"\n"
-"Kui automaatne parameetrite otsimine ei tööta, tuleb liides käsitsi "
-"seadistada.\n"
-"Selleks tutvuge palun lähemalt oma SCSI liidese dokumentatsiooniga\n"
-"või küsige abi riistvara müüjalt."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr "Aruba"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "Kasutajad"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Alglaaduri ettevalmistamine..."
+"Nüüd hakkame internetiühendust seadistama.\n"
+"Kui Te ei soovi automaatset tuvastamist, siis jätke see märkimata.\n"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr "Sisestage oma kasutajainfo, parool on vajalik ekraanisäästjale"
+#: ../../network/netconnect.pm_.c:163
+msgid "Choose the profile to configure"
+msgstr "Valige profiil, mida seadistada"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Vaikelüüs (nt %s)"
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
+msgstr "Kasuta automaattuvastust"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
-msgstr "Salasõnad ei klapi"
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
+msgstr "Ekspertresiim"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Korrektne IP aadress on näiteks:\n"
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
+msgstr "Otsin seadmeid..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "Valige palun varundamiseks kasutatav andmekandja"
+#: ../../network/netconnect.pm_.c:214
+msgid "Normal modem connection"
+msgstr "Tavaline modemiühendus"
-#: ../../standalone/harddrake2:1
+#: ../../network/netconnect.pm_.c:214
#, c-format
-msgid "Frequency (MHz)"
-msgstr "Sagedus (MHz)"
+msgid "detected on port %s"
+msgstr "leiti pordis %s"
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Selle paketivaliku kasutamiseks alustage paigaldamist käsuga \"linux "
-"defcfg=floppy\""
+#: ../../network/netconnect.pm_.c:215
+msgid "Winmodem connection"
+msgstr "Ühendus \"Winmodemiga\""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of the processor"
-msgstr "protsessori number"
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+msgid "detected"
+msgstr "tuvastati"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Arvuti sisekell on seatud GMT ajale"
+#: ../../network/netconnect.pm_.c:216
+msgid "ISDN connection"
+msgstr "ISDN ühendus"
-#: ../../network/isdn.pm:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "Kas soovite alustada uue seadistusega?"
+msgid "detected %s"
+msgstr "tuvastati %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Give a file name"
-msgstr "Failinimi"
+#: ../../network/netconnect.pm_.c:217
+msgid "ADSL connection"
+msgstr "ADSL ühendus"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Valige palun port, kuhu Teie printer on ühendatud."
+#: ../../network/netconnect.pm_.c:218
+msgid "Cable connection"
+msgstr "Kaabliühendus"
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "Vahetage CD-ROM"
+#: ../../network/netconnect.pm_.c:218
+msgid "cable connection detected"
+msgstr "leiti kaabliühendus"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "Paraguay"
+#: ../../network/netconnect.pm_.c:219
+msgid "LAN connection"
+msgstr "LAN ühendus"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "Seadistamine on lõpetatud. Kas soovite seda nüüd rakendada ?"
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
+msgstr "võrgukaart(i) leiti üles"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr "Muut/diferentsvarunduse kasutamine (vanu varukoopiaid ei asendata)"
+#: ../../network/netconnect.pm_.c:222
+msgid "Choose the connection you want to configure"
+msgstr "Valige ühendus, mida seadistada"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../network/netconnect.pm_.c:246
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:"
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
-" - /etc/dhcpd.conf haldamine:\n"
-" \t\tEt klient saaks teha alglaadimise võrgust, vajab iga klient "
-"kirjet failis dhcpd.conf,\n"
-" \t\tmis omistab masinale IP aadressi ja võrgulaadepildi. "
-"drakServTerm aitab neid\n"
-" \t\tkirjeid luua/eemaldada.\n"
-"\t\t\t\n"
-" \t\t(PCI kaartidel võib laadepilt puududa - etherboot nõuab "
-"korrektset laadepilti.\n"
-" \t\tSilmas võiks pidada ka seda, et kui etherboot laadepilti ootab, "
-"eeldab ta nime\n"
-" \t\tkujul boot-3c59x.nbi, mitte aga boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t\n"
-" \t\tTüüpiline dhcpd.conf-i lõik, mis toetab kettata tööjaama, näeb "
-"välja selline:"
+"Olete seadistanud mitu võimalust Internetiga ühendumiseks.\n"
+"Valige palun see, mida soovite kasutada.\n"
+"\n"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr "Teie helikaardile (%s) ei õnnestunud tuvastada juhtprogrammi"
+#: ../../network/netconnect.pm_.c:247
+msgid "Internet connection"
+msgstr "Internetiühendus"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "force"
-msgstr "sunni peale"
+#: ../../network/netconnect.pm_.c:253
+msgid "Do you want to start the connection at boot?"
+msgstr "Kas soovite luua ühenduse juba alglaadimisel?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Exit"
-msgstr "Välju"
+#: ../../network/netconnect.pm_.c:267
+msgid "Network configuration"
+msgstr "Võrgusätted"
+
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
+msgstr "Võrk tuleb uuesti käivitada"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/netconnect.pm_.c:272
#, c-format
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
msgstr ""
-"MÄRKUS: Sõltuvalt printeri mudelist ja trükkimissüsteemist paigaldatakse "
-"kuni %d MB lisatarkvara."
+"Võrgu taaskäivitusel juhtus viga: \n"
+"\n"
+"%s"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../network/netconnect.pm_.c:282
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
-"Ühtegi liidest ei ole seadistatud.\n"
-"Esmalt tuleb need seadistada, klõpsake selleks nupul 'Seadista'"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "Eesti"
+"Õnnitleme, võrk ja internetiühendus on seadistatud.\n"
+"Sätted salvestatakse nüüd.\n"
+"\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:286
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
-"Apache on maailma juhtiv veebiserveri programm. Tõenäoliselt\n"
-"ka võimsaim."
+"Soovitame taaskäivitada ka X keskkonna, et vältida võimalikke\n"
+"masinanime muutmisest tingitud probleeme."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/netconnect.pm_.c:287
msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
+"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 ""
-"CD-kirjutaja seadmenimi\n"
-" nt: 0,1,0"
+"Seadistamisel esines probleeme.\n"
+"Kontrollige oma ühendust net_monitor või mcc abil. Kui ühendus ei tööta, "
+"tuleks see uuesti seadistada."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ALL"
-msgstr "KÕIK"
+#: ../../network/network.pm_.c:278
+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 ""
+"HOIATUS: See seade on juba seadistatud Interneti jaoks.\n"
+"Valige lihtsalt Olgu, et sätteid mitte muuta.\n"
+"All toodud väljade muutmine tühistab varasemad sätted."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Lisa/kustuta klient"
+#: ../../network/network.pm_.c:283
+msgid ""
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
+msgstr ""
+"Palun andke IP parameetrid selle masina jaoks.\n"
+"Kõik read tuleb sisestada IP-aadressi kujul\n"
+"(näiteks 12.34.56.78)"
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "Choose the network interface"
-msgstr "Valige võrguliides"
+msgid "Configuring network device %s"
+msgstr "Seadistame võrgukaardi %s"
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../network/network.pm_.c:294
#, c-format
-msgid "Unknown Model"
-msgstr "Tundmatu mudel"
+msgid " (driver %s)"
+msgstr " (draiver %s)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
-msgstr "CD/DVD kirjutajad"
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "IP aadress"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Partitsioonilt toimub alglaadimine\n"
-" (MS-DOS-i, mitte lilo jaoks)\n"
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr "Võrgumask"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Märkimisel võib \"%s\" faili lugeda"
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image"
-msgstr "valige pilt"
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "Automaatne IP"
-#
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Leiti tulemüüri seadistused!"
+#: ../../network/network.pm_.c:299
+msgid "Start at boot"
+msgstr "Käivitub alglaadimisel"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "Ühenduse nimi"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP aadress peab olema kujul 1.2.3.4"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../network/network.pm_.c:326
msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-"tekstikasti x-koordinaat\n"
-"arvulises väljenduses"
+"Sagedus peab sisaldama suffiksit k, M või G (näiteks \"2.46G\" - 2,46 GHz "
+"sagedusel), või lisage piisavalt nulle."
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/network.pm_.c:330
msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
msgstr ""
-"Võib juhtuda, et Te ei saa LiLo-t paigaldada (sest LiLo ei suuda käsitleda "
-"loogilist ketas mitmel füüsilisel kettal)"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Updating package selection"
-msgstr "Paketivaliku uuendamine"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "Kuhu soovite haakida loopback faili %s?"
+"Kiirus peab sisaldama suffiksit k, M või G (näiteks \"11M\"), või lisage "
+"piisavalt nulle."
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../network/network.pm_.c:350
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"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 ""
-"Flopi on edukalt loodud.\n"
-"Nüüd võite vajadusel paigaldust korrata."
+"Palun sisestage oma masina nimi.\n"
+"Masina nimi peab olema esitatud täiskujul,\n"
+"näiteks ``minumasin.minufirma.ee''.\n"
+"Kui Teil on vaikelüüs, siis sisestage ka selle IP aadress"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Varundamine CD-R/DVD-R-ile"
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "Nimeserver"
-#: ../../standalone/harddrake2:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "hiire nuppude arv"
+msgid "Gateway (e.g. %s)"
+msgstr "Vaikelüüs (nt %s)"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
-msgstr "Kordamine"
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "Lüüsipoolne seade"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup other files"
-msgstr "Muude failide varundamine"
+#: ../../network/network.pm_.c:363
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "Nimeserveri aadress peab olema kujul 1.2.3.4"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "Flopiseade ei ole kättesaadav"
+#: ../../network/network.pm_.c:367
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Lüüsi aadress peab olema kujul 1.2.3.4"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Varukoopia failid on vigased"
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
+msgstr "Vahendajate sätted"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
-msgstr "Telesüsteem:"
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "HTTP vahendaja"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr "Cpuid perekond"
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "FTP vahendaja"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
+msgstr "Võrgukaadi id tuvastus (kasulik sülearvutite puhul)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: thin"
-msgstr "tüüp: õhuke (thin)"
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
+msgstr "Vahendaja peab olema kujul http://..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "Leedu AZERTY (uuem)"
+#: ../../network/network.pm_.c:388
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "URLi alguses peab olema 'ftp:' või 'http:'"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr "jah tähendab, et matemaatika-kaasprotsessoril on erandivektor"
+#
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
+msgstr "Leitud tulemüüri sätted!"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/shorewall.pm_.c:27
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"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
-"Olete valinud juurpartitsiooniks (/) tarkvaralise RAID-i.\n"
-"Ilma /boot partitsioonita ei ole võimalik sellist süsteemi laadida.\n"
-"Lisage kindlasti /boot partitsioon!"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "Muu OS (MacOS...)"
+"Hoiatus! Leiti olemasolevad tulemüüri sätted. Tõenäoliselt peaksite need "
+"hiljem üle vaatama."
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Hiire aktiveerimiseks"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "Võrgu käimapanek"
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
+msgstr "Interneti sätted"
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Hetktõmmised asuvad pärast paigaldust asukohas %s"
+#: ../../network/tools.pm_.c:58
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Kas soovite oma internetiühendust proovida?"
-#: ../../help.pm:1
-#, 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:\")."
-msgstr ""
-"Teie arvuti kõvakettal on rohkem kui üks Microsoft Windowsi partitsioon.\n"
-"Palun valige välja see, mille suurust soovite Mandrake Linuxi jaoks muuta.\n"
-"\n"
-"Teie abistamiseks on igal partitsioonil näidatud \"Nimi Linuxis\", \"Nimi "
-"Windowsis\" ja \"Mahutavus\".\n"
-"\n"
-"\"Nimi Linuxis\" koosneb kõvakettatüübist, selle numbrist ja partitsiooni\n"
-"numbrist (näiteks \"hda1\").\n"
-"\n"
-"Kõvaketta tüüp on \"hd\", kui on tegemist IDE-kettaga, ja \"sd\", kui on\n"
-"tegemist SCSI-kettaga.\n"
-"\n"
-"Kõvaketta number on alati täht \"hd\" või \"sd\" järel. IDE-ketastel:\n"
-"\n"
-" * \"a\" - esmase IDE kontrolleri ülem,\n"
-"\n"
-" * \"b\" - esmase IDE kontrolleri allutatu,\n"
-"\n"
-" * \"c\" - teisese IDE kontrolleri ülem,\n"
-"\n"
-" * \"d\" - teisese IDE kontrolleri allutatu.\n"
-"\n"
-"SCSI-ketaste puhul on \"a\" esimene, \"b\" teine ja nii edasi.\n"
-"\n"
-"\n"
-"\"Nimi Windowsis\" on täht, millega Microsoft Windows vastavat seadet\n"
-"tähistab (esimene ketas või partitsioon kannab nime \"C:\")."
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+msgid "Testing your connection..."
+msgstr "Testime Teie ühendust..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
-msgstr "Tansaania"
+#: ../../network/tools.pm_.c:70
+msgid "The system is now connected to Internet."
+msgstr "Süsteem on nüüd Internetti ühendatud."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "Arvutan FAT failisüsteemi piire"
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
+msgstr "Turvakaalutlusel katkestan nüüd ühenduse."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/tools.pm_.c:72
msgid ""
-"\n"
-"Backup Sources: \n"
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-"\n"
-"Varundusallikad: \n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "custom"
-msgstr "isetehtud"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Content of the file"
-msgstr "Faili sisu"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
-msgstr "LDAP autentimine"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
-msgstr "säilitamaks %s"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
-msgstr "Suvalise juhtprogrammi valimine"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
-msgstr "üle kantud"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Palestine"
-msgstr "Palestiina"
+"Paistab, et süsteem ei ole Internetti ühendatud.\n"
+"Palun seadistage ühendus uuesti."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
+msgstr "Internetiühenduse sätted"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d komaga eraldatud stringi"
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
+msgstr "Palun täitke allpool olev väli"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " isdn"
-msgstr " isdn"
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr "Kaardi IRQ"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "Võimalike klaviatuuride täielik nimekiri"
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "Kaardi mälu (DMA)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Theme name"
-msgstr "Teema nimi"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "Kaardi IO"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/_Abi"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "Kaardi IO_0"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitrary driver"
-msgstr "Suvalise juhtprogrammi valimine"
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "Kaardi IO_1"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "Cooki saared"
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
+msgstr "Teie telefoninumber"
-#: ../../standalone/scannerdrake:1
-#, 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."
-msgstr ""
-"Siin saate valida, millised selle arvuti külge kinnitatud skännerid peaksid "
-"olema kättesaadavad ka teistele kohtvõrgu arvutitele ja millistele nende "
-"hulgast."
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
+msgstr "Teenusepakkuja tunnus (näiteks minuisp.ee)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the width of the progress bar"
-msgstr "edenemisriba laius"
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
+msgstr "Sissehelistamiskeskuse number"
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Partitsiooni %s vormindamine"
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+msgid "Provider dns 1 (optional)"
+msgstr "DNS 1 (võib jätta tühjaks)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hostname required"
-msgstr "Masinanime nõudmine"
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+msgid "Provider dns 2 (optional)"
+msgstr "DNS 2 (võib jätta tühjaks)"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "Paigaldatud fontide valiku tühistamine"
+#: ../../network/tools.pm_.c:109
+msgid "Choose your country"
+msgstr "Valige riik"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Rattaga"
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
+msgstr "Valimisviis"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit kernel version"
-msgstr "Kerneli versiooni edastamine"
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+msgid "Connection speed"
+msgstr "Ühenduse kiirus"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Cancel"
-msgstr "Katkesta"
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+msgid "Connection timeout (in sec)"
+msgstr "Ühenduse aegumine (sekundites)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for configured scanners ..."
-msgstr "Seadistatud skännerite otsimine..."
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
+msgstr "Kasutajatunnus"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Videocard"
-msgstr "Graafikakaart"
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
+msgstr "Salasõna"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tvarukoopiad tar- ja bzip2-vormingus\n"
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
+msgstr "Suurbritannia"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Remove Selected"
-msgstr "Eemalda valitud"
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
+msgstr "haakimine ebaõnnestus: "
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/_Modemite automaattuvastus"
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
+msgstr "Sellel platvormil ei saa laiendatud partitsiooni luua"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove printer"
-msgstr "Eemalda printer"
+#: ../../partition_table.pm_.c:685
+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 ""
+"Partitsioonitabelis on miskipärast tühi koht, aga see ei ole kasutatav.\n"
+"Ainuke lahendus on nihutada primaarset partitsiooni, et \"auk\" satuks "
+"laiendatud partitsioonide kõrvale."
-#: ../../standalone/drakbackup:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "View Last Log"
-msgstr "Viimase logi vaatamine"
+msgid "Restoring from file %s failed: %s"
+msgstr "Taastamine failist %s ebaõnnestus: %s"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "Millistel teenustel soovite lubada kasutada Internetiühendust?"
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
+msgstr "Kõlbmatu varukoopia"
-#: ../../standalone/printerdrake:1
+#: ../../partition_table.pm_.c:796
#, c-format
-msgid "Connection Type"
-msgstr "Ühenduse tüüp"
+msgid "Error writing to file %s"
+msgstr "Viga faili %s kirjutamisel"
-#: ../../standalone/logdrake:1
-#, c-format
+#: ../../partition_table/raw.pm_.c:192
msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
msgstr ""
-"Meili seadistamise vahend.\n"
-"\n"
-"Siin saab seadistada hoiatussüsteemi.\n"
-
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Other"
-msgstr "Muu"
-
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
-msgstr "Vaikimisi"
+"Teie kõvakettal juhtub imelikke asju. \n"
+"Andmete pidevuse kontroll ebaõnnestus. \n"
+"See tähendab, et kettale kirjutamisel tekivad jamad"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Emuleeri 2. hiirenuppu"
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr "vajalik"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter a package name."
-msgstr "Palun sisestage paketi nimi"
+#: ../../pkgs.pm_.c:27
+msgid "important"
+msgstr "tähtis"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run chkrootkit checks"
-msgstr "Chkrootkit kontrolli lubamine"
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr "väga kena"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "type1inst building"
-msgstr "type1inst loomine"
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr "kena"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr "võib olla"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image file"
-msgstr "valige pildifail"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
+msgstr "PDQ - Trüki kohe"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "X server"
-msgstr "X server"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
+msgstr "PDQ"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin User Name"
-msgstr "Domeeni administraatori kasutajatunnus"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
+msgstr "LDP - Otsetrükkimisdeemon"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Telekanalite otsingul tekkis viga"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
+msgstr "LPD"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
-msgstr "USA (rahvusvaheline)"
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
+msgstr "LPRng - LPR, uus põlvkond"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Not installed"
-msgstr "Pole paigaldatud"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
+msgstr "LPRng"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Mõlemad Alt-klahvid korraga"
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
+msgstr "CUPS - Tavaline UNIXi trükkimissüsteem"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "LAN connection"
-msgstr "LAN ühendus"
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
+msgstr "CUPS"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/-"
-msgstr "/Fail/-"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+msgid "Unknown Model"
+msgstr "Tundmatu mudel"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Italian"
-msgstr "Itaalia"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "Kohalik printer"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Basic"
-msgstr "Põhiline"
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
+msgstr "Võrguprinter"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+#: ../../printer/main.pm_.c:28
+msgid "Printer on remote CUPS server"
+msgstr "CUPS printserver"
-#: ../../lang.pm:1
-#, c-format
-msgid "Honduras"
-msgstr "Honduras"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+msgid "Printer on remote lpd server"
+msgstr "lpd printserver"
-#: ../../help.pm:1
-#, c-format
-msgid "pdq"
-msgstr "pdq"
+#: ../../printer/main.pm_.c:30
+msgid "Network printer (TCP/Socket)"
+msgstr "Võrguprinter (TCP/Socket)"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO"
-msgstr "Kaardi IO"
+#: ../../printer/main.pm_.c:31
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "SMB/Windows 95/98/NT printserver"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Samba server"
-msgstr "Samba server"
+#: ../../printer/main.pm_.c:32
+msgid "Printer on NetWare server"
+msgstr "NetWare printserver"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"See on eriline, alglaadimisel\n"
-"kasutatav partitsioon, mis\n"
-"võimaldab mitme operatsioonisüsteemi\n"
-"laadimist.\n"
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+msgid "Enter a printer device URI"
+msgstr "Printeri seadme URI"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Valige palun iga sammu puhul, kas selle peaks läbi viima automaatselt, nagu "
-"see sooritati paigalduse ajal, või soovite seal ise kaasa rääkida"
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
+msgstr "Töö toru kaudu käsuks"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"Samuti saate otsustada, kas võrguskännerid peaksid olema automaatselt siin "
-"arvutis kättesaadavad"
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
+msgstr "Tundmatu mudel"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-võrk FTP vahendusel.\n"
+#: ../../printer/main.pm_.c:317
+msgid "Local Printers"
+msgstr "Kohalikud printerid"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reports check result to tty"
-msgstr "Kontrolli tulemused saadetakse tty-sse"
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+msgid "Remote Printers"
+msgstr "Võrguprinterid"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Seadme- või failinime sisestamine on kohustuslik!"
+msgid " on parallel port \\/*%s"
+msgstr " paralleelpordis \\/*%s"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid "/_Quit"
-msgstr "/_Välju"
+msgid ", USB printer \\/*%s"
+msgstr ", USB printer \\/*%s"
-#: ../../Xconfig/various.pm:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Videomälu: %s kB\n"
+msgid ", multi-function device on parallel port \\/*%s"
+msgstr ", mitme funktsiooniga seade paralleelpordis \\/*%s"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-"it under the terms of the GNU General Public License as published by\n"
-"the Free Software Foundation; either version 2, or (at your option)\n"
-"any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful,\n"
-"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-"GNU General Public License for more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
-msgstr ""
-"Käesolev rakendus on vaba tarkvara. Te võite seda edasi levitada\n"
-"ja/või muuta vastavalt GNU Üldise Avaliku Litsentsi tingimustele, nagu\n"
-"need on avaldanud Vaba Tarkvara Fond; kas Litsentsi versioon number 2\n"
-"või (vastavalt Teie valikule) ükskõik milline hilisem versioon.\n"
-"\n"
-"Seda rakendust levitatakse lootuses, et see on kasulik, kuid\n"
-"ILMA IGASUGUSE GARANTIITA; isegi KESKMISE/TAVALISE\n"
-"KVALITEEDI GARANTIITA või SOBIVUSELE TEATUD KINDLAKS\n"
-"EESMÄRGIKS. Üksikasjade suhtes vaadake GNU Üldist Avalikku Litsentsi.\n"
-"\n"
-"Te peaks olema saanud GNU Üldise Avaliku Litsentsi koopia koos selle\n"
-"rakendusega; kui ei, siis võtke ühendust Vaba Tarkvara Fondiga aadressil:\n"
-"Free Software Foundation, 59 Temple Place - Suite 330, Boston,\n"
-"MA 02111-1307, USA.\n"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
+msgstr ", mitme funktsiooniga seade USB-l"
-#: ../../any.pm:1
-#, c-format
-msgid "access to compilation tools"
-msgstr "ligipääs kompileerimisvahenditele"
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
+msgstr ", mitme funktsiooniga seade HP JetDirectil"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Global statistics"
-msgstr "Globaalne statistika"
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
+msgstr ", mitme funktsiooniga seade"
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:344
#, c-format
-msgid "Please select data to restore..."
-msgstr "Valige palun taastatavad andmed..."
+msgid ", printing to %s"
+msgstr ", trükkimine masinal %s"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/main.pm_.c:346
#, 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"
-msgstr ""
-"Kui soovite kasutada aboot-i, jätke palun ketta algusesse vähemalt 2048 \n"
-"sektorit vaba ruumi"
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr " LPD serveril \"%s\", printer \"%s\""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:348
#, c-format
-msgid "Standard test page"
-msgstr "Tavaline testlehekülg"
+msgid ", TCP/IP host \"%s\", port %s"
+msgstr ", TCP/IP masinal \"%s\", port %s"
-#: ../../standalone/drakclock:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid "Time Zone"
-msgstr "Ajavöönd"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr " SMB/Windowsi serveril \"%s\", jagatud printer \"%s\""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid "Create"
-msgstr "Tekita"
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr " Novelli serveril \"%s\", printer \"%s\""
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid "What"
-msgstr "Mis"
+msgid ", using command %s"
+msgstr ", kasutades käsku %s"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Pakettide tellimisel tekkis viga:"
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
+msgstr "Toorprinter (draiverita)"
-#: ../../keyboard.pm:1
+#: ../../printer/main.pm_.c:647
#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "Bulgaaria (BDS)"
+msgid "(on %s)"
+msgstr "(masinal %s)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Server"
-msgstr "Serveri keelamine"
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
+msgstr "(sellel masinal)"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm_.c:674
#, c-format
-msgid "Filesystem encryption key"
-msgstr "Failisüsteemi krüptovõti"
+msgid "On CUPS server \"%s\""
+msgstr "CUPS serveril \"%s\""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
-msgstr "Gudžarati"
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
+msgstr " (Vaikimisi)"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-"\t\t\tKuigi võib kasutada ka IP aadresside valimikku, selle asemel et "
-"määrata igale\n"
-"\t\t\tkliendi masinale eraldi kirje, võimaldab fikseeritud aadress "
-"kasutamine siiski\n"
-"\t\t\tpruukida ClusterNFS pakutavaid kliendikeskseid seadistustefaile.\n"
-"\t\t\t\n"
-"\t\t\tMärkus: kirjet \"#type\" kasutab ainult drakTermServ. Kliendid võivad "
-"olla \n"
-"\t\t\tkas \"thin\" või 'fat'. \"Õhuke\" klient kasutab enamikku tarkvara "
-"serveril xdmcp\n"
-"\t\t\tvahendusel, \"paksud\" kliendid aga jooksutavad takrvara enamasti "
-"kliendi\n"
-"\t\t\tmasinal. Õhukeste klientide jaoks kirjutatakse eraldi inittab-fail\n"
-"\t\t\t%s. Õhukeste klientide puhul muudetakse xdmcp\n"
-"\t\t\tvõimaldamiseks süsteemi seadetefaile xdm-config, kdmrc ja gdm.conf. "
-"Kuivõrd\n"
-"\t\t\txdmcp kasutamisega kaasnevad teatud turvaprobleemid, muudetakse faile\n"
-"\t\t\thosts.deny ja hosts.allow, et piirata ligipääsu kohalikule "
-"alamvõrgule.\n"
-"\t\t\t\n"
-"\t\t\tNote: Ka kirjet \"#hdw_config\" kasutab ainult drakTermServ. Kliendid "
-"võivad olla kas \n"
-"\t\t\tkas 'true' või 'false'. 'true' lubab administraatori sisselogimist "
-"kliendi masinal ning \n"
-"\t\t\theli, hiire ja X-i riistvara kohalikku seadistamist 'drak' "
-"vahenditega. See saab võimalikuks \n"
-"\t\t\teraldi seadistustefailide loomisega, mis on seotud kliendi IP "
-"aadressiga, samuti \n"
-"\t\t\tkirjutamis/lugemisõigusega haakepunktide loomisega, mis lubab kliendil "
-"faili muuta. \n"
-"\t\t\tKui jääte seadistusega rahule, võite administraatori privileegid "
-"kliendilt ära võtta.\n"
-"\t\t\t\n"
-"\t\t\tMärkus: server tuleb peatada/käivitada pärast kliendi lisamist või "
-"muutmist."
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
+msgstr "Valige printeri ühendusviis"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Valige palun esimene number kümnesest vahemikust, mida soovite\n"
-"muuta, või vajutage Enter jätkamiseks.\n"
-"Ja Teie valik on? "
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
+msgstr "Kuidas on see printer ühendatud?"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:30
msgid ""
"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
msgstr ""
"\n"
-" Autoriõigus (C) 2002: MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Save theme"
-msgstr "Teema salvestamine"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "Brasiilia"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install"
-msgstr "Automaatpaigaldus"
+"Kui võrgus on CUPS server, siis ei ole Teil vaja siin\n"
+"printereid seadistada, need leitakse automaatselt.\n"
+"Kui kahtlete, valige \"CUPS printserver\"."
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration Wizard"
-msgstr "Võrguseadistuste nõustaja"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
-msgstr "Eemaldatava andmekandja automaatne haakimine"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr "Printeri automaattuvastus (kohalikud, TCP/Socketi ja SMB printerid)"
-#: ../../services.pm:1
-#, c-format
-msgid "Printing"
-msgstr "Trükkimine"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+msgid "CUPS configuration"
+msgstr "CUPSi sätted"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save:"
-msgstr "Kataloog, kuhu salvestada:"
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+msgid "Specify CUPS server"
+msgstr "CUPS serveri määramine"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:83
msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "Ei leitud ühtegi printerit, mis oleks masinaga otse ühendatud"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "Loo uus partitsioon"
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
+msgstr ""
+"Ligpääsuks CUPS printserveri printeritele kohalikus võrgus ei ole vaja üldse "
+"midagi seadistada, sest CUPS serverid annavad automaatselt Teie masinale "
+"teada oma printeritest. Kõik printerid, mida Teie masin parasjagu tunneb, on "
+"üles loetud Printerdrake põhiakna sektsioonis \"Võrguprinterid\". Kui CUPS "
+"server ei asu aga kohtvõrgus, tuleb sisestada selle IP aadress ja võimaluse "
+"korral ka pordi number, et saada serverilt infot printeri(te) kohta. "
+"Vastasel juhul jätke need väljad tühjaks."
+
+#: ../../printer/printerdrake.pm_.c:84
+msgid ""
+"\n"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
+msgstr ""
+"\n"
+"Tavaliselt seadistatakse CUPS automaatselt vastavalt Teie võrgukeskkonnale "
+"ja Te võite hõlpsasti pääseda ligi CUPS serveri printeritele oma kohtvõrgus. "
+"Kui see siiski ei toimi, lülitage välja \"CUPSi automaatne seadistamine\" ja "
+"redigeerige käsitsi faili /etc/cups/cupsd.conf. Kindlasti ärge unustage "
+"pärast seda CUPSi taaskäivitamast (käsk: \"service cups restart\")."
+
+#: ../../printer/printerdrake.pm_.c:88
+msgid "The IP address should look like 192.168.1.20"
+msgstr "IP aadress peab välja nägema umbes nii: 192.168.1.20"
+
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
+msgstr "Pordi number peab olema täisarv!"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Driver:"
-msgstr "Juhtprogramm: "
+#: ../../printer/printerdrake.pm_.c:99
+msgid "CUPS server IP"
+msgstr "CUPS serveri IP"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
-msgstr "Tundmatu"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
+msgstr "Port"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "Kasuta fdisk-i"
+#: ../../printer/printerdrake.pm_.c:102
+msgid "Automatic CUPS configuration"
+msgstr "CUPSi automaatne seadistamine"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "KEERUTAGE RATTAKEST!"
+#: ../../printer/printerdrake.pm_.c:159
+msgid "Checking your system..."
+msgstr "Süsteemi kontrollimine..."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "sent: "
-msgstr "saadetud: "
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+msgid "Printerdrake"
+msgstr "Printerdrake"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "Automaatne IP"
+#: ../../printer/printerdrake.pm_.c:167
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr "Ei leitud ühtegi printerit, mis oleks masinaga otse ühendatud"
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:179
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"
+"The following printers\n"
"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
msgstr ""
-"Ja nüüd ongi paigaldus selja taga ning Teie GNU/Linuxi süsteem valmis "
-"tööks.\n"
-"Selleks tuleb vaid klõpsata \"%s\" ning arvuti teeb taaskäivituse, mille "
-"järel\n"
-"võite valida, kas käivitada GNU/Linux või Windows (kui Teie arvutil on mitu\n"
-"süsteemi).\n"
-"\n"
-"Nupp \"%s\" pakub veel kaks võimalust:\n"
+"Järgmised printerid\n"
"\n"
-" * \"%s\": loob paigaldusflopi, mis sooritab kogu\n"
-"paigalduse ilma kasutajata, paigaldus ise on samasugune nagu äsja\n"
-"seljataha jäänu.\n"
-"\n"
-" Selle valiku korral ilmub veel kaks erinevat võimalust:\n"
-"\n"
-" * \"%s\". See on osaliselt automaatne, sest partitsioneerimisel\n"
-"(aga ka ainult seal) on võimalik sekkuda.\n"
-"\n"
-" * \"%s\". Täisautomaatne paigaldus: kõvaketas kirjutatakse täielikult\n"
-"uuesti, kõik varasemad andmed kustutatakse.\n"
-"\n"
-" See võimalus võib olla kasulik, kui paigaldamine on kavas ette võtta "
-"paljudel\n"
-"ühesugustel masinatel. Lähemalt vaadake meie veebileheküljel\n"
-"automaatpaigalduse sektsiooni.\n"
-"\n"
-" * \"%s\"(*): salvestab paigalduse käigus valitud pakettide\n"
-"nimekirja. Kui nüüd võtate ette uue paigalduse, asetage flopi seadmesse "
-"ning\n"
-"käivitage paigaldus klahvile [F1] vajutades abiekraani vahendusel, andes "
-"käsu\n"
-">>linux defcfg=\"floppy\"<<.\n"
-"\n"
-"(*) Selleks läheb vaja FAT-vormingus flopit (sellise loomiseks GNU/Linuxis\n"
-"andke käsk \"mformat a:\")"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Moldova"
-msgstr "Moldova"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuration of a remote printer"
-msgstr "Võrguprinteri seadistamine"
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
-msgstr "Internetiplatvorm, mis vastab firmade spetsiifilistele tugivajadustele"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URLi alguses peab olema 'ftp:' või 'http:'"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Oriya"
-msgstr "Oria"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Uue reegli lisamine lõppu"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr "LiLo ja käivituslogo teemade paigaldus õnnestus"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:180
msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
+"The following printer\n"
+"\n"
msgstr ""
-"Samuti saate otsustada, kas võrguprinterid peaksid olema automaatselt siin "
-"arvutis kättesaadavad"
+"Järgmine printer\n"
+"\n"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:182
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''"
+"\n"
+"and one unknown printer are "
msgstr ""
-"Nüüd võite moodulile %s parameetreid määrata.\n"
-"Parameetrid on vormingus \"nimi=väärtus nimi2=väärtus2 ...\".\n"
-"Näiteks: \"io=0x300 irq=7\""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "Kas väljuda partitsioonitabelit salvestamata?"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Hard Drive"
-msgstr "kõvakettale"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "Installing packages..."
-msgstr "Pakettide paigaldamine..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dutch"
-msgstr "Hollandi"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Angola"
-msgstr "Angola"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "Paigaldada tuleb järgmised paketid:\n"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "service setting"
-msgstr "teenuse seadistused"
-
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "Isetehtud"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
-msgstr "Läti"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr "See fail on juba loopback-ina kasutusel, valige mõni muu"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr "Ainult lugemisõigusega"
+"\n"
+"ja üks tundmatu printer on "
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:184
#, c-format
msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
+"\n"
+"and %d unknown printers are "
msgstr ""
-"Nimelahenduse võltsimiskaitse lubamine/keelamine. Kui\n"
-"\"alert\" on tõene, saadetakse ka raport syslog-i."
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
-msgstr "Juhtprogrammi ei õnnestunud tuvastada"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
+"\n"
+"ja %d tundmatut printerit on "
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:187
msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
+"\n"
+"are "
msgstr ""
-"Kui see ei ole printer, mida soovite seadistada, kirjutage sisendireale "
-"seadmenimi/failinimi"
+"\n"
+"on "
-#: ../../standalone/draksound:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:187
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"
+"is "
msgstr ""
-"Teie masinas ei leitud helikaarti. Kontrollige palun, et Linuxi toega "
-"helikaart on korrektselt ühendatud.\n"
-"\n"
-"\n"
-"Meie riistvara andmebaasi saab näha aadressil:\n"
"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"on "
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Kohtvõrgu (LAN) seadistamine..."
+#: ../../printer/printerdrake.pm_.c:189
+msgid "directly connected to your system"
+msgstr "Teie süsteemi otse ühendatud"
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:192
msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
+"\n"
+"There is one unknown printer directly connected to your system"
msgstr ""
-"USB mälupulk paistab olevat kirjutuskaitsega. Palun ühendage\n"
-"see lahti, eemaldage kirjutuskaitse ja ühendage siis uuesti."
-
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr "Käivitab helisüsteemi"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
-msgstr "Suid/sgid failide kontrollsumma kontroll"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run some checks against the rpm database"
-msgstr "Rpm andmebaasi mõningane kontroll"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Execute"
-msgstr "Käivitada"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Printeri andmebaasi ettevalmistamine..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Information"
-msgstr "Info"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "No network card"
-msgstr "Võrgukaart puudub"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "3 nupuga"
-
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Which filesystem do you want?"
-msgstr "Millist failisüsteemi soovite kasutada?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Malta"
-msgstr "Malta"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Detailed information"
-msgstr "Üksikasjalik info"
+"\n"
+"Üks tundmatu printer on Teie süsteemi otse ühendatud"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:194
#, 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."
+"There are %d unknown printers directly connected to your system"
msgstr ""
-"Printeri vaikeseadistused\n"
"\n"
-"Kontrollige palun, et lehekülje suurus ja tinditüüp/trükiresiim (kui "
-"võimalik), samuti laserprinterite riistvaralised seadistused (mälu, "
-"dupleksseade, lisasalved) oleksid määratud korrektselt. Pange tähele, et "
-"väga suure trükikvaliteedi või lahutusvõime puhul muutub trükkimine "
-"märgatavalt aeglasemaks."
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
-msgstr "See flopi ei ole FAT-vormingus"
+"%d tundmatut printerit on Teie süsteemi otse ühendatud"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "Võrguseadistused"
+#: ../../printer/printerdrake.pm_.c:200
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr " (Kontrollige, et kõik printerid on ühendatud ja sisse lülitatud).\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:214
msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
msgstr ""
-"Selle märkimine võimaldab salvestada muudetud failid. Täpne viis sõltub "
-"sellest, kas valida muut- või diferentsvarundus."
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Graphic Card"
-msgstr "Graafikakaart"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing Windows partition"
-msgstr "Arvutan Windowsi failisüsteemi piire"
+"Kas soovite trükkimist lubada ülalmainitud printeritel või printeritel Teie "
+"kohtvõrgus?\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "Kamerun"
+#: ../../printer/printerdrake.pm_.c:215
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Kas soovite trükkimist lubada printeritel Teie kohtvõrgus?\n"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "DNS 1 (võib jätta tühjaks)"
+#: ../../printer/printerdrake.pm_.c:217
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Kas soovite trükkimist lubada ülalmainitud printeritel?\n"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
msgstr ""
-"Nüüd saate partitsioneerida %s kõvaketta\n"
-"Kui olete valmis, salvestage käsuga 'w'"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finnish)"
-msgstr "Saami (Rootsi/Soome)"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Close"
-msgstr "Sulge"
+"Kas olete ikka kindel, et soovite seadistada trükkimist sellel masinal?\n"
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:219
#, 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."
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
msgstr ""
-"\"%s\": võimaldab konrollida praegust maa valikut. Kui see ei ole riik,\n"
-"kus Te viibite, vajutage nuppu \"%s\" ja valige mõni muu maa. Kui\n"
-"Teie maad ei ole ilmuvas nimekirjas, vajutage nuppu \"%s\", mis avab\n"
-"riikide täisnimekirja."
+"MÄRKUS: Sõltuvalt printeri mudelist ja trükkimissüsteemist paigaldatakse "
+"kuni %d MB lisatarkvara."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Calendar"
-msgstr "Kalender"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+msgid "Add a new printer"
+msgstr "Lisa uus printer"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:259
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+"\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 ""
-"Taasta valitud\n"
-"kataloogikirje"
+"\n"
+"Printeri seadistamise nõustaja\n"
+"\n"
+"Nõustaja võimaldab Teile paigaldada kohalikke või võrguprintereid, mida saab "
+"kasutada Teie masin, samuti teised võrgus olevad masinad.\n"
+"\n"
+"Teil palutakse määrata kogu vajalik info printeri seadistamiseks, see "
+"tähendab olemasolevad printeridraiverid, draiveri valikud ja printeri "
+"ühendusviis."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:272
msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
+"\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"
+"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) and you 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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Et kasutada teise masina lpd printerit, peate sisestama printserveri nime ja "
-"serveril kasutatava printeri nime."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
-msgstr "Island"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Interneti ja kohtvõrgu seadistused"
-
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
-msgstr "consolehelper puudub"
-
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr "peatatud"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "Kas FPU-l on irq vektor"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr "Ava puu"
+"\n"
+"Printeri seadistamine nõustaja\n"
+"\n"
+"Nõustaja aitab Teile paigaldada printeri(d), mis on ühendatud selle "
+"arvutiga, otse võrku või võrgus asuva Windowsi masinaga.\n"
+"\n"
+"Kui Teil on printer(eid), mis on ühendatud selle masinaga, ühendage see/need "
+"palun arvutiga ja lülitage sisse, et seda/neid oleks võimalik automaatselt "
+"tuvastada. Ka võrguprinter(id) ja Windowsi-masinad peavad olema ühendatud ja "
+"sisse lülitatud.\n"
+"\n"
+"Pange tähele, et võrguprinterite automaattuvastus võtab rohkem aega kui "
+"ainult selle masinaga ühendatud printerite tuvastamine. Nii et kui teil seda "
+"vaja ei ole, lülitage võrgus ja/või Windowsi taga olevate printerite "
+"automaattuvastus välja.\n"
+"\n"
+"Kui olete valmis, vajutage \"Järgmine\", või \"Katkesta\", kui Te ei soovi "
+"printeri(te) seadistamisega praegu tegelda."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
"\n"
-"It has been reported to oops the kernel on unloading.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+"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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Vana \"%s\" juhtprogramm on mustas nimekirjas.\n"
"\n"
-"On teatatud, et see tekitab mahalaadimisel kernelile jama.\n"
+"Printeri seadistamise nõustaja\n"
"\n"
-"Uut \"%s\" juhtprogrammi kasutatakse järgmisel alglaadimisel."
-
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Expert Mode"
-msgstr "Ekspertresiim"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "Printeri valikud"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Local Network adress"
-msgstr "Kohtvõrgu aadress"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Varunda süsteemsed failid (kataloog /etc)"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the user umask."
-msgstr "Kasutaja umask-i määramine"
+"Nõustaja aitab Teil paigaldada printeri(d), mis on ühendatud selle "
+"arvutiga.\n"
+"\n"
+"Kui teil on printer(eid), mis on ühendatud selle masinaga, ühendage palun "
+"see/need arvutiga ja lülitage sisse, et seda/neid saaks automaatselt "
+"tuvastada.\n"
+"\n"
+"Kui olete valmis, vajutage \"Järgmine\", või \"Katkesta\", kui Te ei soovi "
+"praegu printeri(te) seadistamisega tegelda."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:289
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"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"Do you want to install the updates ?"
+"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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Teil on nüüd võimalus alla laadida uuendatud pakette. Need on välja lastud\n"
-"pärast Mandrake Linuxi distributsiooni ilmumist ja võivad sisaldada vigade\n"
-"parandusi või turvauuendusi.\n"
"\n"
-"Allalaadimiseks peab Teil olema töötav internetiühendus.\n"
+"Printeri seadistamine nõustaja\n"
"\n"
-"Kas soovite uuendusi paigaldada?"
+"Nõustaja aitab Teil paigaldada printeri(d), mis on ühendatud selle arvutiga "
+"või otse võrku.\n"
+"\n"
+"Kui Teil on printer(eid), mis on ühendatud selle masinaga, ühendage palun "
+"see/need arvutiga ja lülitage sisse, et seda/neid saaks automaatselt "
+"tuvastada. Ka võrguprinter(id) peavad olema ühendatud ja sisse lülitatud.\n"
+"\n"
+"Pange tähele, et võrguprinterite automaattuvastus võtab rohkem aega kui "
+"ainult selle masinaga ühendatud printeri(te) automaatne tuvastamine. Nii et "
+"kui te seda ei vaja, lülitage võrguprinterite automaattuvastus välja.\n"
+"\n"
+"Kui olete valmis, vajutage \"Järgmine\", või \"Katkesta\", kui Te ei soovi "
+"praegu printeri(te) seadistamisega tegelda."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Samba Server"
-msgstr "Samba server"
+#: ../../printer/printerdrake.pm_.c:307
+msgid "Auto-detect printers connected to this machine"
+msgstr "Selle masinaga ühendatud printerite automaattuvastus"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Austraalia Optus kaabli-TV"
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
+msgstr "Kohtvõrku ühendatud printerite automaattuvastus"
-#: ../../install_steps_newt.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr "Microsoft Windowsi masinatega ühendatud printerite automaattuvastus"
+
+#: ../../printer/printerdrake.pm_.c:329
msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+"\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 ""
-" <Tab>/<Alt-Tab> väljade vahel | <Space> valib | <F12> järgmine samm "
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet:"
-msgstr "Alamvõrk:"
+"\n"
+"Õnnitleme, Teie printer on nüüd paigaldatud ja seadistatud!\n"
+"\n"
+"Nüüd võite trükkida, kasutades rakendustes käsku \"Trüki\"\n"
+"(enamasti peitub see menüüs \"Fail\").\n"
+"\n"
+"Kuii soovite printerit lisada, eemaldada või ümber nimetada või soovite "
+"muuta vaikeseadistusi (trükikvaliteet, paberisalv,...), valige Mandrake "
+"juhtimiskeskuse \"Riistvara\" sektsioonis \"Printer\"."
-#: ../../lang.pm:1
-#, c-format
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Printer auto-detection"
+msgstr "Printeri automaattuvastus"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:385
#, c-format
-msgid "When"
-msgstr "Millal"
+msgid ", network printer \"%s\", port %s"
+msgstr ", võrguprinter \"%s\", port %s"
-#: ../../network/adsl.pm:1
+#: ../../printer/printerdrake.pm_.c:387
#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
-msgstr ""
-"Selleks vajate Alcateli Microcode'i.\n"
-"Seda saate alla laadida võrgust\n"
-"%s\n"
-"ja saadud 'mgmt.o' kopeerige kataloogi /usr/share/speedtouch"
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr ", printer \"%s\" SMB/Windows serveril \"%s\""
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:391
#, c-format
-msgid "Hour"
-msgstr "Tundi"
+msgid "Detected %s"
+msgstr "Tuvastati %s"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Teine nimeserver (soovituslik)"
+msgid "Printer on parallel port \\/*%s"
+msgstr "Printer paralleelpordis \\/*%s"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "Finland"
-msgstr "Soome"
+msgid "USB printer \\/*%s"
+msgstr "USB printer \\/*%s"
-#: ../../Xconfig/various.pm:1
+#: ../../printer/printerdrake.pm_.c:399
#, c-format
-msgid "Color depth: %s\n"
-msgstr "Värvisügavus: %s\n"
+msgid "Network printer \"%s\", port %s"
+msgstr "Võrguprinter \"%s\", port %s"
-#: ../../install_steps_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:401
#, c-format
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Selle paketi peate valima, sest selle uuendamine on kohustuslik"
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Printer \"%s\" SMB/Windows serveril \"%s\""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "Laadimine flopilt"
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+msgid "Local Printer"
+msgstr "Kohalik printer"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "Ajavöönd - DrakClock"
+#: ../../printer/printerdrake.pm_.c:526
+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 ""
+"Kohalikku printerit ei leitud! Printeri paigaldamiseks käsitsi märkige "
+"sisendireale seadmenimi/failinimi (paralleelpordid: /dev/lp0, /dev/lp1..., "
+"mille vasteks teistes süsteemides on LPT1, LPT2...; esimene USB printer: /"
+"dev/usb/lp0, teine USB printer: /dev/usb/lp1...)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
-msgstr "Ipv4 veidrate pakettide logimise lubamine/keelamine"
+#: ../../printer/printerdrake.pm_.c:530
+msgid "You must enter a device or file name!"
+msgstr "Seadme- või failinime sisestamine on kohustuslik!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr "Sloveenia"
+#: ../../printer/printerdrake.pm_.c:539
+msgid "No printer found!"
+msgstr "Printerit ei leitud!"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse test"
-msgstr "Hiire test"
+#: ../../printer/printerdrake.pm_.c:548
+msgid "Available printers"
+msgstr "Saadaolevad printerid"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:552
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."
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
msgstr ""
-"Drakperm on kasutatav failide vaatamiseks, et mseci abil parandada loabitte, "
-"omanikke ja gruppe.\n"
-"Võite ka muuta oma reegleid, mis tühistavad vaikereeglid."
+"Järgmine printer tuvastati automaatselt; kui see ei ole printer, mida "
+"soovite seadistada, kirjutage sisendireale seadmenimi/failinimi"
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:553
msgid ""
-"Enter a user\n"
-"%s"
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
msgstr ""
-"Sisesta kasutaja\n"
-"%s"
+"See on loend kõigist automaatselt tuvastatud printeritest. Valige palun "
+"printer, mida soovite seadistada, või kirjutage sisendireale seadmenimi/"
+"failinimi"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:555
msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
msgstr ""
-"- PCI- ja USB-seadmed: tootja, seade, allettevõtja ja allseadme PCI/USB id-d"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "ProgressBar color selection"
-msgstr "Edenemisriba värvi valimine"
+"Järgmine printer tuvastati automaatselt. Printeri seadistused peaksid "
+"toimima täiesti automaatselt. Kui printer tuvastati valesti või Te eelistate "
+"seadistusi korrigeerida, lülitage sisse \"Käsitsiseadistamine\"."
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:556
msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-"Praegu on kasutusel sellised kirjed.\n"
-"Te võite neid lisada ning olemasolevaid muuta."
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
+"See on loend kõigist automaatselt tuvastatud printeritest. Valige palun "
+"printer, mida soovite rakendada. Printeri seadistused peaksid toimima "
+"täiesti automaatselt. Kui printer tuvastati valesti või Te eelistate selle "
+"seadistusi korrigeerida, lülitage sisse \"Käsitsiseadistamine\"."
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:558
msgid ""
-"Application Name\n"
-"or Full Path:"
+"Please choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-"Rakenduse nimi\n"
-"või täielik otsingutee:"
+"Valige palun port, kuhu printer on ühendatud, või kirjutage sisendireale "
+"seadmenimi/failinimi"
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:559
+msgid "Please choose the port where your printer is connected to."
+msgstr "Valige palun port, kuhu Teie printer on ühendatud."
+
+#: ../../printer/printerdrake.pm_.c:561
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."
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-"Laseb käivitada ühekordseid käske etteantud ajal või ootab süsteemi\n"
-"koormuse laskumist käsu käivitamiseks piisavale tasemele."
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
-msgstr "Raadiotugi:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "SANE pakettide paigaldamine..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
-msgstr "SILO"
+" (paralleelpordid: /dev/lp0, /dev/lp1..., millele teistes süsteemides vastab "
+"LPT1:, LPT2:...; esimene USB printer: /dev/usb/lp0, teine USB printer: /dev/"
+"usb/lp1...)"
-#: ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Change type"
-msgstr "Muuda tüüpi"
+#: ../../printer/printerdrake.pm_.c:565
+msgid "You must choose/enter a printer/device!"
+msgstr "Printeri/seadme valimine/sisestamine on kohustuslik!"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", USB printer #%s"
+#: ../../printer/printerdrake.pm_.c:584
+msgid "Manual configuration"
+msgstr "Käsitsiseadistamine"
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "SILO paigaldamine"
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
+msgstr "Võrguprinteri (lpd) sätted"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:634
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."
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
-"Õnnitlen, paigaldamine on edukalt lõpetatud.\n"
-"Võtke palun välja flopi ja/või CD ja vajutage Enter alglaadimiseks.\n"
-"\n"
-"\n"
-"Informatsiooni selle distributsiooni paranduste kohta (Errata) saab\n"
-"Mandrake Linuxi koduleheküljelt:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Abi süsteemi edasiseks seadistamiseks saab eelkõige dokumendist\n"
-"\"Official Mandrake Linux User's Guide\"."
+"Et kasutada teise masina lpd printerit, peate sisestama printserveri nime ja "
+"serveril kasutatava printeri nime."
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Võrguajaprotokolli lubamine"
+#: ../../printer/printerdrake.pm_.c:635
+msgid "Remote host name"
+msgstr "Kaugarvuti nimi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "paranoid"
-msgstr "paranoiline"
+#: ../../printer/printerdrake.pm_.c:636
+msgid "Remote printer name"
+msgstr "Võrguprinteri nimi"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "Vajaduse puudumisel teadet ei saadeta"
+#: ../../printer/printerdrake.pm_.c:639
+msgid "Remote host name missing!"
+msgstr "Kaugarvuti nimi puudub!"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "Teie skänner(id) ei ole võrgus kättesaadavad."
+#: ../../printer/printerdrake.pm_.c:643
+msgid "Remote printer name missing!"
+msgstr "Võrguprinteri nimi puudub!"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Pärast iga varundamist saadetakse raport:"
+msgid "Detected model: %s %s"
+msgstr "Tuvastati mudel: %s %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Seda käsku saab kasutada ka paljude rakenduste trükkimisdialoogi väljal "
-"\"Trükkimiskäsk\". Kuid seal ei ole vaja kirjutada failinime, sest selle "
-"annab rakendus ise.\n"
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Scanning network..."
+msgstr "Võrgu uurimine..."
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, c-format
-msgid "Resolution"
-msgstr "Kuvatihedus"
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ", printer \"%s\" serveril \"%s\""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
#, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Printer \"%s\" serveril \"%s\""
+
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "SMB (Windows 9x/NT) printeri sätted"
+
+#: ../../printer/printerdrake.pm_.c:796
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 "
@@ -12275,385 +8463,287 @@ msgstr ""
"printserveri IP-aadressi, samuti ka serveri poolt jagatava printeri\n"
"nime ning serveri poolt aktsepteeritud kasutajatunnuse, salasõna ja töögrupi."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:797
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+" 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 ""
-" su lubamine ainult grupi wheel liikmetele või su lubamine igale kasutajale"
+" Kui soovitud printer tuvastati automaatselt, valige see loendist ning "
+"lisage siis vajadusel kasutajatunnus, parool ja/või töögrupp."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
-msgstr "uuesti seadistada"
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
+msgstr "SMB serveri nimi"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Teie videokaardi 3D graafikakiirendit saab kasutada koos XFree %s-ga.\n"
-"SEE ON AGA EKSPERIMENTAALNE JA VÕIB OLLA EBASTABIILNE."
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr "SMB serveri IP"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell timeout"
-msgstr "Shelli aegumine"
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr "Jagatav printer"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Xinetd Service"
-msgstr "Xinetd teenus"
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "Töögrupp"
-#: ../../any.pm:1
-#, c-format
-msgid "access to network tools"
-msgstr "ligipääs võrgutöövahenditele"
+#: ../../printer/printerdrake.pm_.c:806
+msgid "Auto-detected"
+msgstr "Automaatselt tuvastatud"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "HP LaserJet 1000 püsivara laadimine"
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
+msgstr "Andma peab kas serveri nime või serveri IP!"
-#: ../advertising/03-software.pl:1
-#, 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."
-msgstr ""
-"Mandrake Linux võimaldab teil kasutada uusimat tarkvara helifailide "
-"mängimiseks, piltide või fotode töötlemiseks ning videode vaatamiseks"
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
+msgstr "Samba jagatava printeri nimi puudub!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Nimekiri kõigist automaatselt tuvastatud printeritest. "
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
+msgstr "TURVAHOIATUS!"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:827
#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"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 ""
-"Viga aboot-i paigaldamisel, \n"
-"kas sundida peale, riskides esimese partitsiooni hävinguga?"
+"Asusite seadistama trükkimist Windowsi parooliga kontole. Samba kliendi "
+"arhitektuuri vea tõttu pannakse parool tavalise tekstina Samba kliendi "
+"käsureale, mida see kasutab trükitöö saatmiseks Windowsi serverile. Seejärel "
+"on tolle masina igal kasutajal võimalik parooli ekraanil näha näiteks käsuga "
+"\"ps auxwww\".\n"
+"\n"
+"Soovitame selle asemel kasutada üht alltoodud alternatiividest (igatahes "
+"tuleks teil tagada, et Teie Windowsi serverile pääsevad ligi ainult "
+"kohtvõrgu masinad; selleks sobib hästi kasutada tulemüüri):\n"
+"\n"
+"Kasutage Windowsi serveril paroolitut kontot, olgu selleks konto \"GUEST\" "
+"või spetsiaalne trükkimiseks kasutatav konto. Ärge eemaldage aga "
+"paroolikaitset oma erakontolt ega administraatori kontolt.\n"
+"\n"
+"Seadistage Windowsi server nii, et printer oleks kasutatav LPD protokolliga. "
+"Seejärel seadistage trükkimine Teie masinas Printerdrakes ühendusviisiga \"%s"
+"\".\n"
+"\n"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
msgid ""
-"Restore Selected\n"
-"Files"
+"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 ""
-"Taasta valitud\n"
-"failid"
+"Seadistage oma Windows-server nii, et printer oleks kättesaadav IPP "
+"protokolliga, ning seadistage trükkimine sellelt masinalt \"%s\" "
+"ühendustüübiga Printerdrakes.\n"
+"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:840
msgid ""
-"%s exists, delete?\n"
+"Connect your printer to a Linux server and let your Windows machine(s) "
+"connect to it as a client.\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."
+"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-"%s on olemas, kas kustutada?\n"
+"Ühendage oma printer Linux-serveri külge ja lubage oma Windowsi masina(te)l "
+"sellega ühendust võtta kliendina.\n"
"\n"
-"Hoiatus: Kui te olete selle protsessi juba sooritanud, tuleks\n"
-" Teil ka kirje kustutada serveril autoriseeritud võtmete seast."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Palun täitke allpool olev väli"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Kas salvestada /etc/fstab muudatused"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
-msgstr "Laadimisprotokoll"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-kettad %s\n"
-
-#: ../../services.pm:1
-#, c-format
-msgid "On boot"
-msgstr "Alglaadimisel"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "Vajalik on pakett %s. Kas paigaldada see?"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus identification"
-msgstr "Siinitunnus"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vatican"
-msgstr "Vatikan"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please make a backup of your data first"
-msgstr "Palun tehke oma andmetest kõigepealt varukoopia"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ADSL adapters"
-msgstr "ADSL kaardid"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Teil on rohkem kui üks kõvaketas, millisele neist paigaldate Linuxi?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Eritrea"
-msgstr "Eritrea"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot ISO"
-msgstr "Alglaadimis-ISO"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Firmware needed"
-msgstr "Vajalik on püsivara"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove List"
-msgstr "Eemalda loend"
-
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
-msgstr "Kohandatav töökeskkond"
+"Kas soovite tõesti jätkata selle printeri seadistamist?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
-msgstr "Inuktituti"
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
+msgstr "NetWare printeri sätted"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:912
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."
+"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 ""
-"Mõningad protokollid, näiteks rsync, seadistatakse serveril ning nende puhul "
-"tuleks kataloogi otsingutee asemel kasutada teenuse 'mooduli' nime."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "Maroko"
+"Et kasutada NetWare printerit, peate sisestama NetWare printserveri nime "
+"(NB! See võib olla erinev tema TCP/IP nimest!), samuti trükijärjekorra nime "
+"serveril ning kasutajatunnuse ja salasõna."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Milline on Teie printeri mudel?"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr "Printserver"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add a new printer"
-msgstr "Lisa uus printer"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
+msgstr "Trükijärjekorra nimi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " All of your selected data have been "
-msgstr " Kõik valitud andmed on "
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
+msgstr "NCP serveri nimi puudub!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "Nepal"
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
+msgstr "NCP järjekorra nimi puudub!"
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, c-format
-msgid "<-- Delete"
-msgstr "<-- Kustuta"
+msgid ", host \"%s\", port %s"
+msgstr ", masin \"%s\", port %s"
-#: ../../harddrake/data.pm:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
-msgid "cpu # "
-msgstr "cpu # "
+msgid "Host \"%s\", port %s"
+msgstr "Masin \"%s\", port %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "chunk size"
-msgstr "ühiku suurus"
+#: ../../printer/printerdrake.pm_.c:1030
+msgid "TCP/Socket Printer Options"
+msgstr "TCP/Socket printeri sätted"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1032
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."
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-"Kui on \"KÕIK\", on lubatud nii /etc/issue kui /etc/issue.net.\n"
-"\n"
-"Kui on \"MITTE KEEGI\", ei ole kumbki lubatud.\n"
-"\n"
-"Muidu on lubatud ainult /etc/issue."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr " sulogin(8) lubamine/keelamine üksikkasutaja tasemel"
+"Valige loendist üks automaatselt tuvastatud printeritest või kirjutage "
+"sisendiväljale masinanimi või IP ja kui teate, ka pordi number (vaikimisi on "
+"see 9100)."
-#. -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
-#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "suvandeid enne laadimist ja 'c' veel enam."
+#: ../../printer/printerdrake.pm_.c:1033
+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 ""
+"Et kasutada TCP/Socket printerit, tuleb määrata printeri masinanimi või IP "
+"ning kui teate, ka pordi number (vaikimisi on see 9100). HP JetDirect "
+"serveritel on pordi number tavaliselt 9100, teistel serveritel võib see olla "
+"teistsugune. Kontrollige seda oma riistvara käsiraamatust."
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Probleemid paketi %s paigaldamisel"
+#: ../../printer/printerdrake.pm_.c:1037
+msgid "Printer host name or IP missing!"
+msgstr "Printeri masinanimi või IP puudub!"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Saate hoiatuse, kui koormus on siin määratust suurem"
+#: ../../printer/printerdrake.pm_.c:1059
+msgid "Printer host name or IP"
+msgstr "Printeri masinanimi või IP"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Skänneri lisamine käsitsi"
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
+msgstr "Printeri seadme URI"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh"
-msgstr "Värskenda"
+#: ../../printer/printerdrake.pm_.c:1108
+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 ""
+"Siin saab määrata konkreetselt URI printerile ligipääsuks. URI peab järgima "
+"CUPSi või Foomaticu spetsifikatsiooni. Pange tähele, et mitte kõik spuulerid "
+"ei toeta kõiki URI tüüpe."
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Reload partition table"
-msgstr "Laadi partitsioonitabel uuesti"
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
+msgstr "Sisestama peab sobiva URI!"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
+#: ../../printer/printerdrake.pm_.c:1463
+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 ""
-"Jah, soovin automaatset sisselogimist sellele (kasutajale, keskkonnale)"
+"Iga printer vajab nime (näiteks \"printer\"). Kirjelduse ja asukoha välja ei "
+"ole vaja tingimata täita, need on vaid kommentaarid kasutajatele."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Selected"
-msgstr "Taasta valitud"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr "Printeri nimi"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Fontide otsing paigaldatute loendis"
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
+msgstr "Kirjeldus"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Kohtvõrgu lõpus ei seisa '0', visatakse minema."
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
+msgstr "Asukoht"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Boot"
-msgstr "Alglaadimine"
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+msgid "Reading printer database..."
+msgstr "Printeri andmebaasi lugemine..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " ja CD on sisse pandud"
+#: ../../printer/printerdrake.pm_.c:1482
+msgid "Preparing printer database..."
+msgstr "Printeri andmebaasi ettevalmistamine..."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Tuner type:"
-msgstr "Tuuneri tüüp:"
+#: ../../printer/printerdrake.pm_.c:1578
+msgid "Your printer model"
+msgstr "Teie printeri mudel"
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:1579
#, 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"
-"\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"
+"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"
-" * \"%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"
+"For your printer Printerdrake has found:\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."
+"%s"
msgstr ""
-"Siin saate valida oma arvutile trükkimissüsteemi. Teised "
-"operatsioonisüsteemid\n"
-"võivad Teile pakkuda vaid üht süsteemi, kuid Mandrake Linuxi puhul saate\n"
-"valida tervelt kahe seast.\n"
-"\n"
-" * \"%s\" - mis tähendab ``trüki kohe'' (``print, don't queue'') - tuleks "
-"valida siis,\n"
-"kui Teil on printeriga otseühendus, Te ei soovi näha mingeid järjekordi ja "
-"Teil\n"
-"ei ole võrgus asuvaid printereid. Võrkude puhul on \"%s\" mõnevõrra aeglane "
-"ja\n"
-"tal võib esineda tegutsemisraskusi. Kui see on Teie esimene retk GNU/Linuxi\n"
-"maailma, valige \"pdq\".\n"
+"Printerdrake võrdles printeri automaattuvastusel leitud mudelinime oma "
+"printeri andmebaasis leiduvate mudelitega, et leida sobiv vaste. Valik võib "
+"olla ekslik, eriti juhul, kui Teie printerit ei peaks mingil põhjusel "
+"andmebaasis leiduma. Seepärast kontrollige, kas valik on õige ning vajutage "
+"\"Mudel õige\", kui see on nii, või \"Mudeli valik käsitsi\", kui midagi on "
+"valesti, mille järel saate järgmisel sammul valida printeri mudeli "
+"iseseisvalt.\n"
"\n"
-" * \"%s\" - ``tavaline UNIXi trükkimissüsteem'' (``Common Unix Printing\n"
-"System'') - on hiilgav valik trükkimiseks Teie kohalikul printeril ja veel "
-"nii pooles\n"
-"maailmas. See on lihtne süsteem, mis võib olla nii kliendiks kui serveriks "
-"iidsele\n"
-"trükkimissüsteemile \"lpd\". See on ka ühilduv varasemate süsteemidega.\n"
-"suudab teha palju asju, kuid põhitegutsemine on sama lihtne kui \"pdq\" "
-"puhul.\n"
-"Kui Teil on vajadus emuleerida \"lpd\"-serverit, tuleb sisse lülitada\n"
-"\"cups-lpd\"-deemon. \"%s\" pakub ka mitut graafilist kasutajaliidest\n"
-"trükkimiseks või printeri seadistamiseks.\n"
+"Teie printeri puhul leidis Printerdrake:\n"
"\n"
-"Kui leiate hiljem, et siinkohal langetatud valik polnud vahest kõige parem,\n"
-"siis saate seda muuta Mandrake juhtimiskeskuses PrinterDrake abil."
+"%s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
-msgstr "\"Menüü\"-klahv"
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+msgid "The model is correct"
+msgstr "Mudel õige"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+msgid "Select model manually"
+msgstr "Mudeli valik käsitsi"
+
+#: ../../printer/printerdrake.pm_.c:1606
+msgid "Printer model selection"
+msgstr "Printeri mudeli valik"
+
+#: ../../printer/printerdrake.pm_.c:1607
+msgid "Which printer model do you have?"
+msgstr "Milline on Teie printeri mudel?"
+
+#: ../../printer/printerdrake.pm_.c:1608
msgid ""
"\n"
"\n"
"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
msgstr ""
"\n"
"\n"
@@ -12661,218 +8751,19 @@ msgstr ""
"mudeli õigesti. Valige loendist õige mudel, kui kursor seisab vale mudeli "
"või \"toorprinteri\" kohal."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Administrator:"
-msgstr "Turvaadministraator:"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
-msgstr "Shelli aegumise määramine. Null tähendab aegumise puudumist."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "Püsivara kopeerimine õnnestus"
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid ""
-"You can't use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-"Muud CD-ROMi ei saa valida, kui töötavad järgmised programmid: \n"
-"%s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
-msgstr ""
-"Kui on 'jah', kontrollitakse failide loabitte kasutajate kodukataloogis."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Teil ei ole Internetiühendust.\n"
-"Looge see klõpsuga nupul 'Seadista'"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Fonts copy"
-msgstr "Fontide kopeerimine"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
-msgstr "Automaatne"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Kas soovite seadistusi proovida?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1611
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
-msgstr "Printer \"%s\" eemaldati edukalt StarOffice/OpenOffice.org/GIMP-ilt."
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save packages selection"
-msgstr "Salvesta paketivalik"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Actions"
-msgstr "/_Tegevused"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Remove the last item"
-msgstr "Eemalda viimane element"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr "Taastatav kasutajate loend (olulised on ainult kõige uuemad andmed)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
-msgstr "Võrgu alglaadefaile pole loodud!"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "pptp"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Valige, millised teenused tuleks alglaadimisel käivitada"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check files/directories writable by everybody"
-msgstr "Kõigi kirjutatavate failide/kataloogide kontroll"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Printeri kasutama õppimine"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configure the network now"
-msgstr "Seadistada võrk otsekohe"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Valige peegel, millelt lugeda pakettide nimekiri"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"FAT-partitsiooni suurust ei õnnestunud muuta, \n"
-"ilmnes selline viga: %s"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Size: "
-msgstr "Suurus: "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "Millisele sektorile soovite seda ümber paigutada?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahamas"
-msgstr "Bahama saared"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Do you want to click on this button?"
-msgstr "Kas soovite sellel nupul klõpsata?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Manual configuration"
-msgstr "Käsitsiseadistamine"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "search"
-msgstr "otsing"
-
-#: ../../services.pm:1
-#, 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."
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
-"See pakett laeb süsteemi käivitumisel klaviatuuripaigutuse vastavalt\n"
-"failis /etc/sysconfig/keyboard kirjeldatule. Vähe on juhtumeid, kus\n"
-"seda teenust vaja ei läheks."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (paigalduse kuvadraiver)"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "Zeroconfi masina nimi ei tohi sisaldada punkti (.)"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr "Icmp echo aktsepteerimine/tagasilükkamine"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Syslog is the facility by which many daemons use to log messages\n"
-"to various system log files. It is a good idea to always run syslog."
-msgstr "Syslog-i kaudu toimub süsteemis toimiva logimine. Vajalik!"
-
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown/Others"
-msgstr "Tundmatu/Muu"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
-msgstr "TV-kaarti ei leitud!"
-
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Options"
-msgstr "Eelistused"
+"Kui Teie printerit loendis ei leidu, valige mõni ühilduv (vaadake printeri "
+"käsiraamatust) või sarnane."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Printer \"%s\" on määratud vaikeprinteriks."
+#: ../../printer/printerdrake.pm_.c:1697
+msgid "OKI winprinter configuration"
+msgstr "OKI winprinteri sätted"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1698
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -12888,271 +8779,232 @@ msgstr ""
"trükite testlehekülje. Vastasel juhul printer lihtsalt ei tööta ja draiver "
"eirab Teie määratud ühendusviisi."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr "CPU põlvkond (nt 8, kui on PentiumIII ...)"
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+msgid "Lexmark inkjet configuration"
+msgstr "Lexmark inkjeti sätted"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detected"
-msgstr "Automaatselt tuvastatud"
+#: ../../printer/printerdrake.pm_.c:1719
+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 ""
+"Lexmarki pakutavad inkjet printerite draiverid toetavad ainult kohalikke "
+"printereid, mitte aga printereid kaugarvutitel või printserveritel. Ühendage "
+"palun oma printer kohalikku porti või seadistage see masinal, millega "
+"printer on ühendatud."
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1746
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)."
+"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 ""
-"Nüüd on Teil võimalik seadistada oma arvuti paigaldamaks PXE serverit DHCP "
-"serveri \n"
-"ja TFTP serveri rollis, et luua paigaldusserver.\n"
-"Selle võimaluse abil saavad teised Teie kohtvõrgu arvutid kasutada seda "
-"masinat endale süsteemi paigaldamiseks.\n"
-"\n"
-"Kontrollige enne jätkamist, et olete seadistanud oma võrgu/Internetiühenduse "
-"drakconnecti abil.\n"
-"\n"
-"Märkus: kohtvõrgu (LAN) jaoks on vajalik eraldi võrgukaardi olemasolu."
+"Trükkimiseks Lexmarki inkjetil antud seadistusega läheb Teil tarvis Lexmarki "
+"pakutavaid inkjet printeri draivereid (http://www.lexmark.com/). Klõpsake "
+"viidal \"Drivers\". Seejärel valige oma mudel ja seejärel "
+"operatsioonisüsteem \"Linux\". Draiverid on kas RPM-paketid või "
+"shelliskriptid interaktiivse graafilise paigalduse võimalusega. Te ei pruugi "
+"seda seadistust sooritada graafiliste kasutajaliideste abil. Katkestage kohe "
+"pärast litsentsilepinguga nõustumist. Seejärel trükkige \"lexmarkmaintain\" "
+"abil printeripea joondamise leheküljed ning kohandage selle rakenduse abil "
+"pea joondamise sätteid."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr "GDI laserprinter Zenographics ZJ-Stream vorminguga"
+
+#: ../../printer/printerdrake.pm_.c:1750
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"
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\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"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
"\n"
-"It also provides a much higher API than OSS.\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\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"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-"OSS (Open Sound System) oli esimene heli-API. See on op-süsteemist sõltumatu "
-"heli-API (saadaval enamiku UNIX-süsteemide tarbeks), kuid samas väga "
-"elementaarne ja piiratud.\n"
-"Ja pealegi kipuvad OSS-draiverid kogu aeg jalgratast uuesti leiutama.\n"
+"Teie printer kuulub GDI laserprinterite (winprinterid) rühma. Neid müüvad "
+"erinevad tootjad, kes kasutavad andmete saatmiseks printerile Zenographicsi "
+"ZJ-stream rasteri vormingut. Nende printerite draiver on veel väga "
+"algusjärgus ega pruugi seetõttu sugugi alati töötada. Väga usutav on see, et "
+"printer töötab ainult siis, kui valite paberi suuruseks A4.\n"
"\n"
-"ALSA (Advanced Linux Sound Architecture) kujutab endast moodulistatud\n"
-"arhitektuuri, mis toetab päris suurt hulka ISA-, USB- ja PCI-kaarte.\n"
+"Mõned sellised printerid, näiteks HP LaserJet 1000, mille jaoks see draiver "
+"algselt loodigi, vajavad pärast sisselülitamist tootjapoolse tarkvara "
+"paigaldamist. HP LaserJet 1000 puhul tuleb teil otsida printeri Windowsi "
+"draiveri CD-lt või kõvaketta Windowsi partitsioonilt faili \"sihp1000.img\" "
+"ning laadida see printerile ühega järgnevatest käskudest:\n"
"\n"
-"See pakub ka palju arenenumat API-t kui OSS.\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
"\n"
-"Alsa kasutamiseks võib tarvitada:\n"
-" -vana ühilduvat OSS API-t\n"
-"- uut ALSA API-t, mis pakub hulga täiustatud võimalusi, kuid nõuab ALSA "
-"teegi kasutamist.\n"
+"Esimese käsu võib anda suvaline kasutaja, teise andmiseks on vaja olla "
+"administraator. Pärast seda võite normaalselt trükkida.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1972
msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Ruumi 1MB-se alglaadimisala loomiseks napib! Paigaldus jätkub, kuid süsteemi "
-"alglaadimiseks tuleb Teil luua DiskDrake abil alglaadimisala"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
+"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 ""
-"Valige palun printer, mida soovite seadistada, või kirjutage sisendireale "
-"seadmenimi/failinimi"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
-msgstr "Keeldun"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
-msgstr "KOHALIK"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
-msgstr "HFS"
+"Printeri vaikesätted\n"
+"\n"
+"Kontrollige palun, et lehekülje suurus ja tinditüüp/trükiresiim (kui "
+"võimalik), samuti laserprinterite riistvaralised sätted (mälu, dupleksseade, "
+"lisasalved) oleksid määratud korrektselt. Pange tähele, et väga suure "
+"trükikvaliteedi või lahutusvõime puhul muutub trükkimine märgatavalt "
+"aeglasemaks."
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake kontrollib riistvara ja lisavõimalusena ka seadistab\n"
-"uue või muudetud riistvara."
+msgid "Option %s must be an integer number!"
+msgstr "Võti %s peab olema täisarv!"
-#: ../../fs.pm:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Faili %s loomine ja vormindamine"
+msgid "Option %s must be a number!"
+msgstr "Võti %s peab olema arv!"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:1989
#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
-msgstr "Kui on 'jah', kontrollitakse sgid failide lisamist/eemaldamist."
+msgid "Option %s out of range!"
+msgstr "Võti %s väljub piiridest!"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2028
#, 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"
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
-"HP LaserJet 1000 vajab pärast sisselülitamist püsivara laadimist. Laadige HP "
-"veebileheküljelt alla Windowsi draiveripakett (püsivara printeri CD-l ei "
-"toimi) ning pakkige püsivarafail lahti, kasutades 'unzip' utiliiti ning "
-"otsides faili 'sihp1000.img'. Kopeerige fail kataloogi '/etc/printer'. Seal "
-"suudab automaatne laadimisskript selle üles leida ja laadida iga kord, kui "
-"printer on ühendatud ja sisse lülitatud.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "Vali olemasolev LVM, millele lisada"
+"Kas soovite määrata selle printeri (\"%s\")\n"
+"vaikeprinteriks?"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "xfs restart"
-msgstr "xfs taaskäivitamine"
+#: ../../printer/printerdrake.pm_.c:2051
+msgid "Test pages"
+msgstr "Testleheküljed"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2052
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"Please select the test pages you want to print.\n"
+"Note: the photo test page can take a rather long time to get printed and on "
+"laser printers with too low memory it can even not come out. In most cases "
+"it is enough to print the standard test page."
msgstr ""
-"Printer \"%s\" on juba olemas,\n"
-"kas tõesti kirjutada selle seadistused üle?"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Skännerite kasutamine masinatel:"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
-msgstr "Tühista kõigi valimine"
-
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "Ei leia partitsioone"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Management \n"
-msgstr "Printerite haldamine \n"
+"Valige palun testleheküljed, mida trükkida.\n"
+"Märkus: fototesti trükkimine võib võtta üsna kaua aega ning liiga vähese "
+"mäluga laserprinteritel ei pruugi see üldse õnnestuda. Enamasti peaks "
+"piisama tavalise testlehekülje trükkimisest."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Domeeninimede lahendaja"
+#: ../../printer/printerdrake.pm_.c:2056
+msgid "No test pages"
+msgstr "Ära trüki"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
-msgstr "Krüptovõti (uuesti)"
+#: ../../printer/printerdrake.pm_.c:2057
+msgid "Print"
+msgstr "Trüki"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Samba jagatava printeri nimi puudub!"
+#: ../../printer/printerdrake.pm_.c:2114
+msgid "Standard test page"
+msgstr "Tavaline testlehekülg"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
-msgstr "TrueType paigaldus tehtud"
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
+msgstr "Alternatiivne testlehekülg (Letter)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detection in progress"
-msgstr "Toimub tuvastamine..."
+#: ../../printer/printerdrake.pm_.c:2120
+msgid "Alternative test page (A4)"
+msgstr "Alternatiivne testlehekülg (A4)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Loo terve kernel -->"
+#: ../../printer/printerdrake.pm_.c:2122
+msgid "Photo test page"
+msgstr "Fototestlehekülg"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "modem"
-msgstr "modem"
+#: ../../printer/printerdrake.pm_.c:2126
+msgid "Do not print any test page"
+msgstr "Ära trüki ühtegi testlehekülge"
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "See ongi %s"
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
+msgstr "Trükitakse testlehekülg(i)..."
-#: ../../standalone/drakhelp:1
+#: ../../printer/printerdrake.pm_.c:2159
#, 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"
+"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"
-"Usage: \n"
msgstr ""
-" drakhelp 0.1\n"
-"Autoriõigus (c) 2003 Mandrake Soft.\n"
-"See on vaba tarkvara, mida võib levitada vastavalt GNU Üldise Avaliku "
-"Litsentsi tingimustele.\n"
+"Testlehekülg on saadetud printerile.\n"
+"Nüüd võib minna natuke aega, enne kui printer alustab.\n"
+"Staatus:\n"
+"%s\n"
"\n"
-"Kasutamine: \n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Pange palun moodulite uuendamise flopi seadmesse %s"
+#: ../../printer/printerdrake.pm_.c:2163
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+msgstr ""
+"Testlehekülg on saadetud printerile.\n"
+"Nüüd võib minna natuke aega, enne kui printer alustab.\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
-msgstr "Käivituslogo"
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
+msgstr "Kas kõik oli korras?"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+msgid "Raw printer"
+msgstr "Toorprinter"
+
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
+"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 ""
-"Teie süsteemiga on ühendatud\n"
-"\n"
-"%s%s\n"
-"printer"
+"Faili trükkimiseks käsurealt (terminaliaknas) võib kasutada kas käsku \"%s "
+"<fail>\" või graafilist trükkimisvahendit: \"xpp <fail>\" või \"kprinter "
+"<fail>\". Graafilised vahendid võimaldavad hõlpsamalt valida printerit ja "
+"muuta valikuid.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Printeri jagamine masinal/võrgus:"
+#: ../../printer/printerdrake.pm_.c:2218
+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 ""
+"Neid käske saab kasutada ka paljude rakenduste trükkimisdialoogi väljal "
+"\"Trükkimiskäsk\", kuid seal pole vaja kirjutada failinime, sest selle annab "
+"rakendus ise.\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, c-format
msgid ""
"\n"
@@ -13164,1700 +9016,1513 @@ msgstr ""
"Käsk \"%s\" võimaldab muuta ka konkreetse trükkimistöö valikuid. Selleks "
"lisage vaid soovitud valik käsureale, nt \"%s <fail>\". "
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "DrakClock"
-msgstr "DrakClock"
-
-#: ../../modules/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
#, 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."
+"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\n"
+"\n"
msgstr ""
-"Mõnel juhul vajab %s juhtprogramm tööks lisainformatsiooni,\n"
-"kuigi tavaliselt saab ka ilma hakkama. Kas soovite eraldi parameetreid\n"
-"määrata või lasta juhtprogrammil ise Teie arvutit kompida? Võib juhtuda,\n"
-"et see viib arvuti segadusse, kuid ei tohiks mingit jäävat kahju teha."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "CD nimi pole korrektne. Ketta nimi on %s."
+"Seda, millised valikud on saadaval praeguse printeri puhul, saab teada kas "
+"allpool seisvast loendist või pärast vajutust nupule \"Trükkimisvalikute "
+"loend\".%s%s\n"
+"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2228
msgid ""
+"Here is a list of the available printing options for the current printer:\n"
"\n"
-"- Daemon, %s via:\n"
msgstr ""
+"See on loend praegusel printeril kasutamiskõlblike trükkimisvalikutega:\n"
"\n"
-"- Deemon (%s) vahendusel:\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "Kuuba"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr "Oktoober"
-#: ../../lang.pm:1
-#, c-format
-msgid "Belize"
-msgstr "Belize"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Uute printerite otsimine..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
-msgstr " (mitmeseansiline)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
-msgstr "Ajapiirang kerneli laadimisel"
-
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, 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."
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
msgstr ""
-"Teie videokaardi 3D graafikakiirendit saab kasutada vaid koos XFree %s-ga.\n"
-"XFree %s toetab Teie videokaarti ja võib omada paremat 2D tuge."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Activate/Disable daily security check."
-msgstr " Igapäevase turvakontrolli lubamine/keelamine"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-R.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
-msgstr "Libsafe lubamine, kui see süsteemist leitakse"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX kettajagamise nõustaja leidis sellised lahendused:"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "Ungari"
+"Faili trükkimiseks käsurealt (terminaliaken) kasutage käsku \"%s <fail>\".\n"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"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 ""
-"Valige oma teenusepakkuja.\n"
-"Kui see ei ole nimekirjas, valige 'Tundmatu'."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Aja automaatne sünkroniseerimine (NTP abil)"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Windowsi partitsiooni kasutamine"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
+"Seda käsku saab kasutada ka paljude rakenduste trükkimisdialoogi väljal "
+"\"Trükkimiskäsk\". Kuid seal ei ole vaja kirjutada failinime, sest selle "
+"annab rakendus ise.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Server"
-msgstr "LDAP server"
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
+msgid ""
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
+msgstr ""
+"Praeguse printeri puhul kasutuskõlblike valikute loendi vaatamiseks vajutage "
+"nupule \"Trükkimisvalikute loend\"."
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:2253
#, 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."
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
msgstr ""
-"PCMCIA tugi on tavaliselt vajalik sülearvutitele võrgu- ja\n"
-"modemiliideste lisamiseks."
+"Faili trükkimiseks käsurealt (terminaliaken) kasutage käsku \"%s <fail>\" "
+"või \"%s <fail>\".\n"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Choose your country"
-msgstr "Valige riik"
+#: ../../printer/printerdrake.pm_.c:2257
+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 ""
+"Valikute seadistamiseks ja trükkimistööde haldamiseks saab kasutada ka "
+"graafilist liidest \"xpdq\".\n"
+"Kui kasutate töölauakeskkonnana KDE-d, on Teil töölaual \"paanikanupp\", "
+"ikoon nimetusega \"PEATA printer!\", millele klõpsates peatatakse otsekohe "
+"kõik trükkimistööd. See on kasulik näiteks paberiummistuste esinemisel.\n"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2261
#, c-format
msgid ""
"\n"
-"- System Files:\n"
+"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
+"a particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\".\n"
msgstr ""
"\n"
-"- Süsteemsed failid:\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
-msgstr "Autonoomsed vahendid"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Where"
-msgstr "Kus"
+"Käsud \"%s\" ja \"%s\" võimaldavad samuti muuta konkreetse trükkimistöö "
+"valikuid. Selleks tuleb vaid lisada soovitud sätted käsureale, näiteks \"%s "
+"<fail>\".\n"
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm_.c:2271
#, c-format
-msgid "but not matching"
-msgstr "aga ei sobi"
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Trükkimine/skaneerimine/fotokaardid seadmel \"%s\""
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm_.c:2272
#, c-format
-msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
-msgstr ""
-"Siin saate valida alternatiivse juhtprogrammi (OSS või ALSA) oma "
-"helikaardile (%s)."
+msgid "Printing/Scanning on \"%s\""
+msgstr "Trükkimine/skaneerimine seadmel \"%s\""
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2274
#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "PCMCIA kaartide seadmine..."
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Trükkimine/fotokaartide ligipääs seadmel \"%s\""
-#: ../../common.pm:1
+#: ../../printer/printerdrake.pm_.c:2275
#, c-format
-msgid "kdesu missing"
-msgstr "kdesu puudub"
+msgid "Printing on the printer \"%s\""
+msgstr "Trükkimine printeril \"%s\""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s nõuab ksutajatunnust...\n"
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+msgid "Close"
+msgstr "Sulge"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
-msgstr "Krüptovõti"
+#: ../../printer/printerdrake.pm_.c:2281
+msgid "Print option list"
+msgstr "Trükkimisvalikute loend"
-#: ../../mouse.pm:1
+#: ../../printer/printerdrake.pm_.c:2301
#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+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!"
+msgstr ""
+"Mitme funktsiooniga seade on automaatselt seadistatud ja suudab ka "
+"skaneerida. Nüüd võite skaneerida \"scanimage\" abil (\"scanimage -d hp:%s\" "
+"skänneri määramiseks, kui Teil on neid mitu) käsurealt või graafiliste "
+"liideste \"xscanimage\" või \"xsane\" vahendusel. Kui kasutate GIMPi, võite "
+"skaneerida ka menüükäsuga \"Fail\"/\"Hangi\". Kui soovite rohkem infot, "
+"andke käsureal korraldus \"man scanimage\".\n"
+"\n"
+"Ärge selle seadme puhul \"scannerdraket\" kasutage!"
-#: ../../keyboard.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2322
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."
+"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 ""
-"See aktiveeritakse pärast paigaldust.\n"
-"Paigalduse ajal tuleb erinevate klaviatuuripaigutuste\n"
-"vahel liikumiseks kasutada parempoolset Ctrl-klahvi."
+"Teie printer on seadistatud automaatselt ja võimaldab Teil oma arvutilt ligi "
+"pääseda fotokaardiketastele. Fotokaartidele pääseb ligi graafilise rakenduse "
+"\"MtoolsFM\" (menüüs: \"Rakendused\" -> \"Failivahendid\" -> \"Failihaldur "
+"MTools\") või käsureavahendi \"mtools\" abil (andke käsureal käsk \"man "
+"mtools\", et saada selle kohta rohkem infot). Kaartide failisüsteemi leiate "
+"kettal \"p:\" või mõnel sellele järgneva tähega kettal, kui Teil juhtub "
+"olema enam kui üks HP fotokaardiseadmega printer. Rakenduses \"MtoolsFM\" "
+"võite liikuda ketaste vahel faililoendi ülal paremas nurgas asuval väljal "
+"leiduvaid tähti vahetades."
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "Jõulusaar"
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+msgid "Reading printer data..."
+msgstr "Printeri andmete lugemine..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Automatic"
-msgstr "Automaatne"
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+msgid "Transfer printer configuration"
+msgstr "Printeri sätete ülekandmine"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2365
#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Alglaaduri paigaldamine ebaõnnestus. Tekkis järgmine viga:"
+msgid ""
+"You can copy the printer configuration which you have done for the spooler %"
+"s to %s, your current spooler. All the configuration data (printer name, "
+"description, location, connection type, and default option settings) is "
+"overtaken, but jobs will not be transferred.\n"
+"Not all queues can be transferred due to the following reasons:\n"
+msgstr ""
+"Teil on võimalus kopeerida printeri sätted, mida määrasite spuulerile %s, "
+"Teie praegusele spuulerile %s. Üle kantakse kõik sätete andmed (printeri "
+"nimi, kirjeldus, asukoht, ühendusviis, vaikevalikud), aga mitte tööd.\n"
+"Kõiki järjekordi ei saa üle kanda järgmistel põhjustel:\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "EIDE/SCSI kanal"
+#: ../../printer/printerdrake.pm_.c:2368
+msgid ""
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
+msgstr ""
+"CUPS ei toeta printereid Novelli serveritel ega printereid, mis saadavad "
+"andmeid suvalise vormiga käskudena.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Määra vaikeprinteriks"
+#: ../../printer/printerdrake.pm_.c:2370
+msgid ""
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
+msgstr ""
+"PDQ toetab ainult kohalikke printereid, võrguprintereid (LPD) ning Socket/"
+"TCP printereid.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Kontrollige, et %s on korrektne otsingutee"
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr "LPD ja LPRng ei toeta IPP printereid.\n"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "partitsioon %s"
+#: ../../printer/printerdrake.pm_.c:2374
+msgid ""
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
+msgstr ""
+"Lisaks sellele ei saa üle kanda järjekordi, mis on loodud käesoleva "
+"programmi või \"foomatic-configure\" poolt."
-#: ../../security/level.pm:1
-#, c-format
-msgid "Paranoid"
-msgstr "Paranoiline"
+#: ../../printer/printerdrake.pm_.c:2375
+msgid ""
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
+msgstr ""
+"\n"
+"Üle kanda ei saa ka printereid, mis on seadistatud nende tootjate pakutud "
+"PPD failidega või loomupäraste CUPS draiveritega."
-#: ../../any.pm:1
-#, c-format
-msgid "NIS"
-msgstr "NIS"
+#: ../../printer/printerdrake.pm_.c:2376
+msgid ""
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
+msgstr ""
+"\n"
+"Märkige printer(id), mida soovite üle kanda, ning vajutage \n"
+"\"Kanna üle\"."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- Kustuta kasutaja"
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
+msgstr "Ära kanna printereid üle"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Location on the bus"
-msgstr "Asukoht siinil"
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
+msgstr "Kanna üle"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2392
#, c-format
-msgid "No printer found!"
-msgstr "Printerit ei leitud!"
+msgid ""
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
+msgstr ""
+"Printer nimega \"%s\" on juba %s olemas. \n"
+"Vajutage \"Kanna üle\" selle ülekirjutamiseks.\n"
+"Te võite küll ka sisestada uue nime või selle printeri vahele jätta."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
-msgstr "seadme tootja nimi"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr "Printeri nimi tohib sisaldada vaid tähti, numbreid ja alakriipsu"
-#: ../../help.pm:1 ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
-msgid "Erase entire disk"
-msgstr "Tühjenda kogu ketas"
+msgid ""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
+msgstr ""
+"Printer \"%s\" on juba olemas,\n"
+"kas tõesti kirjutada selle sätted üle?"
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Default)"
-msgstr " (Vaikimisi)"
+#: ../../printer/printerdrake.pm_.c:2413
+msgid "New printer name"
+msgstr "Uus printeri nimi"
-#: ../../standalone/drakgw:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "Automatic reconfiguration"
-msgstr "Automaatne ümberseadistamine"
+msgid "Transferring %s..."
+msgstr "%s ülekandmine..."
-#: ../../standalone/net_monitor:1
+#: ../../printer/printerdrake.pm_.c:2427
#, c-format
-msgid "Receiving Speed:"
-msgstr "Saamise kiirus:"
+msgid ""
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
+msgstr ""
+"Kandsite üle oma senise vaikeprinteri (\"%s\"). Kas see peaks olema "
+"vaikeprinter ka uue trükkimissüsteemi %s puhul?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
-msgstr "Turks ja Caicos"
+#: ../../printer/printerdrake.pm_.c:2437
+msgid "Refreshing printer data..."
+msgstr "Printeri andmete värskendamine..."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Ip"
-msgstr "IP puudub"
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+msgid "Configuration of a remote printer"
+msgstr "Võrguprinteri seadistamine"
-#: ../../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
-#, c-format
-msgid "<- Previous"
-msgstr "<- Eelmine"
+#: ../../printer/printerdrake.pm_.c:2446
+msgid "Starting network..."
+msgstr "Võrgu käivitamine..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Transfer Now"
-msgstr "Kanna kohe üle"
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+msgid "Configure the network now"
+msgstr "Seadista võrk otsekohe"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password and network authentication methods"
-msgstr "Administraatori salasõna ja võrguautentimismeetodite määramine"
+#: ../../printer/printerdrake.pm_.c:2480
+msgid "Network functionality not configured"
+msgstr "Võrguvalmidus on seadistamata"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "Sorteeritud või sorteerimata"
+#: ../../printer/printerdrake.pm_.c:2481
+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 ""
+"Kavatsesite hakata seadistama võrguprinterit. Selleks läheb vaja töötavat "
+"võrguühendust, aga Teil on võrk veel seadistamata. Kui Te jätkate ilma võrku "
+"seadistamata, et ole Teil võimalik kasutada printerit, mida te tahate "
+"seadistada. Kuidas peaks nüüd edasi talitama?"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Themes"
-msgstr "Teemad"
+#: ../../printer/printerdrake.pm_.c:2484
+msgid "Go on without configuring the network"
+msgstr "Jätkama ilma võrku seadistamata"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "Eelistused: %s"
+#: ../../printer/printerdrake.pm_.c:2518
+msgid ""
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
+"Paigalduse ajal seadistatud võrku ei õnnestu praegu käivitada. Kontrollige "
+"palun, kas võrk on kättesaadav pärast süsteemi uut alglaadimist, ning "
+"korrigeerige seadistust Mandrake juhtimiskeskuse sektsioonis \"Kohtvõrk ja "
+"Internet\"/\"Ühendus\", misjärel seadistage printer samuti juhtimiskeskuses, "
+"aga sektsioonis \"Riistvara\"/\"Printer\". "
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2519
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
+"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 ""
-"Praegu on Teil alglaadimise haldurina kasutusel %s.\n"
-"Valige seadistamisnõustaja käivitamiseks 'Seadista'."
+"Võrguühendus ei töötanud ja seda ei saa ka käivitada. Kontrollige palun oma "
+"seadistusi ja riistvara. Seejärel proovige uuesti seadistada võrguprinterit."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "OKI winprinteri seadistused"
+#: ../../printer/printerdrake.pm_.c:2529
+msgid "Restarting printing system..."
+msgstr "Trükkimissüsteemi uuestikäivitamine..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
-msgstr "Saint Helena"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "high"
+msgstr "kõrge"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Paralleelpordis #%s"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "paranoid"
+msgstr "paranoiline"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid "Security Level"
-msgstr "Turvatase"
+msgid "Installing a printing system in the %s security level"
+msgstr "Trükkimissüsteemi paigaldamine turvatasemel '%s'"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2570
#, c-format
msgid ""
-"Some steps are not completed.\n"
+"You are about to install the printing system %s on a system running in the %"
+"s security level.\n"
"\n"
-"Do you really want to quit now?"
+"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 ""
-"Mõned sammud ei ole lõpule viidud.\n"
+"Te püüate praegu paigaldada trükkimissüsteemi %s süsteemi, mis töötab "
+"turvatasemel '%s'.\n"
"\n"
-"Kas soovite tõesti praegu lõpetada ja väljuda?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "Sudaan"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "Poola (QWERTZ)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
-msgstr "Süüria"
+"See trükkimissüsteem käivitab deemoni (taustal töötava protsessina), mis "
+"võtab vastu ja käsitleb trükkimistöid. Deemonile pääseb võrgu kaudu ligi ka "
+"kaugmasinatelt, mistõttu see kujutab endast võimaliku rünnaku objekti. "
+"Seetõttu käivitatakse selle turvataseme puhul vaikimisi ainult mõned valitud "
+"deemonid.\n"
+"\n"
+"Kas soovite tõesti seadistada trükkimist sellel masinal?"
-#: ../../printer/printerdrake.pm:1
-#, 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?"
-msgstr ""
-"Kas Teie printer on mitmefunktsionaalne HP või Sony toode (OfficeJet, PSC, "
-"LaserJet 1100/1200/1220/3200/3300 skänneriga, DeskJet 450, Sony IJP-V100) "
-"või vahest HP PhotoSmart ehk siis HP LaserJet 2200?"
+#: ../../printer/printerdrake.pm_.c:2604
+msgid "Starting the printing system at boot time"
+msgstr "Trükkimissüsteem käivitatakse alglaadimisel"
-# NOTE: this message will be displayed at boot time; that is# only the ascii charset will be available on most machines# so use only 7bit for this message (and do transliteration or# leave it in English, as it is the best for your language)##. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
+#: ../../printer/printerdrake.pm_.c:2605
#, c-format
msgid ""
-"Welcome to %s the operating system chooser!\n"
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\n"
"\n"
-"Choose an operating system from the list above or\n"
-"wait %d seconds for default boot.\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 ""
-"Tere tulemast! Laadimisel aitab Teid %s!\n"
+"Trükkimissüsteemi (%s) ei käivitata automaatselt arvuti alglaadimisel.\n"
"\n"
-"Valige nimekirjast eelistatav OS,\n"
-"vaikimisi oodake %d sekundit.\n"
+"On võimalik, et automaatkäivitus lülitati välja seoses kõrgema turvataseme "
+"valikuga, sest trükkimissüsteem on võimaliku rünnaku objekt.\n"
"\n"
+"Kas soovite trükkimissüsteemi automaatkäivituse taas sisse lülitada?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "Portugali"
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
+msgstr "Paigaldatud tarkvara kontroll..."
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2630
#, c-format
-msgid "Loopback file name: "
-msgstr "Loopback faili nimi:"
+msgid "Removing %s ..."
+msgstr "%s eemaldamine..."
-#: ../../network/network.pm:1
+#: ../../printer/printerdrake.pm_.c:2636
#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "Nimeserveri aadress peab olema kujul 1.2.3.4"
+msgid "Installing %s ..."
+msgstr "%s paigaldamine..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Control key"
-msgstr "Vasakpoolne Ctrl-klahv"
+#: ../../printer/printerdrake.pm_.c:2685
+msgid "Select Printer Spooler"
+msgstr "Printeri spuuleri valik"
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
-msgstr "Serbia"
+#: ../../printer/printerdrake.pm_.c:2686
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Millist trükkimissüsteemi (spuulerit) soovite kasutada?"
-#: ../../standalone/drakxtv:1
+#: ../../printer/printerdrake.pm_.c:2720
#, c-format
-msgid "Newzealand"
-msgstr "Uus-Meremaa"
+msgid "Configuring printer \"%s\"..."
+msgstr "Printeri \"%s\" seadistamine..."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
-msgstr "See kataloog peab jääma kokku juurfailisüsteemiga"
+#: ../../printer/printerdrake.pm_.c:2731
+msgid "Installing Foomatic..."
+msgstr "Foomaticu paigaldamine..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
-msgstr "üle võrgu"
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr "Printeri valikud"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
-msgstr "CapsLock-klahv"
+#: ../../printer/printerdrake.pm_.c:2810
+msgid "Preparing Printerdrake..."
+msgstr "Printerdrake ettevalmistamine..."
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "Alglaaduri seadistused"
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+msgid "Configuring applications..."
+msgstr "Rakenduste seadistamine..."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Valige graafikamälu suurus"
+#: ../../printer/printerdrake.pm_.c:2845
+msgid "Would you like to configure printing?"
+msgstr "Kas soovite trükkimist seadistada?"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
+msgstr "Trükkimissüsteem: "
+
+#: ../../printer/printerdrake.pm_.c:2915
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))."
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
-"Crontab ja at lubamine/keelamine kasutajatele.\n"
-"\n"
-"Lubatud kasutajad kirjutatakse failidesse /etc/cron.allow ja /etc/at.allow "
-"(vt man at(1) ja crontab(1))."
+"Seadistatud on järgmised printerid. Topeltklõps printeril võimaldab muuta "
+"selle seadistusi, teha see vaikeprinteriks, vaadata selle infot või muuta "
+"CUPSi printserveri printer kättesaadavaks StarOffice/OpenOffice.org/GIMP-ile."
-#: ../../standalone.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2916
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."
+"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 ""
-"[VÕTMED]\n"
-"Kohtvõrgu ja Interneti ühenduse ja jälgimise rakendus\n"
-"\n"
-"--defaultintf liides : näidab vaikimis antud liidest\n"
-"--connect : ühendab Internetiga, kui ei ole veel ühendust\n"
-"--disconnect : lahutab Internetist, kui on juba ühendus\n"
-"--force : koos võtmega (dis)connect : sunni ühendama/lahutama\n"
-"--status : vastuseks 1, kui on ühendatud, muul juhul 0 ja väljumine.\n"
-"--quiet : lülitab välja interaktiivsuse. Koos võtmega (dis)connect."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
-msgstr "Dünaamiline IP-aadresside vahemik:"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "LVM nimi?"
-
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "Mõned seadmed riistvaraklassis \"%s\" eemaldati:\n"
+"Seadistatud on järgmised printerid. Topeltklõps printeril võimaldab muuta "
+"selle seadistusi, teha see vaikeprinteriks või vaadata selle infot."
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Leiti %s %s liidest"
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
+msgstr ""
+"Värskenda printeriloendit (näitamaks kõiki saadaolevaid CUPS printserveri "
+"printereid)"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Install"
-msgstr "Paigaldusjärgsed seadistused"
+#: ../../printer/printerdrake.pm_.c:2960
+msgid "Change the printing system"
+msgstr "Trükkimissüsteemi muutmine"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The internal domain name"
-msgstr "Sisemine domeeninimi"
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+msgid "Normal Mode"
+msgstr "Tavakasutus"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "Kaardi IRQ"
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+msgid "Do you want to configure another printer?"
+msgstr "Kas soovite seadistada mõne muu printeri?"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "logdrake"
+#: ../../printer/printerdrake.pm_.c:3211
+msgid "Modify printer configuration"
+msgstr "Printeri seadistuste muutmine"
-#: ../../standalone.pm:1
+#: ../../printer/printerdrake.pm_.c:3213
#, 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."
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
-"Fontide importimise ja jälgimise "
-"rakendus \n"
-"--windows_import : impordib kõigilt saadaolevailt windowsi "
-"partitsioonidelt.\n"
-"--xls_fonts : näitab kõiki fonte, mis on juba saadud xls-ist.\n"
-"--strong : fontide tugev verifitseerimine.\n"
-"--install : paigaldada iga fondifail ja kataloog.\n"
-"--uninstall : eemaldada iga font või fondikataloog.\n"
-"--replace : asendada kõik fondid, kui on juba olemas.\n"
-"--application : 0 mitte ükski rakendus.\n"
-" : 1 iga toetatud ja saadaolev rakendus.\n"
-" : rakenduse_nimi näiteks so StarOffice'i \n"
-" : ja gs GhostScripti puhul."
-
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Valige flopiseade, mida kasutada alglaadimisketta tegemiseks"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr "LiLo tekstiresiimis"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
-msgstr "otsekohene"
-
-#
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Kõik (tulemüür puudub)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
-msgstr "Teil peab olema kerneli laadepilt"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", mitme funktsiooniga seade USB-l"
+"Printer %s\n"
+"Mida soovite muuta?"
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Do"
-msgstr "Tee ära"
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
+msgstr "Nüüd!"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Proovin lugeda peeglilt pakettide nimekirja..."
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+msgid "Printer connection type"
+msgstr "Printeri ühendusviis"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "Leedu AZERTY (vanem)"
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+msgid "Printer name, description, location"
+msgstr "Printeri nimi, kirjeldus, asukoht"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasiilia (ABNT-2)"
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
+msgstr "Printeri tootja, mudel, draiver"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
-msgstr "Masina/võrgu IP aadress:"
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
+msgstr "Printeri tootja, mudel"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-"edenemisriba ülemise vasaku\n"
-"nurga y-koordinaat"
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
+msgstr "Määra vaikeprinteriks"
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System installation"
-msgstr "Süsteemi paigaldus"
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Lisa printer StarOffice/OpenOffice.org/GIMP-ile"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint Vincent ja Grenadiinid"
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Eemalda StarOffice/OpenOffice.org/GIMP-ilt"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid reboot by the console user."
-msgstr "Konsooli kasutajale taaskäivituse lubamine/keelamine"
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+msgid "Print test pages"
+msgstr "Trüki testlehekülg(i)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Open"
-msgstr "/Fail/_Ava"
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+msgid "Know how to use this printer"
+msgstr "Printeri kasutama õppimine"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "Faili auto_install.cfg asukoht"
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+msgid "Remove printer"
+msgstr "Eemalda printer"
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:3282
#, c-format
-msgid "Open Firmware Delay"
-msgstr "Open Firmware viivitus"
+msgid "Removing old printer \"%s\"..."
+msgstr "Vana printeri \"%s\" eemaldamine..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
-msgstr "Ungari"
+#: ../../printer/printerdrake.pm_.c:3307
+msgid "Default printer"
+msgstr "Vaikeprinter"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:3308
#, c-format
-msgid "New Zealand"
-msgstr "Uus-Meremaa"
+msgid "The printer \"%s\" is set as the default printer now."
+msgstr "Printer \"%s\" on määratud vaikeprinteriks."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Color configuration"
-msgstr "Värviseadistused"
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Printeri lisamine StarOffice/OpenOffice.org/GIMP-ile"
-#: ../../security/level.pm:1
+#: ../../printer/printerdrake.pm_.c:3312
#, c-format
msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Mõned piirangud on juba peal ja igal ööl viiakse läbi veel hulk automaatseid "
-"kontrollimisi."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "please choose the date to restore"
-msgstr "valige palun kuupäev/aeg, kust taastada"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
-msgstr "Hollandi Antillid"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr "Ext2 vahetamine ext3 vastu"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Uue taastamishoidla valimine"
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+msgstr "Printer \"%s\" lisati edukalt StarOffice/OpenOffice.org/GIMP-ile."
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3313
#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"\n"
-"Printeri seadistamise nõustaja\n"
-"\n"
-"Nõustaja võimaldab Teile paigaldada kohalikke või võrguprintereid, mida saab "
-"kasutada Teie masin, samuti teised võrgus olevad masinad.\n"
-"\n"
-"Teil palutakse määrata kogu vajalik info printeri seadistamiseks, see "
-"tähendab olemasolevad printeridraiverid, draiveri valikud ja printeri "
-"ühendusviis."
+"Printeri \"%s\" lisamine StarOffice/OpenOffice.org/GIMP-ile ebaõnnestus."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and %d unknown printers"
-msgstr "ja %d tundmatut printerit"
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Printeri eemaldamine StarOffice/OpenOffice.org/GIMP-ilt"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:3317
#, c-format
msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
-"Varastel Inteli Pentium-kiipidel oli viga ujukomaprotsessoris, mis ei "
-"saavutanud vajalikku täpsust ujukomajagamist (FDIV) sooritades"
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
+msgstr "Printer \"%s\" eemaldati edukalt StarOffice/OpenOffice.org/GIMP-ilt."
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Varunduskvoot on lõhki!\n"
-"%d Mb kasutatud, %d Mb eraldatud."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "PCI ISDN kaarti ei leitud. Palun valige see järgmisel sammul."
-
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
-msgstr "GB"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
-msgstr "Palun andke kasutajanimi"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
-msgstr "CD-lt laadimine lubatud?"
+"Printeri \"%s\" eemaldamine StarOffice/OpenOffice.org/GIMP-ilt ebaõnnestus."
-#: ../../../move/move.pm:1
+#: ../../printer/printerdrake.pm_.c:3325
#, c-format
-msgid "Simply reboot"
-msgstr "Ainult taaskäivitus"
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Kas tõesti eemaldada printer \"%s\"?"
-#: ../../interactive/stdio.pm:1
+#: ../../printer/printerdrake.pm_.c:3329
#, c-format
-msgid " enter `void' for void entry"
-msgstr " kirjutage tühja kirje puhul 'void'"
+msgid "Removing printer \"%s\"..."
+msgstr "Printeri \"%s\" eemaldamine..."
-#: ../../standalone/drakbackup:1
+#: ../../raid.pm_.c:35
#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr ""
-"Varukoopiad haakimata andmekandjal - taastamiseks kasutatakse kataloogi"
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "Juba vormindatud RAID-ile (md%d) ei saa partitsiooni lisada"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
-msgstr "Jaanuar"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
+msgstr "mkraid ebaõnnestus"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password history length"
-msgstr "Salasõna puhvri suurus"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid ebaõnnestus (võib-olla puudub 'raidtools'?)"
-#: ../../network/netconnect.pm:1
+#: ../../raid.pm_.c:153
#, c-format
-msgid "Winmodem connection"
-msgstr "Ühendus \"Winmodemiga\""
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "Ei ole piisavalt partitsioone RAID-%d jaoks\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../security/main.pm_.c:36
msgid ""
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
"\n"
-"Congratulations, your printer is now installed and configured!\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\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."
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
+"\n"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
+"Standardne: see on tavaline turvatase, mida võib soovitada arvutile, mis on "
+"Internetiga\n"
+" ühendatud kui klient.\n"
"\n"
-"Õnnitleme, Teie printer on nüüd paigaldatud ja seadistatud!\n"
+"Kõrge: On juba mõningaid piiranguid, igal ööl sooritatakse märksa "
+"rohkem automaatseid kontrollimisi.\n"
"\n"
-"Nüüd võite trükkida, kasutades rakendustes käsku \"Trüki\"\n"
-"(enamasti peitub see menüüs \"Fail\").\n"
+"Väga kõrge: Turvalisus on piisav, et süsteemi saaks kasutada serverina, mis "
+"võib vastu võtta\n"
+" ühendusi paljudelt klientidelt. Kui Teie masin on Internetis "
+"vaid kui klient, oleks mõttekam\n"
+"\t valida madalam tase.\n"
"\n"
-"Kuii soovite printerit lisada, eemaldada või ümber nimetada või soovite "
-"muuta vaikeseadistusi (trükikvaliteet, paberisalv,...), valige Mandrake "
-"juhtimiskeskuse \"Riistvara\" sektsioonis \"Printer\"."
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "Nüüd võite xawtv tööle panna (X Window keskkonnas!) !\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Saaleala on paigalduseks liiga väike, palun suurendage seda"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "%s on %s"
-msgstr "%s asukohas %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid remote root login."
-msgstr "Administraatori võrgust sisselogimise lubamine/keelamine"
-
-#: ../../help.pm:1
-#, 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"
+"Paranoiline: See sarnaneb eelmisele tasemele, ainult et süsteem on täiesti "
+"suletud ja turvasätted\n"
+" maksimumi peale keeratud.\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 ""
-"GNU/Linux kasutab GMT (Greenwichi) aega ning teisendab selle\n"
-"kohalikuks ajaks vastavalt Teie valitud ajavööndile. Seda võib siiski ka "
-"välja\n"
-"lülitada, kui jätta märkimata \"%s\". Sellisel juhul kajastab\n"
-"arvutikell sama aega, mis süsteemi kell. See võib olla kasulik, kui masinas "
-"on\n"
-"veel mõni operatsioonisüsteem, näiteks Windows.\n"
-"\n"
-"Võimalus \"%s\" võimaldab kellaaega reguleerida,\n"
-"ühendudes Internetis mõne ajaserveriga. Pakutavas nimekirjas valige mõni\n"
-"lähemal asuv server. Mõistagi peab selle võimaluse kasutamiseks olema ka\n"
-"Internetiühendus. Tegelikult paigaldab see Teie arvutile ajaserveri, mida "
-"saab\n"
-"kasutada isegi teiste kohtvõrgus olevate masinate aja täpsustamiseks."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
-msgstr "Logifaili ei õnnestunud luua!"
+"Turvaadministraator:\n"
+" Kui valitud on võimalus 'Turvahoiatused', saadetakse "
+"turvahoiatused sellele kasutajale (kasutajanimele\n"
+"\t või e-posti aadressile)"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Millises ajavöötmes asute?"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Turvatase:"
-#: ../../standalone/drakbackup:1
+#: ../../security/main.pm_.c:77
#, c-format
-msgid "Use .backupignore files"
-msgstr "Kasutatakse .backupignore faile"
+msgid " (default value: %s)"
+msgstr " (vaikeväärtus: %s)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
-msgstr "Guinea"
+#: ../../security/main.pm_.c:113
+msgid "Security Alerts:"
+msgstr "Turvahoiatused:"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Süsteem on nüüd Internetti ühendatud."
+#: ../../security/main.pm_.c:115
+msgid "Security Administrator:"
+msgstr "Turvaadministraator:"
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Lõuna-Georgia ja Lõuna-Sandwichi saared"
+#: ../../security/main.pm_.c:128
+msgid "Network Options"
+msgstr "Võrguparameetrid"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Jaapan (tele)"
+#: ../../security/main.pm_.c:128
+msgid "System Options"
+msgstr "Süsteemi parameetrid"
-#: ../../help.pm:1
-#, c-format
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
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."
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
msgstr ""
-"Monitor\n"
-"\n"
-" Paigaldaja tuvastab ja seadistab tavaliselt automaatselt Teie masinaga\n"
-"ühendatud monitori. Kui see ei peaks siiski õnnestuma, saate siin toodud\n"
-"nimekirjast valida monitori, mis Teil tegelikult on."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "Mosambiik"
+"Süsteemi turvalisuse kohandamiseks saab seadistada\n"
+"järgmisi parameetreid. Seletuste saamiseks vajutage 'Abi'.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "Ikoon"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
+msgstr "Perioodiline kontroll"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Kill those programs"
-msgstr "Tapa need programmid"
+#: ../../security/main.pm_.c:191
+msgid "Please wait, setting security level..."
+msgstr "Palun oodake, sätin turvataseme..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Valige palun, mida soovite varundada"
+#: ../../security/main.pm_.c:197
+msgid "Please wait, setting security options..."
+msgstr "Palun oodake, sätin turvaparameetrid..."
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 värvi (8 bitti)"
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr "Helisüsteemi ALSA (Advanced Linux Sound Architecture) käivitamine"
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "Read-write"
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
+msgstr ""
+"Anacron käivitab programme perioodiliselt analoogiliselt cron-ile.\n"
+"Kasutage seda juhul, kui Teie arvuti ei tööta 24h."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "Suurus: %s\n"
+#: ../../services.pm_.c:21
+msgid ""
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
+msgstr ""
+"apmd on kasutusel põhiliselt sülearvutites akude täituvuse jälgimiseks.\n"
+"Samuti suudab see aku tühjenemisel süsteemi viisakalt seisata."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Hostname: "
-msgstr "Masinanimi: "
+#: ../../services.pm_.c:23
+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 ""
+"Laseb käivitada ühekordseid käske etteantud ajal või ootab süsteemi\n"
+"koormuse laskumist käsu käivitamiseks piisavale tasemele."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a rule"
-msgstr "Lisa reegel"
+#: ../../services.pm_.c:25
+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 ""
+"cron on UNIXi süsteemide standardvahend kasutaja programmide perioodiliseks\n"
+"käivitamiseks. Vixie cron sisaldab lisaks veel turvalisust ja kasutus-\n"
+"mugavust tõstvaid omadusi. Soovitatav süsteemile, mis töötab 24h."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Ühiku suurus %s\n"
+#: ../../services.pm_.c:28
+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 ""
+"GPM annab võimaluse kasutada hiirt ka tekstikonsoolil. Lisaks tavalisele\n"
+"lõikamisele/kleepimisele saab kasutada ka menüüsüsteeme."
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
-msgstr "Looge ise Linuxi parem tulevik!"
+#: ../../services.pm_.c:31
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
+msgstr ""
+"HardDrake kontrollib riistvara ja lisavõimalusena ka seadistab\n"
+"uue või muudetud riistvara."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printer"
-msgstr "Kohalik printer"
+#: ../../services.pm_.c:33
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+msgstr ""
+"Apache on maailma juhtiv veebiserveri programm. Tõenäoliselt\n"
+"ka võimsaim."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Flopile ei õnnestunud ligi pääseda ega haakida seadet %s"
+#: ../../services.pm_.c:34
+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 ""
+"Interneti \"superserver\" nimega inetd laseb käivituda mitmetel võrgu-\n"
+"teenustel, nagu telnet, ftp, rsh, rlogin jne. Inetdi keelamine keelab\n"
+"ka kõik teenused, mida see haldab."
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+#: ../../services.pm_.c:38
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
msgstr ""
-"[--file=minufail] [--word=minusõna] [--explain=regulaaravaldis] [--alert]"
+"Käivitab paketifiltri Linuxi kerneliseeriale 2.2 ning loob\n"
+"tulemüüri, mis kaitseb Teie masinat rünnakute eest Internetist."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL ühendus"
+#: ../../services.pm_.c:40
+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 ""
+"See pakett laeb süsteemi käivitumisel klaviatuuripaigutuse vastavalt\n"
+"failis /etc/sysconfig/keyboard kirjeldatule. Vähe on juhtumeid, kus\n"
+"seda teenust vaja ei läheks."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Seadistus puudub, klõpsake palun nupul Nõustaja või Muud.\n"
+#: ../../services.pm_.c:43
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
+msgstr ""
+"Kerneli päise automaatne regenereerimine partitsioonil /boot\n"
+"/usr/include/linux/{autoconf,version}.h jaoks"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Error!"
-msgstr "Viga!"
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr "Riistvara automaatne tuvastamine ja seadistamine alglaadimisel."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "cable connection detected"
-msgstr "leiti kaabliühendus"
+#: ../../services.pm_.c:46
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
+msgstr ""
+"Linuxconf sooritab mõnikord alglaadimise ajal mitmesuguseid\n"
+"asju süsteemi seadistuse säilitamiseks."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "%s ülekandmiseks %s-le puudub luba"
+#: ../../services.pm_.c:48
+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 ""
+"lpd on trükideemon, ilma selleta ei ole võimalik trükkida.\n"
+"Põhimõtteliselt on see server, mis saadab töö printeri(te)le."
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Vearaport"
+#: ../../services.pm_.c:50
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
+"Linuxi virtuaalserver, mis on mõeldud veatult töötavaks ja igati\n"
+"kättesaadavaks serveriks."
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
-msgstr "Dominica"
+#: ../../services.pm_.c:52
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
+msgstr ""
+"named (BIND) on kasutusel nimeserverites, mis teenindavad DNS hierarhiat, "
+"tõlkimaks nimesid IP-aadressideks."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "Muuda suurust"
+#: ../../services.pm_.c:53
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
+msgstr ""
+"Haagib ja lahutab kõiki võrgufailisüsteeme\n"
+"(nii NFS, SMB kui ka NCP)."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Kuvatihedus: %s\n"
+#: ../../services.pm_.c:55
+msgid ""
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
+msgstr "Aktiveerib süsteemi alglaadimisel kõik vajalikud võrguliidesed."
-#: ../../install2.pm:1
-#, c-format
+#: ../../services.pm_.c:57
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)"
+"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 ""
-"Ligipääs Teie kernelile vastavatele kerneli moodulitele ebaõnnestus (puudub "
-"fail %s), mis enamasti tähendab, et Teie alglaadimisflopi ei ole sünkroonis "
-"paigaldus-andmekandjaga (palun looge uus alglaadimisflopi)"
+"NFS on UNIXi keskkonna standardne failijaotusprotokoll.\n"
+"See täidab NFS serveri funktsioone ja seadistatakse failis /etc/exports."
-#: ../../help.pm:1
-#, c-format
+#: ../../services.pm_.c:60
msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
msgstr ""
-"Palun valige õige port. Näiteks MS Windowsi \"COM1\" kannab\n"
-"GNU/Linuxis nime \"ttyS0\"."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Eemaldamiseks on valitud järgmised paketid"
+"NFS on UNIXi keskkonna standardne failijaotusprotokoll.\n"
+"See programm täidab NFS failide lukustamise funktsioone.\n"
+"Vajalik serveerimisel."
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr "Loo internetiühendus"
+#: ../../services.pm_.c:62
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr "Lülitab automaatselt alglaadimise ajal sisse numlock-i."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
-msgstr "Kasuta olemasolevat partitsiooni"
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr "Toetab OKI 4w ja sellega ühilduvaid winprintereid."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "Kanada (Quebec)"
+#: ../../services.pm_.c:65
+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 ""
+"PCMCIA tugi on tavaliselt vajalik sülearvutitele võrgu- ja\n"
+"modemiliideste lisamiseks."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Hiire port: %s\n"
+#: ../../services.pm_.c:68
+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 ""
+"portmapper haldab RPC ühendusi, mida kasutavad NFS ja NIS.\n"
+"Neil serveritel on see hädavajalik."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Korrektsete fontide uuestivalimine"
+#: ../../services.pm_.c:71
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
+msgstr ""
+"Postfix on meili transpordiagent, see tähendab rakendus,\n"
+"mis toimetab meili ühest masinast teise."
-#: ../../help.pm:1
-#, c-format
+#: ../../services.pm_.c:72
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."
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
msgstr ""
-"Valikud\n"
-"\n"
-" Siin saab valida, kas soovite kasutada graafilist töökeskkonda\n"
-"kohe alglaadimisel. Pange tähele, et seda päritakse ka siis, kui Te ei "
-"proovinudki\n"
-"seadistusi testida. On üsna ilmne, et vastus kõlab \"%s\", kui masina "
-"ülesanne\n"
-"on tegutseda serverina või kui Teid ei kippunud seadistamise ajal edu saatma."
+"Salvestab ja taastab juhuarvude genereerimiseks vajaliku\n"
+"süsteemse entroopiasalve."
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "Mandrake äriekspert"
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
+msgstr ""
+"Toorseadmete seostamine blokkseadmetega\n"
+"(näiteks kõvaketta partitsioonid)\n"
+"selliste rakenduste, nagu Oracle tarbeks"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../services.pm_.c:76
msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+"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 ""
-" [kõik]\n"
-" XFDrake [--noauto] monitor\n"
-" XFDrake kuvatihedus"
+"routed on RIP deemon, mis vahetab selle protokolli alusel\n"
+"marsruutimisinfot. Kui Teil on RIP kasutusel, on vajalik ka routed."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Write protection"
-msgstr "Kirjutuskaitse"
+#: ../../services.pm_.c:79
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
+msgstr ""
+"rstat protokoll laseb üle võrgu saada informatsiooni\n"
+"süsteemi töö kohta. Ettevaatust!"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "You've not selected any font"
-msgstr "Ühtegi fonti ei ole valitud!"
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"rusers protokoll laseb üle võrgu saada informatsiooni\n"
+"süsteemi kasutajate kohta. Ettevaatust!"
-#: ../../steps.pm:1
-#, c-format
-msgid "Language"
-msgstr "Valige sobiv keel"
+#: ../../services.pm_.c:83
+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 ""
+"rwho protokoll laseb üle võrgu saada informatsiooni\n"
+"süsteemi kasutajate kohta. Ettevaatust!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer model selection"
-msgstr "Printeri mudeli valik"
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
+msgstr "Käivitab helisüsteemi"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:86
msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr "Partitsiooni %s tüübi muutmisel hävivad kõik seal olnud andmed"
+"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 "Syslog-i kaudu toimub süsteemis toimiva logimine. Vajalik!"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ISDN adapters"
-msgstr "ISDN kaardid"
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr "Laeb draiverid USB-seadmete tarbeks."
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekundit"
+#: ../../services.pm_.c:89
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+msgstr "Käivitab X fondiserveri, ilma milleta X lihtsalt ei lähe käima."
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Pange palun tühi flopi seadmesse %s"
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Valige, millised teenused tuleks alglaadimisel käivitada"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Sisestama peab sobiva URI!"
+#: ../../services.pm_.c:127
+msgid "Printing"
+msgstr "Trükkimine"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr "Leiti \"%s\" liides, kas soovite seda kasutada?"
+#: ../../services.pm_.c:128
+msgid "Internet"
+msgstr "Internet"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
-msgstr "Liidese ja DHCP serveri ümberseadistamine"
+#: ../../services.pm_.c:131
+msgid "File sharing"
+msgstr "Failide jagamine"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound configuration"
-msgstr "Heliseadistused"
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+msgid "System"
+msgstr "Süsteem"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
-msgstr "Fototestlehekülg"
+#: ../../services.pm_.c:138
+msgid "Remote Administration"
+msgstr "Kaughaldus"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Partitsioneerin ise"
+#: ../../services.pm_.c:146
+msgid "Database Server"
+msgstr "Andmebaasi server"
-#: ../../printer/printerdrake.pm:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Sisestage printeri nimi ja kommentaar"
+msgid "Services: %d activated for %d registered"
+msgstr "Teenused: %d aktiveeritud, kokku %d"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Teie süsteemiga on ühendatud\n"
-"\n"
-"%s%s\n"
-"printerid"
+#: ../../services.pm_.c:191
+msgid "Services"
+msgstr "Teenused"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "You don't have any winmodem"
-msgstr "Winmodemit Teie süsteemis küll ei ole"
+#: ../../services.pm_.c:203
+msgid "running"
+msgstr "töötab"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: %s"
-msgstr "tüüp: %s"
+#: ../../services.pm_.c:203
+msgid "stopped"
+msgstr "peatatud"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "Slovaki (QWERTY)"
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
+msgstr "Teenused ja deemonid"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:222
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."
+"No additional information\n"
+"about this service, sorry."
msgstr ""
-"Siia saab kirjutada komadega eraldatult kohalikud kasutajad või nende e-"
-"posti aadressid, kellele/kuhu antakse teada varunduse tulemustest. Selleks "
-"läheb vaja toimivat meiliedastusagenti."
+"Selle teenuse kohta\n"
+"ei oska lisainfot anda."
-#: ../../standalone/draksound:1
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Helikaarti ei leitud!"
+#: ../../services.pm_.c:229
+msgid "On boot"
+msgstr "Alglaadimisel"
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "Hiire port"
+#: ../../services.pm_.c:241
+msgid "Start"
+msgstr "Käivita"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
-msgstr "Ebaturvaliste kontode kontroll"
+#: ../../services.pm_.c:241
+msgid "Stop"
+msgstr "Peata"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Täname, et valisite Mandrake Linux 9.0"
+
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
+msgstr "Tere tulemast avatud tarkvara maailma"
+
+#: ../../share/advertising/01-thanks.pl_.c:11
msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
msgstr ""
-"Muutuste täielikuks jõustamiseks tuleb kuvahaldur taaskäivitada.\n"
-"(käsurealt: service dm restart)"
+"MandrakeSofti edu tugineb vaba tarkvara põhimõtte järgimisele. Teie uus "
+"operatsioonisüsteem on üleilmse Linuxi kogukonna ühise töö tulemus."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Ftp Server"
-msgstr "FTP server"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
+msgstr "Liituge vaba tarkvara maailmaga"
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr "Uganda"
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr "Kas soovite avatud tarkvara kogukonnast rohkem teada saada?"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
-msgstr "%s fontide teisendamine"
+#: ../../share/advertising/02-community.pl_.c:11
+msgid ""
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
+msgstr ""
+"Oma teadmiste jagamiseks ning Linuxi vahendite loomiseks võite ühineda "
+"diskussioonirühmadega, mida leiab meie \"kogukonna\" veebilehekülgedel"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "siinitüüp, millega hiir on ühendatud"
+#: ../../share/advertising/03-internet.pl_.c:9
+msgid "Get the most from the Internet"
+msgstr "Võtke Internetist viimane välja"
-#: ../../help.pm:1
-#, c-format
+#: ../../share/advertising/03-internet.pl_.c:10
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."
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-"Siin näidatakse mitmeid Teie masinat puudutavaid parameetreid. Sõltuvalt\n"
-"riistvarast võite siin näha kõiki või osa järgmistest kirjetest. Iga kirje\n"
-"juures on ära toodud elemendid, mida on võimalik seadistada, ning Teie "
-"masinal\n"
-"praegu kehtiv seadistus. Selle muutmiseks vajutage nupule \"%s\".\n"
-"\n"
-" * \"%s\": võimalus kontrollida klaviatuuritabeli seadistusi\n"
-"ja neid vajaduse korral muuta.\n"
-"\n"
-" * \"%s\": võimalus kontrollida oma riigi valikut. Kui Te ei asu\n"
-"vaikimisi määratud maal, vajutage nuppu \"%s\" ja valige uus\n"
-"riik. Kui Teie riiki ei ole ilmuvas nimekirjas, vajutage nupule\n"
-"\"%s\", mis avab riikide täisnimekirja.\n"
-"\n"
-" * \"%s\": DrakX arvab vaikimisi ajavööndi ära valitud keele põhjal. Kuid\n"
-"nagu klaviatuuri puhul, võib ka siin ette tulla, et Te ei viibi näiteks "
-"maal,\n"
-"millele valitud keel vastab. Sellisel juhul tuleks klõpsata nupul \"%s\",\n"
-"et seada kell selle ajavööndi ajale, kus Te parajasti viibite.\n"
-"\n"
-" * \"%s\": võimalus kontrollida hiire seadistusi ja neid vajadusel muuta.\n"
-"\n"
-" * \"%s\": klõps nupul \"%s\" avab printeri seadistamise nõustaja.\n"
-"Seda, kuidas uut printerit seadistada, vaadake lähemalt käivitusjuhiste "
-"vastavast\n"
-"peatükist. Siin nähtav on sarnane paigaldusajal nähtuga.\n"
-"\n"
-" * \"%s\": kui süsteemis leiti helikaart, näidatakse seda.\n"
-"Kui märkate, et siintoodud helikaart pole see, mis tegelikult on\n"
-"süsteemi paigaldatud, vajutage nuppu ja valige sobiv juhtprogramm.\n"
-"\n"
-" * \"%s\": vaikimisi määrab DrakX Teie graafilise liidese\n"
-"kuvatiheduseks \"800x600\" või \"1024x768\". Kui see Teile ei sobi,\n"
-"vajutage nupule \"%s\" ja valige mõni muu võimalus.\n"
-"\n"
-" * \"%s\": kui süsteemis leiti TV-kaart, näidatakse seda.\n"
-"Kui Teil on TV-kaart, aga seda ei leitud, vajutage nupule \"%s\"\n"
-"ning püüdke see käsitsi määrata.\n"
-"\n"
-" * \"%s\": kui süsteemis leiti ISDN-kaart, näidatakse seda.\n"
-"Nupule \"%s\" vajutades saab muuta sellega seonduvaid parameetreid.\n"
-"\n"
-" * \"%s\": Kui soovite kohe seadistada juurdepääsu Internetti või "
-"kohtvõrku,\n"
-"saate seda teha siin nupule vajutades.\n"
-"\n"
-" * \"%s\": see pakub võimaluse määrata ümber eelmisel sammul ()\n"
-"paika pandud turvatase.\n"
-"\n"
-" * \"%s\": kui kavatsete oma masina Internetti ühendada, kuluks\n"
-"ära enda kaitsmine rünnakute eest tulemüüri paikapanemisega. Vaadake\n"
-"üksikasju, kuidas tulemüüri seadistada, käivitusjuhiste vastavast\n"
-"peatükist.\n"
-"\n"
-" * \"%s\": kui soovite muuta alglaaduri seadistusi, vajutage\n"
-"sellele nupule. See on mõeldud siiski vaid kogenud kasutajatele.\n"
-"\n"
-" * \"%s\": saate täpselt kontrollida, millised teenused Teie\n"
-"masinal töötavad. Kui kavatsete kasutada oma masinat serverina, kuluks\n"
-"ära seadistused üle vaadata."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr "Komoorid"
+"Mandrake Linux 9.0 on valinud just Teie jaoks välja parima tarkvara. Liikuge "
+"ringi veebis ja vaadake animatsioone Mozilla ja Konquerori vahendusel või "
+"lugege kirju ja korraldage oma vajalikku erainfot Evolution ja KMaili abil"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "May"
-msgstr "Mai"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr "Avastage uusimad ja parimad graafika- ja multimeediavahendid!"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yaboot mode"
-msgstr "Yaboot resiim"
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr "Võtke multimeediast kõik, mida võtta annab!"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Tavaline 3 nupuga hiir"
+#: ../../share/advertising/04-multimedia.pl_.c:11
+msgid ""
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
+msgstr ""
+"Mandrake Linux 9.0 võimaldab teil kasutada uusimat tarkvara helifailide "
+"mängimiseks, piltide või fotode töötlemiseks ning videode vaatamiseks"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
-msgstr "USA (kaabel)"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Mängud"
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../share/advertising/05-games.pl_.c:10
msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
msgstr ""
-"LiLo taaskäivitamine ebaõnnestus!\n"
-"Käivitage \"lilo\" administraatorina käsurealt LiLo teema paigaldamise "
-"lõpetamiseks."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Muu andmekandja, millelt taastada"
+"Mandrake Linux 9.0 pakub parimaid avatud tarkvara mänge - põnevust, "
+"seiklusi, strateegiat..."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Software Manager"
-msgstr "Tarkvarahaldur"
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+msgid "Mandrake Control Center"
+msgstr "Mandrake juhtimiskeskus"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
-msgstr "Uuestisaatmine"
+#: ../../share/advertising/06-mcc.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
+msgstr ""
+"Mandrake Linux 9.0 pakub võimsa vahendi oma masinat igati kohandada ja "
+"seadistada"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD in place - continue."
-msgstr "CD on kohal - jätka"
+#: ../../share/advertising/07-desktop.pl_.c:9
+msgid "User interfaces"
+msgstr "Kasutajaliidesed"
-#: ../../common.pm:1
-#, c-format
-msgid "KB"
-msgstr "KB"
+#: ../../share/advertising/07-desktop.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
+msgstr ""
+"Mandrake Linux 9.0 pakub Teile 11 kasutajaliidest, mida saab igati "
+"kohandada: KDE 3, GNOME 2, WindowMaker..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Network & Internet"
-msgstr "Kohtvõrk ja Internet"
+#: ../../share/advertising/08-development.pl_.c:9
+msgid "Development simplified"
+msgstr "Arendus lihtsamat moodi"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Leedu \"foneetiline\" QWERTY"
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr "Mandrake Linux 9.0 kujutab endast täiuslikku arendusplatvormi"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Net Boot Images"
-msgstr "Võrgu alglaadefailid"
+#: ../../share/advertising/08-development.pl_.c:11
+msgid ""
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
+msgstr ""
+"Kasutage GNU gcc 3 kompilaatori täit jõudu ning parimaid arendusplatvorme, "
+"mida avatud tarkvara kogukond suudab pakkuda"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Skännerite jagamine"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr "Muutke oma masin usaldust väärivaks serveriks"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "Plug'n Play test ebaõnnestus. Palun valige monitor täpsemalt"
+#: ../../share/advertising/09-server.pl_.c:10
+msgid ""
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
+msgstr ""
+"Kujundage vaid mõne hiireklõpsuga enda masinast võimas Linuxi server: "
+"veebiserver, meili-, tulemüüri-, marsruutimis-, faili- ja printserver..."
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Detect again USB key"
-msgstr "Tuvasta USB mälupulk uuesti"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr "Turvalisus, nagu Teile meeldib"
-#: ../../services.pm:1
-#, c-format
-msgid "Services and deamons"
-msgstr "Teenused ja deemonid"
+#: ../../share/advertising/10-mnf.pl_.c:10
+msgid ""
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr ""
+"MandrakeSecurity tootepere sisaldab universaalset tulemüüri \"Multi Network "
+"Firewall\" (M.N.F.)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Kaugarvuti nimi puudub!"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
+msgstr ""
+"See tulemüür sisaldab võrguvõimalusi, mis lubavad rahuldada kõik vajadused, "
+"mis Teil turvalisuse osas võivad esineda"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "with /usr"
-msgstr "koos /usr-ga"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr "See toode on saadaval MandrakeStore veebisaidil"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Network"
-msgstr "Võrk"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr "MandrakeSofti ametlik kauplusladu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr "Microsoft Windowsi masinatega ühendatud printerite automaattuvastus"
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
+msgstr ""
+"Täisvaliku meie Linuxi lahendusi, samuti toodete eripakkumised ja muud "
+"\"soodustused\", leiate meie internetikaubamajast:"
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "Salasõna on liiga lihtne"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr "Strateegilised partnerid"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "Chkconfig allumine msec-i reeglitele"
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
+msgstr ""
+"MandrakeSoft teeb koostööd mitme firmaga, kes pakuvad Mandrake Linuxiga "
+"ühilduvaid professionaalseid rakendusi. Nende partnerite loendi leiab "
+"MandrakeStore veebileheküljelt"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovaki (QWERTZ)"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr "Tutvuge MandrakeSofti õpingukeskusega Linux-Campus"
-#: ../advertising/06-development.pl:1
-#, c-format
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
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."
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
msgstr ""
-"Programmeerimine erinevates keeltes, näiteks Perl, Python, C ja C++, pole "
-"kunagi varem olnud nii hõlpus - seda tänu GNU gcc 3-le ja parimatele vaba "
-"tarkvara arenduskeskkondadele."
+"Õppeprogrammi loomisel võeti arvesse nii lõppkasutajate kui ekspertide "
+"(võrgu- ja süsteemiadministraatorid) vajadusi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No devices found"
-msgstr "Ühtegi seadet ei leitud!"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr "Hankige endale Linuxi sertifikaat"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Tõeliselt minimaalne (eriti just ilma urpmi-ta)"
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+"Hoolimata sellest, kas kavatsete teadmisi omandada võrgus või meie "
+"õppepartnerite võrgustiku vahendusel, valmistab Linux-Campus Teid ette "
+"tunnustatud LPI sertifitseerimisprogrammi läbimiseks (see on üleilmne "
+"tehnilise professionaalsuse sertifikaat)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use daemon"
-msgstr "Deemoni kasutamine"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+msgid "Become a MandrakeExpert"
+msgstr "Omandage Mandrake eksperdi kuulsus"
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "Autentimisviis"
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
+msgstr "Leidke oma probleemidele lahendus MandrakeSofti internetitoe abil"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Lisa printer StarOffice/OpenOffice.org/GIMP-ile"
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+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 ""
+"Ühinege MandrakeSofti tugimeeskondadega ning Linuxi kogukonnaga Internetis, "
+"et jagada oma kogemusi ning aidata ka teistel saada tunnustatud ekspertideks "
+"tehnilise toe veebileheküljel:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Täiendavad CUPS serverid: "
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+msgid "MandrakeExpert Corporate"
+msgstr "Mandrake äriekspert"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr "Internetiplatvorm, mis vastab firmade spetsiifilistele tugivajadustele"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
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."
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-"Valige loendist üks automaatselt tuvastatud printeritest või kirjutage "
-"sisendiväljale masinanimi või IP ja kui teate, ka pordi number (vaikimisi on "
-"see 9100)."
+"Iga teadet jälgib ja lahendab konkreetne ja kvalifitseeritud MandrakeSofti "
+"tehniline töötaja."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr "Kuhu soovite haakida %s?"
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
+msgstr "Avastage Mandrake klubi ja Mandrake äriklubi"
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "Alžeeria"
+#: ../../share/advertising/17-mdkclub.pl_.c:10
+msgid ""
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
+msgstr ""
+"Mandrake klubi ja Mandrake äriklubi loodi Mandrake Linuxi äri- ja "
+"erakasutajatele, kes soovivad otseselt toetada meelepärast Linuxi "
+"distributsiooni ning saada vastutasuks erillisi privileege. Kui meie toode "
+"Teile meeldib, kui Teie firma on meie toodete abil saavutanud ärilist edu, "
+"kui Te soovite toetada Mandrake Linuxi arendamist, siis ühinege Mandrake "
+"klubiga!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network"
-msgstr "Taastamine võrgust"
+#: ../../standalone.pm_.c:21
+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 ""
+"Käesolev rakendus on vaba tarkvara. Te võite seda edasi levitada\n"
+"ja/või muuta vastavalt GNU Üldise Avaliku Litsentsi tingimustele, nagu\n"
+"need on avaldanud Vaba Tarkvara Fond; kas Litsentsi versioon number 2\n"
+"või (vastavalt Teie valikule) ükskõik milline hilisem versioon.\n"
+"\n"
+"Seda rakendust levitatakse lootuses, et see on kasulik, kuid\n"
+"ILMA IGASUGUSE GARANTIITA; isegi KESKMISE/TAVALISE\n"
+"KVALITEEDI GARANTIITA või SOBIVUSELE TEATUD KINDLAKS\n"
+"EESMÄRGIKS. Üksikasjade suhtes vaadake GNU Üldist Avalikku Litsentsi.\n"
+"\n"
+"Te peaks olema saanud GNU Üldise Avaliku Litsentsi koopia koos selle\n"
+"rakendusega; kui ei, siis võtke ühendust Vaba Tarkvara Fondiga aadressil:\n"
+"Free Software Foundation, 59 Temple Place - Suite 330, Boston,\n"
+"MA 02111-1307, USA.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
-msgstr "tar ja bzip2 kasutamine (tar ja gzip asemel)"
+#: ../../standalone.pm_.c:40
+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 name.\n"
+msgstr ""
+"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
+"Varundamis- ja taastamisrakendus\n"
+"\n"
+"--default : salvestab vaikekataloogid.\n"
+"--debug : näitab kõiki silumisteateid.\n"
+"--show-conf : varundatavate failide või kataloogide loend.\n"
+"--config-info : selgitab seadetefaili võtmeid (X-i "
+"mittekasutajaile).\n"
+"--daemon : kasutab deemoni sätteid.\n"
+"--help : näitab käesolevat abiteadet.\n"
+"--version : näitab versiooni nime.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd suurus"
+#: ../../standalone.pm_.c:51
+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 ""
+"[VÕTMED] [RAKENDUSE_NIMI]\n"
+"\n"
+"VÕTMED:\n"
+" --help - näitab käesolevat abiteadet.\n"
+" -report - rakendus peab olema üks Mandrake tööriistadest\n"
+" -incident - rakendus peab olema üks Mandrake tööriistadest"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone.pm_.c:57
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."
+"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 ""
-"Juhul, kui Teie kaardile peaks saada olema erinevaid servereid nii 3D\n"
-"kiirendusega kui ilma, saate valida serveri, mis Teie vajadustele\n"
-"kõige enam vastab."
+"Fontide importimise ja jälgimise "
+"rakendus \n"
+"--windows_import : impordib kõigilt saadaolevailt windowsi "
+"partitsioonidelt.\n"
+"--xls_fonts : näitab kõiki fonte, mis on juba saadud xls-ist.\n"
+"--strong : fontide tugev verifitseerimine.\n"
+"--install : paigaldada iga fondifail ja kataloog.\n"
+"--uninstall : eemaldada iga font või fondikataloog.\n"
+"--replace : asendada kõik fondid, kui on juba olemas.\n"
+"--application : 0 mitte ükski rakendus.\n"
+" : 1 iga toetatud ja saadaolev rakendus.\n"
+" : rakenduse_nimi näiteks so StarOffice'i \n"
+" : ja gs GhostScripti puhul."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tvarukoopiad tar- ja gzip-vormingus\n"
+#: ../../standalone.pm_.c:68
+msgid ""
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
+msgstr ""
+"[VÕTMED}...\n"
+"\t --debug näitab veateateid"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set as default"
-msgstr "Määra vaikeprinteriks"
+#: ../../standalone.pm_.c:70
+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)"
+msgstr ""
+"[VÕTMED]...\n"
+"Mandrake terminaliserveri seadistaja\n"
+"--enable : lubab MTSi\n"
+"--disable : keelab MTSi\n"
+"--start : käivitab MTSi\n"
+"--stop : peatab MTSi\n"
+"--adduser : lisab olemasoleva kasutaja MTSile (nõutav on "
+"kasutajanimi)\n"
+"--deluser : kustutab olemasoleva kasutaja MTSist (nõutav on "
+"kasutajanimi)\n"
+"--addclient : lisab kliendimasina MTSile (nõutav on MAC-aadress, IP, "
+"nbi laadepildi nimi)\n"
+"--delclient : kustutab kliendimasina MTSist (nõutav on MAC-aadress, IP, "
+"nbi laadepildi nimi)"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
+#: ../../standalone.pm_.c:82
+msgid "[keyboard]"
+msgstr "[klaviatuur]"
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on this machine"
-msgstr "Seadistatud sellel masinal"
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
+msgstr ""
+"[--file=minufail] [--word=minusõna] [--explain=regulaaravaldis] [--alert]"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Mõlemad Ctrl-klahvid korraga"
+#: ../../standalone.pm_.c:84
+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 ""
+"[VÕTMED]\n"
+"Kohtvõrgu ja Interneti ühenduse ja jälgimise rakendus\n"
+"\n"
+"--defaultintf liides : näidab vaikimis antud liidest\n"
+"--connect : ühendab Internetiga, kui ei ole veel ühendust\n"
+"--disconnect : lahutab Internetist, kui on juba ühendus\n"
+"--force : koos võtmega (dis)connect : sunni ühendama/lahutama\n"
+"--status : vastuseks 1, kui on ühendatud, muul juhul 0 ja väljumine.\n"
+"--quiet : lülitab välja interaktiivsuse. Koos võtmega (dis)connect."
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - näitab seda abiteadet \n"
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../standalone.pm_.c:94
msgid ""
"[OPTION]...\n"
" --no-confirmation don't ask first confirmation question in "
@@ -14875,6255 +10540,5109 @@ msgstr ""
"muudatuste logi\n"
" -merge-all-rpmnew proovib liita kõik leitud failid .rpmnew/.rpmsave"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Vaikeprinteri seadmine..."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Liides %s (kasutab moodulit %s)"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Generating preview ..."
-msgstr "Eelvaatluse tekitamine ..."
-
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone.pm_.c:99
msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
msgstr ""
-"Sagedus peab sisaldama sufiksit k, M või G (näiteks \"2.46G\" - 2,46 GHz "
-"sagedusel), või lisage piisavalt nulle."
+"[--manual] [device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] [--"
+"dynamic=dev]"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ignore"
-msgstr "ignoreeri"
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone.pm_.c:100
msgid ""
-"Allow/Forbid X connections:\n"
-"\n"
-"- ALL (all connections are allowed),\n"
-"\n"
-"- LOCAL (only connection from local machine),\n"
-"\n"
-"- NONE (no connection)."
-msgstr ""
-"X-i ühenduste lubamine/keelamine:\n"
-"\n"
-"- KÕIK (kõik ühendused on lubatud),\n"
-"\n"
-"- KOHALIK (ainult kohalikud ühendused),\n"
-"\n"
-"- MITTE KEEGI (ühendusi ei lubata)."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", mitme funktsiooniga seade paralleelpordis #%s"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "jadapordi"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
-msgstr "DVD-ROM"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Gruusia (\"ladina\" asetus)"
-
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
-msgstr ""
-"Hankige parimad kaubad ja teenused Mandrake Linuxi strateegilistelt "
-"partneritelt"
-
-#: ../../modules/interactive.pm:1
-#, 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'"
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
msgstr ""
-"Nüüd võite määrata oma parameetrid moodulile %s.\n"
-"Pange tähele, et iga aadress tuleb sisestada prefiksiga 0x, nt '0x123'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "Keenia"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Kasutage enne \"Lahuta\""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing mtools packages..."
-msgstr "Paketi \"mtools\" paigaldamine..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a root partition"
-msgstr "Teil peab olema juurpartitsioon"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "first step creation"
-msgstr "esimene samm loomine"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Mõlemad Shift-klahvid korraga"
+" [kõik]\n"
+" XFDrake [--noauto] monitor\n"
+" XFDrake kuvatihedus"
-#: ../../standalone/drakhelp:1
+#: ../../standalone.pm_.c:114
#, c-format
msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
-" --id <id_label> - avab html abilehekülje, mis viitab id_label'ile\n"
+"\n"
+"Kasutamine: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version]"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select a scanner model"
-msgstr "Valige skänneri mudel"
+#: ../../standalone.pm_.c:168
+msgid "Installing packages..."
+msgstr "Pakettide paigaldamine..."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
-msgstr "IPv4 võltsveateadete lubamine/keelamine"
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Palun väljuge ja vajutage siis Ctrl-Alt-BackSpace"
-#: ../../printer/data.pm:1
+# c-format
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR, uus põlvkond"
+msgid "Please relog into %s to activate the changes"
+msgstr "Muudatuste aktiveerimiseks käivitage %s uuesti"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Drakbackupi seadistused"
+#: ../../standalone/drakTermServ_.c:239
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Mandrake terminaliserveri sätted"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr "Salvesta kui..."
+#: ../../standalone/drakTermServ_.c:253
+msgid "Enable Server"
+msgstr "Serveri lubamine"
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr "Põhja-Korea"
+#: ../../standalone/drakTermServ_.c:260
+msgid "Disable Server"
+msgstr "Serveri keelamine"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Seda liidest ei ole veel seadistatud.\n"
-"Käivitage peaaknas seadistamise nõustaja"
+#: ../../standalone/drakTermServ_.c:268
+msgid "Start Server"
+msgstr "Serveri käivitamine"
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System configuration"
-msgstr "Süsteemi seadistused"
+#: ../../standalone/drakTermServ_.c:275
+msgid "Stop Server"
+msgstr "Serveri peatamine"
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "Vaikimisi sisenemine"
+#: ../../standalone/drakTermServ_.c:283
+msgid "Etherboot Floppy/ISO"
+msgstr "Etherboot flopi/ISO"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin Password"
-msgstr "Domeeni administraatori parool"
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
+msgstr "Võrgu alglaadepildid"
-#: ../advertising/05-desktop.pl:1
-#, 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, ..."
-msgstr ""
-"Arvuti saab kohandada just oma vajadustele tänu Mandrake Linuxi kasutajatele "
-"pakutavatele 11 igati seadistatavale kasutajaliidesele: KDE 3.1, GNOME 2.2, "
-"WindowMaker..."
+#: ../../standalone/drakTermServ_.c:294
+msgid "Add/Del Users"
+msgstr "Lisa/kustuta kasutaja"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer ..."
-msgstr "Printeri seadistamine..."
+#: ../../standalone/drakTermServ_.c:299
+msgid "Add/Del Clients"
+msgstr "Lisa/kustuta klient"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:328
msgid ""
-"To ensure data integrity after resizing the partition(s), \n"
-"filesystem checks will be run on your next boot into Windows(TM)"
+"\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
+"\n"
msgstr ""
-"Andmepidevuse tagamiseks pärast partitsiooni(de) suuruse muutmist \n"
-"kontrollitakse järgmisel Windows(TM) alglaadimisel failisüsteemi"
-
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "MB"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
-msgstr "Kui on 'jah', kontrollitakse veidi rpm andmebaasi."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr "Neitsisaared (Briti)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bermuda"
-msgstr "Bermuda"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
-msgstr "kui olete kindel, klõpsake siia."
+"\n"
+" Copyright (C) 2002: MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
+"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:332
msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+"\n"
+"\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
+"\n"
msgstr ""
-"Seadistustefaili ei leitud, \n"
-"klõpsake palun nupul 'Nõustaja' või 'Muud'."
-
-#: ../../help.pm:1
-#, 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"
+" Täname:\n"
+"\t- LTSP projekti http://www.ltsp.org\n"
+"\t- Michael rowni <mbrown\\@fensystems.co.uk>\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"
+
+#: ../../standalone/drakTermServ_.c:365
+msgid ""
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\n"
"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Ülal on toodud kõik Teie kõvakettal olemasolevad Linuxi partitsioonid\n"
-"Vaikimisi on need enamasti üsna mõistlikud. Kui teete nendes muutusi,\n"
-"pidage meeles, et kindlasti vajate juurpartitsiooni (\"/\"). Liiga väikeste\n"
-"partitsioonide puhul võib tekkida raskusi piisava hulga tarkvara "
-"paigaldamisel.\n"
-"Kasutajate jaoks on sageli mõistlik luua eraldi \"/home\" partitsioon.\n"
-"(Seda mõistagi juhul, kui tegemist on enam kui ühe Linuxi partitsiooniga).\n"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \n"
"\n"
-"Iga partitsiooni juures on toodud abiinfona \"Nimi\" ja \"Mahutavus\".\n"
+msgstr ""
+"drakTermServi ülevaade\n"
+"\t\t\t \n"
+" - Etherboot-suutlike laadepiltide loomine:\n"
+" \t\tKerneli alglaadimiseks etherboodi vahendusel tuleb luua eriline "
+"kernel/initrdrd laadepilt.\n"
+" \t\tSuure osa tööst teeb ära mkinitrd ning drakTermServ on vaid "
+"graafiline\n"
+" \t\tkasutajaliides, aitamaks neid laadepilte hallata ja/või "
+"kohandada.\n"
"\n"
-"\"Nimi\" koosneb kõvakettatüübist, selle numbrist ja partitsiooni\n"
-"numbrist (näiteks \"hda1\").\n"
+" - /etc/dhcpd.conf haldamine:\n"
+" \t\tEt klient saaks teha alglaadimise võrgust, vajab iga klient "
+"kirjet failis dhcpd.conf,\n"
+" \t\tmis omistab masinale IP aadressi ja võrgulaadepildi. "
+"drakServTerm aitab neid\n"
+" \t\tkirjeid luua/eemaldada.\n"
+"\t\t\t\n"
+" \t\t(PCI kaartidel võib laadepilt puududa - etherboot nõuab "
+"korrektset laadepilti.\n"
+" \t\tSilmas võiks pidada ka seda, et kui etherboot laadepilti ootab, "
+"eeldab ta nime\n"
+" \t\tkujul boot-3c59x.nbi, mitte aga boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t\n"
+" \t\tTüüpiline dhcpd.conf-i lõik, mis toetab kettata tööjaama, näeb "
+"välja selline:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk.nbi"
+"\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tKuigi võib kasutada ka IP aadresside valimikku, selle asemel et "
+"määrata igale\n"
+"\t\t\tkliendi masinale eraldi kirje, võimaldab fikseeritud aadress "
+"kasutamine siiski\n"
+"\t\t\tpruukida ClusterNFS pakutavaid kliendikeskseid seadistustefaile.\n"
+"\t\t\t\n"
+"\t\t\tMärkus: kirjet \"/*type\" kasutab ainult drakTermServ. Kliendid "
+"võivad olla \n"
+"\t\t\tkas \"thin\"*/ või 'fat'. \"Õhuke\" klient kasutab enamikku tarkvara "
+"serveril xdmcp\n"
+"\t\t\tvahendusel, \"paksud\" kliendid aga jooksutavad takrvara enamasti "
+"kliendi\n"
+"\t\t\tmasinal. Õhukeste klientide jaoks kirjutatakse eraldi inittab-fail\n"
+"\t\t\t/etc/inittab\\$\\$IP=kliendi_IP\\$\\$. Õhukeste klientide puhul "
+"muudetakse xdmcp\n"
+"\t\t\tvõimaldamiseks süsteemi seadetefaile xdm-config, kdmrc ja gdm.conf. "
+"Kuivõrd\n"
+"\t\t\txdmcp kasutamisega kaasnevad teatud turvaprobleemid, muudetakse faile\n"
+"\t\t\thosts.deny ja hosts.allow, et piirata ligipääsu kohalikule "
+"alamvõrgule.\n"
+"\t\t\t\n"
+"\t\t\tMärkus: server tuleb peatada/käivitada pärast kliendi lisamist või "
+"muutmist.\n"
+"\t\t\t\n"
+" - /etc/exports haldamine:\n"
+" \t\tClusterNFS võimaldab eksportida juurfailisüsteemi kettata "
+"tööjaamadele.\n"
+" \t\tdrakTermServ loob korrektse kirje, mis võimaldab kettata "
+"tööjaamadele\n"
+" \t\tanonüümset ligipääsu juurfailisüsteemile.\n"
"\n"
-"Kõvaketta tüüp on \"hd\", kui on tegemist IDE kettaga, ning \"sd\", kui on\n"
-"tegemist SCSI kettaga.\n"
+" \t\tTüüpiline ekspordikirje ClusterNFS tarbeks näeb välja selline:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tkus SUBNET/MASK määrab Teie võrku.\n"
+" \t\t\n"
+" - /etc/shadow\\$\\$CLIENT\\$\\$ haldamine:\n"
+" \t\tEt kasutajad saaksid kettata tööjaamalt süsteemi logida, peab "
+"nende kirje\n"
+" \t\tfailis /etc/shadow leiduma ka failis /etc/shadow\\$\\$CLIENTS\\$"
+"\\$.\n"
+" \t\tdrakTermServ aitab süsteemi kasutajaid faili lisada või sealt "
+"eemaldada.\n"
"\n"
-"Kõvaketta number on alati täht \"hd\" või \"sd\" järel. IDE ketastel:\n"
+" - Kliendi failid /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tClusterNFS abil võivad igal kettata tööjaamal olla oma "
+"unikaalsed seadetefailid\n"
+" \t\tserveri juurfailisüsteemis. Tulevikus aitab drakTermServ neid "
+"luua.\n"
"\n"
-" * \"a\" - esmase IDE kontrolleri ülem,\n"
+" - Kliendi süsteemi seadetefailid:\n"
+" \t\tClusterNFS abil võivad igal kettata tööjaamal olla oma "
+"unikaalsed seadetefailid\n"
+" \t\tserveri juurfailisüsteemis. Tulevikus aitab drakTermServ luua "
+"iga kliendi kohta\n"
+" \t\tselliseid faile, nagu /etc/modules.conf, /etc/sysconfig/mouse, /"
+"etc/sysconfig/keyboard.\n"
"\n"
-" * \"b\" - esmase IDE kontrolleri allutatu,\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ seadistab selle faili, et see saaks töötada koos "
+"laadepildega, mille\n"
+" \t\ttekitab mkinitrd-net, samuti kirjed failis /etc/dhcpd.conf, et "
+"pakkuda igale kettata\n"
+" \t\ttööjaamale alglaadimiseks laadepilti.\n"
"\n"
-" * \"c\" - teisese IDE kontrolleri ülem,\n"
+" \t\tTüüpiline tftp seadetefail näeb välja selline:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t{\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tSiin tehtud muudatused võrreldes vaikepaigaldusega muudavad "
+"tühistamislipu\n"
+" \t\tväärtuseks 'no' ning kataloogirajaks muudetakse /var/lib/"
+"tftpboot, kuhu mkinitrd\n"
+" \t\tsalvestab oma laadepildid.\n"
"\n"
-" * \"d\" - teisese IDE kontrolleri allutatu.\n"
+" - Etherbooti flopide/CD-de loomine:\n"
+" \t\tKettata tööjaamad vajavad kas ROM-laadepilti võrguliidesel või "
+"alglaadimisflopit\n"
+" \t\tvõi -CD-d alglaadimise käivitamiseks. drakTermServ aitab neid "
+"laadepilte luua,\n"
+" \t\ttuginedes kliendi masina võrguliidesele.\n"
+" \t\t\n"
+" \t\tLihtne näide alglaadimisflopi loomisest käsitsi 3com 3c509 "
+"jaoks:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \n"
"\n"
-"SCSI ketaste puhul on \"a\" esimene, \"b\" teine ja nii edasi."
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Remove"
-msgstr "Eemalda"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr "Lesotho"
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
+msgstr "Alglaadimisflopi"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr "utopia 25"
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
+msgstr "Alglaadimis-ISO"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Töö toru kaudu käsuks"
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
+msgstr "Loo terve kernel -->"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Remove system config files"
-msgstr "Eemaldada süsteemsed seadistustefailid"
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
+msgstr "Selleks kulub päris mitu minutit."
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "Cote d'Ivoire"
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
+msgstr "Kernelit pole valitud!"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "uus dünaamiline seadmenimi, mille genereerib kerneli devfs"
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
+msgstr "Loo ainus võrgukaart -->"
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "Jah"
+#: ../../standalone/drakTermServ_.c:587
+msgid "No nic selected!"
+msgstr "Võrgukaarti pole valitud!"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Millist protokolli soovite kasutada?"
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
+msgstr "Loo kõik kernelid -->"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Progress"
-msgstr "Taastamise edenemine"
+#: ../../standalone/drakTermServ_.c:604
+msgid "<-- Delete"
+msgstr "<-- Kustuta"
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
-msgstr "Eesti"
+#: ../../standalone/drakTermServ_.c:611
+msgid "Delete All NBIs"
+msgstr "Kustuta kõik võrgu alglaadepildid"
-#: ../../partition_table.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:668
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."
+"!!! 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 ""
-"Partitsioonitabelis on miskipärast tühi koht, aga see ei ole kasutatav.\n"
-"Ainuke lahendus on nihutada primaarset partitsiooni, et \"auk\" satuks "
-"laiendatud partitsioonide kõrvale."
+"!!! Näitab, et parool antud süsteemis erineb sellest, mida teab\n"
+"terminalserver.\n"
+"Palun kustutage ja looge see kasutaja terminalserveris uuesti, et "
+"võimaldada\n"
+"sisselogimist."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr ""
-"Valige palun masin, mille jaoks soovite siinseid skännereid välja jagada:"
+#: ../../standalone/drakTermServ_.c:673
+msgid "Add User -->"
+msgstr "Lisa kasutaja -->"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Channel"
-msgstr "Kanal"
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
+msgstr "<-- Kustuta kasutaja"
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#: ../../standalone/drakTermServ_.c:720
#, c-format
-msgid "Add"
-msgstr "Lisa"
+msgid "type: %s"
+msgstr "tüüp: %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr " Viga meili saatmisel. \n"
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
+msgstr "Võrgu alglaadepilte pole loodud!"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "Klaviatuur"
+#: ../../standalone/drakTermServ_.c:773
+msgid "Thin Client"
+msgstr "Õhuke Klient"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-"Sisestage CD nimega %s\n"
-" CD-seadmesse haakepunktis /mnt/cdrom"
+#: ../../standalone/drakTermServ_.c:775
+msgid "Allow Thin Clients"
+msgstr "Luba õhukesi kliente"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-"Kiirus peab sisaldama sufiksit k, M või G (näiteks \"11M\"), või lisage "
-"piisavalt nulle."
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
+msgstr "Lisa klient -->"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Valige ühendus, mida seadistada"
+#: ../../standalone/drakTermServ_.c:821
+msgid "<-- Edit Client"
+msgstr "<-- Muuda klienti"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Palun oodake, sätin turvataseme..."
+#: ../../standalone/drakTermServ_.c:837
+msgid "Delete Client"
+msgstr "Kustuta klient"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Seadistame võrgukaardi %s"
+#: ../../standalone/drakTermServ_.c:843
+msgid "dhcpd Config..."
+msgstr "Dhcpd seadistamine..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
-msgstr "aktiveeritud"
+#: ../../standalone/drakTermServ_.c:876
+msgid ""
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
+msgstr ""
+"Muutuste täielikuks jõustamiseks peate konsoolihalduri restartima.\n"
+"(käsurealt: service dm restart)"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
-msgstr "Palun valige, millist võrguliidest soovite dhcp serveri jaoks kasutada"
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
+msgstr "Alamvõrk:"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Otsin uuendatavaid pakette..."
+#: ../../standalone/drakTermServ_.c:901
+msgid "Netmask:"
+msgstr "Võrgumask:"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
-msgstr "Haakepunkt:"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
+msgstr "Ruuterid:"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
-msgstr "kõigi fontide analüüs"
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
+msgstr "Alamvõrgu mask:"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid direct root login."
-msgstr "Administraatori vahetu sisselogimise lubamine/keelamine"
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
+msgstr "Üldlevi aadress:"
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr "Üldlevi icmp echo aktsepteerimine/tagasilükkamine"
+#: ../../standalone/drakTermServ_.c:929
+msgid "Domain Name:"
+msgstr "Domeeninimi:"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
-msgstr "X-iga"
+#: ../../standalone/drakTermServ_.c:937
+msgid "Name Servers:"
+msgstr "Nimeserverid:"
-#
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Mitme monitori seadistamine"
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
+msgstr "IP vahemiku algus:"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "No browser available! Please install one"
-msgstr "Brauserit ei leitud! Palun paigaldage mõni"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
+msgstr "IP vahemiku lõpp:"
-#: ../../Xconfig/main.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:1001
+msgid "dhcpd Server Configuration"
+msgstr "Dhcpd serveri seadistamine"
+
+#: ../../standalone/drakTermServ_.c:1002
msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-"Kas säilitada muudatused?\n"
-"Olemasolevad seadistused:\n"
-"\n"
-"%s"
+"Enamik väärtusi on võetud Teie töötavast\n"
+"süsteemist. Võite neid vajadusel muuta."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "ReiserFS ei ole kasutatav alla 32MB partitsioonidel"
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
+msgstr "Dünaamiline IP-aadresside vahemik:"
-#: ../../services.pm:1
-#, 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)."
-msgstr ""
-"Protokoll rwho laseb üle võrgu saada informatsiooni\n"
-"süsteemi kasutajate kohta. Ettevaatust!"
+#: ../../standalone/drakTermServ_.c:1018
+msgid "Write Config"
+msgstr "Salvesta seadistus"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "Domeeninimi"
+#: ../../standalone/drakTermServ_.c:1120
+msgid "Please insert floppy disk:"
+msgstr "Sisestage palun flopi:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Printerite jagamine"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
+msgstr "Ei suuda flopit leida!"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
-msgstr "Libsafe lubamine/keelamine, kui see süsteemist leitakse"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
+msgstr "Flopi võib nüüd välja võtta"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Available printers"
-msgstr "Saadaolevad printerid"
+#: ../../standalone/drakTermServ_.c:1129
+msgid "No floppy drive available!"
+msgstr "Flopiseade ei ole kättesaadav!"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakTermServ_.c:1138
#, c-format
-msgid "NO"
-msgstr "EI"
+msgid "Etherboot ISO image is %s"
+msgstr "Etherboot ISO-tõmmis on %s"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "Tühi"
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Midagi läks valesti! - Kas mkisofs on ikka paigaldatud?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
-msgstr "teksti laius"
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "Esmalt tuleb luua /etc/dhcpd.conf!"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Kuhu soovite haakida seadme %s?"
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+msgstr "/etc/hosts.allow ja /etc/hosts.deny on juba seadistatud - ei muudeta"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Rendiaeg vaikimisi (sekundites)"
+#: ../../standalone/drakautoinst_.c:40
+msgid "Error!"
+msgstr "Viga!"
-#: ../../network/netconnect.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, c-format
+msgid "I can't find needed image file `%s'."
+msgstr "Ei suuda leida tõmmisefaili '%s'."
+
+#: ../../standalone/drakautoinst_.c:43
+msgid "Auto Install Configurator"
+msgstr "Automaatpaigalduse seadistaja"
+
+#: ../../standalone/drakautoinst_.c:44
msgid ""
-"We are now going to configure the %s connection.\n"
+"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"
-"Press \"%s\" to continue."
+"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 ""
-"Nüüd on aeg seadistada %s ühendus.\n"
+"Püüate hakata seadistama automaatpaigalduse flopit. See on natuke ohtlik "
+"tegevus, mida tuleb teha väga ettevaatlikult.\n"
"\n"
+"Seda võimalust kasutades saate korrata arvutile tehtud paigaldust ning mõne "
+"sammu puhul ka ise kaasa rääkida, et üksikuid väärtusi muuta.\n"
+"\n"
+"Täieliku turvalisuse huvides ei tuleks partitsioneerimist ja vormindamist "
+"kunagi lubada automaatselt sooritada, seda hoolimata sellest, millise "
+"võimaluse kasuks olete paigalduse algul otsustanud.\n"
"\n"
-"Vajutage jätkamiseks \"%s\"."
+"Kas soovite nüüd jätkata?"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Liides \"%s\""
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
+msgstr "käsitsi"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Baasdokumentatsiooniga (soovitatav!)"
+#: ../../standalone/drakautoinst_.c:62
+msgid "replay"
+msgstr "korda"
-#: ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr "1 nupuga"
+#: ../../standalone/drakautoinst_.c:66
+msgid "Automatic Steps Configuration"
+msgstr "Automaatsete sammude seadistamine"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:67
msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
msgstr ""
-"\n"
-"%d tundmatut printerit on Teie süsteemi otse ühendatud"
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Test"
-msgstr "Test"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea"
-msgstr "Korea"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Teie valik? (vaikimisi '%s'%s)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer"
-msgstr "Toorprinter"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "CPU ametlik tootja"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
-msgstr "Kasutu ilma terminaliserverita"
+"Valige palun iga sammu puhul, kas selle peaks läbi viima automaatselt, nagu "
+"see sooritati paigalduse ajal, või soovite seal ise kaasa rääkida"
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Vendor"
-msgstr "Tootja"
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+msgid "Creating auto install floppy"
+msgstr "Automaatpaigaldusflopi loomine"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s"
-msgstr "Liides %s"
+#: ../../standalone/drakautoinst_.c:139
+msgid ""
+"\n"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
+msgstr ""
+"\n"
+"Tere tulemast!\n"
+"\n"
+"Automaatpaigalduse parameetrid on näha vasakul"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "Hiire seadmine"
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
+msgstr "Õnnitleme!"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
-msgstr "Valige haakepunktid"
+#: ../../standalone/drakautoinst_.c:235
+msgid ""
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
+msgstr ""
+"Flopi on edukalt loodud.\n"
+"Nüüd võite vajadusel paigaldust korrata."
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr "Olgu"
+#: ../../standalone/drakautoinst_.c:273
+msgid "Auto Install"
+msgstr "Automaatpaigaldus"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslaavia (ladina)"
+#: ../../standalone/drakautoinst_.c:343
+msgid "Add an item"
+msgstr "Lisa element"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "Paigaldan"
+#: ../../standalone/drakautoinst_.c:350
+msgid "Remove the last item"
+msgstr "Eemalda viimane element"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan ratta emuleerimisega"
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
+msgstr "Cron ei ole veel saadaval mitteadministraatorile"
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
-msgstr "Userdrake käivitamine"
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
+msgstr "HOIATUS"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Kas see on paigaldus või uuendamine?"
+#: ../../standalone/drakbackup_.c:691
+msgid "FATAL"
+msgstr "SAATUSLIK"
-#: ../../help.pm:1
-#, c-format
-msgid "ISDN card"
-msgstr "ISDN kaart"
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
+msgstr "INFO"
-#: ../advertising/02-community.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:704
msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
+"\n"
+" DrakBackup Report \n"
+"\n"
msgstr ""
-"Oma teadmiste jagamiseks ning Linuxi vahendite loomiseks võite ühineda "
-"diskussioonirühmadega, mida leiab meie \"kogukonna\" veebilehekülgedel"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-kõvaketas.\n"
+"\n"
+" DrakBackupi raport \n"
+"\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:705
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"
+" DrakBackup Daemon Report\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 ""
-"Seda sammu on vaja ainult siis, kui masinas leiti vana\n"
-"GNU/Linuxi partitsioon.\n"
-"\n"
-"DrakX soovib nüüd teada, kas tahate paigaldada uue süsteemi või uuendada\n"
-"olemasolevat Mandrake Linuxi süsteemi:\n"
"\n"
-" * \"%s\": üldiselt pühib see vana süsteemi täielikult minema. Kui\n"
-"soovite muuta praeguseid partitsioone või failisüsteemi, siis võiks seda "
-"võimalust\n"
-"kasutada. Sõltuvalt kettajagamise viisist on võimalik ka mõningaid andmeid\n"
-"ülekirjutamise eest päästa.\n"
+" DrakBackup deemoni raport\n"
"\n"
-" * \"%s\": see paigaldusviis võimaldab uuendada praegu olemasolevasse\n"
-"Mandrake Linuxi süsteemi paigaldatud pakette. Kettajagamisskeemi ega "
-"kasutajate\n"
-"andmeid ei muudeta. Enamik seadistussamme on kasutatavad sarnaselt "
-"tavapärasele\n"
-"paigaldusele.\n"
"\n"
-"Võimalus \"Uuendus\" peaks toimima edukalt Mandrake Linuxi süsteemides\n"
-"alates versioonist 8.1. Uuenduse proovimist varasemate versioonide peal\n"
-"me siiski ei soovita."
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/drakbackup_.c:709
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"
+" DrakBackup Report Details\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"
msgstr ""
"\n"
-" Autoriõigus (C) 2001-2002: MandrakeSoft \n"
-" DUPONT Sebastien (esialgne versioon)\n"
-" CHAUMETTE Damien <dchaumette@mandrakesoft.com>\n"
-"\n"
-" Käesolev rakendus on vaba tarkvara. Te võite seda edasi levitada\n"
-" ja/või muuta vastavalt GNU Üldise Avaliku Litsentsi tingimustele, nagu\n"
-" need on avaldanud Vaba Tarkvara Fond; kas Litsentsi versioon number 2\n"
-" või (vastavalt Teie valikule) ükskõik milline hilisem versioon.\n"
-"\n"
-" Seda rakendust levitatakse lootuses, et see on kasulik, kuid\n"
-" ILMA IGASUGUSE GARANTIITA; isegi KESKMISE/TAVALISE\n"
-" KVALITEEDI GARANTIITA või SOBIVUSELE TEATUD KINDLAKS\n"
-" EESMÄRGIKS. Üksikasjade suhtes vaadake GNU Üldist Avalikku Litsentsi.\n"
+" DrakBackupi raporti üksikasjad\n"
"\n"
-" Te peaks olema saanud GNU Üldise Avaliku Litsentsi koopia koos selle\n"
-" rakendusega; kui ei, siis võtke ühendust Vaba Tarkvara Fondiga aadressil:\n"
-" Free Software Foundation, 59 Temple Place - Suite 330, Boston,\n"
-" MA 02111-1307, USA.\n"
"\n"
-" Täname:\n"
-" - pfm2afm: \n"
-"\t autor: Ken Borgendale:\n"
-"\t teisendab Windowsi .pfm-faili .afm-failiks (Adobe fondimeetrika)\n"
-" - type1inst:\n"
-"\t autor: James Macnicol: \n"
-"\t type1inst tekitab failid fonts.dir, fonts.scale ja Fontmap.\n"
-" - ttf2pt1: \n"
-"\t autorid: Andrew Weeks, Frank Siegert, Thomas Henlich, Sergei Babkin \n"
-" teisendab ttf-fondifailid afm- ja pfb-fontideks\n"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "CUPS printserver"
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+msgid "Total progess"
+msgstr "Edenemine kokku"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:785
#, c-format
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+"%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 ""
-"Printeri \"%s\" eemaldamine StarOffice/OpenOffice.org/GIMP-ilt ebaõnnestus."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
-msgstr "kui mitte, siis siia."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DHCP host name"
-msgstr "DHCP masinanimi"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Maksimaalne rendiaeg (sekundites)"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Millisesse jadaporti on Teie hiir ühendatud?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
-msgstr "Kas kõik oli korras?"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
-msgstr "Failisüsteem haagitakse ainult lugemisõigusega."
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "Vähene"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result by mail"
-msgstr "Kontrolli tulemustest teatatakse e-postiga"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
-msgstr "Grenada"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
-msgstr "DHCP vahemiku algus"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "Ebaturvaline"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "SSH server"
-msgstr "SSH server"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektorit"
-
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "Ei"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Kannada"
-msgstr "Kannada"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
-msgstr "ei suutnud fonte leida.\n"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Kas soovite konsoolil kasutada BackSpace-i kui Delete?"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Ekraaniuuendussagedus"
+"%s on olemas, kas kustutada?\n"
+"\n"
+"Hoiatus: Kui te olete selle protsessi juba sooritanud, tuleks\n"
+" Teil ka kirje kustutada serveril autoriseeritud võtmete seast."
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Järgmine samm: '%s'\n"
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
+msgstr "Võtmete genereerimine võtab mõne hetke aega."
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup_.c:801
#, c-format
-msgid "Niger"
-msgstr "Niger"
+msgid "ERROR: Cannot spawn %s."
+msgstr "VIGA: %s tekitamine ebaõnnestus."
-#: ../../mouse.pm:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
+msgid "No password prompt on %s at port %s"
+msgstr "Parooli ei pärita masinal %s pordis %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:819
#, c-format
-msgid "Removing %s ..."
-msgstr "%s eemaldamine..."
+msgid "Bad password on %s"
+msgstr "Halb parool %s puhul"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "No printer"
-msgstr "Printer puudub"
+msgid "Permission denied transferring %s to %s"
+msgstr "%s ülekandmiseks %s -le puudub luba"
-#: ../../standalone/logdrake:1
+#: ../../standalone/drakbackup_.c:821
#, c-format
-msgid "alert configuration"
-msgstr "hoiatuse seadistused"
+msgid "Can't find %s on %s"
+msgstr "%s leidmine %s -l ebaõnnestus"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid "NetWare Printer Options"
-msgstr "NetWare printeri seadistused"
+msgid "%s not responding"
+msgstr "%s ei vasta"
-#: ../../standalone/draksplash:1
+#: ../../standalone/drakbackup_.c:828
#, c-format
-msgid "%s BootSplash (%s) preview"
-msgstr "%s käivituslogo (%s) eelvaatlus"
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+"Ülekanne oli edukas\n"
+"Võite kontrollida, kas suudate serverile sisse logida käsuga:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"ilma et Teilt küsitaks parooli."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "February"
-msgstr "Veebruar"
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
+msgstr "WebDAVi kaugsait on juba sünkroonis!"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
-msgstr "Üldine"
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
+msgstr "WebDAVi ülekanne ebaõnnestus!"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
-msgstr "/etc/issue* on olemas"
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
+msgstr "CDR/DVDR ei ole seadmes!"
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "Tavakasutaja"
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
+msgstr "See ei paista küll olevat kirjutatav andmekandja!"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Võrguseadistused (%d liidest)"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
+msgstr "Seda andmekandjat ei saa puhastada!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "April"
-msgstr "Aprill"
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
+msgstr "Andmekandja puhastamine võtab mõni hetk aega."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Deactivate now"
-msgstr "Peata nüüd"
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
+msgstr "CD-le ligipääsul tekkis loaprobleem."
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
+#: ../../standalone/drakbackup_.c:1060
#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Puudub kohustuslik pakett %s"
+msgid "No tape in %s!"
+msgstr "Seadmes %s puudub lint!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Filipiinid"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
+msgstr "Süsteemsete failide varundamine..."
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "Olgu"
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+msgid "Hard Disk Backup files..."
+msgstr "Kõvaketta varundamine..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "drakTermServ Overview"
-msgstr "drakTermServi ülevaade"
+#: ../../standalone/drakbackup_.c:1236
+msgid "Backup User files..."
+msgstr "Kasutajafailide varundamine..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
-msgstr "Trükijärjekorra nimi"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
+msgstr "Kõvaketta varundamise edenemine..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Kas soovite kasutada aboot-i?"
+#: ../../standalone/drakbackup_.c:1290
+msgid "Backup Other files..."
+msgstr "Muude failide varundamine..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belarusian"
-msgstr "Valgevene"
+#: ../../standalone/drakbackup_.c:1296
+msgid "No changes to backup!"
+msgstr "Varukoopiaga võrreldes pole mingeid muutusi!"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, c-format
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-"PDQ toetab ainult kohalikke printereid, võrguprintereid (LPD) ning Socket/"
-"TCP printereid.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move files to the new partition"
-msgstr "Liiguta failid uuele partitsioonile"
+"\n"
+"Drakbackupi tegevus %s vahendusel:\n"
+"\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:1319
#, 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."
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-"Lisage siia CUPS serverid, mille printereid soovite kasutada. Seda tuleb "
-"teha ainult siis, kui serverid ei saada oma printeri(te) infot üldleviga "
-"kohtvõrku."
+"FTP kaudu saadetud faililoend: %s\n"
+" "
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1322
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
+msgstr ""
"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+" FTP ühenduse probleem: FTP kaudu pole võimalik saata Teie varukoopiafaile.\n"
+
+#: ../../standalone/drakbackup_.c:1340
+msgid ""
"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
+"Drakbackup activities via CD:\n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
msgstr ""
"\n"
-"Printeri seadistamise nõustaja\n"
-"\n"
-"Nõustaja aitab Teil paigaldada printeri(d), mis on ühendatud selle "
-"arvutiga.\n"
-"\n"
-"Kui teil on printer(eid), mis on ühendatud selle masinaga, ühendage palun "
-"see/need arvutiga ja lülitage sisse, et seda/neid saaks automaatselt "
-"tuvastada.\n"
+"Drakbackupi tegevus CD vahendusel:\n"
"\n"
-"Kui olete valmis, vajutage \"Järgmine\", või \"Katkesta\", kui Te ei soovi "
-"praegu printeri(te) seadistamisega tegelda."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
-msgstr "Pitcairn"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Taastamine kataloogist"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "partitsiooni %s haakimine kataloogis %s ebaõnnestus"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
-msgstr "LiLo ekraan"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LiLo graafikaresiimis"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "Oletan"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
-msgstr "See pakett on juba paigaldatud"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", printer \"%s\" SMB/Windows serveril \"%s\""
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "Ikkagi edasi?"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Otsin saadaolevaid pakette ja loon uuesti rpm andmebaasi..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1345
msgid ""
"\n"
-" DrakBackup Report \n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
"\n"
-" DrakBackupi raport \n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "See ei paista küll olevat kirjutatav andmekandja!"
+"Drakbackupi tegevus lindi vahendusel:\n"
+"\n"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "Määrata parameetrid"
+#: ../../standalone/drakbackup_.c:1354
+msgid " Error during mail sending. \n"
+msgstr " Viga meili saatmisel. \n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
+msgstr "Kataloogi ei õnnestunud luua!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "New user list:\n"
-msgstr "Uued kasutajate failid:\n"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+msgid "File Selection"
+msgstr "Failivalik"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Andma peab kas serveri nime või serveri IP!"
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
+msgstr "Valige failid või kataloogid ja klõpsake 'Lisa'"
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1573
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\"."
+"Please check all options that you need.\n"
msgstr ""
-"Isetehtud alglaadimisketas annab Teile võimaluse laadida Linux flopilt\n"
-"sõltumata tavalisest alglaadijast. See võib abiks olla, kui Te ei soovi\n"
-"SILO-t kõvakettale kirjutada või mõni muu operatsioonisüsteem SILO\n"
-"ära kustutab või ei õnnestu SILO-t Teie riistvara peal kasutada.\n"
-"Alglaadimisflopi on kasutatav ka hädaabikettana, kui kõvakettal oleva\n"
-"failisüsteemiga peaks mingi õnnetus juhtuma.\n"
-"Hoidke end ja Teid hoiab ka Jumal!\n"
"\n"
-"Alglaadimisketta loomiseks asetage flopi esimesse seadmesse ning vajutage\n"
-"\"Olgu\"."
+"Kontrollige palun kõiki vajalikke valikuid.\n"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Te ei saa haakepunkti %s jaoks kasutada krüptitud failisüsteemi"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password history length to prevent password reuse."
-msgstr "Salasõna puhvri suuruse määramine vältimaks selle taaskasutamist"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
-msgstr "Norfolki saar"
+#: ../../standalone/drakbackup_.c:1574
+msgid ""
+"These options can backup and restore all files in your /etc directory.\n"
+msgstr ""
+"Need valikud võivad varundada ja taastada kõik failid kataloogis /etc.\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Theme installation failed!"
-msgstr "Teema paigaldamine ebaõnnestus!"
+#: ../../standalone/drakbackup_.c:1575
+msgid "Backup your System files. (/etc directory)"
+msgstr "Varunda süsteemsed failid (kataloog /etc)"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
-msgstr "Pole midagi teha"
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
+msgstr "Muutvarunduse kasutamine (vanu varukoopiaid ei asendata)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "Kasuta loopback-ina"
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
+msgstr "Kriitiliste failide kõrvalejätmine (passwd, group, fstab)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr "Mandrake veateate abivahend"
+#: ../../standalone/drakbackup_.c:1578
+msgid ""
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
+msgstr "Selle valikuga võite taastada kataloogi /etc suvalise versiooni."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
-msgstr "Rakenda filter"
+#: ../../standalone/drakbackup_.c:1595
+msgid "Please check all users that you want to include in your backup."
+msgstr "Märkige palun kõik kasutajad, keda soovite varukoopiasse kaasata."
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pppoe"
-msgstr "pppoe"
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
+msgstr "Veebilehitseja mälupuhvri kõrvalejätmine"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving files to the new partition"
-msgstr "Failide liigutamine uuele partitsioonile"
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
+msgstr "Muutvarunduse kasutamine (vanu varukoopiaid ei asendata)"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s koos EKSPERIMENTAALSE 3D kiirendi toega"
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+msgid "Remove Selected"
+msgstr "Eemalda valitud"
-#: ../../help.pm:1 ../../interactive.pm:1
-#, c-format
-msgid "Advanced"
-msgstr "Edasijõudnud"
+#: ../../standalone/drakbackup_.c:1679
+msgid "Windows (FAT32)"
+msgstr "Windows (FAT32)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer"
-msgstr "Kanna üle"
+#: ../../standalone/drakbackup_.c:1714
+msgid "Users"
+msgstr "Kasutajad"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Rootsi)"
+#: ../../standalone/drakbackup_.c:1740
+msgid "Use network connection to backup"
+msgstr "Võrguühenduse kasutamine varundamiseks"
-#: ../../lang.pm:1
-#, c-format
-msgid "Afghanistan"
-msgstr "Afganistan"
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
+msgstr "Võrgumeetod:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "More Options"
-msgstr "Rohkem valikuid"
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
+msgstr "Expecti kasutamine SSH jaoks"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
+#: ../../standalone/drakbackup_.c:1747
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-"Tar-failid kustutatakse kõvakettalt pärast varundamist muule andmekandjale"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "Burundi"
+"Loo/Kanna üle\n"
+"varundusvõtmed SSH jaoks"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1748
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."
+" Transfer \n"
+"Now"
msgstr ""
-"Cron on UNIXi süsteemide standardvahend kasutaja programmide perioodiliseks\n"
-"käivitamiseks. Vixie cron sisaldab lisaks veel turvalisust ja kasutus-\n"
-"mugavust tõstvaid omadusi. Soovitatav süsteemile, mis töötab 24h."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr "Lisa klient -->"
+" Kanna üle \n"
+"Nüüd"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "Lugege hoolega!"
+#: ../../standalone/drakbackup_.c:1749
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
+msgstr ""
+"Muud (mitte drakbackupi)\n"
+"võtmed on juba paigas"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
-msgstr "RW"
+#: ../../standalone/drakbackup_.c:1753
+msgid "Please enter the host name or IP."
+msgstr "Sisestage palun masinanimi või IP."
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1758
msgid ""
-"Please,\n"
-"type in your tv norm and country"
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-"Palun märkige ära\n"
-"oma telesüsteem ja riik"
+"Sisestage palun kataloog (või moodul), kuhu\n"
+" sellel masinal varukoopia salvestada."
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "Port"
+#: ../../standalone/drakbackup_.c:1763
+msgid "Please enter your login"
+msgstr "Sisestage palun kasutajatunnus"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
-msgstr "Ei (ainult eksperdile)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-msgstr "Kernelit pole valitud!"
+#: ../../standalone/drakbackup_.c:1768
+msgid "Please enter your password"
+msgstr "Sisestage palun parool"
-#. -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
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Enter laeb Teie valiku, 'e' laseb muuta"
+#: ../../standalone/drakbackup_.c:1774
+msgid "Remember this password"
+msgstr "Jäta parool meelde"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
+msgstr "Vaja läheb masinanime, kasutajatunnust ja parooli!"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The encryption keys do not match"
-msgstr "Krüptovõtmed ei klapi"
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
+msgstr "Varundamine CD/DVDROM-ile"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1882
msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-"Mitmeseansilise CD korral puhastatakse CD-RW ainult esimesel seansil. "
-"Märkimatajätmisel puhastatakse CD-RW enne iga varundamist."
+"Valige palun CD/DVD-seade.\n"
+"(Vajutage Enter sätete levitamiseks teistele väljadele.\n"
+"See väli ei ole kohustuslik, ainult vahend vormi täitmiseks.)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "USB printer"
-msgstr "USB printer"
+#: ../../standalone/drakbackup_.c:1887
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Valige palun CD/DVD andmekandja suurus (Mb)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Parempoolne \"Windows\"-klahv"
+#: ../../standalone/drakbackup_.c:1893
+msgid "Please check for multisession CD"
+msgstr "Märkige palun mitmeseansilise CD korral"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr "Kui on 'jah', kontrollitakse tühja salasõna /etc/shadow-s."
+#: ../../standalone/drakbackup_.c:1899
+msgid "Please check if you are using CDRW media"
+msgstr "Märkige palun, kui kasutate CDRW andmekandjat"
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/drakbackup_.c:1905
+msgid "Please check if you want to erase your RW media (1st Session)"
msgstr ""
-"Enne jätkamist lugege hoolikalt läbi litsentsileping. See kehtib kogu "
-"Mandrake\n"
-"Linuxi distributsiooni kohta. Kui Te kõigi selle tingimustega nõus olete,\n"
-"märkige ära kast \"%s\". Kui Teile aga miski ei meeldi, siis lülitage\n"
-"lihtsalt arvuti välja."
+"Märkige palun, kui soovite puhastada oma RW andmekandja (esimene seanss)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"See on loend praegusel printeril kasutamiskõlblike trükkimisvalikutega:\n"
-"\n"
+#: ../../standalone/drakbackup_.c:1906
+msgid " Erase Now "
+msgstr " Puhasta nüüd! "
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "Kuvatihedused"
+#: ../../standalone/drakbackup_.c:1912
+msgid "Please check if you are using a DVDR device"
+msgstr "Märkige palun, kui kasutate DVDR seadet"
-#: ../../network/drakfirewall.pm:1
-#, 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."
-msgstr ""
-"drakfirewalli seadistaja\n"
-"\n"
-"Selle vahendiga saate luua lihtsa kaitse Interneti ohtude vastu.\n"
-"Kui vajate võimsat tulemüüri, vaadake palun\n"
-"spetsiaalset MandrakeSecurity Firewall distributsiooni."
+#: ../../standalone/drakbackup_.c:1918
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Märkige palun, kui kasutate DVDRAM seadet"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1931
msgid ""
-"Please enter your username, password and domain name to access this host."
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-"Palun sisestage sellele masinale ligipääsuks oma kasutajanimi, parool ja "
-"domeeni nimi."
+"Sisestage palun oma CD-kirjutaja seadmenimi\n"
+" nt: 0,1,0"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Remove selected host"
-msgstr "Eemalda valitud masin"
+#: ../../standalone/drakbackup_.c:1964
+msgid "No CD device defined!"
+msgstr "CD-seade on määramata!"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network configuration"
-msgstr "Võrguseadistused"
+#: ../../standalone/drakbackup_.c:2012
+msgid "Use tape to backup"
+msgstr "Varundamine lindile"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/_JAZ ketaste automaattuvastus"
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
+msgstr "Sisestaga palun varundamiseks kasutatava seadme nimi"
-#: ../../any.pm:1
-#, c-format
-msgid "No sharing"
-msgstr "Jagamiseta"
+#: ../../standalone/drakbackup_.c:2021
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Märkige palun, kui soovite kasutada tagasikerimisvõimaluseta seadet."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Valitud reegel üks tase allapoole"
+#: ../../standalone/drakbackup_.c:2027
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Märkige palun, kui soovite lindi enne varundamist puhastada."
-#: ../../common.pm:1
-#, c-format
-msgid "TB"
-msgstr "TB"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "FATAL"
-msgstr "SAATUSLIK"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh the list"
-msgstr "Värskendab nimekirja"
+#: ../../standalone/drakbackup_.c:2033
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Märkige palun, kui soovite pärast varundamist lindi väljastamist."
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
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."
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
msgstr ""
-" - Kliendi failid %s:\n"
-" \t\tClusterNFS abil võivad igal kettata tööjaamal olla oma "
-"unikaalsed seadetefailid\n"
-" \t\tserveri juurfailisüsteemis. Kliendi kohalikku riistvara "
-"seadistamist lubades aitab drakTermServ neid luua."
+"Sisestage palun Drakbackupi\n"
+" suurim lubatud suurus"
-#: ../../standalone/drakpxe:1
-#, 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"
-msgstr ""
-"DHCP server võimaldab teistel arvutitel sooritada alglaadimise PXE "
-"vahendusel antud aadressivahemikus.\n"
-"\n"
-"Võrguaadress on %s, võrgumask %s.\n"
-"\n"
+#: ../../standalone/drakbackup_.c:2103
+msgid "Please enter the directory to save to:"
+msgstr "Sisestage palun kataloog, kuhu salvestada:"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete"
-msgstr "Kustuta"
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+msgid "Use quota for backup files."
+msgstr "Kvootide kasutamine varukoopiafailidel."
-#: ../../Xconfig/various.pm:1
-#, 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?"
-msgstr ""
-"Teie arvutis on võimalik käivitada X juba alglaadimisel.\n"
-"Kas soovite nii teha?"
+#: ../../standalone/drakbackup_.c:2180
+msgid "Network"
+msgstr "Võrk"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
-msgstr "Ketta loomine"
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
+msgstr "CDROM / DVDROM"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnect %s"
-msgstr "%s ühenduse katkestamine"
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
+msgstr "Kõvaketas / NFS"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
-msgstr "Olek:"
+#: ../../standalone/drakbackup_.c:2195
+msgid "Tape"
+msgstr "Lint"
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP vahendaja"
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
+msgstr "iga tund"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "SSH Server"
-msgstr "SSH server"
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
+msgstr "iga päev"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-võrk rsync vahendusel.\n"
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
+msgstr "iga nädal"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
-msgstr "Euroopa protokoll"
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
+msgstr "iga kuu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", printer \"%s\" serveril \"%s\""
+#: ../../standalone/drakbackup_.c:2229
+msgid "Use daemon"
+msgstr "Deemoni kasutamine"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
+#: ../../standalone/drakbackup_.c:2234
+msgid ""
+"Please choose the time \n"
+"interval between each backup"
msgstr ""
-"Arvestage, et praegu kasutavad kõvaketast ka kõik 'võrgu'-andmekandjad."
+"Valige palun varundamiste\n"
+"vaheline ajaline intervall"
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
-#, c-format
-msgid "Error"
-msgstr "Viga"
-
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
-msgstr "\"su\" lubamine"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Australia"
-msgstr "Austraalia"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "palun oodake, käib ttmkdir..."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Seadista ainult kaart \"%s\"%s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Level"
-msgstr "Tase"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Change the printing system"
-msgstr "Trükkimissüsteemi muutmine"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2240
msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
+"Please choose the\n"
+"media for backup."
msgstr ""
-"Süsteemis on võimalik kasutada mitut monitori.\n"
-"Mida Te soovite teha?"
+"Valige palun varundamiseks\n"
+"kasutatav andmekandja."
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr "haakimine ebaõnnestus: "
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "Teenuste seadistused"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Üldlevi aadress:"
-
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2247
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."
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-"GNU/Linuxi kernel peab alglaadimise ajal ajaarvesti lähtestamiseks sooritama "
-"kalkulatsioonisilmuse. Selle tulemus salvestatakse bogomipsides, mis "
-"kujutab endast omamoodi CPU \"jõudlustesti\"."
+"Kontrollige palun, et cron-deemon oleks teenustega kaasatud.\n"
+"\n"
+"Pange tähele, et praegu kasutavad kõvaketast ka kõik 'võrgu'-andmekandjad."
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "Laadefail"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
+msgstr "Saada pärast iga varundamist meiliraport aadressile:"
-#: ../../services.pm:1
-#, c-format
-msgid "Remote Administration"
-msgstr "Kaughaldus"
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr "Kustuta tar-failid kõvakettalt pärast varundamist muule andmekandjale."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-msgstr ""
-"Printeri \"%s\" lisamine StarOffice/OpenOffice.org/GIMP-ile ebaõnnestus."
+#: ../../standalone/drakbackup_.c:2324
+msgid "What"
+msgstr "Mis"
-#: ../../modules.pm:1
-#, c-format
-msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
-msgstr "2.2 kernelitel pole enam PCMCIA tuge. Kasutage palun 2.4 kernelit."
+#: ../../standalone/drakbackup_.c:2329
+msgid "Where"
+msgstr "Kus"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Selected All"
-msgstr "Kõigi valimine"
+#: ../../standalone/drakbackup_.c:2334
+msgid "When"
+msgstr "Millal"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Tavaline UNIXi trükkimissüsteem"
+#: ../../standalone/drakbackup_.c:2339
+msgid "More Options"
+msgstr "Rohkem valikuid"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Webmin Service"
-msgstr "Webmin teenus"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+msgid "Drakbackup Configuration"
+msgstr "Drakbackupi sätted"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
-msgstr "seade"
+#: ../../standalone/drakbackup_.c:2376
+msgid "Please choose where you want to backup"
+msgstr "Valige palun, kuhu soovite varukoopia salvestada"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Kataloog, kuhu salvestada:"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
+msgstr "kõvakettale"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
-msgstr "Kreeka"
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
+msgstr "üle võrgu"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "Kõik"
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
+msgstr "CDROM-ile"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Millist trükkimissüsteemi (spuulerit) soovite kasutada?"
+#: ../../standalone/drakbackup_.c:2406
+msgid "on Tape Device"
+msgstr "lindiseadmele"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
-msgstr "Juuli"
+#: ../../standalone/drakbackup_.c:2449
+msgid "Please choose what you want to backup"
+msgstr "Valige palun, mida soovite varundada"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Prints into %s"
-msgstr "Trükkimine masinal %s"
+#: ../../standalone/drakbackup_.c:2450
+msgid "Backup system"
+msgstr "süsteemseid faile"
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "Tekkis mingi viga"
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
+msgstr "kasutajate faile"
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
+msgstr "Kasutaja valik käsitsi"
+
+#: ../../standalone/drakbackup_.c:2537
msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
+"\n"
+"Backup Sources: \n"
msgstr ""
-"Selle paketi peaks uuendama.\n"
-"Olete kindel, et Te ei vali seda?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "Tamili (kirjutusmasin)"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
-msgstr "Salasõna kasutamine kasutajate autentimiseks"
+"\n"
+"Varundusallikad: \n"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2538
msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
-msgstr "Kasutajate nimekirja lubamine/keelamine kuvahalduritel (kdm ja gdm)"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
-msgstr "käsitsi"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
-msgstr "Otsitava faili nimi:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Printeri tootja, mudel, draiver"
+"\n"
+"- System Files:\n"
+msgstr ""
+"\n"
+"- süsteemsed failid:\n"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2540
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"\n"
+"- User Files:\n"
msgstr ""
-"Andmekandja puudub seadmes %s või on kirjutuskaitsega.\n"
-"Sisestage palun andmekandja."
+"\n"
+"- kasutaja failid.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2542
msgid ""
-"Directory %s already contains data\n"
-"(%s)"
+"\n"
+"- Other Files:\n"
msgstr ""
-"Kataloogis %s on juba andmed\n"
-"(%s)"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "NetWare printserver"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Anna mälu suurus megabaitides"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr "Reede"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Internetiühendus on katkestatud."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "Pärisnimi"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "done"
-msgstr "tehtud"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Palun tühistage valik või eemaldage järgmisel korral"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Higher"
-msgstr "Veel kõrgem"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Valige partitsioonid, mida soovite vormindada"
+"\n"
+"- muud failid:\n"
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakbackup_.c:2544
#, 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"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-"Teie masinal ei leitud TV-kaarti. Kontrollige palun, et Linuxi toega video/"
-"TV-kaart on korrektselt ühendatud.\n"
-"\n"
"\n"
-"Meie riistvara andmebaasi saate külastada aadressil:\n"
+"- salvesta kõvakettale asukohta: %s\n"
+
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't find %s on %s"
-msgstr "%s leidmine %s -l ebaõnnestus"
+"- kustuta pärast varundamist kõvakettalt tar-failid.\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "Jaapani 106 klahviga"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
+#: ../../standalone/drakbackup_.c:2553
+msgid ""
+"\n"
+"- Burn to CD"
msgstr ""
-"Pakettide paigaldamine, mis on vajalikud Teie skänneri(te) jagamiseks, ei "
-"õnnestunud."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Selleks kulub päris mitu minutit."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "June"
-msgstr "Juuni"
+"\n"
+"- kirjuta CD-le"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Skännerite kasutamine kaugmasinatel"
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
+msgstr "RW"
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakbackup_.c:2555
#, c-format
-msgid "Delete selected rule"
-msgstr "Kustuta valitud reegel"
+msgid " on device: %s"
+msgstr " seadmel: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Ligipääs printeritele CUPS printserveril"
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
+msgstr " (mitmeseansiline)"
-#: ../../any.pm:1
+#: ../../standalone/drakbackup_.c:2557
#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Pange flopi seadmesse %s"
+msgid ""
+"\n"
+"- Save to Tape on device: %s"
+msgstr ""
+"\n"
+"- salvesta lindile seadmel: %s"
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "Maldives"
-msgstr "Maldiivid"
+msgid "\t\tErase=%s"
+msgstr "\t\tPuhasta=%s"
-#: ../../any.pm:1
+#: ../../standalone/drakbackup_.c:2561
#, c-format
-msgid "compact"
-msgstr "kompaktne"
+msgid ""
+"\n"
+"- Save via %s on host: %s\n"
+msgstr ""
+"\n"
+"- salvesta %s vahendusel masinale: %s\n"
-#: ../../common.pm:1
+#: ../../standalone/drakbackup_.c:2562
#, c-format
-msgid "1 minute"
-msgstr "1 minut"
+msgid ""
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
+msgstr ""
+"\t\t kasutajatunnus: %s\n"
+"\t\t asukohas: %s \n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: fat"
-msgstr "tüüp: paks (fat)"
+#: ../../standalone/drakbackup_.c:2563
+msgid ""
+"\n"
+"- Options:\n"
+msgstr ""
+"\n"
+"- valikud:\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "on channel %d id %d\n"
-msgstr "kanalil %d id %d\n"
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
+msgstr "\tsüsteemsete failide kõrvalejätmine\n"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
-msgstr ", mitme funktsiooniga seade"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
+msgstr "\tvarukoopiad tar- ja bzip2-vormingus\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr "Laos"
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
+msgstr "\tvarukoopiad tar- ja gzip-vormingus\n"
-#: ../advertising/04-configuration.pl:1
+#: ../../standalone/drakbackup_.c:2572
#, 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!"
+"\n"
+"- Daemon (%s) include:\n"
msgstr ""
-"Mandrake Linux 9.2 pakub Teile Mandrake juhtimiskeskust - võimsat vahendit "
-"oma arvuti kohandamiseks, et sellest viimane välja võtta. Seadistada ja "
-"meelepäraseks muuta saab turvataset, välisseadmeid (monitor, hiir, "
-"klaviatuur...), Internetiühendust ja veel palju-palju muud!"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
-msgstr "Võrgukaardi mitte-eelisoleku kontrolli lubamine/keelamine"
+"\n"
+"- deemon (%s) sisaldab:\n"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr "Sobivat FAT-partitsiooni ei leitud (ei ole piisavalt ruumi)"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
+msgstr "\t-kõvaketas.\n"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr "Üles"
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
+msgstr "\t-CDROM.\n"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
-msgstr "Tulemüür"
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
+msgstr "\t-lint \n"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr "Piirkond:"
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
+msgstr "\t-võrk FTP vahendusel.\n"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr "(E)IDE/ATA kontrollerid"
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
+msgstr "\t-võrk SSH vahendusel.\n"
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
-msgstr "Kogu failisüsteemi I/O sooritatakse sünkroonselt."
+#: ../../standalone/drakbackup_.c:2578
+msgid "\t-Network by rsync.\n"
+msgstr "\t-võrk rsync vahendusel.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "Printserver"
+#: ../../standalone/drakbackup_.c:2579
+msgid "\t-Network by webdav.\n"
+msgstr "\t-võrk webdavi vahendusel.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Custom configuration"
-msgstr "Kohandatud seadistused"
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
+msgstr "Seadistus puudub, palun tehke klõps nupul Nõustaja või Muud.\n"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2587
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"
+"List of data to restore:\n"
"\n"
msgstr ""
-"Andke palun paigalduslaadefaili asukoht.\n"
+"Taastatavate andmete loend:\n"
+"\n"
+
+#: ../../standalone/drakbackup_.c:2754
+msgid ""
+"List of data corrupted:\n"
"\n"
-"Kui Teil säherdust kataloogi ei ole, kopeerige palun CD või DVD sisu.\n"
+msgstr ""
+"Vigaste andmete loend:\n"
"\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint Pierre ja Miquelon"
+#: ../../standalone/drakbackup_.c:2756
+msgid "Please uncheck or remove it on next time."
+msgstr "Palun tühistage valik või eemaldage järgmisel korral."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
-msgstr "September"
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
+msgstr "Varukoopia failid on vigased"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "Käivituslogo teema salvestamine..."
+#: ../../standalone/drakbackup_.c:2787
+msgid " All of your selected data have been "
+msgstr " Kõik valitud andmed on "
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "Portugal"
-msgstr "Portugal"
+msgid " Successfuly Restored on %s "
+msgstr " edukalt taastatud %s -l "
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "On Teil veel kaarte?"
+#: ../../standalone/drakbackup_.c:2906
+msgid " Restore Configuration "
+msgstr " Taastamise seadistamine "
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", printing to %s"
-msgstr ", trükkimine masinal %s"
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
+msgstr "Muude failide taastamiseks vajuta 'Olgu'."
-#: ../../network/network.pm:1
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Omista masinanimi DHCP aadressist"
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
+msgstr "Taastatav kasutajate loend (olulised on ainult kõige uuemad andmed)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to normal mode"
-msgstr "Ekspert > Tavakasutaja"
+#: ../../standalone/drakbackup_.c:3019
+msgid "Backup the system files before:"
+msgstr "Varunda süsteemsed failid, mis on loodud enne:"
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
-msgstr "Tavaline"
+#: ../../standalone/drakbackup_.c:3021
+msgid "please choose the date to restore"
+msgstr "valige palun daatum, kust taastada"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Silindrid %d kuni %d\n"
+#: ../../standalone/drakbackup_.c:3057
+msgid "Use Hard Disk to backup"
+msgstr "Varundamine kõvakettale"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
-msgstr "SIIA TULEB TEIE TEKST"
+#: ../../standalone/drakbackup_.c:3060
+msgid "Please enter the directory to save:"
+msgstr "Sisestage palun kataloog, kuhu salvestada:"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "New profile..."
-msgstr "Uus profiil..."
+#: ../../standalone/drakbackup_.c:3103
+msgid "FTP Connection"
+msgstr "FTP ühendus"
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
-#, c-format
-msgid "NONE"
-msgstr "MITTE KEEGI"
+#: ../../standalone/drakbackup_.c:3110
+msgid "Secure Connection"
+msgstr "Turvaline ühendus"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "Millisele kettale soovite seda ümber paigutada?"
+#: ../../standalone/drakbackup_.c:3134
+msgid "Restore from Hard Disk."
+msgstr "Taastamine kõvakettalt."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Display logo on Console"
-msgstr "Logo näitamine konsoolil"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
+msgstr "Sisestage palun kataloog, kuhu varukoopiad on salvestatud"
-#: ../../any.pm:1
-#, c-format
-msgid "Windows Domain"
-msgstr "Windowsi domeen"
+#: ../../standalone/drakbackup_.c:3204
+msgid "Select another media to restore from"
+msgstr "Valige muu andmekandja, millelt taastada"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (norwegian)"
-msgstr "Saami (Norra)"
+#: ../../standalone/drakbackup_.c:3206
+msgid "Other Media"
+msgstr "Muu andmekandja"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Interface %s (on network %s)"
-msgstr "Liides %s (võrgus %s)"
+#: ../../standalone/drakbackup_.c:3211
+msgid "Restore system"
+msgstr "Süsteemi taastamine"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
-msgstr "INFO"
+#: ../../standalone/drakbackup_.c:3212
+msgid "Restore Users"
+msgstr "Kasutajate taastamine"
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
-msgstr "Wallis ja Futuna"
+#: ../../standalone/drakbackup_.c:3213
+msgid "Restore Other"
+msgstr "Muu taastamine"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Esmalt tuleb luua /etc/dhcpd.conf!"
+#: ../../standalone/drakbackup_.c:3215
+msgid "select path to restore (instead of /)"
+msgstr "valige asukoht, kuhu taastada (kui ei ole /)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
-msgstr "FPU olemasolu"
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
+msgstr "Uus varundamine enne taastamist (ainult muutvarunduse puhul)"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
+msgstr "Kasutaja kataloogide eemaldamine enne taastamist."
+
+#: ../../standalone/drakbackup_.c:3334
msgid ""
-"No additional information\n"
-"about this service, sorry."
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-"Selle teenuse kohta\n"
-"ei oska lisainfot anda."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "Ei leitud ühtegi skännerit, mida süsteem saaks kasutada.\n"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Loo ainus võrgukaart -->"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "Marshalli saared"
+"Taasta valitud\n"
+"kataloogikirje"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "Kas see on sobiv?"
+#: ../../standalone/drakbackup_.c:3344
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr ""
+"Taasta valitud\n"
+"failid"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
+#: ../../standalone/drakbackup_.c:3361
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr ""
+"Muuda\n"
+"taastamise asukohta"
-#: ../../steps.pm:1
+#: ../../standalone/drakbackup_.c:3427
#, c-format
-msgid "Root password"
-msgstr "Administraatori salasõna"
+msgid "Backup files not found at %s."
+msgstr "%s ei sisaldanud varukoopiafaile."
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup_.c:3440
#, c-format
-msgid "Build All Kernels -->"
-msgstr "Loo kõik kernelid -->"
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+"Sisestage CD nimega %s\n"
+" CD-seadmesse haakepunktis /mnt/cdrom"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVDRAM device"
-msgstr "DVDRAM seade"
+#: ../../standalone/drakbackup_.c:3440
+msgid "Restore From CD"
+msgstr "Taasta CD-lt"
-#: ../../security/help.pm:1
+#: ../../standalone/drakbackup_.c:3442
#, c-format
-msgid "if set to yes, report unowned files."
-msgstr "Kui on 'jah', teatatakse omanikuta failidest."
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr "CD nimi pole korrektne. Ketta nimi on %s."
-#: ../../install_interactive.pm:1
+#: ../../standalone/drakbackup_.c:3452
#, c-format
msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
-"Saaleala ei ole määratud.\n"
-"\n"
-"Kas ikkagi jätkata?"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Version: "
-msgstr "Versioon: "
+"Sisestage lint nimega %s\n"
+" lindiseadmesse %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Server IP missing!"
-msgstr "Serveri IP puudub!"
+#: ../../standalone/drakbackup_.c:3452
+msgid "Restore From Tape"
+msgstr "Taasta lindilt"
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup_.c:3454
#, c-format
-msgid "Suriname"
-msgstr "Suriname"
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr "Lindi nimi pole korrektne. Lint kannab nime %s."
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use a floppy"
-msgstr "Flopi kasutamine"
+#: ../../standalone/drakbackup_.c:3474
+msgid "Restore Via Network"
+msgstr "Taasta võrgust"
-#: ../../any.pm:1
+#: ../../standalone/drakbackup_.c:3474
#, c-format
-msgid "Enable ACPI"
-msgstr "ACPI lubamine"
+msgid "Restore Via Network Protocol: %s"
+msgstr "Taasta võrguprotokolli abil: %s"
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
-msgstr "Kirjutamisõiguse andmine tavakasutajale"
+#: ../../standalone/drakbackup_.c:3475
+msgid "Host Name"
+msgstr "Masinanimi"
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
-msgstr "Graafiline keskkond"
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
+msgstr "Masina kataloog või moodul"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
-msgstr "Gibraltar"
+#: ../../standalone/drakbackup_.c:3483
+msgid "Password required"
+msgstr "Parooli nõudmine"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Do nothing"
-msgstr "Ära tee midagi"
+#: ../../standalone/drakbackup_.c:3489
+msgid "Username required"
+msgstr "Kasutajatunnuse nõudmine"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete Client"
-msgstr "Kustuta klient"
+#: ../../standalone/drakbackup_.c:3492
+msgid "Hostname required"
+msgstr "Masinanime nõudmine"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "Failisüsteemi tüüp: "
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
+msgstr "Kataloogi või mooduli nõudmine"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting network..."
-msgstr "Võrgu käivitamine..."
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
+msgstr "Taastatud failid..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
-msgstr "Vietnam"
+#: ../../standalone/drakbackup_.c:3513
+msgid "Restore Failed..."
+msgstr "Taastamine ebaõnnestus..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_Fields description"
-msgstr "/Välja_de kirjeldus"
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
+msgstr "Taasta kõik varukoopiad"
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr "Turvalisus, nagu Teile meeldib"
+#: ../../standalone/drakbackup_.c:3760
+msgid "Custom Restore"
+msgstr "Taastamise kohandamine"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-" Täname:\n"
-"\t- LTSP projekti http://www.ltsp.org\n"
-"\t- Michael Browni <mbrown@fensystems.co.uk>\n"
-"\n"
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
+msgstr "CD on kohal - jätka."
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Help"
-msgstr "Abi"
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
+msgstr "Lehitse uut taastamishoidlat."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
-msgstr "Võrguseadmete mitte-eelisresiimis oleku kontroll"
+#: ../../standalone/drakbackup_.c:3813
+msgid "Restore From Catalog"
+msgstr "Taastamine kataloogist"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Your personal phone number"
-msgstr "Teie telefoninumber"
+#: ../../standalone/drakbackup_.c:3841
+msgid "Restore Progress"
+msgstr "Taastamise edenemine"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which size do you want to keep for Windows on"
-msgstr "Kui palju ruumi jätate Windowsi jaoks?"
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+msgid "Previous"
+msgstr "Eelmine"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Testlehekülg on saadetud printerile.\n"
-"Nüüd võib minna natuke aega, enne kui printer alustab.\n"
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+msgid "Save"
+msgstr "Salvesta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Username required"
-msgstr "Kasutajatunnuse nõudmine"
+#: ../../standalone/drakbackup_.c:3946
+msgid "Build Backup"
+msgstr "Varukoopia loomine"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Device"
-msgstr "Seade"
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+msgid "Restore"
+msgstr "Taastamine"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4189
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."
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
msgstr ""
-"Tavaliselt valib DrakX klaviatuuri Teie eest juba ära (sõltuvalt valitud\n"
-"keelest). Kuid see võib tekitada olukorra, kus Teil ikkagi pole just see\n"
-"klaviatuur, mida soovite: kui olete näiteks inglise keelt kõnelev\n"
-"šveitslane, võite siiski soovida Šveitsi asetusega klaviatuuri. Teine kohe\n"
-"pähe tulev juhtum on inglise keele kõneleja Quebecis. Mõlemal juhul on\n"
-"mõtet naasta paigalduse selle sammu juurde ja valida loendist vajalik\n"
-"klaviatuur.\n"
-"\n"
-"Klõpsake nupul \"%s\", mis näitab kõiki toetatud klaviatuure.\n"
-"\n"
-"Kui valite mitte-ladina tähestikuga klaviatuuri, palutakse Teil järgmises\n"
-"dialoogis valida klahv või klahvikombinatsioon, mis vahetab ladina ja\n"
-"mitte-ladina asetusega klaviatuuri."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) printeri seadistused"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr "Kehtivat nimekirja on muudetud, kirjutan seadistustefaili uuesti."
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "mkinitrd optional arguments"
-msgstr "mkinitrd lisaargumendid"
+"Viga meili saatmisel.\n"
+" Raportimeili ei õnnestunud saata.\n"
+" Seadistage palun sendmail"
-#: ../advertising/03-software.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4195
msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
msgstr ""
-"Lehitsege veebi Mozilla või Konqueroriga, lugege e-posti Evolutioni või "
-"KMailiga, looge oma dokumendid OpenOffice.org abil."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protokoll ülejäänud maailma tarbeks"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print test pages"
-msgstr "Trüki testlehekülg(i)"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Activate now"
-msgstr "Aktiveeri nüüd"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
-msgstr "64 MB või rohkem"
+"Viga faili saatmisel FTP kaudu.\n"
+" Palun korrigeerige FTP seadistusi."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4209
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."
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
msgstr ""
-"Valige palun testleheküljed, mida trükkida.\n"
-"Märkus: fototesti trükkimine võib võtta üsna kaua aega ning liiga vähese "
-"mäluga laserprinteritel ei pruugi see üldse õnnestuda. Enamasti peaks "
-"piisama tavalise testlehekülje trükkimisest."
+"Paigaldada tuleb järgmised paketid:\n"
+" @paigaldamist_vajavate_rpm_pakettide_loend"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Valige palun seade, kuhu %s on ühendatud"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Not formatted\n"
-msgstr "Vormindamata\n"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Periodic Checks"
-msgstr "Perioodiline kontroll"
+#: ../../standalone/drakbackup_.c:4232
+msgid "Please select data to restore..."
+msgstr "Valige palun taastatavad andmed..."
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "PXE Server Configuration"
-msgstr "PXE serveri seadistamine"
+#: ../../standalone/drakbackup_.c:4267
+msgid "Please select media for backup..."
+msgstr "Valige palun varundamiseks andmekandja..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup the system files before:"
-msgstr "Varundatakse süsteemsed failid, mis on loodud enne:"
+#: ../../standalone/drakbackup_.c:4275
+msgid "Please select data to backup..."
+msgstr "Valige palun varundamiseks andmed..."
-#: ../../security/level.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-"See on sobilik turvatase arvutile, mis ühendatakse Internetti kui klient."
-
-#: ../../any.pm:1
-#, c-format
-msgid "First floppy drive"
-msgstr "Esimene flopiseade"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Fail/_Välju"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose the new size"
-msgstr "Valige uus suurus"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Media class"
-msgstr "Andmekandja klass"
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr "Muudatuste rakendamiseks tuleb end uuesti sisse logida"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
-msgstr "%s on Scannerdrake praegusele versioonile tundmatu."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Faroe Islands"
-msgstr "Fääri saared"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Restart XFS"
-msgstr "XFS taaskäivitamine"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
-msgstr "Lisa masin/võrk"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Scannerdraket praegu ei käivitata."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model name"
-msgstr "Mudeli nimi"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
-msgstr "Albaania"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr "Briti India ookeani ala"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Normal Mode"
-msgstr "Tavakasutus"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "CD-R/DVD-R ei ole seadmes!"
+"Seadistustefaili ei leitud, \n"
+"klõpsake palun nupul 'Nõustaja' või 'Muud'."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer connection type"
-msgstr "Printeri ühendusviis"
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
+msgstr "Tegutsen ... palun oodake."
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
-msgstr "Teie süsteemis ei ole võrgukaarti!"
+#: ../../standalone/drakbackup_.c:4382
+msgid "Backup system files"
+msgstr "Süsteemsete failide varundamine"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network %s"
-msgstr "Võrk %s"
+#: ../../standalone/drakbackup_.c:4384
+msgid "Backup user files"
+msgstr "Kasutaja failide varundamine"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
-msgstr "Malajalami"
+#: ../../standalone/drakbackup_.c:4386
+msgid "Backup other files"
+msgstr "Muude failide varundamine"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Võti %s väljub piiridest!"
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
+msgstr "Edenemine kokku"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connect %s"
-msgstr "%s ühenduse loomine"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
+msgstr "failide saatmine FTP kaudu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "CUPSi taaskäivitamine..."
+#: ../../standalone/drakbackup_.c:4416
+msgid "Sending files..."
+msgstr "Failide saatmine..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Trükkimine/skaneerimine/fotokaardid seadmel \"%s\""
+#: ../../standalone/drakbackup_.c:4500
+msgid "Backup Now from configuration file"
+msgstr "Seadistustefaili varundamine nüüd!"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
-msgstr "Jätka ilma USB mälupulgata"
+#: ../../standalone/drakbackup_.c:4505
+msgid "View Backup Configuration."
+msgstr "Varundamise sätete vaatamine."
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Haakepunkt %s on määratud topelt"
+#: ../../standalone/drakbackup_.c:4526
+msgid "Wizard Configuration"
+msgstr "Nõustaja sätted"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
-msgstr "Kui on 'jah', käivitatakse chkrootkit kontroll."
+#: ../../standalone/drakbackup_.c:4531
+msgid "Advanced Configuration"
+msgstr "Muud sätted"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "Internetiühenduse seadistused"
+#: ../../standalone/drakbackup_.c:4536
+msgid "Backup Now"
+msgstr "Varunda nüüd!"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|Generic"
-msgstr "Tundmatu|Tavaline"
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
+msgstr "Drakbackup"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4624
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"
+"options description:\n"
+"\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \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 ""
-"On tõenäoline, et praegu, kui Te paigaldate Mandrake Linuxit, on mõned\n"
-"paketid jõudnud pärast väljalaset juba uuenduskuuri üle elada. Mõnes on ära\n"
-"parandatud paar väiksemat viga, mõnes turvaprobleemid. Et võiksite neist\n"
-"uuendustest tulu lõigata, on Teil nüüd võimalik need Internetist alla "
-"laadida.\n"
-"Klõpsake \"%s\", kui Teie internetiühendus töötab, või \"%s\", kui "
-"eelistate\n"
-"pakette uuendada millalgi hiljem.\n"
+"valikute kirjeldused:\n"
+"\n"
+" Sellel sammul võimaldab Drakbackup muuta:\n"
+"\n"
+" - Tihendusmeetodit:\n"
+" \n"
+" Kui valite tihenduse bzip2, õnnestub teil andmeid\n"
+" tihendada paremini kui gzip-iga (umbes 2-10 %).\n"
+" See ei ole vaikimisi märgitud, sest see meetod\n"
+" nõuab ka palju enam aega (umbes 1000% enam).\n"
+" \n"
+" - Uuendamismeetodit:\n"
+"\n"
+" See võimalus uuendab Teie varukoopiad, kuid pole\n"
+" tegelikult eriti mõistlik, sest enne seda, kui uuendada,\n"
+" tuleb varukoopiad lahti pakkida.\n"
+" \n"
+" - .backupignore meetodit:\n"
+"\n"
+" Nagu cvs-i puhul, eirab ka Drakbackup igas kataloogis\n"
+" kõike seda, mis on kirjas .backupignore failides.\n"
+" nt: \n"
+" /*> cat .backupignore*\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
"\n"
-"Kui valite \"%s\", näidatakse Teile loendit kohtadega, kust uuendusi "
-"tõmmata\n"
-"saab. Valige endale lähim paik. Seejärel ilmub paketivaliku puu. Vaadake "
-"see\n"
-"üle ning vajutage \"%s\", kui soovite valitud paketi(d) alla laadida ja\n"
-"paigaldada, või \"%s\", kui Te ei soovi seda teha."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-msgstr "Myanmar"
-
-#: ../../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
-#, c-format
-msgid "Quit"
-msgstr "Välju"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "Paiguta ise"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Blokkide kontroll?"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Other MultiMedia devices"
-msgstr "Muud multimeediaseadmed"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "burner"
-msgstr "CD-kirjutaja"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Bug Description/System Information"
-msgstr "Vea kirjeldus/süsteemi info"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (Default is all users)"
-msgstr "(Vaikimisi tähendab kõiki kasutajaid)"
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "No remote machines"
-msgstr "Ainult sellel masinal"
+#: ../../standalone/drakbackup_.c:4654
+msgid ""
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
+msgstr ""
+"\n"
+" Mõned vead meili saatmisel sendmail-iga on\n"
+" põhjustatud postfixi seadistuste vigadest. Nende\n"
+" kõrvaldamiseks määrake 'myhostname' või\n"
+" 'mydomain' failis /etc/postfix/main.cf\n"
+"\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4662
msgid ""
+"options description:\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \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 ""
+"valikute kirjeldus:\n"
"\n"
-"Printeri seadistamise nõustaja\n"
+" - Süsteemsete failide varundamine:\n"
+" \n"
+"\tSee võimalus laseb varundada kataloogi /etc,\n"
+"\tmis sisaldab kõiki Teie seadistustefaile. Olge\n"
+"\tpalun taastamise ajal ettevaatlik ja ärge kirjutage\n"
+"\tüle järgmisi faile:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab \n"
"\n"
-"Nõustaja aitab Teil paigaldada printeri(d), mis on ühendatud selle "
-"arvutiga.\n"
+" - Kasutaja failide varundamine: \n"
+"\n"
+"\tSee võimalus laseb valida kõik kasutajad, keda\n"
+"\tsoovite varundada.\n"
+"\tKettaruumi kokkuhoiu huvides on soovitatav mitte\n"
+"\tkaasata veebilehitseja puhvrit.\n"
+"\n"
+" - Muude failide varundamine: \n"
+"\n"
+"\tSee võimalus lubab salvestada veelgi enam\n"
+"\tandmeid, kuid praegu ei ole selle puhul veel\n"
+"\tvõimalik kasutada muutvarundamist.\t\t\n"
+" \n"
+" - Muutvarundamine:\n"
+"\n"
+"\ttMuutvarundamine on kõige võimsam kasutatav\n"
+"\tvalik, mis lubab esmalt varundada kõik andmed\n"
+"\tja seejärel ainult vahepeal muutunud andmed.\n"
+"\tSel moel on võimalik ka taastamise ajal taastada\n"
+"\tkonkreetse daatumiga andmed.\n"
+"\tKui Te ei ole seda võimalust valinud, kustutatakse\n"
+"\tenne iga varundamist vanad varukoopiad. \n"
"\n"
-"Kui teil on printer(eid), mis on ühendatud selle masinaga, ühendage palun "
-"see/need arvutiga ja lülitage sisse, et seda/neid saaks automaatselt "
-"tuvastada.\n"
"\n"
-"Kui olete valmis, vajutage \"Järgmine\", või \"Katkesta\", kui Te ei soovi "
-"praegu printeri(te) seadistamisega tegelda."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "NIS autentimine"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Võti ``Piira käsurea suvandeid'' ei ole kasutatav ilma salasõnata"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Internetiühenduse jagamine töötab"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "Araabia Ühendemiraadid"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "Kaardi IO_0"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
-msgstr "Kohalik seadistus on keelatud"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "Tai"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "Kaardi IO_1"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
-msgstr "Otsi:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "Kasahstan"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
-msgstr "Ruuterid:"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Write"
-msgstr "Kirjutada"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Näita kõiki saadaolevaid CUPS printserveri printereid"
-
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linuxi paigaldamine %s"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
-msgstr "Tundmatu juhtprogramm"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "Tai"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr "Bouvet' saar"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "DialUp parameetrid"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "Kui porti ei ole määratud, kasutatakse vaikimisi porti 631."
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Kliendi süsteemsed seadistustefailid:\n"
-" \tClusterNFS abil võivad igal kettata tööjaamal olla oma unikaalsed "
-"seadistustefailid\n"
-" \tserveri juurfailisüsteemis. Kliendi kohalikku riistvara "
-"seadistamist lubades\n"
-" \tvõimaldab drakTermServ kohandada selliseid faile, nagu /etc/"
-"modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/keyboard.\n"
-"\n"
-" Märkus: Kliendi kohaliku riistvara seadistamine lubamine võimaldab "
-"administraatorina terminaliserverile \n"
-" sisse logida igal klientmasinal, millel see võimalus on lubatud. "
-"Kohaliku seadistuse saab \n"
-" tagasi muuta, hankides seadistustefailid uuesti, kui klientmasin on "
-"seadistatud."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4701
msgid ""
-"Change your Cd-Rom!\n"
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\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 ""
-"Vahetage CD-ROM!\n"
+"taastamise kirjeldus:\n"
+"\n"
+"Kasutatakse ainult kõige värskemaid andmeid, sest muutvarunduse\n"
+"korral on oluline taastada üksteise järel kõik vanemad varukoopiad.\n"
+"\n"
+"Kui Te ei soovi taastada näiteks kasutajat, eemaldage märked\n"
+"kõigist tema kastikestest.\n"
+"\n"
+"Vastasel juhul saate valida ainult järgmiste võimaluste vahel.\n"
+"\n"
+" - Muutvarukoopiad:\n"
+"\n"
+"\tMuutvarundamine on kõige võimsam kasutatav\n"
+"\tvalik, mis lubab esmalt varundada kõik andmed\n"
+"\tja seejärel ainult vahepeal muutunud andmed.\n"
+"\tSel moel on võimalik ka taastamise ajal taastada\n"
+"\tkonkreetse daatumiga andmed.\n"
+"\tKui Te ei ole seda võimalust valinud, kustutatakse\n"
+"\tenne iga varundamist vanad varukoopiad. \n"
+"\n"
+"\n"
"\n"
-"Palun sisestage CD pealdisega \"%s\" lugejasse ja vajutage <Olgu>.\n"
-"Kui teil säherdust ei ole, vajutage <Katkesta>."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "Poola"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Online"
-msgstr "Mandrake Online"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
-msgstr "\t-võrk webdavi vahendusel.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", mitme funktsiooniga seade paralleelpordis"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4727
msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
-"Ühtki võrgukaarti ei suudetud tuvastada. Palun kasutage selleks riistvara "
-"seadistajat."
-
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "Võrgumask"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "No hard drives found"
-msgstr "Kõvakettaid ei leitud"
+" Copyright (C) 2001-2002 MandrakeSoft: DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "2 nupuga"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC seeria"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "Millist ISDN ühendust kasutate?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "Pealdis"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "Salvesta flopile"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check open ports"
-msgstr "Avatud portide kontroll"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Edit selected printer"
-msgstr "Valitud printeri muutmine"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Printeri automaattuvastus"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Milline on Teie ISDN kaart?"
-
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4729
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."
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-"NFS on UNIXi keskkonna standardne failijaotusprotokoll.\n"
-"See täidab NFS serveri funktsioone ja seadistatakse failis /etc/exports."
+" uuendused 2002 MandrakeSoft: Stew Benedict <sbenedict\\@mandrakesoft.com>"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Msec"
-msgstr "Msec"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4732
msgid ""
-"=> Notice, a label changed:\n"
-"%s"
+"Description:\n"
+"\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
+"\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
+"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
+"\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
+"\n"
+"\n"
msgstr ""
-"=> Pange tähele, et pealdis on muutunud:\n"
-"%s"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
-msgstr "Hõivepuhvrite arv:"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Teie valik? (0/1, vaikimisi '%s')"
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a file system).\n"
+"Kirjeldus:\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"
+" Drakbackup aitab Teie süsteemist varukoopiaid teha.\n"
+" Seadistamise ajal saate valida \n"
+"\t- süsteemsed failid, \n"
+"\t- kasutaja failid, \n"
+"\t- muud failid \n"
+"\tvõi kogu süsteemi ... ja muud (nt Windowsi partitsioonid)\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"
+" Drakbackup võimaldab varundada järgmistele andmekandjatele:\n"
+"\t- kõvaketas.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (automaatse alglaadimise, pääste- \n"
+"ja automaatse paigalduse võimalustega).\n"
+"\t- FTP.\n"
+"\t- rsync.\n"
+"\t- Webdav.\n"
+"\t- lint.\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"
+" Drakbackup võimaldab taastada süsteemi\n"
+" kasutaja määratud kataloogi.\n"
"\n"
-"Click on \"%s\" when you are ready to format partitions.\n"
+" Vaikimisi salvestatakse kõik varukoopiad\n"
+" kataloogi /var/lib/drakbackup.\n"
"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
+" Seadistustefail:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Taastamise käik:\n"
+" \n"
+" Taastamise ajal eemaldab Drakbackup Teie\n"
+" originaalkataloogi ja kontrollib, et ükski varukoopia\n"
+" ei oleks vigane. Soovitatav on enne taastamist\n"
+" ette võtta veel üks varundamine.\n"
+"\n"
+"\n"
+
+#: ../../standalone/drakbackup_.c:4769
+msgid ""
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
"\n"
-"Click on \"%s\" if you wish to select partitions that will be checked for\n"
-"bad blocks on the disk."
msgstr ""
-"Kõik värskelt loodud partitsioonid tuleb enne kasutamist vormindada\n"
-"ehk sinna tuleb luua failisüsteemid.\n"
+"valikute kirjeldus:\n"
"\n"
-"Samuti võib vormindada varem olemas olnud partitsioonid, kui soovite\n"
-"seal leiduvad andmed ära kustutada.\n"
+"Olge palun ettevaatlik, kui kasutate ftp-varundamist, sest serverile\n"
+"saadetakse ainult juba loodud varukoopiad. Seetõttu tuleb esmalt\n"
+"luua varukoopiad kõvakettal ja alles siis need serverile saata.\n"
"\n"
-"Pange tähele, et alati ei ole kõigi vanade partitsioonide vormindamine\n"
-"vajalik. Kindlasti tuleb vormindada partitsioonid, kus varem asus \"/\", \"/"
-"usr\"\n"
-"või \"/var\", aga kasutajate faile sisaldav \"/home\" võiks jääda alles.\n"
+
+#: ../../standalone/drakbackup_.c:4778
+msgid ""
"\n"
-"Olge partitsioonide valikul hoolas. Pärast vormindamist on kõik valitud\n"
-"partitsioonidel asunud andmed kustutatud ning neid ei ole võimalik "
-"taastada.\n"
+"Restore Backup Problems:\n"
"\n"
-"Klõpsake \"%s\", kui olete vormindamiseks valmis.\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
+msgstr ""
"\n"
-"Klõpsake \"%s\", kui soovite valida oma uue Mandrake Linuxi süsteemi\n"
-"paigaldamiseks mõne muu partitsiooni.\n"
+"Varukoopia taastamise probleemid:\n"
"\n"
-"Klõpsake \"%s\", kui soovite valida partitsioone, millel kontrollitaks "
-"halbade\n"
-"blokkide olemasolu."
+"Taastamise ajal kontrollib Drakbackup enne taastamist\n"
+"kõiki Teie varukoopiafaile.\n"
+"Enne taastamist eemaldab Drakbackup Teie originaalkataloogi\n"
+"ja Te kaotate kõik oma andmed. Seepärast on oluline olla\n"
+"hoolikas ja mitte muuta varundatud andmefaile käsitsi.\n"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "French"
-msgstr "Prantsuse"
+msgid "Installation of %s failed. The following error occured:"
+msgstr "%s paigaldamine ebaõnnestus. Tekkis järgmine viga:"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTY)"
-msgstr "Tšehhi (QWERTY)"
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
+msgstr "Mandrake veateate abivahend"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow X Window connections"
-msgstr "X Window ühenduste lubamine"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Esimese korra nõustaja"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "Toimub tuvastamine.."
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Sünkroniseerimisvahend"
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
-#, c-format
-msgid "Net Device"
-msgstr "Võrguseade"
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+msgid "Standalone Tools"
+msgstr "Autonoomsed vahendid"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "Kokkuvõte"
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (paralleelpordid: /dev/lp0, /dev/lp1..., millele teistes süsteemides vastab "
-"LPT1:, LPT2:...; esimene USB printer: /dev/usb/lp0, teine USB printer: /dev/"
-"usb/lp1...)"
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Next"
-msgstr "Järgmine"
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Alglaadurit ei ole võimalik paigaldada partitsioonile %s\n"
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msec"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Kaugjuhtimine"
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Tarkvarahaldur"
-#: ../../network/network.pm:1
-#, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp/zeroconf)"
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Tere tulemast!\n"
-"\n"
-"Automaatpaigalduse parameetrid on näha vasakul"
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Windowsi ümberkolimise vahend"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
-msgstr ""
-"korrektseks töötamiseks on vajalik pakett 'ImageMagick'.\n"
-"Klõpsake \"Olgu\" paketi 'ImageMagick' paigaldamiseks\n"
-"või \"Katkesta\" väljumiseks."
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Telnet server"
-msgstr "Telneti server"
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Seadistamise nõustajad"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Leedu \"numbrireaga\" QWERTY"
+#: ../../standalone/drakbug_.c:75
+msgid "Application:"
+msgstr "Rakendus:"
-#: ../../install_any.pm:1
-#, c-format
+#: ../../standalone/drakbug_.c:76
+msgid "Package: "
+msgstr "Pakett:"
+
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
+msgstr "Kernel:"
+
+#: ../../standalone/drakbug_.c:78
+msgid "Release: "
+msgstr "Väljalase: "
+
+#: ../../standalone/drakbug_.c:93
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
"\n"
"\n"
-"Do you really want to remove these packages?\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
msgstr ""
-"Süsteemi uuendamiseks tuleb eemaldada järgmised paketid: %s\n"
"\n"
"\n"
-"Kas tõesti eemaldada need paketid?\n"
+"Veateate edastamiseks vajutage nupule 'Raport'.\n"
+"See avab veebilehitseja akna aadressil https://drakbug.mandrakesoft.com,\n"
+"kus leiate eest täitmist ootava vormi. Ülal näidatud info kantakse\n"
+"serverile üle.\n"
+"\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
-msgstr "Anguilla"
+#: ../../standalone/drakbug_.c:112
+msgid "Report"
+msgstr "Raport"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "NIS domeen"
+#: ../../standalone/drakbug_.c:148
+msgid "Not installed"
+msgstr "Pole paigaldatud"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "Antarktika"
+#: ../../standalone/drakbug_.c:160
+msgid "Package not installed"
+msgstr "Pakett ei ole paigaldatud"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Kasutaja failid.\n"
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
+msgstr "loon ühendust Bugzilla nõustajaga ..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
-msgstr "Haakimise valikud"
+#: ../../standalone/drakbug_.c:180
+msgid "No browser available! Please install one"
+msgstr "Brauserit ei leitud! Palun paigaldage mõni"
-#: ../../lang.pm:1
+#: ../../standalone/drakconnect_.c:75
#, c-format
-msgid "Jamaica"
-msgstr "Jamaica"
+msgid "Network configuration (%d adapters)"
+msgstr "Võrgusätted (%d liidest)"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
-msgstr ""
-"Toorseadmete seostamine blokkseadmetega\n"
-"(näiteks kõvaketta partitsioonid)\n"
-"selliste rakenduste, nagu Oracle või DVD mängijad tarbeks"
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+msgid "Profile: "
+msgstr "Profiil: "
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Palun oodake, valmistun paigalduseks..."
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
+msgstr "Kustuta profiil..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "Tšehhi (QWERTZ)"
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
+msgstr "Kustutatav profiil:"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Võrgukaadi id tuvastus (kasulik sülearvutite puhul)"
+#: ../../standalone/drakconnect_.c:125
+msgid "New profile..."
+msgstr "Uus profiil..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Pordi number peab olema täisarv!"
+#: ../../standalone/drakconnect_.c:131
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr "Loodava profiili nimi (uus profiil luuakse praeguse koopiana) :"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "You must choose an image file first!"
-msgstr "Esmalt tuleb valida pildifail!"
+#: ../../standalone/drakconnect_.c:157
+msgid "Hostname: "
+msgstr "Masinanimi: "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Taastamine kõvakettalt"
+#: ../../standalone/drakconnect_.c:164
+msgid "Internet access"
+msgstr "Internetiühendus"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "Lisa LVMi"
+#: ../../standalone/drakconnect_.c:177
+msgid "Type:"
+msgstr "Tüüp: "
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "Nimeserver"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "Vaikelüüs:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr "Trinidad ja Tobago"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Interface:"
+msgstr "Liides:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD ja LPRng ei toeta IPP printereid.\n"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
+msgstr "Olek:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host name or IP."
-msgstr "Masinanimi või IP"
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
+msgstr "Palun oodake"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Edit"
-msgstr "/_Muuda"
+#: ../../standalone/drakconnect_.c:216
+msgid "Configure Internet Access..."
+msgstr "Internetiühenduse seadistamine..."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "lihtne"
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+msgid "LAN configuration"
+msgstr "LAN sätted"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "Kustuta kõik"
+#: ../../standalone/drakconnect_.c:228
+msgid "Driver"
+msgstr "Draiver"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No test pages"
-msgstr "Ära trüki"
+#: ../../standalone/drakconnect_.c:228
+msgid "Interface"
+msgstr "Liides"
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falklandi saared (Malviinid)"
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
+msgstr "Protokoll"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Võrgukaart %s: %s"
+#: ../../standalone/drakconnect_.c:228
+msgid "State"
+msgstr "Olek"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Boot disk creation"
-msgstr "Alglaadimisketta loomine"
+#: ../../standalone/drakconnect_.c:240
+msgid "Configure Local Area Network..."
+msgstr "Kohtvõrgu (LAN) seadistamine..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
-msgstr "Esmaspäev"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
+msgstr "Klõpsake siia nõustaja käivitamiseks ->"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown model"
-msgstr "Tundmatu mudel"
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "Nõustaja..."
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
-msgstr "Kui on 'jah', kontrollitakse kõigi kirjutatavaid faile/katalooge."
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
+msgstr "Rakenda"
-#: ../../help.pm:1
-#, c-format
-msgid "authentication"
-msgstr "autentimisviis"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Connected"
+msgstr "Ühendatud"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now"
-msgstr "Varunda nüüd!"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Not connected"
+msgstr "Ei ole ühendatud"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/_Fail"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
+msgstr "Ühenda..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Printeri eemaldamine StarOffice/OpenOffice.org/GIMP-ilt"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
+msgstr "Lahuta..."
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:400
msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Käivitab paketifiltri Linuxi kerneliseeriale 2.2 ning loob\n"
-"tulemüüri, mis kaitseb Teie masinat rünnakute eest Internetist."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Editable"
-msgstr "Redigeeritav"
+"Hoiatus, avastati veel üks internetiühendus, mis võib-olla kasutab Teie võrku"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
+#: ../../standalone/drakconnect_.c:427
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
msgstr ""
-"Millist DHCP klienti soovite kasutada? (vaikimisi on selleks 'dhcp-client')"
+"Ühtegi liidest ei ole seadistatud.\n"
+"Esmalt tuleb need seadistada, klõpsake selleks nupul 'Seadista'"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr "Tamili (ISCII)"
+#: ../../standalone/drakconnect_.c:449
+msgid "LAN Configuration"
+msgstr "LAN sätted"
-#: ../../lang.pm:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Mayotte"
-msgstr "Mayotte"
+msgid "Adapter %s: %s"
+msgstr "Võrgukaart %s: %s"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
-msgstr "Shellikäskude puhvri suuruse määramine. -1 tähendab piiramatu."
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
+msgstr "Laadimisprotokoll"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d KB\n"
-msgstr "%d KB\n"
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
+msgstr "Käivitub laadimisel"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Kiirpaigaldusflopi loomine..."
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
+msgstr "DHCP klient"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for scanners ..."
-msgstr "Skännerite otsimine..."
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "activate now"
+msgstr "aktiveeri nüüd"
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
-msgstr "Venemaa"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "deactivate now"
+msgstr "lülita välja nüüd"
-#: ../../steps.pm:1
-#, c-format
-msgid "Partitioning"
-msgstr "Kõvaketta jagamine"
+#: ../../standalone/drakconnect_.c:499
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Seda liidest ei ole veel seadistatud.\n"
+"Käivitage peaaknas seadistamise nõustaja"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
-msgstr "võrgukaart(i) leiti üles"
+#: ../../standalone/drakconnect_.c:556
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Teil ei ole internetiühendust.\n"
+"Looge see klõpsuga nupul 'Seadista'"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
-msgstr "Syslog"
+#: ../../standalone/drakconnect_.c:580
+msgid "Internet connection configuration"
+msgstr "Internetiühenduse seadistamine"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create catalog!"
-msgstr "Kataloogi ei õnnestunud luua!"
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet Connection Configuration"
+msgstr "Internetiühenduse seadistamine"
-#: ../advertising/11-mnf.pl:1
-#, 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."
-msgstr ""
-"Viige oma turvalisuse seadistamine täiuseni hõlpsasti kasutatava tarkvara "
-"abil, mis ühendab ülimalt tõhusaid komponente, näiteks tulemüür, virtuaalse "
-"eravõrgu (VPN) server ja klient, rünnakute avastamise süsteem ja "
-"võrguliikluse haldur."
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+msgid "Connection type: "
+msgstr "Ühenduse tüüp: "
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
-msgstr "Ei ole piisavalt ruumi automaatpaigutuseks"
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
+msgstr "Parameetrid"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "Juurkasutaja salasõna"
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Vaikelüüs"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable IP spoofing protection"
-msgstr "IP võltsimiskaitse lubamine"
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
+msgstr "Võrgukaart"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
-msgstr ""
-"Pole teada ühtegi vabavara-juhtprogrammi Teie helikaardile (%s), kuid on "
-"olemas tootja juhtprogramm, mille asukoht on \"%s\"."
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
+msgstr "DHCP klient"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group :"
-msgstr "Grupp :"
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "Partitsiooni %s suuruse muutmisel hävivad sellel kõik andmed"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Module name"
+msgstr "Mooduli nimi"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Internetiühenduse seadistamine"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Size"
+msgstr "Suurus"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
-msgstr "Nimi lisatakse erandite hulka, kui msec uurib salasõnade aegumist"
+#: ../../standalone/drakfloppy_.c:45
+msgid "drakfloppy"
+msgstr "drakfloppy"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "USB"
-msgstr "USB"
+#: ../../standalone/drakfloppy_.c:63
+msgid "boot disk creation"
+msgstr "alglaadimisketta loomine"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "Telekanalite otsing"
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr "tavaline"
-#: ../../standalone/drakbug:1
+#: ../../standalone/drakfloppy_.c:87
#, c-format
-msgid "Kernel:"
-msgstr "Kernel:"
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy viga: %s"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_About..."
-msgstr "/_Misvärk"
+#: ../../standalone/drakfloppy_.c:98
+msgid "kernel version"
+msgstr "kerneli versioon"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
-msgstr "Bengali"
+#: ../../standalone/drakfloppy_.c:104
+msgid "General"
+msgstr "Üldine"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
-msgstr "Eelistus: "
+#: ../../standalone/drakfloppy_.c:109
+msgid "Expert Area"
+msgstr "Ekspertidele"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Teenused: %d aktiveeritud, kokku %d"
+#: ../../standalone/drakfloppy_.c:112
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd lisaargumendid"
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "Alglaadimisflopi loomine"
+#: ../../standalone/drakfloppy_.c:113
+msgid "Add a module"
+msgstr "Lisa moodul"
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "Saalomoni saared"
+#: ../../standalone/drakfloppy_.c:133
+msgid "force"
+msgstr "sunni peale"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Palun testige hiirt:"
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
+msgstr "kui vaja"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(moodul %s)"
+#: ../../standalone/drakfloppy_.c:135
+msgid "omit scsi modules"
+msgstr "scsi moodulite vahelejätt"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
-msgstr "Töögrupp"
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
+msgstr "raid moodulite vahelejätt"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Printeri masinanimi või IP"
+#: ../../standalone/drakfloppy_.c:172
+msgid "Remove a module"
+msgstr "Eemalda moodul"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "down"
-msgstr "pole ühendatud"
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
+msgstr "Väljund"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Path or Module"
-msgstr "Masina kataloog või moodul"
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
+msgstr "Ketta loomine"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Printeri nimi tohib sisaldada vaid tähti, numbreid ja alakriipsu"
+msgid "Be sure a media is present for the device %s"
+msgstr "Kontrollige, et andmekandja on seadmes %s"
-#: ../../standalone/drakgw:1
+#: ../../standalone/drakfloppy_.c:341
#, c-format
-msgid "Show current interface configuration"
-msgstr "Liidese praeguste seadistuste näitamine"
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Andmekandja puudub seadmes %s või on kirjutuskaitsega.\n"
+"Sisestage palun andmekandja."
-#: ../../standalone/printerdrake:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "Add Printer"
-msgstr "Lisa printer"
+msgid "Unable to fork: %s"
+msgstr "Fork ebaõnnestus: %s"
-#: ../../security/help.pm:1
+#: ../../standalone/drakfloppy_.c:349
#, 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."
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
msgstr ""
-"Argument määrab, kas klientidel on õigus võtta ühendust\n"
-"X-serveriga tcp pordis 6000 või mitte."
+"Mkbootdiski korrektne sulgemine ebaõnnestus: \n"
+" %s \n"
+" %s"
-#: ../../help.pm:1
-#, c-format
-msgid "Development"
-msgstr "Arendus"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
+msgstr "Paigaldatud fontide otsimine"
-#: ../../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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Done"
-msgstr "Tehtud"
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
+msgstr "Paigaldatud fontide valiku tühistamine"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Web Server"
-msgstr "Veebiserver"
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
+msgstr "kõigi fontide analüüs"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "Tšiili"
+#: ../../standalone/drakfont_.c:242
+msgid "no fonts found"
+msgstr "fonte ei leitud"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tsüsteemsete failide kõrvalejätmine\n"
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+msgid "done"
+msgstr "tehtud"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Lexmarki pakutavad inkjet printerite draiverid toetavad ainult kohalikke "
-"printereid, mitte aga printereid kaugarvutitel või printserveritel. Ühendage "
-"palun oma printer kohalikku porti või seadistage see masinal, millega "
-"printer on ühendatud."
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
+msgstr "ei suutnud haagitud partitsioonidel leida ühtegi fonti"
-#: ../../printer/printerdrake.pm:1
-#, 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!"
-msgstr ""
-"Mitme funktsiooniga seade on automaatselt seadistatud ja suudab ka "
-"skaneerida. Nüüd võite skaneerida \"scanimage\" abil (\"scanimage -d hp:%s\" "
-"skänneri määramiseks, kui Teil on neid mitu) käsurealt või graafiliste "
-"liideste \"xscanimage\" või \"xsane\" vahendusel. Kui kasutate GIMPi, võite "
-"skaneerida ka menüükäsuga \"Fail\"/\"Hangi\". Kui soovite rohkem infot, "
-"andke käsureal korraldus \"man scanimage\".\n"
-"\n"
-"Ärge selle seadme puhul \"scannerdraket\" kasutage!"
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
+msgstr "Korrektsete fontide uuestivalimine"
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "(juba lisatud %s)"
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
+msgstr "ei suutnud fonte leida.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation in progress"
-msgstr "Alglaaduri paigaldus..."
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
+msgstr "Fontide otsing paigaldatute loendis"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
-msgstr ", kasutades käsku %s"
+#: ../../standalone/drakfont_.c:359
+msgid "Fonts copy"
+msgstr "Fontide kopeerimine"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt- ja Shift-klahvid korraga"
+#: ../../standalone/drakfont_.c:363
+msgid "True Type fonts installation"
+msgstr "TrueType fontide paigaldamine"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
-msgstr "Lipud"
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
+msgstr "palun oodake, käib ttmkdir..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Users"
-msgstr "Lisa/kustuta kasutaja"
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
+msgstr "TrueType paigaldus tehtud"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Masina/võrgu IP aadress puudub."
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
+msgstr "Fontide teisendamine"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
-msgstr "kord nädalas"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
+msgstr "type1inst loomine"
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "Seadistused"
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
+msgstr "Ghostcsripti määratlused"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "Sisestatud masina/võrgu IP aadress ei ole korrektne.\n"
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
+msgstr "ttf fontide teisendamine"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "Loo/kanna üle varundusvõtmed SSH jaoks"
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
+msgstr "pfm fontide teisendamine"
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr "See on saadaolevate maade täielik nimekiri"
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
+msgstr "Ajutiste failide kustutamine"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Alternatiivne testlehekülg (A4)"
+#: ../../standalone/drakfont_.c:459
+msgid "Restart XFS"
+msgstr "XFS taaskäivitamine"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
+msgstr "Fondifailide kustutamine"
+
+#: ../../standalone/drakfont_.c:528
+msgid "xfs restart"
+msgstr "xfs taaskäivitamine"
+
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
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."
+"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 using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
msgstr ""
-"Kui Teil on olemas kõik alltoodud CD-d, klõpsake <Olgu>.\n"
-"Kui Teil ei ole ühtki neist, klõpsake <Katkesta>.\n"
-"Kui puuduvad mõned CD-d, märkige vaid olemasolevad ja siis <Olgu>."
+"Enne fontide paigaldamist kontrollige, et Teil on õigus neid oma süsteemis "
+"kasutada ja paigaldaada.\n"
+"\n"
+" Fonte saab paigaldada normaalsel meetodil. Haruharva võivad vigased fondid "
+"panna küll X Serveri hanguma."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
-msgstr "Palun oodake"
+#: ../../standalone/drakfont_.c:621
+msgid "Fonts Importation"
+msgstr "Fontide importimine"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
+msgstr "Windowsi fontide hankimine"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup user files"
-msgstr "Kasutaja failide varundamine"
+#: ../../standalone/drakfont_.c:658
+msgid "Uninstall Fonts"
+msgstr "Fontide eemaldamine"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "New"
-msgstr "Uus"
+#: ../../standalone/drakfont_.c:669
+msgid "Advanced Options"
+msgstr "Muud valikud"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:677
+msgid "Font List"
+msgstr "Fontide loend"
+
+#: ../../standalone/drakfont_.c:737
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"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@mandrakesoft.com\n"
"\n"
-"One caveat -- do not make the password too long or complicated because you\n"
-"must be able to remember it!\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"
-"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"
+" 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"
-"If you wish access to this computer to be controlled by an authentication\n"
-"server, click the \"%s\" button.\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"
-"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"
+" 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"
"\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 ""
-"Nüüd on kätte jõudnud kõige olulisem hetk Teie arvuti turvalisuse "
-"tagamisel:\n"
-"Teil tuleb määrata \"administraatori\" parool. Administraator haldab kogu\n"
-"süsteemi ja ainult temal on õigus uuendusi ette võtta, kasutajaid lisada, "
-"muuta\n"
-"kogu süsteemi seadistusi ja nii edasi. Ehk teisisõnu - administraator võib "
-"teha\n"
-"kõike! Seepärast tuleks parool valida selline, mida oleks raske ära arvata.\n"
-"DrakX ütleb Teile, kui parool tundub olevat liiga lihtne. Te võite muidugi "
-"jätta\n"
-"ka parooli sisestamata, aga me soovitame väga tungivalt seda siiski teha - \n"
-"kasvõi juba sel põhjusel, et kuigi Te paigaldate endale GNU/Linuxi "
-"süsteemi,\n"
-"ei tähenda see veel, et vigu ette ei võiks tulla. Kuna administraator võib\n"
-"kõiki piiranguid muuta ning vahel tahtmatultki kustutada oma hooletu\n"
-"tegevusega kõik andmed mingilt partitsioonilt, on päris oluline, et\n"
-"administraatoriks saamine ei oleks eriti lihtne.\n"
"\n"
-"Parool võib koosneda nii tähtedest kui numbritest ja peab olema vähemalt\n"
-"8 (kaheksa) märki pikk. Ärge pange kunagi administraatori parooli kirja - "
-"see\n"
-"võib muuta ligipääsu Teie süsteemile võõrastele liiga hõlpsaks.\n"
+msgstr ""
"\n"
-"Väike soovitus - ärge siiski parooli liiga keeruliseks või pikaks ajage,\n"
-"sest lõppeks peaksite seda ju suutma ka meelde jätta!\n"
+" Copyright (C) 2001-2002: MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@mandrakesoft.com\n"
"\n"
-"Kui Te parooli sisestate, seda ekraanil ei näidata. Te peate selle "
-"sisestama\n"
-"kaks korda, mis väldib kirjutamisvea võimaluse. Siiski, kui teete ühesuguse\n"
-"vea kaks korda järjest, on just see \"vigane\" parool, mida Teilt oodatakse\n"
-"administraatorina sisselogimisel.\n"
+" Käesolev rakendus on vaba tarkvara. Te võite seda edasi levitada\n"
+" ja/või muuta vastavalt GNU Üldise Avaliku Litsentsi tingimustele, nagu\n"
+" need on avaldanud Vaba Tarkvara Fond; kas Litsentsi versioon number 2\n"
+" või (vastavalt Teie valikule) ükskõik milline hilisem versioon.\n"
"\n"
-"Kui soovite, et ligipääsu käesolevale arvutile kontrolliks mõni\n"
-"autentimisserver, klõpsake nupul \"%s\".\n"
+" Seda rakendust levitatakse lootuses, et see on kasulik, kuid\n"
+" ILMA IGASUGUSE GARANTIITA; isegi KESKMISE/TAVALISE\n"
+" KVALITEEDI GARANTIITA või SOBIVUSELE TEATUD KINDLAKS\n"
+" EESMÄRGIKS. Üksikasjade suhtes vaadake GNU Üldist Avalikku Litsentsi.\n"
"\n"
-"Kui Teie võrgus on kasutusel LDAP, NIS või PDC Windowsi domeeni autentimise\n"
-"teenused, valige neist sobilik \"%s\". Kui Te aga ei juhtu teadma,\n"
-"mida teha, pöörduge oma võrgu administraatori poole.\n"
+" Te peaks olema saanud GNU Üldise Avaliku Litsentsi koopia koos selle\n"
+" rakendusega; kui ei, siis võtke ühendust Vaba Tarkvara Fondiga aadressil:\n"
+" Free Software Foundation, 59 Temple Place - Suite 330, Boston,\n"
+" MA 02111-1307, USA.\n"
"\n"
-"Kui Teil on probleeme salasõna meelespidamisega, Teie arvuti ei ole\n"
-"ühendatud ühtegi administreeritavasse võrku või Te usaldate täielikult\n"
-"kõiki, kes Teie arvutit kasutavad, on mõttekas valida \"%s\"."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
-msgstr "Nimelahenduse võltsimiskaitse"
-
-#: ../../help.pm:1
-#, 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"
+" Täname:\n"
+" - pfm2afm: \n"
+"\tautor: Ken Borgendale:\n"
+"\t teisendab Windowsi .pfm-faili .afm-failiks (Adobe fondimeetrika)\n"
+" - type1inst:\n"
+"\tautor: James Macnicol: \n"
+"\t type1inst tekitab failid fonts.dir fonts.scale ja Fontmap.\n"
+" - ttf2pt1: \n"
+"\t autorid: Andrew Weeks, Frank Siegert, Thomas Henlich, Sergei Babkin \n"
+" teisendab ttf-fondifailid afm- ja pfb-fontideks\n"
"\n"
-"If you do not know what to choose, stay with the default option."
-msgstr ""
-"Nüüd on aeg valida masinale meelepärane turvatase. Rusikareeglina peaks\n"
-"turvatase olema seda kõrgem, mida ligipääsule avatum arvuti on ja mida "
-"rohkem\n"
-"leidub sellel olulise tähtsusega andmeid. Samas tähendab kõrgem turvatase\n"
-"üldiselt kasutamislihtsuse kahanemist.\n"
"\n"
-"Kui Te ei tea, mida valida, leppige pakutud võimalusega."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "Laadi flopilt"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "See printer tuvastati automaatselt. "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Uses command %s"
-msgstr "Kasutades käsku %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
-msgstr "Alglaadimisflopi"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "Norra"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for new scanners ..."
-msgstr "Uute skännerite otsimine..."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Apache veebiserver"
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+"drakfonti tulevikukavatsused\n"
+" - Fontide importimine:\n"
+" pfb ( Adobe Type 1 binaarkujul )\n"
+" pfa ( Adobe Type 1 ASCII kujul )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" ja Bitmap (PCF, BDF ja SNF)\n"
+" - Omadused\n"
+" - Fontide paigaldamine suvalisest kataloogist\n"
+" - Windowsi fontide hankimine suvaliselt vfat-partitsioonilt\n"
+" - Fontide hankimine suvaliselt partitsioonilt\n"
+" - Suvalise fondi eemaldamine (iseg kui ei ole paigaldatud "
+"drakfonti abil)\n"
+" - Tugi\n"
+" - Xfs\n"
+" - Ghostscript ja printer\n"
+" - StarOffice ja printer\n"
+" - Abiword\n"
+"\t - Netscape\n"
+" - Koffice, Gnumeric, ... asja uuritakse\n"
+" - kõik printeri toetatud fondid\n"
+" - antialias teisenduse vahendusel Xfree86-s ... \n"
+"\t\t\t\tKDE toetusega.\n"
+"\t\t\t\ttulevase GNOME 2.1 toetusega\n"
+"Visuaalne kasutajaliides:\n"
+" Aknaliides:\n"
+" - Fondivalimisdialoogi vidin\n"
+" - käsunupud fondivalimisdialoogis (nagu praeguses "
+"kasutajaliideses).\n"
+" Käsunupud:\n"
+" - importimine windowsi partitsioonilt.\n"
+" importimine kõigilt FAT32 partitsioonidelt ja winnt/window/"
+"font otsimine\n"
+" ja kõigi importimine (duublite kustutamine), välja arvatud "
+"juhul, kui on juba olemas.\n"
+" - importimine kataloogist\n"
+" iga fondi puhul eelnev otsing, kas on juba olemas, ning "
+"originaali mittekustutamine.\n"
+" (asenda kõik, ei, puudub)\n"
+" ekspertvalikud:\n"
+" küsi kataloogi ja otsi, ega ei ole varem olemas\n"
+" kui on olemas, küsida: (asenda kõik, ei, puudub)\n"
+" - eemaldamine loendist fonditüübi kaupa\n"
+" Lisaekspertvalikud\n"
+" - toevalik: Ghostscript, StarOffice jne...\n"
+" kontrollinupp. (vaikimis kõigi kontroll)\n"
+" - printerifontide tugi...\n"
+"\n"
+"\n"
+
+#: ../../standalone/drakfont_.c:862
+msgid "Choose the applications that will support the fonts:"
+msgstr "Valige rakendused, millel on fontide tugi:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "protsessori alamtüüp (nn stepping'u number) "
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
+msgstr "Ghostscript"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "select path to restore (instead of /)"
-msgstr "Asukoht, kuhu taastada (kui ei ole /)"
+#: ../../standalone/drakfont_.c:877
+msgid "StarOffice"
+msgstr "StarOffice"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Configure bootsplash picture"
-msgstr "Käivituslogo pildi seadistamine"
+#: ../../standalone/drakfont_.c:884
+msgid "Abiword"
+msgstr "Abiword"
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr "Gruusia"
+#: ../../standalone/drakfont_.c:891
+msgid "Generic Printers"
+msgstr "Tavalised printerid"
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "Hiina"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
+msgstr "Valige fondifail või kataloog ja klõpsake 'Lisa'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr " (Kontrollige, et kõik printerid on ühendatud ja sisse lülitatud).\n"
+#: ../../standalone/drakfont_.c:1005
+msgid "Install List"
+msgstr "Paigaldusloend"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "Paigaldatud printerite andmete lugemine..."
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
+msgstr "kui olete kindel, klõpsake siia."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
-msgstr " Puhasta nüüd! "
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
+msgstr "kui mitte, siis siia."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "server"
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
+msgstr "Tühista kõigi valimine"
-#: ../../install_any.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Pange FAT-vormingus flopi seadmesse %s"
+#: ../../standalone/drakfont_.c:1116
+msgid "Selected All"
+msgstr "Kõigi valimine"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "jah tähendab, et protsessoril on matemaatika-kaasprotsessor"
+#: ../../standalone/drakfont_.c:1120
+msgid "Remove List"
+msgstr "Eemalda loend"
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Palun oodake... Rakendan seadistusi"
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+msgid "Initials tests"
+msgstr "Käivitustestid"
-# NOTE: this message will be displayed by grub at boot time; that is# using the BIOS font; that means cp437 charset on 99.99% of PC computers# out there. It is the nsuggested that for non latin languages an ascii# transliteration be used; or maybe the english text be used; as it is best## The lines must fit on screen, aka length < 80# and only one line per string for the GRUB messages##. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)#. -PO: and keep them smaller than 79 chars long
-#. -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
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Tere tulemast! Laadimisel aitab Teid GRUB!"
+#: ../../standalone/drakfont_.c:1145
+msgid "Copy fonts on your system"
+msgstr "Fontide kopeerimine Teie süsteemi"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "Grub"
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
+msgstr "Fontide paigaldamine ja teisendamine"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
-msgstr "SCSI kontrolerid"
+#: ../../standalone/drakfont_.c:1153
+msgid "Post Install"
+msgstr "Paigaldusjärgsed seadistused"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr " LPD serveril \"%s\", printer \"%s\""
+#: ../../standalone/drakfont_.c:1178
+msgid "Remove fonts on your system"
+msgstr "Fontide eemaldamine Teie süsteemist"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Kuvahalduri valimine"
+#: ../../standalone/drakfont_.c:1182
+msgid "Post Uninstall"
+msgstr "Eemaldamisjärgsed seadistused"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Zefoconf masina nimi"
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
+msgstr "Internetiühenduse jagamine"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
-msgstr "Isetehtud setup/crontab kirje:"
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Vabandust, me toetame ainult 2.4 kerneleid."
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP aadress peab olema kujul 1.2.3.4"
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Internetiühenduse jagamine töötab"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Trükkimissüsteemi CUPS seadistamine"
+#: ../../standalone/drakgw_.c:126
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+"Internetiühenduse jagamine on juba seadistatud\n"
+"ja see on ka praegu aktiivne.\n"
+"\n"
+"Mida soovite ette võtta?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "Ecuador"
+#: ../../standalone/drakgw_.c:130
+msgid "disable"
+msgstr "keelata"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Add an item"
-msgstr "Lisa element"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
+msgstr "tühistada"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Selle arvuti külge ühendatud printerid on teistele kättesaadavad"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "reconfigure"
+msgstr "uuesti seadistada"
-#: ../../lang.pm:1
-#, c-format
-msgid "China (Hong Kong)"
-msgstr "Hiina (Hongkong)"
+#: ../../standalone/drakgw_.c:133
+msgid "Disabling servers..."
+msgstr "Serverite peatamine..."
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Ei suuda leida laadefaili '%s'."
+#: ../../standalone/drakgw_.c:142
+msgid "Internet connection sharing is now disabled."
+msgstr "Internetiühendust nüüd enam ei jagata."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"Helikaarti ei leitud. Proovige see leida pärast paigaldust \"harddrake\" abil"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Internetiühendust hetkel ei jagata"
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:150
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"Määrati vale port: %s\n"
-"Õige määrang on \"port/tcp\" või \"port/udp\", \n"
-"kus port on number 1 ja 65535 vahel."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Shell"
-msgstr "Käsurida"
+"Internetiühenduse jagamine on juba seadistatud,\n"
+"aga hetkel on see keelatud.\n"
+"\n"
+"Mida soovite ette võtta?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sao Tome and Principe"
-msgstr "Sao Tomé ja Principe"
+#: ../../standalone/drakgw_.c:154
+msgid "enable"
+msgstr "lubada"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
+msgstr "Serverite käivitamine..."
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
-msgstr "Sisselogimine kasutajanimega %s ebaõnnestus (vale parool?)"
+#: ../../standalone/drakgw_.c:166
+msgid "Internet connection sharing is now enabled."
+msgstr "Internetiühenduse jagamine nüüd töötab."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "Aserbaidžaani (ladina)"
+#: ../../standalone/drakgw_.c:183
+msgid ""
+"You are about to configure your computer to share its Internet connection.\n"
+"With that feature, other computers on your local network will be able to use "
+"this computer's Internet connection.\n"
+"\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
+msgstr ""
+"Nüüd on Teil võimalik seadistada oma arvutit internetiühendust jagama.\n"
+"Selle võimaluse abil saavad teised Teie kohtvõrgu arvutid kasutada selle "
+"masina internetiühendust.\n"
+"\n"
+"Kontrollige enne jätkamist, et olete seadistanud oma võrgu/internetiühenduse "
+"drakconnecti abil.\n"
+"\n"
+"Märkus: kohtvõrgu (LAN) jaoks on vajalik eraldi võrgukaardi olemasolu."
-#: ../../standalone/drakbug:1
+#: ../../standalone/drakgw_.c:211
#, c-format
-msgid "Package not installed"
-msgstr "Pakett ei ole paigaldatud"
+msgid "Interface %s (using module %s)"
+msgstr "Liides %s (kasutab moodulit %s)"
-#: ../../lang.pm:1
+#: ../../standalone/drakgw_.c:212
#, c-format
-msgid "American Samoa"
-msgstr "Ameerika Samoa"
+msgid "Interface %s"
+msgstr "Liides %s"
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Become a MandrakeExpert"
-msgstr "Omandage Mandrake eksperdi kuulsus"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr "Teie süsteemis ei ole võrgukaarti!"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Protocol"
-msgstr "Protokoll"
+#: ../../standalone/drakgw_.c:221
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"Ühtki võrgukaarti ei suudetud tuvastada. Palun kasutage selleks riistvara "
+"seadistajat."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Fontide kopeerimine Teie süsteemi"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr "Võrguliides"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakgw_.c:228
#, c-format
-msgid "Harddrake help"
-msgstr "HardDrake abi"
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"%s\n"
+"\n"
+"I am about to setup your Local Area Network with that adapter."
+msgstr ""
+"Teil on vaid üks seadistatud võrguliides:\n"
+"\n"
+"%s\n"
+"\n"
+"Kohtvõrgu sätted seotakse selle liidesega."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomipsid"
+#: ../../standalone/drakgw_.c:235
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr "Palun valige, millist võrguliidest soovite kasutada kohtvõrgu jaoks."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Mandrake terminaliserveri seadistused"
+#: ../../standalone/drakgw_.c:261
+msgid "Network interface already configured"
+msgstr "Võrguliides on juba seadistatud"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:262
#, c-format
msgid ""
+"Warning, the network adapter (%s) is already configured.\n"
"\n"
-" DrakBackup Report Details\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 ""
+"Hoiatus: võrgukaart (%s) on juba seadistatud.\n"
"\n"
-" DrakBackupi raporti üksikasjad\n"
-"\n"
+"Kas soovite ette võtta automaatse ümberseadistamine?\n"
"\n"
+"Seda saab teha ka käsitsi, aga siis peate kindlasti teadma, mida teete."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
-msgstr "Taasta kõik varukoopiad"
+#: ../../standalone/drakgw_.c:267
+msgid "Automatic reconfiguration"
+msgstr "Automaatne ümberseadistamine"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
-msgstr " paralleelpordis #%s"
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
+msgstr "Ei (ainult eksperdile)"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
-msgstr ""
-"Määrab salasõna minimaalse pikkuse ning numbrite ja suurtähtede minimaalse "
-"hulga"
+#: ../../standalone/drakgw_.c:268
+msgid "Show current interface configuration"
+msgstr "Liidese praeguste sätete näitamine"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr "Kui on 'jah', kontrollitakse avatud porte."
+#: ../../standalone/drakgw_.c:269
+msgid "Current interface configuration"
+msgstr "Liidese praegused sätted"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:270
#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Andmekandja puhastamine võtab mõni hetk aega"
+msgid ""
+"Current configuration of `%s':\n"
+"\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
+msgstr ""
+"'%s' praegused sätted:\n"
+"\n"
+"Võrk: %s\n"
+"IP aadress: %s\n"
+"IP omistamine: %s\n"
+"Draiver: %s"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "Seda paketti ei saa valida/valimata jätta"
+#: ../../standalone/drakgw_.c:283
+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"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
+"\n"
+msgstr ""
+"Teie praegused sätted on võimalik säilitada ja eeldada, et DHCP server on "
+"juba seadistatud. Sellisel juhul kontrollige, et võrk, mida kasutate "
+"kohtvõrgu tarbeks, on õigesti tuvastatud. Seda ei hakata ümber seadistama "
+"ega Teie DHCP serveri sätteid muutma.\n"
+"\n"
+"Vaikimisi DNS kirje on tulemüüri poolt seadistatud puhverdav nimeserver. See "
+"on võimalik asendada näiteks Teie ISP DNSi IP-ga.\n"
+"\t\t \n"
+"Vastasel juhul seadistan Teie liidese ümber ja seadistan (ümber) ka DHCP "
+"serveri.\n"
+"\n"
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "Hoiatus"
+#: ../../standalone/drakgw_.c:290
+msgid "Local Network adress"
+msgstr "Kohtvõrgu aadress"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakgw_.c:294
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"
-"- Other Files:\n"
msgstr ""
+"DHCP serveri sätted.\n"
+"\n"
+"Siin saab valida erinevaid võimalusi DHCP serveri seadistustele.\n"
+"Kui te ei tea mõne valiku tähendust, jätke see puutumata.\n"
"\n"
-"- Muud failid:\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name"
-msgstr "Kaugarvuti nimi"
+#: ../../standalone/drakgw_.c:300
+msgid "(This) DHCP Server IP"
+msgstr "(Selle) DHCP serveri IP"
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr "ligipääs X-i rakendustele"
+#: ../../standalone/drakgw_.c:301
+msgid "The DNS Server IP"
+msgstr "Nimeserveri IP"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "Vaba ruumi arvutamine Windowsi partitsioonil"
+#: ../../standalone/drakgw_.c:302
+msgid "The internal domain name"
+msgstr "Sisemine domeeninimi"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr "/Vä_rskenda"
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
+msgstr "DHCP vahemiku algus"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Italy"
-msgstr "Itaalia"
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
+msgstr "DHCP vahemiku lõpp"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
-msgstr "Kaimanisaared"
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
+msgstr "Vaikerendiaeg (sekundites)"
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "viga %s lahutamisel: %s"
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
+msgstr "Maksimaalne rendiaeg (sekundites)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "Printeri nimi"
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
+msgstr "Liidese ja DHCP serveri ümberseadistamine"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
-msgstr "keelata"
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
+msgstr "Kohtvõrgu lõpus ei seisa '0', visatakse minema."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid "Do it!"
-msgstr "Nüüd!"
+msgid "Potential LAN address conflict found in current config of %s!\n"
+msgstr "Võimalik kohtvõrgu aadressi konflikt %s konfiguratsioonis!\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
-msgstr "%s ei vasta"
+#: ../../standalone/drakgw_.c:335
+msgid "Configuring..."
+msgstr "Seadistamine..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select model manually"
-msgstr "Mudeli valik käsitsi"
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "Häälestan skriptid, paigaldan tarkvara, käivitan serverid..."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakgw_.c:372
#, c-format
-msgid "Format"
-msgstr "Vorminda"
+msgid "Problems installing package %s"
+msgstr "Probleemid paketi %s paigaldamisel"
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:505
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'"
+"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 ""
-"Kõige tavalisem ühendusviis ADSL jaoks on pppoe.\n"
-"Mõnel juhul aga kasutatakse pptp-d, harva dhcp-d.\n"
-"Kui Te ei tea, kasutage pppoe-d"
+"Kõik on seadistatud.\n"
+"Nüüd saate internetiühendust jagada teistele kohtvõrgu arvutitele, kasutades "
+"neil automaatset konfigureerimist (DHCP)."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
-msgstr "Mitmesugust"
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
+msgstr "Internetiühenduse jagamine on juba seadistatud, aga hetkel keelatud."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
-msgstr "Zip"
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
+msgstr ""
+"Internetiühenduse jagamine on juba seadistatud ja see on praegu aktiivne."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
-msgstr "Vasakpoolne Alt-klahv"
+#: ../../standalone/drakgw_.c:525
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Internetiühenduse jagamist ei ole kunagi seadistatud."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Load setting"
-msgstr "Koormuse seadistused"
+#: ../../standalone/drakgw_.c:531
+msgid "Internet connection sharing configuration"
+msgstr "Internetiühenduse jagamise seadistamine"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:539
#, c-format
msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
"\n"
+"%s\n"
"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
+"Click on Configure to launch the setup wizard."
msgstr ""
+"Internetiühenduse jagamise nõustaja\n"
"\n"
+"%s\n"
"\n"
-"Printerdrake ei suutnud määrata Teie printeri %s mudelit. Valige palun õige "
-"mudel nimekirjast."
+"Klõpsake nõustaja käivitamiseks nupul 'Seadista'."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Määra valitud printer vaikeprinteriks"
+#: ../../standalone/drakperm_.c:36
+msgid "group"
+msgstr "grupp"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:36
+msgid "path"
+msgstr "asukoht"
+
+#: ../../standalone/drakperm_.c:36
+msgid "permissions"
+msgstr "loabitid"
+
+#: ../../standalone/drakperm_.c:36
+msgid "user"
+msgstr "kasutaja"
+
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
+msgstr "Üles"
+
+#: ../../standalone/drakperm_.c:44
+msgid "delete"
+msgstr "kustuta"
+
+#: ../../standalone/drakperm_.c:45
+msgid "edit"
+msgstr "muuda"
+
+#: ../../standalone/drakperm_.c:46
+msgid "Down"
+msgstr "Alla"
+
+#: ../../standalone/drakperm_.c:47
+msgid "add a rule"
+msgstr "lisa reegel"
+
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
+msgstr "loafaili valik vaatamiseks/muutmiseks"
+
+#: ../../standalone/drakperm_.c:51
msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+"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 ""
-"\n"
-"Märkige printer(id), mida soovite üle kanda, ning vajutage \n"
-"\"Kanna üle\"."
+"Drakpermi saab kasutada failide vaatamiseks, et mseci abil parandada "
+"loabitte, omanikke ja gruppe.\n"
+"Võite ka muuta oma reegleid, mis tühistavad vaikereeglid."
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
+#: ../../standalone/drakperm_.c:56
+msgid "Add a new rule at the end"
+msgstr "Uue reegli lisamine lõppu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
-msgstr "Albaania"
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
+msgstr "Muuda praegust reeglit"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "Leedu"
+#: ../../standalone/drakperm_.c:58
+msgid "Up selected rule one level"
+msgstr "Valitud reegel üks tase ülespoole"
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "Kompaktne"
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
+msgstr "Valitud reegel üks tase allapoole"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Tuvastati mudel: %s %s"
+#: ../../standalone/drakperm_.c:60
+msgid "Delete selected rule"
+msgstr "Kustuta valitud reegel"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
-msgstr "MandrakeSoft on välja valinud parima tarkvara just Teile"
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
+msgstr "lehitse"
-#: ../../any.pm:1
-#, c-format
-msgid "Local files"
-msgstr "Kohalikud failid"
+#: ../../standalone/drakperm_.c:231
+msgid "Current user"
+msgstr "Praegune kasutaja"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "võib olla"
+#: ../../standalone/drakperm_.c:236
+msgid "Permissions"
+msgstr "Loabitid"
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
-msgstr "Panama"
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
+msgstr "Asukoht"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Can't open %s!"
-msgstr "%s avamine ebaõnnestus!"
+#: ../../standalone/drakperm_.c:238
+msgid "Property"
+msgstr "Omadus"
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
+msgstr "kleepumisbitt"
+
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
+msgstr "Set-UID"
+
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
+msgstr "Set-GID"
+
+#: ../../standalone/drakperm_.c:296
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?"
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
msgstr ""
-"Paistab, et Teie videokaardil on TV OUT väljund.\n"
-"Seda on võimalik kasutada järgnevalt:\n"
-"\n"
-"Ühendage arvuti televiisoriga enne alglaadimist ja valige laademenüüst\n"
-" \"TVout\" \n"
-"\n"
-"Kas soovite seda kasutama hakata?"
+"Kasutusel kataloogis:\n"
+" ainult faili või kataloogi omanik saab seda kustutada"
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "Monitor"
+#: ../../standalone/drakperm_.c:297
+msgid "Use owner id for execution"
+msgstr "Käivitamiseks kasutatakse omaniku id-d"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:298
+msgid "Use group id for execution"
+msgstr "Käivitamiseks kasutatakse grupi id-d"
+
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
+msgstr "märkimise korral ei muudeta omanikku ja gruppi"
+
+#: ../../standalone/drakperm_.c:304
+msgid "Path selection"
+msgstr "Asukoha valik"
+
+#: ../../standalone/drakperm_.c:350
+msgid "user :"
+msgstr "kasutaja :"
+
+#: ../../standalone/drakperm_.c:352
+msgid "group :"
+msgstr "grupp :"
+
+#: ../../standalone/draksound_.c:46
+msgid "No Sound Card detected!"
+msgstr "Helikaarti ei leitud!"
+
+#: ../../standalone/draksound_.c:47
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"
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Asusite seadistama trükkimist Windowsi parooliga kontole. Samba kliendi "
-"arhitektuuri vea tõttu pannakse parool tavalise tekstina Samba kliendi "
-"käsureale, mida see kasutab trükitöö saatmiseks Windowsi serverile. Seejärel "
-"on tolle masina igal kasutajal võimalik parooli ekraanil näha näiteks käsuga "
-"\"ps auxwww\".\n"
+"Teie masinas ei leitud helikaarti. Kontrollige palun, et Linuxi toega "
+"helikaart on korrektselt ühendatud.\n"
"\n"
-"Soovitame selle asemel kasutada üht alltoodud alternatiividest (igatahes "
-"tuleks teil tagada, et Teie Windowsi serverile pääsevad ligi ainult "
-"kohtvõrgu masinad; selleks sobib hästi kasutada tulemüüri):\n"
"\n"
-"Kasutage Windowsi serveril paroolitut kontot, olgu selleks konto \"GUEST\" "
-"või spetsiaalne trükkimiseks kasutatav konto. Ärge eemaldage aga "
-"paroolikaitset oma erakontolt ega administraatori kontolt.\n"
+"Meie riistvara andmebaasi saab näha aadressil:\n"
"\n"
-"Seadistage Windowsi server nii, et printer oleks kasutatav LPD protokolliga. "
-"Seejärel seadistage trükkimine Teie masinas Printerdrakes ühendusviisiga \"%s"
-"\".\n"
"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tuhat värvi (16 bitti)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/draksound_.c:54
msgid ""
"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-"\n"
-"- Salvestamine kõvakettale asukohta: %s\n"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Fontide eemaldamine Teie süsteemist"
-
-#: ../../standalone/drakgw:1
-#, 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."
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-"Hoiatus: võrgukaart (%s) on juba seadistatud.\n"
"\n"
-"Kas soovite ette võtta automaatse ümberseadistamine?\n"
"\n"
-"Seda saab teha ka käsitsi, aga siis peate kindlasti teadma, mida teete."
+"\n"
+"Märkus: kui Teil on ISA PnP helikaart, tuleb kasutada rakendust sndconfig. "
+"Selleks kirjutage käsureale \"sndconfig\"."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "X käivitub koos süsteemiga"
+#: ../../standalone/draksplash_.c:21
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr ""
+"korrektseks töötamiseks on vajalik pakett 'ImageMagick'.\n"
+"Klõpsake \"Olgu\" paketi 'ImageMagick' paigaldamiseks\n"
+"või \"Katkesta\" väljumiseks."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
-msgstr " adsl"
+#: ../../standalone/draksplash_.c:67
+msgid "first step creation"
+msgstr "esimene samm loomine"
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Ei ole piisavalt partitsioone RAID-%d jaoks\n"
+#: ../../standalone/draksplash_.c:70
+msgid "final resolution"
+msgstr "lõplik kuvatihedus"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "flopi vorming, mida seade tunnustab"
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+msgid "choose image file"
+msgstr "valige pildifail"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "Püsivara kopeerimine ebaõnnestus, faili %s ei leitud"
+#: ../../standalone/draksplash_.c:72
+msgid "Theme name"
+msgstr "Teema nimi"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: true"
-msgstr "kohalik seadistus: true"
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
+msgstr "Lehitse"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
+msgid "Configure bootsplash picture"
+msgstr "Käivituslogo pildi seadistamine"
+
+#: ../../standalone/draksplash_.c:90
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."
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
-"Seadistatud on järgmised printerid. Topeltklõps printeril võimaldab muuta "
-"selle seadistusi, teha see vaikeprinteriks või vaadata selle infot."
+"tekstikasti x-koordinaat\n"
+"arvulises väljenduses"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connected"
-msgstr "Ühendatud"
+#: ../../standalone/draksplash_.c:91
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr ""
+"tekstikasti y-koordinaat\n"
+"arvulises väljenduses"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
-msgstr "Makedoonia"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
+msgstr "teksti laius"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "Mali"
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
+msgstr "tekstikasti kõrgus"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
-msgstr "Sillad ja kontrollerid"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
+"edenemisriba ülemise vasaku\n"
+"nurga x-koordinaat"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "/Fail/_Salvesta"
+#: ../../standalone/draksplash_.c:95
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
+"edenemisriba ülemise vasaku\n"
+"nurga y-koordinaat"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "No details"
-msgstr "Üksikasjadeta"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
+msgstr "edenemisriba laius"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "väga kena"
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
+msgstr "edenemisriba kõrgus"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
+msgstr "edenemisriba värv"
+
+#: ../../standalone/draksplash_.c:113
msgid "Preview"
-msgstr "Eelvaatlus"
+msgstr "Eelvaade"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Remote Control"
-msgstr "Kaugjuhtimine"
+#: ../../standalone/draksplash_.c:115
+msgid "Save theme"
+msgstr "Teema salvestamine"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select media for backup..."
-msgstr "Valige palun varundamiseks andmekandja..."
+#: ../../standalone/draksplash_.c:116
+msgid "Choose color"
+msgstr "Värvi valimine"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
-msgstr "Vigane e-posti aadress"
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
+msgstr "Logo näitamine konsoolil"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 server: %s\n"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
+msgstr "Vaikimisi kerneli sõnumi keelamine"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, c-format
-msgid "Allow Thin Clients"
-msgstr "Luba õhukesi kliente"
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr "Sellel teemal ei ole veel ühtegi käivituslogo %s !"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Gruusia (\"vene\" asetus)"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
+msgstr "Käivituslogo teema salvestamine..."
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_Eelistused"
+#: ../../standalone/draksplash_.c:428
+msgid "ProgressBar color selection"
+msgstr "Edenemisriba värvi valimine"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Your printer model"
-msgstr "Teie printeri mudel"
+#: ../../standalone/draksplash_.c:449
+msgid "You must choose an image file first!"
+msgstr "Esmalt tuleb valida pildifail!"
+
+#: ../../standalone/draksplash_.c:458
+msgid "Generating preview ..."
+msgstr "Eelvaate tekitamine ..."
-#: ../../any.pm:1
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "%s käivituslogo (%s) eelvaade"
+
+#: ../../standalone/drakxtv_.c:46
msgid ""
+"XawTV isn't installed!\n"
"\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)."
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
+"XawTV ei ole paigaldatud!\n"
"\n"
"\n"
-"(HOIATUS! Te kasutate juurpartitsioonil XFS-i, mistõttu\n"
-"alglaadimisketta loomine 1,44MB-sele flopile tõenäoliselt\n"
-"ei õnnestu, sest XFS vajab väga suurt draiverit)."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"Kui Teil on TV-kaart, kuid DrakX ei avastanud seda (failis \"/etc/modules\"\n"
+"puudub nii moodul bttv kui saa7134) ega paigaldanud ka xawtv-d, saatke\n"
+"palun käsu \"lspcidrake -v -f\" tulemused aadressile \"install"
+"\\@mandrakesoft.com\",\n"
+"märkides subjektireale \"Undetected TV card\".\n"
"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
"\n"
-"- Pärast varundamist kustutatakse kõvakettalt tar-failid.\n"
+"Te võite selle paigaldada, andes administraatorina konsoolis käsu\n"
+"\"urpmi xawtv\"."
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
-msgstr ""
-"CD- ega DVD-laadefaili ei leitud, palun kopeerige paigaldusprogramm ja rpm-"
-"failid."
+#: ../../standalone/drakxtv_.c:63
+msgid "Canada (cable)"
+msgstr "Kanada (kaabel)"
-#: ../advertising/04-configuration.pl:1
-#, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "Mandrake paljude võimalustega seadistusvahend"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
+msgstr "USA (tele)"
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Save"
-msgstr "Salvesta"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
+msgstr "USA (kaabel)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
-msgstr "Sel %s skänneril puudub tugi"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
+msgstr "USA (kaabel-hrc)"
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr "Laeb draiverid USB-seadmete tarbeks."
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
+msgstr "Hiina (tele)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Disk"
-msgstr "Ketas"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
+msgstr "Jaapan (tele)"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Printeri seadme URI"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
+msgstr "Jaapan (kaabel)"
-#: ../advertising/01-thanks.pl:1
-#, 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."
-msgstr ""
-"MandrakeSofti edu tugineb vaba tarkvara põhimõtte järgimisele. Teie uus "
-"operatsioonisüsteem on üleilmse Linuxi kogukonna ühise töö tulemus."
+#: ../../standalone/drakxtv_.c:65
+msgid "East Europe"
+msgstr "Ida-Euroopa"
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "Iisrael"
+#: ../../standalone/drakxtv_.c:65
+msgid "France [SECAM]"
+msgstr "Prantsusmaa [SECAM]"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "Prantsuse Guajaana"
+#: ../../standalone/drakxtv_.c:65
+msgid "Ireland"
+msgstr "Iirimaa"
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "default:LTR"
+#: ../../standalone/drakxtv_.c:65
+msgid "West Europe"
+msgstr "Lääne-Euroopa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
-msgstr "Sisestama peab käsurea!"
+#: ../../standalone/drakxtv_.c:66
+msgid "Australia"
+msgstr "Austraalia"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
-msgstr "Kasutaja valik käsitsi"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
+msgstr "Uus-Meremaa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Printeri seadistuste ülekandmine"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
+msgstr "Lõuna-Aafrika"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Kas soovite trükkimist lubada ülalmainitud printeritel?\n"
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
+msgstr "Argentina"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of suid root files"
-msgstr "Suid root failide lisamise/eemaldamise kontroll"
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
+msgstr "Austraalia Optus kaabli-TV"
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:102
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."
+"Please,\n"
+"type in your tv norm and country"
msgstr ""
-"Et see töötaks W2K primaarse domeenikontrolleri (PDC) puhul, on Teil vaja "
-"administraatori privileege, et käivitada serveril käsk \"C:\\>net "
-"localgroup \"Pre-Windows 2000 Compatible Access\" everyone /add\" ja teha "
-"sellele alglaadimine.\n"
-"Samuti on Teil vaja domeeni administraatori kasutajanime/parooli, et "
-"ühendada see masin Windows(TM) domeeniga.\n"
-"Kui võrguühendus ei ole veel seadistatud, üritab DrakX domeeni ühenduda "
-"pärast võrgu seadistamist.\n"
-"Kui midagi peaks ebaõnnestuma ja domeeni autentimine ei tööta, käivitage "
-"pärast alglaadimist käsurealt 'smbpasswd -j DOMEEN -U KASUTAJA%%PAROOL', kus "
-"DOMEEN on Teie Windows(TM) domeen ja KASUTAJA%%PAROOL on domeeni "
-"administraator parooliga.\n"
-"Käsk 'wbinfo -t' võimaldab kontrollida, kas domeeni autentimisfraasid on "
-"õiged."
+"Palun märkige ära\n"
+"oma telesüsteem ja riik"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (port %s)"
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
+msgstr "Telesüsteem:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Võrguühenduse kasutamine varundamiseks"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
+msgstr "Piirkond:"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Kernel version"
-msgstr "Kerneli versioon"
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
+msgstr "Telekanalite otsingu edenemine ..."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
+msgstr "Telekanalite otsing"
+
+#: ../../standalone/drakxtv_.c:120
+msgid "There was an error while scanning for TV channels"
+msgstr "Telekanalite otsingul tekkis viga"
+
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
+msgstr "XawTV ei ole paigaldatud!"
+
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
+msgstr "Peatse jällenägemiseni!"
+
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Nüüd võite xawtv tööle panna (X Window keskkonnas!) !\n"
+
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
+msgstr "TV-kaarti ei leitud!"
+
+#: ../../standalone/drakxtv_.c:148
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"
+"No TV Card has been detected on your machine. Please verify that a Linux-"
+"supported Video/TV Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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."
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Nüüd on aeg määrata rakendused, mida soovite oma süsteemi paigaldada.\n"
-"Mandrake Linux pakub tuhandeid pakette ja mõistagi ei eelda keegi, et Te\n"
-"neid kõiki juba ette tunneksite.\n"
-"\n"
-"Paketid on rühmitatud gruppidesse vastavalt nende kasutusalale. Grupid ise "
-"on\n"
-"jagatud nelja sektsiooni:\n"
-"\n"
-" * \"%s\": kui kavatsete kasutada arvutit tööjaamana, valige siit "
-"sektsioonist\n"
-"üks või enam gruppidest;\n"
-"\n"
-" * \"%s\": kui kavatsete kasutada arvutit programmeerimiseks, valige\n"
-"soovitud grupid siit;\n"
-"\n"
-" * \"%s\": kui arvuti peab täitma serveri ülesandeid, saate siit valida,\n"
-"milliseid kõige enam levinud teenuseid oma masinale paigaldada;\n"
-"\n"
-" * \"%s\": lõppeks saate siit valida meelepärase graafilise\n"
-"töökeskkonna. Neist tuleb valida vähemalt üks, kui soovite kasutada "
-"graafilist tööjaama!\n"
-"\n"
-"Hiire liigutamine grupi nimele toob nähtavale selle lühikirjelduse. Kui "
-"olete\n"
-"tavapärast paigaldust tehes kõik grupid valimata jätnud (seega talitanud\n"
-"vastupidi uuenduse mõttele), ilmub dialoog, mis pakub mitmesuguseid\n"
-"võimalusi minimaalseks paigalduseks.\n"
+"Teie masinal ei leitud TV-kaarti. Kontrollige palun, et Linuxi toega video/"
+"TV-kaart on korrektselt ühendatud.\n"
"\n"
-" * \"%s\": paigaldatakse minimaalselt graafiliseks töölauaks vajalikud "
-"paketid;\n"
"\n"
-" * \"%s\": paigaldatakse baassüsteem ning põhilised\n"
-"utiliidid ja nende dokumentatsioon. See peaks sobima näiteks serverile;\n"
-"\n"
-" * \"%s\": paigaldatakse minimaalne hulk pakette,\n"
-"mida on vaja Linuxi töötamiseks (vaid käsurealt). See võtab ruumi umbes\n"
-"65 MB.\n"
+"Meie riistvara andmebaasi saate külastada aadressil:\n"
"\n"
-"Ära märkida saab kasti \"%s\", mis on kasuks, kui\n"
-"tunnete pakette, mida Teile pakutakse, või kui soovite totaalset kontrolli\n"
-"selle üle, mida Teie masinasse paigaldatakse.\n"
"\n"
-"Kui käivitasite paigalduse resiimis \"%s\", võite jätta kõik grupid\n"
-"valimata, mis takistab uute pakettide paigaldamist. Seda tasub tarvitada\n"
-"näiteks olemasoleva süsteemi parandamisel või värskendamisel."
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "Kasutaja õige"
+"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
-msgstr "Server"
+#: ../../standalone/harddrake2_.c:17
+msgid "Alternative drivers"
+msgstr "Alternatiivsed draiverid"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
-msgstr "Vasakpoolne Shift-klahv"
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
+msgstr "selle helikaardi alternatiivsete draiverite loend"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " local network"
-msgstr " kohalik võrk"
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
+msgstr "Siin"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "Halb valik, proovige palun uuesti\n"
+#: ../../standalone/harddrake2_.c:21
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr "see on füüsiline siin, millega seade on ühendatud (nt: PCI, USB, ...)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
-msgstr "Syslog-i teated saadetakse konsoolile 12"
+#: ../../standalone/harddrake2_.c:22
+msgid "Channel"
+msgstr "Kanal"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search new servers"
-msgstr "Uute serverite otsing"
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
+msgstr "EIDE/SCSI kanal"
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
-msgstr "Heard ja McDonald"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
+msgstr "Bogomipsid"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
-msgstr "Alternatiivne juhtprogramm puudub"
+#: ../../standalone/harddrake2_.c:23
+msgid ""
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
+msgstr ""
+"GNU/Linuxi kernel peab alglaadimise ajal ajaarvesti lähtestamiseks\n"
+"\tsooritama kalkulatsioonisilmuse. Selle tulemus salvestatakse "
+"bogomipsides, mis kujutab endast omamoodi CPU \"jõudlustesti\"."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "Tavakasutaja > Ekspert"
+#: ../../standalone/harddrake2_.c:26
+msgid "Bus identification"
+msgstr "Siinitunnus"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
-msgstr "(sellel masinal)"
+#: ../../standalone/harddrake2_.c:27
+msgid ""
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
+msgstr ""
+" -PCI- ja USB-seadmed: tootja, seade, allettevõtja ja allseadme PCI/USB id-d"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Lüüsi aadress peab olema kujul 1.2.3.4"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
+msgstr "Asukoht siinil"
-#: ../../network/modem.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:30
msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
+"- 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 ""
-"Leiti \"%s\" kiibil põhinev \"winmodem\". Kas paigaldada vajalik tarkvara?"
+" -pci seadmed: näitab PCI pesa, seadet ja kaardi funktsiooni\n"
+"- eide seadmed: seade on kas ülem või allutatu\n"
+"- scsi seadmed: scsi siin ja scsi seadme id-d"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Tuvastan juba paigaldatud pakette..."
+#: ../../standalone/harddrake2_.c:33
+msgid "Cache size"
+msgstr "Puhvri suurus"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Diferentsvarunduse kasutamine"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
+msgstr "(Teise taseme) CPU puhvri suurus"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Driver"
-msgstr "Juhtprogramm"
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
+msgstr "\"Koomaviga\":"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf sooritab mõnikord alglaadimise ajal mitmesuguseid\n"
-"asju süsteemi seadistuse säilitamiseks."
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
+msgstr "Kas sel CPU-l on Cyrix 6x86 \"koomaviga\" ?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVD-R device"
-msgstr "DVD-R seade"
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
+msgstr "Cpuid perekond"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "lpd printserver"
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
+msgstr "CPU perekond (nt 6, kui on i686)"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
-"Enne fontide paigaldamist kontrollige, et Teil on õigus neid oma süsteemis "
-"kasutada ja paigaldada.\n"
-"\n"
-" Fonte saab paigaldada normaalsel meetodil. Haruharva võivad vigased fondid "
-"panna küll X Serveri hanguma."
+#: ../../standalone/harddrake2_.c:36
+msgid "Cpuid level"
+msgstr "Cpuid tase"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
+msgstr "Infotase, mida võib saada cpuid instruktsiooni vahendusel"
+
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
+msgstr "Sagedus (MHz)"
+
+#: ../../standalone/harddrake2_.c:37
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."
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
msgstr ""
-"Yaboot on alglaadur NewWorld Macintosh riistvara jaoks. See suudab laadida "
-"nii\n"
-"GNU/Linuxi, MacOSi kui MacOSX, kui need on Teil olemas. Tavaliselt\n"
-"tuvastatakse ja paigaldatakse need operatsioonisüsteemid korrektselt.\n"
-"Kui see nii ei ole, saate praegu käsitsi kirjeid lisada. Kuid olge "
-"parameetrite\n"
-"valikul hästi hoolas ja ettevaatlik.\n"
-"\n"
-"Yabooti põhivalikud on järgmised:\n"
-"\n"
-" * Initsialiseerimisteade: tavaline tekstisõnum, mida näidatakse enne\n"
-"alglaadimise käsurea ilmumist.\n"
-"\n"
-" * Alglaadimisseade: näitab, kuhu soovite panna info, mida läheb vaja\n"
-"GNU/Linuxi algkäivituseks. Üldiselt tuleks selle info tarbeks juba varem "
-"luua\n"
-"alglaadimispartitsioon.\n"
-"\n"
-" * Open Firmware viivitus: Erinevalt LiLo-st on yabooti puhul võimalik kaks\n"
-"viivitust. Esimest mõõdetakse sekundites ning selle ajal on Teil võimalik "
-"valida\n"
-"CD või OF alglaadimise, MacOS-i või Linuxi vahel.\n"
-"\n"
-" * Kernel alglaadimise viivitus: See on sarnane LiLo alglaadimise "
-"viivitusele.\n"
-"Pärast Linuxi valimist tekib 0,1-sekundiline viivitus, enne kui\n"
-"valitakse kerneli vaikekirjeldus.\n"
-"\n"
-" * Lubada alglaadimine CD-lt?: Selle valimine võimaldab alglaadimise "
-"käsureale\n"
-"``C'' kirjutades valida CD.\n"
-"\n"
-" * Lubada OF alglaadimine?: Selle valimine võimaldab alglaadimise käsureale\n"
-"``N'' kirjutades valida Open Firmware.\n"
-"\n"
-" * OS vaikimisi: Siin võite valida, milline operatsioonisüsteem laaditakse "
-"vaikimisi,\n"
-"kui Open Firmware viivitus läbi saab."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
-msgstr "Kolmapäev"
+"CPU sagedus megahertsides (seda võib ligilähedaselt samastada operatsioonide "
+"arvuga, mida CPU suudab sekundis sooritada)"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "Saksamaa"
+#: ../../standalone/harddrake2_.c:38
+msgid "This field describes the device"
+msgstr "See väli kirjeldab seadet"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
-msgstr "Austria"
+#: ../../standalone/harddrake2_.c:39
+msgid "Old device file"
+msgstr "Vana seadmefail"
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "Hiir puudub"
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
+msgstr "vana staatiline seadmenimi, mis oli kasutusel paketis dev"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "CD/DVD andmekandja suurus (Mb)"
+#: ../../standalone/harddrake2_.c:41
+msgid "New devfs device"
+msgstr "Uus devfs seade"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check permissions of files in the users' home"
-msgstr "Failide loabittide kontroll kasutajate kodukataloogis"
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr "uus dünaamiline seadmenimi, mille genereerib kerneli devfs"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr "Helikaardi seadistamiseks käivitage pärast paigaldust \"sndconfig\""
+#: ../../standalone/harddrake2_.c:43
+msgid "Module"
+msgstr "Moodul"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "Sulge puu"
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr "GNU/Linuxi kerneli moodul, mis käsitleb seda seadet"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Automaatpaigalduse seadistaja"
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
+msgstr "CPU lipud kerneli teatel"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "Võrgu seadistamine"
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
+msgstr "Lipud"
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "Kuhu soovite alglaaduri paigaldada?"
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
+msgstr "FDIV viga"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:46
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."
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-"Esimene samm on meelepärase keele valik. Siin saate valida keele,\n"
-"mida kasutada paigaldamisel ja hilisemas töös. Valige esmalt maa,\n"
-"kus asute, ning seejärel meelepärane keel.\n"
-"\n"
-"Klõpsates nupul \"%s\", võite valida muid keeli, mida Teie tööjaamale\n"
-"paigaldada. Teiste keelte valikul paigaldatakse vastava keele rakenduste\n"
-"ja dokumentatsiooni failid. Kui Teie masinal töötab näiteks kasutajaid\n"
-"Hispaaniast, valige puuvaates põhikeeleks eesti keel ning sektsioonis\n"
-"\"Muud\" märkige ära \"%s\".\n"
-"\n"
-"Paigaldada võib ka mitu keelt. Te võite neid valida mitu või kas või kõik,\n"
-"märkides ära kasti \"%s\". Keele toe valimine tähendab vastavaid\n"
-"tõlkeid, fonte, õigekirja kontrollijaid jne. Lisaks võimaldab kasti\n"
-"\"%s\" märkimine sundida süsteemi kasutama\n"
-"Unicode'i (UTF-8). Arvestage siiski, et see on esialgu eksperimentaalne\n"
-"võimalus. Kui valite erinevaid kodeeringuid nõudvaid keeli, paigaldatakse\n"
-"Unicode toetus nagunii.\n"
-"\n"
-"Ühelt keelelt teisele lülitumiseks võite administraatorina anda käsu\n"
-"\"/usr/sbin/localedrake\", mis võimaldab muuta kogu süsteemi keelt,\n"
-"või tavakasutajana muuta ainult enda kohta käivat keeleseadistust."
+"Varastel Inteli Pentium-kiipidel oli viga ujukomaprotsessoris, mis ei "
+"saavutanud vajalikku täpsust ujukomajagamist (FDIV) sooritades"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr "Mandrake Linuxi praegusel versioonil puudub %s tugi."
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
+msgstr "Kas FPU on olemas"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "tape"
-msgstr "lint"
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
+msgstr "jah tähendab, et protsessoril on matemaatika-kaasprotsessor"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr "DHCP klient"
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
+msgstr "KAS FPU-l on irq vektor"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Kasutajate nimekirja lubamine kuvahalduritel (kdm ja gdm)"
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
+msgstr "jah tähendab, et matemaatika-kaasprotsessoril on erandivektor"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech (jadaport, vana C7 tüüpi)"
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+msgstr ""
+"Varased pentiumid olid vigased ning hangusid F00F baidikoodi dekodeerimisel"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Taastamine failist %s ebaõnnestus: %s"
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
+msgstr "F00f viga"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
+msgstr "Seiskamisviga"
+
+#: ../../standalone/harddrake2_.c:53
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"
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-"Partitsioonitabel seadmel %s on loetamatu, liiga rikutud DrakX-i jaoks :(\n"
-"Proovin loetamatud kirjed puhastada, kuid ANDMED NEIL HÄVIVAD.\n"
-"Teine võimalus on keelata DrakX-il partitsioonitabeli muutmine.\n"
-"(Viga oli selline: %s)\n"
-"\n"
-"Kas olete nõus kõigi partitsioonide kaotamisega?\n"
+"Mõned varasemad i486DX-100 kiibid ei suutnud korralikult naasta tööresiimi, "
+"kui oli kasutatud käsklust \"seiska\" (\"halt\")"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Find Package"
-msgstr "Paketi otsimine"
+#: ../../standalone/harddrake2_.c:55
+msgid "Floppy format"
+msgstr "Flopi vorming"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr ""
-"Kas olete ikka kindel, et soovite seadistada trükkimist sellel masinal?\n"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
+msgstr "Flopi vorming, mida seade tunnustab"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "New devfs device"
-msgstr "Uus devfs seade"
+#: ../../standalone/harddrake2_.c:56
+msgid "Level"
+msgstr "Tase"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
-msgstr "VIGA: %s tekitamine ebaõnnestus."
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
+msgstr "CPU alampõlvkond"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Boot Style Configuration"
-msgstr "Alglaaduri stiil"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
+msgstr "Andmekandja klass"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Aja automaatne sünkroniseerimine"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
+msgstr "riistvaralise seadme klass"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "%s ei sisaldanud varukoopiafaile."
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+msgid "Model"
+msgstr "Mudel"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "Armeenia (foneetiline)"
+#: ../../standalone/harddrake2_.c:58
+msgid "hard disk model"
+msgstr "kõvaketta mudel"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Card model:"
-msgstr "Kaardi mudel:"
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
+msgstr "CPU genereerimine (nt 8, kui on PentiumIII, ...)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
-msgstr "Õhuke Klient"
+#: ../../standalone/harddrake2_.c:60
+msgid "Model name"
+msgstr "Mudeli nimi"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
-msgstr "Täname, et valisite Mandrake Linux 9.2"
+#: ../../standalone/harddrake2_.c:60
+msgid "Official vendor name of the cpu"
+msgstr "CPU ametlik tootja"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Start Server"
-msgstr "Serveri käivitamine"
+#: ../../standalone/harddrake2_.c:61
+msgid "Number of buttons"
+msgstr "Nuppude arv"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr "Türkmenistan"
+#: ../../standalone/harddrake2_.c:62
+msgid "Name"
+msgstr "Nimi"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "All remote machines"
-msgstr "Kõik kaugmasinad"
+#: ../../standalone/harddrake2_.c:63
+msgid "network printer port"
+msgstr "võrguprinteri port"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Install themes"
-msgstr "Teemade paigaldamine"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
+msgstr "Protsessori ID"
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
-msgstr "Hispaania"
+#: ../../standalone/harddrake2_.c:64
+msgid "the number of the processor"
+msgstr "protsessori number"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "Valmistun paigalduseks"
+#: ../../standalone/harddrake2_.c:65
+msgid "Model stepping"
+msgstr "Mudeli alamtüüp"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Muuda valitud masinat/võrku"
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
+msgstr "Protsessori alamtüüp (nn stepping'u number) "
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add User -->"
-msgstr "Lisa kasutaja -->"
+#: ../../standalone/harddrake2_.c:66
+msgid "The type of bus on which the mouse is connected"
+msgstr "Siinitüüp, millega hiir on ühendatud"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "Nauru"
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
+msgstr "seadme tootja nimi"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type fonts installation"
-msgstr "TrueType fontide paigaldamine"
+#: ../../standalone/harddrake2_.c:68
+msgid "the vendor name of the processor"
+msgstr "protsessori tootja nimi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Kohtvõrku ühendatud printerite automaattuvastus"
+#: ../../standalone/harddrake2_.c:82
+msgid "/_Quit"
+msgstr "/_Välju"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN configuration"
-msgstr "LAN seadistused"
+#: ../../standalone/harddrake2_.c:83
+msgid "/Autodetect _printers"
+msgstr "/_Printerite automaattuvastus"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "hard disk model"
-msgstr "kõvaketta mudel"
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
+msgstr "/_Eelistused"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/harddrake2_.c:85
+msgid "/Autodetect _modems"
+msgstr "/_Modemite automaattuvastus"
+
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
+msgstr "/_Abi"
+
+#: ../../standalone/harddrake2_.c:89
+msgid "/_Help..."
+msgstr "/_Abi..."
+
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
+msgstr "Harddrake abi"
+
+#: ../../standalone/harddrake2_.c:93
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"
+"Description of the fields:\n"
"\n"
-" \tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
msgstr ""
-" - /etc/exports haldamine:\n"
-" \t\tClusterNFS võimaldab eksportida juurfailisüsteemi kettata "
-"tööjaamadele.\n"
-" \t\tdrakTermServ loob korrektse kirje, mis võimaldab kettata "
-"tööjaamadele\n"
-" \t\tanonüümset ligipääsu juurfailisüsteemile.\n"
+"Väljade kirjeldus:\n"
"\n"
-" \t\tTüüpiline ekspordikirje ClusterNFS tarbeks näeb välja selline:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tkus SUBNET/MASK määrab Teie võrku."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Te ei saa haakepunkti %s jaoks kasutada LVM loogilist ketast"
+#: ../../standalone/harddrake2_.c:96
+msgid ""
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
+msgstr ""
+"Kui valite seadme, näete iga välja kohta seletusi paremal paneeli (\"Info\")"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "Windowsi fontide hankimine"
+#: ../../standalone/harddrake2_.c:96
+msgid "Select a device !"
+msgstr "Valige seade !"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
+msgstr "/_Vearaport"
-#: ../../standalone/drakclock:1
-#, c-format
+#: ../../standalone/harddrake2_.c:102
+msgid "/_About..."
+msgstr "/_Misvärk"
+
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
+msgstr "Harddrake info"
+
+#: ../../standalone/harddrake2_.c:105
msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
msgstr ""
-"Teie arvuti võib sünkroniseerida oma aja\n"
-"mõne internetis asuva ajaserveriga NTP vahendusel"
+"See on HardDrake - Mandrake riistvara seadistamisvahend.\n"
+"Versioon:"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "Iraani"
+#: ../../standalone/harddrake2_.c:106
+msgid "Author:"
+msgstr "Autor:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
-msgstr "Horvaatia"
+#: ../../standalone/harddrake2_.c:113
+msgid "Detection in progress"
+msgstr "Toimub tuvastamine..."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "Vaikelüüs:"
+#: ../../standalone/harddrake2_.c:119
+msgid "Harddrake2 version "
+msgstr "Harddrake2 versioon "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add server"
-msgstr "Serveri lisamine"
+#: ../../standalone/harddrake2_.c:126
+msgid "Detected hardware"
+msgstr "Tuvastatud riistvara"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name"
-msgstr "Võrguprinteri nimi"
+#: ../../standalone/harddrake2_.c:129
+msgid "Information"
+msgstr "Info"
-#: ../advertising/10-security.pl:1
+#: ../../standalone/harddrake2_.c:131
+msgid "Configure module"
+msgstr "Mooduli seadistamine"
+
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
+msgstr "Seadistamisvahendi kävitamine"
+
+#: ../../standalone/harddrake2_.c:143
#, c-format
+msgid "Running \"%s\" ..."
+msgstr "\"%s\" käib..."
+
+#: ../../standalone/harddrake2_.c:159
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 ""
-"MandrakeSoft on loonud erakordsed vahendid, mis aitavad üles seada kõigi "
-"aegade kõige turvalisema Linuxi versiooni: süsteemi turvahaldur Draksec ja "
-"võimas tulemüür üheskoos kahandavad väga märgatavalt rünnakute ohtu."
+"Click on a device in the left tree in order to get its information displayed "
+"here."
+msgstr "Klõps seadmel vasakus paneelis näitab siin selle kohta käivat infot."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "Seade: "
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
+msgstr "primaarne"
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
+#: ../../standalone/harddrake2_.c:231
+msgid "secondary"
+msgstr "sekundaarne"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "Lõppkasutaja litsentsileping"
+#: ../../standalone/harddrake2_.c:260
+msgid "/Autodetect modems"
+msgstr "/Modemite automaattuvastus"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "System Options"
-msgstr "Süsteemi parameetrid"
+#: ../../standalone/harddrake2_.c:260
+msgid "/Autodetect printers"
+msgstr "/Printerite automaattuvastus"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Please choose the desired security level"
-msgstr "Palun valige meelepärane turvatase"
+#: ../../standalone/harddrake2_.c:261
+msgid "/Options"
+msgstr "/Eelistused"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "See masin on juba nimekirjas ja seda ei ole võimalik uuesti lisada.\n"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "Palun valige klaviatuuriasetus."
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", USB printer"
-msgstr ", USB printer"
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr "Kas soovite konsoolil kasutada BackSpace-i kui Delete?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-"Mkbootdiski korrektne sulgemine ebaõnnestus: \n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+#: ../../standalone/livedrake_.c:18
+msgid "Change Cd-Rom"
+msgstr "Vahetage CD-ROM"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/livedrake_.c:19
msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
-"Muutvarundus salvestab ainult pärast viimast varundamist muudetud või loodud "
-"failid."
+"Palun sisestage paigaldus-CD lugejasse ja vajutage <Olgu>.\n"
+"Kui teil säherdust ei ole, vajutage <Katkesta>, et kiiruuendust vältida."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Valige rakendused, millel on fontide tugi:"
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Ei saa kiiruuendust alustada !!!\n"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "X-i seadistamine"
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
+msgstr "Muudatus on tehtud, aga selle rakendamiseks tuleb välja logida"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hd"
-msgstr "hd"
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
+msgstr "logdrake"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Türgi (traditsiooniline \"F\" mudel)"
+#: ../../standalone/logdrake_.c:68
+msgid "Show only for the selected day"
+msgstr "Ainult valitud päeval näitamine"
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "Õnnitleme!"
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
+msgstr "/Fail/_Uus"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Käivitamiseks kasutatakse omaniku id-d"
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
+msgstr "<control>N"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow remote root login"
-msgstr "Administraatori võrgust sisselogimise lubamine"
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
+msgstr "/Fail/_Ava"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Down"
-msgstr "Alla"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
+msgstr "<control>O"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Toorprinter (draiverita)"
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr "/Fail/_Salvesta"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Install rpm"
-msgstr "Paigalda RPM"
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
+msgstr "<control>S"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Faili trükkimiseks käsurealt (terminaliaknas) võib kasutada kas käsku \"%s "
-"<fail>\" või graafilist trükkimisvahendit: \"xpp <fail>\" või \"kprinter "
-"<fail>\". Graafilised vahendid võimaldavad hõlpsamalt valida printerit ja "
-"muuta valikuid.\n"
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
+msgstr "/Fail/Salvesta _Kui"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "Aega jäänud "
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr "/Fail/-"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "Briti"
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
+msgstr "/Eelistused/Test"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "Lahuta"
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
+msgstr "/Abi/_Misvärk"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
+#: ../../standalone/logdrake_.c:145
+msgid "User"
+msgstr "Kasutaja"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "Fontide eemaldamine"
+#: ../../standalone/logdrake_.c:146
+msgid "Messages"
+msgstr "Sõnumid"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Palun oodake, tuvastan ja seadistan seadmeid..."
+#: ../../standalone/logdrake_.c:147
+msgid "Syslog"
+msgstr "Syslog"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "Saksa (ilma sammuta)"
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
+msgstr "Mandrake vahendite seletused"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tRaport saadetakse %s-le\n"
+#: ../../standalone/logdrake_.c:151
+msgid "search"
+msgstr "otsing"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
-msgstr "%s ülekandmine..."
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
+msgstr "Vahend logide jälgimiseks"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tuhat värvi (15 bitti)"
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
+msgstr "Sätted"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
-msgstr "Eksportida saab NFS või Samba abil. Palun valige, kumba kasutada."
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
+msgstr "sobib"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "Gambia"
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
+msgstr "aga ei sobi"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Mandrake juhtimiskeskus"
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
+msgstr "Faili valimine"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Reboot"
-msgstr "Taaskäivitus"
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
+msgstr "Kalender"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device"
-msgstr "Mitme funktsiooniga seade"
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
+msgstr "Faili sisu"
-#: ../../network/drakfirewall.pm:1
-#, 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."
-msgstr ""
-"Sisestada võib mitmesuguseid porte. \n"
-"Sobivad näiteks: 139/tcp 139/udp.\n"
-"Vaadake lähemalt /etc/services."
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+msgid "Mail alert"
+msgstr "Meilihoiatus"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/logdrake_.c:245
#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-lint \n"
+msgid "please wait, parsing file: %s"
+msgstr "palun oodake, analüüsin faili: %s"
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../standalone/logdrake_.c:392
+msgid "Mail alert configuration"
+msgstr "Meilihoiatuse sätted"
+
+#: ../../standalone/logdrake_.c:393
msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
+"Welcome to the mail configuration utility.\n"
+"\n"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Teie arvutis ei ole veel brauserit. Palun paigaldage see, kui soovite "
-"abiinfot vaadata"
+"Meili seadistamise vahend.\n"
+"\n"
+"Siin saab seadistada hoiatussüsteemi.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remember this password"
-msgstr "Salasõna jäetakse meelde"
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
+msgstr "Apache veebiserver"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "rahuldamata %s tõttu"
+#: ../../standalone/logdrake_.c:401
+msgid "Domain Name Resolver"
+msgstr "Domeeninimede lahendaja"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Internetiühenduse jagamine nüüd töötab."
+#: ../../standalone/logdrake_.c:402
+msgid "Ftp Server"
+msgstr "Ftp server"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-võrk SSH vahendusel.\n"
+#: ../../standalone/logdrake_.c:403
+msgid "Postfix Mail Server"
+msgstr "Postfix meiliserver"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-" Kui soovitud printer tuvastati automaatselt, valige see loendist ning "
-"lisage siis vajadusel kasutajatunnus, parool ja/või töögrupp."
+#: ../../standalone/logdrake_.c:404
+msgid "Samba Server"
+msgstr "Samba server"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " cable"
-msgstr " kaabel"
+#: ../../standalone/logdrake_.c:405
+msgid "SSH Server"
+msgstr "SSH server"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
-msgstr "Kasuta vaba ruumi Windowsi partitsioonil"
+#: ../../standalone/logdrake_.c:406
+msgid "Webmin Service"
+msgstr "Webmin teenus"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s leiti asukohas %s, kas seadistada see automaatselt?"
+#: ../../standalone/logdrake_.c:407
+msgid "Xinetd Service"
+msgstr "Xinetd teenus"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 juhtprogramm: %s\n"
+#: ../../standalone/logdrake_.c:414
+msgid "service setting"
+msgstr "teenuse sätted"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr ""
-"See masin/võrk on juba nimekirjas ja seda ei ole võimalik uuesti lisada.\n"
+#: ../../standalone/logdrake_.c:415
+msgid ""
+"You will receive an alert if one of the selected services is no more running"
+msgstr "Saate hoiatuse, kui üks valitud teenustest enam ei tööta"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Valige paketid, mida soovite paigaldada"
+#: ../../standalone/logdrake_.c:428
+msgid "load setting"
+msgstr "koormuse sätted"
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
-msgstr "Paapua Uus-Guinea"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
+msgstr "Saate hoiatuse, kui koormus on siin määratust suurem"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Mitme funktsiooniga seade paralleelpordis"
+#: ../../standalone/logdrake_.c:444
+msgid "alert configuration"
+msgstr "hoiatuse sätted"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Busy files"
-msgstr "Hõivatud failid"
+#: ../../standalone/logdrake_.c:445
+msgid "Please enter your email address below "
+msgstr "Sisestage palun siia oma e-posti aadress"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "Serbia (kirillitsa)"
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
+msgstr "Salvesta kui..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Kataloog, kuhu varukoopiad on salvestatud"
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "Palun valige hiire tüüp."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
-msgstr "Vaikimisi kerneli sõnumi keelamine"
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
+msgstr "Kas emuleerida keskmist hiirenuppu?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Kas soovite määrata selle printeri (\"%s\")\n"
-"vaikeprinteriks?"
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+msgid "Network Monitoring"
+msgstr "Võrgu jälgimine"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
-msgstr "DHCP vahemiku lõpp"
+#: ../../standalone/net_monitor_.c:96
+msgid "Profile "
+msgstr "Profiil "
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "Alglaadimisketta loomine..."
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
+msgstr "Statistika"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Oodake palun, testime Teie ühendust..."
+#: ../../standalone/net_monitor_.c:103
+msgid "Sending Speed:"
+msgstr "Saatmise kiirus:"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "Võrgu seiskamine"
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
+msgstr "Saamise kiirus:"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "Kasutajakonto"
+#: ../../standalone/net_monitor_.c:106
+msgid "Connection Time: "
+msgstr "Ühenduse kestvus: "
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS on UNIXi keskkonna standardne failijaotusprotokoll.\n"
-"See programm täidab NFS failide lukustamise funktsioone.\n"
-"Vajalik serveerimisel."
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
+msgstr "Logifailid"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
-msgstr "DHCP klient"
+#: ../../standalone/net_monitor_.c:147
+msgid "Wait please, testing your connection..."
+msgstr "Oodake palun, testime Teie ühendust..."
-#: ../../standalone/harddrake2:1
-#, 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"
-msgstr ""
-"See on HardDrake - Mandrake riistvara seadistamisvahend.\n"
-"<span foreground=\"royalblue3\">Versioon:</span> %s\n"
-"<span foreground=\"royalblue3\">Autor: Thierry Vignaud &lt;"
-"<tvignaud@mandrakesoft.com>&gt;\n"
-"\n"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+msgid "Connecting to Internet "
+msgstr "Loo internetiühendus"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
-msgstr "tühistada"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+msgid "Disconnecting from Internet "
+msgstr "Katkesta internetiühendus"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Trükkimine/skaneerimine seadmel \"%s\""
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
+msgstr "Internetiühenduse katkestamine ebaõnnestus."
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit raid modules"
-msgstr "raid moodulite vahelejätt"
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
+msgstr "Internetiühendus on katkestatud."
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:225
+msgid "Connection complete."
+msgstr "Ühendus on loodud."
+
+#: ../../standalone/net_monitor_.c:226
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)."
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-"Lpd on trükideemon, ilma selleta ei ole võimalik trükkida.\n"
-"Põhimõtteliselt on see server, mis saadab töö printeri(te)le."
+"Ühenduse loomine ebaõnnestus.\n"
+"Kontrollige palun sätteid Mandrake juhtimiskeskuse abil."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
-msgstr "Iiri"
+#: ../../standalone/net_monitor_.c:330
+msgid "Color configuration"
+msgstr "Värvisätted"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sunday"
-msgstr "Pühapäev"
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
+msgstr "saadetud: "
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Internetiühenduse seadistamine"
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
+msgstr "saadud: "
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
-msgstr "komaga eraldatud numbrit"
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
+msgstr "keskmine"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Once you've selected a device, you'll be able to see the device information "
-"in fields displayed on the right frame (\"Information\")"
-msgstr ""
-"Kui valite seadme, näete selle kohta infot väljadel paremal asuvas paneelis "
-"(\"Info\")"
+#: ../../standalone/net_monitor_.c:400
+msgid "Local measure"
+msgstr "Kohalikud andmed"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Valitud reegel üks tase ülespoole"
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
+msgstr "üle kantud"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
+msgstr "saadud"
+
+#: ../../standalone/net_monitor_.c:453
msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
+"Warning, another internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Teie süsteemiga on ühendatud\n"
-"\n"
-"%s\n"
-"skänner.\n"
+"Hoiatus, avastati veel üks internetiühendus, mis võib-olla kasutab Teie võrku"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/net_monitor_.c:459
#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Kas tõesti eemaldada printer \"%s\"?"
+msgid "Connect %s"
+msgstr "%s ühenduse loomine"
-#: ../../install_interactive.pm:1
+#: ../../standalone/net_monitor_.c:459
#, c-format
-msgid "I can't find any room for installing"
-msgstr "Paigalduseks ei ole üldse ruumi"
+msgid "Disconnect %s"
+msgstr "%s ühenduse katkestamine"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Default printer"
-msgstr "Vaikeprinter"
+#: ../../standalone/printerdrake_.c:47
+msgid "Reading printer data ..."
+msgstr "Printeri andmete lugemine ..."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Olete seadistanud mitu võimalust Internetiga ühendumiseks.\n"
-"Valige palun see, mida soovite kasutada.\n"
-"\n"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Detecting devices ..."
+msgstr "Seadmete tuvastamine ..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Modify RAID"
-msgstr "Modifitseeri RAIDi"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
+msgstr "Proovin porte"
-#: ../../network/isdn.pm:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, 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."
-msgstr ""
-"Leiti küll PCI ISDN kaart, kuid selle tüüp on tundmatu. Palun valige PCI "
-"kaart järgmisel sammul."
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr "Mandrake Linuxi praegusel versioonil puudub %s tugi."
-#: ../../any.pm:1
+#: ../../standalone/scannerdrake_.c:54
#, c-format
-msgid "Add user"
-msgstr "Lisa kasutaja"
+msgid "%s found on %s, configure it?"
+msgstr "%s leiti asukohas %s, kas soovite seda seadistada?"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/scannerdrake_.c:57
#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-kettad %s\n"
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr "%s puudub skännerite andmebaasis, kas seadistada see käsitsi?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Liberia"
-msgstr "Libeeria"
+#: ../../standalone/scannerdrake_.c:63
+msgid "Select a scanner"
+msgstr "Valige skänner"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:91
#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-"Pakettide paigaldamine, mis on vajalikud skänneri seadistamiseks "
-"Scannerdrake abil, ei õnnestunud."
+msgid "This %s scanner is unsupported"
+msgstr "Sel %s skänneril puudub tugi"
-#: ../../standalone/drakgw:1
+#: ../../standalone/scannerdrake_.c:105
#, 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"
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
msgstr ""
-"Palun sisestage Internetiühendust teostava seadme nimi.\n"
-"\n"
-"Näited:\n"
-"\t\tppp+ modemi- või DSL ühenduse korral. \n"
-"\t\teth0 või eth1 kaabliühenduse korral, \n"
-"\t\tippp+ ISDN ühenduse korral.\n"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Klaviatuuri valik"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Format partitions"
-msgstr "Vormindamine"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "CUPS-i automaatne seadistamine"
+"Scannerdrake ei suutnud leida Teie %s skännerit.\n"
+"Valige palun seade, kuhu skänner on ühendatud"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Running \"%s\" ..."
-msgstr "\"%s\" käib..."
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "enable radio support"
-msgstr "raadiotoe lubamine"
+#: ../../standalone/scannerdrake_.c:107
+msgid "choose device"
+msgstr "valige seade"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:113
#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Skänneri jagamine masinatele:"
+msgid ""
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
+msgstr ""
+"See %s skänner tuleb seadistada printerdrake abil.\n"
+"Printerdrake saab käivitada Mandrake juhtimiskeskuse riistvara sektsioonist."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/scannerdrake_.c:118
#, c-format
-msgid "Loopback file name: %s"
-msgstr "Loopback faili nimi: %s"
+msgid ""
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
+msgstr ""
+"Teie %s skänner on seadistatud.\n"
+"Nüüd võite skaneerida dokumente, kasutades selleks rakendust ``XSane'', "
+"mille leiate rakenduste menüüs rubriigist Multimeedia/Graafika."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Valige palun printer, kuhu tuleks saata trükitööd."
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Mõned seadmed riistvaraklassis \"%s\" eemaldati:\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not transfer printers"
-msgstr "Ära kanna printereid üle"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
+msgstr "Mõned seadmed lisati:\n"
-#: ../../help.pm:1
-#, c-format
-msgid "Delay before booting the default image"
-msgstr "Ooteaeg alglaadimisel"
+#: ../../standalone/service_harddrake_.c:64
+msgid "Hardware probing in progress"
+msgstr "Toimub tuvastamine.."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Hard Disk to backup"
-msgstr "Varundamine kõvakettale"
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "Valige sobiv keel"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Configure"
-msgstr "Seadista"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "Valige paigaldusmeetod"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake"
-msgstr "Scannerdrake"
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
+msgstr "Kõvaketta leidmine"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Hoiatus, avastati veel üks Internetiühendus, mis võib-olla kasutab Teie võrku"
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "Hiire seadmine"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
-msgstr "kasutajate faile"
+#: ../../steps.pm_.c:18
+msgid "Choose your keyboard"
+msgstr "Klaviatuuri valik"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Palun sisestage oma masina nimi.\n"
-"Masina nimi peab olema esitatud täiskujul,\n"
-"näiteks ``minumasin.minufirma.ee''.\n"
-"Kui Teil on vaikelüüs, siis sisestage ka selle IP aadress"
+#: ../../steps.pm_.c:19
+msgid "Security"
+msgstr "Turvalisus"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Printeri spuuleri valik"
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "Failisüsteemid"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Create new theme"
-msgstr "Uue teema loomine"
+#: ../../steps.pm_.c:21
+msgid "Format partitions"
+msgstr "Vormindamine"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
-msgstr "Mandrake vahendite seletused"
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "Pakettide valik"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "No image found"
-msgstr "Laadefaili ei leitud!"
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "Süsteemi paigaldus"
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
-"Mõned tähtsad paketid ei saanud korralikult paika.\n"
-"Teie CD-lugeja või CD on ilmselt vigane.\n"
-"Paketifaile CD-l saate kontrollida käsuga \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "Tavakasutaja"
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
-msgstr "Mandrake Linux 9.2 kujutab endast täiuslikku arendusplatvormi"
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "Võrgusätted"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Detected model: %s"
-msgstr "Tuvastati mudel: %s"
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "Teenuste sätted"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
-msgstr "\"%s\" ei ole korrektne e-posti aadress!"
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "Alglaaduri sätted"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"X11 kuvahaldur võimaldab Teil graafiliselt sisse logida\n"
-"süsteemi, kus töötab X Window System, samuti toetab see korraga \n"
-"mitme X-seansi käivitamist ja neis töötamist."
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "Alglaadimisflopi loomine"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr "Kui on 'jah', lubatakse igapäevane turvakontroll."
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "X-i seadistamine"
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
-msgstr "Aserbaidžaan"
+#: ../../steps.pm_.c:34
+msgid "Install system updates"
+msgstr "Uuenduste paigaldus"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Varundamiseks kasutatava seadme nimi"
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "Välju programmist"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
-msgstr "Seadmes %s puudub lint!"
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-" --doc <link> - link veebileheküljele ( WM tervituse "
-"kasutajaliidesele)\n"
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
+msgstr "utopia 25"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "Veeb/FTP"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr "see on füüsiline siin, millega seade on ühendatud (nt: PCI, USB, ...)"
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
+msgstr "Võrguarvuti (klient)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Kuidas on see printer ühendatud?"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS, SMB, SSH server, vahendaja (proxy)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security level"
-msgstr "Turvatase"
+#: ../../share/compssUsers:999
+msgid "Office"
+msgstr "Kontor"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "final resolution"
-msgstr "lõplik kuvatihedus"
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Gnome tööjaam"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
-msgstr "Teenused"
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Suhtlus Palm Piloti või Visoriga"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Auto configuration"
-msgstr "Automaatne seadistus"
+#: ../../share/compssUsers:999
+msgid "Workstation"
+msgstr "Tööjaam"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Tulemüür/marsruuter"
#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Kontori tööjaam"
+msgid "Domain Name and Network Information Server"
+msgstr "Nimeserver ja NIS"
#: ../../share/compssUsers:999
msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
"gnumeric), pdf viewers, etc"
msgstr ""
-"Kontoritöö programmid: tekstitöötlus (kword, abiword), tabeltöötlus "
-"(kspread, gnumeric), PDF vaatajad jne"
+"Kontoriprogrammid: tekstitöötlus (kword, abiword), tabeltöötlus (kspread, "
+"gnumeric), PDF vaatajad jne"
#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Mänguvahend"
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "Helivahendid: mp3- ja midi-mängijad, mikserid jms"
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Meelelahutus: põnevus-, laua-, strateegiamängud jne"
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Võõraste rakenduste toetus"
#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimeedia tööjaam"
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Raamatud ja Howto-d Linuxi ja vabavara kohta"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Heli ja video mängimine ja redigeerimine"
+msgid "KDE Workstation"
+msgstr "KDE tööjaam"
#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Interneti tööjaam"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, WindowMaker, Enlightenment, Fvwm jt"
#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Valik rakendusi meili ja uudiste lugemiseks (mutt, tin...) ning veebi "
-"lehitsemiseks"
+msgid "Multimedia - Video"
+msgstr "Multimeedia - Video"
#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Võrguarvuti (klient)"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr "Meili, uudiste, veebi, jututamise ja failiülekande vahendid"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Mitme protokolli, sealhulgas ssh kliendid"
+msgid "Database"
+msgstr "Andmebaasid"
#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Seadistamine"
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL või MySQL andmebaasiserver"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
msgstr "Vahendid süsteemi lihtsamaks administreerimiseks"
#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Teadustööjaam"
+msgid "Multimedia - Sound"
+msgstr "Multimeedia - Heli"
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
-msgstr "Teaduserakendused, näiteks gnuplot"
+msgid "Documentation"
+msgstr "Dokumentatsioon"
#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr "Konsoolivahendid"
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Redaktorid, shellid, terminalid, failihaldus"
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix meiliserver, uudisteserver Inn"
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE tööjaam"
+msgid "Internet station"
+msgstr "Interneti tööjaam"
+
+#: ../../share/compssUsers:999
+msgid "Multimedia station"
+msgstr "Multimeedia tööjaam"
+
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Seadistamine"
+
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "Veel graafilisi töölaudu (Gnome, IceWM)"
#: ../../share/compssUsers:999
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
"of accompanying tools"
msgstr ""
-"K töölaua keskkond: graafiline töökeskkond ja rida seonduvaid rakendusi"
+"K Töölaua Keskkond, graafiline töökeskkond ja rida seonduvaid rakendusi"
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome tööjaam"
+msgid "Graphical Environment"
+msgstr "Graafiline keskkond"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr "Graafiline töökeskkond koos kasutajasõbralike rakendustega"
+msgid "Development"
+msgstr "Arendus"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Muud graafilised töölauad"
+msgid "Apache, Pro-ftpd"
+msgstr "Apache ja Proftpd"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, WindowMaker, Enlightenment, Fvwm jt"
+msgid "Tools to create and burn CD's"
+msgstr "Vahendid CD-de kirjutamiseks"
+
+#: ../../share/compssUsers:999
+msgid "Office Workstation"
+msgstr "Kontori tööjaam"
+
+#: ../../share/compssUsers:999
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, WindowMaker, Enlightenment, Fvwm jne"
+
+#: ../../share/compssUsers:999
+msgid "Graphics programs such as The Gimp"
+msgstr "Graafikarakendused, näiteks Gimp"
+
+#: ../../share/compssUsers:999
+msgid "DNS/NIS "
+msgstr "DNS/NIS "
#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr "C ja C++ arendusteegid, rakendused ja include-failid"
#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentatsioon"
+msgid "Network Computer server"
+msgstr "Võrguserver"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Raamatud ja HOWTO-d Linuxi ja vabavara kohta"
+msgid "Mail/Groupware/News"
+msgstr "Meil/grupitöö/uudised"
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr "LSB"
+msgid "Game station"
+msgstr "Mänguvahend"
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Linux Standard Base. Võõraste rakenduste toetus"
+msgid "Video players and editors"
+msgstr "Videode mängimine ja redigeerimine"
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Veeb/FTP"
+msgid "Multimedia - Graphics"
+msgstr "Multimeedia - Graafika"
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache ja Pro-ftpd"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Meelelahutus: põnevus-, laua-, strateegiamängud jne"
#: ../../share/compssUsers:999
-msgid "Mail"
-msgstr "E-post"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"Komplekt rakendusi meili ja uudiste lugemiseks (pine, mutt, tin...) ning "
+"veebi lehitsemiseks"
#: ../../share/compssUsers:999
-msgid "Postfix mail server"
-msgstr "Postfix meiliserver"
+msgid "Personal Finance"
+msgstr "Isiklikud rahaasjad"
#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Andmebaasid"
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "Graafiline töökeskkond koos kasutajasõbralike rakendustega"
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL või MySQL andmebaasiserver"
+msgid "Clients for different protocols including ssh"
+msgstr "Mitme protokolli, sealhulgas ssh kliendid"
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Tulemüür/marsruuter"
+msgid "LSB"
+msgstr "LSB"
#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Internetiasjad"
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
+msgid "Sound and video playing/editing programs"
+msgstr "Heli ja video mängimine ja redigeerimine"
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Nimeserver ja NIS"
+msgid "Other Graphical Desktops"
+msgstr "Muud graafilised töölauad"
#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Võrguserver"
+msgid "Editors, shells, file tools, terminals"
+msgstr "Redaktorid, shellid, terminalid, failihaldus"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS, SMB, SSH server, vahendaja (proxy)"
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "Isiklike rahaasjade rakendused, näiteks gnucash"
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
-msgstr ""
-"Valik rakendusi e-posti lugemiseks ja saatmiseks ning veebi lehitsemiseks"
+msgid "Personal Information Management"
+msgstr "Isikliku info haldamine"
+
+#: ../../share/compssUsers:999
+msgid "Multimedia - CD Burning"
+msgstr "Multimeedia - CD kirjutamine"
+
+#: ../../share/compssUsers:999
+msgid "Scientific Workstation"
+msgstr "Teadustööjaam"
-#~ msgid "The setup has already been done, and it's currently enabled."
+#~ msgid "can not open /etc/inittab for reading: %s"
+#~ msgstr "ei saa lugeda faili /etc/inittab: %s"
+
+#~ msgid "cpu number "
+#~ msgstr "protsessori number"
+
+#~ msgid ""
+#~ "You now have the opportunity to download encryption software.\n"
+#~ "\n"
+#~ "WARNING:\n"
+#~ "\n"
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
+#~ "\n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
+#~ "\n"
+#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
+#~ "\n"
+#~ "\n"
+#~ "For any queries relating to these agreement, please contact \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
+#~ msgstr ""
+#~ "Nüüd on Teil võimalik oma süsteemi laadida krüptotarkvara.\n"
+#~ "\n"
+#~ "HOIATUS:\n"
+#~ "\n"
+#~ "Lähtuvalt erinevatest sellisele tarkvarale kohaldavatest nõuetest ja \n"
+#~ "mõjutatuna eri jurisdiktsioonide normidest peavad kliendid ja/või \n"
+#~ "lõppkasutajad olema kindlad, et nende asukohamaa jurisdiktsiooni \n"
+#~ "õiguslikud aktid lubavad neil alla laadida, säilitada ja/või kasutada \n"
+#~ "krüptograafiliste algoritmide realisatsioone sisaldavat tarkvara.\n"
+#~ "\n"
+#~ "Lisaks sellele peavad kliendid ja/või lõppkasutajad jälgima asukohamaa\n"
+#~ "juriidiliste normide täitmist. Kui klient ja/või lõppkasutaja rikub "
+#~ "kehtivaid\n"
+#~ "õigusnorme, kohaldatakse karistus vastavalt asukohamaa seadustele.\n"
+#~ "\n"
+#~ "Mitte mingil juhul ei kanna Mandrakesoft S.A. ega tarkvara tarnija\n"
+#~ "vastutust ei otseselt ega kaudselt tekkinud kahjude eest (kaasa arvatud,\n"
+#~ "kuid mitte ainult, saamatajäänud tulu, äritegevuse katkestamine, äriinfo\n"
+#~ "kaotsiminek ja muud rahalised kaotused ning võimalikud kohtu poolt välja\n"
+#~ "mõistetud hüvitused), mis tulenevad tarkvara, mis on kasutatav pärast\n"
+#~ "käesoleva lepingu tingimustega nõustumist, alla laadimisest, hoidmisest\n"
+#~ "või kasutamisest.\n"
+#~ "\n"
+#~ "Kõigi lepinguga seotud küsimuste asjus pöörduge palun aadressil:\n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
+
+#~ msgid "Proxy configuration"
+#~ msgstr "Vahendajate sätted"
+
+#~ msgid ""
+#~ "Welcome to the proxy configuration utility.\n"
+#~ "\n"
+#~ "Here, you'll be able to set up your http and ftp proxies\n"
+#~ "with or without login and password\n"
+#~ msgstr ""
+#~ "See on vahendajate sätete abivahend.\n"
+#~ "\n"
+#~ "Siin saate seadistada oma http- ja ftp-vahendajad\n"
+#~ "kas kasutajatunnust ja parooli kasutades või ilma selleta\n"
+
+#~ msgid ""
+#~ "Please fill in the http proxy informations\n"
+#~ "Leave it blank if you don't want an http proxy"
+#~ msgstr ""
+#~ "Täitke palun http-vahendaja info\n"
+#~ "Jätke tühjaks, kui Te ei soovi http-vahendajat"
+
+#~ msgid "URL"
+#~ msgstr "URL"
+
+#~ msgid "port"
+#~ msgstr "port"
+
+#~ msgid "Url should begin with 'http:'"
+#~ msgstr "URLi alguses peab olema 'http:'"
+
+#~ msgid "The port part should be numeric"
+#~ msgstr "Pordi number peab olema ikkagi number"
+
+#~ msgid ""
+#~ "Please fill in the ftp proxy informations\n"
+#~ "Leave it blank if you don't want an ftp proxy"
+#~ msgstr ""
+#~ "Täitke palun ftp-vahendaja info\n"
+#~ "Jätke tühjaks, kui Te ei soovi ftp-vahendajat"
+
+#~ msgid ""
+#~ "Please enter proxy login and password, if any.\n"
+#~ "Leave it blank if you don't want login/passwd"
+#~ msgstr ""
+#~ "Sisestage palun vajadusel vahendaja kasutajatunnus ja parool.\n"
+#~ "Jätke tühjaks, kui Te ei soovi kasutajatunnust/parooli"
+
+#~ msgid "login"
+#~ msgstr "kasutajatunnus"
+
+#~ msgid "password"
+#~ msgstr "parool"
+
+#~ msgid "re-type password"
+#~ msgstr "parool teist korda"
+
+#~ msgid "The passwords don't match. Try again!"
+#~ msgstr "Paroolid ei klapi. Proovige uuesti!"
+
+#~ msgid "Can't write file %s"
+#~ msgstr "Ei saa kirjutada faili %s"
+
+#~ msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+
+#~ msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+
+#~ msgid ""
+#~ "Warning, another internet connexion has been detected, maybe using your "
+#~ "network"
#~ msgstr ""
-#~ "Internetiühenduse jagamine on juba seadistatud ja see on praegu aktiivne."
+#~ "Hoiatus, avastati veel üks internetiühendus, mis võib-olla kasutab Teie "
+#~ "võrku"
+
+#~ msgid "no help implemented yet.\n"
+#~ msgstr "see ei ole (veel) kasutatav.\n"
+
+#~ msgid "Please click on a medium"
+#~ msgstr "Palun valige andmekandja"
+
+#~ msgid "Removing LPRng..."
+#~ msgstr "LPRng eemaldamine..."
-#~ msgid "The setup has already been done, but it's currently disabled."
+#~ msgid "Removing LPD..."
+#~ msgstr "LPD eemaldamine..."
+
+#~ msgid ""
+#~ "Description:\n"
+#~ "\n"
+#~ " Drakbackup is used to backup your system.\n"
+#~ " During the configuration you can select \n"
+#~ "\t- System files, \n"
+#~ "\t- Users files, \n"
+#~ "\t- Other files.\n"
+#~ "\tor All your system ... and Other (like Windows Partitions)\n"
+#~ "\n"
+#~ " Drakbackup allows you to backup your system on:\n"
+#~ "\t- Harddrive.\n"
+#~ "\t- NFS.\n"
+#~ "\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+#~ "\t- FTP.\n"
+#~ "\t- Rsync.\n"
+#~ "\t- Webdav.\n"
+#~ "\t- Tape.\n"
+#~ "\n"
+#~ " Drakbackup allows you to restore your system to\n"
+#~ " a user selected directory.\n"
+#~ "\n"
+#~ " Per default all backup will be stored on your\n"
+#~ " /var/lib/drakbackup directory\n"
+#~ "\n"
+#~ " Configuration file:\n"
+#~ "\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+#~ "\n"
+#~ "Restore Step:\n"
+#~ " \n"
+#~ " During the restore step, Drakbackup will remove\n"
+#~ " your original directory and verify that all\n"
+#~ " backup files are not corrupted. It is recommended\n"
+#~ " you do a last backup before restoring.\n"
+#~ " \n"
+#~ "\n"
#~ msgstr ""
-#~ "Internetiühenduse jagamine on juba seadistatud, aga hetkel keelatud."
+#~ "Kirjeldus:\n"
+#~ "\n"
+#~ " Drakbackup aitab Teie süsteemist varukoopiaid teha.\n"
+#~ " Seadistamise ajal saate valida \n"
+#~ "\t- süsteemsed failid, \n"
+#~ "\t- kasutaja failid, \n"
+#~ "\t- muud failid \n"
+#~ "\tvõi kogu süsteemi ... ja muud (nt Windowsi partitsioonid)\n"
+#~ "\n"
+#~ " Drakbackup võimaldab varundada järgmistele andmekandjatele:\n"
+#~ "\t- kõvaketas.\n"
+#~ "\t- NFS.\n"
+#~ "\t- CDROM (CDRW), DVDROM (automaatse alglaadimise, pääste- \n"
+#~ "ja automaatse paigalduse võimalustega).\n"
+#~ "\t- FTP.\n"
+#~ "\t- rsync.\n"
+#~ "\t- Webdav.\n"
+#~ "\t- lint.\n"
+#~ "\n"
+#~ " Drakbackup võimaldab taastada süsteemi kasutaja\n"
+#~ " määratud kataloogi.\n"
+#~ "\n"
+#~ " Vaikimisi salvestatakse kõik varukoopiad\n"
+#~ " kataloogi /var/lib/drakbackup.\n"
+#~ "\n"
+#~ " Seadistustefail:\n"
+#~ "\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+#~ "\n"
+#~ "Taastamise käik:\n"
+#~ " \n"
+#~ " Taastamise ajal eemaldab Drakbackup Teie\n"
+#~ " originaalkataloogi ja kontrollib, et ükski varukoopia\n"
+#~ " ei oleks vigane. Soovitatav on enne taastamist\n"
+#~ " ette võtta veel üks varundamine.\n"
+#~ " \n"
+#~ "\n"
#~ msgid ""
-#~ "Welcome to the Internet Connection Sharing utility!\n"
+#~ "drakbug version %s\n"
+#~ "Copyright (C) 2002 MandrakeSoft.\n"
+#~ "This is free software and may be redistributed under the terms of the GNU "
+#~ "GPL.\n"
#~ "\n"
-#~ "%s\n"
+#~ "usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
#~ "\n"
-#~ "Click on Configure to launch the setup wizard."
+#~ "OPTIONS:\n"
+#~ msgstr ""
+#~ "drakbug versioon %s\n"
+#~ "Copyright (C) 2002 MandrakeSoft.\n"
+#~ "Käesolev rakendus on vaba tarkvara. Te võite seda edasi levitada\n"
+#~ " ja/või muuta vastavalt GNU Üldise Avaliku Litsentsi tingimustele.\n"
+#~ "\n"
+#~ "kasutamine: drakbug [VÕTMED] [RAKENDUSE_NIMI]\n"
+#~ "\n"
+#~ "VÕTMED:\n"
+
+#~ msgid " --help - print this help message.\n"
+#~ msgstr " --help - näitab seda abiteadet.\n"
+
+#~ msgid " --report - program should be one of mandrake tools\n"
+#~ msgstr ""
+#~ " -report - rakendus peaks olema üks mandrake vahenditest\n"
+
+#~ msgid " --incident - program should be one of mandrake tools\n"
#~ msgstr ""
-#~ "Internetiühenduse jagamise nõustaja\n"
+#~ " --incident - rakendus peaks olema üks mandrake vahenditest\n"
+
+#~ msgid "usage: drakfloppy\n"
+#~ msgstr "kasutamine: drakfloppy\n"
+
+#~ msgid ""
#~ "\n"
-#~ "%s\n"
+#~ "Usage: harddrake [-h|--help] [--test]\n"
+#~ msgstr ""
#~ "\n"
-#~ "Klõpsake nõustaja käivitamiseks nupul 'Seadista'."
+#~ "kasutamine: harddrake [-h|--help] [--test]\n"
+
+#~ msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+#~ msgstr "kasutamine: keyboarddrake [--expert] [keyboard]\n"
-#~ msgid "Internet Connection Sharing configuration"
-#~ msgstr "Internetiühenduse jagamise seadistamine"
+#~ msgid "detected on interface %s"
+#~ msgstr "leiti liidesel %s"
-#~ msgid "No Internet Connection Sharing has ever been configured."
-#~ msgstr "Internetiühenduse jagamist ei ole kunagi seadistatud."
+#~ msgid "Probing %s class\n"
+#~ msgstr "%s klassi proovimine\n"
-#~ msgid "when checked, owner and group won't be changed"
-#~ msgstr "märkimise korral ei muudeta omanikku ja gruppi"
+#~ msgid "Periodic Checks 2"
+#~ msgstr "Perioodiline kontroll 2"
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index 34f7f785f..7aca78614 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -1,3334 +1,1867 @@
-# translation of DrakX.po to Euskara
# EUSKARA: Mandrake translation.
-# Copyright (C) 2002,2003 Free Software Foundation, Inc.
-# Iñigo Salvador Azurmendi <xalba@euskalnet.net>, 2001-2002,2003.
-# Josu Waliño <josu@elhuyar.com>, 2002.
+# Copyright (C) 2002 Free Software Foundation, Inc.
+# Iñigo Salvador Azurmendi <xalba@euskalnet.net>, 2001-2002.
+# Josu Waliño <josu@elhuyar.com>, 2002
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
-"PO-Revision-Date: 2003-12-02 21:45+0100\n"
-"Last-Translator: Iñigo Salvador Azurmendi <xalba@euskalnet.net>\n"
+"Project-Id-Version: DrakX VERSION\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"PO-Revision-Date: 2002-10-13 17:11+0200\n"
+"Last-Translator: Iñigo Salvador Azurmendi <xalba@euskalnet.net>\n"
"Language-Team: Euskara <linux-eu@chanae.alphanet.ch>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.2\n"
+"X-Generator: KBabel 0.9.6\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Partizioak eskaneatzen muntaia-puntuak aurkitzeko"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr ""
-"baietz ezarrita, egiaztatu suid root fitxategien eransketak/ezabaketak."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s-k ostalari-izena, MAC helbidea, IP, nbi-image, 0/1 THIN_CLIENT-"
-"entzako, 0/1 Bertako Konfiguraziorako...\n"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr "Ezarpena aldatu da - clusternfs/dhcpd berrabiatu?"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tErase=%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Babes-kopia diferentzialek 'oinarrizko' kopia originaletik aldatu edo sortu "
-"diren fitxategiak soilik gordetzen dituzte."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "network printer port"
-msgstr "sareko inprimagailuaren portua"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Mesedez sartu disketea:"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr "DrakTermServ"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Babeskopiako partizio-taulak ez du tamaina bera\n"
-"Jarraitu hala ere?"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Which username"
-msgstr "Zein Erabiltzaile-izena"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "Zer sarrera-mota gehitu nahi duzu?"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Restore partition table"
-msgstr "Leheneratu partizio-taula"
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure hostname..."
-msgstr "Konfiguratu ostalari-izena..."
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "\"%s\" CUPS zerbitzarian"
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Post-install configuration"
-msgstr "Instalazio-ondorengo konfigurazioa"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
-msgstr ""
-"Uneko segurtasun maila %s da\n"
-"Aukeratu baimenak ikusi/editatzeko"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Erabili ``%s'' horren ordez"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB edo gehiago"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Type"
-msgstr "Mota"
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "Aukeratu X zerbitzaria"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Halaber, fabrikatzaileek emandako PPD fitxategiekin edo jatorrizko CUPS "
-"kontrolatzaileekin konfiguratutako inprimagailuak ezin dira transferitu."
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "X zerbitzaria"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#: ../../Xconfig/card.pm_.c:230
+msgid "Multi-head configuration"
+msgstr "Buru anitzeko konfigurazioa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-"Ondorengo inprimagailuak\n"
-"\n"
-"%s%s\n"
-"zure sistemara zuzeneak konektatuta daude"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
-msgstr "Erdialdeko Afrikar Errepublika"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "Atebide-gailua"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Advanced preferences"
-msgstr "Hobespen aurreratuak"
+"Zure sistemak buru anitzeko konfigurazioa onartzen du.\n"
+"Zer egin nahi duzu?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Net Method:"
-msgstr "Sareko Metodoa:"
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
+msgstr "Hautatu txartel grafikoaren memoria-tamaina"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Ethernetcard"
-msgstr "Ethernet-txartela"
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "XFree konfigurazioa"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
-msgstr ""
-"Ezarrita badago, bidali posta txostena postaE honetara bestela bidali root-i"
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
+msgstr "XFree-ren zein konfigurazio izan nahi duzu?"
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr "Parametroak"
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
+msgstr "Buru guztiak independenteki konfiguratu"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "no"
-msgstr "ez"
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
+msgstr "Erabili Xinerama hedapena"
-#: ../../harddrake/v4l.pm:1
+#: ../../Xconfig/card.pm_.c:389
#, c-format
-msgid "Auto-detect"
-msgstr "Auto-detektatu"
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfiguratu \"%s\"%s txartela soilik"
-#: ../../standalone/drakconnect:1
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Interface:"
-msgstr "Interfazea:"
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../steps.pm:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Select installation class"
-msgstr "Hautatu instalazio-klasea"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s 3D hardware-azelerazioarekin"
-#: ../../network/tools.pm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-"Ez dirudi sistema Internetera konektatuta dagoenik.\n"
-"Saiatu zure konexioa birkonfiguratzen."
+"Zure txartelak 3D hardware-azelerazioaren euskarria eduki dezake, baina "
+"XFree %s(r)ekin soilik.\n"
+"Zure txartelak XFree %s euskarria du, eta horrek euskarri hobea izan dezake "
+"2Dan."
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-"Konektatu zure inprimagailua Linux zerbitzari batera eta utzi zure Windows "
-"makina(k) berari lotzen bezero gisa.\n"
-"\n"
-"Ziur zaude inprimagailu hau modu honetan ezartzen jarraitu nahi duzula?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belarus"
-msgstr "Bielorrusia"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Errorea %s fitxategian idaztean"
+"Zure txartelak 3D hardware-azelerazioaren euskarria izan dezake XFree %s(r)"
+"ekin."
-#: ../../security/l10n.pm:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid "Report check result to syslog"
-msgstr "Eman azterketaren emaitzen txostena syslog-i"
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s 3D hardware-azelerazio ESPERIMENTALAREKIN"
-#: ../../services.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
+"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."
msgstr ""
-"apmd bateriaren egoera kontrolatzeko eta syslog-en jasotzeko erabiltzen\n"
-"da. Bateria gutxi dagoenean makina itzaltzeko ere erabil daiteke."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tape to backup"
-msgstr "Erabili zinta babeskopia egiteko"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Ondorengo pakete hauek instalatuko dira"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS configuration"
-msgstr "CUPSen konfigurazioa"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total progress"
-msgstr "Aurrerapen guztia"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Ez dago partizio berriak esleitzeko adina leku"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "Lekuz aldatzen"
+"Zure txartelak 3D hardware-azelerazioaren euskarria izan dezake, baina XFree "
+"%s(r)ekin soilik,\n"
+"KONTUAN IZAN EUSKARRI ESPERIMENTALA DELA ETA ORDENAGAILUA BLOKEA DEZAKEELA."
+"Zure txartelak XFree %s euskarria du, eta horrek euskarri hobea izan dezake "
+"2Dan."
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"\n"
-"Drakbackup ekintzak %s bitartez:\n"
-"\n"
+"Zure txartelak 3D hardware-azelerazioaren euskarria izan dezake XFree %s(r)"
+"ekin,\n"
+"KONTUAN IZAN EUSKARRI ESPERIMENTALA DELA ETA ORDENAGAILUA BLOKEA DEZAKEELA."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "yes"
-msgstr "bai"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (instalazioaren bistaratze-kontrolatzailea)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr "("
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "Pertsonalizatua"
-#: ../../network/netconnect.pm:1
-#, c-format
-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 ""
-"Ongi etorri Sarea konfiguratzeko morroira\n"
-"\n"
-"Zure Internet/sare-konexioa konfiguratzera goaz.\n"
-"Ez baduzu auto-detekzioa erabili nahi, desautatu kontrol-laukia.\n"
+#: ../../Xconfig/main.pm_.c:102
+msgid "Graphic Card"
+msgstr "Txartela grafikoa"
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ")"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "Monitorea"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "Libano"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "Bereizmena"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
+msgstr "Froga"
-#: ../../services.pm:1
-#, c-format
-msgid "Stop"
-msgstr "Gelditu"
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Aukerak"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Edit selected host"
-msgstr "Editatu haukeratutako ostalaria"
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "Ados"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD device defined!"
-msgstr "Ez da CD gailurik definitu!"
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "Irten"
-#: ../../network/shorewall.pm:1
+#: ../../Xconfig/main.pm_.c:145
#, c-format
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"
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
msgstr ""
-"Mesedez sartu internetera konektatutako moldagailuaren izena. \n"
-" \n"
-"Adibideak:\n"
-" ppp+ modem edo ADSL koneksioetarako, \n"
-" eth0, edo eth1 kable koneksioarako, \n"
-" ippp+ rdsi koneksio baterako.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tErabili .backupignore fitxategiak\n"
+"Aldaketak mantendu?\n"
+"Hau da uneko konfigurazioa:\n"
+"\n"
+"%s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "Bulgariarra (fonetikoa)"
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "Aukeratu monitorea"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP start ip"
-msgstr "DHCP-ren lehenengo ip"
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
+msgstr "Plug'n Play"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "256 kB"
-msgstr "256 kB"
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "Generikoa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Don't rewind tape after backup"
-msgstr "Ez bildu zinta babes-kopiaren ondoren"
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+msgid "Vendor"
+msgstr "Saltzailea"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "Abioko kargatzailearen aukera nagusiak"
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr "Plug'n Play frogak hutsegin du. Mesedez hautatu monitore zehatz bat"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
+"\n"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
-
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Tape"
-msgstr "Zinta"
+"Bi parametro kritikoak freskatze-maiztasun bertikala eta sinkronizazio-"
+"maiztasun\n"
+"horizontala dira. Lehenengoak pantaila osoa freskatzeko maiztasuna \n"
+"zehazten du eta bigarrenak, eskaneatze-lerroak bistaratzekoa.\n"
+"\n"
+"OSO GARRANTZITSUA da zure monitoreak onar dezakeena baino sinkronizazio-"
+"balio \n"
+" handiagoko monitorerik ez zehaztea: monitorea honda dezakezu.\n"
+" Zalantzarik baduzu, aukeratu ezarpen kontserbadore bat."
-#: ../../lang.pm:1
-#, c-format
-msgid "Malaysia"
-msgstr "Malaysia"
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "Freskatze-maiztasun horizontala"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning network..."
-msgstr "Sarean bilatzen..."
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "Freskatze-maiztasun bertikala"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Aukera honekin /etc direktorioaren edozein bertsio leheneratu\n"
-"ahal izango duzu."
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 kolore (8 bit)"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr "Aldaketa burutu da, dm zerbitzua berrabiatu nahi duzu?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mila kolore (15 bit)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (French layout)"
-msgstr "Suitzarra (diseinu frantsesa)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mila kolore (16 bit)"
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid-ek huts egin du (beharbada raid-tresnak faltako dira?)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milioi kolore (24 bit)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "August"
-msgstr "Abuztua"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 mila milioi kolore (32 bit)"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "FTP server"
-msgstr "FTP zerbitzaria"
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "Bereizmenak"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Webcam"
-msgstr "Webkamera"
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "Aukeratu bereizmena eta kolorearen sakonera"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "(bigarren mailako) cpu katxearen neurria"
+msgid "Graphics card: %s"
+msgstr "Txartel grafikoa: %s"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Soundcard"
-msgstr "Soinu-txartela"
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr "Utzi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Month"
-msgstr "Hilabetea"
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "Konfigurazioaren proba"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search for files to restore"
-msgstr "Leheneratzeko fitxategien bila"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "Konfigurazioa probatu nahi duzu?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Luxembourg"
-msgstr "Luxenburgo"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Adi: txartel grafiko hau frobatzeak zure konputagailua blokeatu dezake"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Fitxategi bat komando-lerrotik (terminal-leihoa) inprimatzeko, erabili \"%s "
-"<fitxategia>\" komandoa.\n"
+msgid "Keyboard layout: %s\n"
+msgstr "Teklatu-diseinua: %s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid "Level %s\n"
-msgstr "%s maila\n"
+msgid "Mouse type: %s\n"
+msgstr "Sagu-mota: %s\n"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid "Syriac (phonetic)"
-msgstr "armeniarra (fonetikoa)"
+msgid "Mouse device: %s\n"
+msgstr "Sagu-gailua: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid "Iran"
-msgstr "Iran"
+msgid "Monitor: %s\n"
+msgstr "Monitorea: %s\n"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Bus"
-msgstr "Busa"
+msgid "Monitor HorizSync: %s\n"
+msgstr "Monitorearen SinkHoriz: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Iraq"
-msgstr "Irak"
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Monitorearen FreskBert: %s\n"
-#: ../../standalone/drakbug:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid "connecting to %s ..."
-msgstr "%s-ra konektatzen ..."
+msgid "Graphics card: %s\n"
+msgstr "Txartel grafikoa: %s\n"
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"LAN helbide-gatazka potentziala aurkitu da %s-ren uneko konfigurazioan!\n"
+msgid "Graphics memory: %s kB\n"
+msgstr "Memoria grafikoa: %s kB\n"
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid "Configuring..."
-msgstr "Konfiguratzen..."
+msgid "Color depth: %s\n"
+msgstr "Kolorearen sakonera: %s\n"
-#: ../../harddrake/v4l.pm:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
-msgstr ""
-"TB txartela moderno gehienentzako, GNU/Linux kernelaren bttv moduloak "
-"parametro egokiak auto-detektatzen ditu.\n"
-"Zure txartela ez bada egokiro detektatzen, sintonizatzaile eta txartela mota "
-"egokiak behartu ditzakezu hemen. Hautatu zure tb parametro egokiak "
-"beharrezkoa bada"
+msgid "Resolution: %s\n"
+msgstr "Bereizmena: %s\n"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Password (again)"
-msgstr "Pasahitza (berriro)"
+msgid "XFree86 server: %s\n"
+msgstr "XFree86 zerbitzaria: %s\n"
-#: ../../standalone/drakfont:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Search installed fonts"
-msgstr "Bilatu instalatutako letra-tipoak"
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 kontrolatzailea: %s\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default desktop"
-msgstr "Idaztegi lehenetsia"
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "X abioan"
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:62
msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
-"Akats txosten bat bidaltzeko, klikatu txosten botoia.\n"
-"Honek web nabigatzailearen leiho batean %s\n"
-" zabalduko du, bertan bete beharreko inprimakia aurkituko duzu. Gainean \n"
-"erakusten den informazioa zerbitzari hartara bidaliko da."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr "Venezuela"
-
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "IP address"
-msgstr "IP helbidea"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "Aukeratu tamainak"
+"Ordenagailua abiatzean X automatikoki abiarazteko konfigura dezaket.\n"
+"Berrabiaraztean X hastea nahi duzu?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:73
msgid ""
-"List of data corrupted:\n"
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
"\n"
-msgstr ""
-"Hondatutako datuen zerrenda:\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"
-
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
-msgstr ""
-"Esplizitoki soilik muntatuko da (adib, \n"
-"-a aukerak ez du fitxategi-sistemaren muntaia eragingo)."
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
+"Do you have this feature?"
msgstr ""
-"Sistemak ez dauka zure modemarentzat euskarririk.\n"
-"Begirada bota dezakezu honetan http://www.linmodems.org"
+"Dirudienez zure txartela grafikoak TV-OUT konektorea dauka.\n"
+"Frame-bufferra erabiliz lanegin dezan konfiguratu daiteke.\n"
+"\n"
+"Honetarako txartela grafikoa TBri lotu behar diozu konputagailua abiatu "
+"aurretik.\n"
+"Ondoren hautatu \"TVout\" sarrera abiapen-zamatzailean\n"
+"\n"
+"Ezaugarri hau badaukazu?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose another partition"
-msgstr "Aukeratu beste partizio bat"
+#: ../../Xconfig/various.pm_.c:85
+msgid "What norm is your TV using?"
+msgstr "Zein arau erabiltzen du zure TB?"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Current user"
-msgstr "Uneko erabiltzailea"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
+msgstr "Arrankeko partizioaren lehen sektorea"
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
-msgstr "Erabiltzaile-izena"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
+msgstr "Unitateko lehen sektorea (MBR)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Ezkerreko \"Windows\" tekla"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "SILO instalazioa"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "Guyana"
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
+msgstr "Non instalatu nahi duzu abioko kargatzailea?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "dhcpd Zerbitzari Konfigurazioa"
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "LILO/grub instalazioa"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Direktorioentzako erabilia:\n"
-" direktorio edo fitxategiaren jabeak bakarrik direktorio honetan ezabatu "
-"dezake"
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
+msgstr "SILO"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr "\"%s\" Novell zerbitzarian, \"%s\" inprimagailua"
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
+msgstr "LILO testu-menuarekin"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Name"
-msgstr "Inprimagailu izena"
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
+msgstr "LILO menu grafikoarekin"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
-msgstr "USB giltza ezartzen"
+#: ../../any.pm_.c:142
+msgid "Grub"
+msgstr "Grub"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
-msgstr "Kendu modulua"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "DOS/Windows-etik abiarazi (loadlin)"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Password"
-msgstr "Pasahitza"
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Konfigurazio aurreratua"
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "Abioko kargatzailearen aukera nagusiak"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr "Zure HP gailu funtzio-anitzean eskaneatzen"
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
+msgstr "Erabili beharreko abioko kargatzailea"
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "Root"
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "Abioko kargatzailearen instalazioa"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "Aukeratu lehendik dagoen RAID bat gehitzeko"
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "Abioko gailua"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turkiarra (modernoa \"Q\" eredua)"
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "Trinkoa"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo message not found"
-msgstr "Ez da lilo mezua aurkitzen"
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "trinkotu"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Nukleoaren goiburukoaren birsortze automatikoa /boot-en\n"
-"honentzat: /usr/include/linux/{autoconf,version}.h"
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "Bideo modua"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
-msgstr "beharrezkoa bada"
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
+msgstr "Imajina lehenetsia abiarazi arteko atzerapena"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
-msgstr ""
-"ntp paketea instalatu behar da\n"
-"Sareko Ordu Protokoloa (Network Time Protocol) gaitzeko"
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
+msgid "Password"
+msgstr "Pasahitza"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Failed..."
-msgstr "Leheneraketak Hutsegin du..."
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "Pasahitza (berriro)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "Gorde sistema honentzako pasahitza drakbackup-en ezarpenean."
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "Murriztu komando-lerroko aukerak"
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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 ""
-"Sarrera\n"
-"\n"
-"Mandrake Linux banaketako sistema eragileari eta erabilgarri dauden osagaiei "
-"\"Software-produktuak\"\n"
-"deituko zaie aurrerantzean. Software-produktuetan sartzen dira, besteak \n"
-"beste, Mandrake Linux banaketako sistema eragileari eta osagaiei dagozkien "
-"programak, \n"
-"metodoak, arauak eta dokumentazioa.\n"
-"\n"
-"\n"
-"1. Lizentzia-kontratua\n"
-"\n"
-"Irakurri arretaz dokumentu hau. Dokumentu hau zure eta MandrakeSoft S.A.ren "
-"arteko lizentzia-kontratu bat da,\n"
-"Software-produktuei dagokiena.\n"
-"Software-produktuak instalatu, bikoiztu edo era batean edo bestean erabiliz, "
-"esplizituki \n"
-"onartzen dituzu eta erabateko adostasuna adierazten diezu Lizentzia honen "
-"baldintzei. \n"
-"Lizentziaren zatiren batekin ados ez bazaude, ez duzu baimenik izango "
-"Software-produktuak instalatu, \n"
-"bikoiztu edo erabiltzeko. \n"
-"Software-produktuak Lizentzia honekin bat ez datorren moduan instalatu, "
-"bikoiztu edo erabiltzeko \n"
-"saio oro deuseza izango da eta Lizentziari dagozkion eskubideak amaitu "
-"egingo \n"
-"dira. Lizentzia amaitzean, Software-produktuen kopia guztiak berehala "
-"suntsitu \n"
-"behar dituzu.\n"
-"\n"
-"\n"
-"2. Berme mugatua\n"
-"\n"
-"Software-produktuak eta erantsitako dokumentuak \"dauden-daudenean\" ematen "
-"dira, bermerik gabe, \n"
-"legeak onartzen duen neurrian.\n"
-"MandrakeSoft S.A.k ez du, ezein kasutan eta legeak onartzen duen neurrian, "
-"erantzukizunik izango\n"
-"Software-produktuen erabileraren edo erabiltzeko ezgaitasunaren ondorioz "
-"sortutako kalte berezi, ustekabeko,\n"
-"zuzeneko edo zeharkakoengatik (lana galtzea, lana etetea, finantza-galera, "
-"epai baten ondorioz ordaindu \n"
-"beharreko kuotak eta zigorrak edo beste edozein ondoriozko galera barne, "
-"mugarik gabe), \n"
-"MandrakeSoft S.A. jakinaren gainean egon arren halako kalteak gerta "
-"litezkeela.\n"
-"\n"
-"HERRIALDE BATZUETAN SOFTWARE DEBEKATUA EDUKITZEARI EDO ERABILTZEARI LOTUTAKO "
-"ERANTZUKIZUN MUGATUA\n"
-"\n"
-"Legeak onartzen duen neurrian, MandrakeSoft S.A.k edo bere banatzaileek, ez "
-"dute, ezein kasutan,\n"
-"erantzukizunik izango herrialde batzuetan, bertako legeek debekatutako edo "
-"mugatutako software-osagaiak edo\n"
-"Mandrake Linux-en guneetatik deskargatutako software-osagaiak eduki eta "
-"erabiltzearen ondorioz \n"
-"sortutako kalte berezi,ustekabeko,zuzeneko edo zeharkakoengatik (lana "
-"galtzea, lana etetea,\n"
-"finantza-galera, epai baten ondorioz ordaindu beharreko kuotak eta zigorrak "
-"edo beste edozein ondoriozko \n"
-"galera barne, mugarik gabe).\n"
-"Erantzukizun mugatu hau Software-produktuetan sartzen diren kriptografia "
-"handiko osagaiei aplikatzen \n"
-"zaie, baina ez da horietara mugatzen.\n"
-"\n"
-"\n"
-"3. GPL Lizentzia eta Lizentzia erlazionatuak\n"
-"\n"
-"Software-produktuak hainbat pertsonak edo erakundek sortutako osagaiak dira. "
-"Osagai \n"
-"horietako gehienak aurrerantzean\"GPL\" deituko diogun GNU Lizentzia Publiko "
-"Orokorraren\n"
-"edo antzeko lizentzien baldintzen araberakoak dira. Lizentzia horietako "
-"gehienek, \n"
-"beren osagaiak bikoizteko, egokitzeko edo birbanatzeko aukera ematen dute. "
-"Osagai bat erabili aurretik, irakurri \n"
-"arretaz osagai horren lizentzia-kontratuko baldintzak. Osagaiaren "
-"lizentziari\n"
-"buruzko galdera oro osagaiaren egileari egin beharko zaio, eta ez "
-"MandrakeSoft-i.\n"
-"MandrakeSoft S.A.k garatutako programak GPL Lizentziaren araberakoak dira. "
-"MandrakeSoft S.A.k\n"
-"idatzitako dokumentazioa lizentzia zehatz baten araberakoa da. Xehetasun "
-"gehiago nahi izanez gero, \n"
-"jo dokumentaziora.\n"
-"\n"
-"\n"
-"4. Jabetza intelektualaren eskubideak\n"
-"\n"
-"Software-produktuen osagaiei dagozkien eskubide guztiak haien \n"
-"egileenak dira eta software-programei\n"
-"aplikatzen zaizkien jabetza intelektualaren eta copyriht-aren legeek "
-"babesten dituzte.\n"
-"MandrakeSoft S.A.k eskubidea du Software-produktuak bere osotasunean edo "
-"zatika aldatzeko, \n"
-"bide guztiak erabiliz eta helburu guztietarako.\n"
-"\"Mandrake\", \"Mandrake Linux\" eta asoziatutako logotipoak MandrakeSoft S."
-"A.ren marka erregistratuak dira \n"
-"\n"
-"\n"
-"5. Lege arautzaileak \n"
-"\n"
-"Kontratu honen edozein zati epai batek deuseztzat, legez kanpokotzat edo "
-"aplikaezintzat jotzen badu, \n"
-"zati hori kendu egingo da kontratutik. Kontratuaren gainerako atal "
-"aplikagarriek ezarritakoa \n"
-"bete behar duzu.\n"
-"Lizentzia honetako baldintzak Frantziako legeen araberakoak dira.\n"
+#: ../../any.pm_.c:171
+msgid "restrict"
+msgstr "murriztu"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default user"
-msgstr "Erabiltzaile lehenetsia"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "Garbitu /tmp abiatzen den bakoitzean"
-#: ../../standalone/draksplash:1
+#: ../../any.pm_.c:174
#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"aurrerapen-barraren goi eta\n"
-"ezker ertzaren x koordenatua"
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Zehaztu RAM tamaina beharrezkoa bada (%d MB aurkituak)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Current interface configuration"
-msgstr "Uneko interfaze konfigurazioa"
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
+msgstr "Gaitu profil anitzak"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "Eman ram-tamaina MBtan"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../any.pm_.c:182
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"
+"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-"\n"
-"ISA txartela baduzu, hurrengo pantailako balioek zuzenak izan behar dute.\n"
-"\n"
-"PCMCIA txartela baduzu, txartelaren irq eta io jakin behar dituzu.\n"
+"``Murriztu komando-lerroko aukerak'' aukera ezin da erabili pasahitzik gabe"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not print any test page"
-msgstr "Ez inprimatu proba-orririk"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "Saiatu berriro"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr "Gurmukhi"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "Pasahitzak ez datoz bat"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s dagoeneko erabiltzen ari da\n"
+#: ../../any.pm_.c:191
+msgid "Init Message"
+msgstr "Hasierako mezua"
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
-msgstr "Behartu APIC gabe"
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
+msgstr "Open Firmware-ren atzerapena"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr "Pasahitz hau sinpleegia da (gutxienez %d karaktere izan behar ditu)"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
+msgstr "Nukleoaren abioaren denbora-muga"
-#: ../../standalone.pm:1
-#, c-format
-msgid "[keyboard]"
-msgstr "[Teklatua]"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
+msgstr "Gaitu CDtik abiaraztea?"
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP proxy-a"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
+msgstr "Gaitu OF abiaraztea?"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install List"
-msgstr "Instalatu zerrenda"
+#: ../../any.pm_.c:197
+msgid "Default OS?"
+msgstr "SE lehenetsia?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:231
msgid ""
-"Change\n"
-"Restore Path"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
+"\n"
+"On which drive are you booting?"
msgstr ""
-"Aldatu\n"
-"Leheneratze Bidea"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Erakutsi bakarrik hautatutako egunerako"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tMugatu disko erabilera %s MB-tera\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Oharra: Portu paraleloak ezin dira auto-detektatu)"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Nolako txartela duzu?"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Security"
-msgstr "Segurtasuna"
+"Partizio batean abioko kargatzailea instalatzea erabaki duzu.\n"
+"Horrek esan nahi du baduzula abioko kargatzaile bat abioko unitatean (adib.: "
+"System Commander).\n"
+"\n"
+"Zein da zure abioko unitatea?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:247
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"
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
-"\"xpdq\" interfaze grafikoa ere erabil dezakezu aukerak ezartzeko eta "
-"inprimatze-lanak maneiatzeko.\n"
-"KDE erabiltzen baduzu mahaigaineko ingurune gisa, \"estualdi-botoi\" bat "
-"egongo da, \"GELDITU inprimagailua!\" dioena, eta inprimatze-lan guztiak "
-"berehala etengo ditu bertan klik egitean. Papera trabatzen denean eta "
-"horrelakoetan erabili ohi da.\n"
+"Hauek dira sarrerak.\n"
+"Beste batzuk gehi ditzakezu edo lehendik daudenak aldatu."
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "Gehitu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Ezin dira leheneratzeko babes kopiak aurkitu...\n"
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "Eginda"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown"
-msgstr "Ezezaguna"
+#: ../../any.pm_.c:257
+msgid "Modify"
+msgstr "Aldatu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "Zerbitzari hau dagoeneko zerrendan dago, ezin da berriro erantsi.\n"
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "Zer sarrera-mota gehitu nahi duzu?"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Network Configuration"
-msgstr "Sare-konfigurazioa"
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "Linux"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "Beste SE bat (SunOS...)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Munduko gainerako protokoloa \n"
-" D kanalik ez (linea alokatuak)"
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "Beste SE bat (MacOS...)"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - /etc/xinetd.d/tftp:\n"
-" \tdrakTermServ-ek fitxategi hau konfiguratuko du \"mkinitrd-net\"-ek "
-"sortutako irudiekin\n"
-" \teta \"/etc/dhcpd.conf\"-eko sarrerekin batera lanegin dezan, "
-"diskorik gabeko\n"
-" \tbezero bakoitzari abiapen irudia zerbitzatzeko.\n"
-"\n"
-" \ttftp ezarpen fitxategi tipiko batek itxura hau dauka:\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"
-" \tBerezko instalaziotik hona egiten diren aldaketek \"disable"
-"\"ikurra 'no' jartzen\n"
-" \tdute eta direktorio bidea /var/lib/tftpboot, non \"mkinitrd-net\"-"
-"ek bere irudiak\n"
-" \tjartzen dituen."
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "Beste SE bat (windows...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "%s aukerak zenbakia izan behar du!"
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "Imajina"
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, c-format
-msgid "Notice"
-msgstr "Oharra"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "Root"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "Ez duzu X konfiguratu. Ziur zaude hau egin nahi duzula?"
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
+msgstr "Erantsi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"Inprimagailuaren konfigurazioa erabat automatikoki egingo da. Inprimagailua "
-"ondo detektatu ez bada edo nahiago baduzu konfigurazio pertsonalizatu bat, "
-"gaitu \"Eskuzko konfigurazioa\"."
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "What type of partitioning?"
-msgstr "Nolako partizioa?"
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "Irakurri/idatzi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-" "
-msgstr ""
-"FTP bitartez bidalitako fitxategi-zerrenda: %s\n"
-" "
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "Taula"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface"
-msgstr "Interfazea"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "Ez-segurua"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Multisession CD"
-msgstr "CD saio-anitza"
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "Etiketa"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated strings"
-msgstr "komaz banaturiko karaktere-hilarak"
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "Lehenetsia"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "Eskanerrak makina hauetatik erabili beharko lirateke:"
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
+msgstr "Initrd-tamaina"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Messages"
-msgstr "Mezuak"
+#: ../../any.pm_.c:318
+msgid "NoVideo"
+msgstr "BideorikEz"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Ezezaguna|CPH06X (bt878) [saltzaile ugari]"
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "Kendu sarrera"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP eta IMAP Zerbitzaria"
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "Ez da etiketa hutsik onartzen"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mexico"
-msgstr "Mexiko"
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
+msgstr "Nukleo-imajina bat zehaztu behar duzu"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model stepping"
-msgstr "Eredu hurratsa"
+#: ../../any.pm_.c:330
+msgid "You must specify a root partition"
+msgstr "Erroko partizio bat zehaztu behar duzu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
-msgstr "Ruanda"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "Etiketa hau jadanik erabili da"
-#: ../../lang.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Switzerland"
-msgstr "Suitza"
+msgid "Found %s %s interfaces"
+msgstr "%s %s interfaze aurkitu dira"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "Baduzu besterik?"
-#: ../../modules/interactive.pm:1
+#: ../../any.pm_.c:642
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Ba duzu %s interfazerik?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "Root izan behar duzu ezarpen fitxategia irakurtzeko. \n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Urruneko lpd inprimagailuaren aukerak"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"GNU/Linux erabiltzaile anitzeko sistema da, eta horrek esan nahi du\n"
-"erabiltzaile bakoitzak bere hobespenak eta bere fitxategiak eduki\n"
-"ditzakeela. ``Starter Guide'' irakurri dezakezu erabiltzaile-anitzeko\n"
-"sistemetaz gehiago jakiteko. Baina sistemaren administratzailea den\n"
-"\"root\"-ak ez bezala, hemen gehitutako erabiltzaileek debekatuta izango\n"
-"dute ezer aldatzea euren fitxategiak eta ezarpenak izan ezik, sistema,\n"
-"bere osotasunera eragin dezaketen nahigabeko aldaketa edo aldaketa\n"
-"maltzurretatik babestuz. Zuretzat erabiltzaile arrunt bat behintzat sortu\n"
-"beharko duzu -- hau da eguneroko lan arruntan erabili beharko zenuken\n"
-"kontua. Nahiz eta \"root\" gisa saioa hastea oso erosoa den edozein gauza\n"
-"eta guztia egiteko, oso arriskutsua ere izan daiteke! Hutsegiterik "
-"txikienak\n"
-"sistema funtzionatu ezinda utz lezake. Erabiltzaile arrunt gisa hutsegite "
-"larri\n"
-"bat egiten baduzu, gerta daiteken okerrena informazioren bat galtzea da,\n"
-"baina ez sistema osoa.\n"
-"\n"
-"Lehenengo eremuak benetako izena eskatzen dizu. Hori ez da derrigorrezkoa\n"
-"noski - berez, nahi duzun izena eman dezakezu. DrakX-k eremu honetan\n"
-"idazten duzun lehen hitza erabiliko du eta \"%s\" eremura kopiatu, hori "
-"izango\n"
-"da erabiltzaile honek sisteman erregistratzeko sartu beharko duen izena. "
-"Nahi\n"
-"baduzu lehenetsia gainidatzi eta erabiltzaile-izena alda dezakezu. Hurrengo\n"
-"urratsa pasahitza sartzea da. Segurtasun ikuspuntutik begiratuta, "
-"pribilegio\n"
-"gabeko erabiltzailearen (erabiltzaile arruntaren) pasahitza ez da \"root\"-"
-"arena\n"
-"bezain funtsezkoa, baina ez da horregatik arduragabekeriaz jokatu behar:\n"
-"izan ere, zure fitxategiak izan baidaitezke arriskuan.\n"
-"\n"
-"Behin \"%s\"-n klik eginez gero, nahi adina erabiltzaile erantsi ditzakezu.\n"
-"Erantsi erabiltzaile bat zure lagun bakoitzeko: zure aita edo arreba, "
-"esaterako.\n"
-"Klikatu \"%s\" erabiltzaileak eransten amaitzen duzunean.\n"
-"\n"
-"\"%s\" botoia klikatuta erabiltzaile horrentzako \"maskor\" lehenetsia alda\n"
-"dezakezu (bash da lehenetsia).\n"
-"\n"
-"Erabiltzaileak eransten amaitzen duzunean, sistema abiatzean bertan\n"
-"autimatikoki erregistratu daiteken erabiltzaile bat hautatzeko eskatuko "
-"zaizu.\n"
-"Ezaugarri horretan interesa badaukazu (eta bertako segurtasunaz gehiegi\n"
-"arduratzen ez bazara), hautatu nahi duzun erabiltzailea eta leiho "
-"kudeatzailea,\n"
-"ondoren klikatu \"%s\". Ezaugarri honetan interesik ez baduzu, kendu marka\n"
-"\"%s\" laukitik."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Internet Access..."
-msgstr "Konfiguratu Interneterako sarbidea..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Aukeratu babeskopia bakoitzaren arteko epea"
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "Ez"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Norway"
-msgstr "Norvegia"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "Bai"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Delete profile"
-msgstr "Ezabatu profila"
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "Ikus hardwarearen informazioa"
-#: ../../keyboard.pm:1
+# #this syntax doesn't work yet in perl :-(
+# #msgid "Installing driver for %s card %s"
+# #msgstr "%2$s %1$s txartelaren kontrolatzailea instalatzen"
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Danish"
-msgstr "Daniarra"
+msgid "Installing driver for %s card %s"
+msgstr "%s %s txartelaren kontrolatzailea instalatzen"
-#: ../../services.pm:1
+#: ../../any.pm_.c:663
#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Abioan automatikoki aktibatu BlokZenb tekla (zenbakiak\n"
-"blokeatzekoa) kontsolan eta XFree-n."
+msgid "(module %s)"
+msgstr "(%s modulua)"
-#: ../../network/network.pm:1
+#: ../../any.pm_.c:674
#, 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)."
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-"Sartu makina honen IP konfigurazioa.\n"
-"Elementu bakoitza IP helbide gisa sartu behar da puntuz\n"
-"bereizitako zenbakizko notazioan (adibidez, 1.2.3.4)."
+"Orain %s moduluaren aukerak ezarri ditzakezu\n"
+"Ohartu sartzen den edozein helbide 0x aurrizkiarekin jarri behar dela, adib. "
+"'0x123'"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
+#: ../../any.pm_.c:680
#, 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."
+"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 ""
-"Mandrake Linux instalazioa hainbat CD-ROMetan banatuta dago. DrakXk badaki\n"
-"hautatako pakete bat beste CD-ROM batean kokatuta dagoen ala ez, eta uneko\n"
-"CDa atera eta beste bat sartzeko eskatuko dizu behar izan ahala."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
-msgstr "Markatuta dagoenean, jabea eta taldea ez dira aldatuko"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "Bulgaria"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
-msgstr "Asteartea"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "Prozesagailuak"
+"Orain %s moduluari bere aukerak eman diezazkiokezu.\n"
+"Aukerak ``izena=balioa izena2=balioa2 ...'' formatuan daude.\n"
+"Adibidez, ``io=0x300 irq=7''"
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "Svalbard eta Jan Mayen uharteak"
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "Modulu-aukerak:"
-#: ../../standalone/drakTermServ:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "No NIC selected!"
-msgstr "Ez da NIC batere aukeratu!"
+msgid "Which %s driver should I try?"
+msgstr "Zein %s kontrolatzaile probatu behar dut?"
-#: ../../network/netconnect.pm:1
+#: ../../any.pm_.c:703
#, 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."
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
-"Arazoak izan dira konfigurazioan zehar.\n"
-"Probatu konexioa net_monitor edo mcc bidez. Konexioak funtzionatzen ez badu, "
-"konfigurazioa berrabiarazi beharko duzu"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "%s partizioa %s da orain"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Other files..."
-msgstr "Beste fitxategi batzuen babeskopia... "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
-msgstr "Kongo (Kinshasa)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "SMB zerbitzariaren IP"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "%s unitatearen partizio-taula diskoan idatziko da!"
+"Kasu batzuetan, %s kontrolatzaileak informazio gehigarria behar du egoki \n"
+"funtzionatzeko, nahiz eta normalki hori gabe ongi funtzionatzen duen. Aukera "
+"gehigarriak zehaztu \n"
+"nahi dituzu, edo kontrolatzaileari zure makina probatzen\n"
+"utzi, behar duen informazioa bilatzeko? Batzuetan, probatzeak ordenagailua "
+"blokeatuko du, baina\n"
+"horrek ez luke kalterik egin beharko."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing HPOJ package..."
-msgstr "HPOJ paketea instalatzen..."
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
+msgstr "Autoproba"
-#: ../../any.pm:1
-#, 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"
-msgstr ""
-"Abioko disko pertsonalizatuak Linux sistema abiarazteko aukera ematen du\n"
-"abioko kargatzaile normala erabili gabe. Baliagarria da zure sisteman LILO "
-"(edo grub)\n"
-"instalatu nahi ez baduzu, edo beste sistema eragile batek LILO kentzen badu, "
-"edo LILOk\n"
-"zure hardware-konfigurazioarekin funtzionatzen ez badu. Abioko disko "
-"pertsonalizatua Mandrake\n"
-"berreskuratzeko imajinarekin ere erabil daiteke, sistemaren hutsegite "
-"larriak\n"
-"errazago gainditu ahal izateko.\n"
-"Zure sistemarako abioko disko bat sortu nahi duzu?\n"
-"%s"
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "Zehaztu aukerak"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:719
#, c-format
msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
-"\n"
-" DrakBackup Deabruaren Txostena\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latvian"
-msgstr "Letoniarra"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr "hilero"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Retry"
-msgstr "Saiatu berriro"
+"Huts egin du %s modulua kargatzean.\n"
+"Beste parametro batzuekin saiatu nahi duzu berriro?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr "Modulu-izena"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
+msgstr "X programen atzipena"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Start at boot"
-msgstr "Abioan abiaraztekoa"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
+msgstr "rpm tresnen atzipena"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Erabili babeskopia inkrementalak"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
+msgstr "onartu \"su\""
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "Unitateko lehen sektorea (MBR)"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
+msgstr "administrazio-fitxategien atzipena"
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "El Salvador"
+#: ../../any.pm_.c:738
+msgid "access to network tools"
+msgstr "sareko tresnen atzipena"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
-msgstr "Joysticka"
+#: ../../any.pm_.c:739
+msgid "access to compilation tools"
+msgstr "Konpilaketa tresnen atzipena"
-#: ../../standalone/harddrake2:1
+#: ../../any.pm_.c:744
#, c-format
-msgid "DVD"
-msgstr "DVD"
+msgid "(already added %s)"
+msgstr "(%s jadanik gehituta)"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
-msgstr "Erabili Unicode modu lehenetsian"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "Pasahitz hau sinpleegia da"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "gailu hori gobernatzen duen GNU/Linux kernelaren modulua"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
+msgstr "Eman erabiltzaile-izen bat"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Hardwarearen ordua GMTn ezarria dago?"
+#: ../../any.pm_.c:751
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr ""
+"Erabiltzaile-izenak minuskulaz idatzitako letrak, zenbakiak, `-' eta `_' "
+"soilik izan ditzake"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "Partizio-taula berreskuratzen saiatzen"
+#: ../../any.pm_.c:752
+msgid "The user name is too long"
+msgstr "Erabiltzaile-izena luzeegia da"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "%s aukerak osoko zenbakia izan behar du!"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "Erabiltzaile-izen hau gehituta dago jadanik"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
-msgstr "Erabili pasahitza erabiltzaileak autentifikatzeko"
+#: ../../any.pm_.c:757
+msgid "Add user"
+msgstr "Gehitu erabiltzailea"
-#: ../../interactive/stdio.pm:1
+#: ../../any.pm_.c:758
#, c-format
msgid ""
-"Entries you'll have to fill:\n"
+"Enter a user\n"
"%s"
msgstr ""
-"Zuk bete beharreko sarrerak:\n"
+"Sartu erabiltzaile bat\n"
"%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-"Beste euskarrietan egingo diren babeskopientzako, fitxategiak disko "
-"zurrunean sortuko dira, gero mugituko dira beste euskarrietara. Aukera hau "
-"gaitu ezkero disko zurruneko tar fitxategiak ezabatuko ditu babeskopiaren "
-"ondoren."
-
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Ezin da bertsio-berritzea abiarazi!!!\n"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "Izena: "
+#: ../../any.pm_.c:759
+msgid "Accept user"
+msgstr "Onartu erabiltzailea"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
-msgstr "gora"
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "Benetako izena"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 milioi kolore (24 bit)"
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "Erabiltzaile-izena"
-#: ../../any.pm:1
-#, c-format
-msgid "Allow all users"
-msgstr "Eman baimena erabiltzaile guztiei"
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "Shell"
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr "MandrakeSoft denda ofiziala"
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "Ikonoa"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "Tamaina aldatzen"
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "Automatikoki hasi saioa"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:804
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
-"Sartu Drakbackup-i utziko zaion\n"
-" neurri handiena (MB)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Cable connection"
-msgstr "Kable-konexioa"
-
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, c-format
-msgid "User"
-msgstr "Erabiltzailea"
+"Ordenagailua konfigura dezaket automatikoki erabiltzaile bat sartzeko.\n"
+"Eginbide hau erabili nahi duzu?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Egin babeskopia berria leheneratu aurretik (inkrementaletan soilik.)"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "mkraid-ek huts egin du"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Name"
-msgstr "Izena"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "3. botoiaren emulazioa"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
-msgstr "Egiaztatu sgid fitxategien gehikuntzak/ezabaketak"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files..."
-msgstr "Fitxategiak bidaltzen..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "Israeldarra (fonetikoa)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
-msgstr "rpm tresnen atzipena"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Inprimagailua/gailua aukeratu/adierazi behar duzu!"
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "Aukeratu erabiltzaile lehenetsia:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Baimen arazoa CD atzipenean."
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
+msgstr "Aukeratu exekutatu beharreko leiho-kudeatzailea:"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "Telefono-zenbakia"
+#: ../../any.pm_.c:824
+msgid "Please choose a language to use."
+msgstr "Aukeratu erabiltzeko hizkuntza bat."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
+#: ../../any.pm_.c:826
+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 ""
-"Okerra: Zure soinu txartelarentzako \"%s\" gidaria zerrendatu gabe dago"
+"Instalatu ondoren erabilgarri egongo diren beste hizkuntza batzuk aukera "
+"ditzakezu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Inprimagailuaren izena, azalpena, kokalekua"
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "Denak"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
-msgstr "AEB (broadcast)"
+#: ../../any.pm_.c:961
+msgid "Allow all users"
+msgstr "Eman baimena erabiltzaile guztiei"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Erabili Xinerama hedapena"
+#: ../../any.pm_.c:961
+msgid "No sharing"
+msgstr "Ez konpartitu"
-#: ../../diskdrake/interactive.pm:1
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
#, c-format
-msgid "Loopback"
-msgstr "Atzera-begizta"
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr "%s paketea instalatu egin behar da. Instalatu nahi duzu?"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "West Europe"
-msgstr "Europa Mendebaldea"
+#: ../../any.pm_.c:973
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
+msgstr "NFS edo Samba erabiliz esporta dezakezu. Zein nahi duzu"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
-msgid "On CD-R"
-msgstr "CDROMean"
+msgid "Mandatory package %s is missing"
+msgstr "Derrigorrezko %s paketea falta da"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../any.pm_.c:987
msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
+"Would you like to allow users to share some of their directories?\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror "
+"and nautilus.\n"
"\n"
-"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"
+"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-"[AUKERAK] [PROGRAMA_IZENA]\n"
+"Erabiltzaileei beraien direktorioetako batzuk elkarbanatzen utzi nahi "
+"zenieke?\n"
+"Baimena ematen baduzu konqueror eta nautilus-en \"Elkarbanatu\" gainean klik "
+"eginez egin ahalko dute.\n"
"\n"
-"AUKERAK:\n"
-" --help - inprimatu laguntza mezu hau.\n"
-" --report - programa mandrake tresnetako bat izan beharko "
-"litzateke\n"
-" --incident - programa mandrake tresnetako bat izan beharko litzateke"
+"\"Pertsonalizatua\" erabiliz erabiltzaile bakoitzarentzako ezarpena zehaztu "
+"daiteke.\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake2 version %s"
-msgstr "Harddrake2 bertsioa %s"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
+msgstr "Abiarazi userdrake"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Preferences"
-msgstr "Hobespena"
+#: ../../any.pm_.c:1003
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
+msgstr ""
+"Erabiltzaileen araberako konpartitzeak \"fileshare\". \n"
+"taldea erabiltzen du. Userdrake erabil dezakezu talde \n"
+"honetan erabiltzeak gehitzeko."
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr "Swazilandia"
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
+msgstr "Ongi etorri Crackers-era"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "Dominikar errepublika"
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Txikia"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr "%s kopiatzen"
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
+msgstr "Estandarra"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Choose color"
-msgstr "Aukeratu kolorea"
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Handia"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac"
-msgstr "Siriera"
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+msgid "Higher"
+msgstr "Handiagoa"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "Paranoidea"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1061
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!"
+"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 ""
-"Aukeratu Mandrake Linux-en partizio berria instalatzeko ezabatu nahi duzun\n"
-"disko gogorra. Kontuz ibili, bertako datu guztiak galduko dira eta ezin\n"
-"izango dira berreskuratu!"
-
-#. -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
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Erabili %c eta %c teklak zein sarrera nabarmenduko den hautatzeko."
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "2 botoiko sagu generikoa"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Gaitu \"%s\" fitxategia exekutatzeko"
-
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr "Kendu bolumen logikoak lehendabizi\n"
-
-#. -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
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Nabarmendutako sarrera automatikoki abiaraziko da %d segundotan."
+"Maila hau kontuz erabili behar da. Sistema erabilerrazagoa izango da, baina\n"
+"oso erraz erasotzekoa: ez da erabili behar beste ordenagailu batzuekin edo \n"
+"Internetekin konektatuta dauden makinetan. Ez dago pasahitzik."
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../any.pm_.c:1064
msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
-"Ezin da /etc/sysconfig/bootsplash idatzi\n"
-"Ez da fitxategia aurkitu."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet access"
-msgstr "Interneterako sarbidea"
+"Pasahitzak gaituta daude orain, baina sareko ordenagailu gisa erabiltzea ez "
+"da komeni oraindik."
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../any.pm_.c:1065
msgid ""
-"y coordinate of text box\n"
-"in number of characters"
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
-"testu-laukiaren y koordenatua\n"
-"karaktere kopurutan"
+"Hau da Internetera bezero gisa konektatzeko erabiliko diren "
+"ordenagailuentzat gomendatzen den segurtasun estandarra. "
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1066
msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
-"Uneko inprimagailuaren aukera erabilgarrien zerrenda eskuratzeko, egin klik "
-"\"Inprimatzeko aukeren zerrenda\" botoian."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr "Zerbitzariak gaitzen..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Proba-orria(k) inprimatzen..."
+"Murriztapen batzuk daude, eta egiaztapen automatiko gehiago gauero egiten "
+"dira."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1067
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."
+"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 ""
-"Transferentzia arrakastatsua\n"
-"Zerbitzarian saioa hasi dezakezula frogatu dezakezu honela:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"eta ez zaizu pasahitzik eskatuko."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Jadanik badago %s muntatia-puntua duen partizio bat\n"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
-msgstr "msec-en orduoroko segurtasun azterketa gaitu/ezgaitu"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, 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''."
-msgstr ""
-"Hona iritsita, Mandrake Linux sistema eragilea zure disko zurrunean non\n"
-"instalatu aukeratu behar duzu. Zure disko zurruna hutsik badago edo\n"
-"lehendik dagoen sistema eragile batek leku erabilgarri guztia hartzen badu,\n"
-"unitatea zatikatu beharko duzu. Disko zurruna zatikatzea, funtsean, zure \n"
-"unitatea logikoki zatitzea da, Mandrake Linux sistema berria instalatzeko\n"
-"behar den lekua sortzeko.\n"
-"\n"
-"Partizio-prozesua itzulbiderik gabekoa izan ohi denez eta unitatean aurrez\n"
-"sistema eragile bat instalatuta badago datu galera eragin dezakeenez,\n"
-"zatikatzea korapilatsua eta deserosoa gerta daiteke esperientziarik gabeko\n"
-"erabiltzailea bazara. Zorionez, DrakX-ek prozesu hau errazten duen morroi\n"
-"bat dauka. Urrats honekin jarraitu aurretik, irakurri atal honetan zehar "
-"eta,\n"
-"guztiaren gainetik, hartu behar adina denbora.\n"
-"\n"
-"Zure unitate zurrunaren ezarpenaren arabera, zenbait aukera dituzu:\n"
-"\n"
-" * \"%s\": aukera honek automatikoki egingo ditu partizioak hutsik "
-"dauzkazun\n"
-"unitateetan. Aukera hau erabiltzen baduzu ez zaizu beste galderarik egingo.\n"
-"\n"
-" * \"%s\": morroiak Linux partizio bat edo gehiago detektatu du zure\n"
-"utitate zurrunean. Erabili nahi badituzu, hautatu aukera hau. Ondoren\n"
-"partizioetako bakoitza atxikiko zaion muntaia-puntua hauta dezazun\n"
-"eskatuko zaizu. Ondare bezala jasotako muntaia-puntuak automatikoki\n"
-"aukeratzen dira, eta gehinetan ideia ona da bere horretan mantentzea.\n"
-"\n"
-" * \"%s\": Microsoft Windows zure unitate zurrunean instalatuta badago\n"
-"eta bertako leku guztia hartzen badu, Linux-entzat lekua askatu beharko\n"
-"duzu. Horretarako, zure Microsoft Windows partizioa eta datuak ezaba\n"
-"ditzakezu (ikus ``Ezabatu disko osoa'' irtenbidea) edo zure Microsoft\n"
-"Windows FAT partizioari. neurria aldatu. Neurri-aldaketa daturik galdu\n"
-"gabe egin daiteke, baldin eta Windows partizioa aurrez desfragmentatzen\n"
-"baduzu eta FAT formatua erabiltzen badu. Datuen babeskopia egitea biziki\n"
-"gomendatzen da. Irtenbide hau gomendatzen da konputagailu berdinean\n"
-"Mandrake Linux eta Microsoft Windows erabili nahi badituzu.\n"
-"\n"
-" Aukera hau hautatu aurretik, konturatu zaitez prozedura honen\n"
-"ondoren, zure Microsoft Windows partizioa txikiago izan dela aurretik\n"
-"baino. Windows barruan zure datuak gorde edo software berria\n"
-"instalatzeko leku aske gutxiago izango duzu.\n"
-"\n"
-" * \"%s\": unitate zurrunean dauden datu eta partizio guztiak ezabatu\n"
-"eta zure Mandrake Linux sistema berriarekin ordezkatu nahi badituzu,\n"
-"hautatu aukera hau. Kontu izan, ezin izango baituzu atzera egin hautua\n"
-"berretsi ondoren.\n"
-"\n"
-" !! Aukera hau hautatzen baduzu, diskoko datu guztiak ezabatuko dira. !!\n"
-"\n"
-" * \"%s\": honek unitatean dagoen guztia ezabatuko du eta disko hutsarekin,\n"
-"hasieratik guztia zatikatzen hasiko da. Zure diskoko datu guztiak galduko\n"
-"dira.\n"
-"\n"
-" !! Aukera hau hautatzen baduzu, diskoko datu guztiak ezabatuko dira. !!\n"
-"\n"
-" * \"%s\": hautatu aukera hau unitate zurruna eskuz zatikatu nahi baduzu.\n"
-"Kontuz -- aukera ahaltsua baina arriskutsua da eta datu guztiak oso erraz\n"
-"galdu ditzakezu. Horregatik gomendatzen zaie aukera honen erabilera soilik\n"
-"aurrez antzekorik egin dutenei eta esperientziadunei. DiskDrake utilitatea\n"
-"erabiltzeko moduaz gehiago jakiteko jo ``Managing Your Partitions '' "
-"atalera\n"
-"``Starter Guide'' gidan."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
-msgstr "Ukraina"
+"Segurtasun-maila honekin, sistema hau erabil liteke zerbitzari gisa.\n"
+"Segurtasun hau nahikoa da sistema bezero askoren konexioak onartzen dituen \n"
+"zerbitzari gisa erabili ahal izateko. Oharra: zure makina Interneteko bezero "
+"soila bada, hobe duzu maila apalagoa."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Application:"
-msgstr "Aplikazioa:"
+#: ../../any.pm_.c:1070
+msgid ""
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
+msgstr ""
+"Aurreko mailan oinarritua, baina sistema erabat itxita dago.\n"
+"Segurtasun-eginbideak maximoan jarrita daude."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "External ISDN modem"
-msgstr "Kanpoko ISDN modema"
+#: ../../any.pm_.c:1076
+msgid "DrakSec Basic Options"
+msgstr "DrakSec Oinarrizko Aukerak"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr "Baietz ezarrita, posta bitartez ematen du azterketaren txostena."
+#: ../../any.pm_.c:1077
+msgid "Please choose the desired security level"
+msgstr "Mesedez aukeratu nahi duzun segurtasun-maila"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Zure aukera? (%s lehenetsia) "
+#: ../../any.pm_.c:1080
+msgid "Security level"
+msgstr "Segurtasun-maila"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr "Arazoen ebazpidea"
+#: ../../any.pm_.c:1082
+msgid "Use libsafe for servers"
+msgstr "Erabili libsafe zerbitzarietarako"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1083
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"
+"A library which defends against buffer overflow and format string attacks."
msgstr ""
-"Proba-orria(k) inprimagailura bidali dira.\n"
-"Denbora pixka bat igaro liteke inprimatzen hasi arte.\n"
-"Inprimatze-egoera:\n"
-"%s\n"
-"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
-msgstr "egunero"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and one unknown printer"
-msgstr "eta inprimagailu ezezagun bat"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Ireland"
-msgstr "Irlanda"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Restore Configuration "
-msgstr " leheneratzeko konfigurazioa "
+"Buffer-gainezkatzeen eta formatu-kateen erasoen aurka defendatzen duen "
+"liburutegi bat."
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Ezarpen zuzena da hau?"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
+msgstr "Segurtasun Kudeatzailea (sarrera edo posta-e)"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1166
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."
+"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 ""
-"Orain Internet/sare konexioa konfiguratuko duzu. Zure konputagailua "
-"Internetera\n"
-"edo bertako sare batera konektatu nahi baduzu, klikatu \"%s\". Mandrake "
-"Linux,\n"
-"sareko moldagailuak eta modemak automatikoki detektatzen saiatuko da. "
-"Detekzio\n"
-"honek hutseginten badu, \"%s\" laukiari marka kendu. Sarea ez ezartzea edo\n"
-"beranduago egitea aukeratu dezakezu, orduan \"%s\" botoia sakatzeak "
-"hurrengo\n"
-"urratsera eramango zaitu.\n"
-"\n"
-"Zure sarea ezartzerakoan, erabili daitezkeen konexio aukerak hauek dira:\n"
-"ohiko modema, RDSI modema, ADSL lotura, kable modema, eta azkenik LAN "
-"koneksio\n"
-"sinplea (Ethernet).\n"
-"\n"
-"Ez dugu konfigurazio aukera bakoitza zehaztuko - zure (ISP) Internet "
-"Zerbitzu\n"
-"Hornitzailea edo sistema administradorearen parametro guztiak dituzula "
-"ziurtatu\n"
-"besterik ez, IP helbidea, atari lehenetsia, DNS zerbitzariak, etab.\n"
-"\n"
-"``Starter Guide''-n (Erabiltzailearen gida) Interneteko konexioei buruzko\n"
-"kapitulua kontsulta dezakezu konfigurazioaren xehetasunak ezagutzeko, edo\n"
-"bestela, itxaron sistema instalatu arte, eta erabili bertan azaltzen zaizun\n"
-"programa zure konexioa konfiguratzeko."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Morroiaren konfigurazioa"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Autoprobe"
-msgstr "Autoproba"
+"Hemen aukeratu dezakezu zein tekla edo tekla konbinaziok\n"
+"egingo duen teklatu mota ezberdinen arteko konmutazioa\n"
+"(adib: latindarra eta ez latindarra)"
-#: ../../security/help.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, c-format
msgid ""
-"if set to yes, check for :\n"
-"\n"
-"- empty passwords,\n"
+"Welcome to %s the operating system chooser!\n"
"\n"
-"- no password in /etc/shadow\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
"\n"
-"- for users with the 0 id other than root."
msgstr ""
-"baietz ezarrita, aztertu:\n"
-"\n"
-"- pasahitz hutsak,\n"
+"Ongi etorri %s sistema eragilearen aukeratzailera!\n"
"\n"
-"- /etc/shadow-n pasahitza ez\n"
+"Aukeratu sistema eragile bat goiko zerrendan edo\n"
+"itxaron %d segundo lehenetsitako abiorako.\n"
"\n"
-"- root ez beste erabiltzaileak 0 id dutenak."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files..."
-msgstr "Sistema fitxategien babeskopia..."
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Ongi etorri GRUB sistema eragilearen aukeratzailera!"
-#: ../../any.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:986
#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Ezin da difusioa erabili NIS domeinurik gabe"
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Erabili %c eta %c teklak zein sarrera nabarmenduko den hautatzeko."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "\"%s\" inprimagailua ezabatzen..."
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Sakatu sartu hautatutako SE abiarazteko, 'e' abiarazi aurreko"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell history size"
-msgstr "Maskorraren historiaren neurria"
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "komandoak editatzeko, edo 'c' komando-lerroa nahi baduzu."
-#: ../../standalone/drakfloppy:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:995
#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Nabarmendutako sarrera automatikoki abiaraziko da %d segundotan."
-#: ../../standalone/drakpxe:1
-#, 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"
-msgstr ""
-"Mesedez adierazi non dagoen kokatuta auto_install.cfg fitxategia.\n"
-"\n"
-"Utzi hutsik ez baduzu instalazio modu automatikoa ezarri nahi.\n"
-"\n"
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
+msgstr "ez dago nahiko leku /boot-en"
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on other machines"
-msgstr "Beste makina batzutan konfiguratuta"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "Mahaigaina"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "cpuid aginduaren bitartez lortu daitekeen informazio maila"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "Hasi menua"
-#: ../../lang.pm:1
+#: ../../bootloader.pm_.c:1120
#, c-format
-msgid "Peru"
-msgstr "Peru"
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "Abioko kargatzailea ezin da %s partizio batean instalatu\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " on device: %s"
-msgstr " gailu honetan: %s"
+#: ../../bootlook.pm_.c:53
+msgid "Boot Style Configuration"
+msgstr "Abioko estilo-konfigurazioa"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "Kendu Windows(TM)"
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
+msgstr "/_Fitxategia"
-#: ../../services.pm:1
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"X Hizki-moten Zerbitzaria abiarazten du (ezinbestekoa da XFree-k funtzionatu "
-"dezan)."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
+msgstr "/Fitxategia/I_rten"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"Balio hauetako gehienak martxan duzun\n"
-"sistematik hartu dira.\n"
-"Behar bezala aldatu ditzakezu."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
+msgstr "<control>Q"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Hautatu letra-tipoen fitxategi edo direktorioa eta egin klik 'Gehitu'n"
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
+msgstr "NewStyle kategorizatze-monitorea"
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "Madagaskar"
+#: ../../bootlook.pm_.c:83
+msgid "NewStyle Monitor"
+msgstr "NewStyle monitorea"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
+#: ../../bootlook.pm_.c:84
+msgid "Traditional Monitor"
+msgstr "Monitore tradizionala"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
-msgstr "Cron ezin du oraindik erabili root-ek ez bestek"
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
+msgstr "Gtk+ monitore tradizionala"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "System"
-msgstr "Sistema"
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
+msgstr "Abiarazi Aurora abioan"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Ezaugarri hau erabili nahi duzu?"
+#: ../../bootlook.pm_.c:89
+msgid "Lilo/grub mode"
+msgstr "Lilo/grub modua"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr "Arabiarra"
+#: ../../bootlook.pm_.c:89
+msgid "Yaboot mode"
+msgstr "Yaboot modua"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:138
+msgid "Install themes"
+msgstr "Instalatu gaiak"
+
+#: ../../bootlook.pm_.c:139
msgid ""
-"\n"
-"- Options:\n"
+"Display theme\n"
+"under console"
msgstr ""
-"\n"
-"- Aukerak:\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Password required"
-msgstr "Pasahitza behar da"
+"Erakutsi gaia\n"
+"kontsolapean"
-#: ../../common.pm:1
-#, c-format
-msgid "%d minutes"
-msgstr "%d minutu"
+#: ../../bootlook.pm_.c:140
+msgid "Create new theme"
+msgstr "Gai berria sortu"
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: ../../bootlook.pm_.c:184
#, c-format
-msgid "Graphics card: %s"
-msgstr "Txartel grafikoa: %s"
+msgid "Backup %s to %s.old"
+msgstr "Babestu %s %s.old bezala"
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:187
#, c-format
-msgid "WebDAV transfer failed!"
-msgstr "WebDAV transferentziak hutsegin du!"
+msgid "Copy %s to %s"
+msgstr "Kopiatu %s %s-ra"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "XFree konfigurazioa"
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+msgstr "Errorea"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Choose action"
-msgstr "Aukeratu ekintza"
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
+msgstr "Ez da lilo mezua aurkitzen"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Polynesia"
-msgstr "Polinesia frantsesa"
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr "Ezin da /etc/sysconfig/bootsplash idatzi."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Normalean, DrakX-k ez dauka arazorik zure saguaren botoi kopurua "
-"detektatzeko.\n"
-"Izango balu, bi-botoidun sagua duzula suposatuko du eta hirugarren botoia "
-"emula\n"
-"dezan konfiguratuko du. Bi-botoidun sagu batean hirugarren-botoia "
-"``sakatu''\n"
-"daiteke ezker eta eskuin botoiak batera sakatuz. DrakX-k automatikoki "
-"jakingo du\n"
-"zure saguak PS/2, serie edo USB interfazea erabiltzen duen.\n"
-"\n"
-"Zerbaitegatik beste mota bateko sagua zehaztu nahi baduzu, hautatu ezazu\n"
-"aurkezten zaizun zerrendan.\n"
-"\n"
-"Lehenetsitakoa ez den sagua aukeratzen baduzu, frogarako pantaila bat "
-"azalduko\n"
-"da. Erabili botoiak eta gurpila ezarpenak egokiak direla eta sagua behar "
-"bezala\n"
-"dabilela egiaztatzeko. Saguak ez badu behar bezala funtzionatzen, sakatu "
-"hutsune\n"
-"barra edo [Sartu] tekla froga galerazteko eta aukera zerrendara itzultzeko.\n"
-"\n"
-"Gurpil-saguak batzutan ez dira automatikoki detektatzen, beraz zure sagua\n"
-"zerrendatik aukeratu beharko duzu. Zure sagua lotzen den atakari dagokion\n"
-"sagu bat aukeratu. Sagu bat aukeratu eta \"%s\" botoia sakatu ondoren, sagu\n"
-"irudi bat erakusten da pantailan. Biratu saguaren gurpila egokiro aktibatu "
-"dela\n"
-"ziurtatzeko. Pantailako sagu-gurpila zure saguaren gurpila mugitzearekin "
-"batera\n"
-"mugitzen denean, frogatu botoiak eta aztertu pantailan sagu gezia zure "
-"sagua\n"
-"mugitzen duzun arabera mugitzen den."
-
-#: ../../services.pm:1
+#: ../../bootlook.pm_.c:222
#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Onartu OKI 4w eta winprinter bateragarriak."
+msgid "Write %s"
+msgstr "Idatzi %s"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:224
msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-"direktorio zuhaitzaren gainean \".backupignore\" fitxategian zerrendatutako "
-"fitxategiak edo zernahitarakoak ez dira babestuko"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Abiarazi ALSA (Advanced Linux Sound Architecture) soinu-sistema"
+"Ezin da /etc/sysconfig/bootsplash idatzi\n"
+"Ez da fitxategia aurkitu."
-# #this syntax doesn't work yet in perl :-(
-# #msgid "Installing driver for %s card %s"
-# #msgstr "%2$s %1$s txartelaren kontrolatzailea instalatzen"
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "%s %s txartelaren kontrolatzailea instalatzen"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr "Ezin da mkinitrd -f /boot/initrd-%s.img %s jaurti."
-#: ../../printer/printerdrake.pm:1
+#: ../../bootlook.pm_.c:238
#, 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 "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-"Zure lehengo inprimagailu lehenetsia (\"%s\") transferitu duzu, Inprimagailu "
-"lehenetsia izan behar du %s inprimatze-sistema berrian ere?"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Enable Server"
-msgstr "Gaitu Zerbitzaria"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ukrainian"
-msgstr "Ukrainarra"
+"Eraiki RAMdiskoa (initrd) honekin 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:244
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."
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-"Sarerako sarbidea ez dago martxan eta ezin da abiarazi. Begiratu "
-"konfigurazioa eta hardwarea ondo dauden. Gero saiatu berriro urruneko "
-"inprimagailua konfiguratzen."
+"Ezin da LiLo berriro jaurti!\n"
+"Jaurti \"lilo\" root bezala komando lerroan LiLo gai instalazioa osatzeko."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Gaitu \"%s\" fitxategia idazteko"
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
+msgstr "Berriro jaurti 'lilo'"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Sartu abioko disketea %s unitatean"
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+msgid "Notice"
+msgstr "Oharra"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local network(s)"
-msgstr "Bertako Sarea(k)"
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr "LiLo eta Bootsplash gai instalazio arrakastatsua"
-#: ../../help.pm:1
-#, c-format
-msgid "Remove Windows"
-msgstr "Kendu Windows"
+#: ../../bootlook.pm_.c:251
+msgid "Theme installation failed!"
+msgstr "Gai instalazioak hutsegin du!"
-#: ../../standalone/scannerdrake:1
+#: ../../bootlook.pm_.c:259
#, c-format
msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"Zure %s konfiguratu da.\n"
-"Orain dokumentuak eskaneatu ditzakezu \"XSane\" erabiliz, aplikazio menuan "
-"Multimedia/Grafikoak taldean"
+"Orain %s erabiltzen ari zara Abioko Kudeatzaile gisa.\n"
+"Egin klik 'Konfiguratu'n instalazio-morroia abiarazteko."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Firewire controllers"
-msgstr "Firewire kontrolatzaileak"
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
+msgstr "Konfiguratu"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:268
+msgid "Splash selection"
+msgstr "Splash hautaketa"
+
+#: ../../bootlook.pm_.c:271
+msgid "Themes"
+msgstr "Gaiak"
+
+#: ../../bootlook.pm_.c:273
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"
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
"\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 ""
-"Abiapen-zamatzailearen parametro orokorrak ezartzen dituzun ondoren, "
-"abiapen\n"
-"garaian erabili ahal izango diren abiapen aukeren zerrenda erakutsiko da.\n"
-"\n"
-"Zure makinan beste sistema eragile batzuk instalatuta badaude, abiapen\n"
-"menura automatikoki erantsiko dira, dauden aukerak era zehatzagoan doitu\n"
-"ditzakezu \"%s\" klikatuz sarrera berri bat sortzeko; sarrera bat hautatu\n"
-"eta \"%s\" edo \"%s\" klikatuz berau aldatu edo ezabatzeko. \"%s\"-k zure\n"
-"aldaketak balioztatzen ditu.\n"
-"\n"
-"Baliteke ere kontsolara jo eta makina berrabiarazten duen edozeini beste\n"
-"sistema eragile hauetara sarrerarik eman nahi ez izatea. sistema eragileei\n"
-"dagozkien sarrerak ezabatu ditzakezu, abiapen-zamatzailearen menutik "
-"beraiek\n"
-"kentzeko, baino abiapen disko bat beharko duzu beste sistema eragile horiek\n"
-"abiatzeko!"
-
-#: ../../standalone/drakboot:1
-#, c-format
+"Hautatu gai bat\n"
+"lilo eta bootsplash-entzat,\n"
+"bakoitzarena banaka\n"
+"hautatu dezakezu"
+
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
+msgstr "Lilo pantaila"
+
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
+msgstr "Bootsplash"
+
+#: ../../bootlook.pm_.c:316
msgid "System mode"
msgstr "Sistema modua"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"NetWare inprimagailuan inprimatzeko, NetWare inprimaketa-zerbitzariaren "
-"izena eman behar duzu (Oharra! baliteke bere TCP/IP ostalari-izena "
-"desberdina izatea!) eta baita atzitu nahi duzun inprimagailuaren inprimaketa-"
-"ilararen izena eta erabiltzaile-izenak eta pasahitzak ere."
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
+msgstr "Abiarazi X-Window sistema hasieran"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Netmask:"
-msgstr "Sare-maskara:"
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
+msgstr "Ez, ez dut saioa automatikoki hasi nahi"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
-msgstr "Egin berandugo"
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "Bai, automatikoki honekin hasi nahi dut (erabiltzailea, mahaigaina)"
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "Erantsi"
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
+msgstr "Ados"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr "Freskatu inprimagailu-zerrenda (urruneko CUPS inprimagailuak ikusteko)"
+#: ../../common.pm_.c:107
+msgid "GB"
+msgstr "GB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Aukera hau hartzen denean, CUPS-en abio bakoitzan automatikoki egiaztatzen "
-"da \n"
-"\n"
-"- LPD/LPRng instalatuta dagoen, CUPS-ek ez du /etc/printcap gainidatziko\n"
-"\n"
-"- /etc/cups/cupsd.conf falta bada, sortu egingo da\n"
-"\n"
-"- inprimagailuaren informazioa zabaltzen denean, ez daukala \"localhost\" "
-"zerbitzari izen gisa.\n"
-"\n"
-"Neurri hauetakoren batek arazorik sortzen badizu, itzaldu aukera hau, baino "
-"orduan kontu hauetaz arduratu beharko duzu."
+#: ../../common.pm_.c:107
+msgid "KB"
+msgstr "KB"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"Auto-instalazioa erabat automatiza daiteke nahi izanez gero,\n"
-"kasu horretan, disko gogorra hartuko du!!\n"
-"(beste makina batean instalatzeko pentsatua da aukera hau).\n"
-"\n"
-"Beharbada nahiago izango duzu instalazioa errepikatzea.\n"
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "\"%s\" sareko inprimagailua, %s portua"
+#: ../../common.pm_.c:115
+msgid "TB"
+msgstr "TB"
-#: ../../standalone/drakgw:1
+#: ../../common.pm_.c:123
#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "Aukeratu zein sare-moldagailu konektatuko den zure sare lokalarekin."
+msgid "%d minutes"
+msgstr "%d minutu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
-msgstr "Ados, leheneratu beste fitxategiak"
+#: ../../common.pm_.c:125
+msgid "1 minute"
+msgstr "minutu bat"
-#: ../../install_steps_interactive.pm:1
+#: ../../common.pm_.c:127
#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Aukeratu zure teklatu-diseinua."
+msgid "%d seconds"
+msgstr "%d segundo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "Inprimagailuaren URIa"
+#: ../../common.pm_.c:172
+msgid "Can't make screenshots before partitioning"
+msgstr "Ezin da pantaila-argazkirik egin partizioak egin aurretik"
-#: ../../standalone/drakbackup:1
+#: ../../common.pm_.c:179
#, c-format
-msgid "Not erasable media!"
-msgstr "Ez da euskarri ezabagarria!"
+msgid "Screenshots will be available after install in %s"
+msgstr ""
+"%s(e)n instalazioa egindakoan pantaila-argazkiak erabilgarri egongo dira"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "Terminalean oinarritua"
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+msgid "France"
+msgstr "Frantzia"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr "Gaitu/Ezgaitu IP iruzurren aurkako babesa."
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
+msgstr "Costa Rica"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Inprimatze-sisteman segurtasun-maila %s instalatzen"
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+msgid "Belgium"
+msgstr "Belgika"
-#: ../../any.pm:1
-#, c-format
-msgid "The user name is too long"
-msgstr "Erabiltzaile-izena luzeegia da"
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
+msgstr "Txekiar errepublika"
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "Beste SE bat (windows...)"
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+msgid "Germany"
+msgstr "Alemania"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr "Urruneko WebDAV gunea dagoeneko sinkronizatuta!"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+msgid "Greece"
+msgstr "Grezia"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
-msgstr "Inprimagailuaren datu-basea irakurtzen..."
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+msgid "Norway"
+msgstr "Norvegia"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Sortu auto-instalazioko disketea"
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+msgid "Sweden"
+msgstr "Suedia"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t erabiltzaile-izena: %s\n"
-"\t\t bide-izena: %s \n"
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
+msgstr "Herbehereak"
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr "Somalia"
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+msgid "Italy"
+msgstr "Italia"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr "Ez dago kode irekiko gidaririk"
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+msgid "Austria"
+msgstr "Austria"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
-msgstr "Def."
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
+msgstr "Estatu Batuak"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../diskdrake/dav.pm_.c:19
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"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 ""
-"Aurreko mailan oinarritua, baina sistema erabat itxita dago.\n"
-"Segurtasun-eginbideak maximoan jarrita daude."
+"WebDAV, web zerbitzari baten direktorioa zurean muntatu eta bertako "
+"fitxategi\n"
+"sistema balitz moduan erabiltzeko aukera ematen dizun protokolo bat da (web\n"
+"zerbitzaria WebDAV zerbitzari bezala konfiguratuta badago). WebDAV muntaia\n"
+"puntuak gehitu nahi bazenitu, hautatu \"Berria\"."
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "Nikaragua"
+#: ../../diskdrake/dav.pm_.c:27
+msgid "New"
+msgstr "Berria"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "Kaledonia berria"
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Desmuntatu"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Europako protokoloa (EDSS1)"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Muntatu"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Delete"
-msgstr "/_Ezabatu"
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
+msgstr "Zerbitzaria"
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "Bideo modua"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Muntatze-puntua"
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
-msgstr "Oman"
+#: ../../diskdrake/dav.pm_.c:85
+msgid "Please enter the WebDAV server URL"
+msgstr "Mesedez sartu WebDAV zerbitzariaren URL"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Mesedez sartu zure posta-e helbidea azpian "
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
+msgstr "URLak http:// edo https:// hasiera izan behar du"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Network Monitoring"
-msgstr "Sare Monitorizazioa"
+#: ../../diskdrake/dav.pm_.c:109
+msgid "Server: "
+msgstr "Zerbitzaria: "
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "SunOS"
-msgstr "SunOS"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
+msgstr "Muntatze-puntua: "
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "New size in MB: "
-msgstr "Tamaina berria MBtan: "
+msgid "Options: %s"
+msgstr "Aukerak: %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Partizio-taularen mota: %s\n"
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
+msgstr "Egin zure datuen babeskopia lehendabizi"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication Windows Domain"
-msgstr "windowsen Autentifikazio Domeinua"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "Irakurri arretaz"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "Estatu Batuetako teklatua"
+#: ../../diskdrake/hd_gtk.pm_.c:100
+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 ""
+"Aboot erabiltzeko asmoa baduzu, utzi lekua (2048 sektore nahikoa da)\n"
+"diskoaren hasieran"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr "Botoien emulazioa"
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "Morroia"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", \"%s\" sareko inprimagailua, %s portua"
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
+msgstr "Aukeratu ekintza"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
-"\n"
-"Drakbackup ekintzak zinta bitartez:\n"
-"\n"
+"FAT partizio handi bat duzu\n"
+"(normalean MicroSoft Dos/Windows-ek erabilia).\n"
+"Lehendabizi partizio horri tamaina aldatzea gomendatzen dizut\n"
+"(egin klik bertan, gero egin klik \"Aldatu tamaina\"n)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-" FTP konexio-arazoa: zure babeskopien fitxategiak ezin izan dira bidali FTP "
-"bidez.\n"
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "Egin klik partizio batean"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Sending Speed:"
-msgstr "Bidalketa abiadura:"
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "Xehetasunak"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"The classic bug sound tester is to run the following commands:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
-"currently uses\n"
-"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services're configured to be run on\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Soinu akats frogatzaile klasikoak ondorengo komandoak exekutatu behar ditu:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" zure txartelak zein gidari lehenetsi "
-"erabiltzen\n"
-"duen esango dizu\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" zure txartelak orain zein gidari "
-"erabiltzen\n"
-"duen esango dizu\n"
-"\n"
-"- \"/sbin/lsmod\" bere modulua (gidaria) zamatuta ala ez dagoen egiaztatzen\n"
-"lagunduko dizu\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" eta \"/sbin/chkconfig --list alsa\" "
-"esango\n"
-"dizute 'sound' eta 'alsa' zerbitzuak initlevel 3-n exekutatzeko\n"
-"konfiguratuta dauden\n"
-"\n"
-"- \"aumix -q\" soinu bolumena mutututa dagoen ala ez esango dizu\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" soinu txartela zein programak erabiltzen duen "
-"esango du\n"
+#: ../../diskdrake/hd_gtk.pm_.c:254
+msgid "No hard drives found"
+msgstr "Ez da disko zurrunik aurkitu"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
-msgstr "Halt akatsa"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Posta alerta konfigurazioa"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "FAT"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr "Tokelau"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Matching"
-msgstr "Bat badatoz"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Journalised FS"
+msgstr "Journalised FS"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bosnian"
-msgstr "Bosniarra"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Release: "
-msgstr "Bertsioa: "
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "Swap"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection speed"
-msgstr "Konexioaren abiadura"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "Hutsik"
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr "Namibia"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "Bestelakoa"
-#: ../../services.pm:1
-#, c-format
-msgid "Database Server"
-msgstr "Datu-baseen zerbitzaria"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "Fitxategi-sistemen motak:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr "Gidariaren gaitasun bereziak (erretzeko trebetasuna eta DVD esukarria)"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "Sortu"
-#: ../../raid.pm:1
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Ezin zaio partizio bat gehitu RAID md%d-ri (formateatuta dago)"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "Mota"
-#: ../../standalone/drakclock:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid "Network Time Protocol"
-msgstr "Sareko Ordu Protokoloa"
+msgid "Use ``%s'' instead"
+msgstr "Erabili ``%s'' horren ordez"
-#: ../../Xconfig/card.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "Ezabatu"
+
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
+msgstr "Erabili ``Desmuntatu'' lehendabizi"
+
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, 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."
+"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-"Zure txartelak 3D hardware-azelerazioaren euskarria izan dezake, baina XFree "
-"%s(r)ekin soilik,\n"
-"KONTUAN IZAN EUSKARRI ESPERIMENTALA DELA ETA ORDENAGAILUA BLOKEA DEZAKEELA."
-"Zure txartelak XFree %s euskarria du, eta horrek euskarri hobea izan dezake "
-"2Dan."
+"%s partizio-mota aldatu ondoren, partizio honetako datu guztiak galdu egingo "
+"dira"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Itxoin mesedez, segurtasun aukerak ezartzen..."
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose a partition"
+msgstr "Aukeratu partizio bat"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "Ezezaguna|CPH05X (bt878) [saltzaile ugari]"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose another partition"
+msgstr "Aukeratu beste partizio bat"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Abiarazi X-Window sistema hasieran"
+#: ../../diskdrake/interactive.pm_.c:202
+msgid "Exit"
+msgstr "Irten"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr "orduro"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
+msgstr "Aldatu aditu modura"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
-msgstr "Eskuineko Shift tekla"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
+msgstr "Aldatu modu normalera"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " behar bezala leheneratu dira hona: %s "
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "Desegin"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Inprimagailuaren portua CUPS-entzako ekuragarri jartzen..."
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "Jarraitu hala ere?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr "Antigua eta Barbuda"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "Irten gorde gabe"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! Sistemaren datubasean dagoen pasahitza Terminal Zerbitzariaren\n"
-" datubasean dagoenaren desberdina dela adierazten du.\n"
-"Erabitzailea ezabatu/berrerantsi Terminal Zerbitzarira sarrera emateko."
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "Irten partizio-taula idatzi gabe?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "Espainiarra"
+#: ../../diskdrake/interactive.pm_.c:257
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "/etc/fstab aldaketak gorde nahi dituzu?"
-#: ../../services.pm:1
-#, c-format
-msgid "Start"
-msgstr "Hasi"
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "Garbitu dena"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
-msgstr "Root-aren koneksio zuzena"
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
+msgstr "Auto-esleitu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring applications..."
-msgstr "Aplikazioak konfiguratzen..."
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+msgid "More"
+msgstr "Gehiago"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"Ongi etorri Inprimagailu Ezarpen Morroira\n"
-"\n"
-"Morroi honek zure konputagailu honetara lotutako inprimagailua(k), sarera "
-"zuzenean lotutakoa(k) edo urruneko Windows makina batera loturikoa(k) "
-"instalatzen lagunduko dizu.\n"
-"\n"
-"Makina honetara lotutako inprimagailuak badituzu, mesedez entxufatu eta "
-"piztu itzazu auto-detektatuak izan daitezen. Berdina sareko inprimagailu eta "
-"Windows makinetara lotutako inprimagailuekin ere.\n"
-"\n"
-"Ohartu sarera lotutako inprimagailuen auto-detekzioak denbora gehiago behar "
-"duela makina honetara lotuta dauden inprimagailuak bakarrik auto-"
-"detektatzeko baino. Beraz itzaldu sareko eta/edo windows-ostalari "
-"inprimagailuen auto-detekzioa behar ez duzunean.\n"
-"\n"
-" Klikatu \"Hurrengoa\" prest zaudenean, eta \"Etsi\" zure inprimagailua "
-"orain ezarri nahi ez duzunean."
+#: ../../diskdrake/interactive.pm_.c:278
+msgid "Hard drive information"
+msgstr "Disko gogorraren informazioa"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
-msgstr "Modem-konexio normala"
+#: ../../diskdrake/interactive.pm_.c:310
+msgid "All primary partitions are used"
+msgstr "Lehen mailako partizio guztiak erabilita daude"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "File Selection"
-msgstr "Fitxategi-hautapena"
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "Ezin da partizio gehiago gehitu"
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
+#: ../../diskdrake/interactive.pm_.c:312
+msgid ""
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
+msgstr ""
+"Partizio gehiago edukitzeko, ezabatu horietako bat partizio hedatu bat sortu "
+"ahal izateko"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Ezabatu zinta babeskopia egin aurretik"
+#: ../../diskdrake/interactive.pm_.c:322
+msgid "Save partition table"
+msgstr "Gorde partizio-taula"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
-msgstr "Exekutatu ezarpen tresna"
+#: ../../diskdrake/interactive.pm_.c:323
+msgid "Restore partition table"
+msgstr "Leheneratu partizio-taula"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "Abioko kargatzailearen instalazioa"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
+msgstr "Berreskuratu partizio-taula"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Erroko partizioaren tamaina MBtan: "
+#: ../../diskdrake/interactive.pm_.c:326
+msgid "Reload partition table"
+msgstr "Birkargatu partizio-taula"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Nahitaezko paketea da, ezin da desautatu"
+#: ../../diskdrake/interactive.pm_.c:331
+msgid "Removable media automounting"
+msgstr "Euskarri aldagarrien automuntatzea"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "Hautatu fitxategia"
+
+#: ../../diskdrake/interactive.pm_.c:347
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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
-" - Sortu etherboot diskete/CD-ak:\n"
-" \tDiskorik gabeko makinek ROM irudiak behar dituzte NIC-ean, edo "
-"abiapen disketea\n"
-" \tedo CD-a abiapen sekuentzia hasteko. drakTermServ-ek irudihauek "
-"sortzen\n"
-" \tlagunduko du, bezero makinak duen NIC-ean oinarri hartuta.\n"
-" \t\t\n"
-" \t3Com 3c509 txartelarentzako diskete bat eskuz sortzeko oinarrizko "
-"adibidea:\n"
-" \t\t\n"
-" \tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"The backup partition table has not the same size\n"
+"Still continue?"
+msgstr ""
+"Babeskopiako partizio-taulak ez du tamaina bera\n"
+"Jarraitu hala ere?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "Etherboot ISO irudia %s da"
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "Kontuz"
-#: ../../services.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:362
msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
-"named (BIND) domeinu-izenen zerbitzari bat (DNS) da, ostalari-izenak ebatzi "
-"eta IP helbide bihurtzeko erabiltzen dena."
+"Sartu diskete bat unitatean\n"
+"Disketeko datu guztiak galdu egingo dira"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr "Santa Luzia"
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
+msgstr "Partizio-taula berreskuratzen saiatzen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "Azaroa"
+#: ../../diskdrake/interactive.pm_.c:379
+msgid "Detailed information"
+msgstr "Informazio xehea"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
-msgstr "Deskonektatu..."
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "Aldatu tamaina"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Report"
-msgstr "Txostena"
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "Lekuz aldatu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr "Palau"
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "Formateatu"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "maila"
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "Gehitu RAIDi"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr ""
-"Gertaera guztiek MandrakeSoften Aditu tekniko kualifikatu bakarraren "
-"jarraipena izango dute."
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "Gehitu LVMri"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "Pakete-taldearen hautapena"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "Kendu RAIDetik"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Bertako hardware konfigurazioa\n"
-"baimendu."
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "Kendu LVMtik"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Leheneratu Sareko Protokolo honen bitartez: %s"
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "Aldatu RAID"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr "Moduluaren parametro bakoitza konfiguratu dezakezu hemen."
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
+msgstr "Erabili atzera-begiztarako"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Aukeratu bereizmena eta kolorearen sakonera"
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "Sortu partizio berria"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
-msgstr "Hirugarren botoia emulatu?"
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "Hasierako sektorea: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "Tamaina MBtan: "
+
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "Fitxategi-sistemaren mota: "
+
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Hobespena: "
+
+#: ../../diskdrake/interactive.pm_.c:481
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
@@ -3338,1914 +1871,1700 @@ msgstr ""
"(izan daitezkeen partizio primario kopuru handiena duzulako).\n"
"Lehenik ezabatu partizio primario bat eta sortu partizio hedatu bat."
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr "Muntatu"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Auto-instalazioko disketea sortzen"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Install updates"
-msgstr "Sistema-eguneratzeak"
+#: ../../diskdrake/interactive.pm_.c:511
+msgid "Remove the loopback file?"
+msgstr "Atzera-begiztako fitxategia kendu?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
-msgstr "testu-lauki garaiera"
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "Aldatu partizio-mota"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "State"
-msgstr "Egoera"
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+msgid "Which filesystem do you want?"
+msgstr "Zein fitxategi-sistema nahi duzu?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Egiaztatu %s gailuak euskarria baduela"
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
+msgstr "ext2tik ext3ra aldatzen"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Enable multiple profiles"
-msgstr "Gaitu profil anitzak"
+msgid "Where do you want to mount loopback file %s?"
+msgstr "Non muntatu nahi duzu %s atzera-begiztako fitxategia?"
-#: ../../fs.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr "Ez interpretatu karaktere edo bloke gailu bereziak fitxategi sisteman."
+msgid "Where do you want to mount device %s?"
+msgstr "Non muntatu nahi duzu %s gailua?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
-"Aukera horiek /etc direktorioko fitxategi guztiak kopiatu eta leheneratu "
-"ditzakete.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Local printer"
-msgstr "Inprimagailu lokala"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Files Restored..."
-msgstr "Fitxategiak Leheneratuta..."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
-msgstr "Pakete-hautapena"
+"Ezin da muntatze-puntuaren ezarpena kendu, partizio hau atzera-begiztarako "
+"erabiltzen delako\n"
+"Kendu atzera-begizta lehendabizi"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:606
#, c-format
-msgid "Mauritania"
-msgstr "Mauritania"
+msgid "Where do you want to mount %s?"
+msgstr "Non muntatu nahi duzu %s?"
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
-"Uneko konfigurazioa gorde eta DHCP zerbitzari bat konfiguratuta duzula jo "
-"dezaket; hala bada, ziurtatu ondo irakurri dudala zure bertoko sare bezala "
-"erabiltzen duzun sarea; ez dut birkonfiguratuko ez eta zure DHCP "
-"zerbitzariaren konfigurazioa ukituko.\n"
-"\n"
-"Jatorrian DNS sarrera suhesian konfiguratuta dagoen IzenZerbitzari "
-"Katxeatzailea da. Hura ordezkatu dezakezu zure ISP-aren DNS IP-arekin "
-"adibidez.\n"
-"\t\t \n"
-"Bestela, zure interfazea birkonfiguratu dezaket eta zure DHCP zerbitzaria "
-"zuretzako (bir)konfiguratu.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "FAT fitxategi-sistemaren mugak kalkulatzen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Ez da inprimagailu lokalik aurkitu! Inprimagailua eskuz instalatzeko, idatzi/"
-"gailu/fitxategi izena (Ataka paraleloak: /dev/lp0, /dev/lp1, ..., "
-"baliokideak dira LPT1:, LPT2:..., lehen USB inprimagailua: /dev/usb/lp0, "
-"bigarren USB inprimagailua: /dev/usb/lp1, ...)."
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "Tamaina aldatzen"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All primary partitions are used"
-msgstr "Lehen mailako partizio guztiak erabilita daude"
+#: ../../diskdrake/interactive.pm_.c:662
+msgid "This partition is not resizeable"
+msgstr "Partizio honi ezin zaio tamaina aldatu"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "\"%s\" LPD zerbitzaria, \"%s\" inprimagailua"
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
+msgstr "Partizio honetako datu guztiek babeskopia eduki beharko lukete"
-#: ../../network/netconnect.pm:1
+#: ../../diskdrake/interactive.pm_.c:669
#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
+msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-"Ondoren, zure X ingurunea berrabiaraztea gomendatzen dugu,\n"
-"ostalari-izena aldatzearen arazoa saihesteko."
+"%s partizioa tamainaz aldatu ondoren, partizioko datu guztiak galdu egingo "
+"dira"
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Hardwarea automatikoki detektatu eta konfiguratzea abioan."
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "Aukeratu tamaina berria"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation Server Configuration"
-msgstr "Instalazio Zerbitzariaren Konfigurazioa"
+#: ../../diskdrake/interactive.pm_.c:675
+msgid "New size in MB: "
+msgstr "Tamaina berria MBtan: "
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "IDE konfiguratzen"
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "Zein diskotara eraman nahi duzu?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Sare-funtzionalitatea ez dago konfiguratuta"
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "Sektorea"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Configure module"
-msgstr "Konfiguratu modulua"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "Zein sektoretara eraman nahi duzu?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "Cocos Keeling uharteak"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "Lekuz aldatzen"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Berrabiarazi egin beharko duzu aldaketek eragina izan dezaten"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "Partizioa lekuz aldatzen..."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
-msgstr "Hornitzailearen telefono-zenbakia"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr "Aukeratu lehendik dagoen RAID bat gehitzeko"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Host %s"
-msgstr "%s Ostalaria"
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "berria"
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
-msgstr "Fiji"
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
+msgstr "Aukeratu lehendik dagoen LVM bat gehitzeko"
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
-msgstr "Armenia"
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
+msgstr "LVM izena?"
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "Bigarren diskete-unitatea"
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
+msgstr "Partizio hau ezin da atzera-begiztarako erabili"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
-msgstr "Harddrakeri buruz"
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
+msgstr "Atzera-begizta"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
-msgstr "Baimendu TCP konexioak X Window-ra"
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
+msgstr "Atzera-begiztako fitxategi-izena: "
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr "Unitatearen edukiera"
+#: ../../diskdrake/interactive.pm_.c:831
+msgid "Give a file name"
+msgstr "Eman fitxategi-izen bat"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
msgstr ""
-"Sartu diskete bat unitatean\n"
-"Disketeko datu guztiak galdu egingo dira"
+"Fitxategi hau beste atzera-begizta batek erabiltzen du, aukeratu beste bat"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "Tamaina: %s"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
+msgstr "Fitxategia badago lehendik ere. Erabili?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Kontrol eta Maius teklak batera"
+#: ../../diskdrake/interactive.pm_.c:858
+msgid "Mount options"
+msgstr "Muntatze-aukerak"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "secondary"
-msgstr "bigarren mailakoa"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
+msgstr "Hainbat"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Ikusi babeskopiaren konfigurazioa"
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "gailua"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr "baiezkoa ezarrita, eman egiaztapen emaitza txostena syslog-en."
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "maila"
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "Pasahitzik ez"
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "zatiaren tamaina"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nigeria"
-msgstr "Nigeria"
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
+msgstr "Kontuz ibili: eragiketa hau arriskutsua da."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s-k ostalari-izena eskatzen du...\n"
+#: ../../diskdrake/interactive.pm_.c:962
+msgid "What type of partitioning?"
+msgstr "Nolako partizioa?"
-#: ../../install_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:978
#, c-format
-msgid "There is no existing partition to use"
-msgstr "Ez dago erabiltzeko moduko partiziorik"
+msgid "The package %s is needed. Install it?"
+msgstr "%s paketea behar da. Instalatu nahi duzu?"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:992
msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
-"Ondorengo eskanerrak\n"
-"\n"
-"%s\n"
-"eskuragarri daude zure sisteman.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Gailu funtzio-anitza #%s ataka paraleloan"
+"Ezin dut onartu /boot hain urrun sortzea unitatean (zilindroa > 1024).\n"
+"Edo LILO erabiltzen duzu eta ez du funtzionatuko, edo ez duzu LILO "
+"erabiltzen eta ez duzu /boot erabili beharrik"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:996
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."
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-"TCP edo Socket inprimagailu batera inprimatzeko, inprimagailuaren ostalari-"
-"izena edo IP eta, nahi baduzu, portu zenbakia (jatorrian 9100 da) eman behar "
-"dituzu. HP HP JetDirect zerbitzarietan portu-zenbakia normalki 9100 izaten "
-"da, beste zerbitzari batzuetan aldatu egin daiteke. Begiratu zure "
-"hardwarearen eskuliburuan."
+"Erro gisa gehitzeko hautatu duzun partizioa (/) fisikoki disko gogorraren\n"
+"1024. zilindroaz haratago dago, eta ez duzu /boot partiziorik.\n"
+"LILO abioko kudeatzailea erabiltzeko asmoa baduzu, ez ahaztu /boot partizioa "
+"gehitzea"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Hard drive information"
-msgstr "Disko gogorraren informazioa"
+#: ../../diskdrake/interactive.pm_.c:1002
+msgid ""
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
+msgstr ""
+"Softwareko RAID partizio bat hautatu duzu erro gisa (/).\n"
+"Ez dago abioko kargatzailerik hori /boot partiziorik gabe erabil "
+"dezakeenik.\n"
+"Beraz, kontuan izan /boot partizioa gehitu behar duzula"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid "Russian"
-msgstr "errusiarra"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "%s unitatearen partizio-taula diskoan idatziko da!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Jordan"
-msgstr "Jordania"
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
+msgstr "Berrabiarazi egin beharko duzu aldaketek eragina izan dezaten"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1037
#, c-format
-msgid "Hide files"
-msgstr "Ezkutatu fitxategiak"
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr ""
+"%s partizioa formateatu ondoren, partizioko datu guztiak galdu egingo dira"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Auto-detektatu makina honetara lotutako inprimagailuak"
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "Formateatzen"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "Ez dago diskete-unitate erabilgarririk"
+msgid "Formatting loopback file %s"
+msgstr "%s atzera-begiztako fitxategia formateatzen"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "Bolivia"
-msgstr "Bolivia"
+msgid "Formatting partition %s"
+msgstr "%s partizioa formateatzen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Ezarri zure Windows zerbitzaria, inprimagailua IPP protokoloarekin "
-"eskuragarri egon dadin eta ezarri inprimaketa, makina honetatik, \"%s\" "
-"lotura mota erabilizPrinterdrake-n.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Hide files"
+msgstr "Ezkutatu fitxategiak"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "Pakete txarra"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Move files to the new partition"
+msgstr "Eraman fitxategiak partizio berrira"
-#: ../advertising/07-server.pl:1
+#: ../../diskdrake/interactive.pm_.c:1053
#, 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!"
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-"Bihur ezazu zure makina zerbitzari ahaltsu, saguaren klik gutxi batzuk "
-"eginez: Web zerbitzaria, posta, suhesia, routerra, fitxategi eta inprimaketa "
-"zerbitzaria, ..."
+" %s direktorioak baditu datu batzuk\n"
+"(%s)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "DrakSec Basic Options"
-msgstr "DrakSec Oinarrizko Aukerak"
+#: ../../diskdrake/interactive.pm_.c:1064
+msgid "Moving files to the new partition"
+msgstr "Fitxategiak partizio berrira eramaten"
-#: ../../standalone/draksound:1
+#: ../../diskdrake/interactive.pm_.c:1068
#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Adi: ISA PnP soinu txartela badaukazu, sndconfig programa erabili beharko "
-"duzu. Idatzi \"sndconfig\" kontsola batean."
+msgid "Copying %s"
+msgstr "%s kopiatzen"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1072
#, c-format
-msgid "Romania"
-msgstr "Errumania"
+msgid "Removing %s"
+msgstr "%s kentzen"
-#: ../../standalone/drakperm:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid "Group"
-msgstr "Taldea"
+msgid "partition %s is now known as %s"
+msgstr "%s partizioa %s da orain"
-#: ../../lang.pm:1
-#, c-format
-msgid "Canada"
-msgstr "Kanada"
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "Gailua: "
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "choose device"
-msgstr "Aukeratu gailua"
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "DOS unitate-letra: %s (uste hutsa)\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from LVM"
-msgstr "Kendu LVMtik"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "Mota: "
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Timezone"
-msgstr "Ordu-zona"
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "Izena: "
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "German"
-msgstr "alemana"
+msgid "Start: sector %s\n"
+msgstr "Hasi: %s sektorea\n"
-#: ../../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
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "Next ->"
-msgstr "Hurrengoa ->"
+msgid "Size: %s"
+msgstr "Tamaina: %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid ""
-"Turning on this allows to print plain text files in japanese language. Only "
-"use this function if you really want to print text in japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Hau pizteak testu laua japoniar hizkuntzan inprimatzea ahalbidetzen du. "
-"Erabili aukera hau testu japoniarra benetan inprimatu nahi baduzu, gaitzen "
-"bada ezingo dituzu gehiago latindar hizki-motako azentudun karaktereak "
-"inprimatu eta ezingo dituzu ertzak doitu, karaktere neurria, etab. Ezarpen "
-"honek makina honetan definitutako inprimagaiuei soilik eragingo die. "
-"Urruneko makina batean ezarritako inprimagailu baten testu japoniarra "
-"inprimatu nahi baduzu, aukera hau gaitu behar duzu urruneko makina horretan."
+msgid ", %s sectors"
+msgstr ", %s sektore"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Baliteke partizio hau gidari\n"
-"partizioa izatea. Ziurrenik\n"
-"ez zenuke ikutu behar.\n"
+msgid "Cylinder %d to %d\n"
+msgstr "%d zilindrotik %d zilindrora\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
-msgstr "Ginea Bissau"
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "Formateatua\n"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Freskatze-maiztasun horizontala"
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "Formateatu gabe\n"
+
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
+msgstr "Muntatuta\n"
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Edit"
-msgstr "Editatu"
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, c-format
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+"Loopback file(s):\n"
+" %s\n"
msgstr ""
-"Ezin da muntatia-puntuaren ezarpena kendu, partizio hau atzera-begiztarako "
-"erabiltzen delako\n"
-"Kendu atzera-begizta lehendabizi"
+"Atzera-begiztako fitxategia(k):\n"
+" %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1132
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\""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"Instalazioan egindako sare-konfigurazioa ezin da abiarazi orain. "
-"Berrabiarazi sistema eta begiratu ea sarean sartzen zaren eta, ondoren, "
-"zuzendu konfigurazioa Mandrake Kontrol Zentroko \"Sarea eta Internet\"/"
-"\"Konexioa\" atalean, eta gero konfiguratu inprimagailua, Mandrake Kontrol "
-"Zentroan bertan, \"Hardwarea\"/\"Inprimagailua\" atalean."
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "USB controllers"
-msgstr "USB kontrolatzaileak"
+"Lehenespenez abiarazteko partizioa\n"
+" (MS-DOS abiorako, ez lilo-rako)\n"
-#: ../../Xconfig/various.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "What norm is your TV using?"
-msgstr "Zein arau erabiltzen du zure TB?"
+msgid "Level %s\n"
+msgstr "%s maila\n"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "Type:"
-msgstr "Mota:"
+msgid "Chunk size %s\n"
+msgstr "%s zatiaren tamaina\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Share name"
-msgstr "Konpartitze-izena"
+msgid "RAID-disks %s\n"
+msgstr "%s RAID-diskoak\n"
-#: ../../standalone/drakgw:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "enable"
-msgstr "gaitu"
+msgid "Loopback file name: %s"
+msgstr "Atzera-begiztako fitxategi-izena: %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-"Mandrake Linux-en web gunearekin kontaktatzen ispiluen zerrenda lortzeko"
+"\n"
+"Partizio hau kontrolatzailearen \n"
+"partizioa izan daiteke, hobe duzu\n"
+"bere horretan uztea.\n"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"Arazo bat izan da sarea berrabiaraztean: \n"
"\n"
-"%s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove the loopback file?"
-msgstr "Atzera-begiztako fitxategia kendu?"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Hautatutako tamaina handiagoa da leku erabilgarria baino"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP server name missing!"
-msgstr "NCP zerbitzari-izena falta da!"
+"Bootstrap partizio berezi hau\n"
+"sistemaren abio bikoitza\n"
+"egiteko da.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose your country."
-msgstr "Mesedez hautatu zure herrialdea."
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
+msgstr "Irakurketa-soilik"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Disko gogorraren babeskopia fitxategiak... "
+msgid "Size: %s\n"
+msgstr "Tamaina: %s\n"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "Laotian"
-msgstr "Laostarra"
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Geometria: %s zilindro, %s buru, %s sektore\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Samoa"
-msgstr "Samoa"
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
+msgstr "Info: "
-#: ../../services.pm:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"rstat protokoloari esker, sareko erabiltzaileek sare horretako \n"
-"edozein makinaren performantzia nolakoa den jakin dezakete."
+msgid "LVM-disks %s\n"
+msgstr "%s LVM-diskoak\n"
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid "Re-generating list of configured scanners ..."
-msgstr "Konfiguratutako eskanerren zerrenda birsortzen ..."
+msgid "Partition table type: %s\n"
+msgstr "Partizio-taularen mota: %s\n"
-#: ../../modules/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1169
#, c-format
-msgid "Module configuration"
-msgstr "Modulu ezarpena"
+msgid "on channel %d id %d\n"
+msgstr "%d kanalean id %d\n"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Scanner"
-msgstr "Eskanerra"
+#: ../../diskdrake/interactive.pm_.c:1199
+msgid "Filesystem encryption key"
+msgstr "Fitxategi-sistema enkriptatzeko gakoa"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Adi: txartel grafiko hau frobatzeak zure konputagailua blokeatu dezake"
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
+msgstr "Aukeratu fitxategi-sistema enkriptatzeko gakoa"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1203
#, c-format
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-"Erabiltzaile-izenak minuskulaz idatzitako letrak, zenbakiak, `-' eta `_' "
-"soilik izan ditzake"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
+"Enkriptatze-gako hau sinpleegia da (gutxienez %d karaktere izan behar ditu)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "Ongi etorri Crackers-era"
+#: ../../diskdrake/interactive.pm_.c:1204
+msgid "The encryption keys do not match"
+msgstr "Enkriptatze-gakoak ez datoz bat"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "Modulu-aukerak:"
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
+msgstr "Enkriptatze-gakoa"
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
-msgstr "Segurtatu zure sareak Multi Network Firewall-arekin"
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
+msgstr "Enkriptatze-gakoa (berriro)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Jarraitu sarea konfiguratu gabe"
+#: ../../diskdrake/removable.pm_.c:47
+msgid "Change type"
+msgstr "Aldatu mota"
-#: ../../network/isdn.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "Abort"
-msgstr "Abortatu"
+msgid "Can't login using username %s (bad password?)"
+msgstr "Ezin sartu %s erabiltzaile-izena erabilita (pasahitz okerra?)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "Pasahitz eskaririk ez %s-n %s portuan"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Domeinu Autentifikazioa Behar da"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking sagua gurpil emulazioarekin"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Beste bat"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Urruneko eskanerren erabilera"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Zein Erabiltzaile-izena"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
+"Please enter your username, password and domain name to access this host."
msgstr ""
-"Zure Windows partizioa fragmentatuegia dago, exekutatu ``defrag'' lehendabizi"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (norvegiarra)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Disko gogorraren babeskopia egiten..."
-
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Ezin da bikoiztu: %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "Mota: "
+"Mesedez sartu zure erabiltzaile-izena, pasahitza eta domeinu izena ostalari "
+"honetara sartzeko."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Editatu Bezeroa"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+msgid "Username"
+msgstr "Erabiltzaile-izena"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "no fonts found"
-msgstr "ez da letra-tiporik aurkitu"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Domeinua"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Mouse"
-msgstr "Sagua"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+msgid "Search servers"
+msgstr "Bilatu zerbitzarietan"
-#: ../../bootloader.pm:1
+# #this syntax doesn't work yet in perl :-(
+# #msgid "%s formatting of %s failed"
+# #msgstr "%2$s(r)i %1$s formatua emateak huts egin du"
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "not enough room in /boot"
-msgstr "ez dago nahiko leku /boot-en"
+msgid "%s formatting of %s failed"
+msgstr "%s %s(r)i formatua emateak huts egin du"
-#: ../../install_steps_gtk.pm:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "trying to promote %s"
-msgstr "%s promozionatzea saiatzen"
+msgid "I don't know how to format %s in type %s"
+msgstr "Ez dakit nola formateatu %s %s motan"
-#: ../../lang.pm:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
+msgid "mounting partition %s in directory %s failed"
+msgstr "%s partizioa %s direktorioan muntatzeak huts egin du"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid "Host name"
-msgstr "Ostalari-izena"
+msgid "error unmounting %s: %s"
+msgstr "errorea %s desmuntatzean: %s"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the color of the progress bar"
-msgstr "aurrerapen-barraren kolorea"
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "sinplea"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Ezabatu letra-tipoen fitxategiak"
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
+msgstr "/usr-rekin"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to RAID"
-msgstr "Gehitu RAIDi"
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "zerbitzaria"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
+#: ../../fsedit.pm_.c:240
#, c-format
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"
+"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"
-" * 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."
+"Do you agree to loose all the partitions?\n"
msgstr ""
-"Sarrera gehiago erantsi ditzakezu yaboot-en beste sistema eragileentzako,\n"
-"ordezko nukleoentzako, edo larrialdietarako abiapen irudi batentzako.\n"
-"\n"
-"Beste SE-entzako sarrerak, etiketa bat eta \"erro\" partizioa behar\n"
-"ditu.\n"
-"\n"
-"Linux-entzako, aukera batzu daude:\n"
-"\n"
-" * Etiketa: abiapen aukera hau hautatzeko yaboot-en gonbitan idatzi\n"
-"beharko duzun izena.\n"
-"\n"
-" * Irudia: abiatu beharreko nukleoaren izena. Berezkoa, vmlinux edo\n"
-"honen aldaera bat luzapen batekin.\n"
-"\n"
-" * Erroa: zure Linux instalazioaren \"erro\" gailua edo ``/''.\n"
-"\n"
-" * Erantsi: Apple hardwarean, nukleoaren erantsi aukera bideo hardwareari\n"
-"hasieratzen laguntzeko erabiltzen da maiz, edo teklatuan saguaren botoien\n"
-"emulazioa gaitzeko Apple-ren saguek orokorrean ez bait dakarte 2. eta 3.\n"
-"botoirik. Ondorengoak adibideak dira:\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: abiapen gailua eskuragarri egon aurretik hasierako moduluak\n"
-"zamatzeko, edo larrialdiko abiapen egoera batean ramdiska irudi bat \n"
-"zamatzeko erabili daiteke.\n"
-"\n"
-" * Initrd-size: ramdiskaren neurri lehenetsia orokorrean 4096 Kbytekoa da.\n"
-"Ramdiska handiagoa alokatu beharrean bazaude, aukera hau erabili\n"
-"dezakezu egoera hori adierazteko.\n"
-"\n"
-" * Irakurri-idatzi: normalean, \"erro\" partizioa hasieran irakurtzeko-"
-"soilik\n"
-"muntatzen da, sistema ``bizirik'' egon aurretik fitxategi sisteman "
-"egiaztamena\n"
-"egin ahal izateko. Lehenetsia gainditu dezakezu aukera honekin.\n"
-"\n"
-" * NoVideo: Apple-en bideo hardwareak arazoak sortzen baditu, aukera\n"
-"hau erabili dezakezu ``novideo'' moduan abiatzeko, jatorrizko frame-buffer\n"
-"euskarria dauka.\n"
+"Ezin dut %s gailuaren partizio-taula irakurri, hondatuegia dago :(\n"
+"Jarraitzen saia naiteke, partizio txarrak garbituz (DATU GUZTIAK galduko "
+"dira!).\n"
+"Beste irtenbidea DrakXri partizio-taula aldatzeko baimenik ez ematea da.\n"
+"(okerra %s da)\n"
"\n"
-" * Lehenetsia: sarrera hau aukeratzen du Linux-en berezko bezala, yaboot-en\n"
-"gonbitan SARTU sakatzearekin aukeratuko dena. Aukera hau ``*'' bitartez\n"
-"nabarmenduta agertuko da abiapen aukerak ikusteko [TAB] sakatu ezkero."
+"Ados zaude partizio guztiak galtzearekin?\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr ""
-"\"%s\" inprimagailua behar bezala gehitu da Star Office/OpenOffice.org/GIMP-"
-"n."
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr "Ezin da JFS erabili 16MB baino gutxiagoko partizioetarako"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Ez dago diskete-unitate erabilgarririk!"
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "Ezin da ReiserFS erabili 32MB baino gutxiagoko partizioetarako"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"Uneko inprimagailuak dituen aukerak ezagutzeko, irakurri ondoko zerrenda edo "
-"egin klik \"Inprimatu aukeren zerrenda\" botoian.%s%s%s\n"
-"\n"
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
+msgstr "Muntatzen-puntuek / batez hasi behar dute"
-#: ../../lang.pm:1
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "Saudi Arabia"
-msgstr "Saudi Arabia"
+msgid "There is already a partition with mount point %s\n"
+msgstr "Jadanik badago %s muntatze-puntua duen partizio bat\n"
-#: ../../services.pm:1
+#: ../../fsedit.pm_.c:526
#, c-format
-msgid "Internet"
-msgstr "Internet"
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr "Ezin da LVM bolumen logikoa erabili %s muntatze-punturako"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "Jarraitu hala ere?"
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
+msgstr "Direktorio honek erroko fitxategi-sisteman egon behar du"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:530
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Zure inprimagailua ez badago zerrendan, aukeratu bateragarria (ikus "
-"inprimagailuaren eskuliburua) edo antzekoa den bat "
+"Egiazko fitxategi-sistema (ext2/ext3, reiserfs, xfs, or jfs) behar duzu "
+"muntatze-puntu honentzako\n"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:532
#, c-format
-msgid "Printer"
-msgstr "Inprimagailua"
+msgid "You can't use an encrypted file system for mount point %s"
+msgstr "Ezin da fitxategi-sistema enkriptatua erabili %s muntatze-punturako"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices were added:\n"
-msgstr "Zenbait gailu gehitu dira:\n"
+#: ../../fsedit.pm_.c:599
+msgid "Not enough free space for auto-allocating"
+msgstr "Ez dago nahikoa leku libre auto-esleitzeko"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometria: %s zilindro, %s buru, %s sektore\n"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
+msgstr "Ez dago zer eginik"
-#: ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:694
#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "\"%s\" inprimagailuan inprimatzen"
+msgid "Error opening %s for writing: %s"
+msgstr "Errorea %s idazteko irekitzean: %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
msgstr ""
-"/etc/hosts.allow eta /etc/hosts.deny dagoeneko konfiguratuta - ez dira aldatu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Tape"
-msgstr "Leheneratu Zintatik"
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
+msgstr "Ez dago gidari alternatiborik"
-#: ../../standalone/drakbug:1
+#: ../../harddrake/sound.pm_.c:171
#, 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's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-"Akats txosten bat bidaltzeko, klikatu jakinarazi botoia, honek zure "
-"arakatzaile lehenetsia\n"
-"Anthill-en zabalduko du, non gaineko informazioa akats txosten bezala igo "
-"dezakezu."
+"Ez dago OSS/ALSA gidari alternatibo ezagunik zure (%s) soinu "
+"txartelarentzat, orain \"%s\" erabiltzen du"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the profile to configure"
-msgstr "Aukeratu konfiguratzeko profila"
+#: ../../harddrake/sound.pm_.c:173
+msgid "Sound configuration"
+msgstr "Soinu konfigurazioa"
-#: ../../security/l10n.pm:1
+#: ../../harddrake/sound.pm_.c:174
#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
-msgstr "Pasahitzaren gutxieneko luzera eta digitu eta hizki larri kopurua"
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
+msgstr ""
+"Hemen gidari alternatibo bat hautatu dezakezu (OSS edo ALSA) zure soinu "
+"txartelarentzat (%s)"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../harddrake/sound.pm_.c:176
#, c-format
msgid ""
"\n"
"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
"\n"
"\n"
-"Adierazi Zeroconf ostalari izena punturik gabe ez baduzu\n"
-"ostalari izen lehenetsia erabili nahi."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Egin babeskopia konfigurazio-fitxategitik"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr ""
-"Muntaia-puntuek soilik karaktere alfanumerikoak erabili beharko lituzkete"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Inprimatze-sistema berrabiarazten ..."
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr "Soilik CDROM euskarririk gabe exekutatu dezakezu"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "Ikus hardwarearen informazioa"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
-msgstr "Eguna"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr "Arrankeko partizioaren lehen sektorea"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Inprimagailuaren fabrikatzailea, modeloa"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue (Inprimatu, ez egon ilaran)"
+"Zure txartelak orain %s\"%s\" gidaria erabitzen du (zure txartelarentzako "
+"gidari lehenetsia \"%s\" da)"
-#: ../../standalone.pm:1
-#, 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)"
-msgstr ""
-"[AUKERAK]...\n"
-"Mandrake Terminal Zerbitzariaren (MTS) Konfiguratzailea\n"
-"--enable : gaitu MTS\n"
-"--disable : ezgaitu MTS\n"
-"--start : hasi MTS\n"
-"--stop : gelditu MTS\n"
-"--adduser : erantsi existitzen den sistema erabiltzaile bat MTS-ra "
-"(erabiltzaile-izena behar da)\n"
-"--deluser : ezabatu existitzen den sistema erabiltzaile bat MTS-tik "
-"(erabiltzaile-izena behar da)\n"
-"--addclient : erantsi bezero makina MTS-ra (MAC helbidea, IP, nbi irudi "
-"izena, behar dira)\n"
-"--delclient : ezabatu bezero makina MTS-tik (MAC helbidea, IP, nbi "
-"irudi izena, behar dira)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Azpisare Maskara:"
+#: ../../harddrake/sound.pm_.c:178
+msgid "Driver:"
+msgstr "Gidaria:"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Set password expiration and account inactivation delays"
-msgstr "Ezarri pashaitzaren gal-muga eta kontuen inaktibazio atzerapena"
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+msgid "Help"
+msgstr "Laguntza"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Zama"
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
+msgstr "ALSA eta OSS bitarteko aldaketa egiteko laguntza"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
+#: ../../harddrake/sound.pm_.c:186
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"
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Bi parametro kritikoak freskatze-maiztasun bertikala eta sinkronizazio-"
-"maiztasun\n"
-"horizontala dira. Lehenengoak pantaila osoa freskatzeko maiztasuna \n"
-"zehazten du eta bigarrenak, eskaneatze-lerroak bistaratzekoa.\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"
-"OSO GARRANTZITSUA da zure monitoreak onar dezakeena baino sinkronizazio-"
-"balio \n"
-" handiagoko monitorerik ez zehaztea: monitorea honda dezakezu.\n"
-" Zalantzarik baduzu, aukeratu ezarpen kontserbadore bat."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
-msgstr "Aldatu"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"It also provides a much higher API than OSS.\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"
+"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 ""
+"OSS (Open Sound System) izan zen lehenengo soinu API. Soinu API hau ez da SE-"
+"aren menpekoa (unix sistema gehienetan eskuragarri dago) baino oso API xume "
+"eta mugatua da.\n"
+"Gainera, OSS gidari guztiek gurpila berrasmatzen dute.\n"
"\n"
-"\"%s\" eta \"%s\" komandoen bidez inprimatze-lan baten aukera-ezarpenak alda "
-"daitezke. Aski da nahi diren ezarpenak komando-lerroan gehitzea, adib.: \"%s "
-"<fitxategia>\".\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Ostalari-izena, erabiltzaile-izena eta pasahitza behar dira!"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Insert floppy"
-msgstr "Sartu disketea"
+"ALSA (Advanced Linux Sound Architecture) arkitektura modularra da, \n"
+"ISA, USB eta PCI txartel multzo zabalari euskarri ematen diona.\n"
+"\n"
+"Askogatik OSS-k baino maila handiagoko API hornitzen du.\n"
+"\n"
+"ALSA erabiltzeko, batek bitako edozein erabil dezake:\n"
+"- OSS-rekin bateragarri den api zaharra.\n"
+"- Ezaugarri hedatu ugari eskaintzen dituen ALSA api berria, ALSA liburutegia "
+"erabili behar da.\n"
-#: ../../diskdrake/dav.pm:1
+# unloading : deskargatu ???? zama????
+#: ../../harddrake/sound.pm_.c:202
#, 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\"."
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-"WebDAV, web zerbitzari baten direktorioa zurean muntatu eta bertako "
-"fitxategi\n"
-"sistema balitz moduan erabiltzeko aukera ematen dizun protokolo bat da (web\n"
-"zerbitzaria WebDAV zerbitzari bezala konfiguratuta badago). WebDAV muntaia\n"
-"puntuak gehitu nahi bazenitu, hautatu \"Berria\"."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
-msgstr "berria"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable syslog reports to console 12"
-msgstr "Gainu/Ezgaitu syslog txostenak 12. kontsolara"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Berriro saiatu nahi zenuke?"
+"\"%s\" gidari zaharra zerrenda beltzean dago.\n"
+"\n"
+"Kerneletik deskargatzerakoan arazoak sortzen dituela txostendu da.\n"
+"\n"
+"\"%s\" gidari berria hurrengo bootstrap-ean erabiliko da soilik."
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "Morroia"
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+msgid "Please Wait... Applying the configuration"
+msgstr "Itxaron... Konfigurazioa aplikatzen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected server"
-msgstr "Editatu hautatutako zerbitzaria"
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "Itxaron mesedez"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Aukeratu non egin nahi duzun babeskopia"
+#: ../../harddrake/sound.pm_.c:210
+msgid "No known driver"
+msgstr "Ez dago gidari ezagunik"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Berrabiarazi egin behar duzu partizio-taulako aldaketek eragina izateko"
+msgid "There's no known driver for your sound card (%s)"
+msgstr "Ez dago zure soinu txartelarentzako gidari ezagunik (%s)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Ez sartu arakatzailearen cache-a"
+#: ../../harddrake/sound.pm_.c:214
+msgid "Unkown driver"
+msgstr "Gidari ezezaguna"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, c-format
msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-"%s fitxategi-sistemaren egiaztapenak hutsegin du. Okerrak zuzendu nahi "
-"dituzu? (adi, datuak gal ditzakezu)"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Aukeratu zure teklatu-diseinua."
-
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "Estandarra"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Aukeratu sagu-mota."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
-msgstr "Konektatu..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "\"%s\" inprimagailuaren konfigurazioak hutsegin du!"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "not configured"
-msgstr "konfiguratu gabe"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "About"
-msgstr "Honi buruz"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "Proxy-en konfigurazioa"
+"Zure soinu txartelarentzako \"%s\" gidaria zerrendatu gabe dago\n"
+"\n"
+"Mesedez bidali \"lspcidrake -v\" komandoaren emaitza hona\n"
+"<install at mandrakesoft dot com>\n"
+"unlisted sound driver \"%s\" gaiarekin."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Hasi: %s sektorea\n"
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+msgid "Auto-detect"
+msgstr "Auto-detektatu"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Mask"
-msgstr "Maskararik ez"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+msgid "Unknown|Generic"
+msgstr "Ezezaguna|Generikoa"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface already configured"
-msgstr "Sareko interfazea konfiguratuta dago"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Ezezaguna|CPH05X (bt878) [saltzaile ugari]"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
-msgstr "Ezin izan da disketea atzitu!"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Ezezaguna|CPH06X (bt878) [saltzaile ugari]"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
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."
+"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 ""
-"Adi: Software Askeak ez du zertan patenterik gabea izan behar, sartutako\n"
-"zenbait Software Aske patenteek estaliak egon daitezke zure herrialdean. "
-"Adibidez,\n"
-"sartutako MP3 dekodetzaileak erabili ahal izateko lizentzia behar izan\n"
-"dezakete (begiratu http://www.mp3licensing.com xehetasun gehiago izateko).\n"
-"Ez bazaude ziur patenteren batek eragiten dizun, egiaztatu zure lekuko "
-"legeak."
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Mail Server"
-msgstr "Posta Zerbitzaria"
+"TB txartela moderno gehienentzako, GNU/Linux kernelaren bttv moduloak "
+"parametro egokiak auto-detektatzen ditu.\n"
+"Zure txartela ez bada egokiro detektatzen, sintonizatzaile eta txartela mota "
+"egokiak behartu ditzakezu hemen. Hautatu zure tb parametro egokiak "
+"beharrezkoa bada"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "Egin klik partizio batean"
+#: ../../harddrake/v4l.pm_.c:227
+msgid "Card model:"
+msgstr "Txartela modeloa :"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Gailu funtzio-anitza HP JetDirect-en"
+#: ../../harddrake/v4l.pm_.c:228
+msgid "Tuner type:"
+msgstr "Sintonizatzaile mota :"
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linux"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
+msgstr "Eskuratze buffer kopurua :"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
-msgstr "Egun ona izan!"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "mmap erabiliz eskuratzerako eskuratze buffer kopurua"
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
+#: ../../harddrake/v4l.pm_.c:231
+msgid "PLL setting:"
+msgstr "PLL ezarpenak :"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Upgrade %s"
-msgstr "Eguneratu %s"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
+msgstr "Irrati euskarria :"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Hautatu inprimagailu-konexioa"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
+msgstr "irrati euskarria gaitu"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
-msgstr "TB kanalak bilatzen..."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+"GNU/Linux erabiltzaile anitzeko sistema da, eta horrek esan nahi du\n"
+"erabiltzaile bakoitzak bere hobespenak eta bere fitxategiak eduki\n"
+"ditzakeela. Gehiago jakiteko, irakurri ``Erabiltzailearen gida''. Baina\n"
+"administratzailea den \"root\"-ak ez bezala, hemen gehitutako\n"
+"erabiltzaileek debekatuta izango dute ezer aldatzea euren fitxategiak eta\n"
+"konfigurazioa izan ezik. Zuretzat erabiltzaile arrunt bat behintzat sortu\n"
+"beharko duzu. Eta kontu hori erabili beharko zenuke eguneroko lanak\n"
+"egiteko. Egunero \"root\" gisa saioa hastea oso erosoa den arren, oso\n"
+"arriskutsua ere izan daiteke! Hutsegiterik txikienak sistema funtzionatu\n"
+"ezinda utz dezake. Erabiltzaile arrunt gisa hutsegite larri bat egiten\n"
+"baduzu, informazioren bat gal dezakezu, baina ez sistema osoa.\n"
+"\n"
+"Lehendabizi, zure benetako izena idatzi behar duzu. Hori ez da\n"
+"derrigorrezkoa noski - berez, nahi duzun izena eman baitezakezu. DrakXk\n"
+"gero zuk koadroan idatzitako lehen hitza hartuko du eta hori izango da\n"
+"\"Erabiltzaile-izena\". Hori izango da erabiltzaile jakin horrek sisteman\n"
+"saioa hasteko erabiliko duen izena. Alda dezakezu. Gero pasahitz bat sartu\n"
+"behar duzu hemen. Pribilegio gabeko erabiltzailearen (erabiltzaile\n"
+"arruntaren) pasahitza ez da \"root\"-arena bezain funtsezkoa segurtasunaren\n"
+"aldetik, baina ez da horregatik arduragabekeriaz jokatu behar: izan ere,\n"
+"zure fitxategiak baitaude arriskuan.\n"
+"\n"
+"\"Onartu erabiltzailea\"n klik eginez gero, nahi adina erabiltzaile gehi\n"
+"ditzakezu. Gehitu erabiltzaile bat zure lagun bakoitzeko: zure ama edo\n"
+"anaia, esate baterako. Nahi dituzun erabiltzaile guztiak gehitu ondoren,\n"
+"hautatu \"Eginda\".\n"
+"\n"
+"\"Aurreratua\" botoian klik egitean, erabiltzaile horrentzat lehenetsitako\n"
+"\"shell\"-a aldatu ahal izango duzu (bash da lehenetsia)."
-#: ../../standalone/drakbackup:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:48
msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/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 ""
-"Okerra FTP bidez fitxategia bidaltzean.\n"
-" Mesedez zuzendu zure FTP konfigurazioa."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr "IP Barrutiaren Hasiera:"
+"Goiko zerrendan zure disko gogorrean detektatutako Linux partizioak daude.\n"
+"Morroiak egindako aukerak manten ditzakezu, egokiak dira instalazio\n"
+"ohikoenetarako. Aldaketarik egiten baduzu, gutxienez erroko partizio bat\n"
+"(\"/\") definitu behar duzu. Ez aukeratu partizio txikiegirik edo ezin\n"
+"izango duzu nahikoa software instalatu. Datuak beste partizio batean\n"
+"biltegiratu nahi badituzu, \"/home\"-rentzako partizio bat ere sortu\n"
+"beharko duzu (Linux partizio bat baino gehiago baduzu soilik da posible).\n"
+"\n"
+"Partizio bakoitza honela zerrendatzen da: \"Izena\", \"Edukiera\".\n"
+"\n"
+"\"Izena\" honela egituratzen da: \"disko gogorraren mota\", \"disko\n"
+"gogorraren zenbakia\", \"partizio-zenbakia\" (adibidez, \"hda1\").\n"
+"\n"
+"\"Disko gogorraren mota\" \"hd\" izango da disko gogorra IDE disko gogorra\n"
+"bada, eta \"sd\", SCSI unitatea bada.\n"
+"\n"
+"\"Disko gogorraren zenbakia\" beti \"hd\" edo \"sd\" ren ondoko letra bat\n"
+"izaten da. IDE disko gogorretan:\n"
+"\n"
+" * \"a\"k \"IDE kontroladore primarioko disko gogor nagusia\" esan nahi du;\n"
+"\n"
+" * \"b\"k \"IDE kontroladore primarioko mendeko disko gogorra\" esan nahi\n"
+"du;\n"
+"\n"
+" * \"c\"k \"IDE kontroladore sekundarioko disko gogor nagusia\" esan nahi\n"
+"du;\n"
+"\n"
+" * \"d\"k \"IDE kontroladore sekundarioko mendeko disko gogorra\" esan nahi\n"
+"du;\n"
+"\n"
+"SCSI disko gogorretan, \"a\" letrak \"SCSI ID baxuena\" esan nahi du, \"b\"\n"
+"letrak \"bigarren SCSI ID baxuena\", etab."
-#: ../../services.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:79
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."
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
-"Interneteko superzerbitzariaren daemon-ak (normalki inetd deitua) beste\n"
-"hainbat Internet-zerbitzu abiarazten ditu, behar izan ahala. Zerbitzu asko "
-"abiarazten ditu,\n"
-"hala nola telnet, ftp, rsh, eta rlogin. inetd desgaitzean bere ardurapeko\n"
-"zerbitzu guztiak desgaitzen dira."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
-msgstr "aurrerapen-barraren garaiera"
+"Mandrake Linux instalazioa hainbat CD-ROMetan banatuta dago. DrakXk badaki\n"
+"hautatako pakete bat beste CD-ROM batean kokatuta dagoen edo ez, eta uneko\n"
+"CDa atera eta beste bat sartzeko eskatuko dizu behar izan ahala."
-#: ../../standalone/drakbackup:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:84
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"
+"you are not supposed to know them all by heart.\n"
"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
"\n"
-"- Gorde %s bitartez ostalari honetan: %s\n"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "Argentina"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Domain Name Server"
-msgstr "Domeinuko Izen Zerbitzaria"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Level:"
-msgstr "Segurtasun-maila:"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr "Muntaia-puntuek / batez hasi behar dute"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Hautatu zure CD/DVD gailua"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "CUPS server"
-msgstr "CUPS zerbitzaria"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Postfix Posta Zerbitzaria"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "Irten gorde gabe"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "Yemen"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
-msgstr "Produktu hau MandrakeStore webgunean eskuragarri dago"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Hainbat gauza dituzu aukeran (%s).\n"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "GMT - DrakClock"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
-"%s\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(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"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
"\n"
-"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."
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
+"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
+"\n"
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
-"Akatsa jazo da:\n"
+"Sisteman zein programa instalatu nahi dituzun zehazteko garaia da. Milaka\n"
+"pakete daude Mandrake Linux-entzat erabilgarri, eta ez duzu denak buruz\n"
+"jakin beharrik.\n"
"\n"
+"CD-ROMetik instalazio estandarra egiten ari bazara, lehendabizi orain\n"
+"dituzun CDak zehazteko eskatuko zaizu (Aditu moduan soilik). Begiratu CDen\n"
+"etiketei eta nabarmendu instalaziorako erabilgarri dituzun CDei dagozkien\n"
+"laukiak. Jarraitzeko prest zaudenean, egin klik \"Ados\" botoian.\n"
"\n"
-"%s\n"
+"Paketeak taldeka antolatuta daude, ordenagailuaren erabilera zehatzen\n"
+"arabera. Taldeak lau ataletan sailkatzen dira:\n"
"\n"
-"USB giltzan dauden hondatutako sistema ezarpen fitxategien\n"
-"eraginagatik izan daiteke, hala balitz horiek ezabatu eta\n"
-"ondoren Mandrake Move berrabiatzeak arazoa konponduko\n"
-"luke. Horrela egiteko sakatu dagokion botoia.\n"
+" * \"Laneko estazioa\": makina lan-estazio gisa erabiltzeko asmoa baduzu,\n"
+"hautatu hauetako talde bat edo gehiago;\n"
"\n"
+" * \"Garapena\": ordenagailua programatzeko erabili behar baduzu, aukeratu\n"
+"nahi dituzun taldeak;\n"
"\n"
-"Beste bide bat berrabiatu eta USB giltza kentzea da, edo\n"
-"bere edukia beste SE batekin aztertzea, edo erregistroei\n"
-"begirada bat botatzea #3 eta #4 kontsoletan zer gertatzen\n"
-"ari den antzemateko."
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "Disko gogorren detekzioa"
+" * \"Zerbitzaria\": makina zerbitzari moduan erabili nahi baduzu, hemen\n"
+"hauta ditzakezu instalatu nahi dituzun zerbitzu ohikoenak;\n"
+"\n"
+" * \"Ingurune grafikoa\": azkenik, hemen hautatuko duzu zure ingurune\n"
+"grafiko gogokoena. Gutxienez bat hautatu behar duzu, lan-estazio grafikoa\n"
+"eduki nahi baduzu!\n"
+"\n"
+"Saguaren kurtsorea talde-izen baten gainera eramanez, talde horri buruzko\n"
+"azalpen-testu labur bat bistaratuko da. Instalazio arrunta egitean (hau da,\n"
+"bertsio-berritzea ez denean) talde guztiak desautatzen badituzu,\n"
+"elkarrizketa-koadro bat agertuko da instalazio minimoa egiteko aukerak\n"
+"proposatuz:\n"
+"\n"
+" * \"Xrekin\": ahalik eta pakete gutxien instalatu, mahaigain grafikoa\n"
+"edukitzeko behar direnak bakarrik;\n"
+"\n"
+" * \"Oinarrizko dokumentazioarekin\": oinarrizko sistema eta oinarrizko\n"
+"utilitateak eta horien dokumentazioa instalatzen du. Instalazio hau egokia\n"
+"da zerbitzaria konfiguratzeko;\n"
+"\n"
+" * \"Instalazio minimo-minimoa\": Linux sistema eragileak\n"
+"komando-lerroarekin soilik funtziona dezan bene-benetan beharrezkoa dena\n"
+"bakarrik instalatzen du. Instalazio honek 65 Mb inguru hartzen ditu.\n"
+"\n"
+"\"Pakete indibidualen hautapena\" laukia hauta dezakezu; oso erabilgarria\n"
+"izango zaizu eskaintzen diren paketeak ezagutzen badituzu, edo instalatuko\n"
+"den guztia erabat kontrolatu nahi baduzu.\n"
+"\n"
+"Instalazioa \"Bertsio-berritze\" moduan hasi baduzu, talde guztiak desauta\n"
+"ditzakezu beste paketerik instala ez dadin. Erabilgarria da lehendik dagoen\n"
+"sistema bat konpontzeko edo eguneratzeko."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:135
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"Ez duzu talde edo paketerik hautatuta\n"
-"Nahi duzun gutxieneko instalazioa hautatu behar duzu"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
+msgstr ""
+"Azkenik, pakete indibidualak hautatu ala ez aukeraren arabera, pakete\n"
+"guztiak taldetan eta azpitaldetan sailkatuta dituen zuhaitz bat aurkeztuko\n"
+"zaizu. Zuhaitza arakatuz, talde osoak, azpitaldeak nahiz pakete\n"
+"indibidualak hautatu ahal izango dituzu.\n"
+"\n"
+"Zuhaitzean pakete bat hautatzen duzun bakoitzean, azalpen bat agertuko da\n"
+"eskuinean. Hautapena amaitutakoan, egin klik \"Instalatu\" botoian, eta\n"
+"instalazio-prozesua abiaraziko da. Zure hardwarearen abiaduraren arabera\n"
+"eta instalatu behar diren paketeen kopuruaren arabera, denbora beharko da\n"
+"prozesua burutzeko. Dena instalatzeko behar duen denboraren estimazioa\n"
+"pantailan bistaratzen da, kafetxo bat hartzeko astirik ote duzun jakin\n"
+"dezazun.\n"
+"\n"
+"!! Zerbitzari-pakete bat hautatu baduzu, nahita edo talde oso baten zati\n"
+"zelako, zerbitzari horiek benetan instalatu nahi dituzun berresteko\n"
+"eskatuko zaizu. Mandrake Linux-en, instalatutako zerbitzari oro\n"
+"lehenespenez abiarazten da abioan. Seguruak diren arren eta banaketa\n"
+"argitaratu zen unean arazorik sortu ez bazuten ere, gerta liteke\n"
+"segurtasun-hutsuneak aurkitzea Mandrake Linux-en bertsio hau bukatu\n"
+"ondoren. Zerbitzu jakin batek zer egin behar duen edo zergatik instalatzen\n"
+"den ez badakizu, hautatu \"Ez\". \"Bai\" sakatzean zerrendatutako\n"
+"zerbitzuak instalatuko dira, eta lehenespen gisa automatikoki abiaraziko\n"
+"dira. !!\n"
+"\n"
+"\"Mendekotasun automatikoak\" aukerak, instalatzaileak pakete bat\n"
+"automatikoki hautatzen duenean agertzen den abisu-elkarrizketa desgaitzen\n"
+"du. Hori gertatzen da instalazioa behar bezala osatzeko, beste pakete\n"
+"batekiko mendekotasuna bete behar duela erabaki duelako instalatzaileak.\n"
+"\n"
+"Zerrendaren beheko aldean dagoen disketearen ikono txikiak aurreko\n"
+"instalazio batean aukeratutako pakete-zerrenda kargatzeko aukera ematen du.\n"
+"Ikono horretan klik egitean, beste instalazio baten bukaeran sortu zenuen\n"
+"diskete bat sartzeko eskatuko zaizu. Ikus diskete hori sortzeko moduari\n"
+"buruzko azken urratsaren bigarren iradokizuna."
-#: ../../network/adsl.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:171
msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-"Alcatel microcodea behar duzu.\n"
-"Diskete baten bitartez edo zure windows partizioaren bitartez\n"
-"hornitu dezakezu orain, edo ahaztu eta beranduago egin."
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "Mesedez sartu WebDAV zerbitzariaren URL"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "Tadjikistan"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "Onartu"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "Deskribapena"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter summary text."
-msgstr "Mesedez sartu laburpen testua."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Errorea %s idazteko irekitzean: %s"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Sagu-mota: %s\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-"Zure txartelak 3D hardware-azelerazioaren euskarria izan dezake XFree %s(r)"
-"ekin."
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "Aukeratu monitorea"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "Ez da etiketa hutsik onartzen"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
-msgstr "Maltatarra (Erresuma Batua)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "Ezin da partizio gehiago gehitu"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "Tamaina MBtan: "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "Urruneko inprimagailua"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
-msgstr "Aukeratu erabiltzeko hizkuntza bat."
+"Interneteko/sareko konexioa konfiguratzea proposatzen dizugu orain. Zure\n"
+"ordenagailua Internetera edo sare lokal batera konektatu nahi baduzu, egin\n"
+"klik \"Ados\" botoian. Sareko gailuak eta modemak automatikoki detektatzeko\n"
+"prozesua abiaraziko da. Detekzioak huts egiten badu, desautatu \"Erabili\n"
+"auto-detekzioa\" hurrengoan. Sarea ez konfiguratzea edo geroago\n"
+"konfiguratzea ere aukera dezakezu; horrela bada, egin klik \"Utzi\"\n"
+"botoian.\n"
+"\n"
+"Konexio erabilgarriak: modem tradizionala, ISDN modema, ADSL konexioa,\n"
+"kable bidezko modema, eta azkenik sare lokaleko konexioa (Ethernet).\n"
+"\n"
+"Hemen ez dugu konfigurazio bakoitza zehaztuko. Ziurtatu Interneteko\n"
+"zerbitzu-hornitzaileak edo sistema-administratzaileak eman dizkizula\n"
+"parametro guztiak.\n"
+"\n"
+"``Erabiltzailearen gida''n Interneteko konexioei buruzko kapitulua\n"
+"kontsulta dezakezu konfigurazioaren xehetasunak ezagutzeko, edo bestela,\n"
+"itxaron sistema instalatu arte, eta erabili zure konexioa konfiguratzeko\n"
+"bertan azaltzen zaizun programa.\n"
+"\n"
+"Sarea geroago, instalazioa egin ondoren, konfiguratu nahi baduzu, edo\n"
+"sare-konexioa konfiguratzen bukatu baduzu, sakatu \"Utzi\"."
-#: ../../network/network.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:193
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."
+"You may now choose which services you wish to start at boot time.\n"
+"\n"
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
+"\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
-"ABISUA: Gailu hau Internetera konektatzeko konfiguratu da aldez aurretik.\n"
-"Gailu hau konfiguratuta mantentzeko, onartu, besterik gabe.\n"
-"Ondoko eremuak aldatzen badituzu konfigurazio hau gainidatziko da."
-
-#: ../../any.pm:1
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
-msgstr "Konputagailua ezarri dezaket erabiltzaile bat automatikoki sartzeko."
+"Orain abioan zein zerbitzu abiaraztea nahi duzun aukera dezakezu.\n"
+"\n"
+"Hemen uneko instalazioan erabilgarri dauden zerbitzu guztiak ageri dira.\n"
+"Azter itzazu arretaz eta kendu hautatze-marka abiaraztean beti behar ez\n"
+"direnei.\n"
+"\n"
+"Zerbitzu jakin bat hautatuz, zerbitzu horri buruzko azalpen-testu labur bat\n"
+"eskuratuko duzu. Hala ere, zerbitzu bat erabilgarria den ala ez ziur ez\n"
+"bazaude, seguruagoa da jokabide lehenetsia uztea.\n"
+"\n"
+"!! Etapa honetan, oso kontuz ibili zure makina zerbitzari gisa erabiltzeko\n"
+"asmoa baduzu: seguru asko ez duzu behar ez duzun zerbitzurik abiarazi nahi\n"
+"izango. Gogoan izan zerbitzu batzuk arriskutsuak izan daitezkeela\n"
+"zerbitzari batean gaitzen badira. Oro har, benetan behar dituzun zerbitzuak\n"
+"soilik hautatu. !!"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Floppy format"
-msgstr "Disketearen formatua"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:210
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
+msgstr ""
+"GNU/Linux-ek GMT (Greenwich Mean Time) ordua erabiltzen du eta tokian\n"
+"tokiko ordura aldatzen du, hautatutako ordu-zonaren arabera. Desaktibatu\n"
+"nahi baduzu, desautatu \"Hardwarearen ordua GMTn ezarria\", hardwarearen\n"
+"ordua eta sistemaren ordua berdinak izan daitezen. Erosoa da makinan beste\n"
+"sistema eragile bat dagoenerako, esate baterako, Windows.\n"
+"\n"
+"\"Ordu-sinkronizazio automatikoa\" aukerak automatikoki doituko du erlojua\n"
+"Interneteko urruneko ordu-zerbitzari batekin konektatuz. Aukera ezazu\n"
+"zuregandik hurbil dagoen zerbitzari bat. Eginbide hau erabili ahal izateko\n"
+"Interneteko konexioa beharko duzu, noski. Zure makinan ordu-zerbitzari bat\n"
+"instalatuko du eta zure sare lokaleko beste makina batzuetatik ere erabili\n"
+"ahal izango duzu, nahi izanez gero."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Generic Printers"
-msgstr "Inprimagailu generikoak"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:224
+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.\n"
+"\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
+msgstr ""
+"X (X Window sistema) GNU/Linux-en interfaze grafikoaren bihotza da, eta\n"
+"Mandrake Linux-en dauden ingurune grafiko guztiak (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etab.) horren araberakoak dira. Atal honetan,Xautomatikoki\n"
+"konfiguratzen saiatuko da DrakX.\n"
+"\n"
+"Oso gutxitan huts egiten du, baldin eta hardwarea ez bada oso zaharra (edo\n"
+"oso berria). Ongi badoa, X automatikoki abiaraziko du ahalik eta\n"
+"bereizmenik onenarekin, monitorearen tamainaren arabera. Orduan leiho bat\n"
+"agertuko da eta ikus dezakezun galdetuko dizu.\n"
+"\n"
+"\"Aditu\" instalazioa egiten ari bazara, X konfiguratzeko morroian sartuko\n"
+"zara. Ikus eskuliburuan dagokion atala morroi honi buruzko informazio\n"
+"gehiago lortzeko.\n"
+"\n"
+"Mezua ikus badezakezu eta \"Bai\" erantzun baduzu, DrakX hurrengo urratsera\n"
+"joango da. Mezua ezin baduzu ikusi, konfigurazioa okerra dela esan nahi du,\n"
+"eta proba automatikoki bukatuko da 10 segundo igarota; pantaila leheneratu\n"
+"egingo da."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:246
msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
msgstr ""
-"Mesedez hautatu inprimaketa lanak bideratu behar diren inprimagailua edo "
-"idatzi gailuaren izena/fitxategi-izena sarrera lerroan"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr "Makina honetako eskanerrak beste konputagailuentzako eskuragarri daude"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of the root partition"
-msgstr "Erro partizioaren lehen sektorea"
+"Azkenik, abioan interfaze grafikoa ikusi nahi duzun galdetuko zaizu.\n"
+"Kontuan izan galdera hori konfigurazioa ez probatzea aukeratu baduzu ere\n"
+"egingo zaizula. Jakina, \"Ez\" erantzun nahi izango duzu zure ordenagailuak\n"
+"zerbitzari gisa jokatu behar badu, edo bistaratzea konfiguratzea lortzen ez\n"
+"baduzu."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Alternative drivers"
-msgstr "Gidari alternatiboak"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:253
+msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
+msgstr ""
+"Mandrake Linux-en CD-ROMak berreskuratze-modua dauka barnean. Hura erabili\n"
+"dezakezu CD-ROMetik abiatu, >>F1<< tekla abioan sakatu eta gonbitan "
+">>rescue<<\n"
+"idatziz. Baina zure ordenagailua CD-ROMetik abiatu ezin daitekeen kasuan, "
+"urrats\n"
+"honetara itzuli beharko zenuke laguntza bila gutxienez bi egoeratan:\n"
+"\n"
+" * abio-zamatzailea instalatzeko, DrakXek zure disko nagusiko abio-sektorea\n"
+"(MBR) berridatziko du (baldin eta ez baduzu beste abio-kudeatzaile bat\n"
+"erabiltzen), Windows nahiz GNU/Linux-ekin hasi ahal zaitezen (zure sisteman\n"
+"Windows daukazula suposatuz). Windows berrinstalatzen baduzu,\n"
+"Microsoft-en instalazio-prozesuak abioko sektorea berridatziko du, eta gero\n"
+"ezin izango duzu GNU/Linux abiarazi!\n"
+"\n"
+" * arazoren bat sortzen bada eta GNU/Linux disko zurrunetik abiarazi ezin "
+"baduzu,\n"
+"diskete hau izango da GNU/Linux abiarazteko bide bakarra. Sistema-tresna "
+"ugari ditu, argindarra eten, idazketa-akats tamalgarri bat, pasahitz batean "
+"akatsa, edo\n"
+"beste edozein arrazoigatik hondatu den sistema berreskuratzeko.\n"
+"\n"
+"\"Bai\" esaten baduzu, unitatean diskete bat sartzea eskatuko zaizu. "
+"Sartuko\n"
+"duzun disketea hutsik egon behar da edo dituen datuak ez dira beharrezko "
+"izan\n"
+"behar. Ez duzu eratu beharko, DrakX-ek disko osoa gainidatziko baitu."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:277
+msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-"Please check all options that you need.\n"
-msgstr ""
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
-"Mesedez egiaztatu behar dituzun aukera guztiak.\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
-msgstr "Cabo Verde"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "cpu honek Curix 6x86 koma akatsa duen"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr "Inprimagailu konfigurazioa zamatzen... itxoin mesedez"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
-"hasierako pentium-ak akastunak ziren eta blokeatu eginten ziren F00F byte "
-"kodea dekodetzerakoan"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr "Guam"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
+msgstr ""
+"Hona iritsita, Mandrake Linux sistema eragilea disko gogorrean non\n"
+"instalatu aukeratu beharko duzu. Disko gogorra hutsik badago edo lehendik\n"
+"dagoen sistema eragile batek leku erabilgarri guztia betetzen badu,\n"
+"partizioa egin beharko duzu. Funtsean, disko gogorrean partizioa egitea\n"
+"diskoa logikoki zatitzea da, Mandrake Linux sistema berria instalatzeko\n"
+"lekua sortzeko.\n"
+"\n"
+"Partizio-prozesuaren ondorioak itzulbiderik gabekoak izan ohi direnez,\n"
+"partizioa egitea korapilatsua eta deserosoa izan daiteke esperientziarik\n"
+"gabeko erabiltzailea bazara. Zorionez, badago prozesu hau errazten duen\n"
+"morroi bat. Hasi aurretik, kontsultatu eskuliburua eta hartu behar duzun\n"
+"denbora.\n"
+"\n"
+"Instalazioa Aditu moduan exekutatzen baduzu, DiskDrake, Mandrake Linux-en\n"
+"partizio-tresnan sartuko zara partizioak doitzeko. Ikus DiskDrake atala,\n"
+"``Erabiltzailearen gida''n. Instalazio-interfazean, hemen azaldutako\n"
+"morroiak erabil ditzakezu elkarrizketa-koadroko \"Morroia\" botoian klik\n"
+"eginda.\n"
+"\n"
+"Partizioak jadanik definitu badira, lehendik dagoen instalazio batean nahiz\n"
+"beste partizio-tresna baten bidez, hautatu zure Linux sistema instalatzeko\n"
+"partizioak.\n"
+"\n"
+"Partizioak definitu gabe badaude, morroiaren bidez sortu beharko dituzu.\n"
+"Disko gogorraren konfigurazioaren arabera, hainbat aukera daude:\n"
+"\n"
+" * \"Erabili leku librea\": aukera honek automatikoki egingo ditu\n"
+"partizioak hutsik dagoen unitatean. Ez zaizu beste galderarik egingo;\n"
+"\n"
+" * \"Lehendik dagoen partizioa erabili\": morroiak Linux partizio bat edo\n"
+"gehiago detektatu du zure disko gogorrean. Erabili nahi badituzu, hautatu\n"
+"aukera hau;\n"
+"\n"
+" * \"Erabili Windows-en partizioko leku librea\": Microsoft Windows\n"
+"instalatuta badago disko gogorrean eta bertako leku erabilgarri guztia\n"
+"hartzen badu, Linux-en datuentzat lekua sortu beharko duzu. Horretarako,\n"
+"Microsoft Windows partizioa eta datuak ezaba ditzakezu (ikus ``Ezabatu\n"
+"disko osoa'' edo ``Aditu modua'') edo Microsoft Windows partizioari tamaina\n"
+"aldatu. Tamaina-aldaketa daturik galdu gabe egin daiteke, baldin eta\n"
+"Windows partizioa desfragmentatzen baduzu lehenik. Datuen babeskopia\n"
+"egiteak ere ez du kalterik egingo. Irtenbide hau da gomendagarriena zure\n"
+"ordenagailuan Mandrake Linux eta Microsoft Windows erabili nahi badituzu.\n"
+"\n"
+" Aukera hau hautatu aurretik, kontuan izan prozedura honen ondoren\n"
+"Microsoft Windows-en partizioa orain baino txikiagoa izango dela. Leku\n"
+"gutxiago izango duzu, beraz, Microsoft Windows-eko datuak gordetzeko edo\n"
+"software berria instalatzeko;\n"
+"\n"
+" * \"Ezabatu disko osoa\": disko gogorreko datu eta partizio guztiak\n"
+"ezabatu eta Mandrake Linux sistema berriarekin ordeztu nahi badituzu,\n"
+"hautatu aukera hau. Kontuz ibili irtenbide honekin, ezin izango baituzu\n"
+"aukeran atzera egin berretsi ondoren;\n"
+"\n"
+" !! Aukera hau hautatzen baduzu, diskoko datu guztiak galduko dituzu. !!\n"
+"\n"
+" * \"Kendu Windows\": unitatean dagoen guztia ezabatuko du eta berriro\n"
+"hasiko da, hutsetik abiatuta partizioak egiten. Diskoko datu guztiak\n"
+"galduko dira.\n"
+"\n"
+" !! Aukera hau hautatzen baduzu, diskoko datu guztiak galduko dituzu. !!\n"
+"\n"
+" * \"Aditu modua\": hautatu aukera hau disko gogorreko partizioa eskuz egin\n"
+"nahi baduzu. Kontuz - aukera ahaltsua, baina arriskutsua da. Datu guztiak\n"
+"oso erraz gal ditzakezu. Beraz, ez aukeratu hau baldin eta ez badakizu zer\n"
+"egiten ari zaren."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:347
msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-"Hautatu inprimagailua konektatuta dagoen ataka edo idatzi gailuaren izena/"
-"fitxategi-izena"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/Aukerak/Probatu"
+"Hortxe duzu. Instalazioa osatu da eta GNU/Linux sistema prest duzu\n"
+"erabiltzeko. Sakatu \"Ados\" sistema berrabiarazteko. GNU/Linux edo\n"
+"GNU/Linux abiaraz dezakezu, nahiago duzuna (abio bikoitza izanez gero),\n"
+"ordenagailua berrabiarazi bezain laster.\n"
+"\n"
+"\"Aurreratua\" botoiak (Aditu moduan soilik) beste bi botoi erakusten ditu:\n"
+"\n"
+" * \"sortu auto-instalazioko disketea\": instalazio oso bat, oraintxe\n"
+"konfiguratu duzuna bezalakoa, operadore baten laguntzarik gabe automatikoki\n"
+"egingo duen instalazio-diskete bat sortzeko.\n"
+"\n"
+" Kontuan izan beste bi aukera daudela erabilgarri botoian klik egitean:\n"
+"\n"
+" * \"Errepikatu\". Hau partzialki automatizatutako instalazioa da,\n"
+"partizio-urratsa (eta hau soilik) interaktiboa izango baita.\n"
+"\n"
+" * \"Automatizatua\". Erabat automatizatutako instalazioa: disko gogorra\n"
+"erabat berridatziko da, eta datu guztiak galduko dira.\n"
+"\n"
+" Eginbide hau oso praktikoa da antzeko ordenagailu asko instalatzen\n"
+"direnerako. Ikus Auto-instalazioa atala gure web gunean;\n"
+"\n"
+" * \"Gorde pakete-hautapena\"(*): lehen egindako pakete-hautapena gordetzen\n"
+"du. Gero, beste instalazio bat egitean, sartu disketea unitatean eta\n"
+"instalazioa exekutatzeko, joan laguntza-pantailara [F1] tekla sakatuz eta\n"
+"idatzi >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) FAT formatudun disketea behar duzu (GNU/Linux-en horrelako diskete bat\n"
+"sortzeko, idatzi \"mformat a:\")"
-#: ../../security/level.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:378
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."
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-"Maila hau kontuz erabili behar da. Sistema erabilerrazagoa izango da, baina\n"
-"oso erraz erasotzekoa: ez da erabili behar beste ordenagailu batzuekin edo \n"
-"Internetekin konektatuta dauden makinetan. Ez dago pasahitzik."
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mounting partition %s"
-msgstr "%s partizioa muntatzen"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "Erabiltzaile-izena"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Zein partizio erabili nahi duzu Linux4Win-erako?"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to missing %s"
-msgstr "falta den %s dela eta"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Test pages"
-msgstr "Proba-orriak"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Logical volume name "
-msgstr "Bolumen logikoaren izena"
+"Partizio definitu berriak formateatu egin behar dira erabili ahal izateko\n"
+"(formateatzeak fitxategi-sistema sortzea esan nahi du).\n"
+"\n"
+"Une honetan, lehendik dauden partizio batzuei berriro formatua eman nahi\n"
+"izango diezu beharbada, dauzkaten datuak ezabatzeko. Hori egin nahi baduzu,\n"
+"hauta itzazu partizio horiek ere.\n"
+"\n"
+"Kontuan izan ez dela beharrezkoa lehendik dauden partizio guztiei berriro\n"
+"formatua ematea. Sistema eragilea daukaten partizioak berriro formateatu\n"
+"behar dituzu (esaterako \"/\", \"/usr\" edo \"/var\"), baina ez mantendu\n"
+"nahi dituzun datuak dituztenak (adibide tipikoa \"/home\" da).\n"
+"\n"
+"Kontuz ibili partizioak hautatzean. Formateatu ondoren, hautatutako\n"
+"partizioetako datu guztiak ezabatu egingo dira eta ezin izango duzu bat ere\n"
+"berreskuratu.\n"
+"\n"
+"Sakatu \"Ados\" partizioak formateatzeko prest zaudenean.\n"
+"\n"
+"Sakatu \"Utzi\" Mandrake Linux sistema eragile berria instalatzeko beste\n"
+"partizio bat aukeratu nahi baduzu.\n"
+"\n"
+"Sakatu \"Aurreratua\" partizio batzuk aztertu nahi badituzu hondatutako\n"
+"blokerik duten ikusteko."
-#: ../../standalone/drakbackup:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:404
msgid ""
-"List of data to restore:\n"
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
"\n"
+"Please be patient."
msgstr ""
-"Leheneratu beharreko datuen zerrenda:\n"
+"Mandrake Linux sistema eragile berria instalatzen ari da orain. Instalatu\n"
+"beharreko paketeen eta ordenagailuaren abiaduraren arabera, eragiketa honek\n"
+"minutu batzuk edo denbora dezente beharko du.\n"
"\n"
+"Izan pazientzia."
-#: ../../fs.pm:1
-#, c-format
-msgid "Checking %s"
-msgstr "%s egiaztatzen"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/Socket inprimagailuaren aukerak"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Txartelaren mem (DMA)"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Internetetik deskonektatzen"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "Frantzia"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
-msgstr "arakatu"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
-msgstr "Instalatutako softwarea egiaztatzen..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Urruneko inprimagailu-izena falta da!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Inprimaketa gaitu nahi duzu bertako sarean dauden inprimagailuetan?\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "Turkia"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Number of buttons"
-msgstr "Botoi kopurua"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamdarra QWERTY \"ilara numerikoa\""
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Module"
-msgstr "Modulua"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:412
+msgid ""
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
+"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
+msgstr ""
+"Mandrake Linux instalatzen duzunean, litekeena da pakete batzuk aldatu\n"
+"izana hasierako argitalpenetik. Beharbada akats batzuk konponduko ziren,\n"
+"eta segurtasun-arazoak gaindituko ziren. Eguneratzeez baliatu ahal izan\n"
+"zaitezen, Internetik deskargatzea gomendatzen dizugu. Aukeratu \"Bai\"\n"
+"Interneteko konexioa martxan badaukazu, edo \"Ez\" pakete eguneratuak\n"
+"geroago instalatu nahi badituzu.\n"
+"\n"
+"\"Bai\" aukeratzen baduzu, eguneratzeak eskaintzen dituzten lekuen zerrenda\n"
+"azalduko da. Aukeratu zuregandik hurbilen dagoena. Paketeak hautatzeko\n"
+"zuhaitza agertuko da orduan: egin hautapena eta sakatu \"Instalatu\"\n"
+"hautatutako paketeak hartu eta instalatzeko, edo \"Utzi\" abortatzeko."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:425
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
msgstr ""
-"Gainera, programa honen edo \"foomatic-configure\"ren bidez sortu ez diren "
-"ilarak ezin dira transferitu."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
-msgstr "Hardwarea"
+"Aurrera jarraitu aurretik, arretaz irakurri lizentziaren baldintzak.\n"
+"Mandrake Linux banaketa osoari dagozkio eta baldintza guztiekin ados ez\n"
+"bazaude, egin klik \"Ezetsi\" botoian; horrela berehala amaituko da\n"
+"instalazioa. Instalazioarekin aurrera jarraitzeko, egin klik \"Onartu\"\n"
+"botoian."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ktrl eta Alt teklak batera"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "Estatu Batuak"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "User umask"
-msgstr "Erabiltzaile umask"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "SE lehenetsia?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "Suitzarra (diseinu alemana)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Buru guztiak independenteki konfiguratu"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:432
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\"."
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
msgstr ""
-"Mesedez hautatu ezarri nahi duzun inprimagailua. Inprimagailuaren "
-"konfigurazioa zeharo automatikoki egingo da. Zure inprimagailua egokiro "
-"detektatu ez bada edo konfigurazio pertsonalizatua nahiago baduzu, jarri "
-"\"Eskuzko konfigurazioa\"."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "NTP Zerbitzaria"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Sulogin(8) in single user level"
-msgstr "Sulogin(8) erabiltzaile bakarreko mailan"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Load/Save on floppy"
-msgstr "Kargatu/Gorde disketean"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
-msgstr "Gai honek ez dauka oraindik abiapen-irudirik %s-n!"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "baliagarria"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "%d segundo barru irten"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Aukeratu modema konektatuta dagoen serieko ataka."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Property"
-msgstr "Propietatea"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr "Sare lokalaren konfigurazioa (LAN)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "Ghana"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
-msgstr "Bidea edo Modulua behar da"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Advanced Options"
-msgstr "Aukera aurreratuak"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Configuration"
-msgstr "Konfigurazioa Ikusi"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
-msgstr "Koma akatsa"
+"Honaino iritsita, ordenagailuarentzat nahi duzun segurtasun-maila\n"
+"aukeratzeko garaia da. Oro har, makina zenbat eta babesgabeago egon eta\n"
+"zenbat eta funtsezko datu gehiago eduki biltegiratuta, orduan eta\n"
+"segurtasun-maila handiagoa behar da. Bestalde, segurtasun-maila handia,\n"
+"erabiltzeko erraztasunaren kalterako izan ohi da. Ikus ``Erreferentziako\n"
+"eskuliburua''ren \"msec\" atala maila horien esanahiari buruzko informazio\n"
+"gehiago lortzeko.\n"
+"\n"
+"Zer aukeratu ez badakizu, eutsi aukera lehenetsiari."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:442
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"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -5255,2122 +3574,1482 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``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 ""
-"Puntu honetan, Mandrake Linux sistemaren instalaziorako zein partizio\n"
-"erabiliko den/diren aukeratu behar duzu. Partizioak dagoeneko definitu\n"
-"badira, dela aurreko GNU/Linux instalazio batetik edo beste zatikatze\n"
-"tresna baten bitartez, dauden partizioak erabili ditzakezu. Bestela, "
-"unitate\n"
-"zurruneko partizioak definitu behar dira.\n"
+"Orain, Mandrake Linux sistema instalatzeko zein partizio erabiliko d(ir)en\n"
+"aukeratu behar duzu. Partizioak jadanik definituta badaude, (GNU/Linux-en\n"
+"aurreko instalazio batek edo beste partizio-tresna batek definituta),\n"
+"lehendik dauden partizioak erabil ditzakezu. Bestela, disko gogorreko\n"
+"partizioak definitu behar dira.\n"
"\n"
-"Partizioak sortzeko, lehenengo unitate zurrun bat aukeratu behar duzu.\n"
-"Zatikatuko den diskoa aukeratzeko klikatu ``hda'' 1. IDE unitatearentzako\n"
-"``hdb'' bigarrenarentzat, ``sda'' 1. SCSI unitatearentzako, ...\n"
+"Partizioak sortzeko, lehendabizi disko gogor bat hautatu behar duzu.\n"
+"Partizioa egiteko diskoa hautatzeko, sakatu ``hda'' lehen IDE unitaterako,\n"
+"``hdb'' bigarrenerako, ``sda'' lehen SCSI unitaterako eta abar.\n"
"\n"
-"Aukeratutako unitate zurruna zatikatzeko, aukera hauek erabili ditzakezu:\n"
+"Hautatutako disko gogorraren partizioa egiteko, aukera hauek erabil\n"
+"ditzakezu:\n"
"\n"
-" * \"%s\": honek aukeratutako unitateko partizio guztiak ezabatzen ditu\n"
+" * \"Garbitu dena\": aukera honek hautatutako disko gogorreko partizio\n"
+"guztiak ezabatuko ditu;\n"
"\n"
-" * \"%s\": honekin automatikoki sortuko dira ext3 eta swap partizioak zure\n"
-"unitate zurrunaren erabili gabeko lekuan\n"
+" * \"Auto-esleitu\": aukera honekin automatikoki sor ditzakezu \"Ext2\" eta\n"
+"swap partizioak disko gogorreko leku librean;\n"
"\n"
-" * \"%s\": ezaugarri gehiago erabiltzeko aukera:\n"
+" * \"Gehiago\": eginbide gehiago aukeran izateko:\n"
"\n"
-" * \"%s\": partizio taula diskete batean gordetzen du. Baliogarria\n"
-"partizio-taula berreskuratzea beharrezko bada. Biziki gomendatzen\n"
-"zaizu urrats hau betetzea.\n"
+" * \"Gorde partizio-taula\": partizio-taula diskete batean gordetzen du.\n"
+"Baliagarria de geroago partizio-taula berreskuratzeko, behar izanez gero.\n"
+"Oso gomendagarria da urrats hau egitea;\n"
"\n"
-" * \"%s\": aurrez gordetako partizio taula bat disketetik berreskuratzeko\n"
-"aukera ematen du.\n"
+" * \"Leheneratu partizio-taula\": lehen gordetako partizio-taula\n"
+"disketetik berreskuratzeko erabil daiteke;\n"
"\n"
-" * \"%s\": Zure partizio taula matxuratuta badago, aukera hau erabiliz\n"
-"berreskuratzen saia zaitezke. Mesedez kontuz ibili eta gogoratu ez duela\n"
-"beti funtzionatzen.\n"
+" * \"Berreskuratu partizio-taula\": partizio-taula hondatuta badago,\n"
+"berreskuratzen saia zaitezke aukera hau erabiliz. Kontuz ibili eta gogoan\n"
+"izan huts egin dezakeela;\n"
"\n"
-" * \"%s\": aldaketa guztiak baztertzen ditu eta unitate zurrunean hasieran\n"
-"zegoen partizio taula birzamatzen du.\n"
+" * \"Birkargatu partizio-taula\": aldaketa guztiak desegin eta hasierako\n"
+"partizio-taula kargatzen du;\n"
"\n"
-" * \"%s\": aukerari honi marka kendu ezkero erabiltzaileek eskuz muntatu "
-"eta\n"
-"desmuntatu beharko dituzte gailu eramangarriak disketeak eta CD-ROMak\n"
-"esaterako.\n"
+" * \"Euskarri aldagarrien automuntatzea\": aukera hau desgaitzen baduzu,\n"
+"euskarri aldagarriak (disketeak, CD-ROMak eta horrelakoak) eskuz muntatu\n"
+"eta desmuntatzera behartuko dituzu erabiltzaileak.\n"
"\n"
-" * \"%s\": erabili aukera hau zure unitate zurruna zatikatzeko morroia "
-"erabili\n"
-"nahi baduzu. Hau gomendagarria da zatikaketaren ulermen ona ez badaukazu\n"
+" * \"Morroia\": erabili aukera hau disko gogorreko partizioa egiteko\n"
+"morroia erabili nahi baduzu. Partizioak egiten ongi ez badakizu, morroia\n"
+"erabiltzea gomendatzen dizugu;\n"
"\n"
-" * \"%s\": Erabili aukera hau zure aldaketak bertan behera uzteko.\n"
+" * \"Desegin\": aukera hau aldaketak bertan behera uzteko erabil dezakezu;\n"
"\n"
-" * \"%s\": partizioetan ekintza gehiago egiteko aukera ematen du (mota,\n"
-"aukerak, eratu) eta unitate zurrunari buruz informazio gehiago ematen du.\n"
+" * \"Aldatu modu normalera/aditu modura\": partizioekin gauza gehiago\n"
+"egiteko aukera ematen du (mota, aukerak, formatua) eta informazio gehiago\n"
+"ematen du;\n"
"\n"
-" * \"%s\": zure unitate zurruna zatikatzen amaitu duzunean, honek zure\n"
-"aldaketak diskoan gordeko ditu.\n"
+" * \"Eginda\": disko gogorrean partizioak egiten bukatutakoan, aldaketak\n"
+"berriro diskoan gordeko ditu.\n"
"\n"
-"Partizio baten neurria definitzerakoan, era zehatzean doitu dezakezu\n"
-"partizioaren neurria zure teklatuko gezi teklak erabiliz.\n"
+"Oharra: edozein aukera eskura dezakezu teklatuaren bidez. Partizio batetik\n"
+"bestera joateko, [Tab] eta [Gora/Behera] geziak erabil ditzakezu.\n"
"\n"
-"Oharra: edozein aukera atzeman dezakezu teklatua erabiliz. Partizioen\n"
-"artean nabegatu [Tab] eta [Gora/Bera] geziak erabiliz.\n"
+"Partizio bat hautatuta dagoenean, aukera hauek dituzu:\n"
"\n"
-"Partizio bat aukeratuta dagoenean, erabili dezakezu:\n"
+" * Ktrl-c beste partizio bat sortzeko (partizio huts bat hautatuta\n"
+"dagoenean);\n"
"\n"
-" * Ctrl-c partizio berria sortzeko (partizio hutsa aukeratzen denean)\n"
+" * Ktrl-d partizioa ezabatzeko;\n"
"\n"
-" * Ctrl-d partizio bat ezabatzeko\n"
+" * Ktrl-m muntatze-puntua ezartzeko.\n"
"\n"
-" * Ctrl-m muntaia-puntua ezartzeko\n"
+"Erabil daitezkeen fitxategi-sistema desberdinei buruzko informazioa nahi\n"
+"baduzu, irakurri ext2fs kapitulua ``Erreferentzia-eskuliburua''n.\n"
"\n"
-"Erabili daitezkeen fitxategi sistema desberdinei buruzko informazioa "
-"jasotzeko,\n"
-"mesedez irakurri ext2FS atala ``Reference Manual'' eskuliburuan.\n"
-"\n"
-"PPC makina batean instalatzen ari bazara, gutxienez 1 MBduen HFS\n"
-"``bootstrap'' partizio txiki bat sortu nahiko duzu yaboot abiapen-"
-"zamatzaileak\n"
-"erabil dezan. Partizio luzeagoa egitea erabakitzen baduzu, 50MB esaterako,\n"
-"larrialdietako abiapen egoeretarako ordezko nukleo eta ramdiska irudia\n"
-"gordetzeko leku aproposa dela konturatuko zara."
+"PPC makina batean instalatu behar baduzu, gutxienez 1 MBko HFS\n"
+"``bootstrap'' partizio txiki bat sortzea komeniko zaizu, yaboot abioko\n"
+"kargatzaileak erabil dezan. Partizioa zertxobait handiagoa egitea hautatzen\n"
+"baduzu, adibidez 50 MBkoa, leku egokia izan daiteke ordezko nukleo bat eta\n"
+"ramdisk imajinak biltegiratzeko emergentziazko abioa egin ahal izateko."
-#: ../../help.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:513
msgid ""
-"Graphic Card\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-" 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"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\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 ""
-"Txartela Grafikoa\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-" Instalatzaileak normalean automatikoki detektatu eta konfiguratzen du\n"
-"zure sisteman instalatutako txartela grafikoa. Horrela ez bada, zerrenda\n"
-"honetatik aukeratu dezakezu orain daukazun txartela.\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"
-" Zure txartelarentzako zerbitzari desberdinak dauden kasuan, 3D \n"
-"azelerazioarekin edo gabe, zure beharretara hobe egokitzen den zerbitzaria\n"
-"aukeratzea eskatuko zaizu."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Errore bat izan da paketeak instalatzean:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Lexmark inkjet inprimagailuaren konfigurazioa"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "Desegin"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Save partition table"
-msgstr "Gorde partizio-taula"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "finlandiarra"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "Mazedonia"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
-msgstr ""
-"Erabiltzaileen araberako konpartitzeak \"fileshare\". \n"
-"taldea erabiltzen du. Userdrake erabil dezakezu talde \n"
-"honetan erabiltzeak gehitzeko."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "Esloveniarra"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Authorize:\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-"- only local ones if set to \"LOCAL\"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
-"- none if set to \"NONE\".\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+" * \"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 ""
-"Baimendu:\n"
+"Microsoft partizio bat baino gehiago detektatu da zure disko gogorrean.\n"
+"Aukeratu Mandrake Linux sistema eragile berria instalatzeko tamainaz aldatu\n"
+"nahi duzuna.\n"
"\n"
-"- tcp_wrappers-ek kontrolatutako zerbitzu guztiak (ikusi hosts.deny(5) man "
-"orria) \"ALL\" ezartzen bada,\n"
+"Partizio bakoitza honela zerrendatzen da: \"Linux izena\", \"Windows\n"
+"izena\" \"Edukiera\".\n"
"\n"
-"- bertakoak soilik \"LOCAL\" ezarri ezkero\n"
+"\"Linux izena\" honela egituratzen da: \"disko gogorraren mota\", \"disko\n"
+"gogorraren zenbakia\", \"partizio-zenbakia\" (adibidez, \"hda1\").\n"
"\n"
-"- batere ez \"NONE\" ezarrita.\n"
+"\"Disko gogorraren mota\" \"hd\" izango da disko gogorra IDE disko gogorra\n"
+"bada, eta \"sd\", SCSI unitatea bada.\n"
"\n"
-"Behar dituzun zerbitzuak baimentzeko, erabili /etc/hosts.allow (ikusi hosts."
-"allow(5))."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr "Libia"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"Script-ak konfiguratzen, softwarea instalatzen, zerbitzariak abiarazten..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Inprimagailua #%s ataka paraleloan"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"\"Disko gogorraren zenbakia\" beti \"hd\" edo \"sd\" ren ondoko letra bat\n"
+"izaten da. IDE disko gogorretan:\n"
"\n"
-"- Burn to CD"
-msgstr ""
+" * \"a\"k \"IDE kontroladore primarioko disko gogor nagusia\" esan nahi du;\n"
"\n"
-"- CD-ra grabatu"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "Taula"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Ez dakit nola formateatu %s %s motan"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Model"
-msgstr "Eredua"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "USB printer #%s"
-msgstr "#%s USB inprimagailua"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Stop Server"
-msgstr "Gelditu Zerbitzaria"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
+" * \"b\"k \"IDE kontroladore primarioko mendeko disko gogorra\" esan nahi\n"
+"du;\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
+" * \"c\"k \"IDE kontroladore sekundarioko disko gogor nagusia\" esan nahi\n"
+"du;\n"
"\n"
-"Hautatu gai bat\n"
-"lilo eta bootsplash-entzat,\n"
-"bakoitzarena banaka\n"
-"hautatu dezakezu"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Modem"
-msgstr "Modema"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr "Tuvalu"
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr "Erabili auto-detekzioa"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
-msgstr ""
-"GPMk saguaren euskarria gehitzen die Midnight Commander bezalako\n"
-"testuan oinarritutako Linux aplikazioei. Halaber kontsolan saguaren bidez "
-"ebaki eta itsasteko aukera ematen du eta laster-menuen euskarria eransten du."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr "Abioan abiaraztekoa"
-
-#: ../advertising/12-mdkexpert.pl:1
-#, 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:"
-msgstr ""
-"Batu MandrakeSoft Euskarri taldeetara eta Linuxen Lerroko Komunitateetara "
-"zure jakinduria elkarbanatu eta besteei lagundu lerroko euskarri teknikoko "
-"webguneetan Aditu ezaguna bilakatuz:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "No password aging for"
-msgstr "Pasahitz adinik ez honentzako"
-
-#: ../../standalone/draksec:1
-#, 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"
-msgstr ""
-"Ondorengo aukerak zure sistemaren segurtasuna moldatzeko\n"
-"ezarri daitezke. Azalpenak behar badituzu, begiratu laguntza argibideak.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Automatikoki aurkitu urruneko makinetako inprimagailu eskuragarriak"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr "Ekialdeko Timor"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
-msgstr "Zinta Gailuan"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+" * \"d\"k \"IDE kontroladore sekundarioko mendeko disko gogorra\" esan nahi\n"
+"du;\n"
"\n"
-"- Save to Tape on device: %s"
-msgstr ""
+"SCSI disko gogorretan, \"a\" letrak \"SCSI ID baxuena\" esan nahi du, \"b\"\n"
+"letrak \"bigarren SCSI ID baxuena\", etab.\n"
"\n"
-"- Gorde Zintara gailu honetan: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Login name"
-msgstr "Erregistro izena"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
-msgstr "Txostendu jaberik gabeko fitxategiak"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr "Ezabatu profila..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Foomatic instalatzen ..."
+"\"Windows izena\" Windows-en disko gogorraren letra da (lehen diskoak edo\n"
+"partizioak \"C:\" du izena)."
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Amaitu saioa eta, ondoren, sakatu Ktrl-Alt-Atzera"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected"
-msgstr "detektatua"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "Sareak berrabiapena behar du. Berrabiatu nahi duzu?"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package: "
-msgstr "Paketea: "
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr "Ezin da /etc/sysconfig/bootsplash idatzi."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "SEGURTASUN OHARRA!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
-msgstr "Ez, ez dut saioa automatikoki hasi nahi"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Windows Migrazio tresna"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr "Hizkuntza guztiak"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "%s kentzen"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s not found...\n"
-msgstr "ez da %s aurkitu...\n"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Testing your connection..."
-msgstr "Konexioa probatzen..."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
+msgstr "Izan pazientzia. Eragiketa honek minutu batzuk beharko ditu."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cache size"
-msgstr "Katxe neurria"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:547
+msgid ""
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
+"\n"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
+"\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
+"\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
+"\n"
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
+"\n"
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
+"\n"
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
+"\n"
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
+msgstr ""
+"DrakXk lehenetsitako instalazioa (\"Gomendatua\") egin nahi duzun edo\n"
+"kontrol handiagoa eduki nahi duzun (\"Aditua\") jakin behar du orain.\n"
+"Gainera, instalazio berri bat egin dezakezu edo lehendik dagoen Mandrake\n"
+"Linux sistema eguneratu dezakezu.\n"
+"\n"
+" * \"Instalatu\": sistema zaharra erabat garbituko da. Makinan daukazunaren\n"
+"arabera, partizio zahar batzuk (Linux-enak edo beste batzuenak) aldatu gabe\n"
+"mantendu ahal izango dituzu.\n"
+"\n"
+" * \"Bertsio-berritu\": instalazio-klase honekin lehendik Mandrake Linux\n"
+"sisteman instalatuta dauzkazun paketeak eguneratuko dira, besterik gabe.\n"
+"Disko gogorretako partizioak eta erabiltzaileen konfigurazioak mantenduko\n"
+"ditu. Gainerako konfigurazio-urratsak erabilgarri egongo dira instalazio\n"
+"arrunterako;\n"
+"\n"
+" * \"Paketeak bakarrik bertsio-berritu\": klase berri honekin lehendik\n"
+"daukazun Mandrake Linux sistema bertsio-berrituko duzu\n"
+"sistema-konfigurazioa batere aldatu gabe. Uneko instalazioan pakete berriak\n"
+"ere gehitu ahal izango dituzu.\n"
+"\n"
+"Bertsio-berritzeek ongi funtzionatuko dute \"8.1\" bertsiotik aurrerako\n"
+"Mandrake Linux sistemetan.\n"
+"\n"
+"GNU/Linux zenbateraino ezagutzen duzun kontuan hartuta, hautatu aukera\n"
+"hauetako bat:\n"
+"\n"
+" * Gomendatua: aukeratu hau GNU/Linuxsistema eragilea inoiz instalatu ez\n"
+"baduzu. Instalazioa oso erraza izango da eta galdera batzuk besterik ez\n"
+"zaizkizu egingo;\n"
+"\n"
+" * Aditua GNU/Linux ongi ezagutzen baduzu, instalazio-klase hau aukera\n"
+"dezakezu. Instalazio adituak oso instalazio pertsonalizatua egiteko aukera\n"
+"emango dizu. Galdera batzuei erantzutea zaila izan daiteke GNU/Linux ongi\n"
+"ezagutzen ez baduzu, beraz ez ezazu aukeratu baldin eta zer egiten ari\n"
+"zaren ez badakizu."
-#: ../../security/level.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:582
msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
+"\n"
+"Click on the \"More\" 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, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
msgstr ""
-"Pasahitzak gaituta daude orain, baina sareko ordenagailu gisa erabiltzea ez "
-"da komeni oraindik."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr "Hasierako sektorea: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr "Kongo (Brazzaville)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Read"
-msgstr "Irakurri"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "%s paketea instalatu egin behar da. Instalatu nahi duzu?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
-msgstr "Seychelleak"
+"Normalean, DrakXk teklatu egokia hautatuko dizu (aukeratutako hizkuntzaren\n"
+"arabera) eta urrats hau ikusi ere ez duzu egingo. Dena den, baliteke zure\n"
+"hizkuntzari zehazki dagokion teklatua ez edukitzea: adibidez, ingelesez\n"
+"dakien suitzarra bazara, hizkuntza ingelesa hautatu arren Suitzako teklatua\n"
+"nahi izango duzu seguru asko. Edo ingeles hiztuna bazara baina Quebec-en\n"
+"bazaude, egoera berean egon zintezke. Bi kasuetan, instalazio-urrats\n"
+"honetan atzera jo eta teklatu egokia hautatu beharko duzu zerrendan.\n"
+"\n"
+"Egin klik \"Gehiago\" botoian onartzen diren teklatuen zerrenda osoa\n"
+"ikusteko."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:598
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"
+"The first step is to choose your preferred language.\n"
"\n"
-"For your printer Printerdrake has found:\n"
+"Please choose your preferred language for installation and system usage.\n"
"\n"
-"%s"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
+"\n"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
-"Printerdrake-k inprimagailua auto-detektatzean lortutako modelo-izena "
-"inprimagailuen datu-basean dituen modeloekin konparatu du, egokiena "
-"aurkitzeko. Aukera okerrekoa izan daiteke, batez ere zure inprimagailua ez "
-"bada azaltzen datu-baseko zerrendan. Beraz, begiratu aukera egokia den eta, "
-"hala bada, egin klik \"Modeloa zuzena da\"n, bestela, egin klik \"Hautatu "
-"modeloa eskuz\"en hurrengo pantailara joan eta modeloa eskuz hautatzeko.\n"
+"Aukeratu instalaziorako eta sisteman erabiltzeko nahi duzun hizkuntza.\n"
"\n"
-"Hau aurkitu du Printerdrake-k zure inprimagailuarentzat:\n"
+"\"Aurreratua\" botoian klik eginez, lan-estazioan instalatzeko beste\n"
+"hizkuntza batzuk hautatu ahal izango dituzu. Beste hizkuntzaren bat\n"
+"hautatzean, sistemaren dokumentaziorako eta aplikazioetarako fitxategi\n"
+"espezifikoak instalatuko dira. Adibidez, zure ordenagailuan Espainiako\n"
+"erabiltzaileei ostatu eman behar badiezu, zuhaitz-ikuspegian hautatu\n"
+"euskara hizkuntza nagusi gisa, eta Aurreratua atalean, egin klik\n"
+"\"Spanish|Spain\"ri dagokion laukian.\n"
"\n"
-"%s"
+"Kontuan hartu hizkuntza bat baino gehiago instala daitezkeela. Hizkuntza\n"
+"gehigarriak aukeratutakoan, egin klik \"Ados\" botoian jarraitzeko."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Bad password on %s"
-msgstr "%s-n pasahitz okerra"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:617
msgid ""
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
"\n"
-"Inprimagailu ezezagun bat dago zure sistemara zuzenean lotuta"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Control key"
-msgstr "Eskuineko Kontrol tekla"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
msgstr ""
-"Sartu FAT formatuko diskete bat %s unitatean erro direktorioan %s daukala "
-"eta sakatu %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "Zambia"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr "Segurtasun Kudeatzailea (sarrera edo posta-e)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr "Barkatu, 2.4 kernelak onartzen ditugu soilik."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr "Errumaniarra (qwerty)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
-msgstr "Garatzen... itxaron mesedez."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "Egipto"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "Txekiar errepublika"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "Soinu-txartela"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Import Fonts"
-msgstr "Letra-tipoen inportazioa"
+"DrakXk normalean detektatzen du saguak zenbat botoi dituen. Detektatu ezin\n"
+"badu, bi botoiko sagua duzula suposatuko du, eta hirugarren botoia emula\n"
+"dezan konfiguratuko du. DrakXk automatikoki jakingo du sagua PS/2, seriekoa\n"
+"edo USB motakoa den.\n"
+"\n"
+"Beste mota bateko sagua zehaztu nahi baduzu, hautatu dagokion mota\n"
+"zerrendan.\n"
+"\n"
+"Lehenetsitakoa ez den sagu aukeratzen baduzu, probako pantaila bat azalduko\n"
+"da. Erabili botoiak eta gurpila ezarpenak egokiak direla egiaztatzeko.\n"
+"Saguak ez badu behar bezala funtzionatzen, sakatu zuriune-barra edo\n"
+"[Itzuli], bertan behera \"Utzi\" eta berriro aukeratzeko."
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:638
msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"Microsoft Windows partizio handi bat duzu.\n"
-"Lehendabizi partizio horri neurria aldatzea\n"
-"gomendatzen dizut (klikatu bertan, gero klikatu \"Neurria aldatu\"-n)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Ezabatu aldi baterako fitxategiak"
+"Hautatu ataka egokia. Adibidez Windows-eko \"COM1\" atakak \"ttyS0\" du\n"
+"izena GNU/Linux-en."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:642
+msgid ""
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
"\n"
-msgstr ""
-"Zorionak, sarearen eta Interneten konfigurazioa amaitu da.\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
"\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "Aldatu partizio-mota"
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Resolution\n"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
"\n"
-" 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 ""
-"Bereizmena\n"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
"\n"
-" Hemen zure hardwarearentzako bereizmena eta kolore sakonera "
-"eskuragarriak\n"
-"hauta ditzakezu. Aukeratu zure beharretara hobe egokitzen dena (instalazio\n"
-"ondoren aldatu ahal izango duzu). Aukeratutako konfigurazioaren adibidea\n"
-"monitorean erakusten da."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Network Options"
-msgstr "Sareko Aukerak"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable msec hourly security check"
-msgstr "Gaitu msec orduoroko segurtasun egiaztapena"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"Erakutsi gaia\n"
-"kontsolapean"
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr "(%s)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
+"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
+msgstr ""
+"Hau da erabakigunerik funtsezkoena GNU/Linux sistemaren segurtasunerako:\n"
+"\"root\"-aren pasahitza adierazi behar duzu. \"root\"\n"
+"sistema-administratzailea da eta berak bakarrik dauka sistema eguneratzeko,\n"
+"erabiltzaileak gehitzeko, konfigurazio orokorra aldatzeko eta abar egiteko\n"
+"baimena. Labur esanda, \"root\"-ak edozer egin dezake! Horregatik, asmatzen\n"
+"zaila den pasahitza aukeratu behar duzu - errazegia bada, DrakXk abisatuko\n"
+"dizu. Ikus dezakezunez, pasahitzik ez sartzea aukera dezakezu, baina\n"
+"horrelakorik ez egiteko aholkua ematen dizugu, arrazoi batengatik: ez\n"
+"pentsa GNU/Linux-ekin abiarazi duzulako zure beste sistema eragileek\n"
+"akatsik eduki ezin dutenik. \"root\"-ak muga guztiak gaindi ditzakeenez,\n"
+"eta partizioetan arduragabeki sartuz partizioetako datu guztiak nahi gabe\n"
+"ezaba ditzakeenez, garrantzitsua da \"root\" bilakatzea zaila izatea.\n"
+"\n"
+"Pasahitzak gutxienez 8 karaktere izatea komeni da, letrak eta zenbakiak\n"
+"nahasian. Ez inoiz idatzi \"root\"-aren pasahitza paperean - sistema\n"
+"errazegi konprometituko bailuke.\n"
+"\n"
+"Dena den, ez egin pasahitz luzeegia edo konplikatuegia, ahalegin handirik\n"
+"gabe gogoratzeko gai izan behar duzulako.\n"
+"\n"
+"Pasahitza ez da idatzi ahala pantailan bistaratuko. Horregatik, pasahitza\n"
+"bi aldiz idatzi beharko duzu, akats tipografikoen aukera murrizteko. Akats\n"
+"tipografiko bera bi aldiz egiten baduzu, pasahitz ``oker'' hori erabili\n"
+"beharko duzu konektatzen zaren lehen aldian.\n"
+"\n"
+"Aditu moduan, NIS edo LDAP moduko autentifikazio-zerbitzari batekin\n"
+"konektatuko zaren galdetuko zaizu.\n"
+"\n"
+"Zure sareak LDAP (edo NIS) protokoloa erabiltzen badu autentifikatzeko,\n"
+"hautatu \"LDAP\" (edo \"NIS\") autentifikazio gisa. Ez badakizu, galdetu\n"
+"sare-administratzaileari.\n"
+"\n"
+"Zure ordenagailua administratutako sare batekin konektatuta ez badago,\n"
+"beharbada \"Fitxategi lokalak\" aukeratu nahi izango dituzu\n"
+"autentifikaziorako."
-#: ../../security/level.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:678
msgid ""
-"A library which defends against buffer overflow and format string attacks."
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, 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 in doubt, DrakX will display a dialog with various options.\n"
+"\n"
+" * \"Bootloader to use\": you have three choices:\n"
+"\n"
+" * \"GRUB\": if you prefer grub (text menu);\n"
+"\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\n"
+"\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
+"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
+"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
+"\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\n"
+"\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
msgstr ""
-"Buffer-gainezkatzeen eta formatu-kateen erasoen aurka defendatzen duen "
-"liburutegi bat."
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr "batez besteko"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "New printer name"
-msgstr "Inprimagailu-izen berria"
+"LILO eta grub abioko kargatzaileak dira. Etapa hau erabat automatizatuta\n"
+"izaten da normalean. Izan ere, DrakXk diskoaren abioko sektorea aztertzen\n"
+"du eta bertan aurkitzen duenaren arabera jokatzen du:\n"
+"\n"
+" * Windows-en abioko sektore bat aurkitzen badu, grub abioko sektorearekin\n"
+"ordeztuko du. Horrela, GNU/Linux edo beste SE bat kargatu ahal izango duzu;\n"
+"\n"
+" * grub edo LILO abioko sektore bat aurkitzen badu, berri batekin ordeztuko\n"
+"du.\n"
+"\n"
+"Zalantzarik izanez gero, DrakXk hainbat aukera proposatuko ditu.\n"
+"\n"
+" * \"Erabili beharreko abioko kargatzailea\": hiru aukera dituzu:\n"
+"\n"
+" * \"GRUB\": grub nahiago baduzu (testu-menua).\n"
+"\n"
+" * \"LILO menu grafikoarekin\": LILO bere interfaze grafikoarekin\n"
+"nahiago baduzu.\n"
+"\n"
+" * \"LILO testu-menuarekin\": LILOen testu-menuaren interfazea nahiago\n"
+"baduzu.\n"
+"\n"
+" * \"Abioko gailua\": gehienetan, ez duzu disko lehenetsia (\"/dev/hda\")\n"
+"aldatuko, baina nahiago baduzu, abioko kargatzailea bigarren disko\n"
+"gogorrean (\"/dev/hdb\") edo diskete batean (\"/dev/fd0\") ere instala\n"
+"daiteke;\n"
+"\n"
+" * \"Imajina lehenetsia abiarazi arteko atzerapena\": ordenagailua\n"
+"berrabiaraztean, hau da erabiltzaileari ematen zaion denbora, abioko\n"
+"kargatzailearen menuan lehenetsia ez den abioko sarrera bat aukeratzeko.\n"
+"\n"
+"!! Kontuan izan abioko kargatzaile bat ez instalatzea aukeratzen baduzu\n"
+"(hemen \"Utzi\" hautatuz), Mandrake Linux sistema abiarazteko bideren bat\n"
+"beharko duzula! Halaber, edozein aukera aldatu aurretik, ziurtatu\n"
+"badakizula zer egiten duzun. !!\n"
+"\n"
+"Elkarrizketa-koadro honetako \"Aurreratua\" botoian klik eginda aukera\n"
+"aurreratu ugari lortuko dituzu, erabiltzaile adituentzat erreserbatuak.\n"
+"\n"
+"Abioko kargatzailearen parametro orokorrak konfiguratutakoan, abioan\n"
+"erabilgarri egongo diren aukeren zerrenda bistaratuko da.\n"
+"\n"
+"Ordenagailuan beste sistema eragile bat instalatuta baduzu, automatikoki\n"
+"gehituko zaio abioko menuari. Hemen, lehendik dauden aukerak gehiago\n"
+"zehaztea hauta dezakezu. Hautatu sarrera bat eta egin klik \"Aldatu\"n\n"
+"aldaketak egiteko edo kentzeko; \"Gehitu\"k sarrera berria sortzen du eta\n"
+"\"Eginda\" hautatuz gero instalazioaren hurrengo urratsera joaten da."
-#: ../../fs.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:718
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 )."
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"Baimendu erabiltzaile arrunt bati fitxategi sistema muntatzea.\n"
-"Erabiltzaile muntatzailearen izena mtab-era idazten da fitxategi sistema "
-"berriro\n"
-"desmuntatu ahal izan dezan. Aukera honek noexec, nosuid, eta nodev aukerak "
-"hartzen ditu (ondorengo aukerek aurkakoa adierazten ez badute, aukera\n"
-"lerroan modura user,exec,dev,suid)."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr "Ekuatore Ginea"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup System"
-msgstr "Sistemaren babeskopia "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Build Backup"
-msgstr "Egin Babeskopia"
+"LILO (LInux LOader) eta grub abioko kargatzaileak dira: GNU/Linux edo\n"
+"ordenagailuan dagoen beste edozein sistema eragile abiaraz dezakete.\n"
+"Normalean, beste sistema eragile horiek ongi detektatu eta instalatzen\n"
+"dira. Horrela ez bada, pantaila honetan sarrera bat eskuz gehi dezakezu.\n"
+"Kontuz ibili parametroak aukeratzean okerrik ez egiteko.\n"
+"\n"
+"Beharbada, ez duzu nahiko beste sistema eragile horietan inor sartzerik.\n"
+"Horrela bada, sistema eragile horien sarrerak ezaba ditzakezu. Baina gero,\n"
+"abioko disko bat beharko duzu beste sistema eragile horiek abiarazteko!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:732
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\n"
+"\n"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
msgstr ""
-"Fitxategi bat komando-lerrotik (terminal-leihoa) inprimatzeko, erabili \"%s "
-"<fitxategia>\" komandoa edo \"%s <fitxategia>\".\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Oraintxe, ez dago beste aukerarik"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwertz)"
-msgstr "Errumaniarra (qwertz)"
+"GNU/Linux-ekin abiarazteko behar den informazioa non kokatu nahi duzun\n"
+"adierazi behar duzu.\n"
+"\n"
+"Zer egiten ari zaren oso ongi ez badakizu, aukeratu \"Unitateko lehen\n"
+"sektorea (MBR)\"."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Write Config"
-msgstr "Idatzi Ezarpena"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:739
+msgid ""
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
+"\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
+"\n"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
+msgstr ""
+"Hemen zure ordenagailuaren inprimatzeko sistema hautatuko dugu. Beste SE\n"
+"batzuek bakarra eskainiko dute beharbada, baina Mandrake Linux-ek hiru\n"
+"eskaintzen ditu.\n"
+"\n"
+" * \"pdq\" - ``print, don't queue'' esan nahi du, hau da, ``inprimatu, ez\n"
+"egon ilaran''. Aukera egokia da inprimagailua zuzenean konektatuta baduzu,\n"
+"papera trabatzen denean ohartu nahi baduzu eta sareko inprimagailurik ez\n"
+"baduzu. Sareko oso kasu sinpleak maneiatuko ditu eta mantso samarra da\n"
+"sarerako. Aukeratu \"pdq\" GNU/Linux-eko zure lehen bidaia bada.\n"
+"Instalazioa egin ondoren aukerak aldatu nahi badituzu, exekutatu\n"
+"Mandrake-ren kontrol-zentroko PrinterDrake eta egin klik adituaren botoian.\n"
+"\n"
+" * \"CUPS\" - ``Common Unix Printing System'' oso ona da zure inprimagailu\n"
+"lokalean inprimatzeko eta baita munduaren beste aldean ere. Sinplea da eta\n"
+"\"lpd\" inprimatze-sistema zaharretako bezero nahiz zerbitzari gisa jardun\n"
+"dezake. Lehengo sistemekin bateragarria da, beraz. Gauza asko egin ditzake,\n"
+"baina oinarrizko konfigurazioa \"pdq\" bezain erraza da. \"lpd\" zerbitzari\n"
+"bat emulatzeko behar baduzu, \"cups-lpd\" daemon-a aktibatu behar duzu.\n"
+"Inprimagailuaren aukerak hautatzeko edo inprimatzeko interfaze grafikoak\n"
+"ditu.\n"
+"\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. Sistema honek\n"
+"besteek egin ditzaketen gauza bertsuak egin ditzake, baina Novell sarean\n"
+"muntatutako inprimagailuetan inprimatuko du, IPX protokoloa onartzen\n"
+"duelako, eta shell komandoetan zuzenean inprima dezakeelako. Novell behar\n"
+"baduzu edo kanalizaziorik erabili gabe komandoetan inprimatu behar baduzu,\n"
+"erabili lprNG. Bestela, hobe da CUPS, sareetan lan egiteko sinpleagoa eta\n"
+"hobea delako."
-#: ../../services.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:759
msgid ""
-"The routed daemon allows for automatic IP router table updated via\n"
-"the RIP protocol. While RIP is widely used on small networks, more complex\n"
-"routing protocols are needed for complex networks."
-msgstr ""
-"Routed daemon-arekin IP bidatze-taula automatikoki egunera daiteke,\n"
-"RIP protokoloaren bidez. RIP asko erabiltzen da sare txikietan, baina\n"
-"banabide-protokolo konplexuagoak behar dira sare konplexuetan."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr "Kiribati"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech sagua (seriekoa, C7 mota zaharrekoa) gurpil emulazioarekin"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Beste gako batzuk (drakbackup ez) dagoeneko bere lekuan daude"
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"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 does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
+"\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
+msgstr ""
+"DrakXk zure ordenagailuan dagoen edozein IDE gailu detektatzen du orain.\n"
+"Zure sisteman PCI SCSI txartel bat edo gehiago dagoen ikusteko ere\n"
+"eskaneatuko du. SCSI txartel bat aurkitzen badu, DrakXk automatikoki\n"
+"instalatuko du kontrolatzaile egokia.\n"
+"\n"
+"Hardwarearen detekzioak batzuetan hardwareren bat ezingo duenez detektatu,\n"
+"DrakXk PCI SCSI txartelik ote dagoen berresteko eskatuko dizu. Sakatu\n"
+"\"Bai\" zure makinan SCSI txartel bat instalatuta dagoela badakizu. SCSI\n"
+"txartelen zerrenda bat aurkeztuko zaizu, bertan aukeratzeko. Sakatu \"Ez\"\n"
+"SCSI hardwarerik ez baduzu. Ziur ez bazaude, zure ordenagailuan\n"
+"detektatutako hardware-zerrenda ikus dezakezu \"Ikus hardwareari buruzko\n"
+"informazioa\" hautatuz eta \"Ados\" sakatuz. Aztertu hardware-zerrenda eta\n"
+"egin klik \"Ados\" botoian SCSI interfazearen galderara itzultzeko.\n"
+"\n"
+"Moldagailua eskuz zehaztu behar baduzu, DrakXk haren aukerak zehaztu nahi\n"
+"dituzun galdetuko dizu. Hardwareak hasieratzeko behar dituen aukera\n"
+"zehatzak bila ditzan, hardwarea aztertzen utzi beharko zenioke DrakXri.\n"
+"Horrek ondo funtzionatu ohi du.\n"
+"\n"
+"DrakXk pasatu behar diren aukerak egiaztatu ezin baditu, aukerak eskuz eman\n"
+"beharko dizkiozu kontrolatzaileari. Eskatutako parametroak\n"
+"fabrikatzailearen web orritik (Interneteko sarbidea baduzu) edo Microsoft\n"
+"Windows-etik (hardware hau zure sisteman Windows-ekin erabili baduzu)\n"
+"eskuratzeko aholkuak lortzeko, ikus ``Erabiltzailearen gida'' (3.\n"
+"kapituluan, ``Zure hardwareari buruzko informazioa bildu'' atalean)."
-#: ../../help.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:781
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"
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
"\n"
-"You will be presented with a list of different parameters to change to get\n"
-"an optimal graphical display: Graphic Card\n"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\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"
+"For Linux, there are a few possible options:\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"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
"\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
"\n"
-"Monitor\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
"\n"
-" 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"
+" 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"
-"Resolution\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
"\n"
-" 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"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
"\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support;\n"
"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
+msgstr ""
+"Sarrera gehiago erants ditzakezu yaboot-entzat, beste sistema eragile\n"
+"batzuk, nukleo alternatiboak edo emergentziazko abioko imajina gehitzeko.\n"
"\n"
-"Test\n"
+"Beste SEentzat, etiketa eta \"erroko\" partizioa soilik da sarrera.\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"
+"Linux-entzat, hainbat aukera daude:\n"
"\n"
+" * Etiketa: yaboot-en gonbitean idatzi beharko duzun izena da, abioko\n"
+"aukera hau hautatzeko;\n"
"\n"
+" * Imajina: abiarazi beharreko nukleoaren izena izango da. Normalean,\n"
+"vmlinux edo vmlinux-en aldaera bat, luzapen batekin;\n"
"\n"
-"Options\n"
+" * Errokoa: Linux instalazioaren \"erroko\" gailua edo ``/'';\n"
"\n"
-" Here you can choose whether you want to have your machine automatically\n"
-"switch to a graphical interface at boot. Obviously, you want to check\n"
-"\"%s\" if your machine is to act as a server, or if you were not successful\n"
-"in getting the display configured."
-msgstr ""
-"X (X Window Sistema), Mandrake Linux-ekin bilduta datozen ingurune grafiko\n"
-"guztiei (KDE, GNOME, AfterStep, WindowMaker, etab) sostengu ematen dien\n"
-"GNU/Linux-en interfaze grafikoaren bihotza da.\n"
+" * Erantsi: Apple hardwarean, nukleoa eransteko aukera bideo-hardwarea\n"
+"hasieratzen laguntzeko erabiltzen da askotan, edo ohiko Apple saguetan\n"
+"gehienetan falta izaten diren 2. eta 3. botoien emulazioa gaitzeko\n"
+"teklatuan. Hona hemen adibide batzuk:\n"
"\n"
-"Itxura grafiko hobezina lortzeko aldatu daitezkeen parametro desberdinen\n"
-"zerrenda bat aurkeztuko zaizu: Txartela Grafikoa\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"hda=autotune\n"
"\n"
-" Instalatzaileak normalean automatikoki detektatu eta konfiguratuko du "
-"zure\n"
-"makinan instalatutako txartela grafikoa. Horrela ez bada, zerrenda "
-"honetatik\n"
-"hautatu dezakezu zuk instalatuta daukazun txartela grafikoa.\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
-" Zure txartelarentzako zerbitzari desberdinak dauden kasuan, 3D "
-"azelerazioarekin\n"
-"edo gabe, zure beharrak hobe asetzen dituen zerbitzaria hautatu dezazun "
-"eskatuko\n"
-"zaizu.\n"
+" * Initrd: aukera hau hasierako moduluak kargatzeko erabil daiteke, abioko\n"
+"gailua erabilgarri egon aurretik, edo ramdisk imajina bat kargatzeko\n"
+"emergentziazko abioa egin behar denean;\n"
"\n"
+" * Initrd-tamaina: ramdisk-tamaina lehenetsia 4.096 bytekoa izan ohi da.\n"
+"Ramdisk handi bat esleitu behar baduzu, aukera hau erabil dezakezu;\n"
"\n"
+" * Irakurri/idatzi: normalean \"erroko\" partizioa irakurtzeko soilik\n"
+"agertzen da hasieran, fitxategi-sistemak egiaztatu ahal izateko, sistema\n"
+"``aktibo'' egin aurretik. Hemen, aukera hori gaindidatz dezakezu;\n"
"\n"
-"Monitorea\n"
+" * BideorikEz: Apple bideoaren hardwarea bereziki problematikoa bada,\n"
+"aukera hau hauta dezakezu ``bideorikez'' moduan abiarazteko, jatorrizko\n"
+"frame buffer euskarriarekin;\n"
"\n"
-" Instalatzaileak normalean automatikoki detektatu eta konfiguratuko du\n"
-"zure makinara lotutako monitorea. Okerra bada, zerrenda honetatik hautatu\n"
-"dezakezu zure konputagailura lotuta daukazun monitorea.\n"
+" * Lehenetsia: sarrera hau hautatzen du Linux-en hautapen lehenetsi gisa,\n"
+"eta yaboot-en gonbitean SARTU sakatuz hauta daiteke. Sarrera hau ``*''\n"
+"batez nabarmenduko da, [Tab] sakatzen baduzu abioko hautapenak ikusteko."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:828
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
"\n"
+"Yaboot's main options are:\n"
"\n"
+" * Init Message: a simple text message displayed before the boot prompt;\n"
"\n"
-"Bereizmena\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"
-" Hemen zure hardwarearentzako erabilgarri dauden bereizmenak eta kolore\n"
-"sakonerak hautatu ditzakezu. Hautatu zure beharretara hobe egokitzen dena\n"
-"(kontutan izan ezazu instalazio ondoren ere aldatu daitekeela). Hautatutako\n"
-"konfigurazioaren adibide erakusgarria bistaratzen da zure monitorean.\n"
+" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+"yaboot. The first delay is measured in seconds and at this point, you can\n"
+"choose between CD, OF boot, MacOS or Linux;\n"
"\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\n"
"\n"
-"Froga\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
-" Sistema, nahi den bereizmenarekin pantaila grafiko bat irekitzen saiatuko "
-"da.\n"
-"Froga egin bitartean mezua ikus badezakezu eta \"%s\" erantzuten baduzu,\n"
-"DrakX-ek hurrengo urratsera joango da. Ezin baduzu mezua ikusi, horrek esan\n"
-"nahi du autodetektatutako konfigurazioaren zati bat okerra dela eta froga\n"
-"automatikoki amaituko da 12 segundu ondoren, menura itzuliko delarik.\n"
-"Aldatu ezarpenak erakusle grafiko egokia lortzen duzun arte.\n"
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
+msgstr ""
+"Yaboot NewWorld MacIntosh hardwarerako abioko kargatzaile bat da.\n"
+"GNU/Linux, MacOS, edo MacOSX abiaraz dezake, ordenagailuan egonez gero.\n"
+"Normalean, beste sistema eragile horiek ongi detektatzen eta instalatzen\n"
+"dira. Horrela ez bada, pantaila honetan sarrera bat eskuz gehi dezakezu.\n"
+"Kontuz ibili parametroak aukeratzean okerrik ez egiteko.\n"
"\n"
+"Yaboot-en aukera nagusiak hauek dira:\n"
"\n"
+" * Hasierako mezua: abioko gonbitaren aurretik agertzen den testu-mezu soil\n"
+"bat;\n"
"\n"
-"Aukerak\n"
-" Hemen hautatu dezakezu abiapenean zure makina automatikoki interfaze\n"
-"grafikora aldatu nahi duzun. Argi dago, \"%s\" markatu nahi duzu zure "
-"makinak\n"
-"zerbitzari bezala lanegingo badu, edo ez baduzu erakusle grafikoa "
-"konfiguratzea\n"
-"lortu."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr "Arakatu"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr "CDROMa"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Internetera orain konektatu nahi duzu?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "belgikarra"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "ISA soinu-txartela duzu?"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Zure sisteman ez da ethernet sare-moldagailurik detektatu.\n"
-"Ezin dut konexio-mota hau konfiguratu."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Windows"
-msgstr "Leihoak"
-
-#: ../../common.pm:1
-#, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "Ezin da pantaila-argazkirik egin partizioak egin aurretik"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Name"
-msgstr "Ostalari Izena"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Fitxategia/Gorde _honela"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"Zure bertako sareko urruneko CUPS zerbitzarietako inprimagailuetara sarrera "
-"izateko \"Automatikoki aurkitu urruneko makinetako inprimagailu eskuragarriak"
-"\" aukera piztu behar duzu soilik; CUPS zerbitzariek zure makina "
-"automatikoki informatzen dute beraien inprimagailuei buruz. Zure "
-"makinarentzako dagoeneko ezagunak diren inprimagailuak \"Urruneko "
-"inprimagailuak\" atalean zerrendatzen dira Printerdrake-ren leiho nagusian. "
-"Zure CUPS zerbitzaria(k) ez badago/badaude zure bertako sarean, IP helbidea"
-"(k) eta portu zenbakia(k) sartu behar d(it)uzu hemen zerbitzari(eta)tik "
-"inprimagailu informazioa jasotzeko."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr "%s ez dago eskaner datubasean, eskuz konfiguratu?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "Imajina lehenetsia abiarazi arteko atzerapena"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Restrict command line options"
-msgstr "Murriztu komando-lerroko aukerak"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "East Europe"
-msgstr "Europa Ekialdea"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "Erabili leku librea"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "erabili dhcp"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr "Posta alerta"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Internet configuration"
-msgstr "Interneteko konfigurazioa"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected %s"
-msgstr "%s detektatua"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "Autodetektatu _inprimagailuak"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "Amaitu"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Erakutsi automatikoki hautatutako paketeak"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr "Togo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "CPUak informatzeko dituen banderak"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Zerbaitek hutsegin du! - mkisofs instalatuta dago?"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "Saiatu berriro"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The model is correct"
-msgstr "Modeloa zuzena da"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT tamaina-aldaketak huts egin du: %s"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr "Pakete indibidualen hautapena"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr "Partizio honi ezin zaio tamaina aldatu"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr "Kokalekua"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "AEB (kablea-hrc)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr "Journalised FS"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr "Ethernet txartelen promiskuotasun egiaztapena"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
-msgstr "Makina hau"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS unitate-letra: %s (uste hutsa)\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr "Bahrain"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Hautatu fitxategiak edo direktorioak eta klikatu 'Ados'"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit scsi modules"
-msgstr "jaramonik ez scsi moduluei"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "cpu familia (adib: 6 i686 klasearentzat)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Sare-instalazioa egiten ari zarenez, zure sarea konfiguratuta dago jadanik.\n"
-"Hautatu \"Ados\" zure konfigurazioa mantentzeko, edo \"Utzi\" Internet eta "
-"Sare-konexioa birkonfiguratzeko.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
-msgstr "Egikaritu eguneroko segurtasun egiaztapenak"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Teklatu-diseinua: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"Hemen aukeratu dezakezu makina honetara konektatutako inprimagailuak "
-"urruneko makinek atzituak izan behar luketen eta zein makinengatik."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr "Maltatarra (AEB)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "Abiapen disketearen sorrera arrakastatsua izan da\n"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"Network File System (NFS), SMB (Lan Manager/Windows), eta NCP \n"
-"(NetWare) muntaia-puntu guztiak muntatu eta desmuntatzen ditu."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Launch the wizard"
-msgstr "Morroia jaurti"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Tvcard"
-msgstr "TB-txartela"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Aldatu modu arrunta/aditu artean"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr "Tamaina"
-
-#: ../../help.pm:1
-#, c-format
-msgid "GRUB"
-msgstr "GRUB"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr "Groenlandia"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "Osteguna"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Ez da zinta etiketa zuzena. Zinta %s etiketa dauka."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
+" * Abioko gailua: GNU/Linux-ekin abiarazteko behar den informazioa non\n"
+"kokatu nahi duzun adierazten du. Normalean, lehenago bootstrap partizio bat\n"
+"konfiguratuko duzu informazio hori edukitzeko.\n"
"\n"
-"What would you like to do?"
-msgstr ""
-"Interneteko konexioa konpartitzeko konfigurazioa eginda dago.\n"
-"Gaituta dago orain.\n"
+" * Open Firmware-ren atzerapena: LILOrekin ez bezala, bi atzerapen daude\n"
+"erabilgarri yaboot-ekin. Lehen atzerapena segundotan neurtzen da, eta hemen\n"
+"CD, OF abioa MacOS edo Linux aukera dezakezu;\n"
"\n"
-"Zer egin nahi duzu?"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete All NBIs"
-msgstr "NBI Guztiak Ezabatu"
+" * Nukleoaren abioaren denbora-muga: denbora-muga hau LILOren abioko\n"
+"atzerapenaren antzekoa da. Linux hautatu ondoren, 0,1 segundoko atzerapena\n"
+"izango duzu lehenetsitako nukleo-deskribapena hautatu aurretik;\n"
+"\n"
+" * Gaitu CDtik abiaraztea?: aukera hau hautatzen baduzu, ``C'' aukeratu\n"
+"ahal izango duzu CDarentzat abioko lehen gonbitean;\n"
+"\n"
+" * Gaitu OF abiaraztea?: aukera hau hautatzen baduzu, ``N'' aukeratu ahal\n"
+"izango duzu Open Firmware-rentzat abioko lehen gonbitean;\n"
+"\n"
+" * SE lehenetsia: lehenespenez zein SE abiaraziko den hauta dezakezu Open\n"
+"Firmware Atzerapena igarotzen denean."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:860
+#, fuzzy
msgid ""
-"This dialog allows you to fine tune your bootloader:\n"
-"\n"
-" * \"%s\": there are three choices for your bootloader:\n"
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
"\n"
-" * \"%s\": if you prefer grub (text menu).\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
"\n"
-" * \"%s\": if you prefer LILO with its text menu interface.\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
"\n"
-" * \"%s\": if you prefer LILO with its graphical interface.\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
-" * \"%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"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\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"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\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"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\n"
"\n"
-"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
-"are normally reserved for the expert user."
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
msgstr ""
-"Elkarrizketa honekin zure abiapen-zamatzailea doitu dezakezu:\n"
-"\n"
-" * \"%s\": zure abiapen-zamatzailearentzako hiru aukera daude:\n"
+"Hemen zure ordenagailuari dagozkion parametroak aurkezten dira.\n"
+"Instalatutako hardwarearen arabera, ondoko sarrerak ikusiko dituzu - edo\n"
+"ez:\n"
"\n"
-" * \"%s\": grub nahiago baduzu (testu menua).\n"
+" * \"Sagua\": egiaztatu uneko sagu-konfigurazioa eta, behar izanez gero,\n"
+"egin klik botoian, aldatzeko;\n"
"\n"
-" * \"%s\": LILO bere testu menu interfazearekin nahiago baduzu.\n"
+" * \"Teklatua\": egiaztatu uneko teklatuaren konfigurazioa eta, behar\n"
+"izanez gero, egin klik botoian aldatzeko;\n"
"\n"
-" * \"%s\": LILO bere interfaze grafikoarekin nahiago baduzu.\n"
+" * \"Ordu-zona\": DrakXk, lehenespenez, aukeratutako hizkuntzatik asmatzen\n"
+"du zure ordu-zona. Baina hemen ere, teklatua aukeratzean bezala, baliteke\n"
+"aukeratutako hizkuntzari dagokion herrialdean ez egotea zu. Horregatik,\n"
+"\"Ordu-zona\" botoian klik egin beharko duzu erlojua zu zauden ordu-zonaren\n"
+"arabera konfiguratzeko;\n"
"\n"
-" * \"%s\": kasu gehienetan ez duzu berezkoa aldatuko (\"%s\"), baino\n"
-"nahiago baduzu, abiapen-zamatzailea bigarren disko unitatean\n"
-"instalatu daiteke (\"%s\"), edo baita diskete batean ere (\"%s\");\n"
+" * \"Inprimagailua\": \"Inprimagailurik ez\" botoian klik eginez,\n"
+"inprimagailuaren konfigurazio-morroia irekiko da;\n"
"\n"
-" * \"%s\": abiapen edo berrabiapen baten ondoren, hau da\n"
-"erabiltzaileari berezkoa ez beste abiapen sarrera bat aukeratzeko\n"
-"eskaintzen zaion itxaronaldia.\n"
+" * \"Soinu-txartela\": zure sisteman soinu-txartel bat detektatzen bada,\n"
+"hemen bistaratuko da. Instalazio-garaian ezin da aldaketarik egin;\n"
"\n"
-"!! Jakin ezazu abiapen-zamatzaile bat ez instalatzea aukeratzen\n"
-"baduzu (\"%s\" aukeratuz), zure Mandrake Linux sistema abiatzeko\n"
-"modurik duzula ziurtatu behar duzula! Ziurtatu zer egiten ari zaren\n"
-"aukeratako edozein aldatu aurretik. !!\n"
+" * \"Telebista-txartela\": zure sisteman telebista-txartel bat detektatzen\n"
+"bada, hemen bistaratuko da. Instalazio-garaian ezin da aldaketarik egin;\n"
"\n"
-"Elkarrizketa honetan \"%s\" botoia sakatzeak erabiltzaile adituentzako\n"
-"aukera aurreratuak eskainiko ditu."
+" * \"ISDN txartela\": zure sisteman ISDN txartel bat detektatzen bada,\n"
+"hemen bistaratuko da. Egin klik botoian txartelaren parametroak aldatzeko."
-#: ../../security/help.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:891
msgid ""
-"if set, send the mail report to this email address else send it to root."
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
-"ezarrita badago, bidali posta txostena postaE helbide honetara, bestela "
-"bidali root-i."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "XFree-ren zein konfigurazio izan nahi duzu?"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "More"
-msgstr "Gehiago"
+"Aukeratu Mandrake Linux-en partizio berria instalatzeko ezabatu nahi duzun\n"
+"disko gogorra. Kontuz ibili, bertako datu guztiak galduko dira eta ezin\n"
+"izango dira berreskuratu!"
-#: ../../standalone/drakbackup:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#: ../../help.pm_.c:896
msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"Honek komando lerroko 'cdrecord' programaren sintaksi bera erabiltzen du. "
-"'cdrecord -scanbus' komandoak gailu izena ere erakutsiko dizu."
+"Egin klik \"Ados\" botoian disko gogor honetako datu eta partizio guztiak\n"
+"ezabatu nahi badituzu. Kontuz ibili, \"Ados\" sakatu ondoren, ezin izango\n"
+"duzu disko gogor honetako daturik eta partiziorik berreskuratu, Windows-eko\n"
+"datuak barne.\n"
+"\n"
+"Egin klik \"Utzi\" botoian disko gogor honetako daturik eta partiziorik\n"
+"galdu gabe eragiketa hau bertan behera uzteko."
-#: ../../security/level.pm:1
+#: ../../install2.pm_.c:111
#, 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."
+"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 ""
-"Segurtasun-maila honekin, sistema hau erabil liteke zerbitzari gisa.\n"
-"Segurtasun hau nahikoa da sistema bezero askoren konexioak onartzen dituen \n"
-"zerbitzari gisa erabili ahal izateko. Oharra: zure makina Interneteko bezero "
-"soila bada, hobe duzu maila apalagoa."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Server Name"
-msgstr "Zerbitzari Izena"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Password"
-msgstr "Kontuaren pasahitza"
+"Ezin dira zure kernelari dagozkion kernel moduluak atzitu (%s fitxategia "
+"falta da), honek orokorrean esan nahi du zure abiapen disketea ez dagoela "
+"instalazio euskarriarekin sinkronizatuta (mesedez sortu abiapen diskete "
+"berria)"
-#: ../../standalone/drakhelp:1
+#: ../../install2.pm_.c:167
#, c-format
-msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
-msgstr ""
-"%s ezin da erakutsi.\n"
-"Ez dago mota honetako laguntza sarrera\n"
+msgid "You must also format %s"
+msgstr "%s ere formateatu behar duzu"
-#: ../../any.pm:1
+#: ../../install_any.pm_.c:423
#, 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"
+"You have selected the following server(s): %s\n"
"\n"
-"On which drive are you booting?"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
msgstr ""
-"Partizio batean abioko kargatzailea instalatzea erabaki duzu.\n"
-"Horrek esan nahi du baduzula abioko kargatzaile bat abioko unitatean (adib.: "
-"System Commander).\n"
+"Zerbitzari hau(ek) hautatu d(it)uzu: %s\n"
"\n"
-"Zein da zure abioko unitatea?"
+"\n"
+"Zerbitzari horiek lehenespenez aktibatzen dira. Ez dute segurtasun-arazo "
+"ezagunik,\n"
+"baina berriren bat ager liteke. Kasu horretan, ziurtatu ahal bezain laster\n"
+"eguneratzen duzula.\n"
+"\n"
+"\n"
+"Zerbitzari horiek benetan instalatu nahi dituzu?\n"
-#: ../../install_interactive.pm:1
+#: ../../install_any.pm_.c:441
#, c-format
msgid ""
-"WARNING!\n"
+"The following packages will be removed to allow upgrading your system: %s\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."
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-"KONTUZ!\n"
+"Ondorengo paketeak zure sistema eguneratu ahal izateko ezabatuko dira: %s\n"
"\n"
-"DrakX Windows partizioari tamaina aldatzera doa. Kontuz ibili:\n"
-"eragiketa hau arriskutsua da. Inoiz horrelakorik egin ez baduzu,\n"
-"aurrena instalaziotik irten behar duzu, \"chkdsk c:\" exekutatu\n"
-"Windows komando lerrotik (kontuz, \"scandisk\" programa grafikoa\n"
-"ibiltzea ez da nahikoa, erabili ezazu \"chkdsk\" komando lerroan!),\n"
-"nahi izanez gero erabili defrag, gero hasi berriro instalazioarekin.\n"
-"Zure datuak babestu behar zenituzke.\n"
-"Ziur zaudenean, sakatu Ados."
+"\n"
+"Pakete hauek ezabatu nahi dituzu?\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tajik keyboard"
-msgstr "Tajikistango teklatua"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
+msgstr "Ezin da difusioa erabili NIS domeinurik gabe"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:879
#, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Sartu FAT formatuko diskete bat %s unitatean"
+
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
+msgstr "Diskete honek ez du FAT formaturik"
+
+#: ../../install_any.pm_.c:895
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"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-"%s spooler-erako egin duzun inprimagailu-konfigurazioa %s spooler-era (uneko "
-"spooler-era) kopia dezakezu. Konfigurazio-datu guztiak (inprimagailuaren "
-"izena, azalpena, kokalekua, \n"
-"konexio-mota eta aukera-ezarpenak lehenetsiak) hartuko ditu, baina lanak ez "
-"dira transferituko.\n"
-"Ilara guztiak ezin dira transferitu, ondorengo arrazoiak direla eta:\n"
+"Gordetako pakete-hautapen hau erabiltzeko, abiarazi instalazioa ``linux "
+"defcfg=floppy''rekin"
-#: ../../standalone/drakfont:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, c-format
-msgid "Font List"
-msgstr "Letra-tipoen zerrenda"
+msgid "Error reading file %s"
+msgstr "Errorea %s fitxategia irakurtzean"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_any.pm_.c:1040
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."
+"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 ""
-"Baliteke Open Firmware abioko gailua aldatu behar izatea\n"
-" abioko kargatzailea gaitzeko. Berrabiaraztean abioko kargatzailearen "
-"gonbita ez\n"
-" baduzu ikusten, eduki sakatuta Command-Option-O-F abiaraztean eta sartu:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Gero, idatzi: shut-down\n"
-"Hurrengo abiaraztean abioko kargatzailearen gonbita ikusi behar duzu."
+"Errorea gertatu da - ez da fitxategi-sistema berriak sortzeko gailu "
+"baliozkorik aurkitu. Aztertu zure hardwarea arazo honen arrazoia bilatzeko"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_interactive.pm_.c:21
#, 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"
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"Badirudi makina zaharra edo ezezaguna daukauzula,\n"
-"yaboot abioko kargatzaileak ez dizu funtzionatuko.\n"
-"Instalazioak jarraituko du, baina\n"
-"BootX edo besteren bat erabili beharko duzu makina abiarazteko"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Select file"
-msgstr "Hautatu fitxategia"
+"Zure ordenagailuko hardware batzuek kontrolatzaile ``jabea'' behar dute.\n"
+"Horiei buruzko informazioa hemen aurki dezakezu: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:56
msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
+"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 ""
-"Aukeratu bertako inprimagailuak eskuragarri jarri beharko lirateken sare edo "
-"ostalaria:"
+"Erroko partizioa eduki behar duzu.\n"
+"Horretarako, sortu partizio bat (edo egin klik lehendik dagoen batean).\n"
+"Gero aukeratu ``Muntatze-puntua'' ekintza eta ezarri `/'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
+msgstr "Swap partizio bat eduki behar duzu"
+
+#: ../../install_interactive.pm_.c:62
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"
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"Komando horiek aplikazio askotako inprimatze-elkarrizketetako \"Inprimatzeko "
-"komandoa\" eremuan erabil ditzakezu ere, baina hor ez eman fitxategi-izena, "
-"inprimatu behar den fitxategia aplikazioak ematen baitu.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "Japonia"
+"Ez duzu swap partiziorik\n"
+"\n"
+"Jarraitu hala ere?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print option list"
-msgstr "Inprimatzeko aukeren zerrenda"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "FAT partizio bat eduki behar duzu /boot/efi-n muntatuta"
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "Aldaketa egin da, baina, eragina izan dezan, saioa amaitu behar duzu"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
+msgstr "Erabili leku librea"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
-msgstr "Estatua"
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
+msgstr "Ez dago partizio berriak esleitzeko adina leku"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search servers"
-msgstr "Bilatu zerbitzarietan"
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
+msgstr "Lehendik dagoen partizioa erabili"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "NCP ilara-izena falta da!"
+#: ../../install_interactive.pm_.c:102
+msgid "There is no existing partition to use"
+msgstr "Ez dago erabiltzeko moduko partiziorik"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Kontuz, beste Internet konexio bat detektatu da, agian zure sarea erabiltzen"
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
+msgstr "Erabili Windows partizioa atzera-begiztarako"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "\"%s\" etiketadun CDROMa"
+#: ../../install_interactive.pm_.c:112
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Zein partizio erabili nahi duzu Linux4Win-erako?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr "CDRW euskarria"
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
+msgstr "Aukeratu tamainak"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Sistemaren entropia gorde eta leheneratzen du ausazko zenbakiak\n"
-"hobeto sortzeko."
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
+msgstr "Erroko partizioaren tamaina MBtan: "
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr "Bihurtu zure makina zerbitzari fidagarria"
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr "Swap partizioaren tamaina MBtan: "
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr "Egiaztatu pasahitz hutsa /etc/shadow fitxategian"
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
+msgstr "Erabili Windows-en partizioko leku librea"
-#: ../../network/network.pm:1
-#, c-format
-msgid " (driver %s)"
-msgstr " (%s kontrolatzailea)"
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
+msgstr "Zein partiziori aldatu nahi diozu tamaina?"
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
-msgstr "Hasi hala eskatzen denean"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "Windows fitxategi-sistemaren mugak kalkulatzen"
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
-"Loopback file(s):\n"
-" %s\n"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-"Atzera-begiztako fitxategia(k):\n"
-" %s\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr "Ez dakit"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", \"%s\" TCP/IP ostalaria, %s ataka"
+"FAT tamaina-aldatzaileak ezin du zure partizioa maneiatu, \n"
+"errore hau gertatu da: %s"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../install_interactive.pm_.c:137
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?"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-"Auto-instalazioko diskete bat konfiguratzera zoaz. Eginbide hau arriskutsu "
-"samarra da eta kontuz ibili behar da.\n"
-"\n"
-"Eginbide honekin, ordenagailu honetan egin duzun instalazioa errepikatu ahal "
-"izango duzu, eta urrats batzuetan datuak eskatuko zaizkizu interaktiboki, "
-"balioak aldatu ahal izateko.\n"
-"\n"
-"Ahalik eta segurtasun handiena izateko, partizioa egitea eta formateatzea ez "
-"dira inoiz automatikoki egingo, berdin dio zer aukeratu duzun ordenagailu "
-"hau instalatu duzunean.\n"
-"\n"
-"Jarraitu nahi duzu ?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Telugu"
-msgstr "Telugu"
+"Zure Windows partizioa fragmentatuegia dago, exekutatu ``defrag'' lehendabizi"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:138
msgid ""
+"WARNING!\n"
"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
+"KONTUZ!\n"
"\n"
-"\n"
-"Zure txartelak orain %s\"%s\" gidaria erabitzen du (zure txartelarentzako "
-"gidari lehenetsia \"%s\" da)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Uninstall"
-msgstr "Posta-desinstalazioa"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Internetera konektatzen"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
-msgstr " ("
+"DrakX Windows partizioari tamaina aldatzera doa. Kontuz ibili:\n"
+"eragiketa hau arriskutsua da. Inoiz ez baduzu horrelakorik egin, \n"
+"hobe izango duzu instalaziotik irten eta scandisk exekutatzea \n"
+"Windows-en (eta nahi izanez gero defrag); gero, hasi berriro \n"
+"instalazioarekin. Datuen babeskopia egitea ere komeni da.\n"
+"Ziur zaudenean, sakatu Ados."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid level"
-msgstr "Cpuid maila"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Zein tamaina utzi nahi duzu Windows-entzat"
-#: ../../printer/main.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "\"%s\" Novell zerbitzaria, \"%s\" inprimagailua"
+msgid "partition %s"
+msgstr "%s partizioan"
-#: ../../keyboard.pm:1
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "Mongoliarra (zirilikoa)"
+msgid "FAT resizing failed: %s"
+msgstr "FAT tamaina-aldaketak huts egin du: %s"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Add a module"
-msgstr "Gehitu modulua"
+#: ../../install_interactive.pm_.c:171
+msgid ""
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Ez dago FAT partiziorik tamainaz aldatzeko edo atzera-begizta gisa "
+"erabiltzeko (edo ez dago nahikoa leku)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr "Ezabatu beharreko profila:"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr "Ezabatu disko osoa"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Local measure"
-msgstr "Bertako neurketa"
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr "Kendu Windows(TM)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
-msgstr "Oharra: Orokorrean %s IP helbidea erreserbatu egiten da!"
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Disko gogor bat baino gehiago duzu, zeinetan instalatuko duzu linux?"
-#: ../../mouse.pm:1
+#: ../../install_interactive.pm_.c:183
#, c-format
-msgid "busmouse"
-msgstr "bus-sagua"
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "%s unitatean dauden partizio eta datu GUZTIAK galdu egingo dira"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Sortu Etherboot gaituta duten abiapen irudiak:\n"
-" \tKernet bat etherboot bitartez abiatzeko, kernel/initrd irudi "
-"berezi bat sortu behar da.\n"
-" \t\"mkinitrd-net\"-ek lan honen zati handia egiten du eta "
-"drakTermServ irudi \n"
-" \thauek kudeatu/pertsonalizatzeko interfaze grafiko bat besterik ez "
-"da.\n"
-" \tdhcpd.conf barruan sartzen den /etc/dhcpd.conf.etherboot-pcimap."
-"include\n"
-" \tfitxategia sortzeko gutxienez kernel oso batentzako etherboot "
-"irudiak sortu behar zenituzke."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Kontuaren identifikatzailea (erabiltzaile-izena)"
+#: ../../install_interactive.pm_.c:191
+msgid "Custom disk partitioning"
+msgstr "Disko-partizio pertsonalizatua"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
-msgstr "Fdiv akatsa"
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr "Erabili fdisk"
-#: ../../network/drakfirewall.pm:1
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-"drakfirewall konfiguratzailea\n"
-"\n"
-"Zure Sare/Internet sarbidea drakconnect erabiliz konfiguratu duzula\n"
-"ziurtatu aurrera egin aurretik."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr "Onartu zabaldutako icmp oihartzuna"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr "Uruguai"
+"Orain egin dezakezu %s partizioa.\n"
+"Egin ondoren, ez ahaztu `w' erabiliz gordetzea"
-#: ../../lang.pm:1
-#, c-format
-msgid "Benin"
-msgstr "Benin"
+#: ../../install_interactive.pm_.c:227
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Ez duzu behar adina leku libre Windows partizioan"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "\"%s\" SMB/Windows zerbitzaria, elkarbanatu \"%s\""
+#: ../../install_interactive.pm_.c:243
+msgid "I can't find any room for installing"
+msgstr "Ezin dut instalatzeko lekurik aurkitu"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path selection"
-msgstr "Bide hautaketa"
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "DrakX Partizio-morroiak irtenbide hauek aurkitu ditu:"
-#: ../../standalone/scannerdrake:1
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid "Name/IP address of host:"
-msgstr "Izena/IP helbidea edo ostalaria:"
+msgid "Partitioning failed: %s"
+msgstr "Partizioak huts egin du: %s"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitorea: %s\n"
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr "Sarea irekitzen"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom & system settings"
-msgstr "Pertsonalizazio eta sistema ezarpenak"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr "Sarea ixten"
-#: ../../partition_table/raw.pm:1
-#, c-format
+#: ../../install_steps.pm_.c:76
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."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"Okerren bat gertatzen ari da zure unitatean. \n"
-"Datuen osotasuna egiaztatzeko probak huts egin du. \n"
-"Horrek esan nahi du, diskoan idazten den edozein gauza ausaz, datu "
-"hondatubihurtuko dela."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Inprimagailuaren ostalari izena falta da edo IP falta da!"
+"Errore bat gertatu da, baina ez dakit behar bezala maneiatzen.\n"
+"Jarraitu zure ardurapean."
-#: ../../standalone/drakbackup:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Hautatu babeskopian sartu nahi dituzun erabiltzaile guztiak."
+msgid "Duplicate mount point %s"
+msgstr "Bikoiztu %s muntatze-puntua"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps.pm_.c:380
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+"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 ""
-"%s printerdrakek konfiguratua izan behar da.\n"
-"Printerdrake jaurti dezakezu Mandrake Aginte Guneko Hardware ataletik."
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Key isn't writable"
-msgstr "Giltza ez da idazkarria"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bangladesh"
-msgstr "Bangladesh"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
-msgstr "Japonia (kablea)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Initial tests"
-msgstr "Hasierako probak"
+"Pakete garrantzitsu batzuk ez dira behar bezala instalatu.\n"
+"Zure CDROM unitateak edo CDROMak akatsak ditu.\n"
+"Probatu CDROMa ordenagailu instalatu batean \"rpm -qpl Mandrake/RPMS/*.rpm\" "
+"erabiliz.\n"
-#: ../../network/isdn.pm:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "Continue"
-msgstr "Jarraitu"
+msgid "Welcome to %s"
+msgstr "Ongi etorri %s(e)ra"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom Restore"
-msgstr "Leheneratze pertsonalizatua"
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr "Ez dago diskete-unitate erabilgarririk"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "Saturday"
-msgstr "Larunbata"
+msgid "Entering step `%s'\n"
+msgstr "`%s' urratsean sartzen\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:146
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."
+"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 ""
-"\"%s\": zure sisteman soinu txartel bat aurkitzen bada, hemen erakutsiko "
-"da.\n"
-"Erakusten den soinu txartela zure sisteman dagoena ez dela ohartzen bazara,\n"
-"botoian klik egin dezakezu eta beste gidari bat hautatu.\n"
-" "
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the root umask."
-msgstr "Ezarri root-aren umask."
-
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "Errorea %s fitxategia irakurtzean"
+"Sistemak baliabide gutxi ditu. Arazoak izan ditzakezu Mandrake \n"
+"Linux instalatzeko. Horrela bada, testu-instalazioa egiten saia zaitezke. "
+"Horretarako,\n"
+"sakatu `F1' CDROMetik abiaraztean, gero sartu `text'."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr "Script-ean oinarritua"
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr "Instalazio-klasea"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "PLL setting:"
-msgstr "PLL ezarpenak :"
+#: ../../install_steps_gtk.pm_.c:160
+msgid "Please choose one of the following classes of installation:"
+msgstr "Aukeratu instalazio-klase hauetako bat:"
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "FAT partizio bat eduki behar duzu /boot/efi-n muntatuta"
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
+msgstr "Pakete-taldearen hautapena"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
-msgstr " "
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
+msgstr "Pakete indibidualen hautapena"
-#: ../../diskdrake/dav.pm:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid "The URL must begin with http:// or https://"
-msgstr "URLak http:// edo https:// hasiera izan behar du"
+msgid "Total size: %d / %d MB"
+msgstr "Guztira: %d / %d MB"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Inprimagailua atzitzeko URIa zuzenean zehatz dezakezu. URIak CUPS edo "
-"Foomatic zehaztapenak bete behar ditu. Kontuan izan spooler guztiek ez "
-"dituztela URI mota guztiak onartzen."
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
+msgstr "Pakete txarra"
-#: ../../any.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "Beste SE bat (SunOS...)"
+msgid "Name: %s\n"
+msgstr "Izena: %s\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid "Install/Upgrade"
-msgstr "Instalatu/Eguneratu"
+msgid "Version: %s\n"
+msgstr "Bertsioa: %s\n"
-#: ../../install_steps_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid "%d packages"
-msgstr "%d paketeak"
+msgid "Size: %d KB\n"
+msgstr "Tamaina: %d KB\n"
-#: ../../crypto.pm:1 ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
-msgid "Costa Rica"
-msgstr "Costa Rica"
+msgid "Importance: %s\n"
+msgstr "Garrantzia: %s\n"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:360
msgid ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Backup and Restore application\n"
-"\n"
-"--default : save default directories.\n"
-"--debug : show all debug messages.\n"
-"--show-conf : list of files or directories to backup.\n"
-"--config-info : explain configuration file options (for non-X "
-"users).\n"
-"--daemon : use daemon configuration. \n"
-"--help : show this message.\n"
-"--version : show version number.\n"
-msgstr ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Babestu eta Lehengoratze aplikazioa\n"
-"\n"
-"--default : gorde direktorio lehenetsiak.\n"
-"--debug : erakutsi 'debug' mezu guztiak.\n"
-"--show-conf : babesteko fitxategi edo direktorioen zerrenda.\n"
-"--config-info : azaldu konfigurazio fitxategi aukerak (X erabiltzen "
-"ez dutenentzat).\n"
-"--daemon : erabili deabru konfigurazioa. \n"
-"--help : erakutsi mezu hau.\n"
-"--version : erakutsi bertsio zenbakia.\n"
+"You can't select this package as there is not enough space left to install it"
+msgstr "Ezin duzu pakete hori hautatu: ez dago instalatzeko lekurik"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain Authentication Required"
-msgstr "Domeinu Autentifikazioa Behar da"
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
+msgstr "Ondorengo pakete hauek instalatuko dira"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Use libsafe for servers"
-msgstr "Erabili libsafe zerbitzarietarako"
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
+msgstr "Ondorengo pakete hauek kenduko dira"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Icelandic"
-msgstr "Islandiarra"
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
+msgstr "Ezin duzu pakete hau hautatu/desautatu"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
-msgstr ""
-"\n"
-"Erabilera: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Nahitaezko paketea da, ezin da desautatu"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
+msgstr "Ezin duzu pakete hau desautatu. Dagoeneko instalatuta dago"
+
+#: ../../install_steps_gtk.pm_.c:395
msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
-"Drakbackup-i onartutako\n"
-"neurri handiena (MB)"
+"Pakete hau bertsio-berritu beharrean dago\n"
+"Ziur zaude desautatu nahi duzula?"
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "%s muntaketa zirkularrak\n"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "Ezin duzu pakete hau desautatu. Bertsio-berritu egin behar da"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo/grub mode"
-msgstr "Lilo/grub modua"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
+msgstr "Erakutsi automatikoki hautatutako paketeak"
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "Martinika"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr "Instalatu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "HardDrive / NFS"
+#: ../../install_steps_gtk.pm_.c:407
+msgid "Load/Save on floppy"
+msgstr "Kargatu/Gorde disketean"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Old user list:\n"
-msgstr "Erabiltzaile zerrenda zaharra:\n"
+#: ../../install_steps_gtk.pm_.c:408
+msgid "Updating package selection"
+msgstr "Pakete-hautapena eguneratzen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
-msgstr "Bilatu Babeskopiak"
+#: ../../install_steps_gtk.pm_.c:413
+msgid "Minimal install"
+msgstr "Gutxieneko instalazioa"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "a number"
-msgstr "zenbaki bat"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
+msgstr "Aukeratu instalatu nahi dituzun paketeak"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "suediarra"
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr "Instalatzen"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Zein %s kontrolatzaile probatu behar dut?"
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr "Kalkulatzen"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr "Alerta jasoko duzu hautatutako zerbitzuetakoren bat gelditzen bada"
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr "Geratzen den denbora "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Weekday"
-msgstr "Asteko eguna"
+#: ../../install_steps_gtk.pm_.c:469
+msgid "Please wait, preparing installation..."
+msgstr "Itxaron, instalazioa prestatzen"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid "Filesystem types:"
-msgstr "Fitxategi-sistemen motak:"
+msgid "%d packages"
+msgstr "%d paketeak"
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "Northern Mariana Islands"
-msgstr "Iparraldeko Mariana uharteak"
+msgid "Installing package %s"
+msgstr "%s paketea instalatzen"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", funtzio anitzeko gailua - HP JetDirect"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "Onartu"
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "bat ere ez"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
+msgstr "Ezetsi"
-#: ../../standalone/drakconnect:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
+"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 ""
-"Sortu beharreko profilaren izena (profil berria oraingoaren kopia gisa "
-"sortuko da) :"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Floppy"
-msgstr "Disketea"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "Ghostscript erreferentzia"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Bootloader"
-msgstr "Abioko kargatzailea"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
-msgstr "Baimendu tcp_wrappers-ek kontrolatutako zerbitzu guztiak"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "Lekuz aldatu"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Bootloader to use"
-msgstr "Erabili beharreko abioko kargatzailea"
+"Aldatu CDROMa!\n"
+"\n"
+"Sartu \"%s\" etiketa duen CDROMa unitatean eta sakatu Ados.\n"
+"Ez baduzu, sakatu Utzi instalazioa CDROM horretatik egin ez dezan."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "SMB zerbitzariaren ostalaria"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
+msgstr "Jarraitu hala ere?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Name Servers:"
-msgstr "Izen Zerbitzariak:"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
+msgstr "Errore bat izan da paketeak ordenatzean:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Minute"
-msgstr "Minutua"
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
+msgstr "Errore bat izan da paketeak instalatzean:"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:10
msgid ""
"\n"
"Warning\n"
@@ -7432,4996 +5111,3340 @@ msgstr ""
"dira eta software-programei aplikatzen zaizkien jabetza \n"
"intelektualaren eta copyright-aren legeek babesten dituzte.\n"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Expert mode"
-msgstr "/_Aditu modua"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Kendu inprimagailu hau Star Office/OpenOffice.org/GIMP-tik"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux-en Zerbitzari Birtuala, performantzia handiko zerbitzari oso\n"
-"erabilgarria eraikitzeko erabiltzen da."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr "Mikronesia"
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
+msgstr "Errore bat izan da"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 mila milioi kolore (32 bit)"
+#: ../../install_steps_interactive.pm_.c:85
+msgid "Do you really want to leave the installation?"
+msgstr "Ziur zaude instalazioa bertan behera utzi nahi duzula?"
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
-msgstr "Lizentzia"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "Honek giltzak sortzeko denbora tarte bat behar du."
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
+msgstr "Lizentzia-kontratua"
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
+"Introduction\n"
"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
-"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"
+"1. License Agreement\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"
+"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"
-"<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"
+"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"
-"<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"
+"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"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
"\n"
+"3. The GPL License and Related Licenses\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"
+"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"
-"<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 ""
-"Hemen zure makinarentzako segurtasun maila eta kudeatzailea ezarri "
-"ditzakezu.\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"
-"Segurtasun Kudeatzailea, 'Segurtasun Alertak' aukera ezartzen bada,\n"
-"segurtasun alertak jasoko dituena da.\n"
"\n"
+"5. Governing Laws \n"
"\n"
-"Segurtasun Maila menuak msec-ekin ematen diren aurrez definitutako sei "
-"segurtasun mailen\n"
-"artean hautatzeko aukera ematen dizu. Segurtasun maila hauek segurtasun "
-"eskasa\n"
-"eta erabilpen erraztasunetik ezarpen paranoiderako, zerbitzari aplikazio oso "
-"sentiberentzako, aukerak eskaintzen ditu:\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 ""
+"Sarrera\n"
"\n"
+"Mandrake Linux banaketako sistema eragileari eta erabilgarri dauden osagaiei "
+"\"Software-produktuak\"\n"
+"deituko zaie aurrerantzean. Software-produktuetan sartzen dira, besteak \n"
+"beste, Mandrake Linux banaketako sistema eragileari eta osagaiei dagozkien "
+"programak, \n"
+"metodoak, arauak eta dokumentazioa.\n"
"\n"
-"<span foreground=\"royalblue3\">Eskasa</span>: Segurtasun maila erabat "
-"arriskutsua\n"
-"baino erabiltzen oso erraza. Inongo sareko loturarik ez duen eta "
-"erabiltzaile gutxi\n"
-"dituen makina batean erabiltzeko.\n"
"\n"
+"1. Lizentzia-kontratua\n"
"\n"
-"<span foreground=\"royalblue3\">Estandarra</span>: Hau da segurtasun "
-"estandarra\n"
-"Internetera soilik bezero bezala konektatuko den makinentzako\n"
-"gomendatua.\n"
+"Irakurri arretaz dokumentu hau. Dokumentu hau zure eta MandrakeSoft S.A.ren "
+"arteko lizentzia-kontratu bat da,\n"
+"Software-produktuei dagokiena.\n"
+"Software-produktuak instalatu, bikoiztu edo era batean edo bestean erabiliz, "
+"esplizituki \n"
+"onartzen dituzu eta erabateko adostasuna adierazten diezu Lizentzia honen "
+"baldintzei. \n"
+"Lizentziaren zatiren batekin ados ez bazaude, ez duzu baimenik izango "
+"Software-produktuak instalatu, \n"
+"bikoiztu edo erabiltzeko. \n"
+"Software-produktuak Lizentzia honekin bat ez datorren moduan instalatu, "
+"bikoiztu edo erabiltzeko \n"
+"saio oro deuseza izango da eta Lizentziari dagozkion eskubideak amaitu "
+"egingo \n"
+"dira. Lizentzia amaitzean, Software-produktuen kopia guztiak berehala "
+"suntsitu \n"
+"behar dituzu.\n"
"\n"
"\n"
-"<span foreground=\"royalblue3\">Altua</span>: Dagoeneko murrizketa\n"
-"batzuk dauzka, eta egiaztapen automatiko gehiago exekutatzen dira gauero.\n"
+"2. Berme mugatua\n"
"\n"
+"Software-produktuak eta erantsitako dokumentuak \"dauden-daudenean\" ematen "
+"dira, bermerik gabe, \n"
+"legeak onartzen duen neurrian.\n"
+"MandrakeSoft S.A.k ez du, ezein kasutan eta legeak onartzen duen neurrian, "
+"erantzukizunik izango\n"
+"Software-produktuen erabileraren edo erabiltzeko ezgaitasunaren ondorioz "
+"sortutako kalte berezi, ustekabeko,\n"
+"zuzeneko edo zeharkakoengatik (lana galtzea, lana etetea, finantza-galera, "
+"epai baten ondorioz ordaindu \n"
+"beharreko kuotak eta zigorrak edo beste edozein ondoriozko galera barne, "
+"mugarik gabe), \n"
+"MandrakeSoft S.A. jakinaren gainean egon arren halako kalteak gerta "
+"litezkeela.\n"
"\n"
-"<span foreground=\"royalblue3\">Altuago</span>: Segurtasuna nahikoa da\n"
-"sistema bezero ugarietatik koneksioak onartzen dituen zerbitzari "
-"bezalaerabiltzeko.\n"
-"Zure makina Interneten soilik bezeroa bada, maila apalagoa hartu beharko "
-"zenuke.\n"
+"HERRIALDE BATZUETAN SOFTWARE DEBEKATUA EDUKITZEARI EDO ERABILTZEARI LOTUTAKO "
+"ERANTZUKIZUN MUGATUA\n"
"\n"
+"Legeak onartzen duen neurrian, MandrakeSoft S.A.k edo bere banatzaileek, ez "
+"dute, ezein kasutan,\n"
+"erantzukizunik izango herrialde batzuetan, bertako legeek debekatutako edo "
+"mugatutako software-osagaiak edo\n"
+"Mandrake Linux-en guneetatik deskargatutako software-osagaiak eduki eta "
+"erabiltzearen ondorioz \n"
+"sortutako kalte berezi,ustekabeko,zuzeneko edo zeharkakoengatik (lana "
+"galtzea, lana etetea,\n"
+"finantza-galera, epai baten ondorioz ordaindu beharreko kuotak eta zigorrak "
+"edo beste edozein ondoriozko \n"
+"galera barne, mugarik gabe).\n"
+"Erantzukizun mugatu hau Software-produktuetan sartzen diren kriptografia "
+"handiko osagaiei aplikatzen \n"
+"zaie, baina ez da horietara mugatzen.\n"
"\n"
-"<span foreground=\"royalblue3\">Paranoidea</span>: Aurreko mailaren antzekoa "
-"da,\n"
-"baino sistema erabat itxita dago eta segurtasun ezaugarriak mailarik\n"
-"handienean daude."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr ""
-"Inprimagailu auto-detekzioa (Bertakoa, TCP/Socket, eta SMB inprimagailuak)"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr "Sagem (pppoa erabiliz) usb"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"Errorea gertatu da - ez da fitxategi-sistema berriak sortzeko gailu "
-"baliozkorik aurkitu. Aztertu zure hardwarea arazo honen arrazoia bilatzeko"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Abioan inprimatze-sistema abiarazi"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Abioan hasi nahi duzu konexioa?"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr "Prozesagailuaren ID"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr "Soinu arazoen konponketa"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "Poloniarra (qwerty diseinua)"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Erantsi Inprimagailua"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
"\n"
-"Drakbackup activities via CD:\n"
+"3. GPL Lizentzia eta Lizentzia erlazionatuak\n"
"\n"
-msgstr ""
+"Software-produktuak hainbat pertsonak edo erakundek sortutako osagaiak dira. "
+"Osagai \n"
+"horietako gehienak aurrerantzean\"GPL\" deituko diogun GNU Lizentzia Publiko "
+"Orokorraren\n"
+"edo antzeko lizentzien baldintzen araberakoak dira. Lizentzia horietako "
+"gehienek, \n"
+"beren osagaiak bikoizteko, egokitzeko edo birbanatzeko aukera ematen dute. "
+"Osagai bat erabili aurretik, irakurri \n"
+"arretaz osagai horren lizentzia-kontratuko baldintzak. Osagaiaren "
+"lizentziari\n"
+"buruzko galdera oro osagaiaren egileari egin beharko zaio, eta ez "
+"MandrakeSoft-i.\n"
+"MandrakeSoft S.A.k garatutako programak GPL Lizentziaren araberakoak dira. "
+"MandrakeSoft S.A.k\n"
+"idatzitako dokumentazioa lizentzia zehatz baten araberakoa da. Xehetasun "
+"gehiago nahi izanez gero, \n"
+"jo dokumentaziora.\n"
"\n"
-"Drakbackup ekintzak CD bitartez:\n"
"\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
+"4. Jabetza intelektualaren eskubideak\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"
+"Software-produktuen osagaiei dagozkien eskubide guztiak haien \n"
+"egileenak dira eta software-programei\n"
+"aplikatzen zaizkien jabetza intelektualaren eta copyriht-aren legeek "
+"babesten dituzte.\n"
+"MandrakeSoft S.A.k eskubidea du Software-produktuak bere osotasunean edo "
+"zatika aldatzeko, \n"
+"bide guztiak erabiliz eta helburu guztietarako.\n"
+"\"Mandrake\", \"Mandrake Linux\" eta asoziatutako logotipoak MandrakeSoft S."
+"A.ren marka erregistratuak dira \n"
"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"%s inprimatze-sistema segurtasun-maila %sn dabilen sisteman instalatzera "
-"zoaz.\n"
"\n"
-"Inprimatze-sistema honek inprimatze-lanei itxaroteko eta lanak maneiatzeko "
-"daemon (atzeko planoko prozesu) bat exekutatzen du. Daemon hori urruneko "
-"makinek ere atzitu dezakete sarearen bitartez eta hala, erasoak jasateko "
-"gunea izan daiteke. Beraz, daemon hautatu bakan batzuk besterik ez dira "
-"abiarazten lehenespenez segurtasun-maila honetan.\n"
+"5. Lege arautzaileak \n"
"\n"
-"Makina honetan konfiguratu nahi duzu inprimaketa?"
+"Kontratu honen edozein zati epai batek deuseztzat, legez kanpokotzat edo "
+"aplikaezintzat jotzen badu, \n"
+"zati hori kendu egingo da kontratutik. Kontratuaren gainerako atal "
+"aplikagarriek ezarritakoa \n"
+"bete behar duzu.\n"
+"Lizentzia honetako baldintzak Frantziako legeen araberakoak dira.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "\"%s\" ostalaria, %s portua"
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
+msgstr "Ziur zaude lizentzia errefusatzen duzula?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "Partizio hau ezin da atzera-begiztarako erabili"
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "Teklatua"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr "Fitxategia badago lehendik ere. Erabili?"
+#: ../../install_steps_interactive.pm_.c:218
+msgid "Please choose your keyboard layout."
+msgstr "Aukeratu zure teklatu-diseinua."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
-msgstr "jasota: "
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
+msgstr "Hona hemen teklatu erabilgarri guztien zerrenda"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr "Eskuineko Alt tekla"
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
+msgstr "Zein instalazio-klase nahi duzu?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "Soinu txartel honentzako gidari alternatiboen zerrenda"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
+msgstr "Instalatu/Eguneratu"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Atebidea"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
+msgstr "Zer egin nahi duzu: instalazioa ala eguneratzea?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr "Tonga"
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr "Gomendatua"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "Tunisia"
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Aditua"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing"
-msgstr "Eskaner elkarbanaketa"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade"
+msgstr "Bertsio-berritu"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile: "
-msgstr "Profila: "
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade packages only"
+msgstr "Paketeak bakarrik bertsio-berritu"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
-"Klikatu ezkerreko zuhaitzeko gailu bati bere informazioa hemen erakutsi "
-"dadin."
+#: ../../install_steps_interactive.pm_.c:282
+msgid "Please choose the type of your mouse."
+msgstr "Aukeratu sagu-mota."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr "Baimendu/Debekatu auto-erregistroa."
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr "Sagu-ataka"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
-msgstr "XawTV ez dago instalatuta!"
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
+msgstr "Aukeratu sagua konektatuta dagoen serieko ataka."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Ez sartu fitxategi kritikoak (passwd, group, fstab)"
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
+msgstr "Botoien emulazioa"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "dev paketean erabiltzen den gailu estatikoaren zaharraren izena"
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
+msgstr "2. botoiaren emulazioa"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
-msgstr "Gaitu IPv4 pakete arraroen erregistroa"
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
+msgstr "3. botoiaren emulazioa"
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
-msgstr "Etiketa hau jadanik erabili da"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr "PCMCIA txartelak konfiguratzen..."
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"Ongi etorri Inprimagailu Ezarpen Morroira\n"
-"\n"
-"Morroi honek lagunduko dizu zure konputagailura lotutako inprimagailua(k) "
-"edo sarera zuzenean lotutakoak instalatzen.\n"
-"\n"
-"Makina honetara lotutako inprimagailuak badituzu, mesedez konektatu eta "
-"piztu itzazu auto-detektatu ahal izan daitezen. Zure sareko inprimagailuak "
-"ere konektatu eta piztu egin behar dira.\n"
-"\n"
-"Kontutan izan ezazu inprimagailuak sarean auto-detektatzeak denbora\n"
-"luzeagoa hartzen duela zure makinari lotutakoak soilik detektatzea baino.\n"
-"Beraz kendu ezazu sareko inprimagailuen auto-detekzioa behar ez duzunean.\n"
-"\n"
-" Klikatu \"Hurrengoa\" prest zaudenean, \"Etsi\" ez badituzu zure "
-"inprimagailuak orain ezarri nahi."
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
-msgstr "Grekoa (politonikoa)"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr "IDE konfiguratzen"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"%s partizioa formateatu ondoren, partizioko datu guztiak galdu egingo dira"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection Time: "
-msgstr "Konexio Denbora: "
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr "ez dago partizio erabilgarririk"
-#: ../../standalone/livedrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
+msgstr "Partizioak eskaneatzen muntatze-puntuak aurkitzeko"
+
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr "Aukeratu muntatze-puntuak"
+
+#: ../../install_steps_interactive.pm_.c:386
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."
+"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 ""
-"Sartu instalazioko CDROMa unitatean eta sakatu \"Ados\".\n"
-"Ez badaukazu, sakatu \"Utzi\" bertsio-berritzea saihesteko."
+"Ez dago lekurik 1 MBko bootstrap-a sortzeko! Instalazioak jarraituko du, "
+"baina zure sistema abiarazteko, bootstrap partizioa sortu beharko duzu "
+"DiskDrake-rekin"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use group id for execution"
-msgstr "Erabili taldearen id exekuziorako"
+#: ../../install_steps_interactive.pm_.c:395
+msgid "No root partition found to perform an upgrade"
+msgstr "Ez da erroko partiziorik aurkitu bertsio-berritzea egiteko"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "Aukeratu erabiltzaile lehenetsia:"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr "Erroko partizioa"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "Gabon"
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr "Zein da zure sistemaren (/) erroko partizioa?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-"\n"
-"Urruneko CUPS zerbitzariko inprimagailuak ez dituzu hemen konfiguratu behar; "
-"horrelako inprimagailuak automatikoki detektatuko dira."
+"Berrabiarazi egin behar duzu partizio-taulako aldaketek eragina izateko"
-#: ../../any.pm:1
-#, 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."
-msgstr ""
-"Instalatu ondoren erabilgarri egongo diren beste hizkuntza batzuk aukera "
-"ditzakezu"
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr "Aukeratu formateatu nahi dituzun partizioak"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr "Ostalari honetan babeskopia jartzeko direktorio (edo modulua)."
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
+msgstr "Bloke txarrak egiaztatu?"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain"
-msgstr "Domeinua"
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr "Partizioak formateatzen"
-#: ../../any.pm:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Zehaztu RAM tamaina beharrezkoa bada (%d MB aurkituak)"
+msgid "Creating and formatting file %s"
+msgstr "%s fitxategia sortzen eta formateatzen"
-#: ../../help.pm:1
+#: ../../install_steps_interactive.pm_.c:470
#, 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."
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-"LILO eta grub GNU/Linux abiapen-zamatzaileak dira. Normalean, fase hau\n"
-"guztiz automatizatua dago. DrakX-ek diskoaren abiapen sektorea aztertuko\n"
-"du eta aurkitzen duenaren arabera ekingo dio:\n"
-"\n"
-" * Windows abiapen sektorea aurkitzen badu, grub/LILO-ren abiapen sektore\n"
-"batekin ordezkatuko du. Era honetan GNU/Linux zein beste edozein SE zamatu\n"
-"ahal izango duzu.\n"
-"\n"
-" * grub edo LILO sektore bat aurkitzen bada, sektore berri batekin "
-"ordezkatuko\n"
-"du.\n"
-"\n"
-"Erabakirik hartu ezin badu, DrakX-ek abiapen-zamatzailea non kokatu\n"
-"galdegingo dizu."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "Hornitzailearen dns 2 (aukerakoa)"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "Abioko gailua"
+"%s fitxategi-sistemaren egiaztapenak hutsegin du. Okerrak zuzendu nahi "
+"dituzu? (adi, datuak gal ditzakezu)"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Zein partiziori aldatu nahi diozu tamaina?"
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Ez dago nahikoa swap instalazioa burutzeko, gehitu egin beharko duzu"
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr "Estatu Batuetako kanpoaldeko uharte txikiak"
+#: ../../install_steps_interactive.pm_.c:479
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Pakete erabilgarriak bilatzen eta rpm databaseak berreraikitzen..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Djibouti"
-msgstr "Djibuti"
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr "Pakete erabilgarriak bilatzen"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Zure erregistroak ikusteko tresna"
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Looking at packages already installed..."
+msgstr "Instalatutako paketeen artean bilatzen..."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected on port %s"
-msgstr "%s atakan detektatua"
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr "Bertsio-berritzeko paketeak bilatzen"
-#: ../../printer/data.pm:1
+#: ../../install_steps_interactive.pm_.c:505
#, c-format
-msgid "LPD"
-msgstr "LPD"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
+msgstr ""
+"Zure sistemak ez du nahikoa leku instalatzeko edo bertsio-berritzeko (%d > %"
+"d)"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Txartel grafikoa: %s\n"
+#: ../../install_steps_interactive.pm_.c:541
+msgid ""
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
+msgstr ""
+"Aukeratu pakete-hautapena disketean kargatzea edo gordetzea.\n"
+"Formatua instalazio automatikoa egiteko sortutako disketeena bezalakoa da."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Ezarri _lehenetsi gisa"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Load from floppy"
+msgstr "Disketetik kargatu"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
-msgstr "Onartu icmp oihartzuna"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr "Gorde disketean"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Loading from floppy"
+msgstr "Disketetik kargatzen"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Series gurpil emulazioarekin"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Package selection"
+msgstr "Pakete-hautapena"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "Partizio hedatua ez da plataforma honetan onartzen"
+#: ../../install_steps_interactive.pm_.c:552
+msgid "Insert a floppy containing package selection"
+msgstr "Sartu pakete-hautapena daukan diskete bat"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Splash selection"
-msgstr "Splash hautaketa"
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
+msgstr "Hautatutako tamaina handiagoa da leku erabilgarria baino"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "ISDN konfigurazioa"
+#: ../../install_steps_interactive.pm_.c:649
+msgid "Type of install"
+msgstr "Instalazio-mota"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "high"
-msgstr "handia"
+#: ../../install_steps_interactive.pm_.c:650
+msgid ""
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Ez duzu talde edo paketerik hautatuta\n"
+"Nahi duzun gutxieneko instalazioa hautatu behar duzu"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Interneteko konexioa konpartitzea"
+#: ../../install_steps_interactive.pm_.c:653
+msgid "With X"
+msgstr "Xrekin"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Choose file"
-msgstr "Aukeratu fitxategia"
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
+msgstr "Oinarrizko dokumentazioarekin (gomendatua)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Summary: "
-msgstr "Laburpena: "
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Instalazio minimo-minimoa (batez ere, urpmi gabe)"
-#: ../../network/shorewall.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:741
msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
+"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 ""
-"Kontuz! Lehendik dagoen suebaki-konfigurazio bat detektatu da. Beharbada "
-"eskuz konponketa batzuk egin beharko dituzu instalazioaren ondoren."
+"Beheko zerrendako CD guztiak badituzu, sakatu Ados.\n"
+"CD horietako bat ere ez baduzu, sakatu Utzi.\n"
+"CDetako batzuk soilik falta badituzu, desauta itzazu, eta sakatu Ados."
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:746
#, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Inprimaketa/Argazki Txartelen Sarrera \"%s\"-n"
+msgid "Cd-Rom labeled \"%s\""
+msgstr "\"%s\" etiketadun CDROMa"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
-msgstr "Eguneroko segurtasun egiaztapena"
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr "Instalazioa prestatzen"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:776
#, c-format
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"Installing package %s\n"
+"%d%%"
msgstr ""
-"Inprimaketa gaitu nahi duzu goian aipatutako inprimagailuetan edo bertako "
-"sarean dauden inprimagailuetan?\n"
+"%s paketea instalatzen\n"
+"%% %d"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer default settings"
-msgstr "Inprimagailuaren ezarpen lehenetsiak"
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
+msgstr "Instalazio-ondorengo konfigurazioa"
-#: ../../mouse.pm:1
+#: ../../install_steps_interactive.pm_.c:828
#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Gurpildun PS2 sagu generikoa"
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Sartu abioko disketea %s unitatean"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm_.c:834
#, c-format
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "Sartu moduluak eguneratzeko disketea %s unitatean"
+
+#: ../../install_steps_interactive.pm_.c:861
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)"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates ?"
msgstr ""
-"CPUaren CR0 erregistroko WP ikurrak idazketa babesa behartzen du memoria "
-"orri mailan, prozesagailuari kernelaren egiaztatu gabeko erabiltzaleen "
-"memoriara sarrerak eragozteko aukera emanez (hau da, akats babesa)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "\"%s\" inprimagailu zaharra ezabatzen..."
+"Orain, eguneratutako paketeak jaisteko aukera daukazu. Pakete hauek "
+"banaketa\n"
+"kaleratu ondoren kaleratu dira. Segurtasun edo akats konponketak izan "
+"ditzakete.\n"
+"\n"
+"Pakete hauek jaisteko Internetera lotura beharko duzu\n"
+"\n"
+"Eguneratzeak instalatu nahi dituzu?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Select a device !"
-msgstr "Hautatu gailu bat!"
+#: ../../install_steps_interactive.pm_.c:876
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgstr ""
+"Mandrake Linux-en web gunearekin kontaktatzen ispiluen zerrenda lortzeko"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected server"
-msgstr "Kendu hautatutako zerbitzaria"
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
+msgstr "Aukeratu ispilu bat paketeak bertatik hartzeko"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using dhcp) usb"
-msgstr "Sagem (dhcp erabiliz) usb"
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Ispiluarekin kontaktatzen pakete erabilgarrien zerrenda lortzeko"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Southern Territories"
-msgstr "Hegoaldeko lurralde frantsesak"
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr "Zein da zure ordu-zona?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "prozesagailu saltzailearen izena"
+#: ../../install_steps_interactive.pm_.c:923
+msgid "Hardware clock set to GMT"
+msgstr "Hardwarearen ordua GMTn ezarria"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Mantendu %s:\n"
-" \tErabiltzaileak diskorik gabeko bezero batetik sisteman "
-"erregistratu ahal daitezen, beraien sarrera\n"
-" \t/etc/shadow fitxategian bikoiztu egin behar da %s-en.\n"
-" \tdrakTermServ-ek honekin laguntzen du fitxategi honetan sistema "
-"erabiltzaileak erantsi edo ezabatzen."
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Ordu-sinkronizazio automatikoa (NTP erabiliz)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr "Partizio honetako datu guztiek babeskopia eduki beharko lukete"
+#: ../../install_steps_interactive.pm_.c:931
+msgid "NTP Server"
+msgstr "NTP Zerbitzaria"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "%s paketea instalatzen"
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
+msgstr "Urruneko CUPS zerbitzaria"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr "Gailua egiaztatzen eta HPOJ konfiguratzen..."
+#: ../../install_steps_interactive.pm_.c:966
+msgid "No printer"
+msgstr "Inprimagailurik ez"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Partizio gehiago edukitzeko, ezabatu horietako bat partizio hedatu bat sortu "
-"ahal izateko"
+#: ../../install_steps_interactive.pm_.c:982
+msgid "Do you have an ISA sound card?"
+msgstr "ISA soinu-txartela duzu?"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-"Zure inprimagailua automatikoki konfiguratu zen zure PC-tik argazki txartel "
-"unitateetara sarrera emateko. Orain \"MtoolsFM\" programa grafikoa erabiliz "
-"(Menua: \"Aplikazioak\" -> \"Fitxategi tresnak\" -> \"MTools Fitxategi "
-"Kudeatzailea\") edo \"mtools\" komando lerroko utilitatea erabiliz (sartu "
-"\"man mtools\" komando lerroan informazio gehiago jasotzeko) zure argazki "
-"txartelak atzitu ditzakezu. Txartelaren fitxategi-sistema \"p:\" unitate "
-"hizkipean aurkituko duzu, edo ondorengo hizkietan argazki txartela duten HP "
-"inprimagailu bat baino gehiago baduzu. \"MtoolsFM\" tresnan unitate hizki "
-"artean mugitu zaitezke fitxategi-zerrenden goi-eskuin ertzetan dagoen eremua "
-"erabiliz."
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "Aukeratu instalatu beharreko paketeak"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "%s unitatean dauden partizio eta datu GUZTIAK galdu egingo dira"
+"Instalazioa egindakoan, exekutatu \"sndconfig\" soinu-txartela "
+"konfiguratzeko "
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-"Zure sistemak ez du nahikoa leku instalatzeko edo bertsio-berritzeko (%d > %"
-"d)"
+"Ez da soinu-txartelik detektatu. Instalazioa egin ondoren, saiatu \"harddrake"
+"\"rekin "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Inprimagailu bakoitzak izen bat behar du (adibidez \"inprimagailua\"). "
-"Azalpenaren eta Kokalekuaren eremuak ez dira nahitaez bete behar. "
-"Erabiltzaileentzako iruzkinak dira."
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
+msgstr "Laburpena"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"\"%s\": \"%s\" botoia sakatzeak inprimagailu ezarpenerako morroia zabalduko "
-"du.\n"
-"Begiratu ``Starter Guide'' gidan dagokion kapitulua inprimagailu berria "
-"nola\n"
-"ezarzen den inguruko informazio gehiago jasotzeko. Han aurkezturiko "
-"interfazea\n"
-"instalazioan erabiltzen denaren antzekoa da."
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
+msgstr "Sagua"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr "Bhutan"
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
+msgstr "Ordu-zona"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "Sare-interfazea"
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "Inprimagailua"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Internetgandik deskoneksioak hutsegin du."
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
+msgstr "ISDN txartela"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
-msgstr "Inprimagailu datuak irakurtzen..."
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
+msgstr "Soinu-txartela"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "Koreako teklatua"
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
+msgstr "Telebista-txartela"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Not connected"
-msgstr "Konektatu gabe"
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
+msgstr "LDAP"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "No internet connection configured"
-msgstr "Ez dago ezarrita Internet konexiorik"
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+msgid "NIS"
+msgstr "NIS"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
-msgstr "Grekoa"
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+msgid "Windows Domain"
+msgstr "Windows Domeinua"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts eta Nevis"
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+msgid "Local files"
+msgstr "Fitxategi lokalak"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "3 botoidun sagu generikoa gurpil emulazioarekin"
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr "Ezarri root-aren pasahitza"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
-msgstr "Gaitu OF abiaraztea?"
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr "Pasahitzik ez"
-#: ../../fsedit.pm:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Ezin da JFS erabili 16MB baino gutxiagoko partizioetarako"
+msgid "This password is too short (it must be at least %d characters long)"
+msgstr "Pasahitz hau sinpleegia da (gutxienez %d karaktere izan behar ditu)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Ezabatu zure RW eukarria (1. Saioa)"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "Autentifikazioa"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Monitorearen FreskBert: %s\n"
+#: ../../install_steps_interactive.pm_.c:1088
+msgid "Authentication LDAP"
+msgstr "LDAP autentifikazioa"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "Muntaia-puntua"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
+msgstr "LDAP basea dn"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"Oker bat jazo da:\n"
-"%s\n"
-"Saiatu parametro batzuk aldatzen"
+#: ../../install_steps_interactive.pm_.c:1090
+msgid "LDAP Server"
+msgstr "LDAP Zerbitzaria"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "\"%s\" TCP/IP ostalaria, %s portua"
+#: ../../install_steps_interactive.pm_.c:1096
+msgid "Authentication NIS"
+msgstr "NIS Autentifikazioa"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "User :"
-msgstr "Erabiltzailea:"
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "NIS domeinua"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore system"
-msgstr "Leheneratu sistema"
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr "NIS zerbitzaria"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1104
msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
+"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 ""
-"Hauek dira bertan konektatutako eskanerrak eskuragarri eduki behar "
-"lituzketen makinak:"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
-msgstr "DHCP-ren amaierako ip"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Another one"
-msgstr "Beste bat"
+"Honek W2K Domeinuko Kontrolatzaile Nagusi (PDC) batekin lanegin dezan, "
+"seguraski zure administratzaileak C:\\>net localgroup \"Pre-Windows 2000 "
+"Compatible Access\" everyone /add exekutatu beharko du eta ondoren "
+"zerbitzaria berrabiatu.\n"
+"Era berean Domeinuko Admin baten erabiltzaile-izen/pasahitza beharko dituzu "
+"makina Windows(TM) domeinura batzeko.\n"
+"Sarea oraindik gaitu gabe badago, Drakx saiatuko da domeinura batzen sareko "
+"ezarpen urratsaren ondoren.\n"
+"Ezarpen honek, edozein arrazoi medio, hutsegingo balu eta domeinu "
+"autentifikazioa ez badabil, exekutatu 'smbpasswd -j DOMEINUA -U ERABILTZAILEA"
+"%PASAHITZA' zure Windows(tm) Domeinua, eta Admin Erabiltzaile-izen/Pasahitza "
+"erabiliz, sistema abiatu ondoren.\n"
+"'wbinfo -t' komandoak autentifikazioaren sekretuak zuzenak diren frogatuko "
+"du."
+
+#: ../../install_steps_interactive.pm_.c:1106
+msgid "Authentication Windows Domain"
+msgstr "windowsen Autentifikazio Domeinua"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
+#: ../../install_steps_interactive.pm_.c:1108
+msgid "Domain Admin User Name"
+msgstr "Domeinuaren Admin Erabiltzaile Izena"
-#: ../../lang.pm:1
-#, c-format
-msgid "Colombia"
-msgstr "Kolonbia"
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
+msgstr "Domeinuko Admin Pasahitza"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1144
msgid ""
-"Current configuration of `%s':\n"
+"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"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
msgstr ""
-"`%s' - uneko konfigurazioa:\n"
+"Abioko disko pertsonalizatuak Linux sistema abiarazteko aukera ematen du\n"
+"abioko kargatzaile normala erabili gabe. Baliagarria da zure sisteman SILO\n"
+"instalatu nahi ez baduzu, edo beste sistema eragile batek SILO kentzen badu, "
+"edo SILOk\n"
+"zure hardware-konfigurazioarekin funtzionatzen ez badu. Abioko disko "
+"pertsonalizatua Mandrake\n"
+"berreskuratzeko imajinarekin ere erabil daiteke, sistemaren hutsegite "
+"larriak\n"
+"errazago gainditu ahal izateko.\n"
"\n"
-"Sarea: %s\n"
-"IP helbidea: %s\n"
-"IP atribuzioa: %s\n"
-"Kontrolatzailea: %s"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n Play"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr "Reunion"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "Xehetasunak"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Segurtasun arrazoiengatik, orain deskonektatuko da."
+"Zure sistemarako abioko disko bat sortu nahi baduzu, sartu diskete bat "
+"lehen\n"
+"unitatean eta sakatu \"Ados\"."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Synchronization tool"
-msgstr "Sinkronizazio tresna"
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr "Lehen diskete-unitatea"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking your system..."
-msgstr "Zure sistema egiaztatzen..."
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "Bigarren diskete-unitatea"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print"
-msgstr "Inprimatu"
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "Saltatu"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:1167
#, c-format
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+"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"
msgstr ""
-"Sartu bolumen etiketa %s duen zinta\n"
-" %s zinta unitate gailuan"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "Mongolia"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
-msgstr "Muntatuta\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS"
-msgstr "CUPS Konfiguratu"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Interface"
-msgstr "Interfaze grafikoa"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Users"
-msgstr "Leheneratu erabiltzaileak"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Encryption key for %s"
-msgstr "%s-rentzako enkriptazio gakoa"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to recover your system?"
-msgstr "Zure sistema berreskuratu nahi duzu?"
+"Abioko disko pertsonalizatuak Linux sistema abiarazteko aukera ematen du\n"
+"abioko kargatzaile normala erabili gabe. Baliagarria da zure sisteman LILO "
+"(edo grub)\n"
+"instalatu nahi ez baduzu, edo beste sistema eragile batek LILO kentzen badu, "
+"edo LILOk\n"
+"zure hardware-konfigurazioarekin funtzionatzen ez badu. Abioko disko "
+"pertsonalizatua Mandrake\n"
+"berreskuratzeko imajinarekin ere erabil daiteke, sistemaren hutsegite "
+"larriak\n"
+"errazago gainditu ahal izateko.\n"
+"Zure sistemarako abioko disko bat sortu nahi duzu?\n"
+"%s"
-#: ../../services.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1173
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."
+"\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)."
msgstr ""
-"Ataka-mapatzaileak RPC konexioak kudeatzen ditu. Konexio horiek\n"
-"NFS eta NIS moduko protokoloek erabiltzen dituzte. RPC mekanismoa erabiltzen "
-"duten\n"
-"protokoloen zerbitzari gisa jokatzen duten makinetan aktibatu behar da\n"
-"ataka-maparen zerbitzaria."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detected hardware"
-msgstr "Detektatu hardwarea"
+"\n"
+"\n"
+"(KONTUZ! XFS erabiltzen ari zara erroko partizioan,\n"
+"abioko diskoa 1,44 Mb-ko disketean sortzeak huts egingo du\n"
+"seguru asko, XFSk oso kontrolatzaile handia behar duelako)."
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr "Maurizio"
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "Ez dago diskete-unitate erabilgarririk"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
-msgstr "Myanma (Birmaniarra)"
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr "Aukeratu abioko diskoa egiteko erabili nahi duzun diskete-unitatea"
-#: ../../fs.pm:1
+#: ../../install_steps_interactive.pm_.c:1189
#, c-format
-msgid "Enabling swap partition %s"
-msgstr "%s swap partizioa gaitzen"
+msgid "Insert a floppy in %s"
+msgstr "Sartu diskete bat %s unitatean"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"Ez dago loopback bezala erabiltzeko FAT partiziorik (edo ez dauka nahiko "
-"leku)"
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr "Abioko disketea sortzen"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr "armeniarra (zaharra)"
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr "Abioko kargatzailea prestatzen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1210
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."
+"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 to boot your machine"
msgstr ""
-"\"%s\" izeneko inprimagailu bat badago %s(e)n. \n"
-"Sakatu \"Transferitu\" gainidazteko.\n"
-"Beste izen bat idatz dezakezu, edo inprimagailu hori saltatu."
+"Badirudi makina zaharra edo ezezaguna duzula,\n"
+"yaboot abioko kargatzaileak ez du funtzionatuko.\n"
+"Instalazioak jarraitu egingo du, baina\n"
+"BootX erabili beharko duzu makina abiarazteko"
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
+msgstr "aboot erabili nahi duzu?"
+
+#: ../../install_steps_interactive.pm_.c:1219
msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
-"Aurkitu zure arazoei erantzuna MandrakeSoft-en lerroko euskarri "
-"plataformaren bitartez"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", \"%s\" ostalaria, %s protua"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Monaco"
-msgstr "Monako"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Partizioak huts egin du: %s"
+"Errorea aboot instalatzean, \n"
+"instalazioa ezartzen saiatu lehen partizioa suntsitzen badu ere?"
-# #this syntax doesn't work yet in perl :-(
-# #msgid "%s formatting of %s failed"
-# #msgstr "%2$s(r)i %1$s formatua emateak huts egin du"
-#: ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s %s(r)i formatua emateak huts egin du"
+#: ../../install_steps_interactive.pm_.c:1226
+msgid "Installing bootloader"
+msgstr "Abioko kargatzailea instalatzen"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Canada (cable)"
-msgstr "Kanada (kablea)"
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Abioko kargatzailea instalatzeak huts egin du. Errore hau gertatu da:"
-#: ../../standalone/drakfloppy:1
+#: ../../install_steps_interactive.pm_.c:1240
#, c-format
-msgid "Floppy creation completed"
-msgstr "Diskete sorrera amaitu da"
+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 ""
+"Baliteke Open Firmware abioko gailua aldatu behar izatea\n"
+" abioko kargatzailea gaitzeko. Berrabiaraztean abioko kargatzailearen "
+"gonbita ez\n"
+" baduzu ikusten, eduki sakatuta Command-Option-O-F abiaraztean eta sartu:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+" Gero, idatzi: shut-down\n"
+"Hurrengo abiaraztean abioko kargatzailearen gonbita ikusi behar duzu."
-#: ../../help.pm:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "Upgrade"
-msgstr "Bertsio-berritu"
+msgid "Insert a blank floppy in drive %s"
+msgstr "Sartu diskete huts bat %s unitatean"
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
-msgstr "Lan-estazioa"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
+msgstr "Auto-instalazioko disketea sortzen..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1289
msgid ""
-"Installing package %s\n"
-"%d%%"
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
msgstr ""
-"%s paketea instalatzen\n"
-"%% %d"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
-msgstr "Kirgizistan"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "Gailu funtzio-anitza USB-n"
+"Urrats batzuk ez dira osatu.\n"
+"\n"
+"Ziur zaude orain irten nahi duzula?"
-#: ../../../move/move.pm:1
+#: ../../install_steps_interactive.pm_.c:1300
#, 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"
+"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"
-"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."
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-"Ez dugu zure sisteman USB giltzarik aurkitu. Orain USB giltza\n"
-"bat entxufatzen baduzu, Mandrake Move-k era gardenean zure atariko "
-"direktorioko datuak eta sistema mailako ezarpenak\n"
-"gordetzeko gaitasuna izango du, hurrengo abiorako konputagailu\n"
-"honetan edo beste batean. Oharra: orain giltza bat konektatzen\n"
-"baduzu, itxoin zenbait segundu berriro detektatu aurretik.\n"
+"Zorionak, instalazioa burutu da.\n"
+"Atera abioko diskoa eta sakatu itzulera-tekla berrabiarazteko.\n"
"\n"
"\n"
-"USB giltza gabe ere jarraitu dezakezu - Mandrake Move erabili\n"
-"ahal izango duzu Mandrake Sistema Eragile bizi arrunt baten\n"
-"modura."
+"Mandrake Linux-en bertsio honetarako erabilgarri dauden konponbideen "
+"informaziorako,\n"
+"kontsultatu Erratak helbide honetan:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Zure sistema konfiguratzeko informazioa Mandrake-ren Erabiltzailearen \n"
+"Gida Ofizialeko instalatu ondorengo azalpenei buruzko kapituluan duzu."
-#: ../../help.pm:1
-#, c-format
-msgid "With basic documentation"
-msgstr "Oinarrizko dokumentazioarekin"
+#: ../../install_steps_interactive.pm_.c:1313
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr "Anacron, komando-antolatzaile periodikoa."
+#: ../../install_steps_interactive.pm_.c:1318
+msgid "Generate auto install floppy"
+msgstr "Sortu auto-instalazioko disketea"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1320
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 `/'"
+"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 ""
-"Erroko partizioa eduki behar duzu.\n"
-"Horretarako, sortu partizio bat (edo egin klik lehendik dagoen batean).\n"
-"Gero aukeratu ``Muntaia-puntua'' ekintza eta ezarri `/'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "Mendebaldeko Sahara"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Proxy-ak http://... izan behar du"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr "Hegoafrika"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Kanporatu zinta babeskopia ondoren"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot Disketea/ISO"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Aldatu inprimagailuaren konfigurazioa"
+"Auto-instalazioa erabat automatiza daiteke nahi izanez gero,\n"
+"kasu horretan, disko gogorra hartuko du!!\n"
+"(beste makina batean instalatzeko pentsatua da aukera hau).\n"
+"\n"
+"Beharbada nahiago izango duzu instalazioa errepikatzea.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
-msgstr "Aukeratu partizio bat"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
+msgstr "Automatizatua"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Edit current rule"
-msgstr "Editatu uneko araua"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Replay"
+msgstr "Errepikatu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
-msgstr "%s"
+#: ../../install_steps_interactive.pm_.c:1328
+msgid "Save packages selection"
+msgstr "Gorde pakete-hautapena"
-#: ../../mouse.pm:1
+#: ../../install_steps_newt.pm_.c:20
#, c-format
-msgid "Please test the mouse"
-msgstr "Probatu sagua"
+msgid "Mandrake Linux Installation %s"
+msgstr "Mandrake Linux-en %s instalazioa"
-#: ../../fs.pm:1
-#, c-format
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
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)."
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-"Ez eguneratu inode sarrera denborak fitxategi sistema\n"
-"honetan (adib, berrien hilaran sarrera azkartzeko berrien zerbitzaria "
-"azkarrago egiteko)."
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3 Botoi gurpil emulazioarekin"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Sticky-bit"
-msgstr "bit-itxaskorra"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other Media"
-msgstr "Beste euskarri bat"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files"
-msgstr "Sistema-fitxategien babeskopia"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Sector"
-msgstr "Sektorea"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Qatar"
-msgstr "Qatar"
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Base dn"
-msgstr "LDAP basea dn"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "Ezin duzu pakete hori hautatu: ez dago instalatzeko lekurik"
-
-#: ../../help.pm:1
-#, c-format
-msgid "generate auto-install floppy"
-msgstr "Sortu auto-instalazioko disketea"
+" <Tab>/<Alt-Tab> elem. aldatzeko | <Zuriunea> hautatzeko | <F12> hurr. pant. "
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr "Markatzeko modua"
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
+msgstr "kdesu falta da"
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr "Fitxategi-konpartitzea"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
+msgstr "consolehelper falta da"
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "Garbitu /tmp abiatzen den bakoitzean"
+#: ../../interactive.pm_.c:152
+msgid "Choose a file"
+msgstr "Aukeratu fitxategi bat"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malawi"
-msgstr "Malawi"
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
+msgstr "Aurreratua"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: false"
-msgstr "bertako konfig: gezurra"
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
+msgstr "Oinarrizkoa"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "System settings"
-msgstr "Sistemaren ezarpenak"
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
+msgstr "<- Aurrekoa"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Aukeratu sagu-mota."
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+msgid "Next"
+msgstr "Hurrengoa"
-#: ../../services.pm:1
-#, c-format
-msgid "running"
-msgstr "martxan"
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr "Aukera okerra, saiatu berriro\n"
-#: ../../standalone/harddrake2:1
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "class of hardware device"
-msgstr "hardware gailu klasea"
+msgid "Your choice? (default %s) "
+msgstr "Zure aukera? (%s lehenetsia) "
-#: ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-"Hauek dira bertan konektatutako inprimagailua eskuragarri eduki beharluketen "
-"makina eta sareak:"
-
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "Erresuma Batua"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Indonesia"
-msgstr "Indonesia"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "lehenetsia"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "France [SECAM]"
-msgstr "Frantzia [SECAM]"
-
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "murriztu"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "must have"
-msgstr "ezinbestekoa"
+"Zuk bete beharreko sarrerak:\n"
+"%s"
-#: ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm_.c:70
#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPSek ez ditu onartzen Novell zerbitzarietako inprimagailuak edo datuak "
-"libre osatutako komando batean bidaltzen dituztenak.\n"
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Zure aukera? (0/1, lehenetsia `%s' da) "
-#: ../../lang.pm:1
+#: ../../interactive/stdio.pm_.c:95
#, c-format
-msgid "Senegal"
-msgstr "Senegal"
+msgid "Button `%s': %s"
+msgstr "`%s' botoia: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Command line"
-msgstr "Komando lerroa"
+#: ../../interactive/stdio.pm_.c:96
+msgid "Do you want to click on this button?"
+msgstr "Botoi honetan klik egin nahi duzu?"
-#: ../advertising/08-store.pl:1
-#, 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:"
-msgstr ""
-"Gure Linux soluzioen aukera osoa, eta baita produktu eta beste \"gutizia\" "
-"batzutan eskaintza bereziak eskuragarri daude lerroan gure e-dendan:"
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
+msgstr " sartu 'void' sarrera hutsa jartzeko"
-#: ../../standalone/drakbackup:1
+#: ../../interactive/stdio.pm_.c:105
#, c-format
-msgid "March"
-msgstr "Martxoa"
+msgid "Your choice? (default `%s'%s) "
+msgstr "Zure aukera? (lehenetsia: `%s'%s) "
-#: ../../any.pm:1
+#: ../../interactive/stdio.pm_.c:123
#, c-format
-msgid "access to administrative files"
-msgstr "administrazio-fitxategien atzipena"
+msgid "=> There are many things to choose from (%s).\n"
+msgstr "=> Hainbat gauza dituzu aukeran (%s).\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../interactive/stdio.pm_.c:126
msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
msgstr ""
-"Errorea sendmail bitartez posta bidaltzean\n"
-" Berri emateko mezua ez da bidali\n"
-" Mesedez konfiguratu posta-bidalketa sendmail bitartez"
+"Aukeratu editatu nahi duzun 10 barrutiko lehen zenbakia,\n"
+"edo sakatu Sartu, jarraitzeko.\n"
+"Zure aukera? "
-#: ../../fs.pm:1
+#: ../../interactive/stdio.pm_.c:139
#, 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.)"
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
-"Ez utzi set-user-identifier edo set-group-identifier bitak\n"
-"eragina izan dezaten. (Segurua dirudi, baino egiaz nahiko arriskutsua da "
-"suidperl(1) instalatuta badaukazu.)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Menpekotasun automatikoak"
+"=> Kontuz, etiketa bat aldatu da:\n"
+"%s"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "Swap"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
+msgstr "Berriro bidali"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom settings"
-msgstr "Ezarpen pertsonalizatuak"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "txekiarra (QWERTZ)"
-#: ../../../move/move.pm:1
-#, 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."
-msgstr ""
-"Dirudienez USB giltzak idazketa babesa dauka, baino orain ezin dugu era\n"
-"seguruan desentxufatu.\n"
-"\n"
-"\n"
-"Sakatu botoia makina berrabiatzeko, desentxufatu giltza, kendu idazketa\n"
-"babesa, berriro konektatu giltza, eta jaurti berriro Mandrake Move."
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "alemana"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Other"
-msgstr "Leheneratu bestelakoak"
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Dvorak"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "Telebista-txartela"
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "espainiarra"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT zerbitzariko inprimagailua"
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "finlandiarra"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/CUPS _Konfiguratu"
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "frantsesa"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
-msgstr ", "
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "norvegiarra"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
-msgstr "Bidali lspci"
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "poloniarra"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Kendu hautatutako ostalari/sarea"
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "errusiarra"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix posta garraiatzeko agentea da (Mail Transport Agent - MTA), hau da, "
-"posta elektronikoa makina batetik bestera eramaten duen programa."
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
+msgstr "suediarra"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "Uzbekistandarra (zirilikoa)"
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "Erresuma Batuko teklatua"
-#: ../../keyboard.pm:1
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Hemen aukeratu dezakezu zein tekla edo tekla konbinaziok\n"
-"egingo duen teklatu mota ezberdinen arteko konmutazioa\n"
-"(adib: latindarra eta ez latindarra)"
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "Estatu Batuetako teklatua"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Sarea entxufatu-eta-erabili"
+#: ../../keyboard.pm_.c:167
+msgid "Albanian"
+msgstr "albaniarra"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr "baietz ezarrita, egiaztapen emaitza txostena tty-ra ematen du."
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
+msgstr "armeniarra (zaharra)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From CD"
-msgstr "Leheneratu CD-tik"
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
+msgstr "armeniarra (idazmakina)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Zure konputagailua Interneteko konexioa banatu dezan konfiguratzera zoaz.\n"
-"Eginbide horrekin, zure bertoko sareko konputagailuek zure konputagailuaren "
-"Internet konexioa erabili ahal izango dute.\n"
-"\n"
-"Zure Sare/Internet sarbidea drakconnect erabiliz konfiguratu duzula\n"
-"ziurtatu aurrera egin aurretik.\n"
-"\n"
-"Adi: Sare-moldagailu dedikatu bat behar duzu Bertako Eremuko Sare (LAN) bat "
-"konfiguratzeko."
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
+msgstr "armeniarra (fonetikoa)"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr ""
-"Aukeratu zein sare-moldagailu erabili nahi duzun Internetera konektatzeko"
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
+msgstr "azerbaijandarra (latinoa)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Argazki memoria txartelera sarbida zure HP gailu funtzio-anitzean"
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "belgikarra"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
-msgstr ""
-"Hobetu zure konputagailuaren funtzionamendua, Mandrake Linux-ekin "
-"bateragarri diren irtenbide profesionalak eskaintzen dituzten bazkide "
-"aukeratuen laguntzaz"
+#: ../../keyboard.pm_.c:178
+msgid "Bengali"
+msgstr "Bengaliarra"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
-msgstr "Egileak: "
+#: ../../keyboard.pm_.c:179
+msgid "Bulgarian (phonetic)"
+msgstr "Bulgariarra (fonetikoa)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Interneteko konexioa konpartitzea desgaituta dago orain."
+#: ../../keyboard.pm_.c:180
+msgid "Bulgarian (BDS)"
+msgstr "Bulgariarra (BDS)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr "baietz ezarrita, egiaztatu suid/sguid fitxategien checksum."
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
+msgstr "Brasildarra (ABNT-2)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latin American"
-msgstr "Latinamerikarra"
+#: ../../keyboard.pm_.c:184
+msgid "Bosnian"
+msgstr "Bosniarra"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Testu Japoniarra inprimatzeko modua"
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
+msgstr "Bielorrusiarra"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Old device file"
-msgstr "Gailu fitxategi zaharra"
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "Suitzarra (diseinu alemana)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "Info: "
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "Suitzarra (diseinu frantsesa)"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
-msgstr "`%s' botoia: %s"
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "Txekiarra (QWERTY)"
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Itxaron mesedez"
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr "Alemana (letra zaharkiturik ez)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
+msgstr "Devanagari"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "None"
-msgstr "Batere ez"
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "Daniarra"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Sartutako IP ez da zuzena.\n"
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Dvorak (AEB)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Mesedez ziurtatu cron deabrua zure zerbitzuen artean dagoen."
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (norvegiarra)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
-msgstr "Ethernet txartela"
+#: ../../keyboard.pm_.c:196
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (suediarra)"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete selected printer"
-msgstr "Ezabatu hautatutako inprimagailua"
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "Estoniarra"
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "Informazioa"
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Georgiarra (diseinu \"errusiarra\")"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "Instalatu"
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Georgiarra (diseinu \"latinoa\")"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Klikatu \"%s\" unitate zurrun honetan dauden datu eta partizio guztiak\n"
-"ezabatu nahi badituzu. Kontu izan, \"%s\" sakatu ondoren, ezin izango\n"
-"duzu unitate zurrun honetako daturik eta partiziorik berreskuratu,\n"
-"Windows-eko datuak barne.\n"
-"\n"
-"Klikatu \"%s\" botoia unitate zurrun honetako datu eta partiziorik\n"
-"galdu gabe eragiketa hau bertan behera uzteko."
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "Grekoa"
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "Irten instalaziotik"
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
+msgstr "Gujaratera"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
-msgstr "Giltza bat behar da zure datuak gordetzeko"
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
+msgstr "Gurmukhi"
-#: ../../standalone/drakgw:1
-#, 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)."
-msgstr ""
-"Dena konfiguratu da.\n"
-"Orain Interneteko konexioa konparti dezakezu sare lokaleko beste ordenagailu "
-"batzuekin, sare-konfigurazio automatikoa (DHCP) erabiliz."
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "Hungariarra"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Urruneko CUPS zerbitzaria"
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "Kroaziarra"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - Sagua"
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
+msgstr "Israeldarra"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Sare-moldagailu konfiguratu bakarra dago zure sisteman:\n"
-"\n"
-"%s\n"
-"\n"
-"Zure sare lokala moldagailu horrekin konfiguratzera noa."
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr "Israeldarra (fonetikoa)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
-msgstr "Bidali cpuinfo"
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr "Iraniarra"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Minimal install"
-msgstr "Gutxieneko instalazioa"
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr "Islandiarra"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "Etiopia"
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "Italiarra"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
-msgstr "BAI"
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
+msgstr "Inuktitut"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
-msgstr "Gaitu \"crontab\" eta \"at\" erabiltzaileentzako"
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
+msgstr "Japoniarra 106 tekla"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr "Devanagari"
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
+msgstr "Koreako teklatua"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- pci gailuak: txartela honen PCI zirritua, gailua eta funtzioa ematen du\n"
-"- eide gailuak: gailua nagusia edo morroia da\n"
-"- scsi gailuak: scsi busa eta scsi gailu id-ak"
+#: ../../keyboard.pm_.c:218
+msgid "Latin American"
+msgstr "Latinamerikarra"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Guztira: %d / %d MB"
+#: ../../keyboard.pm_.c:219
+msgid "Laotian"
+msgstr "Laostarra"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "disabled"
-msgstr "ezgaituta"
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
+msgstr "Lituaniako AZERTY (zaharra)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Search for new scanners"
-msgstr "Bilatu eskaner berrien bila"
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
+msgstr "Lituaniako AZERTY (berria)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Disabling servers..."
-msgstr "Zerbitzariak desgaitzen..."
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Lituaniako QWERTY \"ilara numerikoa\""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "%sren instalazioak huts egin du. Errore hau gertatu da:"
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Lituaniako QWERTY \"fonetikoa\""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr "Ezin da mkinitrd -f /boot/initrd-%s.img %s jaurti."
+#: ../../keyboard.pm_.c:225
+msgid "Latvian"
+msgstr "Letoniarra"
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
msgstr ""
-"Zerbitzari hau(ek) hautatu d(it)uzu: %s\n"
-"\n"
-"\n"
-"Zerbitzari horiek lehenespenez aktibatzen dira. Ez dute segurtasun-arazo\n"
-"ezagunik, baina berriren bat ager liteke. Kasu horretan, ahal bezain laster\n"
-"eguneratu behar duzu.\n"
-"\n"
-"\n"
-"Zerbitzari horiek benetan instalatu nahi dituzu?\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Sareko inprimagailua (TCP/socket-a)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup User files..."
-msgstr "Erabiltzaile-fitxategien babeskopia... "
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
+msgstr "Mazedoniarra"
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "Instalatu sistema"
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
+msgstr "Myanma (Birmaniarra)"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Lehen DNS zerbitzaria (aukerakoa)"
+#: ../../keyboard.pm_.c:229
+msgid "Mongolian (cyrillic)"
+msgstr "Mongoliarra (zirilikoa)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-"Bat edo beste, gailu-izena/fitxategi-izena zehaztu dezakezu sarrera lerroan"
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
+msgstr "Maltatarra (Erresuma Batua)"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
-"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
-"symlink /etc/security/msec/server to point to\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
-"add a service if it is present in the file during the installation of\n"
-"packages."
-msgstr ""
-"Baldin SERVER_LEVEL (edo falta bada, SECURE_LEVEL)\n"
-"3 baino handiago bada /etc/security/msec/security.conf fitxategian, \n"
-"/etc/security/msec/server symlink-a sortzen du\n"
-"/etc/security/msec/server.<SERVER_LEVEL> fitxategira apuntatzeko.\n"
-"\n"
-"chkconfig --add komandoak /etc/security/msec/server erabiltzen du\n"
-"zerbitzu bat eransteko erabakia hartzeko baldin eta fitxategian badago\n"
-"paketeen instalazioa egitean."
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
+msgstr "Maltatarra (AEB)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "Errusiarra (fonetikoa)"
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
+msgstr "Holandarra"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Config..."
-msgstr "dhcpd Ezarpena..."
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
+msgstr "Poloniarra (qwerty diseinua)"
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "LILO/grub instalazioa"
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
+msgstr "Poloniarra (qwertz diseinua)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "Israeldarra"
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
+msgstr "Portugesa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "\"%s\" inprimagailua \"%s\" zerbitzarian"
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr "Kanadarra (Quebec)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Disketea kendu dezakezu orain"
+#: ../../keyboard.pm_.c:239
+msgid "Romanian (qwertz)"
+msgstr "Errumaniarra (qwertz)"
-#: ../../help.pm:1
-#, c-format
-msgid "Truly minimal install"
-msgstr "Benetan instalazio minimoa"
+#: ../../keyboard.pm_.c:240
+msgid "Romanian (qwerty)"
+msgstr "Errumaniarra (qwerty)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "Danimarka"
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "Errusiarra (Yawerty)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "Partizioa lekuz aldatzen..."
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
+msgstr "Esloveniarra"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "(This) DHCP Server IP"
-msgstr "DHCP zerbitzariaren IPa"
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "Eslovakiarra (QWERTZ)"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Test of the configuration"
-msgstr "Konfigurazioaren proba"
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "Eslovakiarra (QWERTY)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing %s ..."
-msgstr "%s instalatzen..."
+#: ../../keyboard.pm_.c:248
+msgid "Serbian (cyrillic)"
+msgstr "Serbiarra (zirilikoa)"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Instalatzaileari esan badiozu banaka hautatutako paketeak nahi zenituela,\n"
-"pakete guztiak talde eta azpitaldeetan klasifikatuta dituen zuhaitz bat\n"
-"azalduko da. Zuhaitza arakatu bitartean, talde osoak hautatu ditzakezu,\n"
-"azpitaldeak, edo banakako paketeak.\n"
-"\n"
-"Pakete bat hautatzen duzun bakoitzean, deskribapen bat azaltzen da "
-"eskuinean\n"
-"paketearen helburua azaltzeko.\n"
-"\n"
-"!! Zerbitzari pakete bat hautatu bada, espezifikoki bere paketea banaka "
-"hartu\n"
-"duzulako edo pakete talde baten barruan zegoelako, zerbitzari horiek "
-"benetan\n"
-"instalatu nahi dituzula baieztatu dezazun eskatuko zaizu. Berez, Mandrake \n"
-"Linux-ek instalatutako zerbitzu guztiak abiapen garaian hasiko ditu. Nahiz "
-"eta\n"
-"seguruak izan banaketa sortu zen garaian, guztiz posible da segurtasun\n"
-"zulo horiek Mandrake Linux-en bertsioa amaitu eta gero arkitu izatea. Ez "
-"badakizu\n"
-"zerbitzu batek zer egiten duen edo zergatik instalatzen den, orduan klikatu\n"
-"\"%s\". \"%s\" Klikatuta zerrendatutako zerbitzuak instalatuko ditu eta\n"
-"automatikoki hasiko dira abiapenean. !!\n"
-"\n"
-"\"%s\" aukera, instalatzaileak menpekotasun arazo bat konpontzeko\n"
-"automatikoki pakete bat hautatzen duenean agertzen den oharpen mezua\n"
-"ezgaitzeko erabiltzen da. Pakete batzuk beraien artean erlazioa daukate eta\n"
-"horietako bat instalatu nahi izatean bestea ere instalatzeko eskatzen da.\n"
-"Instalatzaileak instalazioa burutu ahal izateko menpekotasunak asetzeko "
-"behar\n"
-"diren paketeak zehaztu dezake.\n"
-"\n"
-"Zerrendaren amaieran dagoen diskete ikono txikiak aurreko instalazio batean\n"
-"sortutako pakete zerrenda zamatzen du. Hau erabilgarria da berdin instalatu\n"
-"nahi duzun makina multzo bat daukazunean. Ikono honetan klikatuta aurrez\n"
-"beste instalazio baten amaieran sortutako diskete bat sartzeko eskatuko "
-"zaizu.\n"
-"Begiratu horrelako disketea nola sortu adierazten duen azken urratseko\n"
-"bigarren gomendioa.bat"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr "Aukeratu fitxategi-sistema enkriptatzeko gakoa"
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
+msgstr "Tamila (Unicode)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr "Sierra Leona"
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
+msgstr "Tamila (TSCII)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
-msgstr "Botswana"
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr "Thailandiako teklatua"
-#: ../../lang.pm:1
-#, c-format
-msgid "Andorra"
-msgstr "Andorra"
+#: ../../keyboard.pm_.c:254
+msgid "Tajik keyboard"
+msgstr "Tajikistango teklatua"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "(default value: %s)"
-msgstr "(balio lehenetsia: %s)"
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Turkiarra (tradizionala \"F\" eredua)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
-msgstr ""
-"Ezarri pasahitzaren adina \"max\" egunetan eta aldaketa atzeratu \"inactive"
-"\"-ra."
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Turkiarra (modernoa \"Q\" eredua)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Proba-orri alternatiboa (Letter)"
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr "Ukrainarra"
-#: ../../standalone/drakgw:1
-#, c-format
-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 ""
-"DHCP Zerbitzari Konfigurazioa.\n"
-"\n"
-"Hemen DHCP zerbitzari konfiguraziorako aukera desberdinak hautatu "
-"ditzakezu.\n"
-"Aukera baten esanahia ulertzen ez baduzu, utzi dagoen bezela.\n"
-"\n"
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "AEBetako teklatua (nazioartekoa)"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Choose an X server"
-msgstr "Aukeratu X zerbitzari bat"
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vietnamdarra QWERTY \"ilara numerikoa\""
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr "Memoriara kopiatzen CDROM-a kendu ahal izan dadin"
+#: ../../keyboard.pm_.c:263
+msgid "Yugoslavian (latin)"
+msgstr "Jugoslaviarra (latindarra)"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Swap partizioaren tamaina MBtan: "
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
+msgstr "Eskuineko Alt tekla"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No changes to backup!"
-msgstr "Ez dago babestu beharreko aldaketarik!"
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
+msgstr "Bi Maius teklak batera"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "Formateatua\n"
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
+msgstr "Kontrol eta Maius teklak batera"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Type of install"
-msgstr "Instalazio-mota"
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
+msgstr "BlokMaius tekla"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "\"%s\" inprimagailua \"%s\" SMB/Windows zerbitzarian"
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
+msgstr "Ktrl eta Alt teklak batera"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "komaz banaturiko %d zenbaki"
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
+msgstr "Alt eta Maius teklak batera"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"rusers protokoloak sare bateko erabiltzaileei beste makina batzuetan\n"
-"nor sartzen den identifikatzeko aukera ematen die."
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
+msgstr "\"Menu\" tekla"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Urrats automatikoen konfigurazioa"
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr "Ezkerreko \"Windows\" tekla"
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "Barbados"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
+msgstr "Eskuineko \"Windows\" tekla"
-#: ../advertising/02-community.pl:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
-msgstr ""
-"Iturburu Irekiaren Komunitateari buruz gehiago jakin nahi? Sar zaitez "
-"software librearen munduan!"
+msgid "Circular mounts %s\n"
+msgstr "%s muntaketa zirkularrak\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Hautatu babeskopia egiteko datuak..."
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
+msgstr "Kendu bolumen logikoak lehendabizi\n"
-#: ../../standalone/net_monitor:1
-#, c-format
+#: ../../modules.pm_.c:290
msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
-msgstr ""
-"Koneksioak hutsegin du.\n"
-"Egiaztatu zure konfigurazioa Mandrake Aginte Gunean."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+msgstr "PCMCIA euskarririk ez dago 2.2 nukleoentzat. Erabili 2.4 nukleoa."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
-msgstr "jasota"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
+msgstr "Moduluaren parametro bakoitza konfiguratu dezakezu hemen."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr "Gaitu su soilik wheel taldeko kideei edo edozein erabiltzaileri"
+#: ../../modules/parameters.pm_.c:18
+#, fuzzy
+msgid "modinfo is not available"
+msgstr "Ez dago diskete-unitate erabilgarririk"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
-msgstr "/Fitxategia/_Berria"
+#: ../../modules/parameters.pm_.c:50
+msgid "a number"
+msgstr "zenbaki bat"
-#: ../../standalone/drakgw:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "The DNS Server IP"
-msgstr "DNS Zerbitzariaren IP"
+msgid "%d comma separated numbers"
+msgstr "komaz banaturiko %d zenbaki"
-#: ../../standalone/drakTermServ:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "IP Range End:"
-msgstr "IP Barruti Amaiera:"
+msgid "%d comma separated strings"
+msgstr "komaz banaturiko %d karaktere-hilara"
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
-msgstr "Handia"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
+msgstr "komaz banaturiko zenbakiak"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Erantsi inprimagailu berria sistemari"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated strings"
+msgstr "komaz banaturiko karaktere-hilarak"
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr "BideorikEz"
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - Sagua"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
-msgstr "eremu honek gailua deskribatzen du"
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Star Office/OpenOffice.org/GIMP-n inprimagailua gehitzen"
+#: ../../mouse.pm_.c:33
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Gurpildun PS2 sagu generikoa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printers"
-msgstr "Inprimagailu lokalak"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation image directory"
-msgstr "Instalazio irudiaren direktorioa"
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking sagua"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "NIS zerbitzaria"
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Port: %s"
-msgstr "Ataka: %s"
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "Espainia"
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+msgid "Microsoft Explorer"
+msgstr "Microsoft Explorer"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
-msgstr "bertako konfig: %s"
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
+msgstr "Botoi 1"
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "Erabiltzaile-izen hau gehituta dago jadanik"
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "2 botoiko sagu generikoa"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
-msgstr "Aukeratu fitxategi bat"
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "Gurpila"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr "Aplikatu"
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "seriekoa"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Auto-detektatuta ataka eskuragarriak"
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "3 botoiko sagu generikoa"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr "San Marino"
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Interneteko konexioa konpartitzea desgaituta dago orain"
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Belgium"
-msgstr "Belgika"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
-msgstr "Kuwait"
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "Aukeratu exekutatu beharreko leiho-kudeatzailea:"
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
-msgstr "Abendua"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "MM Series"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "cpu-aren azpi-belaunaldia"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
-msgstr "Lehen Aldikorako Morroia"
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech sagua (seriekoa, C7 mota zaharrekoa)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Taiwan"
-msgstr "Taiwan"
+#: ../../mouse.pm_.c:68
+msgid "busmouse"
+msgstr "bus-sagua"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "Pakistan"
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "2 botoi"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "itxaron, fitxategia analizatzen: %s"
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "3 botoi"
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Errore bat gertatu da, baina ez dakit behar bezala maneiatzen.\n"
-"Jarraitu zure ardurapean."
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "bat ere ez"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Importance: "
-msgstr "Garrantzia: "
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "Sagurik gabe"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-"Lexmark inkjet eta konfigurazio honekin inprimatu ahal izateko, Lexmark-ek "
-"emandako inkjet inprimagailu-gidariak behar dituzu (http://www.lexmark."
-"com/). Klikatu \"Drivers\" estekan. Gero aukeratu eredua eta ondoren \"Linux"
-"\" sistema eragile gisa. Gidariak RPM pakete gisa edo instalazio grafiko "
-"interaktiboa duten shell script gisa egoten dira. Ez da beharrezkoa "
-"konfigurazio hau bitarteko grafikoen bidez egitea. Ezeztatu zuzenean "
-"lizentzia-kontratuaren ondoren. Gero inprimatu inprimatze-burua lerrokatzeko "
-"orriak \"lexmarkmaintain\"ekin eta doitu burua lerrokatzeko ezarpenak "
-"programa honekin."
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
+msgstr "Probatu sagua"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Permissions"
-msgstr "Baimenak"
+#: ../../mouse.pm_.c:491
+msgid "To activate the mouse,"
+msgstr "Sagua aktibatzeko,"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Hornitzailearen izena (adib. hornitzailea.net)"
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr "MUGITU GURPILA!"
-#: ../../install_steps_gtk.pm:1
-#, 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'."
-msgstr ""
-"Sistemak baliabide gutxi ditu. Arazoak izan ditzakezu Mandrake \n"
-"Linux instalatzeko. Horrela bada, testu-instalazioa egiten saia zaitezke. "
-"Horretarako,\n"
-"sakatu `F1' CDROMetik abiaraztean, gero sartu `text'."
+#: ../../my_gtk.pm_.c:65
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "Erabili Windows partizioa atzera-begiztarako"
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
+msgstr "Amaitu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
-msgstr "armeniarra (idazmakina)"
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
+msgstr "Hurrengoa ->"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection type: "
-msgstr "Konexio-mota: "
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "Zuzena da?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Graphical interface"
-msgstr "Interfaze grafikoa"
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "Informazioa"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "Txad"
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
+msgstr "Zabaldu zuhaitza"
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "India"
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
+msgstr "Tolestu zuhaitza"
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s 3D hardware-azelerazioarekin"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr "Txandakatu alfabetikoaren eta taldeka ordenatuaren artean"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr "Eslovakia"
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "erabili pppoe"
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "Singapur"
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
+msgstr "erabili pptp"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "Kanbodia"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
+msgstr "erabili dhcp"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Monitorearen SinkHoriz: %s\n"
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
+msgstr "Alcatel speedtouch usb"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr "Bidea"
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
-msgstr "EZ DA AURKITU"
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
+msgstr "Konektatu Internetekin"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:30
msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-"Hemen lana inprimagailura zuzenean bidali baino bideratu behar den edonolako "
-"komandu lerro zehaztu dezakezu."
+"adsl-rekin konektatzeko modurik ohikoena pppoe da.\n"
+"Konexio batzuek pptp erabiltzen dute, bakan batzuek dhcp.\n"
+"Ez badakizu, aukeratu 'erabili pppoe'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:166
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?"
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-"(%s) inprimatze-sistema ez da automatikoki hasiko makina abiarazten denean.\n"
-"\n"
-"Baliteke abiarazte automatikoa desaktibatuta egotea segurtasun-maila "
-"handiagora aldatu delako, eta inprimatze-sistema eraso-gune potentziala "
-"delako.\n"
-"\n"
-"Inprimatze-sistema automatikoki hastea berriro aktibatu nahi duzu?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"%s inprimagailua\n"
-"Zer da inprimagailu honetan aldatu nahi duzuna?"
+#: ../../network/drakfirewall.pm_.c:12
+msgid "Web Server"
+msgstr "Web Zerbitzaria"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add host"
-msgstr "Erantsi ostalaria"
+#: ../../network/drakfirewall.pm_.c:17
+msgid "Domain Name Server"
+msgstr "Domeinuko Izen Zerbitzaria"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:32
+msgid "Mail Server"
+msgstr "Posta Zerbitzaria"
+
+#: ../../network/drakfirewall.pm_.c:37
+msgid "POP and IMAP Server"
+msgstr "POP eta IMAP Zerbitzaria"
+
+#: ../../network/drakfirewall.pm_.c:111
+msgid "No network card"
+msgstr "Ez dago sare-txartelik"
+
+#: ../../network/drakfirewall.pm_.c:129
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"
+"drakfirewall configurator\n"
"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"Zure txartelarentzako gidari zuzena zein den dakizula uste baduzu\n"
-"goiko zerrendatik bat hartu dezakezu.\n"
+"drakfirewall konfiguratzailea\n"
"\n"
-"Zure \"%s\" soinu txartelak une honetan erabiltzen duen gidaria \"%s\" da "
+"Honek Mandrake Linux makina honentzako suhesi pertsonala konfiguratzen du.\n"
+"Suhesi izatera zuzendutako soluzio ahaltsua nahi baduzu, mesedez begiratu\n"
+"MandrakeSecurity Firewall banaketa espezializatua."
-#: ../../any.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:135
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"
+"drakfirewall configurator\n"
"\n"
-"\"Custom\" permit a per-user granularity.\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-"Erabiltzaileei beraien direktorioetako batzuk elkarbanatzen utzi nahi "
-"zenieke?\n"
-"Baimena ematen baduzu konqueror eta nautilus-en \"Elkarbanatu\" gainean klik "
-"eginez egin ahalko dute.\n"
+"drakfirewall konfiguratzailea\n"
"\n"
-"\"Pertsonalizatua\" erabiliz erabiltzaile bakoitzarentzako ezarpena zehaztu "
-"daiteke.\n"
+"Zure Sare/Internet sarbidea drakconnect erabiliz konfiguratu duzula\n"
+"ziurtatu aurrera egin aurretik."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr "Zein zerbitzuetara konektatzen utzi nahi duzu Internetetik?"
+
+#: ../../network/drakfirewall.pm_.c:153
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-"Aukeratu pakete-hautapena disketean kargatzea edo gordetzea.\n"
-"Formatua instalazio automatikoa egiteko sortutako disketeena bezalakoa da."
+"Beste portu batzu sartu ditzakezu.\n"
+"Adibide onargarriak dira: 139/tcp 139/udp.\n"
+"Begiratu /etc/services informazioa jasotzeko."
-#: ../../../move/tree/mdk_totem:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
-msgid "No CDROM support"
-msgstr "CDROM euskarriarik ez"
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+"Portu onartezina: %s.\n"
+"Formatu egokiak \"portua/tcp\" edo \"portu/udp\" dira,\n"
+"non portua 1 eta 65535 artean dagoen."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "China (broadcast)"
-msgstr "Txina (bcast)"
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
+msgstr "Guztia (suhesirik gabe)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use quota for backup files."
-msgstr "Erabili kuota babeskopia-fitxategientzat"
+#: ../../network/drakfirewall.pm_.c:169
+msgid "Other ports"
+msgstr "Beste portu batzu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "\"%s\" inprimagailua ezartzen..."
+#: ../../network/ethernet.pm_.c:37
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
+msgstr ""
+"Zein dhcp bezero erabili nahi duzu?\n"
+"Lehenetsia dhcp-client da"
-#: ../../fs.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:88
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."
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-"Galarazi edozein bitarren exekuzioa muntatutako fitxategi\n"
-"sisteman. Aukera hau erabilgarria izan liteke berea ez den egitura "
-"batentzako\n"
-"bitarrak dituen fitxategi sistema duen zerbitzari batentzat."
+"Zure sisteman ez da ethernet sare-moldagailurik detektatu.\n"
+"Ezin dut konexio-mota hau konfiguratu."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection"
-msgstr "Interneteko konexioa"
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
+msgstr "Aukeratu sare-interfazea"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:93
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
+"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
-"Huts egin du %s modulua kargatzean.\n"
-"Beste parametro batzuekin saiatu nahi duzu berriro?"
+"Aukeratu zein sare-moldagailu erabili nahi duzun Internetera konektatzeko"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr "Ongi etorri iturburu irekiaren mundura"
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "ez da sare-txartelik aurkitu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnia Herzegovina"
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "Sarea konfiguratzen"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:201
msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
-"Egiazko fitxategi-sistema (ext2/ext3, reiserfs, xfs, or jfs) behar duzu "
-"muntatze-puntu honentzako\n"
+"Sartu zure ostalari-izena, baldin badakizu.\n"
+"DHCP zerbitzari batzuek ostalari-izena behar dute funtzionatzeko.\n"
+"Ostalari-izenak osoa izan behar du, erabat kualifikatua,\n"
+"esate baterako, ``mybox.mylab.myco.com''."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Ostalari-izena edo IP-a sartu behar duzu.\n"
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "Ostalari-izena"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "Herbehereak"
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+msgid "Network Configuration Wizard"
+msgstr "Sarea konfiguratzeko morroia"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files by FTP"
-msgstr "FTP bitartez fitxategiak bidaltzen"
+#: ../../network/isdn.pm_.c:22
+msgid "External ISDN modem"
+msgstr "Kanpoko ISDN modema"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
msgstr "Barneko ISDN txartela"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
+msgstr "Nolakoa da zure ISDN konexioa?"
+
+#: ../../network/isdn.pm_.c:45
msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
msgstr ""
-"Ez dago OSS/ALSA gidari alternatibo ezagunik zure (%s) soinu "
-"txartelarentzat, orain \"%s\" erabiltzen du"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Title"
-msgstr "Izenburua"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Instalatu eta bihurtu letra-tipoak"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
-msgstr "ADI"
+"Zein ISDN konfigurazio duzu nahiago?\n"
+"\n"
+"* Konfigurazio zaharrak isdn4net erabiltzen du. Tresna ahaltsuak\n"
+" dauzka, baina korapilatsua da konfiguratzeko, eta ez da estandarra.\n"
+"\n"
+"* Konfigurazio berria errazagoa da ulertzeko, estandarragoa,\n"
+" baina tresna gutxiago ditu.\n"
+"\n"
+"Konfigurazio erraza gomendatzen dugu.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
-msgstr "Abioko kargatzailea instalatzen"
+#: ../../network/isdn.pm_.c:54
+msgid "New configuration (isdn-light)"
+msgstr "Konfigurazio berria (isdn-light)"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "replay"
-msgstr "Errepikatu"
+#: ../../network/isdn.pm_.c:54
+msgid "Old configuration (isdn4net)"
+msgstr "Konfigurazio zaharra (isdn4net)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
-msgstr "%s detektatua"
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "ISDN konfigurazioa"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/isdn.pm_.c:166
msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
-"Expect, Tcl script hizkuntzaren hedapen bat da, erabiltzaiearen parte "
-"hartzerik gabe saio interaktiboak ahalbidetzen dituena."
+"Hautatu hornitzailea.\n"
+" Zerrendan ez badago, aukeratu Zerrendatu gabe"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr "Birjina Uharteak (Amerikarrak)"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol"
+msgstr "Europako protokoloa"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "Babeskopia txarra"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol (EDSS1)"
+msgstr "Europako protokoloa (EDSS1)"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/isdn.pm_.c:181
+msgid "Protocol for the rest of the world"
+msgstr "Munduko gainerako protokoloa"
+
+#: ../../network/isdn.pm_.c:181
msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
-"Interneteko konexioa konpartitzeko konfigurazioa eginda dago.\n"
-"Desgaituta dago orain.\n"
-"\n"
-"Zer egin nahi duzu?"
+"Munduko gainerako protokoloa \n"
+" D kanalik ez (linea alokatuak)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-"Sartu erabili nahi duzun inprimagailua duen ostalariaren IP helbidea eta "
-"portua."
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
+msgstr "Zein protokolo erabili nahi duzu?"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid "Pipe into command"
-msgstr "Bideratu komando batera"
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr "\"%s\" interfazea bilatu da, erabili nahi duzu?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Zure ordenagailuko hardware batzuek kontrolatzaile ``jabea'' behar dute.\n"
-"Horiei buruzko informazioa hemen aurki dezakezu: %s"
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
+msgstr "Nolako txartela duzu?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "Haiti"
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
+msgstr "Ez dakit"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "Gailuak detektatzen..."
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"Pertsonalizatuak zure eguna eta ordua zehazten uzten dizu. Beste aukerek run-"
-"parts erabiltzen dituzte \"/etc/crontab\"-en."
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/isdn.pm_.c:210
msgid ""
-"Description of the fields:\n"
"\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
-"Eremuen azalpena:\n"
"\n"
+"ISA txartela baduzu, hurrengo pantailako balioek zuzenak izan behar dute.\n"
+"\n"
+"PCMCIA txartela baduzu, txartelaren irq eta io jakin behar dituzu.\n"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Basic options"
-msgstr "Oinarrizko Aukerak"
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "Abortatu"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
-msgstr "CPU-aren izena"
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
+msgstr "Jarraitu"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr "Onartu IPv4 akats mezu faltsuak"
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
+msgstr "Zein da zure ISDN txartela?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Inprimagailuaren datuak freskatzen..."
+#: ../../network/isdn.pm_.c:239
+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 ""
+"ISDN PCI txartel bat detektatu dut, baina ez dakit zein motatakoa den. "
+"Hautatu PCI txartel bat hurrengo pantailan."
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr "%s ere formateatu behar duzu"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "Ez da ISDN PCI txartelik aurkitu. Hautatu bat hurrengo pantailan."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "Kontuz ibili: eragiketa hau arriskutsua da."
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Aukeratu modema konektatuta dagoen serieko ataka."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "Sartu pakete-hautapena daukan diskete bat"
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "Telefonoz deitzeko aukerak"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server: "
-msgstr "Zerbitzaria: "
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr "Konexio-izena"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Alerts:"
-msgstr "Segurtasun Alertak:"
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
+msgstr "Telefono-zenbakia"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
-msgstr "Suedia"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "Saio-hasierako ID"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Erabili Expect SSH-rentzako"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr "CHAP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "Polonia"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Other ports"
-msgstr "Beste portu batzu"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "Script-ean oinarritua"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "mmap erabiliz eskuratzerako eskuratze buffer kopurua"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "Terminalean oinarritua"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid " - detected"
-msgstr " - detektatuta"
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "Domeinu-izena:"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr "SMBus kontrolatzaileak"
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+msgid "First DNS Server (optional)"
+msgstr "Lehen DNS zerbitzaria (aukerakoa)"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Konexioaren denbora-muga (segundotan)"
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+msgid "Second DNS Server (optional)"
+msgstr "Bigarren DNS zerbitzaria (aukerakoa)"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/modem.pm_.c:95
msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-"hasierako i486DX-100 txip batzuk ezin dute era fidagarrian modu operatibora "
-"itzuli \"halt\" agindua erabili ondoren"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Croatian"
-msgstr "Kroaziarra"
-#: ../../help.pm:1
-#, c-format
-msgid "Use existing partition"
-msgstr "Dagoen partizioa erabili"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Ezin da %s ispilua kontaktatu"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Laguntza/_Honi buruz..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Kendu erabiltzaile-direktorioak leheneratu aurretik."
-
-#: ../../printer/printerdrake.pm:1
+#: ../../network/modem.pm_.c:97
#, 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?"
+"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
-"Urruneko inprimagailu bat konfiguratzera zoaz. Sarerako sarbidea behar duzu "
-"horretarako, baina sarea konfiguratu gabe dago. Aurrera jarraitzen baduzu "
-"sarea konfiguratu gabe, ezin izango duzu orain konfiguratzen ari zaren "
-"inprimagailua erabili. Zer egin nahi duzu?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "CUPS inprimagailu konfigurazioa"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr "ezin izan da letra-tiporik aurkitu muntatutako partizioetan"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
-msgstr "F00F akatsa"
-
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Domain Name:"
-msgstr "Domeinu Izena:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Root umask"
-msgstr "Root umask"
-
-#: ../../any.pm:1
-#, c-format
-msgid "On Floppy"
-msgstr "Disketean"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reboot by the console user"
-msgstr "Berrabiatu erabiltzailearen kontsolaren bitartez"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore"
-msgstr "Leheneratu"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Server:"
-msgstr "Zerbitzaria:"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Do nothing"
+msgstr "bat ez badatoz"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
-msgstr "baietz ezarrita, egiaztatu sareko gailuak modu promiskuoan dauden."
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Install rpm"
+msgstr "Instalatu"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Pakete erabilgarriak bilatzen"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Title"
+msgstr "Taula"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
+#: ../../network/netconnect.pm_.c:29
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-"Itxoin mesedez, sistemaren konfigurazio fitxategiak USB giltzan ezartzen..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
-msgstr "Hasierako mezua"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "Berreskuratu partizio-taula"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "Zipre"
+"\n"
+"Deskonektatu egin zaitezke edo konexioa birkonfiguratu."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection complete."
-msgstr "Konexio osatua."
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr ""
+"\n"
+"Konexioa birkonfigura dezakezu."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "Kendu RAIDetik"
+#: ../../network/netconnect.pm_.c:29
+msgid "You are currently connected to internet."
+msgstr "Orain Internetekin konektatuta zaude."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
+#: ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
msgstr ""
-"Enkriptatze-gako hau sinpleegia da (gutxienez %d karaktere izan behar ditu)"
+"\n"
+"Internetekin konekta zaitezke, edo konexioa birkonfiguratu."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Ezarpen Morroia"
+#: ../../network/netconnect.pm_.c:32
+msgid "You are not currently connected to Internet."
+msgstr "Orain ez zaude Internetekin konektatuta."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN konexioa"
+#: ../../network/netconnect.pm_.c:36
+msgid "Connect"
+msgstr "Konektatu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CDROM / DVDROM"
+#: ../../network/netconnect.pm_.c:37
+msgid "Disconnect"
+msgstr "Deskonektatu"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
-msgstr "lehenengo mailakoa"
+#: ../../network/netconnect.pm_.c:38
+msgid "Configure the connection"
+msgstr "Konfiguratu konexioa"
-#: ../../printer/main.pm:1
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
+msgstr "Interneteko konexioa eta konfigurazioa"
+
+#: ../../network/netconnect.pm_.c:94
#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr "\"%s\" SMB/Windows zerbitzarian, elkarbanatu \"%s\""
+msgid "We are now going to configure the %s connection."
+msgstr "%s konexioa konfiguratuko dugu orain."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
+#: ../../network/netconnect.pm_.c:103
#, 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"
-"!!"
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press OK to continue."
msgstr ""
-"Elkarrizketa hau abiapen garaian zein zerbitzu hasi nahi dituzun "
-"aukeratzeko\n"
-"erabiltzen da.\n"
"\n"
-"DrakX-ek instalazio honetan eskuragarri dauden zerbitzuak zerrendatuko\n"
-"ditu. Aztertu bakoitza arretaz eta kendu marka abiapen garaian behar ez\n"
-"direnei.\n"
"\n"
-"Zerbitzuari buruzko azalpen testu motz bat erakutsiko da aukeratzen denean.\n"
-"Hala ere, zerbitzu bat erabilgarria den edo ez ziur ez bazaude, hobe da "
-"berez\n"
-"duen egoeran uztea.\n"
-"\n"
-"!! Fase honetan, izan zaitez oso arduratxua makina hau zerbitzari gisa "
-"erabiltzeko\n"
-"asmoa badaukazu: seguraski ez duzu behar ez duzun zerbitzurik hasi nahiko.\n"
-"Mesedez gogoratu zenbait zerbitzu arriskutsuak izan daitezkeela zerbitzari\n"
-"batean gaitzen badira. Orokorrean, aukeratu soilik behar dituzun "
-"zerbitzuak.\n"
-"!!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niue"
-msgstr "Niue"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "Saltatu"
+"\n"
+"%s konexioa konfiguratuko dugu orain.\n"
+"\n"
+"\n"
+"Jarraitzeko, sakatu Ados."
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Abioan hasteko konfiguratuta dauden sare-interfaze guztiak\n"
-"aktibatzen/desaktibatzen ditu."
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr "Sare-konfigurazioa"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/netconnect.pm_.c:133
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)"
+"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 ""
-"CPUaren maiztasuna MHz-tan (Megahertz-ak lehenengo hurbilketa batean, eta "
-"sinplifikazio bat eginez, segundoko cpu-ak exekutatu dezaken agindu kopurua "
-"da)"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "important"
-msgstr "garrantzitsua"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "Mandrake Linux Inprimagailu Kudeaketa Tresna"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
-msgstr "Guztizko progresioa"
+"Sare-instalazioa egiten ari zarenez, zure sarea konfiguratuta dago jadanik.\n"
+"Hautatu Ados zure konfigurazioa mantentzeko, edo hautatu Utzi Internet eta "
+"Sare-konexioa birkonfiguratzeko.\n"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:157
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"
+"Welcome to The Network Configuration Wizard.\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."
+"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 ""
-"DrakX-ek lehenengo zure konputagailuan dagoen edozein IDE gailu detektatuko\n"
-"du. Zure sisteman PCI SCSI txartelen bila ere arituko da. SCSI txartelik "
-"aurkitzen\n"
-"bada, DrakX-ek automatikoki instalatuko du dagokion gidaria.\n"
-"\n"
-"Hardwarearen detekzioan akatsak eman daitezkeenez, baliteke DrakX-ek zure\n"
-"unitate zurrunak detektatzean hutsegitea. Hala gertatzen bada zure "
-"hardwarea\n"
-"eskuz zehaztu beharko duzu.\n"
-"\n"
-"Zure PCI SCSI moldagailua eskuz zehaztu behar izan baduzu, DrakX-ek\n"
-"berarentzako aukerak ezarri nahi dituzun galdetuko dizu. DrakX-i, "
-"moldagailua\n"
-"hasieratzeko behar diren txartelaren aukera espezifikoetarako hardwarea\n"
-"frogatzen utzi beharko zenioke. Aldi gehienentan, DrakX-ek urrats hau "
-"arazorik\n"
-"gabe gaindituko du.\n"
+"Ongi etorri Sarea konfiguratzeko morroira\n"
"\n"
-"DrakX ez bada hardwareari zein parametro pasatu behar zaizkion automatikoki\n"
-"zehazten duten aukerak frogatzeko gauza, eskuz ezarri beharko duzu gidaria."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr "Aruba"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "Erabiltzaileak"
+"Zure Internet/sare-konexioa konfiguratzera goaz.\n"
+"Ez baduzu auto-detekzioa erabili nahi, desautatu kontrol-laukia.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Abioko kargatzailea prestatzen"
+#: ../../network/netconnect.pm_.c:163
+msgid "Choose the profile to configure"
+msgstr "Aukeratu konfiguratzeko profila"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
-"Sartu zure erabiltzaile informazioa, pasahitza pantaila-zainarentzako "
-"erabiliko da"
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
+msgstr "Erabili auto-detekzioa"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Atebidea (adib. %s)"
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
+msgstr "Aditu modua"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
-msgstr "Pasahitzak ez datoz bat"
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
+msgstr "Gailuak detektatzen..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "IP zuzenen adibideak:\n"
+#: ../../network/netconnect.pm_.c:214
+msgid "Normal modem connection"
+msgstr "Modem-konexio normala"
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm_.c:214
#, c-format
-msgid "Please choose the media for backup."
-msgstr "Mesedez aukeratu babeskopia egiteko euskarria."
+msgid "detected on port %s"
+msgstr "%s atakan detektatua"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Maiztasuna (MHz)"
+#: ../../network/netconnect.pm_.c:215
+#, fuzzy
+msgid "Winmodem connection"
+msgstr "Modem-konexio normala"
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Gordetako pakete-hautapen hau erabiltzeko, abiarazi instalazioa ``linux "
-"defcfg=floppy''rekin"
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "detected"
+msgstr "%s detektatua"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of the processor"
-msgstr "prozesatzailearen zenbakia"
+#: ../../network/netconnect.pm_.c:216
+msgid "ISDN connection"
+msgstr "ISDN konexioa"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Hardwarearen ordua GMTn ezarria"
+msgid "detected %s"
+msgstr "%s detektatua"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "Konfigurazio berri bat abiatu hasi duzu?"
+#: ../../network/netconnect.pm_.c:217
+msgid "ADSL connection"
+msgstr "ADSL konexioa"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Give a file name"
-msgstr "Eman fitxategi-izen bat"
+#: ../../network/netconnect.pm_.c:218
+msgid "Cable connection"
+msgstr "Kable-konexioa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Aukeratu inprimagailua konektatuta dagoen ataka."
+#: ../../network/netconnect.pm_.c:218
+msgid "cable connection detected"
+msgstr "kable bidezko konexioa detektatu da"
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "Aldatu CDROMa"
+#: ../../network/netconnect.pm_.c:219
+msgid "LAN connection"
+msgstr "Sare lokaleko konexioa (LAN)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "Paraguai"
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
+msgstr "ethernet txartela(k) detektatuta"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "Konfigurazioa osatu da, ezarpenak gauzatu nahi dituzu?"
+#: ../../network/netconnect.pm_.c:222
+msgid "Choose the connection you want to configure"
+msgstr "Aukeratu konfiguratu nahi duzun konexioa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
+#: ../../network/netconnect.pm_.c:246
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
-"Erabili babeskopia Inkrementalak/Diferentzialak (ez ordeztu babeskopia "
-"zaharrak)"
+"Internetera konektatzeko modu bat baino gehiago konfiguratu duzu.\n"
+"Aukeratu erabili nahi duzuna.\n"
+"\n"
-#: ../../standalone/drakTermServ:1
-#, 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:"
-msgstr ""
-" - Mantendu /etc/dhcpd.conf:\n"
-" \tBezeroak saretik abiatzeko, bezero bakoitzak dhcpd.conf sarrera "
-"batbehar du, makinari\n"
-" \tIP helbidea eta sareko abiapen irudia emateko. drakTermServ-"
-"eksarrera hauek\n"
-" \tsortzen/ezabatzen laguntzen du.\n"
-"\t\t\t\n"
-" \t(PCI txartelek irudia ahaztu dezakete - etherboot-ek iruidi zuzena "
-"eskatuko du. \n"
-"\t\t\tKontutan izan beharko zenuke etherboot-ek irudien bila dabilenean, "
-"boot-3c59x.nbi\n"
-"\t\t\tbezelako izenak espero dituela boot-3c59x.2.4.19-16mdk.nbi bezalakoak "
-"baino).\n"
-"\t\t\t \n"
-" \tDiskorik gabeko bezero bati euskarria emateko dhcpd.conf sarrera "
-"tipiko batek horrelako itxura dauka:"
+#: ../../network/netconnect.pm_.c:247
+msgid "Internet connection"
+msgstr "Interneteko konexioa"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr "Ez dago zure soinu txartelarentzako gidari ezagunik (%s)"
+#: ../../network/netconnect.pm_.c:253
+msgid "Do you want to start the connection at boot?"
+msgstr "Abioan hasi nahi duzu konexioa?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "force"
-msgstr "behartu"
+#: ../../network/netconnect.pm_.c:267
+msgid "Network configuration"
+msgstr "Sare-konfigurazioa"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Exit"
-msgstr "Irten"
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
+msgstr "Sarea berrabiarazi egin behar da"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/netconnect.pm_.c:272
#, c-format
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
msgstr ""
-"OHARRA: Inprimagailu eredua eta inprimaketa sistemaren arabera %d MB-etik "
-"gora software gehigarri instalatuko da."
+"Arazo bat izan da sarea berrabiaraztean: \n"
+"\n"
+"%s"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../network/netconnect.pm_.c:282
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
-"Ez duzu interfaze konfiguraturik.\n"
-"Konfigura itzazu lehendabizi, 'Konfiguratu'n klik eginda"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "Estoniarra"
+"Zorionak, sarearen eta Interneten konfigurazioa amaitu da.\n"
+"\n"
+"Konfigurazioa zure sistemari aplikatuko zaio orain.\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:286
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
-"Apache World Wide Web-eko zerbitzari bat da. HTML fitxategiak eta CGI "
-"zerbitzatzeko erabili ohi da."
+"Ondoren, zure X ingurunea berrabiaraztea gomendatzen dugu,\n"
+"ostalari-izena aldatzearen arazoa saihesteko."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/netconnect.pm_.c:287
msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
+"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 ""
-"Adierazi CD idazgailuaren gailu-izena\n"
-" adib: 0,1,0"
+"Arazoak izan dira konfigurazioan zehar.\n"
+"Probatu konexioa net_monitor edo mcc bidez. Konexioak funtzionatzen ez badu, "
+"konfigurazioa berrabiarazi beharko duzu"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ALL"
-msgstr "DENA"
+#: ../../network/network.pm_.c:278
+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 ""
+"ABISUA: Gailu hau Internetera konektatzeko konfiguratu da aldez aurretik.\n"
+"Gailu hau konfiguratuta mantentzeko, onartu, besterik gabe.\n"
+"Ondoko eremuak aldatzen badituzu konfigurazio hau gainidatziko da."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Gehitu/Ezabatu Bezeroak"
+#: ../../network/network.pm_.c:283
+msgid ""
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
+msgstr ""
+"Sartu makina honen IP konfigurazioa.\n"
+"Elementu bakoitza IP helbide gisa sartu behar da puntuz\n"
+"bereizitako zenbakizko notazioan (adibidez, 1.2.3.4)."
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "Choose the network interface"
-msgstr "Aukeratu sare-interfazea"
+msgid "Configuring network device %s"
+msgstr "Sareko %s gailua konfiguratzen"
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../network/network.pm_.c:294
#, c-format
-msgid "Unknown Model"
-msgstr "Modelo ezezaguna"
+msgid " (driver %s)"
+msgstr " (%s kontrolatzailea)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
-msgstr "CD/DVD grabagailuak"
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "IP helbidea"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Lehenespenez abiarazteko partizioa\n"
-" (MS-DOS abiorako, ez lilo-rako)\n"
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr "Sare-maskara"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Gaitu \"%s\" fitxategiak irakurtzeko"
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image"
-msgstr "aukeratu irudia"
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "IP automatikoa"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Suebaki-konfigurazioa detektatu da!"
+#: ../../network/network.pm_.c:299
+msgid "Start at boot"
+msgstr "Abioan abiaraztekoa"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "Konexio-izena"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP helbideak 1.2.3.4 formatua izan behar du"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../network/network.pm_.c:326
msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-"testu-laukiaren x koordenatua\n"
-"karaktere kopurutan"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/network.pm_.c:330
msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
msgstr ""
-"Baliteke lilo ezin instalatu izatea (lilo-k ezin du LV bat PV anitzetan "
-"erabili)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Updating package selection"
-msgstr "Pakete-hautapena eguneratzen"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "Non muntatu nahi duzu %s loopback fitxategia?"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../network/network.pm_.c:350
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"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 ""
-"Disketea behar bezala sortu da.\n"
-"Orain zure instalazioa errepika dezakezu."
+"Sartu zure ostalari-izena.\n"
+"Ostalari-izenak osoa izan behar du, erabat kualifikatua,\n"
+"esate baterako, ``mybox.mylab.myco.com''.\n"
+"Atebidearen IP helbidea ere sar dezakezu, baldin baduzu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Erabili CD/DVDROMa babeskopia egiteko"
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "DNS zerbitzaria"
-#: ../../standalone/harddrake2:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "saguak duen botoi kopurua"
+msgid "Gateway (e.g. %s)"
+msgstr "Atebidea (adib. %s)"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
-msgstr "Errepikatu"
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "Atebide-gailua"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup other files"
-msgstr "Bestelako fitxategien babeskopia"
+#: ../../network/network.pm_.c:363
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "DNS zerbitzariaren helbidea 1.2.3.4 formatuan egon behar luke"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "Ez dago diskete-unitate erabilgarririk"
+#: ../../network/network.pm_.c:367
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Atariaren helbidea 1.2.3.4 formatuan egon behar luke"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Babeskopien fitxategiak hondatuta daude"
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
+msgstr "Proxy-en konfigurazioa"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
-msgstr "TB araua :"
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "HTTP proxy-a"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr "Cpuid familia"
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "FTP proxy-a"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
+msgstr "Sare-txartelaren identifikazioa (eramangarrientzat baliagarria)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: thin"
-msgstr "mota: mehea"
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
+msgstr "Proxy-ak http://... izan behar du"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lituaniako AZERTY (berria)"
+#: ../../network/network.pm_.c:388
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "URLaren hasieran 'ftp:' edo 'http:' egon behar da"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
-"baiezkoak adierazten du koprozesatzaile aritmetikoak salbuespen bektore bat "
-"erantsita daukala"
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
+msgstr "Suebaki-konfigurazioa detektatu da!"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/shorewall.pm_.c:27
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"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
-"Software RAID partizio bat hautatu duzu erro gisa (/).\n"
-"Ez dago abioko kargatzailerik hori /boot partiziorik gabe erabil "
-"dezakeenik.\n"
-"Ziurtatu /boot eransteaz"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "Beste SE bat (MacOS...)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Sagua aktibatzeko,"
+"Kontuz! Lehendik dagoen suebaki-konfigurazio bat detektatu da. Beharbada "
+"eskuz konponketa batzuk egin beharko dituzu instalazioaren ondoren."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "Sarea irekitzen"
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
+msgstr "Interneteko konfigurazioa"
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr ""
-"%s(e)n instalazioa egindakoan pantaila-argazkiak erabilgarri egongo dira"
+#: ../../network/tools.pm_.c:58
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Internetera orain konektatu nahi duzu?"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, 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:\")."
-msgstr ""
-"Windows partizio bat baino gehiago detektatu da zure unitate zurrunean.\n"
-"Mesedez hautatu zeini aldatu nahi diozun neurria zure Mandrake Linux\n"
-"sistema eragile berria instalatu ahal izateko.\n"
-"\n"
-"Partizio bakoitza horrela zerrendatzen da: \"Linux izena\", \"Windows izena"
-"\"\n"
-"\"Edukiera\".\n"
-"\n"
-"\"Linux izena\"-ren egitura: \"unitate zurrun mota\", \"unitate zurrun "
-"zenbakia\",\n"
-"\"partizio zenbakia\" (adibidez, \"hda1\").\n"
-"\n"
-"\"Unitate zurrun mota\" da \"hd\" zure unitate zurruna IDE motakoa bada eta\n"
-"\"sd\" SCSI motako bada.\n"
-"\n"
-"\"Unitate zurrun zenbakia\" beti \"hd\" edo \"sd\" ondoren dagoen hizkia da. "
-"IDE\n"
-"unitate zurrunekin:\n"
-"\n"
-" * \"a\"-k adierazten du \"unitate zurrun nagusia lehenengo IDE "
-"kontrolatzailean\";\n"
-"\n"
-" * \"b\"-k adierazten du \"unitate zurrun morroia lehenengo IDE "
-"kontrolatzailean\";\n"
-"\n"
-" * \"a\"-k adierazten du \"unitate zurrun nagusia bigarren IDE "
-"kontrolatzailean\";\n"
-"\n"
-" * \"b\"-k adierazten du \"unitate zurrun morroia bigarren IDE "
-"kontrolatzailean\";\n"
-"\n"
-"SCSI unitate zurrunekin, \"a\"-k adierazten du \"SCSI ID baxuena\", \"b\"-k\n"
-"adierazten du \"bigarren SCSI ID baxuena\", etab.\n"
-"\n"
-"\"Windows izena\" zure unitateak Windows-en hartzen duen hizkia da\n"
-"(lehenengo diskoa edo partizioa \"C.\" da)."
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+msgid "Testing your connection..."
+msgstr "Konexioa probatzen..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
-msgstr "Tantzania"
+#: ../../network/tools.pm_.c:70
+msgid "The system is now connected to Internet."
+msgstr "Sistema Internetera konektatuta dago orain."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "FAT fitxategi-sistemaren mugak kalkulatzen"
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
+msgstr "Segurtasun-arrazoiengatik, deskonektatu egingo da orain."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/tools.pm_.c:72
msgid ""
-"\n"
-"Backup Sources: \n"
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-"\n"
-"Babeskopien iturburua: \n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "custom"
-msgstr "pertsonalizatua"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Content of the file"
-msgstr "Fitxategiaren edukia"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
-msgstr "LDAP autentifikazioa"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
-msgstr "%s iraunarazteko"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
-msgstr "Utzi iezadazu edozein gidari hartzen"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
-msgstr "igorrita"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Palestine"
-msgstr "Palestina"
+"Badirudi sistema ez dagoela Internetera konektatuta.\n"
+"Saiatu konexioa birkonfiguratzen."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
+msgstr "Konexioaren konfigurazioa"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
-msgstr "komaz banaturiko %d karaktere-hilara"
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
+msgstr "Bete edo egiaztatu ondoko eremua"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " isdn"
-msgstr " rdsi"
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr "Txartelaren IRQ"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "Hona hemen teklatu erabilgarri guztien zerrenda"
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "Txartelaren mem (DMA)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Theme name"
-msgstr "Gaiaren izena"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "Txartelaren S/I"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/_Laguntza"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "Txartelaren S/I_0"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitrary driver"
-msgstr "Edonolako gidari bat aukeratzen"
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "Txartelaren S/I_1"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "Cook uharteak"
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
+msgstr "Zure telefono-zenbakia"
-#: ../../standalone/scannerdrake:1
-#, 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."
-msgstr ""
-"Hemen hautatu dezakezu makina honetara lotutako eskanerrak urruneko makinek "
-"erabili ditzaketen eta zein urruneko makinek."
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
+msgstr "Hornitzailearen izena (adib. hornitzailea.net)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the width of the progress bar"
-msgstr "aurrerapen-barraren zabalera"
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
+msgstr "Hornitzailearen telefono-zenbakia"
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "%s partizioa formateatzen"
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+msgid "Provider dns 1 (optional)"
+msgstr "Hornitzailearen dns 1 (aukerakoa)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hostname required"
-msgstr "Ostalari-izena behar da"
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+msgid "Provider dns 2 (optional)"
+msgstr "Hornitzailearen dns 2 (aukerakoa)"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "Desautatu instalatutako letra-tipoak"
+#: ../../network/tools.pm_.c:109
+msgid "Choose your country"
+msgstr "Aukeratu zure herrialdea edo estatua"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Gurpila"
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
+msgstr "Markatzeko modua"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit kernel version"
-msgstr "Bidali kernel bertsioa"
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+msgid "Connection speed"
+msgstr "Konexioaren abiadura"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Cancel"
-msgstr "Etsi"
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+msgid "Connection timeout (in sec)"
+msgstr "Konexioaren denbora-muga (segundotan)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for configured scanners ..."
-msgstr "Bilatu konfiguratutako eskaner bila ..."
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
+msgstr "Kontuaren identifikatzailea (erabiltzaile-izena)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Videocard"
-msgstr "Bideo-txartela"
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
+msgstr "Kontuaren pasahitza"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tBabeskopietan erabili tar eta bzip2\n"
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
+msgstr "Erresuma Batua"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Remove Selected"
-msgstr "Kendu hautatutakoak"
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
+msgstr "muntatzeak huts egin du: "
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "Autodetektatuta _modemak"
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
+msgstr "Partizio hedatua ez da plataforma honetan onartzen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove printer"
-msgstr "Kendu inprimagailua"
+#: ../../partition_table.pm_.c:685
+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 ""
+"Hutsune bat duzu partizio-taulan baina ezin dut erabili.\n"
+"Irtenbide bakarra lehen mailako partizioak mugitzea da, hutsunea partizio "
+"hedatuen ondoren gera dadin"
-#: ../../standalone/drakbackup:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "View Last Log"
-msgstr "Ikusi Azkena Erregistroa"
+msgid "Restoring from file %s failed: %s"
+msgstr "Huts egin du %s fitxategitik leheneratzean: %s"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "Zein zerbitzuetara konektatzen utzi nahi duzu Internetetik?"
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
+msgstr "Babeskopia txarra"
-#: ../../standalone/printerdrake:1
+#: ../../partition_table.pm_.c:796
#, c-format
-msgid "Connection Type"
-msgstr "Koneksio Mota"
+msgid "Error writing to file %s"
+msgstr "Errorea %s fitxategian idaztean"
-#: ../../standalone/logdrake:1
-#, c-format
+#: ../../partition_table/raw.pm_.c:192
msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
msgstr ""
-"Ongi etorri posta konfiguratzeko utilitatera.\n"
-"\n"
-"Hemen zure alerta sistema ezarri ahal izango duzu.\n"
-
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Other"
-msgstr "Bestelakoa"
-
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
-msgstr "Lehenetsia"
+"Okerren bat gertatzen ari da zure unitatean. \n"
+"Datuen osotasuna egiaztatzeko probak huts egin du. \n"
+"Horrek esan nahi du, diskoan ezer idazten bada, zaborra sortuko dela ausaz"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "2. botoiaren emulazioa"
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr "ezinbestekoa"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter a package name."
-msgstr "Mesedez sartu pakete izen bat"
+#: ../../pkgs.pm_.c:27
+msgid "important"
+msgstr "garrantzitsua"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run chkrootkit checks"
-msgstr "Exekutatu chkrootkit egiaztapenak"
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr "oso baliagarria"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "type1inst building"
-msgstr "type1inst eraikitzen"
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr "baliagarria"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr "beharbada"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image file"
-msgstr "aukeratu irudi fitxategia"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
+msgstr "PDQ - Print, Don't Queue (Inprimatu, ez egon ilaran)"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "X server"
-msgstr "X zerbitzaria"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
+msgstr "PDQ"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin User Name"
-msgstr "Domeinuaren Admin Erabiltzaile Izena"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
+msgstr "LPD - Line Printer Daemon"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Errore bat izan da TB kateak bilatzerakoan"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
+msgstr "LPD"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
-msgstr "AEBetako teklatua (nazioartekoa)"
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
+msgstr "LPRng - LPR Belaunaldi berrikoa"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Not installed"
-msgstr "Instalatu gabe"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
+msgstr "LPRng"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Bi Alt teklak batera"
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
+msgstr "CUPS - Common Unix Printing System"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "LAN connection"
-msgstr "Sare lokaleko konexioa (LAN)"
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
+msgstr "CUPS"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/-"
-msgstr "/Fitxategia/-"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+msgid "Unknown Model"
+msgstr "Modelo ezezaguna"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Italian"
-msgstr "Italiarra"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "Inprimagailu lokala"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Basic"
-msgstr "Oinarrizkoa"
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
+msgstr "Urruneko inprimagailua"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+#: ../../printer/main.pm_.c:28
+msgid "Printer on remote CUPS server"
+msgstr "Urruneko CUPS zerbitzariko inprimagailua"
-#: ../../lang.pm:1
-#, c-format
-msgid "Honduras"
-msgstr "Honduras"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+msgid "Printer on remote lpd server"
+msgstr "Urruneko lpd zerbitzariko inprimagailua"
-#: ../../help.pm:1
-#, c-format
-msgid "pdq"
-msgstr "pdq"
+#: ../../printer/main.pm_.c:30
+msgid "Network printer (TCP/Socket)"
+msgstr "Sareko inprimagailua (TCP/socket-a)"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO"
-msgstr "Txartelaren S/I"
+#: ../../printer/main.pm_.c:31
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "SMB/Windows 95/98/NT zerbitzariko inprimagailua"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Samba server"
-msgstr "Samba zerbitzaria"
+#: ../../printer/main.pm_.c:32
+msgid "Printer on NetWare server"
+msgstr "NetWare zerbitzariko inprimagailua"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Bootstrap partizio berezi hau\n"
-"sistemaren abio bikoitza\n"
-"egiteko da.\n"
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+msgid "Enter a printer device URI"
+msgstr "Adierazi inprimagailuaren URI bat"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Aukeratu urrats bakoitzean instalazioa errepikatuko den, ala eskuz egingo "
-"duzun"
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
+msgstr "Kanalizatu lana komando batean"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"Urruneko makinetako eskanerrak makina honetan eskuragarri egin behar diren "
-"ere erabaki dezakezu hemen."
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
+msgstr "Modelo ezezaguna"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\tFTP bidezko sarea.\n"
+#: ../../printer/main.pm_.c:317
+msgid "Local Printers"
+msgstr "Inprimagailu lokalak"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reports check result to tty"
-msgstr "Jakinarazi egiaztapen emaitzak tty-n"
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+msgid "Remote Printers"
+msgstr "Urruneko inprimagailuak"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Gailua edo fitxategi-izena adierazi behar duzu!"
+msgid " on parallel port \\/*%s"
+msgstr " - \\/*%s ataka paraleloan"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid "/_Quit"
-msgstr "/_Irten"
+msgid ", USB printer \\/*%s"
+msgstr ", \\/*%s USB inprimagailua"
-#: ../../Xconfig/various.pm:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Memoria grafikoa: %s kB\n"
+msgid ", multi-function device on parallel port \\/*%s"
+msgstr ", funtzio anitzeko gailua \\/*%s ataka paraleloan"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-"it under the terms of the GNU General Public License as published by\n"
-"the Free Software Foundation; either version 2, or (at your option)\n"
-"any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful,\n"
-"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-"GNU General Public License for more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
-msgstr ""
-" Programa hau software librea da; birbana eta/edo alda dezakezu\n"
-" Software Foundation-ek argitaratutako GNU Lizentzia Publiko Orokorraren\n"
-" 2. bertsioan, edo (nahiago baduzu) beste berriago batean, jasotako\n"
-" baldintzak betez gero.\n"
-"\n"
-" Programa hau erabilgarria izango delakoan banatzen da, baina\n"
-" INOLAKO BERMERIK GABE; era berean, ez da bermatzen beraren\n"
-" EGOKITASUNA MERKATURATZEKO edo HELBURU PARTIKULARRETARAKO ERABILTZEKO.\n"
-" Argibide gehiago nahi izanez gero, ikus GNU Lizentzia Publiko Orokorra.\n"
-"\n"
-" Programa honekin batera GNU Lizentzia Publiko Orokorraren kopia bat\n"
-" jasoko zenuen; hala ez bada, idatzi hona: Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
+msgstr ", funtzio anitzeko gailua - USB"
-#: ../../any.pm:1
-#, c-format
-msgid "access to compilation tools"
-msgstr "Konpilaketa tresnen atzipena"
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
+msgstr ", funtzio anitzeko gailua - HP JetDirect"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Global statistics"
-msgstr "Estatistika globalak"
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
+msgstr ", funtzio anitzeko gailua"
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:344
#, c-format
-msgid "Please select data to restore..."
-msgstr "Hautatu leheneratzeko datuak..."
+msgid ", printing to %s"
+msgstr ", %s atakan"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/main.pm_.c:346
#, 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"
-msgstr ""
-"Aboot erabiltzeko asmoa baduzu, utzi lekua (2048 sektore nahikoa da)\n"
-"diskoaren hasieran"
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr "\"%s\" LPD zerbitzarian, \"%s\" inprimagailua"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:348
#, c-format
-msgid "Standard test page"
-msgstr "Proba-orri estandarra"
+msgid ", TCP/IP host \"%s\", port %s"
+msgstr ", \"%s\" TCP/IP ostalaria, %s ataka"
-#: ../../standalone/drakclock:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid "Time Zone"
-msgstr "Ordu Gunea"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr "\"%s\" SMB/Windows zerbitzarian, elkarbanatu \"%s\""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid "Create"
-msgstr "Sortu"
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr "\"%s\" Novell zerbitzarian, \"%s\" inprimagailua"
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid "What"
-msgstr "Zer"
+msgid ", using command %s"
+msgstr ", %s komandoaren bidez"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Errore bat izan da paketeak ordenatzean:"
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
+msgstr "Inprimagailu gordina (kontrolatzailerik ez)"
-#: ../../keyboard.pm:1
+#: ../../printer/main.pm_.c:647
#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "Bulgariarra (BDS)"
+msgid "(on %s)"
+msgstr "(%s)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Server"
-msgstr "Ezgaitu Zerbitzaria"
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
+msgstr "(makina honetan)"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm_.c:674
#, c-format
-msgid "Filesystem encryption key"
-msgstr "Fitxategi-sistema enkriptatzeko gakoa"
+msgid "On CUPS server \"%s\""
+msgstr "\"%s\" CUPS zerbitzarian"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
-msgstr "Gujaratera"
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
+msgstr " (lehenetsia)"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" Nahiz eta IP helbide multzo bat erabili dezakezun, bezero bakoitzari "
-"sarrera zehatz bat\n"
-" eman ordez, helbide finkoak erabiltzen dituen eskema "
-"erabiltzeakClusterNFS-ek\n"
-" hornitzen dituen bezeroen ezarpen fitxategi espezifikoen "
-"funtzionalitateak erabiltzea errazten du.\n"
-"\t\t\t\n"
-" Oharra: '#type' sarrera drakTermServ-ek soilik erabiltzen du. "
-"Bezeroak 'estuak' ('thin') edo\n"
-" 'lodiak' ('fat') izan daitezke. Bezero estuek software gehiena "
-"zerbitzarian korritzen dute xdmcp\n"
-" bitartez, bezero lodiek berriz software gehiena makinan bezero "
-"korritzen dute. inittab berezia,\n"
-" %s idazten da bezero estuentzako. Sistemaren ezarpen fitxategi xdm-"
-"config, kdmrc, eta gdm.conf\n"
-" aldatzen dira bezero estuak erabiltzen badira, xdmcp gaitzeko. "
-"xdmcperabilerak segurtasun\n"
-" gakoak dituenez, hosts.deny eta hosts.allow aldatzen dira bertako "
-"azpisarera sarrera\n"
-" murrizteko.\n"
-"\t\t\t\n"
-" Oharra: '#hdw_config' sarrera ere soilik drakTermServ-ek erabiltzen "
-"du. Bezeroak izan\n"
-" daitezke 'true' edo 'false'. 'true'-k bezero makinetan root sarrera "
-"gaitzendu eta 'drak' tresnak\n"
-" erabiliz soinu, sagu, eta X-en bertako hardwarearen ezarpena egitea. "
-"Hau egin daiteke\n"
-" bezeroen IP helbideekin erlazionatutako ezarpen fitxategi bananduak "
-"sortzen direlako\n"
-" eta bezeroek fitxategi horietan aldaketak egin ditzaten irakurketa/"
-"idazketa montaia-puntuak\n"
-" sortzen direlako. Ezarpenarekin pozik zaudenean bezeroetatik root "
-"sarrera ezabatu dezakezu.\n"
-"\t\t\t\n"
-" Oharra: Zerbitzaria gelditu/hasi behar duzu bezeroak erantsi edo "
-"aldatu ondoren."
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
+msgstr "Hautatu inprimagailu-konexioa"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Aukeratu editatu nahi duzun 10 barrutiko lehen zenbakia,\n"
-"edo sakatu Sartu, jarraitzeko.\n"
-"Zure aukera? "
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
+msgstr "Nola dago konektatuta inprimagailua?"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:30
msgid ""
"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
msgstr ""
"\n"
-" Copyright (C) 2002 MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Save theme"
-msgstr "gaia gorde"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "Brasil"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install"
-msgstr "Instalazio automatikoa"
-
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration Wizard"
-msgstr "Sarea konfiguratzeko morroia"
+"Urruneko CUPS zerbitzariko inprimagailuak ez dituzu hemen konfiguratu behar; "
+"horrelako inprimagailuak automatikoki detektatuko dira."
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
-msgstr "Euskarri aldagarrien automuntatzea"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+"Inprimagailu auto-detekzioa (Bertakoa, TCP/Socket, eta SMB inprimagailuak)"
-#: ../../services.pm:1
-#, c-format
-msgid "Printing"
-msgstr "Inprimatzea"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+msgid "CUPS configuration"
+msgstr "CUPSen konfigurazioa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save:"
-msgstr "Adierazi gorde beharreko direktorioa:"
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+msgid "Specify CUPS server"
+msgstr "Zehaztu CUPS zerbitzaria"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:83
msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "Ez dira inprimagailurik aurkitu zure makinara zuzenean lotuta"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "Sortu partizio berria"
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
+msgstr ""
+"Sare lokaleko urruneko CUPS zerbitzarietarako sarbidea izateko, ez daukazu "
+"ezer konfiguratu beharrik; CUPS zerbitzariek automatikoki emango diote zure "
+"makinari beren inprimagailuen berri. Zure makinak ezagutzen dituen "
+"inprimagailu guztiak Printerdrake-ren leiho nagusiko \"Urruneko "
+"inprimagailuak\" ataleko zerrendan daude. CUPS zerbitzaria zure sarelokalean "
+"ez badago, CUPS zerbitzariaren IP helbidea eman behar duzu, eta nahi baduzu "
+"atakaren zenbakia, zerbitzaritik inprimagailuaren informazioa eskuratzeko; "
+"bestela, utzi eremu hauek hutsik."
+
+#: ../../printer/printerdrake.pm_.c:84
+msgid ""
+"\n"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
+msgstr ""
+"\n"
+"Normalean, CUPS automatikoki konfiguratzen da sare-ingurunearen\n"
+"arabera, sare lokaleko CUPS zerbitzarietako inprimagailuetara\n"
+"iritsi ahal izan zaitezen. Horrek ez badu ondo funtzionatzen, \n"
+"desaktibatu \"CUPS konfigurazio automatikoa\" eta editatu\n"
+"/etc/cups/cupsd.conf fitxategia eskuz. Ez ahaztu gero CUPS\n"
+"berrabiaraztea (komandoa: \"service cups restart\")."
+
+#: ../../printer/printerdrake.pm_.c:88
+msgid "The IP address should look like 192.168.1.20"
+msgstr "IP helbideak honelako itxura izan behar du: 192.168.1.20"
+
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
+msgstr "Ataka-zenbakiak osoko zenbakia izan behar du!"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Driver:"
-msgstr "Gidaria:"
+#: ../../printer/printerdrake.pm_.c:99
+msgid "CUPS server IP"
+msgstr "CUPS zerbitzariaren IP"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
-msgstr "ezezaguna"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
+msgstr "Ataka"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "Erabili fdisk"
+#: ../../printer/printerdrake.pm_.c:102
+msgid "Automatic CUPS configuration"
+msgstr "CUPS konfigurazio automatikoa"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "MUGITU GURPILA!"
+#: ../../printer/printerdrake.pm_.c:159
+msgid "Checking your system..."
+msgstr "Zure sistema egiaztatzen..."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "sent: "
-msgstr "bidalita: "
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+msgid "Printerdrake"
+msgstr "Printerdrake"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "IP automatikoa"
+#: ../../printer/printerdrake.pm_.c:167
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr "Ez dira inprimagailurik aurkitu zure makinara zuzenean lotuta"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:179
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"
+"The following printers\n"
"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
msgstr ""
-"Egin duzu. Instalazioa amaitu da eta zure GNU/Linux sistema erabiltzko "
-"prest\n"
-"dago. Klikatu \"%s\" sistema berrabiatzeko. Konputagailuak bere hardware\n"
-"froga egin ondoren ikusi behar zenukeen lehenengo gauza abiapen menua\n"
-"da, zein sistema eragile abiatu aukera emanez.\n"
-"\n"
-"\"%s\" botoiak beste bi botoi erakuste ditu:\n"
-"\n"
-" * \"%s\": orain egin duzun instalazioaren berdina, osorik\n"
-"automatikoki, eragilerik gabe egiteko diskete bat sortuko\n"
-"du.\n"
-" Ohartu bi aukera desberdin daudela botoia klikatu ondoren:n\n"
-" * \"%s\". Hau instalazio automatizatu berezia da. Diskoen zatiketa\n"
-"da prozesu interaktibo bakarra.\n"
-"\n"
-" * \"%s\". Instalazio osorik automatizatu: disko zurruna erabat "
-"berridazten\n"
-"da, datu guztiak galdu egiten dira.\n"
-"\n"
-" Aukera hau oso erabilgarria da zenbait antzeko makina instalatzeko.\n"
-"Begiratu Auto install atala gure web lekuan informazio gehiago jasotzeko.\n"
-"\n"
-" * \"%s\"(*): instalazio honetan hautatutako paketeen zerrenda bat "
-"gordetzen\n"
-"du. Hautapen hau beste instalazio batzurekin erabiltzeko, sartu disketea\n"
-"eta hasi instalazioa. Gonbitan, sakatu [F1] tekla eta idatzi >>linux\n"
-"defcfg=\"floppy\" <<.\n"
+"Ondorengo inprimagailuak\n"
"\n"
-"(*) FAT-ekin eratutako diskete bat behar duzu (GNU/Linux-en bat sortzeko,\n"
-"idatzi \"mformat a:\")"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Moldova"
-msgstr "Moldavia"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking sagua"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuration of a remote printer"
-msgstr "Urruneko inprimagailu baten konfigurazioa"
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
-msgstr "Konpainien euskarri behar espezifikoei erantzuteko lerroko plataforma"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URLaren hasieran 'ftp:' edo 'http:' egon behar da"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Oriya"
-msgstr "Oriya"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Gehitu arau berri bat amaieran"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr "LiLo eta Bootsplash gai instalazio arrakastatsua"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:180
msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
+"The following printer\n"
+"\n"
msgstr ""
-"Urruneko makinetako inprimagailuak makina honetan automatikoki eskuragarri "
-"egin behar diren ere erabaki dezakezu hemen."
+"Ondorengo inprimagailua\n"
+"\n"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:182
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''"
+"\n"
+"and one unknown printer are "
msgstr ""
-"Orain %s moduluari bere aukerak eman diezazkiokezu.\n"
-"Aukerak ``izena=balioa izena2=balioa2 ...'' formatuan daude.\n"
-"Adibidez, ``io=0x300 irq=7''"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "Irten partizio-taula idatzi gabe?"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Hard Drive"
-msgstr "disko gogorrean"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "Installing packages..."
-msgstr "Paketeak instalatzen..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dutch"
-msgstr "Holandarra"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Angola"
-msgstr "Angola"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "Ondorengo paketeak instalatu behar dira:\n"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "service setting"
-msgstr "zerbitzuaren ezarpena"
-
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "Pertsonalizatua"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
-msgstr "Letonia"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr "Fitxategi hau beste loopback batek erabiltzen du, aukeratu beste bat"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr "Irakurketa-soilik"
+"\n"
+"eta inprimagailu ezezagun bat dago "
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:184
#, c-format
msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
+"\n"
+"and %d unknown printers are "
msgstr ""
-"Gaitu/Ezgaitu izen erresoluzio iruzurren aurkako babesa.\n"
-"\"alert\" egia bada, syslog-en ere jakinarazten du."
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
-msgstr "Ez dago gidari ezagunik"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
+"\n"
+"eta %d inprimagailu ezezagun daude "
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:187
msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
+"\n"
+"are "
msgstr ""
-"Zuk konfiguratu nahi duzuna ez bada, idatzi gailuaren-izena/fitxategi-izena "
-"sarrerako lerroan"
+"\n"
+"daude "
-#: ../../standalone/draksound:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:187
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"
+"is "
msgstr ""
-"Zure makinan ez da Soinu Txartelik aurkitu. Ziurtatu Linux-ek onartzen duen "
-"Soinu Txartela ondo konektatuta dagoela.\n"
-"\n"
-"\n"
-"Gure hardware datubasea bisitatu dezakezu hemen:\n"
-"\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"dago "
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Konfiguratu sare lokala..."
+#: ../../printer/printerdrake.pm_.c:189
+msgid "directly connected to your system"
+msgstr "zure sistemara zuzenean lotuta"
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:192
msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
+"\n"
+"There is one unknown printer directly connected to your system"
msgstr ""
-"Dirudienez USB giltzak idazketa babesa jarrita dauka. Mesedez\n"
-"desentxufatu, kendu idazketa babesa, eta ondoren entxufatu berriro."
-
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr "Abiarazi zure makinako soinu-sistema"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
-msgstr "Egiaztatu suid/sgid fitxategien checksum"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run some checks against the rpm database"
-msgstr "Exekutatu egiaztapen batzuk rpm datubasearen aurka"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Execute"
-msgstr "Exekutatu"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Inprimagailuaren datu-basea prestatzen..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Information"
-msgstr "Informazioa"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "No network card"
-msgstr "Ez dago sare-txartelik"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "3 botoi"
-
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Which filesystem do you want?"
-msgstr "Zein fitxategi-sistema nahi duzu?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Malta"
-msgstr "Malta"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Detailed information"
-msgstr "Informazio xehea"
+"\n"
+"Inprimagailu ezezagun bat dago zure sistemara zuzenean lotuta"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:194
#, 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."
+"There are %d unknown printers directly connected to your system"
msgstr ""
-"Inprimagailuaren ezarpen lehenetsiak\n"
"\n"
-"Ziurtatu orri-tamaina eta tinta-mota/inprimatzeko modua (erabilgarri badago)"
-"eta laser inprimagailuaren hardware-konfigurazioa zuzen ezarri direla. "
-"Kontuan hartu inprimatzeko kalitatea oso handia bada askoz mantsoago "
-"inprimatuko duela segurutik."
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
-msgstr "Diskete honek ez du FAT formaturik"
+"%d inprimagailu ezezagun daude zure sistemara zuzenean lotuta"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "Sarea konfiguratzen"
+#: ../../printer/printerdrake.pm_.c:200
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr " (Ziurtatu zure inprimagailu guztiak lotuta eta piztuta daudela).\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:214
msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
msgstr ""
-"Aukera honek aldatu diren fitxategiak gordetzen ditu. Jokaera zehatza modu "
-"inkrementala edo diferentziala erabiltzen den araberakoa da."
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Graphic Card"
-msgstr "Txartela grafikoa"
+"Inprimaketa gaitu nahi duzu goian aipatutako inprimagailuetan edo bertako "
+"sarean dauden inprimagailuetan?\n"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing Windows partition"
-msgstr "Windows fitxategi-sistemaren mugak kalkulatzen"
+#: ../../printer/printerdrake.pm_.c:215
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Inprimaketa gaitu nahi duzu bertako sarean dauden inprimagailuetan?\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "Kamerun"
+#: ../../printer/printerdrake.pm_.c:217
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Inprimaketa gaitu nahi duzu goian aipatutako inprimagailuetan?\n"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "Hornitzailearen dns 1 (aukerakoa)"
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr "Ziur zaude makina honetan inprimaketa ezarri nahi duzula?\n"
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:219
#, c-format
msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
msgstr ""
-"Orain egin dezakezu %s partizioa.\n"
-"Egin ondoren, ez ahaztu `w' erabiliz gordetzea"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finnish)"
-msgstr "Suomiera (suediera/finlandiera)"
+"OHARRA: Inprimagailu eredua eta inprimaketa sistemaren arabera %d MB-etik "
+"gora software gehigarri instalatuko da."
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Close"
-msgstr "Itxi"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+msgid "Add a new printer"
+msgstr "Gehitu inprimagailu berria"
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:259
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."
+"\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 ""
-"\"%s\": egiaztatu uneko herrialde aukeraketa. Herrialde horretan ez \n"
-"bazaude, klikatu \"%s\" botoia eta hautatu beste bat. Zure herrialdea ez "
-"badago\n"
-"erakusten den lehenengo zerrendan, klikatu \"%s\" botoia herrialdeen "
-"zerrenda\n"
-"osoa jasotzeko."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Calendar"
-msgstr "Egutegia"
+"\n"
+"Ongi etorri inprimagailua instalatzeko morroira\n"
+"\n"
+"Morroi honen bidez, ordenagailuan erabil daitezkeen inprimagailu urruneko "
+"edo lokalak instalatzeko laguntza jasoko duzu, baita saretik instalatzeko "
+"ere.\n"
+"\n"
+"Inprimagailua instalatzeko behar duen informazioa eskatuko dizu eta "
+"inprimagailu-kontrolatzaile, kontrolatzaile-aukera eta konexio-mota "
+"erabilgarri guztiak jarriko ditu zure esku."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:272
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+"\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"
+"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) and you 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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Leheneratu Hautatutako\n"
-"Katalogo Sarrera"
+"\n"
+"Ongi etorri Inprimagailu Ezarpen Morroira\n"
+"\n"
+"Morroi honek zure konputagailu honetara lotutako inprimagailua(k), sarera "
+"zuzenean lotutakoa(k) edo Windows makina batera loturikoa(k) instalatzen "
+"lagunduko dizu.\n"
+"\n"
+"Makina honetara lotutako inprimagailuak badituzu, mesedez entxufatu eta "
+"piztu itzazu auto-detektatuak izan daitezen. Berdina sareko inprimagailu eta "
+"Windows makinetara lotutako inprimagailuekin ere.\n"
+"\n"
+"Ohartu sarera lotutako inprimagailuen auto-detekzioak denbora gehiago behar "
+"duela makina honetara lotuta dauden inprimagailuak bakarrik auto-"
+"detektatzeko baino. Beraz ezabatu sareko eta/edo windows-ostalari "
+"inprimagailuen auto-detekzioa behar ez dituzunean.\n"
+"\n"
+" Klikatu \"Hurrengoa\" prest zaudenean, eta \"Etsi\" zure inprimagailua "
+"orain ezarri nahi ez duzunean."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
+"\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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Urruneko lpd inprimagailua erabiltzeko, inprimagailu-zerbitzariaren "
-"ostalari-\n"
-"izena eta zerbitzari horretako inprimagailu-izena eman behar dituzu."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
-msgstr "Islandia"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Sare eta Internet konfigurazioa"
-
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
-msgstr "consolehelper falta da"
-
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr "geldituta"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "FPU-k irq bektore bat daukan"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr "Zabaldu zuhaitza"
+"\n"
+"Ongi etorri Inprimagailu Ezarpen Morroira\n"
+"\n"
+"Morroi honek zure konputagailu honetara lotutako inprimagailua(k) "
+"instalatzen lagunduko dizu.\n"
+"\n"
+"Makina honetara lotutako inprimagailuak badituzu, mesedez entxufatu eta "
+"piztu itzazu auto-detektatuak izan daitezen.\n"
+"\n"
+" Klikatu \"Hurrengoa\" prest zaudenean, eta \"Etsi\" zure inprimagailua "
+"orain ezarri nahi ez duzunean."
-# unloading : deskargatu ???? zama????
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:289
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
"\n"
-"It has been reported to oops the kernel on unloading.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+"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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"\"%s\" gidari zaharra zerrenda beltzean dago.\n"
"\n"
-"Kerneletik deskargatzerakoan arazoak sortzen dituela txostendu da.\n"
+"Ongi etorri Inprimagailu Ezarpen Morroira\n"
"\n"
-"\"%s\" gidari berria hurrengo bootstrap-ean erabiliko da soilik."
-
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Expert Mode"
-msgstr "Aditu modua"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "Inprimagailuaren aukerak"
+"Morroi honek zure konputagailu honetara lotutako inprimagailua(k) edo sarera "
+"zuzenean lotutakoa(k) instalatzen lagunduko dizu.\n"
+"\n"
+"Makina honetara lotutako inprimagailuak badituzu, mesedez entxufatu eta "
+"piztu itzazu auto-detektatuak izan daitezen. Berdina sareko inprimagailuekin "
+"ere.\n"
+"\n"
+"Ohartu sarera lotutako inprimagailuen auto-detekzioak denbora gehiago behar "
+"duela makina honetara lotuta dauden inprimagailuak bakarrik auto-"
+"detektatzeko baino. Beraz ezabatu sareko inprimagailuen auto-detekzioa behar "
+"ez duzunean.\n"
+"\n"
+" Klikatu \"Hurrengoa\" prest zaudenean, eta \"Etsi\" zure inprimagailua "
+"orain ezarri nahi ez duzunean."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Local Network adress"
-msgstr "Bertako Sare helbidea"
+#: ../../printer/printerdrake.pm_.c:307
+msgid "Auto-detect printers connected to this machine"
+msgstr "Auto-detektatu makina honetara lotutako inprimagailuak"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Sistema-fitxategien babeskopia egin. (/etc direktorioa )"
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
+msgstr "Auto-detektatu bertako sarera zuzenean lotutako inprimagailuak"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the user umask."
-msgstr "Ezarri erabiltzaile umask."
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+"Auto-detektatu Microsoft Windows darabilten makinetara lotutako "
+"inprimagailuak"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:329
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"
+"Congratulations, your printer is now installed and configured!\n"
"\n"
-"Do you want to install the updates ?"
+"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 ""
-"Eguneratutako paketeak jaisteko aukera daukazu orain. Pakete hauek banaketa\n"
-"argitaratu ondoren kaleratu dira. Segurtasun edo akats konponketak izan\n"
-"ditzakete.\n"
"\n"
-"Pakete hauek jaisteko, dabilen Internet lotura beharko\n"
-"duzu\n"
+"Zorionak, inprimagailua instalatuta eta konfiguratuta duzu!\n"
"\n"
-"Eguneraketak instalatu nahi dituzu?"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Samba Server"
-msgstr "Samba Zerbitzaria"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Australiako Optus kable TB"
-
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> elem. aldatzeko | <Zuriunea> hautatzeko | <F12> hurr. pant. "
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet:"
-msgstr "Azpisarea:"
+"Inprimatzeko, aplikazioko \"Inprimatu\" komandoa erabil dezakezu (normalean "
+"\"Fitxategia\" menuan izan ohi da).\n"
+"\n"
+"Inprimagailu bat gehitu, kendu, edo izenez aldatu nahi baduzu, edo ezarpen "
+"lehenetsiak (paper-iturria, inprimatze-kalitatea...) aldatu nahi badituzu, "
+"hautatu \"Inprimagailua\" Mandrake Kontrol Zentroko \"Hardwarea\" atalean."
-#: ../../lang.pm:1
-#, c-format
-msgid "Zimbabwe"
-msgstr "Zimbawe"
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Printer auto-detection"
+msgstr "Inprimagailuen auto-detekzioa"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:385
#, c-format
-msgid "When"
-msgstr "Noiz"
+msgid ", network printer \"%s\", port %s"
+msgstr ", \"%s\" sareko inprimagailua, %s portua"
-#: ../../network/adsl.pm:1
+#: ../../printer/printerdrake.pm_.c:387
#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
-msgstr ""
-"Alcatel mikrokodea behar duzu.\n"
-"Jeitsi ezazu hemendik:\n"
-"%s\n"
-"eta kopiatu ezazu mgmt.o /usr/share/speedtouch direktorioan"
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr ", \"%s\" inprimagailua \"%s\" SMB/Windows zerbitzarian"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:391
#, c-format
-msgid "Hour"
-msgstr "Ordua"
+msgid "Detected %s"
+msgstr "%s detektatua"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Bigarren DNS zerbitzaria (aukerakoa)"
+msgid "Printer on parallel port \\/*%s"
+msgstr "\\/*%s ataka paraleloko inprimagailua"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "Finland"
-msgstr "Finlandia"
+msgid "USB printer \\/*%s"
+msgstr "\\/*%s USB inprimagailua"
-#: ../../Xconfig/various.pm:1
+#: ../../printer/printerdrake.pm_.c:399
#, c-format
-msgid "Color depth: %s\n"
-msgstr "Kolorearen sakonera: %s\n"
+msgid "Network printer \"%s\", port %s"
+msgstr "\"%s\" sareko inprimagailua, %s portua"
-#: ../../install_steps_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:401
#, c-format
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Ezin duzu pakete hau desautatu. Bertsio-berritu egin behar da"
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "\"%s\" inprimagailua \"%s\" SMB/Windows zerbitzarian"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "Disketetik kargatzen"
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+msgid "Local Printer"
+msgstr "Inprimagailu lokala"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "Ordugunea - DrakClock"
+#: ../../printer/printerdrake.pm_.c:526
+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 ""
+"Ez da inprimagailu lokalik aurkitu! Inprimagailua eskuz instalatzeko, idatzi/"
+"gailu/fitxategi izena (Ataka paraleloak: /dev/lp0, /dev/lp1, ..., "
+"baliokideak dira LPT1:, LPT2:..., lehen USB inprimagailua: /dev/usb/lp0, "
+"bigarren USB inprimagailua: /dev/usb/lp1, ...)."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
-msgstr "Gaitu/Ezgaitu IPv4 pakete arraroen erregistroa."
+#: ../../printer/printerdrake.pm_.c:530
+msgid "You must enter a device or file name!"
+msgstr "Gailua edo fitxategi-izena adierazi behar duzu!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr "Eslovenia"
+#: ../../printer/printerdrake.pm_.c:539
+msgid "No printer found!"
+msgstr "Ez da inprimagairik aurkitu!"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse test"
-msgstr "Sagu froga"
+#: ../../printer/printerdrake.pm_.c:548
+msgid "Available printers"
+msgstr "Inprimagailu erabilgarriak"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:552
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."
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
msgstr ""
-"Drakperm fitxategien ezaugarriak aldatzeko erabiltzen da, baimenak, jabeak, "
-"eta taldeak, hori msec bitartez egiten du.\n"
-"Jatorrizko arauak gainidatziko dituzte zure arau propioak editatu ditzakezu."
+"Inprimagailu hau detektatu da automatikoki, zuk konfiguratu nahi duzuna ez "
+"bada, idatzi gailuaren izena/fitxategi-izena"
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:553
msgid ""
-"Enter a user\n"
-"%s"
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
msgstr ""
-"Sartu erabiltzaile bat\n"
-"%s"
+"Automatikoki detektatutako inprimagailuen zerrenda da hau. Hautatu "
+"konfiguratu nahi duzuna edo idatzi gailuaren izena/fitxategi-izena"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:555
msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
msgstr ""
-"- PCI eta USB gailuak: honek saltzaile, gailu, azpi-saltzaile eta azpi-gailu "
-"PCI/USB id-ak zerrendatzen ditu"
+"Inprimagailu hau detektatu da automatikoki. Inprimagailuaren konfigurazioa "
+"automatikoki egingo da. Inprimagailua ondo detektatu ez bada edo nahiago "
+"baduzu konfigurazio pertsonalizatua, aldatu \"Eskuzko konfigurazioa"
+"\"aukerara."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "ProgressBar color selection"
-msgstr "AurrearpenBarraren kolore aukeraketa"
-
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:556
msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-"Hauek dira sarrerak.\n"
-"Beste batzuk gehi ditzakezu edo lehendik daudenak aldatu."
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
+"Automatikoki detektatutako inprimagailuen zerrenda da hau. Hautatu "
+"konfiguratu nahi duzuna. . Inprimagailuaren konfigurazioa zeharo "
+"automatikoki egingo da. Inprimagailua ondo detektatu ez bada edo nahiago "
+"baduzu konfigurazio pertsonalizatua, hautatu \"Eskuzko konfigurazioa\"."
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:558
msgid ""
-"Application Name\n"
-"or Full Path:"
+"Please choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-"Aplikazioaren Izena\n"
-"edo Bidea Osoa:"
+"Hautatu inprimagailua konektatuta dagoen ataka edo idatzi gailuaren izena/"
+"fitxategi-izena"
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:559
+msgid "Please choose the port where your printer is connected to."
+msgstr "Aukeratu inprimagailua konektatuta dagoen ataka."
+
+#: ../../printer/printerdrake.pm_.c:561
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."
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-"at komandoaren bidez programatutako komandoak exekutatzen ditu at \n"
-"exekutatzean zehaztutako orduan, eta batch komandoak exekutatzen ditu \n"
-"batezbesteko karga nahikoa baxua denean."
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
-msgstr "Irrati euskarria :"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "SANE paketeak instalatzen..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
-msgstr "SILO"
+" (Ataka paraleloak: /dev/lp0, /dev/lp1..., baliokideak dira LPT1:, LPT2:..., "
+"lehen USB inprimagailua: /dev/usb/lp0, 2. USB inprimagailua: /dev/usb/"
+"lp1, ...)."
-#: ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Change type"
-msgstr "Aldatu mota"
+#: ../../printer/printerdrake.pm_.c:565
+msgid "You must choose/enter a printer/device!"
+msgstr "Inprimagailua/gailua aukeratu/adierazi behar duzu!"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", #%s USB inprimagailua"
+#: ../../printer/printerdrake.pm_.c:584
+msgid "Manual configuration"
+msgstr "Eskuzko konfigurazioa"
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "SILO instalazioa"
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
+msgstr "Urruneko lpd inprimagailuaren aukerak"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:634
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."
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
-"Zorionak, instalazioa burutu da.\n"
-"Atera abioko diskoa eta sakatu itzulera-tekla berrabiarazteko.\n"
-"\n"
-"\n"
-"Mandrake Linux-en bertsio honetarako erabilgarri dauden konponbideen "
-"informaziorako,\n"
-"kontsultatu Erratak helbide honetan:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Zure sistema konfiguratzeko informazioa Mandrake-ren Erabiltzailearen \n"
-"Gida Ofizialeko instalatu ondorengo azalpenei buruzko kapituluan duzu."
+"Urruneko lpd inprimagailua erabiltzeko, inprimagailu-zerbitzariaren "
+"ostalari-\n"
+"izena eta zerbitzari horretako inprimagailu-izena eman behar dituzu."
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Gaitu Sareko Ordu Protokoloa"
+#: ../../printer/printerdrake.pm_.c:635
+msgid "Remote host name"
+msgstr "Urruneko ostalari-izena"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "paranoid"
-msgstr "paranoidea"
+#: ../../printer/printerdrake.pm_.c:636
+msgid "Remote printer name"
+msgstr "Urruneko inprimagailu-izena"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "Ez bidali postarik beharrezkoa ez denean"
+#: ../../printer/printerdrake.pm_.c:639
+msgid "Remote host name missing!"
+msgstr "Urruneko ostalari izena falta da!"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "Zure eskanerra(k) ez d(ir)a sarean eskuragarri egongo."
+#: ../../printer/printerdrake.pm_.c:643
+msgid "Remote printer name missing!"
+msgstr "Urruneko inprimagailu-izena falta da!"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Babeskopia egindakoan, bidali berri-emateko mezua hona :"
+msgid "Detected model: %s %s"
+msgstr "Detektatutako eredua: %s %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Komando hau aplikazio askotako inprimatze-elkarrizketetako \"Inprimatzeko "
-"komandoa\" eremuan ere erabil dezakezu. Baina hor ez eman fitxategi-izena, "
-"inprimatu behar den fitxategia aplikazioak ematen baitu.\n"
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Scanning network..."
+msgstr "Sarean bilatzen..."
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, c-format
-msgid "Resolution"
-msgstr "Bereizmena"
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ", \"%s\" inprimagailua \"%s\" zerbitzarian"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
#, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "\"%s\" inprimagailua \"%s\" zerbitzarian"
+
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "SMB (Windows 9x/NT) inprimagailuaren aukerak"
+
+#: ../../printer/printerdrake.pm_.c:796
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 "
@@ -12434,617 +8457,311 @@ msgstr ""
"konpartitze-izena eta erabiltzaile-izenak, pasahitzak eta lantalde-"
"informazioa ere."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:797
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+" 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 ""
-"Gaitu su wheel taldeko partaideentzako soilik edo baimendu su erabiltzaile "
-"guztientzako."
+" Nahi zenuen inprimagailua auto-detektatu bada, hautatu ezazu zerrendatik "
+"eta gehitu erabiltzaile-izena, pasahitza, eta/edo lantaldea beharrezko bada."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
-msgstr "birkonfiguratu"
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
+msgstr "SMB zerbitzariaren ostalaria"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Zure txartelak 3D hardware-azelerazioaren euskarria izan dezake XFree %s(r)"
-"ekin,\n"
-"KONTUAN IZAN EUSKARRI ESPERIMENTALA DELA ETA ORDENAGAILUA BLOKEA DEZAKEELA."
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr "SMB zerbitzariaren IP"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell timeout"
-msgstr "Maskorraren itxaronaldia"
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr "Konpartitze-izena"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Xinetd Service"
-msgstr "Xinetd Zerbitzua"
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "Lantaldea"
-#: ../../any.pm:1
-#, c-format
-msgid "access to network tools"
-msgstr "sareko tresnen atzipena"
+#: ../../printer/printerdrake.pm_.c:806
+msgid "Auto-detected"
+msgstr "Auto-detektatuta"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "Firmware transferentzia HP LaserJet 1000-rentzako"
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
+msgstr "Zerbitzari-izena edo zerbitzariaren IP eman behar da!"
-#: ../advertising/03-software.pl:1
-#, 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."
-msgstr ""
-"Mandrake Linux 9.1k audio fitxategiak jotzeko, zure argazkiak editatu eta "
-"manipulatzeko, eta bideoak ikusteko software berriena erabiltzeko aukera "
-"ematen dizu"
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
+msgstr "Samba konpartitze-izena falta da!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Hemen dago auto-detektatutako inprimagailuen zerrenda bat. "
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
+msgstr "SEGURTASUN OHARRA!"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:827
#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"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 ""
-"Errorea aboot instalatzean, \n"
-"instalazioa ezartzen saiatu lehen partizioa suntsitzen badu ere?"
+"Windows-eko pasahitza duen kontu bati inprimaketa ezartzera zoaz. Samba "
+"bezeroaren softwareak daukan egitura akats batek eraginda, pasahitza ageriko "
+"testu bezala jartzen da, Windows zerbitzarira inprimaketa lana bidaltzen "
+"duen Samba bezeroaren komando lerroan. Beraz makina hau erabiltzen duen "
+"edozein erabiltzailek pasahitza pantailan erakutsi dezake \"ps auxwww\" "
+"bezalako komandoak erabiliz.\n"
+"\n"
+"Aukera hauetako bat erabiltzea gomendatzen dugu (edozein modutara ziurtatu "
+"behar duzu zure bertoko sareko makinek soilik dutela zure Windows "
+"zerbitzarira sarrera, adibidez suhesi baten bitartez):\n"
+"\n"
+"Erabili pasahitzik-gabeko kontua zure Windows zerbitzarian, \"GUEST\" kontua "
+"esaterako, edo inprimatzeko sortutako kontu berezia. Ez ezabatu pasahitz "
+"babesa kontu pertsonal bati edo administradore kontuari.\n"
+"\n"
+"Ezarri zure Windows zerbitzaria, inprimagailua LPD protokoloarekin "
+"eskuragarri egon dadin. Ezarri gero inprimagailua makina honetan \"%s\" "
+"koneksio motarekin Printdraken.\n"
+"\n"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
msgid ""
-"Restore Selected\n"
-"Files"
+"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 ""
-"Leheneratu Hautatutako\n"
-"Fitxategiak"
+"Ezarri zure Windows zerbitzaria, inprimagailua IPP protokoloarekin "
+"eskuragarri egon dadin eta ezarri inprimaketa, makina honetatik, \"%s\" "
+"lotura mota erabilizPrinterdrake-n.\n"
+"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:840
msgid ""
-"%s exists, delete?\n"
+"Connect your printer to a Linux server and let your Windows machine(s) "
+"connect to it as a client.\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."
+"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-"%s badago, ezabatu?\n"
+"Lotu zure inprimagailua Linux zerbitzari batera eta utzi zure Windows makina"
+"(k) berari lotzen bezero gisa.\n"
"\n"
-"Adi: Dagoeneko prozesu hau burutu baduzu seguraski\n"
-"authorized_keys sarrera purgatu beharko duzu zerbitzarian."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Bete edo egiaztatu ondoko eremua"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "/etc/fstab aldaketak gorde nahi dituzu?"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
-msgstr "Abioko protokoloa"
+"Ziur zaude inprimagailu hau ezartzen jarraitu nahi duzula egiten ari zaren "
+"moduan?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "%s LVM-diskoak\n"
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
+msgstr "NetWare inprimagailuaren aukerak"
-#: ../../services.pm:1
-#, c-format
-msgid "On boot"
-msgstr "Abioan"
+#: ../../printer/printerdrake.pm_.c:912
+msgid ""
+"To print on a NetWare printer, you need to provide the NetWare print server "
+"name (Note! it may be different from its TCP/IP hostname!) as well as the "
+"print queue name for the printer you wish to access and any applicable user "
+"name and password."
+msgstr ""
+"NetWare inprimagailuan inprimatzeko, NetWare inprimaketa-zerbitzariaren "
+"izena eman behar duzu (Oharra! baliteke bere TCP/IP ostalari-izena "
+"desberdina izatea!) eta baita atzitu nahi duzun inprimagailuaren inprimaketa-"
+"ilararen izena eta erabiltzaile-izenak eta pasahitzak ere."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "%s paketea behar da. Instalatu nahi duzu?"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr "Inprimagailu-zerbitzaria"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus identification"
-msgstr "Bus identifikazioa"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
+msgstr "Inprimaketa-ilararen izena"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vatican"
-msgstr "Vatikano"
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
+msgstr "NCP zerbitzari-izena falta da!"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please make a backup of your data first"
-msgstr "Egin zure datuen babeskopia lehendabizi"
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
+msgstr "NCP ilara-izena falta da!"
-#: ../../harddrake/data.pm:1
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, c-format
-msgid "ADSL adapters"
-msgstr "ADSL moldagailuak"
+msgid ", host \"%s\", port %s"
+msgstr ", \"%s\" ostalaria, %s protua"
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Disko gogor bat baino gehiago duzu, zeinetan instalatuko duzu linux?"
+msgid "Host \"%s\", port %s"
+msgstr "\"%s\" ostalaria, %s portua"
-#: ../../lang.pm:1
-#, c-format
-msgid "Eritrea"
-msgstr "Eritrea"
+#: ../../printer/printerdrake.pm_.c:1030
+msgid "TCP/Socket Printer Options"
+msgstr "TCP/Socket inprimagailuaren aukerak"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot ISO"
-msgstr "Abiapen ISO"
+#: ../../printer/printerdrake.pm_.c:1032
+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) into the input fields."
+msgstr ""
+"Aukeratu auto-detektatutako inprimagailuetako bat zerrendatik edo sartu "
+"ostalari-izena edo IP eta, nahi baduzu, portu zenbakia (jatorrian 9100 da) "
+"eremuetan."
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Firmware needed"
-msgstr "Firmware behar da"
+#: ../../printer/printerdrake.pm_.c:1033
+msgid ""
+"To print to a TCP or socket printer, you need to provide the host name or IP "
+"of the printer and optionally the port number (default is 9100). On HP "
+"JetDirect servers the port number is usually 9100, on other servers it can "
+"vary. See the manual of your hardware."
+msgstr ""
+"TCP edo Socket inprimagailu batera inprimatzeko, inprimagailuaren ostalari-"
+"izena edo IP eta, nahi baduzu, portu zenbakia (jatorrian 9100 da) eman behar "
+"dituzu. HP HP JetDirect zerbitzarietan portu-zenbakia normalki 9100 izaten "
+"da, beste zerbitzari batzuetan aldatu egin daiteke. Begiratu zure "
+"hardwarearen eskuliburuan."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove List"
-msgstr "Kendu zerrenda"
+#: ../../printer/printerdrake.pm_.c:1037
+msgid "Printer host name or IP missing!"
+msgstr "Inprimagailuaren ostalari izena falta da edo IP falta da!"
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
-msgstr "Norbere erara moldatu daitekeen ingurunea"
+#: ../../printer/printerdrake.pm_.c:1059
+msgid "Printer host name or IP"
+msgstr "Inprimagailuaren ostalari-izena edo IP"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
-msgstr "Inuktitut"
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
+msgstr "Inprimagailuaren URIa"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1108
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."
+"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 ""
-"Protokolo batzuk, rsync esaterako, zerbitzariaren aldean ezarri daitezke. "
-"Direktorio bidea erabili ordez, zerbitzuaren bidearentzako 'modulu' izena "
-"erabiliko zenuke."
+"Inprimagailua atzitzeko URIa zuzenean zehatz dezakezu. URIak CUPS edo "
+"Foomatic zehaztapenak bete behar ditu. Kontuan izan spooler guztiek ez "
+"dituztela URI mota guztiak onartzen."
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "Maroko"
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
+msgstr "Baliozko URI bat sartu behar da!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Zein inprimagailu-modelo daukazu?"
+#: ../../printer/printerdrake.pm_.c:1463
+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 ""
+"Inprimagailu bakoitzak izen bat behar du (adibidez \"inprimagailua\"). "
+"Azalpenaren eta Kokalekuaren eremuak ez dira nahitaez bete behar. "
+"Erabiltzaileentzako iruzkinak dira."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add a new printer"
-msgstr "Gehitu inprimagailu berria"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr "Inprimagailuaren izena"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " All of your selected data have been "
-msgstr " Hautatu dituzun datu guztiak izan dira "
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
+msgstr "Azalpena"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "Nepal"
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
+msgstr "Kokalekua"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Ezabatu"
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+msgid "Reading printer database..."
+msgstr "Inprimagailuaren datu-basea irakurtzen..."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
-msgstr "cpu # "
+#: ../../printer/printerdrake.pm_.c:1482
+msgid "Preparing printer database..."
+msgstr "Inprimagailuaren datu-basea prestatzen..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "chunk size"
-msgstr "zatiaren tamaina"
+#: ../../printer/printerdrake.pm_.c:1578
+msgid "Your printer model"
+msgstr "Zure inprimagailu-modeloa"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:1579
#, c-format
msgid ""
-"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
+"Printerdrake has compared the model name resulting from the printer auto-"
+"detection with the models listed in its printer database to find the best "
+"match. This choice can be wrong, especially when your printer is not listed "
+"at all in the database. So check whether the choice is correct and click "
+"\"The model is correct\" if so and if not, click \"Select model manually\" "
+"so that you can choose your printer model manually on the next screen.\n"
"\n"
-"If set to NONE, no issues are allowed.\n"
+"For your printer Printerdrake has found:\n"
"\n"
-"Else only /etc/issue is allowed."
+"%s"
msgstr ""
-"\"ALL\" ezarrita badago, /etc/issue eta /etc/issue.net onartzen dira.\n"
+"Printerdrake-k inprimagailua auto-detektatzean lortutako modelo-izena "
+"inprimagailuen datu-basean dituen modeloekin konparatu du, egokiena "
+"aurkitzeko. Aukera okerrekoa izan daiteke, batez ere zure inprimagailua ez "
+"bada azaltzen datu-baseko zerrendan. Beraz, begiratu aukera egokia den eta, "
+"hala bada, egin klik \"Modeloa zuzena da\"n, bestela, egin klik \"Hautatu "
+"modeloa eskuz\"en hurrengo pantailara joan eta modeloa eskuz hautatzeko.\n"
"\n"
-"\"NONE\" ezarrita badago, ez dira \"issue\"-ak onartzen.\n"
+"Hau aurkitu du Printerdrake-k zure inprimagailuarentzat:\n"
"\n"
-"Bestela /etc/issue soilik onartzen da."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr "Gaitu/Ezgaitu sulogin(8) erabiltzaile bakarreko mailan."
-
-#. -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
-#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "komandoak editatzeko, edo 'c' komando-lerroa nahi baduzu."
-
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Arazoa %s paketea instalatzean"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Karga balio hau baino handiagoa bada, abisua jasoko duzu"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Erantsi eskaner bat eskuz"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh"
-msgstr "Berritu"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Reload partition table"
-msgstr "Birkargatu partizio-taula"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Bai, automatikoki honekin hasi nahi dut (erabiltzailea, mahaigaina)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Selected"
-msgstr "Leheneratu Hautatutakoak"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Bilatu letra-tipoak instalatutakoen zerrendan"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Sare lokalak ez du `.0' amaieran; irteten. "
+"%s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Boot"
-msgstr "Abioa"
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+msgid "The model is correct"
+msgstr "Modeloa zuzena da"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " eta CD-a unitatean dago"
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+msgid "Select model manually"
+msgstr "Hautatu modeloa eskuz"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Tuner type:"
-msgstr "Sintonizatzaile mota :"
+#: ../../printer/printerdrake.pm_.c:1606
+msgid "Printer model selection"
+msgstr "Inprimagailu-modeloaren hautapena"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, 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"
-"\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 ""
-"Orain, inprimaketa sistema bat hautatzeko garaia da. Beste SE batzuek\n"
-"bat eskainiko dizute, baino Mandrake Linux-ek bi eskaintzen ditu. "
-"Inprimaketa\n"
-"sistema bakoitza hobe egokitzen da ezarpen mota berezietarako.\n"
-"\n"
-" * \"%s\" -- esanahia ``print, don't queue'' (inprimatu, ez jarri ilaran), "
-"egokia da\n"
-"zure inprimagailura lotura zuzena badaukazu, paperak trabatzea ekidin nahi\n"
-"duzu eta ez daukazu sareko inprimagailurik. (\"%s\"-k oso sareko kasu\n"
-"sinpleak erabiliko ditu eta nahiko geldoa da sareekin erabiltzean).\n"
-"Gomendagarria da \"pdq\" erabiltzea GNU/Linux-ekin lehenengo jarduera\n"
-"bada hau.\n"
-"\n"
-" * \"%s\" - `` Common Unix Printing System'', aukera bikaina da zure\n"
-"bertako inprimagailura edo mundu erdira dagoenera inprimatzeko.\n"
-"Ezartzeko erraza da eta zerbitzari edo bezero lanak egin ditzake\n"
-"\"lpd\" inprimaketa sistema zaharkituarentzat, beraz bateragarria\n"
-"da inprimaketa zerbitzuak behar dituzten sistema eragile zaharragoekin.\n"
-"Nahiko indartsua izanik, oinarrizko ezarpena \"pdq\"-rena bezain\n"
-"erraza da. \"lpd\" zerbitzari bat emulatu behar baduzu, ziurtatu\n"
-"\"cups-lpd\" deabrua pizten duzula. \"%s\"-k inprimatzeko edo\n"
-"inprimaketa aukerak hautatzeko eta inprimagailua kudeatzeko\n"
-"bitarteko grafikoak erabiltzen ditu.\n"
-"\n"
-"Orain hautapen bat egin, eta gero konturatzen bazara ez duzula zure\n"
-"inprimaketa sistema gustuko Mandrake Aginte Gunetik PrinterDrake\n"
-"exekutatu eta aditu botoia klikatuz aldatu dezakezu."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
-msgstr "\"Menu\" tekla"
+#: ../../printer/printerdrake.pm_.c:1607
+msgid "Which printer model do you have?"
+msgstr "Zein inprimagailu-modelo daukazu?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1608
msgid ""
"\n"
"\n"
"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
msgstr ""
"\n"
"\n"
-"Mesedez egiaztatu Printerdrake-k zure inprimagailu-ereduaren auto-detekzioa "
-"zuzen egin duen. Aurkitu eredu egokia zerrendan eredu okerra edo "
-"\"Inprimagailu-gordina\" nabarmenduta badago."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Administrator:"
-msgstr "Segurtasun Kudeatzailea:"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
-msgstr ""
-"Ezarri maskorraren itxaronaldia. Zero balioak itxaronaldi eza adierazten du."
+"Begiratu Printerdrake-k ondo detektatu duen automatikoki zure inprimagailu-"
+"modeloa. Bilatu modelo egokia zerrendan kurtsorea okerreko modeloan edo "
+"\"Inprimagailu gordinean\" badago."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "Firmware kopia arrakastatsua"
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid ""
-"You can't use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-"Ezin duzu beste CDROM bat erabili programa hauek martxan dauden bitartean: \n"
-"%s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
-msgstr ""
-"baietz ezarrita, egiaztatu erabiltzailearen atariko fitxategien baimenak."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Ez duzu Interneteko konexiorik.\n"
-"Sortu bat lehendabizi, 'Konfiguratu'n klik eginda"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Fonts copy"
-msgstr "Letra-tipoen kopia"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
-msgstr "Automatizatua"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Konfigurazioa probatu nahi duzu?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1611
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
-msgstr ""
-"\"%s\" inprimagailua behar bezala kendu da Star Office/OpenOffice.org/GIMP-"
-"tik."
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save packages selection"
-msgstr "Gorde pakete-hautapena"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Actions"
-msgstr "/_Ekintzak"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Remove the last item"
-msgstr "Kendu azken elementua"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Leheneratzeko erabiltzaile-zerrenda (erabiltzaile bakoitzaren datu berrienak "
-"bakarrik dira garrantzitsuak)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
-msgstr "Ez dira sare abiapen irudiak sortu!"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "erabili pptp"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Aukeratu zein zerbitzari abiarazi behar den automatikoki abioan"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check files/directories writable by everybody"
-msgstr "Aztertu guztientzat idazkarriak diren fitxategiak/direktorioak"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Ikasi inprimagailua nola erabili"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configure the network now"
-msgstr "Konfiguratu sarea orain"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Aukeratu ispilu bat paketeak bertatik hartzeko"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"FAT tamaina-aldatzaileak ezin du zure partizioa maneiatu, \n"
-"errore hau gertatu da: %s"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Size: "
-msgstr "Neurria: "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "Zein sektoretara eraman nahi duzu?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahamas"
-msgstr "Bahamak"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Do you want to click on this button?"
-msgstr "Botoi honetan klik egin nahi duzu?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Manual configuration"
-msgstr "Eskuzko konfigurazioa"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "search"
-msgstr "bilatu"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Pakete honek hautatutako teklatu-mapa kargatzen du\n"
-"/etc/sysconfig/keyboard fitxategian ezarritakoaren arabera. kbdconfig "
-"utilitatearen bidez hauta daiteke teklatu-mapa.\n"
-"Zerbitzu hau gaituta uztea komeni da makina gehienetan."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (instalazioaren bistaratze-kontrolatzailea)"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "Zeroconf ostalari izenak ez du zera eduki behar "
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr "Onartu/Ukatu icmp oihartzuna"
-
-#: ../../services.pm:1
-#, 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."
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
-"Syslog, daemon askok erabiltzen duten zerbitzua da, mezuak sistemako\n"
-"hainbat egunkari-fitxategitan sartzeko. Komeni izaten da syslog beti "
-"exekutatzea."
-
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown/Others"
-msgstr "Ezezaguna/Beste batzuk"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
-msgstr "Ez da TB txartelik aurkitu!"
-
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Options"
-msgstr "Aukerak"
+"Zure inprimagailua ez badago zerrendan, aukeratu bateragarria (ikus "
+"inprimagailuaren eskuliburua) edo antzekoa den bat "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "\"%s\" inprimagailua lehenetsi gisa ezarri da orain."
+#: ../../printer/printerdrake.pm_.c:1697
+msgid "OKI winprinter configuration"
+msgstr "OKI winprinter-en konfigurazioa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1698
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -13062,273 +8779,234 @@ msgstr ""
"funtzionatuko. Zure konexio-motaren ezarpena ez du kontuan hartuko "
"kontrolatzaileak."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr "cpu-aren belaunaldia (adib: 8 PentiumIII-arentzako, ...)"
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+msgid "Lexmark inkjet configuration"
+msgstr "Lexmark inkjet inprimagailuaren konfigurazioa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detected"
-msgstr "Auto-detektatuta"
+#: ../../printer/printerdrake.pm_.c:1719
+msgid ""
+"The inkjet printer drivers provided by Lexmark only support local printers, "
+"no printers on remote machines or print server boxes. Please connect your "
+"printer to a local port or configure it on the machine where it is connected "
+"to."
+msgstr ""
+"Lexmark-en Inkjet inprimagailu-kontrolatzaileek inprimagailu lokalak soilik "
+"onartzen dituzte, ez urruneko makinetako inprimagailuak edo inprimaketa-"
+"zerbitzariak. Konektatu zure inprimagailua ataka lokal batera edo konfigura "
+"ezazu konektatuta dagoen makinan."
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1746
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)."
+"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 ""
-"PXE zerbitzari bat DHCP zerbitzari gisa instalatzera zoaz\n"
-"eta TFTP zerbitzari bat instalazio zerbitzari bat eraikitzeko.\n"
-"Ezaugarri horiekin, zure bertako sareko beste konputagailu batzukinstalatu "
-"ahal izango dira konputagailu hau iturri bezala erabiliz.\n"
-"\n"
-"Ziurtatu ezazu zure Sare/Internet sarbidea ezarri duzula drakconnect "
-"erabiliz aurrera jarraitu aurretik.\n"
-"\n"
-"Oharra: Sareko Moldagailu bat jardunean behar duzu Bertako Eremuko Sare "
-"(LAN) bat ezartzeko."
+"Lexmark inkjet eta konfigurazio honekin inprimatu ahal izateko, Lexmark-ek "
+"emandako inkjet inprimagailu-gidariak behar dituzu (http://www.lexmark."
+"com/). Klikatu \"Drivers\" estekan. Gero aukeratu eredua eta ondoren \"Linux"
+"\" sistema eragile gisa. Gidariak RPM pakete gisa edo instalazio grafiko "
+"interaktiboa duten shell script gisa egoten dira. Ez da beharrezkoa "
+"konfigurazio hau bitarteko grafikoen bidez egitea. Ezeztatu zuzenean "
+"lizentzia-kontratuaren ondoren. Gero inprimatu inprimatze-burua lerrokatzeko "
+"orriak \"lexmarkmaintain\"ekin eta doitu burua lerrokatzeko ezarpenak "
+"programa honekin."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr "GDI Laser Inprimagailua Zenographics ZJ-Stream Formatua erabiliz"
+
+#: ../../printer/printerdrake.pm_.c:1750
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"
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\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"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
"\n"
-"It also provides a much higher API than OSS.\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\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"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-"OSS (Open Sound System) izan zen lehenengo soinu API. Soinu API hau ez da SE-"
-"aren menpekoa (unix sistema gehienetan eskuragarri dago) baino oso API xume "
-"eta mugatua da.\n"
-"Gainera, OSS gidari guztiek gurpila berrasmatzen dute.\n"
+"Zure inprimagailua ekoizle desberdinek saltzen dituzten GDI laser "
+"inprimagailuen (winprinters) taldekoa da, Zenographics ZJ-stream raster "
+"formatua erabiltzen dute datuak inprimagailura bidaltzeko. Inprimagailu "
+"hauentzako gidaria hasierako garapen egoeran dago eta horregatik baliteke "
+"beti behar bezala ez ibiltzea. Bereziki posible da inprimagailuak A4 paper "
+"neurria aukeratzen duzunean bakarrik lanegitea.\n"
"\n"
-"ALSA (Advanced Linux Sound Architecture) arkitektura modularra da, \n"
-"ISA, USB eta PCI txartel multzo zabalari euskarri ematen diona.\n"
+"Inprimagailu hauetako batzuei, HP LaserJet 1000 esaterako, jatorrian gidaria "
+"beretzako sortu zen, pizterakoan beraien firmwarerra zamatu behar zaie. HP "
+"LaserJet 1000-ren kasuan inprimagailuaren Windows gidari CDa edo zure "
+"Windows partizioa behatu behar duzu \"sihp1000.img\" fitxategiaren bila eta "
+"inprimagailuari zamatu behar diozu ondorengo komandoetako batekin:\n"
"\n"
-"Askogatik OSS-k baino maila handiagoko API hornitzen du.\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
"\n"
-"ALSA erabiltzeko, batek bitako edozein erabil dezake:\n"
-"- OSS-rekin bateragarri den api zaharra.\n"
-"- Ezaugarri hedatu ugari eskaintzen dituen ALSA api berria, ALSA liburutegia "
-"erabili behar da.\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Ez dago lekurik 1 MBko bootstrap-a sortzeko! Instalazioak jarraituko du, "
-"baina zure sistema abiarazteko, bootstrap partizioa sortu beharko duzu "
-"DiskDrake-rekin"
+"Lehenengo komandoa edozein erabiltzaile arruntak eman dezake, bigarrena root "
+"bezala eman behar da. Hori egin ondoren normaltasunez inprimatu dezakezu.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1972
msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
+"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 ""
-"Hautatu ezarri nahi duzun inprimagailua edo sartu gailuaren izena/fitxategi-"
-"izena sarrera leihoan"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
-msgstr "Ezetsi"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
-msgstr "BERTAKO"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
-msgstr "HFS"
+"Inprimagailuaren ezarpen lehenetsiak\n"
+"\n"
+"Ziurtatu orri-tamaina eta tinta-mota/inprimatzeko modua (erabilgarri badago)"
+"eta laser inprimagailuaren hardware-konfigurazioa zuzen ezarri direla. "
+"Kontuan hartu inprimatzeko kalitatea oso handia bada askoz mantsoago "
+"inprimatuko duela segurutik."
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake-k hardware-proba bat exekutatzen du eta nahi izanez \n"
-"gero hardware berria/aldatua konfiguratzen du."
+msgid "Option %s must be an integer number!"
+msgstr "%s aukerak osoko zenbakia izan behar du!"
-#: ../../fs.pm:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "Creating and formatting file %s"
-msgstr "%s fitxategia sortzen eta formateatzen"
+msgid "Option %s must be a number!"
+msgstr "%s aukerak zenbakia izan behar du!"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:1989
#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
-msgstr "baietz ezarrita, egiaztatu sgid fitxategien gehikuntzak/ezabaketak."
+msgid "Option %s out of range!"
+msgstr "%s aukera barrutitik kanpo dago!"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2028
#, 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"
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
-"HP LaserJet 1000-k piztu eta gero bere firmwarea zamatu dakion behar du. "
-"Jaitsi Windows gidari paketea HP-ren web lekutik (inprimagailuen CD-ko "
-"firmawarea ez dabil) eta atera ezazu firmwarea bertatik berez-ateratzen duen "
-"'.exe' fitxategia 'unzip' tresnarekin deskonprimatu eta 'sihp1000.img' "
-"fitxategia bilatuz. Kopiatu fitxategi hau '/etc/printer' direktorioan. Han, "
-"goruntz-zamatzeko script-ak automatikoki zamatuko dio inprimagailua "
-"konektatu eta pizten den momentuan.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "Aukeratu lehendik dagoen LVM bat gehitzeko"
+"Inprimagailu hau (\"%s\")\n"
+"lehenetsi nahi duzu?"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "xfs restart"
-msgstr "xfs berrabiarazi"
+#: ../../printer/printerdrake.pm_.c:2051
+msgid "Test pages"
+msgstr "Proba-orriak"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2052
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"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 ""
-"\"%s\" inprimagailua badago lehendik ere,\n"
-"bere konfigurazioa gainidatzi nahi duzu?"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Erabili eskanerrak ostalari hauetan: "
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
-msgstr "Desautatutako guztiak"
-
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "ez dago partizio erabilgarririk"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Management \n"
-msgstr "Inprimagailu Kudeaketa \n"
+"Hautatu inprimatu nahi dituzun proba-orriak.\n"
+"Kontuan hartu: argazkien proba-orriak denbora asko behar izan dezake "
+"inprimatzeko, eta memoria gutxiko laser inprimagailuetan baliteke ez "
+"ateratzea ere. Gehienetan nahikoa izaten da proba-orri estandarra "
+"inprimatzea."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Domeinuko Izen Ebazlea"
+#: ../../printer/printerdrake.pm_.c:2056
+msgid "No test pages"
+msgstr "Proba-orririk ez"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
-msgstr "Enkriptatze-gakoa (berriro)"
+#: ../../printer/printerdrake.pm_.c:2057
+msgid "Print"
+msgstr "Inprimatu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Samba konpartitze-izena falta da!"
+#: ../../printer/printerdrake.pm_.c:2114
+msgid "Standard test page"
+msgstr "Proba-orri estandarra"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
-msgstr "True Type instalazioa eginda"
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
+msgstr "Proba-orri alternatiboa (Letter)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detection in progress"
-msgstr "Detekzioa martxan"
+#: ../../printer/printerdrake.pm_.c:2120
+msgid "Alternative test page (A4)"
+msgstr "Proba-orri alternatiboa (A4)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Eraiki Kernel Osoa -->"
+#: ../../printer/printerdrake.pm_.c:2122
+msgid "Photo test page"
+msgstr "Argazkien proba-orria"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "modem"
-msgstr "modema"
+#: ../../printer/printerdrake.pm_.c:2126
+msgid "Do not print any test page"
+msgstr "Ez inprimatu proba-orririk"
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "Ongi etorri %s(e)ra"
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
+msgstr "Proba-orria(k) inprimatzen..."
-#: ../../standalone/drakhelp:1
+#: ../../printer/printerdrake.pm_.c:2159
#, 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"
+"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"
-"Usage: \n"
msgstr ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003 MandrakeSoft.\n"
-"Software askea da hau eta GNU-ren GPL-k ezarritakoak beteaz birbanatu "
-"daiteke.\n"
+"Proba-orria(k) inprimagailura bidali dira.\n"
+"Denbora pixka bat igaro liteke inprimatzen hasi arte.\n"
+"Inprimatze-egoera:\n"
+"%s\n"
"\n"
-"Erabilera: \n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Sartu moduluak eguneratzeko disketea %s unitatean"
+#: ../../printer/printerdrake.pm_.c:2163
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+msgstr ""
+"Proba-orria(k) inprimagailura bidali dira.\n"
+"Denbora pixka bat igaro liteke inprimatzen hasi arte.\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
-msgstr "Bootsplash"
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
+msgstr "Ongi egin du?"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+msgid "Raw printer"
+msgstr "Inprimagailu \"gordina\""
+
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
+"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 ""
-"Ondorengo inprimagailua\n"
-"\n"
-"%s%s\n"
-"zure sistemara zuzenean konektatuta dago"
+"Fitxategi bat komando-lerrotik (terminal-leihoa) inprimatzeko, \"%s "
+"<fitxategia>\" komandoa edo inprimatze-tresna grafiko bat erabil dezakezu: "
+"\"xpp <fitxategia>\" edo \"kprinter <fitxategia>\". Tresna grafikoak "
+"inprimagailua hautatzeko eta aukeren ezarpenak erraz aldatzeko erabiltzen "
+"dira.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Inprimagailu elkarbanaketa ostalarian/sarean: "
+#: ../../printer/printerdrake.pm_.c:2218
+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 ""
+"Komando horiek aplikazio askotako inprimatze-elkarrizketetako \"Inprimatzeko "
+"komandoa\" eremuan erabil ditzakezu ere, baina hor ez eman fitxategi-izena, "
+"inprimatu behar den fitxategia aplikazioak ematen baitu.\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, c-format
msgid ""
"\n"
@@ -13341,7877 +9019,5949 @@ msgstr ""
"ezarpenak. Gehitu nahi dituzun ezarpenak komando-lerroari, adib. \"%s "
"<fitxategia>\". "
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "DrakClock"
-msgstr "DrakClock"
-
-#: ../../modules/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
#, 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."
+"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\n"
+"\n"
msgstr ""
-"Kasu batzuetan, %s kontrolatzaileak informazio gehigarria behar du egoki \n"
-"funtzionatzeko, nahiz eta normalki hori gabe ongi funtzionatzen duen. Aukera "
-"gehigarriak zehaztu \n"
-"nahi dituzu, edo kontrolatzaileari zure makina probatzen\n"
-"utzi, behar duen informazioa bilatzeko? Batzuetan, probatzeak ordenagailua "
-"blokeatuko du, baina\n"
-"horrek ez luke kalterik egin beharko."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "Ez da CD etiketa zuzena. Diskoak %s etiketa dauka."
+"Uneko inprimagailuak dituen aukerak ezagutzeko, irakurri ondoko zerrenda edo "
+"egin klik \"Inprimatu aukeren zerrenda\" botoian.%s%s\n"
+"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2228
msgid ""
+"Here is a list of the available printing options for the current printer:\n"
"\n"
-"- Daemon, %s via:\n"
msgstr ""
+"Hemen duzu inprimagailu honen inprimatzeko aukeren zerrenda:\n"
"\n"
-"- Deabrua, %s bidea :\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "Kuba"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr "Urria"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belize"
-msgstr "Belize"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Inprimagailu berrien bila..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
-msgstr " (saio-anitza)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
-msgstr "Nukleoaren abioaren denbora-muga"
-
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, 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."
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
msgstr ""
-"Zure txartelak 3D hardware-azelerazioaren euskarria eduki dezake, baina "
-"XFree %s(r)ekin soilik.\n"
-"Zure txartelak XFree %s euskarria du, eta horrek euskarri hobea izan dezake "
-"2Dan."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Activate/Disable daily security check."
-msgstr "Gaitu/Ezgaitu eguneroko segurtasun egiaztapenak"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CDROMa.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
-msgstr "Gaitu libsafe sisteman aurkitzen bada"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX Partizio-morroiak irtenbide hauek aurkitu ditu:"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "Hungariarra"
+"Fitxategi bat komando-lerrotik (terminal-leihoa) inprimatzeko, erabili \"%s "
+"<fitxategia>\" komandoa.\n"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"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 ""
-"Hautatu hornitzailea.\n"
-" Zerrendan ez badago, aukeratu Zerrendatu gabe"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Ordu-sinkronizazio automatikoa (NTP erabiliz)"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Erabili nere Windows partizioa"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
+"Komando hau aplikazio askotako inprimatze-elkarrizketetako \"Inprimatzeko "
+"komandoa\" eremuan ere erabil dezakezu. Baina hor ez eman fitxategi-izena, "
+"inprimatu behar den fitxategia aplikazioak ematen baitu.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Server"
-msgstr "LDAP Zerbitzaria"
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
+msgid ""
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
+msgstr ""
+"Uneko inprimagailuaren aukera erabilgarrien zerrenda eskuratzeko, egin klik "
+"\"Inprimatzeko aukeren zerrenda\" botoian."
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:2253
#, 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."
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
msgstr ""
-"PCMCIA euskarria eramangarrietan ethernet eta modemak\n"
-"eta horrelakoak onartzeko izaten da normalki. Ez da abiaraziko "
-"konfiguratuta izan ezean, beraz\n"
-"lasai eduki daiteke instalatuta premiarik izan ez arren."
+"Fitxategi bat komando-lerrotik (terminal-leihoa) inprimatzeko, erabili \"%s "
+"<fitxategia>\" komandoa edo \"%s <fitxategia>\".\n"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Choose your country"
-msgstr "Aukeratu zure herrialdea edo estatua"
+#: ../../printer/printerdrake.pm_.c:2257
+msgid ""
+"You can also use the graphical interface \"xpdq\" for setting options and "
+"handling printing jobs.\n"
+"If you are using KDE as desktop environment you have a \"panic button\", an "
+"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
+"jobs immediately when you click it. This is for example useful for paper "
+"jams.\n"
+msgstr ""
+"\"xpdq\" interfaze grafikoa ere erabil dezakezu aukerak ezartzeko eta "
+"inprimatze-lanak maneiatzeko.\n"
+"KDE erabiltzen baduzu mahaigaineko ingurune gisa, \"estualdi-botoi\" bat "
+"egongo da, \"GELDITU inprimagailua!\" dioena, eta inprimatze-lan guztiak "
+"berehala etengo ditu bertan klik egitean. Papera trabatzen denean eta "
+"horrelakoetan erabili ohi da.\n"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2261
#, c-format
msgid ""
"\n"
-"- System Files:\n"
+"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
+"a particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\".\n"
msgstr ""
"\n"
-"- Sistema-fitxategiak:\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
-msgstr "Tresna Autonomoak"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Where"
-msgstr "Non"
+"\"%s\" eta \"%s\" komandoen bidez inprimatze-lan baten aukera-ezarpenak alda "
+"daitezke. Aski da nahi diren ezarpenak komando-lerroan gehitzea, adib.: \"%s "
+"<fitxategia>\".\n"
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm_.c:2271
#, c-format
-msgid "but not matching"
-msgstr "bat ez badatoz"
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Inprimatzeko/Eskaneatzeko/Argazki Txartelak \"%s\"-n"
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm_.c:2272
#, c-format
-msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
-msgstr ""
-"Hemen gidari alternatibo bat hautatu dezakezu (OSS edo ALSA) zure soinu "
-"txartelarentzat (%s)"
+msgid "Printing/Scanning on \"%s\""
+msgstr "\"%s\": inprimatzen/eskaneatzen"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2274
#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "PCMCIA txartelak konfiguratzen..."
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Inprimaketa/Argazki Txartelen Sarrera \"%s\"-n"
-#: ../../common.pm:1
+#: ../../printer/printerdrake.pm_.c:2275
#, c-format
-msgid "kdesu missing"
-msgstr "kdesu falta da"
+msgid "Printing on the printer \"%s\""
+msgstr "\"%s\" inprimagailuan inprimatzen"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s-k erabiltzaile izen bat behar du...\n"
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+msgid "Close"
+msgstr "Itxi"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
-msgstr "Enkriptatze-gakoa"
+#: ../../printer/printerdrake.pm_.c:2281
+msgid "Print option list"
+msgstr "Inprimatzeko aukeren zerrenda"
-#: ../../mouse.pm:1
+#: ../../printer/printerdrake.pm_.c:2301
#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+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!"
+msgstr ""
+"Zure funtzio-anitzeko gailua automatikoki konfiguratu zen eskaneatu ahal "
+"izateko. Orain \"scanimage\"rekin eskanea dezakezu (\"scanimage -d hp:%s\" "
+"eskanerra zehazteko, bat baino gehiago badituzu) komando-lerrotik edo "
+"\"xscanimage\" edo \"xsane\" interfaze grafikoekin. GIMP erabiltzen baduzu, "
+"\"File\"/\"Acquire\" menuko puntu egokiaren bidez ere eskanea dezakezu. "
+"Informazio gehiago nahi baduzu, deitu \"man scanimage\" komando-lerroan.\n"
+"\n"
+"Ez erabili \"scannerdrake\" gailu honekin!"
-#: ../../keyboard.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2322
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."
+"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 ""
-"Ezarpen hau instalazioaren ondoren aktibatuko da.\n"
-"Instazioan zehar, eskuineko kontrol tekla erabili beharko duzu\n"
-"teklatu eraketa desberdinen artean aldatzeko."
+"Zure inprimagailua automatikoki konfiguratu zen zure PC-tik argazki txartel "
+"unitateetara sarrera emateko. Orain \"MtoolsFM\" programa grafikoa erabiliz "
+"(Menua: \"Aplikazioak\" -> \"Fitxategi tresnak\" -> \"MTools Fitxategi "
+"Kudeatzailea\") edo \"mtools\" komando lerroko utilitatea erabiliz (sartu "
+"\"man mtools\" komando lerroan informazio gehiago jasotzeko) zure argazki "
+"txartelak atzitu ditzakezu. Txartelaren fitxategi-sistema \"p:\" unitate "
+"hizkipean aurkituko duzu, edo ondorengo hizkietan argazki txartela duten HP "
+"inprimagailu bat baino gehiago baduzu. \"MtoolsFM\" tresnan unitate hizki "
+"artean mugitu zaitezke fitxategi-zerrenden goi-eskuin ertzetan dagoen eremua "
+"erabiliz."
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "Christmas uhartea"
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+msgid "Reading printer data..."
+msgstr "Inprimagailu-datuak irakurtzen..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Automatic"
-msgstr "Automatikoa"
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+msgid "Transfer printer configuration"
+msgstr "Transferitu inprimagailu-konfigurazioa"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2365
#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Abioko kargatzailea instalatzeak huts egin du. Errore hau gertatu da:"
+msgid ""
+"You can copy the printer configuration which you have done for the spooler %"
+"s to %s, your current spooler. All the configuration data (printer name, "
+"description, location, connection type, and default option settings) is "
+"overtaken, but jobs will not be transferred.\n"
+"Not all queues can be transferred due to the following reasons:\n"
+msgstr ""
+"%s spooler-erako egin duzun inprimagailu-konfigurazioa %s spooler-era (uneko "
+"spooler-era) kopia dezakezu. Konfigurazio-datu guztiak (inprimagailuaren "
+"izena, azalpena, kokalekua, \n"
+"konexio-mota eta aukera-ezarpenak lehenetsiak) hartuko ditu, baina lanak ez "
+"dira transferituko.\n"
+"Ilara guztiak ezin dira transferitu, ondorengo arrazoiak direla eta:\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "EIDE/SCSI kanalea"
+#: ../../printer/printerdrake.pm_.c:2368
+msgid ""
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
+msgstr ""
+"CUPSek ez ditu onartzen Novell zerbitzarietako inprimagailuak edo datuak "
+"libre osatutako komando batean bidaltzen dituztenak.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Ezarri inprimagailu hau lehenetsi gisa"
+#: ../../printer/printerdrake.pm_.c:2370
+msgid ""
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
+msgstr ""
+"PDQk inprimagailu lokalak, urruneko LPD inprimagailuak eta Socket/TCP "
+"inprimagailuak soilik onartzen ditu.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Egiaztatu %s bide egokia dela"
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr "LPDk eta LPRng-ek ez dute IPP inprimagailurik onartzen.\n"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "%s partizioan"
+#: ../../printer/printerdrake.pm_.c:2374
+msgid ""
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
+msgstr ""
+"Gainera, programa honen edo \"foomatic-configure\"ren bidez sortu ez diren "
+"ilarak ezin dira transferitu."
-#: ../../security/level.pm:1
-#, c-format
-msgid "Paranoid"
-msgstr "Paranoidea"
+#: ../../printer/printerdrake.pm_.c:2375
+msgid ""
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
+msgstr ""
+"\n"
+"Halaber, fabrikatzaileek emandako PPD fitxategiekin edo jatorrizko CUPS "
+"kontrolatzaileekin konfiguratutako inprimagailuak ezin dira transferitu."
-#: ../../any.pm:1
-#, c-format
-msgid "NIS"
-msgstr "NIS"
+#: ../../printer/printerdrake.pm_.c:2376
+msgid ""
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
+msgstr ""
+"\n"
+"Markatu transferitu nahi dituzun inprimagailuak eta sakatu\n"
+"\"Transferitu\"."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- Ezabatu Erabiltzailea"
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
+msgstr "Ez transferitu inprimagailuak"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Location on the bus"
-msgstr "Busean kokapena"
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
+msgstr "Transferitu"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2392
#, c-format
-msgid "No printer found!"
-msgstr "Ez da inprimagairik aurkitu!"
+msgid ""
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
+msgstr ""
+"\"%s\" izeneko inprimagailu bat badago %s(e)n. \n"
+"Sakatu \"Transferitu\" gainidazteko.\n"
+"Beste izen bat idatz dezakezu, edo inprimagailu hori saltatu."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
-msgstr "gailu saltzailearen izena"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr ""
+"Inprimagailu-izenak letrak, zenbakiak eta azpimarra soilik eduki behar ditu"
-#: ../../help.pm:1 ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
-msgid "Erase entire disk"
-msgstr "Ezabatu disko osoa"
+msgid ""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
+msgstr ""
+"\"%s\" inprimagailua badago lehendik ere,\n"
+"bere konfigurazioa gainidatzi nahi duzu?"
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Default)"
-msgstr " (lehenetsia)"
+#: ../../printer/printerdrake.pm_.c:2413
+msgid "New printer name"
+msgstr "Inprimagailu-izen berria"
-#: ../../standalone/drakgw:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "Automatic reconfiguration"
-msgstr "Birkonfigurazio automatikoa"
+msgid "Transferring %s..."
+msgstr "%s transferitzen..."
-#: ../../standalone/net_monitor:1
+#: ../../printer/printerdrake.pm_.c:2427
#, c-format
-msgid "Receiving Speed:"
-msgstr "Jasotze abiadura: "
+msgid ""
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
+msgstr ""
+"Zure lehengo inprimagailu lehenetsia (\"%s\") transferitu duzu, Inprimagailu "
+"lehenetsia izan behar du %s inprimatze-sistema berrian ere?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
-msgstr "Turk eta Caico uharteak"
+#: ../../printer/printerdrake.pm_.c:2437
+msgid "Refreshing printer data..."
+msgstr "Inprimagailuaren datuak freskatzen..."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Ip"
-msgstr "IP-rik Ez"
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+msgid "Configuration of a remote printer"
+msgstr "Urruneko inprimagailu baten konfigurazioa"
-#: ../../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
-#, c-format
-msgid "<- Previous"
-msgstr "<- Aurrekoa"
+#: ../../printer/printerdrake.pm_.c:2446
+msgid "Starting network..."
+msgstr "Sarea abiarazten ..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Transfer Now"
-msgstr "Transferitu Orain"
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+msgid "Configure the network now"
+msgstr "Konfiguratu sarea orain"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password and network authentication methods"
-msgstr "Ezarri root pasahitza eta sare autentifikazio prozedurak"
+#: ../../printer/printerdrake.pm_.c:2480
+msgid "Network functionality not configured"
+msgstr "Sare-funtzionalitatea ez dago konfiguratuta"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "Txandakatu alfabetikoaren eta taldeka ordenatuaren artean"
+#: ../../printer/printerdrake.pm_.c:2481
+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 ""
+"Urruneko inprimagailu bat konfiguratzera zoaz. Sarerako sarbidea behar duzu "
+"horretarako, baina sarea konfiguratu gabe dago. Aurrera jarraitzen baduzu "
+"sarea konfiguratu gabe, ezin izango duzu orain konfiguratzen ari zaren "
+"inprimagailua erabili. Zer egin nahi duzu?"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Themes"
-msgstr "Gaiak"
+#: ../../printer/printerdrake.pm_.c:2484
+msgid "Go on without configuring the network"
+msgstr "Jarraitu sarea konfiguratu gabe"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "Aukerak: %s"
+#: ../../printer/printerdrake.pm_.c:2518
+msgid ""
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
+"Instalazioan egindako sare-konfigurazioa ezin da abiarazi orain. "
+"Berrabiarazi sistema eta begiratu ea sarean sartzen zaren eta, ondoren, "
+"zuzendu konfigurazioa Mandrake Kontrol Zentroko \"Sarea eta Internet\"/"
+"\"Konexioa\" atalean, eta gero konfiguratu inprimagailua, Mandrake Kontrol "
+"Zentroan bertan, \"Hardwarea\"/\"Inprimagailua\" atalean."
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2519
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
+"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 ""
-"Orain %s erabiltzen ari zara Abioko Kudeatzaile gisa.\n"
-"Egin klik 'Konfiguratu'n instalazio-morroia abiarazteko."
+"Sarerako sarbidea ez dago martxan eta ezin da abiarazi. Begiratu "
+"konfigurazioa eta hardwarea ondo dauden. Gero saiatu berriro urruneko "
+"inprimagailua konfiguratzen."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "OKI winprinter-en konfigurazioa"
+#: ../../printer/printerdrake.pm_.c:2529
+msgid "Restarting printing system..."
+msgstr "Inprimatze-sistema berrabiarazten ..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
-msgstr "Santa Helena"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "high"
+msgstr "handia"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Parallel port #%s"
-msgstr "#%s ataka paraleloa"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "paranoid"
+msgstr "paranoidea"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid "Security Level"
-msgstr "Segurtasun maila"
+msgid "Installing a printing system in the %s security level"
+msgstr "Inprimatze-sisteman segurtasun-maila %s instalatzen"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2570
#, c-format
msgid ""
-"Some steps are not completed.\n"
+"You are about to install the printing system %s on a system running in the %"
+"s security level.\n"
"\n"
-"Do you really want to quit now?"
+"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 ""
-"Urrats batzuk ez dira osatu.\n"
+"%s inprimatze-sistema segurtasun-maila %sn dabilen sisteman instalatzera "
+"zoaz.\n"
"\n"
-"Ziur zaude orain irten nahi duzula?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "Sudan"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "Poloniarra (qwertz diseinua)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
-msgstr "Siria"
+"Inprimatze-sistema honek inprimatze-lanei itxaroteko eta lanak maneiatzeko "
+"daemon (atzeko planoko prozesu) bat exekutatzen du. Daemon hori urruneko "
+"makinek ere atzitu dezakete sarearen bitartez eta hala, erasoak jasateko "
+"gunea izan daiteke. Beraz, daemon hautatu bakan batzuk besterik ez dira "
+"abiarazten lehenespenez segurtasun-maila honetan.\n"
+"\n"
+"Makina honetan konfiguratu nahi duzu inprimaketa?"
-#: ../../printer/printerdrake.pm:1
-#, 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?"
-msgstr ""
-"Zure inprimagailua HP edo Sony-ren gailu funtzio-anitza (OfficeJet, PSC, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner, DeskJet 450, Sony IJP-V100), "
-"HP PhotoSmart edo HP LaserJet 2200 da?"
+#: ../../printer/printerdrake.pm_.c:2604
+msgid "Starting the printing system at boot time"
+msgstr "Abioan inprimatze-sistema abiarazi"
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
+#: ../../printer/printerdrake.pm_.c:2605
#, c-format
msgid ""
-"Welcome to %s the operating system chooser!\n"
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\n"
"\n"
-"Choose an operating system from the list above or\n"
-"wait %d seconds for default boot.\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 ""
-"Ongi etorri %s sistema eragilearen aukeratzailera!\n"
+"(%s) inprimatze-sistema ez da automatikoki hasiko makina abiarazten denean.\n"
"\n"
-"Aukeratu sistema eragile bat goiko zerrendan edo\n"
-"itxaron %d segundo lehenetsitako abiorako.\n"
+"Baliteke abiarazte automatikoa desaktibatuta egotea segurtasun-maila "
+"handiagora aldatu delako, eta inprimatze-sistema eraso-gune potentziala "
+"delako.\n"
"\n"
+"Inprimatze-sistema automatikoki hastea berriro aktibatu nahi duzu?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "Portugesa"
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
+msgstr "Instalatutako softwarea egiaztatzen..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
-msgstr "Atzera-begiztako fitxategi-izena: "
+#: ../../printer/printerdrake.pm_.c:2630
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "%s kentzen"
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "DNS zerbitzariaren helbidea 1.2.3.4 formatuan egon behar luke"
+#: ../../printer/printerdrake.pm_.c:2636
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "Paketeak instalatzen..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Control key"
-msgstr "Ezkerreko Kontrol tekla"
+#: ../../printer/printerdrake.pm_.c:2685
+msgid "Select Printer Spooler"
+msgstr "Hautatu inprimagailuaren spooler-a"
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
-msgstr "Serbia"
+#: ../../printer/printerdrake.pm_.c:2686
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Zein inprimatze-sistema (spooler) erabili nahi duzu?"
-#: ../../standalone/drakxtv:1
+#: ../../printer/printerdrake.pm_.c:2720
#, c-format
-msgid "Newzealand"
-msgstr "Zeelanda Berria"
+msgid "Configuring printer \"%s\"..."
+msgstr "\"%s\" inprimagailua ezartzen..."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
-msgstr "Direktorio honek erroko fitxategi-sisteman egon behar du"
+#: ../../printer/printerdrake.pm_.c:2731
+msgid "Installing Foomatic..."
+msgstr "Foomatic instalatzen ..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
-msgstr "sarean zehar"
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr "Inprimagailuaren aukerak"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
-msgstr "BlokMaius tekla"
+#: ../../printer/printerdrake.pm_.c:2810
+msgid "Preparing Printerdrake..."
+msgstr "Printerdrake prestatzen..."
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "Abioko kargatzailea"
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+msgid "Configuring applications..."
+msgstr "Aplikazioak konfiguratzen..."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Hautatu txartel grafikoaren memoria-tamaina"
+#: ../../printer/printerdrake.pm_.c:2845
+msgid "Would you like to configure printing?"
+msgstr "Inprimaketa konfiguratu nahi duzu?"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
+msgstr "Inprimatze-sistema: "
+
+#: ../../printer/printerdrake.pm_.c:2915
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))."
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
-"Gaitu/Ezgaitu crontab eta at erabiltzaileentzako.\n"
-"\n"
-"Jarri baimendutako erabiltzaileak /etc/cron.allow eta /etc/at.allow\n"
-"fitxategietan (ikusi man at(1) eta crontab(1))."
+"Ondoko inprimagailuak daude konfiguratuta. Egin klik bikoitza inprimagailu "
+"batean ezarpenak aldatzeko, inprimagailua lehenesteko, informazioa ikusteko, "
+"edo urruneko CUPS zerbitzari bateko inprimagailu bat Star Office/OpenOffice."
+"org-rentzat erabilgarri egiteko."
-#: ../../standalone.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2916
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."
+"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 ""
-"[AUKERAK]\n"
-"Sare & Internet koneksio eta monitorizazio aplikazioa\n"
-"\n"
-"--defaultintf interface : erakutsi interfaze hau era lehenetsian\n"
-"--connect : konektatu internetera oraindik konektatu gabe badago\n"
-"--disconnect : internetetik deskonektatu dagoeneko konektatuta badago\n"
-"--force : (dis)connect-ekin erabiltzeko: behartu (dis)connection.\n"
-"--status : itzuli 1 konektatuta badago bestela 0, ondoren irten.\n"
-"--quiet : ez izan interaktiboa. (dis)connect aukerarekin erabiltzeko."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
-msgstr "IP Helbide Dinamiko Erabilgarriak:"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "LVM izena?"
-
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "Zenbait gailu \"%s\" hardware motan ezabatu egin dira:\n"
+"Ondoko inprimagailuak daude konfiguratuta. Ezarpenak aldatzeko, inprimagailu "
+"bat lehenesteko edo informazioa ikusteko, egin klik bikoitza inprimagailu "
+"batean."
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "%s %s interfaze aurkitu dira"
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
+msgstr "Freskatu inprimagailu-zerrenda (urruneko CUPS inprimagailuak ikusteko)"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Install"
-msgstr "Posta-instalazioa"
+#: ../../printer/printerdrake.pm_.c:2960
+msgid "Change the printing system"
+msgstr "Aldatu inprimatzeko sistema"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The internal domain name"
-msgstr "Barneko domeinu izena"
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+msgid "Normal Mode"
+msgstr "Modu normala"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "Txartelaren IRQ"
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+msgid "Do you want to configure another printer?"
+msgstr "Beste inprimagailu bat konfiguratu nahi duzu?"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "logdrake"
+#: ../../printer/printerdrake.pm_.c:3211
+msgid "Modify printer configuration"
+msgstr "Aldatu inprimagailuaren konfigurazioa"
-#: ../../standalone.pm:1
+#: ../../printer/printerdrake.pm_.c:3213
#, 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."
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
-"Hizki-mota inportazio eta monitoretza "
-"aplikazioa \n"
-"--windows_import : importatu eskuragarri dauden windows partizio "
-"guztietatik.\n"
-"--xls_fonts : erakutsi xls-tik dagoeneko dauden hizki-mota guztiak\n"
-"--strong : hizki-moten egiaztapen sakona.\n"
-"--install : onartu edozein hizki-mota fitxategi eta edozein "
-"direktorio.\n"
-"--uninstall : ezabatu edozein hizki-mota edo hizki direktorio.\n"
-"--replace : ordezkatu hizki-mota guztiak aurretik badaude.\n"
-"--application : 0 batere aplikaziorik ez.\n"
-" : 1 euskarria duten aplikazio eskuragarri guztiak.\n"
-" : aplikazioaren_izena adib so (staroffice) \n"
-" : eta gs (ghostscript) honentzako bakarrik."
-
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Aukeratu abioko diskoa egiteko erabili nahi duzun diskete-unitatea"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr "LILO testu-menuarekin"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
-msgstr "berehalakoa"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Guztia (suhesirik gabe)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
-msgstr "Nukleo-imajina bat zehaztu behar duzu"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", funtzio anitzeko gailua - USB"
+"%s inprimagailua\n"
+"Zer da inprimagailu honetan aldatu nahi duzuna?"
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Do"
-msgstr "Egin"
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
+msgstr "Egin!"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Ispiluarekin kontaktatzen pakete erabilgarrien zerrenda lortzeko"
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+msgid "Printer connection type"
+msgstr "Inprimagailuaren konexio-mota"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lituaniako AZERTY (zaharra)"
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+msgid "Printer name, description, location"
+msgstr "Inprimagailuaren izena, azalpena, kokalekua"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasildarra (ABNT-2)"
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
+msgstr "Inprimagailuaren fabrikatzailea, modeloa, kontrolatzailea"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
-msgstr "Ostalariaren/sarearen IP helbidea: "
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
+msgstr "Inprimagailuaren fabrikatzailea, modeloa"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-"aurrerapen-barraren goi eta\n"
-"ezker ertzaren y koordenatua"
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
+msgstr "Ezarri inprimagailu hau lehenetsi gisa"
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System installation"
-msgstr "Sistemaren instalazioa"
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Gehitu inprimagailu hau Star Office/OpenOffice.org/GIMP-n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint Vincent eta Grenadinak"
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Kendu inprimagailu hau Star Office/OpenOffice.org/GIMP-tik"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid reboot by the console user."
-msgstr "Baimendu/Ukatu berrabiapena kontsolako erabiltzaileari."
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+msgid "Print test pages"
+msgstr "Inprimatu proba-orriak"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Open"
-msgstr "/Fitxategia/_Ireki"
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+msgid "Know how to use this printer"
+msgstr "Ikasi inprimagailua erabiltzen"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "Auto_install.cfg fitxategiaren kokapena"
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+msgid "Remove printer"
+msgstr "Kendu inprimagailua"
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:3282
#, c-format
-msgid "Open Firmware Delay"
-msgstr "Open Firmware-ren atzerapena"
+msgid "Removing old printer \"%s\"..."
+msgstr "\"%s\" inprimagailu zaharra ezabatzen..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
-msgstr "Hungaria"
+#: ../../printer/printerdrake.pm_.c:3307
+msgid "Default printer"
+msgstr "Inprimagailu lehenetsia"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:3308
#, c-format
-msgid "New Zealand"
-msgstr "Zeelanda Berria"
+msgid "The printer \"%s\" is set as the default printer now."
+msgstr "\"%s\" inprimagailua lehenetsi gisa ezarri da orain."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Color configuration"
-msgstr "Kolore konfigurazioa"
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Star Office/OpenOffice.org/GIMP-n inprimagailua gehitzen"
-#: ../../security/level.pm:1
+#: ../../printer/printerdrake.pm_.c:3312
#, c-format
msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Murriztapen batzuk daude, eta egiaztapen automatiko gehiago gauero egiten "
-"dira."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "please choose the date to restore"
-msgstr "aukeratu leheneratzeko data"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
-msgstr "Antilla herbeheretarrak"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr "ext2tik ext3ra aldatzen"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Nabigatu leheneratze repositorio berrira."
+"\"%s\" inprimagailua behar bezala gehitu da Star Office/OpenOffice.org/GIMP-"
+"n."
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3313
#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"\n"
-"Ongi etorri Inprimagailu Ezarpen Morroira\n"
-"\n"
-"Morroi honek bertako eta urruneko inprimagailuak instalatzen lagunduko dizu "
-"makina honetatik eta sareko makinetatik ere erabili daitezen.\n"
-"\n"
-"Inprimagailua instalatzeko behar den informazio guztia eskatuko dizu eta "
-"inprimagailu gidari, gidarien aukera eta konexio-mota erabilgarri guztiak "
-"jarriko ditu zure esku."
+"Huts egin du \"%s\" inprimagailua Star Office/OpenOffice.org/GIMP-n "
+"gehitzean."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and %d unknown printers"
-msgstr "eta %d inprimagailu ezezagun"
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Inprimagailua Star Office/OpenOffice.org/GIMP-tik kentzen"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:3317
#, 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)"
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-"Fabrikatutako hasierako Intel Pentium txipak akatsa dute koma higikorreko "
-"prozesatzailean eta koma higikorreko zatiketak egiterakoan (FDIV) ez zuten "
-"behar adinako zehaztasuna lortzen"
+"\"%s\" inprimagailua behar bezala kendu da Star Office/OpenOffice.org/GIMP-"
+"tik."
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Babeskopia kuota gaindituta!\n"
-"%d MB erabilita vs %d MB alokatuak."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Ez da ISDN PCI txartelik aurkitu. Hautatu bat hurrengo pantailan."
-
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
-msgstr "GB"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
-msgstr "Eman erabiltzaile-izen bat"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
-msgstr "Gaitu CDtik abiaraztea?"
+"Huts egin du \"%s\" inprimagailua Star Office/OpenOffice.org/GIMP-tik "
+"kentzean."
-#: ../../../move/move.pm:1
+#: ../../printer/printerdrake.pm_.c:3325
#, c-format
-msgid "Simply reboot"
-msgstr "Soilik berrabiatu"
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "\"%s\" inprimagailua kendu nahi duzu?"
-#: ../../interactive/stdio.pm:1
+#: ../../printer/printerdrake.pm_.c:3329
#, c-format
-msgid " enter `void' for void entry"
-msgstr " sartu 'void' sarrera hutsa jartzeko"
+msgid "Removing printer \"%s\"..."
+msgstr "\"%s\" inprimagailua ezabatzen..."
-#: ../../standalone/drakbackup:1
+#: ../../raid.pm_.c:35
#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr "Babeskopiak euskarri eramangarrietan - Erabili Katalogoa leheneratzeko"
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "Ezin zaio partizio bat gehitu RAID md%d-ri (formateatuta dago)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
-msgstr "Urtarrila"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
+msgstr "mkraid-ek huts egin du"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password history length"
-msgstr "Pasahitz historiaren luzeera"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid-ek huts egin du (beharbada raid-tresnak faltako dira?)"
-#: ../../network/netconnect.pm:1
+#: ../../raid.pm_.c:153
#, c-format
-msgid "Winmodem connection"
-msgstr "Winmodem koneksioa"
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "Ez dago nahikoa partizio %d RAID mailarako\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../security/main.pm_.c:36
msgid ""
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
"\n"
-"Congratulations, your printer is now installed and configured!\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\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."
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
+"\n"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
+"Estandarra: Hau da internetera bezero bezala konektatuko den konputagailu "
+"batentzako\n"
+" segurtasun estandarra.\n"
"\n"
-"Zorionak, inprimagailua instalatuta eta konfiguratuta duzu!\n"
+"Altua: Muga batzuk ezartzen ditu, eta egiaztapen automatiko gehiago "
+"exekutatzen dira gauero.\n"
"\n"
-"Inprimatzeko, aplikazioko \"Inprimatu\" komandoa erabil dezakezu (normalean "
-"\"Fitxategia\" menuan izan ohi da).\n"
+"Altuagoa: Sistemak segurtasun maila nahikoa dauka bezero askoren lotura "
+"onartuko duen zerbitzari\n"
+" bezala erabil dadin. Zure makina Interneten bezero soila "
+"badamaila apalagoa hautatu behar zenuke.\n"
"\n"
-"Inprimagailu bat gehitu, kendu, edo izenez aldatu nahi baduzu, edo ezarpen "
-"lehenetsiak (paper-iturria, inprimatze-kalitatea...) aldatu nahi badituzu, "
-"hautatu \"Inprimagailua\" Mandrake Kontrol Zentroko \"Hardwarea\" atalean."
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "Orain xawtv erabili dezakezu (X Window barruan) !\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Ez dago nahikoa swap instalazioa burutzeko, gehitu egin beharko duzu"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "%s on %s"
-msgstr "%s %s-n"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid remote root login."
-msgstr "Baimendu/Debekatu root-aren urruneko sarrera."
+"Paranoikoa: Hau aurreko mailaren antzekoa da, baino sistema erabat itxita "
+"dago eta segurtasun\n"
+" ezaugarriak mailarik altuenean daude.\n"
+"\n"
+"Segurtasun Kudeatzailea:\n"
+" 'Segurtasun Alertak' aukera ezartzen bada, segurtasun "
+"alertak bidaliko zaizkio erabiltzaile honi (erabiltzaile-izena edo\n"
+"\t posta-e)."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"GNU/Linux-ek ordua GMT (Greenwich Mean Time) sisteman kudeatzen du\n"
-"eta bertako ordura itzultzen du hautatu duzun ordu-guneari erreparatuz. "
-"Zure\n"
-"plaka-nagusiaren ordua bertako orduan ezarrita badago, hau ezgaitu\n"
-"dezakezu \"%s\" aukerari hautua kenduz, eta horrela jakinaraziko diozu\n"
-"GNU/Linux-i sistemaren eta hardwarearen ordulariak ordu-gune berdinean\n"
-"daudela. Hau erabilgarria da makinak beste sistema eragile bat daukanean,\n"
-"Window esaterako.\n"
-"\n"
-"\"%s\" aukerak automatikoki erregulatuko du ordularia Interneten hurruneko "
-"ordu\n"
-"zerbitzari batera konektatuz. Ezaugarri honek egoki lanegin dezan, dabilen\n"
-"Internet lotura bat behar duzu. Honena zugandik hurbil kokatuta dagoen ordu\n"
-"zerbitzari bat hautatzea da. Aukera honek ordu zerbitzari bat instalatzen "
-"du\n"
-"zure bertako sareko beste makina batzuek erabili dezaketena."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
-msgstr "Ezin da sortu erregistro fitxategia!"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Zein da zure ordu-zona?"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Segurtasun-maila:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Erabili .backupignore fitxategiak"
+#: ../../security/main.pm_.c:77
+#, fuzzy, c-format
+msgid " (default value: %s)"
+msgstr " (jatorrian: %s)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
-msgstr "Ginea"
+#: ../../security/main.pm_.c:113
+msgid "Security Alerts:"
+msgstr "Segurtasun Alertak:"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Sistema Internetera konektatuta dago orain."
+#: ../../security/main.pm_.c:115
+msgid "Security Administrator:"
+msgstr "Segurtasun Kudeatzailea:"
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Hegoaldeko Georgia eta Hegoaldeko Sandwich Uharteak"
+#: ../../security/main.pm_.c:128
+msgid "Network Options"
+msgstr "Sareko Aukerak"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Japonia (bcast)"
+#: ../../security/main.pm_.c:128
+msgid "System Options"
+msgstr "Sistemaren Aukerak"
-#: ../../help.pm:1
-#, c-format
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
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."
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
msgstr ""
-"Monitorea\n"
-" Instalatzaileak normalean zure makinari loturiko monitorea automatikoki\n"
-"detektatu eta ezarriko du. Okerra bada, zerrenda honetatik hautatu dezakezu\n"
-"unean zure konputagailuari lotuta daukazun monitorea."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "Mozanbike"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "Ikonoa"
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Kill those programs"
-msgstr "Akabatu programa horiek"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Aukeratu zeren kopia egin nahi duzun"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 kolore (8 bit)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "Irakurri/idatzi"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "Tamaina: %s\n"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Hostname: "
-msgstr "Ostalari-izena: "
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a rule"
-msgstr "Arau bat erantsi"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "%s zatiaren tamaina\n"
-
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
-msgstr "Eraiki Linux-en etorkizuna!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printer"
-msgstr "Inprimagailu lokala"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Disketean sarrera okerra, ezin da %s muntatu"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL konexioa"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Ez dago konfiguraziorik, egin klik Morroian edo Aurreratuan.\n"
+"Ondorengo aukerak ezarri daitezke zure sistemaren segurtasuna\n"
+"moldatzeko. Azalpenak behar badituzu, klikatu Laguntza.\n"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Error!"
-msgstr "Errorea!"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "cable connection detected"
-msgstr "kable bidezko konexioa detektatu da"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
+msgstr "Aldizkako Egiaztapenak"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "%s %s-ra transferitzeko baimena ukatu da"
+#: ../../security/main.pm_.c:191
+msgid "Please wait, setting security level..."
+msgstr "Itxoin mesedez, segurtasun-maila ezartzen..."
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Akatsa Txostendu"
+#: ../../security/main.pm_.c:197
+msgid "Please wait, setting security options..."
+msgstr "Itxoin mesedez, segurtasun aukerak ezartzen..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
-msgstr "Dominika"
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr "Abiarazi ALSA (Advanced Linux Sound Architecture) soinu-sistema"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "Aldatu tamaina"
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
+msgstr "Anacron, komando-antolatzaile periodikoa."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Bereizmena: %s\n"
+#: ../../services.pm_.c:21
+msgid ""
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
+msgstr ""
+"apmd bateriaren egoera kontrolatzeko eta syslog-en jasotzeko erabiltzen\n"
+"da. Bateria gutxi dagoenean makina itzaltzeko ere erabil daiteke."
-#: ../../install2.pm:1
-#, c-format
+#: ../../services.pm_.c:23
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)"
+"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 ""
-"Ezin dira zure kernelari dagozkion kernel moduluak atzitu (%s fitxategia "
-"falta da), honek orokorrean esan nahi du zure abiapen disketea ez dagoela "
-"instalazio euskarriarekin sinkronizatuta (mesedez sortu abiapen diskete "
-"berria)"
+"at komandoaren bidez programatutako komandoak exekutatzen ditu at \n"
+"exekutatzean zehaztutako orduan, eta batch komandoak exekutatzen ditu \n"
+"batezbesteko karga nahikoa baxua denean."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../services.pm_.c:25
msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+"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 ""
-"Hautatu ataka egokia. Adibidez Windows-eko \"COM1\" atakak \"ttyS0\" du\n"
-"izena GNU/Linux-en."
+"cron UNIX programa estandar bat da, erabiltzaileak zehaztutako programak\n"
+"programatutako orduan exekutatzen dituena. vixie cron-ek hainbat eginbide \n"
+"gehitzen dizkio oinarrizko UNIX cron-i, hala nola segurtasun hobea eta "
+"konfigurazio-aukera ahaltsuagoak."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Ondorengo pakete hauek kenduko dira"
+#: ../../services.pm_.c:28
+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 ""
+"GPMk saguaren euskarria gehitzen die Midnight Commander bezalako\n"
+"testuan oinarritutako Linux aplikazioei. Halaber kontsolan saguaren bidez "
+"ebaki eta itsasteko aukera ematen du eta laster-menuen euskarria eransten du."
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr "Konektatu Internetekin"
+#: ../../services.pm_.c:31
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
+msgstr ""
+"HardDrake-k hardware-proba bat exekutatzen du eta nahi izanez \n"
+"gero hardware berria/aldatua konfiguratzen du."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
-msgstr "Lehendik dagoen partizioa erabili"
+#: ../../services.pm_.c:33
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+msgstr ""
+"Apache World Wide Web-eko zerbitzari bat da. HTML fitxategiak eta CGI "
+"zerbitzatzeko erabili ohi da."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "Kanadarra (Quebec)"
+#: ../../services.pm_.c:34
+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 ""
+"Interneteko superzerbitzariaren daemon-ak (normalki inetd deitua) beste\n"
+"hainbat Internet-zerbitzu abiarazten ditu, behar izan ahala. Zerbitzu asko "
+"abiarazten ditu,\n"
+"hala nola telnet, ftp, rsh, eta rlogin. inetd desgaitzean bere ardurapeko\n"
+"zerbitzu guztiak desgaitzen dira."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Sagu-gailua: %s\n"
+#: ../../services.pm_.c:38
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
+"Abiarazi Linux-nukleoen 2.2 serieko pakete-iragazketa, zure \n"
+"makina sareko erasoetatik babesteko suebaki bat ezartzeko."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Hautatu berriro letra-tipo egokiak"
+#: ../../services.pm_.c:40
+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 ""
+"Pakete honek hautatutako teklatu-mapa kargatzen du\n"
+"/etc/sysconfig/keyboard fitxategian ezarritakoaren arabera. kbdconfig "
+"utilitatearen bidez hauta daiteke teklatu-mapa.\n"
+"Zerbitzu hau gaituta uztea komeni da makina gehienetan."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../services.pm_.c:43
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."
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
msgstr ""
-"Aukerak\n"
-"\n"
-" Hemen aukeratu dezakezu zure makina abiatzean automatikoki interfaze\n"
-"grafiko batera aldatu nahi duzun. Argi dago, \"%s\" markatu nahi duzu\n"
-"zure makina zerbitzari gisa lanegingo badu, edo ez baduzu lortu zure "
-"txartela\n"
-"grafikoa ezartzea."
+"Nukleoaren goiburukoaren birsortze automatikoa /boot-en\n"
+"honentzat: /usr/include/linux/{autoconf,version}.h"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert Korporatiboa"
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr "Hardwarea automatikoki detektatu eta konfiguratzea abioan."
-#: ../../standalone.pm:1
-#, c-format
+#: ../../services.pm_.c:46
msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
msgstr ""
-" [dena]\n"
-" XFdrake [--noauto] monitorea\n"
-" XFdrake bereizmena"
+"Linuxconf-ek batzuetan hainbat ataza egiten ditu abioan\n"
+"sistemaren konfigurazioa mantentzeko."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Write protection"
-msgstr "Idazketa babesa"
+#: ../../services.pm_.c:48
+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 ""
+"lpd inprimaketako daemon-a da. Beharrezkoa da lpr-k ondo funtziona\n"
+"dezan. Inprimatze-lanak inprimagailu(eta)ra esleitzen dituen zerbitzaria da."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "You've not selected any font"
-msgstr "Ez duzu hizki-motarik hautatu"
+#: ../../services.pm_.c:50
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
+"Linux-en Zerbitzari Birtuala, performantzia handiko zerbitzari oso\n"
+"erabilgarria eraikitzeko erabiltzen da."
-#: ../../steps.pm:1
-#, c-format
-msgid "Language"
-msgstr "Aukeratu hizkuntza"
+#: ../../services.pm_.c:52
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
+msgstr ""
+"named (BIND) domeinu-izenen zerbitzari bat (DNS) da, ostalari-izenak ebatzi "
+"eta IP helbide bihurtzeko erabiltzen dena."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer model selection"
-msgstr "Inprimagailu-modeloaren hautapena"
+#: ../../services.pm_.c:53
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
+msgstr ""
+"Network File System (NFS), SMB (Lan Manager/Windows), eta NCP \n"
+"(NetWare) muntatze-puntu guztiak muntatu eta desmuntatzen ditu."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:55
msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
-"%s partizio-mota aldatu ondoren, partizio honetako datu guztiak galdu egingo "
-"dira"
+"Abioan hasteko konfiguratuta dauden sare-interfaze guztiak\n"
+"aktibatzen/desaktibatzen ditu."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ISDN adapters"
-msgstr "RDSI moldagailuak"
+#: ../../services.pm_.c:57
+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 ""
+"NFS protokolo ezagun bat da, TCP/IP sareetan fitxategiak konpartitzeko.\n"
+"Zerbitzu honek NFS zerbitzariaren funtzionaltasuna (/etc/exports "
+"fitxategian\n"
+"konfiguratua) eskaintzen du."
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d segundo"
+#: ../../services.pm_.c:60
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
+msgstr ""
+"NFS protokolo ezagun bat da, TCP/IP sareetan fitxategiak \n"
+"konpartitzeko. Zerbitzu honek NFS fitxategi-blokeatzearen funtzionalitatea\n"
+"eskaintzen du."
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Sartu diskete huts bat %s unitatean"
+#: ../../services.pm_.c:62
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+"Abioan automatikoki aktibatu BlokZenb tekla (zenbakiak\n"
+"blokeatzekoa) kontsolan eta XFree-n."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Baliozko URI bat sartu behar da!"
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr "Onartu OKI 4w eta winprinter bateragarriak."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr "\"%s\" interfazea bilatu da, erabili nahi duzu?"
+#: ../../services.pm_.c:65
+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 ""
+"PCMCIA euskarria eramangarrietan ethernet eta modemak\n"
+"eta horrelakoak onartzeko izaten da normalki. Ez da abiaraziko "
+"konfiguratuta izan ezean, beraz\n"
+"lasai eduki daiteke instalatuta premiarik izan ez arren."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
-msgstr "Birkonfiguratu interfazea eta DHCP zerbitzaria"
+#: ../../services.pm_.c:68
+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 ""
+"Ataka-mapatzaileak RPC konexioak kudeatzen ditu. Konexio horiek\n"
+"NFS eta NIS moduko protokoloek erabiltzen dituzte. RPC mekanismoa erabiltzen "
+"duten\n"
+"protokoloen zerbitzari gisa jokatzen duten makinetan aktibatu behar da\n"
+"ataka-maparen zerbitzaria."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound configuration"
-msgstr "Soinu konfigurazioa"
+#: ../../services.pm_.c:71
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
+msgstr ""
+"Postfix posta garraiatzeko agentea da (Mail Transport Agent - MTA), hau da, "
+"posta elektronikoa makina batetik bestera eramaten duen programa."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
-msgstr "Argazkien proba-orria"
+#: ../../services.pm_.c:72
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
+"Sistemaren entropia gorde eta leheneratzen du ausazko zenbakiak\n"
+"hobeto sortzeko."
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Disko-partizio pertsonalizatua"
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
+msgstr ""
+"Esleitu gailu \"gordinak\" (raw devices) blokeko gailuei \n"
+"(disko gogorreko partizioak adib.), Oracle bezalako aplikazioentzat."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Sartu Inprimagailuaren Izena eta iruzkinak"
+#: ../../services.pm_.c:76
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
+msgstr ""
+"Routed daemon-arekin IP bidatze-taula automatikoki egunera daiteke,\n"
+"RIP protokoloaren bidez. RIP asko erabiltzen da sare txikietan, baina\n"
+"banabide-protokolo konplexuagoak behar dira sare konplexuetan."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:79
msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
msgstr ""
-"Ondorengo inprimagailuak\n"
-"\n"
-"%s%s\n"
-"zure sistemara zuzenean konektatuta daude"
+"rstat protokoloari esker, sareko erabiltzaileek sare horretako \n"
+"edozein makinaren performantzia nolakoa den jakin dezakete."
-#: ../../network/modem.pm:1
-#, c-format
-msgid "You don't have any winmodem"
-msgstr "Ez daukazu winmodem-ik"
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"rusers protokoloak sare bateko erabiltzaileei beste makina batzuetan\n"
+"nor sartzen den identifikatzeko aukera ematen die."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: %s"
-msgstr "mota: %s"
+#: ../../services.pm_.c:83
+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 ""
+"rwho protokoloak urruneko erabiltzaileei rwho daemon-a (finger-en antzekoa)\n"
+"duen makina batean sartutako erabiltzaile guztien zerrenda eman diezaieke."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "Eslovakiarra (QWERTY)"
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
+msgstr "Abiarazi zure makinako soinu-sistema"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:86
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."
+"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 ""
-"Hau babeskopiaren emaitza bidali nahi diezunen komaz banatutako bertako "
-"erabiltzaile edo postaE helbide zerrenda izan beharko litzateke. Zure "
-"sisteman dabilen posta transferentzia agente bat beharko duzu."
+"Syslog, daemon askok erabiltzen duten zerbitzua da, mezuak sistemako\n"
+"hainbat egunkari-fitxategitan sartzeko. Komeni izaten da syslog beti "
+"exekutatzea."
-#: ../../standalone/draksound:1
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Ez da Soinu Txartelik aurkitu!"
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr "Kargatu USB gailuen kontrolatzaileak."
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "Sagu-ataka"
+#: ../../services.pm_.c:89
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+msgstr ""
+"X letra-tipoen zerbitzaria abiarazten du (nahitaezkoa da XFree-k\n"
+"funtzionatu ahal izan dezan.)."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
-msgstr "Aztertu seguratasunik gabeko kontu bila"
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Aukeratu zein zerbitzari abiarazi behar den automatikoki abioan"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-"Pantaila Kudeatzailea berriro hasi beharko duzu aldaketa guztiak gauzatu \n"
-"daitezen. (service dm restart - kontsolan)"
+#: ../../services.pm_.c:127
+msgid "Printing"
+msgstr "Inprimatzea"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Ftp Server"
-msgstr "Ftp Zerbitzaria"
+#: ../../services.pm_.c:128
+msgid "Internet"
+msgstr "Internet"
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr "Uganda"
+#: ../../services.pm_.c:131
+msgid "File sharing"
+msgstr "Fitxategi-konpartitzea"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
-msgstr "%s hizki-mota bihurketa"
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+msgid "System"
+msgstr "Sistema"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "sagua konektatuta dagoen bus mota"
+#: ../../services.pm_.c:138
+msgid "Remote Administration"
+msgstr "Urruneko administrazioa"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Errepaso gisa, DrakX-k zure sistemari buruz duen informazio laburpen bat\n"
-"aurkeztuko du. Instalatuta daukazun hardwarearen arabera, ondorengo\n"
-"sarreratako batzuk edo guztiak izan ditzakezu. Sarrera bakoitza ondokoek\n"
-"osatzen dute, konfiguratu beharreko elementua, uneko konfigurazioaren\n"
-"laburpen txiki bat ondoren. Sakatu dagokion \"%s\" botoia hura aldatzeko.\n"
-"\n"
-" * \"%s\": egiaztatu uneko teklatu mapa ezarpena eta aldatu ezazu "
-"beharrezkoa\n"
-"bada.\n"
-"\n"
-" * \"%s\": egiaztatu uneko herrialde hautaketa. Ez bazaude herrialde "
-"honetan,\n"
-"klikatu \"%s\" botoia eta hautatu beste bat. Zure herrialdea ez badago "
-"erakusten\n"
-"den lehenengo zerrendan, klikatu \"%s\" botoia herrialde zerrenda osoa\n"
-"jasotzeko.\n"
-"\n"
-" * \"%s\": Berez, DrakX-k zure ordu-gunea ondorioztatzen du hautatu duzun\n"
-"herrialdean oinarrituta. \"%s\" botoia sakatu dezakezu hemen zuzena ez\n"
-"bada.\n"
-"\n"
-" * \"%s\": egiaztatu uneko sagu ezarpena eta klikatu botoia aldatzea\n"
-"beharrezko bada.\n"
-"\n"
-" * \"%s\": \"%s\" botoian klikatuta inprimagailuaren ezarpen morroia "
-"zabalduko\n"
-"da. Kontsultatu dagokion kapituloa \"Starter Guide\" gidan inprimagailu "
-"berria\n"
-"ezartzeko moduaz informazio gehiago jasotzeko. Han aurkeztutako interfazea\n"
-"instalazioan aurkeztutakoaren antzekoa da.\n"
-"\n"
-" * \"%s\": zure sisteman soinu txartel bat detektatzen bada, hemen\n"
-"erakutsiko da. Erakusten den soinu txartela zure sisteman daukazuna\n"
-"ez dela ohartzen bazara, botoian klikatu eta beste gidari bat hautatu\n"
-"dezakezu.\n"
-"\n"
-" * \"%s\": Berez, DrakX-ek zure interfaze grafikoa \"800x600\" edo\n"
-"\"1024x768\" bereizmenekin ezartzen du. Zure beharretara ez badator\n"
-"ondo, klikatu \"%s\" interfaze grafikoa berrezartzeko.\n"
-"\n"
-" * \"%s\": Zure sisteman TB txartela detektatzen bada, emen erakutsiko\n"
-"da. TB txartela badaukazu eta ez bada detektatu, klikatu \"%s\" eskus\n"
-"ezartzen saiatzeko.\n"
-"\n"
-" * \"%s\": Zure sisteman RDSI txartela detektatzen bada, hemen erakutsiko\n"
-"da. \"%s\" klikatu dezakezu txartelarekin zerrikusia duten parametroak\n"
-"aldatzeko.\n"
-"\n"
-" * \"%s\": Zure Internet edo bertako sarearen sarrera orain ezarri nahi\n"
-"baduzu.\n"
-"\n"
-" * \"%s\": Sarrera honek aurreko urratsean ezarri duzun bezala () "
-"segurtasun\n"
-"maila aldatzen utziko dizu.\n"
-"\n"
-" * \"%s\": Zure makina Internetera konektatzeko asmoa badaukazu,\n"
-"ideia ona da zure konputagailua intrusoetatik babestea suhesi bat\n"
-"ezarrita. Begiratu ``Starter Guide'' gida suhesiak ezartzeko moduaz\n"
-"gehiago jakiteko.\n"
-"\n"
-" * \"%s\": Zure abiapen-zamatzailearen ezarpena aldatu nahi baduzu, klikatu\n"
-"botoi hura. Hau erabiltzaile aurreratuentzako izan beharko litzateke "
-"soilik.\n"
-"\n"
-" * \"%s\": Hemen zure makinan zein zerbitzu exekutatuko diren ondo doitu\n"
-"dezakezu. Makina hau zerbitzari gisa erabiltzeko helburua badaukazu\n"
-"ezarpen hau egiaztatzea ona litzateke."
+#: ../../services.pm_.c:146
+msgid "Database Server"
+msgstr "Datu-baseen zerbitzaria"
-#: ../../lang.pm:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "Comoros"
-msgstr "Komoroak"
+msgid "Services: %d activated for %d registered"
+msgstr "Zerbitzuak: %d aktibatuta / %d erregistratuta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "May"
-msgstr "Maiatza"
+#: ../../services.pm_.c:191
+msgid "Services"
+msgstr "Zerbitzuak"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yaboot mode"
-msgstr "Yaboot modua"
+#: ../../services.pm_.c:203
+msgid "running"
+msgstr "martxan"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "3 botoiko sagu generikoa"
+#: ../../services.pm_.c:203
+msgid "stopped"
+msgstr "geldituta"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
-msgstr "AEB (kablea)"
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
+msgstr "Zerbitzuak eta daemon-ak"
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../services.pm_.c:222
msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+"No additional information\n"
+"about this service, sorry."
msgstr ""
-"Ezin da LiLo berriro jaurti!\n"
-"Jaurti \"lilo\" root bezala komando lerroan LiLo gai instalazioa osatzeko."
+"Ez dago zerbitzu honi buruzko\n"
+"informazio gehiago."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Hautatu beste euskarri bat leheneratzeko"
+#: ../../services.pm_.c:229
+msgid "On boot"
+msgstr "Abioan"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Software Manager"
-msgstr "Software Kudeatzailea"
+#: ../../services.pm_.c:241
+msgid "Start"
+msgstr "Hasi"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
-msgstr "Berriro bidali"
+#: ../../services.pm_.c:241
+msgid "Stop"
+msgstr "Gelditu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD in place - continue."
-msgstr "CDa bere lekuan - jarraitu."
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Eskerrik asko Mandrake Linux 9.0 aukeratzeagatik"
-#: ../../common.pm:1
-#, c-format
-msgid "KB"
-msgstr "KB"
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
+msgstr "Ongi etorri iturburu irekiaren mundura"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Network & Internet"
-msgstr "Sarea eta Internet"
+#: ../../share/advertising/01-thanks.pl_.c:11
+msgid ""
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
+msgstr ""
+"MandrakeSoft-en arrakastaren funtsa software librearen printzipioa da. Zure "
+"sistema eragile berria mundu osoko Linux komunitatearen elkarlanaren emaitza "
+"da"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituaniako QWERTY \"fonetikoa\""
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
+msgstr "Sar zaitez software librearen munduan"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Net Boot Images"
-msgstr "Sare Abiapen Irudiak"
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr "Iturburu Irekiaren Komunitateari buruz gehiago jakin nahi?"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Bertako eskanerren elkarbanaketa"
+#: ../../share/advertising/02-community.pl_.c:11
+msgid ""
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
+msgstr ""
+"Zure jakinduria elkarbanatzeko eta Linux tresnak eraikitzen laguntzeko, egin "
+"zaitez gure \"Komunitate\" web-orrian aurkituko dituzun eztabaida-taldeen "
+"partaide"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "Plug'n Play frogak hutsegin du. Mesedez hautatu monitore zehatz bat"
+#: ../../share/advertising/03-internet.pl_.c:9
+msgid "Get the most from the Internet"
+msgstr "Eskuratu Internetek eman dezakeen guztia"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Detect again USB key"
-msgstr "Detektatu berriro USB giltza"
+#: ../../share/advertising/03-internet.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
+msgstr ""
+"Mandrake Linux 9.0k zuretzako software honenak aukeratu ditu. Surfeatu "
+"Webean eta ikusi animazioak Mozilla eta Konquerorrekin, edo irakurri zure "
+"posta eta kudeatu zure informazio pertsonalak Evolution eta Kmail erabiliz"
-#: ../../services.pm:1
-#, c-format
-msgid "Services and deamons"
-msgstr "Zerbitzuak eta daemon-ak"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr "Ezagutu itzazu tresna grafiko eta multimedia eguneratuenak!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Urruneko ostalari izena falta da!"
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr "Sakatu multimedia bere limitera!"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "with /usr"
-msgstr "/usr-rekin"
+#: ../../share/advertising/04-multimedia.pl_.c:11
+msgid ""
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
+msgstr ""
+"Mandrake Linux 9.0k audio fitxategiak jotzeko, zure argazkiak editatu eta "
+"manipulatzeko, eta bideoak ikusteko software berriena erabiltzeko aukera "
+"ematen dizu"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Network"
-msgstr "Sarea"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Jokoak"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
+#: ../../share/advertising/05-games.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
msgstr ""
-"Auto-detektatu Microsoft Windows darabilten makinetara lotutako "
-"inprimagailuak"
+"Mandrake Linux 9.0k Iturburu Irekiko jokorik onenak eskaintzen ditu - makina-"
+"jokoak, ekintza, estrategia, ..."
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "Pasahitz hau sinpleegia da"
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+msgid "Mandrake Control Center"
+msgstr "Mandrake-ren Kontrol Zentroa"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "Chkconfig-ek msec arauak betetzen ditu"
+#: ../../share/advertising/06-mcc.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
+msgstr ""
+"Mandrake Linux 9.0k zure makina erabat pertsonalizatu eta konfiguratzeko "
+"tresna ahaltsua dauka"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "Eslovakiarra (QWERTZ)"
+#: ../../share/advertising/07-desktop.pl_.c:9
+msgid "User interfaces"
+msgstr "Erabiltzaile-interfazeak"
-#: ../advertising/06-development.pl:1
-#, c-format
+#: ../../share/advertising/07-desktop.pl_.c:10
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."
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
-"Hizkuntza desberdinetan, Perl, Python, C eta c++ esaterako, sortu eta "
-"aldatzea ez da sekula ain erraza izan GNU gcc 3 eta Iturburu Irekien garapen "
-"ingurunei esker bezala."
+"Mandrake Linux 9.0k erabat aldatu daitezkeen 11 erabiltzaile interfaze "
+"eskaintzen dizkizu: KDE 3, Gnome 2, WindowMaker, ..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No devices found"
-msgstr "Ez dira gailuak aurkitu"
+#: ../../share/advertising/08-development.pl_.c:9
+msgid "Development simplified"
+msgstr "Garapena erraztuta"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Instalazio minimo-minimoa (batez ere, urpmi gabe)"
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr "Mandrake Linux 9.0 garapen plataforma berriena da"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use daemon"
-msgstr "Erabili daemon-a"
+#: ../../share/advertising/08-development.pl_.c:11
+msgid ""
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
+msgstr ""
+"GNU gcc 3 konpilatzailearen indar osoa erabili, baita Iturburu Irekiko "
+"garapen ingurune onenak ere"
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "Autentifikazioa"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr "Bihurtu zure makina zerbitzari fidagarria"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Gehitu inprimagailu hau Star Office/OpenOffice.org/GIMP-n"
+#: ../../share/advertising/09-server.pl_.c:10
+msgid ""
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
+msgstr ""
+"Bihur ezazu zure makina zerbitzari ahaltsu, saguaren klik gutxi batzuk "
+"eginez: Web zerbitzaria, posta, suhesia, routerra, fitxategi eta inprimaketa "
+"zerbitzaria, ..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "CUPS zerbitzari gehigarriak: "
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr "Optimizatu zure segurtasuna"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/10-mnf.pl_.c:10
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."
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-"Aukeratu auto-detektatutako inprimagailuetako bat zerrendatik edo sartu "
-"ostalari-izena edo IP eta, nahi baduzu, portu zenbakia (jatorrian 9100 da) "
-"eremuetan."
+"MandrakeSecurity aukeren artean Multi Network Firewall (M.N.F.) produktua "
+"dauka"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr "Non muntatu nahi duzu %s?"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
+msgstr ""
+"Suhesi produktu honek zure segurtasun beharrak hasetzeko aukera emango dizun "
+"sareko ezaugarriak ditu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "Aljeria"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr "Produktu hau MandrakeStore webgunean eskuragarri dago"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network"
-msgstr "Leheneratu Sarearen Bitartez"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr "MandrakeSoft denda ofiziala"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
-msgstr "Erabili tar eta bzip2 (tar eta gzip erabili beharrean)"
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
+msgstr ""
+"Gure Linux soluzioen aukera osoa, eta baita produktu eta beste \"gutizia\" "
+"batzutan eskaintza bereziak eskuragarri daude lerroan gure e-dendan:"
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd-tamaina"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr "Kide estrategikoak"
-#: ../../help.pm:1
-#, c-format
+#: ../../share/advertising/12-mdkstore.pl_.c:10
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."
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-"Zure txartelarentzako zerbitzari desberdinak dauden kasurako, 3D\n"
-"azelerazioarekin edo gabe, zure beharretara hobe egokitzen dena hautatzeko\n"
-"eskatzen zaizu."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tBabeskopietan erabili tar eta gzip\n"
+"MandrakeSoftek, Mandrake Linuxentzako soluzio bateragarri profesionalak "
+"eskaintzen dituzten konpainien artean aukeratutako batzuekin lanegiten du. "
+"MandrakeStoren aipatutako kide horien zerrenda eskuratu daiteke."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set as default"
-msgstr "Ezarri lehenetsi gisa"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr "Ezagutu MandrakeSoften Linux-Campus entrenamendu katalogoa"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
+msgid ""
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
+msgstr ""
+"Entrenamendu programa bien, erabiltzaileen eta espertuen (Sare eta Sistema "
+"administratzaileak), beharrei erantzuteko sortu da"
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on this machine"
-msgstr "Makina honetan konfiguratuta"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr "Zertifikatu zure burua Linux-ekiko"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Bi Kontrol teklak batera"
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
+"Zeure buruari lerroan edo gure entrenamendu kide sarearen bitartez irakastea "
+"erabakitzen baduzu, Linux-Campus katalogoak LPI zertifikazio ezagunaren "
+"programarako prestatuko zaitu (mundu zabaleko zertifikazio tekniko "
+"profesionala)"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - laguntza hau erakutsi \n"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+msgid "Become a MandrakeExpert"
+msgstr "Bilakatu zaitez MandrakeExpert"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
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"
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"[AUKERA]...\n"
-" --no-confirmation ez egin lehenengo baieztapen galdera MandrakeUpdate "
-"moduan\n"
-" --no-verify-rpm ez egiaztatu paketeen sinadura\n"
-" --changelog-first erakutsi aldaketa-erregistroa fitxategi-"
-"zerrendarenaurretik deskribapen leihoan\n"
-" --merge-all-rpmnew proposatu aurkitutako .rpmnew/.rpmsave fitxategiak "
-"elkartzea"
+"Aurkitu zure arazoei erantzuna MandrakeSoft-en lerroko euskarri "
+"plataformaren bitartez"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Inprimagailu Lehenetsia Ezartzen..."
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+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 ""
+"Batu MandrakeSoft Euskarri taldeetara eta Linuxen Lerroko Komunitateetara "
+"zure jakinduria elkarbanatu eta besteei lagundu lerroko euskarri teknikoko "
+"webguneetan Aditu ezaguna bilakatuz:"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "%s interfazea (%s modulua erabiliz)"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert Korporatiboa"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Generating preview ..."
-msgstr "Aurreikuspena sortzen ..."
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr "Konpainien euskarri behar espezifikoei erantzuteko lerroko plataforma"
-#: ../../network/network.pm:1
-#, c-format
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-"Maiztasunak K, M edo G atzizkia izan beharko luke (adibidez, \"2.46G\" = "
-"2.46 GHz maiztasuna), edo jarri '0' (zero) nahikoa."
+"Gertaera guztiek MandrakeSoften Aditu tekniko kualifikatu bakarraren "
+"jarraipena izango dute."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ignore"
-msgstr "enoratu"
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
+msgstr "Ezagutu \"MandrakeClub\" eta \"Mandrake Corporate Club\""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../share/advertising/17-mdkclub.pl_.c:10
msgid ""
-"Allow/Forbid X connections:\n"
-"\n"
-"- ALL (all connections are allowed),\n"
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
+msgstr ""
+"MandrakeClub eta Mandrake Corporate Club beraien Linux banaketa gogokoenari "
+"laguntzearekin batera pribilegio bereziak jasotzen dituzten Mandrake Linuxen "
+"enpresa erabiltzaile eta erabiltzaile pribatuentzako sortu zen. Gure "
+"produktuak gustoko badituzu, zure konpainiak gure produktuengandik etekina "
+"badu lehiakortasuna lortzeko, Mandrake Linux garapenari euskarri eman nahi "
+"badiozu, sartu MandrakeClubera!"
+
+#: ../../standalone.pm_.c:21
+#, fuzzy
+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"
-"- LOCAL (only connection from local machine),\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"
-"- NONE (no connection)."
+"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 ""
-"Baimendu/Debekatu X koneksioak:\n"
-"\n"
-"- ALL (koneksio guztiak onartzen dira),\n"
+" Programa hau software librea da; birbana eta/edo alda dezakezu\n"
+" Software Foundation-ek argitaratutako GNU Lizentzia Publiko Orokorraren\n"
+" 2. bertsioan, edo (nahiago baduzu) beste berriago batean, jasotako\n"
+" baldintzak betez gero.\n"
"\n"
-"- LOCAL (koneksioak soilik bertako makinatik),\n"
+" Programa hau erabilgarria izango delakoan banatzen da, baina\n"
+" INOLAKO BERMERIK GABE; era berean, ez da bermatzen beraren\n"
+" EGOKITASUNA MERKATURATZEKO edo HELBURU PARTIKULARRETARAKO ERABILTZEKO.\n"
+" Argibide gehiago nahi izanez gero, ikus GNU Lizentzia Publiko Orokorra.\n"
"\n"
-"- NONE (koneksiorik ez)."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", gailu funtzio-anitza #%s ataka paraleloan"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "seriekoa"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
-msgstr "DVD-ROMa"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgiarra (diseinu \"latinoa\")"
-
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
-msgstr "Lortu gai honenak Mandrake Linux-en bazkie estrategikoekin"
+" Programa honekin batera GNU Lizentzia Publiko Orokorraren kopia bat\n"
+" jasoko zenuen; hala ez bada, idatzi hona: Free Software\n"
+" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../standalone.pm_.c:40
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+"[--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 name.\n"
msgstr ""
-"Orain %s moduluaren aukerak ezarri ditzakezu\n"
-"Ohartu sartzen den edozein helbide 0x aurrizkiarekin jarri behar dela, adib. "
-"'0x123'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "Kenya"
+#: ../../standalone.pm_.c:51
+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 ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Erabili ``Desmuntatu'' lehendabizi"
+#: ../../standalone.pm_.c:57
+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 ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing mtools packages..."
-msgstr "mtools paketeak instalatzen..."
+#: ../../standalone.pm_.c:68
+msgid ""
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a root partition"
-msgstr "Erroko partizio bat zehaztu behar duzu"
+#: ../../standalone.pm_.c:70
+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)"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "first step creation"
-msgstr "Lehenengo urratsaren sorrera"
+#: ../../standalone.pm_.c:82
+#, fuzzy
+msgid "[keyboard]"
+msgstr "Teklatua"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Bi Maius teklak batera"
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
+msgstr ""
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../standalone.pm_.c:84
msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
+"[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 ""
-" --id <id_etiketa> - zamatu id_etiketa-ri dagokion html laguntza "
-"orria\n"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select a scanner model"
-msgstr "Hautatu eskaner eredu bat"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
-msgstr "Onartu/Ukatu IPv4 oker mezu faltsuak."
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR Belaunaldi berrikoa"
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Drakbackup-en konfigurazioa"
+#: ../../standalone.pm_.c:94
+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/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr "Gorde honela.."
+#: ../../standalone.pm_.c:99
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr "Korea (Iparra)"
+#: ../../standalone.pm_.c:100
+msgid ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
+msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../standalone.pm_.c:114
#, c-format
msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
-"Interfaze hau ez dago konfiguratuta.\n"
-"Abiarazi konfigurazio-morroia leiho nagusian"
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System configuration"
-msgstr "Sistemaren konfigurazioa"
+#: ../../standalone.pm_.c:168
+msgid "Installing packages..."
+msgstr "Paketeak instalatzen..."
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "Auto-hasi"
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Amaitu saioa eta, ondoren, sakatu Ktrl-Alt-Atzera"
-#: ../../any.pm:1
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "Domain Admin Password"
-msgstr "Domeinuko Admin Pasahitza"
+msgid "Please relog into %s to activate the changes"
+msgstr "Hasi berriro saioa %s(e)n aldaketak aktibatzeko"
-#: ../advertising/05-desktop.pl:1
-#, 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, ..."
-msgstr ""
-"Egokitu zure konputagailua zure beharretara eskuragarri dauden 11 Mandrake "
-"Linux erabiltzaile interfazeei esker, erabat aldagarriak: KDE 3.1, Gnome "
-"2.2, WindowMaker, ..."
+#: ../../standalone/drakTermServ_.c:239
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Mandrake Terminal Zerbitzariaren Ezarpena"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer ..."
-msgstr "Inprimagailua ezartzen..."
+#: ../../standalone/drakTermServ_.c:253
+msgid "Enable Server"
+msgstr "Gaitu Zerbitzaria"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, 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)"
-msgstr ""
-"Partizioen neurria aldatu ondoren datuen osotasuna ziurtatzeko, \n"
-"Windows(TM)ren hurrengo abiapenean fitxategi-sistemaren egiaztapena egingo da"
+#: ../../standalone/drakTermServ_.c:260
+msgid "Disable Server"
+msgstr "Ezgaitu Zerbitzaria"
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "MB"
+#: ../../standalone/drakTermServ_.c:268
+msgid "Start Server"
+msgstr "Abiatu Zerbitzaria"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
-msgstr "baietz ezarrita, exekutatu egiaztapen batzuk rpm datubasearekin."
+#: ../../standalone/drakTermServ_.c:275
+msgid "Stop Server"
+msgstr "Gelditu Zerbitzaria"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr "Birjina Uharteak (Britainiarrak)"
+#: ../../standalone/drakTermServ_.c:283
+msgid "Etherboot Floppy/ISO"
+msgstr "Etherboot Disketea/ISO"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bermuda"
-msgstr "Bermuda"
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
+msgstr "Sare Abiapen Irudiak"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
-msgstr "egin klik hemen, ziur bazaude."
+#: ../../standalone/drakTermServ_.c:294
+msgid "Add/Del Users"
+msgstr "Gehitu/Ezabatu erabiltzaileak"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Ez da konfigurazio-fitxategirik aurkitu \n"
-"egin klik Morroia-n edo Aurreratua-n."
+#: ../../standalone/drakTermServ_.c:299
+msgid "Add/Del Clients"
+msgstr "Gehitu/Ezabatu Bezeroak"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:328
+#, fuzzy
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"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+msgstr ""
+" eguneraketak 2002 MandrakeSoft Stew Benedict-ek <sbenedict\\@mandrakesoft."
+"com>"
+
+#: ../../standalone/drakTermServ_.c:332
+msgid ""
"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
msgstr ""
-"Hemen zerrendatuta daude zure unitate zurruan detektatu diren Linux "
-"partizioak.\n"
-"Morroiak egin dituen aukerak mantendu ditzakezu, instalazio gehienetarako\n"
-"onak direlako. Aldaketarik egiten baduzu, gutxienez erro partizio bat (\"/"
-"\") definitu\n"
-"behar duzu. Ez aukeratu partizio txikiegia edo ezin izango duzu behar adina\n"
-"software instalatu. Zure datuak partizio ezberdinean gorde nah badituzu,\n"
-"\"/home\" partizio bat sortu beharko duzu (soilik Linux partizio bat baino "
-"gehiago\n"
-"eskuragarri badaukazu).\n"
-"\n"
-"Partizio bakoitza horrela zerrendatzen da: \"Izena\" \"Edukiera\".\n"
-"\n"
-"\"Izena\"-ren egitura: \"unitate zurrun mota\", \"unitate zurrun zenbakia"
-"\",\n"
-"\"partizio zenbakia\" (adibidez, \"hda1\").\n"
+
+#: ../../standalone/drakTermServ_.c:365
+msgid ""
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\n"
"\n"
-"\"Unitate zurrun mota\" da \"hd\" zure unitate zurruna IDE motakoa bada eta\n"
-"\"sd\" SCSI motako bada.\n"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
"\n"
-"\"Unitate zurrun zenbakia\" beti \"hd\" edo \"sd\" ondoren dagoen hizkia da. "
-"IDE\n"
-"unitate zurrunekin:\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\n"
"\n"
-" * \"a\"-k adierazten du \"unitate zurrun nagusia lehenengo IDE "
-"kontrolatzailean\";\n"
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
"\n"
-" * \"b\"-k adierazten du \"unitate zurrun morroia lehenengo IDE "
-"kontrolatzailean\";\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
"\n"
-" * \"a\"-k adierazten du \"unitate zurrun nagusia bigarren IDE "
-"kontrolatzailean\";\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
"\n"
-" * \"b\"-k adierazten du \"unitate zurrun morroia bigarren IDE "
-"kontrolatzailean\";\n"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \n"
"\n"
-"SCSI unitate zurrunekin, \"a\"-k adierazten du \"SCSI ID baxuena\", \"b\"-k\n"
-"adierazten du \"bigarren SCSI ID baxuena\", etab."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Remove"
-msgstr "Kendu"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr "Lesotho"
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
+msgstr "Abiapen Disketea"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr "utopia 25"
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
+msgstr "Abiapen ISO"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Kanalizatu lana komando batean"
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
+msgstr "Eraiki Kernel Osoa -->"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Remove system config files"
-msgstr "Ezabatu sistemaren ezarpen fitxategiak"
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
+msgstr "Honek minutu batzuk beharko ditu."
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "Boli Kosta"
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
+msgstr "Ez da kernelik hautatu!"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "kenelaren devfs-k sortutako gailu dinamiko berriaren izena"
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
+msgstr "Eraiki NIC Bakarri -->"
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "Bai"
+#: ../../standalone/drakTermServ_.c:587
+msgid "No nic selected!"
+msgstr "Ez da nic batere hautatu!"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Zein protokolo erabili nahi duzu?"
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
+msgstr "Eraiki Kernel Guztiak -->"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Progress"
-msgstr "Leheneratze Aurrerapena"
+#: ../../standalone/drakTermServ_.c:604
+msgid "<-- Delete"
+msgstr "<-- Ezabatu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
-msgstr "Estonia"
+#: ../../standalone/drakTermServ_.c:611
+msgid "Delete All NBIs"
+msgstr "NBI Guztiak Ezabatu"
-#: ../../partition_table.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:668
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 ""
-"Hutsune bat duzu partizio-taulan baina ezin dut erabili.\n"
-"Irtenbide bakarra lehen mailako partizioak mugitzea da, hutsunea partizio "
-"hedatuen ondoren gera dadin"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
+"!!! 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 ""
-"Hautatu bertako eskanerrak eskuragarri jarri beharko lituzken ostalaria:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Channel"
-msgstr "Kanalea"
+#: ../../standalone/drakTermServ_.c:673
+msgid "Add User -->"
+msgstr "Gehitu erabiltzailea -->"
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Add"
-msgstr "Erantsi"
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
+msgstr "<-- Ezabatu Erabiltzailea"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr "Errorea posta bidaltzean. \n"
+#: ../../standalone/drakTermServ_.c:720
+#, fuzzy, c-format
+msgid "type: %s"
+msgstr "Mota: "
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "Teklatua"
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
+msgstr "Ez dira sare abiapen irudiak sortu!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-"Sartu %s bolumen etiketa duen CDa\n"
-" muntakeia-puntua /mnt/cdrom duen CD unitatean"
+#: ../../standalone/drakTermServ_.c:773
+#, fuzzy
+msgid "Thin Client"
+msgstr "DHCP bezeroa"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-"Tasak K, M edo G atzizkiak izan behar lituzke (adibidez, \"11M\" 11M "
-"adirazteko), edo erantsi behar adina '0' (zero)."
+#: ../../standalone/drakTermServ_.c:775
+#, fuzzy
+msgid "Allow Thin Clients"
+msgstr "Gehitu/Ezabatu Bezeroak"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Aukeratu konfiguratu nahi duzun konexioa"
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
+msgstr "Gehitu Bezeroa -->"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Itxoin mesedez, segurtasun-maila ezartzen..."
+#: ../../standalone/drakTermServ_.c:821
+#, fuzzy
+msgid "<-- Edit Client"
+msgstr "<-- Ezabatu Bezeroa"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Sareko %s gailua konfiguratzen"
+#: ../../standalone/drakTermServ_.c:837
+#, fuzzy
+msgid "Delete Client"
+msgstr "<-- Ezabatu Bezeroa"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
-msgstr "aktibatuta"
+#: ../../standalone/drakTermServ_.c:843
+msgid "dhcpd Config..."
+msgstr "dhcpd Ezarpena..."
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
+#: ../../standalone/drakTermServ_.c:876
+msgid ""
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
msgstr ""
-"Mesedez aukeratu zein sare-moldagailu erabili nahi duzun dhcp "
-"zerbitzariarenzako."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Bertsio-berritzeko paketeak bilatzen"
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
+msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
-msgstr "Muntaia-puntua: "
+#: ../../standalone/drakTermServ_.c:901
+#, fuzzy
+msgid "Netmask:"
+msgstr "Sare-maskara"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
-msgstr "analizatu letra-tipo guztiak"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid direct root login."
-msgstr "Baimendu/Debekatu root-aren sarrera zuzenean."
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr "Onartu/Errefusatu zabaldutako icmp echo."
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
-msgstr "X-rekin"
+#: ../../standalone/drakTermServ_.c:929
+#, fuzzy
+msgid "Domain Name:"
+msgstr "Domeinu-izena:"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Buru anitzeko konfigurazioa"
+#: ../../standalone/drakTermServ_.c:937
+#, fuzzy
+msgid "Name Servers:"
+msgstr "Samba Zerbitzaria"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "No browser available! Please install one"
-msgstr "Ez dago nabigatzailerik! Instalatu bat mesedez"
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
+msgstr ""
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
msgstr ""
-"Aldaketak mantendu?\n"
-"Hau da uneko konfigurazioa:\n"
-"\n"
-"%s"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Ezin da ReiserFS erabili 32MB baino gutxiagoko partizioetarako"
+#: ../../standalone/drakTermServ_.c:1001
+msgid "dhcpd Server Configuration"
+msgstr "dhcpd Zerbitzari Konfigurazioa"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:1002
+#, fuzzy
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)."
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-"rwho protokoloak urruneko erabiltzaileei rwho daemon-a (finger-en antzekoa)\n"
-"duen makina batean sartutako erabiltzaile guztien zerrenda eman diezaieke."
+"Balio hauetako gehienak martxan duzun sistematik\n"
+"hartu dira. Behar bezala aldatu ditzakezu."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "Domeinu-izena:"
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Bertako inprimagailu elkarbanaketa"
+#: ../../standalone/drakTermServ_.c:1018
+msgid "Write Config"
+msgstr "Idatzi Ezarpena"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
-msgstr "Gaitu/Ezgaitu libsafe baldin eta libsafe sisteman aurkitzen bada."
+#: ../../standalone/drakTermServ_.c:1120
+msgid "Please insert floppy disk:"
+msgstr "Mesedez sartu disketea:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Available printers"
-msgstr "Inprimagailu erabilgarriak"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
+msgstr "Ezin izan da disketea atzitu!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "NO"
-msgstr "EZ"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
+msgstr "Disketea kendu dezakezu orain"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "Hutsik"
+#: ../../standalone/drakTermServ_.c:1129
+msgid "No floppy drive available!"
+msgstr "Ez dago diskete-unitate erabilgarririk!"
-#: ../../standalone/draksplash:1
+#: ../../standalone/drakTermServ_.c:1138
#, c-format
-msgid "text width"
-msgstr "testu zabalera"
+msgid "Etherboot ISO image is %s"
+msgstr "Etherboot ISO irudia %s da"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Non muntatu nahi duzu %s gailua?"
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Zerbaitek hutsegin du! - mkisofs instalatuta dago?"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Jatorrizko alokatze denbora (segundutan)"
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "\"/etc/dhcpd.conf\" sortu behar da lehenbizi!"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
-"%s konexioa konfiguratuko dugu orain.\n"
-"\n"
-"\n"
-"Sakatu \"%s\" jarraitzeko."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Interface \"%s\""
-msgstr "\"%s\" interfazea"
+#: ../../standalone/drakautoinst_.c:40
+msgid "Error!"
+msgstr "Errorea!"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Oinarrizko dokumentazioarekin (gomendatua)"
+msgid "I can't find needed image file `%s'."
+msgstr "Ezin da aurkitu `%s' imajina-fitxategia, eta beharrezkoa da."
-#: ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr "Botoi 1"
+#: ../../standalone/drakautoinst_.c:43
+msgid "Auto Install Configurator"
+msgstr "Instalazio automatikoaren konfiguratzailea"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:44
msgid ""
+"You are about to configure an Auto Install floppy. This feature is somewhat "
+"dangerous and must be used circumspectly.\n"
"\n"
-"There are %d unknown printers directly connected to your system"
+"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 ""
+"Auto-instalazioko diskete bat konfiguratzera zoaz. Eginbide hau arriskutsu "
+"samarra da eta kontuz ibili behar da.\n"
"\n"
-"%d inprimagailu ezezagun daude zure sistemara zuzenean lotuta"
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Test"
-msgstr "Froga"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea"
-msgstr "Korea"
+"Eginbide honekin, ordenagailu honetan egin duzun instalazioa errepikatu ahal "
+"izango duzu, eta urrats batzuetan datuak eskatuko zaizkizu interaktiboki, "
+"balioak aldatu ahal izateko.\n"
+"\n"
+"Ahalik eta segurtasun handiena izateko, partizioa egitea eta formateatzea ez "
+"dira inoiz automatikoki egingo, berdin dio zer aukeratu duzun ordenagailu "
+"hau instalatu duzunean.\n"
+"\n"
+"Jarraitu nahi duzu ?"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Zure aukera? (lehenetsia: `%s'%s) "
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer"
-msgstr "Inprimagailu \"gordina\""
+#: ../../standalone/drakautoinst_.c:62
+#, fuzzy
+msgid "replay"
+msgstr "Errepikatu"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "cpu-ari saltzaileak emandako izen ofiziala"
+#: ../../standalone/drakautoinst_.c:66
+msgid "Automatic Steps Configuration"
+msgstr "Urrats automatikoen konfigurazioa"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
-msgstr "Erabilerarik gabea Terminal Zerbitzaririk gabe"
+#: ../../standalone/drakautoinst_.c:67
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
+msgstr ""
+"Aukeratu urrats bakoitzean instalazioa errepikatuko den, ala eskuz egingo "
+"duzun"
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Vendor"
-msgstr "Saltzailea"
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+msgid "Creating auto install floppy"
+msgstr "Auto-instalazioko disketea sortzen"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s"
-msgstr "%s interfazea"
+#: ../../standalone/drakautoinst_.c:139
+msgid ""
+"\n"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
+msgstr ""
+"\n"
+"Ongi etorri.\n"
+"\n"
+"Auto-instalazioko parametroak ezkerreko sekzioetan daude erabilgarri"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "Konfiguratu sagua"
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
+msgstr "Zorionak!"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
-msgstr "Aukeratu muntaia-puntuak"
+#: ../../standalone/drakautoinst_.c:235
+msgid ""
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
+msgstr ""
+"Disketea behar bezala sortu da.\n"
+"Orain zure instalazioa errepika dezakezu."
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr "Ados"
+#: ../../standalone/drakautoinst_.c:273
+msgid "Auto Install"
+msgstr "Instalazio automatikoa"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslaviarra (latindarra)"
+#: ../../standalone/drakautoinst_.c:343
+msgid "Add an item"
+msgstr "Gehitu elementu bat"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "Instalatzen"
+#: ../../standalone/drakautoinst_.c:350
+msgid "Remove the last item"
+msgstr "Kendu azken elementua"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan gurpil emulazioarekin"
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
+msgstr "Cron ezin du oraindik erabili root-ek ez bestek"
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
-msgstr "Abiarazi userdrake"
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
+msgstr "ADI"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Instalazioa ala eguneraketa da hau?"
+#: ../../standalone/drakbackup_.c:691
+msgid "FATAL"
+msgstr "LARRIA"
-#: ../../help.pm:1
-#, c-format
-msgid "ISDN card"
-msgstr "RDSI txartela"
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
+msgstr "INFO"
-#: ../advertising/02-community.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:704
msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
+"\n"
+" DrakBackup Report \n"
+"\n"
msgstr ""
-"Zure jakinduria elkarbanatzeko eta Linux tresnak eraikitzen laguntzeko, egin "
-"zaitez gure \"Komunitate\" web-orrian aurkituko dituzun eztabaida-taldeen "
-"partaide"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t Disko gogorra.\n"
+"\n"
+" DrakBackup-en berri-ematea \n"
+"\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:705
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"
+" DrakBackup Daemon Report\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 ""
-"Urrats hau makina honetan GNU/Linux partizio zahar bat topatzen bada soilik\n"
-"aktibatuko da.\n"
-"\n"
-"DrakX-ek orain jakin behar du instalazio berri bat edo lehendik dagoen "
-"Mandrake\n"
-"Linux sistema baten eguneraketa egin nahi duzun.\n"
"\n"
-" * \"%s\": Honek, ia erabat ezabatuko du sistema zaharra. Zure unitate "
-"zurrunak\n"
-"partizionatzeko modua aldatu nahi baduzu, edo fitxategi-sistema aldatu, "
-"aukera\n"
-"hau erabili beharko zenuke. Edonola, zure partizio eskemaren arabera, "
-"dauzkazun\n"
-"informazio batzuk gainidatzi daitezen ekidin dezakezu.\n"
+" DrakBackup Daemon-aren berri-ematea\n"
"\n"
-" * \"%s\": Instalazio mota honek zure Mandrake Linux sisteman orain "
-"instalatuta\n"
-"dauden paketeak eguneratzeko aukera ematen dizu. Zure partizio eskema\n"
-"eta erabiltzaile datuak ez dira aldatuko. Gainontzeko instalazio urrats "
-"gehienak\n"
-"erabilgarri jarraitzen dute, instalazio estandarraren antzera.\n"
"\n"
-"``Eguneratu'' aukera ondo ibili beharko litzateke \"8.1\" bertsioa eta\n"
-"ondorengoak erabiltzen dituzten Mandrake Linux sistemetan. Mandrake Linux\n"
-"\"8.1\" bertsioa baino zaharragoak dituzten sistemetan ez da gomendagarria."
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/drakbackup_.c:709
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"
+" DrakBackup Report Details\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"
msgstr ""
"\n"
-" Copyright (C) 2001-2002 MandrakeSoft \n"
-" DUPONT Sebastien (jatorrizko bertsioa)\n"
-" CHAUMETTE Damien <dchaumette@mandrakesoft.com>\n"
-"\n"
-" Programa hau software askea da; birbanatu eta/edo aldatu\n"
-" dazakezu Free Software Foundation-ek (Software Askearen Fundazioa)\n"
-" argitaratutako GNU Lizentzia Publiko Orokorraren terminoak jarraituz,\n"
-" dela 2. bertsioa, edo (nahi baduzu) ondorengo edozein bertsio.\n"
-"\n"
-" GNU Lizentzia Publiko Orokorraren kopia jaso beharko zenukeen\n"
-" programa honekin batera; hala ez bada, idatzi helbide honetara\n"
-" Free Software Foundation, Inc, 59 Temple Place - Suite 330, Boston,\n"
-" MA 02111-1307, USA.\n"
+" DrakBackup-en berri-ematearen xehetasunak\n"
"\n"
-" Programa hau erabilgarria izango delako ustetan banatzen da,\n"
-" baino INOLAKO BERMERIK GABE, ez eta KOMERTZIALTASUN edo\n"
-" HELBURU JAKIN BATERAKO EGOKITASUNA ere. Begiratu GNU\n"
-" Lizentzia Publiko Orokorra argibide gehiago jasotzeko.\n"
"\n"
-" Eskerrak:\n"
-" - pfm2afm: \n"
-"\t Ken Borgendale-k egina:\n"
-"\t Windows-en .pfm fitxategi bat .afm (Adobe Font Metrics) bihurtu\n"
-" - type1inst:\n"
-"\t James Macnicol-ek egina: \n"
-"\t type1inst-ek fonts.dir fonts.scale eta Fontmap fitxategiak sortzen "
-"ditu.\n"
-" - ttf2pt1: \n"
-"\t Andrew Weeks, Frank Siegert, Thomas Henlich eta Sergey Babkin-ek egina\n"
-" ttf tipografia fitxategiak afm eta pfb tipografiak bilakatzen "
-"ditu\n"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Urruneko CUPS zerbitzariko inprimagailua"
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+msgid "Total progess"
+msgstr "Aurrerapen guztia"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:785
#, c-format
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+"%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 ""
-"Huts egin du \"%s\" inprimagailua Star Office/OpenOffice.org/GIMP-tik "
-"kentzean."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
-msgstr "egin klik hemen, ziur ez bazaude."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DHCP host name"
-msgstr "DHCP ostalari izena"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Alokatze denbora handiena (segundutan)"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Aukeratu sagua konektatuta dagoen serieko ataka."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
-msgstr "Ongi egin du?"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
-msgstr "Muntatu fitxategi-sistema soilik-irakurketarako."
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "Txiroa"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result by mail"
-msgstr "Egiaztapen emaitzaren txostena postaz bidali"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
-msgstr "Granada"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
-msgstr "DHCP-ren eremu hasiera"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "Ez-segurua"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "SSH server"
-msgstr "SSH zerbitzaria"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektore"
-
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "Ez"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "Guadalupe"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Kannada"
-msgstr "Kanada"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
-msgstr "ezin izan da letra-tiporik aurkitu.\n"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Atzera-teklak Ezabatu itzultzea nahi duzu kontsolan?"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Freskatze-maiztasun bertikala"
+"%s badago, ezabatu?\n"
+"\n"
+"Adi: Dagoeneko prozesu hau burutu baduzu seguraski\n"
+"authorized_keys sarrera purgatu beharko duzu zerbitzarian."
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "`%s' urratsean sartzen\n"
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
+msgstr "Honek giltzak sortzeko denbora tarte bat behar du."
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup_.c:801
#, c-format
-msgid "Niger"
-msgstr "Niger"
+msgid "ERROR: Cannot spawn %s."
+msgstr "OKERRA: Ezin da %s jaurti."
-#: ../../mouse.pm:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
+msgid "No password prompt on %s at port %s"
+msgstr "Pasahitz eskaririk ez %s-n %s portuan"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:819
#, c-format
-msgid "Removing %s ..."
-msgstr "%s kentzen ..."
+msgid "Bad password on %s"
+msgstr "%s-n pasahitz okerra"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "No printer"
-msgstr "Inprimagailurik ez"
+msgid "Permission denied transferring %s to %s"
+msgstr "%s %s-ra transferitzeko baimena ukatu da"
-#: ../../standalone/logdrake:1
+#: ../../standalone/drakbackup_.c:821
#, c-format
-msgid "alert configuration"
-msgstr "abisu-konfigurazioa"
+msgid "Can't find %s on %s"
+msgstr "Ezin da %s %s-n bilatu"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid "NetWare Printer Options"
-msgstr "NetWare inprimagailuaren aukerak"
+msgid "%s not responding"
+msgstr "%s-k ez du erantzuten"
-#: ../../standalone/draksplash:1
+#: ../../standalone/drakbackup_.c:828
#, c-format
-msgid "%s BootSplash (%s) preview"
-msgstr "%s Bootsplash (%s) aurreikuspena"
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+"Transferentzia arrakastatsua\n"
+"Zerbitzarian saioa hasi dezakezula frogatu dezakezu honela:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"eta ez zaizu pasahitzik eskatuko."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "February"
-msgstr "Otsaila"
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
+msgstr "Urruneko WebDAV gunea dagoeneko sinkronizatuta!"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
-msgstr "Orokorra"
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
+msgstr "WebDAV transferentziak hutsegin du!"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
-msgstr "/etc/issue* badago"
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
+msgstr "Unitatean ez dago CDR/DVDR!"
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "Erantsi erabiltzaile bat"
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
+msgstr "Ez dirudi euskarri idazgarria denik!"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Sare-konfigurazioa (%d moldagailuak)"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
+msgstr "Ez da euskarri ezabagarria!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "April"
-msgstr "Apirila"
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
+msgstr "Euskarria ezabatzeak denbora tarte bat har dezake."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Deactivate now"
-msgstr "Ezgaitu orain"
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
+msgstr "Baimen arazoa CD atzipenean."
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
+#: ../../standalone/drakbackup_.c:1060
#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Derrigorrezko %s paketea falta da"
+msgid "No tape in %s!"
+msgstr "Zintarik ez %s-n!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Filipinak"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
+msgstr "Sistema-fitxategien babeskopia"
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "Ados"
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+msgid "Hard Disk Backup files..."
+msgstr "Disko gogorraren babeskopia fitxategiak... "
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "drakTermServ Overview"
-msgstr "drakTermServ Gainbegirada"
+#: ../../standalone/drakbackup_.c:1236
+msgid "Backup User files..."
+msgstr "Erabiltzaile-fitxategien babeskopia... "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
-msgstr "Inprimaketa-ilararen izena"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
+msgstr "Disko gogorraren babeskopia egiten..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "aboot erabili nahi duzu?"
+#: ../../standalone/drakbackup_.c:1290
+msgid "Backup Other files..."
+msgstr "Beste fitxategi batzuen babeskopia... "
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belarusian"
-msgstr "Bielorrusiarra"
+#: ../../standalone/drakbackup_.c:1296
+msgid "No changes to backup!"
+msgstr "Ez dago babestu beharreko aldaketarik!"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, c-format
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-"PDQk inprimagailu lokalak, urruneko LPD inprimagailuak eta Socket/TCP "
-"inprimagailuak soilik onartzen ditu.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move files to the new partition"
-msgstr "Eraman fitxategiak partizio berrira"
+"\n"
+"Drakbackup ekintzak %s bitartez:\n"
+"\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:1319
#, 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."
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-"Gehitu hemen erabili nahi dituzun inprimagailuak dituzten CUPS zerbitzariak, "
-"zerbitzariek beraien inprimagailuei buruzko informazioa bertako sareetan "
-"hedatzen ez badute soilik egin behar duzu hau."
+"FTP bitartez bidalitako fitxategi-zerrenda: %s\n"
+" "
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1322
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
+msgstr ""
"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+" FTP konexio-arazoa: zure babeskopien fitxategiak ezin izan dira bidali FTP "
+"bidez.\n"
+
+#: ../../standalone/drakbackup_.c:1340
+msgid ""
"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
+"Drakbackup activities via CD:\n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
msgstr ""
"\n"
-"Ongi etorri Inprimagailu Ezarpen Morroira\n"
-"\n"
-"Morroi honek lagunduko dizu zure konputagailura lotutako inprimagailua(k) "
-"instalatzen.\n"
-"\n"
-"Mesedez konektatu eta piztu itzazu makina honetara lotutako inprimagailu "
-"guztiak auto-detektatu ahal izan daitezen.\n"
+"Drakbackup ekintzak CD bitartez:\n"
"\n"
-" Klikatu \"Hurrengoa\" prest zaudenean, \"Etsi\" ez badituzu zure "
-"inprimagailuak orain ezarri nahi."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Leheneratu Katalogotik"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "%s partizioa %s direktorioan muntatzeak huts egin du"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
-msgstr "Lilo pantaila"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO menu grafikoarekin"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "Kalkulatzen"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
-msgstr "Ezin duzu pakete hau desautatu. Dagoeneko instalatuta dago"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", \"%s\" inprimagailua \"%s\" SMB/Windows zerbitzarian"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "Jarraitu hala ere?"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Pakete erabilgarriak bilatzen eta rpm databaseak berreraikitzen..."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1345
msgid ""
"\n"
-" DrakBackup Report \n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
"\n"
-" DrakBackup Txostena \n"
+"Drakbackup ekintzak zinta bitartez:\n"
+"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Ez dirudi euskarri idazgarria denik!"
+#: ../../standalone/drakbackup_.c:1354
+msgid " Error during mail sending. \n"
+msgstr " Errorea posta bidaltzean. \n"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "Zehaztu aukerak"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr "Vanuatu"
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
+msgstr "Ezin da katalogoa sortu!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "New user list:\n"
-msgstr "Erabiltzaile zerrenda berria:\n"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+msgid "File Selection"
+msgstr "Fitxategi-hautapena"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Zerbitzari-izena edo zerbitzariaren IP eman behar da!"
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
+msgstr "Hautatu fitxategiak edo direktorioak eta egin klik 'Gehitu'n"
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1573
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\"."
+"Please check all options that you need.\n"
msgstr ""
-"Abioko disko pertsonalizatuak Linux sistema abiarazteko aukera ematen du\n"
-"abioko kargatzaile normala erabili gabe. Baliagarria da zure sisteman SILO\n"
-"instalatu nahi ez baduzu, edo beste sistema eragile batek SILO kentzen badu, "
-"edo SILOk\n"
-"zure hardware-konfigurazioarekin funtzionatzen ez badu. Abioko disko "
-"pertsonalizatua Mandrake\n"
-"berreskuratzeko imajinarekin ere erabil daiteke, sistemaren hutsegite "
-"larriak\n"
-"errazago gainditu ahal izateko.\n"
"\n"
-"Zure sistemarako abioko disko bat sortu nahi baduzu, sartu diskete bat "
-"lehen\n"
-"unitatean eta sakatu \"Ados\"."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Ezin da fitxategi-sistema enkriptatua erabili %s muntaia-punturako"
+"Hautatu behar dituzun aukera guztiak.\n"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password history length to prevent password reuse."
-msgstr "Ezarri pashaitz historiaren luzera pashaitz berrerabilpena ekiditzeko."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
-msgstr "Norfolk uhartea"
+#: ../../standalone/drakbackup_.c:1574
+msgid ""
+"These options can backup and restore all files in your /etc directory.\n"
+msgstr ""
+"Aukera horiek /etc direktorioko fitxategi guztiak kopiatu eta leheneratu "
+"ditzakete.\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Theme installation failed!"
-msgstr "Gai instalazioak hutsegin du!"
+#: ../../standalone/drakbackup_.c:1575
+msgid "Backup your System files. (/etc directory)"
+msgstr "Sistema-fitxategien babeskopia egin. (/etc direktorioa )"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
-msgstr "Ez dago zer eginik"
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
+msgstr "Erabili babeskopia inkrementala (ez ordeztu kopia zaharrak)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "Erabili atzera-begiztarako"
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
+msgstr "Ez sartu fitxategi kritikoak (passwd, group, fstab)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr "Mandrake Akatsak Jakinarazteko Tresna"
+#: ../../standalone/drakbackup_.c:1578
+msgid ""
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
+msgstr ""
+"Aukera honekin /etc direktorioaren edozein bertsio leheneratu\n"
+"ahal izango duzu."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
-msgstr "Iragazkia aplikatu"
+#: ../../standalone/drakbackup_.c:1595
+msgid "Please check all users that you want to include in your backup."
+msgstr "Hautatu babeskopian sartu nahi dituzun erabiltzaile guztiak."
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pppoe"
-msgstr "erabili pppoe"
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
+msgstr "Ez sartu arakatzailearen cache-a"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving files to the new partition"
-msgstr "Fitxategiak partizio berrira eramaten"
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
+msgstr "Erabili babeskopia inkrementalak (ez ordeztu kopia zaharrak)"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s 3D hardware-azelerazio ESPERIMENTALAREKIN"
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+msgid "Remove Selected"
+msgstr "Kendu hautatutakoak"
-#: ../../help.pm:1 ../../interactive.pm:1
-#, c-format
-msgid "Advanced"
-msgstr "Aurreratua"
+#: ../../standalone/drakbackup_.c:1679
+msgid "Windows (FAT32)"
+msgstr "Windows(FAT32)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer"
-msgstr "Transferitu"
+#: ../../standalone/drakbackup_.c:1714
+msgid "Users"
+msgstr "Erabiltzaileak"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (suediarra)"
+#: ../../standalone/drakbackup_.c:1740
+msgid "Use network connection to backup"
+msgstr "Erabili sareko konexioa babeskopia egiteko"
-#: ../../lang.pm:1
-#, c-format
-msgid "Afghanistan"
-msgstr "Afganistan"
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
+msgstr "Sareko Metodoa:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "More Options"
-msgstr "Aukera gehiago"
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
+msgstr "Erabili Expect SSH-rentzako"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
+#: ../../standalone/drakbackup_.c:1747
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-"Ezabatu disko zurrunetik tar fitxategiak beste euskarri batera babestu "
-"ondoren."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "Burundi"
+"Sortu/Transferitu\n"
+"babeserako giltzak SSH-rentzako"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1748
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."
+" Transfer \n"
+"Now"
msgstr ""
-"cron UNIX programa estandar bat da, erabiltzaileak zehaztutako programak\n"
-"programatutako orduan exekutatzen dituena. vixie cron-ek hainbat eginbide \n"
-"gehitzen dizkio oinarrizko UNIX cron-i, hala nola segurtasun hobea eta "
-"konfigurazio-aukera ahaltsuagoak."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr "Gehitu Bezeroa -->"
+" Transferitu \n"
+"Orain"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "Irakurri arretaz"
+#: ../../standalone/drakbackup_.c:1749
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
+msgstr ""
+"Beste (drakbackup ez)\n"
+"giltzak bere tokian dagoeneko"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
-msgstr "RW"
+#: ../../standalone/drakbackup_.c:1753
+msgid "Please enter the host name or IP."
+msgstr "Idatzi ostalariaren izena edo IPa."
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1758
msgid ""
-"Please,\n"
-"type in your tv norm and country"
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-"Idatzi\n"
-"zure TB araua eta estatua"
+"Mesedez sartu direktorioa (edo modulua) babes-kopia\n"
+" ostalari honetan jartzeko."
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "Ataka"
+#: ../../standalone/drakbackup_.c:1763
+msgid "Please enter your login"
+msgstr "Sartu saioa hasteko izena"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
-msgstr "Ez (adituak soilik)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-msgstr "Ez da nukleorik hautatu!"
+#: ../../standalone/drakbackup_.c:1768
+msgid "Please enter your password"
+msgstr "Sartu pasahitza"
-#. -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
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Sakatu sartu hautatutako SE abiarazteko, 'e' abiarazi aurreko"
+#: ../../standalone/drakbackup_.c:1774
+msgid "Remember this password"
+msgstr "Gogoratu pasahitza"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
+msgstr "Ostalari-izena, erabiltzaile-izena eta pasahitza behar dira!"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The encryption keys do not match"
-msgstr "Enkriptatze-gakoak ez datoz bat"
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
+msgstr "Erabili CD/DVDROMa babeskopia egiteko"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1882
msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-"CD saio-anitz batekin, lehenengo saioak soilik ezabatuko du cdrw-a. Bestela "
-"cdrw-a babes-kopia bakoitzaren aurretik ezabatuko litzateke."
+"Mesedez hautatu zure CD/DVD gailua\n"
+"(Sartu sakatu ezarpenak beste eremu batzutara hedatzeko.\n"
+"Eremu hau ez da beharrezkoa, formularioa betetzeko tresna bakarrik.)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "USB printer"
-msgstr "USB inprimagailua"
+#: ../../standalone/drakbackup_.c:1887
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Mesedez hautatu zure CD/DVD euskarri neurria"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Eskuineko \"Windows\" tekla"
+#: ../../standalone/drakbackup_.c:1893
+msgid "Please check for multisession CD"
+msgstr "Mesedez markatu saio-anitzeko CDa egiteko"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr "baietz ezarrita, egiaztatu pashaitz hutsak /etc/shadow fitxategian."
+#: ../../standalone/drakbackup_.c:1899
+msgid "Please check if you are using CDRW media"
+msgstr "Hautatu CDRW euskarria erabiltzen baduzu"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Jarraitu baino lehen, lizentziaren terminoak arretaz irakurri beharko "
-"zenituzke.\n"
-"Honek Mandrake Linux banaketa osoa babesten du. Bertako termino guztiekin\n"
-"ados bazaude, markatu \"%s\" laukia. Bestela, itzaldu zure konputagailua."
+#: ../../standalone/drakbackup_.c:1905
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Mesedez markatu zure RW eukarria ezabatu nahi baduzu (1. saioa)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"Hemen duzu inprimagailu honen inprimatzeko aukeren zerrenda:\n"
-"\n"
+#: ../../standalone/drakbackup_.c:1906
+msgid " Erase Now "
+msgstr " Ezabatu Orain "
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "Bereizmenak"
+#: ../../standalone/drakbackup_.c:1912
+msgid "Please check if you are using a DVDR device"
+msgstr "Mesedez markatu DVDR gailua erabiltzen ari bazara"
-#: ../../network/drakfirewall.pm:1
-#, 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."
-msgstr ""
-"drakfirewall konfiguratzailea\n"
-"\n"
-"Honek Mandrake Linux makina honentzako suhesi pertsonala konfiguratzen du.\n"
-"Suhesi izatera zuzendutako soluzio ahaltsua nahi baduzu, mesedez begiratu\n"
-"MandrakeSecurity Firewall banaketa espezializatua."
+#: ../../standalone/drakbackup_.c:1918
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Mesedez markatu DVDRAM gailua erabiltzen ari bazara"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1931
msgid ""
-"Please enter your username, password and domain name to access this host."
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-"Mesedez sartu zure erabiltzaile-izena, pasahitza eta domeinu izena ostalari "
-"honetara sartzeko."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Remove selected host"
-msgstr "Kendu hautatutako ostalaria"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network configuration"
-msgstr "Sare-konfigurazioa"
+"Adierazi CD idazgailuaren gailu-izena \n"
+" adib.: 0,1,0"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Autodetektatuta _jaz unitateak"
+#: ../../standalone/drakbackup_.c:1964
+msgid "No CD device defined!"
+msgstr "Ez da CD gailurik definitu!"
-#: ../../any.pm:1
-#, c-format
-msgid "No sharing"
-msgstr "Ez konpartitu"
+#: ../../standalone/drakbackup_.c:2012
+msgid "Use tape to backup"
+msgstr "Erabili zinta babeskopia egiteko"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Jaitsi hautatutako araua maila bat"
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
+msgstr "Adierazi babeskopiarako erabiliko den gailuaren izena"
-#: ../../common.pm:1
-#, c-format
-msgid "TB"
-msgstr "TB"
+#: ../../standalone/drakbackup_.c:2021
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Mesedez markatu rebobinatzen ez den gailua erabiltzeko."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "FATAL"
-msgstr "LARRIA"
+#: ../../standalone/drakbackup_.c:2027
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Mesedez markatu babes-kopia aurretik zinta ezabatu nahi baduzu."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh the list"
-msgstr "Zerrenda berritu"
-
-#: ../../standalone/drakTermServ:1
-#, 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."
+#: ../../standalone/drakbackup_.c:2033
+msgid "Please check if you want to eject your tape after the backup."
msgstr ""
-" - Bezero bakoitzeko %s:\n"
-" \tclusternfs bitartez, diskorik gabeko bezero bakoitzak bere ezarpen "
-"fitxategi\n"
-" \tpropioak izan ditzake zerbitzariaren erro fitxategi-sisteman."
-"Bertako bezeroen hardware\n"
-" \tezarpena onartuz, drakTermServ-ek fitxategi hauek sortzen "
-"lagunduko du."
+"Mesedez markatu babes-kopia ondoren zure zinta kanporatzea nahi baduzu."
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
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"
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
msgstr ""
-"DHCP zerbitzariak beste konputagailuei PXE emaniko helbide barrutian "
-"erabiliz abiatzeko aukera emango die.\n"
-"\n"
-"Sareko helbidea %s da %s maskara erabiliz.\n"
-"\n"
+"Adierazi Drakbackup-en gehieneko\n"
+" tamaina "
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete"
-msgstr "Ezabatu"
+#: ../../standalone/drakbackup_.c:2103
+msgid "Please enter the directory to save to:"
+msgstr "Mesedez adierazi zein direktoriotan gorde behar den:"
-#: ../../Xconfig/various.pm:1
-#, 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?"
-msgstr ""
-"Ordenagailua abiatzean X automatikoki abiarazteko konfigura dezaket.\n"
-"Berrabiaraztean X hastea nahi duzu?"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
-msgstr "Sortu disketea"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnect %s"
-msgstr "Deskonektatu %s"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
-msgstr "Egoera:"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP proxy-a"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "SSH Server"
-msgstr "SSH Zerbitzaria"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-Sarea rsync bitartez.\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
-msgstr "Protokolo Europearra"
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+msgid "Use quota for backup files."
+msgstr "Erabili kuota babeskopia-fitxategientzat"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", \"%s\" inprimagailua \"%s\" zerbitzarian"
+#: ../../standalone/drakbackup_.c:2180
+msgid "Network"
+msgstr "Sarea"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
-msgstr ""
-"Ohartu oraintxe 'sare' euskarri guztiek ere disko zurruna erabiltzen dutela."
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
+msgstr "CDROM / DVDROM"
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
-#, c-format
-msgid "Error"
-msgstr "Errorea"
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
+msgstr "HardDrive / NFS"
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
-msgstr "onartu \"su\""
+#: ../../standalone/drakbackup_.c:2195
+msgid "Tape"
+msgstr "Zinta"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Australia"
-msgstr "Australia"
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
+msgstr "orduero"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "itxaron... ttmkfdir egin bitartean..."
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
+msgstr "egunero"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Konfiguratu \"%s\"%s txartela soilik"
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
+msgstr "astero"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Level"
-msgstr "Maila"
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
+msgstr "hilero"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Change the printing system"
-msgstr "Aldatu inprimatzeko sistema"
+#: ../../standalone/drakbackup_.c:2229
+msgid "Use daemon"
+msgstr "Erabili daemon-a"
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2234
msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
+"Please choose the time \n"
+"interval between each backup"
msgstr ""
-"Zure sistemak buru anitzeko konfigurazioa onartzen du.\n"
-"Zer egin nahi duzu?"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr "muntatzeak huts egin du: "
+"Aukeratu babeskopiak egiteko \n"
+"maiztasuna"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "Konfiguratu zerbitzuak"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Broadcast Helbidea:"
-
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2240
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."
+"Please choose the\n"
+"media for backup."
msgstr ""
-"GNU/Linux nukleoak abiapenean kalkuku begizta bat egin beharra dauka denbora "
-"zenbagailu bat hasieratzeko. Honen emaitza bogomips bezala gordetzen da cpu-"
-"aren \"benchmark\" moduan."
+"Aukeratu babeskopia \n"
+"egiteko euskarria."
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "Irudia"
+#: ../../standalone/drakbackup_.c:2247
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
+msgstr ""
+"Mesedez ziurtatu cron deabrua zure zerbitzuen artean dagoen.\n"
+"\n"
+"Ohartu oraingoz 'sareko' euskarri guztiek disko zurruna erabiltzen dutela."
-#: ../../services.pm:1
-#, c-format
-msgid "Remote Administration"
-msgstr "Urruneko administrazioa"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
+msgstr "Babeskopia egindakoan, bidali berri-emateko mezua hona :"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-"Huts egin du \"%s\" inprimagailua Star Office/OpenOffice.org/GIMP-n "
-"gehitzean."
-
-#: ../../modules.pm:1
-#, c-format
-msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
-msgstr "PCMCIA euskarririk ez dago 2.2 nukleoentzat. Erabili 2.4 nukleoa."
+"Ezabatu disko zurrunetik tar fitxategiak beste euskarri batera babestu "
+"ondoren."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Selected All"
-msgstr "Hautatutako guztiak"
+#: ../../standalone/drakbackup_.c:2324
+msgid "What"
+msgstr "Zer"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
+#: ../../standalone/drakbackup_.c:2329
+msgid "Where"
+msgstr "Non"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Webmin Service"
-msgstr "Webmin Zerbitzua"
+#: ../../standalone/drakbackup_.c:2334
+msgid "When"
+msgstr "Noiz"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
-msgstr "gailua"
+#: ../../standalone/drakbackup_.c:2339
+msgid "More Options"
+msgstr "Aukera gehiago"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Sartu zein direktoriotan gorde behar den:"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+msgid "Drakbackup Configuration"
+msgstr " Drakbackup-en konfigurazioa"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
-msgstr "Grezia"
+#: ../../standalone/drakbackup_.c:2376
+msgid "Please choose where you want to backup"
+msgstr "Aukeratu non egin nahi duzun babeskopia"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "Dena"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
+msgstr "disko gogorrean"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Zein inprimatze-sistema (spooler) erabili nahi duzu?"
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
+msgstr "sarean zehar"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
-msgstr "Uztaila"
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
+msgstr "CDROMean"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Prints into %s"
-msgstr "%s-n inprimatzen du"
+#: ../../standalone/drakbackup_.c:2406
+msgid "on Tape Device"
+msgstr "Zinta Gailuan"
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "Errore bat izan da"
+#: ../../standalone/drakbackup_.c:2449
+msgid "Please choose what you want to backup"
+msgstr "Aukeratu zeren kopia egin nahi duzun"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Pakete hau bertsio-berritu beharrean dago\n"
-"Ziur zaude desautatu nahi duzula?"
+#: ../../standalone/drakbackup_.c:2450
+msgid "Backup system"
+msgstr "Sistemaren babeskopia "
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "Tamila (idazmakina-diseinua)"
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
+msgstr "Erabiltzaileen babeskopia"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
-msgstr "Erabili pasahitza erabiltzaileak autentifikatzeko."
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
+msgstr "Hautatu erabiltzailea eskuz"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2537
msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
+"\n"
+"Backup Sources: \n"
msgstr ""
-"Baimendu/Galarazi sistema erabiltzaileen zerrenda saio kudeatzailean (kdm "
-"eta gdm)."
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
-msgstr "eskuz"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
-msgstr "bilatu beharreko fitxategi-izen testua:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Inprimagailuaren fabrikatzailea, modeloa, kontrolatzailea"
+"\n"
+"Babeskopien iturburua: \n"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2538
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"\n"
+"- System Files:\n"
msgstr ""
-"Ez dago euskarririk edo idazketarako babestuta dago %s gailuan.\n"
-"Sartu bat mesedez."
+"\n"
+"- Sistema-fitxategiak:\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2540
msgid ""
-"Directory %s already contains data\n"
-"(%s)"
+"\n"
+"- User Files:\n"
msgstr ""
-" %s direktorioak baditu datu batzuk\n"
-"(%s)"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "NetWare zerbitzariko inprimagailua"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Eman ram-tamaina MBtan"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr "Ostirala"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Internetetik deskoneksioa burutu da."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "Benetako izena"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "done"
-msgstr "eginda"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Desautatu edo kendu hurrengo aldian."
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Higher"
-msgstr "Handiagoa"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Aukeratu formateatu nahi dituzun partizioak"
+"\n"
+"- Erabiltzaile-fitxategiak:\n"
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2542
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"
+"- Other Files:\n"
+msgstr ""
"\n"
+"- Bestelako fitxategiak:\n"
+
+#: ../../standalone/drakbackup_.c:2544
+#, c-format
+msgid ""
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-"Zure makinan ez da TB txartelik aurkitu. Ziurtatu Linux-ek onartzen duen "
-"Bideo/TB txartela ondo konektatuta dagoela.\n"
-"\n"
"\n"
-"Gure hardware datubasea bisitatu dezakezu:\n"
+"- Gorde disko gogorrean, bide-izen honetan: %s\n"
+
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't find %s on %s"
-msgstr "Ezin da %s %s-n bilatu"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "Japoniarra 106 tekla"
+"- Ezabatu disko zurrunetik tar fitxategiak babestu ondoren.\n"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
+#: ../../standalone/drakbackup_.c:2553
+msgid ""
+"\n"
+"- Burn to CD"
msgstr ""
-"Zure eskanerra(k) elkarbanatzeko behar diren paketeak ezin dira instalatu."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Honek minutu batzuk beharko ditu."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "June"
-msgstr "Ekaina"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Erabili eskanerrak urruneko konputagailuetan"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Delete selected rule"
-msgstr "Ezabatu hautatutako araua"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Urruneko CUPS zerbitzarietako inprimagailuetara sartzen"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Sartu diskete bat %s unitatean"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
-msgstr "Maldivak"
-
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "trinkotu"
-
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
-msgstr "minutu bat"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: fat"
-msgstr "mota: fat"
+"\n"
+"- CD-ra erre"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "on channel %d id %d\n"
-msgstr "%d kanalean id %d\n"
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
+msgstr "RW"
-#: ../../printer/main.pm:1
+#: ../../standalone/drakbackup_.c:2555
#, c-format
-msgid ", multi-function device"
-msgstr ", funtzio anitzeko gailua"
+msgid " on device: %s"
+msgstr " gailuan: %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr "Laos"
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
+msgstr " (saio-anitza)"
-#: ../advertising/04-configuration.pl:1
+#: ../../standalone/drakbackup_.c:2557
#, 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!"
+"\n"
+"- Save to Tape on device: %s"
msgstr ""
-"Mandrake Linux 9.2 sistemak Mandrake Aginte Gunea eskaintzen dizu, zure "
-"konputagailua zure beharretara egokitzeko tresna indartsua. Ezarri eta "
-"pertsonalizatu segurtasun maila, periferikoak (pantaila, sagua, "
-"teklatua...), Internet koneksioa bezalako elementuak eta gauza gehiago!"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
-msgstr "Gaitu/Ezgaitu ethernet txartelen promiskuotasun egiaztapena."
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr "Ez dago neurria aldatzeko FAT partiziorik (edo ez dago nahikoa leku)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr "Gora"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
-msgstr "Suhesia"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr "Area :"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr "(E)IDE/ATA kontrolatzaileak"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
-msgstr "Fitxategi sistemara S/I era sinkronoan egin beharko lirateke."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "Inprimagailu-zerbitzaria"
+"\n"
+"- Gorde Zintara gailu honetan: %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "Custom configuration"
-msgstr "Konfigurazio pertsonalizatua"
+msgid "\t\tErase=%s"
+msgstr "\t\tErase=%s"
-#: ../../standalone/drakpxe:1
+#: ../../standalone/drakbackup_.c:2561
#, 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"
+"- Save via %s on host: %s\n"
msgstr ""
-"Mesedez adierazi instalazio irudia non egongo den.\n"
"\n"
-"Oraindik direktorio bat ez badaukazu, mesedez kopiatu CD edo DVD-aren "
-"edukiak.\n"
-"\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint-Pierre eta Mikelune"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
-msgstr "Iraila"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "Abiapen-irudi gaia gordetzen..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
-msgstr "Portugal"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "Baduzu besterik?"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", printing to %s"
-msgstr ", %s atakan"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Egokitu ostalari izena DHCP helbideagandik"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to normal mode"
-msgstr "Aldatu modu normalera"
-
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
-msgstr "Generikoa"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "%d zilindrotik %d zilindrora\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
-msgstr "ZURE TESTUA HEMEN"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "New profile..."
-msgstr "Profil berria..."
-
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
-#, c-format
-msgid "NONE"
-msgstr "BATERE EZ"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "Zein diskotara eraman nahi duzu?"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Display logo on Console"
-msgstr "Erakutsi logoa Kontsolan"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Windows Domain"
-msgstr "Windows Domeinua"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (norwegian)"
-msgstr "Saami (norvegiarra)"
+"- Gorde %s bitartez ostalari honetan: %s\n"
-#: ../../standalone/drakpxe:1
+#: ../../standalone/drakbackup_.c:2562
#, c-format
-msgid "Interface %s (on network %s)"
-msgstr "%s interfazea (%s sarean)"
+msgid ""
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
+msgstr ""
+"\t\t erabiltzaile-izena: %s\n"
+"\t\t bide-izena: %s \n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
-msgstr "INFO"
+#: ../../standalone/drakbackup_.c:2563
+msgid ""
+"\n"
+"- Options:\n"
+msgstr ""
+"\n"
+"- Aukerak:\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
-msgstr "Wallis eta Futuna uharteak"
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
+msgstr "\tEz sartu sistema-fitxategiak\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "\"/etc/dhcpd.conf\" sortu behar da lehenbizi!"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
+msgstr "\tBabeskopietan erabili tar eta bzip2\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
-msgstr "FPU dauka"
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
+msgstr "\tBabeskopietan erabili tar eta gzip\n"
-#: ../../services.pm:1
+#: ../../standalone/drakbackup_.c:2572
#, c-format
msgid ""
-"No additional information\n"
-"about this service, sorry."
+"\n"
+"- Daemon (%s) include:\n"
msgstr ""
-"Ez dago zerbitzu honi buruzko\n"
-"informazio gehiago."
+"\n"
+"- Daemon-ean (%s) sartzen da :\n"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "Ez da eskanerrik aurkitu zure sisteman eskuragarri dagoenik.\n"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
+msgstr "\t Disko gogorra.\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Eraiki NIC Bakarri -->"
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
+msgstr "\t-CDROMa.\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "Marshall uharteak"
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
+msgstr "\t-Tape \n"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "Zuzena da?"
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
+msgstr "\tFTP bidezko sarea.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Windows (FAT32)"
-msgstr "Windows(FAT32)"
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
+msgstr "\tSSH bidezko sarea.\n"
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr "Ezarri root-aren pasahitza"
+#: ../../standalone/drakbackup_.c:2578
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Sarea rsync bitartez.\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Eraiki Kernel Guztiak -->"
+#: ../../standalone/drakbackup_.c:2579
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Sarea webdav bitartez.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVDRAM device"
-msgstr "DVDRAM gailua"
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
+msgstr "Ez dago konfiguraziorik, egin klik Morroian edo Aurreratuan.\n"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
-msgstr "baietz ezarrita, txostendu jaberik gabeko fitxategiak."
+#: ../../standalone/drakbackup_.c:2587
+msgid ""
+"List of data to restore:\n"
+"\n"
+msgstr ""
+"Leheneratu beharreko datuen zerrenda:\n"
+"\n"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2754
msgid ""
-"You don't have a swap partition.\n"
+"List of data corrupted:\n"
"\n"
-"Continue anyway?"
msgstr ""
-"Ez duzu swap partiziorik\n"
+"Hondatutako datuen zerrenda:\n"
"\n"
-"Jarraitu hala ere?"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Version: "
-msgstr "Bertsioa: "
+#: ../../standalone/drakbackup_.c:2756
+msgid "Please uncheck or remove it on next time."
+msgstr "Desautatu edo kendu hurrengo aldian."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Server IP missing!"
-msgstr "Zerbitzari IP falta da!"
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
+msgstr "Babeskopien fitxategiak hondatuta daude"
-#: ../../lang.pm:1
-#, c-format
-msgid "Suriname"
-msgstr "Surinam"
+#: ../../standalone/drakbackup_.c:2787
+msgid " All of your selected data have been "
+msgstr " Hautatu dituzun datu guztiak izan dira "
-#: ../../network/adsl.pm:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "Use a floppy"
-msgstr "Diskete bat erabili"
+msgid " Successfuly Restored on %s "
+msgstr " behar bezala leheneratu dira hona: %s "
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
-msgstr "ACPI gaitu"
+#: ../../standalone/drakbackup_.c:2906
+msgid " Restore Configuration "
+msgstr " leheneratzeko konfigurazioa "
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
-msgstr "Eman idazteko sarrera erabiltzaile arruntei"
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
+msgstr "Ados, leheneratu beste fitxategiak"
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
-msgstr "Ingurune grafikoa"
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
+msgstr ""
+"Leheneratzeko erabiltzaile-zerrenda (erabiltzaile bakoitzaren datu berrienak "
+"bakarrik dira garrantzitsuak)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
-msgstr "Gibraltar"
+#: ../../standalone/drakbackup_.c:3019
+msgid "Backup the system files before:"
+msgstr "Kopiatu sistema-fitxategiak lehenago:"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Do nothing"
-msgstr "Ez egin ezer"
+#: ../../standalone/drakbackup_.c:3021
+msgid "please choose the date to restore"
+msgstr "aukeratu leheneratzeko data"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete Client"
-msgstr "Ezabatu Bezeroa"
+#: ../../standalone/drakbackup_.c:3057
+msgid "Use Hard Disk to backup"
+msgstr "Erabili disko gogorra babeskopia egiteko"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "Fitxategi-sistemaren mota: "
+#: ../../standalone/drakbackup_.c:3060
+msgid "Please enter the directory to save:"
+msgstr "Adierazi gorde beharreko direktorioa:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting network..."
-msgstr "Sarea abiarazten ..."
+#: ../../standalone/drakbackup_.c:3103
+msgid "FTP Connection"
+msgstr "FTP konexioa"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
-msgstr "Vietnam"
+#: ../../standalone/drakbackup_.c:3110
+msgid "Secure Connection"
+msgstr "Konexio segurua"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_Fields description"
-msgstr "_Eremuen azalpena"
+#: ../../standalone/drakbackup_.c:3134
+msgid "Restore from Hard Disk."
+msgstr "Leheneratu disko gogorretik"
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr "Optimizatu zure segurtasuna"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
+msgstr "Adierazi zein direktoriotan dauden babeskopiak"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-" Eskerrak:\n"
-"\t- LTSP Proiektua http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
+#: ../../standalone/drakbackup_.c:3204
+msgid "Select another media to restore from"
+msgstr "Hautatu beste euskarri bat leheneratzeko"
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Help"
-msgstr "Laguntza"
+#: ../../standalone/drakbackup_.c:3206
+msgid "Other Media"
+msgstr "Beste euskarri bat"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
-msgstr "Egiaztatu sareko moldagailuak modu promiskuoan dauden"
+#: ../../standalone/drakbackup_.c:3211
+msgid "Restore system"
+msgstr "Leheneratu sistema"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Your personal phone number"
-msgstr "Zure telefono-zenbakia"
+#: ../../standalone/drakbackup_.c:3212
+msgid "Restore Users"
+msgstr "Leheneratu erabiltzaileak"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which size do you want to keep for Windows on"
-msgstr "Zein tamaina utzi nahi duzu Windows-entzat"
+#: ../../standalone/drakbackup_.c:3213
+msgid "Restore Other"
+msgstr "Leheneratu bestelakoak"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Proba-orria(k) inprimagailura bidali dira.\n"
-"Denbora pixka bat igaro liteke inprimatzen hasi arte.\n"
+#: ../../standalone/drakbackup_.c:3215
+msgid "select path to restore (instead of /)"
+msgstr "hautatu leheneratzeko bidea (/ ordez)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Username required"
-msgstr "Erabiltzaile-izena behar da"
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
+msgstr "Egin babeskopia berria leheneratu aurretik (inkrementaletan soilik.)"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Device"
-msgstr "Gailua"
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
+msgstr "Kendu erabiltzaile-direktorioak leheneratu aurretik."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3334
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."
-msgstr ""
-"Sailean lehenetsi duzun hizkuntzaren arabeara, DrakX-ek automatikoki\n"
-"teklatu ezarpen berezi bat hautatuko du. Hala ere, baliteke ez edukitzea\n"
-"zure hizkuntzari erabat egokitzen zaion teklatua: adibidez, Ingelesa "
-"hitzegiten\n"
-"duen pertsona suitzarra bazara, teklatu Suitzarra izan dezakezu. Edo \n"
-"Ingelesez hitzegin eta Quebec-en bizi bazara, egoera berdinean egon\n"
-"zaitezke, non zure berezko hizkuntza eta teklatua ez datoz bat. Edozein\n"
-"kasutan, instalazio urrats honek zerrenda batetik teklatu egokia hautatzeko\n"
-"aukera emango dizu.\n"
-"Klikatu \"%s\" botoia onartzen diren teklatuen zerrenda\n"
-"ikusteko.\n"
-"\n"
-"Alfabeto ez-latindarra oinarri duen teklatu diseinu bat hautatzen baduzu,\n"
-"hurrengo elkarrizketak teklatua latindar ez-latindar diseinuen artean "
-"trukatzuko\n"
-"duen tekla konbinazioa hautatzen lagunduko dizu."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) inprimagailuaren aukerak"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-"Balio duten erabiltzaileen zerrenda aldatu da, ezarpen fitxategia "
-"berridazten."
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "mkinitrd optional arguments"
-msgstr "aukerako mkinitrd argumentuak"
+"Leheneratu Hautatutako\n"
+"Katalogo Sarrera"
-#: ../advertising/03-software.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3344
msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
+"Restore Selected\n"
+"Files"
msgstr ""
-"Surfeatu amarauna Mozilla edo Konqueror-rekin, irakurri zure posta Evolution "
-"edo Kmail-ekin, sortu zure dokumentuak OpenOffice.org-ekin."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Munduko gainerako protokoloa"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print test pages"
-msgstr "Inprimatu proba-orriak"
+"Leheneratu Hautatutako\n"
+"Fitxategiak"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Activate now"
-msgstr "Aktibatu orain"
+#: ../../standalone/drakbackup_.c:3361
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr ""
+"Aldatu\n"
+"Leheneratze Bidea"
-#: ../../Xconfig/card.pm:1
+#: ../../standalone/drakbackup_.c:3427
#, c-format
-msgid "64 MB or more"
-msgstr "64 MB edo gehiago"
+msgid "Backup files not found at %s."
+msgstr "Babestu %s-n aurkitu ez diren fitxategiak."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:3440
#, 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."
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-"Hautatu inprimatu nahi dituzun proba-orriak.\n"
-"Kontuan hartu: argazkien proba-orriak denbora asko behar izan dezake "
-"inprimatzeko, eta memoria gutxiko laser inprimagailuetan baliteke ez "
-"ateratzea ere. Gehienetan nahikoa izaten da proba-orri estandarra "
-"inprimatzea."
+"Sartu %s bolumen etiketa duen CDa\n"
+" muntaketa puntua /mnt/cdrom duen CD unitatean"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Mesedez aukeratu zure %s lotuta dagoen gailua"
+#: ../../standalone/drakbackup_.c:3440
+msgid "Restore From CD"
+msgstr "Leheneratu CDtik"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup_.c:3442
#, c-format
-msgid "Not formatted\n"
-msgstr "Formateatu gabe\n"
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr "Ez da CD etiketa zuzena. Diskoak %s etiketa dauka."
-#: ../../standalone/draksec:1
+#: ../../standalone/drakbackup_.c:3452
#, c-format
-msgid "Periodic Checks"
-msgstr "Aldizkako Egiaztapenak"
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
+"Sartu bolumen etiketa %s duen zinta\n"
+" %s zinta unitate gailuan"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "PXE Server Configuration"
-msgstr "PXE Zerbitzari Konfigurazioa"
+#: ../../standalone/drakbackup_.c:3452
+msgid "Restore From Tape"
+msgstr "Leheneratu Zintatik"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:3454
#, c-format
-msgid "Backup the system files before:"
-msgstr "Kopiatu sistema-fitxategiak lehenago:"
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr "Ez da zinta etiketa zuzena. Zinta %s etiketa dauka."
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Hau da Internetera bezero gisa konektatzeko erabiliko diren "
-"ordenagailuentzat gomendatzen den segurtasun estandarra. "
+#: ../../standalone/drakbackup_.c:3474
+msgid "Restore Via Network"
+msgstr "Leheneratu Sarearen Bitartez"
-#: ../../any.pm:1
+#: ../../standalone/drakbackup_.c:3474
#, c-format
-msgid "First floppy drive"
-msgstr "Lehen diskete-unitatea"
+msgid "Restore Via Network Protocol: %s"
+msgstr "Leheneratu Sareko Protokolo honen bitartez: %s"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Fitxategia/I_rten"
+#: ../../standalone/drakbackup_.c:3475
+msgid "Host Name"
+msgstr "Ostalari Izena"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak"
-msgstr "Dvorak"
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
+msgstr "Ostalari Bide edo Modulua"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose the new size"
-msgstr "Aukeratu tamaina berria"
+#: ../../standalone/drakbackup_.c:3483
+msgid "Password required"
+msgstr "Pasahitza behar da"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Media class"
-msgstr "Euskarri mota"
+#: ../../standalone/drakbackup_.c:3489
+msgid "Username required"
+msgstr "Erabiltzaile-izena behar da"
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr "Saioa itxi behar duzu eta atzera sartu aldaketak gauzatu daitezen"
+#: ../../standalone/drakbackup_.c:3492
+msgid "Hostname required"
+msgstr "Ostalari-izena behar da"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
-msgstr "%s ezezaguna da Scannerdrake-ren bertsio honentzako"
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
+msgstr "Bidea edo Modulua behar da"
-#: ../../lang.pm:1
-#, c-format
-msgid "Faroe Islands"
-msgstr "Faroe uharteak"
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
+msgstr "Fitxategiak Leheneratuta..."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Restart XFS"
-msgstr "Berrabiarazi XFS"
+#: ../../standalone/drakbackup_.c:3513
+msgid "Restore Failed..."
+msgstr "Leheneraketak Hutsegin du..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
-msgstr "Erantsi ostalaria/sarea"
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
+msgstr "Leheneratu babeskopia guztiak."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Scannerdrake ez da orain abiatuko."
+#: ../../standalone/drakbackup_.c:3760
+msgid "Custom Restore"
+msgstr "Leheneratze pertsonalizatua"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model name"
-msgstr "Eredu izena"
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
+msgstr "CDa bere lekuan - jarraitu."
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
-msgstr "Albania"
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
+msgstr "Nabigatu leheneratze repositorio berrira."
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr "Indiako Ozeanoko Britainiar Lurraldea"
+#: ../../standalone/drakbackup_.c:3813
+msgid "Restore From Catalog"
+msgstr "Leheneratu Katalogotik"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Normal Mode"
-msgstr "Modu normala"
+#: ../../standalone/drakbackup_.c:3841
+msgid "Restore Progress"
+msgstr "Leheneratze Aurrerapena"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "Unitatean ez dago CDR/DVDR!"
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+msgid "Previous"
+msgstr "Aurrekoa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer connection type"
-msgstr "Inprimagailuaren konexio-mota"
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+msgid "Save"
+msgstr "Gorde"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
-msgstr "Ez dago sare-moldagailurik zure sisteman!"
+#: ../../standalone/drakbackup_.c:3946
+msgid "Build Backup"
+msgstr "Egin babeskopia"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network %s"
-msgstr "%s Sarea"
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+msgid "Restore"
+msgstr "Leheneratu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
-msgstr "Malaysiera"
+#: ../../standalone/drakbackup_.c:4189
+msgid ""
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
+msgstr ""
+"Errorea sendmail bitartez posta bidaltzean\n"
+" Berri emateko mezua ez da bidali\n"
+" Mesedez konfiguratu posta-bidalketa sendmail bitartez"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
-msgstr "%s aukera barrutitik kanpo dago!"
+#: ../../standalone/drakbackup_.c:4195
+msgid ""
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
+msgstr ""
+"Okerra FTP bidez fitxategia bidaltzean.\n"
+" Mesedez zuzendu zure FTP konfigurazioa."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connect %s"
-msgstr "Konektatu %s"
+#: ../../standalone/drakbackup_.c:4209
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr ""
+"Ondorengo paketeak instalatuta egon behar dira:\n"
+" @list_of_rpm_to_install"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "CUPS Berrabiarazten..."
+#: ../../standalone/drakbackup_.c:4232
+msgid "Please select data to restore..."
+msgstr "Hautatu leheneratzeko datuak..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Inprimatzeko/Eskaneatzeko/Argazki Txartelak \"%s\"-n"
+#: ../../standalone/drakbackup_.c:4267
+msgid "Please select media for backup..."
+msgstr "Hautatu babeskopiaren euskarria..."
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
-msgstr "Jarraitu USB giltza gabe"
+#: ../../standalone/drakbackup_.c:4275
+msgid "Please select data to backup..."
+msgstr "Hautatu babeskopia egiteko datuak..."
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Bikoiztu %s muntaia-puntua"
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
+msgid ""
+"No configuration file found \n"
+"please click Wizard or Advanced."
+msgstr ""
+"Ez da konfigurazio-fitxategirik aurkitu \n"
+"egin klik Morroia-n edo Aurreratua-n."
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
-msgstr "baietz ezarrita, exekutatu chkrootkit egiaztapenak."
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
+msgstr "Garatzen... itxaron."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "Konexioaren konfigurazioa"
+#: ../../standalone/drakbackup_.c:4382
+msgid "Backup system files"
+msgstr "Sistema-fitxategien babeskopia"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|Generic"
-msgstr "Ezezaguna|Generikoa"
+#: ../../standalone/drakbackup_.c:4384
+msgid "Backup user files"
+msgstr "Erabiltzaile-fitxategien babeskopia"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Mandrake Linux instalatzen ari zaren garaian, ziurrenik pakete batzuk "
-"hasierako\n"
-"argitalpenetik eguneratuak izan dira. Akatsak zuzendu ahal izan dira, "
-"segurtasun\n"
-"gakoak konpondu. Eguneraketa hauen onurez baliatzeko, oraintxe Internetetik\n"
-"jaitsi ditzakezu. Markatu \"%s\" dabilen Internet lotura badaukazu, edo \"%s"
-"\"\n"
-"eguneratutako paketeak beranduago instalatu nahi badituzu.\n"
-"\n"
-"\"%s\" hautatuz eguneraketak eskuratu daitezkeen lekuen zerrenda\n"
-"erakutsiko zaizu. Zugandik gertuen dagoenetako bat hautatu beharko\n"
-"zenuke. Pakete-hautaketa zuhaitz bat agertuko da: aztertu hautaketa,\n"
-"eta sakatu \"%s\" hautatutako paketea(k) eskuratu eta instalatzeko,\n"
-"edo \"%s\" galarazteko."
+#: ../../standalone/drakbackup_.c:4386
+msgid "Backup other files"
+msgstr "Bestelako fitxategien babeskopia"
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-msgstr "Birmania"
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
+msgstr "Guztizko progresioa"
-#: ../../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
-#, c-format
-msgid "Quit"
-msgstr "Irten"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
+msgstr "fitxategiak FTP bidez bidaltzen"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "Auto-esleitu"
+#: ../../standalone/drakbackup_.c:4416
+msgid "Sending files..."
+msgstr "Fitxategiak bidaltzen..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Bloke txarrak egiaztatu?"
+#: ../../standalone/drakbackup_.c:4500
+msgid "Backup Now from configuration file"
+msgstr "Egin babeskopia konfigurazio-fitxategitik"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Other MultiMedia devices"
-msgstr "Beste gailu Multimedia batzuk"
+#: ../../standalone/drakbackup_.c:4505
+msgid "View Backup Configuration."
+msgstr "Ikusi babeskopiaren konfigurazioa"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "burner"
-msgstr "grabatzailea"
+#: ../../standalone/drakbackup_.c:4526
+msgid "Wizard Configuration"
+msgstr "Morroiaren konfigurazioa"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Bug Description/System Information"
-msgstr "Akatsaren Azalpena/Sistemaren Informazioa"
+#: ../../standalone/drakbackup_.c:4531
+msgid "Advanced Configuration"
+msgstr "Konfigurazio aurreratua"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (Default is all users)"
-msgstr " (lehenetsia erabiltzaile guztiak)"
+#: ../../standalone/drakbackup_.c:4536
+msgid "Backup Now"
+msgstr "Egin babeskopia orain"
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "No remote machines"
-msgstr "Urruneko makinarik ez"
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
+msgstr "Drakbackup"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4624
msgid ""
+"options description:\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
+" In this step Drakbackup allow you to change:\n"
"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\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 option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
msgstr ""
+"aukeren azalpena:\n"
"\n"
-"Ongi etorri Inprimagailu Ezarpen Morroira\n"
+" Urrats honetan Drakbackup-ek hauek aldatzen utziko dizu:\n"
"\n"
-"Morroi honek konputagailu honetara lotutako inprimagailua(k) ezartzen "
-"lagunduko dizu.\n"
+" - Konprimitze-modua:\n"
+" \n"
+" bzip2 konpresioa hautatuz, gzip-ekin baino gehiago\n"
+" konprimituko dituzu datuak (% 2-10 inguru).\n"
+" Aukera hau ez da lehenespen gisa hautatzen konpresio-modu\n"
+" honek denbora gehiago (% 1000 gehiago) hartzen duelako.\n"
+" \n"
+" - Eguneratze modua:\n"
"\n"
-"Makina honetara inprimagailuak lotuta badauzkazu, mesedez konekta itzazu eta "
-"eta piztu itzazu auto-detektatuak izan daitezen.\n"
+" Aukera honek babeskopia eguneratuko du, baina ez da\n"
+" oso erabilgarria, eguneratu aurretik babeskopia\n"
+" deskonprimitu egin behar baita.\n"
+" \n"
+" - .backupignore modua:\n"
+"\n"
+" cvs-rekin bezala, Drakbackup-ek ezikusi egingo die direktorio\n"
+" bakoitzeko .backupignore fitxategietako erreferentzia guztiei.\n"
+" adib: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
"\n"
-" Klikatu \"Hurrengoa\" prest zaudenean, eta \"Etsi\" zure inprimagailuak "
-"orain ezarri nahi ez badituzu."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "NIS Autentifikazioa"
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4654
msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-"``Murriztu komando-lerroko aukerak'' aukera ezin da erabili pasahitzik gabe"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Interneteko konexioa konpartitzea gaituta dago orain"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "Arabiar Emirerri Batuak"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "Txartelaren S/I_0"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
-msgstr "Ezgaitu Bertako Konfig"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "Thailandia"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "Txartelaren S/I_1"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
-msgstr "Bilatu:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "Kazakhstan"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
-msgstr "Routerrak:"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Write"
-msgstr "Idatzi"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Erakutsi urruneko CUPS inprimagailu eskuragarri guztiak"
-
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux-en %s instalazioa"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
-msgstr "Gidari ezezaguna"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "Thailandiako teklatua"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr "Bouvet uhartea"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "Telefonoz deitzeko aukerak"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "Porturik eman ezean, 631 hartuko da lehenetsi bezala."
+"\n"
+" Posta bidaltzean izandako errore batzuk postfix gaizki \n"
+" konfiguratuta dagoelako izan dira. Konpontzeko, \n"
+" myhostname edo mydomain ezarri behar duzu hemen: /etc/postfix/main.cf\n"
+"\n"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Ezarpen fitxategiak bezeroko bakoitzeko:\n"
-" \tclusternfs bitartez, diska gabeko bezero bakoitzak bere ezarpen "
-"fitxategi propioak izan\n"
-" \tditzake zerbitzariaren erro fitxategi-sisteman. Bertako "
-"bezeroenhardware ezarpenak, \n"
-" \tonartuz, bezeroek /etc/modules.conf, /etc/sysconfig/mouse, "
-"bezalako fitxategiak\n"
-" \tpertsonalizatu ditzakete bezero-bakoitzeko oinarrian.\n"
-"\n"
-" Oharra: Bezeroaren bertako hardware ezarpena gaituta, zerbitzari "
-"terminalera root sarrera gaitzen da\n"
-" ezaugarri hau gaituta daukan edozein bezerotan. Bertako "
-"konfigurazioa berriro itzal daiteke,\n"
-" ezarpen fitxategiak mantenduz, behin bezero makina ezarri eta gero."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4662
msgid ""
-"Change your Cd-Rom!\n"
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\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 ""
-"Aldatu CDROMa!\n"
+"aukeren azalpena:\n"
+"\n"
+" - Sistema-fitxategien babeskopia:\n"
+" \n"
+"\tAukera honen bidez konfigurazio-fitxategi guztiak dituen\n"
+"\t/etc direktorioaren babeskopia egin daiteke. Kontuz ibili\n"
+"\tleheneratze-urratsean, eta ez gainidatzi hauek:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Erabiltzaile-fitxategien babeskopia: \n"
+"\n"
+"\tAukera honen bidez, babeskopia egiteko erabiltzaileak\n"
+"\thauta ditzakezu.\n"
+"\tDisko-lekua gordetzeko, web arakatzailearen cachea ez \n"
+"\tsartzea komeni da.\n"
+"\n"
+" - Bestelako fitxategien babeskopia: \n"
+"\n"
+"\tAukera honen bidez, gordetzeko datu gehiago gehituko dituzu.\n"
+"\tBeste babeskopiekin ezin da oraindik babeskopia inkrementala hautatu.\t\t\n"
+" \n"
+" - Babeskopia inkrementalak:\n"
+"\n"
+"\tBabeskopia-aukera ahaltsuena da. Aukera honen\n"
+"\tbidez, lehen aldian datu guztien babeskopia egin\n"
+"\tdaiteke, eta gero aldatuenak bakarrik.\n"
+"\tGero, leheneratze-urratsean, data jakin bateko\n"
+"\tdatuak leheneratu ahal izango dituzu.\n"
+"\tAukera hau hautatuta ez baduzu, babeskopia zahar guztiak\n"
+"\tezabatzen dira babeskopia bakoitza egin aurretik. \n"
+"\n"
"\n"
-"Sartu \"%s\" etiketa duen CDROMa unitatean eta sakatu Ados.\n"
-"Ez baduzu, sakatu Utzi instalazioa CDROM horretatik egin ez dezan."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "poloniarra"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Online"
-msgstr "Mandrake Online"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
-msgstr "\t-Sarea webdav bitartez.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", gailu funtzio-anitza ataka paralelo batean"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4701
msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
+"\n"
msgstr ""
-"Zure sisteman ez da ethernet sare-moldagailurik detektatu. Exekutatu "
-"hardwarea konfiguratzeko tresna."
-
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "Sare-maskara"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "No hard drives found"
-msgstr "Ez da disko zurrunik aurkitu"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "2 botoi"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "Nolakoa da zure ISDN konexioa?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "Etiketa"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "Gorde disketean"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check open ports"
-msgstr "Egiaztatu irekitako portuak"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Edit selected printer"
-msgstr "Editatu hautatutako inprimagailua"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Inprimagailuen auto-detekzioa"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Hurrengoetako zein da zure RDSI txartela?"
+"leheneratze azalpena:\n"
+" \n"
+"Gertueneko data soilik erabiliko da, babeskopia inkrementalarekin\n"
+"beharrezkoa delako babeskopia zaharrak banan-banan leheneratzea.\n"
+"\n"
+"Beraz erabiltzaile bat leheneratu nahi ez baduzu, haren egiaztapen-"
+"laukietatik\n"
+"markak kendu.\n"
+"\n"
+"Bestela, hauetako bakarra hautatu ahal izango duzu\n"
+"\n"
+" - Babeskopia inkrementalak:\n"
+"\n"
+"\tBabeskopia-aukera ahaltsuena da. Aukera honen\n"
+"\tbidez, lehen aldian datu guztien babeskopia\n"
+"\tegiteko aukera ematen du, eta gero aldatutako\n"
+"\tdatuak bakarrik.\n"
+"\tBeraz, leheneratze-urratsean, data\n"
+"\tjakin bateko datuak leheneratu ahal izango\n"
+"\tdituzu.\n"
+"\tAukera hau hautatuta ez baduzu, babeskopia zahar guztiak\n"
+"\tezabatzen dira babeskopia bakoitzaren aurretik. \n"
+"\n"
+"\n"
+"\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4727
+#, fuzzy
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."
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
-"NFS protokolo ezagun bat da, TCP/IP sareetan fitxategiak konpartitzeko.\n"
-"Zerbitzu honek NFS zerbitzariaren funtzionaltasuna (/etc/exports "
-"fitxategian\n"
-"konfiguratua) eskaintzen du."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Msec"
-msgstr "Mseg"
+" Copyright (C) 2001 MandrakeSoft, DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4729
msgid ""
-"=> Notice, a label changed:\n"
-"%s"
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-"=> Kontuz, etiketa bat aldatu da:\n"
-"%s"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
-msgstr "Eskuratze buffer kopurua :"
+" eguneraketak 2002 MandrakeSoft Stew Benedict-ek <sbenedict\\@mandrakesoft."
+"com>"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Zure aukera? (0/1, lehenetsia `%s' da) "
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4732
+#, fuzzy
msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a file system).\n"
+"Description:\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"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\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"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\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"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
"\n"
-"Click on \"%s\" when you are ready to format partitions.\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\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 ""
-"Definitu den partizio berri oro eratu (formateatu) egin behar da\n"
-"(eratzea fitxategi sistema sortzea esan nahi du).\n"
+"Azalpena:\n"
"\n"
-"Momentu honetan, aurrez existitzen diren partizio batzuk berriro eratu\n"
-"ditzakezu duten hedukina ezabatzeko. Hori egin nahi baduzu, mesedez\n"
-"hautatu partizio horiek ere.\n"
+" Drakbackup zure sistemaren babeskopia egiteko erabiltzen da.\n"
+" konfigurazioan zehar hauta ditzakezu: \n"
+"\t- Sistema-fitxategiak, \n"
+"\t- Erabiltzaile-fitxategiak, \n"
+"\t- Bestelako fitxategiak.\n"
+"\tedo Sistema osoa ... eta Bestelakoa (Windows partizioetan bezala)\n"
"\n"
-"Mesedez ohartu zaitez ez dela beharrezkoa aurrez-zeuden\n"
-"partizioak ezabatzea. Sistema eragilea duten partizioak berreratu\n"
-"behar dituzu (adibide gisa \"/\", \"/usr\" edo \"/var\") baino ez dituzu\n"
-"berreratu behar mantendu nahi duzun informazioa duten partizioak\n"
-"(ohikoa \"/home\").\n"
+" Drakbackup-en bidez, babeskopiak egiteko erabil daiteke:\n"
+"\t- Disko gogorra.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM.\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Zinta.\n"
"\n"
-"Mesedez arretaz hautatu partizioak. Eratu ondoren, hautatutako\n"
-"partizioetako datu guztiak ezabatuko dira eta ezin izango dira\n"
-"berreskuratu.\n"
+" Drakbackup erabiliz, zure sistema hautatutako\n"
+" direktorio batean lehenera dezakezu.\n"
"\n"
-"Klikatu \"%s\" partizioak eratzeko prest zaudenean.\n"
+" Lehenespen gisa, babeskopia guztiak \n"
+" /var/lib/drakbackup direktorioan gordeko dira\n"
+"\n"
+" Konfigurazio-fitxategia:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"\n"
+"Leheneratze-urratsa:\n"
+" \n"
+" Leheneratze-urratsean, DrakBackup.ek kendu egingo du\n"
+" jatorrizko direktorioa eta babeskopia-fitxategiak ez\n"
+" daudela hondatuta egiaztatuko du. Leheneratu aurretik\n"
+" babeskopia egitea gomendatzen da.\n"
"\n"
-"Klikatu \"%s\" zure Mandrake Linux sistema eragile berriarentzako\n"
-"beste partizio bat hautatu nahi baduzu.\n"
"\n"
-"Klikatu \"%s\" bloke txarren bila egiaztatuak izango diren partizioak\n"
-"hautatu nahi badituzu."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "French"
-msgstr "frantsesa"
+#: ../../standalone/drakbackup_.c:4769
+msgid ""
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
+msgstr ""
+"aukeren azalpena:\n"
+"\n"
+"Kontuz ftp backup erabiltzean, eginda dauden babeskopiak \n"
+"soilik bidaliko direlako zerbitzarira.\n"
+"Beraz, orain, disko gogorrean egin behar duzu babeskopia\n"
+"zerbitzarira bidali aurretik.\n"
+"\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTY)"
-msgstr "Txekiarra (QWERTY)"
+#: ../../standalone/drakbackup_.c:4778
+msgid ""
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
+msgstr ""
+"\n"
+"Leheneratze-arazoak:\n"
+"\n"
+"Leheneratze-urratsean, Drakbackup-ek babeskopia-fitxategi\n"
+"guztiak egiaztatuko ditu leheneratu aurretik.\n"
+"Leheneratu aurretik, Drakbackup-ek kendu egingo du\n"
+"jatorrizko direktorioa, eta datu guztiak galduko dituzu.\n"
+"Garrantzizkoa da kontuz ibiltzea eta babeskopia-fitxategiak\n"
+"eskuz ez aldatzea.\n"
-#: ../../security/l10n.pm:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Allow X Window connections"
-msgstr "Baimendu X Window koneksioak"
+msgid "Installation of %s failed. The following error occured:"
+msgstr "%sren instalazioak huts egin du. Errore hau gertatu da:"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "Hardware froga martxan"
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
+msgstr "Mandrake Akatsak Jakinarazteko Tresna"
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
-#, c-format
-msgid "Net Device"
-msgstr "Sare Gailua"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Lehen Aldikorako Morroia"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "Laburpena"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Sinkronizazio tresna"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (Ataka paraleloak: /dev/lp0, /dev/lp1..., baliokideak dira LPT1:, LPT2:..., "
-"lehen USB inprimagailua: /dev/usb/lp0, 2. USB inprimagailua: /dev/usb/"
-"lp1, ...)."
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+msgid "Standalone Tools"
+msgstr "Tresna Autonomoak"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Next"
-msgstr "Hurrengoa"
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Abioko kargatzailea ezin da %s partizio batean instalatu\n"
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Mseg"
-#: ../../network/network.pm:1
-#, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp/zeroconf)"
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Urruneko Agintea"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Ongi etorri.\n"
-"\n"
-"Auto-instalazioko parametroak ezkerreko sekzioetan daude erabilgarri"
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Software Kudeatzailea"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
-msgstr ""
-"ondo lanegin dezan ImageMagick paketea behar da.\n"
-"Klikatu \"Ados\" 'ImageMagick' instalatzeko edo \"Etsi\" irtetzeko"
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Telnet server"
-msgstr "Telnet zerbitzaria"
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Windows Migrazio tresna"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lituaniako QWERTY \"ilara numerikoa\""
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
-#: ../../install_any.pm:1
-#, c-format
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Ezarpen Morroia"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Application:"
+msgstr "Aplikazioa:"
+
+#: ../../standalone/drakbug_.c:76
+msgid "Package: "
+msgstr "Paketea: "
+
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
+msgstr "Kernela:"
+
+#: ../../standalone/drakbug_.c:78
+msgid "Release: "
+msgstr "Bertsioa: "
+
+#: ../../standalone/drakbug_.c:93
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
"\n"
"\n"
-"Do you really want to remove these packages?\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
msgstr ""
-"Ondorengo paketeak zure sistema eguneratu ahal izateko ezabatuko dira: %s\n"
"\n"
"\n"
-"Pakete hauek ezabatu nahi dituzu?\n"
+"Akats txosten bat bidaltzeko, klikatu txosten botoia.\n"
+"Honek web nabigatzailearen leiho batean https://drakbug.mandrakesoft.com\n"
+" zabalduko du, bertan bete beharreko inprimakia aurkituko duzu. Gainean \n"
+"erakusten den informazioa zerbitzari hartara bidaliko da\n"
+"\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
-msgstr "Anguilla"
+#: ../../standalone/drakbug_.c:112
+msgid "Report"
+msgstr "Txostena"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "NIS domeinua"
+#: ../../standalone/drakbug_.c:148
+msgid "Not installed"
+msgstr "Instalatu gabe"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "Antartika"
+#: ../../standalone/drakbug_.c:160
+#, fuzzy
+msgid "Package not installed"
+msgstr "Instalatu gabe"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Erabiltzaile-fitxategiak:\n"
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
+msgstr "Bugzilla morroira konektatzen ..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
-msgstr "Muntatze-aukerak"
+#: ../../standalone/drakbug_.c:180
+msgid "No browser available! Please install one"
+msgstr "Ez dago nabigatzailerik! Instalatu bat mesedez"
-#: ../../lang.pm:1
+#: ../../standalone/drakconnect_.c:75
#, c-format
-msgid "Jamaica"
-msgstr "Jamaika"
+msgid "Network configuration (%d adapters)"
+msgstr "Sare-konfigurazioa (%d moldagailuak)"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
-msgstr ""
-"Esleitu gailu 'gordinak' 'bloke' gailuei (unitate zurrun partizioak\n"
-"esaterako), Oracle edo DVD joleak moduko aplikazioek erabili ditzaten"
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+msgid "Profile: "
+msgstr "Profila: "
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Itxaron, instalazioa prestatzen"
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
+msgstr "Ezabatu profila..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "txekiarra (QWERTZ)"
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
+msgstr "Ezabatu beharreko profila:"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Sare-txartelaren identifikazioa (eramangarrientzat baliagarria)"
+#: ../../standalone/drakconnect_.c:125
+msgid "New profile..."
+msgstr "Profil berria..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Ataka-zenbakiak osoko zenbakia izan behar du!"
+#: ../../standalone/drakconnect_.c:131
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Sortu beharreko profilaren izena (profil berria oraingoaren kopia gisa "
+"sortuko da) :"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "You must choose an image file first!"
-msgstr "Irudi fitxategi bat hautatu behar duzu lehenik!"
+#: ../../standalone/drakconnect_.c:157
+msgid "Hostname: "
+msgstr "Ostalari-izena: "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Leheneratu disko gogorretik"
+#: ../../standalone/drakconnect_.c:164
+msgid "Internet access"
+msgstr "Interneterako sarbidea"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "Gehitu LVMri"
+#: ../../standalone/drakconnect_.c:177
+msgid "Type:"
+msgstr "Mota:"
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "DNS zerbitzaria"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "Atebidea:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr "Trinidad eta Tobago"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Interface:"
+msgstr "Interfazea:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPDk eta LPRng-ek ez dute IPP inprimagailurik onartzen.\n"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
+msgstr "Egoera:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host name or IP."
-msgstr "Ostalari-izena edo IP."
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
+msgstr "Itxaron"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Edit"
-msgstr "/_Editatu"
+#: ../../standalone/drakconnect_.c:216
+msgid "Configure Internet Access..."
+msgstr "Konfiguratu Interneterako sarbidea..."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "sinplea"
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+msgid "LAN configuration"
+msgstr "Sare lokalaren konfigurazioa (LAN)"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "Garbitu dena"
+#: ../../standalone/drakconnect_.c:228
+msgid "Driver"
+msgstr "Kontrolatzailea"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No test pages"
-msgstr "Proba-orririk ez"
+#: ../../standalone/drakconnect_.c:228
+msgid "Interface"
+msgstr "Interfazea"
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falkland uharteak (Malvinak)"
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
+msgstr "Protokoloa"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "%s moldagailua: %s"
+#: ../../standalone/drakconnect_.c:228
+msgid "State"
+msgstr "Egoera"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Boot disk creation"
-msgstr "Abioko diskete sorrera"
+#: ../../standalone/drakconnect_.c:240
+msgid "Configure Local Area Network..."
+msgstr "Konfiguratu sare lokala..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
-msgstr "Astelehena"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
+msgstr "Egin klik hemen morroia abiarazteko ->"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown model"
-msgstr "Modelo ezezaguna"
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "Morroia..."
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
-msgstr ""
-"baietz ezarrita, egiaztatu edozeinentzako idazgarriak diren fitxategiak/"
-"direktorioak."
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
+msgstr "Aplikatu"
-#: ../../help.pm:1
-#, c-format
-msgid "authentication"
-msgstr "Autentifikazioa"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Connected"
+msgstr "Konektatuta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now"
-msgstr "Egin babeskopia orain"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Not connected"
+msgstr "Konektatu gabe"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/_Fitxategia"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
+msgstr "Konektatu..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Inprimagailua Star Office/OpenOffice.org/GIMP-tik kentzen"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
+msgstr "Deskonektatu..."
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:400
msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Abiarazi Linux-nukleoen 2.2 serieko pakete-iragazketa, zure \n"
-"makina sareko erasoetatik babesteko suebaki bat ezartzeko."
+"Kontuz, beste Internet konexio bat detektatu da, agian zure sarea erabiltzen "
+"ariko da"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Editable"
-msgstr "Editagarria"
+#: ../../standalone/drakconnect_.c:427
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Ez duzu interfaze konfiguraturik.\n"
+"Konfigura itzazu lehendabizi, 'Konfiguratu'n klik eginda"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
-msgstr "Zein dhcp bezero erabili nahi duzu? (lehenetsia dhcp-client da)"
+#: ../../standalone/drakconnect_.c:449
+msgid "LAN Configuration"
+msgstr "Sare lokalaren konfigurazioa (LAN)"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr "Tamila (ISCII-diseinua)"
+msgid "Adapter %s: %s"
+msgstr "%s moldagailua: %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
-msgstr "Mayotte"
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
+msgstr "Abioko protokoloa"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
-msgstr ""
-"Ezarri maskor komandoen historia neurria. -1 balioak mugagabea adierazten du."
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
+msgstr "Abioan abiaraztekoa"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d KB\n"
-msgstr "%d KB\n"
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
+msgstr "DHCP bezeroa"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Auto-instalazioko disketea sortzen..."
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "activate now"
+msgstr "aktibatu orain"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for scanners ..."
-msgstr "Eskanerren bila ..."
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "deactivate now"
+msgstr "desaktibatu orain"
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
-msgstr "Errusia"
+#: ../../standalone/drakconnect_.c:499
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Interfaze hau ez dago konfiguratuta.\n"
+"Abiarazi konfigurazio-morroia leiho nagusian"
-#: ../../steps.pm:1
-#, c-format
-msgid "Partitioning"
-msgstr "Partizionatzen"
+#: ../../standalone/drakconnect_.c:556
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Ez duzu Interneteko konexiorik.\n"
+"Sortu bat lehendabizi, 'Konfiguratu'n klik eginda"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
-msgstr "ethernet txartela(k) detektatuta"
+#: ../../standalone/drakconnect_.c:580
+msgid "Internet connection configuration"
+msgstr "Interneteko konexioaren konfigurazioa"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
-msgstr "Syslog"
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet Connection Configuration"
+msgstr "Interneteko konexioaren konfigurazioa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create catalog!"
-msgstr "Ezin da katalogoa sortu!"
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+msgid "Connection type: "
+msgstr "Konexio-mota: "
-#: ../advertising/11-mnf.pl:1
-#, 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."
-msgstr ""
-"Osatu zure segurtasun ezarpena errendimendu handiko osagaiak bateratu eta "
-"erabiltzen oso erraza den software honekin. Besteen artean suhesia, "
-"alegiazko sare pribatuaren (VPN) zerbitzari eta bezeroa, intrusio detekzio "
-"sistema eta trafiko kudeatzailea ditu."
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
+msgstr "Parametroak"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
-msgstr "Ez dago nahikoa leku libre auto-esleitzeko"
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Atebidea"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "Ezarri root-aren pasahitza"
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
+msgstr "Ethernet txartela"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable IP spoofing protection"
-msgstr "Gaitu IP iruzurren aurkako babesa"
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
+msgstr "DHCP bezeroa"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
-msgstr ""
-"Ez dago zure soinu txartelarentzako (%s) gidari askerik, baino \"%s\"-n "
-"gidari propietario bat dago."
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group :"
-msgstr "Taldea :"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Module name"
+msgstr "Modulu-izena"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"%s partizioa tamainaz aldatu ondoren, partizioko datu guztiak galdu egingo "
-"dira"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Size"
+msgstr "Tamaina"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Interneteko konexioaren konfigurazioa"
+#: ../../standalone/drakfloppy_.c:45
+msgid "drakfloppy"
+msgstr "drakfloppy"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
-msgstr ""
-"Erantsi izena msec-ek pasahitzen adin erabilpenari egiten dion salbuespen "
-"bezala."
+#: ../../standalone/drakfloppy_.c:63
+msgid "boot disk creation"
+msgstr "abioko disketea sortu"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "USB"
-msgstr "USB"
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr "lehenetsia"
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakfloppy_.c:87
#, c-format
-msgid "Scanning for TV channels"
-msgstr "TB kanalak bilatzen"
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy-ren errorea: %s"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
-msgstr "Kernela:"
+#: ../../standalone/drakfloppy_.c:98
+msgid "kernel version"
+msgstr "nukleo-bertsioa"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_About..."
-msgstr "/_Honi buruz..."
+#: ../../standalone/drakfloppy_.c:104
+msgid "General"
+msgstr "Orokorra"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
-msgstr "Bengaliarra"
+#: ../../standalone/drakfloppy_.c:109
+msgid "Expert Area"
+msgstr "Aditu area"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
-msgstr "Hobespena: "
+#: ../../standalone/drakfloppy_.c:112
+msgid "mkinitrd optional arguments"
+msgstr "aukerako mkinitrd argumentuak"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Zerbitzuak: %d aktibatuta / %d erregistratuta"
+#: ../../standalone/drakfloppy_.c:113
+msgid "Add a module"
+msgstr "Gehitu modulua"
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "Sortu abioko disko bat"
+#: ../../standalone/drakfloppy_.c:133
+msgid "force"
+msgstr "behartu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "Salomon uharteak"
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
+msgstr "beharrezkoa bada"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Mesedez frogatu zure sagua:"
+#: ../../standalone/drakfloppy_.c:135
+msgid "omit scsi modules"
+msgstr "jaramonik ez scsi moduluei"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(%s modulua)"
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
+msgstr "jaramonik ez raid moduluei"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
-msgstr "Lantaldea"
+#: ../../standalone/drakfloppy_.c:172
+msgid "Remove a module"
+msgstr "Kendu modulua"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Inprimagailuaren ostalari-izena edo IP"
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
+msgstr "Irteera"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "down"
-msgstr "behera"
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
+msgstr "Sortu disketea"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "Host Path or Module"
-msgstr "Ostalari Bide edo Modulua"
+msgid "Be sure a media is present for the device %s"
+msgstr "Egiaztatu %s gailuak euskarria baduela"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakfloppy_.c:341
#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
-"Inprimagailu-izenak letrak, zenbakiak eta azpimarra soilik eduki behar ditu"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Show current interface configuration"
-msgstr "Erakutsi uneko interfaze-konfigurazioa"
+"Ez dago euskarririk edo idazketarako babestuta dago %s gailuan.\n"
+"Sartu bat mesedez."
-#: ../../standalone/printerdrake:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "Add Printer"
-msgstr "Inprimagailua Erantsi"
+msgid "Unable to fork: %s"
+msgstr "Ezin da bikoiztu: %s"
-#: ../../security/help.pm:1
+#: ../../standalone/drakfloppy_.c:349
#, 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."
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
msgstr ""
-"Argumentuak zehazten du bezeroek X zerbitzariari saretik 6000 tcp\n"
-"portuan konektatzeko baimenik duten ala ez."
+"Ezin da mkbootdisk behar bezala itxi: \n"
+" %s \n"
+" %s"
-#: ../../help.pm:1
-#, c-format
-msgid "Development"
-msgstr "Garapena"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
+msgstr "Bilatu instalatutako letra-tipoak"
-#: ../../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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Done"
-msgstr "Eginda"
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
+msgstr "Desautatu instalatutako letra-tipoak"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Web Server"
-msgstr "Web Zerbitzaria"
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
+msgstr "analizatu letra-tipo guztiak"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "Txile"
+#: ../../standalone/drakfont_.c:242
+msgid "no fonts found"
+msgstr "ez da letra-tiporik aurkitu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tEz sartu sistema-fitxategiak\n"
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+msgid "done"
+msgstr "eginda"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Lexmark-en Inkjet inprimagailu-kontrolatzaileek inprimagailu lokalak soilik "
-"onartzen dituzte, ez urruneko makinetako inprimagailuak edo inprimaketa-"
-"zerbitzariak. Konektatu zure inprimagailua ataka lokal batera edo konfigura "
-"ezazu konektatuta dagoen makinan."
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
+msgstr "ezin izan da letra-tiporik aurkitu muntatutako partizioetan"
-#: ../../printer/printerdrake.pm:1
-#, 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!"
-msgstr ""
-"Zure funtzio-anitzeko gailua automatikoki konfiguratu zen eskaneatu ahal "
-"izateko. Orain \"scanimage\"rekin eskanea dezakezu (\"scanimage -d hp:%s\" "
-"eskanerra zehazteko, bat baino gehiago badituzu) komando-lerrotik edo "
-"\"xscanimage\" edo \"xsane\" interfaze grafikoekin. GIMP erabiltzen baduzu, "
-"\"File\"/\"Acquire\" menuko puntu egokiaren bidez ere eskanea dezakezu. "
-"Informazio gehiago nahi baduzu, deitu \"man scanimage\" komando-lerroan.\n"
-"\n"
-"Ez erabili \"scannerdrake\" gailu honekin!"
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
+msgstr "Hautatu berriro letra-tipo egokiak"
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "(%s jadanik gehituta)"
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
+msgstr "ezin izan da letra-tiporik aurkitu.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation in progress"
-msgstr "Abioko-kargatzailearen instalazioa martxan"
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
+msgstr "Bilatu letra-tipoak instalatutakoen zerrendan"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
-msgstr ", %s komandoaren bidez"
+#: ../../standalone/drakfont_.c:359
+msgid "Fonts copy"
+msgstr "Letra-tipoen kopia"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt eta Maius teklak batera"
+#: ../../standalone/drakfont_.c:363
+msgid "True Type fonts installation"
+msgstr "True Type letra-tipoen instalazioa"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
-msgstr "Banderak"
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
+msgstr "itxaron... ttmkfdir egin bitartean..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Users"
-msgstr "Gehitu/Ezabatu erabiltzaileak"
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
+msgstr "True Type instalazioa eginda"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Ostalari/sare IP helbidea falta da."
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
+msgstr "Letra-tipoen bihurketa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
-msgstr "astero"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
+msgstr "type1inst eraikitzen"
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "Ezarpenak"
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
+msgstr "Ghostscript erreferentzia"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "Sartutako ostalari/sare IP ez da zuzena.\n"
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
+msgstr "ttf letra-tipoen bihurketa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "Sortu/Transferitu SSH-rentzako babes gakoak"
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
+msgstr "pfm letra-tipoen bihurketa"
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr "Hemen dago eskuragarri dauden herrialdeen zerrenda osoa"
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
+msgstr "Ezabatu aldi baterako fitxategiak"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Proba-orri alternatiboa (A4)"
+#: ../../standalone/drakfont_.c:459
+msgid "Restart XFS"
+msgstr "Berrabiarazi XFS"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
+msgstr "Ezabatu letra-tipoen fitxategiak"
+
+#: ../../standalone/drakfont_.c:528
+msgid "xfs restart"
+msgstr "xfs berrabiarazi"
+
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
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."
+"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 using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
msgstr ""
-"Beheko zerrendako CD guztiak badituzu, sakatu Ados.\n"
-"CD horietako bat ere ez baduzu, sakatu Utzi.\n"
-"CDetako batzuk soilik falta badituzu, desauta itzazu, eta sakatu Ados."
+"Letra-tipoak instalatu aurretik, ziurtatu sisteman erabili eta instalatzeko "
+"baimena duzula.\n"
+"\n"
+"-Letra-tipoak instalatzeko ohiko era erabil dezakezu. Oso gutxitan, akastun "
+"letra-tipoek zure X Zerbitzaria blokea dezakete."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
-msgstr "Itxaron"
+#: ../../standalone/drakfont_.c:621
+msgid "Fonts Importation"
+msgstr "Letra-tipoen inportazioa"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
+msgstr "Hartu Windows letra-tipoak"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup user files"
-msgstr "Erabiltzaile-fitxategien babeskopia"
+#: ../../standalone/drakfont_.c:658
+msgid "Uninstall Fonts"
+msgstr "Desinstalatu letra-tipoak"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "New"
-msgstr "Berria"
+#: ../../standalone/drakfont_.c:669
+msgid "Advanced Options"
+msgstr "Aukera aurreratuak"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, 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"
+#: ../../standalone/drakfont_.c:677
+msgid "Font List"
+msgstr "Letra-tipoen zerrenda"
+
+#: ../../standalone/drakfont_.c:737
+#, fuzzy
+msgid ""
"\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"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@mandrakesoft.com\n"
"\n"
-"One caveat -- do not make the password too long or complicated because you\n"
-"must be able to remember it!\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"
-"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"
+" 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"
-"If you wish access to this computer to be controlled by an authentication\n"
-"server, click the \"%s\" button.\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"
"\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 ""
-"Hau da zure GNU/Linux sistemaren segurtasunerako erabaki une "
-"garrantzitsuena:\n"
-"\"root\"-aren pasahitza sartu behar duzu. \"Root\" sistemaren "
-"administratzailea\n"
-"da eta eguneraketak egiteko baimena duen bakarra da, erabiltzaileak "
-"erantsi,\n"
-"aldatu sistemaren gainontzeko ezarpenak, eta abar. Laburrean, \"root\"-ek\n"
-"dena egin dezake! Horregatik aukeratu behar duzu asmatzen zaila den\n"
-"pasahitza - DrakX-ek esango dizu hautatzen duzun pasahitza errezegia den.\n"
-"Ikusi dezakezunez, ez zaude pasahitza sartzea behartuta, baino biziki\n"
-"gomendatzen dizugu pasahitza jarri dezazun. GNU/Linux beste sistemak\n"
-"bezain ahula da administratzailearen hanka sartzeetara. \"root\"-ek muga\n"
-"guztiak gainditu ditzake eta nahi gabe partizioetako edukin guztia ezabatu\n"
-"partizioetan ganora gabe ibilita, horregatik garrantzitsua da \"root\" "
-"bilakatzea\n"
-"zaila izan dadin.\n"
-"\n"
-"Pasahitza karaktere alfazenbakizkoen nahasketa izan beharko litzateke eta\n"
-"8 karaktereetako luzerakoa gutxienez. Ez idatzi sekula \"root\"-aren "
-"pasahitza\n"
-"-- zure sistemaren segurtasuna koloka larrian jartzen du.\n"
-"\n"
-"Gomendio bat -- ez egin pasahitza luzeegia edo zailegia, gogoratzeko gai\n"
-"izan behar zara!\n"
-"\n"
-"Pasahitza ez da pantailan ikusiko zuk idatzi ahala. Itsuan idazteak ekar\n"
-"ditzakeen akatsak ekiditeko pasahitza birritan sartu beharko duzu. "
-"Gertatzen\n"
-"bada pasahitz okerra birritan sartzen duzula, pasahitz ``oker'' hori izango "
-"da\n"
-"lehenengo aldiz konektatzeko erabili beharko duzuna.\n"
-"\n"
-"Konputagailu honen sarrera autentifikazio zerbitzari batek kontrolatzea "
-"nahi\n"
-"baduzu, klikatu \"%s\" botoia.\n"
-"\n"
-"Zure sareak LDAP, NIS, edo PDC Windows Domeinu autentifakazio zerbitzuak\n"
-"erabiltzen baditu, hautatu \"%s\"-rentzako egokia dena. Ez badakizu zein "
-"erabili,\n"
-"zure sare administratzaileari galdetu beharko zenioke.\n"
-"\n"
-"Pasahitzak gogoratzen arazoak badauzkazu, zure konputagailua sekula\n"
-"Internetera konektatuko ez bada edo konputagailua erabiltzen duten\n"
-"guztiengan erabateko konfidantza badaukazu, \"%s\" edukitzea hautatu "
-"dezakezu."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
-msgstr "Izen erresoluzio iruzurren aurkako babesa"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, 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."
msgstr ""
-"Puntu honetan, DrakX-ek makina honentzako nahi duzun segurtasun maila\n"
-"ezartzen utziko dizu. Arau nagusi bezala, segurtasun maila altuagoa ezarri\n"
-"behar da makinak datu garrantzitsuak gordeko baditu, edo Interneten\n"
-"agerian egongo bada. Lortzen den segurtasun maila handiagoa, erabilera\n"
-"erreztasun galerarekin ordaintzen da.\n"
+" Programa hau software librea da; birbana eta/edo alda dezakezu\n"
+" Software Foundation-ek argitaratutako GNU Lizentzia Publiko Orokorraren\n"
+" 2. bertsioan, edo (nahiago baduzu) beste berriago batean, jasotako\n"
+" baldintzak betez gero.\n"
"\n"
-"Ez badakizu zer aukeratu, utzi aukera lehenetsia."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "Disketetik kargatu"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Ondorengo inprimagailua auto-detektatu egin da."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Uses command %s"
-msgstr "%s komandoa erabili"
+" Programa hau erabilgarria izango delakoan banatzen da, baina\n"
+" INOLAKO BERMERIK GABE; era berean, ez da bermatzen beraren\n"
+" EGOKITASUNA MERKATURATZEKO edo HELBURU PARTIKULARRETARAKO ERABILTZEKO.\n"
+" Argibide gehiago nahi izanez gero, ikus GNU Lizentzia Publiko Orokorra.\n"
+"\n"
+" Programa honekin batera GNU Lizentzia Publiko Orokorraren kopia bat\n"
+" jasoko zenuen; hala ez bada, idatzi hona: Free Software\n"
+" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
+
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:862
+msgid "Choose the applications that will support the fonts:"
+msgstr "Hautatu letra-tipoak onartuko dituzten aplikazioak :"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
-msgstr "Abiapen Disketea"
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
+msgstr "Ghostscript"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "norvegiarra"
+#: ../../standalone/drakfont_.c:877
+msgid "StarOffice"
+msgstr "StarOffice"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for new scanners ..."
-msgstr "Bilatu eskaner berrien bila ..."
+#: ../../standalone/drakfont_.c:884
+msgid "Abiword"
+msgstr "Abiword"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Apache World Wide Web Zerbitzaria"
+#: ../../standalone/drakfont_.c:891
+msgid "Generic Printers"
+msgstr "Inprimagailu generikoak"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "cpu-aren hurratsa (azpi-eredu (belaunaldi) zenbakia)"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
+msgstr ""
+"Hautatu letra-tipoen fitxategia edo direktorioa eta egin klik 'Gehitu'n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "select path to restore (instead of /)"
-msgstr "hautatu leheneratzeko bidea (/ ordez)"
+#: ../../standalone/drakfont_.c:1005
+msgid "Install List"
+msgstr "Instalatu zerrenda"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Configure bootsplash picture"
-msgstr "Abiapen-irudia konfiguratu"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
+msgstr "egin klik hemen, ziur bazaude."
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr "Georgia"
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
+msgstr "egin klik hemen, ziur ez bazaude."
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "Txina"
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
+msgstr "Desautatutako guztiak"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr " (Ziurtatu zure inprimagailu guztiak lotuta eta piztuta daudela).\n"
+#: ../../standalone/drakfont_.c:1116
+msgid "Selected All"
+msgstr "Hautatutako guztiak"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "Instalatutako inprimagailuen datuak irakurtzen..."
+#: ../../standalone/drakfont_.c:1120
+msgid "Remove List"
+msgstr "Kendu zerrenda"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
-msgstr " Ezabatu Orain "
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+msgid "Initials tests"
+msgstr "Hasierako probak"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "zerbitzaria"
+#: ../../standalone/drakfont_.c:1145
+msgid "Copy fonts on your system"
+msgstr "Kopiatu zure sistemako letra-tipoak"
-#: ../../install_any.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Sartu FAT formatuko diskete bat %s unitatean"
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
+msgstr "Instalatu eta bihurtu letra-tipoak"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "baiezkoak esan nahi du prozesatzaileak koprozetzaile aritmetikoa duela"
+#: ../../standalone/drakfont_.c:1153
+msgid "Post Install"
+msgstr "Posta-instalazioa"
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Itxaron... Konfigurazioa aplikatzen"
+#: ../../standalone/drakfont_.c:1178
+msgid "Remove fonts on your system"
+msgstr "Kendu zure sistemako letra-tipoak"
-#. -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
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Ongi etorri GRUB sistema eragilearen aukeratzailera!"
+#: ../../standalone/drakfont_.c:1182
+msgid "Post Uninstall"
+msgstr "Posta-desinstalazioa"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "Grub"
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
+msgstr "Interneteko konexioa konpartitzea"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
-msgstr "SCSI kontrolatzaileak"
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Barkatu, 2.4 kernelak onartzen ditugu soilik."
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr "\"%s\" LPD zerbitzarian, \"%s\" inprimagailua"
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Interneteko konexioa konpartitzea gaituta dago orain"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Saio kudeatzailea hautatzen"
+#: ../../standalone/drakgw_.c:126
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+"Interneteko konexioa konpartitzeko konfigurazioa eginda dago.\n"
+"Gaituta dago orain.\n"
+"\n"
+"Zer egin nahi duzu?"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Zeroconf Ostalari-izena"
+#: ../../standalone/drakgw_.c:130
+msgid "disable"
+msgstr "desgaitu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
-msgstr "setup/crontab sarrera pertsonalizatua:"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
+msgstr "itxi"
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP helbideak 1.2.3.4 formatua izan behar du"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "reconfigure"
+msgstr "birkonfiguratu"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Konfiguratu CUPS inprimaketa sistema"
+#: ../../standalone/drakgw_.c:133
+msgid "Disabling servers..."
+msgstr "Zerbitzariak desgaitzen..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "Ekuador"
+#: ../../standalone/drakgw_.c:142
+msgid "Internet connection sharing is now disabled."
+msgstr "Interneteko konexioa konpartitzea desgaituta dago orain."
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Add an item"
-msgstr "Gehitu elementu bat"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Interneteko konexioa konpartitzea desgaituta dago orain"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
+#: ../../standalone/drakgw_.c:150
+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 ""
-"Makina honetako inprimagailuak beste konputailuentzako eskuragarri daude"
+"Interneteko konexioa konpartitzeko konfigurazioa eginda dago.\n"
+"Desgaituta dago orain.\n"
+"\n"
+"Zer egin nahi duzu?"
-#: ../../lang.pm:1
-#, c-format
-msgid "China (Hong Kong)"
-msgstr "Txina (Hong Kong)"
+#: ../../standalone/drakgw_.c:154
+msgid "enable"
+msgstr "gaitu"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Ezin da aurkitu `%s' imajina-fitxategia, eta beharrezkoa da."
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
+msgstr "Zerbitzariak gaitzen..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"Ez da soinu-txartelik detektatu. Instalazioa egin ondoren, saiatu \"harddrake"
-"\"rekin "
+#: ../../standalone/drakgw_.c:166
+msgid "Internet connection sharing is now enabled."
+msgstr "Interneteko konexioa konpartitzea gaituta dago orain."
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:183
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"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 ""
-"Portu onartezina: %s.\n"
-"Formatu egokiak \"portua/tcp\" edo \"portu/udp\" dira,\n"
-"non portua 1 eta 65535 artean dagoen."
+"Zure konputagailua Interneteko konexioa banatu dezan konfiguratzera zoaz.\n"
+"Eginbide horrekin, zure bertoko sareko konputagailuek zure konputagailuaren "
+"Internet konexioa erabili ahal izango dute.\n"
+"\n"
+"Zure Sare/Internet sarbidea drakconnect erabiliz konfiguratu duzula\n"
+"ziurtatu aurrera egin aurretik.\n"
+"\n"
+"Adi: Sare-moldagailu dedikatu bat behar duzu Bertako Eremuko Sare (LAN) bat "
+"konfiguratzeko."
-#: ../../any.pm:1
+#: ../../standalone/drakgw_.c:211
#, c-format
-msgid "Shell"
-msgstr "Shell"
+msgid "Interface %s (using module %s)"
+msgstr "%s interfazea (%s modulua erabiliz)"
-#: ../../lang.pm:1
+#: ../../standalone/drakgw_.c:212
#, c-format
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome eta Principe"
+msgid "Interface %s"
+msgstr "%s interfazea"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr "Ez dago sare-moldagailurik zure sisteman!"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
-msgstr "Ezin sartu %s erabiltzaile-izena erabilita (pasahitz okerra?)"
+#: ../../standalone/drakgw_.c:221
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"Zure sisteman ez da ethernet sare-moldagailurik detektatu. Exekutatu "
+"hardwarea konfiguratzeko tresna."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "azerbaijandarra (latinoa)"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr "Sare-interfazea"
-#: ../../standalone/drakbug:1
+#: ../../standalone/drakgw_.c:228
#, c-format
-msgid "Package not installed"
-msgstr "Pakete instalatu gabea"
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"%s\n"
+"\n"
+"I am about to setup your Local Area Network with that adapter."
+msgstr ""
+"Sare-moldagailu konfiguratu bakarra dago zure sisteman:\n"
+"\n"
+"%s\n"
+"\n"
+"Zure sare lokala moldagailu horrekin konfiguratzera noa."
-#: ../../lang.pm:1
-#, c-format
-msgid "American Samoa"
-msgstr "Samoa amerikarra"
+#: ../../standalone/drakgw_.c:235
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr "Aukeratu zein sare-moldagailu konektatuko den zure sare lokalarekin."
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Become a MandrakeExpert"
-msgstr "Bilakatu zaitez MandrakeExpert"
+#: ../../standalone/drakgw_.c:261
+msgid "Network interface already configured"
+msgstr "Sareko interfazea konfiguratuta dago"
-#: ../../standalone/drakconnect:1
+#: ../../standalone/drakgw_.c:262
#, c-format
-msgid "Protocol"
-msgstr "Protokoloa"
+msgid ""
+"Warning, the network adapter (%s) is already configured.\n"
+"\n"
+"Do you want an automatic re-configuration?\n"
+"\n"
+"You can do it manually but you need to know what you're doing."
+msgstr ""
+"Kontuz, sare-moldagailua (%s) jadanik konfiguratuta dago.\n"
+"\n"
+"Automatikoki birkonfiguratu nahi duzu?\n"
+"\n"
+"Eskuz egin dezakezu, baldin eta zertan zabiltzan badakizu."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Kopiatu zure sistemako letra-tipoak"
+#: ../../standalone/drakgw_.c:267
+msgid "Automatic reconfiguration"
+msgstr "Birkonfigurazio automatikoa"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
-msgstr "Harddrake laguntza"
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomipak"
+#: ../../standalone/drakgw_.c:268
+msgid "Show current interface configuration"
+msgstr "Erakutsi uneko interfaze-konfigurazioa"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Mandrake Terminal Zerbitzariaren Ezarpena"
+#: ../../standalone/drakgw_.c:269
+#, fuzzy
+msgid "Current interface configuration"
+msgstr "Erakutsi uneko interfaze-konfigurazioa"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:270
#, c-format
msgid ""
+"Current configuration of `%s':\n"
"\n"
-" DrakBackup Report Details\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
+msgstr ""
+"`%s' - uneko konfigurazioa:\n"
+"\n"
+"Sarea: %s\n"
+"IP helbidea: %s\n"
+"IP atribuzioa: %s\n"
+"Kontrolatzailea: %s"
+
+#: ../../standalone/drakgw_.c:283
+#, fuzzy
+msgid ""
+"I can keep your current configuration and assume you already set up a DHCP "
+"server; in that case please verify I correctly read the Network that you use "
+"for your local network; I will not reconfigure it and I will not touch your "
+"DHCP server configuration.\n"
"\n"
+"The default DNS entry is the Caching Nameserver configured on the firewall. "
+"You can replace that with your ISP DNS IP, for example.\n"
+"\t\t \n"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
"\n"
msgstr ""
+"Uneko konfigurazioa gorde eta DHCP zerbitzari bat konfiguratuta duzula jo "
+"dezaket; hala bada, ziurtatu ondo irakurri dudala zure bertoko sare bezala "
+"erabiltzen duzun sarea; ez dut birkonfiguratuko ez eta zure DHCP "
+"zerbitzariaren konfigurazioa ukituko.\n"
"\n"
-" DrakBackup-en berri-ematearen xehetasunak\n"
+"Jatorrian DNS sarrera suhesian konfiguratuta dagoen IzenZerbitzari "
+"Katxeatzailea da. Hura ordezkatu dezakezu zure ISP-aren DNS IP-arekin "
+"adibidez.\n"
"\n"
+"Bestela, zure interfazea birkonfiguratu dezaket eta zure DHCP zerbitzaria "
+"zuretzako (bir)konfiguratu.\n"
"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
-msgstr "Leheneratu babeskopia guztiak."
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
-msgstr " #%s ataka paraleloan"
+#: ../../standalone/drakgw_.c:290
+msgid "Local Network adress"
+msgstr "Bertako Sare helbidea"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
-msgstr ""
-"Ezarri pasahitzaren luzera minimoa eta digitoen kopuru minimoa eta hizki "
-"larrien kopuru minimoa."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr "baietz ezarrita, egiaztatu irekitako portuak."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Euskarria ezabatzeak denbora tarte bat har dezake."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "Ezin duzu pakete hau hautatu/desautatu"
-
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "Kontuz"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakgw_.c:294
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"
-"- Other Files:\n"
msgstr ""
+"DHCP Zerbitzari Konfigurazioa.\n"
+"\n"
+"Hemen DHCP zerbitzari konfiguraziorako aukera desberdinak hautatu "
+"ditzakezu.\n"
+"Aukera baten esanahia ulertzen ez baduzu, utzi dagoen bezela.\n"
"\n"
-"- Bestelako fitxategiak:\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name"
-msgstr "Urruneko ostalari-izena"
+#: ../../standalone/drakgw_.c:300
+msgid "(This) DHCP Server IP"
+msgstr "DHCP zerbitzariaren IPa"
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr "X programen atzipena"
+#: ../../standalone/drakgw_.c:301
+msgid "The DNS Server IP"
+msgstr "DNS Zerbitzariaren IP"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "Windows partizioaren neurria kalkulatzen"
+#: ../../standalone/drakgw_.c:302
+msgid "The internal domain name"
+msgstr "Barneko domeinu izena"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Berritu"
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
+msgstr "DHCP-ren eremu hasiera"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Italy"
-msgstr "Italia"
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
+msgstr "DHCP-ren eremu amaiera"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
-msgstr "Kaiman uharteak"
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
+msgstr "Jatorrizko alokatze denbora (segundutan)"
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "errorea %s desmuntatzean: %s"
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
+msgstr "Alokatze denbora handiena (segundutan)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "Inprimagailuaren izena"
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
+msgstr "Birkonfiguratu interfazea eta DHCP zerbitzaria"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
-msgstr "desgaitu"
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
+msgstr "Sare lokalak ez du `.0' amaieran; irteten. "
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid "Do it!"
-msgstr "Egin!"
+msgid "Potential LAN address conflict found in current config of %s!\n"
+msgstr ""
+"LAN helbide-gatazka potentziala aurkitu da %s(r)en uneko konfigurazioan!\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
-msgstr "%s-k ez du erantzuten"
+#: ../../standalone/drakgw_.c:335
+msgid "Configuring..."
+msgstr "Konfiguratzen..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select model manually"
-msgstr "Hautatu modeloa eskuz"
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+"Script-ak konfiguratzen, softwarea instalatzen, zerbitzariak abiarazten..."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakgw_.c:372
#, c-format
-msgid "Format"
-msgstr "Formateatu"
+msgid "Problems installing package %s"
+msgstr "Arazoa %s paketea instalatzean"
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:505
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'"
+"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 ""
-"adsl-rekin konektatzeko modurik ohikoena pppoe da.\n"
-"Konexio batzuek pptp erabiltzen dute, bakan batzuek dhcp.\n"
-"Ez badakizu, aukeratu 'erabili pppoe'"
+"Dena konfiguratu da.\n"
+"Orain Interneteko konexioa konparti dezakezu sare lokaleko beste ordenagailu "
+"batzuekin, sare-konfigurazio automatikoa (DHCP) erabiliz."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
-msgstr "Hainbat"
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
+msgstr "Konfigurazioa eginda dago, baina orain desgaituta dago."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
-msgstr "Zip"
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
+msgstr "Konfigurazioa eginda dago, eta orain gaituta dago."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
-msgstr "Ezkerreko Alt tekla"
+#: ../../standalone/drakgw_.c:525
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Interneteko konexioa konpartitzea ez da inoiz konfiguratu."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Load setting"
-msgstr "Ezarpenak zamatu"
+#: ../../standalone/drakgw_.c:531
+msgid "Internet connection sharing configuration"
+msgstr "Interneteko konexioa konpartitzeko konfigurazioa"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:539
#, c-format
msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
"\n"
+"%s\n"
"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
+"Click on Configure to launch the setup wizard."
msgstr ""
+"Ongi etorri Interneteko konexioa konpartitzeko utilitatera!\n"
"\n"
+"%s\n"
"\n"
-"Printerdrake-k ezin du zehaztu zure %s inprimagailuaren eredua. Mesedez "
-"hautatu eredu zuzena zerrendatik."
+"Egin klik 'Konfiguratu'n instalazio-morroia abiarazteko."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Ezarri hautatutako inprimagailua lehenetsi gisa"
+#: ../../standalone/drakperm_.c:36
+msgid "group"
+msgstr "taldea"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:36
+msgid "path"
+msgstr "bidea"
+
+#: ../../standalone/drakperm_.c:36
+msgid "permissions"
+msgstr "baimenak"
+
+#: ../../standalone/drakperm_.c:36
+msgid "user"
+msgstr "Erabiltzailea"
+
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
+msgstr "Gora"
+
+#: ../../standalone/drakperm_.c:44
+msgid "delete"
+msgstr "ezabatu"
+
+#: ../../standalone/drakperm_.c:45
+msgid "edit"
+msgstr "editatu"
+
+#: ../../standalone/drakperm_.c:46
+msgid "Down"
+msgstr "Bera"
+
+#: ../../standalone/drakperm_.c:47
+msgid "add a rule"
+msgstr "Arau bat gehitu"
+
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
+msgstr "hautatu ikusi/editatzeko fitxategia"
+
+#: ../../standalone/drakperm_.c:51
msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+"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 ""
-"\n"
-"Markatu transferitu nahi dituzun inprimagailuak eta sakatu\n"
-"\"Transferitu\"."
+"Drakperm fitxategien ezaugarriak aldatzeko erabiltzen da, baimenak, jabeak, "
+"eta taldeak, hori msec bitartez egiten du.\n"
+"Jatorrizko arauak gainidatziko dituzte zure arau propioak editatu ditzakezu."
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
+#: ../../standalone/drakperm_.c:56
+msgid "Add a new rule at the end"
+msgstr "Gehitu arau berri bat amaieran"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
-msgstr "albaniarra"
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
+msgstr "Editatu uneko araua"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "Lituania"
+#: ../../standalone/drakperm_.c:58
+msgid "Up selected rule one level"
+msgstr "Igo hautatutako araua maila bat"
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "Trinkoa"
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
+msgstr "Jaitsi hautatutako araua maila bat"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Detektatutako eredua: %s %s"
+#: ../../standalone/drakperm_.c:60
+msgid "Delete selected rule"
+msgstr "Ezabatu hautatutako araua"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
-msgstr "MandrakeSoft-ek software hoberena aukeratu du zuretzako"
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
+msgstr "arakatu"
-#: ../../any.pm:1
-#, c-format
-msgid "Local files"
-msgstr "Fitxategi lokalak"
+#: ../../standalone/drakperm_.c:231
+msgid "Current user"
+msgstr "Uneko erabiltzailea"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "beharbada"
+#: ../../standalone/drakperm_.c:236
+msgid "Permissions"
+msgstr "Baimenak"
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
-msgstr "Panama"
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
+msgstr "Bidea"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Can't open %s!"
-msgstr "Ezin da %s ireki!"
+#: ../../standalone/drakperm_.c:238
+msgid "Property"
+msgstr "Propietatea"
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
+msgstr "bit-likatsua"
+
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
+msgstr "Set-UID"
+
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
+msgstr "Set-GID"
+
+#: ../../standalone/drakperm_.c:296
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?"
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
msgstr ""
-"Dirudienez zure txartela grafikoak TV-OUT konektorea dauka.\n"
-"Frame-bufferra erabiliz lanegin dezan konfiguratu daiteke.\n"
-"\n"
-"Honetarako txartela grafikoa TBri lotu behar diozu konputagailua abiatu "
-"aurretik.\n"
-"Ondoren hautatu \"TVout\" sarrera abiapen-zamatzailean\n"
-"\n"
-"Ezaugarri hau badaukazu?"
+"Direktorioentzako erabilia:\n"
+" direktorio edo fitxategiaren jabeak bakarrik direktorio honetan ezabatu "
+"dezake"
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "Monitorea"
+#: ../../standalone/drakperm_.c:297
+msgid "Use owner id for execution"
+msgstr "Erabili jabearen id exekuziorako"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:298
+msgid "Use group id for execution"
+msgstr "Erabili taldearen id exekuziorako"
+
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
+msgstr "Markatuta dagoenean, jabea eta taldea ez dira aldatuko"
+
+#: ../../standalone/drakperm_.c:304
+msgid "Path selection"
+msgstr "Bide hautaketa"
+
+#: ../../standalone/drakperm_.c:350
+msgid "user :"
+msgstr "Erabiltzailea :"
+
+#: ../../standalone/drakperm_.c:352
+msgid "group :"
+msgstr "taldea :"
+
+#: ../../standalone/draksound_.c:46
+msgid "No Sound Card detected!"
+msgstr "Ez da Soinu Txartelik aurkitu!"
+
+#: ../../standalone/draksound_.c:47
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"
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Windows-eko pasahitza duen kontu bati inprimaketa ezartzera zoaz. Samba "
-"bezeroaren softwareak daukan egitura akats batek eraginda, pasahitza ageriko "
-"testu bezala jartzen da, Windows zerbitzarira inprimaketa lana bidaltzen "
-"duen Samba bezeroaren komando lerroan. Beraz makina hau erabiltzen duen "
-"edozein erabiltzailek pasahitza pantailan erakutsi dezake \"ps auxwww\" "
-"bezalako komandoak erabiliz.\n"
+"Zure makinan ez da Soinu Txartelik aurkitu. Ziurtatu Linux-ek onartzen duen "
+"Soinu Txartela ondo konektatuta dagoela.\n"
"\n"
-"Aukera hauetako bat erabiltzea gomendatzen dugu (edozein modutara ziurtatu "
-"behar duzu zure bertoko sareko makinek soilik dutela zure Windows "
-"zerbitzarira sarrera, adibidez suhesi baten bitartez):\n"
"\n"
-"Erabili pasahitzik-gabeko kontua zure Windows zerbitzarian, \"GUEST\" kontua "
-"esaterako, edo inprimatzeko sortutako kontu berezia. Ez ezabatu pasahitz "
-"babesa kontu pertsonal bati edo administradore kontuari.\n"
+"Gure hardware datubasea bisitatu dezakezu hemen:\n"
"\n"
-"Ezarri zure Windows zerbitzaria, inprimagailua LPD protokoloarekin "
-"eskuragarri egon dadin. Ezarri gero inprimagailua makina honetan \"%s\" "
-"koneksio motarekin Printdraken.\n"
"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mila kolore (16 bit)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/draksound_.c:54
msgid ""
"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
"\n"
-"- Gorde disko gogorrean, bide-izen honetan: %s\n"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Kendu zure sistemako letra-tipoak"
-
-#: ../../standalone/drakgw:1
-#, 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."
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-"Kontuz, sare-moldagailua (%s) jadanik konfiguratuta dago.\n"
"\n"
-"Automatikoki birkonfiguratu nahi duzu?\n"
"\n"
-"Eskuz egin dezakezu, baldin eta zertan zabiltzan badakizu."
+"\n"
+"Adi: ISA PnP soinu txartela badaukazu, sndconfig programa erabili beharko "
+"duzu. Idatzi \"sndconfig\" kontsola batean."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "X abioan"
+#: ../../standalone/draksplash_.c:21
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr ""
+"ondo lanegin dezan ImageMagick paketea behar da.\n"
+"Klikatu \"Ados\" 'ImageMagick' instalatzeko edo \"Etsi\" irtetzeko"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
-msgstr " adsl "
+#: ../../standalone/draksplash_.c:67
+msgid "first step creation"
+msgstr "Lehenengo urratsaren sorrera"
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Ez dago nahikoa partizio %d RAID mailarako\n"
+#: ../../standalone/draksplash_.c:70
+msgid "final resolution"
+msgstr "azken erresoluzioa"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "diskete unitateak onartzen dituen formatuak"
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+msgid "choose image file"
+msgstr "aukeratu irudi fitxategia"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "Firmwarearen kopiak hutsegin du, %s fitxategia ez da aurkitu"
+#: ../../standalone/draksplash_.c:72
+msgid "Theme name"
+msgstr "Gaiaren izena"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: true"
-msgstr "bertako konfig: egia"
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
+msgstr "Arakatu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
+msgid "Configure bootsplash picture"
+msgstr "Abiapen-irudia konfiguratu"
+
+#: ../../standalone/draksplash_.c:90
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."
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
-"Ondoko inprimagailuak daude konfiguratuta. Ezarpenak aldatzeko, inprimagailu "
-"bat lehenesteko edo informazioa ikusteko, egin klik bikoitza inprimagailu "
-"batean."
+"testu-laukiaren x koordenatua\n"
+"karaktere kopurutan"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connected"
-msgstr "Konektatuta"
+#: ../../standalone/draksplash_.c:91
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr ""
+"testu-laukiaren y koordenatua\n"
+"karaktere kopurutan"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
-msgstr "Mazedoniarra"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
+msgstr "testu zabalera"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "Mali"
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
+msgstr "testu-lauki garaiera"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
-msgstr "Zubiak eta sistema kontrolatzaileak"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
+"aurrerapen-barraren goi eta\n"
+"ezker ertzaren x koordenatua"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "/Fitxategia/_Gorde"
+#: ../../standalone/draksplash_.c:95
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
+"aurrerapen-barraren goi eta\n"
+"ezker ertzaren y koordenatua"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "No details"
-msgstr "Xehetasunik ez"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
+msgstr "aurrerapen-barraren zabalera"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "oso baliagarria"
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
+msgstr "aurrerapen-barraren garaiera"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
+msgstr "aurrerapen-barraren kolorea"
+
+#: ../../standalone/draksplash_.c:113
msgid "Preview"
msgstr "aurreikusi"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Remote Control"
-msgstr "Urruneko Agintea"
+#: ../../standalone/draksplash_.c:115
+msgid "Save theme"
+msgstr "gaia gorde"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select media for backup..."
-msgstr "Hautatu babeskopiaren euskarria..."
+#: ../../standalone/draksplash_.c:116
+msgid "Choose color"
+msgstr "Aukeratu kolorea"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
-msgstr "PostaE okerra"
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
+msgstr "Erakutsi logoa Kontsolan"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 zerbitzaria: %s\n"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
+msgstr "Egin kernel mezua isila jatorrian"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, c-format
-msgid "Allow Thin Clients"
-msgstr "Baimendu Bezero Meheak"
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr "Gai honek ez dauka oraindik abiapen-irudirik %s-n!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgiarra (diseinu \"errusiarra\")"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
+msgstr "Abiapen-irudi gaia gordetzen..."
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_Aukerak"
+#: ../../standalone/draksplash_.c:428
+msgid "ProgressBar color selection"
+msgstr "AurrearpenBarraren kolore aukeraketa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Your printer model"
-msgstr "Zure inprimagailu-modeloa"
+#: ../../standalone/draksplash_.c:449
+msgid "You must choose an image file first!"
+msgstr "Irudi fitxategi bat hautatu behar duzu lehenik!"
+
+#: ../../standalone/draksplash_.c:458
+msgid "Generating preview ..."
+msgstr "Aurreikuspena sortzen ..."
-#: ../../any.pm:1
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "%s Bootsplash (%s) aurreikuspena"
+
+#: ../../standalone/drakxtv_.c:46
msgid ""
+"XawTV isn't installed!\n"
"\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)."
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
+"XawTV ez dago instalatuta!\n"
"\n"
"\n"
-"(KONTUZ! XFS erabiltzen ari zara erroko partizioan,\n"
-"abioko diskoa 1,44 Mb-ko disketean sortzeak huts egingo du\n"
-"seguru asko, XFSk oso kontrolatzaile handia behar duelako)."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"TB txartela badaukazu baino DrakX-ek ez badudu detektatu (bttv edo saa7134 "
+"modulurik ez\n"
+"\"/etc/modules\" kokapenean) ez eta xawtv instalatu ere, mesedez bidali\n"
+"\"lspcidrake -v -f\"-ek sortzen duen irteera \"install\\@mandrakesoft.com\"\n"
+"helbidera gai bezala \"undetected TV card\" jarrita.\n"
"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
"\n"
-"- Ezabatu disko zurrunetik tar fitxategiak babestu ondoren.\n"
+"XawTV instalatu dezakezu kontsolatik root bezala \"urpmi xawtv\" idatzita."
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
-msgstr ""
-"Ez da CD edo DVD irudirik aurkitu, mesedez kopiatu instalazio programa eta "
-"rpm fitxategiak."
+#: ../../standalone/drakxtv_.c:63
+msgid "Canada (cable)"
+msgstr "Kanada (kablea)"
-#: ../advertising/04-configuration.pl:1
-#, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "Mandrake-ren helburu-anitzerako konfigurazio tresna"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
+msgstr "AEB (bcast)"
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Save"
-msgstr "Gorde"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
+msgstr "AEB (kablea)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
-msgstr "%s-k ez du euskarririk"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
+msgstr "AEB (kablea-hrc)"
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr "Kargatu USB gailuen kontrolatzaileak."
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
+msgstr "Txina (bcast)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Disk"
-msgstr "Diskoa"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
+msgstr "Japonia (bcast)"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Adierazi inprimagailuaren URI bat"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
+msgstr "Japonia (kablea)"
-#: ../advertising/01-thanks.pl:1
-#, 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."
-msgstr ""
-"MandrakeSoft-en arrakastaren funtsa software librearen printzipioa da. Zure "
-"sistema eragile berria mundu osoko Linux komunitatearen elkarlanaren emaitza "
-"da"
+#: ../../standalone/drakxtv_.c:65
+msgid "East Europe"
+msgstr "Europa Ekialdea"
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "Israel"
+#: ../../standalone/drakxtv_.c:65
+msgid "France [SECAM]"
+msgstr "Frantzia [SECAM]"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "Guyana frantsesa"
+#: ../../standalone/drakxtv_.c:65
+msgid "Ireland"
+msgstr "Irlanda"
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "default:LTR"
+#: ../../standalone/drakxtv_.c:65
+msgid "West Europe"
+msgstr "Europa Mendebaldea"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
-msgstr "Komando lerro bat sartu behar da!"
+#: ../../standalone/drakxtv_.c:66
+msgid "Australia"
+msgstr "Australia"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
-msgstr "Hautatu erabiltzailea eskuz"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
+msgstr "Zeelanda Berria"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Transferitu inprimagailu-konfigurazioa"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
+msgstr "Hegoafrika"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Inprimaketa gaitu nahi duzu goian aipatutako inprimagailuetan?\n"
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
+msgstr "Argentina"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of suid root files"
-msgstr "Egiaztatu suid root fitxategien gehikuntza/ezabaketa"
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
+msgstr "Australiako Optus kable TB"
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:102
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."
+"Please,\n"
+"type in your tv norm and country"
msgstr ""
-"Honek W2K PDC batekin lanegin dezan, ziurrenik admin-ek exekutatu beharko du:"
-"C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /add eta "
-"zerbitzaria berrabiatu beharko duzu.\n"
-"Domeinu Admin baten erabiltzaile-izen/pasahitza ere beharko dituzu makina "
-"Windows(TM) domeinura eransteko.\n"
-"Sarekuntza ez bada oraindik gaitu, DrakX saiatuko da domeinura batzen sareko "
-"ezarpen urratsaren ondoren.\n"
-"Ezarpen honek hutsegin eta domeinu autentifikazioa ez badabil, exekutatu "
-"'smbpasswd -j DOMEINUA -U ERABILTZAILEA%%PASAHITZA' zure Windows(TM) "
-"Domeinua, eta Admin Erabiltzaile-izen/Pasahitza erabiliz, sistema "
-"abiapenaren ondoren.\n"
-"'wbinfo -t' komandoak egiaztatuko du zure autentifikazio sekretuak onak "
-"diren."
+"Idatzi\n"
+"zure TB araua eta estatua"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (%s ataka)"
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
+msgstr "TB araua :"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Erabili sareko konexioa babeskopia egiteko"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
+msgstr "Area :"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Kernel version"
-msgstr "Nukleo bertsioa"
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
+msgstr "TB kanalak bilatzen..."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
+msgstr "TB kanalak bilatzen"
+
+#: ../../standalone/drakxtv_.c:120
+msgid "There was an error while scanning for TV channels"
+msgstr "Errore bat izan da TB kateak bilatzerakoan"
+
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
+msgstr "XawTV ez dago instalatuta!"
+
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
+msgstr "Egun ona izan!"
+
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Orain xawtv erabili dezakezu (X Window barruan) !\n"
+
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
+msgstr "Ez da TB txartelik aurkitu!"
+
+#: ../../standalone/drakxtv_.c:148
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"
+"No TV Card has been detected on your machine. Please verify that a Linux-"
+"supported Video/TV Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+"Zure makinan ez da TB txartelik aurkitu. Ziurtatu Linux-ek onartzen duen "
+"Bideo/TB txartela ondo konektatuta dagoela.\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 ""
-"Zure sisteman ze programa instalatu nahi dituzun zehazteko garaia da\n"
-"orain. Milaka pakete daude Mandrake Linux-entzat eskuragarri, eta\n"
-"pakete kudeaketa errazteko paketeak aplikazio berdintsuko taldeetan\n"
-"bildu dira.\n"
+"Gure hardware datubasea bisitatu dezakezu:\n"
"\n"
-"Paketeak makinaren erabilera konkretu bati dagozkion taldeetan antolatu "
-"dira.\n"
-"Mandrake Linux-ek lau instalazio aurremugatu dauzka. Instalazio mota hauek\n"
-"pakete ugarientzako biltoki moduan ikusi ditzakezu. Talde desberdinetako\n"
-"aplikazioak nahastu eta bat etorri daitezen egin dezakezu. Beraz "
-"``Lanestazio''\n"
-"instalazioak ``Garapen'' taldeko aplikazioak instalatuta izan ditzake.\n"
-"\n"
-" * \"%s\": zure makina lanestazio bezala erabiltzeko asmotan bazabiltza\n"
-"hautatu lanestazio taldean dauden aplikazioetako bat edo gehiago.\n"
-"\n"
-" * \"%s\": zure makina programatzeko erabiliko baduzu, hautatutalde "
-"horretatik pakete egokiak.\n"
-"\n"
-" * \"%s\": zure makina zerbitzaria izango bada, hautatu zerbitzu ohikoen\n"
-"artean zeintzu instalatu nahi dituzun zure makinan.\n"
-" * \"%s\": hemen hautatuko duzu zure ingurune grafiko gogokoena.\n"
-"Bat hautatu behar da gutxienez interaze grafiko bat erabili ahal izan\n"
-"nahi baduzu.\n"
-"\n"
-"Saguaren kurtsorea talde izenaren gainetik mugitu ezkero talde horri buruz\n"
-"azalpen testu bat agertuko da. Instalazio erregular bat egiterakoan\n"
-"hautatutako pakete guztiak haututik kentzen badituzu (eguneraketan\n"
-"gertatzen denaren aurka), elkarrizketa bat agertuko da instalazio minimo\n"
-"baterako proposamen desberdinak eginez:\n"
-"\n"
-" * \"%s\": instalatu ibiltzen den idaztegi grafiko bat izateko ahalik eta\n"
-"pakete kopuru txikiena.\n"
-" * \"%s\": instalatu oinarrizko sistema gehi oinarrizko utilitateak eta\n"
-"beraien dokumentazioa.\n"
-" * \"%s\": Linux sistema batek lan egin dezan pakete kopuru minimoa\n"
-"instalatuko du. Instalazio honekin komando lerro interfaze bat izango\n"
-"duzu soilik. Instalazio honen neurri osoa 65 MegaBytekoa\n"
-"da.\n"
-"\n"
-"\"%s\" laukia markatu dezakezu eskaintzen diren paketen ezagutza\n"
-"badaukazu edo instalatuko duzunaren gaineko kontrol osoa nahi\n"
-"baduzu.\n"
"\n"
-"Instalazioa \"%s\" moduan hasi baduzu, talde guztiak haututik kendu\n"
-"ditzakezu pakete berriak instalatu daitezen ekiditeko. Hau lagungarria\n"
-"da sistema konpondu edo eguneratzeko."
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "Onartu erabiltzailea"
+"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
-msgstr "Zerbitzaria"
+#: ../../standalone/harddrake2_.c:17
+msgid "Alternative drivers"
+msgstr "Gidari alternatiboak"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
-msgstr "Ezkerreko Shift tekla"
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
+msgstr "Soinu txartel honentzako gidari alternatiboen zerrenda"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " local network"
-msgstr "Bertako Sarea"
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
+msgstr "Busa"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "Aukera okerra, saiatu berriro\n"
+#: ../../standalone/harddrake2_.c:21
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr "hau da gailua lotzen den bus fisikoa (adib: PCI, USB, ...)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
-msgstr "Syslog txostenak 12. kontsolara"
+#: ../../standalone/harddrake2_.c:22
+msgid "Channel"
+msgstr "Kanalea"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search new servers"
-msgstr "Bilatu zerbitzari berriak"
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
+msgstr "EIDE/SCSI kanalea"
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
-msgstr "Heard eta McDonald uharteak"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
+msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
-msgstr "Ez dago gidari alternatiborik"
+#: ../../standalone/harddrake2_.c:23
+msgid ""
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "Aldatu aditu modura"
+#: ../../standalone/harddrake2_.c:26
+msgid "Bus identification"
+msgstr "Bus identifikazioa"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
-msgstr "(makina honetan)"
+#: ../../standalone/harddrake2_.c:27
+msgid ""
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
+msgstr ""
+"- PCI eta USB gailuak: honek saltzaile, gailu, azpi-saltzaile eta azpi-gailu "
+"PCI/USB id-ak zerrendatzen ditu"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Atariaren helbidea 1.2.3.4 formatuan egon behar luke"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
+msgstr "Busean kokapena"
-#: ../../network/modem.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:30
msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
+"- 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 ""
-"\"%s\" oinarriko winmodem detektatu da, behar duen softwarea instalatu nahi "
-"duzu?"
+"- pci gailuak: txartela honen PCI zirritua, gailua eta funtzioa ematen du\n"
+"- eide gailuak: gailua nagusia edo morroia da\n"
+"- scsi gailuak: scsi busa eta scsi gailu id-ak"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Instalatutako paketeen artean bilatzen..."
+#: ../../standalone/harddrake2_.c:33
+#, fuzzy
+msgid "Cache size"
+msgstr "zatiaren tamaina"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Erabili Babeskopia Diferentziala"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Driver"
-msgstr "Kontrolatzailea"
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
msgstr ""
-"Linuxconf-ek batzuetan hainbat ataza egiten ditu abioan\n"
-"sistemaren konfigurazioa mantentzeko."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVD-R device"
-msgstr "DVDR gailua"
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
+msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Urruneko lpd zerbitzariko inprimagailua"
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, 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."
+#: ../../standalone/harddrake2_.c:36
+#, fuzzy
+msgid "Cpuid level"
+msgstr "Segurtasun-maila"
+
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
msgstr ""
-"Letra-tipoak instalatu aurretik, ziurtatu sisteman erabili eta instalatzeko "
-"baimena duzula.\n"
-"\n"
-"-Letra-tipoak instalatzeko ohiko era erabil dezakezu. Oso gutxitan,letra-"
-"tipo faltsuek zure X Zerbitzaria blokea dezakete."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
+msgstr ""
+
+#: ../../standalone/harddrake2_.c:37
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."
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
msgstr ""
-"Yaboot, NewWorld Macintosh hardwarearentzako abiapen-zamatzailea da eta\n"
-"GNU/Linux, MacOS edo MacOSX abiatzeko erabili daiteke. Normalean MacOS\n"
-"eta MacOSX arazorik gabe detektatu eta instalatzen dira abiapen-"
-"zamatzailearen\n"
-"menuan. Hala ez bada, pantaila honetan sarrera bat erantsi dezakezu eskuz.\n"
-"Kontu izan eta hautatu parametro egokiak.\n"
-"\n"
-"Yaboot-en aukera nagusiak dira:\n"
-"\n"
-" * Hasierako mezua: abiapen gonbitaren aurretik erakusten den testu mezu "
-"sinplea.\n"
-"\n"
-" * Abiapen gailua: GNU/Linux abiatzeko behar den informazioa non kokatu "
-"nahi\n"
-"duzun adierazten du. Orokorrean, informazio hau gordetzeko bootstrap "
-"partizio bat\n"
-"ezartzen da lehenago.\n"
-"\n"
-" * Open firmware atzerapena: LILO-rekin ez bezela, bi atzerapen erabiltzen "
-"dira\n"
-"yaboot-ekin. Lehenengo atzerapena segundutan neurtzen da eta puntu honetan\n"
-"CD, OF abiapena, MacOS edo Linux-en artean aukeratu dezakezu;\n"
-"\n"
-" * Kernel abiapen Itxaronaldia: itxaronaldi hau LILO-ren abiapen "
-"atzerapenaren\n"
-"antzekoa da. Linux hautatu ondoren, atzerapen hau izango duzu, 0,1 "
-"segunduko\n"
-"gehikuntzetan, zure nukleo lehenetsiaren deskribapena hautatua izan baino "
-"lehen.\n"
-"\n"
-" * Gaitu CD abiapena?: aukera hau markatuta ``C'', CD adierazteko, hautatu\n"
-"dezakezu lehenengo abiapen gonbitan.\n"
-"\n"
-" * Gaitu OF abiapena?: aukera hau markatuta ``N'', Open Firmware "
-"adierazteko,\n"
-"hautatu dezakezu lehenengo abiapen gonbitan.\n"
-"\n"
-" * SE lehenetsia: Open Firmware atzerapena gainditzen denean berez zein\n"
-"SE abiatuko den aukeratu dezakezu."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
-msgstr "Asteazkena"
+#: ../../standalone/harddrake2_.c:38
+#, fuzzy
+msgid "This field describes the device"
+msgstr "eremu honek gailua deskribatzen du"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "Alemania"
+#: ../../standalone/harddrake2_.c:39
+msgid "Old device file"
+msgstr "Gailu fitxategi zaharra"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
-msgstr "Austria"
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
+msgstr "dev paketean erabiltzen den gailu estatikoaren izen zaharra"
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "Sagurik gabe"
+#: ../../standalone/harddrake2_.c:41
+msgid "New devfs device"
+msgstr "devfs gailu berria"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "Hautatu zure CD/DVD euskarri neurria (MB)"
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr "kenelaren devfs-k sortutako gailu dinamikoaren izen berria"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check permissions of files in the users' home"
-msgstr "Egiaztatu erabiltzaileen atariko fitxategien baimenak"
+#: ../../standalone/harddrake2_.c:43
+msgid "Module"
+msgstr "Modulua"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr "gailu hori gobernatzen duen GNU/Linux kernelaren modulua"
+
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
msgstr ""
-"Instalazioa egindakoan, exekutatu \"sndconfig\" soinu-txartela "
-"konfiguratzeko "
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "Tolestu zuhaitza"
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
+msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Instalazio automatikoaren konfiguratzailea"
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "Konfiguratu sarea"
+#: ../../standalone/harddrake2_.c:46
+msgid ""
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "Non instalatu nahi duzu abioko kargatzailea?"
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
+msgstr ""
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Lehenetsi duzun hizkuntzak dokumentazioaren hizkuntzari eragingo dio,\n"
-"instalatzaileari eta sistemari orokorrean. Hautatu lehenengo kokatuta\n"
-"zauden lurraldea, eta gero hitzegiten duzun hizkuntza.\n"
-"\n"
-"\"%s\" botoian klikatuz zure lanestazioan instalatzeko beste hizkuntza\n"
-"batzuk hautatu ahal izango dituzu, horrekin instalatuko dira dokumentazio\n"
-"eta aplikazioei dagozkien hizkuntza-fitxategiak. Adibidez, zure makinan\n"
-"espainiako erabiltzaileak izango badituzu, hautatu euskara hizkuntza\n"
-"lehenetsi gisa hizkuntzen zuhaitz ikuspegian eta \"%s\" Aditu sekzioan.\n"
-"\n"
-"Ohartu ez zaudela mugatuta hizkuntza gehigarri bakarra hartzera. Zenbait\n"
-"hizkuntza hartu ditzakezu batera, edo guztiak instalatu \"%s\" laukia "
-"hautatuz.\n"
-"Hizkuntza batentzako euskarria hautatzea esan nahi du itzulpenak, "
-"tipografiak,\n"
-"zuzentzaile ortografikoak, etab instalatuko direla hizkuntza horrentzako. "
-"Horrez\n"
-"gainera, \"%s\" egiaztapen-laukiak unicoderen (UTF-8) erabilera behartzeko\n"
-"aukera ematen dizu. Jakin ezazu hala ere hori ezaugarri esperimentala dela.\n"
-"Dena den, kodifikazio desberdinak behar dituzten hizkuntza desberdinak\n"
-"instaltzen badituzu unicode euskarria instalatuko da.\n"
-"\n"
-"Sisteman instalatutako hizkuntza desberdinen artean aldatzeko,\n"
-"\"/usr/sbin/localedrake\" komandoa jaurti dezakezu \"root\" bezala sistema\n"
-"osoak erabiltzen duen hizkuntza aldatzeko. Komandoa erabiltzaile arrunt "
-"gisa\n"
-"exekutatuta, erabiltzaile horrentzako soilik aldatuko ditu hizkuntza "
-"ezarpenak."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr "Mandrake Linux bertsio honek ez du %s onartzen."
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "tape"
-msgstr "Zinta"
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr "DHCP bezeroa"
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Zerrendatu erabiltzaileak saio kudeatzaileetan (kdm eta gdm)"
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech sagua (seriekoa, C7 mota zaharrekoa)"
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
+msgstr ""
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Huts egin du %s fitxategitik leheneratzean: %s"
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:53
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"
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-"Ezin dut %s gailuaren partizio-taula irakurri, hondatuegia dago :(\n"
-"Jarraitzen saia naiteke, partizio txarrak garbituz (DATU GUZTIAK galduko "
-"dira!).\n"
-"Beste irtenbidea DrakXri partizio-taula aldatzeko baimenik ez ematea da.\n"
-"(okerra %s da)\n"
-"\n"
-"Ados zaude partizio guztiak galtzearekin?\n"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Find Package"
-msgstr "Aurkitu Paketea"
+#: ../../standalone/harddrake2_.c:55
+#, fuzzy
+msgid "Floppy format"
+msgstr "Formateatu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Ziur zaude makina honetan inprimaketa ezarri nahi duzula?\n"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "New devfs device"
-msgstr "devfs gailu berria"
+#: ../../standalone/harddrake2_.c:56
+#, fuzzy
+msgid "Level"
+msgstr "maila"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
-msgstr "OKERRA: Ezin da %s jaurti."
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Boot Style Configuration"
-msgstr "Abioko estilo-konfigurazioa"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
+msgstr "Euskarri mota"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Ordu sinkronizazio automatikoa"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
+msgstr "hardware gailu klasea"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "Babestu %s-n aurkitu ez diren fitxategiak."
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+msgid "Model"
+msgstr "Eredua"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "armeniarra (fonetikoa)"
+#: ../../standalone/harddrake2_.c:58
+msgid "hard disk model"
+msgstr "disko zurrun eredua"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Card model:"
-msgstr "Txartela modeloa :"
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
-msgstr "Bezero Mehea"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Model name"
+msgstr "Modulu-izena"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
-msgstr "Eskerrik asko Mandrake Linux 9.2 aukeratzeagatik"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Official vendor name of the cpu"
+msgstr "gailuaren saltzaile izena"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Start Server"
-msgstr "Abiatu Zerbitzaria"
+#: ../../standalone/harddrake2_.c:61
+msgid "Number of buttons"
+msgstr "Botoi kopurua"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
+#: ../../standalone/harddrake2_.c:62
+#, fuzzy
+msgid "Name"
+msgstr "Izena: "
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "All remote machines"
-msgstr "Urruneko makina guztiak"
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "network printer port"
+msgstr ", \"%s\" sareko inprimagailua, %s portua"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Install themes"
-msgstr "Instalatu gaiak"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
-msgstr "Espainiera"
+#: ../../standalone/harddrake2_.c:64
+#, fuzzy
+msgid "the number of the processor"
+msgstr "aurrerapen-barraren kolorea"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "Instalazioa prestatzen"
+#: ../../standalone/harddrake2_.c:65
+#, fuzzy
+msgid "Model stepping"
+msgstr "kargatzeko ezarpenak"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Editatu hautatutako ostalaria/sarea"
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add User -->"
-msgstr "Gehitu erabiltzailea -->"
+#: ../../standalone/harddrake2_.c:66
+#, fuzzy
+msgid "The type of bus on which the mouse is connected"
+msgstr "Aukeratu sagua konektatuta dagoen serieko ataka."
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "Nauru"
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
+msgstr "gailuaren saltzaile izena"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type fonts installation"
-msgstr "True Type letra-tipoen instalazioa"
+#: ../../standalone/harddrake2_.c:68
+#, fuzzy
+msgid "the vendor name of the processor"
+msgstr "gailuaren saltzaile izena"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Auto-detektatu bertako sarera zuzenean lotutako inprimagailuak"
+#: ../../standalone/harddrake2_.c:82
+msgid "/_Quit"
+msgstr "/_Irten"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN configuration"
-msgstr "Sare lokalaren konfigurazioa (LAN)"
+#: ../../standalone/harddrake2_.c:83
+#, fuzzy
+msgid "/Autodetect _printers"
+msgstr "Auto-detektatuta"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "hard disk model"
-msgstr "disko zurrun eredua"
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
+msgstr "/_Aukerak"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/harddrake2_.c:85
+#, fuzzy
+msgid "/Autodetect _modems"
+msgstr "Auto-detektatuta"
+
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
+msgstr "/_Laguntza"
+
+#: ../../standalone/harddrake2_.c:89
+msgid "/_Help..."
+msgstr "/_Laguntza..."
+
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
+msgstr "Harddrake laguntza"
+
+#: ../../standalone/harddrake2_.c:93
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"
+"Description of the fields:\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 ""
-" - Mantendu /etc/exports:\n"
-" \tClusternfs-i esker erro fitxategi-sistema diskorik gabeko bezeroei "
-"exportatu dakieke.\n"
-" \tdrakTermServ-ek sarrera egokia ezartzen du diskarik gabeko "
-"bezeroetatik erro\n"
-" \tfitxategi-sistemara sarrera anonimoarenkin sartu ahal izan dadin.\n"
+"Eremuen deskribapena:\n"
"\n"
-" \tclusternfs-ren exports sarrera tipiko bat horrelakoa da:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tAZPISAREA/MASKARA(rw,root_squash)\n"
-"\t\t\t\n"
-" \tNon AZPISAREA/MASKARA zure sarerako definitu behar diren."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Ezin da LVM bolumen logikoa erabili %s muntaia-punturako"
+#: ../../standalone/harddrake2_.c:96
+msgid ""
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "Hartu Windows letra-tipoak"
+#: ../../standalone/harddrake2_.c:96
+#, fuzzy
+msgid "Select a device !"
+msgstr "Hautatu eskaner bat"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
+msgstr "/_Akatsa Txostendu"
-#: ../../standalone/drakclock:1
-#, c-format
+#: ../../standalone/harddrake2_.c:102
+msgid "/_About..."
+msgstr "/_Honi buruz..."
+
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
+msgstr "Harddrakeri buruz"
+
+#: ../../standalone/harddrake2_.c:105
msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
msgstr ""
-"Zure konputagailuak bere ordularia urruneko ordu\n"
-"zerbitzari batekin sinkronizatu dezake NTP erabiliz"
+"HardDrake da hau, Mandrakeren hardware ezarpen tresna bat.\n"
+"Bertsioa:"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "Iraniarra"
+#: ../../standalone/harddrake2_.c:106
+msgid "Author:"
+msgstr "Egilea:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
-msgstr "Kroazia"
+#: ../../standalone/harddrake2_.c:113
+msgid "Detection in progress"
+msgstr "Detekzio martxan"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "Atebidea:"
+#: ../../standalone/harddrake2_.c:119
+msgid "Harddrake2 version "
+msgstr "Harddrake2 bertsioa "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add server"
-msgstr "Zerbitzaria gehitu"
+#: ../../standalone/harddrake2_.c:126
+msgid "Detected hardware"
+msgstr "Detektatu hardwarea"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name"
-msgstr "Urruneko inprimagailu-izena"
+#: ../../standalone/harddrake2_.c:129
+msgid "Information"
+msgstr "Informazioa"
+
+#: ../../standalone/harddrake2_.c:131
+msgid "Configure module"
+msgstr "Konfiguratu modulua"
-#: ../advertising/10-security.pl:1
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
+msgstr "Exekutatu ezarpen tresna"
+
+#: ../../standalone/harddrake2_.c:143
#, c-format
+msgid "Running \"%s\" ..."
+msgstr "\"%s\" exekutatzen ..."
+
+#: ../../standalone/harddrake2_.c:159
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."
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-"MandrakeSoft-ek tresna esklusiboak diseinatu ditu sekula egin den Linux "
-"bertsio seguruena sortzeko: Draksec, sistemaren segurtasuna kudeatzeko "
-"tresna, eta suhesi indartsu bat bateratzen dira hacking arriskuak neurri "
-"handi batean murrizteko."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "Gailua: "
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
+msgstr "lehenengo mailakoa"
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
+#: ../../standalone/harddrake2_.c:231
+msgid "secondary"
+msgstr "bigarren mailakoa"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "Lizentzia-kontratua"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect modems"
+msgstr "Auto-detektatuta"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "System Options"
-msgstr "Sistemaren Aukerak"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect printers"
+msgstr "Auto-detektatuta"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Please choose the desired security level"
-msgstr "Mesedez aukeratu nahi duzun segurtasun-maila"
+#: ../../standalone/harddrake2_.c:261
+#, fuzzy
+msgid "/Options"
+msgstr "/_Aukerak"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "Ostalari hau dagoeneko zerrendan dago, ezin da berriro erantsi.\n"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "Aukeratu zure teklatu-diseinua."
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", USB printer"
-msgstr ", USB inprimagailua"
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr "Atzera-teklak Ezabatu itzultzea nahi duzu kontsolan?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-"Ezin da mkbootdisk behar bezala itxi:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+#: ../../standalone/livedrake_.c:18
+msgid "Change Cd-Rom"
+msgstr "Aldatu CDROMa"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/livedrake_.c:19
msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
-"Babeskopia inkrementalak azkeneko babeskopiatik aldatu edo berriak diren "
-"fitxategiak gordetzen ditu soilik."
+"Sartu instalazioko CDROMa unitatean eta sakatu Ados.\n"
+"Ez baduzu, sakatu Utzi bertsio-berritzea saihesteko."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Hautatu letra-tipoak onartuko dituzten aplikazioak :"
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Ezin da bertsio-berritzea abiarazi!!!\n"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "Konfiguratu X"
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
+msgstr "Aldaketa egin da, baina, eragina izan dezan, saioa amaitu behar duzu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hd"
-msgstr "hd"
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
+msgstr "logdrake"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turkiarra (tradizionala \"F\" eredua)"
+#: ../../standalone/logdrake_.c:68
+msgid "Show only for the selected day"
+msgstr "Erakutsi bakarrik hautatutako egunerako"
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "Zorionak!"
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
+msgstr "/Fitxategia/_Berria"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Erabili jabearen id exekuziorako"
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
+msgstr "<control>N"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow remote root login"
-msgstr "Baimendu root-en urruneko erregistroa"
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
+msgstr "/Fitxategia/_Ireki"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Down"
-msgstr "Bera"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
+msgstr "<control>O"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Inprimagailu gordina (kontrolatzailerik ez)"
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr "/Fitxategia/_Gorde"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Install rpm"
-msgstr "Instalatu rpm"
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
+msgstr "<control>S"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Fitxategi bat komando-lerrotik (terminal-leihoa) inprimatzeko, \"%s "
-"<fitxategia>\" komandoa edo inprimatze-tresna grafiko bat erabil dezakezu: "
-"\"xpp <fitxategia>\" edo \"kprinter <fitxategia>\". Tresna grafikoak "
-"inprimagailua hautatzeko eta aukeren ezarpenak erraz aldatzeko erabiltzen "
-"dira.\n"
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
+msgstr "/Fitxategia/Gorde _honela"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "Geratzen den denbora "
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr "/Fitxategia/-"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "Erresuma Batuko teklatua"
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
+msgstr "/Aukerak/Probatu"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "Desmuntatu"
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
+msgstr "/Laguntza/_Honi buruz..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
+#: ../../standalone/logdrake_.c:145
+msgid "User"
+msgstr "Erabiltzailea"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "Desinstalatu letra-tipoak"
+#: ../../standalone/logdrake_.c:146
+msgid "Messages"
+msgstr "Mezuak"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Itxoin mesedez, gailuak detektatu eta konfiguratzen..."
+#: ../../standalone/logdrake_.c:147
+msgid "Syslog"
+msgstr "Syslog"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "Alemana (letra zaharkiturik ez)"
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
+msgstr "Mandrake Tools-en azalpenak"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tBidali posta %s-ri\n"
+#: ../../standalone/logdrake_.c:151
+msgid "search"
+msgstr "bilatu"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
-msgstr "%s transferitzen..."
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
+msgstr "Zure erregistroak ikusteko tresna"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mila kolore (15 bit)"
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
+msgstr "Ezarpenak"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
-msgstr "NFS edo Samba erabiliz esporta dezakezu. Zein nahi duzu"
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
+msgstr "bat badatoz"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "Gambia"
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
+msgstr "bat ez badatoz"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Mandrake-ren Kontrol Zentroa"
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
+msgstr "Aukeratu fitxategia"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Reboot"
-msgstr "Berrabiatu"
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
+msgstr "Egutegia"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device"
-msgstr "Gailu funtzio-anitza"
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
+msgstr "Fitxategiaren edukia"
-#: ../../network/drakfirewall.pm:1
-#, 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."
-msgstr ""
-"Beste portu batzu sartu ditzakezu.\n"
-"Adibide onargarriak dira: 139/tcp 139/udp.\n"
-"Begiratu /etc/services informazioa jasotzeko."
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+msgid "Mail alert"
+msgstr "Posta alerta"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/logdrake_.c:245
#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Tape \n"
+msgid "please wait, parsing file: %s"
+msgstr "itxaron, fitxategia analizatzen: %s"
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../standalone/logdrake_.c:392
+msgid "Mail alert configuration"
+msgstr "Posta alerta konfigurazioa"
+
+#: ../../standalone/logdrake_.c:393
msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
+"Welcome to the mail configuration utility.\n"
+"\n"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Zure sisteman ez dago arakatzailerik instalatuta, mesedez instalatu bat "
-"laguntza sistema arakatu nahi baduzu"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remember this password"
-msgstr "Gogoratu pasahitza"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "hasegabeko %s dela eta"
+"Ongi etorri posta konfiguratzeko utilitatera.\n"
+"\n"
+"Hemen zure alerta sistema ezarri ahal izango duzu.\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Interneteko konexioa konpartitzea gaituta dago orain."
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
+msgstr "Apache World Wide Web Zerbitzaria"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\tSSH bidezko sarea.\n"
+#: ../../standalone/logdrake_.c:401
+msgid "Domain Name Resolver"
+msgstr "Domeinuko Izen Ebazlea"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-" Nahi zenuen inprimagailua auto-detektatu bada, hautatu ezazu zerrendatik "
-"eta gehitu erabiltzaile-izena, pasahitza, eta/edo lantaldea beharrezko bada."
+#: ../../standalone/logdrake_.c:402
+msgid "Ftp Server"
+msgstr "Ftp Zerbitzaria"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " cable"
-msgstr " kable"
+#: ../../standalone/logdrake_.c:403
+msgid "Postfix Mail Server"
+msgstr "Postfix Posta Zerbitzaria"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
-msgstr "Erabili Windows-en partizioko leku librea"
+#: ../../standalone/logdrake_.c:404
+msgid "Samba Server"
+msgstr "Samba Zerbitzaria"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%2$s-n %1$s aurkitu da, automatikoki konfiguratu?"
+#: ../../standalone/logdrake_.c:405
+msgid "SSH Server"
+msgstr "SSH Zerbitzaria"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 kontrolatzailea: %s\n"
+#: ../../standalone/logdrake_.c:406
+msgid "Webmin Service"
+msgstr "Webmin Zerbitzua"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr "Ostalari/sare hau dagoeneko zerrendan dago, ezin da berriro erantsi.\n"
+#: ../../standalone/logdrake_.c:407
+msgid "Xinetd Service"
+msgstr "Xinetd Zerbitzua"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Aukeratu instalatu nahi dituzun paketeak"
+#: ../../standalone/logdrake_.c:414
+msgid "service setting"
+msgstr "zerbitzuaren ezarpena"
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
-msgstr "Papua Ginea Berria"
+#: ../../standalone/logdrake_.c:415
+msgid ""
+"You will receive an alert if one of the selected services is no more running"
+msgstr "Alerta jasoko duzu hautatutako zerbitzuetakoren bat gelditzen bada"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Gailu funtzio-anitza ataka paralelo batean"
+#: ../../standalone/logdrake_.c:428
+msgid "load setting"
+msgstr "kargatzeko ezarpenak"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Busy files"
-msgstr "Erabileran dauden fitxategiak"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
+msgstr "Karga balio hau baino handiagoa bada, abisua jasoko duzu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "Serbiarra (zirilikoa)"
+#: ../../standalone/logdrake_.c:444
+msgid "alert configuration"
+msgstr "abisu-konfigurazioa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Adierazi babeskopiak gordetzen diren direktorioa"
+#: ../../standalone/logdrake_.c:445
+msgid "Please enter your email address below "
+msgstr "Mesedez sartu zure posta-e helbidea azpian "
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
-msgstr "Egin kernel mezua isila jatorrian"
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
+msgstr "Gorde honela.."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Inprimagailu hau (\"%s\")\n"
-"lehenetsi nahi duzu?"
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "Aukeratu sagu-mota."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
-msgstr "DHCP-ren eremu amaiera"
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
+msgstr "Hirugarren botoia emulatu?"
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "Abioko disketea sortzen"
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Sare-konfigurazioa"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Itxaron mesedez, zure konexioa frogatzen..."
+#: ../../standalone/net_monitor_.c:96
+#, fuzzy
+msgid "Profile "
+msgstr "Profila: "
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "Sarea ixten"
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
+msgstr ""
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "Saio-hasierako ID"
+#: ../../standalone/net_monitor_.c:103
+#, fuzzy
+msgid "Sending Speed:"
+msgstr "Fitxategiak bidaltzen..."
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
msgstr ""
-"NFS protokolo ezagun bat da, TCP/IP sareetan fitxategiak \n"
-"konpartitzeko. Zerbitzu honek NFS fitxategi-blokeatzearen funtzionalitatea\n"
-"eskaintzen du."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
-msgstr "DHCP bezeroa"
+#: ../../standalone/net_monitor_.c:106
+#, fuzzy
+msgid "Connection Time: "
+msgstr "Konexio-mota: "
-#: ../../standalone/harddrake2:1
-#, 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"
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
msgstr ""
-"HardDrake da hau, Mandrakeren hardware ezarpen tresna bat.\n"
-"<span foreground=\"royalblue3\">bertsioa:</span> %s\n"
-"<span foreground=\"royalblue3\">Egilea:</span> Thierry Vignaud &lt;"
-"tvignaud@mandrakesoft.com&gt;\n"
-"\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
-msgstr "itxi"
+#: ../../standalone/net_monitor_.c:147
+#, fuzzy
+msgid "Wait please, testing your connection..."
+msgstr "Konexioa probatzen..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "\"%s\": inprimatzen/eskaneatzen"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Konektatu Internetekin"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit raid modules"
-msgstr "jaramonik ez raid moduluei"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Konektatu Internetekin"
-#: ../../services.pm:1
-#, 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)."
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
msgstr ""
-"lpd inprimaketako daemon-a da. Beharrezkoa da lpr-k ondo funtziona\n"
-"dezan. Inprimatze-lanak inprimagailu(eta)ra esleitzen dituen zerbitzaria da."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
-msgstr "Irlandera"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sunday"
-msgstr "Igandea"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Interneteko konexioaren konfigurazioa"
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
+msgstr ""
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
-msgstr "komaz banaturiko zenbakiak"
+#: ../../standalone/net_monitor_.c:225
+#, fuzzy
+msgid "Connection complete."
+msgstr "Konexioaren abiadura"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/net_monitor_.c:226
msgid ""
-"Once you've selected a device, you'll be able to see the device information "
-"in fields displayed on the right frame (\"Information\")"
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-"Gailu bat aukeratu duzunean, eskuin markoan dauden eremuetan gailuari "
-"buruzko informazioa ikusi ahal izango duzu (\"Informazioa\")"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Igo hautatutako araua maila bat"
+#: ../../standalone/net_monitor_.c:330
+#, fuzzy
+msgid "Color configuration"
+msgstr "abisu-konfigurazioa"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
msgstr ""
-"Ondorengo eskanerra\n"
-"\n"
-"%s\n"
-"zure sisteman eskuragarri dago.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "\"%s\" inprimagailua kendu nahi duzu?"
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
+msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "I can't find any room for installing"
-msgstr "Ezin dut instalatzeko lekurik aurkitu"
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Default printer"
-msgstr "Inprimagailu lehenetsia"
+#: ../../standalone/net_monitor_.c:400
+#, fuzzy
+msgid "Local measure"
+msgstr "Fitxategi lokalak"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
msgstr ""
-"Internetera konektatzeko modu bat baino gehiago konfiguratu duzu.\n"
-"Aukeratu erabili nahi duzuna.\n"
-"\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Modify RAID"
-msgstr "Aldatu RAID"
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
+msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:453
+#, fuzzy
msgid ""
-"I have detected an ISDN PCI card, but I don't know its type. Please select a "
-"PCI card on the next screen."
+"Warning, another internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"ISDN PCI txartel bat detektatu dut, baina ez dakit zein motatakoa den. "
-"Hautatu PCI txartel bat hurrengo pantailan."
+"Kontuz, beste Internet konexio bat detektatu da, agian zure sarea erabiltzen "
+"ariko da"
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr "Gehitu erabiltzailea"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "Konektatu"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "%s RAID-diskoak\n"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Disconnect %s"
+msgstr "Deskonektatu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Liberia"
-msgstr "Liberia"
+#: ../../standalone/printerdrake_.c:47
+msgid "Reading printer data ..."
+msgstr "Inprimagailu-datuak irakurtzen..."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-"Ezin izan dira instalatu Scannerdrake-rekin eskanerrak ezartzeko behar diren "
-"paketeak"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Detecting devices ..."
+msgstr "Gailuak detektatzen..."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-"Mesedez sartu internetera konektatutako moldagailuaren izena.\n"
-"\n"
-"Adibideak:\n"
-"\t\tppp+ modem edo ADSL koneksioetarako, \n"
-"\t\teth0, edo eth1 kable koneksioarako, \n"
-"\t\tippp+ rdsi koneksio baterako.\n"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
+msgstr "Probatu atakak"
-#: ../../steps.pm:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, c-format
-msgid "Choose your keyboard"
-msgstr "Aukeratu teklatua"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr "Mandrake Linux bertsio honek ez du %s onartzen."
-#: ../../steps.pm:1
+#: ../../standalone/scannerdrake_.c:54
#, c-format
-msgid "Format partitions"
-msgstr "Eman formatua partizioei"
+msgid "%s found on %s, configure it?"
+msgstr "%s aurkitu da %s-n, konfiguratu?"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/scannerdrake_.c:57
#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "CUPS konfigurazioaren zuzenketa automatikoa"
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr "%s ez dago eskaner datubasean, eskuz konfiguratu?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Running \"%s\" ..."
-msgstr "\"%s\" exekutatzen ..."
+#: ../../standalone/scannerdrake_.c:63
+msgid "Select a scanner"
+msgstr "Hautatu eskaner bat"
-#: ../../harddrake/v4l.pm:1
+#: ../../standalone/scannerdrake_.c:91
#, c-format
-msgid "enable radio support"
-msgstr "irrati euskarria gaitu"
+msgid "This %s scanner is unsupported"
+msgstr "%s eskaner hori ez da onartzen"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:105
#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Eskaner elkarbanaketa ostalari hauei: "
+msgid ""
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
+msgstr ""
+"Scannerdrake-k ezin izan du zure %s eskanerra detektatu.\n"
+"Mesedez aukeratu zure eskanerra konektatuta dagoen gailua"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Atzera-begiztako fitxategi-izena: %s"
+#: ../../standalone/scannerdrake_.c:107
+msgid "choose device"
+msgstr "Aukeratu gailua"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/scannerdrake_.c:113
#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Mesedez aukeratu inprimaketa lanak zein inprimagailura bideratu."
+msgid ""
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
+msgstr ""
+"%s eskaner hau printerdrake-rekin konfiguratu behar da.\n"
+"Mandrake Kontrol Zentroko Hardwarearen ataletik abiaraz dezakezu "
+"printerdrake."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/scannerdrake_.c:118
#, c-format
-msgid "Do not transfer printers"
-msgstr "Ez transferitu inprimagailuak"
+msgid ""
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
+msgstr ""
+"Zure %s eskanerra konfiguratu da.\n"
+"Dokumentuak eskaneatu ditzakezu orain aplikazio menuan Multimedia/Grafikoak "
+"barruan \"XSane\" erabiliz."
-#: ../../help.pm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "Delay before booting the default image"
-msgstr "Irudi lehenetsia abiarazi arteko atzerapena"
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Zenbait gailu \"%s\" hardware motan ezabatu egin dira:\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Hard Disk to backup"
-msgstr "Erabili disko gogorra babeskopia egiteko"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
+msgstr "Zenbait gailu gehitu dira:\n"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Configure"
-msgstr "Konfiguratu"
+#: ../../standalone/service_harddrake_.c:64
+#, fuzzy
+msgid "Hardware probing in progress"
+msgstr "Detekzio martxan"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake"
-msgstr "Scannerdrake"
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "Aukeratu hizkuntza"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Kontuz, beste Internet konexio bat detektatu da, agian zure sarea erabiltzen "
-"ariko da"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "Hautatu instalazio-klasea"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
-msgstr "Erabiltzaileen babeskopia"
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
+msgstr "Disko gogorren detekzioa"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Sartu zure ostalari-izena.\n"
-"Ostalari-izenak osoa izan behar du, erabat kualifikatua,\n"
-"esate baterako, ``mybox.mylab.myco.com''.\n"
-"Atebidearen IP helbidea ere sar dezakezu, baldin baduzu"
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "Konfiguratu sagua"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Hautatu inprimagailuaren spooler-a"
+#: ../../steps.pm_.c:18
+msgid "Choose your keyboard"
+msgstr "Aukeratu teklatua"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Create new theme"
-msgstr "Gai berria sortu"
+#: ../../steps.pm_.c:19
+msgid "Security"
+msgstr "Segurtasuna"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
-msgstr "Mandrake Tools-en azalpenak"
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "Ezarri fitxategi-sistemak"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "No image found"
-msgstr "Ez da irudirik aurkitu"
+#: ../../steps.pm_.c:21
+msgid "Format partitions"
+msgstr "Eman formatua partizioei"
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
-"Pakete garrantzitsu batzuk ez dira behar bezala instalatu.\n"
-"Zure CDROM unitateak edo CDROMak akatsak ditu.\n"
-"Probatu CDROMa ordenagailu instalatu batean \"rpm -qpl Mandrake/RPMS/*.rpm\" "
-"erabiliz.\n"
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "Aukeratu instalatu beharreko paketeak"
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
-msgstr "Mandrake Linux 9.2 garapen plataforma berriena da"
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "Instalatu sistema"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Detected model: %s"
-msgstr "Detektatutako eredua: %s"
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "Gehitu erabiltzaile bat"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
-msgstr "\"%s\" ez da postaE zuzena!"
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "Konfiguratu sarea"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"X11 Pantaila Kudeatzailak zure sisteman era grafikoan erregistratzeko "
-"aukera\n"
-"eskaintzen dizu X Windows Sistema exekutatzen denean eta zure makinan\n"
-"zenbait X saio desberdin batera exekutatu daitezela onartzen du."
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "Konfiguratu zerbitzuak"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr "baietz ezarrita, egikaritu eguneroko segurtasun egiaztapenak."
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "Instalatu abioko kargatzailea"
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
-msgstr "Azerbaijan"
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "Sortu abioko disko bat"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Babeskopiarako erabiliko den gailuaren izena"
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "Konfiguratu X"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
-msgstr "Zintarik ez %s-n!"
+#: ../../steps.pm_.c:34
+msgid "Install system updates"
+msgstr "Instalatu sistema-eguneratzeak"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "Irten instalaziotik"
+
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
msgstr ""
-" --doc <esteka> - estekatu beste web orri batera ( WM ongi etorri "
-"bitartekorako)\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Dvorak (AEB)"
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "Web/FTP"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr "hau da gailua lotzen den bus fisikoa (adib: PCI, USB, ...)"
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
+msgstr "Sare-ordenagailua (bezeroa)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Nola dago konektatuta inprimagailua?"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS zerbitzaria, SMB zerbitzaria, Proxy zerbitzaria, ssh zerbitzaria"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security level"
-msgstr "Segurtasun-maila"
+#: ../../share/compssUsers:999
+msgid "Office"
+msgstr "Office"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "final resolution"
-msgstr "azken erresoluzioa"
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Gnome-ren lan-estazioa"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
-msgstr "Zerbitzuak"
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Palm Pilot edo Visor-erako tresnak"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Auto configuration"
-msgstr "Auto konfigurazioa"
+#: ../../share/compssUsers:999
+msgid "Workstation"
+msgstr "Lan-estazioa"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Suebakia/Bidatzailea"
#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Bulegoko lan-estazioa"
+msgid "Domain Name and Network Information Server"
+msgstr "Domeinu-izenen eta sareko informazioaren zerbitzaria"
#: ../../share/compssUsers:999
msgid ""
@@ -21222,69 +14972,78 @@ msgstr ""
"orriak (kspread, gnumeric), pdf ikustaileak, etab."
#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Joko-estazioa"
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "Audio tresnak: mp3 edo midi erreproduzigailuak, nahastaileak, etab."
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr ""
-"Denbora-pasako programak: makina-jokoak, taula-jokoak, estrategiakoak, etab."
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Beste batzuren aplikazioen euskarria"
#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimediako estazioa"
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Linux eta Software libreari buruzko liburuak eta azalpenak"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Soinua eta bideoa jotzeko/editatzeko programak"
+msgid "KDE Workstation"
+msgstr "KDE lan-estazioa"
#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Interneteko estazioa"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etab."
#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Posta eta berriak irakurri eta bidaltzeko (mutt, tin..) eta web-a arakatzeko "
-"tresna multzoa"
+msgid "Multimedia - Video"
+msgstr "Multimedia - Bideoa"
#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Sare-ordenagailua (bezeroa)"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+"Posta, berriak, web-a, fitxategi-transferentzia eta berriketa kudeatzeko "
+"tresnak"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Hainbat protokolotako bezeroak, ssh-renak barne"
+msgid "Database"
+msgstr "Datu-basea"
#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Konfigurazioa"
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL edo MySQL datu-baseen zerbitzaria"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
msgstr "Zure ordenagailuaren konfigurazioa errazteko tresnak"
#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Lan-estazio zientifikoa"
+msgid "Multimedia - Sound"
+msgstr "Multimedia - Soinua"
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
-msgstr "Aplikazio zientifikoak gnuplot esaterako"
+msgid "Documentation"
+msgstr "Dokumentazioa"
#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr "Kontsola-tresnak"
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editoreak, shell-ak, fitxategi-tresnak, terminalak"
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix posta-zerbitzaria, Inn berri-zerbitzaria"
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE lan-estazioa"
+msgid "Internet station"
+msgstr "Interneteko estazioa"
+
+#: ../../share/compssUsers:999
+msgid "Multimedia station"
+msgstr "Multimediako estazioa"
+
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Konfigurazioa"
+
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "Mahaigain grafiko gehiago (Gnome, IceWM)"
#: ../../share/compssUsers:999
msgid ""
@@ -21294,399 +15053,302 @@ msgstr ""
"KDE, K Desktop Environment, hainbat tresna duen oinarrizko ingurune grafikoa."
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome-ren lan-estazioa"
+msgid "Graphical Environment"
+msgstr "Ingurune grafikoa"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Aplikazio-multzo eta mahaigaineko tresna lagungarri eta atseginak dituen "
-"ingurune grafikoa"
+msgid "Development"
+msgstr "Garapena"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Beste mahaigain grafiko batzuk"
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etab."
+msgid "Tools to create and burn CD's"
+msgstr "CDak sortzeko eta grabatzeko tresnak"
+
+#: ../../share/compssUsers:999
+msgid "Office Workstation"
+msgstr "Bulegoko lan-estazioa"
+
+#: ../../share/compssUsers:999
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etab."
+
+#: ../../share/compssUsers:999
+msgid "Graphics programs such as The Gimp"
+msgstr "The Gimp bezalako programa grafikoak"
+
+#: ../../share/compssUsers:999
+msgid "DNS/NIS "
+msgstr "DNS/NIS "
#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr "C eta C++ garapen-liburutegiak, programak eta fitxategiak"
#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentazioa"
+msgid "Network Computer server"
+msgstr "Sare-zerbitzaria"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Linux eta Software libreari buruzko liburuak eta azalpenak"
+msgid "Mail/Groupware/News"
+msgstr "Posta/Groupware/Berriak"
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr "LSB"
+msgid "Game station"
+msgstr "Joko-estazioa"
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr "Linux Standard Base. Beste batzuren aplikazioen euskarria"
+msgid "Video players and editors"
+msgstr "Bideo-erreproduzigailuak eta editoreak"
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
+msgid "Multimedia - Graphics"
+msgstr "Multimedia - Grafikoak"
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+"Denbora-pasako programak: makina-jokoak, taula-jokoak, estrategiakoak, etab."
#: ../../share/compssUsers:999
-msgid "Mail"
-msgstr "Posta"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"Posta eta berriak irakurtzeko eta bidaltzeko (pine, mutt, tin..) eta web-a "
+"arakatzeko tresnak"
#: ../../share/compssUsers:999
-msgid "Postfix mail server"
-msgstr "Postfix Posta zerbitzaria"
+msgid "Personal Finance"
+msgstr "Finantza pertsonalak"
#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Datu-basea"
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Aplikazio-multzo eta mahaigaineko tresna lagungarri eta atseginak dituen "
+"ingurune grafikoa"
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL edo MySQL datu-baseen zerbitzaria"
+msgid "Clients for different protocols including ssh"
+msgstr "Hainbat protokolotako bezeroak, ssh-renak barne"
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Suebakia/Bidatzailea"
+msgid "LSB"
+msgstr "LSB"
#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Interneteko atebidea"
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
+msgid "Sound and video playing/editing programs"
+msgstr "Soinua eta bideoa jotzeko/editatzeko programak"
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Domeinu-izenen eta sareko informazioaren zerbitzaria"
+msgid "Other Graphical Desktops"
+msgstr "Beste mahaigain grafiko batzuk"
#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Sare-zerbitzaria"
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editoreak, shell-ak, fitxategi-tresnak, terminalak"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS zerbitzaria, SMB zerbitzaria, Proxy zerbitzaria, ssh zerbitzaria"
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "Zure finantzak kudeatzeko programak, hala nola gnucash"
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
-msgstr ""
-"Posta eta berriak irakurri eta bidaltzeko eta amarauna arakatzeko tresna "
-"multzoa"
+msgid "Personal Information Management"
+msgstr "Informazio pertsonalaren kudeaketa"
-#~ msgid "The setup has already been done, and it's currently enabled."
-#~ msgstr "Konfigurazioa eginda dago, eta orain gaituta dago."
+#: ../../share/compssUsers:999
+msgid "Multimedia - CD Burning"
+msgstr "Multimedia - CD grabatzea"
-#~ msgid "Logs"
-#~ msgstr "Erregistroak"
+#: ../../share/compssUsers:999
+msgid "Scientific Workstation"
+msgstr "Lan-estazio zientifikoa"
-#~ msgid "The setup has already been done, but it's currently disabled."
-#~ msgstr "Konfigurazioa eginda dago, baina orain desgaituta dago."
+#~ msgid "can not open /etc/inittab for reading: %s"
+#~ msgstr "ezin da ireki /etc/inittab irakurtzeko: %s"
-#~ msgid "Profile "
-#~ msgstr "Profila "
+#, fuzzy
+#~ msgid "cpu number "
+#~ msgstr "zenbaki bat"
#~ msgid ""
-#~ "Welcome to the Internet Connection Sharing utility!\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ "Click on Configure to launch the setup wizard."
+#~ "You now have the opportunity to download encryption software.\n"
+#~ "\n"
+#~ "WARNING:\n"
+#~ "\n"
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
+#~ "\n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
+#~ "\n"
+#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
+#~ "\n"
+#~ "\n"
+#~ "For any queries relating to these agreement, please contact \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
#~ msgstr ""
-#~ "Ongi etorri Interneteko konexioa konpartitzeko utilitatera!\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ "Egin klik 'Konfiguratu'n instalazio-morroia abiarazteko."
-
-#~ msgid "Internet Connection Sharing configuration"
-#~ msgstr "Interneteko konexioa konpartitzeko konfigurazioa"
-
-#~ msgid "No Internet Connection Sharing has ever been configured."
-#~ msgstr "Interneteko konexioa konpartitzea ez da inoiz konfiguratu."
-
-#~ msgid "when checked, owner and group won't be changed"
-#~ msgstr "Markatuta dagoenean, jabea eta taldea ez dira aldatuko"
+#~ "Enkriptatzeko softwarea deskargatzeko aukera duzu orain.\n"
+#~ "\n"
+#~ "ABISUA:\n"
+#~ "\n"
+#~ "Software horiei aplika dakizkiekeen eta hainbat jurisdikziok ezartzen "
+#~ "dituzten eskakizun \n"
+#~ "orokor desberdinak direla eta, software horien bezeroek edo/eta azken "
+#~ "erabiltzaileek \n"
+#~ "segurtatu beharko dute beren jurisdikzioko legeek baimena ematen dutela "
+#~ "softwareok \n"
+#~ "deskargatzeko, biltegiratzeko edo/eta erabiltzeko.\n"
+#~ "\n"
+#~ "Gainera, bezeroek edo/eta azken erabiltzaileek bereziki arduratu behar "
+#~ "dute beren\n"
+#~ "jurisdikzioko legeak ez urratzeaz. Bezeroek edo/eta azken erabiltzaileek\n"
+#~ "lege aplikagarri horiek xedatutakoa betetzen ez badute, zigor handiak "
+#~ "jasoko\n"
+#~ "dituzte.\n"
+#~ "\n"
+#~ "Ezein kasutan, Mandrakesoft-ek eta bere fabrikatzaileek edo/eta "
+#~ "banatzaileek ez dute\n"
+#~ "erantzukizunik izango bezeroak edo/eta azken erabiltzaileak kontratu hau\n"
+#~ "sinatu ondoren eskuratutako softwareak erabiltzearen, edukitzearen edo \n"
+#~ "deskargatze hutsaren ondorioz sortutako kalte berezi, zeharkako edo "
+#~ "ustekabekoengatik \n"
+#~ "(hala nola, irabaziak galtzea, lana etetea, datu komertzialak galtzea\n"
+#~ "eta bestelako diru-galerak eta epai baten erabakiari jarraiki ordaindu\n"
+#~ "beharreko erantzukizunak eta kalte-ordainak, besteak beste).\n"
+#~ "\n"
+#~ "\n"
+#~ "Kontratu honi buruzko edozein kontsulta egiteko, jarri harremanetan\n"
+#~ "Mandrakesoft, Inc.-ekin\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
+
+#~ msgid "Proxy configuration"
+#~ msgstr "Proxy-konfigurazioa"
#~ msgid ""
-#~ "XawTV isn't installed!\n"
-#~ "\n"
+#~ "Welcome to the proxy configuration utility.\n"
#~ "\n"
-#~ "If you do have a TV card but DrakX has neither detected it (no bttv nor "
-#~ "saa7134\n"
-#~ "module in \"/etc/modules\") nor installed xawtv, please send the\n"
-#~ "results of \"lspcidrake -v -f\" to \"install@mandrakesoft.com\"\n"
-#~ "with subject \"undetected TV card\".\n"
-#~ "\n"
-#~ "\n"
-#~ "You can install it by typing \"urpmi xawtv\" as root, in a console."
+#~ "Here, you'll be able to set up your http and ftp proxies\n"
+#~ "with or without login and password\n"
#~ msgstr ""
-#~ "XawTV ez dago instalatuta!\n"
-#~ "\n"
-#~ "\n"
-#~ "TB txartela badaukazu baino DrakX-ek ez badudu detektatu (bttv edo "
-#~ "saa7134 modulurik ez\n"
-#~ "\"/etc/modules\" kokapenean) ez eta xawtv instalatu ere, mesedez bidali\n"
-#~ "\"lspcidrake -v -f\"-ek sortzen duen irteera \"install@mandrakesoft.com"
-#~ "\"\n"
-#~ "helbidera gai bezala \"undetected TV card\" jarrita.\n"
+#~ "Ongi etorri proxy-a konfiguratzeko utilitatera.\n"
#~ "\n"
-#~ "\n"
-#~ "XawTV instalatu dezakezu kontsolatik root bezala \"urpmi xawtv\" idatzita."
-
-#~ msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-
-#~ msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#~ msgid "on CDROM"
-#~ msgstr "CDROMean"
-
-#~ msgid "DVDR device"
-#~ msgstr "DVDR gailua"
-
-#~ msgid "\t-CDROM.\n"
-#~ msgstr "\t-CDROMa.\n"
-
-#~ msgid "across Network"
-#~ msgstr "sarean zehar"
-
-#~ msgid "Backup system"
-#~ msgstr "Sistemaren babeskopia "
-
-#~ msgid "Use CD/DVDROM to backup"
-#~ msgstr "Erabili CD/DVDROMa babeskopia egiteko"
-
-#~ msgid "on Hard Drive"
-#~ msgstr "disko gogorrean"
-
-#~ msgid "Mandrake Linux 9.1: the ultimate development platform"
-#~ msgstr "Mandrake Linux 9.1 garapen plataforma berriena da"
-
-#~ msgid "CDROM / DVDROM"
-#~ msgstr "CDROM / DVDROM"
-
-#~ msgid "on Tape Device"
-#~ msgstr "Zinta Gailuan"
-
-#~ msgid "No CDR/DVDR in drive!"
-#~ msgstr "Unitatean ez dago CDR/DVDR!"
-
-#~ msgid "Thank you for choosing Mandrake Linux 9.1"
-#~ msgstr "Eskerrik asko Mandrake Linux 9.1 aukeratzeagatik"
-
-#, fuzzy
-#~ msgid "Hostname configuration"
-#~ msgstr "CUPSen konfigurazioa"
-
-#, fuzzy
-#~ msgid "Hostname"
-#~ msgstr "Ostalari-izena"
-
-#~ msgid "Remote Printers"
-#~ msgstr "Urruneko inprimagailuak"
-
-#~ msgid "Printing system: "
-#~ msgstr "Inprimatze-sistema: "
+#~ "Hemen zure http eta ftp proxy-ak konfiguratu ahal izango\n"
+#~ "dituzu, erabiltzaile-izenarekin eta pasahitzarekin edo gabe.\n"
#~ 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 loose all the partitions?\n"
+#~ "Please fill in the http proxy informations\n"
+#~ "Leave it blank if you don't want an http proxy"
#~ msgstr ""
-#~ "Ezin dut %s gailuaren partizio-taula irakurri, hondatuegia dago :(\n"
-#~ "Jarraitzen saia naiteke, partizio txarrak garbituz (DATU GUZTIAK galduko "
-#~ "dira!).\n"
-#~ "Beste irtenbidea DrakXri partizio-taula aldatzeko baimenik ez ematea da.\n"
-#~ "(okerra %s da)\n"
-#~ "\n"
-#~ "Ados zaude partizio guztiak galtzearekin?\n"
+#~ "Bete http proxy-aren datuak\n"
+#~ "Utzi hutsik ez baduzu http proxy-rik nahi"
-#~ msgid ""
-#~ "Unable to properly close mkbootdisk: \n"
-#~ " %s \n"
-#~ " %s"
-#~ msgstr ""
-#~ "Ezin da mkbootdisk behar bezala itxi: \n"
-#~ " %s \n"
-#~ " %s"
+#~ msgid "URL"
+#~ msgstr "URLa"
-#~ msgid ""
-#~ "OSS (Open Sound System) was the first sound API. It's an OS independant "
-#~ "sound API (it's available on most unices systems) but it's a very basic "
-#~ "and limited API.\n"
-#~ "What's more, OSS drivers all reinvent the wheel.\n"
-#~ "\n"
-#~ "ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
-#~ "which\n"
-#~ "supports quite a large range of ISA, USB and PCI cards.\n"
-#~ "\n"
-#~ "It also provides a much higher API than OSS.\n"
-#~ "\n"
-#~ "To use alsa, one can either use:\n"
-#~ "- the old compatibility OSS api\n"
-#~ "- the new ALSA api that provides many enhanced features but requires "
-#~ "using the ALSA library.\n"
-#~ msgstr ""
-#~ "OSS (Open Sound System) izan zen lehenengo soinu API. Soinu API hau ez da "
-#~ "SE-aren menpekoa (unix sistema gehienetan eskuragarri dago) baino oso API "
-#~ "xume eta mugatua da.\n"
-#~ "Gainera, OSS gidari guztiek gurpila berrasmatzen dute.\n"
-#~ "\n"
-#~ "ALSA (Advanced Linux Sound Architecture) arkitektura modularra da, \n"
-#~ "ISA, USB eta PCI txartel multzo zabalari euskarri ematen diona.\n"
-#~ "\n"
-#~ "Askogatik OSS-k baino maila handiagoko API hornitzen du.\n"
-#~ "\n"
-#~ "ALSA erabiltzeko, batek bitako edozein erabil dezake:\n"
-#~ "- OSS-rekin bateragarri den api zaharra.\n"
-#~ "- Ezaugarri hedatu ugari eskaintzen dituen ALSA api berria, ALSA "
-#~ "liburutegia erabili behar da.\n"
+#~ msgid "port"
+#~ msgstr "ataka"
-#~ msgid "Bad Ip"
-#~ msgstr "IP okerra"
+#~ msgid "Url should begin with 'http:'"
+#~ msgstr "URLaren hasieran 'http:' jarri behar du"
-#~ msgid "Bad Mask"
-#~ msgstr "Maskara okerra"
+#~ msgid "The port part should be numeric"
+#~ msgstr "Atakaren zatiak zenbakizkoa izan behar du"
#~ msgid ""
-#~ "For a mulitsession CD, only the first session will erase the cdrw. "
-#~ "Otherwise the cdrw is erased before each backup."
+#~ "Please fill in the ftp proxy informations\n"
+#~ "Leave it blank if you don't want an ftp proxy"
#~ msgstr ""
-#~ "CD saio-anitzetarako, soilik lehenengo saioak ezabatuko du cdrw. Bestela "
-#~ "cdrw babeskopia bakoitzaren aurretik ezabatzen da."
-
-#~ msgid "Output"
-#~ msgstr "Irteera"
-
-#~ msgid "activate now"
-#~ msgstr "aktibatu orain"
-
-#~ msgid "Do not send mails when uneeded"
-#~ msgstr "Ez bidali postak beharrezkoa ez denean"
-
-#~ msgid "load setting"
-#~ msgstr "kargatzeko ezarpenak"
-
-#~ msgid "Total progess"
-#~ msgstr "Aurrerapen guztia"
-
-#~ msgid "deactivate now"
-#~ msgstr "desaktibatu orain"
-
-#~ msgid "Level 1"
-#~ msgstr "maila"
-
-#, fuzzy
-#~ msgid "Level 2"
-#~ msgstr "maila"
-
-#, fuzzy
-#~ msgid "Level 3"
-#~ msgstr "maila"
-
-#, fuzzy
-#~ msgid "Level 4"
-#~ msgstr "maila"
-
-#, fuzzy
-#~ msgid "Level 5"
-#~ msgstr "maila"
+#~ "Bete ftp proxy-aren datuak\n"
+#~ "Utzi hutsik ez baduzu ftp proxy-rik nahi"
#~ msgid ""
-#~ "Please choose the\n"
-#~ "media for backup."
+#~ "Please enter proxy login and password, if any.\n"
+#~ "Leave it blank if you don't want login/passwd"
#~ msgstr ""
-#~ "Aukeratu babeskopia \n"
-#~ "egiteko euskarria."
+#~ "Sartu proxy-aren erabiltzaile-izena eta pasahitza, baldin badago.\n"
+#~ "Utzi hutsik ez baduzu erabiltzaile-izen/pasahitzik nahi"
-#~ msgid "LiLo and Bootsplash themes installation successfull"
-#~ msgstr "LiLo eta Bootsplash gai instalazio arrakastatsua"
+#~ msgid "login"
+#~ msgstr "erabiltzaile-izena"
-#, fuzzy
-#~ msgid "Choose your CD/DVD media size (Mb)"
-#~ msgstr "Mesedez hautatu zure CD/DVD euskarri neurria"
+#~ msgid "password"
+#~ msgstr "pasahitza"
-#~ msgid ""
-#~ "Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-#~ "you can loose data)"
-#~ msgstr ""
-#~ "%s fitxategi-sistemaren egiaztapenak hutsegin du. Okerrak zuzendu nahi "
-#~ "dituzu? (adi, datuak gal ditzakezu)"
+#~ msgid "re-type password"
+#~ msgstr "idatzi pasahitza berriro"
-#, fuzzy
-#~ msgid ""
-#~ "Enter the maximum size\n"
-#~ " allowed for Drakbackup (Mb)"
-#~ msgstr ""
-#~ "Adierazi Drakbackup-en gehieneko\n"
-#~ " tamaina "
+#~ msgid "The passwords don't match. Try again!"
+#~ msgstr "Pasahitzak ez datoz bat. Saiatu berriro!"
-#~ msgid ""
-#~ "Please choose the time \n"
-#~ "interval between each backup"
-#~ msgstr ""
-#~ "Aukeratu babeskopiak egiteko \n"
-#~ "maiztasuna"
+#~ msgid "Can't write file %s"
+#~ msgstr "Ezin da %s fitxategia idatzi"
+
+#~ msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-#~ msgid "Unkown driver"
-#~ msgstr "Gidari ezezaguna"
+#~ msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
#, fuzzy
#~ msgid ""
-#~ "Maximum size\n"
-#~ " allowed for Drakbackup (Mb)"
+#~ "Warning, another internet connexion has been detected, maybe using your "
+#~ "network"
#~ msgstr ""
-#~ "Adierazi Drakbackup-en gehieneko\n"
-#~ " tamaina "
+#~ "Kontuz, beste Internet konexio bat detektatu da, agian zure sarea "
+#~ "erabiltzen ariko da"
-#~ msgid ""
-#~ "Please be sure that the cron daemon is included in your services. \n"
-#~ "\n"
-#~ "Note that currently all 'net' medias also use the hard drive."
-#~ msgstr ""
-#~ "Mesedez ziurtatu cron deabrua zure zerbitzuen artean dagoen.\n"
-#~ "\n"
-#~ "Ohartu oraingoz 'sareko' euskarri guztiek disko zurruna erabiltzen dutela."
+#~ msgid "no help implemented yet.\n"
+#~ msgstr "oraindik ez da laguntzarik inplementatu.\n"
-#~ msgid "Please relog into %s to activate the changes"
-#~ msgstr "Hasi berriro saioa %s(e)n aldaketak aktibatzeko"
+#~ msgid "Please click on a medium"
+#~ msgstr "Egin klik euskarri batean"
-#, fuzzy
-#~ msgid "Start Search..."
-#~ msgstr "Abiatu Zerbitzaria"
+#~ msgid "Removing LPRng..."
+#~ msgstr "LPRng kentzen..."
-#, fuzzy
-#~ msgid ""
-#~ "Search For...\n"
-#~ "%s"
-#~ msgstr "Bilatu zerbitzarietan"
+#~ msgid "Removing LPD..."
+#~ msgstr "LPD kentzen..."
-#, fuzzy
#~ msgid ""
#~ "Description:\n"
#~ "\n"
#~ " Drakbackup is used to backup your system.\n"
-#~ " During the configuration you can select: \n"
+#~ " During the configuration you can select \n"
#~ "\t- System files, \n"
#~ "\t- Users files, \n"
#~ "\t- Other files.\n"
@@ -21704,19 +15366,19 @@ msgstr ""
#~ " Drakbackup allows you to restore your system to\n"
#~ " a user selected directory.\n"
#~ "\n"
-#~ " Per default all backups will be stored on your\n"
+#~ " Per default all backup will be stored on your\n"
#~ " /var/lib/drakbackup directory\n"
#~ "\n"
#~ " Configuration file:\n"
-#~ "\t/etc/drakconf/drakbackup/drakbackup.conf\n"
+#~ "\t/etc/drakconf/drakbackup/drakbakup.conf\n"
#~ "\n"
#~ "Restore Step:\n"
#~ " \n"
-#~ " During the restore step, DrakBackup will remove \n"
-#~ " your original directory and verify that all \n"
-#~ " backup files are not corrupted. It is recommended \n"
+#~ " During the restore step, Drakbackup will remove\n"
+#~ " your original directory and verify that all\n"
+#~ " backup files are not corrupted. It is recommended\n"
#~ " you do a last backup before restoring.\n"
-#~ "\n"
+#~ " \n"
#~ "\n"
#~ msgstr ""
#~ "Azalpena:\n"
@@ -21744,7 +15406,7 @@ msgstr ""
#~ " /var/lib/drakbackup direktorioan gordeko dira\n"
#~ "\n"
#~ " Konfigurazio-fitxategia:\n"
-#~ "\t/etc/drakconf/drakbackup/drakbackup.conf\n"
+#~ "\t/etc/drakconf/drakbackup/drakbakup.conf\n"
#~ "\n"
#~ "\n"
#~ "Leheneratze-urratsa:\n"
@@ -21753,1269 +15415,65 @@ msgstr ""
#~ " jatorrizko direktorioa eta babeskopia-fitxategiak ez\n"
#~ " daudela hondatuta egiaztatuko du. Leheneratu aurretik\n"
#~ " babeskopia egitea gomendatzen da.\n"
-#~ "\n"
-#~ "\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "Options Description:\n"
-#~ "\n"
-#~ " - Backup System Files:\n"
-#~ " \n"
-#~ "\tThis option allows you to backup your /etc directory,\n"
-#~ "\twhich contains all configuration files. Please be\n"
-#~ "\tcareful during the restore step to not overwrite:\n"
-#~ "\t\t/etc/passwd \n"
-#~ "\t\t/etc/group \n"
-#~ "\t\t/etc/fstab\n"
-#~ "\n"
-#~ " - Backup User Files: \n"
-#~ "\n"
-#~ "\tThis option allows you select all users that you want to \n"
-#~ "\tbackup. To preserve disk space, it is recommended that\n"
-#~ "\tyou do not include the web browser's cache.\n"
-#~ "\n"
-#~ " - Backup Other Files: \n"
-#~ "\n"
-#~ "\tThis option allows you to include additional data to save.\n"
-#~ "\tIf you want to add individual files, select them from the\n"
-#~ "\trighthand 'Files' list pane. To add directories, enter the \n"
-#~ "\tdirectory by clicking on it in the lefthand 'Folders' pane, \n"
-#~ "\tand at that point click 'OK' without selecting any files.\n"
-#~ " \n"
-#~ " - Incremental Backups:\n"
-#~ "\n"
-#~ "\tThe incremental backup is the most powerful option for \n"
-#~ "\tbackup. This option allows you to backup all your data \n"
-#~ "\tthe first time, and only the changed data afterward.\n"
-#~ "\tThen you will be able, during the restore step, to restore \n"
-#~ "\tyour data from a specified date. If you have not selected \n"
-#~ "\tthis option all old backups are deleted before each backup. \n"
-#~ "\n"
-#~ " - Differential Backups:\n"
-#~ " \n"
-#~ "\tThe differential backup, rather than comparing changes in the\n"
-#~ "\tdata to the previous incremental backup, always compares the\n"
-#~ "\tdata to the initial base backup. This method allows one to\n"
-#~ "\trestore the base and then the differential from a certain date.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "aukeren azalpena:\n"
-#~ "\n"
-#~ " - Sistema-fitxategien babeskopia:\n"
-#~ " \n"
-#~ "\tAukera honen bidez konfigurazio-fitxategi guztiak dituen\n"
-#~ "\t/etc direktorioaren babeskopia egin daiteke. Kontuz ibili\n"
-#~ "\tleheneratze-urratsean, eta ez gainidatzi hauek:\n"
-#~ "\t\t/etc/passwd \n"
-#~ "\t\t/etc/group \n"
-#~ "\t\t/etc/fstab\n"
-#~ "\n"
-#~ " - Erabiltzaile-fitxategien babeskopia: \n"
-#~ "\n"
-#~ "\tAukera honen bidez, babeskopia egiteko erabiltzaileak\n"
-#~ "\thauta ditzakezu.\n"
-#~ "\tDisko-lekua gordetzeko, web arakatzailearen cachea ez \n"
-#~ "\tsartzea komeni da.\n"
-#~ "\n"
-#~ " - Bestelako fitxategien babeskopia: \n"
-#~ "\n"
-#~ "\tAukera honen bidez, gordetzeko datu gehiago gehituko dituzu.\n"
-#~ "\tBeste babeskopiekin ezin da oraindik babeskopia inkrementala hautatu.\t"
-#~ "\t\n"
#~ " \n"
-#~ " - Babeskopia inkrementalak:\n"
-#~ "\n"
-#~ "\tBabeskopia-aukera ahaltsuena da. Aukera honen\n"
-#~ "\tbidez, lehen aldian datu guztien babeskopia egin\n"
-#~ "\tdaiteke, eta gero aldatuenak bakarrik.\n"
-#~ "\tGero, leheneratze-urratsean, data jakin bateko\n"
-#~ "\tdatuak leheneratu ahal izango dituzu.\n"
-#~ "\tAukera hau hautatuta ez baduzu, babeskopia zahar guztiak\n"
-#~ "\tezabatzen dira babeskopia bakoitza egin aurretik. \n"
-#~ "\n"
-#~ "\n"
-
-#~ msgid "Please check if you want to use the non-rewinding device."
-#~ msgstr "Mesedez markatu rebobinatzen ez den gailua erabiltzeko."
-
-#~ msgid "Please enter your password"
-#~ msgstr "Sartu pasahitza"
-
-#~ msgid ""
-#~ "\n"
-#~ " Some errors during sendmail are caused by \n"
-#~ " a bad configuration of postfix. To solve it you have to\n"
-#~ " set myhostname or mydomain in /etc/postfix/main.cf\n"
-#~ "\n"
-#~ msgstr ""
-#~ "\n"
-#~ " Posta bidaltzean izandako errore batzuk postfix gaizki \n"
-#~ " konfiguratuta dagoelako izan dira. Konpontzeko, \n"
-#~ " myhostname edo mydomain ezarri behar duzu hemen: /etc/postfix/main.cf\n"
#~ "\n"
#~ msgid ""
-#~ "Please choose your CD/DVD device\n"
-#~ "(Press Enter to propogate settings to other fields.\n"
-#~ "This field isn't necessary, only a tool to fill in the form.)"
-#~ msgstr ""
-#~ "Mesedez hautatu zure CD/DVD gailua\n"
-#~ "(Sartu sakatu ezarpenak beste eremu batzutara hedatzeko.\n"
-#~ "Eremu hau ez da beharrezkoa, formularioa betetzeko tresna bakarrik.)"
-
-#~ msgid "Please check if you want to eject your tape after the backup."
-#~ msgstr ""
-#~ "Mesedez markatu babes-kopia ondoren zure zinta kanporatzea nahi baduzu."
-
-#~ msgid "Please check if you want to erase your tape before the backup."
-#~ msgstr "Mesedez markatu babes-kopia aurretik zinta ezabatu nahi baduzu."
-
-#~ msgid "Please enter the host name or IP."
-#~ msgstr "Idatzi ostalariaren izena edo IPa."
-
-#, fuzzy
-#~ msgid ""
-#~ " Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s@epita."
-#~ "fr>"
-#~ msgstr ""
-#~ " Copyright (C) 2001 MandrakeSoft, DUPONT Sebastien <dupont_s@epita.fr>"
-
-#, fuzzy
-#~ msgid ""
-#~ "Options Description:\n"
+#~ "drakbug version %s\n"
+#~ "Copyright (C) 2002 MandrakeSoft.\n"
+#~ "This is free software and may be redistributed under the terms of the GNU "
+#~ "GPL.\n"
#~ "\n"
-#~ "Please be careful when you are using ftp backup, because only \n"
-#~ "backups that are already built are sent to the server.\n"
-#~ "So at the moment, you need to build the backup on your hard \n"
-#~ "drive before sending it to the server.\n"
+#~ "usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
#~ "\n"
+#~ "OPTIONS:\n"
#~ msgstr ""
-#~ "aukeren azalpena:\n"
+#~ "drakbug %s bertsioa\n"
+#~ "Copyright (C) 2002 MandrakeSoft.\n"
+#~ "Hau software askea da eta GNUren GPLk ezarritako baldintzapean banatu "
+#~ "daiteke.\n"
#~ "\n"
-#~ "Kontuz ftp backup erabiltzean, eginda dauden babeskopiak \n"
-#~ "soilik bidaliko direlako zerbitzarira.\n"
-#~ "Beraz, orain, disko gogorrean egin behar duzu babeskopia\n"
-#~ "zerbitzarira bidali aurretik.\n"
+#~ "erabilera: drakbug [AUKERAK] [PROGRAMA_IZENA]\n"
#~ "\n"
+#~ "AUKERAK:\n"
-#~ msgid ""
-#~ "\n"
-#~ "Restore Backup Problems:\n"
-#~ "\n"
-#~ "During the restore step, Drakbackup will verify all your\n"
-#~ "backup files before restoring them.\n"
-#~ "Before the restore, Drakbackup will remove \n"
-#~ "your original directory, and you will loose all your \n"
-#~ "data. It is important to be careful and not modify the \n"
-#~ "backup data files by hand.\n"
-#~ msgstr ""
-#~ "\n"
-#~ "Leheneratze-arazoak:\n"
-#~ "\n"
-#~ "Leheneratze-urratsean, Drakbackup-ek babeskopia-fitxategi\n"
-#~ "guztiak egiaztatuko ditu leheneratu aurretik.\n"
-#~ "Leheneratu aurretik, Drakbackup-ek kendu egingo du\n"
-#~ "jatorrizko direktorioa, eta datu guztiak galduko dituzu.\n"
-#~ "Garrantzizkoa da kontuz ibiltzea eta babeskopia-fitxategiak\n"
-#~ "eskuz ez aldatzea.\n"
+#~ msgid " --help - print this help message.\n"
+#~ msgstr " --help - laguntza mezu hau erakutsi.\n"
-#, fuzzy
-#~ msgid ""
-#~ "Restore Description:\n"
-#~ "\n"
-#~ "Drakbackup now allows you to search the backup lists for a particular\n"
-#~ "file or files to restore. If the search is successful, you will be \n"
-#~ "presented with a list of matches, along with backup media and dates.\n"
-#~ "You can then select individual files to restore from your backup media.\n"
-#~ " \n"
-#~ "For 'normal' restores, only the most recent date will be used, \n"
-#~ "because with incremental backups it is necessary to restore \n"
-#~ "one by one each older backup.\n"
-#~ "\n"
-#~ "So if you don't want to restore a user please unselect all their\n"
-#~ "check boxes.\n"
-#~ "\n"
-#~ "Otherwise, you are able to select only one of these.\n"
-#~ "\n"
-#~ " - Incremental Backups:\n"
-#~ "\n"
-#~ "\tThe incremental backup is the most powerful option for \n"
-#~ "\tbackup. This option allows you to backup all your data \n"
-#~ "\tthe first time, and only the changed data afterward.\n"
-#~ "\tThen you will be able, during the restore step, to restore \n"
-#~ "\tyour data from a specified date. If you have not selected \n"
-#~ "\tthis option all old backups are deleted before each backup. \n"
-#~ "\n"
-#~ " - Differential Backups:\n"
-#~ " \n"
-#~ "\tThe differential backup, rather than comparing changes in the\n"
-#~ "\tdata to the previous incremental backup, always compares the\n"
-#~ "\tdata to the initial base backup. This method allows one to\n"
-#~ "\trestore the base and then the differential from a certain date.\n"
-#~ "\n"
+#~ msgid " --report - program should be one of mandrake tools\n"
#~ msgstr ""
-#~ "leheneratze azalpena:\n"
-#~ " \n"
-#~ "Gertueneko data soilik erabiliko da, babeskopia inkrementalarekin\n"
-#~ "beharrezkoa delako babeskopia zaharrak banan-banan leheneratzea.\n"
-#~ "\n"
-#~ "Beraz erabiltzaile bat leheneratu nahi ez baduzu, haren egiaztapen-"
-#~ "laukietatik\n"
-#~ "markak kendu.\n"
-#~ "\n"
-#~ "Bestela, hauetako bakarra hautatu ahal izango duzu\n"
-#~ "\n"
-#~ " - Babeskopia inkrementalak:\n"
-#~ "\n"
-#~ "\tBabeskopia-aukera ahaltsuena da. Aukera honen\n"
-#~ "\tbidez, lehen aldian datu guztien babeskopia\n"
-#~ "\tegiteko aukera ematen du, eta gero aldatutako\n"
-#~ "\tdatuak bakarrik.\n"
-#~ "\tBeraz, leheneratze-urratsean, data\n"
-#~ "\tjakin bateko datuak leheneratu ahal izango\n"
-#~ "\tdituzu.\n"
-#~ "\tAukera hau hautatuta ez baduzu, babeskopia zahar guztiak\n"
-#~ "\tezabatzen dira babeskopia bakoitzaren aurretik. \n"
-#~ "\n"
-#~ "\n"
-#~ "\n"
+#~ " --report - programa mandrakeren tresnetako bat izan beharko "
+#~ "litzateke\n"
-#~ msgid ""
-#~ " updates 2002 MandrakeSoft by Stew Benedict <sbenedict@mandrakesoft.com>"
+#~ msgid " --incident - program should be one of mandrake tools\n"
#~ msgstr ""
-#~ " eguneraketak 2002 MandrakeSoft Stew Benedict-ek <sbenedict@mandrakesoft."
-#~ "com>"
-
-#~ msgid "edit"
-#~ msgstr "editatu"
-
-#~ msgid "select perm file to see/edit"
-#~ msgstr "hautatu ikusi/editatzeko fitxategia"
-
-#~ msgid "path"
-#~ msgstr "bidea"
-
-#~ msgid "permissions"
-#~ msgstr "baimenak"
-
-#~ msgid "delete"
-#~ msgstr "ezabatu"
+#~ " --incident - programa mandrakeren tresnetako bat izan beharko "
+#~ "litzateke\n"
-#~ msgid "user"
-#~ msgstr "Erabiltzailea"
+#~ msgid "usage: drakfloppy\n"
+#~ msgstr "erabilera: drakfloppy\n"
-#, fuzzy
#~ msgid ""
-#~ "Standard: This is the standard security recommended for a computer that "
-#~ "will be used to connect\n"
-#~ " to the Internet as a client.\n"
-#~ "\n"
-#~ "High: There are already some restrictions, and more automatic "
-#~ "checks are run every night.\n"
-#~ "\n"
-#~ "Higher: The security is now high enough to use the system as a server "
-#~ "which can accept\n"
-#~ " connections from many clients. If your machine is only a "
-#~ "client on the Internet, you\n"
-#~ " should choose a lower level.\n"
-#~ "\n"
-#~ "Paranoid: This is similar to the previous level, but the system is "
-#~ "entirely closed and security\n"
-#~ " features are at their maximum\n"
#~ "\n"
-#~ "Security Administrator:\n"
-#~ " If the 'Security Alerts' option is set, security alerts "
-#~ "will be sent to this user (username or\n"
-#~ " email)"
+#~ "Usage: harddrake [-h|--help] [--test]\n"
#~ msgstr ""
-#~ "Estandarra: Hau da internetera bezero bezala konektatuko den konputagailu "
-#~ "batentzako\n"
-#~ " segurtasun estandarra.\n"
#~ "\n"
-#~ "Altua: Muga batzuk ezartzen ditu, eta egiaztapen automatiko gehiago "
-#~ "exekutatzen dira gauero.\n"
-#~ "\n"
-#~ "Altuagoa: Sistemak segurtasun maila nahikoa dauka bezero askoren lotura "
-#~ "onartuko duen zerbitzari\n"
-#~ " bezala erabil dadin. Zure makina Interneten bezero soila "
-#~ "badamaila apalagoa hautatu behar zenuke.\n"
-#~ "\n"
-#~ "Paranoikoa: Hau aurreko mailaren antzekoa da, baino sistema erabat itxita "
-#~ "dago eta segurtasun\n"
-#~ " ezaugarriak mailarik altuenean daude.\n"
-#~ "\n"
-#~ "Segurtasun Kudeatzailea:\n"
-#~ " 'Segurtasun Alertak' aukera ezartzen bada, segurtasun "
-#~ "alertak bidaliko zaizkio erabiltzaile honi (erabiltzaile-izena edo\n"
-#~ "\t posta-e)."
+#~ "erabilera: harddrake [-h|--help] [--test]\n"
-#~ msgid "Expert Area"
-#~ msgstr "Aditu area"
+#~ msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+#~ msgstr "erabilera: keyboarddrake [--expert] [keyboard]\n"
-#~ msgid "Wizard..."
-#~ msgstr "Morroia..."
+#~ msgid "Probing %s class\n"
+#~ msgstr "%s klasea frogatzen\n"
-#, fuzzy
-#~ msgid "Country"
-#~ msgstr "Estatua:"
+#~ msgid "detected on interface %s"
+#~ msgstr "%s interfazean detektatua"
-#~ msgid "Previous"
-#~ msgstr "Aurrekoa"
+#~ msgid "Periodic Checks 2"
+#~ msgstr "Aldizkako Egiaztapenak 2"
-#, fuzzy
-#~ msgid ""
-#~ "Options Description:\n"
-#~ "\n"
-#~ " In this step Drakbackup allow you to change:\n"
-#~ "\n"
-#~ " - The compression mode:\n"
-#~ " \n"
-#~ " If you check bzip2 compression, you will compress\n"
-#~ " your data better than gzip (about 2-10 %%).\n"
-#~ " This option is not checked by default because\n"
-#~ " this compression mode needs more time (about 1000%% more).\n"
-#~ " \n"
-#~ " - The update mode:\n"
-#~ "\n"
-#~ " This option will update your backup, but this\n"
-#~ " option is not really useful because you need to\n"
-#~ " decompress your backup before you can update it.\n"
-#~ " \n"
-#~ " - the .backupignore mode:\n"
-#~ "\n"
-#~ " Like with cvs, Drakbackup will ignore all references\n"
-#~ " included in .backupignore files in each directories.\n"
-#~ " ex: \n"
-#~ " #> cat .backupignore\n"
-#~ " *.o\n"
-#~ " *~\n"
-#~ " ...\n"
-#~ " \n"
-#~ "\n"
-#~ msgstr ""
-#~ "aukeren azalpena:\n"
-#~ "\n"
-#~ " Urrats honetan Drakbackup-ek hauek aldatzen utziko dizu:\n"
-#~ "\n"
-#~ " - Konprimitze-modua:\n"
-#~ " \n"
-#~ " bzip2 konpresioa hautatuz, gzip-ekin baino gehiago\n"
-#~ " konprimituko dituzu datuak (% 2-10 inguru).\n"
-#~ " Aukera hau ez da lehenespen gisa hautatzen konpresio-modu\n"
-#~ " honek denbora gehiago (% 1000 gehiago) hartzen duelako.\n"
-#~ " \n"
-#~ " - Eguneratze modua:\n"
-#~ "\n"
-#~ " Aukera honek babeskopia eguneratuko du, baina ez da\n"
-#~ " oso erabilgarria, eguneratu aurretik babeskopia\n"
-#~ " deskonprimitu egin behar baita.\n"
-#~ " \n"
-#~ " - .backupignore modua:\n"
-#~ "\n"
-#~ " cvs-rekin bezala, Drakbackup-ek ezikusi egingo die direktorio\n"
-#~ " bakoitzeko .backupignore fitxategietako erreferentzia guztiei.\n"
-#~ " adib: \n"
-#~ " /*> cat .backupignore*/\n"
-#~ " *.o\n"
-#~ " *~\n"
-#~ " ...\n"
-#~ " \n"
-#~ "\n"
+#~ msgid "unable to backup lilo message"
+#~ msgstr "ezin da lilo mezuaren babes kopia egin"
-#, fuzzy
-#~ msgid "help"
-#~ msgstr "Laguntza"
-
-#~ msgid "Please check if you are using CDRW media"
-#~ msgstr "Hautatu CDRW euskarria erabiltzen baduzu"
-
-#~ msgid "Please check if you are using a DVDRAM device"
-#~ msgstr "Mesedez markatu DVDRAM gailua erabiltzen ari bazara"
-
-#~ msgid "Please check if you are using a DVDR device"
-#~ msgstr "Mesedez markatu DVDR gailua erabiltzen ari bazara"
-
-#~ msgid "Please check for multisession CD"
-#~ msgstr "Mesedez markatu saio-anitzeko CDa egiteko"
-
-#~ msgid "We are now going to configure the %s connection."
-#~ msgstr "%s konexioa konfiguratuko dugu orain."
-
-#~ msgid "Name: %s\n"
-#~ msgstr "Izena: %s\n"
-
-#~ msgid ""
-#~ "Which ISDN configuration do you prefer?\n"
-#~ "\n"
-#~ "* The Old configuration uses isdn4net. It contains powerful\n"
-#~ " tools, but is tricky to configure, and not standard.\n"
-#~ "\n"
-#~ "* The New configuration is easier to understand, more\n"
-#~ " standard, but with less tools.\n"
-#~ "\n"
-#~ "We recommand the light configuration.\n"
-#~ msgstr ""
-#~ "Zein ISDN konfigurazio duzu nahiago?\n"
-#~ "\n"
-#~ "* Konfigurazio zaharrak isdn4net erabiltzen du. Tresna ahaltsuak\n"
-#~ " dauzka, baina korapilatsua da konfiguratzeko, eta ez da estandarra.\n"
-#~ "\n"
-#~ "* Konfigurazio berria errazagoa da ulertzeko, estandarragoa,\n"
-#~ " baina tresna gutxiago ditu.\n"
-#~ "\n"
-#~ "Konfigurazio erraza gomendatzen dugu.\n"
-
-#~ msgid "New configuration (isdn-light)"
-#~ msgstr "Konfigurazio berria (isdn-light)"
-
-#~ msgid "Old configuration (isdn4net)"
-#~ msgstr "Konfigurazio zaharra (isdn4net)"
-
-#~ msgid "Internet connection & configuration"
-#~ msgstr "Interneteko konexioa eta konfigurazioa"
-
-#~ msgid "Disconnect"
-#~ msgstr "Deskonektatu"
-
-#~ msgid "Connect"
-#~ msgstr "Konektatu"
-
-#~ msgid ""
-#~ "\n"
-#~ "You can reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "Konexioa birkonfigura dezakezu."
-
-#~ msgid ""
-#~ "\n"
-#~ "You can connect to the Internet or reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "Internetekin konekta zaitezke, edo konexioa birkonfiguratu."
-
-#~ msgid "You are not currently connected to the Internet."
-#~ msgstr "Orain ez zaude Internetekin konektatuta."
-
-#~ msgid ""
-#~ "\n"
-#~ "You can disconnect or reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "Deskonektatu egin zaitezke edo konexioa birkonfiguratu."
-
-#~ msgid "You are currently connected to the Internet."
-#~ msgstr "Orain Internetekin konektatuta zaude."
-
-#~ msgid "files sending by FTP"
-#~ msgstr "fitxategiak FTP bidez bidaltzen"
-
-#~ msgid "Use incremental backup (do not replace old backups)"
-#~ msgstr "Erabili babeskopia inkrementala (ez ordeztu kopia zaharrak)"
-
-#~ msgid "Relaunch 'lilo'"
-#~ msgstr "Berriro jaurti 'lilo'"
-
-#~ msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#~ msgstr ""
-#~ "Eraiki RAMdiskoa (initrd) honekin 'mkinitrd -f /boot/initrd-%s.img %s'."
-
-#~ msgid "Copy %s to %s"
-#~ msgstr "Kopiatu %s %s-ra"
-
-#~ msgid "Backup %s to %s.old"
-#~ msgstr "Babestu %s %s.old bezala"
-
-#~ msgid "ttf fonts conversion"
-#~ msgstr "ttf letra-tipoen bihurketa"
-
-#~ msgid "Fonts conversion"
-#~ msgstr "Letra-tipoen bihurketa"
-
-#~ msgid "Author:"
-#~ msgstr "Egilea:"
-
-#, fuzzy
-#~ msgid "Audio station"
-#~ msgstr "Multimediako estazioa"
-
-#, fuzzy
-#~ msgid "Sound playing/editing programs"
-#~ msgstr "Soinua eta bideoa jotzeko/editatzeko programak"
-
-#, fuzzy
-#~ msgid "Video station"
-#~ msgstr "Joko-estazioa"
-
-#, fuzzy
-#~ msgid "Video playing programs"
-#~ msgstr "Soinua eta bideoa jotzeko/editatzeko programak"
-
-#, fuzzy
-#~ msgid "Graphic station"
-#~ msgstr "Joko-estazioa"
-
-#, fuzzy
-#~ msgid "Graphics programs"
-#~ msgstr "The Gimp bezalako programa grafikoak"
-
-#, fuzzy
-#~ msgid "Printer sharing"
-#~ msgstr "Fitxategi-konpartitzea"
-
-#~ msgid ""
-#~ "Your printer belongs to the group of GDI laser printers (winprinters) "
-#~ "sold by different manufacturers which uses the Zenographics ZJ-stream "
-#~ "raster format for the data sent to the printer. The driver for these "
-#~ "printers is still in a very early development stage and so it will "
-#~ "perhaps not always work properly. Especially it is possible that the "
-#~ "printer only works when you choose the A4 paper size.\n"
-#~ "\n"
-#~ "Some of these printers, as the HP LaserJet 1000, for which this driver "
-#~ "was originally created, need their firmware to be uploaded to them after "
-#~ "they are turned on. In the case of the HP LaserJet 1000 you have to "
-#~ "search the printer's Windows driver CD or your Windows partition for the "
-#~ "file \"sihp1000.img\" and upload the file to the printer with one of the "
-#~ "following commands:\n"
-#~ "\n"
-#~ " lpr -o raw sihp1000.img\n"
-#~ " cat sihp1000.img > /dev/usb/lp0\n"
-#~ "\n"
-#~ "The first command can be given by any normal user, the second must be "
-#~ "given as root. After having done so you can print normally.\n"
-#~ msgstr ""
-#~ "Zure inprimagailua ekoizle desberdinek saltzen dituzten GDI laser "
-#~ "inprimagailuen (winprinters) taldekoa da, Zenographics ZJ-stream raster "
-#~ "formatua erabiltzen dute datuak inprimagailura bidaltzeko. Inprimagailu "
-#~ "hauentzako gidaria hasierako garapen egoeran dago eta horregatik baliteke "
-#~ "beti behar bezala ez ibiltzea. Bereziki posible da inprimagailuak A4 "
-#~ "paper neurria aukeratzen duzunean bakarrik lanegitea.\n"
-#~ "\n"
-#~ "Inprimagailu hauetako batzuei, HP LaserJet 1000 esaterako, jatorrian "
-#~ "gidaria beretzako sortu zen, pizterakoan beraien firmwarerra zamatu behar "
-#~ "zaie. HP LaserJet 1000-ren kasuan inprimagailuaren Windows gidari CDa edo "
-#~ "zure Windows partizioa behatu behar duzu \"sihp1000.img\" fitxategiaren "
-#~ "bila eta inprimagailuari zamatu behar diozu ondorengo komandoetako "
-#~ "batekin:\n"
-#~ "\n"
-#~ " lpr -o raw sihp1000.img\n"
-#~ " cat sihp1000.img > /dev/usb/lp0\n"
-#~ "\n"
-#~ "Lehenengo komandoa edozein erabiltzaile arruntak eman dezake, bigarrena "
-#~ "root bezala eman behar da. Hori egin ondoren normaltasunez inprimatu "
-#~ "dezakezu.\n"
-
-#~ msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
-#~ msgstr "GDI Laser Inprimagailua Zenographics ZJ-Stream Formatua erabiliz"
-
-#~ msgid "Office"
-#~ msgstr "Office"
-
-#~ msgid "Set of tools for mail, news, web, file transfer, and chat"
-#~ msgstr ""
-#~ "Posta, berriak, web-a, fitxategi-transferentzia eta berriketa kudeatzeko "
-#~ "tresnak"
-
-#~ msgid "Games"
-#~ msgstr "Jokoak"
-
-#~ msgid "Multimedia - Graphics"
-#~ msgstr "Multimedia - Grafikoak"
-
-#~ msgid "Multimedia - Sound"
-#~ msgstr "Multimedia - Soinua"
-
-#~ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-#~ msgstr "Audio tresnak: mp3 edo midi erreproduzigailuak, nahastaileak, etab."
-
-#~ msgid "Multimedia - Video"
-#~ msgstr "Multimedia - Bideoa"
-
-#~ msgid "Video players and editors"
-#~ msgstr "Bideo-erreproduzigailuak eta editoreak"
-
-#~ msgid "Multimedia - CD Burning"
-#~ msgstr "Multimedia - CD grabatzea"
-
-#~ msgid "Tools to create and burn CD's"
-#~ msgstr "CDak sortzeko eta grabatzeko tresnak"
-
-#~ msgid "More Graphical Desktops (Gnome, IceWM)"
-#~ msgstr "Mahaigain grafiko gehiago (Gnome, IceWM)"
-
-#~ msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-#~ msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etab."
-
-#~ msgid "Personal Information Management"
-#~ msgstr "Informazio pertsonalaren kudeaketa"
-
-#~ msgid "Tools for your Palm Pilot or your Visor"
-#~ msgstr "Palm Pilot edo Visor-erako tresnak"
-
-#~ msgid "Personal Finance"
-#~ msgstr "Finantza pertsonalak"
-
-#~ msgid "Programs to manage your finances, such as gnucash"
-#~ msgstr "Zure finantzak kudeatzeko programak, hala nola gnucash"
-
-#~ msgid "no network card found"
-#~ msgstr "ez da sare-txartelik aurkitu"
-
-#~ msgid ""
-#~ "Mandrake Linux 9.1 has selected the best software for you. Surf the Web "
-#~ "and view animations with Mozilla and Konqueror, or read your mail and "
-#~ "handle your personal information with Evolution and Kmail"
-#~ msgstr ""
-#~ "Mandrake Linux 9.1k zuretzako software honenak aukeratu ditu. Surfeatu "
-#~ "Webean eta ikusi animazioak Mozilla eta Konquerorrekin, edo irakurri zure "
-#~ "posta eta kudeatu zure informazio pertsonalak Evolution eta Kmail erabiliz"
-
-#~ msgid "Get the most from the Internet"
-#~ msgstr "Eskuratu Internetek eman dezakeen guztia"
-
-#~ msgid "Push multimedia to its limits!"
-#~ msgstr "Sakatu multimedia bere limitera!"
-
-#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
-#~ msgstr "Ezagutu itzazu tresna grafiko eta multimedia eguneratuenak!"
-
-#~ msgid ""
-#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-#~ "strategy, ..."
-#~ msgstr ""
-#~ "Mandrake Linux 9.1k Iturburu Irekiko jokorik onenak eskaintzen ditu - "
-#~ "makina-jokoak, ekintza, estrategia, ..."
-
-#~ msgid ""
-#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
-#~ "configure your machine"
-#~ msgstr ""
-#~ "Mandrake Linux 9.1k zure makina erabat pertsonalizatu eta konfiguratzeko "
-#~ "tresna ahaltsua dauka"
-
-#~ msgid "User interfaces"
-#~ msgstr "Erabiltzaile-interfazeak"
-
-#~ msgid ""
-#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
-#~ "Source development environments"
-#~ msgstr ""
-#~ "GNU gcc 3 konpilatzailearen indar osoa erabili, baita Iturburu Irekiko "
-#~ "garapen ingurune onenak ere"
-
-#~ msgid "Development simplified"
-#~ msgstr "Garapena erraztuta"
-
-#~ msgid ""
-#~ "This firewall product includes network features that allow you to fulfill "
-#~ "all your security needs"
-#~ msgstr ""
-#~ "Suhesi produktu honek zure segurtasun beharrak hasetzeko aukera emango "
-#~ "dizun sareko ezaugarriak ditu"
-
-#~ msgid ""
-#~ "The MandrakeSecurity range includes the Multi Network Firewall product (M."
-#~ "N.F.)"
-#~ msgstr ""
-#~ "MandrakeSecurity aukeren artean Multi Network Firewall (M.N.F.) produktua "
-#~ "dauka"
-
-#~ msgid "Strategic partners"
-#~ msgstr "Kide estrategikoak"
-
-#~ msgid ""
-#~ "Whether you choose to teach yourself online or via our network of "
-#~ "training partners, the Linux-Campus catalogue prepares you for the "
-#~ "acknowledged LPI certification program (worldwide professional technical "
-#~ "certification)"
-#~ msgstr ""
-#~ "Zeure buruari lerroan edo gure entrenamendu kide sarearen bitartez "
-#~ "irakastea erabakitzen baduzu, Linux-Campus katalogoak LPI zertifikazio "
-#~ "ezagunaren programarako prestatuko zaitu (mundu zabaleko zertifikazio "
-#~ "tekniko profesionala)"
-
-#~ msgid "Certify yourself on Linux"
-#~ msgstr "Zertifikatu zure burua Linux-ekiko"
-
-#~ msgid ""
-#~ "The training program has been created to respond to the needs of both end "
-#~ "users and experts (Network and System administrators)"
-#~ msgstr ""
-#~ "Entrenamendu programa bien, erabiltzaileen eta espertuen (Sare eta "
-#~ "Sistema administratzaileak), beharrei erantzuteko sortu da"
-
-#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-#~ msgstr "Ezagutu MandrakeSoften Linux-Campus entrenamendu katalogoa"
-
-#~ msgid ""
-#~ "MandrakeClub and Mandrake Corporate Club were created for business and "
-#~ "private users of Mandrake Linux who would like to directly support their "
-#~ "favorite Linux distribution while also receiving special privileges. If "
-#~ "you enjoy our products, if your company benefits from our products to "
-#~ "gain a competititve edge, if you want to support Mandrake Linux "
-#~ "development, join MandrakeClub!"
-#~ msgstr ""
-#~ "MandrakeClub eta Mandrake Corporate Club beraien Linux banaketa "
-#~ "gogokoenari laguntzearekin batera pribilegio bereziak jasotzen dituzten "
-#~ "Mandrake Linuxen enpresa erabiltzaile eta erabiltzaile pribatuentzako "
-#~ "sortu zen. Gure produktuak gustoko badituzu, zure konpainiak gure "
-#~ "produktuengandik etekina badu lehiakortasuna lortzeko, Mandrake Linux "
-#~ "garapenari euskarri eman nahi badiozu, sartu MandrakeClubera!"
-
-#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
-#~ msgstr "Ezagutu \"MandrakeClub\" eta \"Mandrake Corporate Club\""
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#, fuzzy
-#~ msgid ""
-#~ "As a review, DrakX will present a summary of various information it has\n"
-#~ "about your system. Depending on your installed hardware, you may have "
-#~ "some\n"
-#~ "or all of the following entries:\n"
-#~ "\n"
-#~ " * \"Mouse\": check the current mouse configuration and click on the "
-#~ "button\n"
-#~ "to change it if necessary.\n"
-#~ "\n"
-#~ " * \"%s\": check the current keyboard map configuration and click on\n"
-#~ "the button to change that if necessary.\n"
-#~ "\n"
-#~ " * \"%s\": check the current country selection. If you are not in this\n"
-#~ "country, click on the button and choose another one.\n"
-#~ "\n"
-#~ " * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-#~ "primary language you have chosen. But here, just as in your choice of a\n"
-#~ "keyboard, you may not be in a country to which the chosen language\n"
-#~ "corresponds. You may need to click on the \"Timezone\" button to\n"
-#~ "configure the clock for the correct timezone.\n"
-#~ "\n"
-#~ " * \"Printer\": clicking on the \"No Printer\" 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"
-#~ " * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-#~ "click that button. This should be reserved to advanced users.\n"
-#~ "\n"
-#~ " * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-#~ "interface in \"800x600\" resolution. If that does not suits you, click "
-#~ "on\n"
-#~ "the button to reconfigure your graphical interface.\n"
-#~ "\n"
-#~ " * \"Network\": If you want to configure your Internet or local network\n"
-#~ "access now, you can by clicking on this button.\n"
-#~ "\n"
-#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
-#~ "displayed here. If you notice the sound card displayed is not the one "
-#~ "that\n"
-#~ "is actually present on your system, you can click on the button and "
-#~ "choose\n"
-#~ "another driver.\n"
-#~ "\n"
-#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-#~ "here. If you have a TV card and it is not detected, click on the button "
-#~ "to\n"
-#~ "try to configure it manually.\n"
-#~ "\n"
-#~ " * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-#~ "displayed here. You can click on the button to change the parameters\n"
-#~ "associated with the card."
-#~ msgstr ""
-#~ "Hemen zure ordenagailuari dagozkion parametroak aurkezten dira.\n"
-#~ "Instalatutako hardwarearen arabera, ondoko sarrerak ikusiko dituzu - edo\n"
-#~ "ez:\n"
-#~ "\n"
-#~ " * \"Sagua\": egiaztatu uneko sagu-konfigurazioa eta, behar izanez gero,\n"
-#~ "egin klik botoian, aldatzeko;\n"
-#~ "\n"
-#~ " * \"Teklatua\": egiaztatu uneko teklatuaren konfigurazioa eta, behar\n"
-#~ "izanez gero, egin klik botoian aldatzeko;\n"
-#~ "\n"
-#~ " * \"Ordu-zona\": DrakXk, lehenespenez, aukeratutako hizkuntzatik "
-#~ "asmatzen\n"
-#~ "du zure ordu-zona. Baina hemen ere, teklatua aukeratzean bezala, "
-#~ "baliteke\n"
-#~ "aukeratutako hizkuntzari dagokion herrialdean ez egotea zu. Horregatik,\n"
-#~ "\"Ordu-zona\" botoian klik egin beharko duzu erlojua zu zauden ordu-"
-#~ "zonaren\n"
-#~ "arabera konfiguratzeko;\n"
-#~ "\n"
-#~ " * \"Inprimagailua\": \"Inprimagailurik ez\" botoian klik eginez,\n"
-#~ "inprimagailuaren konfigurazio-morroia irekiko da;\n"
-#~ "\n"
-#~ " * \"Soinu-txartela\": zure sisteman soinu-txartel bat detektatzen bada,\n"
-#~ "hemen bistaratuko da. Instalazio-garaian ezin da aldaketarik egin;\n"
-#~ "\n"
-#~ " * \"Telebista-txartela\": zure sisteman telebista-txartel bat "
-#~ "detektatzen\n"
-#~ "bada, hemen bistaratuko da. Instalazio-garaian ezin da aldaketarik egin;\n"
-#~ "\n"
-#~ " * \"ISDN txartela\": zure sisteman ISDN txartel bat detektatzen bada,\n"
-#~ "hemen bistaratuko da. Egin klik botoian txartelaren parametroak aldatzeko."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#, fuzzy
-#~ 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.\n"
-#~ "\n"
-#~ "\"Boot device\": in most cases, you will not change the default (\"First\n"
-#~ "sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
-#~ "installed on the second hard drive (\"/dev/hdb\"), or even on a floppy "
-#~ "disk\n"
-#~ "(\"On Floppy\").\n"
-#~ "\n"
-#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-#~ "handy.\n"
-#~ "\n"
-#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
-#~ "by\n"
-#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
-#~ ">>rescue<<\n"
-#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
-#~ "at\n"
-#~ "least two situations where having a boot floppy is critical:\n"
-#~ "\n"
-#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
-#~ "(MBR)\n"
-#~ "of your main disk (unless you are using another boot manager), to allow "
-#~ "you\n"
-#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
-#~ "on\n"
-#~ "your system). If at some point you need to reinstall Windows, the "
-#~ "Microsoft\n"
-#~ "install process will rewrite the boot sector and remove your ability to\n"
-#~ "start GNU/Linux!\n"
-#~ "\n"
-#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
-#~ "disk,\n"
-#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
-#~ "a\n"
-#~ "fair number of system tools for restoring a system that has crashed due "
-#~ "to\n"
-#~ "a power failure, an unfortunate typing error, a forgotten root password, "
-#~ "or\n"
-#~ "any other reason.\n"
-#~ "\n"
-#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
-#~ "format the floppy and will rewrite the whole disk."
-#~ msgstr ""
-#~ "Mandrake Linux-en CD-ROMak berreskuratze-modua dauka barnean. Hura "
-#~ "erabili\n"
-#~ "dezakezu CD-ROMetik abiatu, >>F1<< tekla abioan sakatu eta gonbitan "
-#~ ">>rescue<<\n"
-#~ "idatziz. Baina zure ordenagailua CD-ROMetik abiatu ezin daitekeen kasuan, "
-#~ "urrats\n"
-#~ "honetara itzuli beharko zenuke laguntza bila gutxienez bi egoeratan:\n"
-#~ "\n"
-#~ " * abio-zamatzailea instalatzeko, DrakXek zure disko nagusiko abio-"
-#~ "sektorea\n"
-#~ "(MBR) berridatziko du (baldin eta ez baduzu beste abio-kudeatzaile bat\n"
-#~ "erabiltzen), Windows nahiz GNU/Linux-ekin hasi ahal zaitezen (zure "
-#~ "sisteman\n"
-#~ "Windows daukazula suposatuz). Windows berrinstalatzen baduzu,\n"
-#~ "Microsoft-en instalazio-prozesuak abioko sektorea berridatziko du, eta "
-#~ "gero\n"
-#~ "ezin izango duzu GNU/Linux abiarazi!\n"
-#~ "\n"
-#~ " * arazoren bat sortzen bada eta GNU/Linux disko zurrunetik abiarazi ezin "
-#~ "baduzu,\n"
-#~ "diskete hau izango da GNU/Linux abiarazteko bide bakarra. Sistema-tresna "
-#~ "ugari ditu, argindarra eten, idazketa-akats tamalgarri bat, pasahitz "
-#~ "batean akatsa, edo\n"
-#~ "beste edozein arrazoigatik hondatu den sistema berreskuratzeko.\n"
-#~ "\n"
-#~ "\"Bai\" esaten baduzu, unitatean diskete bat sartzea eskatuko zaizu. "
-#~ "Sartuko\n"
-#~ "duzun disketea hutsik egon behar da edo dituen datuak ez dira beharrezko "
-#~ "izan\n"
-#~ "behar. Ez duzu eratu beharko, DrakX-ek disko osoa gainidatziko baitu."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#, fuzzy
-#~ msgid ""
-#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-#~ "handy.\n"
-#~ "\n"
-#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
-#~ "by\n"
-#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
-#~ ">>rescue<<\n"
-#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
-#~ "at\n"
-#~ "least two situations where having a boot floppy is critical:\n"
-#~ "\n"
-#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
-#~ "(MBR)\n"
-#~ "of your main disk (unless you are using another boot manager), to allow "
-#~ "you\n"
-#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
-#~ "on\n"
-#~ "your system). If at some point you need to reinstall Windows, the "
-#~ "Microsoft\n"
-#~ "install process will rewrite the boot sector and remove your ability to\n"
-#~ "start GNU/Linux!\n"
-#~ "\n"
-#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
-#~ "disk,\n"
-#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
-#~ "a\n"
-#~ "fair number of system tools for restoring a system that has crashed due "
-#~ "to\n"
-#~ "a power failure, an unfortunate typing error, a forgotten root password, "
-#~ "or\n"
-#~ "any other reason.\n"
-#~ "\n"
-#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
-#~ "format the floppy and will rewrite the whole disk."
-#~ msgstr ""
-#~ "Mandrake Linux-en CD-ROMak berreskuratze-modua dauka barnean. Hura "
-#~ "erabili\n"
-#~ "dezakezu CD-ROMetik abiatu, >>F1<< tekla abioan sakatu eta gonbitan "
-#~ ">>rescue<<\n"
-#~ "idatziz. Baina zure ordenagailua CD-ROMetik abiatu ezin daitekeen kasuan, "
-#~ "urrats\n"
-#~ "honetara itzuli beharko zenuke laguntza bila gutxienez bi egoeratan:\n"
-#~ "\n"
-#~ " * abio-zamatzailea instalatzeko, DrakXek zure disko nagusiko abio-"
-#~ "sektorea\n"
-#~ "(MBR) berridatziko du (baldin eta ez baduzu beste abio-kudeatzaile bat\n"
-#~ "erabiltzen), Windows nahiz GNU/Linux-ekin hasi ahal zaitezen (zure "
-#~ "sisteman\n"
-#~ "Windows daukazula suposatuz). Windows berrinstalatzen baduzu,\n"
-#~ "Microsoft-en instalazio-prozesuak abioko sektorea berridatziko du, eta "
-#~ "gero\n"
-#~ "ezin izango duzu GNU/Linux abiarazi!\n"
-#~ "\n"
-#~ " * arazoren bat sortzen bada eta GNU/Linux disko zurrunetik abiarazi ezin "
-#~ "baduzu,\n"
-#~ "diskete hau izango da GNU/Linux abiarazteko bide bakarra. Sistema-tresna "
-#~ "ugari ditu, argindarra eten, idazketa-akats tamalgarri bat, pasahitz "
-#~ "batean akatsa, edo\n"
-#~ "beste edozein arrazoigatik hondatu den sistema berreskuratzeko.\n"
-#~ "\n"
-#~ "\"Bai\" esaten baduzu, unitatean diskete bat sartzea eskatuko zaizu. "
-#~ "Sartuko\n"
-#~ "duzun disketea hutsik egon behar da edo dituen datuak ez dira beharrezko "
-#~ "izan\n"
-#~ "behar. Ez duzu eratu beharko, DrakX-ek disko osoa gainidatziko baitu."
-
-#~ msgid ""
-#~ "The following printers are configured. Double-click on a printer to "
-#~ "change its settings; to make it the default printer; to view information "
-#~ "about it; or to make a printer on a remote CUPS server available for Star "
-#~ "Office/OpenOffice.org/GIMP."
-#~ msgstr ""
-#~ "Ondoko inprimagailuak daude konfiguratuta. Egin klik bikoitza "
-#~ "inprimagailu batean ezarpenak aldatzeko, inprimagailua lehenesteko, "
-#~ "informazioa ikusteko, edo urruneko CUPS zerbitzari bateko inprimagailu "
-#~ "bat Star Office/OpenOffice.org-rentzat erabilgarri egiteko."
-
-#~ msgid ""
-#~ "Please enter your host name if you know it.\n"
-#~ "Some DHCP servers require the hostname to work.\n"
-#~ "Your host name should be a fully-qualified host name,\n"
-#~ "such as ``mybox.mylab.myco.com''."
-#~ msgstr ""
-#~ "Sartu zure ostalari-izena, baldin badakizu.\n"
-#~ "DHCP zerbitzari batzuek ostalari-izena behar dute funtzionatzeko.\n"
-#~ "Ostalari-izenak osoa izan behar du, erabat kualifikatua,\n"
-#~ "esate baterako, ``mybox.mylab.myco.com''."
-
-#~ msgid "DrakFloppy Error: %s"
-#~ msgstr "DrakFloppy-ren errorea: %s"
-
-#~ msgid "Launch Aurora at boot time"
-#~ msgstr "Abiarazi Aurora abioan"
-
-#~ msgid "Traditional Gtk+ Monitor"
-#~ msgstr "Gtk+ monitore tradizionala"
-
-#~ msgid "Traditional Monitor"
-#~ msgstr "Monitore tradizionala"
-
-#~ msgid "NewStyle Monitor"
-#~ msgstr "NewStyle monitorea"
-
-#~ msgid "NewStyle Categorizing Monitor"
-#~ msgstr "NewStyle kategorizatze-monitorea"
-
-#~ msgid "Secure Connection"
-#~ msgstr "Konexio segurua"
-
-#~ msgid "FTP Connection"
-#~ msgstr "FTP konexioa"
-
-#~ msgid "Mail/Groupware/News"
-#~ msgstr "Posta/Groupware/Berriak"
-
-#~ msgid "Postfix mail server, Inn news server"
-#~ msgstr "Postfix posta-zerbitzaria, Inn berri-zerbitzaria"
-
-#~ msgid "/Options"
-#~ msgstr "/Aukerak"
-
-#, fuzzy
-#~ msgid "/Autodetect jazz drives"
-#~ msgstr "Auto-detektatuta"
-
-#, fuzzy
-#~ msgid "/Autodetect modems"
-#~ msgstr "Auto-detektatuta"
-
-#, fuzzy
-#~ msgid "/Autodetect printers"
-#~ msgstr "Auto-detektatuta"
-
-#~ msgid ""
-#~ "The partition you've selected to add as root (/) is physically located "
-#~ "beyond\n"
-#~ "the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
-#~ "If you plan to use the LILO boot manager, be careful to add a /boot "
-#~ "partition"
-#~ msgstr ""
-#~ "Erro gisa gehitzeko hautatu duzun partizioa (/) fisikoki disko "
-#~ "gogorraren\n"
-#~ "1024. zilindroaz haratago dago, eta ez duzu /boot partiziorik.\n"
-#~ "LILO abioko kudeatzailea erabiltzeko asmoa baduzu, ez ahaztu /boot "
-#~ "partizioa gehitzea"
-
-#~ msgid ""
-#~ "Sorry I won't accept to create /boot so far onto the drive (on a cylinder "
-#~ "> 1024).\n"
-#~ "Either you use LILO and it won't work, or you don't use LILO and you "
-#~ "don't need /boot"
-#~ msgstr ""
-#~ "Ezin dut onartu /boot hain urrun sortzea unitatean (zilindroa > 1024).\n"
-#~ "Edo LILO erabiltzen duzu eta ez du funtzionatuko, edo ez duzu LILO "
-#~ "erabiltzen eta ez duzu /boot erabili beharrik"
-
-#~ msgid "Do you want to configure another printer?"
-#~ msgstr "Beste inprimagailu bat konfiguratu nahi duzu?"
-
-#~ msgid "Know how to use this printer"
-#~ msgstr "Ikasi inprimagailua erabiltzen"
-
-#~ msgid "Preparing Printerdrake..."
-#~ msgstr "Printerdrake prestatzen..."
-
-#~ msgid "Reading printer data ..."
-#~ msgstr "Inprimagailu-datuak irakurtzen..."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#~ msgid ""
-#~ "You must indicate where you wish to place the information required to "
-#~ "boot\n"
-#~ "GNU/Linux.\n"
-#~ "\n"
-#~ "Unless you know exactly what you are doing, choose \"First sector of "
-#~ "drive\n"
-#~ "(MBR)\"."
-#~ msgstr ""
-#~ "GNU/Linux-ekin abiarazteko behar den informazioa non kokatu nahi duzun\n"
-#~ "adierazi behar duzu.\n"
-#~ "\n"
-#~ "Zer egiten ari zaren oso ongi ez badakizu, aukeratu \"Unitateko lehen\n"
-#~ "sektorea (MBR)\"."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#~ msgid ""
-#~ "DrakX now needs to know if you want to perform a default (\"Recommended"
-#~ "\")\n"
-#~ "installation or if you want to have greater control (\"Expert\") over "
-#~ "your\n"
-#~ "installation. You can also choose to do a new installation or upgrade "
-#~ "your\n"
-#~ "existing Mandrake Linux system:\n"
-#~ "\n"
-#~ " * \"Install\": completely wipes out the old system. However, depending "
-#~ "on\n"
-#~ "what is currently installed on your machine, you may be able to keep "
-#~ "some\n"
-#~ "old partitions (Linux or otherwise) unchanged;\n"
-#~ "\n"
-#~ " * \"Upgrade\": this installation class allows to simply update the\n"
-#~ "packages currently installed on your Mandrake Linux system. It keeps "
-#~ "your\n"
-#~ "hard drives' current partitions as well as user configurations. All "
-#~ "other\n"
-#~ "configuration steps remain available, similar to a normal installation;\n"
-#~ "\n"
-#~ " * \"Upgrade Packages Only\": this new installation class allows you to\n"
-#~ "upgrade an existing Mandrake Linux system while keeping all system\n"
-#~ "configurations unchanged. Adding new packages to the current "
-#~ "installation\n"
-#~ "is also possible.\n"
-#~ "\n"
-#~ "Upgrades should work fine on Mandrake Linux systems using version \"8.1"
-#~ "\"\n"
-#~ "or later.\n"
-#~ "\n"
-#~ "Depending on your GNU/Linux knowledge, select one of the following "
-#~ "choices:\n"
-#~ "\n"
-#~ " * Recommended: choose this if you have never installed a GNU/Linux\n"
-#~ "operating system. The installation will be very easy and you will only "
-#~ "be\n"
-#~ "asked a few questions;\n"
-#~ "\n"
-#~ " * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
-#~ "perform a highly customized installation. Some of the decisions you will\n"
-#~ "have to make may be difficult if you do not have good GNU/Linux "
-#~ "knowledge,\n"
-#~ "so it is not recommended that those without a fair amount of experience\n"
-#~ "select this installation class."
-#~ msgstr ""
-#~ "DrakXk lehenetsitako instalazioa (\"Gomendatua\") egin nahi duzun edo\n"
-#~ "kontrol handiagoa eduki nahi duzun (\"Aditua\") jakin behar du orain.\n"
-#~ "Gainera, instalazio berri bat egin dezakezu edo lehendik dagoen Mandrake\n"
-#~ "Linux sistema eguneratu dezakezu.\n"
-#~ "\n"
-#~ " * \"Instalatu\": sistema zaharra erabat garbituko da. Makinan "
-#~ "daukazunaren\n"
-#~ "arabera, partizio zahar batzuk (Linux-enak edo beste batzuenak) aldatu "
-#~ "gabe\n"
-#~ "mantendu ahal izango dituzu.\n"
-#~ "\n"
-#~ " * \"Bertsio-berritu\": instalazio-klase honekin lehendik Mandrake Linux\n"
-#~ "sisteman instalatuta dauzkazun paketeak eguneratuko dira, besterik gabe.\n"
-#~ "Disko gogorretako partizioak eta erabiltzaileen konfigurazioak "
-#~ "mantenduko\n"
-#~ "ditu. Gainerako konfigurazio-urratsak erabilgarri egongo dira instalazio\n"
-#~ "arrunterako;\n"
-#~ "\n"
-#~ " * \"Paketeak bakarrik bertsio-berritu\": klase berri honekin lehendik\n"
-#~ "daukazun Mandrake Linux sistema bertsio-berrituko duzu\n"
-#~ "sistema-konfigurazioa batere aldatu gabe. Uneko instalazioan pakete "
-#~ "berriak\n"
-#~ "ere gehitu ahal izango dituzu.\n"
-#~ "\n"
-#~ "Bertsio-berritzeek ongi funtzionatuko dute \"8.1\" bertsiotik aurrerako\n"
-#~ "Mandrake Linux sistemetan.\n"
-#~ "\n"
-#~ "GNU/Linux zenbateraino ezagutzen duzun kontuan hartuta, hautatu aukera\n"
-#~ "hauetako bat:\n"
-#~ "\n"
-#~ " * Gomendatua: aukeratu hau GNU/Linuxsistema eragilea inoiz instalatu ez\n"
-#~ "baduzu. Instalazioa oso erraza izango da eta galdera batzuk besterik ez\n"
-#~ "zaizkizu egingo;\n"
-#~ "\n"
-#~ " * Aditua GNU/Linux ongi ezagutzen baduzu, instalazio-klase hau aukera\n"
-#~ "dezakezu. Instalazio adituak oso instalazio pertsonalizatua egiteko "
-#~ "aukera\n"
-#~ "emango dizu. Galdera batzuei erantzutea zaila izan daiteke GNU/Linux "
-#~ "ongi\n"
-#~ "ezagutzen ez baduzu, beraz ez ezazu aukeratu baldin eta zer egiten ari\n"
-#~ "zaren ez badakizu."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#~ msgid "Please be patient. This operation can take several minutes."
-#~ msgstr "Izan pazientzia. Eragiketa honek minutu batzuk beharko ditu."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#~ msgid ""
-#~ "Your new Mandrake Linux operating system is currently being installed.\n"
-#~ "Depending on the number of packages you will be installing and the speed "
-#~ "of\n"
-#~ "your computer, this operation could take from a few minutes to a\n"
-#~ "significant amount of time.\n"
-#~ "\n"
-#~ "Please be patient."
-#~ msgstr ""
-#~ "Mandrake Linux sistema eragile berria instalatzen ari da orain. "
-#~ "Instalatu\n"
-#~ "beharreko paketeen eta ordenagailuaren abiaduraren arabera, eragiketa "
-#~ "honek\n"
-#~ "minutu batzuk edo denbora dezente beharko du.\n"
-#~ "\n"
-#~ "Izan pazientzia."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#~ msgid ""
-#~ "X (for X Window System) is the heart of the GNU/Linux graphical "
-#~ "interface\n"
-#~ "on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-#~ "WindowMaker, etc.) bundled with Mandrake Linux rely.\n"
-#~ "\n"
-#~ "You will be presented the list of available resolutions and color depth\n"
-#~ "available for your hardware. Choose the one that best suit your needs "
-#~ "(you\n"
-#~ "will be able to change that after installation though). When you are\n"
-#~ "satisfied with the sample shown in the monitor, click \"OK\". A window "
-#~ "will\n"
-#~ "then appear and ask you if you can see it.\n"
-#~ "\n"
-#~ "If you are doing an \"Expert\" installation, you will enter the X\n"
-#~ "configuration wizard. See the corresponding section of the manual for "
-#~ "more\n"
-#~ "information about this wizard.\n"
-#~ "\n"
-#~ "If you can see the message during the test, and answer \"Yes\", then "
-#~ "DrakX\n"
-#~ "will proceed to the next step. If you cannot see the message, it simply\n"
-#~ "means that the configuration was wrong and the test will automatically "
-#~ "end\n"
-#~ "after 10 seconds, restoring the screen. Refer then to the video\n"
-#~ "configuration section of the user guide for more information on how to\n"
-#~ "configure your display."
-#~ msgstr ""
-#~ "X (X Window sistema) GNU/Linux-en interfaze grafikoaren bihotza da, eta\n"
-#~ "Mandrake Linux-en dauden ingurune grafiko guztiak (KDE, GNOME, "
-#~ "AfterStep,\n"
-#~ "WindowMaker, etab.) horren araberakoak dira. Atal honetan,Xautomatikoki\n"
-#~ "konfiguratzen saiatuko da DrakX.\n"
-#~ "\n"
-#~ "Oso gutxitan huts egiten du, baldin eta hardwarea ez bada oso zaharra "
-#~ "(edo\n"
-#~ "oso berria). Ongi badoa, X automatikoki abiaraziko du ahalik eta\n"
-#~ "bereizmenik onenarekin, monitorearen tamainaren arabera. Orduan leiho "
-#~ "bat\n"
-#~ "agertuko da eta ikus dezakezun galdetuko dizu.\n"
-#~ "\n"
-#~ "\"Aditu\" instalazioa egiten ari bazara, X konfiguratzeko morroian "
-#~ "sartuko\n"
-#~ "zara. Ikus eskuliburuan dagokion atala morroi honi buruzko informazio\n"
-#~ "gehiago lortzeko.\n"
-#~ "\n"
-#~ "Mezua ikus badezakezu eta \"Bai\" erantzun baduzu, DrakX hurrengo "
-#~ "urratsera\n"
-#~ "joango da. Mezua ezin baduzu ikusi, konfigurazioa okerra dela esan nahi "
-#~ "du,\n"
-#~ "eta proba automatikoki bukatuko da 10 segundo igarota; pantaila "
-#~ "leheneratu\n"
-#~ "egingo da."
-
-#~ msgid "Switching between ALSA and OSS help"
-#~ msgstr "ALSA eta OSS bitarteko aldaketa egiteko laguntza"
-
-#~ msgid "Detecting devices ..."
-#~ msgstr "Gailuak detektatzen..."
-
-#~ msgid "Test ports"
-#~ msgstr "Probatu atakak"
+#~ msgid "can't change lilo message"
+#~ msgstr "ezin da lilo mezua aldatu"
diff --git a/perl-install/share/po/fa.po b/perl-install/share/po/fa.po
deleted file mode 100644
index 3d9e1f2b9..000000000
--- a/perl-install/share/po/fa.po
+++ /dev/null
@@ -1,21186 +0,0 @@
-# translation of DrakX-fa.po to Persian
-# translation of DrakX_1.po to Persian
-# translation of DrakX.po to Persian
-# Copyright (C) 2003 Free Software Foundation, Inc.
-# Abbas Izad <abbasizad@hotmail.com>, 2003
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: DrakX-fa\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
-"PO-Revision-Date: 2003-09-21 21:51+0200\n"
-"Last-Translator: Abbas Izad <abbasizad@hotmail.com>\n"
-"Language-Team: Persian\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "پویش قسمت‌بندی‌ها برای ÛŒØ§ÙØªÙ† نقاط سوار سازی "
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr ""
-"اگر گزینه آری انتخاب شده است، گذاشتن/برداشتن امتیازات پرونده‌های مدیریت را "
-"کنترل نمایید."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s به نام میزبان، نشانی MAC، آی پی, تصویر-nbi، 0/1 برای THIN_CLIENT, 0/1 "
-"برای تنظیم محلی...احتیاج دارد\n"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr "تنظیم تغییر کرده است - آیا clusternfs/dhcpd دوباره شروع شود؟ "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tپاک کردن=%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"ذخیره‌های پشتیبان ØªÙØ§ÙˆØªÛŒ پرونده‌هایی Ú©Ù‡ تغییر کرده‌اند یا جدیدتر از ذخیره "
-"پشتیبان پایه اصلی هستند را ذخیره می‌کند."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "network printer port"
-msgstr "درگاه چاپگر شبکه"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Ù„Ø·ÙØ§ دیسکچه را وارد نمایید:"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr "DrakTermServ"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"جدول قسمت‌بندی ذخیره شده‌ی پشتیبان با اصل جدول هم‌اندازه نمی‌باشد\n"
-"با این حال ادامه می‌دهید؟"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Which username"
-msgstr "کدام نام کاربر"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "Ú†Ù‡ نوع ورودی می‌خواهید اضاÙÙ‡ نمایید؟"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Restore partition table"
-msgstr "بازسازی جدول قسمت‌بندی"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure hostname..."
-msgstr "در حال تنظیم نام میزبان..."
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "بر کارگزار CUPS \"%s\""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Post-install configuration"
-msgstr "تنظیم بعد از نصب"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
-msgstr ""
-"سطح امنیتی کنونی %s می‌باشد\n"
-"اجازه‌ها را برای دیدن/ویرایش انتخاب نمایید"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از ``%s'' بجایش"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Type"
-msgstr "نوع"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"چاپگرهای تنظیم شده‌ با پرونده‌های PPD که بوسیله تولید کننده آنها یا کارگزارهای "
-"بومی CUPS عرضه شده‌اند نمی‌توانند منتقل شوند."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "سریلانکا"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"چاپگر ذیل\n"
-"\n"
-"%s%s\n"
-"مستقیما به سیستم شما وصل شده است"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
-msgstr "جمهوری مرکزی Ø¢ÙØ±ÛŒÙ‚ا"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "دستگاه دروازه"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Advanced preferences"
-msgstr "ترجیحات Ù¾ÛŒØ´Ø±ÙØªÙ‡"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Net Method:"
-msgstr "روش شبکه:"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Ethernetcard"
-msgstr "کارت شبکه"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
-msgstr "اگر گزیده شده، گزارش پستی را به این نشانی وگرنه به مدیر Ø¨ÙØ±Ø³ØªÛŒØ¯"
-
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr "اجزا"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "no"
-msgstr "نه"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Auto-detect"
-msgstr "Ú©Ø´Ù-خودکار"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface:"
-msgstr "واسط:"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Select installation class"
-msgstr "انتخاب رده‌ی نصب"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"بنظر نمی‌رسد که سیستم به شبکه اینترنت وصل شده باشد.\n"
-"سعی کنید ارتباط خود را دوباره تنظیم نمایید."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
-msgstr ""
-"چاپگر خود را به یک کارگزار لینوکس وصل کرده و اجازه دهید ماشین(های) ویندوزتان "
-"مانند کارگیر به آن ارتباط بگیرند.\n"
-"\n"
-"آیا واقعا می‌خواهید به تنظیم کردن این چاپگر ادامه دهید؟ "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belarus"
-msgstr "بلاروس"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Error writing to file %s"
-msgstr "خطا هنگام نوشتن در پرونده %s"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result to syslog"
-msgstr "نتیجه کنترل به ثبت سیستم گزارش شود"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
-msgstr ""
-"شبح apmd برای مراقبت از وضعیت باتری Ùˆ ثبت آن از طریق syslog Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود.\n"
-"همچنین می‌توان از آن برای خاموش کردن رایانه وقتی باتری ضعی٠شده Ø§Ø³ØªÙØ§Ø¯Ù‡ شود."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tape to backup"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از نوار برای ذخیره‌ی رزرو"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "بسته‌های ذیل نصب خواهند شد"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS configuration"
-msgstr "تنظیم CUPS"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total progress"
-msgstr "ÙØ±Ø§Ø±ÙˆÙ†Ø¯ Ú©Ù„"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "ÙØ¶Ø§ÛŒ آزاد کاÙÛŒ برای جای دادن قسمت‌بندهای جدید وجود ندارد"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "در حال انتقال"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-"\n"
-"ÙØ¹Ø§Ù„یت‌های Drakbackup از طریق %s:\n"
-"\n"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "yes"
-msgstr "بله"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr "("
-
-#: ../../network/netconnect.pm:1
-#, c-format
-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 ""
-"به جادوگر تنظیم شبکه خوش آمدید.\n"
-"\n"
-"ما بزودی ارتباط اینترنت/شبکه شما را تنظیم می‌کنیم.\n"
-"اگر نمی‌خواهید از Ú©Ø´Ù‌خودکار Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید، جعبه کنترل را علامت نزنید.\n"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ")"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "لبنان"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Stop"
-msgstr "ایست"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Edit selected host"
-msgstr "ویرایش میزبان انتخاب شده"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD device defined!"
-msgstr "هیچ دستگاه CD تایین نشده!"
-
-#: ../../network/shorewall.pm:1
-#, fuzzy, c-format
-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 ""
-"Ù„Ø·ÙØ§Ù‹ نام واسطی را Ú©Ù‡ به اینترنت ارتباط دارد را وارد نمایید.\n"
-"\n"
-"نمونه‌ها:\n"
-"\t\tppp+ برای مودم یا ارتباطات DSL, \n"
-"\t\teth0, یا eth1 برای ارتباطات با کابل, \n"
-"\t\tippp+ برای یک ارتباط isdn.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tØ§Ø³ØªÙØ§Ø¯Ù‡ از پرونده های .backupignore\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "بلغاری"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP start ip"
-msgstr "ip شروع DHCP"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "256 kB"
-msgstr "۲۵۶ کیلوبایت"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Don't rewind tape after backup"
-msgstr " بدون بازگرد به اول نوار بعد از ذخیره‌ی پشتیبان"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "گزینه‌های اصلی بارگزار آغازگر"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
-msgstr ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
-
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Tape"
-msgstr "نوار"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Malaysia"
-msgstr "مالزی"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning network..."
-msgstr "پویش شبکه..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"با این گزینه شما قادر به بازسازی هر نسخه\n"
-"از شاخه /etc خود خواهید شد."
-
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr "تغییر انجام شد، می‌خواهید سرویس dm را دوباره شروع نمایید؟"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (French layout)"
-msgstr "سوئیس (طرح ÙØ±Ø§Ù†Ø³ÙˆÛŒ)"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "برنامه mkraid شکست خورد (شاید ابزار raidtools وجود ندارند؟)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "August"
-msgstr "اوت"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "FTP server"
-msgstr "کارگزار NTP"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Webcam"
-msgstr "دوربین وب"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "اندازه‌ی Ø­Ø§ÙØ¸Ù‡â€ŒÛŒ پنهان (سطح دوم) cpu"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Soundcard"
-msgstr "کارت صدا"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Month"
-msgstr "ماه"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search for files to restore"
-msgstr "جستجو برای پرونده‌ها برای بازسازی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Luxembourg"
-msgstr "لوکزامبورگ"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"برای چاپ یک پرونده از خط دستور (پنجره پایانه) از دستور مقابل Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید "
-"\"%s <file>\" .\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Level %s\n"
-msgstr "سطح %s\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac (phonetic)"
-msgstr "سیریاک (صوتی)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Iran"
-msgstr "ایران"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus"
-msgstr "گذرگاه"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Iraq"
-msgstr "عراق"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "connecting to %s ..."
-msgstr "در حال ارتباط به %s..."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "احتمال اختلال نشانی LAN در تنظیم کنونی %s ÛŒØ§ÙØª شد!\n"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring..."
-msgstr "در حال تنظیم..."
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
-msgstr ""
-"برای بیشتر کارت‌های تلویزیون، بخش bttv در هسته‌ی لینوکس/GNU اجزای درست را بطور "
-"خودکارشناسایی می‌کند.\n"
-"اگر کارت شما اشتباه شناسایی شد، می‌توانید انواع درست کارت و میزان کننده را در "
-"اینجا وارد نمایید. Ùقط اجزای کارت هود را در صورت لزوم انتخاب نمایید."
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Password (again)"
-msgstr "گذرواژه (دوباره):"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search installed fonts"
-msgstr "جستجو برای قلم‌های نصب شده"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default desktop"
-msgstr "رومیزی Ù¾ÛŒØ´â€ŒÙØ±Ø¶"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
-msgstr ""
-"برای ÙØ±Ø³ØªØ§Ø¯Ù† گزارش اشکال، تکمه‌ی گزارش را کلیک نمایید.\n"
-"این یک پنجره‌ی مرورگر وب را به نشانی %s باز می‌کند \n"
-"در آن جا شما یک پرسشنامه را برای پر کردن می‌یابید. اطلاعات نشان داده شده در "
-"بالا\n"
-"به آن کارگزار منتقل خواهد شد"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr "ونزوئلا"
-
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "IP address"
-msgstr "نشانی IP"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "انتخاب اندازه‌ها"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"‌لیست داده‌های خراب شده:\n"
-"\n"
-
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
-msgstr ""
-"Ùقط می‌تواند صریحا سوار شود (\n"
-"گزینه -a باعث سوار شدن سیستم پرونده‌ای نخواهد شد)."
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"مودم شما بوسیله‌ی سیستم حمایت نمی‌شود.\n"
-"نگاهی به پایگاه http://www.linmodems.org بیاندازید"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose another partition"
-msgstr "انتخاب یک قسمت‌بندی دیگر"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Current user"
-msgstr "کاربر کنونی"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
-msgstr "نام ‌کاربر"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "تکمه‌ی چپ \"ویندوز\" "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "گویانا"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "تنظیم کارگزار dhcpd"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Ø§Ø³ØªÙØ§Ø¯Ù‡ شده برای شاخه:\n"
-"Ùقط صاحب شاخه یا پرونده در این شاخه می‌تواند آن را حذ٠کند"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr "بر کارگزار Novell \"%s\"، چاپگر \"%s\""
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Name"
-msgstr "نام چاپگر"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
-msgstr ""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
-msgstr "برداشتن یک بخش"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Password"
-msgstr "گذرواژه"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Advanced Configuration"
-msgstr "تنظیم Ù¾ÛŒØ´Ø±ÙØªÙ‡"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr "پویش بر دستگاه چند-عملیاتی HP شما"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "مدیر"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "انتخاب یک RAID موجود برای اضاÙÙ‡ کردن به آن"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "ترکی (مدل \"Q\" جدید)"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo message not found"
-msgstr "پیغام Lilo ÛŒØ§ÙØª نشد"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"تولید مجدد خودکار سرآیند هسته در شاخه /boot برای \n"
-"/usr/include/linux/{autoconf,version}.h"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
-msgstr "اگر لازم است"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Failed..."
-msgstr "بازسازی شکست خورد..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "انبار گذرواژه برای این سیستم در تنظیمات پشتیبان‌درایک."
-
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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 ""
-"دستورالعمل\n"
-"\n"
-"سیستم عامل و اجزای دیگر موجود در انتشار لینوکس مان‌دراکه از این به بعد\n"
-" \"محصولات Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±ÛŒ\" خوانده خواهند شد. محصولات Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±ÛŒ شامل\n"
-"یک مجموعه از Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±â€ŒÙ‡Ø§ØŒ روش‌ها، قواعد Ùˆ اسناد مربوط به سیستم عامل Ùˆ\n"
-"اجزای مختل٠انتشار لینوکس ماندراکه می‌باشد.\n"
-"\n"
-"\n"
-"۱. قرارداد اجازه نامه \n"
-"\n"
-"Ù„Ø·ÙØ§ این سند را با دقت بخوانید. این سند یک قرارداد اجازه نامه بین شما Ùˆ \n"
-"شرکت MandrakeSoft S.A می‌باشد Ú©Ù‡ شامل محصولات Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±ÛŒ می‌شود.\n"
-"بوسیله تصب، Ú©Ù¾ÛŒ کردن یا Ø§Ø³ØªÙØ§Ø¯Ù‡ از محصولات Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±ÛŒ به هر طریق، شما \n"
-"صریحا شروط این اجازه نامه را Ù¾Ø°ÛŒØ±ÙØªÙ‡ Ùˆ قبول کرده‌اید. اگر شما مواÙÙ‚ با هر\n"
-"قسمت از اجازه نامه نمی‌باشید، شما اجازه نصب، کپی‌ کردن یا Ø§Ø³ØªÙØ§Ø¯Ù‡ از \n"
-"محصولات Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±ÛŒ را ندارید.\n"
-"هر تلاشی برای نصب، Ú©Ù¾ÛŒ کردن یا Ø§Ø³ØªÙØ§Ø¯Ù‡ از محصولات Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±ÛŒ به طوری\n"
-"که با شروط این اجازه نامه تطابق نداشته باشد هیچ ‌شده و امتیارات شما را تحت\n"
-"این اجازه نامه پایان می‌بخشد. با پایان اجازه نامه، شما باید Ø¨Ù„Ø§ÙØ§ØµÙ„Ù‡ تمام "
-"کپی‌های \n"
-"محصولات Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±ÛŒ را نابود نمایید. \n"
-"\n"
-"\n"
-"۲. ضمانت محدود\n"
-"\n"
-"محصولات Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±ÛŒ Ùˆ سند همراه بطور \"as is\" عرضه شده‌اند، بدون ضمانت\n"
-"تا جایی که قانون اجازه می‌دهد.\n"
-"شرکت MandrakeSoft S.A. در هیچ شرایطی و تا جایی که قانون اجازه می‌دهد،\n"
-"مسئول هر Ø§ØªÙØ§Ù‚ مخصوص، هر خرابی مستقیم یا غیر مستقیم (شامل خرابی‌های نامحدود\n"
-"برای از دست دادن شغل، اشکالات شغلی، ضرر مالی و جریمه‌های از طر٠یک دادگاه\n"
-"یا هر ضرر متعاقب دیگر) پی‌آمد Ø§Ø³ØªÙØ§Ø¯Ù‡ یا ناتوانی Ø§Ø³ØªÙØ§Ø¯Ù‡ از محصولات "
-"Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±ÛŒØŒ \n"
-"حتی اگر MandrakeSoft S.A.از احتمال یا پیش‌آمد چنین خرابی‌هایی مطلع شده باشد \n"
-"نخواهد بود.\n"
-"\n"
-"مسئولیت محدود مربوط به داشتن یا Ø§Ø³ØªÙØ§Ø¯Ù‡ Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± ممنوعه در بعضی از کشورها\n"
-"\n"
-"شرکت MandrakeSoft S.A. یا ناشران آن در هیچ شرایطی و تا جایی که قانون اجازه "
-"می‌دهد،\n"
-"مسئول هر Ø§ØªÙØ§Ù‚ مخصوص، هر خرابی مستقیم یا غیر مستقیم (شامل خرابی‌های نامحدود\n"
-"برای از دست دادن شغل، اشکالات شغلی، ضرر مالی و جریمه‌های از طر٠یک دادگاه\n"
-"یا هر ضرر متعاقب دیگر) پی‌آمد داشتن ÙˆØ§Ø³ØªÙØ§Ø¯Ù‡ یا بارگیری محصولات Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±ÛŒ از "
-"یکی \n"
-"از پایگاه‌های لینوکس ماندراکه که در بعضی از کشورها بوسیله قانون محلی ممنوع یا "
-"محدود می‌باشند \n"
-"نخواهد بود. این مسئولیت محدود برای اجزای رمزگذاری قوی، ولی نه تنها آنها، که "
-"در\n"
-"محصولات Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±ÛŒ وجود دارند می‌باشد.\n"
-"\n"
-"\n"
-"۳. اجازه نامه GPL و اجازه نامه‌های مربوطه\n"
-"\n"
-"محصولات Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±ÛŒ حاوی برنامه‌هایی ساخته شده توسط اشخاص Ùˆ واحدهای گوناگون "
-"می‌باشد.\n"
-"بیشتر این برنامه‌ها تحت شروط اجازه نامه عمومی مردمی GNU، از این به بعد به "
-"\"GPL\" خوانده\n"
-" خواهد شد، یا اجازه نامه‌های مشابه اداره می‌شوند. بیشتر این اجازه نامه‌ها به "
-"شما اجازه Ø§Ø³ØªÙØ§Ø¯Ù‡ØŒ \n"
-"Ú©Ù¾ÛŒ کردن، اختیار کردن یا انتشار مجدد Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± پوشش دهنده خود را می‌دهند. Ù„Ø·ÙØ§ "
-"شروط \n"
-"این تواÙق‌نامه‌های Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± را قبل از Ø§Ø³ØªÙØ§Ø¯Ù‡ از آنها با دقت بخوانید. سوالات "
-"مربوط به اجازه نامه \n"
-"Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± بایستی به نویسنده‌ی آن Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± ونه مان‌دراکه ÙØ±Ø³ØªØ§Ø¯Ù‡ شود. برنامه‌های "
-"تهیه شده بوسیله \n"
-"ماندراکه توسط اجازه نامه‌ی GPL اداره می‌شوند. اسناد نوشته شده توسط "
-"MandrakeSoft S.A. تحت \n"
-"اجازه نامه‌ی مخصوص اداره می‌شوند. Ù„Ø·ÙØ§ به این اسناد برای توضیحات بیشتر مراجعه "
-"نمایید.\n"
-"\n"
-"\n"
-"۴. حقوق مالکیت نبوغی \n"
-"تمام حقوق برنامه‌های محصولات Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±ÛŒ به نویسندگان هر یک از آنها تعلق داشته "
-"و بوسیله \n"
-"مالکیت نبوغی Ùˆ قوانین حق امتیاز برنامه‌های Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±ÛŒ Ø­ÙØ§Ø¸Øª می‌شوند. \n"
-"شرکت MandrakeSoft S.A.حقوق امتیازی خود را برای تغییر یا ÙˆÙÙ‚ دادن محصولات "
-"Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±ÛŒ \n"
-"بطور کامل یا قسمت‌هایی از آنها، در هر صورت Ùˆ برای هر منظور محÙوظ می‌دارد. \n"
-"\"Mandrake\", \"Mandrake Linux\"علائم مربوطه مارک‌های بازرگانی و MandrakeSoft "
-"S.A. می باشند. \n"
-"\n"
-"\n"
-"۵. اجرای قوانین \n"
-"\n"
-"اگر هر قسمت از این تواÙÙ‚ نامه توسط یک Ø­Ú©Ù… دادگاه نادیده، غیرقانونی یا غیر "
-"قابل اجرا تشخیص داده شود، \n"
-"این قسمت از این قرارداد حذ٠می‌شود. شما توسط قسمت‌های دیگر قابل اجرای قرارداد "
-"مسئول باقی \n"
-"خواهید ماند. \n"
-"شروط این اجازه نامه توسط قوانین کشور ÙØ±Ø§Ù†Ø³Ù‡ تصویب Ùˆ اجرا می‌شوند. \n"
-"هر اختلاÙÛŒ در شروط این اجازه نامه ترجیحا توسط دادگاه حل خواهد شد. در آخرین \n"
-"مرحله، اختلا٠به دادسرای قانون پاریس - ÙØ±Ø§Ù†Ø³Ù‡ ارجاع داده خواهد شد. \n"
-"برای هر سوالی درباره این سند Ù„Ø·ÙØ§ با MandrakeSoft S.A. تماس بگیرید.\n"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default user"
-msgstr "کاربر Ù¾ÛŒØ´â€ŒÙØ±Ø¶"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"مختصات x گوشه چپ بالای\n"
-" نوار Ù¾ÛŒØ´Ø±ÙØª"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Current interface configuration"
-msgstr "تنظیم واسط کنونی"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "شبح چاپگر خطی - LPD"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"اگر شما یک کارت ISA دارید، ارزش‌های در ØµÙØ­Ù‡ بعدی بایستی درست باشند.\n"
-"\n"
-"اگر شما یک کارت PCMCIA دارید، شما باید \"irq\" و \"io\" کارت خود را بدانید\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not print any test page"
-msgstr "هیچ ØµÙØ­Ù‡ آزمایشی چاپ نشود"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr "گورموخی"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
-msgstr "قبلا %s Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
-msgstr "اجبار هیچ APIC"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr "این گذرواژه خیلی کوتاه است (باید حداقل %d نویسه‌ای باشد)"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "[keyboard]"
-msgstr "[ØµÙØ­Ù‡â€ŒÚ©Ù„ید]"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "پراکسی FTP"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install List"
-msgstr "لیست‌ نصب"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Change\n"
-"Restore Path"
-msgstr ""
-"تغییر\n"
-"بازسازی مسیر"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Ùقط برای روز انتخاب شده نشان داده شود"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tمحدود کردن Ø§Ø³ØªÙØ§Ø¯Ù‡ ازدیسک تا %s مگابایت\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "۵۱۲ کیلوبایت"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(یادآوری: درگاه‌های موازی نمی‌توانند پویش خودکار شوند)"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "چه نوع کارتی دارید؟"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Security"
-msgstr "امنیت"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"شما همچنین می‌توانید از واسط گراÙیکی \"xpdq\" برای تنظیم گزینه‌ها Ùˆ اداره‌ی "
-"کارهای چاپی Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید. \n"
-"اگر شما از KDE برای محیط رومیزی Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کنید شما یک \"panic button\" ØŒ یک "
-"شمایل روی میز، با برچسب \"STOP Printer!\" ØŒ Ú©Ù‡ وقتی آن را کلیک کنید Ø¨Ù„Ø§ÙØ§ØµÙ„Ù‡ "
-"تمام کارهای چاپی را قطع می‌کند. این برای مثال هنگام گیر کردن کاغذ Ù…Ùید "
-"می‌باشد.\n"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "نمی‌توان ذخیره‌های پشتیبان را برای بازسازی پیدا کرد...\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown"
-msgstr "نامعلوم"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "این کارگزار قبلا در لیست وجود دارد Ùˆ نمی تواند دوباره اضاÙÙ‡ شود.\n"
-
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Network Configuration"
-msgstr "تنظیم شبکه"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"پیوندنامه برای بقیه دنیا \n"
-"بدون D-Channel (خطوط اجاره‌شده)"
-
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ این پرونده را در کنار تصویری که توسط mkinitrd-net "
-"ایجاد شده، و ورودی‌های در‌\n"
-" \t\t، پرونده‌ی /etc/dhcpd.conf برای ارائه تصویر آغازگر به هر کارگیر "
-"بدون دیسک تنظیم خواهد نمود.\n"
-"\n"
-" \t\tیک پرونده‌ی تنظیم tftp شبیه است به:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \t\tتغییرات در اینجا از نصب Ù¾ÛŒØ´â€ŒÙØ±Ø¶ پرچم ØºÛŒØ±ÙØ¹Ø§Ù„ را به نه تغییر داده "
-"و مسیر شاخه را به \n"
-" \t\t /var/lib/tftpboot تغییر می‌دهد, جایی که mkinitrd-net تصاویر خود "
-"را می‌گذارد."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "گزینه %s باید یک عدد باشد!"
-
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, c-format
-msgid "Notice"
-msgstr "توجه"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "شما X را تنظیم نکرده‌اید. آیا واقعاً مطمئن هستید که این را می‌خواهید؟ "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"تنظیم چاپگر کاملا خودکار عمل خواهد کرد. اگر چاپگر شما بدرستی شناسایی نشده یا "
-"شما تنظیم چاپگر اختصاصی را ترجیح می‌دهید، \"تنظیم دستی\" را روشن نمایید. "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "What type of partitioning?"
-msgstr "چه نوع قسمت‌بندی؟"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-" "
-msgstr ""
-"لیست پرونده ÙØ±Ø³ØªØ§Ø¯Ù‡ شده توسط FTP: %s\n"
-" "
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface"
-msgstr "واسط‌"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Multisession CD"
-msgstr "سی دی چند نشستی"
-
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated strings"
-msgstr "رشته‌های جداشده با ویرگول"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr ""
-"اینها ماشین‌هایی هستند Ú©Ù‡ پویشگرها باید از آنها مورد Ø§Ø³ØªÙØ§Ø¯Ù‡ قرار گیرند:"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Messages"
-msgstr "پیغام‌ها"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "CPH06X (bt878) ناشناس [تعدد ÙØ±ÙˆØ´Ù†Ø¯Ù‡]"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "کارگزارPOP و IMAP "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mexico"
-msgstr "مکزیک"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model stepping"
-msgstr "Model stepping"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
-msgstr "روآندا"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Switzerland"
-msgstr "سوئیس"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr "برونای داروسلام"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "آیا شما هیچ واسط %s دارید؟"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "شما باید برای خواندن پرونده تنظیم مدیر سیستم باشید.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "گرینه‌های چاپگر lpd از راه دور"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"لینوکس/گنو یک سیستم چند کاربرانه می‌باشد، بدین معنی که هر کاربر مشخصات و "
-"پرونده‌های خود را دارا \n"
-"می‌باشد. شما می‌توانید ``راهنمای مبتدی'' را برای آموختن بیشتر درباره سیستم‌های "
-"جند کاربرانه مطالعه\n"
-" نمایید. ولی برخلا٠\"root\"، که مدیر سیستم می‌باشد، کاربرانی را که شما در "
-"این مرحله اضاÙÙ‡ \n"
-"می‌کنید اجازه تغییر چیزی جز پرونده‌ها Ùˆ تنظیمات خود را ندارند. این برای Ø­ÙØ§Ø¸Øª "
-"سیستم از \n"
-"تغییرات غیر مترقبه یا خطرناکی است که تمام سیستم را تحت تاثیر قرار می‌دهد. شما "
-"حداقل باید \n"
-"یک کاربر معمولی برای خود ایجاد نمایید -- این حسابی است Ú©Ù‡ شما برای Ø§Ø³ØªÙØ§Ø¯Ù‡ "
-"روزانه خود \n"
-"باید از آن Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید.هرچند این خیلی آسان است Ú©Ù‡ مانند \"root\" وارد "
-"سیستم شده و هر \n"
-"کاری را بدون محدودیت انجام داد، ولی ممکن است این خیلی خطرناک باشد! یک "
-"اشتباه \n"
-"کوچک می‌تواند باعث شود که سیستم شما دیگر کار نکند. اگر شما مثل یک کاربر "
-"ساده \n"
-"اشتباه جدی را مرتکب شوید، بدترین چیزی Ú©Ù‡ می‌تواند Ø§ØªÙØ§Ù‚ Ø¨ÛŒØ§ÙØªØ¯ از دست دادن "
-"مقداری \n"
-"اطلاعات خواهد شد ولی تاثیری بر تمام سیستم نخواهد گذاشت.\n"
-"\n"
-"اولین منطقه نام حقیقی شما را می‌پرسد. البته این اجباری نیست -- شما می‌توانید "
-"در واقع \n"
-"هر چه می‌خواهید وارد نمایید. برنامه نصب DrakX اولین واژه را که در این منطقه \n"
-"وارد کرده‌اید به منطقه \"%s\" کپی می‌کند که این نام این کاربرای ورود به سیستم "
-"خواهد \n"
-"شد. اگر بخواهید می‌توانید Ù¾ÛŒØ´â€ŒÙØ±Ø¶ را نادیده Ú¯Ø±ÙØªÙ‡ Ùˆ نام کاربر را تغییر دهید. "
-"گام بعدی \n"
-"وارد کردن یک واژه رمز است. از نظر امنیتی یک واژه رمز (عادی) بدون امتیاز "
-"مانند \n"
-"واژه رمز \"root\" دارای حساسیت نمی‌باشد، اما آن دلیلی برای عدم Ø§Ø³ØªÙØ§Ø¯Ù‡ از آن "
-"و خالی \n"
-"گذاشتن آن یا تایین واژه رمز بسیار ساده نمی‌باشد. بلاخره این پرونده‌های شما "
-"هستند که در\n"
-" معرض خطر می‌باشند. \n"
-"\n"
-"وقتی Ú©Ù‡ شما بر روی \"%s\" کلیک نمایید، می‌توانید کاربرهای دیگری نیز اضاÙÙ‡ "
-"کنید. \n"
-"Ø§ÙØ²ÙˆØ¯Ù† یک کاربر برای هر یک از دوستان، پدرتان یا خواهرتان برای مثال. \n"
-"وقتی Ø§ÙØ²ÙˆØ¯Ù† کاربران را تمام کردید بر روی \"%s\" کلیک نمایید.\n"
-"\n"
-"با کلیک کردن بر تکمه \"%s\" به شما اجازه تغییر پوسته \"shell\"Ù¾ÛŒØ´â€ŒÙØ±Ø¶ برای \n"
-"آن کاربر (پیش‌قرض bash) داده خواهد شد.\n"
-"\n"
-"وقتی شما Ø§ÙØ²ÙˆØ¯Ù† کاربران را نمام کردید از شما برای انتخاب یک کاربر Ú©Ù‡ "
-"بتواند \n"
-"هنگام آغازگری رایانه بطور خودکار وارد سیستم شود سوال خواهد شد. اگر این مورد\n"
-"برای شما جالب بوده (و امنیت محلی اهمیت چندانی برای شما ندارد) ، کاربر دلخواه "
-"Ùˆ\n"
-"محیط کراÙیک را انتخاب نموده سپس بر روی \"%s\" کلیک نمایید. اگر شما علاقه‌ای \n"
-" به این مورد ندارید جعبه \"%s\" را غیر ÙØ¹Ø§Ù„ کنید."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Internet Access..."
-msgstr "تنظیم دسترسی به اینترنت..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Ù„Ø·ÙØ§Ù‹ زمان بین Ø¯ÙØ¹Ø§Øª هر ذخیره پشتیبان را انتخاب نمایید"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Norway"
-msgstr "نروژ"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Delete profile"
-msgstr "حذ٠نمایه"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Danish"
-msgstr "دانمارکی"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"روشن کردن خودکار کلید Ù‚ÙÙ„ اعداد، numlockØŒ در کنسول Ùˆ XFree \n"
-"هنگام آغازگری."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Ù„Ø·ÙØ§ به تنظیم نشانی اینترنتی، IPØŒ برای ابن رایانه وارد شوید. \n"
-"هر نشانی باید مانند یک نشانی اینترنتی IP به صورت عدد-نقطه \n"
-"وارد شود (مثال، ۱.۲.۳.۴)"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"نصب لینوکس Mandrake در چند سی دی پخش شده است. برنامه نصب DrakX از وجود یک \n"
-"پاکت انتخاب شده بر سی دی دیگر آگاه می‌باشد بنابرین سی دی کنونی را بیرون زده "
-"Ùˆ \n"
-"از شما می‌خواهد که سی دی مورد نیاز را وارد نمایید."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
-msgstr "اگر علامت زده شده، مالک و گروه تغییر نخواهند کرد"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "بلغارستان"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
-msgstr "سه‌شنبه"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "پروسه‌گرها"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "سوآل‌بارد و جان ماین"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No NIC selected!"
-msgstr "هیچ کارت شبکه، NIC، انتخاب نشده!"
-
-#: ../../network/netconnect.pm:1
-#, 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."
-msgstr ""
-"در طول تنظیم مشکلاتی رخ داد. ارتباط خود را از طریق net_monitor یا mcc امتحان "
-"نمایید. اگر ارتباط شما برقرار نشد شاید بخواهید تنظیم را دوباره شروع کنید. "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "قسمت‌بندی %s اکنون با %s شناخته می‌شود"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Other files..."
-msgstr "ذخیره پشتیبان پرونده‌های دیگر..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
-msgstr "کونگو (کین‌شاسا)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "نشانی IP کارگزار SMB"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "جدول قسمت‌بندی دستگاه %s به روی دیسک نوشته خواهد شد!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing HPOJ package..."
-msgstr "نصب بسته HPOJ..."
-
-#: ../../any.pm:1
-#, 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"
-msgstr ""
-"یک دیسکچه آغازگر اختصاصی، custom bootdisk، روشی از آغازگری بدرون \n"
-"سیستم لینوکس را عرضه می‌دارد که شما به بارگزار آغازگر bootloader معمولی \n"
-"وابسته نمی‌شوید. این روش اگر شما نمی‌خواهید آغازگر لینوکس، LILO (یا grub)،\n"
-" را بر سیستم خود نصب کنید، یا سیستم عامل دیگری آغازگر لینوکس را پاک کند، \n"
-"یا آغازگر لینوکس با تنظیم Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± شما کار نکند Ù…Ùید می‌باشد. \n"
-"یک دیسکچه آغازگر اختصاصی می‌تواند برای کار کردن با تصویر نجات مان‌درایک "
-"Ø§Ø³ØªÙØ§Ø¯Ù‡ \n"
-"شود که بازسازی سیستم خراب شده را بسیار آسان می‌سازد. آیا مایل هستید یک "
-"دیسکچه \n"
-"آغازگر برای سیستم خود بسازید؟ \n"
-"%s "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-msgstr ""
-"\n"
-" گزارش شبح پشتیبان‌درایک\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latvian"
-msgstr "لاتویایی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr "ماهانه"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Retry"
-msgstr "بازسازی"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr "نام بخش"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Start at boot"
-msgstr "شروع در آغازگری"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از ذخیره‌های پشتیبان Ø§ÙØ²Ø§ÛŒØ´ÛŒ"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "اولین بند دستگاه دیسک (MBR)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "ال‌سالوادور"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
-msgstr "چوب‌ بازی"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "DVD"
-msgstr "DVD"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از یونی‌کد بوسیله Ù¾ÛŒØ´â€ŒÙØ±Ø¶"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "بخشی از هسته گنو/لینوکس که این دستگاه را اداره می‌کند"
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "گذاردن ساعت Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± به GMT"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "در حال تلاش برای نجات جدول قسمت‌بندی"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "گزینه %s باید یک عدد صحیح باشد!"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
-msgstr "برای اعتبارسنجی کاربران از گذرواژه Ø§Ø³ØªÙØ§Ø¯Ù‡ شود"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
-msgstr ""
-"ورودی‌هایی که شما باید پر کنید: \n"
-"%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-"برای ذخیره‌های پشتیبان به رسانه‌های دیگر، پرونده‌ها هنوز بر دیسک سخت ایجاد شده، "
-"سپس به رسانه‌های دیگر منتقل Ù…ÛŒ شوند. ÙØ¹Ø§Ù„ کردن این گزینه پرونده‌های بسته‌بندی "
-"شده بر دیسک را بعد از ذخیره پشتیبان برخواهد داشت."
-
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
-msgstr "نمی‌توانم ارتقا را بطور زنده شروع کنم!!!\n"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "نام:"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
-msgstr ""
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "۱۶ میلیون رنگ (۲۴ بیت)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Allow all users"
-msgstr "اجازه به تمام کاربران"
-
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr "ÙØ±ÙˆØ´Ú¯Ø§Ù‡ رسمی MandrakeSoft"
-
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "تغییر اندازه"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
-msgstr ""
-"حداکثر اندازه مجاز\n"
-"برای Drakbackup (مگابایت)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Cable connection"
-msgstr "ارتباط کابلی"
-
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, c-format
-msgid "User"
-msgstr "کاربر"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "انجام ذخیره پشتیبان قبل از بازسازی (Ùقط برای ذخیره‌های پشتیبان Ø§ÙØ²Ø§ÛŒØ´ÛŒ)"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "شکست mkraid"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Name"
-msgstr "نام"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "تقلید تکمه ۳"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù†/برداشتن پرونده‌های sgid را کنترل نمایید"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files..."
-msgstr "در حال ÙØ±Ø³ØªØ§Ø¯Ù† پرونده‌ها..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "اسرائیل (Ùونه‌تیک)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
-msgstr "دسترسی به ابزار rpm"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "شما باید یک چاپگر/دستگاه را انتخاب/وارد نمایید!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "مشکل مجاز بودن برای دسترسی به سی دی."
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "شماره تلÙÙ†"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr "خطا: دستگاه \"%s\" برای کارت صدای شما در لیست وجود ندارد"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer name, description, location"
-msgstr "نام ، توضیح، مکان چاپگر"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
-msgstr "آمریکا (پخش همگانی)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از دنباله‌ی Xinerama "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "West Europe"
-msgstr "اروپای غربی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On CD-R"
-msgstr "بر CDROM "
-
-#: ../../standalone.pm:1
-#, 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"
-msgstr ""
-"[گزینه‌ها] [نام_برنامه]\n"
-"\n"
-"گزینه‌ها:\n"
-" --راهنما - این پیغام راهنما چاپ شود.\n"
-" --گزارش - برنامه باید یکی از ابزار mandrake باشد\n"
-" --حادثه - برنامه باید یکی از ابزار mandrake باشد"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake2 version %s"
-msgstr "نسخه %s Harddrake2"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Preferences"
-msgstr "ارجحیت‌ها"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr "سوازیلند"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "جمهوری دومینیک"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr "در حال کپی‌کردن %s"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Choose color"
-msgstr "انتخاب رنگ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac"
-msgstr "سیریاک"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
-
-#: ../../help.pm:1
-#, 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!"
-msgstr ""
-"دستگاه دیسکی را که می‌خواهید برای نصب قسمت‌بندی جدید لینوکس ماندرایک\n"
-"پاک کنید انتخاب نمایید. دقت کنید چون تمام داده‌های موجود بر آن از بین خواهند\n"
-"Ø±ÙØª Ùˆ دیگر نمی‌توان آنها را بازیابی نمود!"
-
-#. -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
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از کلیدهای %c Ùˆ %c برای انتخاب یک کدام از ورودی‌ها."
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "موش معمولی ۲ تکمه‌ای"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "برای اجرای پرونده \"%s\" را ÙØ¹Ø§Ù„ نمایید"
-
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr "حجم‌های منطقی اول برداشته شوند\n"
-
-#. -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
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "ورودی تایین شده در %d ثانیه بطور خودکار آغازگری خواهد شد."
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
-msgstr ""
-"نمی‌توان پرونده /etc/sysconfig/bootsplash را نوشت \n"
-"پرونده ÛŒØ§ÙØª نشد."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet access"
-msgstr "دسترسی به اینترنت"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"y coordinate of text box\n"
-"in number of characters"
-msgstr ""
-"مختصات عمودی جعبه متن \n"
-"به تعداد نویسه‌ها"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"برای Ø¯Ø±ÛŒØ§ÙØª یک لیست از گزینه‌های موجود برای چاپگر کنونی بر تکمه \"سیاهه‌ی "
-"گزینه‌های چاپ\" کلیک نمایید."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr "در حال ÙØ¹Ø§Ù„ کردن کارگزارها..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "در حال چاپ ØµÙØ­Ù‡(های) آزمایشی..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-"انتقال موÙÙ‚ بود\n"
-"ممکن است بخواهید ورود به کارگزار را با:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"بدون سوال برای گذرواژه امتحان نمایید."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "قبلا یک قسمت‌بندی با نقطه‌ی سوارسازی %s وجود دارد\n"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
-msgstr "ÙØ¹Ø§Ù„/غیر ÙØ¹Ø§Ù„ سازی کنترل امنیتی ساعتی msec."
-
-#: ../../help.pm:1
-#, 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''."
-msgstr ""
-"در این مرحله، شما باید تصمیم بگیرید در کجای دیسک خود می‌خواهید سیستم عامل \n"
-"لینوکس مان‌درایک را نصب نمایید. اگر دیسک شما خالی یا اگر یک سیستم عامل \n"
-"همه‌ی ÙØµØ§ÛŒ موجود دیسک را در اختیار دارد شما می‌بایست دیسک خود را قسمت‌بندی\n"
-" نمایید. اساسا، قسمت‌بندی یک دیسک شامل قسمت کردن منطقی آن برای ایجاد \n"
-"ÙØ¶Ø§ÛŒ لازم برای نصب سیستم لینوکس مان‌درایک جدید شما می‌باشد. \n"
-"\n"
-"بخاطر غیر قابل برگشت بودن پروسه قسمت‌بندی و اینکه می‌تواند به از دست دادن \n"
-"داده‌ها منتهی شود، مخصوصا اگر یک سیستم عامل قبلا وجود داشته و بر روی دیسک \n"
-"نصب شده باشد، اگر شما یک کاربر بی تجربه هستید قسمت‌بندی می‌تواند عصبی \n"
-"کننده و هیجان آور باشد. خوشبختانه، DrakX یک جادوگر راهنما را برای آسان "
-"ساختن \n"
-"این پروسه ضمیمه دارد. قبل از ادامه به این مرحله بقیه این بخش را بخوانید و \n"
-"بیش از هر Ú†Ù‡ وقت کاÙÛŒ را بخود بدهید.\n"
-"\n"
-"بستگی به تنظیم دیسک شما، چندین گزینه موجود می‌باشد:\n"
-"\n"
-" * \"%s\": این گزینه یک قسمت‌بندی خودکار دستگاه دیسک خالی شما را انجام "
-"می‌دهد.\n"
-"اگر شما از این گزینه Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید دیگر از شما سوال دیگری نخواهد شد. \n"
-" \n"
-" * \"%s\": جادوگر یک یا چند قسمت‌بندی موجود لینوکس را بر روی دیسک شما "
-"شناسایی\n"
-"کرده است. اگر شما می‌خواهید از آنها Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید این گزینه را انتخاب نمایید. "
-"سپس \n"
-"از شما پرسیده خواهد شد که نقاط سوارسازی مربوط به هر قسمت‌بندی را انتخاب \n"
-"نمایید. نقاط سوارسازی صحیح بوسیله‌ی Ù¾ÛŒØ´â€ŒÙØ±Ø¶ انتخاب خواهند شد، در بیشتر \n"
-"موارد نظر خوبی است که آنها را نگه دارید.\n"
-"\n"
-" * \"%s\": اگر ویندوز Ù…Ø§ÛŒÚ©Ø±ÙˆØ³Ø§ÙØª بر دیسک شما نصب شده است Ùˆ همه ÙØ¶Ø§ÛŒ موجود\n"
-"بر آن را در اختیار دارد، شما می‌بایست ÙØ¶Ø§ÛŒ آزاد برای لینوکس را ایجاد نمایید\n"
-"برای انجام این کار، شما می‌توانید قسمت‌بندی Ùˆ داده‌های ویندوز Ù…Ø§ÛŒÚ©Ø±ÙˆØ³Ø§ÙØª\n"
-" را حذ٠کرده (راه حل ''پاک کردن تمام دیسک'' را ببینید) یا قسمت‌بندی FAT \n"
-"ویندوز Ù…Ø§ÛŒÚ©Ø±ÙˆØ³Ø§ÙØª را تغییر اندازه دهید. تغییر اندازه می‌تواند بدون از دست "
-"دادن\n"
-"هیچ داده‌ای به این شرط که شما قبلا قسمت‌بندی ویندوز را نظم داده \n"
-"یا defragmented بشود Ùˆ اینکه آن از قالب FAT Ø§Ø³ØªÙØ§Ø¯Ù‡ کند. ذخیره داده‌های \n"
-"شما بشدت پیشنهاد می‌شود. Ø§Ø³ØªÙØ§Ø¯Ù‡ از این گزینه اگر شما می‌خواهید هم لینوکس \n"
-"و هم ویندوز مایکروسابت را بر روی یک رایانه داشته باشید پیشنهاد می‌شود.\n"
-"\n"
-" قبل از انتخاب این گزینه، Ù„Ø·ÙØ§ توجه نمایید Ú©Ù‡ بعد از این پروسه اندازه \n"
-" قسمت‌بندی ویندوز Ù…Ø§ÛŒÚ©Ø±ÙˆØ³Ø§ÙØª شما کوچکتر از وقتی Ú©Ù‡ شروع کرده‌اید خواهد شد\n"
-"شما ÙØ¶Ø§ÛŒ آزاد کمتری زیر ویندوز Ù…Ø§ÛŒÚ©Ø±ÙˆØ³Ø§ÙØª برای ذخیره داده‌ها خود یا\n"
-"نصب Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± جدید خواهید داشت.\n"
-"\n"
-" * \"%s\": اگر می‌خواهید تمام داده‌ها و قسمت‌بندی‌های موجود بر روی دیسک\n"
-"را حذ٠و آنها را با سیستم لینوکس مان‌درایک جدید خود جایگزین کنید، این \n"
-"گزینه را انتخاب نمایید. دقت کنید، شما قادر نخواهید بود انتخاب خود را \n"
-"بعد از تایید پس بگیرید. \n"
-"\n"
-" !! اگر شما این گزینه را انتخاب کنید، همه داده‌ها بر روی دیسک شما حذ٠خواهد "
-"شد. !! \n"
-"\n"
-" * \"%s\": این همه چیز را از دیسک پاک کرده و از نو شروع به قسمت‌بندی هر \n"
-"چیز از پایه می‌کند. هر داده‌ای بر روی دیسک شما از دست خواهد Ø±ÙØª. \n"
-"\n"
-" !! اگر شما این گزینه را انتخاب کنید، همه داده‌های بر دیسک شما از دست خواهد "
-"Ø±ÙØª. !! \n"
-"\n"
-" * \"%s\": این گزینه را اگر خودتان می‌خواهید دیسک را قسمت‌بندی کنید انتخاب\n"
-" نمایید. دقت کنید -- این گزینه‌ی باقدرت ولی خطرناکی است و شما می‌توانید \n"
-"بسادگی تمام داده‌های خود را از دست بدهید. برای همین این گزینه واقعا Ùقط \n"
-"اگر شما چنین کاری را قبلا انجام داده‌اید و تجربه دارید پیشنهاد می‌شود. برای \n"
-"راهنمایی چگونگی Ø§Ø³ØªÙØ§Ø¯Ù‡ از وسیله‌ی به قسمت``مدیریت قسمت‌بندی‌های خود'' در \n"
-"``راهنمای شروع'' مراجعه نمایید. "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
-msgstr "اوکراین"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Application:"
-msgstr "برنامه:"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "External ISDN modem"
-msgstr "مودم بیرونی ISDN"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr "اگر آری تنظیم شده است، نتیجه‌ی کنترل را بوسیله‌ی پست گزارش دهید."
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "انتخاب شما؟ (Ù¾ÛŒØ´â€ŒÙØ±Ø¶ %s)"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr "مشکل گشایی"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-msgstr ""
-"ØµÙØ­Ù‡â€Œ(های) آزمایشی به چاپگر ÙØ±Ø³ØªØ§Ø¯Ù‡ شده است..\n"
-"ممکن است قدری طول بکشد تا چاپگر شروع کند..\n"
-"وضعیت چاپگری:\n"
-"%s\n"
-"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
-msgstr "روزانه"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and one unknown printer"
-msgstr "و یک چاپگر ناشناس"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Ireland"
-msgstr "ایرلند"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Restore Configuration "
-msgstr " تنظیمات بازسازی "
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "آیا این تنظیم صحیح است؟"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"شما اکنون ارتباط اینترنت/شبکه خود را برپاسازی خواهید نمود. اگر می‌خواهید "
-"رایانه \n"
-"خود را به اینترنت یا یک شبکه محلی ارتباط دهید، بر \"%s\" کلیک نمایید. \n"
-"لینوکس مان‌درایک سعی خواهد کرد تا دستگاه‌های شبکه و مودم را بطور خودکار \n"
-"شناسایی کند.ا گر این شناسایی موÙÙ‚ نبود، جعبه \"%s\" را غیر ÙØ¹Ø§Ù„ نمایید. شما "
-"همچنین \n"
-"تنظیم شبکه را انتخاب نکرده یا آن را بعدا انجام دهید، در هر صورت با کلیک بر "
-"تکمه \"%s\" \n"
-"به مرحله بعدی خواهید Ø±ÙØª. \n"
-"\n"
-"گزینه‌های ارتباطی برای تنظیم شبکه شما عبارتند از: مودم معمولی، مودم ISDN \n"
-"ارتباط ADSL ، مودم کابلی، و در آخر یک ارتباط شبکه‌ی محلی LAN (Ethernet) "
-"می‌باشد. \n"
-"\n"
-"ما هر گزینه تنظیم را تشریح نخواهیم داد - Ùقط مطمئن شوید Ú©Ù‡ همه اجزای مورد \n"
-"نیاز از جمله نشانی IPØŒ دروازه Ù¾ÛŒØ´â€ŒÙØ±Ø¶ØŒ کارگزارهای DNSØŒ Ùˆ غیره را از شرکت \n"
-" عرضه کننده اینترنت یا مدیر سیستم خود Ø¯Ø±ÛŒØ§ÙØª نموده‌اید. \n"
-"\n"
-"شما می‌توانید برای تشریحات درباره تنظیم ارتباط اینترنت به ÙØµÙ„ راهنمای شروع \n"
-"مراجعه یا صبر کرده تا سیستم نصب شده وسپس از برنامه توضیح داده شده در \n"
-"آنجا برای تنظیم ارتباط خود Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید. "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wizard Configuration"
-msgstr "تنظیمات جادوگر "
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Autoprobe"
-msgstr "وارسی خودکار"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"if set to yes, check for :\n"
-"\n"
-"- empty passwords,\n"
-"\n"
-"- no password in /etc/shadow\n"
-"\n"
-"- for users with the 0 id other than root."
-msgstr ""
-"اگر به آری گذاشته شده، کنترل نمایید:\n"
-"\n"
-"- گذرواژه‌های خالی،\n"
-"\n"
-"- هیچ گذرواژه در /etc/shadow\n"
-"\n"
-"- برای کاربران با شناسه ØµÙØ± غیر از مدیر."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files..."
-msgstr "ذخیره پشتیبان پرونده‌های سیستم..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr "نمی‌توان از پخش همگانی بدون هیچ دامنه NIS Ø§Ø³ØªÙØ§Ø¯Ù‡ نمود"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "برداشتن چاپگر \"%s\"..."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell history size"
-msgstr "اندازه تاریخچه پوسته"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
-
-#: ../../standalone/drakpxe:1
-#, 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"
-msgstr ""
-"Ù„Ø·ÙØ§ مکانی را Ú©Ù‡ پرونده‌ی auto_install.cfg در آن قرار دارد را نشان دهید..\n"
-"\n"
-"اگر نمی‌خواهید حالت نصب خودکار را برپا کنید آن را خالی بگذارید.\n"
-"\n"
-
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on other machines"
-msgstr "تنظیم شده بر ماشین‌های دیگر"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "سطح اطلاعات Ú©Ù‡ می‌توان از طریق دستورات cpuid Ø¯Ø±ÛŒØ§ÙØª کرد"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Peru"
-msgstr "پرو"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " on device: %s"
-msgstr "بر دستگاه: %s "
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "برداشتن Windows(TM)"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "شروع کارگزار قلم X (این برای اجرای XFree اجباری می‌باشد)."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"بیشتر این ارزش‌ها از سیستم در حال اجرای \n"
-"شما درآورده شده‌اند. \n"
-"شما می‌توانید در صورت لزوم آنها را تغییر دهید."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "انتخاب پرونده یا شاخه حاوی قلم نگارش Ùˆ کلیک بر 'Ø§ÙØ²ÙˆØ¯Ù†'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "ماداگاسکار"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
-msgstr "Cron هنوز برای non-root موجود نمی‌باشد"
-
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "System"
-msgstr "سیستم"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "آیا می‌خواهید از این قابلیت Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید؟"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr "عربی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr ""
-"\n"
-"- گزینه‌ها:\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Password required"
-msgstr "گذرواژه لازم است"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d minutes"
-msgstr "%d دقیقه"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Graphics card: %s"
-msgstr "کارت گراÙیک: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV transfer failed!"
-msgstr "انتقال WebDAV شکست خورد!"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "تنظیمات XFree"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Choose action"
-msgstr "انتخاب ÙØ¹Ø§Ù„یت"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "French Polynesia"
-msgstr "پولی‌نسیای ÙØ±Ø§Ù†Ø³ÙˆÛŒ"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"معمولا DrakX مشکلی برای شناسایی تعداد تکمه‌های موش شما ندارد. \n"
-"اگر اشکالی پیش آمد ÙØ±Ø¶ بر آن می‌شود Ú©Ù‡ شما موشی با دو تکمه دارید Ùˆ \n"
-"می‌خواهید آن را برای شبیه‌سازی تکمه سوم تنظیم نمایید.تکمه‌ی سوم موش یک \n"
-"موش دو تکمه‌ای با ÙØ´Ø±Ø¯Ù† همزمان تکمه‌های Ú†Ù¾ Ùˆ راست می‌تواند Ø§Ø³ØªÙØ§Ø¯Ù‡ \n"
-"شود. DrakX بطور خودکار می‌داند که آیا موش شما از واسط PS/2 ، \n"
-"سریال یا USB Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کند. \n"
-"\n"
-"اگر به هر دلیلی شما می‌خواهید یک نوع موش دیگر را تایین کنید، آن را از \n"
-"سیاهه عرضه شده انتخاب نمایید. \n"
-"\n"
-"اگر شما موشی غیر از Ù¾ÛŒØ´â€ŒÙØ±Ø¶ انتخاب کنید، یک ØµÙØ­Ù‡â€ŒÛŒ آزمایش نمایش داده \n"
-"خواهد شد. از تکمه‌ها و چرخ برای امتحان صحت تنظیمات و اینکه موش بدرستی \n"
-"کار می‌کند Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید.ا گر آن موش بدرستی کار نمی‌کند، با ÙØ´Ø§Ø± تکمه ÙØ¶Ø§ÛŒ \n"
-"خالی یا کلید [Return] برای لغو آزمایش و بازگشت به سیاهه‌ی انتخاب‌ها می‌توانید \n"
-"این کار را انجام دهید. \n"
-"\n"
-"چرخ‌موش‌ها بعضی وقتها خودکار شناسایی نمی‌شوند، بنابرین شما باید موش خود \n"
-"را از یک سیاهه انتخاب نمایید. مطمئن شوید که آن را که به درگاه موش شما وصل \n"
-"است را انتخاب می‌کنید. بعد از انتخاب یک موش Ùˆ ÙØ´Ø±Ø¯Ù† تکمه \"%s\" تصویر یک \n"
-"موش بر ØµÙØ­Ù‡ نمایان می‌شود. چرخ موش را بچرخانید تا آن را امتحان کرده باشید. \n"
-"با مشاهده‌ی چرخش موش همزمان با انجام آن توسط شما، می‌توانید تکمه‌ها را \n"
-"آزمایش کرده و امتحان کنید آیا وقتی شما موش خود را حرکت می‌دهید نشانه‌ی \n"
-"موش به همان طریق حرکت می‌کند."
-
-#: ../../services.pm:1
-#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "حمایت OKI 4w وwinprinters همخوان."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-"پرونده‌ها یا کارت‌های برنده Ùهرست شده در یک پرونده‌ی backupignore. در نوک یک "
-"درخت شاخه ذخیره پشتیبان نخواهند شد."
-
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr " شروع سیستم صوتی ALSA (ساختار Ù¾ÛŒØ´Ø±ÙØªÙ‡ صوتی لینوکس) "
-
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "نصب راه‌انداز برای %s کارت %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"شما چاپگر Ù¾ÛŒØ´â€ŒÙØ±Ø¶ قبلی خود(\"%s\") را انتقال داده‌اید، آیا آن باید چاپگر "
-"Ù¾ÛŒØ´â€ŒÙØ±Ø¶ در سیستم جدید چاپگری %s شود؟"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Enable Server"
-msgstr "ÙØ¹Ø§Ù„‌سازی کارگزار"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ukrainian"
-msgstr "اوکراینی"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"دسترسی شبکه در حال راندن نبود Ùˆ نمی‌توانست شروع شود. Ù„Ø·ÙØ§ تنظیم Ùˆ Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± "
-"خود را کنترل کنید. سپس سعی به تنظیم مجدد چاپگر از راه دور خود بنمایید."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "برای نگارش پرونده \"%s\" را ÙØ¹Ø§Ù„ نمایید"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Ù„Ø·ÙØ§ دیسکچه آغازگر Ø§Ø³ØªÙØ§Ø¯Ù‡ شده در دستگاه %s را داخل نمایید"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local network(s)"
-msgstr "شبکه(های) محلی"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Remove Windows"
-msgstr "برداشتن ویندوز"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-"%s شما تنظیم شده است.\n"
-"شما اکنون می‌توانید با Ø§Ø³ØªÙØ§Ø¯Ù‡ از \"XSane\" از طریق وسایل چندگانه/گراÙیک در "
-"Ùهرست برنامه‌ها پویش اسناد نمایید"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Firewire controllers"
-msgstr "کنترل کننده‌های Firewire "
-
-#: ../../help.pm:1
-#, 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!"
-msgstr ""
-"بعد از تنظیم اجزای عمومی بارگزار آغازگر، سیاهه‌ای از گزینه‌های آغازگری موجود \n"
-"در زمان آغاز نمایش داده خواهد شد. \n"
-"\n"
-"اگر سیستم‌های آغازگری دیگری بر ماشین شما نصب است آنها بطور خودکار به Ùهرست \n"
-"آغازی شما اضاÙÙ‡ خواهند شد. شما می‌توانید گزینه‌های موجود را با کلیک بر \"%s\"\n"
-"برای ایجاد یک ورودی جدید؛ انتخاب یک ورودی و کلیک بر \"%s\" یا \"%s\" \n"
-"برای تغییر یا از بین برداشتن آن میزان نمایید. \"%s\" تغییرات شما را امتحان "
-"می‌کند. \n"
-"\n"
-"شما همچنین ممکن است نخواهید کس دیگری به این سیستم‌های عامل از طریق \n"
-"آغازگری ماشین در کنسول دستیابی پیداکند. شما می‌توانید آن وزودی‌ها را برای \n"
-"آن سیستم‌های عامل از طریق حذ٠آنها از Ùهرست آغازگری از بین بردارید، اما \n"
-"شما به یک دیسکچه آغازگر برای آغاز آن سیستم‌های عامل احتیاج پیدا خواهید کرد!"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "System mode"
-msgstr "حالت سیستم"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"برای چاپ بر یک چاپگر NetWare، شما باید نام کارگزار چاپگر NetWare (توجه! آن "
-"ممگن است از نام میزبان TCP/IP آن Ù…ØªÙØ§ÙˆØª باشد!) Ùˆ همچنین نام ص٠چاپ برای "
-"چاپگری Ú©Ù‡ می‌خواهید به آن دسترسی یابید Ùˆ هر نام کاربر Ùˆ واژه رمز قابل Ø§Ø³ØªÙØ§Ø¯Ù‡ "
-"را عرضه نمایید."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Netmask:"
-msgstr "ماسک شبکه:"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
-msgstr "بعداً انجام بده"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "پیوستن"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr "نوسازی لیست چاپگر(نمایش تمام چاپگرهای از راه دور موجود CUPS)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"وقتی این گزینه روشن باشد، در هر شروع کارگزار CUPS آن بطور خودکار مطمئن می‌شود "
-"Ú©Ù‡ \n"
-"\n"
-"- اگر LPD/LPRng نصب شده باشد، پرونده‌ی /etc/printcap توسط CUPS بازنویسی نشود\n"
-"\n"
-"- اگر پرونده‌ی /etc/cups/cupsd.conf وجود نداشته باشد، آن را ایجاد کند \n"
-"\n"
-"- وقتی اطلاعات چاپگری پخش همگانی میشود، نام کارگزار حاوی \"localhost\" "
-"نباشد. \n"
-"\n"
-"- اگر بعضی از این اقدامات برای شما مشکل ایجاد می‌کند، این گزینه را خاموش "
-"کرده، \n"
-" ولی بعد شما باید ترتیب این نکات را خودتان بدهید."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"نصب خودکار اگر بخواهید می‌تواند کاملا خودکار عمل کند، \n"
-"که در آن صورت دستگاه دیسک را در اختیار می‌گیرد!! \n"
-"(این برای تصب بر رایانه دیگر منظور شده است) \n"
-"\n"
-"شما ممکن است ترجیح دهید نصب را باز رانی نمایید.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "چاپگر شبکه‌ای \"%s\"، درگاه %s"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "Ù„Ø·ÙØ§ کارت شبکه‌ای Ú©Ù‡ به شبکه محلی شما وصل خواهد شد را انتخاب نمایید."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
-msgstr "تایید بازسازی پرونده‌های دیگر."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Ù„Ø¸ÙØ§ طرح ØµÙØ­Ù‡â€ŒÚ©Ù„ید خود را انتخاب نمایید."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "نشانی اینترنتی دستگاه چاپگر"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not erasable media!"
-msgstr "رسانه پاک‌شونده نیست!"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "بر اساس-پایانه"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr "ÙØ¹Ø§Ù„/ØºÛŒØ±ÙØ¹Ø§Ù„ سازی Ø­ÙØ§Ø¸Øª IP spoofing."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "نصب یک سیستم چاپگری در سطح امنیتی %s"
-
-#: ../../any.pm:1
-#, c-format
-msgid "The user name is too long"
-msgstr "نام کاربر بسیار طولانی می‌باشد"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "سیستم عامل دیگر (ویندوز...)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr "پایگاه از راه دور WebDAV قبلا هماهنگ می‌باشد!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
-msgstr "در حال خواندن بانک اطلاعات چاپگر..."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "تولید دیسکچه نصب خودکار"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t نام کاربر: %s\n"
-"\t\t در مسیر: %s \n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr "سومالی"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr "راه‌انداز منبع آزاد نمی‌باشد"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
-msgstr "تعریÙ"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
-msgstr ""
-"این شبیه مرحله‌ی پیشین است، اما سیستم کاملا بسته بوده و موارد امنیتی در "
-"بالاترین حد خود می‌باشند."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "نیکاراگوئه"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "کله‌دونیای جدید"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "پایان نامه‌ی اروپایی (EDSS1)"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Delete"
-msgstr "/_Delete"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "حالت ویدیو"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
-msgstr "عمان"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Ù„Ø·ÙØ§ نشانی پست الکترونیکی خود را در زیر وارد نمایید"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Network Monitoring"
-msgstr "زیر نظر داشتن شبکه"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "New size in MB: "
-msgstr "اندازه جدید به مگابایت:"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "نوع جدول قسمت‌بندی: %s\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication Windows Domain"
-msgstr "شناسایی دامنه ویندوز"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "ØµÙØ­Ù‡â€ŒÚ©Ù„ید آمریکا"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr "شبیه‌سازی تکمه‌ها"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr "، چاپگر شبکه‌ای \"%s\"، درگاه %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-"\n"
-"ÙØ¹Ø§Ù„یت‌های Drakbackup از طریق نوار:\n"
-"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-" اشکال ارتباطی FTP: ÙØ±Ø³ØªØ§Ø¯Ù† پرونده‌های ذخیره پشتیبان شما از طریق FTP ممکن "
-"نشد.\n"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Sending Speed:"
-msgstr "سرعت ارسال:"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"The classic bug sound tester is to run the following commands:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
-"currently uses\n"
-"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services're configured to be run on\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"آزمایش‌گر اشکال صدا دستورات زیر را برای اجرا در دست دارد: \n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" به شما می‌گوید که کارت شما از چه راه‌اندازی\n"
-"توسط Ù¾ÛŒØ´â€ŒÙØ±Ø¶ Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کند.\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" به شما می‌گوید از چه راه‌اندازی در "
-"حال\n"
-"Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود\n"
-"\n"
-"- \"/sbin/lsmod\" شما را برای کنترل این که آیا راه‌انداز بارگزاری شده یا نه\n"
-"قادر می‌سازد\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" و \"/sbin/chkconfig --list alsa\" به \n"
-"شما می‌گوید که آیا صدا و سرویس‌های alsa برای رانش در initlevel 3 \n"
-"تنظیم شده‌اند\n"
-"\n"
-"- \"aumix -q\" به شما می‌کوید که آیا حجم صدا خاموش است یا نه\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" به شما می‌گوید کدام برنامه از کارت صدا Ø§Ø³ØªÙØ§Ø¯Ù‡ "
-"می‌کند.\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
-msgstr "توق٠اشکال"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert configuration"
-msgstr "تنظیم اخطار پست الکترونیکی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr "توکل‌آو"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Matching"
-msgstr "تطابق"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bosnian"
-msgstr "بوسنی"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Release: "
-msgstr "پخش:"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection speed"
-msgstr "سرعت ارتباط"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr "نامیبیا"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Database Server"
-msgstr "کارگزار‌ بانک اطلاعات"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr "توانایی‌های مخصوص دستگاه (توانایی نگارش و یا حمایت دی‌ وی ‌دی)"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "نمی‌توان یک قسمت‌بندی به _formatted_ RAID md%d Ø§ÙØ²ÙˆØ¯"
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Network Time Protocol"
-msgstr "واسط شبکه"
-
-#: ../../Xconfig/card.pm:1
-#, 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."
-msgstr ""
-"کارت گراÙیک شما می‌تواند حمایت شتاب‌دهنده Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø±ÛŒ سه بعدی را داشته باشد ولی "
-"Ùقط با XFree %sØŒ \n"
-"توجه کنید که این حمایت آزمایشی بوده و ممکن است رایانه شما از کار بیاستد \n"
-"کارت گراÙیک شما با XFree %s حمایت می‌شود Ú©Ù‡ ممکن است حمایت بهتری در دو بعدی "
-"داشته باشد."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Ù„Ø·ÙØ§ صبر کنید، در حال گذاشتن گزینه‌های امنیتی..."
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "ناشناس|CPH05X (bt878) [تعدد ÙØ±ÙˆØ´Ù†Ø¯Ù‡]"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "شروع محیط گراÙیکی هنگام شروع سیستم شما"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr "ساعتی"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
-msgstr "کلید راست Ø´ÛŒÙØª"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " با موÙقیت در %s بازگذاری شد "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "در دسترس قرار دادن درگاه چاپگر برای CUPS..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr "انتیگوا و باربودا"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! نشان دهنده‌ی ØªÙØ§ÙˆØª واژه رمز در بانک اطلاعات سیستم با \n"
-"آن که در بانک اطلاعات کارگزار پایانه وجود دارد. \n"
-"برای توانستن ورود به سیستم کاربر را ابتدا حذ٠و دوباره به کارگزار پایانه "
-"اضاÙÙ‡ نمایید."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "اسپانیایی"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Start"
-msgstr "شروع"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
-msgstr "وزود مستقیم مدیر"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring applications..."
-msgstr "در حال تنظیم برنامه‌ها..."
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"به جادوگر برپایی چاپگر خوش آمدید\n"
-"\n"
-"این راهنما به شما در نصب چاپگر وصل شده به این رایانه، مستقیما به شبکه یا یک "
-"ماشین ویندوز از راه دور کمک می‌کند.\n"
-"\n"
-"Ù„Ø·ÙØ§ تمام چاپگرهایی را Ú©Ù‡ به این ماشین وصل شده‌اند Ú†Ù‡ در شبکه یا بر ماشین "
-"ویندوزتان را روشن نمایید تا بتوان آنها را شناسایی خودکار کرد.\n"
-"\n"
-"توجه کنید Ú©Ù‡ شناسایی خودکار چاپگرها در شبکه بیشتر زمان می‌برند تا Ùقط چاپگری "
-"که به این ماشین وصل است. بنابرین بهتر است شناسایی خودکار چاپگر شبکه و یا بر "
-"ویندوز را اگر لزومی نیست خاموش نمایید. \n"
-"\n"
-"وقتی آماده شدید بر \"بعدی\" کلیک کرده و اگر نمی‌خواهید چاپگرتان را اکنون "
-"تنظیم کنید بر \"لغو\" کلیک نمایید."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
-msgstr "ارتباط مودم عادی"
-
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "File Selection"
-msgstr "انتخاب پرونده"
-
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase tape before backup"
-msgstr "پاک کردن نوار قبل از ذخیره‌ی پشتیبان"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
-msgstr "اجرای ابزار تنظیم"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "نصب بارگزار آغازگر"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "اندازه‌ی قسمت‌بندی ریشه به مگابایت:"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "این یک پاکت برنامه‌ای ضروری می‌باشد، نمی‌تواند که انتخاب نشود."
-
-#: ../../standalone/drakTermServ:1
-#, 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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
-" - ایجاددیسکچه‌ها/سی‌دی‌های آعازگری شبکه‌ای:\n"
-" \t\tماشین‌های کارگیر بدون دیسک نه به تصاویر ROM بر NIC, یا یک دیسکچه‌ی "
-"آغازگر\n"
-" \t\tیا CD برای توالی آغازگری احتیاج دارند. drakTermServ در تولید این "
-"تصاویر کمک خواهد کرد,\n"
-" \t\tاین بر اساس NIC در ماشین کارگیر انجام پذیر می‌گردد.\n"
-" \t\t\n"
-" \t\tیک نمونه‌ی ساده از ایجاد دستی یک دیسکچه آغازگر برای یک کارت 3Com "
-"3c509:\n"
-" \t\t\n"
-" \tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "تصویر ISO آغازگر شبکه %s می‌باشد"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
-"named (BIND) یک کارگزار نام دامنه Domain Name Server (DNS) می‌باشد که برای "
-"Ø¨Ø§Ø²ÛŒØ§ÙØªÙ† نام میزبان‌ها به نشانی‌های اینترنتی Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr "سنت لوشیا"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "نوامبر"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
-msgstr "قطع ارتباط..."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Report"
-msgstr "گزارش"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr "پالاو"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "سطح"
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr "تمام پیش‌آمدها توسط یک کارشناس با تجربه‌ی MandrakeSoft پیگیری خواهد شد."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "انتخاب گروه پاکت برنامه"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"اجازه تنظیم Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø±\n"
-"محلی."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "بازسازی از طریق پیوندنامه شبکه: %s"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr "شما می‌توانید هر جزی از آن بخش را در اینجا تنظیم نمایید."
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "انتخاب وضوح و عمق رنگ"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
-msgstr "شبیه سازی تکمه سوم؟"
-
-#: ../../diskdrake/interactive.pm:1
-#, 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."
-msgstr ""
-"شما نمی‌توانید یک قسمت‌بندی جدید ایجاد کنید \n"
-"(چون حداکثر تعداد قسمت‌بندیهای مقدم بدست آمده است). \n"
-"ابتدا یک قسمت‌بندی مقدم را برداشته و سپس یک قسمت‌بندی مضاع٠ایجاد نمایید."
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr "سوار کردن"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "ایجاد دیسکچه نصب خودکار"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Install updates"
-msgstr "نصب بروزسازی"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
-msgstr "Ø§Ø±ØªÙØ§Ø¹ جعبه متن"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "State"
-msgstr "وضعیت"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "مطمئن شوید که یک وسیله در دستگاه %s وجود داشته باشد."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Enable multiple profiles"
-msgstr "ÙØ¹Ø§Ù„‌سازی نمایه‌های چندگانه"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr "نویسه‌ یا دستگاه‌های مخصوص بلوک روی سیستم پرونده‌ای تعبیر نشوند."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
-"این گزینه‌ها می‌توانند تمام پرونده‌های در شاخه /etc شما را ذخیره پشتیبان و "
-"بازسازی کنند.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Local printer"
-msgstr "چاپگر محلی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Files Restored..."
-msgstr "بازسازی پرونده‌ها..."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
-msgstr "انتخاب بسته"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritania"
-msgstr "موریتانیا"
-
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
-"من می‌توانم تنظیم کنونی شما را Ù†Ú¯Ù‡ دارم Ùˆ ÙØ±Ø¶ کنم شما قبلا یک کارگزار DHCP را "
-"برپاسازی کرده‌اید؛ در آن صورت Ù„Ø·ÙØ§ تایید نمایید Ú©Ù‡ من شبکه شما Ú©Ù‡ از آن برای "
-"شبکه محلی خود Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کنید را درست شناسایی کرده‌ام؛ من آن را مجددا تنظیم "
-"نخواهم کرد و تنظیم کارگزار DHCP شما را دست نخواهم زد.\n"
-"\n"
-"ورودی DNS Ù¾ÛŒØ´â€ŒÙØ±Ø¶ همان Ø­Ø§ÙØ¸Ù‡ پنهان کارگزار نام تنظیم شده بر دیوار‌آتش firewall "
-"است. شما می‌توانید آنرا با نشانی اینترنت کارگزار نام دامنه شرکت تامین کننده "
-"اینترنت خود عوض نمایید.\n"
-"\t\t \n"
-"در غیر این صورت، می‌توانم صورت شبکه شما و یک کارگزار DHCP برای شما تنظیم "
-"(مجدد) کنم.\n"
-"\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"هیچ چاپگر محلی ÛŒØ§ÙØª نشد! برای نصب دستی یک چاپگر نام یک دستگاه/پرونده را در "
-"خط درونی (درگاه‌های موازی: /dev/lp0, /dev/lp1, ..., هم معنی با LPT1:, "
-"LPT2:, ..., اولین چاپگرUSB : /dev/usb/lp0, دومین چاپگرUSB: /dev/usb/"
-"lp1, ...)."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All primary partitions are used"
-msgstr "تمام قسمت‌بندی‌های مقدم Ø§Ø³ØªÙØ§Ø¯Ù‡ شده‌اند"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "کارگزار LPD \"%s\", چاپگر \"%s\""
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"بعد از انجام این کار، پیشنهاد می‌شود Ú©Ù‡ شما محیط گراÙیک X را دوباره شروع "
-"نمایید تا از هر اشکال مربوط به نام میزبان جلوگیری شود."
-
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "شناسایی Ùˆ تنظیم خودکار Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± در آغازگری."
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation Server Configuration"
-msgstr "تنظیم نصب کارگزار"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "تنظیم IDE"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network functionality not configured"
-msgstr "توانایی عمل‌کرد شبکه تنظیم نشده است"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Configure module"
-msgstr "تنظیم بخش"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "جزایر کوکوس (کیلینگ)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr "شما احتیاج به آغازگری مجدد رایانه دارید تا تغییرات بتوانند صورت گیرند"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
-msgstr "شماره تلÙÙ† شرکت تامین کننده اینترنت"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Host %s"
-msgstr "میزبان %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
-msgstr "Ùیجی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
-msgstr "ارمنستان"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "دستگاه دیسکچه دوم"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
-msgstr "درباره Harddrake"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
-msgstr "اجازه ارتباطات TCP پنجره X "
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr "اندازه دستگاه هارددیسک"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"یک دیسکچه را داخل دستگاه نمایید \n"
-"تمام داده‌ها بر این دیسک از دست خواهند Ø±ÙØª"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "اندازه: %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "کلیدهای کنترل Ùˆ Ø´ÛŒÙØª بطور همزمان"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "secondary"
-msgstr "دومین"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Backup Configuration."
-msgstr "نمایش تنظیمات ذخیره پشتیبان."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr "اگر آری تایین شده، نتیجه کنترل به ثبت سیستم syslog گزارش شود."
-
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "بدون گذرواژه"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Nigeria"
-msgstr "نیجریه"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s احتیاج به نام میزبان دارد...\n"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no existing partition to use"
-msgstr "قسمت‌بندیی برای Ø§Ø³ØªÙØ§Ø¯Ù‡ وجود ندارد"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr ""
-"پویشگرهای ذیل\n"
-"\n"
-"%s\n"
-"در سیستم شما در دسترس می‌باشند.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "دستگاه چند-عملی بر درگاه موازی #%s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
-msgstr ""
-"برای چاپ به یک چاپگر شبکه (TCP) یا Ø­ÙØ±Ù‡ (socket)ØŒ شما باید نام میزبان یا "
-"نشانی اینترنت (IP) چاپگر را عرضه نمایید Ùˆ یا شماره درگاه (Ù¾ÛŒØ´â€ŒÙØ±Ø¶ Û¹Û±Û°Û° است). "
-"بر کارگزارهای HP JetDirect شماره درگاه معمولا ۹۱۰۰ است، بر کارگزارهای دیگر "
-"آن می‌تواند ØªÙØ§ÙˆØª داشته باشد. به دستورالعمل Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± خود مراجعه نمایید. "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Hard drive information"
-msgstr "اطلاعات دستگاه دیسک"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian"
-msgstr "روسی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Jordan"
-msgstr "اردن"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Hide files"
-msgstr "پنهان سازی پرونده‌ها"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "شناسایی-خودکار چاپگرهای وصل شده به این رایانه"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "متاسÙÙ…ØŒ هیچ دستگاه دیسکچه موجود نمی‌باشد"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bolivia"
-msgstr "بولیوی"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"کارگزار ویندوز خود را برای دسترسی به چاپگر تحت پایان نامه IPP برپاسازی کرده "
-"و چاپ کردن از این ماشین را با نوع اتصال \"%s\" در Printerdrake برپاسازی "
-"نمایید.\n"
-
-#: ../../install_steps_gtk.pm:1
-#, 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!"
-msgstr ""
-"رایانه خود را به یک کارگزار باقدرت لینوکس تبدیل نمایید: کارگزار وب، پست، "
-"دیوارآتش، مسیریاب، پرونده Ùˆ کارگزار چاپ (Ùˆ غیره) Ùقط با چند کلیک از شما "
-"ÙØ§ØµÙ„Ù‡ دارند!"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "DrakSec Basic Options"
-msgstr "گزینه‌های پایه DrakSec"
-
-#: ../../standalone/draksound:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"توجه: اگر شما یک کارت صوتی ISA PnP ندارید, شما باید از برنامه sndconfig "
-"Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید. Ùقط دستور \"sndconfig\" را در پایانه وارد نمایید."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Romania"
-msgstr "رومانی"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group"
-msgstr "گروه"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Canada"
-msgstr "کانادا"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "choose device"
-msgstr "انتخاب دستگاه"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from LVM"
-msgstr "برداشتن از LVM"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Timezone"
-msgstr "زمان منطقه‌ای"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German"
-msgstr "آلمانی"
-
-#: ../../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
-#, c-format
-msgid "Next ->"
-msgstr "بعدی ->"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Turning on this allows to print plain text files in japanese language. Only "
-"use this function if you really want to print text in japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"روشن کردن این اجازه چاپ متن خالص را در زبان ژاپنی می‌دهد. Ùقط از این تابع اگر "
-"واقعا می‌خواهید متن ژاپنی چاپ کنید Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید. اگر آن ÙØ¹Ø§Ù„ شود شما دیگر "
-"قادر به چاپ قلم‌های زبان لاتین نخواهید شد و نمی‌توانید حاشیه‌ها، ادندازه نویسه "
-"Ùˆ غیره را تطبیق دهید. این تنظیم Ùقط چاپگرهای حاضر بر این ماشین را تحت تاثیر "
-"قرار می‌دهد. اگر شما می‌خواهید بر یک چاپگر شبکه متن ژاپنی چاپ نمایید، شما باید "
-"این تابع را بر آن ماشین ÙØ¹Ø§Ù„ نمایید. "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"ممکن است این قسمت‌بندی, \n"
-"قسمت‌بندی یک دستگاه باشد. شما باید\n"
-"آن را بحال خود بگذارید.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
-msgstr "گینه-بیساو"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "میزان نوسازی اÙÙ‚ÛŒ"
-
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Edit"
-msgstr "ویرایش"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-"نمی‌توان نقطه سوارسازی را ØµÙØ± نمود چرا Ú©Ù‡ این قسمت‌بندی برای حلقه برگشت "
-"Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود. \n"
-"ابتدا حلقه برگشت را از بین بردارید"
-
-#: ../../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 ""
-"تنظیم شبکه انجام شده در طول نصب نمی‌تواند حالا شروع شود. Ù„Ø·ÙØ§ ببینید Ú©Ù‡ آیا "
-"شبکه بعد از آغاز سیستم در دسترسی قرار می‌گیرد Ùˆ تنظیم را ا Ø§Ø³ØªÙØ§Ø¯Ù‡ از مرکز "
-"کنترل مان‌درایک، قسمت \"Network & Internet\"/\"Connection\", تصحیح نمایید، و "
-"بعد چاپگر را با Ø§Ø³ØªÙØ§Ø¯Ù‡ از مرکز کنترل مان‌درایک، قسمت \"Network & Internet\"/"
-"\"Connection\" برپاسازی نمایید."
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "USB controllers"
-msgstr "کنترل کننده‌های USB"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "What norm is your TV using?"
-msgstr "تلویزیون شما از جه ماخذی Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کند؟"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Type:"
-msgstr "نوع:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Share name"
-msgstr "نام اشتراک"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "enable"
-msgstr "ÙØ¹Ø§Ù„"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
-msgstr ""
-"در حال تماس با پایگاه وب لینوکس مان‌درایک برای Ø¯Ø±ÛŒØ§ÙØª لیست پایگاه‌های آینه‌ای "
-"موجود..."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"یک اشکال هنگام شروع مجدد شبکه رخ داد: \n"
-"\n"
-"%s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove the loopback file?"
-msgstr "آیا پرونده‌ی loopback برداشته شود؟"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "اندازه‌های انتخاب شده بزرگ‌تر از ÙØ¶Ø§ÛŒ موجود می‌باشد"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP server name missing!"
-msgstr "نام کارگزار NCP وجود ندارد!"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose your country."
-msgstr "Ù„Ø·ÙØ§ کشور خود را انتخاب نمایید."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "پرونده‌های ذخیره پشتیبان دیسک..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Laotian"
-msgstr "لائوسی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Samoa"
-msgstr "ساموآ"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"پایان نامه rstat به کاربران روی یک شبکه اجازه می‌دهد که اندازه‌ی اجرایی هر یک "
-"از ماشین‌های بر آن شبکه را Ø¯Ø±ÛŒØ§ÙØª نمایند."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Re-generating list of configured scanners ..."
-msgstr "تولید مجدد لیست پویشگران تنظیم شده..."
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module configuration"
-msgstr "تنظیم بخش"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Scanner"
-msgstr "پویشگر"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "اخطار: آزمایش این کارت گراÙیکی ممکن است باعث توق٠رایانه شما شود"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "نام کاربر باید Ùقط حاوی حرو٠کوچک، `-' Ùˆ `_' باشد"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "به رمزشکن‌ها خوش آمدید"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "گزینه‌های بخش:"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
-msgstr "شبکه خود را با دیوارآتش چند شبکه‌ای امن نمایید"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "ادامه بدون تنظیم شبکه"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Abort"
-msgstr "سقط"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "بدون اعلان گذرواژه بر %s در درگاه %s"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "موش متÙکر کن‌سینگتون با شبیه‌سازی چرخ"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از پویشگرهای از راه دور"
-
-#: ../../install_interactive.pm:1
-#, 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."
-msgstr ""
-"قسمت‌بندی ویندوز شما خیلی درهم ریخته است. Ù„Ø·ÙØ§ رایانه خود را با ویندوز آغاز "
-"کرده، برنامه نظم بخشی ``defrag'' را اجرا و سپس نصب لینوکس مان‌درایک را دوباره "
-"شروع نمایید."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (نروژی)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "پیشروی ذخیره پشتیبان دیسک..."
-
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "ناتوان در انشعاب: %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "نوع:"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
-msgstr "ویرایش کارگیر -->"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "no fonts found"
-msgstr "هیچ قلم‌نگارش ÛŒØ§ÙØª نشد"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Mouse"
-msgstr "موش"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "not enough room in /boot"
-msgstr "ÙØ¶Ø§ÛŒ ناکاÙÛŒ در شاخه /boot"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "trying to promote %s"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Liechtenstein"
-msgstr "لیختن‌اشتاین"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Host name"
-msgstr "نام میزبان"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the color of the progress bar"
-msgstr "رنگ پیش‌خوان پیشروی"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "ÙØ´Ø±Ø¯Ù‡â€ŒØ³Ø§Ø²ÛŒ پرونده‌های قلم‌نگارش"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to RAID"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù† به RAID"
-
-#: ../../help.pm:1
-#, c-format
-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 ""
-"شما می‌توانید ورودی‌های دیگری برای سیستم‌های عامل دیگری، هسته‌های \n"
-"جایگزین، یا یک تصویر آغازگری نجات را به yaboot اضاÙÙ‡ نمایید، \n"
-"\n"
-"برای سیستم‌های عامل دیگر، آن ورودی Ùقط شامل یک برچسب Ùˆ قسمت‌بندی \n"
-" \"root\"\n"
-" می‌باشد. \n"
-"برای لینوکس چند گزینه‌ی ممکنه وجود دارد: \n"
-"\n"
-"* برچسب یا Label: این نامی است که شما باید برای انتخاب این گزینه‌ی آغازگر \n"
-"در پرومپ yaboot وارد نمایید.\n"
-"\n"
-"* تصویر یا Image: این نام هسته‌ای است که آغازگر می‌باشد. معمولا، vmlinux یا \n"
-"یک نوع از vmlinux با یک دنباله.\n"
-"\n"
-"* ریشه یا Root: شاخه \"root\" یا ``/'' برای نصب لینوکس شما. \n"
-"\n"
-"* پیوست یا Append: بر Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± رایانه‌های AppleØŒ گزینه‌ی \n"
-"پیوست هسته برای یاری در آشناسازی Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± ویدیو، یا ÙØ¹Ø§Ù„ سازی \n"
-"ØµÙØ­Ù‡â€ŒÚ©Ù„ید، شبیه‌ساز تکمه موش برای دومین Ùˆ سومین تکمه‌هایی Ú©Ù‡ در بعضی\n"
-"از موش‌ها وجود ندارند Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود. \n"
-"به چند مثال در زیر توجه نمایید: \n"
-"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-"hda=autotune\n"
-"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
-"\n"
-"* شروعگر یا Initrd: از این گزینه برای بارگذاری بخش‌های شروعی قبل از \n"
-"دسترسی به دستگاه آغازگر، یا بارگذاری یک تصویر دیسک Ø­Ø§ÙØ¸Ù‡ موقت یا ramdisk \n"
-"برای یک موقعیت اضطراری در آغازگری Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود. \n"
-"\n"
-"* اندازه۰شروعگر یا Initrd-size: اندازه Ù¾ÛŒØ´â€ŒÙØ±Ø¶ دیسک Ø­Ø§ÙØ¸Ù‡ موقت \n"
-"معمولا Û´Û°Û¹Û¶ کیلوبایت است. اگر شما احتیاج به یک دیسک Ø­Ø§ÙØ¸Ù‡ موقت بزرگتر \n"
-"دارید، این گزینه برای تایین اندازه‌ی بیشتر از Ù¾ÛŒØ´â€ŒÙØ±Ø¶ می‌تواند Ø§Ø³ØªÙØ§Ø¯Ù‡ شود. \n"
-"\n"
-"* خواندن۰نوشتن یا Read-write: معمولا قسمت‌بندی \"root\" در شروع مانند \n"
-"Ùقط-خواندن سوار می‌شود، این برای توانستن کنترل قبل از زنده ``live'' شدن \n"
-"سیستم می‌باشد. شما با این گزینه می‌توانید Ù¾ÛŒØ´â€ŒÙØ±Ø¶ را نادیده بگیرید. \n"
-"\n"
-"* بدون-ویدیو یا NoVideo: اگر Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± ویدیوی اپل برای شما ایجاد \n"
-"اشکالات ÙØ±Ø§ÙˆØ§Ù† کرد می‌توانید این گزینه را در آغازگری انتخاب کرده \n"
-"تا بوسیله حالت ``novideo'' با حمایت ذخیره در ص٠بومی native frame buffer \n"
-"رایانه را آغازگری نمایید. \n"
-"\n"
-"* Ù¾ÛŒØ´â€ŒÙØ±Ø¶ یا Default: این ورودی انتخاب Ù¾ÛŒØ´â€ŒÙØ±Ø¶ لینوکس بوده Ú©Ù‡ با \n"
-"ÙØ´Ø±Ø¯Ù† تکمه ENTER انتخاب می‌شود.اگر شما تکمه [Tab] را برای دیدن \n"
-"انتخاب آغازگری ÙØ´Ø§Ø± دهید این ورودی با یک ستاره نمایان می‌شود."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr "چاپگر \"%s\" با موÙقیت به Star Office/OpenOffice.org/GIMP اضاÙÙ‡ شد."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No floppy drive available!"
-msgstr "هیچ دستگاه دیسکچه موجود نمی‌باشد!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"برای دانستن گزینه‌های موجود برای چاپگر کنونی، یا لیست در زیر را بخوانید یا بر "
-"تکمه \"Print option list\" کلیک نمایید.%s%s%s \n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saudi Arabia"
-msgstr "عربستان سعودی"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Internet"
-msgstr "اینترنت"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "در هر حال ادامه می‌دهید؟"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
-"اگر چاپگر در لیست نیست، یک همخوان (دستورالعمل چاپگر را ببینید) یا یک شبیه به "
-"آن را انتخاب نمایید."
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer"
-msgstr "چاپگر"
-
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices were added:\n"
-msgstr "چند دستگاه اضاÙÙ‡ شد: \n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "هندسه: %s استوانه‌ها، %s سرها، %s بندها\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "در حال چاپ بر چاپگر \"%s\""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
-"پرونده‌های /etc/hosts.allow و /etc/hosts.deny قبلا تنظیم شده‌اند - بدون تغییر"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Tape"
-msgstr "بازسازی از نوار"
-
-#: ../../standalone/drakbug:1
-#, 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."
-msgstr ""
-"برای ÙØ±Ø³ØªØ§Ø¯Ù† گزارش اشکال، تکمه‌ی گزارش را کلیک نمایید، Ú©Ù‡ این مرورگر Ù¾ÛŒØ´â€ŒÙØ±Ø¶ "
-"شما را به نشانی Anthill باز می‌کند\n"
-"در آن جا شما می‌توانید اطلاعات خود را مانند یک گزارش اشکال باردهی نمایید"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the profile to configure"
-msgstr "نمایه‌ای را برای تنظیم انتخاب نمایید "
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
-msgstr "حداقل طول و تعداد نویسه و حرو٠بزرگ گذرواژه"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
-msgstr ""
-"\n"
-"\n"
-"یک نام میزبان Zeroconf را بدون هیچ نقطه‌ای وارد نمایید \n"
-"البته اگر نمی‌خواهید از نام میزبان Ù¾ÛŒØ´â€ŒÙØ±Ø¶ Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "ذخیره پشتیبان هم اکنون از پرونده‌ی تنظیمات"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr "نقاط سوارسازی Ùقط باید حاوی نویسه‌های Ø§Ù„ÙØ¨Ø§ باشند"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting printing system..."
-msgstr "شروع مجدد سیستم چاپگری..."
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr ""
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "اطلاعات Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± را ببینید"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
-msgstr "روز"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr "اولین بند قسمت‌بندی آغازگری"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "سازنده‌ی چاپگر، مدل"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - چاپ, بدون صÙ"
-
-#: ../../standalone.pm:1
-#, 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)"
-msgstr ""
-"[گزینه‌ها]...\n"
-"Mandrake تنظیم کننده‌ی کارگزار پایانه\n"
-"--ÙØ¹Ø§Ù„ : ÙØ¹Ø§Ù„ MTS\n"
-"--ØºÛŒØ±ÙØ¹Ø§Ù„ : ØºÛŒØ±ÙØ¹Ø§Ù„ MTS\n"
-"--شروع : شروع MTS\n"
-"--ایست : ایست MTS\n"
-"--adduser : Ø§ÙØ²ÙˆØ¯Ù† یک کاربر موجود به MTS (نام کاربر لازم است)\n"
-"--deluser : حذ٠یک کاربر موجود از MTS (نام کاربر لازم است)\n"
-"--addclient : Ø§ÙØ²ÙˆØ¯Ù† یک ماشین کارگیر به MTS (احتیاج به MAC address, "
-"IP, nbi image name دارد)\n"
-"--delclient : حذ٠یک ماشین کارگیر از MTS (احتیاج به MAC address, IP, "
-"nbi image name دارد)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
-msgstr "ماسک شبکه:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Set password expiration and account inactivation delays"
-msgstr "تأیین تاریخ اعتبار گذرواژه Ùˆ تأخیرهای حساب ØºÛŒØ±ÙØ¹Ø§Ù„"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "بازگذاری"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"دو اجزای حساس یکی میزان نوسازی عمودی، Ú©Ù‡ میزان نوسازی همه‌ی ØµÙØ­Ù‡ می‌باشد Ùˆ "
-"مهمترین آن میزان همزمان سازی اÙقی، Ú©Ù‡ میزانی است Ú©Ù‡ هر خط پویش نمایش داده "
-"می‌شود، هستند. نکته‌ی بسیار مهم آن است که شما نوع مانیتوری را با گستره همزمان "
-"سازی بیش از قدرت مانیتور خود انتخاب ننمایید: شما می‌توانید با این کار مانیتور "
-"خود را خراب کنید. اگر Ø´Ú© دارید، یک تنظیم Ù…Ø­Ø§ÙØ¸Ù‡ کارانه را انتخاب نمایید. "
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
-msgstr "تغییر"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
-msgstr ""
-"\n"
-"دستورات \"%s\" و \"%s\" به شما اجازه دستکاری تنظیمات گزینه برای یک کار چاپی "
-"بخصوص را می‌دهد. Ùقط تنظیمات مورد نظر را به خط دستور اضاÙÙ‡ نمایید, \"%s <file>"
-"\".\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "نام میزبان، نام کاربر و گذرواژه لازم است!"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Insert floppy"
-msgstr "دیسکچه را داخل نمایید"
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid ""
-"WebDAV is a protocol that allows you to mount a web server's directory\n"
-"locally, and treat it like a local filesystem (provided the web server is\n"
-"configured as a WebDAV server). If you would like to add WebDAV mount\n"
-"points, select \"New\"."
-msgstr ""
-"پایان نامه‌ی WebDAV به شما اجازه‌ی سوار کردن یک شاخه‌ی کارگزار اینترنت را بطور "
-"محلی \n"
-"می‌دهد، Ùˆ با آن مانند یک پرونده سیستم محلی Ø±ÙØªØ§Ø± می‌کند (در صورتی Ú©Ù‡ کارگزار "
-"مانند یک \n"
-"کارگزار WebDAV تنطیم شده باشد). اگر شما مایل به اضاÙÙ‡ کردن نقاط سوار "
-"WebDAV \n"
-"هستید، \"جدید\" را انتخاب نمایید."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
-msgstr "جدید"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable syslog reports to console 12"
-msgstr "ÙØ¹Ø§Ù„/ØºÛŒØ±ÙØ¹Ø§Ù„ سازی گزارش‌های syslog به کنسول Û±Û²"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Would you like to try again?"
-msgstr "مایل هستید دوباره امتحان کنید؟"
-
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "جادوگر"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected server"
-msgstr "ویرایش کارگزار انتخاب شده"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Ù„Ø·ÙØ§ مکان ذخیره پشتیبان را انتخاب نمایید"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "شما احتیاج به آغازگری مجدد برای جایگزینی تغییرات جدول قسمت‌بندی دارید"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Ø­Ø§ÙØ¸Ù‡ پنهان مرورگر شامل نشود"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
-msgstr ""
-"شکست در کنترل سیستم پرونده‌ای %s. می‌خواهید خطاها را تعمیر کنید؟ (توجه کنید، "
-"شما می‌توانید اطلاعات خود را از دست بدهید)"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Ù„Ø·ÙØ§ طرح ØµÙØ­Ù‡â€ŒÚ©Ù„ید خود را انتخاب نمایید."
-
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "استاندارد"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Ù„Ø·ÙØ§ نوع موش خود را انتخاب نمایید."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
-msgstr "ارتباط..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "شکست در تنطیم چاپگر \"%s\"!"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "not configured"
-msgstr "تنطیم نشده است"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "About"
-msgstr "درباره"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "تنظیم پراکسی‌ها"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "شروع: بند %s\n"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Mask"
-msgstr "بدون ماسک"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface already configured"
-msgstr "واسط شبکه قبلا تنظیم شده است"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
-msgstr "نتوانستم به دیسکچه دسترسی یابم!"
-
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, "
-"the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a "
-"patent\n"
-"may be applicable to you, check your local laws."
-msgstr ""
-"هشدار: Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± آزاد ممکن است بدون patent نباشد، Ùˆ بعضی از Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±Ù‡Ø§ÛŒ ضمیمه "
-"ممکن است در کشور شما زیر پوشش patent قرار داشته باشند. برای مثال، رمزگشاهای "
-"ام‌پی‌۳ ضمیمه ممکن است بر ای Ø§Ø³ØªÙØ§Ø¯Ù‡ احتیاج به اجازه نامه داشته باشد (برای "
-"تشریحات به پایگاه http://www.mp3licensing.com مراجعه نمایید). اگر در این "
-"باره مطمئن نیستید به قوانین محل اقامت مراجعه نمایید."
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Mail Server"
-msgstr "کارگزار پست"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "Ù„Ø·ÙØ§ بر یک قسمت‌بندی کلیک نمایید"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "دستگاه چند-عملی بر HP JetDirect"
-
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "لینوکس"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
-msgstr "روز بخیر!"
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Upgrade %s"
-msgstr "ارتقا %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "انتخاب ارتباط چاپگر"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
-msgstr "پیشروی پویش برای کانال‌های تلویزیون..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"خطا هنگام ÙØ±Ø³ØªØ§Ø¯Ù† پرونده از طریق FTP.\n"
-"Ù„Ø·ÙØ§ تنظیم FTP خود را تصحیح نمایید."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr "شروع گستره‌ی IP:"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"شبح کارگزار اینترنت (معرو٠به inetd ) سرویس‌های گوناگون اینترنت \n"
-"مورد نیاز دیگر را شروع می‌کند. آن مسئول راه‌اندازی سرویس‌های بسیاری از\n"
-"قبیل telnet, ftp, rsh, Ùˆ rlogin می‌باشد. غیر ÙØ¹Ø§Ù„ کردن inetd باعث\n"
-"غیر ÙØ¹Ø§Ù„ شدن تمام این سرویس‌ها می‌شود."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
-msgstr "Ø§Ø±ØªÙØ§Ø¹ پیشخوان پیشروی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
-"\n"
-"- ذخیره از %s بر میزبان: %s\n"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "آرژانتین"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Domain Name Server"
-msgstr "کارگزار نام دامنه"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Level:"
-msgstr "سطح امنیت:"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr "نقاط سوارسازی باید با یک / شروع شوند"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "انتخاب اندازه‌ی رسانه‌های CD/DVD (در مگابایت)"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "CUPS server"
-msgstr "کارگزار DNS "
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "پسوند کارگزار پست"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "خروج بدون ذخیره کردن"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "یمن"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
-msgstr "این محصول در پایگاه اینترنت MandrakeStore موجود می‌باشد."
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> چیزهای زیادی برای انتخاب از (%s) وجود دارد.\n"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
-msgstr ""
-
-#: ../../../move/move.pm:1
-#, 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."
-msgstr ""
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "شناسایی دستگاه دیسک"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
-msgstr ""
-"شما هیچ بسته‌ی برنامه را انتخاب نکرده‌اید. \n"
-"Ù„Ø·ÙØ§ حداقل نصبی را Ú©Ù‡ می‌خواهید انتخاب نمایید:"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
-msgstr ""
-"شما به میکروکد الکاتل احتیاج دارید.\n"
-"شما می‌توانید آن را از طریق یک دیسکچه یا قسمت‌بندی ویندوز عرضه نمایید،\n"
-"یا آن را بعداً انجام دهید."
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "Ù„Ø·ÙØ§ آدرس اینترنتی کارگزار WebDAV را وارد نمایید"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "تاجیکستان"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "پذیرش"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "توضیح"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter summary text."
-msgstr "Ù„Ø·ÙØ§ متن خلاصه را وارد نمایید."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "خطا در باز کردن %s برای نگارش: %s"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "نوع موش: %s\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr ""
-"کارت شما ممکن است حمایت شتاب‌دهنده‌ی Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø±ÛŒ را با XFree %s داشته باشد."
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "انتخاب یک مانیتور"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "برچسب خالی مجاز نمی‌باشد"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
-msgstr "مالتی(انگلیس)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "نمی‌توانم قسمت‌بندی بیشتری را اضاÙÙ‡ کنم"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "اندازه در مگابایت:"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "چاپگر از راه دور"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
-msgstr "Ù„Ø·ÙØ§ زبان برای Ø§Ø³ØªÙØ§Ø¯Ù‡ را انتخاب نمایید."
-
-#: ../../network/network.pm:1
-#, 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."
-msgstr ""
-"اخطار: این دستگاه قبلا برای تماس به اینترنت تنظیم شده است. \n"
-"شما می‌توانید براحتی نگه داشتن تنظیم کنونی را قبول کنید. \n"
-"تغییر منطقه‌های زیر باعث برهم خوردن این تنظیم می‌شود. "
-
-#: ../../any.pm:1
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
-msgstr "من می‌توانم رایانه شما را برای ورود خودکار یک کاربر تنظیم کنم."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Floppy format"
-msgstr "قالب‌بندی دیسک"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Generic Printers"
-msgstr "چاپگرهای عمومی"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-"Ù„Ø·ÙØ§ چاپگری Ú©Ù‡ کارهای چاپی باید به آن ÙØ±Ø³ØªØ§Ø¯Ù‡ شوند انتخاب کرده یا نام یک "
-"دستگاه/نام پرونده را در خط وزودی وارد نمایید."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr "چاپگرهای موجود بر این ماشین قابل دسترسی برای رایانه‌های دیگر می‌باشند"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of the root partition"
-msgstr "اولین بند قسمت‌بندی ریشه"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Alternative drivers"
-msgstr "راه‌اندازهای جایگزین"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
-"\n"
-"Ù„Ø·ÙØ§ تمام گزینه‌هایی را Ú©Ù‡ احتیاج دارید بررسی نمایید.\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
-msgstr "کیپ ورده"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "آیا این واحد پردازه‌گر مرکزی اشکال ویرگول Cyrix 6x86 دارد"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr "در حال بارگذاری تنظیمات چاپگر... Ù„Ø·ÙØ§Ù‹ صبر کنید"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
-msgstr ""
-"pentiums قدیمی دارای اشکال بوده و هنگام رمزگشایی F00F bytecode از کار "
-"می‌ایستادند"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr "گوام"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
-msgstr ""
-"Ù„Ø·ÙØ§ درگاهی را Ú©Ù‡ چاپگر شما به آن وصل است یا نام دستگاه/نام پرونده را در خط "
-"ورودی انتخاب نمایید."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/گزینه‌ها/آزمایش"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive. It must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
-msgstr ""
-"این سطح با دقت Ø§Ø³ØªÙØ§Ø¯Ù‡ شود. این سیستم شما را برای Ø§Ø³ØªÙØ§Ø¯Ù‡ آسان ولی خیلی \n"
-"حساس می‌سازد. آن نباید برای یک ماشین که به دیگر ماشین‌ها یا به اینترنت \n"
-"وصل است Ø§Ø³ØªÙØ§Ø¯Ù‡ شود. دسترسی به هیچ گذرواژه وجود ندارد."
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mounting partition %s"
-msgstr "سوار کردن قسمت‌بندی %s"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "نام کارگزار"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "کدام قسمت‌بندی را می‌خواهید برای Linux4Win Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید؟"
-
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "due to missing %s"
-msgstr "kdesu وجود ندارد"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Test pages"
-msgstr "ØµÙØ­Ø§Øª آزمایشی"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Logical volume name "
-msgstr "نام حجم منطقی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"List of data to restore:\n"
-"\n"
-msgstr ""
-"لیست داده‌های برای ذخیره:\n"
-"\n"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Checking %s"
-msgstr "بررسی %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "گزینه‌های چاپگر TCP/Socket "
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Ø­Ø§ÙØ¸Ù‡ کارت (DMA)"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "قطع ارتباط از اینترنت"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "ÙØ±Ø§Ù†Ø³Ù‡"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
-msgstr "مرور"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
-msgstr "کنترل Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±Ù‡Ø§ÛŒ نصب شده..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "نام چاپگر از راه دور وجود ندارد!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "آیا می‌خواهید چاپ بر چاپگرهای شبکه محلی ÙØ¹Ø§Ù„ نمایید؟\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "ترکیه"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Number of buttons"
-msgstr "تعداد تکمه‌ها"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "ویتنامی \"ردی٠عددی\" QWERTY"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Module"
-msgstr "بخش"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
-msgstr ""
-"بعلاوه، صÙ‌ها با این برنامه ایجاد نشده است یا \"foomatic-configure\" نمی‌تواند "
-"منتقل شود."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
-msgstr "Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø±"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "کلیدهای کنترل و الت همزمان"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "ایالات متحده"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "User umask"
-msgstr "کاربران umask"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "سیستم‌عامل Ù¾ÛŒØ´â€ŒÙØ±Ø¶ØŸ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "سوئیس (طرح آلمانی)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr "تنظیم همه‌ی سرها بطور جداگانه"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please choose the printer you want to set up. The configuration of the "
-"printer will work fully automatically. If your printer was not correctly "
-"detected or if you prefer a customized printer configuration, turn on "
-"\"Manual configuration\"."
-msgstr ""
-"Ù„Ø·ÙØ§ چاپگری را Ú©Ù‡ می‌خواهید برپاسازی کنید انتخاب نمایید. تنظیم چاپگر کاملا "
-"خودکار عمل خواهد کرد. اگر چاپگر شما درست شناسایی نشد یا شما ترجیح می‌دهید "
-"تنظیم چاپگر را اختصاصی کنید، \"تنظیم دستی\" را روشن نمایید."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "کارگزار NTP"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Sulogin(8) in single user level"
-msgstr "sulogin(8) در سطح کاربر تکی"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Load/Save on floppy"
-msgstr "بارگزاری/ذخیره بر دیسکچه"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
-msgstr "این تم هنوز یک تصویر آغازی را در %s ندارد!"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "خوب"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "ترک در %d ثانیه"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Ù„Ø·ÙØ§ درگاه سریالی Ú©Ù‡ مودم شما به آن وصل است را انتخاب نمایید. "
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Property"
-msgstr "مشخصات"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr "تنظیم LAN "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "غنا"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
-msgstr "مسیر یا بخش لازم است"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Advanced Options"
-msgstr "گزینه‌های Ù¾ÛŒØ´Ø±ÙØªÙ‡"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Configuration"
-msgstr "نمایش تنظیمات"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
-msgstr "اشکال ویرگول"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"در این موقع، شما مجبور به انتخاب قسمت‌بندی(های) که برای نصب سیستم لینوکس \n"
-"مان‌درایک Ø§Ø³ØªÙØ§Ø¯Ù‡ خواهند شد هستید.اگر قسمت‌بندی‌هایی Ú©Ù‡ یا از یک نصب قبلی \n"
-"گنو/لینوکس یا بوسیله ابزار قسمت‌بندی دیگر وجود دارند، شما می‌توانید ار آنها \n"
-"Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید. در غیر این صورت، قسمت‌بندی‌ها باید ایجاد شوند. \n"
-"\n"
-"برای ایجاد قسمت‌بندی‌ها، شما باید اول یک دستگاه دیسک را انتخاب نمایید. \n"
-"شما می‌توانید آن دیسک را بوسیله‌ی کلیک بر ``hda'' برای اولین دستگاه IDE \n"
-" و ``hdb'' برای دومین، ``sda'' برای اولین دستگاه SCSI و غیره برای قسمت‌بندی \n"
-"انتخاب نمایید. \n"
-"\n"
-"برای قسمت‌بندی دستگاه دیسک انتخاب شده، شما می‌توانید از این گزینه‌ها Ø§Ø³ØªÙØ§Ø¯Ù‡ "
-"نمایید: \n"
-"\n"
-" * \"%s\": این گزینه تمام قسمت‌بندی‌های روی دیسک انتخاب شده را حذ٠می‌کند\n"
-"\n"
-" * \"%s\": این گزینه بر روی ÙØ¶Ø§ÛŒ آزاد دیسک شما بطور خودکار قسمت‌بندی‌های "
-"ext3 \n"
-"Ùˆ Ø­Ø§ÙØ¸Ù‡ مبادله swap را ایجاد می‌کند\n"
-"\n"
-"\"%s\": دسترسی به قابلیت‌های دیگر را ÙØ±Ø§Ù‡Ù… می‌سازد\n"
-"\n"
-" * \"%s\": جدول قسمت‌بندی را بر دیسکچه ذخیره می‌کند.در صورت لزوم \n"
-" بعدا می‌توان آن را بازآوری نمود. انجام این گام بشدت پیشنهاد می‌شود.\n"
-"\n"
-" * \"%s\": به شما اجازه‌ی باز‌آوری جدول قسمت‌بندی ذخیره شده را از دیسکچه "
-"می‌دهد.\n"
-"\n"
-" * \"%s\": اگر جدول قسمت‌بندی شما خراب شده باشد شما با این گزینه می‌توانید\n"
-"آن را بازآوری نمایید. Ù„Ø·ÙØ§ دقت کنید Ùˆ بخاطر داشته باشید Ú©Ù‡ این همیشه درست "
-"کار\n"
-"نمی‌کند.\n"
-"\n"
-" * \"%s\": تمام تغییرات باطل شده و جدول قسمت‌بندی اصلی بر دستگاه دیسک\n"
-"بارگزاری مجدد می‌شود.\n"
-"\n"
-" * \"%s\": ØºÛŒØ±ÙØ¹Ø§Ù„ کردن این گزینه کاربران را مجبور می‌کند Ú©Ù‡ رسانه‌های قابل "
-"حمل\n"
-"از قبیل دیسکچه و سی‌دی را دستی سوار یا پیاده کنند.\n"
-"\n"
-" * \"%s\": اگر می‌خواهید از یک جادوگر برای قسمت‌بندی دیسک خود Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید از "
-"این\n"
-"گزینه Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید. این گزینه اگر شما تجربه‌ی قبلی از قسمت‌بندی کردن دیسک "
-"ندارید\n"
-"پیشنهاد می‌شود.\n"
-"\n"
-" * \"%s\": برای لغو تغییرات خود از این گزینه Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید.\n"
-"\n"
-" * \"%s\": عملیات بیشتری را بر قسمت‌بندی‌ها اجازه داده(نوع، گزینه‌ها، قالب‌بندی) "
-"Ùˆ \n"
-"اطلاعات بیشتری را درباره دستگاه دیسک می‌دهد.\n"
-"\n"
-" * \"%s\": وقتی شما قسمت‌بندی دستگاه دیسک خود را به اتمام رساندید،\n"
-"این تغییرات شما را بر دیسک ذخیره می‌سازد.\n"
-"\n"
-"وقتی اندازه‌ی یک قسمت‌بندی را تایین می‌کنید، می‌توانید بخوبی از کلیدهای تیر \n"
-"ØµÙØ­Ù‡â€ŒÚ©Ù„ید خود Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید.\n"
-"\n"
-"توجه: شما می‌توانید به هر گزینه توسط ØµÙØ­Ù‡â€ŒÚ©Ù„ید دسترسی پیدا نمایید. در طول "
-"قسمت‌بندی\n"
-" با Ø§Ø³ØªÙØ§Ø¯Ù‡ از تیرهای [Tab] Ùˆ [Up/Down] مرور نمایید.\n"
-"\n"
-"وقتی یک قسمت‌بندی انتخاب شده باشد، می‌توانید از:\n"
-"\n"
-" * Ctrl-c برای ایجاد یک قسمت‌بندی جدید (وقتی یک قسمت‌بندی خالی انتخاب شده "
-"باشد)\n"
-"\n"
-" * Ctrl-d برای حذ٠یک قسمت‌بندی \n"
-"\n"
-" * Ctrl-m برای تایین نقطه‌ی سوارساری\n"
-"\n"
-"برای Ø¯Ø±ÛŒØ§ÙØª اطلاعات درباره انواع سیستم پرونده موجود، Ù„Ø·ÙØ§Ù‹ ÙØµÙ„ ext2FS \n"
-"را از ` دستورالعمل مرجع'' بخوانید.\n"
-"\n"
-"اگر شما بر یک ماشین PPC نصب می‌کنید، شما باید یک قسمت‌بندی کوچک HFS \n"
-"``bootstrap'' حداقل Û± مگابایت Ú©Ù‡ برای بارگزار آغازگر yaboot Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود را "
-"ایجاد نمایید\n"
-"اگر شما بطور دلخواه آن قسمت‌بندی را بزرگتر بسازید، مثلاً ۵۰ مگابایت، شما آن "
-"را\n"
-"برای انبار یک هسته یدک و تصاویر ramdisk در شرایط آغازگری اضطراری\n"
-"Ù…Ùید خواهید ÛŒØ§ÙØª."
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"کارت گراÙیک\n"
-"\n"
-" برنامه نصب کننده معمولا کارت گراÙیک نصب شده بر ماشین شما را بطور خودکار\n"
-"شناسایی و تنظیم می‌کند. اگر چنین نشده، شما می‌توانید کارتی را که خود نصب "
-"کرده‌اید \n"
-"از این لیست انتخاب نمایید.\n"
-"\n"
-" در صورتی که کارگزارهای مختل٠برای کارت شما در دسترس می‌باشند، با یا بدون\n"
-"شتاب دهنده‌ی ۳بعدی، از شما برای انتخاب کارگزاری که برای شما مناسب‌تر می‌باشد \n"
-"سوال خواهد شد."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "یک خطا هنگام نصب بسته‌های برنامه وجود داشت:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "تنظیم چاپگر Lexmark inkjet "
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "برگشت"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Save partition table"
-msgstr "ذخیره جدول قسمت‌بندی"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "Ùنلاندی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "مقدونیه"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
-msgstr ""
-"اشتراک هر-کاربر از گروه \"fileshare\" Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کند. \n"
-"شما می‌توانید برای اضاÙÙ‡ کردن یک کاربر به این گروه از userdrake Ø§Ø³ØªÙØ§Ø¯Ù‡ "
-"نمایید."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "اسلوونیایی"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Authorize:\n"
-"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\n"
-"\n"
-"- only local ones if set to \"LOCAL\"\n"
-"\n"
-"- none if set to \"NONE\".\n"
-"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
-msgstr ""
-"اجازه دادن:\n"
-"\n"
-"- همه سرویس‌های کنترل شده بوسیله tcp_wrappers (ØµÙØ­Ø§Øª دستورالعمل hosts.deny "
-"(5) را ببینید) اگر به \"ALL\" گذارده شده,\n"
-"\n"
-"- Ùقط سرویس‌های محلی اگر به \"LOCAL\" گذارده شد\n"
-" \n"
-" - هیچکدام اگر به \"NONE\" گذارده شده\n"
-"\n"
-"برای اجازه به سرویس‌هایی Ú©Ù‡ احتیاج دارید، از /etc/hosts.allow Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید "
-"((hosts.allow(5)را مشاهده نمایید)."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr "لیبی"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "تنظیم دست‌نویس‌ها، نصب Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±ØŒ شروع کارگزارها..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "چاپگر بر درگاه موازی #%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
-msgstr ""
-"\n"
-"- نگارش به CD"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "جدول"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "نمی‌دانم چگونه %s را با نوع %s قالب‌بندی کنم"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Model"
-msgstr "مدل"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "USB printer #%s"
-msgstr "چاپگر USB #%s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Stop Server"
-msgstr "توق٠کارگزار"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
-"\n"
-"انتخاب طرح برای\n"
-"lilo Ùˆ bootsplash,\n"
-"شما می‌توانید آنها را\n"
-"جداگانه انتخاب نمایید"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Modem"
-msgstr "مودم"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr "تووالو"
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از شناسایی خودکار"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
-msgstr ""
-"برنامه GPM پشتیبانی موش را به برنامه‌های متنی لینوکس مانند Midnight "
-"Commander \n"
-"اضاÙÙ‡ می‌کند. آن همچنین اجازه عملیات برش-چسباندن را در کنسول‌های بر \n"
-"اساس-موش را داده Ùˆ پشتیبانی Ùهرست‌های جهنده را شامل می‌کند."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr "شروع شده در آغاز"
-
-#: ../advertising/12-mdkexpert.pl:1
-#, 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:"
-msgstr ""
-"برای پخش دانستنی‌های خود و کمک بدیگران به گروه حمایت MandrakeSoft و جامعه "
-"لینوکس بپیوندید و یک متخصص شناخته شده در وب‌گاه حمایت تکنیکی بشوید:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "No password aging for"
-msgstr "هیچ عمر گذرواژه برای‌"
-
-#: ../../standalone/draksec:1
-#, 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"
-msgstr ""
-"گزینه‌های در دنبال می‌تواند برای تنظیم امنیت سیستم انتخاب \n"
-"شوند. اگر احتیاج به توضیح دارید، نگاهی به کمک راهنما بیاندارید.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "ÛŒØ§ÙØªÙ† پویشگران در دسترس بر ماشین‌های از راه دور بطور خودکار"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr "تیمور شرقی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
-msgstr "بر دستگاه نوار"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-"\n"
-"- ذخیره بر نوار در دستگاه: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Login name"
-msgstr "نام ثبت‌ورود"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
-msgstr "گزارش پرونده‌های بی صاحب"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr "حذ٠نمایه..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "در حال نصب Foomatic..."
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Ù„Ø·ÙØ§ خارج شوید سپس از Ctrl-Alt-BackSpace Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected"
-msgstr "شناسایی شده"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "شبکه باید دوباره شروع شود. می‌خواهید آن را دوباره شروع کنید؟"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package: "
-msgstr "بسته‌ی برنامه:"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr "نمی‌توان /etc/sysconfig/bootsplash را نوشت."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "اخطار امنیتی!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
-msgstr "نه، ورود خودکار را نمی‌خواهم"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
-msgstr "ابزار در بستر سازی ویندوز"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr "همه زبان‌ها"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "برداشتن %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s ÛŒØ§ÙØª نشد...\n"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Testing your connection..."
-msgstr "آزمایش ارتباط شما..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cache size"
-msgstr "اندازه‌ی Ø­Ø§ÙØ¸Ù‡â€ŒÛŒ پنهان"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"گذرواژه‌ها اکنون ÙØ¹Ø§Ù„ می‌باشند، ولی هنوز Ø§Ø³ØªÙØ§Ø¯Ù‡ مانند رایانه‌ی شبکه پیشنهاد "
-"نمی‌شود."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr "بند شروع:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr "کونگو (برازاویله)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Read"
-msgstr "خواندن"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "بسته‌ی %s لازم است نصب شود. آیا می‌خواهید آن را نصب کنید؟"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
-msgstr "سیشلز"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
-"برنامه Printerdrake نام مدل را از شناسایی خودکار با مدل در سیاهه‌ی بانک "
-"اطلاعات چاپگر برای پیدا کردن بهترین تطابق مقایسه می‌کند. این انتخاب می‌تواند "
-"اشتباه باشد، مخصوصا اگر نام چاپگر شما در سیاهه بانک اصلا وجود نداشته باشد. "
-"کنترل نمایید که انتخاب درست است و بر \"مدل درست\" کلیک کرده و اگر نه بر "
-"\"انتخاب دستی مدل\" کلیک کرده تا بتوانید ندل چاپگر خود را دستی در ØµÙØ­Ù‡ بعدی "
-"انتخاب نمایید.\n"
-"\n"
-"ÛŒØ§ÙØª چاپگر شما بوسیله Printerdrake:\n"
-"\n"
-"%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Bad password on %s"
-msgstr "گذرواژه‌ی بد روی %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
-"\n"
-"یک چاپگر ناشناس به سیستم شما مستقیما وصل است"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Control key"
-msgstr "کلید راست کنترل"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"یک دیسکچه قالب‌بندی شده‌ی FAT را در دستگاه %s با %s در شاخه‌ی ریشه داخل کرده و %"
-"s را ÙØ´Ø§Ø± دهید"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "زامبیا"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr "مدیر امنیتی (ورود یا پست الکترونیکـ)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr "متاسÙÙ…ØŒ ما Ùقط هسته‌ی Û².۴را حمایت می‌کنیم."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr "رومانیایی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
-msgstr "تحت تهیه ... Ù„Ø·ÙØ§ صبر کنید."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "مصر"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "جمهوری چک"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "کارت صدا"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Import Fonts"
-msgstr "وارد کردن قلم نگارش"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"شما یک قسمت‌بندی بزرگ ویندوز Ù…Ø§ÛŒÚ©Ø±ÙˆØ³Ø§ÙØª دارید. \n"
-"پیشنهاد می‌شود شما آن قسمت‌بندی را در ابتدا تغییر اندازه دهید \n"
-"(بر آن کلیک کرده، سپس بر \"تغییر اندازه\" کلیک نمایید)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "ÙØ´Ø±Ø¯Ù‡â€ŒØ³Ø§Ø²ÛŒ پرونده‌های موقت"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-"تبریک، تنظیم شبکه و اینترنت به پایان رسید.\n"
-"\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "تغییر نوع قسمت‌بندی"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"وضوح \n"
-"\n"
-" در اینجا شما می‌توانید وضوح Ùˆ عمق رنگ موجود برای Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± خود را انتخاب \n"
-"نمایید. آن را که برای شما بهتر است انتخاب کنید (شما بعد از نصب می‌توانید آن "
-"را\n"
-" تغییر دهید). یک نمونه از تنظیم انتخاب شده در مانیتور نشان داده می‌شود."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Network Options"
-msgstr "گزینه‌های شبکه"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable msec hourly security check"
-msgstr "کنترل امنیتی ساعتی msec "
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"نمایش تم \n"
-"زیر کنسول"
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr "(روی %s)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "سری‌های MM "
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"یک کتابخانه Ú©Ù‡ در مقابل لبریزی ص٠داده‌ها Ùˆ حمله‌های رشته‌ی قالب‌بندی Ø¯ÙØ§Ø¹ می‌کند."
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr "ميانگين"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "New printer name"
-msgstr "نام چاپگر جدید"
-
-#: ../../fs.pm:1
-#, 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 )."
-msgstr ""
-"اجازه می‌دهد یک کاربر عادی سیستم پرونده را سوار کند. نام \n"
-"کاربر باید در پرونده mtab نوشته شده باشد برای اینکه او بتواند سیستم پرونده "
-"را دوباره \n"
-"پیاده کند. این گزینه، گزینه‌های noexec, nosuid, و nodev را در بر دارد (مگر\n"
-" آنکه بوسیله گزینه‌های دیگر در خط گزینه user,exec,dev,suid بازنگارش شود)."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr "گینه‌ی استوایی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup System"
-msgstr "سیستم ذخیره پشتیبان"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Build Backup"
-msgstr "ساختن ذخیره پشتیبان"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-"برای چاپ یک پرونده از خط دستور (پنجره پایانه) از دستور \"%s <file>\" یا \"%s "
-"<file>\" Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "در حال حاضر هیچ احتمال جایگزین در دسترس نمی‌باشد"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwertz)"
-msgstr "رومانیایی"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Write Config"
-msgstr "نگارش تنظیم"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The routed daemon allows for automatic IP router table updated via\n"
-"the RIP protocol. While RIP is widely used on small networks, more complex\n"
-"routing protocols are needed for complex networks."
-msgstr ""
-"شبح routed اجازه‌ی بروزسازی جدول مسیریاب IP خودکار از طریق پایان نامه RIP را "
-"می‌دهد. \n"
-"در حالی Ú©Ù‡ RIP بطور گسترده در شبکه‌های Ú©ÙˆÚ†Ú© Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود، برای شبکه‌های "
-"پیچیده \n"
-"پایان نامه‌های مسیریابی پیچیده‌تر لازم است."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr "کیریباتی"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "موش لوگیتک (serial, نوع قدیمی C7) با شبیه سازی چرخ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "کلیدهای (نه پشتیبان‌درایک) دیگری قبلا وجود دارند"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"X (برای سیستم پنجره X ) قلب واسط تصویری لینوکس/گنو می‌باشد که تمام محیط‌های \n"
-"تصویری (KDE, GNOME, AfterStep, WindowMaker وغیره) بسته بندی شده با \n"
-"لینوکس مان‌درایک بر روی آن تکیه دارند.\n"
-"\n"
-"یک لیست ار اجزای گوناگون برای تغییر و تهیه بهترین نمایش تصویری به شما عرضه\n"
-"خواهد شد: کارت گراÙیک\n"
-"\n"
-" نصب کننده معمولاً بطور خودکار کارت گراÙیک بر روی ماشین شما را شناسایی\n"
-"و تنظیم خواهد کرد. اگر چنین نشد، می‌توانید کارت خود را از این لیست انتخاب "
-"نمایید.\n"
-"\n"
-" در صورتی که کارگزارهای گوناگونی برای کارت شما وجود دارند، با یا بدون\n"
-"شتاب‌دهنده‌ی ۳ بعدی، از شما برای انتخاب کارگزاری که بهتر جوابگوی احتیاجات \n"
-"شما می‌باشد سوال خواهد شد.\n"
-"\n"
-"\n"
-"نمایشگر\n"
-"\n"
-" نصب کننده معمولاً بطور خودکار نمایشگر وصل شده به ماشین شما را شناسایی\n"
-"و تنظیم خواهد کرد. اگر چنین نشد، می‌توانید نمایشگر خود را از این لیست انتخاب "
-"نمایید.\n"
-"\n"
-"\n"
-"\n"
-"وضوح\n"
-"\n"
-" در اینجا می‌توانید وضوح Ùˆ عمق‌های رنگ موجود برای Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± خود را انتخاب\n"
-"نمایید. آن را که بهترین جوابگوی احتیاجات شما می‌باشد را انتخاب کنید (شما "
-"قادر\n"
-"خواهید بود که آن را بعد از نصب تغییر دهید). یک نمونه از تنظیمات انتخاب شده "
-"در\n"
-"نمایشگر نشان داده خواهد شد.\n"
-"\n"
-"\n"
-"\n"
-"آزمایش\n"
-"\n"
-" سیستم تلاش خواهد کرد تا یک ØµÙØ­Ù‡ تصویری را با وضوح مورد خواست باز کند.\n"
-"اگر شما بتوانید پیغام هنگام آزمایش را مشاهده نمایید و جواب \"%s\"را بدهید،\n"
-"پس DrakX به مرحله‌ی بعدی ادامه خواهد داد. اگر شما نتوانیدپیغام را ببینید، "
-"بدین\n"
-"معنی است که بعضی از قسمت‌های تنظیمات شناسایی خودکار صحیح نبوده و آزمایش\n"
-"بعد از Û±Û² ثانیه بطور خودکار تمام شده، شما را به Ùهرست برمیگرداند. تنظیمات "
-"را\n"
-"تا وقتی که نمایش تصویری درست را بدست نیاورده‌اید تغییر دهید.\n"
-"\n"
-"\n"
-"\n"
-"گزینه‌ها\n"
-"\n"
-" در اینجا می‌توانید تعویض خودکار به واسط تصویری را در آغازگری انتخاب "
-"نمایید.\n"
-"روشن است که اگر ماشین شما قرار است کارگزار شود، یا اگر شما در تنظیم "
-"نمایشگر \n"
-"موÙÙ‚ نبوده‌اید بخواهید \"%s\" را علامت بزنید."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr "مرور"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr "CDROM"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "آیا می‌خواهید سعی کنید اکنون به اینترنت تماس برقرار نمایید؟"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "بلژیکی"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "آیا شما یک کارت صدای ISA دارید؟"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"هیچ کارت شبکه در سیستم شما شناسایی نشده است.\n"
-"نمی‌توانم این نوع ارتباط را برپاسازی کنم."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Windows"
-msgstr "پنجره‌ها"
-
-#: ../../common.pm:1
-#, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "نمی‌توان قبل از قسمت‌بندی از ØµÙØ­Ù‡ عکس Ú¯Ø±ÙØª."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Name"
-msgstr "نام میزبان"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/پرونده/ذخیرهـبه"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"برای دستیابی به چاپگر بر کارگزارهای از راه دور CUPS در شبکه محلی شما Ùقط "
-"کاÙÛŒ است گزینه \"ÛŒØ§ÙØªÙ† خودکار چاپگرهای موجود بر ماشین‌های از راه دور\" را "
-"روشن نمایید؛ کارگزارهای CUPS ماشین شما را بطور خودکار از وجود آنها آگاه "
-"می‌سازد. همه چاپگرهای شناخته شده کنونی در سیاهه \"چاپگرهای از راه دور\" در "
-"پنجره اصلی Printerdrake وجود دارند. اگر کارگزار(های) CUPS در شبکه محلی "
-"نیستند، شما باید نشانی IP Ùˆ بطور دلخواه شماره درگاه را برای Ú¯Ø±ÙØªÙ† اطلاعات از "
-"کارگزار وارد نمایید."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr "%s در بانک اطلاعات پویشگر نیست، دستی تنظیم شود؟"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "تاخیر قبل از آغازگری تصویر Ù¾ÛŒØ´â€ŒÙØ±Ø¶"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Restrict command line options"
-msgstr "محدودیت گزینه‌های خط دستور "
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "East Europe"
-msgstr "اروپای غربی"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از ÙØ¶Ø§ÛŒ آزاد"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از dhcp"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr "اخطار پست"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Internet configuration"
-msgstr "تنظیم اینترنت"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr "ازبکستان"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected %s"
-msgstr "شناسایی شده %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Ú©Ø´Ù‌خودکار _چاپگرها"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "پایان"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "نمایش خودکار بسته‌های انتخاب شده"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr "توگو"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "پرچم‌های CPU گزارش شده بوسیله هسته"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "اشکالی رخ داد! - آیا mkisofs نصب شده است؟"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "۱۶ مگابایت"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "Ù„Ø¸ÙØ§ دوباره تلاش نمایید"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The model is correct"
-msgstr "این مدل درست است"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "تغییر اندازه FAT شکست خورد: %s"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr "انتخاب بسته تکی"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr "این قسمت‌بندی قابل تغییر اندازه نمی‌باشد"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr "جایگاه"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "USA (cable-hrc)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "گواتمالا"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr "Journalised FS"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr "کنترل بی‌نظم کارت‌های شبکه"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
-msgstr "این ماشین"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "حر٠دستگاه DOS : %s (حدس)\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr "بحرین"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "انتخاب پرونده و شاخه‌ها و کلیک بر تایید"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit scsi modules"
-msgstr "حذ٠بخش‌های scsi"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "خانواده پردازه‌گر (eg: 6 for i686 class)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"شما در حال تنظیم شبکه هستید در صورتی که شبکه قبلا تنظیم شده است. \n"
-"برای نگه داشتن تنظیم بر تایید کلیک کرده یا بر حذ٠برای تنظیم مجدد ارتباط "
-"شبکه و اینترنت.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
-msgstr "اجرای کنترل امنیتی روزانه"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "طرح ØµÙØ­Ù‡â€ŒÚ©Ù„ید: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"در اینجا می‌توانید انتخاب اینکه آیا چاپگرهای مرتبط به این ماشین می‌توانند در "
-"دسترس ماشین‌های از راه دور قرار گیرند و بوسیله‌ی کدامیک از آنها."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr "مالتی"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "ایجاد دیسکچه‌ی آغازگری با موÙقیت تکمیل شد \n"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-"سوار و پیاده کردن همه نقاط سوارسازی سیستم پرونده شبکه (NFS), SMB (مدیر\n"
-"شبکه محلی/Windows), و NCP (NetWare)."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Launch the wizard"
-msgstr "شروع جادوگر "
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Tvcard"
-msgstr "Tvcard"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "تعویض بین حالت عادی/کارشناسی"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr "اندازه"
-
-#: ../../help.pm:1
-#, c-format
-msgid "GRUB"
-msgstr "GRUB"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr "گرین‌لند"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "پنج‌شنبه"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "برچسب نادرست نوار. برچسب نوار %s می‌باشد."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"تنظیم اشتراک ارتباط اینترنت قبلا انجام شده است. \n"
-"آن در حال حاضر ÙØ¹Ø§Ù„ می‌باشد. \n"
-"\n"
-"چه کار می‌خواهید انجام بدهید؟"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete All NBIs"
-msgstr "حذ٠همه NBIs"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"این Ú¯ÙØªÚ¯Ùˆ به شما اجازه‌ی میزان کردن بارگزار آغازگر را می‌دهد:\n"
-"\n"
-" * \"%s\": سه انتخاب برای بارگزار آغازگر شما وجود دارد:\n"
-"\n"
-" * \"%s\": اگر شما grub (Ùهرست متنی) را ترجیح می‌دهید.\n"
-"\n"
-" * \"%s\": اگر شما LILO با واسط Ùهرست متنی را ترجیح می‌دهید.\n"
-"\n"
-" * \"%s\": اگر شما LILO با واسط Ùهرست تصویری را ترجیح می‌دهید.\n"
-"\n"
-" * \"%s\": در بیشتر مواقع شما Ù¾ÛŒØ´â€ŒÙØ±Ø¶ (\"%s\") را تغییر نخواهید داد, اما "
-"اگر\n"
-"شما ترجیح می‌دهید، بارگزار آغازگر می‌تواند بر دستگاه دوم دیسک \n"
-"(\"%s\"), یا حتی بر دیسک‌نرم (\"%s\") نصب شود;\n"
-"\n"
-" * \"%s\": بعد از آغاز و بازآغازگری رایانه، این تاملی است که به کاربر برای\n"
-"برای انتخاب یک ورودی آغازگری غیر از Ù¾ÛŒØ´â€ŒÙØ±Ø¶ داده می‌شود. \n"
-"\n"
-"!! توجه داشته باشید که اگر شما هیچ بارگزار آغازگری را برای نصب انتخاب نکنید "
-"(با انتخاب\n"
-"\"%s\"), شما باید حتما روشی برای آغاز سیستم لینوکس مان‌درایک خود داشته "
-"باشید!\n"
-"مطمئن شوید قبل از تغییر هر گزینه‌ای می‌دانید چکار دارید می‌کنید!! \n"
-"\n"
-"با کلیک بر تکمه \"%s\" در این Ú¯ÙØªÚ¯Ùˆ ØŒ گزینه‌های Ù¾ÛŒØ´Ø±ÙØªÙ‡ عرضه شده Ú©Ù‡\n"
-"معمولا برای کاربران کارشناس در نظر Ú¯Ø±ÙØªÙ‡ شده‌اند."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"if set, send the mail report to this email address else send it to root."
-msgstr "اگر گزیده شده، گزارش پستی را به این نشانی وگرنه به مدیر Ø¨ÙØ±Ø³ØªÛŒØ¯."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "کدام تنظیم XFree را می‌خواهید؟"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "More"
-msgstr "بیشتر"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
-msgstr ""
-"این همان املایی Ú©Ù‡ خط ÙØ±Ù…ان برنامه‌ی 'cdrecord' دارد را Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کند. "
-"'cdrecord -scanbus' شماره دستگاه را به شما نشان می‌دهد."
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which can "
-"accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should choose a lower level."
-msgstr ""
-"با این سطح امنیتی، Ø§Ø³ØªÙØ§Ø¯Ù‡ از این سیستم مانند یک کارگزار ممکن می‌شود. \n"
-"امنیت به اندازه‌ی کاÙÛŒ بالا است Ú©Ù‡ بتوان از این سیستم مانند یک کارگزار Ú©Ù‡ "
-"بتواند ارتباطات \n"
-"بسیاری را از کارگیرها بپذیرد Ø§Ø³ØªÙØ§Ø¯Ù‡ نمود. توجه: اگر رایانه شما Ùقط یک "
-"کارگیر در اینترنت است، شما باید سطح پایین‌تری را انتخاب نمایید. "
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Server Name"
-msgstr "نام کارگزار"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Password"
-msgstr "حساب گذرواژه"
-
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
-msgstr ""
-"%s نمی‌تواند نشان داده شود.\n"
-"هیچ ورودی راهنما برای این نوع\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-"شما تصمیم بر نصب بارگزار آغازگر روی یک قسمت‌بندی دارید. \n"
-"این بدین معنی است که شما قبلا یک کارگزار آغازگر روی دیسکی که آغازگر است "
-"دارید. \n"
-"\n"
-"شما از کدام دستگاه آغازگری می‌کنید؟"
-
-#: ../../install_interactive.pm:1
-#, 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."
-msgstr ""
-"هشدار!\n"
-"\n"
-"برنامه DrakX اکنون قسمت‌بندی ویندوز شما را تغییر اندازه می‌دهد. دقت کنید:\n"
-"این عملیات خطرناک می‌باشد. اگر قبلا این کار را نکرده‌اید،\n"
-"شما باید اول از عملیات نصب خارج شده، برنامه \"chkdsk c:\" را از یک اعلان\n"
-"ÙØ±Ù…ان زیر ویندوز اجرا کرده (آگاه باشید Ú©Ù‡ Ùقط راندن برنامه گراÙیکی \"scandisk"
-"\" کاÙÛŒ نمی‌باشد، مطمئن شوید Ú©Ù‡ از \"chkdsk\" در یک اعلان ÙØ±Ù…ان Ø§Ø³ØªÙØ§Ø¯Ù‡ "
-"می‌کنید), بد نیست که برنامه defrag را نیز اجرا کنید، سپس نصب را\n"
-"دوباره شروع نمایید. شما باید داده‌های خود را ذخیره پشتیبانی کنید.\n"
-"وقتی مطمئن شدید، تایید را ÙØ´Ø§Ø± دهید."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tajik keyboard"
-msgstr "ØµÙØ­Ù‡â€ŒÚ©Ù„یدتاجیکی"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-"شما می‌توانید تنظیمات چاپگر که برای اسپولر %s انجام داده‌اید را به اسپولر "
-"کنونی خود %s کپی کنید. تمام داده‌های تنظیمات (نام چاپگر، توضیحات، مکان، نوع "
-"ارتباط Ùˆ گزینه تنظیم‌های Ù¾ÛŒØ´â€ŒÙØ±Ø¶) در بر Ú¯Ø±ÙØªÙ‡ شده ولی کارهای چاپی منتقل "
-"نخواهند شد.\n"
-"همه‌ی صÙ‌های چاپی نمی‌توانند منتقل شوند، این بدلایل بدنبال آمده می‌باشد:\n"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Font List"
-msgstr "لیست قلم نگارش"
-
-#: ../../install_steps_interactive.pm:1
-#, 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."
-msgstr ""
-"شما ممکن است احتیاج به تغییر Firmware آزاد دستگاه-آغازگری خود \n"
-" برای ÙØ¹Ø§Ù„ کردن بارگزار آغازگر داشته باشید. اگر شما اعلان بارگزار آغازگر را "
-"در \n"
-" بازآغازگری مشاهده نکردید، گزینه-دستور-O-F را نگه داشته و دستور زیر را وارد "
-"نمایید: \n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" سپس بنویسید: shut-down\n"
-"در آغازگری بعدی شما باید اعلان بارگزار آغازگر را مشاهده نمایید."
-
-#: ../../install_steps_interactive.pm:1
-#, 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"
-msgstr ""
-"بنظر میرسد که شما یک رایانه‌ی عهد عتیق یا ناشناس دارید، \n"
-"بارگزار آغازگر یابوت برای شما کار نخواهد کرد. \n"
-"این نصب ادامه پیدا خواهد کرد، ولی شما باید \n"
-"از BootX یا طریق دیگری برای آغازگری Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Select file"
-msgstr "انتخاب پرونده"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr ""
-"انتخاب شبکه یا میزبانی که چاپگرهای محلی باید بر آن در دسترس قرار گیرند:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"این دستوراتی است Ú©Ù‡ می‌توانید در منطقه‌ی \"دستور چاپی\" Ú¯ÙØªÚ¯ÙˆÙ‡Ø§ÛŒ چاپی بسیاری "
-"از برنامه‌ها Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید، ولی در اینجا نام پرونده را نگذارید چرا Ú©Ù‡ پرونده "
-"برای چاپ شدن توسط برنامه عرضه می‌شود.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "ژاپن"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print option list"
-msgstr "لیست گزینه چاپ"
-
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr "تغییر انجام شده است، ولی برای ÙØ¹Ø§Ù„ شدن شما باید خارج شوید"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
-msgstr "کشور / منطقه"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search servers"
-msgstr "جستجوی کارگزارها"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "نام ص٠چاپی NCP وجود ندارد!"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"اخطار، یک ارتباط اینترنت شناسایی شده است، شاید از شبکه شما Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کند"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom با برچسب \"%s\""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr "رسانه CDRW "
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"ذخیره‌سازی Ùˆ بازسازی entropy pool سیستم برای تولید اعداد شانسی با Ú©ÛŒÙیت "
-"بالاتر."
-
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr "رایانه خود را به یک کارگزار قابل اعتماد تبدیل نمایید"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr "گذرواژه‌ی خالی در پرونده /etc/shadow را کنترل نمایید"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid " (driver %s)"
-msgstr " (راه‌انداز %s)"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
-msgstr "شروع در صورت تقاضا"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"پرونده(های) حلقه‌برگرد:\n"
-" %s\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr "نمی‌دانم"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", میزبان TCP/IP \"%s\", درگاه %s"
-
-#: ../../standalone/drakautoinst:1
-#, 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?"
-msgstr ""
-"شما بزودی یک دیسکچه نصب خودکار تنظیم می‌کنید. این قابلیت قدری خطرناک می‌باشد و "
-"باید با احتیاط Ø§Ø³ØªÙØ§Ø¯Ù‡ شود.\n"
-"\n"
-"با این قابلیت، شما قادر خواهید بود که نصب انجام شده بر این رایانه را دوباره "
-"اجرا نمایید، بطوری که از شما در بعضی مراحل و برای تغییر مقدارهای آن مواحل "
-"سوال شود. \n"
-"\n"
-"برای حداکثر ایمنی، قسمت‌بندی و قالب‌بندی هرگز خودکار انجام نخواهد شد، هر چه را "
-"که شما هنگام نصب این رایانه انتخاب کرده باشید. \n"
-"\n"
-"می‌خواهید ادامه دهید؟"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Telugu"
-msgstr "تلوگو"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
-msgstr ""
-"\n"
-"\n"
-"کارت شما در حال حاضر از راه‌انداز %s\"%s\" Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کند (راه‌انداز Ù¾ÛŒØ´â€ŒÙØ±Ø¶ "
-"برای کارت شما \"%s\" می‌باشد)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Uninstall"
-msgstr "بعد از نصب‌برداری"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connecting to Internet "
-msgstr "ارتباط با اینترنت"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
-msgstr " ("
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid level"
-msgstr "سطح Cpuid "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "کارگزار Novell \"%s\"، چاپگر \"%s\""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "مغول"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Add a module"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù† یک بخش"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr "نمایه برای حذÙ"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Local measure"
-msgstr "مقیاس محلی"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
-msgstr "اخطار : نشانی IP %s معمولا رزرو شده است!"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "busmouse"
-msgstr "busmouse"
-
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - ایجاد تصاویر آغازگری ÙØ¹Ø§Ù„ شده‌ی آغازگری شبکه‌ای:\n"
-" \t\tبرای آغازگری یک هسته از طریق etherboot, یک تصویر هسته/initrd "
-"باید ایجاد شود.\n"
-" \t\tmkinitrd-net بیشتر این کارها را انجام می‌دهد Ùˆ drakTermServ Ùقط "
-"یک واسط گراÙیک\n"
-" \t\tبرای مدیریت/تغییر این تصاویر می‌باشد. برای ایجاد پرونده‌ی \n"
-" \t\t/etc/dhcpd.conf.etherboot-pcimap.include که مانند یک ضمیمه "
-"بدرون \n"
-" \t\tdhcpd.conf کشیده می‌شود, شما باید حداقل یک هسته‌ی کامل تصاویر "
-"etherboot را ایجاد نمایید."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
-msgstr "حساب ورود به سیستم (نام کاربر)"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
-msgstr "اشکال Fdiv "
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-"تنظیم‌گر drakfirewall \n"
-"\n"
-"مطمئن شوید که دسترسی به شبکه/اینترنت خود را قبل از ادامه \n"
-"با drakconnect تنظیم کرده باشید."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr " پذیرش پخش همگانی انعکاس icmp"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr "اروگوئه"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Benin"
-msgstr "بنین"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "کارگزار SMB/Windows \"%s\", اشتراک \"%s\""
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path selection"
-msgstr "انتخاب مسیر"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Name/IP address of host:"
-msgstr "نام/نشانی IP میزبان"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "نمایشگر: %s\n"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom & system settings"
-msgstr "اوضاع سیستم & اختصاصی"
-
-#: ../../partition_table/raw.pm:1
-#, c-format
-msgid ""
-"Something bad is happening on your drive. \n"
-"A test to check the integrity of data has failed. \n"
-"It means writing anything on the disk will end up with random, corrupted "
-"data."
-msgstr ""
-"یک Ø§ØªÙØ§Ù‚ ناخوشایند روی دستگاه شما رخ داد. \n"
-"یک آزمایش برای تایین درستی داده‌ها شکست خورد. \n"
-"این بدین معنی است که هر چه بر روی دیسک بنویسید اطلاعات شانسی و خراب خواهد شد."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "نام میزبان یا IP وجود ندارد!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr ""
-"Ù„Ø·ÙØ§ همه کاربرانی را Ú©Ù‡ می‌خواهید ضمیمه ذخیره پشتیبان خود کنید انتخاب نمایید. "
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
-"این %s باید بوسیله printerdrake تنظیم گردد.\n"
-"شما می‌توانید printerdrake را از مرکز کنترل مان‌درایک در قسمت Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± اجرا "
-"نمایید."
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Key isn't writable"
-msgstr "XawTV نصب نشده است!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bangladesh"
-msgstr "بنگلادش"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
-msgstr "ژاپن"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Initial tests"
-msgstr "آزمایش‌های آشناسازی"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Continue"
-msgstr "ادامه"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom Restore"
-msgstr "بازسازی اختصاصی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Saturday"
-msgstr "شنبه"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"\"%s\": اگر یک کارت صدا در سیستم شما شناسایی شده باشد در اینجا نشان داده "
-"می‌شود. \n"
-"اگر کارت نشان داده شده آن که در سیستم شما وجود دارد نیست، \n"
-"می‌توانید بر تکمه کلیک کرده و راه‌انداز دیگری انتخاب نمایید. "
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the root umask."
-msgstr "umask مدیر را بگذارید."
-
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "خطا در خواندن پرونده %s"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr "بر اساس دست‌نویس"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "PLL setting:"
-msgstr "تنظیم PLL:"
-
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "شما باید یک قسمت‌بندی FAT سوار شده در /boot/efi باشید"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
-msgstr "روشن"
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "The URL must begin with http:// or https://"
-msgstr "نشانی اینترنت باید با http:// یا https:// شروع شود"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"شما می‌توانید URI را برای دستیابی به چاپگر مستقیما مشخص نمایید. این URI باید "
-"مشخصات CUPS یا Foomatic را حمایت کند. توجه داشته باشید که همه انواع URI "
-"بوسیله همه اسپولرها حمایت نمی‌شوند. "
-
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "سیستم عامل دیگر (SunOS...)"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Install/Upgrade"
-msgstr "نصب/ارتقا"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d packages"
-msgstr "بسته‌های %d"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Costa Rica"
-msgstr "کوستا ریکا"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Backup and Restore application\n"
-"\n"
-"--default : save default directories.\n"
-"--debug : show all debug messages.\n"
-"--show-conf : list of files or directories to backup.\n"
-"--config-info : explain configuration file options (for non-X "
-"users).\n"
-"--daemon : use daemon configuration. \n"
-"--help : show this message.\n"
-"--version : show version number.\n"
-msgstr ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"برنامه ذخیره پشتیبان و بازسازی\n"
-"\n"
-"--default : ذخیره شاخه‌های Ù¾ÛŒØ´â€ŒÙØ±Ø¶.\n"
-"--debug : نشان دادن تمام پیغام‌های اشکال‌زدایی.\n"
-"--show-conf : Ùهرست پرونده‌ها Ùˆ شاخه‌ها برای ذخیره.\n"
-"--config-info : تشریح گزینه‌های پرونده تنظیم (برای کاربران بدون-X ).\n"
-"--daemon : Ø§Ø³ØªÙØ§Ø¯Ù‡ از شبح تنظیم. \n"
-"--help : نمایش این پیغام .\n"
-"--version : نمایش شماره نسخه.\n"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain Authentication Required"
-msgstr "اعتبارسنجی دامنه لازم است"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Use libsafe for servers"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از libsafe برای کارگزارها"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Icelandic"
-msgstr "ایسلندی"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
-msgstr ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
-msgstr ""
-"حداکثر اندازه‌ی مجاز\n"
-"برای Drakbackup (مگابایت)"
-
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "سوارسازی دایره‌ای %s\n"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo/grub mode"
-msgstr "حالت Lilo/grub "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "مارتینیک"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "دستگاه دیسک / NFS"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Old user list:\n"
-msgstr "لیست کاربر قدیمی:\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
-msgstr "جستجوی ذخیره‌های پشتیبان‌"
-
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "a number"
-msgstr "یک عدد"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "سوئدی"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "کدام راه‌انداز %s را باید امتحان کنم؟"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr ""
-"اگر یکی از سرویس‌های انتخاب شده دیگر در جریان نباشد یک اخطار Ø¯Ø±ÛŒØ§ÙØª می‌نمایید"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Weekday"
-msgstr "Ø±ÙˆØ²Ù‡ÙØªÙ‡"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Filesystem types:"
-msgstr "انواع سیستم‌های پرونده‌ای:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Northern Mariana Islands"
-msgstr "جزایر ماریان شمالی"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", دستگاه چند-عملیاتی بر HP JetDirect"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "هیچکدام"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"نام نمایه برای ایجاد (نمایه جدید مثل یک کپی از نمایه کنونی ایجاد شده است)"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Floppy"
-msgstr "دیسکچه"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "Ghostscript referencing"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Bootloader"
-msgstr "بارگزار آغازگر"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
-msgstr "اجازه دادن به تمام سرویس‌های کنترل شده توسط tcp_wrappers"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "حرکت"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Bootloader to use"
-msgstr "بارگزار آغازگر برای Ø§Ø³ØªÙØ§Ø¯Ù‡"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "میزبان کارگزار SMB"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Name Servers:"
-msgstr "کارگزارهای نام:"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Minute"
-msgstr "دقیقه"
-
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-msgstr ""
-"\n"
-"هشدار\n"
-"\n"
-"Ù„Ø·ÙØ§ شرایط زیر را با دقت بخوانید. اگر شما با هر قسمت آن مخال٠هستید،\n"
-"اجازه ندارید رسانه سی دی بعدی را نصب نمایید. 'امتناع' را برای ادامه \n"
-"نصب بدون Ø§Ø³ØªÙØ§Ø¯Ù‡ از این رسانه‌ها ÙØ´Ø§Ø± دهید.\n"
-"\n"
-"\n"
-"بعضی از عناصر بر روی رسانه سی دی بعدی توسط اجازه نامه GPL یا \n"
-"تواÙÙ‚ نامه‌های شبیه اداره نمی‌شوند. هر یک از این عنصرها بوسیله شرایط\n"
-"اجازه نامه‌ی خود اداره می‌شوند. Ù„Ø·ÙØ§ چنین اجازه نامه‌های مخصوص را قبل \n"
-"از Ø§Ø³ØªÙØ§Ø¯Ù‡ یا پخش مجدد آن برنامه‌ها به دقت خوانده Ùˆ آنها را مطابعت نمایید.\n"
-"چنین اجازه نامه‌هایی به طور عمومی از انتقال، تکثیر (بجز برای ذخیره رزرو)، \n"
-"پخش مجدد، رمزشکنی، بازسازی معکوس، تالی٠مجدد یا تغییرات در عناصر آنها\n"
-"جلوگیری می‌کنند. هر قصور از قرارداد Ø¨Ù„Ø§ÙØ§ØµÙ„Ù‡ حقوق شما را در تحت آن \n"
-"اجازه نامه‌ی مخصوص پایان می‌دهد. مگر شرایط اجازه نامه‌ی مخصوص \n"
-"به شما چنین اجازه‌ای دهد، معمولا نمی‌توانید برنامه‌ها را بر بیش از یک \n"
-"سیستم، یا برای یک شبکه Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید. در صورت تردید Ù„Ø·ÙØ§ با ناشر\n"
-"یا ویرایشگر آن برنامه مستقیما تماس بگیرید.\n"
-"انتقال به شخص سوم یا رونوشت از آنها و اسناد آنها نیز معمولا ممنوع می‌باشد.\n"
-"\n"
-"\n"
-"تمام حقوق برنامه‌های روی رسانه سی دی بعدی به نویسندگان آنها تعلق \n"
-"داشته و توسط مالکیت خلاقی و قوانین کپی‌رایت قابل اجرا بر برنامه‌های\n"
-"Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±ÛŒ Ø­ÙØ§Ø¸Øª می‌شوند.\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Expert mode"
-msgstr "/ـحالت کارشناسی"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr "برداشتن این چاپگر از Star Office/OpenOffice.org/GIMP"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"کارگزار مجازی لینوکس، برای ساختن یک کارگزار توانا و همیشه در \n"
-"دسترس Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr "میکرونه‌سیا"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "۴ میلیارد رنگ (۳۲ بیت)"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
-msgstr "مجوز"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "ممکن است برای تولید کلید‌ها چند لحظه زمان ببرد."
-
-#: ../../standalone/draksec:1
-#, 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"
-msgstr ""
-"شما در اینجا می‌توانید سطح امنیتی و مدیریت ماشین خود را تعیین نمایید.\n"
-"\n"
-"\n"
-"مدیر امنیت کسی است که اخطارهای امنیتی را اگر گزینه اخطار امنیتی تعیین شده\n"
-"باشد را Ø¯Ø±ÛŒØ§ÙØª می‌کند. آن می‌تواند یک نام کاربر یا یک پست الکترونیکی باشد.\n"
-"\n"
-"\n"
-"Ùهرست سطح امنیت، انتخاب یکی از شش امنیت پیش‌نتظیم شده را با msec عرضه می‌کند.\n"
-"این سطوح، گستره‌ای از امنیت ضعی٠و Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÛŒ آسان تا تنظیم خیالاتی، مناسب "
-"برای\n"
-"برنامه‌های کارگزاری خیلی حساس را عرضه می‌دارد.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">ضعیÙ</span>: این کاملاً ناامن ولی خیلی برای "
-"Ø§Ø³ØªÙØ§Ø¯Ù‡\n"
-"آسان می‌باشد. این باید برای ماشین‌هایی که به هیچ شبکه‌ای وصل نشده‌اند و\n"
-"در دسترس هر کسی نمی‌باشند Ø§Ø³ØªÙØ§Ø¯Ù‡ شود.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">استاندارد</span>: این امنیت استاندارد "
-"پیشنهادی برای\n"
-"یک رایانه که معمولاً مانند کارگیر به اینترنت وصل می‌شود می‌باشد.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">بالا</span>: چندین محدودیت قبلاً وجود دارد، "
-"Ùˆ\n"
-"کنترل‌های خودکار بیشتری هر شب اجرا می‌شود.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">بالاتر</span>: امنیت اکنون بقدر کاÙÛŒ بالاست "
-"که بتوان \n"
-"از سیستم بعنوان یک کارگزار که ارتباطات بسیاری از کارگیرها را پذیرا باشد "
-"Ø§Ø³ØªÙØ§Ø¯Ù‡ نمود\n"
-"اگر ماشین شما Ùقط یک کارگیر بر اینترنت می‌باشد، باید سطح پایین‌تری را انتخاب "
-"نمایید.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">خیالاتی</span>: این شبیه به سطح پیشین "
-"می‌باشد،\n"
-"اما سیستم کاملاً بسته بوده و قابلیت‌های امنیتی در حد اعلای خود می‌باشند."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr "شناسایی-خودکار چاپگر (چاپگرهای محلی، TCP/Socket, و SMB) "
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr "Sagem (using pppoa) usb"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"یک خطا رخ داد - هیچ دستگاه معتبری ÛŒØ§ÙØª نشد Ú©Ù‡ بر آن سیستم‌های پرونده ایجاد "
-"نمود. Ù„Ø·ÙØ§Ù‹ Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± خود را برای ÛŒØ§ÙØªÙ† علت این امر کنترل نمایید. "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "شروع سیستم چاپگر در زمان آغازگری"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "آیا می‌خواهید ارتباط را در آغازگری شروع نمایید؟"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr "شناسه پردازه‌گر"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr "اشکال‌زدایی صدا"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "لهستانی"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Add Printer"
-msgstr "/ـاضاÙÙ‡ کردن چاپگر"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-"\n"
-"ÙØ¹Ø§Ù„یت‌های Drakbackup از طریق CD:\n"
-"\n"
-
-#: ../../printer/printerdrake.pm:1
-#, 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?"
-msgstr ""
-"شما بزودی سیستم چاپی %s روی یک سیستمی که در سطح امنیتی %s در حال اجرا می‌باشد "
-"نصب می‌کنید.\n"
-"\n"
-"این سیستم چاپی یک شبح (یعنی یک پروسه‌ی پس‌زمنیه‌ای) که برای کارهای چاپ انتظار "
-"می‌کشد و آنها را اداره می‌کند را می‌راند. این شبح همچنین قابل دسترسی بوسیله "
-"رایانه‌های از راه دور توسط شبکه بوده و بنابرین یک نقطه‌ی ممکن برای حملات "
-"می‌باشد. بهمین دلیل تعدادکمی از اشباح بوسیله Ù¾ÛŒØ´â€ŒÙØ±Ø¶ در این سطح امنیتی برای "
-"شروع انتخاب می‌شوند. \n"
-"\n"
-"آیا واقعا می‌خواهید چاپ‌گری را بر این رایانه تنظیم نمایید؟"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "میزبان \"%s\", درگاه %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "این قسمت‌بندی نمی‌تواند برای حلقه‌برگرد Ø§Ø³ØªÙØ§Ø¯Ù‡ شود "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr "پرونده قبلا وجود دارد. Ø§Ø³ØªÙØ§Ø¯Ù‡ شود؟"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
-msgstr "Ø¯Ø±ÛŒØ§ÙØª شده:"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr "کلید راست Ø´ÛŒÙØª"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "لیست راه‌انداز‌های جایگزین برای این کارت صدا"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "دروازه"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr "تونگا"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "تونس"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing"
-msgstr "اشتراک پویشگر"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile: "
-msgstr "نمایه:"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
-"بر روی یک دستگاه در درخت سمت چپ برای نمایش اطلاعات آن در اینجا، کلیک نمایید."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr "اجازه/مانع ورود خودکار."
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
-msgstr "XawTV نصب نشده است!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "پرونده‌های حساس ضمیمه نشوند ( مثل passwd, group, fstab)"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "نام ثابت قدیمی در بسته dev Ø§Ø³ØªÙØ§Ø¯Ù‡ شده است"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
-msgstr "ÙØ¹Ø§Ù„‌سازی ثبت پاکت‌های عجیب IPv4"
-
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
-msgstr "این جدول قبلاً Ø§Ø³ØªÙØ§Ø¯Ù‡ شده است"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"به جادوگر تنظیم چاپگر خوش آمدید\n"
-"\n"
-"این جادوگر به شما در نصب چاپگرتان که به این رایانه یا مستقیما به شبکه وصل "
-"شده است کمک می‌کند.\n"
-"\n"
-"اگر چاپگر(ها) شما به این ماشین وصل شده‌اند، Ù„Ø·ÙØ§ آن (ها) را روشن کرده تا "
-"بتوانند Ú©Ø´Ù-خودکار شوند. همچنین چاپگر(ها)ÛŒ شبکه‌تان باید وصل Ùˆ روشن شوند. \n"
-"\n"
-"توجه کنید Ú©Ù‡ Ú©Ø´Ù-خودکار چاپگرهای روی شبکه زمان بیشتری از Ú©Ø´Ù-خودکار چاپگرهای "
-"وصل شده به این ماشین می‌برند. بنابرین Ú©Ø´Ù-خودکار چاپگرهای شبکه را اگر به آنها "
-"احتیاج ندارید خاموش نمایید.\n"
-"\n"
-"وقتی آماده شدید بر \"بعدی\" کلیک نموده و اگر نمی‌خواهید چاپگر(ها) خود را "
-"اکنون تنظیم کنید بر \"لغو\" کلیک نمایید:"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
-msgstr "یونانی (چندصوتی)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"بعد از قالب سازی قسمت‌بندی %sØŒ تمام داده‌ها روی این قسمت‌بندی از دست خواهند Ø±ÙØª"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection Time: "
-msgstr "زمان ارتباط:"
-
-#: ../../standalone/livedrake:1
-#, 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."
-msgstr ""
-"Ù„Ø·ÙØ§Ù‹ Cd-Rom نصب را در دستگاه خود وارد نموده Ùˆ در پایان تایید را ÙØ´Ø§Ø± دهید. "
-"اگر شما آن را ندارید، لغو را برای جلوگیری از بروزسازی زنده ÙØ´Ø§Ø± دهید."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use group id for execution"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از id گروه برای اجرا"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "انتخاب کاربر Ù¾ÛŒØ´â€ŒÙØ±Ø¶:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "گابن"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"چاپگرهای روی کارگزاران از راه دور CUPS لازم نیست اینجا تنظیم شوند؛ این "
-"چاپگرها بطور خودکار شناسایی خواهند شد."
-
-#: ../../any.pm:1
-#, 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."
-msgstr ""
-"لینوکس مان‌درایک می‌تواند از چندین زبان پشتیبانی نماید. زبانی \n"
-"را که می‌خواهید نصب کنید انتخاب نمایید. آنها وقتی نصب شما تکمیل \n"
-"شود و شما سیستم خود را راه‌اندازی مجدد کنید قابل دسترسی می‌باشند."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr "شاخه (یا بخش) برای گذاشتن ذخیره پشتیبانی بر این میزبان."
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain"
-msgstr "دامنه"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "اندازه دقیق RAM اگر لازم باشد (%d مگابایت ÛŒØ§ÙØª شد)"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"LILO و grub بارگزاران GNU/Linux می‌باشند. معمولا این مرحله کاملا \n"
-"خودکار می‌باشد. DrakX بندهای آغازگری دیسک را بررسی کرده و بر اساس\n"
-"آنچه در آنجا پیدا می‌کند عمل خواهد کرد:\n"
-"\n"
-" * اگر یک بند آغازگر ویندوز ÛŒØ§ÙØª شود، آن را بوسیله یک بند آغازگر grub/LILO "
-"جایگزین\n"
-"می‌کند. بدین ترتیب شما قادر خواهید بود یا لینوکس/گنو یا یک سیستم عامل دیگر را "
-"آغازگری\n"
-"نمایید.\n"
-"\n"
-" * اگر یک بند آغازگری grub یا LILO ÛŒØ§ÙØª شود, آن را با یکی دیگر جایگزین\n"
-"می‌نماید.\n"
-"\n"
-"اگر نتواند چیزی پیدا کند، DrakX مکانی را برای گذاشتن بارگزار آغازگر سوال \n"
-"خواهد کرد."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "عرضه کننده dns ۲ (دلخواه)"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "دستگاه آغازگر"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "کدام قسمت‌بندی را می‌خواهید تغییر اندازه دهید؟"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr "جزایر Ù…ØªÙØ±Ù‚Ù‡ Ú©ÙˆÚ†Ú© ایالات متحده"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Djibouti"
-msgstr "جیبوتی"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "یک وسیله برای زیر نظر گیری ثبت‌ها"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected on port %s"
-msgstr "شناسایی شده بر درگاه %s"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD"
-msgstr "LPD"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "کارت گراÙیک: %s\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/Set as _Default"
-msgstr "/تعیین مانند Ù¾Ù€ÛŒØ´â€ŒÙØ±Ø¶"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
-msgstr "پذیرش پژواک icmp "
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "سری‌های CC لوگیتک با شبیه‌سازی چرخ"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "قسمت‌بندی مضاع٠بر این پایگاه حمایت نمی‌شود"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Splash selection"
-msgstr "انتخاب Splash"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "تنظیم ISDN"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "high"
-msgstr "بالا"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "اشتراک ارتباط اینترنت"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Choose file"
-msgstr "انتخاب پرونده"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Summary: "
-msgstr "خلاصه: "
-
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
-msgstr ""
-"اخطار! یک تنظیم دیوارآتش شناسایی شده است. ممکن است بعد از نصب به قدری ترمیم "
-"دستی احتیاج شود."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "دسترسی به کارت چاپ/عکس بر \"%s\""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
-msgstr "کنترل امنیتی روزانه"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
-msgstr ""
-"آیا می‌خواهید چاپگری را بر چاپگرهای ذکر شده در بالا یا بر چاپگرهای در شبکه "
-"محلی ÙØ¹Ø§Ù„ نمایید؟\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer default settings"
-msgstr "تنظیمات Ù¾ÛŒØ´â€ŒÙØ±Ø¶ چاپگر"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "موش چرخی PS2 عمومی"
-
-#: ../../standalone/harddrake2:1
-#, 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)"
-msgstr ""
-"پرچم WP در ثبت CR0 واحد مرکزی پردازه‌گر Ø­ÙØ§Ø¸Øª نگارش را در سطح ØµÙØ­Ù‡ Ø­Ø§ÙØ¸Ù‡ "
-"مجبور می‌کند، بنابرین پردازه‌گر قادر به جلوگیری از دسترسی‌های کنترل نشده هسته "
-"به Ø­Ø§ÙØ¸Ù‡â€ŒÛŒ کاربر خواهد بود."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "برداشتن چاپگر قدیمی \"%s\"..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Select a device !"
-msgstr "انتخاب یک دستگاه !"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected server"
-msgstr "برداشتن کارگزار انتخاب شده"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using dhcp) usb"
-msgstr "Sagem (using dhcp) usb"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "French Southern Territories"
-msgstr "مناطق جنوبی ÙØ±Ø§Ù†Ø³ÙˆÛŒ"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "نام ÙØ±ÙˆØ´Ù†Ø¯Ù‡ پردازه‌گر"
-
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - نگهداری از %s:\n"
-" \t\tبرای اینکه کاربران بتوانند از کارگیر بدون دیسک به سیستم وارد "
-"شوند، ورودی آنها در\n"
-" \t\t/etc/shadow لازم است در %s دو رونوشته شود. drakTermServ\n"
-" \t\tدر این مورد بوسیله Ø§ÙØ²ÙˆØ¯Ù† یا برداشتن کاربران سیستم از این پرونده "
-"کمک می‌کند."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr "تمام داده‌ها بر این قسمت‌بندی باید ذخیره پشتیبان شوند"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "نصب بسته %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr "کنترل دستگاه و تنظیم HPOJ..."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"برای داشتن قسمت‌بندی‌های بیشتر، Ù„Ø·ÙØ§Ù‹ یکی از آنها را برای ایجاد قسمت‌بندی مضاع٠"
-"حذ٠نمایید"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"چاپگر شما بطور خودکار برای در دسترس شما قرار دادن دستگاه‌های کارت عکس از طریق "
-"رایانه شما تنظیم شده است. اکنون می‌توانید به کارت‌های عکس خود بوسیله برنامه "
-"گراÙیک \"MtoolsFM\" (Ùهرست: \"برنامه‌ها\" -> \"ابزار پرونده\" -> \"MTools "
-"مدیر پرونده\") یا وسایل خط دستوری \"mtools\" (enter \"man mtools\" در خط "
-"ÙØ±Ù…ان برای اطلاع بیشتر ). شما می‌توانید سیستم پرونده‌ی کارت را زیر حر٠دستگاه "
-"\"p:\"،یا حر٠دیگری اگر شما بیش از یک چاپگر HP با دستگاه‌های کارت عکس دارید "
-"پیدا کنید. در \"MtoolsFM\" شما می‌توانید بین حرو٠دستگاه با منطقه‌ی در گوشه‌های "
-"بالا-راست Ùهرست‌های پرونده سویئچ کنید."
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "انتخاب بسته‌هایی برای نصب "
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "همه قسمت‌بندی‌ها Ùˆ داده‌های آنها بر دستگاه %s از دست خواهند Ø±ÙØª"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr "سیستم شما ÙØ¶Ø§ÛŒ کاÙÛŒ باقی برای نصب Ùˆ ارتقا ندارد (%d > %d)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"هرچاپگر یک نام لازم دارد (برای مثال \"چاپگر\"). محوطه‌های توضیح و مکان لازم "
-"نیست پر شوند. آنها توضیحاتی برای کاربران می‌باشند."
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"\"%s\": با کلیک بر تکمه \"%s\" جادوگر تنظیمات چاپگر باز خواهد شد\n"
-"به ÙØµÙ„ مربوط در ``Starter Guide'' برای اطلاعات بیشتر برای نصب یک چاپگر\n"
-"جدید مراجعه نمایید. ظاهر عرضه شده در آنجا شبیه به آن است که در هنگام\n"
-"نصب Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr "بوتان"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "واسط شبکه"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr " قطع ارتباط از اینترنت شکست خورد."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
-msgstr "در حال خواندن اطلاعات چاپگر..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "ØµÙØ­Ù‡â€ŒÚ©Ù„ید کره‌ای"
-
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Not connected"
-msgstr "ارتباط برقرار نمی‌باشد"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "تنظیمات ارتباط اینترنت"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
-msgstr "یونانی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr "سنت کیتز و نویز"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "موش معمولی ۳ تکمه‌ای با شبیه‌سازی چرخ"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
-msgstr "ÙØ¹Ø§Ù„‌سازی آغازگری OFØŸ"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr ""
-"شما نمی‌توانید از JFS برای قسمت‌بندی‌های کوچکتر از Û±Û¶ مگابایت Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "پاک کردن رسانه‌های RW (اولین نشست)"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "نوسازی عمودی مانیتور: %s\n"
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "نقطه‌ی سوارکردن"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"یک خطا رخ داد:\n"
-"%s\n"
-"سعی کنید بعضی اجزا را تغییر دهید"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "میزبان TCP/IP \"%s\", درگاه %s"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "User :"
-msgstr "کاربر :"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore system"
-msgstr "بازسازی سیستم"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
-msgstr ""
-"اینها ماشین‌هایی هستند که پویشگر(ها) وصل شده‌ی محلی باید برای آنها در دسترس "
-"قرار گیرد:"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
-msgstr "آخرین آی پی DHCP"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Another one"
-msgstr "یکی دیگر"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Colombia"
-msgstr "کلمبیا"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-"تنظیم کنونی `%s':\n"
-"\n"
-"شبکه: %s\n"
-"نشانی آی پی: %s\n"
-"مشخصه آی پی: %s\n"
-"راه‌انداز: %s"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n Play"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr "اتحاد مجدد"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "جزییات"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "به دلایل امنیتی، ارتباط اکنون قطع خواهد شد."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Synchronization tool"
-msgstr "وسیله همزمان سازی"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking your system..."
-msgstr "در حال کنترل سیستم شما..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print"
-msgstr "چاپ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
-msgstr ""
-"نوار با برچسپ %s رادر دستگاه \n"
-"نوار %s وارد نمایید"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "مغولستان"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
-msgstr "سوار شده\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS"
-msgstr " CUPS تنظیم"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Interface"
-msgstr "واسط گراÙیکی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Users"
-msgstr "بازسازی کاربران"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Encryption key for %s"
-msgstr "کلید رمزی برای %s"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to recover your system?"
-msgstr "آیا می‌خواهید سیستم خود را بازآوری نمایید؟"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
-msgstr ""
-"برنامه portmapper ارتباطات RPC را مدیریت می‌کند، که بوسیله پایان نامه‌هایی \n"
-"نظیر NFS Ùˆ NIS Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود. کارگزار portmap باید بر روی ماشین‌هایی\n"
-"Ú©Ù‡ مانند کارگزارهایی با پایان نامه‌هایی Ú©Ù‡ از روش RPC Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کنند اجرا "
-"شود."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detected hardware"
-msgstr "Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± شناسایی شده"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr "ماریسی"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
-msgstr "موانمار (برمه‌ای)"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Enabling swap partition %s"
-msgstr "ÙØ¹Ø§Ù„ سازی قسمت‌بندی مبادله Ø­Ø§ÙØ¸Ù‡ سخت %s"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"هیچ قسمت‌بندی FAT برای Ø§Ø³ØªÙØ§Ø¯Ù‡ مانند loopback وجود ندارد (یا ÙØ¶Ø§ÛŒ کاÙÛŒ باقی "
-"نمی‌باشد)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr "ارمنی"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
-msgstr ""
-"یک چاپگر بنام \"%s\" قبلا در %s وجود دارد. \n"
-"بر \"انتقال\" بازنگارش آن کلیک نمایید.\n"
-"شما می‌توانید یک نام جدید بنویسید یا این چاپگر را رها کنید."
-
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
-msgstr ""
-"راه حل‌های مشکلات خود را از طریق پایگاه پشتیبانی روی خط MandrakeSoft پیدا "
-"نمایید."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", میزبان \"%s\", درگاه %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Monaco"
-msgstr "موناکو"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "قسمت‌بندی ناموÙÙ‚ بود: %s"
-
-#: ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s قالب‌بندی %s ناموÙÙ‚ بود"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Canada (cable)"
-msgstr "کانادا (cable)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Floppy creation completed"
-msgstr "ایجاد دیسکچه تکمیل شد."
-
-#: ../../help.pm:1
-#, c-format
-msgid "Upgrade"
-msgstr "ارتقا"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
-msgstr "میز کار"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"در حال نصب بسته %s\n"
-"%d%%"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
-msgstr "قرقیزستان"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "دستگاه چند-عملی بر USB"
-
-#: ../../../move/move.pm:1
-#, 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."
-msgstr ""
-
-#: ../../help.pm:1
-#, c-format
-msgid "With basic documentation"
-msgstr "با اسناد پایه"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr "Anacron یک برنامه‌ریز دستوری زمانی می‌باشد.."
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"شما باید یک قسمت‌بندی ریشه داشته باشید. برای این کار، \n"
-"یک قسمت‌بندی ایجاد نمایید (یا روی یک قسمت‌بندی موجود کلیک کنید). \n"
-"سپس ``نقطه سوارسازی'' را انتخاب کرده و آن را به `/' تغییر دهید"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "صحرای غربی"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "پراکسی باید مانند http://... باشد"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr "Ø¢ÙØ±ÛŒÙ‚ای جنوبی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "بیرون دادن نوار بعد از ذخیره‌ی پشتیبان"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot Floppy/ISO"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Modify printer configuration"
-msgstr "تغییر تنظیم چاپگر"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
-msgstr "انتخاب یک قسمت‌بندی"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Edit current rule"
-msgstr "ويرايش قاعده کنونی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
-msgstr "%s"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Please test the mouse"
-msgstr "Ù„Ø·ÙØ§Ù‹ موش را امتحان نمایید"
-
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Do not update inode access times on this file system\n"
-"(e.g, for faster access on the news spool to speed up news servers)."
-msgstr ""
-"زمان دسترسی inode در این سیستم پرونده بروزسازی نشود\n"
-"(برای دسترسی سریع‌تر بر کشش اخبار برای سرعت دادن به کارگزاران اخبار)."
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "۳ دکمه با شبیه‌سازی چرخ"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Sticky-bit"
-msgstr " بیت-چسبنده"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other Media"
-msgstr "رسانه دیگر"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files"
-msgstr "ذخیره پشتیبان پرونده‌های سیستم"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Sector"
-msgstr "بند"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Qatar"
-msgstr "قطر"
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Base dn"
-msgstr "LDAP Base dn"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"شما نمی‌توانید این بسته را انتخاب نمایید چرا Ú©Ù‡ ÙØ¶Ø§ÛŒ کاÙÛŒ برای نصب آن باقی "
-"نمانده است"
-
-#: ../../help.pm:1
-#, c-format
-msgid "generate auto-install floppy"
-msgstr "تولید دیسکچه نصب-خودکار"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr "حالت تلÙÙ† زدن"
-
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr "اشتراک پرونده"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "شاخه /tmp در هر آغازگری پاک شود"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Malawi"
-msgstr "مالاوی"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: false"
-msgstr "تنظیم محلی: نادرست"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "System settings"
-msgstr "اوضاع سیستم"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Ù„Ø·ÙØ§Ù‹ نوع موش خود را انتخاب نمایید."
-
-#: ../../services.pm:1
-#, c-format
-msgid "running"
-msgstr "در حال اجرا است"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "class of hardware device"
-msgstr "طبقه دستگاه Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø±"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
-"اینها ماشین‌ها و شبکه‌هایی هستند که چاپگر وصل شده محلی باید برای آنها در دسترس "
-"قرار گیرد:"
-
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "بریتانیا"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Indonesia"
-msgstr "اندونزی"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "Ù¾ÛŒØ´â€ŒÙØ±Ø¶"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "France [SECAM]"
-msgstr "ÙØ±Ø§Ù†Ø³Ù‡ [SECAM]"
-
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "محدود"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "must have"
-msgstr "باید داشت"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS از چاپگران روی کارگزارهای نوول یا چاپگرهایی که داده ها را بصورت یک "
-"ÙØ±Ù…ان بدون-ÙØ±Ù… Ù…ÛŒâ€ŒÙØ±Ø³ØªÙ†Ø¯ حمایت نمی‌کند.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Senegal"
-msgstr "سنگال"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Command line"
-msgstr "خط ÙØ±Ù…ان"
-
-#: ../advertising/08-store.pl:1
-#, 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:"
-msgstr ""
-"گستره کامل راه حل‌های لینوکس ما، همچنین پیشنهادات مخصوص برای محصولات و "
-"\"شیرینی‌های\" دیگر، در ÙØ±ÙˆØ´Ú¯Ø§Ù‡ الکترونیکی ما موجود می‌باشند:"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "March"
-msgstr "مارس"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to administrative files"
-msgstr "دسترسی به پرونده‌های مدیریت"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
-msgstr ""
-"خطا هنگام ÙØ±Ø³ØªØ§Ø¯Ù† پست.\n"
-" گزارش پست شما ÙØ±Ø³ØªØ§Ø¯Ù‡ نشد.\n"
-" Ù„Ø·ÙØ§ sendmail را تنظیم نمایید"
-
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Do not allow set-user-identifier or set-group-identifier\n"
-"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
-"have suidperl(1) installed.)"
-msgstr ""
-"اجازه نمی‌دهد بیت‌های set-user-identifier یا set-group-identifier موثر \n"
-"شوند. (این بنظر امن می‌رسد، ولی در حقیقت اگر شما suidperl(1) را نصب \n"
-"کرده‌اید ناامن است )"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
-msgstr "مونت‌سرات"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr "وابستگی‌های خودکار"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "مبادله"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom settings"
-msgstr "تنظیمات اختصاصی"
-
-#: ../../../move/move.pm:1
-#, 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."
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Other"
-msgstr "بازسازی دیگر"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "کارت تلویزیون"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "چاپگر روی کارگزار SMB/Windows 95/98/NT"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/ـتنظیم CUPS"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
-msgstr ", "
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
-msgstr "ارایه بازده ÙØ±Ù…ان lspci"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected host/network"
-msgstr "برداشتن میزبان/شبکه انتخاب شده"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"برنامه Postfix مامور انتقال پست می‌باشد, که برنامه‌ای است که پست را از یک "
-"ماشین به ماشین دیگر منتقل می‌کند."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "ازبک (سیریلیک)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"در اینجا شما می‌توانید کلید یا ترکیبی از کلیدها را که به شما اجازه می‌دهد\n"
-" بین طرح‌های گوناگون ØµÙØ­Ù‡â€ŒÚ©Ù„ید تعویض نمایید را انتخاب کنید\n"
-" (یعنی بین لاتین و غیر لاتین) "
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Network Hotplugging"
-msgstr "وصل‌گرم شبکه "
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr "اگر به آری گذاشته شده، نتایج کنترل به tty گزارش می‌شود."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From CD"
-msgstr "بازسازی از CD"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"شما در حال تنظیم رایانه‌ی خود برای اشتراک ارتباط اینترنت هستید. \n"
-"با این قابلیت رایانه‌های دیگر بر شبکه‌ی محلی شما می‌توانند از ارتباط اینترنت "
-"این رایانه Ø§Ø³ØªÙØ§Ø¯Ù‡ کنند.\n"
-"\n"
-"مطمئن شوید که شما دسترسی شبکه/اینترنت خود را با drakconnect قبل از ادامه "
-"تنظیم کرده باشید.\n"
-"\n"
-"توجه: شما به یک کارت شبکه برای برپاسازی یک شبکه محوطه محلی (LAN) احتیاج "
-"دارید."
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr ""
-"Ù„Ø·ÙØ§Ù‹ کارت شبکه‌ای را Ú©Ù‡ می‌خواهید برای ارتباط به اینترنت Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید را "
-"انتخاب نمایید."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "دسترسی کارت Ø­Ø§ÙØ¸Ù‡â€ŒÛŒ عکس روی دستگاه چند-عاملی HP خود"
-
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
-msgstr ""
-"توانایی اجرای رایانه‌ی خود را با Ú©Ù…Ú© یک مجموعه از راه حل‌های حرÙه‌ای همخوان با "
-"لینوکس مان‌درایک عرضه شده از همکاران بهینه نمایید."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
-msgstr "نگارندگان:"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "اشتراک ارتباط اینترنت اکنون غیر ÙØ¹Ø§Ù„ است."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr ""
-"اگر به آری گذاشته شده، checksum برای شناساگر کاربر/گروه suid/sgidپرونده‌ها "
-"امتحان شود. "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latin American"
-msgstr "آمریکای لاتین"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "حالت چاپ متن ژاپنی"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Old device file"
-msgstr "پرونده دستگاه قدیمی"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "اطلاعات:"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
-msgstr "تکمه `%s': %s"
-
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Ù„Ø·ÙØ§ صبر نمایید"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "None"
-msgstr "هيچکدام"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "IP وارد شده درست نمی‌باشد.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Ù„Ø·ÙØ§Ù‹ مطمئن شوید Ú©Ù‡ شبح cron در سرویس‌های شما وجود دارد."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
-msgstr "کارت شبکه "
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete selected printer"
-msgstr "حذ٠چاپگر انتخاب‌شده"
-
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "اطلاعات"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "نصب"
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"اگر می‌خواهید تمام داده‌ها و قسمت‌بندی‌های موجود بر این دیسک را حذ٠کنید \n"
-"بر \"%s\" کلیک نمایید. دقت کنید که بعد از کلیک بر \"%s\"، شما نمی‌توانید "
-"هیچ \n"
-"داده Ùˆ قسمت‌بندی موجود بر این دیسک، به اضاÙه‌ی هر داده ویندوز را بازیابی \n"
-"نمایید.\n"
-"\n"
-"برای توق٠این عملیات بدون از دست دادن هیچ داده‌ای و قسمت‌بندی موجود بر \n"
-"این دیسک بر \"%s\" کلیک نمایید."
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "خروج از نصب"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, 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)."
-msgstr ""
-"همه چیز تنظیم شده است. \n"
-"شما می‌توانید ارتباط اینترنت خود را با رایانه‌های دیگر در شبکه محلی خود از "
-"طریق تنظیم خودکار شبکه ( DHCP) شریک شوید."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
-msgstr "کارگزار از راه دور CUPS"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - Mouse"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Ùقط یک کارت شبکه تنظیم شده در سیستم شما وجود دارد:\n"
-"\n"
-"%s\n"
-"\n"
-"من بزودی شبکه محلی شما را با آن کارت برپاسازی می‌کنم."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
-msgstr "ارایه اطلاعات cpu"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Minimal install"
-msgstr "حداقل نصب"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "اتیوپی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
-msgstr "بله"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
-msgstr "ÙØ¹Ø§Ù„ سازی \"crontab\" Ùˆ \"at\" برای کاربران"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr "دواناگری"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- دستگاه‌های pci: این PCI slot, دستگاه و عمل کرد این کارت را بدست می‌دهد\n"
-"- دستگاه‌های eide: این دستگاه یا یک دستگاه برده یا یک ارباب می‌باشد\n"
-"- دستگاه‌های scsi: دستگاه‌های scsi bus و شناسه‌های دستگاه scsi"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "اندازه کل: %d / %d مگابایت"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "disabled"
-msgstr "ØºÛŒØ±ÙØ¹Ø§Ù„"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Search for new scanners"
-msgstr "جستجو برای پویشگرهای جدید"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Disabling servers..."
-msgstr "ØºÛŒØ±ÙØ¹Ø§Ù„ سازی کارگزارها..."
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "نصب %s موÙÙ‚ نبود. خطای بدنبال رخ داد:"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr "نمی‌توان mkinitrd -f /boot/initrd-%s.img %s را اجرا کرد."
-
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"شما کارگزارهای ذیل را انتخاب کرده‌اید: %s\n"
-"\n"
-"\n"
-"این کارگزارها بوسیله‌ی Ù¾ÛŒØ´â€ŒÙØ±Ø¶ ÙØ¹Ø§Ù„ شده‌اند. آنها هیچ مشکل امنیتی شناخته شده\n"
-"ندارند، ولی اشکالات جدید می‌توانند پیدا شوند. در آن صورت شما باید هر چه "
-"زودتر \n"
-"آنها را ارتقا دهید.\n"
-"\n"
-"\n"
-"آیا واقعا می‌خواهید این کارگزارها را نصب نمایید؟\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "چاپگر شبکه (TCP/Socket)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup User files..."
-msgstr "ذخیره پشتیبان پرونده‌های کاربر..."
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "نصب سیستم"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "اولین کارگزار DNS (دلخواه)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-"بطور گزینشی می‌توانید نام یک دستگاه/نام پرونده را در خط درونی مشخص نمایید"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
-"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
-"symlink /etc/security/msec/server to point to\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
-"add a service if it is present in the file during the installation of\n"
-"packages."
-msgstr ""
-"اگر SERVER_LEVEL (یا SECURE_LEVEL اگر غایب باشد)\n"
-" بزرگتر است از ۳ در /etc/security/msec/security.conf، \n"
-"یک پیوند سمبلی /etc/security/msec/server ایجاد کرده که\n"
-"به /etc/security/msec/server اشاره می‌کند.<SERVER_LEVEL>.\n"
-"\n"
-"این /etc/security/msec/server بوسیله‌ی chkconfig --add برای\n"
-"تصمیم به Ø§ÙØ²ÙˆØ¯Ù† یک سرویس اگر آن در پرونده هنگام نصب\n"
-"بسته حاضر باشد Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "روسی"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Config..."
-msgstr "تنظیم dhcpd ..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "نصب LILO/grub"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "اسراییلی"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "چاپگر \"%s\" بر کارگزار \"%s\""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "دیسکچه می‌تواند اکنون برداشته شود"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Truly minimal install"
-msgstr "کوچکترین نصب واقعی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "دانمارک"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "انتقال قسمت‌بندی..."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "(This) DHCP Server IP"
-msgstr "IP این کارگزار DHCP"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Test of the configuration"
-msgstr "آزمایش تنظیم"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing %s ..."
-msgstr "در حال نصب %s ..."
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"اگر شما به نصب کننده Ú¯ÙØªÙ‡â€ŒØ§ÛŒØ¯ Ú©Ù‡ می‌خواهید بسته‌ها را دانه‌ای انتخاب کنید، \n"
-"آن یک درخت شامل تمام بسته‌ها دسته بندی شده بوسیله‌ی گروه‌ها و زیرگروه‌ها \n"
-"را عرضه می‌کند. هنگام مرور بر درخت، شما می‌توانید همه‌ی گروه‌ها، زیرگروه‌ها، \n"
-"یا بسته‌های دانه‌ای را انتخاب نمایید. \n"
-"\n"
-"هروقت شما یک بسته را در این درخت انتخاب می‌کنید، یک توضیح در قسمت \n"
-"راست ظاهر شده Ú©Ù‡ به شما هد٠بسته را معرÙÛŒ می‌کند. \n"
-"\n"
-"!! اگر یک بسته کارگزار انتخاب شده باشد، یا اینکه شما مخصوصا بسته‌ی دانه‌ای \n"
-"را انتخاب کردید یا برای اینکه آن قسمتی از یک گروه از بسته‌ها باشد، از شما \n"
-"برای تایید آنکه شما واقعا می‌خواهید آنها را نصب کنید سوال خواهد شد. \n"
-"Ù¾ÛŒØ´â€ŒÙØ±Ø¶ لینوکس مان‌درایک هر سرویس نصب شده را در زمان آغازگری \n"
-"بطور خودکار اجرا می‌کند. هرچند آنها امن بوده و هیچ اشکالی در زمان انتشار \n"
-"ندارند، احتمال دارد که سوراخ‌های امنیتی بعد از تکمیل این نسخه لینوکس \n"
-"مان‌درایک کش٠شوند. اگر شما نمی‌دانید که یک سرویس بخصوص قرار \n"
-"است چکار کند یا چرا نصب شده است، پس \"%s\" را کلیک نمایید. با کلیک \n"
-"بر \"%s\"سرویس‌های Ùهرست شده نصب خواهند شد Ùˆ آنها بوسیله Ù¾ÛŒØ´â€ŒÙØ±Ø¶ \n"
-"بطور خودکار هنگام آغازگری شروع می‌شوند. !! \n"
-"\n"
-"گزینه‌ی \"%s\" برای ØºÛŒØ±ÙØ¹Ø§Ù„ کردن Ú¯ÙØªÚ¯ÙˆÛŒ هشدارهایی Ú©Ù‡ هر وقت برنامه‌ی\n"
-" نصب یک بسته را برای حل یک مشکل وابستگی بطور خودکار انتخاب می‌کند \n"
-"Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود. بعضی از بسته‌ها با هم روابطی دارند بطوری Ú©Ù‡ نصب یک \n"
-"بسته مستلزم نصب آن بسته‌ی دیگر می‌باشد. برنامه نصب می‌تواند تایین کند \n"
-"Ú©Ù‡ کدام بسته برای ارضای یک وابستگی لازم است تا نصب را با موÙقیت تکمیل "
-"نماید. \n"
-"\n"
-"آن شمایل ریز دیسک‌نرم در پایین Ùهرست به شما اجازه Ù…ÛŒ دهد Ú©Ù‡ یک \n"
-"Ùهرست ایجاد شده هنگام نصب قبلی را بارگزاری نمایید. این روش اگر شما \n"
-"تعدادی رایانه را بخواهید یکسان تنظیم کنید Ù…Ùید است. کلیک بر این شمایل \n"
-"از شما می‌خواهد که آن دیسک‌نرمی را که در پایان نصب قبلی ایجاد کرده‌اید \n"
-"را وارد کنید. سرنخ دوم آخرین مرحله را برای چگونگی ایجاد چنین دیسک‌نرمی \n"
-"را مگاهی بیاندازید. "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr "کلید رمزگذاری سیستم پرونده خود را انتخاب نمایید"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr "سیه‌رآ ليونه"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
-msgstr "بوتسوانا"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Andorra"
-msgstr "آندورا"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "(default value: %s)"
-msgstr "(ارزش Ù¾ÛŒØ´â€ŒÙØ±Ø¶: %s)"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
-msgstr ""
-"تایین عمر گذرواژه به \"حداکثر\" روزها Ùˆ تاخیر برای تغییر به \"ØºÛŒØ±ÙØ¹Ø§Ù„\"."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "ØµÙØ­Ù‡ آزمایشی جایگزین (نامه)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-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 ""
-"تنظیم کارگزارDHCP .\n"
-"\n"
-"در اینجا می‌توانید گزینه‌های مختلÙÛŒ برای کارگزار DHCP انتخاب نمایید.\n"
-"اگر شما معنی یک گزینه را نمی‌دانید، آن را به حال خود بگذارید.\n"
-"\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Choose an X server"
-msgstr "انتخاب یک کارگزار X "
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr ""
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "اندازه قسمت‌بندی مبادله Ø­Ø§ÙØ¸Ù‡ سخت در مگابایت:"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No changes to backup!"
-msgstr "هیچ تغییری برای ذخیره پشتیبان!"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "قالب‌بندی شده\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Type of install"
-msgstr "نوع نصب"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "چاپگر \"%s\" بر کارگزار SMB/Windows \"%s\""
-
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d اعداد جداشده با ویرگول"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"پایان نامه rusers به کاربران یک شبکه اجازه می‌دهد که کسانی را که در \n"
-" ماشین‌های دیگر آن شبکه هستند شناسایی کنند."
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "تنظیم مراحل خودکار"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "باربادوس"
-
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
-msgstr ""
-"می‌خواهید بیشتر بدانید Ùˆ به مجمع منبع آزاد Ú©Ù…Ú© نمایید؟ عضو دنیای Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± "
-"آزاد شوید!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Ù„Ø·ÙØ§Ù‹ داده‌ها را برای ذخیره پشتیبان انتخاب نمایید..."
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
-msgstr ""
-"ارتباط موÙÙ‚ نبود. \n"
-"نتظیم خود را در مرکز کنترل ماندرایک امتحان نمایید."
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
-msgstr "Ø¯Ø±ÛŒØ§ÙØª شد"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr "ÙØ¹Ø§Ù„ کردن su Ùقط برای اعضای گروه چرخ یا برای هر کاربر"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
-msgstr "/پرونده/ـجدید"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DNS Server IP"
-msgstr "IP کارگزار DNS"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range End:"
-msgstr "پایان گستره‌ی IP:"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
-msgstr "بالا"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù† یک چاپگر جدید به سیستم"
-
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr "NoVideo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
-msgstr "این محوطه دستگاه را توضیح می‌دهد"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù† چاپگر به Star Office/OpenOffice.org/GIMP"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printers"
-msgstr "چاپگرهای محلی"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation image directory"
-msgstr "شاخه تصویر نصب"
-
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "کارگزار NIS"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Port: %s"
-msgstr "درگاه: %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "اسپانیا"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
-msgstr "تنظیم محلی: %s"
-
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "این نام کاربر قبلا اضاÙÙ‡ شده است"
-
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
-msgstr "انتخاب یک پرونده"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr "اعمال"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "درگاه‌های موجود Ú©Ø´Ù-خودکار"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr "سن مارینو"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "اشتراک ارتباط اینترنت اکنون ØºÛŒØ±ÙØ¹Ø§Ù„ شده است"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Belgium"
-msgstr "بلژیک"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
-msgstr "کویت"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "انتخاب مدیر پنجره برای راندن:"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
-msgstr "دسامبر"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "نسل زیر cpu"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
-msgstr "جادوگر بار اول"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Taiwan"
-msgstr "چینی (تایوان)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "پاکستان"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "Ù„Ø·ÙØ§ صبر کنید، تجزیه پرونده: %s"
-
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"یک خطا رخ داد، اما نمی‌دانم چگونه آن را بخوبی اداره کنم. \n"
-"با مسئولیت خود ادامه دهید."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Importance: "
-msgstr "اهمیت:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-"برای توانایی چاپ با Lexmark inkjet شما و این تنظیم، شما به راه‌اندازهای چاپگر "
-"inkjet عرضه شده توسط Lexmark (http://www.lexmark.com/) احتیاج دارید. بر "
-"پیوند \"Drivers\" کلیک نمایید. سپس مدل خود را و بعد \"Linux\" را مثل سیستم "
-"عامل انتخاب نمایید. راه‌اندازها مانند بسته‌های RPM یا دست‌نویس پوسته با نصب "
-"گراÙیکی عرضه می‌شوند. شما احتیاج به انجام تنظیم بوسیله ظاهر گراÙیکی ندارید. "
-"بعد از تواÙÙ‚ اجازه نامه دقیقا لغو کنید. سپس ØµÙØ­Ù‡â€ŒÙ‡Ø§ÛŒ هم‌ترازی سرچاپ را با "
-"\"lexmarkmaintain\" چاپ کرده و با این برنامه تنظیم هم‌ترازی سرآیند را میزان "
-"نمایید."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Permissions"
-msgstr "اجازه‌ها"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "نام عرضه کننده (مثل provider.net)"
-
-#: ../../install_steps_gtk.pm:1
-#, 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'."
-msgstr ""
-"سیستم شما منابع پایینی دارد. شما ممکن است در نصب لینوکس مان‌درایک با اشکال "
-"برخورد کنید. \n"
-"اگر این رخ داد، شما می‌توانید نصب متنی را بجایش امتحان کنید. برای این کار، "
-"`F1' را \n"
-"وقتی بر سی دی آغازگری کردید ÙØ´Ø§Ø± دهید، سپس بنوسید `text'."
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از قسمت‌بندی ویندوز برای loopback"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
-msgstr "ارمنی (ماشین‌نویس)"
-
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection type: "
-msgstr "نوع ارتباط:"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Graphical interface"
-msgstr "واسط گراÙیکی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "چاد"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "هند"
-
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s با شتاب‌دهنده‌ی Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø±ÛŒ Û³ بعدی "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr "اسلواکی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "سنگاپور"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "کامبوج"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "همزمانی اÙÙ‚ÛŒ مانیتور: %s\n"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr "مسیر"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
-msgstr "ÛŒØ§ÙØª نشد"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-"در اینجا شما می‌توانند هر خط ÙØ±Ù…ان ضروری Ú©Ù‡ کار چاپی باید بدرون آن بجای "
-"ÙØ±Ø³ØªØ§Ø¯Ù† مستقیم به یک چاپگر را مشخص نمایید."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
-msgstr ""
-"سیستم چاپی (%s) وقتی رایانه آغازگری می‌شود بطور خودکار شروع نخواهد شد.\n"
-"\n"
-"ممکن است شروع خودکار بوسیله‌ی تعویض سطح امنیتی خاموش شده باشد، بخاطر اینکه "
-"سیستم چاپی یک نقطه‌ی احتمالی برای حمله می‌باشد.\n"
-"\n"
-"آیا می‌خواهید شروع خودکار سیستم چاپی دوباره روشن شود؟"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"چاپگر %s\n"
-"چه را می‌خواهید در این چاپگر تغییر دهید؟"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add host"
-msgstr "اضاÙÙ‡ کردن میزبان"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"If you really think that you know which driver is the right one for your "
-"card\n"
-"you can pick one in the above list.\n"
-"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
-msgstr ""
-"اگر شما واقعاً می‌دانید که کدام راه‌انداز برای کارت شما درست است\n"
-"می‌توانید یکی را در لیست بالا انتخاب نمایید. \n"
-"\n"
-"راه‌انداز کنونی کارت صدای \"%s\" شما \"%s\" می‌باشد"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-"آیا مایلید به کاربران اجازه‌ی اشتراک شاخه‌هایشان را بدهید؟\n"
-"با اجازه این مورد کاربران براحتی اجازه خواهند داشت که بر \"اشتراک\" در "
-"konqueror و nautilus کلیک نمایند.\n"
-"\n"
-"\"اختصاصی\" اجازه‌ی هر-کاربر بطور دانه‌ای را می‌دهد.\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
-msgstr ""
-"Ù„Ø·ÙØ§Ù‹ بارگزاری یا ذخیره مجموعه بسته را بر دیسکچه انتخاب نمایید.\n"
-"قالب همانند دیسکچه‌های تولید شده‌ی نصب-خودکار می‌باشد."
-
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "No CDROM support"
-msgstr "حمایت رادیو:"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "China (broadcast)"
-msgstr "چین (پخش همگانی)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use quota for backup files."
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از سهمیه برای پرونده‌های ذخیره پشتیبان."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "تنظیم کردن چاپگر \"%s\"..."
-
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
-"containing binaries for architectures other than its own."
-msgstr ""
-"اجازه‌ی اجرای هر برنامه‌ی اجرایی بر سیستم پرونده سوارشده داده نشود.\n"
-"این گزینه برای کارگزاری که سیستم پرونده‌ای حاوی برنامه‌های اجرایی برای\n"
-"ساختاری غیر از خودش را دارد Ù…Ùید می‌باشد."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection"
-msgstr "ارتباط اینترنت"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"بارگزاری بخش %s شکست خورد.\n"
-"آیا می‌خواهید با اجزای دیگری دوباره امتحان کنید؟"
-
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr "به دنیای منبع آزاد خوش آمدید."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr "بوسنی هرسه‌گوینا"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
-msgstr ""
-"شما به یک سیستم پرونده‌ای واقعی (ext2/ext3, reiserfs, xfs, or jfs) برای این "
-"نقطه سوارسازی احتیاج دارید\n"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "شما باید یک نام میزبان یا یک نشانی آی پی را وارد نمایید.\n"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "هلند"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files by FTP"
-msgstr "در حال ÙØ±Ø³ØªØ§Ø¯Ù† پرونده ها بوسیله FTP"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Internal ISDN card"
-msgstr "کارت درونی ISDN"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
-msgstr ""
-"هیچ راه‌انداز شناخته شده‌‌ی OSS/ALSA دیگری برای کارت صدای شما (%s) که در حال "
-"حاضر از \"%s\" Ø§Ø³ØªÙØ§Ø¯Ù‡ کند وجود ندارد. "
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Title"
-msgstr "عنوان"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "نصب و تبدیل قلم‌های نگارش"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
-msgstr "هشدار"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
-msgstr "در حال نصب بارگزار آغازگر"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "replay"
-msgstr "بازنواختن"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
-msgstr "شناسایی شده %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
-msgstr ""
-"Expect می‌باشد که نشست‌های تأثیری بدون یک دنباله‌ برای زبان دست‌نویسی Tcl دخالت "
-"کاربر را تحقق می‌بخشد."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr "جزایر ویرجین (آمریکا)"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "پرونده‌ی پشتیبان بد"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
-msgstr ""
-"تنظیم اشتراک ارتباط اینترنت قبلا انجام شده است. \n"
-"در حال حاضر ØºÛŒØ±ÙØ¹Ø§Ù„ است. \n"
-"\n"
-"چکار دوست دارید بکنید؟"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-"نشانی Ø¢ÛŒ Ù¾ÛŒ Ùˆ درگاه میزبانی را Ú©Ù‡ می‌خواهید از چاپگر آن Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید را وارد "
-"کنید."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Pipe into command"
-msgstr "هدایت از طریق لوله بدرون دستور"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"بعضی از Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± روی رایانه شما برای کار کردن احتیاج به راه‌اندازهای اختصاصی "
-"دارند. ÛŒØ§ÙØªÙ† اطلاعاتی درباره آنها در: %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "هایی‌تی"
-
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "شناسایی دستگاه‌ها..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"گزینه اختصاصی به شما اجازه‌ی مشخص کردن روز و زمان خودتان را می‌دهد. گزینه‌های "
-"دیگر از قسمت‌های اجرایی در /etc/crontab Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کنند."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Description of the fields:\n"
-"\n"
-msgstr ""
-"توضیح محوطه‌ها:\n"
-"\n"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Basic options"
-msgstr "گزینه‌های پایه"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
-msgstr "نام پردازه‌گر (CPU)"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr "پذیرش پیغام‌های خطای bogus IPv4"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "نوسازی داده های چاپگر..."
-
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr "شما باید همچنین %s را قالب‌بندی نمایید"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "دقت کنید: این عملیات خطرناک است."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "دیسکچه حاوی مجموعه بسته را وارد دستگاه نمایید"
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server: "
-msgstr "کارگزار‌:"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Alerts:"
-msgstr "گوشزد امنیتی:"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
-msgstr "سوئد"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از Expect برای SSH"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "لهستان"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Other ports"
-msgstr "درگاه‌های دیگر"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "تعداد میانگیرهای عکس‌گیری برای mmap عکس‌گیری شده"
-
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid " - detected"
-msgstr "شناسایی شده"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr "کنترل کننده‌های SMBus "
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "زمان انتظار ارتباط (ثانیه)"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
-msgstr ""
-"بعضی از چیپ‌های i486DX-100 نمی‌توانند بطور مطمئن بعد از Ø§Ø³ØªÙØ§Ø¯Ù‡ از دستور "
-"\"توقÙ\" به حالت عامل برگردند."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Croatian"
-msgstr "کرواتی"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Use existing partition"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از قسمت‌بندی‌های موجود"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "نمی‌توان با آینه %s تماس برقرار کرد"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr "/راهنما/_درباره..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "برداشتن شاخه‌های کاربر قبل از بازسازی."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
-msgstr ""
-"شما می‌خواهید یک چاپگر از راه دور را تنظیم کنید. این به دسترسی به یک شبکه "
-"ÙØ¹Ø§Ù„ دارد، ولی شبکه شما هنوز تنظیم نشده است. اگر شما بدون تنظیم شبکه ادامه "
-"دهید نخواهید توانست از چاپگر در حال تنظیم Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید. چگونه می‌خواهید "
-"ادامه دهید؟"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "تنظیم چاپگر CUPS"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr "نمی‌توان هیچ قلم نگارشی را در قسمت‌بندی‌های سوار شده ÛŒØ§ÙØª"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
-msgstr "اشکال F00f"
-
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Domain Name:"
-msgstr "نام دامنه:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Root umask"
-msgstr "Root umask"
-
-#: ../../any.pm:1
-#, c-format
-msgid "On Floppy"
-msgstr "روی دیسکچه"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reboot by the console user"
-msgstr "آغازگری مجدد توسط کاربر کنسول"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore"
-msgstr "بازسازی"
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Server:"
-msgstr "کارگزار‌:"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
-msgstr ""
-"اگر به آری گذاشته شده، کنترل کنید که آیا دستگاه‌های شبکه در حالت بی قاعده "
-"می‌باشند."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "گشتن بدنبال بسته‌های موجود..."
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Ù„Ø·ÙØ§Ù‹ صبر کنید، در حال گذاردن سطح امنیتی..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
-msgstr "پیغام آشناسازی"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "نجات جدول قسمت‌بندی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "قبرس"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection complete."
-msgstr "ارتباط برقرار شد."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "برداشتن از RAID"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "این کلید رمز خیلی ساده است ( باید حداقل %d نویسه طولانی باشد)"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Configuration Wizards"
-msgstr "جادوگرهای تنظیمات"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ISDN connection"
-msgstr "ارتباط ISDN "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CDROM / DVDROM"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
-msgstr "مقدم"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr "بر کارگزار SMB/Windows \"%s\", اشتراک \"%s\""
-
-#: ../../help.pm:1
-#, 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"
-"!!"
-msgstr ""
-"این Ú¯ÙØªÚ¯Ùˆ برای انتخاب سرویس‌هایی Ú©Ù‡ می‌خواهید هنگام آغازگری شروع شوند \n"
-"Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود. \n"
-"\n"
-"برنامه DrakX همه سرویس‌های موجود در نصب کنونی را Ùهرست خواهد کرد. \n"
-"هر یک را بدقت ملاحظه کرده و آنهایی را که در زمان آغازگری لازم ندارید انتخاب "
-"نکنید. \n"
-"\n"
-"اگر یک سرویس انتخاب شود یک توضیح کوتاه درباره آن نشان داده خواهد شد. \n"
-"اگر شما مطمئن نیستید Ú©Ù‡ آیا یک سرویس Ù…Ùید است یا نه، بهتر است Ù¾ÛŒØ´â€ŒÙØ±Ø¶ \n"
-"را به حال خود بگذارید. \n"
-"\n"
-"!! در این مرحله خیلی دقت کنید، اگر شما قصد دارید از رایانه خود مانند یک "
-"کارگزار \n"
-"Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید: شما احتمالا نمی‌خواهید هیچ سرویسی را Ú©Ù‡ لازم ندارید را شروع "
-"کنید. \n"
-"Ù„Ø·ÙØ§ بخاطر داشته باشید Ú©Ù‡ سرویس‌های متعدد می‌توانند در صورتی Ú©Ù‡ بر یک \n"
-"کارگزار ÙØ¹Ø§Ù„ شوند خطرناک باشند. بطور عمومی، Ùقط سرویس‌هایی را انتخاب \n"
-"کنید که واقعا لازم دارید. \n"
-"!!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niue"
-msgstr "نی‌وه"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "پرش"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"ÙØ¹Ø§Ù„/ØºÛŒØ±ÙØ¹Ø§Ù„ سازی تمام واسط‌های شبکه Ú©Ù‡ برای شروع در زمان آغازگری \n"
-"تنظیم شده‌اند."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr ""
-"ÙØ±Ú©Ø§Ù†Ø³ CPU در مگاهرتز (مگاهرتز تقریبا تشبیه می‌شود به تعداد دستوراتی Ú©Ù‡ cpu "
-"قادر است در یک ثانیه اجرا کند) "
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "important"
-msgstr "مهم"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "ابزار مدیریت چاپگر لینوکس ماندرایک"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
-msgstr "Ù¾ÛŒØ´Ø±ÙØª Ú©Ù„"
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
-msgstr ""
-"برنامه DrakX در ابتدا هر دستگاه موجود IDE را در رایانه شما شناسایی خواهد "
-"نمود. آن\n"
-" همچنین برای ÛŒØ§ÙØªÙ† یک یا چند کارت IDE /SCSI بر سیستم شما پویش خواهد کرد. اگر "
-"یک \n"
-"کارت SCSI ÛŒØ§ÙØª شود، DrakX بطور خودکار راه‌انداز مناسب را نصب خواهد نمود. \n"
-"\n"
-"برای اینکه شناسایی Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± کامل نمی‌باشد، DrakX ممکن است در شناسایی \n"
-"Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± شما شکست بخورد. اگر چنین شود شما مجبور خواهید شد Ú©Ù‡ Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± \n"
-"خود را دستی مشخص نمایید. \n"
-"\n"
-"اگر مجبور شدید کارت PCI SCSI خود را دستی مشخص کنید، DrakX از شما برای \n"
-"تنظیم گزینه‌های آن سوال خواهد کرد. شما باید به DrakX اجازه دهید Ú©Ù‡ Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± \n"
-"را برای گزینه‌های بخصوص-کارت که برای تطبیق کارت لازم است جستجو نماید. در "
-"بیشتر \n"
-"مواقع DrakX بدون هیچ مشکلی این مرحله را طی می‌کند. \n"
-"\n"
-"اگر DrakX نتواند Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± را برای گزینه‌ها به منظور ÛŒØ§ÙØªÙ† اجزایی Ú©Ù‡ لازم "
-"است \n"
-"به Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± رد شوند را حس‌گری کند، شما باید راه‌انداز را دستی تنظیم نمایید."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr "آروبا"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "کاربران"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "در حال آماده‌سازی بارگزار آغازگر..."
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "دروازه (%s)"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
-msgstr "گذرواژه‌ها مطابقت نمی‌کنند"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "مثال‌هایی برای آی پی‌های درست:\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the media for backup."
-msgstr "Ù„Ø·ÙØ§ رسانه‌ها را برای ذخیره پشتیبان انتخاب نمایید."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "ÙØ±Ú©Ø§Ù†Ø³ (مگاهرتز)"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"برای Ø§Ø³ØªÙØ§Ø¯Ù‡ از این مجموعه بسته‌های ذخیره شده، نصب را با ``linux "
-"defcfg=floppy'' آغازگری نمایید"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of the processor"
-msgstr "تعداد پردازه‌گرها"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "گذاردن ساعت Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± به GMT"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "آیا می‌خواهید یک تنظیم جدید را شروع نمایید؟"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Give a file name"
-msgstr "یک نام پرونده بدهید"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Ù„Ø·ÙØ§ درگاهی را Ú©Ù‡ چاپگر شما به آن وصل شده است را انتخاب نمایید."
-
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "سی دی را عوض کنید"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "پاراگوئه"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "تنظیمات تکمیل شد، آیا می‌خواهید آنها را اعمال نمایید؟"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از ذخیره پشتیبانی Ø§ÙØ²Ø§ÛŒØ´ÛŒ/تشخیصی (ذخیرهای قدیمی جایگزین نشوند)"
-
-#: ../../standalone/drakTermServ:1
-#, 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:"
-msgstr ""
-" - نگهداری /etc/dhcpd.conf:\n"
-" \t\tبرای آغازگری کارگیرهای از شبکه، هر کارگیر به یک ورودی dhcpd.conf "
-"داشته باشد، گماشتن یک IP\n"
-" \t\tو تصاویر آغازگری شبکه به ماشین احتیاج دارند. drakTermServ به شما "
-"در ایجاد/برداشتن این ورودی‌ها کمک می‌کند.\n"
-"\t\t\t\n"
-" \t\t(کارت‌های PCI ممکن است تصویر را نادیده بگیرند - etherboot تصویر "
-"درست را درخواست خواهد کرد. شما باید\n"
-" \t\tهمچنین توجه داشته باشید که وقتی etherboot دنبال تصاویر می‌گردد، "
-"آن انتظار نام‌هایی شبیه \n"
-" \t\tboot-3c59x.nbi, تا اینکه boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tیک قطعه‌ی نمونه dhcpd.conf برای حمایت یک کارگیر بدون دیسک شبیه "
-"زیر است:"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr "راه‌انداز شناخته شده‌ای برای کارت صدای (%s) شما وجود ندارد"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "force"
-msgstr "اجبار"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Exit"
-msgstr "خروج"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
-msgstr ""
-"توجه: بستگی به مدل چاپگر Ùˆ سیستم چاپی تا %d مگابایت Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± اضاÙÙ‡ نصب خواهد "
-"شد. "
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"شما هیچ واسط تنظیم شده‌ای ندارید. \n"
-"آنها را ابتدا بوسیله کلیک بر 'تنظیم' تنظیم نمایید"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "استونیایی"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
-"آپاچ یک کارگزار تار پهناور جهان یا اینترنت می‌باشد. آن برای عرضه پرونده‌های "
-"HTML Ùˆ CGI Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
-"نام دستگاه سی‌دی‌نگارخود را وارد نمایید\n"
-"مثال: ۰، ۱، ۰"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ALL"
-msgstr "همه"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù†/حذ٠کارگیرها"
-
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Choose the network interface"
-msgstr "انتخاب واسط شبکه"
-
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown Model"
-msgstr "مدل ناشناس"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
-msgstr "نگارش‌گرهای CD/DVD "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"قسمت‌بندی آغاز شده بوسیله Ù¾ÛŒØ´â€ŒÙØ±Ø¶\n"
-" (برای آغازگری MS-DOS ، نه برای lilo)\n"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "ÙØ¹Ø§Ù„ سازی \"%s\" برای خواندن پرونده"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image"
-msgstr "انتخاب تصویر"
-
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "تنظیمات دیوارآتش شناسایی شد!"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "نام ارتباط"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"x coordinate of text box\n"
-"in number of characters"
-msgstr ""
-"موقعیت اÙÙ‚ÛŒ جعبه متن\n"
-"در تعداد نویسه‌ها"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
-msgstr ""
-"شما ممکن است نتوانید lilo را نصب کنید (برای اینکه lilo نمی‌تواند یک LV را بر "
-"چندین PV اداره کند)"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Updating package selection"
-msgstr "بروزسازی مجموعه بسته"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "کجا می‌خواهید پرونده loopback %s را سوارسازی نمایید؟"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"دیسکچه با موÙقیت تولید شد. \n"
-"شما اکنون میتوانید نصب را دوباره شروع نمایید."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از CD/DVDROM برای ذخیره پشتیبانی"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "تعداد تکمه‌های موش"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
-msgstr "بازنواختن"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup other files"
-msgstr "ذخیره پشتیبانی پرونده های دیگر"
-
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "هیچ دستگاه دیسکچه موجود نمی‌باشد"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "پرونده‌های پشتیبانی خراب شده‌اند"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
-msgstr "مأخذ تلویزیون:"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr "خانواده Cpuid"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "۳۲ مگابایت"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: thin"
-msgstr "نوع: نازک"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "لیتوانی AZERTY (جدید)"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr "آری بدین معنی است که هم‌پردازه‌گر اعدادی یک وکتور استثنای وصل شده دارد"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid ""
-"You've selected a software RAID partition as root (/).\n"
-"No bootloader is able to handle this without a /boot partition.\n"
-"Please be sure to add a /boot partition"
-msgstr ""
-"شما یک قسمت‌بندی RAID Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±ÛŒ را مانند ریشه (/) انتخاب کرده‌اید. \n"
-"هیچ بارگزار آغازگری قادر به اداره‌ی این بدون یک قسمت‌بندی /boot نمی‌باشد. \n"
-"Ù„Ø·ÙØ§ یک قسمت‌بندی /boot را اضاÙÙ‡ نمایید"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "سیستم‌عامل دیگر (MacOS...)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
-msgstr "ÙØ¹Ø§Ù„ کردن موش،"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "بالا آوردن ÙØ¹Ø§Ù„یت شبکه"
-
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "ØµÙØ­Ù‡â€ŒØªØµÙˆÛŒØ±Ù‡Ø§ بعد از نصب در %s موجود خواهند بود"
-
-#: ../../help.pm:1
-#, 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:\")."
-msgstr ""
-"بیش از یک قسمت‌بندی Ù…Ø§ÛŒÚ©Ø±ÙˆØ³Ø§ÙØª بر دیسک شما شناسایی شده است. \n"
-"Ù„Ø·ÙØ§ آن قسمت‌بندی را Ú©Ù‡ برای نصب سیستم عامل لینوکس ماندرایک می‌خواهید \n"
-"تغییر اندازه دهید را انتخاب نمایید. \n"
-"\n"
-"هر قسمت‌بندی Ùهرست شده بدنبال می‌آید: \"نام لینوکس\", \"نام ویندوز\" \n"
-"\"ظرÙیت\".\n"
-"\n"
-"\"نام لینوکس\" دارای ساختار: \"نوع دستگاه دیسک\", \"شماره دستگاه دیسک\",\n"
-"\"شماره قسمت‌بندی\" (برای مثال, \"hda1\").\n"
-"\n"
-"\"نوع دستگاه دیسک\" اگر دستگاه دیسک شما یک دستگاه دیسک IDE باشد \"hd\" است "
-"Ùˆ\n"
-"\"sd\" اگر آن یک دستگاه دیسک SCSI باشد.\n"
-"\n"
-"\"شماره دستگاه دیسک\" همیشه یک Ø­Ø±Ù Ø§Ù„ÙØ¨Ø§ بعد از \"hd\" یا \"sd\"می‌باشد.\n"
-"با دستگاه‌های دیسک IDE:\n"
-"\n"
-" * \"a\" بمعنی \"دیسک ارباب بر کنترل کننده مقدم IDE \";\n"
-"\n"
-" * \"b\" بمعنی \"دیسک برده بر کنترل کننده مقدم IDE \";\n"
-"\n"
-" * \"c\" بمعنی \"دیسک ارباب بر کنترل کننده ثانوی IDE \";\n"
-"\n"
-" * \"d\" بمعنی \"دیسک برده بر کنترل کننده ثانوی IDE \".\n"
-"\n"
-"با دستگاه‌های دیسک SCSI, یک \"a\" بمعنی \"پایین‌ترین SCSI ID\", یک \"b\" "
-"بمعنی\n"
-"\"پایین‌ترین SCSI ID دومی\", و غیره.\n"
-"\n"
-"\"نام ویندوز\" Ø­Ø±Ù Ø§Ù„ÙØ¨Ø§ÛŒ دستگاه دیسک شما در ویندوز می‌باشد (اولین\n"
-"دیسک یا قسمت‌بندی \"C:\" نامیده می‌شود)."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
-msgstr "تانزانیا"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "حساب کردن حدود سیستم پرونده‌ای FAT "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"منابع ذخیره پشتیبانی: \n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "custom"
-msgstr "اختصاصی"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Content of the file"
-msgstr "محتوای پرونده"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
-msgstr "اعتبارسنجی LDAP"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
-msgstr ""
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
-msgstr "بگذار من هر دستگاهی را انتخاب کنم"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
-msgstr "ÙØ±Ø³ØªØ§Ø¯Ù‡ شد"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Palestine"
-msgstr "Ùلسطین"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
-
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d رشته‌های جداشده با ویرگول"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " isdn"
-msgstr " isdn"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "این Ùهرست کامل ØµÙØ­Ù‡â€ŒÚ©Ù„ید‌های موجود می‌باشد"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Theme name"
-msgstr "نام تم"
-
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/ـراهنما"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitrary driver"
-msgstr "انتخاب یک راه‌انداز مخصوص"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "جزایر کوک"
-
-#: ../../standalone/scannerdrake:1
-#, 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."
-msgstr ""
-"در اینجا می‌توانید اجازه دسترسی به پویشگر وصل شده به این ماشین را به "
-"رایانه‌های از راه دور و به کدامیک از آنها را انتخاب نمایید."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the width of the progress bar"
-msgstr "عرض پیشخوان پیشروی"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "قالب‌بندی قسمت‌بندی %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hostname required"
-msgstr "نام میزبان لازم است"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "قلم‌های نگارش انتخاب نشده نصب شد"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "چرخ"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit kernel version"
-msgstr "ارایه نسخه‌ی هسته"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Cancel"
-msgstr "لغو"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for configured scanners ..."
-msgstr "در حال جستجو برای پویشگرهای تنظیم شده..."
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Videocard"
-msgstr "کارت ویدیو"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tذخیره‌های پشتیبانی از tar Ùˆ bzip2 Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کنند\n"
-
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Remove Selected"
-msgstr "برداشتن انتخاب شده"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Ú©Ø´Ù‌خودکار ـمودم‌ها"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove printer"
-msgstr "برداشتن چاپگر"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Last Log"
-msgstr "نمای آخرین ثبت"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
-"چه سرویس‌هایی را مایلید به اینترنت اجازه دهید با آنها ارتباط برقرار کند؟"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Connection Type"
-msgstr "نوع ارتباط"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"به ابزار تنطیمات پست خوش آمدید. \n"
-"\n"
-"در اینجا شما می‌توانید اخطار سیستم را تنطیم نمایید.\n"
-
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Other"
-msgstr "دیگری"
-
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
-msgstr "Ù¾ÛŒØ´â€ŒÙØ±Ø¶"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "تشبیه‌سازی تکمه ۲"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter a package name."
-msgstr "Ù„Ø·ÙØ§ یک نام بسته را وارد نمایید."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run chkrootkit checks"
-msgstr "اجرای کنترل chkrootkit"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "type1inst building"
-msgstr "ساختن type1inst "
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image file"
-msgstr "انتخاب پرونده تصویر"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "X server"
-msgstr "کارگزار X "
-
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin User Name"
-msgstr "نام کاربر مدیر دامنه"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "یک اشکال هنگام پویش برای کانال‌های تلویزیون رخ داد"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
-msgstr "ØµÙØ­Ù‡â€ŒÚ©Ù„ید آمریکا (بین‌المللی)"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Not installed"
-msgstr "نصب‌نشده"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "هر دو کلیدهای Alt بطور همزمان"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "LAN connection"
-msgstr "ارتباط LAN "
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/-"
-msgstr "/پرونده/-"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Italian"
-msgstr "ایتالیایی"
-
-#: ../../interactive.pm:1
-#, c-format
-msgid "Basic"
-msgstr "ابتدایی"
-
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Honduras"
-msgstr "هوندوراس"
-
-#: ../../help.pm:1
-#, c-format
-msgid "pdq"
-msgstr "pdq"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO"
-msgstr "IO کارت"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Samba server"
-msgstr "کارگزار Samba "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"این قسمت‌بندی Bootstrap \n"
-"مخصوص برای أغازگری دوگانه\n"
-"سیستم شما میباشد.\n"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Ù„Ø·ÙØ§ برای هر مرحله انتخاب کنید Ú©Ù‡ آیا آن مانند نصب شما بازخوانی شود، یا آن "
-"دستی خواهد بود"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"شما می‌توانید در اینجا تصمیم بگیرید که آیا پویشگرهای بر ماشین های از راه دور "
-"باید در دسترس این ماشین قرار بگیرند یا نه. "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-شبکه توسط FTP.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reports check result to tty"
-msgstr "گزارش نتایج کنترل به tty"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "شما باید نام یک دستگاه یا پرونده را وارد نمایید!"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Quit"
-msgstr "/_خروج"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Ø­Ø§ÙØ¸Ù‡ گراÙیک: %s کیلوبایت\n"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-"it under the terms of the GNU General Public License as published by\n"
-"the Free Software Foundation; either version 2, or (at your option)\n"
-"any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful,\n"
-"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-"GNU General Public License for more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
-msgstr ""
-"این برنامه Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± آزاد است; شما می‌توانید آن را پخش مجدد Ùˆ/یا تغییر دهید،\n"
-"البته تحت شرایط GNU General Public License که توسط \n"
-"the Free Software Foundation; یا نسخه ۲, یا (به دلخواه شما)\n"
-"هر نسخه بعدی..\n"
-"\n"
-"این برنامه به امید Ù…Ùید بودن پخش شده است,\n"
-"ولی بدون ضمانت؛ حتی بدون ضمانت تجاری یا \n"
-"شایستگی برای منظور خاصی. برای تشریحات بیشتر \n"
-"به GNU General Public License مراجعه نمایید.\n"
-"\n"
-"شما باید یک کپی از GNU General Public License\n"
-"را همراه این برنامه Ø¯Ø±ÛŒØ§ÙØª کرده باشید؛ اگر نه، نامه‌ای بنویسید به Free "
-"Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to compilation tools"
-msgstr "دسترسی به ابزار تالی٠برنامه"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Global statistics"
-msgstr "آمار‌ها"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Ù„Ø·ÙØ§ داده‌های برای بازسازی را انتخاب نمایید..."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, 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"
-msgstr ""
-"اگر شما قصد Ø§Ø³ØªÙØ§Ø¯Ù‡ از aboot را دارید، دقت کنید Ú©Ù‡ یک ÙØ¶Ø§ÛŒ خالی در ابتدای \n"
-"دیسک (Û²Û°Û´Û¸ بند کاÙÛŒ است) باقی بگذارید"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Standard test page"
-msgstr "ØµÙØ­Ù‡â€ŒÛŒ آزمایشی استاندارد"
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Time Zone"
-msgstr "زمان منطقه‌ای"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create"
-msgstr "ایجاد"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "What"
-msgstr "Ú†Ù‡"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "یک خطا در مرتب کردن بسته‌ها رخ داد:"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "بلغاری (BDS)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Server"
-msgstr "ØºÛŒØ±â€ŒÙØ¹Ø§Ù„‌سازی کارگزار"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem encryption key"
-msgstr "کلید رمزگذاری سیستم پرونده"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
-msgstr "گجراتی"
-
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-"\t\t\tوقتی شما می‌توانید از یک دسته از نشانی‌های آی پی به جای تنظیم یک ورودی "
-"مشخص برای\n"
-"\t\t\tیک ماشین کارگیر Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید، Ø§Ø³ØªÙØ§Ø¯Ù‡ از یک طرح نشانی ثابت Ø§Ø³ØªÙØ§Ø¯Ù‡ از "
-"توانایی‌های پرونده‌های\n"
-"\t\t\tتنظیمات مخصوص-کارگیر را که ClusterNFS عرضه می‌کند را آسان می‌سازد.\n"
-"\t\t\t\n"
-"\t\t\tتوجه: ورودی \"#type\" Ùقط توسط drakTermServ Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود. کارگیرها "
-"می‌توانند 'لاغر'\n"
-"\t\t\tیا 'چاق' باشند. کارگیرهای لاغر بیشتر Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± را برکارگزار از طریق "
-"xdmcp می‌رانند, در حالی که کارگیرهای چاق fat clients run \n"
-"\t\t\tبیشتر Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± را بر ماشین کارگیر می‌رانند. یک inittab مخصوص, %s\n"
-"\t\t\tبرای کارگیرهای لاغر نوشته شده است. پرونده‌های تنظیم سیستم xdm-config, "
-"kdmrc, Ùˆ gdm.conf\n"
-"\t\t\tاگر کارگیرهای لاغر Ø§Ø³ØªÙØ§Ø¯Ù‡ شده باشند برای ÙØ¹Ø§Ù„ کردن xdmcpتغییر "
-"کرده‌اند. چون مسائل امنیتی در Ø§Ø³ØªÙØ§Ø¯Ù‡ از\n"
-"\t\t\txdmcp وجود دارد, hosts.deny و hosts.allow برای محدود کردن دسترسی به "
-"زیرشبکه محلی تغییر\n"
-"\t\t\tکرده‌اند.\n"
-"\t\t\t\n"
-"\t\t\tتوجه: ورودی \"#hdw_config\" Ùقط توسط drakTermServ Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود. "
-"کارگیرها می‌توانند یا \n"
-"\t\t\t 'درست' یا 'نادرست' باشند. 'درست' ورود مدیر را در ماشین کارگیر قادر "
-"ساخته Ùˆ تنظیمات Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø±ÛŒ \n"
-"\t\t\tمحلی صدا، موش Ùˆ X, را با Ø§Ø³ØªÙØ§Ø¯Ù‡ از ابزار 'drak' مجاز Ù…ÛŒ سازد. این "
-"بوسیله ایجاد پرونده‌های تنظیم \n"
-"\t\t\tجداگانه ربط داده شده به نشانی آی پی کارگیرها و ایجاد خواندن/نوشتن نقاط "
-"سوارسازی برای مجاز ساختن\n"
-"\t\t\tکارگیر به دسترسی به پرونده ÙØ¹Ø§Ù„ شده است. هنگامی Ú©Ù‡ شما از تنظیمات راضی "
-"شدید، \n"
-"\t\t\tمی‌توانید امتیازات ورود مدیر را از کارگیر بردارید.\n"
-"\t\t\t\n"
-"\t\t\tتوجه: شما باید کارگزار را بعد از Ø§ÙØ²ÙˆØ¯Ù† یا تغییر کارگیرها متوقÙ/شروع "
-"نمایید."
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
-"Ù„Ø·ÙØ§ اولین شماره Û±Û°-گستره ای Ú©Ù‡ می‌خواهید ویرایش کنید را انتخاب نمایید، \n"
-"یا برای ادامه Ùقط ورود را ÙØ´Ø§Ø± دهید. \n"
-"انتخاب شما؟"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
-msgstr ""
-"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Save theme"
-msgstr "ذخیره تم"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "برزیل"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install"
-msgstr "نصب خودکار"
-
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration Wizard"
-msgstr "جادوگر تنظیمات شبکه"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
-msgstr "سوارسازی خودکار رسانه قابل انتقال"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Printing"
-msgstr "در حال چاپ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save:"
-msgstr "شاخه‌ای را برای ذخیره وارد نمایید:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr "هیچ چاپگری که مستقیما به ماشین شما وصل شده باشد پیدا نشد"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "ایجاد یک قسمت‌بندی جدید"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Driver:"
-msgstr "راه‌انداز:"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
-msgstr "ناشناس"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از fdisk"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "چرخ خود را حرکت دهید!"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "sent: "
-msgstr "ÙØ±Ø³ØªØ§Ø¯Ù‡ شده:"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "آی پی خودکار"
-
-#: ../../help.pm:1
-#, 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:\")"
-msgstr ""
-"Ø¨ÙØ±Ù…ایید. نصب اکنون تکمیل شده است Ùˆ سیستم گنو/لینوکس آماده‌ی Ø§Ø³ØªÙØ§Ø¯Ù‡ "
-"می‌باشد. \n"
-"Ùقط بر \"%s\" کلیک کرده تا سیستم آغازگری مجدد شود. اولین جیزی Ú©Ù‡ شما بعد "
-"از \n"
-"اینکه رایانه‌ی شما Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± خود را آزمایش می‌کند Ùهرست بارگزار آغازگری است، \n"
-"که به شما اجازه‌ی انتخاب راه‌اندازی یکی از سیستم‌های عامل را می‌دهد. \n"
-"\n"
-"تکمه \"%s\" دو تکمه‌ی دیگر را نشان داده برای: \n"
-" * \"%s\": ایجاد یک دیسکچه نصب که تمام نصب را بطور خودکار بدون کمک \n"
-"کسی، شبیه به نصبی که شما اکنون تنظیم کردید را انجام می‌دهد. \n"
-"\n"
-" توجه کنید که بعد از کلیک بر این تکمه دو گزینه موجود می‌باشند:\n"
-"\n"
-" * \"%s\". این نصب نسبتاً خودکارمی‌باشد. گام قسمت‌بندی تنها \n"
-"مرحله‌ی Ú¯ÙØªÚ¯ÙˆÛŒÛŒ می‌باشد.\n"
-"\n"
-" * \"%s\". نصب کاملاً خودکار: دیسک سخت کاملاً بازنویسی شده،\n"
-"تمام داده‌ها از دست خواهند Ø±ÙØª.\n"
-"\n"
-" این قابلیت وقتی چندین ماشین قرار است شبیه به هم نصب شوند Ù…Ùید می‌باشد.\n"
-"قسمت نصب خودکار را در پایگاه اینترنت ما برای اطلاعات بیشتر ملاحظه نمایید.\n"
-"\n"
-" * \"%s\"(*): یک لیست از بسته‌های انتخاب شده در این نصب را ذخیره می‌کند.\n"
-"برای Ø§Ø³ØªÙØ§Ø¯Ù‡ از این انتخاب با نصب دیگر، دیسک‌نرم را داخل کرده Ùˆ نصب\n"
-"را شروع نمایید. در اعلان, کلید [F1] را ÙØ´Ø§Ø± داده Ùˆ بنویسید >>linux\n"
-"defcfg=\"floppy\" <<.\n"
-"\n"
-"(*) شما به یک دیسک‌نرم با قالب FAT احتیاج دارید (برای ایجاد آن در لینوکس\n"
-"بنویسید \"mformat a:\")"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Moldova"
-msgstr "مولدووا"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "موش متÙکر Kensington "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuration of a remote printer"
-msgstr "تنظیمات یک چاپگر از راه دور"
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
-msgstr "یک پایگاه روی خط برای جوابگویی به احتیاجات حمایتی شرکت‌ها."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "نشانی URL باید با 'ftp:' یا 'http' شروع شود:"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Oriya"
-msgstr "اوری‌یا"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù† یک قاعده جدید در آخر "
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr "نصب LiLo Ùˆ تم Bootsplash موÙÙ‚ بود"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
-msgstr ""
-"شما در اینجا می‌توانید تصمیم بگیرید که آیا چاپگرهای بر ماشین‌های از راه دور "
-"بایستی بطور خودکار برای این رایانه قابل دسترس شوند یا نه."
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid ""
-"You may now provide options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"شما ممکن است اکنون گزینه ها را به بخش %s عرضه نمایید.\n"
-"گزینه‌ها به شکل ``name=value name2=value2 ...'' می‌باشند.\n"
-"برای مثال, ``io=0x300 irq=7''"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "خروج بدون نوشتن جدول قسمت‌بندی؟"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Hard Drive"
-msgstr "بر دیسک سخت"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "Installing packages..."
-msgstr "در حال نصب بسته‌ها..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dutch"
-msgstr "هلندی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Angola"
-msgstr "آنگولا"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "بسته‌های بدنبال آمده لازم است نصب بشوند:\n"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "service setting"
-msgstr "تنظیم سرویس"
-
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "اختصاصی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
-msgstr "لاتویا"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr ""
-"پرونده قبلا توسط یک loopback دیگر مورد Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌باشد، یکی دیگر را انتخاب "
-"نمایید"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr "Ùقط‌-خواندنی"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
-msgstr ""
-"ÙØ¹Ø§Ù„/ØºÛŒØ±ÙØ¹Ø§Ù„ سازی Ø­ÙØ§Ø¸Øª spoofing نام یابی.\n"
-"اگر \"اخطار\" درست باشد, به syslog هم گزارش ‌شود."
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
-msgstr "هیچ راه‌انداز آشنایی"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "۱ مگابایت"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
-msgstr ""
-"اگر این آن نیست که شما می‌خواهید تنظیم نمایید، نام یک دستگاه/پرونده را در خط "
-"درون‌ریز وارد نمایید"
-
-#: ../../standalone/draksound:1
-#, 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"
-msgstr ""
-"هیچ کارت صدایی بر ماشین شما شناسایی نشد. Ù„Ø·ÙØ§ کنترل کنید Ú©Ù‡ یک کارت صدای با "
-"حمایت-لینوکس بدرستی وصل شده باشد. \n"
-"\n"
-"\n"
-"شما می‌توانید بانک اطلاعات Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± ما را دیدن نمایید: \n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "تنظیم شبکه منطقه محلی..."
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr "پرتاب اجرای سیستم صدا بر ماشین شما"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
-msgstr "امتحان checksum برای suid/sgidپرونده‌ها"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run some checks against the rpm database"
-msgstr "اجرای چندین کنترل بر بانک اطلاعات rpm"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Execute"
-msgstr "اجرا"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Preparing printer database..."
-msgstr "در حال آماده کردن بانک اطلاعات چاپگر..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Information"
-msgstr "اطلاعات"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "No network card"
-msgstr "هیچ کارت شبکه"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "۳ تکمه"
-
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Which filesystem do you want?"
-msgstr "چه سیستم پرونده‌ می‌خواهید؟"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Malta"
-msgstr "مالتا"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Detailed information"
-msgstr "اطلاعات Ù…ÙØµÙ„"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
-"تنظیمات Ù¾ÛŒØ´â€ŒÙØ±Ø¶ چاپگر \n"
-"\n"
-"شما باید مطمئن شوید که اندازه کاغذ و نوع جوهر/حالت چاپی (اگر وجود دارد) و "
-"همچنین تنظیمات Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± چاپگرهای لیزری (Ø­Ø§ÙØ¸Ù‡ØŒ واحد دوپلکس، سینی‌های اضاÙÙ‡) "
-"بدرستی تایین شده باشند. توجه کنید Ú©Ù‡ جاپ با Ú©ÛŒÙیت/وضوح خیلی بالا چاپ کردن را "
-"بسیار آهسته می‌کند. "
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
-msgstr "این دیسکچه قالب‌بندی FAT ندارد"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "در حال تنظیم شبکه"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-"این گزینه پرونده‌هایی را Ú©Ù‡ تغییر کرده‌اند را ذخیره خواهد کرد. Ø±ÙØªØ§Ø± دقیق "
-"بستگی به این دارد Ú©Ù‡ آیا حالت Ø§ÙØ²Ø§ÛŒØ´ÛŒ یا ØªÙØ§ÙˆØªÛŒ Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود."
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Graphic Card"
-msgstr "کارت گراÙیک"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing Windows partition"
-msgstr "تغییر اندازه قسمت‌بندی ویندوز"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "کامرون"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "عرضه کننده dns ۱ (دلخواه)"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"شما اکنون می‌توانید %s را قسمت‌بندی نمایید. وقتی آن را انجام دادید، ÙØ±Ø§Ù…وش "
-"نکنید که آن را با `w' ذخیره نمایید"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finnish)"
-msgstr "سام (سوئدی/Ùنلاندی)"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Close"
-msgstr "بستن"
-
-#: ../../help.pm:1
-#, 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 ""
-"\"%s\": انتخاب کشور کنونی را کنترل نمایید. اگر شما در این کشور زندگی "
-"نمی‌کنید،\n"
-"بر تکمه \"%s\" کلیک کرده و یکی دیگر را انتخاب نمایید. اگر کشور شما\n"
-"در لیست نشان داده شده نمی‌باشد، تکمه‌ی \"%s\" را برای Ø¯Ø±ÛŒØ§ÙØª لیست\n"
-"کامل کشورها کلیک نمایید."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Calendar"
-msgstr "تقویم"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
-"بازسازی ورودی\n"
-"کاتالوگ انتخاب شده"
-
-#: ../../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 ""
-"برای Ø§Ø³ØªÙØ§Ø¯Ù‡ از چاپگر از راه دور lpdØŒ شما باید نام میزبان کارگزار چاپگر Ùˆ "
-"نام چاپگر روی آن کارگزار را عرضه نمایید. "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
-msgstr "آیس‌لند"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "تنظیمات شبکه & اینترنت"
-
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
-msgstr "consolehelper وجود ندارد"
-
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr "متوق٠شد."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "آیا FPU یک بردار irq دارد یا نه"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr "گستردن درخت"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"The old \"%s\" driver is blacklisted.\n"
-"\n"
-"It has been reported to oops the kernel on unloading.\n"
-"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
-msgstr ""
-"راه‌انداز قدیمی \"%s\" در لیست سیاه است.\n"
-"\n"
-"این برای برداشتن از هسته گزارش شده است.\n"
-"\n"
-"راه‌انداز جدید \"%s\" Ùقط در bootstrap بعدی Ø§Ø³ØªÙØ§Ø¯Ù‡ خواهد شد."
-
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Expert Mode"
-msgstr "حالت کارشناسی"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "گزینه‌های چاپگر"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Local Network adress"
-msgstr "نشانی شبکه محلی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "ذخیره پشتیبانی پرونده های سیستم شما. (شاخه /etc )"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the user umask."
-msgstr "تایین umask کاربر."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
-"شما اکنون می‌توانید بسته‌های بروزسازی شده را بارگیری نمایید. این بسته ها \n"
-"بعد از پخش انتشار بروزسازی شده‌اند. آنها ممکن است حاوی تعمیر اشکال \n"
-"یا امنیتی باشند. \n"
-"\n"
-"برای بارگیری این بسته ها، شما احتیاج به یک ارتباط اینترنتی دارید. \n"
-"\n"
-"آیا می‌خواهید بروزسازی‌ها را نصب نمایید؟"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Samba Server"
-msgstr "کارگزار Samba "
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Australian Optus cable TV"
-
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr " <Tab>/<Alt-Tab> بین عناصر | <Space> انتخاب | <F12> صحنه بعدی "
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet:"
-msgstr "زیرشبکه:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zimbabwe"
-msgstr "زیمبابوه"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "When"
-msgstr "چه وقتی"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
-msgstr ""
-"شما alcatel microcode را لازم دارید.\n"
-"آن را از نشانی زیر بارگیری کرده\n"
-"%s\n"
-"و به mgmt.o در /usr/share/speedtouch کپی نمایید"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hour"
-msgstr "ساعت"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "دومین کارگزار DNS (دلخواه)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Finland"
-msgstr "Ùنلاند"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "عمق رنگ: %s\n"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "شما نمی‌توانید این بسته را انتخاب نکنید. این باید ارتقا داده شود"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "در حال بارگذاری از دیسکچه "
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr ""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
-msgstr "ÙØ¹Ø§Ù„/ØºÛŒØ±ÙØ¹Ø§Ù„ سازی ثبت پاکت‌های عجیب IPv4."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr "اسلوونی"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse test"
-msgstr "آزمایش موش"
-
-#: ../../standalone/drakperm:1
-#, 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."
-msgstr ""
-"برنامه Drakperm برای دیدن پرونده‌های مورد Ø§Ø³ØªÙØ§Ø¯Ù‡ برای تایین اجازه‌ها، "
-"مالکیت‌ها و گروه‌ها از طریق msec. \n"
-"شما همچنین می‌توانید قواعد خود را ویرایش کرده Ú©Ù‡ در آن صورت قواعد Ù¾ÛŒØ´â€ŒÙØ±Ø¶ را "
-"بازنگاری خواهد نمود."
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"یک کاربر را وارد نمایید \n"
-"%s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
-msgstr ""
-"- دستگاه‌های PCI Ùˆ USB: این ÙØ±ÙˆØ´Ù†Ø¯Ù‡ØŒ دستگاه، Ø®Ø±Ø¯Ù‡â€ŒÙØ±ÙˆØ´ Ùˆ زیردستگاه PCI/USB ids "
-"را Ùهرست می‌کند."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "ProgressBar color selection"
-msgstr "مجموعه رنگ Ù¾ÛŒØ´Ø®ÙˆØ§Ù†â€ŒÙ¾ÛŒØ´Ø±ÙØª"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
-msgstr ""
-"اینها تا اینجا ورودی‌های بر Ùهرست آغازگری شما هستید: \n"
-"شما می‌توانید ورودی‌های دیگر یا ورودی‌های موجود را تغییر دهید."
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"Application Name\n"
-"or Full Path:"
-msgstr ""
-"نام برنامه \n"
-"یا مسیر کامل:"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Runs commands scheduled by the at command at the time specified when\n"
-"at was run, and runs batch commands when the load average is low enough."
-msgstr ""
-"ÙØ±Ù…ان‌های زمان بندی شده را بوسیله‌ی ÙØ±Ù…ان at در زمان مشخص شده را وقتی at\n"
-"در جریان باشد، Ùˆ ÙØ±Ù…ان‌های دسته‌ای را وقتی میانگین بارگزاری Ú©Ù… باشد را می‌راند."
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
-msgstr "حمایت رادیو:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "در حال نصب بسته‌های SANE..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Change type"
-msgstr "تغییر نوع"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", چاپگر USB #%s"
-
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "نصب SILO "
-
-#: ../../install_messages.pm:1
-#, 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."
-msgstr ""
-"تبریک میگوییم، نصب تکمیل شده است.\n"
-"رسانه آغازگر را برداشته Ùˆ برگشت را برای آغازگری مجدد ÙØ´Ø§Ø± دهید.\n"
-"\n"
-"\n"
-"برای اطلاعات درباره تعمیرات موجود برای این انتشار لینوکس مان‌درایک\n"
-"با Errata مشورت نمایید:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"اطلاعات درباره تنظیم سیستم شما در ÙØµÙ„ بعد از نصب راهنمای کاربر لینوکس \n"
-"مان‌درایک رسمی موجود می‌باشد."
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Enable Network Time Protocol"
-msgstr "بازسازی از طریق پیوندنامه شبکه: %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "paranoid"
-msgstr "خیالاتی"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "پست غیر ضروری ÙØ±Ø³ØªØ§Ø¯Ù‡ نشود"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "پویشگر(های) شما بر شبکه قابل دسترسی نخواهد بود."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "ÙØ±Ø³ØªØ§Ø¯Ù† گزارش پستی بعد از هر ذخیره پشتیبانی به: "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"این ÙØ±Ù…ان را شما می‌توانید در محوطه‌ی Ú¯ÙØªÚ¯ÙˆÛŒ چاپ \"ÙØ±Ù…ان چاپ\" بسیاری از "
-"برنامه‌ها Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید. ولی در اینجا نام پرونده را عرضه نکنید چرا Ú©Ù‡ پرونده‌ی "
-"برای چاپ توسط برنامه داده می‌شود.\n"
-
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolution"
-msgstr "وضوح"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"برای چاپ به یک چاپگر SMB ، شما باید نام میزبان SMB را (توجه! آن ممکن است که "
-"با نام میزبان TCP/IP ÙØ±Ù‚ داشته باشد!) Ùˆ احتمالاً نشانی Ø¢ÛŒ Ù¾ÛŒ کارگزار چاپ، "
-"همچنین نام اشتراک چاپگری که شما می‌خواهید به آن دستیابی پیدا کنید و هر نام "
-"کاربر، گذرواژه، و اطلاعات گروه‌کار را عرضه نمایید."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
-msgstr " ÙØ¹Ø§Ù„ کردن su Ùقط برای اعضای گروه چرخ یا اجازه su برای هر کاربر."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
-msgstr "تنظیم مجدد"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"کارت شما می‌تواند حمایت شتاب دهنده‌ی Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± Û³ بعدی را با XFree %s داشته "
-"باشد.\n"
-"توجه کنید که این حمایت آزمایشی بوده و ممکن است رایانه شما را متوق٠کند."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell timeout"
-msgstr "مدت تاخیر پوسته"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Xinetd Service"
-msgstr "سرویس Xinetd "
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to network tools"
-msgstr "دسترسی به ابزار شبکه"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "باردهی-Firmware برای HP LaserJet 1000"
-
-#: ../advertising/03-software.pl:1
-#, 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."
-msgstr ""
-"Ùˆ البته چندرسانه‌‌ای را به مرز خود با آخرین Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± برای پخش ویدیو، پرونده‌های "
-"صوتی و اداره‌ی تصاویر یا عکس‌ها برسانید."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "این یک Ùهرست از تمام چاپگرهای شناسایی شده با Ú©Ø´Ù-خودکار است."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
-msgstr ""
-"خطا در نصب aboot, \n"
-"آیا تلاش برای اجبار به نصب می‌کنید حتی اگر که اولین قسمت‌بندی خراب شود؟"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr ""
-"بازسازی پرونده‌های \n"
-"انتخاب شده"
-
-#: ../../standalone/drakbackup:1
-#, 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."
-msgstr ""
-"%s وجود دارد, حذ٠شود?\n"
-"\n"
-"هشدار: اگر شما قبلا این پروسه را انجام داده‌اید شما احتمالا\n"
-" احتیاج به پاک کردن ورودی از کلیدهای معتبر روی کارگزار دارید ."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Ù„Ø·ÙØ§ منطقه زیر را پر یا علامت بزنید"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "آیا می خواهید تغییرات /etc/fstab را ذخیره نمایید؟"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
-msgstr "پایان‌نامه آغازگری"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-disks %s\n"
-
-#: ../../services.pm:1
-#, c-format
-msgid "On boot"
-msgstr "در آغازگری"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "بسته %s لازم است نصب شود. آیا نصب شود؟"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus identification"
-msgstr "شناسایی گذرگاه "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vatican"
-msgstr "واتیکان"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please make a backup of your data first"
-msgstr "Ù„Ø·ÙØ§ اول یک ذخیره پشتیبان از داده‌های خود تهیه نمایید"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ADSL adapters"
-msgstr ""
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr ""
-"شما بیش از یک دستگاه دیسک دارید، بر کدامیک از آنها می‌خواهید لینوکس را نصب "
-"نمایید؟"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Eritrea"
-msgstr "اریتره"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot ISO"
-msgstr "Boot ISO"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Firmware needed"
-msgstr "Firmware لازم است"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove List"
-msgstr "برداشتن لیست"
-
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
-msgstr "یک محیط اختصاصی‌سازی"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
-msgstr "اینوکتیتوت"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Some protocols, like rsync, may be configured at the server end. Rather "
-"than using a directory path, you would use the 'module' name for the service "
-"path."
-msgstr ""
-"بعضی پایان‌نامه‌ها مانند rsync ممکن است در قسمت کارگزار تنظیم شوند.بجای "
-"Ø§Ø³ØªÙØ§Ø¯Ù‡ از مسیر شاخه، شما از نام بخش برای مسیر سرویس Ø§Ø³ØªÙØ§Ø¯Ù‡ خواهید کرد."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "مراکش"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "مدل چاپگر شما چیست؟ "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add a new printer"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù† یک چاپگر جدید"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " All of your selected data have been "
-msgstr " تمام داده‌های انتخاب شده‌ی شما "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "نپال"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- حذÙ"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
-msgstr "cpu # "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "chunk size"
-msgstr "اندازه‌ی تکه"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
-"\n"
-"If set to NONE, no issues are allowed.\n"
-"\n"
-"Else only /etc/issue is allowed."
-msgstr ""
-"اگر \"همه\" تایین شده، /etc/issue و /etc/issue.net مجاز به وجود داشتن "
-"می‌باشند.\n"
-"\n"
-"اگر هیچ تایین شده، هیچ موضوعی مجاز نمی‌باشد.\n"
-"\n"
-"بجز Ùقط /etc/issue Ú©Ù‡ مجاز می‌شود."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr " ÙØ¹Ø§Ù„/ØºÛŒØ±ÙØ¹Ø§Ù„ کردن sulogin(8) در سطح کاربر تکی."
-
-#. -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
-#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "ÙØ±Ù…ان‌های قبل از آغازگری، یا 'c' برای خط ÙØ±Ù…ان."
-
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr "اشکالات نصب بسته %s"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "شما یک اخطار Ø¯Ø±ÛŒØ§ÙØª خواهید کرد اگر بارگزاری بیش از این مقدار باشد "
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù† دستی یک پویشگر"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh"
-msgstr "نوسازی"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Reload partition table"
-msgstr "بارگزاری جدول قسمت‌بندی"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "آری، من ورودخودکار با این (کاربر، میزکار) را می‌خواهم"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Selected"
-msgstr "بازسازی انتخاب شده"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "جستجو برای قلم‌های در Ùهرست نصب شده"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "شبکه محلی با `.0' تمام نشد، ÙØ±ÙˆØ¯ می‌آید."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Boot"
-msgstr "آغازگری"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " and the CD is in the drive"
-msgstr "و سی دی درون دستگاه می‌باشد"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Tuner type:"
-msgstr "نوع گیرنده:"
-
-#: ../../help.pm:1
-#, 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"
-"\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 ""
-"اکنون زمان آن رسیده که یک سیستم چاپ برای رایانه شما انتخاب شود. سیستم های "
-"عامل دیگر ممکن \n"
-"است یکی را به شما عرضه کنند، ولی لینوکس مان‌درایک دو تا عرضه می‌دارد. هر یک از "
-"سیستم‌های \n"
-"چاپ برای تنظیم نوع خاصی مناسب‌تر می‌باشد. \n"
-"\n"
-" * \"%s\" -- Ú©Ù‡ مخÙ٠شده‌ی ``چاپ, بدون صÙ'', انتخابی است برای آن دسته Ú©Ù‡\n"
-"اتصال مستقیم به چاپگر خود دارند، شما Ú©Ù‡ می‌خواهید از تراÙیک چاپگر رهایی\n"
-"یابید، و چاپگرهای شبکه‌ای ندارید. (\"%s\"موارد خیلی ساده‌ی شبکه را اداره\n"
-"کرده Ùˆ وقتی با شبکه Ø§Ø³ØªÙØ§Ø¯Ù‡ شود قدری آهسته کار می‌کند.) پیشنهاد ما به شما\n"
-"Ø§Ø³ØªÙØ§Ø¯Ù‡ از \"pdq\" اگر این اولین تجربه‌ی شما با گنو/لینوکس است می‌باشد.\n"
-"\n"
-" * \"%s\" - `` Common Unix Printing System'', یک انتخاب برتر برای چاپ به\n"
-"چاپگر محلی شما یا به یک چاپگر در آن طر٠کره‌ی زمین می‌باشد. تنظیم آن\n"
-"آسان بوده و می‌تواند مانند یک کارگزار یا یک کارگیر برای سیستم چاپ عهد عتیق\n"
-"\"lpd \" عمل کند، بنابرین آن با سیستم‌های عامل قدیمی که ممکن است هنوز به "
-"سرویس چاپ\n"
-"احتیاج داشته باشند همخوانی دارد. در حالی که بسیار قدرتمند است، برپاسازی "
-"پایه‌ای\n"
-"آن تقریباً به سادگی \"pdq\"می‌باشد. اگر شما احتیاج به شبیه سازی یک کارگزار "
-"\"lpd\" \n"
-"دارید، مطمئن شوید که شبح \"cups-lpd \" را روشن کرده باشید. \"%s\" شامل یک \n"
-"ظاهر تصویری برای چاپ یا انتخاب گزینه‌های چاپگر و برای مدیریت چاپگر می‌باشد.\n"
-"\n"
-"اگر شما انتخاب خود را اکنون انجام دهید، و بعداً دریابید که سیستم چاپ خود را\n"
-"دوست ندارید می‌توانید آن را بوسیله‌ی برنامه PrinterDrake در مرکز کنترل "
-"مان‌درایک\n"
-"و کلیک بر تکمه کارشناس تغییر دهید."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
-msgstr "کلید \"Ùهرست\""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
-msgstr ""
-"\n"
-"\n"
-"Ù„Ø·ÙØ§Ù‹ کنترل کنید Ú©Ù‡ آیا Printerdrake مدل چاپگر شما را بدرستی Ú©Ø´Ù-خودکار کرده "
-"است. مدل درست را وقتی که یک مدل اشتباه یا \"چاپگر خام\" پررنگ شده در لیست "
-"پیدا نمایید."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Administrator:"
-msgstr "مدیر امنیت:"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
-msgstr "تایین مدت تاخیر پوسته. ØµÙØ± بمعنی هیچ تاخیر."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "Ú©Ù¾ÛŒ کردن Ùیرم‌ویر موÙÙ‚ بود"
-
-#: ../../../move/tree/mdk_totem:1
-#, 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."
-msgstr ""
-"اگر به آری گذاشته شده، اجازه‌های پرونده‌ها را در خانه‌ی کاربران کنترل کنید."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"شما ارتباط اینترنتی ندارید.\n"
-"یکی را اول با کلیک بر تنطیم ایجاد نمایید"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Fonts copy"
-msgstr "کپی قلم‌ها"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
-msgstr "خودکار"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "آیا می‌خواهید تنظیمات را امتحان نمایید؟"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
-msgstr "چاپگر \"%s\" با موÙقیت از Star Office/OpenOffice.org/GIMP برداشته شد."
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save packages selection"
-msgstr "ذخیره مجموعه بسته ها"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Actions"
-msgstr "/_Actions"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Remove the last item"
-msgstr "برداشتن آخرین جزء"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr "لیست کاربر برای بازسازی (Ùقط آخرین تاریخ برای کاربر مهم است)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
-msgstr "هیچ تصویر آغازگری شبکه ایجاد نشده است!"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از pptp"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr "انتخاب سرویس‌هایی که باید بطور خودکار در زمان آغازگری شروع شوند"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check files/directories writable by everybody"
-msgstr "پرونده‌ها/شاخه‌های قابل نگارش بوسیله‌ی هرکس را کنترل نمایید"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "آموزش Ø§Ø³ØªÙØ§Ø¯Ù‡ از این چاپگر"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configure the network now"
-msgstr "تنظیم شبکه اکنون"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "انتخاب یک آینه برای Ú¯Ø±ÙØªÙ† بسته‌ها از آن"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"برنامه FAT resizer نمی‌تواند قسمت‌بندی شما را اداره کند، \n"
-"خطای بدنبال آمده رخ داد: %s"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Size: "
-msgstr "اندازه:"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "به کدام بند می‌خواهید آن را منتقل نمایید؟"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahamas"
-msgstr "باهاما"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Do you want to click on this button?"
-msgstr "آیا می‌خواهید بر این تکمه کلیک نمایید؟"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Manual configuration"
-msgstr "تنظیم دستی"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "search"
-msgstr "جستجو"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"این بسته نقشه‌ی ØµÙØ­Ù‡â€ŒÚ©Ù„ید انتخاب شده‌ایی را Ú©Ù‡ در /etc/sysconfig/keyboard \n"
-"گذاشته شده بارگزاری می‌کند. این می‌تواند با Ø§Ø³ØªÙØ§Ø¯Ù‡ از ابزار kbdconfig انتخاب "
-"شود. \n"
-"شما باید این را برای بیشتر ماشین‌ها ÙØ¹Ø§Ù„ باقی بگذارید."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (نصب راه‌انداز نمایش)"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "نام میزبان Zeroconf نباید حاوی یک "
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr " پذیرش/امتناع پژواک icmp."
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Syslog is the facility by which many daemons use to log messages\n"
-"to various system log files. It is a good idea to always run syslog."
-msgstr ""
-"Syslog وسیله‌ای است که بسیاری از شبح‌ها برای ثبت پیغام‌ها به پرونده‌های \n"
-"ثبت سیستم Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کنند. این Ùکر خوبی است Ú©Ù‡ همیشه syslog را اجرا نمود."
-
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown/Others"
-msgstr "ناشناس/دیگران"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
-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
-#, c-format
-msgid "Options"
-msgstr "گزینه‌ها"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "چاپگر \"%s\" اکنون مانند Ù¾ÛŒØ´â€ŒÙØ±Ø¶ تایین شده است."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"شما در حال تنظیم یک چاپگر ویندوز لیزر OKI هستید. این چاپگرها از یک پایان‌نامه "
-"خیلی مخصوص برای ارتباطات Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کنند Ùˆ به همین دلیل آنها Ùقط وقتی Ú©Ù‡ به "
-"اولین درگاه موازی وصل شده باشد کار می‌کنند. وقتی که چاپگر شما به درگاه دیگری "
-"یا به یک کارگزار چاپ وصل شده باشد Ù„Ø·ÙØ§Ù‹ قبل از چاپ یک ØµÙØ­Ù‡ آزمایشی چاپگر را "
-"به اولین درگاه موازی وصل نمایید. در غیر این صورت چاپگر کار نخواهد کرد. نوع "
-"وصل شما توسط راه‌انداز نادیده Ú¯Ø±ÙØªÙ‡ خواهد شد."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr "نسل پردازه‌گر cpu (eg: 8 for PentiumIII, ...)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detected"
-msgstr "Ú©Ø´Ù-خودکار شده"
-
-#: ../../standalone/drakpxe:1
-#, 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)."
-msgstr ""
-"شما در حال تنظیم رایانه‌ی خود برای نصب کارگزار PXE مانند یک کارگزار DHCP و \n"
-"یک کارگزار TFTP برای ساختن یک کارگزار نصب هستید. \n"
-"با آن قابلیت، رایانه‌های دیگر بر شبکه محلی شما قابل به نصب از طریق این رایانه "
-"مانند منبع خواهند شد. \n"
-"\n"
-"مطمئن شوید که دسترسی به شبکه/اینترنت خود را توسط drakconnect قبل از ادامه به "
-"جلو تنظیم کرده باشید. \n"
-"\n"
-"توجه: شما به یک کارت شبکه برای برپاسازی یک شبکه محلی احتیاج دارید."
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"OSS (Open Sound System) was the first sound API. It's an OS independent "
-"sound API (it's available on most UNIX(tm) systems) but it's a very basic "
-"and limited API.\n"
-"What's more, OSS drivers all reinvent the wheel.\n"
-"\n"
-"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
-"which\n"
-"supports quite a large range of ISA, USB and PCI cards.\n"
-"\n"
-"It also provides a much higher API than OSS.\n"
-"\n"
-"To use alsa, one can either use:\n"
-"- the old compatibility OSS api\n"
-"- the new ALSA api that provides many enhanced features but requires using "
-"the ALSA library.\n"
-msgstr ""
-"برنامه OSS (سیستم صوتی آزاد) اولین API صوتی بود. آن یک API صوتی غیر وابسته "
-"به سیستم عامل است (در بیشتر سیستم‌های یونیکس موجود می‌باشد) ولی آن یک API خیلی "
-"ساده و محدود می‌باشد. تمام راه‌انداز‌های OSS بازنویسی شده‌اند. \n"
-"\n"
-"برنامه ALSA (ساختار صوتی Ù¾ÛŒØ´Ø±ÙØªÙ‡ لینوکس) یک معماری تشکیل شده از بخش‌ها را "
-"دارا است که \n"
-"از یک گستره وسیعی از کارت‌های PCI ،USB و ISA حمایت می‌کند.\n"
-"\n"
-"آن همچنین یک API بالاتری از OSS عرضه می‌کند.\n"
-"\n"
-"برای Ø§Ø³ØªÙØ§Ø¯Ù‡ از alsa, شما می‌توانید یکی از دو روش زیر را انتخاب نمایید:\n"
-"- روش قدیمی همخوان با OSS api \n"
-"- ALSA api جدید که قابلیت‌های بهینه شده‌ی بسیاری را عرضه می‌دارد ولی با لزوم "
-"Ø§Ø³ØªÙØ§Ø¯Ù‡ از کتابخانه ALSA .\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"هیچ ÙØ¶Ø§ÛŒ آزاد برای Û± مگابایت تسمه آغازگری ! نصب ادامه پیدا خواهد کرد، ولی "
-"شما باید قسمت‌بندی تسمه آغازگری را در DiskDrake ایجاد نمایید."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
-msgstr ""
-"Ù„Ø·ÙØ§Ù‹ چاپگری را Ú©Ù‡ می‌خواهید برپاسازی کنید یا نام دستگاه/نام پرونده را در خط "
-"درون‌ریز وارد نمایید"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
-msgstr "امتناع"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
-msgstr "محلی"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"برنامه HardDrake یک حس‌گری Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± را اجرا می‌کند، Ùˆ بطور \n"
-"دلخواه Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± جدید/تغییر کرده را تنظیم می‌کند."
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr "ایجاد و قالب‌بندی پرونده %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
-msgstr "اگر به آری گذاشته شده، Ø§ÙØ²ÙˆØ¯Ù†/برداشتن پرونده‌های sgid را کنترل نمایید."
-
-#: ../../printer/printerdrake.pm:1
-#, 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"
-msgstr ""
-"چاپگر HP LaserJet 1000 باید firmware خودش را بعد از روشن شدن باردهی کند. "
-"بسته‌ی راه‌انداز ویندوز را از پایگاه وب HP بارگیری کرده (Ø«Ø§Ø¨Øªâ€ŒØ§ÙØ²Ø§Ø± روی سی دی "
-"چاپگر کار نمی‌کند) Ùˆ پرونده Ø«Ø§Ø¨Øªâ€ŒØ§ÙØ²Ø§Ø± را از آن بوسیله Ù†Ø§ÙØ´Ø±Ø¯Ù‡ کردن پرونده خود-"
-"استخراجی Ùˆ استخراج آن بوسیله‌ی برنامه 'unzip' Ø¯Ø±ÛŒØ§ÙØª Ùˆ بدنبال پرونده "
-"'sihp1000.img' بگردید. این پرونده را بدرون شاخه '/etc/printer' کپی نمایید. "
-"آن بوسیله‌ی دستنویس بارده‌گر خودکار در آنجا پیدا خواهد شد و هروقت چاپگر وصل و "
-"روشن شود باردهی خواهد شد.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "یک LVM موجود را برای اضاÙÙ‡ کردن به آن انتخاب نمایید"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "xfs restart"
-msgstr "راه‌اندازی مجدد xfs "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
-msgstr ""
-"چاپگر \"%s\" قبلا وجود دارد، \n"
-"آیا می‌خواهید تنظیم آن بازنگارش شود؟"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از پویشگران روی میزبان:"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
-msgstr "هیچ انتخاب"
-
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "هیچ قسمت‌بندی وجود ندارد"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Management \n"
-msgstr "مدیریت چاپگر \n"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "یابنده‌ی نام دامنه"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
-msgstr "کلید رمزی (دوباره)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
-msgstr "نام اشتراک Samba وجود ندارد!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
-msgstr "نصب نوع حقیقی انجام شد"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detection in progress"
-msgstr "شناسایی در جریان است"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "ساخت کل هسته -->"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "modem"
-msgstr " مودم"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "به %s خوش آمدید"
-
-#: ../../standalone/drakhelp:1
-#, 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"
-msgstr ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003 MandrakeSoft.\n"
-"این یک Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± آزاد بوده Ùˆ ممکن است تحت شرایط GNU GPL انتشار مجدد گردد.\n"
-"\n"
-"طرز Ø§Ø³ØªÙØ§Ø¯Ù‡: \n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Ù„Ø·ÙØ§Ù‹ دیسکچه بخش‌های بروزسازی را در دستگاه %s بگذارید"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
-msgstr "تصویر آغازگری"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr ""
-"چاپگر بدنبال آمده\n"
-"\n"
-"%s%s\n"
-"مستقیماً به سیستم شما وصل شده است"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "اشتراک چاپگر بر میزبان‌ها/شبکه‌ها:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
-msgstr ""
-"\n"
-"ÙØ±Ù…ان \"%s\"همچنین به شما اجازه‌ی تغییر تنظیم‌های گزینه را برای یک کار چاپ "
-"مشخص می‌دهد. Ùقط تنظیم‌ها مورد نظرتان را به خط ÙØ±Ù…ان اضاÙÙ‡ نمایید، line, e. g. "
-"\"%s <file>\". "
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "DrakClock"
-msgstr "Drakbackup"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without them. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"در بعضی موارد، راه‌انداز %s نیاز به اطلاعات اضاÙÙ‡ برای درست کار کردن دارد، \n"
-"هرچند که آن معمولاً بدون آنها نیز بخوبی کار می‌کند. آیا می‌خواهید گزینه‌های \n"
-"اضاÙÙ‡ را مشخص کنید یا به راه‌انداز اجازه می‌دهید تا ماشین شما را برای "
-"اطلاعات \n"
-"مورد نیاز خود بگردد؟ بعضی وقتها، این جستجو باعث ایست رایانه خواهد شد، ولی \n"
-"آن نبایستی باعث هیچ خرابی شود. "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "برچسب CD درست نیست. برچسب دیسک %s می‌باشد."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
-msgstr ""
-"\n"
-"- شبح (%s) از طریق:\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "کوبا"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr "اكتبر"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belize"
-msgstr "بلایز"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Searching for new printers..."
-msgstr "در حال جستجو برای چاپگرهای جدید..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
-msgstr "(چند-نشستی)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
-msgstr "پایان زمان آغازگری هسته"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
-"Your card is supported by XFree %s which may have a better support in 2D."
-msgstr ""
-"کارت شما می‌تواند حمایت شتاب‌دهنده‌ی Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± ۳بعدی را داشته ولی Ùقط با XFree %"
-"s.\n"
-"کارت شما بوسیله‌ی XFree %s حمایت شده است که ممکن است که حمایت بهتری در ۲بعدی "
-"داشته باشد."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Activate/Disable daily security check."
-msgstr " ÙØ¹Ø§Ù„/غیر ÙØ¹Ø§Ù„ کردن کنترل امنیت روزانه."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-R.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
-msgstr "ÙØ¹Ø§Ù„/ØºÛŒØ±â€ŒÙØ¹Ø§Ù„ کردن libsafe اگر libsafe در سیستم ÛŒØ§ÙØª شود"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "جادوگر قسمت‌بندی DrakX راه حل‌های بدنبال را ÛŒØ§ÙØª:"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "مجارستانی"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
-msgstr ""
-"عرضه کننده خود را انتخاب نمایید. \n"
-"اگر وجود ندارد، Unlisted انتخاب کنید. "
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "همزمان‌سازی زمان خودکار (با Ø§Ø³ØªÙØ§Ø¯Ù‡ از NTP)"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از قسمت‌بندی ویندوز من"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
-msgstr "۸ مگابایت"
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Server"
-msgstr "کارگزار LDAP "
-
-#: ../../services.pm:1
-#, 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."
-msgstr ""
-"حمایت PCMCIA معمولاً برای حمایت چیزهایی مانند کارت شبکه و مودم \n"
-"در رایانه همراه می‌باشد. آن تا تنظیم نشود شروع نخواهد شد بنابرین نصب \n"
-"آن بر ماشین‌هایی که به آن احتیاج ندارند امن می‌باشد."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Choose your country"
-msgstr "کشور خود را انتخاب نمایید"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-msgstr ""
-"\n"
-"- پرونده‌های سیستم:\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
-msgstr "ابزار ماشین تکی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Where"
-msgstr "کجا"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "but not matching"
-msgstr "ولی تطبیق نمی‌کند"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
-msgstr ""
-"در اینجا می‌توانید یک راه‌انداز جایگزین را (OSS یا ALSA) برای کارت صدای خود (%"
-"s) انتخاب نمایید."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "در حال تنظیم کارت‌های PCMCIA ..."
-
-#: ../../common.pm:1
-#, c-format
-msgid "kdesu missing"
-msgstr "kdesu وجود ندارد"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s یک نام کاربر لازم دارد...\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
-msgstr "کلید رمزی"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
-msgstr ""
-"این تنظیمات بعد از نصب ÙØ¹Ø§Ù„ خواهد شد.\n"
-"در طول نصب، شما باید از کلید راست مهار (کنترل) برای \n"
-"تعویض بین طرحهای Ù…Ø®ØªÙ„Ù ØµÙØ­Ù‡â€ŒÚ©Ù„ید Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "جزایر کریسمس"
-
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Automatic"
-msgstr "آی پی خودکار"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "نصب بارگزار آغازگر شکست خورد. خطای بدنبال آمده رخ داد:"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "EIDE/SCSI channel"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Set this printer as the default"
-msgstr "این چاپگر مانند Ù¾ÛŒØ´â€ŒÙØ±Ø¶ تایین شود"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "بررسی نمایید که %s مسیر درست می‌باشد"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "قسمت‌بندی %s"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Paranoid"
-msgstr "خیالاتی"
-
-#: ../../any.pm:1
-#, c-format
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- حذ٠کاربر"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Location on the bus"
-msgstr "مکان بر گذرگاه"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No printer found!"
-msgstr "هیچ چاپگری پیدا نشد!"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
-msgstr "نام ÙØ±ÙˆØ´Ù†Ø¯Ù‡ دستگاه"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Erase entire disk"
-msgstr "تمام دیسک پاک شود"
-
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Default)"
-msgstr "(Ù¾ÛŒØ´â€ŒÙØ±Ø¶)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Automatic reconfiguration"
-msgstr "تنظیم مجدد خودکار"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Receiving Speed:"
-msgstr "سرعت Ø¯Ø±ÛŒØ§ÙØª:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
-msgstr "جزایر ترک‌ها و کایکو‌ها"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Ip"
-msgstr "هیچ Ip"
-
-#: ../../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
-#, c-format
-msgid "<- Previous"
-msgstr "<- قبلی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Transfer Now"
-msgstr "انتقال اکنون"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password and network authentication methods"
-msgstr "گذاردن گذرواژه مدیر و روش‌های اعتبارسنجی شبکه"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "تعویض بین ترتیب گروهی و ساده"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Themes"
-msgstr "تم‌ها"
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "گزینه‌ها: %s"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"شما در حال حاضر از %s مانند مدیر آغازگری خود Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کنید. \n"
-"بر روی تنظیم برای شروع جادوگر برپاسازی کلیک نمایید."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "تنظیمات چاپگر ویندوز OKI "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
-msgstr "سنت هلن"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Parallel port #%s"
-msgstr "درگاه موازی #%s"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Security Level"
-msgstr "سطح امنیتی"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
-"بعضی از مراحل تکمیل نشده است.\n"
-"\n"
-"واقعاً می‌خواهید خارج شوید؟"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "سودان"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "لهستانی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
-msgstr "سوریه"
-
-#: ../../printer/printerdrake.pm:1
-#, 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?"
-msgstr ""
-"ایا چاپگر شما یک دستگاه چند-عملیاتی از HP یا Sony (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 با پویشگر, DeskJet 450, Sony IJP-V100), یک HP "
-"PhotoSmart یا یک HP LaserJet 2200 می‌باشید؟"
-
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
-#, 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"
-msgstr ""
-"به انتخاب‌گر سیستم عامل %s خوش آمدید!\n"
-"\n"
-"یک سیستم عامل را از لیست بالا انتخاب کرده\n"
-"یا %d ثانیه برای آغازگری Ù¾ÛŒØ´â€ŒÙØ±Ø¶ صبر نمایید.\n"
-"\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "پرتغالی"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
-msgstr "نام پرونده Loopback: "
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "نشانی کارگزار DNS باید به شکل ۱.۲.۳.۴باشد"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Control key"
-msgstr "کلید کنترل چپ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
-msgstr "صربستان"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Newzealand"
-msgstr "زلاندنو"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
-msgstr "این شاخه باید درون سیستم پرونده ریشه باقی بماند"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
-msgstr "در طول شبکه"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
-msgstr "کلید CapsLock"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "نصب بارگزار آغازگر"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "انتخاب اندازه Ø­Ø§ÙØ¸Ù‡ کارت گراÙیک شما"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Enable/Disable crontab and at for users.\n"
-"\n"
-"Put allowed users in /etc/cron.allow and /etc/at.allow (see man at(1)\n"
-"and crontab(1))."
-msgstr ""
-"ÙØ¹Ø§Ù„/غیر ÙØ¹Ø§Ù„ کردن crontab Ùˆ at برای کاربران.\n"
-"\n"
-"کاربرهای مجاز را در /etc/cron.allow و /etc/at.allow بگذارید. \n"
-"(دستورالعمل at(1) و crontab(1) را مطالعه نمایید)."
-
-#: ../../standalone.pm:1
-#, 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."
-msgstr ""
-"[گزینه‌ها]\n"
-"برنامه زیرنظرگیری و ارتباط شبکه & اینترنت\n"
-"\n"
-"--واسط Ù¾ÛŒØ´â€ŒÙØ±Ø¶ : این واسط را بوسیله Ù¾ÛŒØ´â€ŒÙØ±Ø¶ نشان می‌دهد\n"
-"--ارتباط : ارتباط به اینترنت اگر قبلاً ارتباطی وجود ندارد\n"
-"--قطع ارتباط : قطع ارتباط از اینترنت اگر قبلاً ارتباط وجود دارد\n"
-"--اجبار : با Ø§Ø³ØªÙØ§Ø¯Ù‡ از (قطع)ارتباط : اجبار (قطع)ارتباط.\n"
-"--وضعیت : اگر ارتباط برقرار است ۱ وگرنه ۰ برگشت داده شده، سپس خارج شود.\n"
-"--ساکت : بدون تداخل با کاربر. با (قطع)ارتباط Ø§Ø³ØªÙØ§Ø¯Ù‡ شود."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
-msgstr "استخر نشانی آی پی متغیر:"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "نام LVM؟"
-
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "بعضی دستگاه‌ها در رده‌ی سخت Ø§ÙØ²Ø§Ø± \"%s\" برداشته شده‌اند:\n"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "واسط‌های %s %s ÛŒØ§ÙØª شد"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Install"
-msgstr "بعد از نصب"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The internal domain name"
-msgstr "نام دامنه داخلی"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ کارت"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone.pm:1
-#, 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."
-msgstr ""
-"برنامه‌ی زیرنظرگیری و واردات قلم نگارش \n"
-"--واردات_ویندوز : واردات از تمام قسمت‌بندی‌های موجود ویندوز.\n"
-"--قلم‌هاـxls : همه قلم‌هایی که قبلاً از xls وجود دارد را نشان می‌دهد\n"
-"--قوی : تایید قوی قلم.\n"
-"--نصب : پذیرش هر پرونده قلم و هر شاخه.\n"
-"--نصب‌برداری : نصب‌برداری هر قلم یا شاخه قلم.\n"
-"--جایگزینی : جایگزینی همه قلم‌هایی که قبلاً وجود دارند\n"
-"--برنامه : ØµÙØ± هیچ برنامه.\n"
-" : 1 همه برنامه موجود حمایت شده.\n"
-" : نام_برنامه مانند staroffice \n"
-" so برای : Ùˆ gs برای ghostscript Ùقط برای این یکی."
-
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr ""
-"انتخاب دستگاه دیسکچه‌ای Ú©Ù‡ می‌خواهید برای ساختن دیسک آغازگری Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr "LILO با Ùهرست متنی"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
-msgstr ""
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "همه چیز (بدون دیوار‌آتش)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
-msgstr "شما باید یک تصویر هسته را مشخص نمایید"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
-msgstr "، دستگاه چند-عاملی بر USB"
-
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Do"
-msgstr "انجام"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "در حال تماس با آینه برای Ú¯Ø±ÙØªÙ† لیست بسته‌های موجود..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "لیتوانی AZERTY (قدیمی)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "برزیلی (ABNT-2)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
-msgstr "نشانی آی پی میزبان/شبکه"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
-msgstr ""
-"پایه y گوشه چپ بالای \n"
-"پیشخوان Ù¾ÛŒØ´Ø±ÙØª"
-
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System installation"
-msgstr "نصب سیستم"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
-msgstr "سنت وینسنت و گرنادینز"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid reboot by the console user."
-msgstr "اجازه/مانع آغازگری مجدد توسط کاربر کنسول."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Open"
-msgstr "/پرونده/_بازکردن"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "مکان پرونده‌ی auto_install.cfg "
-
-#: ../../any.pm:1
-#, c-format
-msgid "Open Firmware Delay"
-msgstr "بازگردن تاخیر Ø«Ø§Ø¨Øªâ€ŒØ§ÙØ²Ø§Ø±"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
-msgstr "مجارستان"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "New Zealand"
-msgstr "زلاندنو"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Color configuration"
-msgstr "تنظیمات رنگ"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"مقداری محدودیت قبلاً وجود دارد، و کنترل های خودکار بیشتری هر شب اجرا می‌شود."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "please choose the date to restore"
-msgstr "Ù„Ø·ÙØ§Ù‹ تاریخ را برای بازسازی انتخاب نمایید"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
-msgstr "هلند انتیلز"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr "تعویض از ext2 به ext3"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "مرور به انبار ذخیره‌ی جدید"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"به جادوگر برپاسازی چاپگر خوش آمدید \n"
-"\n"
-"این جادوگر به شما اجازه می‌دهد که چاپگرهای محلی یا از راه دور که از این ماشین "
-"Ùˆ ماشین‌های دیگر در این شبکه Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شوند را نصب نمایید.\n"
-"\n"
-"آن از شما اطلاعات لازمه را برای برپاسازی می‌پرسد و راه‌اندازهای چاپگرهای "
-"موجود، گزینه‌های راه‌انداز و انواع ارتباط چاپگر را در دسترس شما قرار می‌دهد."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and %d unknown printers"
-msgstr "و %d چاپگرهای ناشناس"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
-"چیپ‌های اینتل پنتیوم تولید شده در اوایل در پردازه‌گر نقطه‌ی اعشاری خود دارای یک "
-"اشکال بودند که لازم به دقت هنگام اجرای یک تقسیم نقطه اعشاری (FDIV) داشتند."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-"بیش از سهمیه ذخیره‌ی پشتیبان!\n"
-"%d مگابایت Ø§Ø³ØªÙØ§Ø¯Ù‡ شده در مقابل %d مگابایت در نظر Ú¯Ø±ÙØªÙ‡ شده."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-"هیچ کارت PCI برای شبکه ISDN ÛŒØ§ÙØª نشد. Ù„Ø·ÙØ§Ù‹ یکی را در ØµÙØ­Ù‡â€ŒÛŒ بعدی انتخاب "
-"نمایید."
-
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
-msgstr "گیگابایت"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
-msgstr "Ù„Ø·ÙØ§ یک نام کاربر بدهید"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
-msgstr "ÙØ¹Ø§Ù„ سازی آغازگری سی دی؟"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Simply reboot"
-msgstr ""
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid " enter `void' for void entry"
-msgstr " برای ورودی `void' Ù„Ø·ÙØ§Ù‹ void را وارد نمایید"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr ""
-"ذخیره‌های پشتیبان بر رسانه غیر قابل سوار سازی - از پوشه برای بازسازی Ø§Ø³ØªÙØ§Ø¯Ù‡ "
-"نمایید"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
-msgstr "ژانویه"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password history length"
-msgstr "طول تاریخچه گذرواژه"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Winmodem connection"
-msgstr "ارتباط مودم ویندوزی"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"تبریکات، چاپگر شما اکنون نصب و تنظیم شده است!\n"
-"\n"
-"شما می‌توانید با Ø§Ø³ØªÙØ§Ø¯Ù‡ از ÙØ±Ù…ان \"چاپ\" برنامه‌ی خود (معمولاً در Ùهرست "
-"\"پرونده\" ) چاپ نمایید.\n"
-"\n"
-"اگر می‌خواهید یک چاپگر را اضاÙه، بردارید یا بازنامی کنید، یا اگر Ù…ÛŒ خواهید "
-"تنظیم های گزینه Ù¾ÛŒØ´â€ŒÙØ±Ø¶ خود را تغییر دهید (سینی کاغذ، Ú©ÛŒÙیت چاپ، ...)ØŒ \"چاپگر"
-"\" را در \"Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø±\" در قسمت مرکز کنترل مان‌درایک انتخاب نمایید."
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "اکنون می‌توانید xawtv را اجرا نمایید (زیر ویندو X!) !\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr ""
-"ÙØ¶Ø§ÛŒ کاÙÛŒ Ø­Ø§ÙØ¸Ù‡ مبادله برای تکمیل نصب وجود ندارد، Ù„Ø·ÙØ§Ù‹ قدری اضاÙÙ‡ نمایید"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "%s on %s"
-msgstr "%s بر %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid remote root login."
-msgstr "اجازه/مانع ورود از راه دور مدیر."
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"گنو/لینوکس زمان را بر اساس GMT (Greenwich Mean Time) اداره کرده و آن را به "
-"زمان محلی \n"
-"طبق منطقه‌ی زمانی که شما انتخاب نموده‌اید برمی‌گرداند. اگر ساعت روی "
-"کارت‌الکترونیکی مادر بر \n"
-"اساس زمان محلی گذاشته شده باشد، می‌توانید این را از طریق انتخاب نکردن \"%s\" "
-"ØºÛŒØ±ÙØ¹Ø§Ù„ \n"
-"نمایید، که به گنو/لینوکس اجازه می‌دهد که بداند که ساعت سیستم شما و ساعت "
-"Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± در یک\n"
-" منطقه‌زمانی قرار دارند. دانستن این وقتی که ماشین شما سیستم عامل دیکری نظیر "
-"ویندوز را میزبان\n"
-" باشد Ù…Ùید می‌باشد. \n"
-"\n"
-"گزینه‌ی \"%s\" ساعت را از طریق ارتباط به کارگزار از راه دور زمان بر اینترنت "
-"میزان می‌کند. \n"
-"برای کار کردن این قابلیت شما باید یک ارتباط اینترنت ÙØ¹Ø§Ù„ داشته باشید. بهتر "
-"است یک کارگزار \n"
-"زمان نزدیک به خود را انتخاب نمایید. این گزینه Ø§ØªÙØ§Ù‚اً یک کارگزار زمان را "
-"می‌تواند بوسیله‌ی \n"
-"ماشین های دیگر روی شبکه شما نیز Ø§Ø³ØªÙØ§Ø¯Ù‡ شود را نصب می‌کند."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
-msgstr "نمی‌توان پرونده‌ی ثبت را ایجاد نمود!"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "زمان منطقه شما کدام است؟"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از پرونده‌های .backupignore"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
-msgstr "گینه"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "این سیستم اکنون با اینترنت ارتباط دارد."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "جزایر جورجیو و ساندیویچ جنوبی"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "ژاپن (پخش همگانی)"
-
-#: ../../help.pm:1
-#, 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 ""
-"نمایشگر\n"
-"\n"
-" برنامه نصب‌گر معمولا بطور خودکار نمایشگر وصل شده به ماشین شما را \n"
-"شناسایی وتنظیم خواهد کرد. اگر درست نبود، شما می‌توانید از این لیست\n"
-"نمایشگری که شما به رایانه‌ی خود وصل کرده‌اید را انتخاب نمایید. "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "موزامبیک"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "شمایل"
-
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Kill those programs"
-msgstr "دستیابی به برنامه‌های X"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Ù„Ø·ÙØ§Ù‹ آنچه را Ú©Ù‡ می‌خواهید ذخیره پشتیبانی کنید انتخاب نمایید"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "۲۵۶ رنگ (۸ بیت)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "خواندن-نوشتن"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "اندازه: %s\n"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Hostname: "
-msgstr "نام میزبان:"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a rule"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù† یک قاعده"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "اندازه‌ی تکه %s\n"
-
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
-msgstr "آینده لینوکس را بسازید!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printer"
-msgstr "چاپگر محلی"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "خطای دستیابی به دیسکچه، نمی‌توان دستگاه %s را سوار کرد؟"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ADSL connection"
-msgstr "ارتباط ADSL "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "بدون تنظیمات، Ù„Ø·ÙØ§Ù‹ جادوگر یا Ù¾ÛŒØ´Ø±ÙØªÙ‡ را کلیک نمایید.\n"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Error!"
-msgstr "خطا!"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "cable connection detected"
-msgstr "ارتباط کابلی شناسایی شد"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "اجازه انتقال %s به %s داده نشد"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/ـگزارش اشکال"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
-msgstr "دومینیک"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "تغییر اندازه"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "وضوح نمایش: %s\n"
-
-#: ../../install2.pm:1
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"نمی‌توان به بخش‌های هسته مربوط به هسته‌ی شما (پرونده %s وجود ندارد) دسترسی پیدا "
-"کرد، این معمولاً بدین معنی است که دیسک‌نرم آغازگر شما با رسانه‌ی نصب همزمانی "
-"ندارد (Ù„Ø·ÙØ§Ù‹ یک دیسک آغازگر جدید ایجاد نمایید)"
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Ù„Ø·ÙØ§Ù‹ درگاه درست را انتخاب نمایید، برای مثال، درگاه \"COM1\" در ویندوز \n"
-"بنام \"ttyS0\" در لینوکس خوانده می‌شود."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "بسته‌های ذیل برداشته خواهند شد"
-
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr "ارتباط به اینترنت"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از قسمت‌بندی‌های موجود"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "کانادایی (Quebec)"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "دستگاه موش: %s\n"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "انتخاب مجدد قلم‌های نگارش درست"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"گزینه‌ها \n"
-"\n"
-" در اینجا شما می‌توانید انتخاب کنید که آیا می‌خواهید رایانه شما بطور خودکار "
-"به \n"
-"یک واسط تصویری در آغاز عوض شود. روشن است که شما می‌خواهید که \"%s\" \n"
-"را کنترل کرده اگر ماشین شما مانند یک کارگزار باید عمل کند، یا اگر شما در "
-"تنظیم \n"
-"نمایشگر خود موÙÙ‚ نبوده‌اید."
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert Corporate"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
-msgstr ""
-" [همه چیز]\n"
-" XFdrake [--noauto] نمایشگر\n"
-" XFdrake وضوح"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Write protection"
-msgstr "Ø­ÙØ§Ø¸Øª نگارش"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "You've not selected any font"
-msgstr "شما هیچ قلمی را انتخاب نکرده‌اید"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Language"
-msgstr "زبان"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer model selection"
-msgstr "انتخاب مدل چاپگر"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr ""
-"بعد ار تغییر نوع قسمت‌بندی %sØŒ تمام داده‌ها بر این قسمت‌بندی ار دست خواهند Ø±ÙØª"
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "ISDN adapters"
-msgstr "کارت ISDN "
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d ثانیه"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "یک دیسکچه خالی را در دستگاه %s داخل نمایید"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "یک نشانی URI معتبر باید وارد شود!"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr "واسط \"%s\" ÛŒØ§ÙØª شد، می‌خواهید از آن Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید؟"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
-msgstr "تنظیم مجدد واسط و کارگزار DHCP "
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound configuration"
-msgstr "تنظیمات صدا"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
-msgstr "ØµÙØ­Ù‡â€ŒÛŒ آزمایشی عکس"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "قسمت‌بندی اختصاصی دیسک"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "نام چاپگر: و توضیحات را وارد نمایید"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"چاپگرهای بدنبال آمده\n"
-"\n"
-"%s%s\n"
-"مستقیماً به سیستم شما وصل شده است"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "You don't have any winmodem"
-msgstr "شما هیچ winmodem ندارید"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: %s"
-msgstr "نوع: %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "اسلوواکی (QWERTY)"
-
-#: ../../standalone/drakbackup:1
-#, 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."
-msgstr ""
-"این باید یک لیست جداشونده با ویرگول کاربرهای محلی یا نشانی‌های پست الکترونیکی "
-"Ú©Ù‡ شما می‌خواهید نتایج ذخیره‌های پشتیبان به آنها ÙØ±Ø³ØªØ§Ø¯Ù‡ شود باشد. شما به یک "
-"تنظیم انتقال پست کارآرا بر روی سیستم خود احتیاج خواهید داشت."
-
-#: ../../standalone/draksound:1
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "هیچ کارت صدا کش٠نشد!"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "درگاه موش"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
-msgstr "کنترل حساب‌های غیر امن"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-"احتیاج به شروع مجدد مدیر نمایش برای ÙØ¹Ø§Ù„ شدن تغییرات وجود دارد.\n"
-"(شروع مجدد سرویس dm - در کنسول) "
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Ftp Server"
-msgstr "کارگزار FTP "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr "اوگاندا"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
-msgstr "تبدیل قلم‌های %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "نوع گذرگاهی که موش شما به آن وصل شده است"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"مانند پیش‌نمایش، برنامه‌ی خلاصه‌ای از اطلاعات خود را درباره‌ی سیستم شما را \n"
-"عرضه می‌دارد. بستگی به Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±Ù‡Ø§ÛŒ نصب شده، شما می‌توانید بعضی یا همه "
-"ورودی‌های \n"
-"بدنبال آمده را دارا باشید. هر ورودی از عنصری که باید تنظیمات شود و یک "
-"خلاصه‌ی \n"
-"کوتاه تنظیمات کنونی بدنبال آمده آن ساخته شده است. بر تکمه‌ی مربوط \"%s\" \n"
-"برای تغییر آن کلیک نمایید. \n"
-"\n"
-" * \"%s\": تنظیمات نقشه ØµÙØ­Ù‡â€ŒÚ©Ù„ید کنونی را کنترل کرده Ùˆ آن را اگر لازم است "
-"تغییر\n"
-"دهید.\n"
-"\n"
-" * \"%s\": انتخاب کشور کنونی را کنترل نمایید. اگر شما در این کشور نیستید، بر "
-"تکمه‌ی\n"
-"\"%s\" کلیک کرده و یکی دیگر را انتخاب نمایید. اگر کشور شما در اولین لیست "
-"نشان داده\n"
-"شده نمی‌باشد، بر تکمه‌ی \"%s\" برای Ø¯Ø±ÛŒØ§ÙØª لیست کامل کشورها کلیک نمایید.\n"
-"\n"
-" * \"%s\": بوسیله Ù¾ÛŒØ´â€ŒÙØ±Ø¶ØŒ DrakX منطقه زمانی شما را بر اساس کشوری را Ú©Ù‡\n"
-"انتخاب کرده‌اید استنتاج می‌کند. شما می‌توانید بر تکمه \"%s\" اگر این صحیح "
-"نمی‌باشد\n"
-"کلیک نمایید.\n"
-"\n"
-" * \"%s\": تنظیمات موش کنونی را کنترل کنید و اگر لازم است آن را با کلیک بر "
-"تکمه تغییر\n"
-"دهید.\n"
-"\n"
-" * \"%s\": کلیک کردن بر تکمه \"%s\" جادوگر تنظیمات چاپگر را باز خواهد کرد\n"
-"به ÙØµÙ„ مربوط ``راهنمای شروع'' برای اطلاعات بیشتر در چگونه یک چاپگر جدید را "
-"بر پاسازی\n"
-"کنیم مراجعه نمایید. ظاهر عرضه شده در آنجا شبیه به آن است که در طول نصب\n"
-"Ø§Ø³ØªÙØ§Ø¯Ù‡ شده است.\n"
-"\n"
-" * \"%s\": اگر یک کارت صدا بر سیستم شما شناسایی شده است، آن در اینجا نمایش\n"
-"داده می‌شود. اگر متوجه شدید که کارت صدای نشان داده شده آن نیست که واقعاً \n"
-"بر سیستم شما وجود دارد می‌توانید بر آن تکمه برای انتخاب راه‌انداز دیگری کلیک "
-"نمایید.\n"
-"\n"
-" * \"%s\": بوسیله Ù¾ÛŒØ´â€ŒÙØ±Ø¶, DrakX وضوح واسط تصویری شما را \n"
-"\"800x600\" یا \"1024x768\" تنظیم میکند. اگر آن برای شما مناسب نمی‌باشد، \n"
-"برای تنظیم واسط تصویری خود بر \"%s\" کلیک نمایید.\n"
-"\n"
-" * \"%s\": اگر یک کارت TV بر سیستم شما شناسایی شده باشد، آن در اینجا نشان "
-"داده می‌شود.\n"
-"اگر شما یک کارت TV داشته ولی شناسایی نشده، بر \"%s\" برای تلاش به تنظیم \n"
-"دستی آن کلیک نمایید.\n"
-"\n"
-" * \"%s\": اگر یک کارت ISDN بر سیستم شما شناسایی شده باشد, آن در اینجا نشان "
-"داده\n"
-"خواهد شد. شما می‌توانید با کلیک بر \"%s\" اجزای مرتبط با کارت را تغییر دهید.\n"
-"\n"
-" * \"%s\": اگر می‌خواهید دسترسی به اینترنت یا به شبکه محلی خود را اکنون تنظیم "
-"نمایید\n"
-"\n"
-" * \"%s\": این ورودی به شما اجازه‌ی تعری٠مجدد سطح امنیت را که در مرحله‌ی "
-"پیشین \n"
-"تایین شده را می‌دهد.\n"
-"\n"
-" * \"%s\": اگر شما طرحی برای ارتباط ماشین خود به اینترنت دارید, Ùکر خوبی "
-"است\n"
-"Ú©Ù‡ رایانه خود را از رسوخ دیگران بوسیله برپاسازی یک دیوارآتش Ø­ÙØ§Ø¸Øª نمایید. به "
-"ÙØµÙ„\n"
-"مربوط ``راهنمای شروع'' برای تشریحات درباره تنطیم‌های دیوارآتش مراجعه نمایید.\n"
-"\n"
-" * \"%s\": اگر می‌خواهید تنظیمات بارگزار آغازگر را تغییر دهید, آن تکمه را "
-"کلیک کنید\n"
-"این بایستی برای کاربران Ù¾ÛŒØ´Ø±ÙØªÙ‡ رزرو شود.\n"
-"\n"
-" * \"%s\": در اینجا شما قادر خواهید بود سرویس‌هایی را که بر ماشین شما اجرا "
-"خواهند شد\n"
-"را میزان کنید. اگر می‌خواهید از این ماشین مانند یک کارگزار Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید Ùکر "
-"خوبی است که\n"
-"این برپاسازی را مرور نمایید."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr "کوموروس"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "May"
-msgstr "مه"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yaboot mode"
-msgstr "حالت Yaboot "
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "موش معمولی ۳ تکمه‌ای"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
-msgstr "ایالات متحده آمریکا (کابل)"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
-msgstr ""
-"نمی‌توان LiLo را مجدداً پرتاب نمود! \n"
-"در خط ÙØ±Ù…ان \"lilo\" را مانند مدیر سیستم برای تکمیل نصب تم LiLo پرتاب نمایید."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select another media to restore from"
-msgstr "یک رسانه‌ی دیگر را برای بازسازی از آن انتخاب نمایید"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Software Manager"
-msgstr "مدیر Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø±"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
-msgstr "ارائه-مجدد"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD in place - continue."
-msgstr "سی دی در محل خود - ادامه."
-
-#: ../../common.pm:1
-#, c-format
-msgid "KB"
-msgstr "کیلو‌بایت"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Network & Internet"
-msgstr "شبکه و اینترنت"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "لیتوانیایی \"phonetic\" QWERTY"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Net Boot Images"
-msgstr "تصاویر آغازگری شبکه"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "اشتراک پویشگرهای محلی"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "وارسی Plug'n Play شکست خورد. Ù„Ø·ÙØ§Ù‹ نمایشگر درست را انتخاب نمایید"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Detect again USB key"
-msgstr ""
-
-#: ../../services.pm:1
-#, c-format
-msgid "Services and deamons"
-msgstr "سرویس‌ها و شبح‌ها"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name missing!"
-msgstr "نام میزبان از راه دور وجود ندارد!"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "with /usr"
-msgstr "با /کاربر"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Network"
-msgstr "شبکه"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
-"Ú©Ø´Ù-خودکار چاپگرهای وصل شده به ماشین‌هایی Ú©Ù‡ ویندوز Ù…Ø§ÛŒÚ©Ø±ÙˆØ³Ø§ÙØª را می‌رانند"
-
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "این گذرواژه خیلی ساده است"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "اطاعت Chkconfig از قواعد msec "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "اسلوواکی (QWERTZ)"
-
-#: ../advertising/06-development.pl:1
-#, 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."
-msgstr ""
-"تغییر و برنامه نویسی در زبان های گوناگون مانند Perl, Python, C و C++ هرگز به "
-"این سادگی نبوده است این بخاطر وجود gcc ۳ گنو و بهترین محیط‌های برنامه‌نویسی "
-"منبع آزاد."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No devices found"
-msgstr "هیچ دستگاهی ÛŒØ§ÙØª نشد"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "حقیقتاً حداقل نصب (مخصوصاً بدون urpmi)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use daemon"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از شبح"
-
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "اعتبارسنجی"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù† این چاپگر به Star Office/OpenOffice.org/GIMP"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "کارگزارهای اضاÙه‌ی CUPS: "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
-msgstr ""
-"یکی از چاپگرهای Ú©Ø´Ù-خودکار شده را از لیست انتخاب کرده یا نام میزبان یا Ø¢ÛŒ Ù¾ÛŒ "
-"Ùˆ شماره‌ی درگاه دلخواه (Ù¾ÛŒØ´â€ŒÙØ±Ø¶ Û¹Û±Û°Û° است) را در محوطه‌ی درون‌ریز وارد نمایید."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr "کجا می‌خواهید %s را سوارسازی کنید؟"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "الجزایر"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network"
-msgstr "بازسازی از طریق شبکه"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "اندازه‌ی-Initrd"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"در صورتی که کارگزارهای گوناگونی برای کارت شما وجود دارند، با یا بدون \n"
-"شتاب دهنده‌ی ۳ بعدی ، از شما برای انتخاب مناسب‌ترین کارگزار سوال \n"
-"خواهد شد. "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tذخیره‌ها از tar Ùˆ gzip Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کنند\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set as default"
-msgstr "تعیین مانند Ù¾ÛŒØ´â€ŒÙØ±Ø¶"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "۲ مگابایت"
-
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on this machine"
-msgstr "تنظیم شده بر این ماشین"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "هر دو کلیدهای کنترل بطور همزمان"
-
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - این اهنما را نشان می‌دهد \n"
-
-#: ../../standalone.pm:1
-#, 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"
-msgstr ""
-"[گزینه]...\n"
-" --بدون-تایید اولین تایید در حالت بروزسازی مان‌درایک سوال "
-"نشود\n"
-" --بدون-تصدیق-rpm امضاهای بسته‌ها تصدیق نشوند\n"
-" --تغییر ثبت-اول نمایش تغییر ثبت پیش از لیست پرونده در پنجره‌ی "
-"تشریحی \n"
-" --پیوست-همه-rpmnew تقاضا برای پیوست همه پرونده‌های .rpmnew/.rpmsave ÛŒØ§ÙØª "
-"شده"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "گذاردن چاپگر Ù¾ÛŒØ´â€ŒÙØ±Ø¶..."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "واسط %s (با Ø§Ø³ØªÙØ§Ø¯Ù‡ از %s)"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Generating preview ..."
-msgstr "تولید پیش‌نمایش..."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
-msgstr ""
-"ÙØ±Ú©Ø§Ù†Ø³ باید پسوند k, M یا G (برای مثال، \"2.46G\" برای ÙØ±Ú©Ø§Ù†Ø³ 2.46 GHz)ØŒ یا "
-"به قدر کاÙÛŒ '0' (ØµÙØ±) اضاÙÙ‡ نمایید."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ignore"
-msgstr "نادیده Ú¯Ø±ÙØªÙ†"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Allow/Forbid X connections:\n"
-"\n"
-"- ALL (all connections are allowed),\n"
-"\n"
-"- LOCAL (only connection from local machine),\n"
-"\n"
-"- NONE (no connection)."
-msgstr ""
-"اجازه/تحریم ارتباطات X:\n"
-"\n"
-"- همه (همه ارتباطات مجاز می‌باشند),\n"
-"\n"
-"- محلی (Ùقط ارتباط از ماشین محلی)\n"
-"- هیچ (هیچ ارتباط)."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr "دستگاه چند-عملیاتی بر درگاه موازی #%s"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "سری"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
-msgstr "DVD-ROM"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "گرجستانی (\"لاتین\" طرح)"
-
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
-msgstr "بهترین‌ها را با شرکای تاکتیکی لینوکس مان‌درایک Ø¯Ø±ÛŒØ§ÙØª نمایید "
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"شما اکنون ممکن است گزینه‌ها را به بخش %s عرضه کنید. \n"
-"توجه کنید که هر نشانی باید با پیشوند 0x مانند '0x123'وارد شود"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "کنیا"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "اول از ``Unmount'' Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing mtools packages..."
-msgstr "در حال نصب بسته‌های mtools ..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a root partition"
-msgstr "شما باید یک قسمت‌بندی ریشه را مشخص نمایید"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "first step creation"
-msgstr "اولین گام تولید"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "هر دو کلیدهای Ø´ÛŒÙØª بطور همزمان"
-
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr ""
-" --id <id_label> - ØµÙØ­Ù‡ راهنمای html Ú©Ù‡ به id_label ارجاع می‌کند را بار "
-"می‌کند\n"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select a scanner model"
-msgstr "انتخاب یک مدل پویشگر"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
-msgstr "پذیرش/امتناع پیغام‌های خطای bogus IPv4."
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - نسل جدید LPR"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "تنظیمات Drakbackup "
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr "ذخیره با نام..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr "کره (شمال)"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"این واسط هنوز تنظیم نشده است. \n"
-"جادوگر تنظیمات را در پنجره اصلی پرتاب نمایید"
-
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System configuration"
-msgstr "تنظیمات سیستم"
-
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "ورود خودکار"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin Password"
-msgstr "گذرواژه مدیریت دامنه"
-
-#: ../advertising/05-desktop.pl:1
-#, 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, ..."
-msgstr ""
-"رایانه‌ی خود را کاملاً به احتیاجات خود تطبیق دهید این با Ø§Ø³ØªÙØ§Ø¯Ù‡ از Û±Û± واسط "
-"کاربر لینوکس مان‌درایک که می‌توانند کاملاً تنظیم شوند: KDE 3.1, GNOME 2.2, "
-"Window Maker, ..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer ..."
-msgstr "تنظیم کردن چاپگر ..."
-
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, 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)"
-msgstr ""
-"برای اطمینان از صحت داده‌ها بعد از تغییر اندازه‌ی قسمت‌بندی(ها)، \n"
-"کنترل سیستم پرونده در آغازگری بعدی بدرون ویندوز اجرا خواهد شد"
-
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "مگابایت"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
-msgstr "اگر به آری گذارده شده، چندین کنترل بر بانک اطلاعات rpm اجرا می‌شود. "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr "جزایر ویرجین (بریتانیایی)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bermuda"
-msgstr "برمودا"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
-msgstr "اینجا را اگر مطمئن هستید کلیک نمایید. "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"هیچ پرونده‌ی تنظیمات پیدا نشد \n"
-"Ù„Ø·ÙØ§Ù‹ جادوگر یا Ù¾ÛŒØ´Ø±ÙØªÙ‡ را کلیک نمایید."
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"قسمت‌بندی‌های لینوکس شناسایی شده‌ی موجود بر دیسک شما در اینجا Ùهرست شده‌اند. \n"
-"شما می‌توانید انتخاب‌های انجام شده توسط جادوگر را نگهداشته چرا که آنها برای "
-"بیشتر نصب‌های \n"
-"عادی مناسب می‌باشند. اگر شما هر تغییری انجام دهید باید حداقل یک قسمت‌بندی ریشه "
-"(\"/\") را \n"
-"تایین نمایید. قسمت‌بندی خیلی Ú©ÙˆÚ†Ú© انتخاب نکنید وگرنه نخواهید توانست Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± "
-"کاÙÛŒ نصب کنید.\n"
-" اگر می‌خواهید داده‌های خود را بر یک قسمت‌بندی جداگانه ذخیره نمایید، شما مجبور "
-"خواهید بود که \n"
-"یک قسمت‌بندی \"/home\" را ایجاد کنید (Ùقط در صورتی Ú©Ù‡ شما بیش از یک قسمت‌بندی "
-"لینوکس \n"
-"داشته باشید). \n"
-"هر قسمت‌بندی بطریق بدنبال آمده Ùهرست شده است: \"نام\", \"ظرÙیت\". \n"
-"ساختار \"نام\" : \"نوع دستگاه دیسک\", \"شماره دستگاه دیسک\",\n"
-"\"شماره قسمت‌بندی\" (برای مثال، \"hda1\").\n"
-"\n"
-"\"نوع دستگاه دیسک\" اگر دستگاه دیسک یک IDE باشد یک \"hd\" است و\n"
-"اگر آن یک دستگاه دیسک SCSI باشد \"sd\" می‌باشد.\n"
-"\n"
-"\"شماره دستگاه دیسک\" همیشه یک Ø­Ø±Ù Ø§Ù„ÙØ¨Ø§ بعد از \"hd\" یا \"sd\" می‌باشد.\n"
-"برای دستگاه‌های سخت:\n"
-"\n"
-" * \"a\" بمعنی \"دستگاه سخت ارباب بر کنترل کننده اول IDE\";\n"
-"\n"
-" * \"b\" بمعنی \"دستگاه سخت برده بر کنترل کننده اول IDE\";\n"
-"\n"
-" * \"c\" بمعنی \"دستگاه سخت ارباب بر کنترل کننده دوم IDE\";\n"
-"\n"
-" * \"d\" بمعنی \"دستگاه سخت برده بر کنترل کننده دوم IDE\".\n"
-"\n"
-"در دستگاه‌های سخت SCSI یک \"a\" بمعنی \"کمترین شناسه SCSI\", یک \"b\" بمعنی\n"
-"\"دومین کمترین شناسه SCSI\"، و غیره."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Remove"
-msgstr "برداشتن"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr "لوسوتو"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr "utopia 25"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
-msgstr "هدایت کار بدرون یک ÙØ±Ù…ان"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "آیا پرونده‌ی loopback برداشته شود؟"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "کوته د'آی‌وری"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "نام جدید متغیر دستگاه تولید شده توسط devfs هسته‌ی مرکزی"
-
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "آری"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "از کدام پایان‌نامه می‌خواهید Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید؟"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Progress"
-msgstr "Ù¾ÛŒØ´Ø±ÙØª بازسازی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
-msgstr "استونی"
-
-#: ../../partition_table.pm:1
-#, 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."
-msgstr ""
-"شما یک سوراخ در جدول قسمت‌بندی دارید Ú©Ù‡ نمی‌توانم از آن Ø§Ø³ØªÙØ§Ø¯Ù‡ کنم. تنها راه "
-"حل، انتقال قسمت‌بندی‌های مقدم بنحوی است که آن سوراخ نزدیک به قسمت‌بندی‌های مضاع٠"
-"قرار داده شود. "
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr "میزبانی را که پویشگران محلی باید بر آن موجود باشند را انتخاب نمایید:"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Channel"
-msgstr "کانال"
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Add"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù†"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr "خطا هنگام ÙØ±Ø³ØªØ§Ø¯Ù† پست.\n"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "ØµÙØ­Ù‡â€ŒÚ©Ù„ید"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
-msgstr ""
-"سی دی با برچسب %s را بدرون دستگاه \n"
-"سی دی زیر نقطه سوارسازی /mnt/cdrom داخل کنید"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-"میزان باید پسوند k, M یا G (برای مثال, \"11M\" برای 11M) داشته باشد, یا بقدر "
-"کاÙÛŒ '0' (ØµÙØ±) اضاÙÙ‡ نمایید."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "ارتباطی را که می‌خواهید تنطیم کنید را انتخاب نمایید"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Ù„Ø·ÙØ§Ù‹ صبر کنید، در حال گذاردن سطح امنیتی..."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "در حال تنظیم دستگاه شبکه %s"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
-msgstr "ÙØ¹Ø§Ù„ شده"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
-msgstr ""
-"Ù„Ø·ÙØ§Ù‹ واسط شبکه‌ای را Ú©Ù‡ Ù…ÛŒ خواهید برای کارگزار dhcp Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید را انتخاب "
-"نمایید."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "در حال ÛŒØ§ÙØªÙ† بسته‌های برای ارتقا..."
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
-msgstr "نقطه‌ی سوارسازی:"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
-msgstr "تجزیه همه قلم‌های نگارش"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid direct root login."
-msgstr "اجازه/Ù†ÙÛŒ ثبت‌ورود مستقیم مدیر."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr "پذیریش/امتناع پخش همگانی انعکاس icmp ."
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
-msgstr "با X"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
-msgstr "تنظیمات چند-سر"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "No browser available! Please install one"
-msgstr "هیچ مرورگری موجود نمی‌باشد! Ù„Ø·ÙØ§Ù‹ یکی را نصب نمایید"
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"تغییرات نگه داشته شوند؟ \n"
-"تنظیمات کنونی در زیر می‌باشد:\n"
-"\n"
-"%s"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr ""
-"شما نمی‌توانید از ReiserFS برای قسمت‌بندی‌های کوچکتر از Û³Û² مگابایت Ø§Ø³ØªÙØ§Ø¯Ù‡ "
-"نمایید"
-
-#: ../../services.pm:1
-#, 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)."
-msgstr ""
-"پایان‌نامه‌ی rwho به کاربران از راه دور اجازه Ú¯Ø±ÙØªÙ† یک لیست از کاربرانی Ú©Ù‡ در "
-"یک ماشین که شبح rwho را اجرا می‌کند را می‌دهد (شبیه به finger)."
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "نام دامنه"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Sharing of local printers"
-msgstr "اشتراک چاپگرهای محلی"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
-msgstr "ÙØ¹Ø§Ù„/ØºÛŒØ±â€ŒÙØ¹Ø§Ù„ کردن libsafe اگر libsafe در سیستم ÛŒØ§ÙØª شود."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Available printers"
-msgstr "چاپگرهای موجود"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "NO"
-msgstr "خیر"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "خالی"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
-msgstr "عرض متن"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "در کجا می خواهید دستگاه %s را سوارسازی نمایید؟"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "اجاره دادن Ù¾ÛŒØ´â€ŒÙØ±Ø¶ (ثانیه)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-"ما اکنون ارتباط %s را تنظیم خواهیم کرد.\n"
-"\n"
-"\n"
-"تکمه‌ی \"%s\" را برای ادامه ÙØ´Ø§Ø± دهید."
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Interface \"%s\""
-msgstr "واسط‌ \"%s\""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "با مستندات پایه (پیشنهاد می‌شود!)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr "۱ تکمه"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
-msgstr ""
-"\n"
-"%d چاپگرهای ناشناس که مستقیماً به سیستم شما وصل شده‌اند وجود دارند"
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Test"
-msgstr "آزمایش"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea"
-msgstr "کره"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "انتخاب شما؟ (Ù¾ÛŒØ´â€ŒÙØ±Ø¶ `%s'%s)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer"
-msgstr "چاپگر خام"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "نام رسمی ÙØ±ÙˆØ´Ù†Ø¯Ù‡â€ŒÛŒ پردازه‌گر"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
-msgstr "Ø¨ÛŒÙØ§ÛŒØ¯Ù‡ بدون کارگزار پایانه"
-
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Vendor"
-msgstr "ÙØ±ÙˆØ´Ù†Ø¯Ù‡"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s"
-msgstr "واسط‌ %s"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "تنظیم موش"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
-msgstr "انتخاب نقاط سوارسازی"
-
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr "تایید"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "یوگوسلاو (لاتین)"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "در حال نصب"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "MouseMan لوگیتک با شبیه‌سازی چرخ"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
-msgstr "راه‌اندازی userdrake"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "آیا این یک نصب است یا یک ارتقا؟"
-
-#: ../../help.pm:1
-#, c-format
-msgid "ISDN card"
-msgstr "کارت ISDN "
-
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
-msgstr ""
-"برای اشتراک دانستنی‌های خود Ùˆ Ú©Ù…Ú© در ساختن Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± لینوکس، به تالارهای بحث "
-"ما بر ØµÙØ­Ø§Øª \"جامعه\" ما بپیوندید."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-دستگاه دیسک.\n"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"این گام Ùقط در صورتی Ú©Ù‡ یک قسمت‌بندی قدیمی لینوکس/گنو بر ماشین شما پیدا شود "
-"ÙØ¹Ø§Ù„ می‌گردد. \n"
-"\n"
-"DrakX اکنون احتیاج دارد بداند که آیا شما می‌خواهید یک نصب جدید یا یک ارتقا "
-"یک \n"
-"سیستم لینوکس مان‌درایک موجود را انجام دهید: \n"
-"\n"
-" * \"%s\": در مجموع این سیستم قدیمی را کاملاً پاک می‌کند اگر می‌خواهید روش\n"
-"قسمت‌بندی دستگاه‌های دیسک خود را تغییر دهید، یا سیستم پرونده را تعییر دهید، \n"
-"شما بایستی از این گزینه Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید. هرچند، بستگی به طرح قسمت‌بندی شما، "
-"شما \n"
-"می‌توانید از بر-نگارش بعضی از داده‌های موجود خود جلوگیری کنید.\n"
-"\n"
-" * \"%s\": این رده نصب به شما اجازه می‌دهد تا بسته‌های نصب شده کنونی لینوکس\n"
-"مان‌درایک را بروزسازی نمایید. طرح قسمت‌بندی کنونی شما و داده‌های کاربر دست\n"
-"نخواهند خورد و بیشتر گام‌های تنظیمات در دسترس باقی خواهند بود، \n"
-"شبیه به یک نصب استاندارد..\n"
-"\n"
-"Ø§Ø³ØªÙØ§Ø¯Ù‡ از گزینه ``ارتقا'' بایستی برای سیستم‌های لینوکس مان‌درایک نسخه \"8.1"
-"\"\n"
-"یا بعدی کارآرایی خوبی داشته باشد. اجرای یک ارتقا بر نسخ پیشتر از لینوکس\n"
-"مان‌درایک ۸.۱پیشنهاد نمی‌شود."
-
-#: ../../standalone/drakfont:1
-#, 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"
-msgstr ""
-"\n"
-" Copyright (C) 2001-2002 by MandrakeSoft \n"
-" DUPONT Sebastien (original version)\n"
-" CHAUMETTE Damien <dchaumette@mandrakesoft.com>\n"
-"\n"
-" این برنامه یک Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± آزاد می‌باشد؛ شما می‌توانید آن را پخش مجدد Ùˆ یا آن را "
-"تحت \n"
-" شرایط گنو Ú©Ù‡ توسط موسسه Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± آزاد منتشر شده است؛ نسخه Û² یا بالاتر تغییر "
-"دهید\n"
-"\n"
-" این برنامه به امید آنکه Ù…Ùید بوده ولی بدون هیچگونه ضمانت؛ بدون حتی ضمانت "
-"کارآرایی\n"
-" تجاری یا تناسب برای منظور خاصی می باشد. اجازه نامه گنو را برای تشریحات "
-"بیشتر نگاه کنید\n"
-"\n"
-" شما بایستی یک Ú©Ù¾ÛŒ از این اجازه نامه‌ی گنو را با این برنامه Ø¯Ø±ÛŒØ§ÙØª کرده "
-"باشید؛ اگر نه، به نشانی\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
-"نامه‌ای برای Ø¯Ø±ÛŒØ§ÙØª آن بنویسید.\n"
-" \n"
-"با تشکر از:\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"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "چاپگر روی کارگزار از راه دور CUPS "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
-msgstr "ناموÙÙ‚ در برداشتن چاپگر \"%s\" از Star Office/OpenOffice.org/GIMP."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
-msgstr "اینجا اگر نه."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DHCP host name"
-msgstr "نام میزبان DHCP "
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "حداکثر اجاره (ثانیه)"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Ù„Ø·ÙØ§Ù‹ درگاه سریالی را Ú©Ù‡ موش شما به آن وصل است را انتخاب نمایید. "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
-msgstr "آیا آن بدرستی کار کرد؟"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
-msgstr "سوارسازی سیستم پرونده بطور Ùقط-خواندن."
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "ضعیÙ"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result by mail"
-msgstr "نتیجه‌ی کنترل را بوسیله‌ی پست گزارش دهید."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
-msgstr "گرانادا"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
-msgstr "آغاز گستره‌ی DHCP "
-
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "ناامن"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "SSH server"
-msgstr "کارگزار‌ SSH "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s بندها"
-
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "نه"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "گوادلوپ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Kannada"
-msgstr "کن‌نادا"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
-msgstr "نمی‌توان هیچ قلم نگارشی را پیدا کرد.\n"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "آیا می‌خواهید کلید پس‌رو حذ٠را در کنسول بدهد؟"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "میزان نوسازی عمودی"
-
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "ورود به مرحله‌ی `%s'\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niger"
-msgstr "نیجر"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing %s ..."
-msgstr "حذ٠%s"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No printer"
-msgstr "چاپگری موجود نیست"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "alert configuration"
-msgstr "تنظیمات هشدار"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "گزینه‌های چاپگر NetWare "
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "%s BootSplash (%s) preview"
-msgstr "تصویرآغازی %s پیش‌نمایش (%s) "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "February"
-msgstr "Ùوریه"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
-msgstr "عمومی"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
-msgstr "/etc/issue* وجود دارد"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù† یک کاربر"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "تنظیمات شبکه (%d کارت‌ها)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "April"
-msgstr "آوریل"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Deactivate now"
-msgstr "حالا ØºÛŒØ±ÙØ¹Ø§Ù„ شود"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "بسته‌ی ضروری %s وجود ندارد"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Ùیلیپین"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "تایید"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "drakTermServ Overview"
-msgstr "پیش‌نمای drakTermServ "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
-msgstr "نام ص٠چاپ"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "آیا می‌خواهید از aboot Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید؟"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belarusian"
-msgstr "بلاروسی"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
-msgstr ""
-"PDQ Ùقط از چاپگرهای محلی،, چاپگرهای از راه دور LPD, Ùˆ چاپگرهای Socket/TCP "
-"حمایت می‌کند.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move files to the new partition"
-msgstr "انتقال پرونده‌ها به یک قسمت‌بندی جدید"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
-"کارگزارهای CUPS را Ú©Ù‡ می‌خواهید از چاپگرهای آنها Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید را در اینجا "
-"اضاÙÙ‡ نمایید. انجام این کار Ùقط در صورتی است Ú©Ù‡ آن کارگزارها اطلاعات خود را "
-"در شبکه محلی پخش‌همگانی نمی‌کنند. "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"به جادوگر تنظیم چاپگر خوش آمدید \n"
-"\n"
-"این جادوگر به شما در تنظیم چاپگر شما که به این رایانه وصل شده است کمک خواهد "
-"کرد. \n"
-"\n"
-"Ù„Ø·ÙØ§Ù‹ تمام چاپگرهایی را Ú©Ù‡ به این ماشین وصل هستند را روشن کرده تا بتوانند Ú©Ø´Ù-"
-"خودکار شوند. \n"
-"\n"
-"وقتی آماده شدید بر \"بعد\" کلیک کنید، و اگر نمی‌خواهید چاپگر خود را اکنون "
-"برپاسازی کنید بر \"لغو\" کلیک نمایید."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
-msgstr "پیت‌کایرن"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Catalog"
-msgstr "بازسازی از کاتالوگ"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "IDE"
-msgstr "IDE"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "سوارسازی قسمت‌بندی %s در شاخه %s شکست خورد"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
-msgstr "ØµÙØ­Ù‡ Lilo "
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO با Ùهرست تصویری"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "تخمین زدن"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
-msgstr "شما نمی‌توانید این بسته را انتخاب نکنید. آن قبلاً نصب شده است "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", چاپگر \"%s\" روی کارگزار SMB/ویندوز \"%s\""
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "ادامه به هر حال؟"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "گشتن بدنبال بسته‌های موجود و دوباره‌سازی بانک اطلاعات..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
-msgstr ""
-"\n"
-" گزارش پشتیبان‌درایک \n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "بنظر نمی‌رسد که رسانه قابل ضبط کردن باشد!"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "مشخص کردن گزینه‌ها"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr "وانوآتو"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "New user list:\n"
-msgstr "لیست کاربر جدید:\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "با نام کارگزار یا آی پی کارگزار باید داده شود!"
-
-#: ../../any.pm:1
-#, 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\"."
-msgstr ""
-"یک دیسک آغازگر اختصاصی روشی از آغازگری بدرون سیستم لینوکس را بدون\n"
-"وابستگی به بارگزار آغازگر عادی را عرضه می‌دارد. اگر نخواهید SILO را بر سیستم\n"
-"خود نصب کنید، یا یک سیستم عامل دیگر SILO را بردارد، یا SILO با تنظیمات "
-"Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø±ÛŒ\n"
-"شما کار نکند Ù…Ùید می‌باشد. یک دیسک آغازگر اختصاصی می‌تواند همچنین با تصویر\n"
-"نجات مان‌درایک Ø§Ø³ØªÙØ§Ø¯Ù‡ شود، Ú©Ù‡ بازآوری سیستم را از یک اشکال مهلک بسیار آسان\n"
-"می‌سازد.\n"
-"\n"
-"اگر می‌خواهید برای سیستم خود یک دیسک آغازگر بسازید، یک دیسکچه را به اولین\n"
-"دستگاه داخل کرده Ùˆ \"تایید\" را ÙØ´Ø§Ø± دهید."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr ""
-"شما نمی‌توانید از یک سیستم پرونده‌ی رمزگذاری شده برای نقطه سوارسازی %s Ø§Ø³ØªÙØ§Ø¯Ù‡ "
-"نمایید"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password history length to prevent password reuse."
-msgstr "تایین تاریخچه مدت گذرواژه برای جلوگیری از Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÛŒ مجدد گذرواژه."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
-msgstr "جزایر نورÙولک"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Theme installation failed!"
-msgstr "نصب تم شکست خورد!"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
-msgstr "کاری برای انجام نیست"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ برای loopback"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr "ابزار گزارش اشکال مان‌درایک"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
-msgstr "گذاردن صاÙÛŒ"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pppoe"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از pppoe"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving files to the new partition"
-msgstr "انتقال پرونده‌ها به قسمت‌بندی جدید"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s با شتاب‌دهنده Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø±ÛŒ ۳بعدی تجربی"
-
-#: ../../help.pm:1 ../../interactive.pm:1
-#, c-format
-msgid "Advanced"
-msgstr "Ù¾ÛŒØ´â€ŒØ±ÙØªÙ‡"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer"
-msgstr "انتقال"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "دوراک (سوئدی)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Afghanistan"
-msgstr "Ø§ÙØºØ§Ù†Ø³ØªØ§Ù†"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "More Options"
-msgstr "گزینه‌های بیشتری"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr "حذ٠پرونده‌های tar شده‌ی دیسک بعد از ذخیره پشتیبانی به رسانه دیگری."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "بوروندی"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron یک برنامه‌ی استاندارد UNIX که برنامه‌های مشخص-کاربری را در زمان‌های طراحی\n"
-"شده متناوب اجرا می‌کند. vixie cron تعدادی از قابلیت‌ها را به cron اصلی یونیکس\n"
-"شامل امنیت بهتر Ùˆ گزینه‌های تنظیمات قدرتمند بیشتری را اضاÙÙ‡ می‌کند."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr "اضاÙÙ‡ کردن کارگیر -->"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "بدقت بخوانید!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
-msgstr "RW"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Ù„Ø·ÙØ§Ù‹ØŒ \n"
-"مأخذ تلویزیون و کشور خود را وارد نمایید"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "درگاه"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
-msgstr "نه (Ùقط کارشناسان)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-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
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr ""
-"تکمه ورود را برای آغازگری سیستم عامل انتخاب شده ÙØ´Ø§Ø± دهید، برای ویرایش 'e' را"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The encryption keys do not match"
-msgstr "کلیدهای رمزی مطابقت نمی‌کنند"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
-"برای یک سی‌دی چندنشستی، Ùقط اولین نشست cdrw پاک خواهد شد. در غیر این صورت "
-"cdrw قبل از هر ذخیره‌ی پشتیبان پاک می‌شود "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "USB printer"
-msgstr "چاپگر USB"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "کلید \"ویندوز\" راست"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr ""
-"اگر آری تایین شده، گذرواژه‌ی خالی در پرونده /etc/shadow را کنترل نمایید."
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"قبل از ادامه، شما باید شرایط اجازه نامه را با دقت بخوانید. آن تمام انتشار \n"
-"لینوکس مان‌درایک را پوشش می‌دهد. اگر شما با همه‌ی شرایط در آن مواÙقت \n"
-"می‌کنید، جعبه‌ی \"%s\" را علامت بزنید. اگر نه بسادگی رایانه خود را خاموش "
-"نمایید. "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
-msgstr ""
-"این یک لیست از گزینه‌های موجود چاپ برای چاپگر کنونی می‌باشند.\n"
-"\n"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "وضوح"
-
-#: ../../network/drakfirewall.pm:1
-#, 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."
-msgstr ""
-"تنظیم‌گر دیوارآتش شبکه \n"
-"\n"
-"این یک دیوار‌آتش شخصی را برای این ماشین لینوکس مان‌درایک تنظیم می‌کند. \n"
-"برای یک دیوارآتش باقدرت Ùˆ متعلق، Ù„Ø·ÙØ§Ù‹ به انتشار دیوارآتش امنیتی تخصصی \n"
-"شده‌ی مان‌درایک نگاهی بیاندازید. "
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid ""
-"Please enter your username, password and domain name to access this host."
-msgstr ""
-"Ù„Ø·ÙØ§Ù‹ نام کاربری، گذرواژه Ùˆ نام دامنه‌ی خود را برای دستیابی به این میزبان وارد "
-"نمایید."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Remove selected host"
-msgstr "برداشتن میزبان انتخاب شده"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network configuration"
-msgstr "تنظیمات شبکه"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/شناسایی خودکار راه‌انداز _jaz"
-
-#: ../../any.pm:1
-#, c-format
-msgid "No sharing"
-msgstr "بدون اشتراک"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "انتقال قاعده‌ی انتخاب شده به یک سطح پایین‌تر"
-
-#: ../../common.pm:1
-#, c-format
-msgid "TB"
-msgstr "TB"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "FATAL"
-msgstr "مهلک"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh the list"
-msgstr "نوسازی لیست"
-
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - برای هر کارگیر %s:\n"
-" \t\tاز طریق clusternfs, هر کارگیر بدون دیسکمی‌توانند پرونده‌های "
-"تنظیماتی یگانه متعلق به خود را بر\n"
-" \t\tبر ریشه‌ی سیستم پرونده کارگزار داشته باشند. بوسیله‌ی اجازه دادن "
-"تنظیمات Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø±ÛŒ محلی کارگیر، \n"
-" \t\tdrakTermServ به ایجاد این پرونده‌ها کمک می‌کند."
-
-#: ../../standalone/drakpxe:1
-#, 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"
-msgstr ""
-"کارگزار DHCP به رایانه‌های دیگر اجازه‌ی آغازگری با Ø§Ø³ØªÙØ§Ø¯Ù‡ از PXE در یک گستره‌ی "
-"داده شده از نشانی‌ها را می‌دهد. \n"
-"\n"
-"نشانی این شبکه %s Ùˆ با Ø§Ø³ØªÙØ§Ø¯Ù‡ از ماسک شبکه‌ی %s می‌باشد.\n"
-"\n"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete"
-msgstr "حذÙ"
-
-#: ../../Xconfig/various.pm:1
-#, 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?"
-msgstr ""
-"من می‌توانم رایانه شما را برای شروع خودکار با واسط تصویری (XFree) هنگام "
-"آغازگری برپاسازی کنم.\n"
-" مایل هستید وقتی شما رایانه‌ی خود را روشن می‌کنید XFree شروع شود؟"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
-msgstr "ساختن دیسک"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnect %s"
-msgstr "قطع ارتباط %s"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
-msgstr "وضعیت:"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "وکیل HTTP"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "SSH Server"
-msgstr "کارگزار‌ SSH "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-شبکه توسط rsync.\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
-msgstr "پایان‌نامه‌ی اروپایی"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr "، چاپگر \"%s\" بر کارگزار \"%s\""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
-msgstr "توجه نمایید Ú©Ù‡ اکنون همه‌ی رسانه‌های شبکه از دیسک نیز Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کنند."
-
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
-#, c-format
-msgid "Error"
-msgstr "خطا"
-
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
-msgstr "اجازه \"su\""
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Australia"
-msgstr "استرالیا"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "Ù„Ø·ÙØ§Ù‹ در طول ttmkfdir صبر نمایید..."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Ùقط تنظیم کارت \"%s\"%s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Level"
-msgstr "سطح"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Change the printing system"
-msgstr "تغییر سیستم چاپی"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"سیستم شما از تنظیمات چندگانه‌ی سرآیندی حمایت می‌کند. \n"
-"چکار می خواهید انجام دهید؟"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr "سوارسازی شکست خورد:"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "تنظیم سرویس‌ها"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
-msgstr "نشانی پخش همگانی:"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"the GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
-msgstr ""
-"هسته‌ی لینوکس/گنو احتیاج به راندن یک حلقه‌ی حساب برای شروع یک شمارش‌گر زمانی در "
-"هنگام آغازگری دارد. نتیجه‌ی آن مانند bogomips ذخیره شده که روشی برای "
-"\"benchmark\" پردازه‌گر می‌باشد."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "تصویر"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Remote Administration"
-msgstr "مدیریت از راه دور"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-msgstr "اضاÙÙ‡ کردن چاپگر \"%s\" به گیمپ شکست خورد."
-
-#: ../../modules.pm:1
-#, c-format
-msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
-msgstr ""
-"حمایت PCMCIA دیگر در 2.2 kernels وجود ندارد. Ù„Ø·ÙØ§Ù‹ از 2.4 kernel Ø§Ø³ØªÙØ§Ø¯Ù‡ "
-"نمایید."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Selected All"
-msgstr "همه انتخاب شده‌اند"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Webmin Service"
-msgstr "سرویس Webmin"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
-msgstr "دستگاه"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "شاخه‌ای را برای ذخیره به آن وارد نمایید:"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
-msgstr "یونان"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "همه"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "از Ú†Ù‡ سیستم چاپی می‌خواهید Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید؟"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
-msgstr "ژوئیه"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Prints into %s"
-msgstr "چاپ بدرون %s"
-
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "یک خطا رخ داد"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"این بسته باید ارتقا یابد.\n"
-"آیا مطمئن هستید که می‌خواهید آنرا انتخاب نکنید؟"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "تامیل (Typewriter-layout)"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
-msgstr "برای اعتبارسنجی کاربران از گذرواژه Ø§Ø³ØªÙØ§Ø¯Ù‡ شود."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
-msgstr "اجازه/تحریم لیست کاربران بر سیستم در مدیران نمایش (kdm and gdm)."
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
-msgstr "دستورالعمل"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
-msgstr "نام پرونده‌ی متن برای جستجو:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "راه‌انداز ، مدل ،سازنده‌ی چاپگر"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-"رسانه‌ای وجود ندارد یا آن Ù…Ø­Ø§ÙØ¸Øª-نگارش برای دستکاه %s شده است.\n"
-"Ù„Ø·ÙØ§Ù‹ یکی را داخل کنید."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Directory %s already contains data\n"
-"(%s)"
-msgstr ""
-"شاخه‌ی %s قبلاً حاوی داده‌ها است\n"
-"(%s)"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "چاپگر روی کارگزار NetWare "
-
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "اندازه‌ی Ø­Ø§ÙØ¸Ù‡ موقت را در مگابایت بدهید"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr "جمعه"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "قطع ارتباط از اینترنت کامل شد."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "نام واقعی"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "done"
-msgstr "انجام شد"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Ù„Ø·ÙØ§Ù‹ علامت را برداشته یا آن را Ø¯ÙØ¹Ù‡â€ŒÛŒ بعد بردارید."
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Higher"
-msgstr "بالاتر"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "قسمت‌بندی را که می‌خواهید آنرا قالب‌بندی کنید را انتخاب نمایید"
-
-#: ../../standalone/drakxtv:1
-#, 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"
-msgstr ""
-"هیچ کارت تلویزیون روی ماشین شما شناسایی نشده است. Ù„Ø·ÙØ§Ù‹ تصدیق نمایید Ú©Ù‡ یک "
-"کارت تلویزیون/ویدیوی حمایت شده بدرستی وصل شده است.\n"
-"\n"
-"\n"
-"شما می‌توانید بانک اطلاعات Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± ما را در نشانی زیر بیابید:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't find %s on %s"
-msgstr "نمی‌توانم %s بر %s پیدا کنم"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "ژاپنی ۱۰۶ کلیدی"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
-msgstr "نمی‌توان بسته‌های لازم برای اشتراک پویشگر(های) شما را نصب کرد."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
-msgstr "این چند دقیقه زمان می‌برد."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
-msgstr "بورکینا ÙØ§Ø³Ùˆ"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "June"
-msgstr "ژوئن"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از پویشگرهای روی رایانه‌های از راه دور"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Delete selected rule"
-msgstr "حذ٠قواعد انتخاب‌شده"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "دستیابی به چاپگرهای روی کارگزاران از راه دور CUPS "
-
-#: ../../any.pm:1
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "یک دیسکچه را به %s داخل نمایید"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
-msgstr "مالدیوز"
-
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "ÙØ´Ø±Ø¯Ù‡"
-
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
-msgstr "۱ دقیقه"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: fat"
-msgstr "نوع: fat"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "on channel %d id %d\n"
-msgstr "روی کانال %d شناسه %d\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
-msgstr "، دستگاه چند-عاملی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr "لائوس"
-
-#: ../advertising/04-configuration.pl:1
-#, 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!"
-msgstr ""
-"لینوکس مان‌درایک ۹۱ مرکز کنترل مان‌درایک، یک ابزار قدرتمند برای تطابق رایانه "
-"شما برای آن Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒØ§ÛŒ Ú©Ù‡ می‌خواهید از آن بنمایید را عرضه می‌دارد. تنظیم Ùˆ "
-"اختصاصی کردن اجزایی مانند سطح امنیتی، وسایل حاشیه (ØµÙØ­Ù‡ØŒ موش، ØµÙØ­Ù‡â€ŒÚ©Ù„ید...)ØŒ "
-"ارتباط اینترنت و بیشتر چند نمونه می‌باشند."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
-msgstr "ÙØ¹Ø§Ù„/غیر ÙØ¹Ø§Ù„ کردن کنترل بی‌نظم کارت‌های شبکه."
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr ""
-"هیچ قسمت‌بندی FAT برای تغییر اندازه وجود ندارد (یا ÙØ¶Ø§ÛŒ کاÙÛŒ آزاد باقی ندارد)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr "بالا"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
-msgstr "دیوارآتش"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr "محوطه:"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr "کنترل‌کننده‌های (E)IDE/ATA "
-
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
-msgstr "تمام درون/بیرون ریزی به سیستم پرونده بایستی بطور همزمان انجام گیرد."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "کارگزار‌ چاپگر"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Custom configuration"
-msgstr "تنظیمات اختصاصی"
-
-#: ../../standalone/drakpxe:1
-#, 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"
-msgstr ""
-"Ù„Ø·ÙØ§Ù‹ مکانی را Ú©Ù‡ تصویر نصب در آن قرار خواهد Ú¯Ø±ÙØª را تایین نمایید.\n"
-"\n"
-"اگر شما یک شاخه‌ی موجود ندارید، Ù„Ø·ÙØ§Ù‹ محتویات سی دی یا دی ÙˆÛŒ دی را Ú©Ù¾ÛŒ "
-"نمایید.\n"
-"\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr "سنت پی‌یر و میگوئل"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
-msgstr "سپتامبر"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "در حال ذخیره تم تصویرآغاز..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
-msgstr "پرتغال"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "آیا شما یکی دیگر دارید؟"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", printing to %s"
-msgstr "، چاپ به%s"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "تایین نام میزبان از نشانی DHCP "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to normal mode"
-msgstr "تعویض به حالت عادی"
-
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
-msgstr "عمومی"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "استوانه %d به %d\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
-msgstr "متن شما در اینجا"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "New profile..."
-msgstr "نمایه‌ی جدید..."
-
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
-#, c-format
-msgid "NONE"
-msgstr "هیچکدام"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "به کدام دیسک می‌خواهید آن را منتقل نمایید؟"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Display logo on Console"
-msgstr "نمایش ثبت ورود بر کنسول"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Windows Domain"
-msgstr "دامنه‌ی ویندوز"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (norwegian)"
-msgstr "سامی (نروژی)"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Interface %s (on network %s)"
-msgstr "واسط‌ %s (در شبکه %s)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
-msgstr "اطلاعات"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
-msgstr "والیس Ùˆ Ùوتونا"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "احتیاج به ایجاد پرونده‌ی /etc/dhcpd.conf در ابتدا!"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
-msgstr "آیا FPU حاضر است"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"هیچ اطلاعات اضاÙÛŒ \n"
-"درباره‌ی این سرویس، متأسÙÙ…."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "هیچ پویشگری روی سیستم شما ÛŒØ§ÙØª نشد.\n"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "ساخت یک NIC -->"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "جزایر مارشال"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "آیا این درست است؟"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Windows (FAT32)"
-msgstr "ویندوز (ÙØ§Øª Û³Û²)"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr "گذرواژه مدیر"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "ساخت تمام هسته‌ها -->"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVDRAM device"
-msgstr "دستگاه DVDRAM"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
-msgstr "اگر به آری گذاشته شده، پرونده‌های بدون صاحب گزارش شود."
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"شما قسمت‌بندی مبادله swap را ندارید.\n"
-"\n"
-"در هر حال ادامه می‌دهید؟"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Version: "
-msgstr "نسخه:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Server IP missing!"
-msgstr "آی پی کارگزار وجود ندارد!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Suriname"
-msgstr "سورینام"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use a floppy"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از یک دیسکچه "
-
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
-msgstr "ÙØ¹Ø§Ù„‌سازی ACPI"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
-msgstr "دادن حق نگارش به کاربران عادی"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
-msgstr "محیط تصویری"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
-msgstr "جیبرالتا"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Do nothing"
-msgstr "هیچ کاری نکن"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete Client"
-msgstr "حذ٠کارگیر"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "نوع سیستم پرونده:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting network..."
-msgstr "در حال راه‌اندازی شبکه..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
-msgstr "ویتنام"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_Fields description"
-msgstr "/توضیحات ـمحوطه‌ها"
-
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr "امنیت خود را با Ø§Ø³ØªÙØ§Ø¯Ù‡ از لینوکس مان‌درایک به حداکثر برسانید"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
-
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Help"
-msgstr "راهنما"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
-msgstr "کنترل کنید که آیا دستگاه‌های شبکه در حالت بی قاعده می‌باشند"
-
-#: ../../network/tools.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"
-msgstr "چه اندازه‌ای را می‌خواهید برای ویندوز نگهدارید"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"ØµÙØ­Ù‡â€ŒÛŒ آزمایشی به چاپگر ÙØ±Ø³ØªØ§Ø¯Ù‡ شده است.\n"
-"ممکن است قدری طول بکشد تا چاپگر شروع کند.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Username required"
-msgstr "نام‌کاربر لازم است"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Device"
-msgstr "دستگاه"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"بنابر زبان Ù¾ÛŒØ´â€ŒÙØ±Ø¶ Ú©Ù‡ در این قسمت انتخاب کرده‌اید، DrakX یک نوع بخصوص\n"
-"تنظیمات ØµÙØ­Ù‡â€ŒÚ©Ù„ید را بطور خودکار انتخاب می‌کند. اگر Ú†Ù‡ ممکن است شما\n"
-"ØµÙØ­Ù‡â€ŒÚ©Ù„یدی Ú©Ù‡ دقیقاً مطابق زبان شما باشد را نداشته باشید: برای مثال، اگر شما\n"
-"یک شخص انگلیسی زبان سوئیسی باشید، شما ممکن است یک ØµÙØ­Ù‡â€ŒÚ©Ù„ید سوئیسی\n"
-"داشته باشید. یا اگر شما انگلیسی صحبت کرده ولی در کوبک کانادا زندگی می‌کنید،\n"
-"شما ممکن است خود را در شرایطی بیابید Ú©Ù‡ زبان بومی شما Ùˆ ØµÙØ­Ù‡â€ŒÚ©Ù„ید مطابقت\n"
-"نداشته باشند. در هر دو صورت، این مرحله نصب به شما اجازه انتخاب یک ØµÙØ­Ù‡â€ŒÚ©Ù„ید\n"
-"مناسب را از یک لیست می‌دهد.\n"
-"\n"
-"برای عرضه لیست کامل ØµÙØ­Ù‡â€ŒÚ©Ù„ید‌های حمایت شده بر تکمه \"%s\" کلیک کنید.\n"
-"\n"
-"اگر شما یک ØµÙØ­Ù‡â€ŒÚ©Ù„ید بر اساس یک Ø§Ù„ÙØ¨Ø§ÛŒ غیر لاتین را انتخاب کنید، Ú¯ÙØªÚ¯ÙˆÛŒ \n"
-"بعدی به شما اجازه‌ی ترکیب کلیدی Ú©Ù‡ بتوانید بین طرح‌های ØµÙØ­Ù‡â€ŒÚ©Ù„ید لاتین\n"
-"و غیر لاتین تعویض کنید را خواهد داد."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "گزینه‌های چاپگر SMB (ویندوز ۹۸/NT)"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
-msgstr "نشانی اینترنتی: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr "لیست کاربر معتبر تغییر کرده است، بازنگارش پرونده‌ی تنظیم."
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "mkinitrd optional arguments"
-msgstr "مبحث‌های دلخواه mkinitrd "
-
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
-msgstr ""
-"موج‌سواری وب با موزیلا یا کانکورر، خواندن پست با اولوشن یا ک‌میل، ایجاد سندهای "
-"شما با برنامه‌ی Ø¯ÙØªØ± آزاد."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "پایان‌نامه برای بقیه جهان"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print test pages"
-msgstr "چاپ ØµÙØ­Ù‡â€ŒÙ‡Ø§ÛŒ آزمایشی"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Activate now"
-msgstr "حالا ÙØ¹Ø§Ù„ شود"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
-msgstr "۶۴ مگابایت یا بیشتر"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Ù„Ø·ÙØ§Ù‹ ØµÙØ­Ø§Øª آزمایشی Ú©Ù‡ می‌خواهید چاپ کنید را انتخاب نمایید.\n"
-"توجه: ØµÙØ­Ù‡ آزمایشی عکس زمان بیشتری برای چاپ می‌برند Ùˆ بر چاپگران لیزری با "
-"Ø­Ø§ÙØ¸Ù‡ Ú©Ù… شاید اصلاً بیرون داده نشود. در بیشتر موارد کاÙÛŒ است Ú©Ù‡ ØµÙØ­Ù‡â€ŒÛŒ آزمایسی "
-"استاندارد را چاپ نمایید."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Ù„Ø·ÙØ§Ù‹ دستگاهی را Ú©Ù‡ %s شما به آن وصل است را انتخاب نمایید"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Not formatted\n"
-msgstr "قالب‌بندی نشده\n"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Periodic Checks"
-msgstr "کنترل‌های متناوب"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "PXE Server Configuration"
-msgstr "تنظیمات کارگزار PXE "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup the system files before:"
-msgstr "ذخیره پشتیبان پرونده‌های سیستم قبلاً: "
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"این امنیت پیشنهادی برای یک رایانه‌ای است که برای ارتباط با اینترنت مانند یک "
-"کارگیر Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود."
-
-#: ../../any.pm:1
-#, c-format
-msgid "First floppy drive"
-msgstr "دستگاه دیسکچه اول"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr "/پرونده/_خروج"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak"
-msgstr "دوراک"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose the new size"
-msgstr "انتخاب اندازه‌ی جدید"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Media class"
-msgstr "رده‌ی رسانه"
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr "شما باید ثبت خروج کرده و باز برگردید برای اینکه تغییرات تأثیر کنند"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
-msgstr "این %sتوسط این نسخه از Scannerdrake ناشناس می‌باشد."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Faroe Islands"
-msgstr "جزایر ÙØ§Ø±Ø¦Ùˆ"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Restart XFS"
-msgstr "راه‌اندازی مجدد XFS"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù† میزبان/شبکه"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "پویشگردرایک اکنون شروع نخواهد شد."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model name"
-msgstr "نام مدل"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
-msgstr "آلبانی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr "منطقه‌ی بریتانیایی اقیانوس هند"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Normal Mode"
-msgstr "حالت عادی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "هیج رسانه‌ی CDR/DVDR در دستگاه!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer connection type"
-msgstr "نوع ارتباط چاپگر"
-
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
-msgstr "هیچ کارت شبکه بر سیستم شما!"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network %s"
-msgstr "شبکه %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
-msgstr "مالای‌الام"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
-msgstr "گزینه‌ی %s خارج از گستره!"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connect %s"
-msgstr "ارتباط %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "راه‌اندازی مجدد CUPS..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "چاپ/پویش/کارتهای عکس روی \"%s\""
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
-msgstr ""
-
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "دوتایی کردن نقطه سوارسازی %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
-msgstr "اگر به آری گذاشته شده، کنترل chkrootkit را اجرا نمایید."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "تنظیمات ارتباط"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|Generic"
-msgstr "ناشناس|عمومی"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"در زمانی که شما در حال نصب لینوکس مان‌درایک هستید، به احتمال زیاد بعضی \n"
-"از بسته‌ها از زمان شروع نشر خود بروزسازی شده‌اند. اشکالات ممکن است تعمیر \n"
-"شده Ùˆ مسایل امنیتی Ø±ÙØ¹ شده باشند. برای Ø§Ø³ØªÙØ§Ø¯Ù‡ از Ùواید این بروزسازی‌ها، شما "
-"اکنون \n"
-"می‌توانید آنها را از اینترنت بارگیری نمایید. \"%s\" را اگر شما یک ارتباط "
-"کارآرای اینترنت \n"
-"دارید علامت زده، یا \"%s\" را اگر ترجیح می‌دهید بسته‌ها را بعداً بروزسازی "
-"نمایید. \n"
-"\n"
-"انتخاب \"%s\" یک Ùهرست از مکان‌هایی Ú©Ù‡ آن بروزسازی‌ها می‌توانند Ø¯Ø±ÛŒØ§ÙØª شوند \n"
-"را نشان خواهد داد. شما باید مکانی که به شما نزدیکتر است را انتخاب نمایید. "
-"یک \n"
-"درخت مجموعه-بسته ظاهر خواهد شد: مجموعه را مرور کرده، و \"%s\" را برای \n"
-"Ø¯Ø±ÛŒØ§ÙØª Ùˆ نصب بسته‌های انتخاب شده، یا \"%s\" را برای ترک ÙØ´Ø§Ø± دهید."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-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
-#, c-format
-msgid "Quit"
-msgstr "خروج"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "جایابی خودکار"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "کنترل تکه‌های خراب؟"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Other MultiMedia devices"
-msgstr "دستگاه‌های دیگر چندرسانه‌ای"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "burner"
-msgstr "سوزنده"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Bug Description/System Information"
-msgstr "توضیح اشکال/ اطلاعات سیستم"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (Default is all users)"
-msgstr "(Ù¾ÛŒØ´â€ŒÙØ±Ø¶ همه کاربران می‌باشند)"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "No remote machines"
-msgstr "هیچ ماشین‌های از راه دور"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
-"\n"
-"به جادوگر برپاسازی چاپگر خوش آمدید\n"
-"\n"
-"این چاپگر به شما در نصب چاپگر(ها) وصل شده به این ماشین کمک خواهد کرد.\n"
-"\n"
-"اگر شما چاپگر(های) وصل شده به این ماشین دارید، Ù„Ø·ÙØ§Ù‹ آن(ها) را وصل Ùˆ روشن "
-"کرده تا بتوان آنها را Ú©Ø´Ù-خودکار کرد.\n"
-"\n"
-"وقتی آماده شدید بر \"بعدی\" کلیک کرده، و اگر نمی‌خواهید چاپگر خود را اکنون "
-"برپاسازی کنید بر \"لغو\" کلیک نمایید."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "اعتبارسنجی NIS"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "گزینه‌ی ``محدودیت گزینه‌های خط ÙØ±Ù…ان'' بدون یک گذرواژه Ø¨ÛŒâ€ŒÙØ§ÛŒØ¯Ù‡ است"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "اشتراک ارتباط اینترنت در حال حاضر ÙØ¹Ø§Ù„ می‌باشد"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "امارات متحده‌ی عربی"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "Card IO_0"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
-msgstr "ØºÛŒØ±ÙØ¹Ø§Ù„ سازی تنظیم محلی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "تایلند"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "Card IO_1"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
-msgstr "جستجو:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "قزاقستان"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
-msgstr "مسیریاب‌ها:"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Write"
-msgstr "نگارش"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "نمایش تمام چاپگران از راه دور موجود CUPS "
-
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "نصب لینوکس مان‌درایک %s"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
-msgstr "راه‌انداز ناشناس"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "ØµÙØ­Ù‡â€ŒÚ©Ù„ید تایلندی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr "جزیره بووت"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "گزینه‌های زنگ‌زدن"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "اگر درگاهی داده نشده، Û¶Û³Û± مانند Ù¾ÛŒØ´â€ŒÙØ±Ø¶ Ú¯Ø±ÙØªÙ‡ خواهد شد."
-
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - پرونده‌های تنظیمات سیستم برای هر کارگیر:\n"
-" \t\tاز طریق clusternfs, هر کارگیر بدون دیسک می‌توانند پرونده‌های "
-"تنظیماتی یگانه متعلق به خود را بر\n"
-" \t\tبر ریشه‌ی سیستم پرونده کارگزار داشته باشند. بوسیله‌ی اجازه دادن "
-"تنظیمات Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø±ÛŒ محلی کارگیر \n"
-"\t\t\t\tکارگیرها می‌توانند پرونده‌هایی نظیر /etc/modules.conf, /etc/sysconfig/"
-"mouse, \n"
-" \t\t/etc/sysconfig/keyboard را بر اساس برای هر-کارگیر تغییر دهید.\n"
-"\n"
-" توجه: ÙØ¹Ø§Ù„ کردن تنظیمات Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø±ÛŒ کارگیر محلی ورود مدیر به پایانه‌ی "
-"کارگزار بر هر ماشین \n"
-" کارگیر Ú©Ù‡ این قابلیت را ÙØ¹Ø§Ù„ شده دارند کارآرا می‌سازد. وقتی Ú©Ù‡ ماشین "
-"کارگیر تنظیم شد،\n"
-" تنظیمات محلی می‌توانند خاموش شوند."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-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 ""
-"سی دی-رم خود را عوض کنید! \n"
-"\n"
-"Ù„Ø·ÙØ§Ù‹ سی دی با برچسب \"%s\" را در دستگاه خود بگذارید Ùˆ تایید را بعد از انجام "
-"آن ÙØ´Ø§Ø± دهید. \n"
-"اگر شما آن را ندارید، لغو را برای جلوگیری نصب از این سی دی رم ÙØ´Ø§Ø± دهید."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "لهستانی"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Online"
-msgstr "مان‌درایک روخط"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
-msgstr "\t-شبکه بوسیله webdav.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr "دستگاه چند-عملیاتی بر یک درگاه موازی "
-
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
-msgstr ""
-"هیچ کارت شبکه‌ی ایترنت روی سیستم شما شناسایی شد. Ù„Ø·ÙØ§Ù‹ ابزار تنظیم Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± را "
-"اجرا نمایید."
-
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "ماسک شبکه"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "No hard drives found"
-msgstr "هیچ دستگاه دیسک ÛŒØ§ÙØª شد"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "۲ تکمه"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "ارتباط ISDN شما از چه نوعی است؟"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "برچسب"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "ذخیره بر دیسکچه "
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check open ports"
-msgstr "کنترل درگاه‌های باز"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Edit selected printer"
-msgstr "ویرایش چاپگر انتخاب شده"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Ú©Ø´Ù-خودکار چاپگر"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "کدامیک از اینها کارت ISDN شما می‌باشد؟"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
-"This service provides NFS server functionality, which is configured via the\n"
-"/etc/exports file."
-msgstr ""
-"پایان‌نامه‌ی NFS برای اشتراک پرونده در طول شبکه‌های TCP/IP می‌باشد.\n"
-"این سرویس عمل کرد کارگزار NFS را عرضه کرده، که از طریق پرونده /etc/exports\n"
-" تنظیم می‌شود."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Msec"
-msgstr "Msec"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> توجه, یک برچسب تغییر کرد:\n"
-"%s"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
-msgstr "تعداد میانگیرهای عکاسی:"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "انتخاب شما؟ (0/1, Ù¾ÛŒØ´â€ŒÙØ±Ø¶ `%s')"
-
-#: ../../help.pm:1
-#, 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"
-"\n"
-"Click on \"%s\" if you wish to select partitions that will be checked for\n"
-"bad blocks on the disk."
-msgstr ""
-"هر قسمت‌بندی Ú©Ù‡ بتازگی تایین شده باشد باید برای Ø§Ø³ØªÙØ§Ø¯Ù‡ قالب‌بندی شود\n"
-"(قالب‌بندی بمعنی ایجاد یک سیستم پرونده می‌باشد).\n"
-"\n"
-"در حال حاضر، شما ممکن است بخواهید بعضی از قسمت‌بندی‌های موجود را برای\n"
-"برای پاک کردن دادهای بر آنها قالب‌بندی نمایید. اگر خیال چنین کاری را دارید، "
-"Ù„Ø·ÙØ§Ù‹\n"
-"آن قسمت‌بندی‌ها را نیز انتخاب نمایید.\n"
-"\n"
-"\n"
-"Ù„Ø·ÙØ§Ù‹ توجه نمایید Ú©Ù‡ ضروری نیست Ú©Ù‡ تمام قسمت‌بندی‌های موجود قالب‌بندی مجدد\n"
-"شوند. شما باید قسمت‌بندی‌های حاوی سیستم عامل (مانند \"/\", \"/usr\" یا \"/var"
-"\") \n"
-"را قالب‌بندی مجدد کرده اما شما مجبور به قالب‌بندی مجدد قسمت‌بندی‌های حاوی\n"
-"داده‌هایی که می‌خواهید نگهدارید نیستید (معمولاً \"/home\").\n"
-"\n"
-"Ù„Ø·ÙØ§Ù‹ هنگام انتخاب قسمت‌بندی‌ها دقت نمایید. بعد از قالب‌بندی تمام داده‌های\n"
-"بر قسمت‌بندی‌های انتخاب شده حذ٠خواهند شد و شما قادر به تعمیر آنها نخواهید "
-"بود\n"
-"\n"
-"وقتی برای قالب‌بندی قسمت‌بندی‌ها آماده شدید بر \"%s\" کلیک نمایید.\n"
-"\n"
-"اگر می‌خواهید قسمت‌بندی دیگری برای نصب سیستم عامل لینوکس مان‌درایک\n"
-"جدید خود انتخاب کنید بر %s کلیک نمایید.\n"
-"\n"
-"اگر می‌خواهید قسمت‌بندی‌هایی که باید برای بلوک‌های بد بر دیسک کنترل شوند\n"
-"را انتخاب کنید بر %s کلیک نمایید."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "French"
-msgstr "ÙØ±Ø§Ù†Ø³ÙˆÛŒ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTY)"
-msgstr "چکی ( qwerty)"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow X Window connections"
-msgstr "اجازه‌ی ارتباطات پنجره X "
-
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "وارسی Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± در جریان است"
-
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
-#, c-format
-msgid "Net Device"
-msgstr "دستگاه شبکه"
-
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "خلاصه"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-" (گذرگاه‌های موازی: /dev/lp0, /dev/lp1, ..., برابر با LPT1:, LPT2:, ..., "
-"اولین چاپگر USB: /dev/usb/lp0, دومین چاپگر USB: /dev/usb/lp1, ...)."
-
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Next"
-msgstr "بعدی"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "شما نمی‌توانید بارگزار آغازگر را بر یک قسمت‌بندی %s نصب نمایید\n"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
-msgstr "پورتو ریکو"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp/zeroconf)"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"خوش آمدید.\n"
-"\n"
-"اجزای نصب-خودکار در قسمت‌های در سمت چپ موجود می‌باشند"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
-msgstr ""
-"بسته‌ی 'ImageMagick' برای تکمیل تنظیمات لازم می‌باشد.\n"
-"برای نصب 'ImageMagick' بر \"تایید\" یا بر \"لغو\" برای خروج کلیک نمایید "
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Telnet server"
-msgstr "کارگزار X "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "لیتوانی \"ردی٠شماره\" QWERTY"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
-"بسته‌های بدنبال آمده برای ارتقا سیستم شما برداشته خواهند شد: %s\n"
-"\n"
-"\n"
-"آیا واقعاً می‌خواهید این بسته‌ها را بردارید؟\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
-msgstr "آنگیلا"
-
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "دامنه NIS "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "ان‌تارک‌تیکا"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- پرونده‌های کاربر:\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
-msgstr "گزینه‌های سوارسازی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Jamaica"
-msgstr "جامائیکا"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
-msgstr ""
-"نسبت دادن دستگاه‌های خام به دستگاه‌های بلوک (مانند قسمت‌بندی‌های دیسک‌سخت)، برای "
-"Ø§Ø³ØªÙØ§Ø¯Ù‡ از برنامه‌هایی مانند Oracle یا DVD players"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Ù„Ø·ÙØ§ صبر نمایید، آماده‌ی نصب میشویم..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "Ú†Ú© (QWERTZ)"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "ردیابی شناسه‌ی کارت شبکه (Ù…Ùید برای رایانه همراه)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "شماره‌ی درگاه باید یک عدد صحیح باشد!"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "You must choose an image file first!"
-msgstr "شما باید اول یک پرونده‌ی تصویر را انتخاب نمایید!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "بازسازی از دیسک."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù† به LVM"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "کارگزار DNS "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr "ترینیداد و توباگو"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD و LPRng چاپگرهای IPP را حمایت نمی‌کنند.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host name or IP."
-msgstr "نام میزبان یا آی‌پی"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Edit"
-msgstr "/_Edit"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "ساده"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "پاک کردن همه"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No test pages"
-msgstr "هیچ ØµÙØ­Ø§Øª آزمایشی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr "جزایر ÙØ§Ù„ک‌لند (مالویناس)"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "کارت %s: %s"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Boot disk creation"
-msgstr "ایجاد کردن دیسک آغازگری"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
-msgstr "دوشنبه"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown model"
-msgstr "مدل ناشناس"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
-msgstr ""
-"اگر به آری گذاشته شده، پرونده‌ها/شاخه‌های قابل نگارش بوسیله‌ی هرکسی را کنترل "
-"نمایید."
-
-#: ../../help.pm:1
-#, c-format
-msgid "authentication"
-msgstr "اعتبارسنجی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now"
-msgstr "ذخیره‌ی پشتیبان اکنون"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/ـپرونده"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr "برداشتن چاپگر از گیمپ Ø¯ÙØªØ± آزاد"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
-msgstr ""
-"پرتاب اجرای صاÙÛŒ کردن پاکت برای نسخ هسته Û².۲لینوکس، برای \n"
-"برپاسازی یک دیوارآتش برای Ø­ÙØ§Ø¸Øª ماشین شما از حملات شبکه"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Editable"
-msgstr "قابل ویرایش"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
-msgstr "از Ú†Ù‡ کارگیر dhcp می‌خواهید Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید؟ (Ù¾ÛŒØ´â€ŒÙØ±Ø¶ dhcp-client می‌باشد)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr "تامیل (ISCII-layout)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
-msgstr "مایوت‌ته"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
-msgstr ""
-"تایین اندازه‌ی تاریخچه‌ی ÙØ±Ù…ان‌های پوسته. یک ارزش Û±- به معنی نامحدود می‌باشد."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d KB\n"
-msgstr "%d کیلوبایت\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "در حال ایجاد دیسکچه نصب خودکار..."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for scanners ..."
-msgstr "در حال جستجو برای پویشگرها..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
-msgstr "روسیه"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Partitioning"
-msgstr "قسمت‌بندی"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
-msgstr "کارت ایترنت شناسایی شد"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
-msgstr "Syslog"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create catalog!"
-msgstr "نمی‌توان شاخه را ایجاد نمود!"
-
-#: ../advertising/11-mnf.pl:1
-#, 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."
-msgstr ""
-"برپاسازی امنیتی خود را با این Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± آسان-برای-Ø§Ø³ØªÙØ§Ø¯Ù‡ Ú©Ù‡ عناصر با توانایی "
-"بالا مانند یک دیوارآتش، یک کارگزار و کارگیر شبکه مجازی خصوصی، یک سیستم کش٠"
-"رسوخ Ùˆ یک مدیر تراÙیک را ترکیب می‌کند تکمیل نمایید."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
-msgstr "ÙØ¶Ø§ÛŒ آزاد کاÙÛŒ برای جاسازی-خودکار وجود ندارد"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "تایین گذرواژه مدیر"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable IP spoofing protection"
-msgstr "ÙØ¹Ø§Ù„‌سازی Ø­ÙØ§Ø¸Øª IP spoofing"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
-msgstr ""
-"هیچ راه‌انداز آزاد برای کارت صدای شما (%s) وجود ندارد، اما یک راه‌انداز تجاری "
-"در \"%s\" وجود دارد."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group :"
-msgstr "گروه :"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"بعد از تغییر اندازه‌ی قسمت‌بندی %s، تمام داده‌ها روی این قسمت‌بندی از دست خواهد "
-"Ø±ÙØª"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet connection configuration"
-msgstr "تنظیمات ارتباط اینترنت"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
-msgstr "نام را مثل یک استثنا برای اداره‌ی عمر گذرواژه بوسیله msec اضاÙÙ‡ نمایید."
-
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "USB"
-msgstr "LSB"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "در حال پویش برای کانال‌های تلویزیون"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
-msgstr "هسته:"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_About..."
-msgstr "/_درباره..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
-msgstr "بنگالی"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
-msgstr "ارجحیت: "
-
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "سرویس‌ها: %d ÙØ¹Ø§Ù„ شده برای %d ثبت شده"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "ایجاد یک دیسک آغازگر"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "جزایر سولومون"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Ù„Ø·ÙØ§Ù‹ موش خود را امتحان نمایید:"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(بخش %s)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
-msgstr "گروه کاری"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP"
-msgstr "نام میزبان یا IP چاپگر"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "down"
-msgstr "انجام شد"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Path or Module"
-msgstr "بخش یا مسیر میزبان"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "نام چاپگر باید تنها حاوی Ø­Ø±ÙˆÙØŒ اعداد Ùˆ خط‌زیر باشد"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Show current interface configuration"
-msgstr "نمایش تنظیمات واسط کنونی"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add Printer"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù† چاپگر"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"The argument specifies if clients are authorized to connect\n"
-"to the X server from the network on the tcp port 6000 or not."
-msgstr ""
-"این مبحث مشخص می‌کند که آیا کارگیرها برای ارتباط به کارگزار X \n"
-"بر درگاه ۶۰۰۰ tcp مجاز می‌باشند یا که نه."
-
-#: ../../help.pm:1
-#, c-format
-msgid "Development"
-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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Done"
-msgstr "انجام شد"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Web Server"
-msgstr "کارگزار‌ وب"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "شیلی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tپرونده‌های سیستم ضمیمه نشوند\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"راه‌اندازهای چاپگرهای inkjet عرضه شده توسط Lexmark Ùقط چاپگران محلی را حمایت "
-"کرده، نه چاپگران بر ماشین‌های از راه دور یا کارگزاران چاپ را. Ù„Ø·ÙØ§Ù‹ چاپگر خود "
-"را به یک درگاه محلی وصل کرده یا آن را بر ماشینی که به آن وصل است تنظیم "
-"نمایید."
-
-#: ../../printer/printerdrake.pm:1
-#, 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!"
-msgstr ""
-"دستگاه چند-عملیاتی شما برای پویش بطور خودکار تنظیم شده است. اکنون می‌توانید "
-"با \"scanimage\" (برای تایین پویشگر وقتی شما بیش از یکی دارید با \"scanimage "
-"-d hp:%s\") از خط ÙØ±Ù…ان یا با واسط‌های گراÙیک \"xscanimage\" یا \"xsane\" "
-"پویش کنید. اگر شما از GIMP Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کنید می‌توانید بوسیله‌ی انتخاب اشاره‌ی "
-"مناسب در Ùهرست \"File\"/\"Acquire\" پویش نمایید. برای اطلاعات بیشتر در خط "
-"ÙØ±Ù…ان \"man scanimage\" را اجرا نمایید.\n"
-"\n"
-"از \"scannerdrake\" برای این دستگاه Ø§Ø³ØªÙØ§Ø¯Ù‡ نکنید!"
-
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "(قبلاً اضاÙÙ‡ شده %s)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation in progress"
-msgstr "نصب بارگزار آغازگر در جریان است"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
-msgstr "ØŒ Ø§Ø³ØªÙØ§Ø¯Ù‡ از ÙØ±Ù…ان %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "کلیدهای الت Ùˆ Ø´ÛŒÙØª هم‌زمان"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
-msgstr "پرچم‌ها"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Users"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù†/حذ٠کاربرها"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "نشانی آی پی میزبان/شبکه وجود ندارد."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
-msgstr "Ù‡ÙØªÙ‡â€ŒØ§ÛŒ"
-
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "تنظیمات"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "آی پی شبکه/میزبان وارد شده درست نیست.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "ایجاد/انتقال کلیدهای ذخیره پشتیبان برای SSH"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr "این یک لیست کامل کشورها می‌باشد"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "ØµÙØ­Ù‡â€ŒÛŒ آزمایشی جایگزین (A4)"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"اگر شما همه‌ی سی دی‌های در لیست زیر را دارید، تایید را کلیک نمایید.\n"
-"اگر شما هیچکدام از این سی دی‌ها را ندارید، لغو را کلیک نمایید.\n"
-"اگر Ùقط بعضی از سی دی‌ها وجود ندارند، آنها را انتخاب نکرده، سپس تایید را کلیک "
-"نمایید."
-
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
-msgstr "Ù„Ø·ÙØ§Ù‹ صبر کنید"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup user files"
-msgstr "ذخیره پشتیبان پرونده‌های کاربر"
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "New"
-msgstr "جدید"
-
-#: ../../help.pm:1
-#, 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\"."
-msgstr ""
-"این مهمترین نقطه‌ی تصمیم گیری برای امنیت سیستم لینوکس/گنوی شما می‌باشد. شما "
-"باید\n"
-"گذرواژه‌ی \"root\" را وارد نمایید. \"Root\" مدیر سیستم می‌باشد و تنها کاربری "
-"است که\n"
-"می‌تواند بروزسازی کرده، کاربران را اضاÙÙ‡ نماید، تنظیمات همگانی سیستم را تغییر "
-"دهد، و\n"
-"همچنین بقیه کارها ار این قبیل را. بطور خلاصه، \"root\" هر کاری می‌تواند انجام "
-"دهد! برای\n"
-"همین شما باید یک گذرواژه‌ای را انتخاب کنید که حدس زدنش سخت باشد - DrakX اگر\n"
-"گذرواژه خیلی ساده باشد به شما تذکر خواهد داد. همانطور که مشاهده می‌کنید، شما "
-"مجبور\n"
-"به وارد کردن یک گذرواژه نیستید، اما ما بشدت برعکس این را به شما نصیحت "
-"می‌کنیم.\n"
-"لینوکس/گنو مانند هر سیستم عامل دیگری مستعد برای خطاهای کارکنان می‌باشد.\n"
-"چون \"root\" هیچ محدودیت اجرایی ندارد و بطور غیر عمدی تمام داده‌ها بر\n"
-"قسمت‌بندی‌ها را بوسیله‌ی دستیابی بی‌توجه به قسمت‌بندی‌های خود پاک کند، این امر\n"
-"مهمی است که بسختی بتوان \"root\" شد.\n"
-"\n"
-"گذرواژه بایستی ترکیبی از نویسه‌های Ø§Ù„ÙØ¨Ø§ Ùˆ حداقل دارای Û¸ نویسه باشد. هرگز "
-"گذرواژه \n"
-"\"root\" یادداشت نشود-- آن به آسانی سیستم را تسلیم می‌کند.\n"
-"\n"
-"یک نصیحت -- گذرواژه را طولانی یا پیچیده نسازید برای اینکه شما باید بتوانید\n"
-"آنرا بخاطر بسپارید!\n"
-"\n"
-"گذرواژه هنگام نگارش آن Ø¨Ø±ØµÙØ­Ù‡ نشان داده نخواهد شد. برای Ú©Ù… کردن احتمال\n"
-"خطای نگارش کورکورانه لازم است Ú©Ù‡ گذرواژه را دوبار بنوسید. اگر شما Ø§ØªÙØ§Ù‚ÛŒ\n"
-"هر دوبار همان خطای نگارشی را انجام دهید، این گذرواژه‌ی تادرست همان می‌شود\n"
-"Ú©Ù‡ شما باید بار اول Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید.\n"
-"\n"
-"اگر می‌خواهید دسترسی با این رایانه از طریق یک کارگزار اعتبارسنجی کنترل شود،\n"
-"تکمه‌ی \"%s\" را کلیک نمایید.\n"
-"\n"
-"اگر شبکه‌ی شما نه از LDAP ،NIS، یا سرویس‌های اعتبارسنجی دامنه‌ی ویندوز\n"
-"Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کند، یک سرویس مناسب را برای \"%s\" انتخاب نمایید. اگر نمی‌دانید از "
-"کدام\n"
-"باید Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید، باید از این را از سیستم مدیریت شبکه سوال نمایید.\n"
-"\n"
-"اگر شما در بخاطر سپردن گذرواژه مشکل دارید، اگر رایانه شما هرگز به اینترنت "
-"وصل\n"
-"نخواهد شد یا شما مطلقاً به همه‌ی کسانی Ú©Ù‡ از رایانه‌ی شما Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کنند "
-"اطمینان\n"
-"دارید، می‌توانید داشتن \"%s\" را انتخاب نمایید."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
-msgstr "Ø­ÙØ§Ø¸Øª از spoofing نام‌یابی"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"در این نقطه، DrakX به شما اجازه‌ی انتخاب سطح امنیتی مورد نظر برای ماشین را \n"
-"می‌دهد. روش معمول این است که اگر ماشین حاوی داده های مهم خواهد شد، یا اگر \n"
-"آن ماشینی خواهد بود که مستقیماً در معرض اینترنت قرار می‌گیرد سطح امنیتی باید "
-"بالاتر\n"
-" گذاشته شود. ضرر این معامله در داشتن سطح بالاتر امنیتی عموماً در پرداخت "
-"آسانی \n"
-"Ø§Ø³ØªÙØ§Ø¯Ù‡ بدست آورده می‌شود. \n"
-"\n"
-"اگر نمی‌دانید کدام را انتخاب کنید، گزینه‌ی Ù¾ÛŒØ´â€ŒÙØ±Ø¶ را Ù†Ú¯Ù‡ دارید."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "بارگذاری از دیسکچه "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "چاپگرهای بدنبال آمده Ú©Ø´Ù-خودکار شده‌اند."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Uses command %s"
-msgstr "از ÙØ±Ù…ان %s Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
-msgstr "دیسکچه آغازگری"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "نروژی"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for new scanners ..."
-msgstr "در حال جستجو برای پویشگرهای جدید..."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "کارگزار اینترنت آپاچ"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "رتبه cpu (زیر مدل (نسل) شماره)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "select path to restore (instead of /)"
-msgstr "انتخاب مسیر برای بازسازی (بجای /)"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Configure bootsplash picture"
-msgstr "تنظیم عکس تصویرآغازگر"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr "گرجستان"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "چین"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "(مطمئن شوید که تمام چاپگرها وصل و روشن شده‌اند).\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "در حال خواندن داده‌های چاپگرهای نصب شده..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
-msgstr "اکنون پاک شوند"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "کارگزار"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "یک دیسکچه قالب‌بندی شده‌ی FAT را در دستگاه %s بگذارید"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "آری بدین معنی است که پردازه‌گر یک هم‌پردازه‌گر حساب دارد"
-
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
-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
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "به GRUB انتخاب کننده‌ی سیستم عامل خوش آمدید!"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
-msgstr "کنترل کننده‌های SCSI "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr "بر کارگزار LPD \"%s\", چاپگر \"%s\""
-
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
-msgstr "انتخاب مدیر نمایش"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "نام میزبان Zeroconf "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
-msgstr "ورودی اختصاصی setup/crontab:"
-
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "نشانی آی پی باید به شکل ۱.۲.۳.۴باشد"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "تنظیم سیستم چاپی CUPS"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "اکوآدور"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Add an item"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù† یک مورد"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "چاپگرهای روی این ماشین در دسترسی رایانه‌های دیگر می‌باشند"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "China (Hong Kong)"
-msgstr "هنگ‌ کنگ"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "نمی‌توانم تصویر مورد نیاز `%s' را پیدا کنم."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr "هیچ کارت صدایی شناسایی نشد. \"harddrake\" را بعد از نصب امتحان کنید"
-
-#: ../../network/drakfirewall.pm:1
-#, 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."
-msgstr ""
-"درگاه داده شده‌ی نامعتبر: %s. \n"
-"قالب مناسب \"port/tcp\" یا \"port/udp\" می‌باشد،\n"
-" درگاه آنجا بین ۱ و ۶۵۵۳۵ است."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Shell"
-msgstr "پوسته"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sao Tome and Principe"
-msgstr "سايو توم و پرینسیپ"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
-msgstr "نمی‌توان با Ø§Ø³ØªÙØ§Ø¯Ù‡ از نام کاربر %s به سیستم وارد شد (گذرواژه‌ی بد؟)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "آذربایجان (لاتین)"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package not installed"
-msgstr "بسته نصب نشده است"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "American Samoa"
-msgstr "ساموای آمریکا"
-
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Become a MandrakeExpert"
-msgstr "یک کارشناس مان‌درایک شوید"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Protocol"
-msgstr "پایان‌نامه:"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "کپی قلم‌های نگارش بر سیستم‌تان"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
-msgstr "راهنمای سخت‌درایک"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "تنظیمات کارگزار پایانه مان‌درایک"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-msgstr ""
-"\n"
-" توضیحات گزارش پشتیبان‌درایک \n"
-"\n"
-"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
-msgstr "بازسازی همه ذخیره‌های پشتیبان"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
-msgstr "روی درگاه موازی #%s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
-msgstr ""
-"قرار دادن حداقل طول و حداقل تعداد ارقام و حداقل تعداد حرو٠بزرگ گذرواژه."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr "اگر به آری گذاشته شده، درگاه‌های باز را کنترل نمایید."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "ممکن است پاک کردن رسانه چند لحظه‌ای طول بکشد."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "شما نمی‌توانید این بسته را انتخاب/غیر انتخاب نمایید"
-
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "هشدار"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- پرونده‌های دیگر:\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name"
-msgstr "نام میزبان از راه دور"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr "دستیابی به برنامه‌های X"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "حساب کردن اندازه‌ی قسمت‌بندی ویندوز"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Refresh"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Italy"
-msgstr "ایتالیا"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
-msgstr "جزایر کی‌من"
-
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "خطا در پیاده‌سازی %s: %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "نام چاپگر"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
-msgstr "ØºÛŒØ±â€ŒÙØ¹Ø§Ù„ سازی"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do it!"
-msgstr "انجام بده!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
-msgstr "%s جواب نمی‌دهد"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select model manually"
-msgstr "انتخاب دستی مدل"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Format"
-msgstr "قالب"
-
-#: ../../network/adsl.pm:1
-#, 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'"
-msgstr ""
-"معمول‌ترین روش ارتباط با adsl از طریق pppoe می‌باشد.\n"
-"بعضی ارتباطات از pptp Ùˆ برخی از dhcp Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کنند.\n"
-"اگر نمی‌دانید Ø§Ø³ØªÙØ§Ø¯Ù‡ از pppoe را انتخاب نمایید"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
-msgstr "گوناگون"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
-msgstr "زیپ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
-msgstr "کلید Alt چپ"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Load setting"
-msgstr " بارگذاری تنظیم"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-"\n"
-"\n"
-"Printerdrake نتوانست مدل چاپگر شما %s را تایین کند. Ù„Ø·ÙØ§Ù‹ مدل درست را از لیست "
-"انتخاب نماببد."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "تعیین چاپگر انتخاب شده مانند چاپگر Ù¾ÛŒØ´â€ŒÙØ±Ø¶"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
-"\n"
-"چاپگرهایی را که می‌خواهید انتقال دهید علامت زده و \n"
-"\"انتقال\" را کلیک نمایید."
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
-msgstr "آلبانیایی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "لیت‌وانی"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "ÙØ´Ø±Ø¯Ù‡"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "مدل شناسایی شده: %s %s"
-
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
-msgstr "MandrakeSoft بهترین Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± را برای شما انتخاب کرده است"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Local files"
-msgstr "پرونده‌های محلی"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "شاید"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
-msgstr "پاناما"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Can't open %s!"
-msgstr "نمی‌توان %s را باز کرد!"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
-msgstr ""
-"کارت گراÙیک شما بنظر میرسد Ú©Ù‡ یک نصب‌گر TV-OUT دارد.\n"
-"می‌توان آن را برای کار با Ø§Ø³ØªÙØ§Ø¯Ù‡ از frame-buffer تنظیم کرد.\n"
-"\n"
-"برای این کار شما باید کارت گراÙیک خود را به تلویزیون خود پیش از آغازگری "
-"رایانه وصل کنید.\n"
-"سپس ورودی \"TVout\" را در بارگزار آغازگری انتخاب نمایید.\n"
-"\n"
-"آیا این قابلیت وجود دارد؟"
-
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "نمایشگر"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"شما در حال برپاسازی چاپ به یک حساب ویندوز با گذرواژه هستید. بدلیل یک اشکال "
-"در ساختمان Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± کارگیر سامبا گذرواژه را در متن واضح بدرون خط ÙØ±Ù…ان "
-"کارگیر سامبا Ú©Ù‡ برای انتقال کار چاپ به کارگزار ویندور Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌شود می‌گذارد. "
-"بنابرین ممکن است هر کاربر بر این ماشین گذرواژه را بر ØµÙØ­Ù‡ توسط ÙØ±Ù…ان‌هایی "
-"نظیر \"ps auxwww\"نمایان سازد.\n"
-"\n"
-"ما پیشنهاد می‌کنیم Ú©Ù‡ یکی از گزینه‌های بدنبال آمده را Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید ( در همه "
-"موارد شما باید مطمئن شوید که تنها ماشین‌های شبکه محلی شما به کارگزار ویندوز "
-"دسترسی پیدا کنند، برای نمونه از طریق یک دیوارآتش):\n"
-"\n"
-"از یک حساب بدون-گذرواژه بر کارگزار ویندور خود Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید، مانند حساب "
-"\"میهمان\" یا یک حساب مخصوص برای چاپگری. Ø­ÙØ§Ø¸Øª گذرواژه را از یک حساب شخصی یا "
-"مدیریتی برندارید.\n"
-"\n"
-"کارگزار ویندوز خود را طوری برپاسازی کنید که چاپگر تحت پایان نامه‌ی LPD در "
-"دسترس قرار گیرد. سپس چاپگری را از این ماشین با نوع ارتباط \"%s\" در "
-"Printerdrake برپاسازی نمایید. \n"
-"\n"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "۶۵ هزار رنگ (۱۶بیت)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
-"\n"
-"- ذخیره بر دیسک در مسیر: %s\n"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "برداشتن قلم‌های نگارش بر سیستم‌تان"
-
-#: ../../standalone/drakgw:1
-#, 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."
-msgstr ""
-"هشدار، کارت شبکه‌ی (%s) پیش از این تنظیم شده است.\n"
-"\n"
-"آیا تنظیم مجدد خودکار را می‌خواهید؟\n"
-"\n"
-"شما می‌توانید آن را دستی انجام داده ولی شما باید بدانید که چکار دارید می‌کنید."
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "واسط تصویری در شروع"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
-msgstr " adsl"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "قسمت‌بندی‌های کاÙÛŒ برای سطح RAID %d وجود ندارد\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "قالب‌های دیسکچه حمایت شده توسط دستگاه"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "Ú©Ù¾ÛŒ کردن Ùیرم‌ویر شکست خورد، پرونده‌ی %s ÛŒØ§ÙØª نشد"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: true"
-msgstr "تنظیم محلی: درست"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
-msgstr ""
-"چاپگران بدنبال آمده تنظیم شده است. برای تغییر تنطیمات یک چاپگر، ساختن آن به "
-"Ù¾ÛŒØ´â€ŒÙØ±Ø¶ یا نمایش اطلاعات درباره آن بر آن کلیک-دوگانه نمایید. "
-
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connected"
-msgstr "وصل شده"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
-msgstr "مقدونیه‌ای"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "مالی"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
-msgstr "پل‌ها وکنترل کننده‌های سیستم"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "/پرونده/_ذخیره"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "No details"
-msgstr "بدون توضیحات"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "خیلی خوب"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Preview"
-msgstr "پیش‌نمایش"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Remote Control"
-msgstr "کنترل از راه دور"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select media for backup..."
-msgstr "Ù„Ø·ÙØ§Ù‹ رسانه را برای ذخیره‌ی پشتیبان انتخاب نمایید..."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
-msgstr "پست اشتباه!"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "کارگزار XFree86‌: %s\n"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "اجازه به کارگیرهای نازک"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "گرجستانی (\"روسی\" طرح)"
-
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_گزینه‌ها"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Your printer model"
-msgstr "مدل چاپگر شما"
-
-#: ../../any.pm:1
-#, 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)."
-msgstr ""
-"\n"
-"\n"
-"(اخطار! شما از XFS برای قسمت‌بندی ریشه‌ی خود Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کنید،\n"
-"ایجاد یک دیسک آغازگر بر روی یک ۱.۴۴مگابایت دیسکچه احتمالاً شکست \n"
-"خواهد خورد، برای اینکه XFS احتیاج به یک راه‌انداز بسیار بزرگ دارد)."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
-"\n"
-"- حذ٠پرونده‌های tar بر دیسک‌سخت بعد از ذخیره‌ی پشتیبان.\n"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
-msgstr ""
-"هیچ تصویر سی دی یا دی ÙˆÛŒ دی ÛŒØ§ÙØª نشد، Ù„Ø·ÙØ§Ù‹ برنامه نصب Ùˆ پرونده‌های rpm را Ú©Ù¾ÛŒ "
-"نمایید."
-
-#: ../advertising/04-configuration.pl:1
-#, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "ابزار تنظیمات چندمنظوری مان‌درایک"
-
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Save"
-msgstr "ذخیره"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
-msgstr "این %s حمایت نمی‌شود"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr "بارگزاری راه‌اندازها برای دستگاه‌های usb شما"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Disk"
-msgstr "دیسک"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "یک نشانی اینترنتی دستگاه چاپگر را وارد نمایید"
-
-#: ../advertising/01-thanks.pl:1
-#, 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."
-msgstr ""
-"موÙقیت MandrakeSoft بر پایه‌ی اصول Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± آزاد قرار دارد. سیستم عامل جدید "
-"شما نتیجه‌ی همکاری جامعه‌ی جهانی لینوکس می‌باشد."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "اسرائیل"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "گینه‌ی ÙØ±Ø§Ù†Ø³ÙˆÛŒ"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "Ù¾ÛŒØ´â€ŒÙØ±Ø¶: از Ú†Ù¾ به راست"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
-msgstr "یک ÙØ±Ù…ان خطی باید وارد شود!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
-msgstr "انتخاب دستی کاربر"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "تنظیم چاپگر"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "آیا می‌خواهید چاپ کردن را بر چاپگرهای ذکر شده در بالا ÙØ¹Ø§Ù„ نمایید؟\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of suid root files"
-msgstr "گذاشتن/برداشتن suid پرونده‌های مدیریت را کنترل نمایید."
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"For this to work for a W2K PDC, you will probably need to have the admin "
-"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
-"add and reboot the server.\n"
-"You will also need the username/password of a Domain Admin to join the "
-"machine to the Windows(TM) domain.\n"
-"If networking is not yet enabled, Drakx will attempt to join the domain "
-"after the network setup step.\n"
-"Should this setup fail for some reason and domain authentication is not "
-"working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows(tm) "
-"Domain, and Admin Username/Password, after system boot.\n"
-"The command 'wbinfo -t' will test whether your authentication secrets are "
-"good."
-msgstr ""
-"برای اینکه این برای یک W2K PDC کار کند، شما احتمالاً احتیاج به اجرای مدیری C:"
-"\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /add Ùˆ "
-"بازآغازگری کارگزار دارید.\n"
-"شما همچنین نیاز به نام کاربر/گذرواژه‌ی یک مدیر دامنه برای پیوند ماشین به "
-"دامنه ویندوز دارید.\n"
-"اگر شبکه‌کاری هنوز ÙØ¹Ø§Ù„ نشده است، برنامه Drakx تلاش به اتصال دامنه بعد از "
-"مرحله‌ی برپاسازی خواهد کرد.\n"
-"اگر این برپایی بهر دلیلی شکست بخورد Ùˆ اعتبار سنجی دامنه کار نکند، ÙØ±Ù…ان "
-"'smbpasswd -j DOMAIN -U USER%%PASSWORD' را با Ø§Ø³ØªÙØ§Ø¯Ù‡ از دامنه ویندوز اجرا "
-"کنید، و نام کاربر/گذرواژه را بعد ار آغازگری سیستم مدیریت نمایید.\n"
-"ÙØ±Ù…ان 'wbinfo -t' رازهای اعتبارسنجی را برای درست بودن آنها آزمایش خواهد کرد."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (درگاه %s)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از ارتباط شبکه برای ذخیره پشتیبان"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Kernel version"
-msgstr "نسخه‌ی هسته"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"وقت آن رسیده است که برنامه‌هایی را که می‌خواهید بر سیستم خود نصب کنید را مشخص "
-"نمایید. \n"
-"هزاران بسته‌ی در دسترس برای لینوکس مان‌درایک وجود دارد، و برای آسان کردن "
-"اداره‌ی آنها \n"
-"برنامه‌های مشابه گروه بندی شده‌اند. \n"
-"\n"
-"بسته‌ها به گروه های مربوط به Ø§Ø³ØªÙØ§Ø¯Ù‡ ای Ú©Ù‡ بر ماشین شما دارند مرتب شده‌اند. "
-"لینوکس \n"
-"مان‌درایک چهار نصب از پیش تایین شده در دسترس دارد. شما می‌توانید این رده‌های "
-"نصب را \n"
-"مانند انبارهای بسته های گوناگون تصور نمایید. شما می‌توانید برنامه ها را ترکیب "
-"و تطبیق کرده، \n"
-"بطوری که یک نصب پایگاه کار بتواند برنامه‌هایی را از گروه برنامه سازی نصب شده "
-"را داشته باشد. \n"
-" * \"%s\": اگر شما می‌خواهیداز ماشین خود مانند یک پایگاه کار Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید، "
-"یک یا \n"
-"چند برنامه که در گروه پایگاه کار وجود دارند را انتخاب کنید.\n"
-"\n"
-" * \"%s\": اگر شما از ماشین خود برای برنامه نویسی Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کنید، بسته‌های \n"
-"متناسب را از آن گروه انتخاب نمایید.\n"
-"\n"
-" * \"%s\": اگر ماشین شما قرار است یک کارگزار باشد، سرویس‌های معمول را که \n"
-"می‌خواهید بر ماشین خود نصب کنید را انتخاب نمایید.\n"
-"\n"
-" * \"%s\": این جایی است که شما می‌توانید محیط تصویری ترجیح داده‌ی خود را "
-"انتخاب\n"
-"نمایید. اگر می‌خواهید یک واسط تصویری در دسترس داشته باشید حداقل\n"
-"یکی باید انتخاب شود.\n"
-"\n"
-"حرکت جانمای موش روی نام یک گروه متن توضیح کوتاهی را درباره آن گروه نشان .\n"
-"خواهد داد. اگر شما هنگام اجرای یک نصب معمولی (برخلا٠یک ارتقا) هیچ گروهی \n"
-"را انتخاب نکنید، یگ Ú¯ÙØªÚ¯Ùˆ ظاهر خواهد شد Ú©Ù‡ گزینه‌های گوناگونی را برای یک "
-"نصب \n"
-"حداقل پیشنهاد می‌کند:\n"
-"\n"
-" * \"%s\": نصب حداقل تعداد بسته‌های ممکن برای داشتن یک رومیزی تصویری ÙØ¹Ø§Ù„\n"
-"\n"
-" * \"%s\": نصب سیستم پایه بعلاوه ابزارهای اصلی و مستندات آنها.\n"
-"این نصب برای برپایی یک کارگزار مناسب می‌باشد.\n"
-"\n"
-" * \"%s\": حداقل تعداد مطلق بسته‌های ضروری را برای یک سیستم لینوکس ÙØ¹Ø§Ù„\n"
-"را نصب خواهد نمود. با این نصب شما تنها یک واسط خط ÙØ±Ù…ان خواهید داشت.\n"
-"اندازه‌ی کل این نصب حدود ۶۵ مگابایت می‌باشد.\n"
-"\n"
-"شما می‌توانید جعبه‌ی \"%s\" را علامت بزنید، که در صورتی که شما با بسته‌های \n"
-"عرضه شده آشنایی داشته باشید یا اگر بخواهید بر آنچه نصب خواهد شد اختیار کامل\n"
-"داشته باشید Ù…Ùید است.\n"
-"\n"
-"اگر شما نصب را در حالت \"%s\" شروع کرده‌اید، می‌توانید تمام گروه‌ها را برای "
-"جلوگیری\n"
-"از نصب هر بسته جدید انتخاب نکنید. این برای تعمیر یا بروزسازی یک سیستم\n"
-"موجود Ù…Ùید می‌باشد."
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "پذیرش کاربر"
-
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
-msgstr "کارگزار‌"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
-msgstr "کلید Ú†Ù¾ Ø´ÛŒÙØª"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " local network"
-msgstr " شبکه محلی"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "انتخاب بد، دوباره امتحان کنید\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
-msgstr "گزارش‌های ثبت سیستم به کنسول ۱۲"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search new servers"
-msgstr "جستجوی کارگزارهای جدید"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
-msgstr "جزایر هرد و مک‌دونالد "
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
-msgstr "هیچ راه‌انداز جایگزین"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "تعویض به حالت کارشناسی"
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
-msgstr "(بر این ماشین)"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "نشانی دروازه باید به شکل ۱.۲.۳.۴باشد"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
-msgstr ""
-"وین‌مودم بر اساس \"%s\" شناسایی شده است، آیا می‌خواهید Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± لازم را نصب "
-"نمایید؟"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "در حال نگاه کردن به بسته‌هایی که قبلاً نصب شده‌اند..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از ذخیره پشتیبان ØªÙØ§ÙˆØªÛŒ"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Driver"
-msgstr "راه‌انداز"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"برنامه Linuxconf بعضی مواقع انجام کارهایی را در زمان-آغازگری \n"
-"برای نگهداری از تنظیمات سیستم ترتیب خواهد ‌داد."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVD-R device"
-msgstr "دستگاه DVDR"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "چاپگر بر کارگزار از راه دور lpd"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
-"\n"
-"-You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
-msgstr ""
-"پیش از نصب هر قلم‌نگارشی، مطمئن شوید Ú©Ù‡ شما اجازه‌ی Ø§Ø³ØªÙØ§Ø¯Ù‡ Ùˆ نصب آنها را بر "
-"سیستم خود دارید.\n"
-"\n"
-"- شما می‌توانید قلم‌ها به روش عادی نصب نمایید. بندرت قلم‌های اشکال‌دار ممکن است "
-"کارگزار X شما را متوق٠کنند. "
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"برنامه Yaboot یک بارگزار آغازگر برای Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± مک‌اینتاش بوده Ùˆ می‌تواند GNU/"
-"Linux, MacOS \n"
-"یا MacOSX را اغازگری کند. معمولاً، MacOS Ùˆ MacOSX بدرستی شناسایی Ùˆ در Ùهرست \n"
-"بارگزار آغازگر نصب می‌شوند. اگر این طور نشد، شما می‌توانید یک ورودی رادر این "
-"صحنه \n"
-"بوسیله دست اضاÙÙ‡ نمایید. دقت کنید Ú©Ù‡ اجرای درست را انتخاب می‌کنید.\n"
-"\n"
-" گزینه‌های اصلی Yaboot: \n"
-"\n"
-" * پیغام شروع: یک متن ساده پیش از اعلان آغازگر نشان داده می‌شود.\n"
-"\n"
-" * دستگاه آغازگر: نشان دهنده‌ی جایی است که می‌خواهید اطلاعات لازم برای "
-"آغازگری\n"
-"به لینوکس/گنو را قرار دهید. معمولاً، شما یک قسمت‌بندی تسمه‌آغازگری را پیشتر "
-"برای \n"
-"نگهداری این اطلاعات برپاسازی نموده‌اید.\n"
-"\n"
-" * تأخیر Ø«Ø§Ø¨Øªâ€ŒØ§ÙØ²Ø§Ø± آزاد: برخلا٠LILOØŒ دو تأخیر با yaboot موجود می‌باشد.\n"
-"اولین تأخیر با ثانیه اندازه گیری شده و در این نقطه، شما می‌توانید بین CD, OF "
-"boot, \n"
-"MacOS یا Linux انتخاب نمایید;\n"
-"\n"
-" * وقÙÙ‡ آغازگری هسته: این وقÙÙ‡ شبیه تأخیر آغازگری LILO می‌باشد.\n"
-"بعد از انتخاب لینوکس، شما این تأخیر را در یکدهم ثانیه پیش از توضیح\n"
-"هسته Ù¾ÛŒØ´â€ŒÙØ±Ø¶ خود دارید;\n"
-"\n"
-" * ÙØ¹Ø§Ù„‌سازی آغازگری از CDØŸ: علامت زدن این گزینه به شما اجازه‌ی انتخاب ``C''را "
-"برای CD\n"
-"را در اولین اعلان آغازگری میدهد.\n"
-"\n"
-" * ÙØ¹Ø§Ù„‌سازی OF BootØŸ: علامت زدن این گزینه به شما اجازه‌ی انتخاب ``N'' را "
-"برای\n"
-"Ø«Ø§Ø¨Øªâ€ŒØ§ÙØ²Ø§Ø± آزاد را در اولین اعلان آغازگری می‌دهد.\n"
-"\n"
-" * سیستم عامل Ù¾ÛŒØ´â€ŒÙØ±Ø¶: شما می‌توانید سیستم عامل آغازگر Ù¾ÛŒØ´â€ŒÙØ±Ø¶ را وقتی \n"
-"وقÙه‌ی Ø«Ø§Ø¨Øªâ€ŒØ§ÙØ²Ø§Ø± آزاد پایان می‌یابد را انتخاب نمایید."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
-msgstr "چهارشنبه"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "آلمان"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
-msgstr "اطریش"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "بدون موش"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "انتخاب اندازه‌ی رسانه‌های CD/DVD (در مگابایت)"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check permissions of files in the users' home"
-msgstr "اجازه‌های پرونده‌ها را در خانه‌ی کاربران کنترل نمایید"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
-"برای تنظیم کارت صدا خود بعد از نصب برنامه‌ی \"sndconfig\" را اجرا نمایید"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "ÙØ±Ùˆ ریختن درخت"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "تنظیم‌گر نصب خودکار"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "تنظیم شبکه‌کاری"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "کجا می‌خواهید بارگزار آغازگر را نصب نمایید؟"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"انتخاب زبان ترجیحی شما زبان مستندات، نصب کننده و سیستم شما را در کل مورد\n"
-"تاثیر قرار خواهد داد. در ابتدا منطقه‌ای را که در آن قرار دارید و سپس زبانی را "
-"Ú©Ù‡\n"
-"صحبت می‌کنید را انتخاب نمایید.\n"
-"\n"
-"کلیک بر تکمه‌ی \"%s\" به شما اجازه می‌دهد تا زبان‌های دیگری بر پایگاه کار\n"
-"خود را انتخاب کرده، و بدین طریق پرونده‌های مخصوص-زبان زا برای سیستم\n"
-"سندها و برنامه‌ها نصب نمایید. برای نمونه، اگر شما کاربرانی از اسپانیا را بر "
-"ماشین\n"
-"خود میزبان هستید، انگلیسی را مانند زمان Ù¾ÛŒØ´â€ŒÙØ±Ø¶ در درخت‌نما انتخاب نموده\n"
-"Ùˆ \"%s\" را در قسمت Ù¾ÛŒØ´Ø±ÙØªÙ‡ انتخاب نمایید.\n"
-"\n"
-"توجه کنید Ú©Ù‡ شما به انتخاب یک زبان اضاÙه‌ی تکی محدود نمی‌باشید. شما می‌توانید\n"
-"چندین زبان، حتی تمام آنها را بوسیله‌ی انتخاب جعبه‌ی \"%s\" انتخاب کنید.\n"
-"انتخاب کردن حمایت برای یک زبان بمعنی ترجمه‌ها، قلم های نگارش، غلط‌یاب‌ها\n"
-"وغیره برای آن زبان که نصب خواهد شد می‌باشد. بعلاوه، جعبه علامت \"%s\"\n"
-"به شما اجازه می‌دهد تا سیستم را مجبور به Ø§Ø³ØªÙØ§Ø¯Ù‡ از یونی‌کد (UTF-8) نمایید.\n"
-"توجه داشته باشید Ú©Ù‡ این یک قابلیت تجربی می‌باشد. اگر شما زبان های مختلÙ\n"
-"Ú©Ù‡ لازم به رمزگذاری Ù…ØªÙØ§ÙˆØª دارند را انتخاب کرده‌اید، حمایت یونی‌کد بهر حال\n"
-"نصب خواهد شد.\n"
-"\n"
-"برای تعویض بین زبان‌های گوناگون نصب شده بر سیستم، شما می‌توانید\n"
-"ÙØ±Ù…ان \"/usr/sbin/localedrake\" را مانند \"root\" برای تغییر زبان Ø§Ø³ØªÙØ§Ø¯Ù‡\n"
-"شده بوسیله‌ی تمام سیستم اجرا نمایید. اجرای این ÙØ±Ù…ان مانند یک کاربر عادی\n"
-"تنظیم زبان را تنها برای آن کاربر عوض خواهد نمود."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr "این %s توسط این نسخه‌ لینوکس مان‌درایک حمایت نمی‌شود."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "tape"
-msgstr "نوار"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr "کارگیر DHCP "
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Ùهرست کاربران بر مدیران نمایش (kdm and gdm)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (serial, old C7 type)"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "بازسازی از پرونده‌ی %s شکست خورد: %s"
-
-#: ../../fsedit.pm:1
-#, 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"
-msgstr ""
-"نمیتوانم جدول قسمت‌بندی دستگاه %s را بخوانم، بیش از حد من خراب شده است: \n"
-"می‌توانم با پاک کردن قسمت‌های بد (تمام داده‌ها از دست خواهد Ø±ÙØª) سعی کنم ادامه "
-"دهم.\n"
-" راه حل دیگر این است که به اجازه تغییر جدول قسمت‌بندی را ندهم. \n"
-"(خطا %s می‌باشد) \n"
-"\n"
-"آیا مواÙÙ‚ به از دست دادن تمام قسمت‌بندی‌ها می‌باشید؟\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Find Package"
-msgstr "ÛŒØ§ÙØªÙ† بسته"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr ""
-"آیا مطمئن هستید که می‌خواهید چاپ کردن را روی این ماشین برپاسازی نمایید؟\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "New devfs device"
-msgstr "دستگاه جدید devfs "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
-msgstr "خطا: نمی‌توان %s را ریزش کرد."
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Boot Style Configuration"
-msgstr "تنظیمات سبک آغازگری"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "همزمان سازی زمان خودکار"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "پرونده‌های ذخیره پشتیبان در %s پیدا نشد."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "ارمنی (صوتی)"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Card model:"
-msgstr "مدل کارت:"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
-msgstr "کارگیر نازک"
-
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
-msgstr "برای انتخاب لینوکس مان‌درایک از شما متشکریم"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Start Server"
-msgstr "شروع کارگزار"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr "ترکمنستان"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "All remote machines"
-msgstr "تمام ماشین‌های از راه دور"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Install themes"
-msgstr "نصب تم‌ها"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
-msgstr "اسپانول"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "آماده‌ شدن برای نصب"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
-msgstr "ویرایش میزبان/شبکه انتخاب شده"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add User -->"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù† کاربر-->"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "ناورو"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type fonts installation"
-msgstr "نصب قلم‌های نوع حقیقی"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Ú©Ø´Ù-خودکار چاپگرهای مستقیم وصل شده به شبکه محلی"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN configuration"
-msgstr "تنظیمات LAN "
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "hard disk model"
-msgstr "مدل دیسک سخت"
-
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - نگهداری از /etc/exports:\n"
-" \t\tClusternfs صدور سیستم پرونده‌ی ریشه را به کارگیرهای بدون دیسک "
-"مجاز می‌سازد. drakTermServ\n"
-" \t\tورودی صحیح را برای اجازه دسترسی ناشناس به سیستم پرونده‌ی ریشه را "
-"از کارگیرهای بدون دیسک\n"
-" \t\tبرپاسازی میکند.\n"
-"\n"
-" \t\tیک نمونه از ورودی صدور برایclusternfs:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tبا تایین SUBNET/MASK برای شبکه شما می‌باشد."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "شما نمی‌توانید از یک حجم منطقی LVM برای نقطه سوارسازی %s Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "Ú¯Ø±ÙØªÙ† قلم‌های نگارش ویندوز"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "سیستم‌های موش"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "ایرانی"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
-msgstr "کروآسی"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "دروازه:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add server"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù† کارگزار"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name"
-msgstr "نام چاپگر از راه دور"
-
-#: ../advertising/10-security.pl:1
-#, 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."
-msgstr ""
-"Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± مان‌درایک برای ایجاد امن‌ترین نسخه‌ی لینوکس ابزارهای منحصر Ø¨ÙØ±Ø¯ÛŒ را "
-"طراحی کرده است: Draksec, یک ابزار مدیریت امنیت سیستم و یک دیوارآتش قدرتمند "
-"به هم پیوسته‌اند تا خطرات رسوخ به سیستم را بشدت کم نمایند."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "دستگاه:"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Printerdrake"
-msgstr "چاپگردرایک"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "مواÙقت‌نامه مجوز"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "System Options"
-msgstr "گزینه‌ها‌ی سیستم"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Please choose the desired security level"
-msgstr "Ù„Ø·ÙØ§Ù‹ سطح امنیتی مورد نظر را انتخاب نمایید"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "این میزبان قبلاً در لیست وجود دارد، نمی‌توان آن را دوباره اضاÙÙ‡ کرد.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", USB printer"
-msgstr "، چاپگر USB"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-"ناتوان در بستن بطور مناسب mkbootdisk: \n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-"ذخیره‌های پشتیبان Ø§ÙØ²Ø§ÛŒØ´ÛŒ Ùقط پرونده‌هایی Ú©Ù‡ تغییر کرده‌اند یا از آخرین بار "
-"ذخیره‌ی پشتیبان جدید هستند را ذخیره می‌کند."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "انتخاب برنامه‌هایی که قلم ها را حمایت خواهند کرد:"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "تنظیم X"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hd"
-msgstr "دیسک"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "ترکی (مدل \"F\" سنتی)"
-
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "تبریکات!"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از شناسه مالکیت برای اجرا"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow remote root login"
-msgstr "اجازه از راه دور ورود مدیر"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Down"
-msgstr "پایین"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "چاپگر خام (بدون راه‌انداز)"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Install rpm"
-msgstr "نصب rpm"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"برای چاپ یک پرونده از خط ÙØ±Ù…ان (پنجره پایانه) شما می‌توانید یا از دستور \"%s "
-"<file>\" یا از یک ابزار چاپ تصویری Ø§Ø³ØªÙØ§Ø¯Ù‡ نمایید: \"xpp <file>\" یا "
-"\"kprinter <file>\". ابزار تصویری به شما اجازه می‌دهند که چاپگر را انتخاب "
-"کرده و گزینه تنظیمات را به آسانی تغییر دهید.\n"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "زمان باقیمانده"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "ØµÙØ­Ù‡â€ŒÚ©Ù„ید انگلیسی"
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "پیاده کردن"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "نصب‌برداری قلم‌های نگارش"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Ù„Ø·ÙØ§Ù‹ صبر کنید، در حال گذاردن سطح امنیتی..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "آلمانی (بدون کلیدهای مرده)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tÙØ±Ø³ØªØ§Ø¯Ù† پست به %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
-msgstr "در حال انتقال %s..."
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "۳۲ هزار رنگ (۱۵بیت)"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
-msgstr ""
-"شما می‌توانید با Ø§Ø³ØªÙØ§Ø¯Ù‡ از NFS یا Samba صادر نمایید. Ù„Ø·ÙØ§Ù‹ آن را Ú©Ù‡ مایلید "
-"Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید را انتخاب نمایید."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "گامبیا"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "مرکز کنترل مان‌درایک"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Reboot"
-msgstr "آغازگری مجدد"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device"
-msgstr "دستگاه چند-عملی"
-
-#: ../../network/drakfirewall.pm:1
-#, 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."
-msgstr ""
-"شما می‌توانید درگاه های Ù…ØªÙØ±Ù‚Ù‡ را وارد نمایید. \n"
-"مثال‌های معتبر: 139/tcp 139/udp.\n"
-"برای اطلاعات نگاهی به پرونده‌ی /etc/services بیاندازید. "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-نوار \n"
-
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
-msgstr ""
-"هیچ مرورگری بر سیستم شما نصب نشده است، Ù„Ø·ÙØ§Ù‹ اگر می‌خواهید سیستم راهنما را "
-"مرور کنید یک مرورگر را نصب نمایید. "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remember this password"
-msgstr "بخاطر سپردن این گذرواژه"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "اشتراک ارتباط اینترنت اکنون ÙØ¹Ø§Ù„ است."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-شبکه بوسیله SSH.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-"اگر چاپگر مورد نظر Ú©Ø´Ù-خودکار شده است، آن را از لیست انتخاب کرده Ùˆ سپس نام "
-"کاربر، گذرواژه Ùˆ/یا گروه کار را اگر لازم است اضاÙÙ‡ نمایید."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " cable"
-msgstr " کابل"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از ÙØ¶Ø§ÛŒ آزاد بر قسمت‌بندی ویندوز"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s بر %s ÛŒØ§ÙØª شد، آیا آن بطور خودکار تنظیم شود؟"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "راه‌انداز XFree86: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr "این میزبان/شبکه قبلاً در لیست است، نمی‌توان آن را دوباره اضاÙÙ‡ کرد.\n"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "بسته‌هایی را که می‌خواهید نصب کنید را انتخاب نمایید"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
-msgstr "گینه‌ی جدید پاپائو "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "دستگاه چند-عملیاتی بر یک درگاه موازی "
-
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Busy files"
-msgstr "ذخیره پشتیبان پرونده‌های سیستم"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "صربی (سیریلیک)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "شاخه‌ی انبار ذخیره‌های پشتیبان را وارد نمایید"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
-msgstr "پیغام‌های هسته را بوسیله‌ی Ù¾ÛŒØ´â€ŒÙØ±Ø¶ ساکت Ú©Ù†"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"آیا می‌خواهید این چاپگر (\"%s\")\n"
-"را چاپگر Ù¾ÛŒØ´â€ŒÙØ±Ø¶ نمایید؟"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
-msgstr "پایان گستره‌ی DHCP "
-
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "در حال ایجاد دیسک آغازگر"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Ù„Ø·ÙØ§Ù‹ صبر کنید، ارتباط شما آزمایش می‌شود..."
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "پایین آوردن شبکه"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "شناسه‌ی ورود"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
-"NFS یک پایان نامه معرو٠برای اشتراک پرونده در‌ شبکه TCP/IP\n"
-"می‌باشد. این سرویس توانایی Ù‚ÙÙ„ کردن پرونده NFS را عرضه می‌دارد."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
-msgstr "کارگیر DHCP "
-
-#: ../../standalone/harddrake2:1
-#, 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"
-msgstr ""
-"این برنامه سخت‌درایک است، یک ابزار تنظیمات Ø³Ø®Øªâ€ŒØ§ÙØ²Ø§Ø± مان‌درایک.\n"
-"<span foreground=\"royalblue3\">نسخه:</span> %s\n"
-"<span foreground=\"royalblue3\">نگارنده:</span> Thierry Vignaud &lt;"
-"tvignaud@mandrakesoft.com&gt;\n"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
-msgstr "اخراج"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "چاپ/پویش بر \"%s\""
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit raid modules"
-msgstr " حذ٠بخش‌های raid "
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"lpd is the print daemon required for lpr to work properly. It is\n"
-"basically a server that arbitrates print jobs to printer(s)."
-msgstr ""
-"lpd یک شبح چاپ لازمه برای کار کرد مناسب lpr می‌باشد. آن یک کارگزار\n"
-"که کارهای چاپ را به چاپگر(ها) ترتیب می‌دهد."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
-msgstr "ایرلندی"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sunday"
-msgstr "یک‌شنبه"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "تنظیمات ارتباط اینترنت"
-
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
-msgstr "اعداد جداشده با ویرگول"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Once you've selected a device, you'll be able to see the device information "
-"in fields displayed on the right frame (\"Information\")"
-msgstr ""
-"هنگامی که شما یک دستگاه را انتخاب کرده‌اید، می‌توانید اطلاعات دستگاه را در "
-"مناطق نمایش داده شده در قاب سمت راست (\"اطلاعات\") مشاهده نمایید"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "انتقال قاعده‌ی انتخاب شده به یک سطح بالا‌تر"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr ""
-"پویشگر بدنبال آمده\n"
-"\n"
-"%s\n"
-"بر سیستم شما موجود می‌باشد.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "آیا واقعاً می‌خواهید چاپگر \"%s\" را از بین بردارید؟"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "I can't find any room for installing"
-msgstr "نمی‌توانم هیچ جایی را برای نصب پیدا کنم"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Default printer"
-msgstr "چاپگر Ù¾ÛŒØ´â€ŒÙØ±Ø¶"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"شما چند روش را برای ارتباط به اینترنت تنظیم کرده‌اید.\n"
-"آن را Ú©Ù‡ می‌خواهید Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید را انتخاب نمایید.\n"
-"\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Modify RAID"
-msgstr "تغییر RAID"
-
-#: ../../network/isdn.pm:1
-#, 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."
-msgstr ""
-"من یک کارت PCI ISDN را شناسایی کرده‌ام، ولی نوع آن را نمی‌دانم. Ù„Ø·ÙØ§Ù‹ یک کارت "
-"PCI را در ØµÙØ­Ù‡ بعد انتخاب نمایید."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr "Ø§ÙØ²ÙˆØ¯Ù† کاربر"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "دیسک‌های-RAID %s\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Liberia"
-msgstr "لیبریا"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr "نمی‌توان بسته‌های لازم را برای تنظیم یک پویشگر با پویشگردراک نصب کرد."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-"Ù„Ø·ÙØ§Ù‹ نام واسطی را Ú©Ù‡ به اینترنت ارتباط دارد را وارد نمایید.\n"
-"\n"
-"نمونه‌ها:\n"
-"\t\tppp+ برای مودم یا ارتباطات DSL, \n"
-"\t\teth0, یا eth1 برای ارتباطات با کابل, \n"
-"\t\tippp+ برای یک ارتباط isdn.\n"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose your keyboard"
-msgstr "ØµÙØ­Ù‡â€ŒÚ©Ù„ید خود را انتخاب نمایید."
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Format partitions"
-msgstr "قالب‌بندی قسمت‌بندی‌ها"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "تعمیرخودکار تنظیمات CUPS"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Running \"%s\" ..."
-msgstr "در حال راندن \"%s\" ..."
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "enable radio support"
-msgstr "ÙØ¹Ø§Ù„ کردن حمایت رادیو"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "اشتراک پویشگر به میزبان‌های:"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "نام پرونده Loopback: %s "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Ù„Ø·ÙØ§Ù‹ چاپگری Ú©Ù‡ کارهای چاپی باید به آن برود را انتخاب نمایید."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not transfer printers"
-msgstr "چاپگرها منتقل نشوند"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Delay before booting the default image"
-msgstr "درنگ پیش از آغازگری تصویر Ù¾ÛŒØ´â€ŒÙØ±Ø¶"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Hard Disk to backup"
-msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از دیسک برای ذخیره پشتیبان"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Configure"
-msgstr "تنظیم"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake"
-msgstr "پویشگردرایک"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"اخطار، یک ارتباط اینترنت دیگر شناسایی شده است، شاید از شبکه شما Ø§Ø³ØªÙØ§Ø¯Ù‡ می‌کند"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
-msgstr "ذخیره پشتیبان کاربرها"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Ù„Ø·ÙØ§Ù‹ نام میزبان خود را وارد نمایید.\n"
-"نام میزبان شما باید یک نام میزبان کاملاً معتبر باشد،\n"
-"مانند ``mybox.mylab.myco.com''.\n"
-"شما همجنین می‌توانید نشانی آی پی دروازه را اگر آن را دارید وارد نمایید."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "انتخاب صÙ‌بند چاپگر"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Create new theme"
-msgstr "ایجاد تم‌ جدید"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
-msgstr "تشریحات ابزار مان‌درایک"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "No image found"
-msgstr "تصویری ÛŒØ§ÙØª نشد"
-
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
-"بعضی از بسته‌های مهم بدرستی نصب نشدند. \n"
-"یا دستگاه سی دی یا سی دی شما دارای اشکال می‌باشد.\n"
-"این سی دی را بر یک رایانه‌ی نصب شده با Ø§Ø³ØªÙØ§Ø¯Ù‡ از \"rpm -qpl Mandrake/RPMS/*."
-"rpm\" کنترل نمایید\n"
-
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
-msgstr "لینوکس مان‌درایک ۹۱: بهترین پایگاه برنامه سازی "
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Detected model: %s"
-msgstr "مدل شناسایی شده: %s "
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
-msgstr "\"%s\" یک پست الکترونیکی معتبر نمی‌باشد!"
-
-#: ../../standalone/drakedm:1
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"مدیر نمایش X11 به شما اجازه می‌دهد تا با جریان \n"
-"سیستم پنجره X و با حمابت راندن نشست‌های گوناگون همزمان بر\n"
-"ماشین شما بدرون سیستم بطور تصویری وارد شوید."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr "اگر به آری گذاشته شده، کنترل امنیتی روزانه را برانید."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
-msgstr "آذربایجان"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
-msgstr "نام دستگاه مورد Ø§Ø³ØªÙØ§Ø¯Ù‡ برای ذخیره پشتیبان"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
-msgstr "هیچ نواری در %s!"
-
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-" --doc <link> - پیوند به یک ØµÙØ­Ù‡ وب دیگر ( برای ظاهر خوش‌آمد "
-"گوییمدیر پنجره)\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "دوراک (US)"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr "این گذرگاه Ùیزیکی است Ú©Ù‡ دستگاه به آن وصل شده است (مثل: PCI, USB, ...)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "چاپگر چگونه وصل شده است؟"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security level"
-msgstr "سطح امنیت"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "final resolution"
-msgstr "وضوح نهایی"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
-msgstr "سرویس‌ها"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Auto configuration"
-msgstr "تنظیمات اختصاصی"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "۴ مگابایت"
-
-#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "پایگاه‌کار Ø¯ÙØªØ±ÛŒ"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"برنامه‌های Ø¯ÙØªØ±ÛŒ: واژه پردازها ((kword, abiword), برگ‌های حساب (kspread, "
-"gnumeric), نماگرهای pdf و غیره"
-
-#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "پایگاه بازی"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "برنامه‌های سرگرمی: آرکید، تخته‌ها، تاک‌تیکی، غیره"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "پایگاه چندرسانه‌ای"
-
-#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "برنامه‌های ویرایش/پخش ویدیو و صدا"
-
-#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "پایگاه اینترنت"
-
-#: ../../share/compssUsers:999
-#, fuzzy
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"مجموعه ابزار خواندن و ارسال پست و اخبار (pine, mutt, tin..) و برای مرور "
-"اینترنت"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "رایانه شبکه (کارگیر)"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "کارگیرها برای پایان‌نامه‌های گوناگون از جمله ssh"
-
-#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "تنظیمات"
-
-#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "ابزار برای آسان‌سازی تنظیم رایانه‌ی شما"
-
-#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "پایگاه دانشی"
-
-#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
-msgstr "برنامه‌های دانشی مانند gnuplot"
-
-#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "ابزار کنسول"
-
-#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "ویرایش‌گرها، پوسته‌ها، ابزار پرونده، پایانه‌ها"
-
-#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "پایگاه‌کار KDE "
-
-#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr "محیط میزی K، محیط تصویری ابتدایی با یک مجموعه از ابزار ضمیمه"
-
-#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "پایگاه Gnome"
-
-#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr "یک محیط تصویری دوستانه با مجموعه‌ای از برنامه‌ها و ابزار میزی "
-
-#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "دیگر رومیزی‌های تصویری"
-
-#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-
-#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "کتابخانه‌های برنامه سازی C و C++، برنامه‌ها و پرونده‌های شامل"
-
-#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "مستندات"
-
-#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "کتاب‌ها Ùˆ چگونگی‌ها در لینوکس Ùˆ Ù†Ø±Ù…â€ŒØ§ÙØ²Ø§Ø± آزاد"
-
-#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr "LSB"
-
-#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr "پایه‌ی استاندارد لینوکس. حمایت برنامه‌های شخص سوم"
-
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
-
-#: ../../share/compssUsers:999
-msgid "Mail"
-msgstr "پست"
-
-#: ../../share/compssUsers:999
-msgid "Postfix mail server"
-msgstr "کارگزار پست Postfix "
-
-#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "بانک ‌اطلاعات"
-
-#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "کارگزار بانک اطلاعاتی PostgreSQL یا MySQL "
-
-#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "دیوار‌آتش/مسیریاب"
-
-#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "دروازه اینترنت"
-
-#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "کارگزار نام دامنه و اطلاعات شبکه"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "کارگزار شبکه رایانه"
-
-#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "کارگزار NFS , کارگزار SMB , کارگزار Proxy , کارگزار ssh "
-
-#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
-msgstr "مجموعه از ابزار برای خواندن Ùˆ ÙØ±Ø³ØªØ§Ø¯Ù† پست Ùˆ اخبار Ùˆ برای مرور وب"
-
-#~ msgid "The setup has already been done, and it's currently enabled."
-#~ msgstr "پیکربندی قبلا انجام شده است Ùˆ اکنون ÙØ¹Ø§Ù„ می‌باشد. "
-
-#~ msgid "Logs"
-#~ msgstr "ثبت‌ها"
-
-#~ msgid "The setup has already been done, but it's currently disabled."
-#~ msgstr "این تنظیم قبلا انجام شده ولی در حال حاضر ÙØ¹Ø§Ù„ نمی‌باشد."
-
-#~ msgid "Profile "
-#~ msgstr "نمایه"
-
-#~ msgid ""
-#~ "Welcome to the Internet Connection Sharing utility!\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ "Click on Configure to launch the setup wizard."
-#~ msgstr ""
-#~ "به ابزار اشتراک ارتباط اینترنت خوش آمدید! \n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ "بر روی تنظیم برای پرتاب جادوگر برپاسازی کلیک نمایید."
-
-#~ msgid "Internet Connection Sharing configuration"
-#~ msgstr "تنظیم اشتراک ارتباط اینترنت"
-
-#~ msgid "No Internet Connection Sharing has ever been configured."
-#~ msgstr "هیچ اشتراک ارتباط اینترنت تاکنون تنظیم نشده است."
-
-#~ msgid "when checked, owner and group won't be changed"
-#~ msgstr "اگر انتخاب شود، مالک و گروه تغییر نخواهند کرد"
-
-#~ msgid ""
-#~ "XawTV isn't installed!\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do have a TV card but DrakX has neither detected it (no bttv nor "
-#~ "saa7134\n"
-#~ "module in \"/etc/modules\") nor installed xawtv, please send the\n"
-#~ "results of \"lspcidrake -v -f\" to \"install@mandrakesoft.com\"\n"
-#~ "with subject \"undetected TV card\".\n"
-#~ "\n"
-#~ "\n"
-#~ "You can install it by typing \"urpmi xawtv\" as root, in a console."
-#~ msgstr ""
-#~ "XawTV نصب نشده است!\n"
-#~ "\n"
-#~ "\n"
-#~ "اگر شما یک کارت TV دارید ولی نه DrakX توانسته آن را شناسایی (نه بخش bttv "
-#~ "نه saa7134\n"
-#~ "در \"/etc/modules\") نه xawtv نصب شده, Ù„Ø·ÙØ§ نتیجه \n"
-#~ " \"lspcidrake -v -f\" را به \"install@mandrakesoft.com\" با موضوع\n"
-#~ " \"undetected TV card\" گزارش دهید.\n"
-#~ "\n"
-#~ "\n"
-#~ "شما می‌توانتد آن را بوسیله نوشتن \"urpmi xawtv\" در حالت مدیریت سیستم، در "
-#~ "یک پایانه نصب نمایید."
-
-#~ msgid "http://www.mandrakelinux.com/en/91errata.php3"
-#~ msgstr "http://www.mandrakelinux.com/en/91errata.php3"
-
-#~ msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-
-#~ msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#~ msgid "Error while parsing \"MODULES\" line from %s"
-#~ msgstr "خطا هنگام تجزیه خط \"MODULES\" از %s"
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index 62b00893d..68958aac3 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -1,2062 +1,1150 @@
-# DrakX-fi.po - Finnish translation
+# DrakX-fi.po - Finnish Translation
#
-# Copyright (C) 2002,2003 Free Software Foundation, Inc.
+# Copyright (C) 2002 Free Software Foundation, Inc.
# Copyright (C) 2002 Mandrakesoft
# Matias Griese <mahagr@utu.fi>, 2001.
-# Thomas Backlund <thomas@inritel.com>, 2002.
-# Taisto Kuikka <taisto@aerith.ronin.jyu.fi>, 2003.
-# Thomas Backlund <tmb@iki.fi>, 2003.
+# Thomas Backlund <thomas.backlund@inritel.com>, 2002
#
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX-fi - MDK Release 9.2\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
-"PO-Revision-Date: 2003-09-19 02:15+0300\n"
-"Last-Translator: Thomas Backlund <tmb@iki.fi>\n"
-"Language-Team: Finnish <cooker-i18n@mandrake-linux.com>\n"
+"Project-Id-Version: DrakX-fi - MDK Release 9.1\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"PO-Revision-Date: 2002-12-01 02:27+0200\n"
+"Last-Translator: Thomas Backlund <thomas.backlund@inritel.com>\n"
+"Language-Team: Finnish <cooker-i18n@linux-mandrake.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.2\n"
+"X-Generator: KBabel 1.0\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Tarkistetaan osioita liitospisteiden löytämiseksi"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr ""
-"jos 'kyllä', tarkistetaan 'suid root' tiedostojen lisäämiset/poistamiset."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s vaatii konenimen, MAC-osoitteen, IP-osoitteen, nbi-kuvan, 0/1 "
-"THIN_CLIENT-asetukselle, 0/1 paikallisasetukselle...\n"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr "Asetukset muutettu - käynnistetäänkö clusternfs/dhcpd uudestaan?"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tPoista=%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Erotusvarmistukset tallentavat ainoastaan edellisen perusvarmistuksen "
-"jälkeen muuttuneet tai luodut tiedostot."
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kt"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "network printer port"
-msgstr "verkkotulostimen portti"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kt"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Aseta levyke asemaan:"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Mt"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr "DrakTermServ"
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Mt"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Mt"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Osiotaulun varmuuskopio ei ole saman kokoinen\n"
-"Jatketaanko silti?"
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Mt"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Which username"
-msgstr "Mikä käyttäjätunnus"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Mt"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "Minkä tyyppisen tietueen haluat lisätä?"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Mt"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Restore partition table"
-msgstr "Palauta osiotaulu"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Mt tai enemmän"
-# Asennuksen sivuvalikko
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure hostname..."
-msgstr "Aseta konenimi..."
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "Valitse X-palvelin"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "CUPS-palvelimella \"%s\""
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "X-palvelin"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Post-install configuration"
-msgstr "Asennuksen jälkeiset toiminnot"
+#: ../../Xconfig/card.pm_.c:230
+msgid "Multi-head configuration"
+msgstr "Monen näytön asettaminen"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-"Nykyinen turvallisuustaso on %s\n"
-"Valitse oikeudet jos haluat nähdä/muokata asetukset"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Käytä sen sijaan ``%s'':ää"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Type"
-msgstr "Tyyppi"
+"Järjestelmäsi tukee monen näytön laitteistokokoonpanoa.\n"
+"Mitä haluat tehdä?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
-msgstr ""
-"\n"
-"Myöskään tulostimia, jotka ovat asetettuja valmistajien tuottamilla PPD-"
-"tiedostoilla tai natiivi CUPS-ajureilla, ei voida siirtää."
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
+msgstr "Valitse näytönohjaimen muistin määrä"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "XFree:n asentaminen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Seuraavat tulostimet\n"
-"\n"
-"%s%s\n"
-"on kytketty suoraan koneeseesi"
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Mitä versiota XFree-palvelimesta haluat käyttää?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
-msgstr "Keski-Afrikan tasavalta"
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
+msgstr "Aseta kaikki näytöt erikseen"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "Yhdyskäytävän laite"
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
+msgstr "Käytä Xinerama-laajennusta"
-#: ../../standalone/drakfloppy:1
+#: ../../Xconfig/card.pm_.c:389
#, c-format
-msgid "Advanced preferences"
-msgstr "Lisävalinnat"
+msgid "Configure only card \"%s\"%s"
+msgstr "Määrittele vain kortin \"%s\" (%s) asetukset"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Net Method:"
-msgstr "Verkko tapa:"
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Ethernetcard"
-msgstr "Verkkokortti"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s laitteistokiihdytetyllä 3D-tuella"
-#: ../../security/l10n.pm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-"Jos asetettu, raportit lähetetään tähän osoitteeseen, muuten root saa ne."
-
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr "Parametrit"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "no"
-msgstr "ei"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Auto-detect"
-msgstr "Automaattinen tunnistaminen"
+"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit vain XFree %s:"
+"ssa.\n"
+"Korttisi on tuettu myös XFree %s:ssa, jossa on mahdollisesti parempi 2D-tuki."
-#: ../../standalone/drakconnect:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid "Interface:"
-msgstr "Liitäntä:"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa."
-#: ../../steps.pm:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid "Select installation class"
-msgstr "Asennuksen luokka"
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s KOKEELLISELLA laitteistokiihdytetyllä 3D-tuella"
-#: ../../network/tools.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
+"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."
msgstr ""
-"Järjestelmä ei näytä olevan yhteydessä Internetiin.\n"
-"Kokeile muuttaa Internet-asetuksia."
+"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit vain XFree %s:"
+"ssa.\n"
+"HUOMAA, ETTÄ TUKI ON KOKEELLINEN JA VOI JUMITTAA TIETOKONEESI.Korttisi on "
+"tuettu myös XFree %s:ssa, jossa on mahdollisesti parempi 2D-tuki."
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"Yhdistä tulostimesi Linux-palvelimeen ja salli Windows-asiakkaiden käyttää "
-"sitä.\n"
-"\n"
-"Haluatko varmasti jatkaa asettamalla tulostimen tällä tavalla?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belarus"
-msgstr "Belarus"
+"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa.\n"
+"HUOMAA, ETTÄ TUKI ON KOKEELLINEN JA VOI JUMITTAA TIETOKONEESI."
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Virhe kirjoitettaessa tiedostoon %s"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (näytönohjaimen ajurin asennus)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result to syslog"
-msgstr "Raportoi tarkistuksien tulokset järjestelmälokiin"
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "Mukautettu"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
-msgstr ""
-"apmd:ta käytetään valvomaan akkujen tilaa ja raportoimaan siitä syslogin\n"
-"kautta. apmd:tä voidaan myös käyttää sulkemaan kone akkujen ollessa tyhjiä."
+#: ../../Xconfig/main.pm_.c:102
+msgid "Graphic Card"
+msgstr "Näytönohjain"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tape to backup"
-msgstr "Käytä nauhaa varmuuskopiointiin"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "Näyttö"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Seuraavat paketit asennetaan"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "Resoluutio"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS configuration"
-msgstr "CUPS asetukset"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
+msgstr "Kokeile"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total progress"
-msgstr "Kokonaisedistyminen"
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Optiot"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Ei tarpeeksi tilaa uusien osioiden luomiseksi"
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "Ok"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "Siirretään"
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "Lopeta"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
"\n"
-"Drakbackup activities via %s:\n"
-"\n"
+"%s"
msgstr ""
+"Säilytä muutokset?\n"
+"Nykyiset asetukset ovat:\n"
"\n"
-"Drakbackup toimintoja %s kautta:\n"
-"\n"
+"%s"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "yes"
-msgstr "kyllä"
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "Valitse monitori"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr "("
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
+msgstr "Kytke ja Käytä"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "Yleinen"
+
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+msgid "Vendor"
+msgstr "Valmistaja"
+
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr "Kytke ja käytä tunnistus epäonnistui. Ole hyvä ja valitse oikea näyttö"
+
+#: ../../Xconfig/monitor.pm_.c:114
msgid ""
-"Welcome to The Network Configuration Wizard.\n"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"We are about to configure your internet/network connection.\n"
-"If you don't want to use the auto detection, deselect the checkbox.\n"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
-"Tervetuloa verkon asettamisvelhoon\n"
+"Sinun tulee valita vaakavirkistystaajuus näytöllesi. Voit joko valita "
+"jonkin\n"
+"allaolevista alueista, jotka vastaavat teollisuusstandardityyppejä tai "
+"syöttää\n"
+"jonkin muun alueen.\n"
"\n"
-"Seuraavassa vaiheessa määritellään Internet- / verkkoasetuksesi.\n"
-"Jos et halua käyttää automaattista tunnistusta, poista kyseinen valinta.\n"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ")"
+"On HYVIN TÄRKEÄÄ, että et valitse näyttötyyppiä, jonka "
+"vaakavirkistystaajuus\n"
+"on suurempi kuin oman näyttösi. Jos epäröit, valitse pienempi taajuus."
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "Libanon"
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "Vaakavirkistystaajuus"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "Pystyvirkistystaajuus"
-#: ../../services.pm:1
-#, c-format
-msgid "Stop"
-msgstr "Pysäytä"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 väriä (8 bittiä)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Edit selected host"
-msgstr "Muokkaa valittua konetta"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tuhatta väriä (15 bittiä)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD device defined!"
-msgstr "Yhtäkään CD-asemaa ei määritetty!"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tuhatta väriä (16 bittiä)"
-#: ../../network/shorewall.pm:1
-#, fuzzy, c-format
-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 ""
-"Ole hyvä ja syötä liitynnän nimi jolla yhdistetään Internetiin.\n"
-"\n"
-"Esimerkkejä:\n"
-"\t\tppp+ modeemi tai DSL yhteyksille.\n"
-"\t\teth0 tai eth1 kaapeliyhteydelle.\n"
-"\t\tppp+ ISDN-yhteydelle.\n"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miljoonaa väriä (24 bittiä)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tKäytä .backupignore tiedostoja\n"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miljardia väriä (32 bittiä)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "Bulgaria (foneettinen)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "Resoluutiot"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP start ip"
-msgstr "DHCP:n alueen alku"
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "Valitse resoluutio ja värisyvyys"
-#: ../../Xconfig/card.pm:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "256 kB"
-msgstr "256 kt"
+msgid "Graphics card: %s"
+msgstr "Näytönohjain: %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Don't rewind tape after backup"
-msgstr "Älä kelaa nauhaa alkuun varmistuksen jälkeen"
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr "Peruuta"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "Käyttöjärjestelmän lataajan pääasetukset"
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "Kokeile asetuksia"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
-msgstr ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "Haluatko kokeilla asetuksia?"
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Tape"
-msgstr "Nauha"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Varoitus: näytönohjaimesi testaaminen voi jumittaa tietokoneen"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid "Malaysia"
-msgstr "Malesia"
+msgid "Keyboard layout: %s\n"
+msgstr "Näppäinasettelu: %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid "Scanning network..."
-msgstr "Tutkitaan verkkoa..."
+msgid "Mouse type: %s\n"
+msgstr "Hiiren tyyppi: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Tällä valitsimella voit palauttaa minkä tahansa version\n"
-"/etc-hakemistostasi."
+msgid "Mouse device: %s\n"
+msgstr "Hiiren laite: %s\n"
-#: ../../standalone/drakedm:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr "Muutos on tehty, haluatko käynnistää palvelun dm uudelleen ?"
+msgid "Monitor: %s\n"
+msgstr "Näyttö: %s\n"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Swiss (French layout)"
-msgstr "Sveitsi (Ranskalainen järjestys)"
+msgid "Monitor HorizSync: %s\n"
+msgstr "Näytön vaakajuovataajuus: %s\n"
-#: ../../raid.pm:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid epäonnistui (ehkä raidtools puuttuu?)"
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Näytön virkistystaajuus: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid "August"
-msgstr "Elokuu"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "FTP server"
-msgstr "NTP-palvelin"
+msgid "Graphics card: %s\n"
+msgstr "Näytönohjain: %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid "Webcam"
-msgstr "Webbikamera"
+msgid "Graphics memory: %s kB\n"
+msgstr "Grafiikkamuisti: %s kt\n"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "Prosessorin (kakkostason) välimuistin koko"
+msgid "Color depth: %s\n"
+msgstr "Värisyvyys: %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid "Soundcard"
-msgstr "Äänikortti"
+msgid "Resolution: %s\n"
+msgstr "Resoluutio: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Month"
-msgstr "Kuukausi"
+msgid "XFree86 server: %s\n"
+msgstr "XFree86 palvelin: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Search for files to restore"
-msgstr "Etsi tiedostoja jota haluat palauttaa"
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 ajurit: %s\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Luxembourg"
-msgstr "Luxemburg"
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "Graafinen tila käynnistyksessä"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:62
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
-"Tulostaaksesi tiedoston komentoriviltä (pääteikkunasta) käytä komentoa \"%s "
-"<tiedosto>\".\n"
+"X voidaan laittaa käynnistymään automaattisesti käynnistyksen yhteydessä.\n"
+"Haluatko käynnistää X:n automaattisesti?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Level %s\n"
-msgstr "Taso %s\n"
+#: ../../Xconfig/various.pm_.c:73
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+"Näyttää siltä että näytönohjaimessasi on TV-Ulos liitintä.\n"
+"Sitä voidaan asettaa toimimaan näyttöpuskurin kanssa.\n"
+"\n"
+"Saadaaksesi tämän toimimaan, sinun pitää kytkeä näyhtönohjaimesi\n"
+"televisioon ennen kuin käynnistät tietokoneesi. Valitse sitten \"TV-Out\" "
+"valinta käynnistysvalikossa.\n"
+"\n"
+"Onko sinulla tämä ominaisuus?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac (phonetic)"
-msgstr "Syyria (foneettinen)"
+#: ../../Xconfig/various.pm_.c:85
+msgid "What norm is your TV using?"
+msgstr "Mikä normi televisiosi käyttää?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Iran"
-msgstr "Iran"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
+msgstr "Ensimmäinen sektori käynnistysosiolla"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus"
-msgstr "Väylä"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
+msgstr "Levyn ensimmäinen sektori (MBR)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Iraq"
-msgstr "Irak"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "SILOn asennus"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "connecting to %s ..."
-msgstr "yhdistetään kohteeseen %s ..."
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
+msgstr "Minne haluat asentaa käyttöjärjestelmän lataajan?"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"Mahdollinen lähiverkon osoiteristiriita löydetty nykyisillä asetuksilla %s!\n"
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "LILO/grub asennus"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring..."
-msgstr "Asetetaan..."
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
+msgstr "SILO"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
-msgstr ""
-"Useimmille nykyisille TV-korteille GNU/Linux ytimen bttv-moduuli tunnistaa "
-"automaattisesti oikeat parametrit.\n"
-"Jos korttisi on tunnistettu väärin, voit pakottaa oikean vastaanottimen sekä "
-"kortin tyypin täällä. Valitse TV-korttisi parametrit tarvittaessa."
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
+msgstr "LILO tekstipohjaisella valikolla"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Password (again)"
-msgstr "Salasana (uudelleen)"
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
+msgstr "LILO graafisella valikolla"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search installed fonts"
-msgstr "Etsi asennetut kirjasimet"
+#: ../../any.pm_.c:142
+msgid "Grub"
+msgstr "Grub"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default desktop"
-msgstr "Oletus työpöytä"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "Käynnistä DOSista/Windowsista (loadlin)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
-msgstr ""
-"Lähettääksesi virheraportin, paina \"Raportti\" painiketta.\n"
-"Tämä avaa webbiselaimen osoitteen: %s\n"
-"mistä löydät täytettävän lomakkeen. Yllä näytetyt tiedot lähetetään yllä\n"
-"mainitulle palvelimelle."
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr "Venezuela"
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "Käyttöjärjestelmän lataajan pääasetukset"
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "IP address"
-msgstr "IP-osoite"
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
+msgstr "Käytettävä käyttöjärjestelmän lataaja"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "Valitse koot"
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "Käyttöjärjestelmän lataajan asennus"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
-"Lista vahingoittuneista tiedoista:\n"
-"\n"
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "Käynnistyslaite"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
-msgstr ""
-"Voidaan liittää vain erikseen määritettynä\n"
-"(esim. -a valitsin ei liitä tiedostojärjestelmää)."
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "Tiivis"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"Modeemisi ei ole tuettu tässä järjestelmässä.\n"
-"Katso osoitteesta http://www.linmodems.org/"
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "tiivis"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose another partition"
-msgstr "Valitse toinen osio"
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "Näyttötila"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Current user"
-msgstr "Nykyinen käyttäjä"
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
+msgstr "Tauko ennen oletusjärjestelmän käynnistystä"
+
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
+msgid "Password"
+msgstr "Salasana"
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
-msgstr "Käyttäjätunnus"
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "Salasana (uudelleen)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Vasen \"Windows\" näppäin"
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "Rajoita komentorivioptioita"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "Guyana"
+#: ../../any.pm_.c:171
+msgid "restrict"
+msgstr "rajoita"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "dhcpd palvelinasetukset"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "Tyhjennä /tmp jokaisella käynnistyskerralla"
-#: ../../standalone/drakperm:1
+#: ../../any.pm_.c:174
#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Käytetään hakemistolle:\n"
-" ainoastaan hakemiston omistaja voi poistaa sen"
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Tarkka muistin koko, jos tarpeen (löydettiin %d Mt)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " Novell palvelimella \"%s\", tulostin \"%s\""
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
+msgstr "Käytä montaa profiilia"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Name"
-msgstr "Tulostimen nimi"
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "Anna muistin koko megatavuina (Mt)"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
+#: ../../any.pm_.c:182
+msgid ""
+"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
+"Asetus ``Rajoita komentorivioptioita'' ei ole hyödyllinen ilman salasanaa"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
-msgstr "Poista moduuli"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "Yritä uudelleen"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Password"
-msgstr "Salasana"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "Salasanat poikkeavat toisistaan"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Lisäasetukset"
+#: ../../any.pm_.c:191
+msgid "Init Message"
+msgstr "Käynnistysviesti"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr "Tunnistetaan HP monitoimilaitettasi"
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
+msgstr "Vapaa Firmware-viive"
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "Juuri"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
+msgstr "Aikaviive täyttyi ytimen käynnistyksessä"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "Valitse olemassaoleva RAID johon lisätään"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
+msgstr "Mahdollista käynnistys CD:ltä?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turkki (perinteinen \"Q\"-malli)"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
+msgstr "Mahdollista käynnistys OFilta?"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo message not found"
-msgstr "Lilo viesti ei löydy"
+#: ../../any.pm_.c:197
+msgid "Default OS?"
+msgstr "Oletuskäyttöjärjestelmä?"
-#: ../../services.pm:1
-#, c-format
+#: ../../any.pm_.c:231
msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
+"\n"
+"On which drive are you booting?"
msgstr ""
-"Automaattinen ytimen otsikkotiedoston korjaus /boot-hakemistossa "
-"tiedostoille\n"
-"/usr/include/linux/{autoconf,versio}.h"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
-msgstr "jos tarvitaan"
+"Päätit asentaa käynnistyslataajaan osioon.\n"
+"Tämä viittaa siihen että sinulla on jo käynnistyslataajan\n"
+"käynnistys-kovalevylläsi (esim. System Commander).\n"
+"\n"
+"Mikä on sinun käynnistys-kovalevy?"
-#: ../../standalone/drakclock:1
-#, c-format
+#: ../../any.pm_.c:247
msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
+"Tässä ovat tämänhetkiset käynnistys-valikon tietueet.\n"
+"Voit lisätä uusia tai muuttaa olemassaolevia."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Failed..."
-msgstr "Palautus epäonnistui..."
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "Lisää"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr "Tallenna tämän järjestelmän salasana drakbackup asetuksissa."
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "Valmis"
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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 ""
-"Johdanto\n"
-"\n"
-"\n"
-"HUOM!! Tämä on vapaasti suomennettu teksti Mandrake Linux -jakelun\n"
-"lisenssiehdoista. Alkuperäinen teksti löytyy tämän sivun lopusta.\n"
-"\n"
-"Käyttöjärjestelmään ja muihin Mandrake Linux jakelun eri osiin viitataan\n"
-"tästä eteenpäin nimellä \"Ohjelmisto\". Ohjelmisto sisältää, mutta ei "
-"rajoitu\n"
-"ainoastaan niihin, pakettien yhdistelmät, menetelmät, säännöt ja\n"
-"dokumentaation jotka kuuluvat käyttöjärjestelmään sekä Mandrake Linux\n"
-"-jakeluun kuuluvat komponentit.\n"
-"\n"
-"\n"
-"\n"
-"1. Käyttöoikeussopimus (\"Lisenssi\")\n"
-"\n"
-"\n"
-"Ole hyvä ja lue tämä dokumentti huolellisesti. Tämä dokumentti on Lisenssi-\n"
-"sopimus sinun ja MandrakeSoft S.A.:n välillä ja koskee Ohjelmistoa.\n"
-"Asentamalla, kopioimalla tai käyttämällä Ohjelmistoa millä tavalla tahansa,\n"
-"annat nimenomaisen hyväksynnän ja suostut mukautumaan tämän Lisenssin\n"
-"sääntöihin ja ehtoihin. Jos et suostu johonkin osaan tästä Lisenssistä,\n"
-"sinulla ei ole lupaa asentaa, kopioida tai käyttää tätä Ohjelmistoa. Mitään\n"
-"yritystä asentaa, kopioida tai käyttää Ohjelmistoa tavalla, joka ei ole "
-"tämän\n"
-"Lisenssin sääntöjen ja ehtojen mukainen, ei hyväksytä ja sen kaltaiset\n"
-"yritykset päättävät oikeutesi tämän Lisenssin alla välittömästi. Lisenssin\n"
-"päättyessä sinun pitää välittömästi tuhota kaikki Ohjelmiston kopiot.\n"
-"\n"
-"\n"
-"\n"
-"2. Rajoitettu Takuu\n"
-"\n"
-"\n"
-"Ohjelmisto ja sen mukana seuraavat dokumentaatiot tarjotaan sellaisenaan, "
-"ilman\n"
-"mitään takuita, voimassa olevan lain rajojen sisällä. Sikäli kuin takuuta "
-"ei\n"
-"voimassa olevan lain mukaan voi kiistää tai rajoittaa, MandrakeSoft S.A. ei\n"
-"missään nimessä ole vastuussa erikoisille, odottamattomille, välittömille "
-"tai\n"
-"välillisille vahingoille (sisältäen ilman rajoituksia vahingot menetetystä\n"
-"työstä, työn keskeytyksestä, taloudellisesta tappiosta, laillisista\n"
-"kustannuksista ja sakoista johtuen tuomioistuimen päätöksestä, tai minkä\n"
-"tahansa muun merkittävän tappion takia) jotka syntyvät käytöstä tai\n"
-"kyvyttömyydestä käyttää Ohjelmistoa, vaikka MandrakeSoft S.A.:lle on "
-"tiedotettu\n"
-"tällaisen vahingon mahdollisuuden tai tapahtuman olemassaolosta.\n"
-"\n"
-"\n"
-"RAJOITETTU VASTUU JOKA LIITTYY KIELLETTYJEN \n"
-"OHJELMIEN KÄYTTÖÖN TAI HALLUSSAPITOON JOISSAKIN \n"
-"MAISSA\n"
-"\n"
-"\n"
-"Sikäli kuin takuuta ei voimassa olevan lain mukaan voi kiistää tai "
-"rajoittaa,\n"
-"MandrakeSoft S.A. tai sen jakelijat eivät missään nimessä ole vastuussa\n"
-"erikoisille, odottamattomille, välittömille tai välillisille vahingoille\n"
-"(sisältäen ilman rajoituksia vahingot menetetystä työstä, työn "
-"keskeytyksestä,\n"
-"taloudellisesta tappiosta, laillisista kustannuksista ja sakoista johtuen\n"
-"tuomioistuimen päätöksestä, tai minkä tahansa muun merkittävän tappion "
-"takia)\n"
-"jotka johtuvat ohjelmistokomponenttien hallussapidosta tai käytöstä tai\n"
-"jotka johtuvat ohjelmistokomponenttien lataamisesta joltakin Mandrake "
-"Linuxin\n"
-"sivustoilta, jotka ovat kiellettyjä tai rajoitettuja joissakin maissa\n"
-"paikallisen lain voimalla.\n"
-"\n"
-"Tämä rajoitettu vastuu koskee, muttei rajoitu niihin, vahvaa salausta\n"
-"käyttäviä komponentteja jotka kuuluvat Ohjelmistoon.\n"
-"\n"
-"\n"
-"\n"
-"3. GPL Lisenssi ja samankaltaiset Lisenssit\n"
-"\n"
-"\n"
-"Ohjelmisto koostuu komponenteista, jotka ovat eri henkilöiden tai tahojen\n"
-"luomia. Suurinpaan osaan komponenteista sovelletaan GNU General Public "
-"License\n"
-"(Yleinen Julkinen Lisenssi, tästä eteenpäin \"GPL\") tai sen kaltaisten\n"
-"lisenssien ehtoja ja sääntöjä. Suurin osa näistä lisensseistä sallii sinun\n"
-"kopioida, sovittaa ja levittää eteenpäin komponentteja joita ne koskevat. "
-"Ole\n"
-"hyvä ja lue jokaisen komponentin lisenssin ehdot ja säännöt ennen kuin "
-"käytät\n"
-"sitä. Jokainen kysymys koskien komponentin lisenssiä pitäisi ohjata "
-"komponentin\n"
-"tekijälle MandrakeSoftin sijasta. MandrakeSoft S.A.:n tekemiin ohjelmiin\n"
-"sovelletaan GPL-lisenssiä. MandrakeSoft S.A.:n tekemiin dokumentaatioihin\n"
-"sovelletaan erillistä lisenssiä. Lue dokumentaatiota saadaksesi lisää "
-"tietoa.\n"
-"\n"
-"\n"
-"\n"
-"4. Älyllisten Omaisuuksien Oikeudet\n"
-"\n"
-"\n"
-"Kaikki oikeudet Ohjelmiston komponentteihin kuuluvat niiden tekijöille, ja "
-"ne\n"
-"ovat suojattuja älyllisten omaisuuksien- ja kopiointisuojalailla, jotka\n"
-"koskevat ohjelmistoja. MandrakeSoft S.A. pidättää oikeuden muokata tai "
-"sovittaa\n"
-"Ohjelmistoa, joko kokonaan tai osittain, kaikilla tavoilla jokaiseen "
-"tarpeeseen.\n"
-"\"Mandrake\", \"Mandrake Linux\" ja kaikki niihin kuuluvat logot ovat\n"
-"MandrakeSoft S.A. rekisteröityjä tavaramerkkejä.\n"
-"\n"
-"\n"
-"\n"
-"5. Sovellettava laki.\n"
-"\n"
-"\n"
-"Jos ilmenee, että jokin osa tästä sopimuksesta on mitätön, laiton tai\n"
-"täytäntöönpanokelvoton, kyseinen osa poistetaan sopimuksesta. Sopimus "
-"säilyy\n"
-"muilta osin pätevänä ja täytäntöönpanokelpoisena ehtojensa mukaisesti. "
-"Tämän\n"
-"sopimuksen ehtoja ja sääntöjä sovelletaan Ranskan lain mukaan. Kaikki "
-"kiistat\n"
-"tämän Lisenssin ehdoista pyritään selvittämään tuomioistuimen ulkopuolella.\n"
-"Viimeisenä vaihtoehtona kiista luovutetaan soveltuvaan tuomioistuimeen\n"
-"ratkaistavaksi Pariisissa - Ranskassa.\n"
-"\n"
-"Jos teillä on kysymyksiä tästä sopimuksesta, olkaa hyvä ja ottakaa yhteyttä\n"
-"MandrakeSoft S.A.:iin.\n"
-"\n"
-"\n"
-"\n"
-"\n"
-"ALKUPERÄINEN ENGLANNINKIELINEN TEKSTI:\n"
-"\n"
-"\n"
-"\n"
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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"
+#: ../../any.pm_.c:257
+msgid "Modify"
+msgstr "Muokkaa"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default user"
-msgstr "Oletuskäyttäjä"
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "Minkä tyyppisen tietueen haluat lisätä?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"edistymispalkin x-koordinaatti\n"
-"(vasen yläkulma)"
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "Linux"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Current interface configuration"
-msgstr "Nykyiset liitäntäasetukset"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "Muu käyttöjärjestelmä (SunOS...)"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - rivitulostus demoni"
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "Muu käyttöjärjestelmä (MacOS...)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
-msgstr ""
-"\n"
-"Jos sinulla on ISA-kortti, seuraavien arvojen pitäisi olla oikeat.\n"
-"\n"
-"Jos sinulla on PCMCIA-kortti sinun täytyy tietää korttisi \"IRQ\" ja \"I/O"
-"\".\n"
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "Muu käyttöjärjestelmä (Windows...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not print any test page"
-msgstr "Älä tulosta testisivua"
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "Kuva"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr "Gurmukhi"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "Juuri"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s on jo käytössä\n"
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
+msgstr "Liitä"
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
-msgstr "Pakota No APIC"
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr ""
-"Salasana on liian yksinkertainen (sen tulee olla ainakin %d merkkiä pitkä)"
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "Luku-kirjoitus"
-#: ../../standalone.pm:1
-#, c-format
-msgid "[keyboard]"
-msgstr "[näppäimistö]"
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "Taulukko"
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP-välityspalvelin:"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "Turvaton"
-# Asennuksen sivuvalikko
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install List"
-msgstr "Asennuslistaus"
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "Otsikko"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Change\n"
-"Restore Path"
-msgstr ""
-"Muuta\n"
-"palautushakemisto"
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "Oletus"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
-msgstr "Näytä vain valittu päivä"
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
+msgstr "Initrd:n koko"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tRajoita levyn käyttö %s megatavuun\n"
+#: ../../any.pm_.c:318
+msgid "NoVideo"
+msgstr "Ei Näyttöä"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 kt"
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "Poista tietue"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(Huomio: rinnakkaisportteja ei voida tunnistaa automaattisesti)"
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "Tyhjää otsikkoa ei sallita"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr "<control>U"
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
+msgstr "Sinun täytyy määritellä ydin"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Millainen kortti sinulla on?"
+#: ../../any.pm_.c:330
+msgid "You must specify a root partition"
+msgstr "Sinulla täytyy määritellä juuriosio"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "Otsikko on jo käytössä"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Security"
-msgstr "Tietoturva"
+msgid "Found %s %s interfaces"
+msgstr "Löysin %s %s liitännät"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
-"Voit käyttää myös graafista käyttöliittymää \"xpdq\" optioiden asettamiseen "
-"ja tulostustöiden hallintaan.\n"
-"\n"
-"Jos käytät KDE työpöytäympäristöä sinulla on \"paniikkipainike\", kuvake "
-"työpöydällä \"PYSÄYTÄ tulostus!\", joka pysäyttää kaikki tulostustyöt heti "
-"kun painat sitä. Tämä on hyödyllistä esimerkiksi kun tulodtimessa on "
-"paperitukos.\n"
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "Onko sinulla muita?"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
+#: ../../any.pm_.c:642
#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
+msgid "Do you have any %s interfaces?"
+msgstr "Onko koneessa %s liityntää?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Palautettavissa olevia varmistuksia ei löydy...\n"
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "Ei"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown"
-msgstr "Tuntematon"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "Kyllä"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "Tämä palvelin on jo listassa, eikä sitä voida lisätä uudestaan.\n"
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "Katso laitteistotietoja"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Network Configuration"
-msgstr "Verkon asetukset"
+msgid "Installing driver for %s card %s"
+msgstr "Asetan ajuria %s ohjaimelle %s"
-#: ../../standalone/logdrake:1
+#: ../../any.pm_.c:663
#, c-format
-msgid "<control>S"
-msgstr "<control>S"
+msgid "(module %s)"
+msgstr "(moduli %s)"
-#: ../../network/isdn.pm:1
+#: ../../any.pm_.c:674
#, c-format
msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-"Muun maailman käyttämä protokolla \n"
-"Ei D-kanavaa (vuokralinjat)"
+"Voit nyt määrittää moduuli %s optiot.\n"
+"Huomaa että osoitetta täytyy määrittää '0x' etuliitteellä, esim. 0x123."
-#: ../../standalone/drakTermServ:1
+#: ../../any.pm_.c:680
#, 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."
+"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 ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ asettaa tämän tiedoston toimimaan yhteistyössä "
-"mkinitrd-net:llä\n"
-" \t\tluotujen kuvien kanssa ja tietueet /etc/dhcpd.conf tiedostossa "
-"jakamaan\n"
-" \t\tkäynnistysluvan jokaiselle levyttömälle asiakkaalle.\n"
-"\n"
-" \t\tTyypillinen tftp asetustiedosto näyttää tältä:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \t\tMuutokset täällä verrattuna vakioasennukseen on 'disable' lipun "
-"asettaminen\n"
-" \t\t'no' tilaan ja hakemiston muuttaminen /var/lib/tftpboot, johon "
-"mkinitrd-net\n"
-" \t\ttallentaa kuvat."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Valitsimen %s pitää olla luku!"
+"Voit antaa lisäasetuksia modulille %s.\n"
+"Asetukset ovat muotoa ``nimi=arvo nimi2=arvo2 ...''.\n"
+"Esimerkiksi, ``io=0x300 irq=7''"
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, c-format
-msgid "Notice"
-msgstr "Huomautus"
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "Moduulin optiot:"
-#: ../../install_steps_interactive.pm:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr "Et ole asettanut X-palvelinta. Oletko varma että haluat tehdä tämän?"
+msgid "Which %s driver should I try?"
+msgstr "Mitä %s-ajuria kokeillaan?"
-#: ../../printer/printerdrake.pm:1
+#: ../../any.pm_.c:703
#, 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\"."
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
-"Tulostimen asetukset määritetään automaattisesti. Jos tulostintasi ei "
-"tunnistettu oikein, tai jos haluat räätälöidyt tulostinasetukset valitse "
-"\"Manuaalinen asettaminen\"."
+"Joissakin tapauksissa %s-ajuri tarvitsee lisätietoja toimiakseen kunnolla,\n"
+"joskin tavallisesti se toimii hyvin ilmankin. Haluaisitko antaa ajurille\n"
+"lisämääreitä vai annatko sen itse etsiä tarvitsemansa tiedot? Joskus haku\n"
+"voi jumittaa tietokoneen, mutta se ei pitäisi aiheuta vahinkoa."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "What type of partitioning?"
-msgstr "Minkä tyyppinen osiointi?"
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
+msgstr "Automaattitunnistus"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "Lisäasetukset"
+
+#: ../../any.pm_.c:719
#, c-format
msgid ""
-"file list sent by FTP: %s\n"
-" "
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
-"tiedostolista lähetetty FTP:llä: %s\n"
-" "
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface"
-msgstr "Liitäntä"
+"Modulin %s lataaminen epäonnistui.\n"
+"Haluatko yrittää muilla asetuksilla?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Multisession CD"
-msgstr "Multisessio CD"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
+msgstr "oikeudet X-ohjelmille"
-# Asennuksen sivuvalikko
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated strings"
-msgstr "pilkulla erotettuja merkkijonoja"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
+msgstr "oikeudet rpm-työkaluihin"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr "Nämä ovat koneet joista kuvanlukija(t) pitäisi käyttää: "
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
+msgstr "salli \"su\""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Messages"
-msgstr "Viestit"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
+msgstr "oikeudet ylläpidollisiin tiedostoihin"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Tuntematon|CPH06X (bt878) [monta valmistajaa]"
+#: ../../any.pm_.c:738
+msgid "access to network tools"
+msgstr "oikeudet verkko-työkaluihin"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP- ja IMAP-palvelin"
+#: ../../any.pm_.c:739
+msgid "access to compilation tools"
+msgstr "oikeudet ohjelmointi-työkaluihin"
-#: ../../lang.pm:1
+#: ../../any.pm_.c:744
#, c-format
-msgid "Mexico"
-msgstr "Meksiko"
+msgid "(already added %s)"
+msgstr "(lisätty jo: %s)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model stepping"
-msgstr "Malli askel"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "Salasana on liian yksinkertainen"
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
-msgstr "Ruanda"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
+msgstr "Anna käyttäjätunnus"
-#: ../../lang.pm:1
-#, c-format
-msgid "Switzerland"
-msgstr "Sveitsi"
+#: ../../any.pm_.c:751
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr ""
+"Käyttäjätunnus saa sisältää vain pieniä kirjaimia, numeroita, `-' ja `_'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
+#: ../../any.pm_.c:752
+msgid "The user name is too long"
+msgstr "Käyttäjänimi on liian pitkä"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Onko koneessa liitäntää %s?"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "Käyttäjätunnus on jo lisätty"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "Sinun pitää olla root lukeaaksesi asetustiedostoa.\n"
+#: ../../any.pm_.c:757
+msgid "Add user"
+msgstr "Lisää käyttäjä"
-#: ../../printer/printerdrake.pm:1
+#: ../../any.pm_.c:758
#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Lpd-etätulostimen parametrit"
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"GNU/Linux on monen käyttäjän järjestelmä ja tämä tarkoittaa että jokainen\n"
-"käyttäjä voi pitää omat asetukset, omat tiedostot jne. Voit lukea ``Starter\n"
-"Guide'':a saadaksesi lisätietoa tästä. Mutta \"root\"-käyttäjään, joka on\n"
-"järjestelmän ylläpitäjä, verrattuna käyttäjät, joita lisäät tässä, eivät "
-"pysty\n"
-"muuttamaan mitään muuta paitsi omia tiedostojaan ja asetuksiaan. Tällä "
-"tavalla\n"
-"suojataan järjestelmää erehdyksiltä tai tahallisilta muutoksilta, jotka\n"
-"vaikuttavat järjestelmään. Sinun pitää luoda ainakin yksi tavallinen "
-"käyttäjä\n"
-"itsellesi. Se on tili jota sinun kannattaa käyttää jokapäiväisessä "
-"työssäsi.\n"
-"Vaikkakin on kätevämpää kirjautua sisään \"root\"-tunnuksella, se on myös\n"
-"paljon vaarallisempaa! Pienikin virhe voi merkitä ettei järjestelmäsi toimi\n"
-"enää. Jos teet vakavan virheen tavallisena käyttäjänä, voit mahdollisesti\n"
-"menettää jotain tietoja, mutta et koko järjestelmää.\n"
-"\n"
-"Ensin sinun pitää antaa oikea nimesi. Tämä ei ole pakollista -- voithan\n"
-"kirjoittaa mitä tahansa. DrakX kopioi ensimmäisen kirjoittamasi sanan "
-"kenttään\n"
-"\"%s\". Tämä on se nimi jolla kyseinen käyttäjä kirjautuu järjestelmään.\n"
-"Voit muuttaa sitä halutessasi. Sinun pitää myös syöttää salasana. "
-"Tavallisen\n"
-"käyttäjän salasana ei ole niin kriittinen kuin \"root\"-tunnus "
-"turvallisuus-\n"
-"näkökulmasta, mutta tämä ei ole syy tietoturvan laiminlyömiseen: Onhan "
-"kysymys\n"
-"tiedostojesi turvasta.\n"
-"\n"
-"Kun painat \"%s\", voit lisätä muita käyttäjiä. Lisää käyttäjä jokaiselle\n"
-"henkilölle, jonka on tarkoitus käyttää tätä tietokonetta. Kun olet lisännyt\n"
-"kaikki haluamasi käyttäjät, valitse \"%s\".\n"
-"\n"
-"Jos painat \"%s\" painiketta voit muuttaa oletus-\"komentotulkin\" "
-"kyseiselle\n"
-"käyttäjälle (vakiona bash).\n"
-"\n"
-"Kun olet lisännyt kaikki käyttäjät, sinua pyydetään valitsemaan käyttäjä, "
-"joka\n"
-"voi kirjautua automaattisesti järjestelmään koneen käynnistyessä. Jos olet\n"
-"kiinnostunut tästä ominaisuudesta (etkä paljon piittaa paikallisesta tieto-\n"
-"turvasta), valitse haluttu käyttäjä ja ikkunointijärjestelmä, ja paina \"%s"
-"\". Jos et ole kiinnostunut tästä ominaisuudesta,\n"
-"poista valinta \"%s\""
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Internet Access..."
-msgstr "Aseta Internetyhteys..."
+msgid ""
+"Enter a user\n"
+"%s"
+msgstr ""
+"Lisää käyttäjä\n"
+"%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Valitse peräkkäisten varmuuskopioiden aikaväli"
+#: ../../any.pm_.c:759
+msgid "Accept user"
+msgstr "Hyväksy käyttäjä"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Norway"
-msgstr "Norja"
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "Oikea nimi"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Delete profile"
-msgstr "Poista profiili"
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "Käyttäjätunnus"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Danish"
-msgstr "Tanska"
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "Komentotulkki"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Asettaa käynnistyksessä numlock-näppäinlukitsimen päälle\n"
-"sekä konsolille että XFree:lle."
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "Kuvake"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
-msgstr ""
-"Anna koneen IP-asetukset. Kukin kohta tulee syöttää IP-osoitteena,\n"
-"pisteillä eroteltuna nelinumeroisena lukuna (esim. 1.2.3.4)."
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "Automaattinen kirjautuminen"
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:804
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."
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
-"Mandrake Linuxin asennus koostuu useasta CD-ROM-levystä. DrakX tietää,\n"
-"onko valittu paketti toisella CD:llä ja osaa syöttää nykyisen levyn ulos\n"
-"ja pyytää sinua asettamaan oikean levyn tarvittaessa."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
-msgstr "Kun valittu, omistajaa ja ryhmää ei muuteta"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "Bulgaria"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
-msgstr "Tiistai"
+"Yksi käyttäjä voidaan asettaa kirjautumaan automaattisesti sisään "
+"tietokoneellesi.\n"
+"Haluatko käyttää tätä ominaisuutta?"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "Prosessorit"
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "Valitse oletuskäyttäjä:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "Svalbard ja Jan Mayen"
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
+msgstr "Valitse käytettävä ikkunointijärjestelmä:"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No NIC selected!"
-msgstr "Verkkokorttia ei valittu!"
+#: ../../any.pm_.c:824
+msgid "Please choose a language to use."
+msgstr "Valitse käytettävä kieli."
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../any.pm_.c:826
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."
+"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 ""
-"Ongelmia asettamisen aikana.\n"
-"Testaa yhteytesi net_monitor- tai mcc-työkalulla. Jos yhteytesi ei toimi, "
-"voit käynnistää asetustyökalun uudelleen"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "osio %s tunnetaan nyt nimellä %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Other files..."
-msgstr "Varmuuskopioi muut tiedostot..."
+"Mandrake Linux tukee monta kieltä. Valitse kielet jotka\n"
+"haluat asentaa. Ne ovat käytettävissä asennuksen jälkeen\n"
+"kun olet käynnistänyt konesi uudelleen"
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
-msgstr "Kongo (Kinshasa)"
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "Kaikki"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "SMB-palvelimen IP"
+# Asennuksen sivuvalikko
+#: ../../any.pm_.c:961
+msgid "Allow all users"
+msgstr "Salli kaikille käyttäjille"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Levyn %s osiotaulu kirjoitetaan levylle!"
+#: ../../any.pm_.c:961
+msgid "No sharing"
+msgstr "Ei jaettu"
-#: ../../printer/printerdrake.pm:1
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
#, c-format
-msgid "Installing HPOJ package..."
-msgstr "Asennan HPOJ paketteja..."
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr "Paketti %s pitää asentaa. Haluatko asentaa sen?"
-#: ../../any.pm:1
-#, c-format
+#: ../../any.pm_.c:973
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"
-msgstr ""
-"Mukautetulla käynnistyslevykkeellä voit käynnistää järjestelmän ilman\n"
-"tavanomaisen käyttöjärjestelmälataajan apua. Tästä on hyötyä, jos et halua\n"
-"asentaa LILO:a (tai grubia) järjestelmääsi, toinen käyttöjärjestelmä "
-"poistaa\n"
-"LILO:n, tai LILO ei toimi laitteistossasi. Mukautettua käynnistyslevykettä\n"
-"voidaan käyttää myös Mandraken pelastuskuvan kanssa, jolloin vakavista\n"
-"järjestelmän virhetilanteista on helpompi toipua.\n"
-"Haluatko luoda käynnistyslevykkeen järjestelmääsi?\n"
-"%s"
+"You can export using NFS or Samba. Please select which you'd like to use."
+msgstr "Voit jakaa sekä NFS:llä että Samballa. Valitse kumpaa haluat käyttää."
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
+msgid "Mandatory package %s is missing"
+msgstr "Pakollinen paketti %s puuttuu"
+
+#: ../../any.pm_.c:987
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 ""
+"Haluatko sallita käyttäjiä jakaa joitakin omia hakemistoja?\n"
+"Sallimalla tätä käyttäjät tarvitsevat vain painaa \"Jakaa\"\n"
+"konquerorissa tai nautiluksessa\n"
"\n"
-" DrakBackup-demonin raportti\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latvian"
-msgstr "Latvia"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr "kuukausittain"
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Retry"
-msgstr "Palauta"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr "Moduulin nimi"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Start at boot"
-msgstr "Käynnistä koneen käynnistyksen yhteydessä"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Käytä asteittaiset varmuuskopiot"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "Levyn ensimmäinen sektori (MBR)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "El Salvador"
+"\"Mukautettu\" sallii käyttäjäkohtaiset oikeudet.\n"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
-msgstr "Peliohjain"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
+msgstr "Käynnistä userdrake"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "DVD"
-msgstr "DVD"
+#: ../../any.pm_.c:1003
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
+msgstr ""
+"Käyttäjäkohtainen jako käyttää ryhmän \"fileshare\".\n"
+"Voit käyttää userdrake lisätääksesi käyttäjiä tähän ryhmään."
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
-msgstr "Käytä Unicodea oletuksena"
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
+msgstr "Tervetuloa murtautujat"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "GNU/Linux ytimen moduuli joka käsittelee kyseistä laitetta"
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Huono"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Laitteistokello asetettu GMT-aikaan"
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
+msgstr "Vakio"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "Yritän osiotaulun pelastusta"
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Korkea"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Valitsimen %s pitää olla kokonaisluku!"
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+msgid "Higher"
+msgstr "Korkeampi"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
-msgstr "Käytä salasanoja käyttäjien tunnistamiseen."
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "Vainoharhainen"
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../any.pm_.c:1061
msgid ""
-"Entries you'll have to fill:\n"
-"%s"
+"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 ""
-"Kohdat, jotka sinun pitää täyttää:\n"
-"%s"
+"Tätä tasoa tulee käyttää varoen. Se tekee järjestelmästäsi helpomman "
+"käyttää,\n"
+"mutta hyvin herkän: sitä ei tule käyttää koneessa joka on kytketty muihin "
+"koneisiin\n"
+"tai Internettiin. Koneessa ei ole salasanoja."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1064
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."
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
-"Kun varmistat toiselle medialle, tiedostot luodaan kuitenkin ensin "
-"kovalevylle, ja siirretään sen jälkeen toiselle medialle. Valitsemalla tätä "
-"optiota, kovalevylle tehdyt 'tar' tiedostot poistetaan varmistuksen jälkeen."
-
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Järjestelmän päivitystä ei voida aloittaa!\n"
+"Salasanat ovat nyt käytössä mutta koneen käyttö verkossa ei ole suositeltua."
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "Nimi: "
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
+#: ../../any.pm_.c:1065
+msgid ""
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
+"Tämä on vakio turvataso joka suositellaan tietokoneelle joka käytetään\n"
+"Internetissä asiakaskoneena."
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 miljoonaa väriä (24 bittiä)"
-
-# Asennuksen sivuvalikko
-#: ../../any.pm:1
-#, c-format
-msgid "Allow all users"
-msgstr "Salli kaikille käyttäjille"
-
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr "Virallinen MandrakeSoft kauppa"
-
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "Muutan kokoa"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1066
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
-"Syötä suurin sallittu koko\n"
-"Drakbackup-varmuuskopiolle (Mt)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Cable connection"
-msgstr "Kaapeliyhteys"
-
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, c-format
-msgid "User"
-msgstr "Käyttäjä"
+"Joitakin rajoituksia on jo olemassa, ja lisää automaattisia \n"
+"tarkistuksia suoritetaan joka yö."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
+#: ../../any.pm_.c:1067
+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 ""
-"Luo uusi varmuuskopio ennen palauttamista (vain kasvavilla varmuuskopioilla)"
+"Tällä turvatasolla, tämän järjestelmän käyttö palvelimena on mahdollista.\n"
+"Turvallisuustaso on riittävän korkea järjestelmän käyttö palvelimena joka\n"
+"hyväksyy monta yhteyksiä asiakaskoneilta. Huomaa: Jos koneesi on ainoastaan\n"
+"asiakaskone Internetissä, sinun kannattaisi valita matalempi turvataso."
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "mkraid epäonnistui"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Name"
-msgstr "Nimi"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "3. näppäimen emulaatio"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
-msgstr "Tarkista 'sgid' tiedostojen lisäämiset/poistamiset"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files..."
-msgstr "Lähetän tiedostoja..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "Israel (Foneettinen)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
-msgstr "oikeudet RPM-työkaluihin"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Sinun täytyy valita tai syöttää tulostinlaite!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Ongelma CD-käytön oikeuksien kanssa."
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "Puhelinnumero"
+#: ../../any.pm_.c:1070
+msgid ""
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
+msgstr ""
+"Pohjautuu edelliseen tasoon, mutta järjestelmä on kokonaan suljettu.\n"
+"Turvallisuusasetukset ovat tiukimmillaan."
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr "Virhe: Ajuri \"%s\" äänikortillesi ei ole listattu"
+#: ../../any.pm_.c:1076
+msgid "DrakSec Basic Options"
+msgstr "DracSec perusoptiot"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Tulostimen nimi, kuvaus, paikka"
+#: ../../any.pm_.c:1077
+msgid "Please choose the desired security level"
+msgstr "Valitse haluttu turvataso"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
-msgstr "Yhdysvallat (bcast)"
+#: ../../any.pm_.c:1080
+msgid "Security level"
+msgstr "Turvataso"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Käytä Xinerama-laajennusta"
+#: ../../any.pm_.c:1082
+msgid "Use libsafe for servers"
+msgstr "Käytä libsafea palvelimille"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback"
-msgstr "Loopback"
+#: ../../any.pm_.c:1083
+msgid ""
+"A library which defends against buffer overflow and format string attacks."
+msgstr ""
+"Kirjasto joka suojelee puskurin ylivuoto ja merkkijonon muotovirhehykkäyksiä "
+"vastaan."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "West Europe"
-msgstr "Länsi-Eurooppa"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
+msgstr "Tietoturva Ylläpitäjä (tunnus tai sähköposti)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On CD-R"
-msgstr "CD-levylle"
+#: ../../any.pm_.c:1166
+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 ""
+"Tässä voit valita näppäin tai näppäinyhdistelmän joka sallii\n"
+"vaihtaminen eri näppäinkarttojen välillä (esim. latin ja ei-latin)"
-#: ../../standalone.pm:1
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, c-format
msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\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 ""
-"[OPTIOT] [OHJELMAN_NIMI]\n"
+"Tervetuloa %s k~^Dytt~^Tj~^Drjestelm~^Dnvalitsijaan!\n"
+"\n"
+"Valitse k~^Dytt~^Tj~^Drjestelm~^D yll~^D olevasta listasta tai\n"
+"odota %d sekuntia oletusk~^Dynnistyst~^D.\n"
"\n"
-"OPTIOT:\n"
-" --help - tulosta tämä viesti.\n"
-" --report - ohjelman pitäisi olla yksi Mandraken työkaluista\n"
-" --incident - ohjelman pitäisi olla yksi Mandraken työkaluista"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake2 version %s"
-msgstr "Harddrake2 versio %s"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Preferences"
-msgstr "Ominaisuudet"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr "Swazimaa"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "Dominikaaninen tasavalta"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr "Kopioidaan %s"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Choose color"
-msgstr "Valitse väri"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac"
-msgstr "Syyria"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
-msgstr "Aseta-UID"
-#: ../../help.pm:1
-#, 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!"
-msgstr ""
-"Valitse kiintolevy, jonka haluat tyhjentää uudelle Mandrake Linux\n"
-"-asennusosiolle. Ole varovainen, koska kaikki asemalla oleva tieto\n"
-"tuhoutuu eikä ole enää palautettavissa!"
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Tervetuloa GRUB k~^Dytt~^Tj~^Drjestelm~^Dnvalitsijaan!"
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -2068,25 +1156,39 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
+#: ../../bootloader.pm_.c:986
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "K~^Dyt~^D %c- ja %c-n~^Dpp~^Dimi~^D valitaksesi korostetun tietueen"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Yleinen 2-näppäiminen hiiri"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Salli \"%s\" suoritaa tiedostoa"
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr ""
+"Paina enter k~^Dynnist~^D~^Dksesi valitun k~^Dytt~^Tj~^Drjestelm~^Dn, 'e'"
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr "Poista loogiset osiot ensin\n"
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "muokataksesi komennot ennen k~^Dynnistyst~^D, tai 'c' komentoriville."
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -2098,3278 +1200,2249 @@ msgstr "Poista loogiset osiot ensin\n"
#
#. -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
+#: ../../bootloader.pm_.c:995
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Korostettu tietue k~^Dynnistet~^D~^Dn automaattisesti %d sekunnissa."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
-msgstr ""
-"En voi kirjoittaa /etc/sysconfig/bootsplash.\n"
-"Tiedostoa ei löydy."
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
+msgstr "ei tarpeeksi tilaa /boot-hakemistossa"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet access"
-msgstr "Internetyhteys"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "Työpöytä"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"y coordinate of text box\n"
-"in number of characters"
-msgstr ""
-"tekstiruudun y-koordinaatti\n"
-"määrä merkeissä"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "Käynnistysvalikko"
-#: ../../printer/printerdrake.pm:1
+#: ../../bootloader.pm_.c:1120
#, c-format
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-"Saadaksesi listan nykyisen tulostimen parametreista klikkaa \"Tulostuksen "
-"valintalista\"-painiketta."
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "Et voi asentaa käyttöjärjestelmän lataajaa osiolle %s\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr "Otan palvelut käyttöön.."
+#: ../../bootlook.pm_.c:53
+msgid "Boot Style Configuration"
+msgstr "Käynnistyksen tavan asetus"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Tulostan testisivu(ja)..."
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
+msgstr "/_Tiedosto"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-"Siirto onnistui\n"
-"Sinun kannattaa varmistaa että voit kirjoittautua palvelimeen komennolla:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"ilman että sinulta pyydetään salasanaa."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
+msgstr "/Tiedosto/Poistu"
-# mat
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "On jo olemassa osio, jonka liitospiste on %s\n"
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
+msgstr "<control>Q"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
-msgstr ""
-"Ota käyttöön / poista käytöstä msec turvallisuustarkistukset joka tunti."
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
+msgstr "Uuden tyylin kategoroiva valvonta"
-#: ../../help.pm:1
-#, 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''."
-msgstr ""
-"Nyt sinun pitää valita miten haluat asentaa Mandrake Linux käyttö-\n"
-"järjestelmän kovalevyllesi. Jos kovalevysi on tyhjä, tai nykyinen\n"
-"käyttöjärjestelmäsi käyttää siitä kaiken vapaan tilan, sinun pitää osioida\n"
-"se. Käytännössä osiointi tarkoittaa kovalevyn loogista jakamista\n"
-"tehdäksesi tilaa Mandrake Linux -järjestelmän asennukselle.\n"
-"\n"
-"Koska osiointiprosessin muutoksia yleensä ei voi peruuttaa, ja se voi\n"
-"johtaa tietojen häviämiseen jos toinen käyttöjärjestelmä on jo asennettu,\n"
-"osiointi voi olla pelottavaa ja stressaavaa jos olet kokematon käyttäjä.\n"
-"Onneksi DrakX sisältää velhon, joka yksinkertaistaa tämän prosessin.\n"
-"Ennen kuin aloitat, lue nämä ohjeet rauhassa.\n"
-"\n"
-"Riippuen kovalevyasetuksistasi, tarjolla on useita eri vaihtoehtoja:\n"
-"\n"
-" * \"%s\": tämä vaihtoehto suorittaa vapaana olevan tilan\n"
-"automaattisen osioinnon. Sinulta ei kysytä mitään muuta;\n"
-"\n"
-" * \"%s\": velho on tunnistanut olemassa olevat\n"
-"Linux-osiot. Jos haluat käyttää niitä, valitse tämä vaihtoehto. Sinua\n"
-"pyydetään seuraavaksi valitsemaan osioiden liitospisteet. Ennestään\n"
-"käytettyjä liitoskohtia ehdotetaan oletuksena ja yleensä niitä ei kannata\n"
-"muuttaa;\n"
-"\n"
-" * \"%s\": jos Microsoft Windows on\n"
-"asennettu kovalevyllesi ja se vie kaiken tilan, sinun pitää luoda vapaata\n"
-"tilaa Linuxille. Tehdäksesi tämän, voit joko poistaa Windows-osion (katso\n"
-"``Tyhjennä koko levy''-vaihtoehto) tai muuttaa FAT-osion kokoa. Osion\n"
-"koon muuttaminen voidaan tehdä ilman tietojen hävittämistä, kunhan olet\n"
-"eheyttänyt sen ja se käyttää FAT-tiedostojärjestelmää. Tietojen varmistus\n"
-"on kuitenkin suotavaa. Tämä vaihtoehto on suositeltu jos haluat käyttää\n"
-"Mandrake Linuxia ja Microsoft Windowsia samassa koneessa.\n"
-"\n"
-"!! \"9.2\" jakelusta lähtien asennusohjelma osaa myös muuttaa NTFS-\n"
-" osion kokoa, mutta se on vielä KOKEILUVAIHEESSA, joten teet sen\n"
-" OMALLA VASTUULLASI. Voit menettää tietojasi !!\n"
-"\n"
-" Ennen kuin valitset tämän vaihtoehdon, sinun pitää ymmärtää että tämän\n"
-"toimenpiteen jälkeen Windows-osiosi on pienempi kuin tällä hetkellä.\n"
-"Sinulla tulee olemaan vähemmän vapaata tilaa Windowsille, johon voit\n"
-"tallentaa tietojasi tai asentaa uusia ohjelmia;\n"
-"\n"
-" * \"%s\": valitse tämä jos haluat poistaa kaikki tiedot\n"
-"ja osiot ja asentaa Mandrake Linux -järjestelmäsi niiden tilalle. Ole\n"
-"varovainen tämän valinnan kanssa, koska et pysty peruuttamaan\n"
-"valintaasi kun olet hyväksynyt tämän toimenpiteen;\n"
-"\n"
-" !! Jos valitset tämän vaihtoehdon, kaikki tiedot kovalevylläsi tuhoutuu !!\n"
-"\n"
-" * \"%s\": tämä vaihtoehto yksinkertaisesti poistaa kaikki\n"
-"kovalevyltä ja aloittaa puhtaalta levyltä osioimalla kaikki alusta asti.\n"
-"Kaikki tiedot kovalevylläsi tuhoutuu;\n"
-"\n"
-" !! Jos valitset tämän vaihtoehdon, kaikki tiedot kovalevylläsi "
-"tuhoutuu !!\n"
-"\n"
-" * \"%s\": valitse tämä vaihtoehto, jos haluat itse\n"
-"määrittää kovalevysi osioinnin. Ole varovainen - tämä on tehokas mutta\n"
-"vaarallinen vaihtoehto. Voit helposti menettää kaikki tietosi. Eli,\n"
-"älä käytä tätä vaihtoehtoa, jos et tiedä tarkalleen mitä teet. Jos haluat\n"
-"lisätietoja DiskDrake työkalun käytöstä, katso osaa ``Managing Your \n"
-"Partitions'' osiota ``Starter Guide'':ssa."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
-msgstr "Ukraina"
+#: ../../bootlook.pm_.c:83
+msgid "NewStyle Monitor"
+msgstr "Uuden tyylin valvonta"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Application:"
-msgstr "Sovellus:"
+#: ../../bootlook.pm_.c:84
+msgid "Traditional Monitor"
+msgstr "Perinteinen valvonta"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "External ISDN modem"
-msgstr "Ulkoinen ISDN-modeemi"
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
+msgstr "Perinteinen Gtk+ valvonta"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr "jos asetettu, raportoi tarkistuksen tulos sähköpostitse."
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
+msgstr "Käytä Auroraa käynnistyksen aikana"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Valintasi? (oletus %s) "
+#: ../../bootlook.pm_.c:89
+msgid "Lilo/grub mode"
+msgstr "Lilo/grub-tila"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr "Vianetsintä"
+#: ../../bootlook.pm_.c:89
+msgid "Yaboot mode"
+msgstr "Yaboot-tila"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# Asennuksen sivuvalikko
+#: ../../bootlook.pm_.c:138
+msgid "Install themes"
+msgstr "Asenna teemoja"
+
+#: ../../bootlook.pm_.c:139
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"
+"Display theme\n"
+"under console"
msgstr ""
-"Testisivu(t) on lähetetty tulostimelle.\n"
-"Voi kestää hetken ennen kuin tulostus alkaa.\n"
-"Tulostuksen tila:\n"
-"%s\n"
-"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
-msgstr "päivittäin"
+"Näyttö teema\n"
+"konsoolin alla"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and one unknown printer"
-msgstr " ja yksi tuntematon tulostin "
+#: ../../bootlook.pm_.c:140
+msgid "Create new theme"
+msgstr "Luo uusi teema"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#: ../../bootlook.pm_.c:184
#, c-format
-msgid "Ireland"
-msgstr "Irlanti"
+msgid "Backup %s to %s.old"
+msgstr "Varmista %s kohteeseen %s.old"
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:187
#, c-format
-msgid " Restore Configuration "
-msgstr " Palauta asetukset "
+msgid "Copy %s to %s"
+msgstr "Kopioidaan %s kohteeseen %s"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "Onko tämä oikea asetus?"
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+msgstr "Virhe"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Sinulla on nyt mahdollisuus asettaa Internet-/verkkoyhteytesi. Jos\n"
-"haluat yhdistää tietokoneesi Internetiin tai lähiverkkoon, paina\n"
-"\"%s\". Mandrake Linux yrittää tunnistaa verkkolaitteet ja\n"
-"modeemit automaattisesti. Jos tämä tunnistus epäonnistuu, poista\n"
-"valinta kohdasta \"%s\" seuraavalla kerralla.\n"
-"Voit myös jättää verkon asettamisen tekemättä, tai tehdä sen\n"
-"myöhemmin. Siinä tapauksessa paina \"%s\" painiketta jolloin\n"
-"siirryt seuraavaan vaiheeseen.\n"
-"\n"
-"Kun asetat verkkoasi, seuraavat yhteystavat ovat tarjolla:\n"
-"tavallinen modeemi, ISDN modeemi, ADSL yhteys, kaapelimodeemi\n"
-"ja tavallinen lähiverkkoyhteys (Ethernet).\n"
-"\n"
-"Emme käy läpi kaikkia asetusoptioita täällä - muistutamme vain\n"
-"että sinun kannattaa varmistaa että sinulla on kaikki tarvittavat tiedot\n"
-"käytettävissä, kuten mahdollinen IP-osoite, oletus yhdyskäytävä,\n"
-"DNS palvelinten osoitteet jne. Internet-palveluntarjoajaltasi tai\n"
-"järjestelmän ylläpitäjältä.\n"
-"\n"
-"Voit katsoa ``Aloitusoppaasta'' Internetyhteyksiä koskevia tietoja\n"
-"asetuksien tekemisestä tai odottaa kunnes järjestelmäsi on asennettu\n"
-"ja käyttää määritysohjelmaa yhteytesi asettamiseen."
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
+msgstr "Lilo viesti ei löydetty"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Velhon asettaminen"
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr "En voi kirjoittaa /etc/sysconfig/bootsplash."
-#: ../../modules/interactive.pm:1
+#: ../../bootlook.pm_.c:222
#, c-format
-msgid "Autoprobe"
-msgstr "Automaattitunnistus"
+msgid "Write %s"
+msgstr "Kirjoita %s"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:224
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."
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-"jos asetettu, tarkistetaan:\n"
-"\n"
-"- tyhjät salasanat,\n"
-"\n"
-"- salasanan puuttuminen tiedostossa /etc/shadow\n"
-"\n"
-"- muut käyttäjät kuin root joiden id on 0."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files..."
-msgstr "Varmuuskopioi järjestelmätiedostot..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr "En voi käyttää kuulutusta ilman NIS-verkkoaluetta"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Poistetaan tulostin \"%s\" ..."
+"En voi kirjoittaa /etc/sysconfig/bootsplash.\n"
+" Tiedosto ei löydy."
-#: ../../security/l10n.pm:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Shell history size"
-msgstr "Komentotulkin historian koko"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr "En voi suorita mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../standalone/drakfloppy:1
+#: ../../bootlook.pm_.c:238
#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr "Tee initrd: 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../bootlook.pm_.c:244
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"
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-"Ole hyvä ja määritä missä auto_install.cfg tiedosto sijaitsee.\n"
-"\n"
-"Jätä tyhjäksi jos et halua asettaa automaattiasennuksen tilaa.\n"
-"\n"
-
-# Asennuksen sivuvalikko
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on other machines"
-msgstr "Asetettu muissa koneissa"
+"En voi suorita LiLo uudelleen!\n"
+"Suorita \"lilo\" pääkäyttäjänä komentorivillä \n"
+"LiLo teeman asennuksen viimeistelyyn."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "Tietotaso joka voidaan saada cpuid-käskyn kautta"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Peru"
-msgstr "Peru"
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
+msgstr "Suorita 'lilo' uudelleen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " on device: %s"
-msgstr "laitteella: %s"
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+msgid "Notice"
+msgstr "Huomautus"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "Poista Windows(TM)"
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr "LiLo ja Bootsplash teemojen asennus onnistui."
-#: ../../services.pm:1
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Käynnistää X-kirjasinpalvelimen (pakollinen, jos haluat ajaa XFree:tä)"
+#: ../../bootlook.pm_.c:251
+msgid "Theme installation failed!"
+msgstr "Teeman asennus epäonnistui!"
-#: ../../standalone/drakTermServ:1
+#: ../../bootlook.pm_.c:259
#, c-format
msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"Suurin osa näistä arvoista otettiin\n"
-"suoraan käytössä olevassa järjestelmästäsi.\n"
-"Voit muokata niitä tarvittaessa."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Valitse kirjasintiedosto tai hakemisto ja klikkaa 'Lisää'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "Madagaskar"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
-msgstr "Cron ei vielä tue muita kuin pääkäyttäjää"
+"Tällä hetkellä käytössä oleva järjestelmälataaja on %s.\n"
+"Valitse Aseta käynnistääksesi asennusvelhon."
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "System"
-msgstr "Järjestelmä"
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
+msgstr "Määrittele"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Haluatko käyttää tätä ominaisuutta?"
+#: ../../bootlook.pm_.c:268
+msgid "Splash selection"
+msgstr "Splash valinta"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr "Arabia"
+#: ../../bootlook.pm_.c:271
+msgid "Themes"
+msgstr "Teemoja"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:273
msgid ""
"\n"
-"- Options:\n"
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
msgstr ""
"\n"
-"- Valitsimet:\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Password required"
-msgstr "Salasana vaaditaan"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d minutes"
-msgstr "%d minuuttia"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Näytönohjain: %s"
+" Valitse lilo:n ja \n"
+" bootsplash:in teemoja,\n"
+" voit valita ne erikseen."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV transfer failed!"
-msgstr "WebDAV siirto epäonnistui!"
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
+msgstr "Lilo näyttö"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "XFree:n asentaminen"
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
+msgstr "Bootsplash"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Choose action"
-msgstr "Valitse toiminto"
+#: ../../bootlook.pm_.c:316
+msgid "System mode"
+msgstr "Järjestelmän tila"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Polynesia"
-msgstr "Ranskan Polynesia"
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
+msgstr "Käytä X-Window-järjestelmää"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"DrakX yleensä tunnistaa hiiren näppäinten määrän. Jos tunnistus epä-\n"
-"onnistuu DrakX olettaa, että sinulla on kaksinäppäiminen hiiri ja kytkee\n"
-"siihen kolmannen näppäimen emulaatiolla. Kolmatta näppäintä kaksi-\n"
-"näppäimisessä hiiressä voidaan käyttää painamalla molempia painikkeita\n"
-"samanaikaisesti. DrakX tietää myös automaattisesti, onko sinulla PS/2,\n"
-"sarja- vai USB-hiiri.\n"
-"\n"
-"Jos haluat asettaa eri tyyppisen hiiren, valitse sopiva tyyppi oheisesta\n"
-"listasta.\n"
-"\n"
-"Jos valitset muun kuin oletushiiren, saat eteesi hiiren testiruudun. Käytä\n"
-"hiiren nappeja ja rullaa varmistaaksesi, että asetukset ovat oikeat. Jos\n"
-"hiiri ei toimi kunnolla, paina välilyöntiä tai [enter]:ä peruuttaaksesi, "
-"minkä\n"
-"jälkeen voit valita uudelleen.\n"
-"\n"
-"Joskus rullahiiriä ei tunnisteta oikein. Sinun pitää valita oikea malli\n"
-"listasta. Varmista, että valitset mallin joka vastaa porttia johon hiiresi "
-"on\n"
-"liitetty. Kun olet painanut \"%s\", hiiren kuva tulee esille. Sitten\n"
-"sinun PITÄÄ pyörittää rullaa, jotta se aktivoituisi oikein. Varmista sitten\n"
-"kaikkien painikkeiden toiminta sekä hiiren liikkuminen."
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
+msgstr "Ei, en halua autologinia"
-#: ../../services.pm:1
-#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Tuki OKI 4w -yhteensopiville Windows-tulostimille."
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "Kyllä, haluan autologinin (käyttäjä, ympäristö)"
+
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
+msgstr "OK"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-"Tiedostot tai jokerimerkit listattuna .backupignore tiedostossa "
-"päähakemistossa ei varmisteta."
+#: ../../common.pm_.c:107
+msgid "GB"
+msgstr "Gt"
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Käynnistä ALSA (Advanced Linux Sound Architecture) äänijärjestelmä"
+#: ../../common.pm_.c:107
+msgid "KB"
+msgstr "Kt"
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Asetan ajuria %s ohjaimelle %s"
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "Mt"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Olet siirtänyt edellisen oletustulostimesi (\"%s\"). Asetetaanko se "
-"oletustulostimeksi myös uudessa %s tulostusjärjestelmässä?"
+#: ../../common.pm_.c:115
+msgid "TB"
+msgstr "Tt"
-#: ../../standalone/drakTermServ:1
+#: ../../common.pm_.c:123
#, c-format
-msgid "Enable Server"
-msgstr "Ota palvelin käyttöön"
+msgid "%d minutes"
+msgstr "%d minuuttia"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ukrainian"
-msgstr "Ukraina"
+#: ../../common.pm_.c:125
+msgid "1 minute"
+msgstr "1 minuutti"
-#: ../../printer/printerdrake.pm:1
+#: ../../common.pm_.c:127
#, c-format
-msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
-msgstr ""
-"Verkkoyhteys ei ollut käynnissä, eikä sitä voitu käynnistää. Ole hyvä ja "
-"tarkista laitteistosi ja asetuksesi. Sen jälkeen voit yrittää asettaa "
-"etätulostinta uudelleen."
+msgid "%d seconds"
+msgstr "%d sekuntia"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Salli \"%s\" kirjoitaa tiedostoon"
+#: ../../common.pm_.c:172
+msgid "Can't make screenshots before partitioning"
+msgstr "Kuvankaappauksia ei voi tehdä ennen osiointia"
-#: ../../install_steps_interactive.pm:1
+#: ../../common.pm_.c:179
#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Aseta käyttämäsi käynnistyslevyke asemaan %s"
+msgid "Screenshots will be available after install in %s"
+msgstr "Kuvankaappaukset löytyvät asennuksen jälkeen hakemistosta %s"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local network(s)"
-msgstr "Paikallisverkko(ja)"
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+msgid "France"
+msgstr "Ranska"
-#: ../../help.pm:1
-#, c-format
-msgid "Remove Windows"
-msgstr "Poista Windows"
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
+msgstr "Costa Rica"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-"Kuvanlukijasi %s on asetettu.\n"
-"Nyt voit lukea dokumentit tietokoneeseesi käyttämällä \"XSane\" Multimedia / "
-"Grafiikka valikossa."
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+msgid "Belgium"
+msgstr "Belgia"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Firewire controllers"
-msgstr "FireWire ohjaimet"
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
+msgstr "Tsekin tasavalta"
-#: ../../help.pm:1
-#, 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!"
-msgstr ""
-"Asetettuasi yleiset käynnistyslataajan parametrit, näytetään lista\n"
-"käynnistysvaihtoehdoista, jotka käynnistyksen aikana on tarjolla.\n"
-"\n"
-"Jos joku toinen käyttöjärjestelmä on asennettu koneessasi, se\n"
-"lisätään automaattisesti käynnistysvalikkoon. Voit hienosäätää\n"
-"olemassaolevia optioita, painamalla \"%s\" luodaksesi uuden\n"
-"tietueen; valitsemalla olemassa olevan tietueen ja painamalla\n"
-"\"%s\" muokataksesi sen asetuksia; tai \"%s\" jos haluat\n"
-"poistaa sen. Painamalla \"%s\" tekemäsi muutokset otetaan käyttöön.\n"
-"\n"
-"Jos et halua kenenkään pääsevän osaan käyttöjärjestelmistä, voit\n"
-"poistaa kyseiset tietueet, jolloin ne poistetaan käynnistysvalikosta.\n"
-"Mutta siinä tapauksessa tarvitset itse käynnistyslevykettä päästäksesi\n"
-"kyseisiin käyttöjärjestelmiin!"
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+msgid "Germany"
+msgstr "Saksa"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "System mode"
-msgstr "Järjestelmän tila"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+msgid "Greece"
+msgstr "Kreikka"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"NetWare-palvelimen tulostimelle tulostaaksesi sinun pitäisi syöttää NetWare-"
-"palvelinkoneen nimi (joka ei aina ole sama kuin koneen TCP/IP nimi!) ja "
-"mahdollisesti tulostusjonon nimi sille tulostimelle, jota haluat käyttää, "
-"sekä soveltuva käyttäjätunnus ja salasana."
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+msgid "Norway"
+msgstr "Norja"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Netmask:"
-msgstr "Verkkopeite:"
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+msgid "Sweden"
+msgstr "Ruotsi"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
-msgstr "Suorita myöhemmin"
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
+msgstr "Alankomaat"
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "Lisää"
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+msgid "Italy"
+msgstr "Italia"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Päivitä tulostinlistaa (näytä kaikki saatavilla olevat CUPS-etätulostimet)"
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+msgid "Austria"
+msgstr "Itävalta"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Kun tämä optio on valittu, jokainen kerta kun CUPS käynnistyy, seuraavat "
-"asiat varmistetaan:\n"
-"\n"
-"- jos LPD/LPRng on asennettu, CUPS ei ylikirjoita /etc/printcap\n"
-"\n"
-"- jos /etc/cups/cupsd.conf puuttuu, se luodaan.\n"
-"\n"
-"- kun tulostintiedot kuulutetaan, se ei sisällä \"localhost\":a palvelimen "
-"nimenä.\n"
-"\n"
-"Jos joku näistä toiminnoista aiheuttaa sinulle ongelmia, poista tämä optio, "
-"mutta silloin sinun pitää itse huolehtia näistä asioista."
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
+msgstr "Yhdysvallat"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../diskdrake/dav.pm_.c:19
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"
+"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 ""
-"Automaattinen asennus voi olla täysin automatisoitu,\n"
-"jos niin halutaan. Siinä tapauksessa asennus täyttää\n"
-"koko kiintolevyn! (tarkoitettu toisen koneen asentamiseksi),\n"
-"\n"
-"Ehkä haluat mieluummin toistaa asennuksen.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Verkkotulostin \"%s\", portissa %s"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr "Valitse verkkokortti, joka on kytketty paikallisverkkoon."
+"WebDAV on protokolla joka sallii sinun liittää webbi-palvelimen hakemisto\n"
+"paikallisesti, ja käyttää sitä paikallisena tiedostojärjestelmänä (olettaen "
+"että\n"
+"webbi-palvelimeen on asennettu WebDAV tuki). Jos haluat lisätä WebDAV\n"
+"liitoskohdan, valitse \"Uusi\".."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
-msgstr "OK palauttaaksesi muut tiedostot."
+#: ../../diskdrake/dav.pm_.c:27
+msgid "New"
+msgstr "Uusi"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Valitse näppäimistösi asettelu."
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Irroita"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "Tulostinlaitteen osoite (URI)"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Liitä"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not erasable media!"
-msgstr "Ei tyhjennettävää mediaa!"
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
+msgstr "Palvelin"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "Terminaalipohjainen"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Liitospaikka"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr "Ota käyttöön / poista käytöstä IP spoofing suojaus."
+#: ../../diskdrake/dav.pm_.c:85
+msgid "Please enter the WebDAV server URL"
+msgstr "Anna WebDAV palvelimen osoite (URL)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Asennan tulostusjärjestelmän turvatasolla %s"
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
+msgstr "Web-osoitteen tulee alkaa etuliitteellä 'http://' tai 'https://'"
-#: ../../any.pm:1
-#, c-format
-msgid "The user name is too long"
-msgstr "Käyttäjänimi on liian pitkä"
+#: ../../diskdrake/dav.pm_.c:109
+msgid "Server: "
+msgstr "Palvelin: "
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "Muu käyttöjärjestelmä (Windows...)"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
+msgstr "Liitospiste: "
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr "WebDAV etäsivusto on jo synkronoitu!"
+msgid "Options: %s"
+msgstr "Optiot: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
-msgstr "Luetaan tulostintietokantaa..."
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
+msgstr "Tee ensin varmuuskopio tiedoistasi"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Luo automaattinen asennuslevyke"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "Lue tarkkaan!"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:100
msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
+"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 ""
-"\t\t käyttäjätunnus: %s\n"
-"\t\t polulla: %s \n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr "Somalia"
+"Jos aiot käyttää aboot:ia, varmista että jätät vapaata tilaa levyn alkuun\n"
+"(2048 sektoria on tarpeeksi)"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr "Ei avoimen lähdekoodin ajuria"
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "Velho"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
-msgstr "Vak."
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
+msgstr "Valitse toiminto"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
-"Pohjautuu edelliseen tasoon, mutta järjestelmä on kokonaan suljettu.\n"
-"Turvallisuusasetukset ovat tiukimmillaan."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "Nicaragua"
+"Sinulla on yksi suuri FAT-osio.\n"
+"(Yleensä Microsoft DOS/Windowsin käytössä).\n"
+"Ehdotus: muuta ensimmäiseksi osion kokoa\n"
+"(klikkaa osiota ja valitse sitten \"Uusi koko\")"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "Uusi-Kaledonia"
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "Klikkaa osiota"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Eurooppalainen protokolla (EDSS1)"
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "Yksityiskohdat"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Delete"
-msgstr "/_Poista"
+#: ../../diskdrake/hd_gtk.pm_.c:254
+msgid "No hard drives found"
+msgstr "Yhtäkään kovalevyä ei löytynyt"
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "Näyttötila"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
-msgstr "Oman"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "FAT"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Syötä sähköpostiosoitteesi alla "
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Network Monitoring"
-msgstr "Verkon valvonta"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Journalised FS"
+msgstr "Journaloitu FS"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:325
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "New size in MB: "
-msgstr "Uusi koko (Mt): "
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "Swap"
-# mat
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Osion tyyppi: %s\n"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "Tyhjä"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication Windows Domain"
-msgstr "Tunnistus: Windows verkkoalue"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "Muut"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "US näppäimistö"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "Tiedostojärjestelmien tyypit:"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr "Näppäinemulaatio"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "Luo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", verkkotulostin \"%s\", portti %s"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "Tyyppi"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
-"\n"
-"Drakbackup toimintoja nauhan kautta:\n"
-"\n"
+msgid "Use ``%s'' instead"
+msgstr "Käytä sen sijaan ``%s'':ää"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-" FTP yhteysongelma: Varmistustietojasi ei voitu lähettää FTP:n kautta.\n"
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "Poista"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Sending Speed:"
-msgstr "Lähetysnopeus:"
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
+msgstr "Käytä ensin komentoa ``Irroita''"
-#: ../../harddrake/sound.pm:1
+# mat
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
-"currently uses\n"
-"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services're configured to be run on\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Klassinen tapa etsiä virheitä ääniasetuksissa on suorittaa \n"
-"seuraavat komennot:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" kertoo mitä ajuria äänikorttisi \n"
-"käyttää oletuksena.\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" kertoo mitä ajuria äänikorttisi\n"
-"käyttää tällä hetkellä.\n"
-"\n"
-"- \"/sbin/lsmod\" komennolla tarkistat onko äänikortin moduuli (ajuri)\n"
-"ladattu vai ei .\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" ja \"/sbin/chkconfig --list alsa\"\n"
-"kertoo sinulle jos ääni- ja ALSA-palvelut ovat asetettu toimimaan\n"
-"initlevel 3 -tasossa.\n"
-"\n"
-"- \"aumix -q\" kertoo onko ääni mykistetty vai ei.\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" kertoo mikä ohjelma käyttää äänikorttia.\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
-msgstr "Halt virhe"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Postihälytyksen asetukset"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr "Tokelau"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Matching"
-msgstr "Täsmää"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bosnian"
-msgstr "Bosnia"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Release: "
-msgstr "Jakelu"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection speed"
-msgstr "Yhteyden nopeus"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr "Namibia"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Database Server"
-msgstr "Tietokantapalvelin"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr "erikoisominaisuudet ajurissa (polttomahdollisuus ja/tai DVD tuki)"
+"After changing type of partition %s, all data on this partition will be lost"
+msgstr "Vaihdettuasi osion %s tyyppiä kaikki siinä olevat tiedot häviävät"
-#: ../../raid.pm:1
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "En voi lisätä osiota _alustetulle_ RAID:lle md%d"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose a partition"
+msgstr "Valitse osio"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Network Time Protocol"
-msgstr "Verkkoliitäntä"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose another partition"
+msgstr "Valitse toinen osio"
-#: ../../Xconfig/card.pm:1
-#, 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."
-msgstr ""
-"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit vain XFree %s:"
-"ssa.\n"
-"HUOMAA, ETTÄ TUKI ON KOKEELLINEN JA VOI JUMIUTTAA TIETOKONEESI.\n"
-"Korttisi on tuettu myös XFree %s:ssa, jossa on mahdollisesti parempi 2D-tuki."
+#: ../../diskdrake/interactive.pm_.c:202
+msgid "Exit"
+msgstr "Poistu"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Odota hetki, asetetaan turvaoptiot..."
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
+msgstr "Vaihda asiantuntijatilaan"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "Tuntematon|CPH05X (bt878) [monta valmistajaa]"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
+msgstr "Vaihda normaalitilaan"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Käytä X-Window-järjestelmää"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "Peruuta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr "tunneittain"
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "Jatka joka tapauksessa?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
-msgstr "Oikea Shift näppäin"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "Lopeta tallentamatta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr " onnistuneesti palautettu paikkaan %s "
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "Lopeta kirjoittamatta osiotalua?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Asetan tulostusporttia CUPS:n käyttöön..."
+#: ../../diskdrake/interactive.pm_.c:257
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "Haluatko tallentaa muutokset tiedostoon /etc/fstab"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr "Antigua and Barbuda"
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "Tyhjennä kaikki"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! Osoittaa että salasana järjestelmän tietokannassa on eri kuin\n"
-"PäätePalvelimen tietokannassa oleva.\n"
-"Poista ja lisää käyttäjä uudestaan PäätePalvelimeen mahdollistaaksesi\n"
-"sisäänkirjoittautuminen."
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
+msgstr "Automaattinen varaus"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "Espanja"
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+msgid "More"
+msgstr "Lisää"
-#: ../../services.pm:1
-#, c-format
-msgid "Start"
-msgstr "Käynnistä"
+#: ../../diskdrake/interactive.pm_.c:278
+msgid "Hard drive information"
+msgstr "Kiintolevyn tiedot"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
-msgstr "Suora root-sisäänkirjautuminen"
+#: ../../diskdrake/interactive.pm_.c:310
+msgid "All primary partitions are used"
+msgstr "Kaikki primääriosiot käytetty"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring applications..."
-msgstr "Asetetaan ohjelmia..."
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "Uusia osioita ei voida lisätä"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:312
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."
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
msgstr ""
-"\n"
-"Tervetuloa Tulostimen asetusvelhoon\n"
-"\n"
-"Tämä velho auttaa sinua asentamaan paikallisesti liitetyn, suoraan verkkoon "
-"liitetyn tai Windows etäkoneeseen liitetyn tulostimen (tulostimia).\n"
-"\n"
-"Jos sinulla on paikallisesti liitetty tulostin (tulostimia), varmista että "
-"se/ne on kytketty päälle jotta se/ne voidaan tunnistaa automaattisesti. Myös "
-"verkkotulostin (tulostimet) ja Windows kone(et) pitää olla päällä.\n"
-"\n"
-"Huomaa että tulostimen tunnistaminen verkosta kestää kauemmin kuin "
-"paikallisten tulostimien tunnistus. Eli poista verkkotulostimien ja/tai "
-"Windows-tulostimien tunnistus, jos et tarvitse niitä.\n"
-"\n"
-"Paina \"Seuraava\" kun haluat jatkaa tai \"Peruuta\" jos et halua asettaa "
-"tulostinta (tulostimia) nyt."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
-msgstr "Tavallinen modeemiyhteys"
-
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "File Selection"
-msgstr "Tiedostojen valinta"
+"Voidaksesi luoda lisää osioita tuhoa yksi olemassaoleva osio jotta voisit "
+"luoda laajennetun osion"
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
+#: ../../diskdrake/interactive.pm_.c:322
+msgid "Save partition table"
+msgstr "Tallenna osiotaulu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Tyhjennä nauhaa ennen varmuuskopiointia"
+#: ../../diskdrake/interactive.pm_.c:323
+msgid "Restore partition table"
+msgstr "Palauta osiotaulu"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
-msgstr "Suorita asetustyökalu"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
+msgstr "Pelasta osiotaulu"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "Käyttöjärjestelmän lataajan asennus"
+#: ../../diskdrake/interactive.pm_.c:326
+msgid "Reload partition table"
+msgstr "Uudelleenlataa osiotaulu"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Juuriosion koko Mt: "
+#: ../../diskdrake/interactive.pm_.c:331
+msgid "Removable media automounting"
+msgstr "Vaihdettavan median automaattinen liittäminen"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Tämä on pakollinen paketti, sitä ei voida poistaa valinnoista"
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "Valitse tiedosto"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:347
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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
-" - Luo etherboot levykkeet/CD:t:\n"
-" \t\tLevyttömät asiakaskoneet tarvitsevat joko ROM-kuvat "
-"verkkokortissa, tai\n"
-" \t\tkäynnistyslevykkeen tai CD:n käynnistämään käynnistysjakson. "
-"drakTermServ\n"
-" \t\tauttaa näiden kuvien luonnissa, jotka perustuvat asiakaskoneiden "
-"verkkokorttiin.\n"
-" \t\t\n"
-" \t\tPerusesimerkki käynnistyslevykkeen luominen 3Com 3c509 "
-"verkkokortille:\n"
-" \t\t\n"
-" \tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"The backup partition table has not the same size\n"
+"Still continue?"
+msgstr ""
+"Osiotaulun varmuuskopio ei ole saman kokoinen\n"
+"Jatka silti?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "Etherboot ISO-kuva on %s"
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "Varoitus"
-#: ../../services.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:362
msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
-"named (BIND) on nimipalvelin (DNS) jota käytetään muunnettaessa koneiden "
-"verkkonimiä IP-osoitteiksi."
+"Aseta levyke asemaan\n"
+"Kaikki levykkeen tiedot häviävät"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr "Saint Lucia"
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
+msgstr "Yritän osiotalulun pelastusta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "Marraskuu"
+#: ../../diskdrake/interactive.pm_.c:379
+msgid "Detailed information"
+msgstr "Yksityiskohtaiset tiedot"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
-msgstr "Katkaise yhteys..."
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "Uusi koko"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Report"
-msgstr "Raportti"
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "Siirrä"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr "Palau"
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "Alusta"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "taso"
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "Lisää RAIDiin"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr ""
-"Kaikkia tapauksia seurataan yhden pätevän MandrakeSoft:n teknisen "
-"asiantuntijan toimesta."
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "Lisää LVM:iin"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "Pakettiryhmien valinta"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "Poista RAIDista"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Salli paikallinen\n"
-"laitteistoasetus."
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "Poista LVM:stä"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Palauta verkon kautta protokollalla: %s"
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "Muokkaa RAIDia"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr "Voit määrittää moduulin jokaisen parametrin täällä."
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
+msgstr "Käytä loopback-tiedostoa"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Valitse näyttötila ja värimäärä"
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "Luo uusi osio"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
-msgstr "Emuloi kolmas näppäin?"
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "Aloitussektori: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "Koko Mt: "
+
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "Tiedostojärjestelmä: "
+
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Ominaisuus: "
+
+#: ../../diskdrake/interactive.pm_.c:481
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 ""
"Et voi luoda uutta osiota.\n"
-"(koska sinulla on jo maksimimäärä primääriosioita käytössä).\n"
+"(koska sinulla on jo maksimi-määrä primääriosioita käytössä).\n"
"Poista ensin yksi primääriosio, ja luo laajennettu osio sen tilalle."
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr "Liitä"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Valmistelen automaattisen asennuksen levykettä"
-
-# Asennuksen sivuvalikko
-#: ../../steps.pm:1
-#, c-format
-msgid "Install updates"
-msgstr "Asenna päivitykset"
+# mat
+#: ../../diskdrake/interactive.pm_.c:511
+msgid "Remove the loopback file?"
+msgstr "Poista loopback-tiedosto?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
-msgstr "tekstiruudun korkeus"
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "Muuta osiotyyppiä"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "State"
-msgstr "Tila"
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+msgid "Which filesystem do you want?"
+msgstr "Minkä tiedostojärjestelmän haluat?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Varmista, että media on laitteessa %s"
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
+msgstr "Vaihdan ext2:sta ext3:een"
-#: ../../any.pm:1
+# mat
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Enable multiple profiles"
-msgstr "Käytä useaa profiilia"
+msgid "Where do you want to mount loopback file %s?"
+msgstr "Minne haluat liittää loopback-tiedoston %s?"
-#: ../../fs.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr "Älä tulkitse merkki- tai lohkolaitteita tiedostojärjestelmässä."
+msgid "Where do you want to mount device %s?"
+msgstr "Minne haluat liittää laitteen %s?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
-"Näillä asetuksilla voit varmuuskopioida ja palauttaa kaikki tiedostot /etc-"
-"hakemistosta.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Local printer"
-msgstr "Paikallinen tulostin"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Files Restored..."
-msgstr "Tiedostot palautettu..."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
-msgstr "Pakettien valinta"
+"Ei voida poistaa liitospaikkaa koska osiota käytetään loopback-tilassa.\n"
+"Poista loopback-tiedosto ensin"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:606
#, c-format
-msgid "Mauritania"
-msgstr "Mauritania"
+msgid "Where do you want to mount %s?"
+msgstr "Minne haluat liittää laitteen %s?"
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
-"Voin pitää nykyiset asetuksesi sekä olettaa että olet jo asettanut DHCP-"
-"palvelimen; siinä tapauksessa varmista, että olen tunnistanut käyttämäsi "
-"verkkoasetukset verkollesi oikein; en aseta sitä uudelleen enkä koske DHCP-"
-"palvelimen asetuksiin.\n"
-"\n"
-"Oletus DNS-tietue on välimuisti-nimipalvelin, joka on asetettu palomuurissa. "
-"Voit vaihtaa sen tilalle esimerkiksi Internet-palveluntarjoajasi DNS:n IP:"
-"n.\n"
-"\n"
-"Tai, voin uudelleenasettaa verkkoliitäntäsi ja (uudelleen)asettaa DHCP-"
-"palvelimen sinulle.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "Lasken FAT-tiedostojärjestelmän rajoja"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
-"Paikallista tulostinta ei löydetty! Asentaaksesi tulostimen syötä laitenimi/ "
-"tiedostonimi syöteriville (Rinnakkaisportti: /dev/lp0, /dev/lp1, ... "
-"vastaavat LPT1:, LPT2:,..., ensimmäinen USB tulostin:/dev/usb/lp0, "
-"seuraava: /dev/usb/lp1, ...)"
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "Muutan kokoa"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All primary partitions are used"
-msgstr "Kaikki primääriosiot käytetty"
+#: ../../diskdrake/interactive.pm_.c:662
+msgid "This partition is not resizeable"
+msgstr "Tämän osion kokoa ei voi muuttaa"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "LPD-palvelimella \"%s\", tulostin \"%s\""
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
+msgstr "Kaikki osion tiedot tulisi varmuuskopioida"
-#: ../../network/netconnect.pm:1
+# mat
+#: ../../diskdrake/interactive.pm_.c:669
#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"Kun tämä on tehty, suosittelemme käynnistämään X-ympäristön\n"
-"uudelleen välttääksesi järjestelmän nimen vaihdoksesta koituvat ongelmat."
+msgid "After resizing partition %s, all data on this partition will be lost"
+msgstr "Osion %s koon muuttamisen jälkeen kaikki osion tiedot tuhoutuvat"
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr ""
-"Automaattinen uuden laitteiston havaitseminen ja asettaminen "
-"käynnistettäessä."
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "Valitse uusi koko"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation Server Configuration"
-msgstr "Asennuspalvelimen asetus"
+#: ../../diskdrake/interactive.pm_.c:675
+msgid "New size in MB: "
+msgstr "Uusi koko (Mt): "
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "Asetan IDE-levyä"
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "Mille levylle haluat siirtää?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Verkkotoimintoja ei ole asetettu"
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "Sektori"
-# Asennuksen sivuvalikko
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Configure module"
-msgstr "Aseta moduuli"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "Mille sektorille haluat siirtää?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "Kookossaaret"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "Siirrän"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Sinun täytyy käynnistää kone uudelleen ennen kuin muutos tulee voimaan"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "Siirrän osiota..."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
-msgstr "Palveluntarjoajan puhelinnumero"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr "Valitse olemassaoleva RAID johon lisätään"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Host %s"
-msgstr "Kone %s"
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "uusi"
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
-msgstr "Fiji"
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
+msgstr "Valitse olemassaoleva LVM johon lisätään"
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
-msgstr "Armenia"
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
+msgstr "LVM:n nimi?"
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "Toinen levykeasema"
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
+msgstr "Osiota ei voida käyttää loopback-osiona"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
-msgstr "Tietoja Harddrake:sta"
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
+msgstr "Loopback"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
-msgstr "Valtuuta TCP-yhteydet X Windowille"
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
+msgstr "Loopback tiedostonimi: "
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr "Aseman kapasiteetti"
+#: ../../diskdrake/interactive.pm_.c:831
+msgid "Give a file name"
+msgstr "Anna tiedostonimi"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
-msgstr ""
-"Aseta levyke asemaan\n"
-"Kaikki levykkeen tiedot häviävät"
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
+msgstr "Tiedosto on jo käytössä toiselle loopbackille, valitse toinen"
-# mat
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "Koko: %s"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
+msgstr "Tiedosto on jo olemassa. Käytä sitä?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Control ja Shift näppäimet samanaikaisesti"
+#: ../../diskdrake/interactive.pm_.c:858
+msgid "Mount options"
+msgstr "Liittämisen optiot"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "secondary"
-msgstr "toissijainen"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
+msgstr "Useita"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Näytä varmuuskopioinnin asetukset."
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "laite"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr "jos asetettu, raportoidaan tarkistuksen tulokset syslog:iin."
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "taso"
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "Ei salasanaa"
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "palan koko"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nigeria"
-msgstr "Nigeria"
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
+msgstr "Varo: tämä on vaarallinen toiminto"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s tarvitsee konenimi...\n"
+#: ../../diskdrake/interactive.pm_.c:962
+msgid "What type of partitioning?"
+msgstr "Minkä tyyppinen osiointi?"
-#: ../../install_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:978
#, c-format
-msgid "There is no existing partition to use"
-msgstr "Ei ole olemassa olevaa osiota käytettäväksi"
+msgid "The package %s is needed. Install it?"
+msgstr "Paketti %s tarvitaan. Haluatko asentaa sen?"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:992
msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
-"Seuraavat kuvanlukijat:\n"
-"\n"
-"%s\n"
-"on käytettävissä järjestelmässäsi.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Monikäyttölaite rinnakkaisportissa #%s"
+"/boot hakemistoa ei voida luoda näin kauas levyn alusta (sylinterille joka "
+"on > 1024).\n"
+"Joko käytät LILOa ja se ei toimi, tai et käytä LILOa, jolloin et tarvitse /"
+"boot -hakemistoa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:996
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."
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-"Tulostaaksesi TCP tai Socket tulostimeen, sinun täytyy antaa tulostimen "
-"verkkonimi tai IP-osoite ja tarvittaessa porttinumero (oletus: 9100). HP:n "
-"JetDirect tulostuspalvelimien portti on yleensä 9100, muissa palvelimissa "
-"voi olla eri portti. Katso laitteistosi käsikirjaa."
+"Osio jolle valitsit juuren (/) on fyysisesti yli 1024 sylinterin levyllä,\n"
+"eikä sinulla ole /boot osiota.\n"
+"Jos haluat käyttää LILO-käynnistyksenhallintaa, lisää Linuxille /boot osio."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Hard drive information"
-msgstr "Kiintolevyn tiedot"
+#: ../../diskdrake/interactive.pm_.c:1002
+msgid ""
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
+msgstr ""
+"Olet valinnut ohjelmallisen RAID-osion juuriosioksi (/).\n"
+"Mikään käynnistyslataaja ei osaa käsitellä tätä ilman /boot -osiota.\n"
+"Lisää /boot -osio, jos haluat käyttää liloa tai grubia"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid "Russian"
-msgstr "Venäjä"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "Levyn %s osiotaulu kirjotetaan levylle!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Jordan"
-msgstr "Jordania"
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
+msgstr "Sinun täytyy käynnistää kone uudelleen ennen kuin muutos tulee voimaan"
-#: ../../diskdrake/interactive.pm:1
+# mat
+#: ../../diskdrake/interactive.pm_.c:1037
#, c-format
-msgid "Hide files"
-msgstr "Piilota tiedostot"
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr "Kaikki osiolla %s olevat tiedot häviävät osion alustuksen yhteydessä"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Tunnista automaattisesti tähän koneeseen liitetyt tulostimet"
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "Alustan"
-#: ../../any.pm:1
+# mat
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "Valitan, levykeasemaa ei löydy"
+msgid "Formatting loopback file %s"
+msgstr "Alustan loopback-tiedostoa %s"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "Bolivia"
-msgstr "Bolivia"
+msgid "Formatting partition %s"
+msgstr "Alustan osiota %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Aseta Windows-palvelimesi jakamaan tulostinta IPP protokollan kautta ja "
-"aseta tulostaminen tästä koneesta käyttäen \"%s\" yhteystapaa Printerdrake:"
-"ssa.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Hide files"
+msgstr "Piilota tiedostot"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "Viallinen paketti"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Move files to the new partition"
+msgstr "Siirrä tiedostot uuteen osioon"
-#: ../advertising/07-server.pl:1
+#: ../../diskdrake/interactive.pm_.c:1053
#, 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!"
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-"Muuta koneesi tehokkaaksi Linux palvelimeksi parilla hiiren näppäimen "
-"painalluksella: webbipalvelin, sähköposti, palomuuri, reititin, tiedosto- ja "
-"tulostuspalvelin, ..."
+"Hakemisto %s sisältää jo jotakin tietoa\n"
+"(%s)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "DrakSec Basic Options"
-msgstr "DracSec perusoptiot"
+#: ../../diskdrake/interactive.pm_.c:1064
+msgid "Moving files to the new partition"
+msgstr "Siirrän tiedostoja uudelle osiolle"
-#: ../../standalone/draksound:1
+#: ../../diskdrake/interactive.pm_.c:1068
#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Huomaa: Jos sinulla on ISA PnP äänikortti, sinun pitää käyttää sndconfig "
-"ohjelmaa. Eli kirjoita \"sndconfig\" konsolissa."
+msgid "Copying %s"
+msgstr "Kopioidaan %s"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1072
#, c-format
-msgid "Romania"
-msgstr "Romania"
+msgid "Removing %s"
+msgstr "Poistetaan %s"
-#: ../../standalone/drakperm:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid "Group"
-msgstr "Ryhmä"
+msgid "partition %s is now known as %s"
+msgstr "osio %s tunnetaan nyt nimellä %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Canada"
-msgstr "Kanada"
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "Laite: "
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "choose device"
-msgstr "valitse laite"
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "DOS-asema: %s (vain arvaus)\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from LVM"
-msgstr "Poista LVM:stä"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "Tyyppi: "
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Timezone"
-msgstr "Aikavyöhyke"
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "Nimi: "
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "German"
-msgstr "Saksa"
+msgid "Start: sector %s\n"
+msgstr "Alkaa: sektori %s\n"
-#: ../../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
+# mat
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "Next ->"
-msgstr "Seuraava ->"
+msgid "Size: %s"
+msgstr "Koko: %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid ""
-"Turning on this allows to print plain text files in japanese language. Only "
-"use this function if you really want to print text in japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Ottamalla tämä käyttöön, sallit japaninkielisten tekstitiedostojen "
-"tulostaminen. Käytä tämä ainoastaan jos todellakin haluat tulostaa "
-"japaninkielinen teksti. Jos tämä on käytössä et voi enää tulostaa "
-"latinanfonttien erikoismerkkejä eikä asettaa marginaaleja, tekstikokoa, jne. "
-"Tämä asetus koskee ainoastaan tässä koneessa määritettyjä tulostimia. Jos "
-"haluat tulostaa japaninkielinen teksti etäkoneessa olevalla tulostimella, "
-"sinun pitää asettaa tämä toimintosiinä koneessa."
+msgid ", %s sectors"
+msgstr ", %s sektoria"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"On mahdollista, että tämä osio on\n"
-"ajuriosio. Sinun olisi kaiketi\n"
-"parasta jättää se rauhaan.\n"
+msgid "Cylinder %d to %d\n"
+msgstr "Sylinteristä %d sylinteriin %d\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "Alustettu\n"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Vaakavirkistystaajuus"
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "Ei alustettu\n"
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
+msgstr "Liitetty\n"
+
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Edit"
-msgstr "Muokkaa"
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, c-format
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+"Loopback file(s):\n"
+" %s\n"
msgstr ""
-"Ei voida poistaa liitospistettä koska osiota käytetään loopback-tilassa.\n"
-"Poista loopback-tiedosto ensin"
+"Loopback tiedosto(t):\n"
+" %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1132
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\""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"Verkkoasetusta, joka tehtiin asennuksen aikana, ei voida käynnistää nyt. Ole "
-"hyvä ja tarkista onko verkko käytettävissä kun olet käynnistänyt "
-"järjestelmäsi uudelleen ja korjannut asetukset Mandraken Ohjauskeskuksessa, "
-"osassa \"Verkko & Internet\"/\"Yhteys\", ja aseta sen jälkeen tulostin, myös "
-"Mandraken Ohjauskeskuksessa, osassa \"Laitteisto\"/\"Tulostin\"."
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "USB controllers"
-msgstr "USB-ohjaimet"
+"Osiolta käynnistetään oletuksena\n"
+" (MS-DOS käynnistys, ei lilo)\n"
-#: ../../Xconfig/various.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "What norm is your TV using?"
-msgstr "Mikä normia televisiosi käyttää?"
+msgid "Level %s\n"
+msgstr "Taso %s\n"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "Type:"
-msgstr "Tyyppi:"
+msgid "Chunk size %s\n"
+msgstr "Palan koko %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Share name"
-msgstr "Jakonimi"
+msgid "RAID-disks %s\n"
+msgstr "RAID-levyt %s\n"
-#: ../../standalone/drakgw:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "enable"
-msgstr "ota käyttöön"
+msgid "Loopback file name: %s"
+msgstr "Loopback-tiedoston nimi: %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-"Otan yhteyttä Mandrake Linuxin sivustolle saadakseni listan olemassaolevista "
-"peilipalvelimista..."
+"\n"
+"On mahdollista, että tämä osio on\n"
+"ajuriosio. Sinun olisi kaiketi\n"
+"parasta jättää se rauhaan.\n"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"Ongelma käynnistettäessä verkkoa uudelleen: \n"
"\n"
-"%s"
-
-# mat
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove the loopback file?"
-msgstr "Poista loopback-tiedosto?"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "Valittu koko on suurempi kuin käytettävissä oleva levytila"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP server name missing!"
-msgstr "NCP-palvelimen nimi puuttuu!"
+"Tämä erityinen Bootsrap-\n"
+"osio on järjestelmäsi\n"
+"kaksoiskäynnistämiseksi.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose your country."
-msgstr "Valitse maa jossa asut."
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
+msgstr "Vain luku"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Kiintolevyn varmuuskopiotiedostot..."
+msgid "Size: %s\n"
+msgstr "Koko: %s\n"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "Laotian"
-msgstr "Latvia"
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Geometria: %s sylinteriä, %s lukupäätä, %s sektoria\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Samoa"
-msgstr "Samoa"
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
+msgstr "Tietoja: "
-#: ../../services.pm:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Rstat-protokolla mahdollistaa verkkokäyttäjille\n"
-"eri koneiden tilatietojen haun."
+msgid "LVM-disks %s\n"
+msgstr "LVM-levyt %s\n"
-#: ../../standalone/scannerdrake:1
+# mat
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid "Re-generating list of configured scanners ..."
-msgstr "Luodaan asetettujen kuvanlukijoiden listaus uudelleen ..."
+msgid "Partition table type: %s\n"
+msgstr "Osion tyyppi: %s\n"
-#: ../../modules/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1169
#, c-format
-msgid "Module configuration"
-msgstr "Moduulien asettaminen"
+msgid "on channel %d id %d\n"
+msgstr "väylässä %d id %d\n"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Scanner"
-msgstr "Kuvanlukija"
+#: ../../diskdrake/interactive.pm_.c:1199
+msgid "Filesystem encryption key"
+msgstr "Tiedostojärjestelmän salausavain"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Varoitus: näytönohjaimesi testaaminen voi jumiuttaa tietokoneen"
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
+msgstr "Valitse tiedostojärjestelmäsi salausavain"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1203
#, c-format
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-"Käyttäjätunnus saa sisältää vain pieniä kirjaimia, numeroita, `-' ja `_'"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
+"Salausavain on liian yksinkertainen (sen pitää olla ainakin %d merkkiä pitkä)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "Tervetuloa murtautujat"
+#: ../../diskdrake/interactive.pm_.c:1204
+msgid "The encryption keys do not match"
+msgstr "Salausavaimet eivät täsmää"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "Moduulin optiot:"
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
+msgstr "Salausavain"
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
-msgstr "Turvaa verkkosi käyttäen Multi Network Firewall"
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
+msgstr "Salausavain (uudelleen)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Jatka asettamatta verkkoyhteyttä"
+#: ../../diskdrake/removable.pm_.c:47
+msgid "Change type"
+msgstr "Muuta tyyppiä"
-#: ../../network/isdn.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "Abort"
-msgstr "Hylkää"
+msgid "Can't login using username %s (bad password?)"
+msgstr "En voi kirjoittautua käyttäjätunnuksella: %s (väärä salasana?)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "Ei salasanakyselyä kohteessa %s portissa %s"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Verkkoalue tunnistus vaaditaan"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse rullaemuloinnilla"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Toinen"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Etäkoneiden kuvanlukijoiden käyttö"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Mikä käyttäjätunnus"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
+"Please enter your username, password and domain name to access this host."
msgstr ""
-"Windows-osiosi on liian pirstoutunut, käynnistä koneesi uudelleen, mene "
-"Windowsiin ja aja \"Levyn eheytys\" ensin, ja aloita Mandrake Linuxin "
-"asennus uudestaan sen jälkeen."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norja)"
+"Anna tunnuksesi, salasanasi ja verkkoaluettasi käyttääksesi tämä palvelin."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Kiintolevyn varmuuskopion edistyminen..."
-
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Prosessia %s ei voitu haarauttaa"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "Tyyppi: "
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Muokkaa asiakasta"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+msgid "Username"
+msgstr "Käyttäjätunnus"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "no fonts found"
-msgstr "kirjasimia ei löytynyt"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Verkkoalue"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Mouse"
-msgstr "Hiiri"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+msgid "Search servers"
+msgstr "Hae palvelimet"
-#: ../../bootloader.pm:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "not enough room in /boot"
-msgstr "ei tarpeeksi tilaa hakemistossa /boot"
+msgid "%s formatting of %s failed"
+msgstr "%s:n alustus %s:ta epäonnistui"
-#: ../../install_steps_gtk.pm:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "trying to promote %s"
-msgstr ""
+msgid "I don't know how to format %s in type %s"
+msgstr "en osaa alustaa %s:ää tyyppiä %s"
-#: ../../lang.pm:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
+msgid "mounting partition %s in directory %s failed"
+msgstr "osion %s liittäminen hakemistoon %s epäonnistui"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid "Host name"
-msgstr "Koneen nimi"
+msgid "error unmounting %s: %s"
+msgstr "virhe irroitettaessa %s: %s"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the color of the progress bar"
-msgstr "edistymispalkin väri"
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "yksinkertainen"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Poista kirjasintiedostot"
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
+msgstr "erillinen '/usr' osio"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to RAID"
-msgstr "Lisää RAIDiin"
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "palvelin"
-#: ../../help.pm:1
+#: ../../fsedit.pm_.c:240
#, c-format
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"
+"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"
-" * 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."
+"Do you agree to loose all the partitions?\n"
msgstr ""
-"Voit lisätä ylimääräisiä tietueita Yabootille, joko toisia käyttö-\n"
-"järjestelmiä, vaihtoehtoisia ytimiä, tai hätätilan käynnistyskuvan.\n"
-"\n"
-"Toisille käyttöjärjestelmille tietue sisältää ainoastaan nimikkeen ja\n"
-"\"juuri\"-osion.\n"
-"\n"
-"Linuxille löytyy pari lisäoptiota:\n"
-"\n"
-" * Nimike: tämä on vain se nimi joka sinun pitää kirjoittaa Yabootin\n"
-"kehotteessa valitaksesi tämän käynnistysvaihtoehdon;\n"
-"\n"
-" * Kuva: tämä on käynnistettävän ytimen nimi. Yleensä tämä on vmlinux\n"
-"tai vmlinux eri päätteillä;\n"
-"\n"
-" * Juuri: tämä on\"juuri\"-laite, tai ``/'' Linux-asennuksellesi;\n"
-"\n"
-" * Lisää: Applen laitteistoilla ytimen lisää-optiota käytetään monesti "
-"apuna\n"
-"videolaitteiston alustamisessa tai määrittämään Applen vakiohiiristä\n"
-"yleensä puuttuvan toisen ja kolmannen hiirinäppäimen emuloinnin\n"
-"näppäimistöllä emuloiden. Tässä pari esimerkkiä:\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: tätä optiota voidaan käyttää alkuvaiheessa tarvittavien "
-"moduulien\n"
-"lataamiseen ennen kuin käynnistyslaite on käytettävissä tai virtuaalisen\n"
-"levykuvan lataamiseen muistiin hätätilanteissa.\n"
-"\n"
-" * Initrd:n koko: virtuaalilevyn vakiokoko on yleensä 4096 tavua. Jos sinun\n"
-"tarvitsee määrittää iso virtuaalilevy, voit käyttää tätä optiota\n"
-"\n"
-" * Luku-kirjoitus: yleensä \"juuri\"-osio liitetään vain lukutilassa,\n"
-"jotta voidaan suorittaa tiedostojärjestelmän tarkistus ennen\n"
-"kuin järjestelmä siirtyy ``aktiiviseen'' tilaan. Tässä voit ohittaa\n"
-"oletukset käyttämällä tätä optiota;\n"
-"\n"
-" * Ei näyttöä: jos Applen näytönohjain sattuu olemaan erittäin\n"
-"ongelmallinen, voit valita tämän option käynnistääksesi ``ei-näyttöä''\n"
-"-tilaan, jossa on sisäänrakennetun kehyspuskurin tuki;\n"
+"En voi lukea laitteen %s osiotaulukkoa. Se on liian korruptioitunut :(.\n"
+"Voin yrittää jatkaa poistamalla kaikki virheelliset osiot (KAIKKI TIEDOT\n"
+"tuhotaan). Toinen vaihtoehto on ettei sallita DrakX muokata osiotaulukkoa.\n"
+"(virhe: %s)\n"
"\n"
-" * Oletus: valitsee nykyisen tietueen Linuxin oletusvalinnaksi, joka "
-"voidaan\n"
-"valita vain painamalle ENTER Yabootin kehotteessa. Tämä tietue on\n"
-"myös merkitty ``*'' jos painat [Tab] nähdäksesi käynnistysvalinnat."
+"Hyväksytkö että kaikki virhelliset osiot poistetaan?\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr ""
-"Tulostin \"%s\" lisättiin Star Office/OpenOffice.org/GIMP käyttöön "
-"onnistuneesti."
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr "Et voi käyttää JFS:ää alle 16 Mt osioilla"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Ei levykeasemaa käytettävissä!"
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "Et voi käyttää ReiserFS:ää alle 32 Mt osioilla"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"Saadaksesi tietoja nykyisen tulostimen olemassa olevista optioista, lue joko "
-"alla näytetty lista tai paina \"Tulostusparametrien lista\" painiketta.%s%s%"
-"s\n"
-"\n"
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
+msgstr "Liitospaikan pitää alkaa /-merkillä."
-#: ../../lang.pm:1
+# mat
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "Saudi Arabia"
-msgstr "Saudi Arabia"
+msgid "There is already a partition with mount point %s\n"
+msgstr "On jo olemassa osio, jonka liitospaikka on %s\n"
-#: ../../services.pm:1
+#: ../../fsedit.pm_.c:526
#, c-format
-msgid "Internet"
-msgstr "Internet"
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr "Et voi käyttää LVM loogista taltiota liitekohtana %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "Jatka joka tapauksessa?"
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
+msgstr "Tämän hakemiston pitäisi olla juuritiedostojärjestelmässä"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:530
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Jos tulostimesi ei ole listattu, valitse yhteensopiva (katso tulostimen "
-"ohjekirjasta) tai vastaava."
+"Tarvitset oikean tiedostojärjestelmän (ext2/ext3, reiserfs, xfs tai jfs) "
+"tälle liitospisteelle.\n"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:532
#, c-format
-msgid "Printer"
-msgstr "Tulostin"
+msgid "You can't use an encrypted file system for mount point %s"
+msgstr "Et voi käyttää salattua tiedostojärjestelmää liitoskohdassa %s"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices were added:\n"
-msgstr "Joitakin laitteita lisättiin:\n"
+#: ../../fsedit.pm_.c:599
+msgid "Not enough free space for auto-allocating"
+msgstr "Vapaa tila ei riitä automaattiseen varaukseen"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometria: %s sylinteriä, %s lukupäätä, %s sektoria\n"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
+msgstr "Ei mitään tekemistä"
-#: ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:694
#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Tulostus käynnissä tulostimella \"%s\""
+msgid "Error opening %s for writing: %s"
+msgstr "Virhe kirjoitettaessa %2$s tiedostoon %1$s."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr "/etc/hosts.allow ja /etc/hosts.deny on jo asetettu - ei muutoksia"
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Tape"
-msgstr "Palauta nauhalta"
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
+msgstr "Ei vaihtoehtoista ajuria"
-#: ../../standalone/drakbug:1
+#: ../../harddrake/sound.pm_.c:171
#, 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's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-"Lähettääksesi virheraportin, paina \"Raportti\" painiketta, joka avaa "
-"oletusselaimesi\n"
-"Anthill sivustoon jossa voit lähettää yllä mainittu tieto virheraporttina."
+"Tunnettua vaihtoehtoista OSS/ALSA ajuria äänikortillesi (%s) joka tällä "
+"hetkellä käyttää \"%s\""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the profile to configure"
-msgstr "Valitse profiili jonka haluat asettaa"
+#: ../../harddrake/sound.pm_.c:173
+msgid "Sound configuration"
+msgstr "Ääniasetukset"
-#: ../../security/l10n.pm:1
+#: ../../harddrake/sound.pm_.c:174
#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
msgstr ""
-"Salasanan vähimmäispituus sekä numeroiden ja isojen kirjainten lukumäärä"
+"Tällä voit valita vaihtoehtoisen ajurin (OSS tai ALSA) äänikortillesi (%s)."
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../harddrake/sound.pm_.c:176
#, c-format
msgid ""
"\n"
"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
"\n"
"\n"
-"Syötä Zeroconf konenimi ilman pistettä jos et \n"
-"halua käyttää oletus koneenimeä."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Luo heti asetustiedoston varmuuskopio"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr "Liitospisteet saavat sisältää vain kirjaimia ja numeroita"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Käynnistän tulostusjärjestelmää uudelleen..."
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr ""
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "Katso laitteistotietoja"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
-msgstr "Päivä"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr "Ensimmäinen sektori käynnistysosiolla"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Tulostimen valmistaja, malli"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Tulosta, älä jonota"
+"Käytät tällä hetkellä ajuria %s\"%s\" (vakioajuri kortillesi on \"%s\")."
-#: ../../standalone.pm:1
-#, 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)"
-msgstr ""
-"[OPTIOT]...\n"
-"Mandrake Terminal Server Asetustyökalu\n"
-"--enable : ota MTS käyttöön.\n"
-"--disable : poista MTS käytöstä.\n"
-"--start : käynnistä MTS\n"
-"--stop : pysäytä MTS\n"
-"--adduser : lisää olemassaoleva käyttäjä MTS:ään (tunnus vaaditaan)\n"
-"--deluser : poista olemassaoleva käyttäjä MTS:stä (tunnus vaaditaan)\n"
-"--addclient : lisää asiakaskone MTS:ään (vaatii MAC osoitteet, IP, nbi "
-"kuvatiedoston nimi)\n"
-"--delclient : poista asiakaskone MTS:stä (vaatii MAC osoitteet, IP, nbi "
-"kuvatiedoston nimi)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Aliverkon peite:"
+#: ../../harddrake/sound.pm_.c:178
+msgid "Driver:"
+msgstr "Ajuri:"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Set password expiration and account inactivation delays"
-msgstr "Aseta salasanan vanheneminen ja tilin käyttämättömyysviive"
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+msgid "Help"
+msgstr "Apua"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Lataa"
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
+msgstr "Apua ALSA ja OSS vaihtamisen välillä."
-#: ../../Xconfig/monitor.pm:1
-#, c-format
+#: ../../harddrake/sound.pm_.c:186
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"
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Sinun tulee valita vaakavirkistystaajuus näytöllesi. Voit joko valita "
-"jonkin\n"
-"allaolevista alueista, jotka vastaavat teollisuusstandardityyppejä tai "
-"syöttää\n"
-"jonkin muun alueen.\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"
-"On HYVIN TÄRKEÄÄ, että et valitse näyttötyyppiä, jonka "
-"vaakavirkistystaajuus\n"
-"on suurempi kuin oman näyttösi. Jos epäröit, valitse pienempi taajuus."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
-msgstr "Muokkaa"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"It also provides a much higher API than OSS.\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"
+"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 ""
+"OSS (Open Sound System, eli avoin äänijärjestelmä) oli ensimmäinen ääni-"
+"API.\n"
+"Se on käyttöjärjestelmäriippumaton ääni-API (se on saatavilla useimmille\n"
+"unix-järjestelmissä), mutta se aika perustason ja rajoitettu API.\n"
+"Sen lisäksi, OSS ajuri kaikki 'kehittävät pyörän uudelleen.\n"
"\n"
-"Komennot \"%s\" ja \"%s\" sallivat myös mahdollisuuden muokata asetukset "
-"erityiselle tulostustyölle. Voit yksinkertaisesti lisätä halutut asetukset "
-"komentoriville, esim.: \"%s <tiedosto>\". \n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr "Verkkoaseman nimi, tunnus ja salasana tarvitaan!"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Insert floppy"
-msgstr "Aseta levyke "
+"ALSA (Advanced Linux Sound system, eli linuxin edistynyt äänijärjestelmä) "
+"on\n"
+"modulaarinen arkkitehtuuri joka tukee laajan alueen ISA, USB ja PCI "
+"kortteja.\n"
+"\n"
+"Se tarjoaa myös paljon korkeamman tason API kuin OSS.\n"
+"\n"
+"Käyttääksesi ALSA, voit kkäyttää yksi näistä:\n"
+"- vanha OSS yhteensopiva api.\n"
+"- uusi ALSA api joka tarjoaa monta parannetut ominaisuudet,\n"
+" mutta vaatii ALSA-kirjaston käyttöä.\n"
-#: ../../diskdrake/dav.pm:1
+#: ../../harddrake/sound.pm_.c:202
#, 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\"."
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-"WebDAV on protokolla, joka sallii sinun liittää webbipalvelimen hakemisto\n"
-"paikallisesti, ja käyttää sitä paikallisena tiedostojärjestelmänä (olettaen "
-"että\n"
-"webbipalvelimeen on asennettu WebDAV tuki). Jos haluat lisätä WebDAV\n"
-"-liitoskohdan, valitse \"Uusi\"."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
-msgstr "uusi"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable syslog reports to console 12"
-msgstr "Ota käyttöön / poista käytöstä syslog:n raportin ohjaus konsoliin 12."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Haluatko kokeilla uudelleen?"
+"Vanha \"%s\" ajuri on 'mustalla listalla'.\n"
+"\n"
+"Sitä on raportoitu kaatamaan ytimen kuin sitä poistetaan käytöstä.\n"
+"\n"
+"Uusi \"%s\" ajuri otetaan käytöön seuraavassa käynnistyksessä."
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "Velho"
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+msgid "Please Wait... Applying the configuration"
+msgstr "Odota hetki... Otetaan asetukset käyttöön"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected server"
-msgstr "Muokkaa valittua palvelinta"
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "Odota hetki"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Valitse, mihin haluat tehdä varmuuskopiot"
+#: ../../harddrake/sound.pm_.c:210
+msgid "No known driver"
+msgstr "Ei tunnettua ajuria"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Sinun tulee käynnistää järjestelmä uudelleen jotta muutokset tulevat voimaan"
+msgid "There's no known driver for your sound card (%s)"
+msgstr "Ei tunnettua ajuria äänikortillesi (%s)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Älä sisällytä selaimen välimuistia"
+#: ../../harddrake/sound.pm_.c:214
+msgid "Unkown driver"
+msgstr "Tuntematon ajuri"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, c-format
msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-"Tiedostojärjestelmän %s tarkistus epäonnistui. Haluatko korjata virheet?\n"
-"(huomioi: voit menettää tietoja)"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Valitse näppäimistösi asettelu."
-
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "Vakio"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Valitse hiiren tyyppi."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
-msgstr "Yhdistä..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Tulostimen \"%s\" asetus epäonnistui!"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "not configured"
-msgstr "ei asetettu"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "About"
-msgstr "Tietoja"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "Välityspalvelimien asettaminen"
+"Ajuri \"%s\" äänikortillesi ei ole listattu.\n"
+"\n"
+"Ole hyvä ja lähetä \"lspcidrake -v\" tuloste osoitteeseen:\n"
+"<install at mandrakesoft dot com>\n"
+"otsikolla: unlisted sound driver \"%s\""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Alkaa: sektori %s\n"
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+msgid "Auto-detect"
+msgstr "Automaattinen tunnistaminen"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Mask"
-msgstr "Ei aliverkkoa"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+msgid "Unknown|Generic"
+msgstr "Tuntematon|Yleinen"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface already configured"
-msgstr "Verkkoliitäntä on jo asetettu"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Tuntematon|CPH05X (bt878) [monta valmistajaa]"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
-msgstr "En voinut käyttää levykettä!"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Tuntematon|CPH06X (bt878) [monta valmistajaa]"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
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."
+"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 ""
-"Varoitus: Voi olla ettei Vapaa Ohjelmisto on patenttivapaa, ja joitakin "
-"jakelussa\n"
-"olevia paketteja voi olla patenttien alaisuudessa maassasi. Esimerkiksi "
-"mukana\n"
-"olevat MP3-purkaajat voivat vaatia lisenssin jotta saisit käyttää sitä "
-"jatkuvasti\n"
-"(katso http://www.mp3licensing.com saadaaksesi lisää tietoa). Jos olet "
-"epävarma\n"
-"jos joku patentti koskee sinua, selvitä asiaa paikallisten viranomaisten "
-"kassa.\n"
-"\n"
-"\n"
-"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."
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Mail Server"
-msgstr "Sähköpostipalvelin"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "Klikkaa osiota"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Monitoimilaite HP JetDirectissä"
+"Useimmille nykyisille TV-kortille, GNU/Linux ytimen bttv-moduuli "
+"tunnistaaautomaattisesti oikeat parametrit.\n"
+"Jos korttisi on tunnistettu väärin, voit pakottaa oikean vastaanottimensekä "
+"kortin tyyppi täällä. Valitse TV-korttisi parametrejä tarvittaessa."
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
-msgstr "Hyvää päivänjatkoa!"
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Upgrade %s"
-msgstr "Päivitä %s"
+#: ../../harddrake/v4l.pm_.c:227
+msgid "Card model:"
+msgstr "Kortin malli:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Valitse tulostinyhteys"
+#: ../../harddrake/v4l.pm_.c:228
+msgid "Tuner type:"
+msgstr "Vastaanottimen tyyppi:"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
-msgstr "TV-kanavien haku käynnissä ..."
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
+msgstr "Kaappaus-puskurien määrä:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
-msgstr ""
-"Virhe tiedoston lähetyksessä käyttäen FTP:tä.\n"
-"Ole hyvä ja korjaa FTP-asetuksesi."
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "mmap-kaappaus-puskurien määrä:"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr "IP-alueen alku:"
+#: ../../harddrake/v4l.pm_.c:231
+msgid "PLL setting:"
+msgstr "PLL asetus:"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
-msgstr ""
-"Internet pääpalvelindemoni (yleensä inetd) käynnistää useita eri\n"
-"Internetpalveluita tarpeen mukaan. Palvelin käynnistää useita\n"
-"palveluita, kuten telnet, ftp, rsh ja rlogin. Inetd:n poistaminen\n"
-"poistaa myös nämä palvelut käytöstä."
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
+msgstr "Radio tuki:"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
-msgstr "edistymispalkin korkeus"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
+msgstr "ota radio-tuki käyttöön"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+"GNU/LInux on monen käyttäjän järjestelmä, ja tämä tarkoittaa että jokainen\n"
+"käyttäjä voi pitää omat asetukset, omat tiedostot jne. Voit lukea 'käyttö-\n"
+"ohjeet' saadaaksesi lisää tietoa tästä. Mutta \"root\"-käyttäjään "
+"verrattuna\n"
+"käyttäjät joita lisäät täällä eivät pysty muuttamaan mitään paitsi omia\n"
+"tiedostoja ja asetuksia. Sinun pitää luoda ainakin yksi tavallinen käyttäjä\n"
+"itsellesi. Se on tili jonka sinun kannattaa käyttää jokapäiväisessä "
+"työssäsi.\n"
+"Vaikka on kätevämpi kirjoittautua sisään \"root\"-tunnuksella, se on myös\n"
+"paljon vaarallisempi! Pienikin virhe voisi tarkoittaa ettei järjestelmäsi "
+"ei\n"
+"toimisi enää. Jos teet vakavan virheen tavallisena käyttäjänä, voit \n"
+"mahdollisesti menettää jotain tietoja, muttei koko järjestelmä.\n"
+"\n"
+"Ensin sinun pitää antaa oikea nimesi. Tämä ei ole pakollista, --voithan\n"
+"kirjoittaa mitä tahansa. DrakX kopioi ensimmäinen kirjoittamasi sana "
+"kenttään:\n"
+"\"Käyttäjänimi\". Tämä on se nimi jolla kyseinen käyttäjä kirjoittautuu\n"
+"järjestelmään. Voit muuttaa sitä. Sinun pitää myös syöttää salasanaa.\n"
+"Tavallisen käyttäjän salasana ei ole niin kriittinen kuin \"root\"-"
+"tunnuksen\n"
+"turvallisuusnäkökulmasta, mutta tämä ei olesyy tietoturvan laiminlyömiseen:\n"
+"Onhan kysymys tiedostoistasi turvasta.\n"
+"\n"
+"Jos painaat \"Hyväksy käyttäjä\", voit lisätä haluamasi määrä käyttäjiä.\n"
+"Lisää käyttäjää jokaiselle henkilölle jonka on tarkoitus käyttää tämä\n"
+"tietokone. Kun olet lisännyt kaikki haluamasi käyttäjiä, Valitse \"Valmis"
+"\".\n"
"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
+"Jos painaat \"Lisäasetukset\" painiketta voit muuttaa vakio\n"
+"\"komentotulkki\" kyseiselle käyttäjälle (vakiona bash).\n"
"\n"
-"- Tallenna %s kautta palvelimella: %s\n"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "Argentiina"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Domain Name Server"
-msgstr "Verkkoalueen nimipalvelin (DNS)"
+"Kun olet lisännyt kaikki käyttäjät, sinulle ehdotetaan valitsemaan "
+"käyttäjää\n"
+"joka voi kirjoittautua automaattisesti järjestelmään kun kone käynnistyy.\n"
+"Jos olet kiinnostunut tästä ominaisuudesta (etkä paljon piittaa "
+"paikallisesta\n"
+"tietoturvasta), valitse haluttu käyttäjä ja ikkunointijärjestelmä, ja paina\n"
+"\"Kyllä\". Jos et ole kiinnostunut tästä ominaisuudesta, paina \"Ei\"."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Level:"
-msgstr "Turvataso:"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr "Liitospisteiden pitää alkaa /-merkillä."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Valitse CD/DVD asemasi"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "CUPS server"
-msgstr "Nimipalvelin"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Postfix - postipalvelin"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "Lopeta tallentamatta"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "Jemen"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
-msgstr "Tämä tuote on saatavissa MandrakeStore:n webbisivustolla"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> On monta asiaa, joista valita (%s).\n"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
-msgstr ""
-
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../help.pm_.c:48
msgid ""
-"An error occurred:\n"
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/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"
-"%s\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\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"
+"\"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"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
-msgstr ""
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "Kiintolevyjen tunnistus"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+" * \"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 ""
-"Et ole valinnut yhtäkään pakettiryhmää.\n"
-"Valitse haluamasi minimaalinen asennus"
+"Listattu yllä ovat olemassaolevia tunnistettuja Linux osioita "
+"kovalevylläsi.\n"
+"Voit säilyttää velhon tekemät valinnat, ne ovat hyviä useimmille "
+"yleisimmille\n"
+"asennuksille. Jos teet muutoksia, sinun pitää ainakin luoda juuri-osion \n"
+"(\"/\"). Älä valitse liian pieni osio, tai et voi asentaa riittävästi "
+"ohjelmia.\n"
+"Jos haluat tallentaa tietojasi erilliselle osiolle, sinun täytyy luoda myös\n"
+"\"/home\" osion (mahdollista vain jos sinulla on enemmän kuin yksi Linux\n"
+"osio käytettävissä).\n"
+"\n"
+"Jokainen osio on listattu seuraavasti: \"Nimi\", \"Koko\".\n"
+"\n"
+"\"Nimi\" rakenne on seuraava: \"kovelevytyyppi\". \"kovalevynumero\", \n"
+"\"osionumero\" (esim. \"hda1\").\n"
+"\n"
+"\"kovalevytyyppi\" on \"hd\" jos kovalevysi on IDE-kovalevy, ja \"sd\" jos\n"
+"se on SCSI kovalevy.\n"
+"\n"
+"\"kovalevynumero\" on aina aakkonen \"hd\" ta i\"sd\" perässä.\n"
+"IDE-kovalevyille: \n"
+"\n"
+" * \"a\" tarkoittaa \" isäntälevy ensisijaisella IDE ohjaimella.;\n"
+"\n"
+" * \"b\" tarkoittaa \" orjalevy ensisijaisella IDE ohjaimella.;\n"
+"\n"
+" * \"c\" tarkoittaa \" isäntälevy toissijaisella IDE ohjaimella.;\n"
+"\n"
+" * \"d\" tarkoittaa \" orjalevy toisssijaisella IDE ohjaimella.;\n"
+"\n"
+" * ja niin edelleen...\n"
+"\n"
+"SCSI kovalevyillä, \"a\" tarkoittaa \"matalin SCSI ID\", \"b\" tarkoittaa\n"
+"\"toiseksi matalin SCSI ID\", jne..."
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../help.pm_.c:79
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 ""
-"Tarvitset Alcatek mikrokoodin.\n"
-"Voit hakea sitä nyt levykkeeltä tai windows osiolta,\n"
-"tai ohita ja aseta sitä myöhemmin."
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "Anna WebDAV palvelimen osoite (URL)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "Tadzikistan"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "Hyväksy"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "Kuvaus"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter summary text."
-msgstr "Syötä tiivistelmä teksti."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Virhe kirjoitettaessa %2s tiedostoon %1s"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Hiiren tyyppi: %s\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
-"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa."
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "Valitse monitori"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "Tyhjää nimikettä ei sallita"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
-msgstr "Malta (UK)"
+"Mandrake Linuxin asennus koostuu useasta CD-ROM-levystä. DrakX\n"
+"tietää, onko valittu paketti toisella CD:llä ja osaa tarvittaessa syöttää\n"
+"nykyisen levyn ulos ja kysyä oikeaa."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "Uusia osioita ei voida lisätä"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "Koko Mt: "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "Etätulostin"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
-msgstr "Valitse käytettävä kieli."
-
-#: ../../network/network.pm:1
-#, c-format
+#: ../../help.pm_.c:84
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 ""
-"VAROITUS: Tämä laite on aikaisemmin määritelty Internetyhteyden "
-"muodostamiseen.\n"
-"Hyväksy, jos haluat pitää laitteen asetukset sellaisina kuin ne olivat.\n"
-"Alla olevien kohtien muokkaaminen korvaa voimassa olevat asetukset."
-
-#: ../../any.pm:1
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
+"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"
+"you are not supposed to know them all by heart.\n"
+"\n"
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
+"\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
+"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
+"\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
+"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
+"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
+"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
+"\n"
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
-"Yksi käyttäjä voidaan asettaa kirjautumaan sisään automaattisesti "
-"tietokoneellesi."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Floppy format"
-msgstr "Levykkeen muoto"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Generic Printers"
-msgstr "Yleiset tulostimet"
+"Nyt on aikaa valita mitä ohjelmia haluat asentaa järjestelmääsi. On "
+"olemassa\n"
+"tuhansia paketteja Mandrake Linux jakelussa, eikä sinulta vaaditaan että\n"
+"tuntisit kaikki paketit ulkoa.\n"
+"\n"
+"Jos suoritat vakioasennuksen CD-levyltä, sinun pitää ensin määrittää mitkä\n"
+"cd-levyt sinulla on (ainoastaan Asiantuntija-tilassa) käytettävissä "
+"asennuksen\n"
+"aikana. Tarkista cd-levyjen nimet ja laita rasti ruutuun vastaavissa "
+"nimissä\n"
+"ruudulla. Paina\"Ok\" kuin olet valmis jatkamaan.\n"
+"\n"
+"Paketit ovat ryhmitelty käyttötarkoituksien mukaan. Ryhmät ovat jaettu\n"
+"neljään eri osaan:\n"
+"\n"
+" * \"Työasema\": Jos aiot käyttää koneesi työasemana, valitse yksi tai \n"
+" useampi vastaavia ryhmiä;\n"
+"\n"
+" * \"Kehitysympäristö\": Jos koneesi aiotaan käyttää ohjelmakehitykseen, \n"
+" valitse yksi tai useampi haluttu ryhmä;\n"
+"\n"
+" * \"Palvelin\": Jos koneesi on tarkoitettu käyttämään palvelimena'\n"
+" valitse yksi tai useampi haluttu ryhmä;\n"
+"\n"
+" * \"Graafinen ympäristö\": viimeisenä, täältä valitset haluamasi graafinen\n"
+" ympäristö. Ainakin yksi pitää olla valittu jos haluat graafisen "
+"työaseman!\n"
+"\n"
+"Jos siirrät hiiren kohdistinta ryhmänimen yläpuolella, lyhyt selostus "
+"ryhmän\n"
+"sisällöstä tulee näkyviin. Jos poistat kaikki ryhmävalinnat kun teet\n"
+"tavallisen asennuksen (päivityksen sijasta), tulee dialogi-ikkuna esille\n"
+"joka ehdottaa kolme eri optiota vähimmäisasennukseen:\n"
+"\n"
+" * \"X palvelimella\" : asenna vain tarvittavat paketit, joilla saat "
+"toimivan\n"
+" graafisen työpöydän;\n"
+"\n"
+" * \"Perusdokumentaation kanssa\": asentaa perusjärjesmän sekä perus-\n"
+" työkalut sekä niiden dokumentaatiot. Tämä valinta sopii palvelin-\n"
+" asennukseen;\n"
+"\n"
+" * \"Vähimmäis-asennus\": asentaa ainoastaan tarvittavat osat saadaaksesi\n"
+"toimavan komentorivipohjaisen Linux järjestelmän. Tämä asennus vie vain\n"
+"noin 65 Mt tilaa.\n"
+"\n"
+"Voit valita \"Yksittäisten pakettien valinta\" jos tarjolla olevia "
+"paketteja\n"
+"ovat tunnettuja sinulle, tai jos haluat täydellisen ohjauksen asennetavista\n"
+"paketeista.\n"
+"\n"
+"Jos aloitit asennuksen \"Päivitä\" - tilassa, voit poistaa kaikkien ryhmien\n"
+"valinnat välttääksesi uusien pakettien asentaminen. Tämä on hyödyllistä\n"
+"jos haluat korjata tai päivitä olemassa oleva järjestelmä."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:135
msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
+msgstr ""
+"Viimeisenä, riippuen siitä jos valitsit mahdollisuuden valita yksittäisiä\n"
+"paketteja vai ei, sinulle näytetään hakemistopuun jossa kaikki paketit\n"
+"ovat luokiteltuna ryhmien ja alaryhmien mukaan. Kun selaat puuta,\n"
+"voit valita koko ryhmät, alaryhmät tai yksittäiset paketit.\n"
+"\n"
+"Kun valitset paketin hakemistopuussa, sen kuvaus näkyy oikeanpuolisessa\n"
+"ikkunassa. Kun olet valinnut kaikki haluamasi paketteja, paina \"Asenna\"\n"
+"painiketta joka käynnistää asennuksen. Riippuen laitteistostasi nopeudesta,\n"
+"sekä asennettavien pakettien määrästä, voi kestää hetken asennuksen\n"
+"viimeistelyssä. Arvio asennukseen tarvittavasta ajasta näytetään näytöllä,\n"
+"jotta voit arvioida jos ehdit nauttia kupillisen kahvia.\n"
+"\n"
+"!! Jos palvelinpakettia on valittu, joko tarkoituksella tai koska se kuului\n"
+"johonkin valitsemasi ryhmään, sinulta pyydetään vahvistusta siitä jos\n"
+"varmasti haluat asentaa palvelinta. Mandrake Linuxin alla jokainen "
+"asennettu\n"
+"palvelin käynnistetään koneen käynnistyksen yhteydessä. Vaikka ne ovat\n"
+"turvallisia eikä niillä on tunnettuja ongelmia jakelun levityksen "
+"yhteydessä,\n"
+"niissä voi löytyä turvallisuusreikiä jakelun valmistumisen jälkeen. Jos et\n"
+"tiedä mihin joku tietty palvelu on tarkoitettu, tai miksi sitä asennetaan,\n"
+"paina \"Ei\". Jos painat \"Kyllä\" listatut palvelut asennetaan sekä \n"
+"käynnistetään automattisesti oletuksena. !!\n"
+"\n"
+"Optio \"Automaattiset riippuvuudet\" poistaa vain virhedialogia joka "
+"ilmestyy\n"
+"joka kerta kun asennusohjelma automaattisesti valitsee paketin. Tämä\n"
+"tapahtuu koska on päätelty että sitä tarvitaan toisen paketin riippuvuksien\n"
+"täyttämiseksi jotta asennusta valmistuisi onnistuneesti.\n"
+"\n"
+"Alla olevalla levykkeen kuvakkeella voit hakea pakettilistan joka on luotu\n"
+"edelliseessä asennuksessa. Jos painat tätä kuvaketta, sinua pyydetään\n"
+"asettamaan levykettä joka on luotu toisen asennuksen lopussa.\n"
+"Katso edellisen vaiheen toisesta vihjeestä, miten luot sellaisen levykkeen."
+
+#: ../../help.pm_.c:171
+msgid ""
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-"Valitse tulostin johon tulostustyöt pitäisi ohjata, tai syötä laitteen tai "
-"tiedoston nimi syöteriville"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
-msgstr "Kuvanlukijat tässä koneessa ovat muiden koneiden käytettävissä"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of the root partition"
-msgstr "Ensimmäinen sektori juuriosiolla"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Alternative drivers"
-msgstr "Vaihtoehtoiset ajurit"
+"Sinulla on nyt mahdollisuus asettaa Internet/verkko-yhteytesi. Jos haluat\n"
+"yhdistää tietokoneesi Internettiin tai lähiverkkoon, paina \"Ok\".\n"
+"Verkkolaitteiden automaattitunnistus käynnistetään. Jos tämä tunnistus\n"
+"epäonnistuu, poista valinta kohdasta \"Käytä automaattitunnistusta\" \n"
+"seuraavan kerran. Voit myös jättää verkon asettaminen tekemättä, tai \n"
+"tehdä sen myöhemmin. Siinä tapauksessa, paina \"Peruuta\" painiketta.\n"
+"\n"
+"Käytettävissä olevat yhteystavat: tavallinen modeemi, ISDN modeemi,\n"
+"ADSL yhteys, kaapelimodeemi, ja tavallinen lähiverkkoyhteys (Ethernet).\n"
+"\n"
+"Voit katsoa \"Aloitus Opas\" luvusta Internetyhteyksiä koskevia tietoja\n"
+"asetuksien tekemisestä, tai odota kunnes järjestelmäsi on asennettu, ja\n"
+"käytä määritty ohjelma yhteytesi asettamiseen.\n"
+"\n"
+"Mikäli haluat määrittää verkkosi myöhemmin, tai jos olet valmis\n"
+"verkkoyhteytesi määrittelyssä, paina \"Peruuta\"."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:193
msgid ""
+"You may now choose which services you wish to start at boot time.\n"
"\n"
-"Please check all options that you need.\n"
-msgstr ""
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
"\n"
-"Valitse kaikki asetukset jotka tarvitset.\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
-msgstr "Kap Verde"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "Löytyykö tästä prosessorista Cyrix 6x86 Coma -virhe "
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr "Ladataan tulostinasetukset... Odota hetki"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
-"Ensimmäiset pentiumprosessorit olivat virheellisiä ja jumiutuivat "
-"purettaessa F00F tavukoodia"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr "Guam"
+"Voit nyt valita mitkä palvelut haluat käynnistää konetta käynnistettäessä.\n"
+"\n"
+"Tässä on lista kaikista palveluista, jotka löytyvät nykyisestä "
+"asennuksesta.\n"
+"Käy lista läpi huolellisesti ja poista kaikki ne palvelut, joita ei tarvita "
+"jokaisella\n"
+"käynnistyskerralla.\n"
+"\n"
+"Saat kustakin palvelusta lyhyen kuvaustekstin valitsemalla sen. Jos et\n"
+"kuitenkaan ole varma palvelun hyödyllisyydestä, on yleensä varmempaa\n"
+"jättää se oletusarvoiseksi.\n"
+"\n"
+"!! Tässä vaiheessa sinun pitää olla erityisen huolellinen, jos aiot käyttää\n"
+"konettasi palvelimena: et varmaankaan halua käynnistää niitä palveluita,\n"
+"joita et tarvitse. Muista myös, että jotkin palvelut voivat olla "
+"vaarallisia,\n"
+"jos ne ovat aktivoituja palvelimessa. Yleensä kannattaa valita vain\n"
+"ne palvelut, joita todella tarvitaan.\n"
+"!!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:210
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
+msgstr ""
+"GNU/Linux hallitsee ajan GMT (Greenwich Mean Time) moodissa, ja kääntää\n"
+"sitä paikalliseen aikaan valitsemasi aikavyöhykkeen mukaisesti. Voit myös\n"
+"muuttaa tämän käytännön poistamalla valinnan \"Laitteistokello asetettu \n"
+"GMT-aikaan\" niin laitteistokello on sama kuin jäjestelmäkello. Tämä on\n"
+"hydyllistä jos koneessa on toinen käyttöjärjestelmä, esim. Windows.\n"
+"\n"
+"Optio \"Automaattinen kellon synkronisointi\" säätää järjestelmäsi kello\n"
+"automaattisesti oikeaan aikaan yhdistämällä johonkin Internetin aika-\n"
+"palvelimeen. Valitse listasta palvelin joka on lähelläsi, tai kirjoita sen\n"
+"osoite suoraan kenttään. Sinulla pitää tietysti olla toimiva Internet-"
+"yhteys\n"
+"jotta tämä ominaisuus toimisi. Tämä myös asentaa aikapalvelimen koneesi\n"
+"jotka muita paikallisverkkosi koneita voi käyttää."
+
+#: ../../help.pm_.c:224
msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
+"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.\n"
+"\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
+msgstr ""
+"X (eli X Ikkunointi Järjestelmä) on GNU/Linuxin graafisen rajapinnan sydän\n"
+"johon kaikki graafiset ympäristöt (KDE, Gnome, AfterStep, WindowsMaker, "
+"jne.)\n"
+"joka seuraa Mandrake Linuxin mukana käyttää alustana.\n"
+"\n"
+"Sinulle näytetään lista käytettävissä olevista tarkkuuksista ja "
+"värimääristä\n"
+"joka laitteistosi tukee. Valitse ne jotka parhaiten vastaa tarpeitasi (voit\n"
+"tietysti muuttaa niitä asennuksen jälkeen). Kun olet tyytyväinen maliin\n"
+"joka näytetään sinulle näytössä, paina \"Ok\". Ikkuna ilmestyy, joka kysyy\n"
+"sinulta jos näet sitä.\n"
+"\n"
+"Jos teet \"Asiantuntija\"asennuksen, siirryt X:än asetusvelhoon. Katso\n"
+"vastaava kohta käyttöohjeesta saadaaksesi lisäätietoa tästä velhosta.\n"
+"\n"
+"Jos näet yllä mainittu viesti testin aikana, ja valitset \"Kyllä\", niin\n"
+"DrakX jatkaa seuraavaan vaiheeseen. Jos et näe viestiä, se tarkoitta vain\n"
+"että asetukset olivat väärät, ja testi loppuu 10 sekunnin päästä ja palaa\n"
+"edelliseen näyttöön. Katso näyttöasetuksia koskeva osa käyttöoppaasta\n"
+"saadaaksesi lisäätietoa miten asettaa näyttösi."
+
+#: ../../help.pm_.c:246
+msgid ""
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
+msgstr ""
+"Lopuksi sinulta kysytään, haluatko käynnistyksessä graafisen rajapinnan.\n"
+"Huomaa, että kysymys esitetään vaikka et olisi testannut asetuksia.\n"
+"Haluat varmaankin vastata \"Ei\", jos koneesi on tarkoitettu palvelimeksi\n"
+"tai jos näytön asetus epäonnistui."
+
+#: ../../help.pm_.c:253
+msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
+msgstr ""
+
+#: ../../help.pm_.c:277
+msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft 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"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
+"\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
msgstr ""
-"Valitse portti, johon tulostimesi on kytketty tai syötä laitteen tai "
-"tiedoston nimi syöteriville"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/Asetukset/Testaa"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:347
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."
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-"Tätä tasoa tulee käyttää varoen. Se tekee järjestelmästäsi helpomman "
-"käyttää,\n"
-"mutta hyvin herkän: sitä ei tule käyttää koneessa joka on kytketty muihin "
-"koneisiin\n"
-"tai Internetiin. Koneessa ei ole salasanoja."
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mounting partition %s"
-msgstr "Liitetään osiota %s"
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "Käyttäjätunnus"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Mille osiolle haluat laittaa Linux4Win:n?"
-
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "due to missing %s"
-msgstr "kdesu puuttuu"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Test pages"
-msgstr "Testisivut"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Logical volume name "
-msgstr "Paikallisen volyymin nimi "
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:378
msgid ""
-"List of data to restore:\n"
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-"Lista palautettavista tiedoista:\n"
+"Kaikki vasta määritellyt osiot täytyy alustaa käyttöä varten (alustaminen\n"
+"tarkoittaa tiedostojärjestelmän luontia).\n"
"\n"
+"Samalla voit haluta alustaa uudelleen myös olemassaolevia osioita\n"
+"poistaaksesi kaiken niissä olevan tiedon. Jos haluat haluat tehdä niin,\n"
+"valitse myös ne osiot.\n"
+"\n"
+"Huomaa, että sinun ei ole pakko alustaa kaikkia jo olemassa olevia\n"
+"osioita. Sinun pitää alustaa ne osiot, joilla käyttöjärjestelmä\n"
+"sijaitsee (kuten \"/\", \"/usr\" ja \"/var\"), mutta voit säilyttää osiot,\n"
+"joilla henkilökohtaiset tiedostosi sijaitsevat (tavallisesti \"/home\").\n"
+"\n"
+"Ole huolellinen osioita valitessasi. Alustamisen jälkeen kaikki tieto\n"
+"valituilla osioilla on poissa eikä niiden palauttaminen enää onnistu.\n"
+"\n"
+"Valitse \"Ok\", kun olet valmis alustamaan osiot.\n"
+"\n"
+"Valitse \"Peruuta\", jos haluat valita toisen osion Mandrake Linuxin\n"
+"asentamiseen.\n"
+"\n"
+"Valitse \"Lisäasetukset\", jos haluat valita osiot, jotka tarkistetaan "
+"levyllä\n"
+"olevien huonojen kohtien varalta."
-#: ../../fs.pm:1
-#, c-format
-msgid "Checking %s"
-msgstr "Tarkistetaan %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "TCP/Socket -tulostimen parametrit"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Kortin muisti (DMA)"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Katkaisen Internetyhteyden "
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "Ranska"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
-msgstr "selaa"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
-msgstr "Tarkistan asennetut ohjelmistot..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Etätulostimen nimi puuttuu!"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Haluatko mahdollistaa tulostamisen paikallisverkon tulostimella?\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "Turkki"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Number of buttons"
-msgstr "Painikkeiden määrä"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamilainen \"numerorivi\" QWERTY"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Module"
-msgstr "Moduuli"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:404
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
+"\n"
+"Please be patient."
msgstr ""
-"Lisäksi jonoja, joita ei ole luotu tällä ohjelmalla tai \"foomatic-configure"
-"\" komennolla, ei voida siirtää."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
-msgstr "Laitteisto"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl ja Alt näppäimet samanaikaisesti"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "Yhdysvallat"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "User umask"
-msgstr "Käyttäjä umask"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "Oletuskäyttöjärjestelmä?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "Sveitsi (Saksalainen järjestys)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Aseta kaikki näytöt erikseen"
+"Uutta Mandrake Linux -käyttöjärjestelmääsi asennetaan parasta aikaa.\n"
+"Asennettavien pakettien määrästä ja koneesi nopeudesta riippuen\n"
+"vie tämä toiminto muutamasta minuutista useaan tuntiin.\n"
+"\n"
+"Ole kärsivällinen."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:412
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 ""
-"Ole hyvä ja valitse tulostin jota haluat asettaa. Tulostimen asetukset "
-"määritetään automaattisesti. Jos tulostintasi ei tunnistettu oikein tai jos "
-"haluat räätälöidyt tulostinasetukset valitse \"Manuaalinen asettaminen\"."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "NTP-palvelin"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Sulogin(8) in single user level"
-msgstr "Sulogin(8) yhden käyttäjän tasossa."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Load/Save on floppy"
-msgstr "Lataa/Tallenna levykkeelle"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
-msgstr "Tälle teemalle ei olemassa yhtään bootsplashia kohdassa %s !"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "hyvä"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Poistutaan %d sekunnin jälkeen"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Valitse sarjaportti, johon modeemisi on kytketty."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Property"
-msgstr "Ominaisuus"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr "Lähiverkon asetukset"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "Ghana"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
-msgstr "Hakemisto tai moduuli vaaditaan"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Advanced Options"
-msgstr "Lisävalinnat"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Configuration"
-msgstr "Näytä Asetukset"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
-msgstr "Coma-virhe"
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
+"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
+msgstr ""
+
+#: ../../help.pm_.c:425
+msgid ""
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
+msgstr ""
+"Ennen jatkamista sinun pitäisi lukea huolellisesti lisenssin ehdot. "
+"Lisenssi\n"
+"kattaa koko Mandrake Linux -jakelun, ja jos et hyväksy kaikkia ehtoja,\n"
+"paina \"Kieltäydy\"-painiketta joka keskeyttää asennuksen heti. Jatkaaksesi\n"
+"asennusta paina \"Hyväksy\"-painiketta."
+
+#: ../../help.pm_.c:432
+msgid ""
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
+msgstr ""
+"Tässä vaiheessa on aika valita tietokoneellesi sopiva turvataso.Yleisesti\n"
+"mitä avoimempi koneesi on ja mitä enemmän tärkeää tietoa on talletettu\n"
+"koneellesi, sitä korkeampi turvatason pitäisi olla. Huomaa kuitenkin, että\n"
+"korkeampi turvallisuustaso saavutetaan yleensä käytettävyyden\n"
+"kustannuksella. Lue MSEC-kappale \"Reference Manualista\" saadaksesi\n"
+"lisää tietoa turvatasojen merkityksestä.\n"
+"\n"
+"Jos et tiedä mitä valita, käytä oletuksena olevaa vaihtoehtoa."
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:442
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"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -5379,2112 +3452,1102 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"Tässä vaiheessa sinun pitää määrittää mitkä osiot käytetään Mandrake\n"
-"Linux -järjestelmäsi asennuksessa. Jos osioita on jo määritelty, joko\n"
-"edellisestä GNU/Linux-asennuksesta tai jonkun toisen osiointityökalun\n"
-"tekemiä, niin voit käyttää olemassa olevia osioita. Muussa tapauksissa\n"
-"osiot pitää luoda.\n"
-"\n"
-"Luodaksesi osioita, sinun pitää ensin valita kovalevy. Voit valita "
-"osioitavan\n"
-"levyn painamalla 'hda' ensimmäiselle IDE-levylle, 'hdb' toiselle, 'sda'\n"
-"ensimmäiselle SCSI-levylle ja niin edelleen.\n"
-"\n"
-"Osioidaksesi valitun levyn voit valita näistä vaihtoehdoista:\n"
-"\n"
-" * \"%s\": tämä toiminto poistaa kaikki osiot kovalevyllä;\n"
-"\n"
-" * \"%s\": tämä toiminto luo automaattisesti\n"
-"tarvittavat ext3-osiot ja sivutusosion levyn tyhjästä tilasta;\n"
-"\n"
-"\"%s\": näyttää seuraavat lisätoiminnot:\n"
+
+#: ../../help.pm_.c:513
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-" * \"%s\": tallentaa osiotaulun levykkeelle. Tämä on\n"
-"hyödyllinen levyke, jos pitää palauttaa osiotaulu. Suosittelemme\n"
-"tämän levykkeen tekoa;\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
"\n"
-" * \"%s\": palauttaa aikaisemmin tallennetun osiotaulun\n"
-"levykkeeltä;\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-" * \"%s\": jos osiotaulusi on viottunut, voit kokeilla sen\n"
-"korjaamista tällä toiminnolla. Ole varovainen, ja muista että tämä\n"
-"voi epäonnistua;\n"
+"\"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"
-" * \"%s\": hylkää kaikki tekemäsi muutokset ja\n"
-"palauta alkuperäinen osiotaulu;\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
"\n"
-" * \"%s\": tämän valinnan\n"
-"poistaminen pakottaa käyttäjät itse liittämään ja irrottamaan vaihdettavat\n"
-"mediat, esim. levykkeet ja cd-levyt.\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-" * \"%s\": valitse tämä vaihtoehto jos haluat velhon osioimaan\n"
-"kovalevysi. Tämä on suositeltua sinulle jos osiointi ei ole tuttua;\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
-" * \"%s\": tämä vaihtoehto poistaa tekemäsi muutokset;\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-" * \"%s\": sallii lisätoimintoja\n"
-"osioille (tyyppi, optiot, formaatti) ja näyttää lisätietoja;\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-" * \"%s\": kun kovalevyn osiointi on valmis, tämä toiminto tallentaa\n"
-"tekemäsi muutokset levylle ja jatkaa asennusta.\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
"\n"
-"Kun määrität osion kokoa, voit hienosäätää kokoa käyttämällä\n"
-"näppäimistön nuolinäppäimiä.\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
+msgstr "Kärsivällisyyttä. Tämä toiminto voi kestää useita minuutteja."
+
+#: ../../help.pm_.c:547
+msgid ""
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
"\n"
-"Huom!: Voit myös käyttää kaikkia toimintoja näppäimistöllä. Siirry osioiden\n"
-"ja toimintojen välillä käyttämällä [Tab] ja [Ylös/Alas] nuolinäppäimiä.\n"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
-"Kun osio tai tyhjä tila on valittu voit käyttää:\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
"\n"
-" * Ctrl-C luodaksesi uuden osion (kun tyhjä tila on valittu);\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-" * Ctrl-D poistaaksesi osion;\n"
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
"\n"
-" * Ctrl-M valitaksesi liitospisteen.\n"
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
"\n"
-"Saadaksesi lisätietoja käytettävissä olevista tiedostojärjestelmistä, lue\n"
-"lisää osasta ext2FS ``Reference Manual'':sta.\n"
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
"\n"
-"Jos olet asentamassa PPC-koneelle, sinun pitää luoda pieni HFS\n"
-"``bootstrap''-osio kooltaan vähintään 1Mt, joka tulee Yaboot käynnistys-\n"
-"lataajan käyttöön. Jos päätät tehdä osiosta vähän suuremman, esimerkiksi\n"
-"50Mt, voi olla hyvä ajatus asentaa ylimääräinen ydin ja ramdisk-kuva\n"
-"virhetilanteiden käynnistystarpeeseen."
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:582
msgid ""
-"Graphic Card\n"
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\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"
+"Click on the \"More\" button to be presented with the complete list of\n"
+"supported keyboards.\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."
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
msgstr ""
-"Näytönohjain\n"
+"Tavallisesti DrakX valitsee sinulle oikean näppäimistön (sen mukaan, minkä\n"
+"kielen olet valinnut) ja et edes näe tätä kohtaa. Kuitenkaan sinulla ei \n"
+"välttämättä ole näppäimistöä, joka vastaa suoraan kieltäsi. Jos olet\n"
+"esimerkiksi englanninkielinen sveitsiläinen, voit silti haluta "
+"sveitsiläisen \n"
+"näppäimistön. Tai jos puhut Englantia, mutta asut Quebecissä, sinulla voi \n"
+"olla samanlainen tilanne. Molemmissa tapauksissa sinun pitää palata "
+"takaisin\n"
+"kyseiseen asennusvaiheeseen ja valita sopiva näppäimistö listasta.\n"
"\n"
-" Asennusohjelma yleensä tunnistaa ja asettaa koneeseesi asennetun\n"
-"näytönohjaimen. Mikäli tämä ei onnistunut, voit itse valita oikean mallin\n"
-"listasta omistamasi kortin mukaisesti.\n"
+"Paina \"Lisää\"-painiketta saadaksesi täydellisen listan tuetuista \n"
+"näppäimistöistä. \n"
"\n"
-" Mikäli eri palvelimia on käytettävissä kortillesi, 3D tuella vai ilman,\n"
-"sinua pyydetään valitsemaan palvelin joka vastaa tarpeitasi."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Tapahtui virhe asennettaessa paketteja:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Lexmark inkjetin asettaminen"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "Peruuta"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Save partition table"
-msgstr "Tallenna osiotaulu"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "Suomi"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "Makedonia"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
-msgstr ""
-"Käyttäjäkohtainen jako käyttää ryhmää \"fileshare\".\n"
-"Voit käyttää UserDrakea lisätäksesi käyttäjiä tähän ryhmään."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "Slovenia"
+"Jos valitset näppäimistö joka ei perustu latinalaiseen kirjaimistoon, "
+"sinulta\n"
+"kysytään näppäinyhdistelmää joka vaihtaa latinalaisen ja ei latinalaisen\n"
+"järjestyksen välillä."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../help.pm_.c:598
msgid ""
-"Authorize:\n"
+"The first step is to choose your preferred language.\n"
"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\n"
+"Please choose your preferred language for installation and system usage.\n"
"\n"
-"- only local ones if set to \"LOCAL\"\n"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
"\n"
-"- none if set to \"NONE\".\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
-"Salli:\n"
+"Ensimmäinen tehtävä on valita haluttu kieli.\n"
"\n"
-"- kaikki palvelut joita ohjataan tcp_wrappers:ien kautta (katso hosts.deny"
-"(5)) jos \"KAIKKI\",\n"
+"Valitse mieleisesi kieli asennukseen ja järjestelmän käyttöön.\n"
"\n"
-"- vain paikalliset jos \"PAIKALLINEN\",\n"
+"Painamalla \"Lisäasetukset\"-painiketta saat mahdollisuuden valita myös\n"
+"muita kieliä asennettavaksi työasemallesi. Muiden kielien valitseminen\n"
+"asentaa kielikohtaiset tiedostot järjestelmän dokumentoinnista ja\n"
+"ohjelmistoista. Esimerkiksi jos sinulla koneessasi Espanjalaisia käyttäjiä,\n"
+"valitse englanti (tai suomi) pääkieleksi ja lisäasetusten puolelta paina\n"
+"harmaata tähteä, joka vastaa Espanjaa.\n"
"\n"
-"- ei yhtään jos \"EI\". \n"
+"Huomaa, että voit valita useita kieliä. Kun olet valinnut haluamasi \n"
+"ylimääräiset kielet, paina \"Ok\"-painiketta jatkaaksesi.\n"
"\n"
-"Salliaksesi tarvitsemasi palvelut, käytä /etc/hosts.allow (katso hosts.allow"
-"(5))."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr "Libya"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Asetan komentotiedostot, asennan ohjelmistot, käynnistän palvelimet..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Tulostin rinnakkaisportissa #%s"
+"Vaihtaaksesi eri kielten välillä, voit suorita \"/usr/bin/localedrake\"\n"
+"\"root\"-käyttäjänä,jolloi vaihdat koko järjestelmän kieli, tai tavallisena\n"
+"käyttäjänä jolloin vaihdat vain sen käyttäjän vakiokieli."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../help.pm_.c:617
msgid ""
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
"\n"
-"- Burn to CD"
-msgstr ""
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
"\n"
-"- Polta CD:lle"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "Taulukko"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "en osaa alustaa %s:ää tyyppiä %s"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Model"
-msgstr "Malli"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "USB printer #%s"
-msgstr "USB-tulostin #%s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Stop Server"
-msgstr "Pysäytä palvelin"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
+msgstr ""
+"DrakX yleensä tunnistaa hiiren näppäinten määrä. Jos tunnistus epäonnistuu\n"
+"DrakX olettaa että sinulla on kaksinäppäiminen hiiri ja kytkee sen "
+"kolmannen\n"
+"näppäimen emulaatiolla. DrakX tietää myös automaattisesti, onko se PS/2,\n"
+"sarja- vai USB-hiiri.\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
+"Jos haluat asettaa eri tyyppisen hiiren, valitse sopiva tyyppi oheisesta\n"
+"listasta.\n"
"\n"
-"Valitse lilo:n ja \n"
-"bootsplash:n teema,\n"
-"voit valita ne erikseen."
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Modem"
-msgstr "Modeemi"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr "Tuvalu"
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr "Käytä automaattista tunnistusta"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
-msgstr ""
-"GPM lisää hiirituen tekstipohjaisiin Linux-sovelluksiin kuten Midnight\n"
-"Commanderiin. GPM mahdollistaa myös leikkaa/liimaa toiminnot hiirellä,\n"
-"ja sisältää tuen valikoille konsolissa."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr "Käynnistetty koneen käynnistämisen yhteydessä"
-
-#: ../advertising/12-mdkexpert.pl:1
-#, 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:"
-msgstr ""
-"Liity MandrakeSoft tukiryhmään ja Linux Yhteisöön verkossa jakaaksesi "
-"tietämystäsi ja auttaaksesi muita tulemalla tunnistetuksi asiantuntijaksi "
-"online teknisen tuen webbisivustossa:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "No password aging for"
-msgstr "Salasana ei vanhene"
+"Jos valitset muun kuin oletushiiren, saat eteesi hiiren testiruudun. Käytä\n"
+"hiiren nappeja ja rullaa varmistaaksesi, että asetukset ovat oikeat. Jos\n"
+"hiiri ei toimi kunnolla, paina välilyöntiä tai enteriä peruttaaksesi, minkä\n"
+"jälkeen voit valita uudelleen.\n"
+"\n"
+"Joskun rullahiiret ei tunnisteta oikein. Sinun pitää valita oikea malli\n"
+"listasta. Varmista että valitset malli joka vastaa portti johon hiiresi on\n"
+"liitetty. Kun olet painanut \"Ok\", hiirikuvan tulee esille. Sitten sinun \n"
+"PITÄÄ pyöritä rulla, jotta se aktivoituisi oikein. Varmista sitten kaikki\n"
+"painnikkeiden toiminta sekä hiiren liikkumista."
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../help.pm_.c:638
msgid ""
-"The following options can be set to customize your\n"
-"system security. If you need an explanation, look at the help tooltip.\n"
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"Seuraavat optiot voidaan asettaa järjestelmäsi turvallisuuden \n"
-"räätälöintiin. Jos tarvitset selityksiä, katso apuvinkit.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr "Etsi käytettävissä olevia tulostimia etäkoneista automaattisesti"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr "Itä-Timor"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
-msgstr "Nauhalle"
+"Valitse oikea portti. Esimerkiksi \"COM1\" portti Windowsissa\n"
+"on nimetty \"ttyS0\":ksi GNU/Linuxissa."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+#: ../../help.pm_.c:642
+msgid ""
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
"\n"
-"- Save to Tape on device: %s"
-msgstr ""
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
"\n"
-"- Tallenna nauhalle laitteessa: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Login name"
-msgstr "Käyttäjätunnus"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
-msgstr "Raportoi omistamattomat tiedostot"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr "Poista profiili..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Asennan Foomatic..."
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Kirjaudu ulos ja käytä sen jälkeen Ctrl-Alt-Askelpalautin"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected"
-msgstr "löydetty"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "Verkko pitää käynnistää uudelleen. Haluatko tehdä sen nyt ?"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package: "
-msgstr "Paketti: "
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr "En voi kirjoittaa /etc/sysconfig/bootsplash."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "TURVAVAROITUS!"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
-msgstr "Ei, en halua automaattista sisäänkirjautumista"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Windowsista siirtymisen työkalu"
-
-# Asennuksen sivuvalikko
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr "Kaikki kielet"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "Poistetaan %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s ei löydetty...\n"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Testing your connection..."
-msgstr "Testaan yhteyttäsi..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cache size"
-msgstr "Välimuistin koko"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
+"\n"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
+"\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
+"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
msgstr ""
-"Salasanat ovat nyt käytössä, mutta koneen käyttö verkossa ei ole suositeltua."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr "Aloitussektori: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr "Kongo (Brazzaville)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Read"
-msgstr "Vain luku"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Paketti %s pitää asentaa. Haluatko asentaa sen?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
-msgstr "Seychellit"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:678
+#, fuzzy
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"
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\n"
"\n"
-"For your printer Printerdrake has found:\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
+"OS;\n"
"\n"
-"%s"
-msgstr ""
-"Printerdrake on verrannut tulostimen automaattitunnistuksesta saatuja "
-"tietoja tulostintietokannassa oleviin tietoihin löytääkseen sopivimman "
-"mallin. Valinta voi olla väärä, varsinkin jos tulostimesi ei löydy "
-"tietokannasta. Varmista että valinta on oikea, ja paina \"Malli on oikea\", "
-"tai jos valinta on väärä paina \"Valitse malli manuaalisesti\", jolloin voit "
-"valita tulostinmallisi itse seuraavassa ruudussa.\n"
+" * if a grub or LILO boot sector is found, it will replace it with a new\n"
+"one.\n"
"\n"
-"Tulostimellesi Printerdrake on löytänyt:\n"
+"if in doubt, DrakX will display a dialog with various options.\n"
"\n"
-"%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Bad password on %s"
-msgstr "Virheellinen salasana kohteessa %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+" * \"Bootloader to use\": you have three choices:\n"
"\n"
-"There is one unknown printer directly connected to your system"
-msgstr ""
+" * \"GRUB\": if you prefer grub (text menu);\n"
"\n"
-"Löytyy yksi tuntematon tulostin joka on kytketty suoraan koneeseesi"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Control key"
-msgstr "Oikea Control näppäin"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"Aseta tyhjä FAT-alustettu levyke asemaan %s jossa %s on juurihakemistossa ja "
-"paina %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "Zambia"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr "Tietoturvan ylläpitäjä (tunnus tai sähköposti)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr "Valitamme, tuemme ainoastaan 2.4 ytimiä."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr "Romania (QWERTY)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
-msgstr "Kehityksen alla ... odota."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "Egypti"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "Tsekin tasavalta"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "Äänikortti"
-
-# Asennuksen sivuvalikko
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Import Fonts"
-msgstr "Kirjasinten tuonti"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Sinulla on yksi suuri Microsoft Windows osio.\n"
-"Ehdotan että muutat ensimmäiseksi osion kokoa\n"
-"(klikkaa osiota ja valitse sitten \"Uusi koko\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Poista väliaikaistiedostot"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\n"
"\n"
-msgstr ""
-"Onnittelut, verkko- ja Internetyhteyksien asetus on valmis.\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
"\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "Muuta osiotyyppiä"
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Resolution\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\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 ""
-"Näyttötila\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
"\n"
-" Tässä voit valita näyttötilan ja värisyvyyden jota laitteistosi tukee.\n"
-"Valitse se joka parhaiten vastaa tarpeitasi (voit tietysti vaihtaa sitä\n"
-"asennuksen jälkeenkin). Malli valitusta asetuksesta näytetään näytössä."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Network Options"
-msgstr "Verkko-optiot"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable msec hourly security check"
-msgstr "Ota käyttöön msec turvallisuustarkistukset joka tunti."
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-"Näyttö teema\n"
-"konsolissa"
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr "(%s:ssa)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\n"
+"\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
msgstr ""
-"Kirjasto, joka suojelee puskurin ylivuoto- ja merkkijonon "
-"muotovirhehykkäyksiä vastaan."
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr "keskiarvo"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "New printer name"
-msgstr "Uuden tulostimen nimi"
+"LILO (the LInux LOader) ja grub ovat järjestelmälataajia: ne voivat\n"
+"käynnistää joko GNU/Linuxin tai mikä tahansa tietokoneellasi olevan\n"
+"käyttöjärjestelmän. Tavallisesti kaikki käyttöjärjestelmät tunnistuvat ja\n"
+"asentuvat oikein. Jos edellinen ei kuitenkaan pidä paikkaansa, voit lisätä\n"
+"kyseisen kohdan käsin tässä ruudussa. Ole huolellinen, että tulet\n"
+"valinneeksi oikeat parametrit.\n"
+"\n"
+"Jos et halua kenenkään pääsevän osaan käyttöjärjestelmistä, voit\n"
+"tuhoa kyseiset kohdat. Mutta että siinä tapauksessa tarvitset itse\n"
+"käynnistyslevykettä päästäksesi kyseisiin käyttöjärjestelmiin!"
-#: ../../fs.pm:1
-#, c-format
+#: ../../help.pm_.c:718
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 )."
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"Salli tavallisen käyttäjän liittää tiedostojärjestelmä.\n"
-"Käyttäjän nimi kirjoitetaan tiedostoon mtab jotta hän\n"
-"voi irrottaa tiedostojärjestelmän. Tämä optio valitsee\n"
-"myös optiot noexec, nosuid ja nodev (ellei tätä estetä\n"
-"seuraavilla optioilla, esim. user,exec,dev,suid )."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr "Guinea"
-
-# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup System"
-msgstr "Varmuuskopioi järjestelmä"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Build Backup"
-msgstr "Luo varmuuskopio"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:732
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\n"
+"\n"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
msgstr ""
-"Tulostaaksesi tiedoston komentoriviltä (pääteikkunasta) käytä komentoa \"%s "
-"<tiedosto>\" tai \"%s <tiedosto>\".\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Nykyhetkellä vaihtoehtoa ei ole olemassa"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwertz)"
-msgstr "Romania (qwertz)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Write Config"
-msgstr "Kirjoita asetukset"
+"Sinun pitää osoittaa paikka, jonne haluat asettaa tarvittavat tiedot\n"
+"GNU/Linuxin käynnistämiseksi.\n"
+"\n"
+"Jos et tiedä tarkalleen mitä olet tekemässä, valitse \"Levyn ensimmäinen\n"
+"sektori (MBR)\"."
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:739
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."
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
+"\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
+"\n"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
msgstr ""
-"Routed-palvelin mahdollistaa automaattiset IP-reititystaulun päivitykset\n"
-"RIP-protokollalla. Vaikka RIP-protokolla on paljon käytetty pienissä\n"
-"verkoissa, monimutkaisemmat verkot vaativat parempia reititysprotokollia."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr "Kiribati"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Logitech Mouse (sarja, vanha C7 tyyppi), rullaemuloinnilla"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "Muut (ei drakbackup) avaimet ovat jo paikallaan"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:759
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"
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"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 does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
"\n"
-"Monitor\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
+msgstr ""
+
+#: ../../help.pm_.c:781
+msgid ""
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\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"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\n"
"\n"
+"For Linux, there are a few possible options:\n"
"\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
-"Resolution\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
"\n"
-" 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"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
"\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
"\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"hda=autotune\n"
"\n"
-"Test\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\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"
+" * Initrd: this option can be used either to load initial modules, before\n"
+"the boot device is available, or to load a ramdisk image for an emergency\n"
+"boot situation;\n"
"\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
"\n"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
"\n"
-"Options\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"
-" 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."
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
msgstr ""
-"X (eli X Ikkunointijärjestelmä) on GNU/Linuxin graafisen käyttöliittymän\n"
-"sydän jota kaikki graafiset ympäristöt (KDE, Gnome, AfterStep,\n"
-"WindowMaker jne.), jotka seuraavat Mandrake Linuxin mukana,\n"
-"käyttävät alustana.\n"
-"\n"
-"Sinulle näytetään lista eri parametreista joita voit asettaa saadaksesi\n"
-"optimaalisen graafisen näytön:\n"
-"\n"
-"Näytönohjain\n"
-"\n"
-" Asennusohjelma yleensä tunnistaa ja asettaa koneeseesi asennetun\n"
-"näytönohjaimen. Mikäli tämä ei onnistunut, voit itse valita oikean mallin\n"
-"listasta omistamasi korttisi mukaisesti.\n"
-"\n"
-" Mikäli eri palvelimia on käytettävissä kortillesi, 3D tuella vai ilman,\n"
-"sinua pyydetään valitsemaan palvelin joka parhaiten vastaa tarpeitasi.\n"
-"\n"
+
+#: ../../help.pm_.c:828
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
"\n"
+"Yaboot's main options are:\n"
"\n"
-"Näyttö\n"
+" * Init Message: a simple text message displayed before the boot prompt;\n"
"\n"
-" Asennusohjelma normaalisti tunnistaa ja asettaa koneeseesi liitetyn\n"
-"näytön automaattisesti. Jos tunnistus epäonnistuu voit valita oikean\n"
-"näytön listasta.\n"
+" * Boot Device: indicates where you want to place the information required\n"
+"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
+"to hold this information;\n"
"\n"
+" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+"yaboot. The first delay is measured in seconds and at this point, you can\n"
+"choose between CD, OF boot, MacOS or Linux;\n"
"\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
-"Näyttötila\n"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\n"
"\n"
-" Tässä voit valita näyttötilan ja värisyvyyden jota laitteistosi tukee.\n"
-"Valitse se joka parhaiten vastaa tarpeitasi (voit tietysti vaihtaa sitä\n"
-"asennuksen jälkeenkin). Malli valitusta asetuksesta näytetään näytössä.\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
+msgstr ""
+
+#: ../../help.pm_.c:860
+msgid ""
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
"\n"
-"Testi\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
"\n"
-" Järjestelmä yrittää avata graafisen tilan halutussa näyttötilassa.\n"
-"Jos näet viestin testauksen aikana ja vastaat \"%s\", DrakX jatkaa\n"
-"seuraavaan vaiheeseen. Jos et näe viestiä, se tarkoittaa että jokin\n"
-"osa automaattisesti tunnistuksesta asetuksesta oli virheellistä, ja\n"
-"testi loppuu automaattisesti 12 sekunnin jälkeen, jolloin pääset\n"
-"takaisin asetusvalikoon. Muuta asetuksia kunnes saat oikean\n"
-"graafisen näytön.\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\n"
"\n"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\n"
"\n"
-"Optiot\n"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\n"
"\n"
-" Täällä voit valita haluatko järjestelmän automaattisesti käynnistävän\n"
-"graafisen käyttöliittymän. Luonnollisesti valitset \"%s\" jos koneesi "
-"toimii\n"
-"palvelimena, tai jos et pystynyt määrittämään toimivaa graafista tilaa."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr "Selaa"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr "CD-ROM"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Haluatko kokeilla Internetyhteyttä nyt?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "Belgia"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Onko sinulla ISA-väylään liitettävä äänikortti?"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
-msgstr ""
-"Ethernet-verkkokorttia ei löytynyt järjestelmästä.\n"
-"En voi asentaa tämän tyyppistä yhteyttä."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Windows"
-msgstr "Windows "
-
-#: ../../common.pm:1
-#, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "Kuvakaappauksia ei voi tehdä ennen osiointia"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Name"
-msgstr "Koneen nimi"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Tiedosto/Tallenna _nimellä"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"Saadaksesi käyttöösi paikallisverkon CUPS-palvelimilla olevat tulostimet "
-"sinun tarvitsee vain valita \"Etsi automaattisesti etäkoneilla olevat "
-"tulostimet\" -valinta; CUPS-palvelimet kertovat koneellesi automaattisesti "
-"tulostimistaan. Kaikki koneesi tunnistamat tulostimet näkyvät \"Etätulostimet"
-"\" osassa Printerdraken pääikkunassa. Mikäli CUPS-palvelin/palvelimet eivät "
-"ole paikallisverkossa sinun täytyy määrittää IP-osoitteet ja tarpeen mukaan "
-"porttinumerot saadaksesi tulostintiedot palvelimilta."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
msgstr ""
-"%s ei löytynyt kuvanlukija-tietokannasta, \n"
-"asetetaanko manuaalisesti?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "Viive ennen oletusjärjestelmän käynnistystä"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Restrict command line options"
-msgstr "Rajoita komentorivioptioita"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "East Europe"
-msgstr "Itä-Eurooppa"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "Käytä tyhjää tilaa"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "käytä dhpc:tä"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr "Postihälytys"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Internet configuration"
-msgstr "Internet-asetukset"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected %s"
-msgstr "Löydetty %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/_Tulostimien automaattitunnistus"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "Valmis"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Näytä automaattisesti valitut paketit"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr "Togo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "ytimen raportoimat prosessorin liput"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Jotain meni pieleen! - Onko mkisofs asennettu?"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "16 Mt"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "Yritä uudelleen"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The model is correct"
-msgstr "Malli on oikea"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT-tiedostojärjestelmän koon muuttaminen epäonnistui: %s"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr "Yksittäisten pakettien valinta"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr "Tämän osion kokoa ei voi muuttaa"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr "Sijainti"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "Yhdysvallat (hrc-kaapeli)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr "Journaloitu FS"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr "Verkkokorttien 'promiscuous' tarkistus"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
-msgstr "Tämä kone"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS-asema: %s (vain arvaus)\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr "Bahrain"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Valitse tiedostot tai hakemistot ja painaa 'OK'"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit scsi modules"
-msgstr "jätä pois scsi-moduulit"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "Prosessoriperhe (esim. i686 luokka on 6)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
-msgstr ""
-"Koska asennat käyttöjärjestelmää verkon yli, verkon asetukset on jo "
-"määritelty.\n"
-"Paina OK säilyttääksesi nykyiset asetukset tai peruuta asettaaksesi "
-"Internet- ja verkkoasetukset uudelleen.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
-msgstr "Suorita päivittäiset turvallisuustarkistukset"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Näppäinasettelu: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:891
msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessable by remote machines and by which remote machines."
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
-"Täällä voit määrittää mikäli tähän koneeseen liitetyt tulostimien pitäisi "
-"olla käytettävissä etäkoneissa ja missä etäkoneissa."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr "Malta (US)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "Käynnistyslevykkeen luominen on onnistunut\n"
+"Valitse kiintolevy, jonka haluat tyhjentää uudelle Mandrake Linux -osiolle.\n"
+"Ole varovainen, koska kaikki asemalla oleva tieto tuhoutuu eikä ole enää\n"
+"palautettavissa!"
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:896
msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"Liittää ja irrottaa NFS (Network File System), SMB (Lan\n"
-"Manager/Windows) ja NCP (NetWare) liitospisteet"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Launch the wizard"
-msgstr "Käynnistä velho"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Tvcard"
-msgstr "TV-kortti"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Vaihda vakio-/asiantuntijatilan välillä"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr "Koko"
-
-#: ../../help.pm:1
-#, c-format
-msgid "GRUB"
-msgstr "GRUB"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr "Grönlanti"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "Torstai"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Ei oikein nimetty nauha. Nauhan nimike on: %s."
+"Paina \"OK\", jos haluat tuhota kaiken tällä kiintolevyllä olevan tiedon\n"
+"sekä osiot. Ole varovainen, sillä painettuasi \"OK\" et voi enää palauttaa\n"
+"mitään tällä kiintolevyllä olleita tietoja ja osioita, mukaanlukien kaikki\n"
+"Windows-tiedostot.\n"
+"\n"
+"Paina \"Peruuta\" keskeyttääksesi tämän toiminnon ilman että menetät\n"
+"mitään kiintolevyllä ollutta tietoa ja osoita."
-#: ../../standalone/drakgw:1
+#: ../../install2.pm_.c:111
#, 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?"
+"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 ""
-"Internetyhteyden jakaminen on jo asetettu.\n"
-"Sen nykyinen tila on: käytössä.\n"
-"\n"
-"Mitä haluat tehdä?"
+"En pysty käyttämään ytimen moduuleja joka vastaa ytimesi (tiedosto %s "
+"puuttuu), tämä yleensä tarkoittaa että käynnistyslevykkeesi ei ole "
+"tahistettu asennusmedian kanssa (luo uudempi käynnistyslevyke)."
-#: ../../standalone/drakTermServ:1
+#: ../../install2.pm_.c:167
#, c-format
-msgid "Delete All NBIs"
-msgstr "Poista kaikki NBI:t"
+msgid "You must also format %s"
+msgstr "Sinun täytyy myös alustaa %s"
-#: ../../help.pm:1
+#: ../../install_any.pm_.c:423
#, 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"
+"You have selected the following server(s): %s\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"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\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."
+"Do you really want to install these servers?\n"
msgstr ""
-"Tämä dialogi sallii käynnistyslataajan hienosäädön:\n"
-"\n"
-" * \"%s\": sinulla on kolme vaihtoehtoa:\n"
-"\n"
-" * \"%s\": jos pidät GRUB:sta (tekstipohjainen);\n"
-"\n"
-" * \"%s\": jos pidät LILO:n teksti-\n"
-"pohjaisesta käyttöliittymästä.\n"
-"\n"
-" * \"%s\": jos pidät LILO:n graafisesta käyttö-\n"
-"liittymästä;\n"
+"Olet valinnut seuraavat palvelimet: %s\n"
"\n"
-" * \"%s\": useimmissa tapauksissa käytät oletuslaitetta\n"
-"(\"%s\"), mutta käynnistyslataaja voidaan myös asentaa toiselle\n"
-"kovalevylle (\"%s\"), tai jopa levykkeelle (\"%s\");\n"
"\n"
-" * \"%s\": kun (uudelleen)\n"
-"käynnistät tietokoneesi, tämä on viive jonka aikana käyttäjä voi\n"
-"käynnistysvalikosta valita muun kuin oletustietueen.\n"
+"Nämä palvelimet otetaan oletuksena käyttöön. Niissä ei ole tunnettuja \n"
+"turvallisuusaukkoja, mutta sellaisia voi löytyä ajan mittaan. Mikäli niin \n"
+"tapahtuu, sinun pitäisi päivittää kyseiset palvelimet niin nopeasti kuin \n"
+"suinkin mahdollista.\n"
"\n"
-"!! Huom! Jos jätät käynnistyslataajan asentamatta (valitsemalla\n"
-"\"%s\"), sinun pitää varmistaa, että sinulla on keino käynnistää\n"
-"Mandrake Linux -järjestelmäsi! Varmista myös, että tiedät mitä olet\n"
-"tekemässä ennen kuin muutat näitä asetuksia !!\n"
"\n"
-"\"%s\"-painike tässä valikossa mahdollistaa useat\n"
-"edistyneet vaihtoehdot, jotka ovat varattuja asiantuntijalle."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"if set, send the mail report to this email address else send it to root."
-msgstr "jos asetettu, lähetä raportit tähän osoitteeseen, muuten root saa ne."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Mitä versiota XFree-palvelimesta haluat käyttää?"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "More"
-msgstr "Lisää"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
-msgstr ""
-"Tämä käyttä komentomuotoa kun komentorivipohjainen oghelma 'cdrecord'. "
-"'cdrecord -scanbus näyttäisi sinulle myös laitteen numero."
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which can "
-"accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should choose a lower level."
-msgstr ""
-"Tällä turvatasolla tämän järjestelmän käyttö palvelimena on mahdollista.\n"
-"Turvallisuustaso on riittävän korkea, jotta järjestelmää voi käyttää "
-"palvelimena,\n"
-"joka hyväksyy monia yhteyksiä asiakaskoneilta. Huomaa: Jos koneesi on\n"
-"ainoastaan asiakaskone Internetissä, sinun kannattaisi valita alhaisempi "
-"turvataso."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Server Name"
-msgstr "Palvelin Nimi"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Password"
-msgstr "Salasana"
-
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
-msgstr ""
-"%s ei voida näytää\n"
-"Ei tunnettua Aputietuetta\n"
+"Haluatko todella asentaa nämä palvelimet?\n"
-#: ../../any.pm:1
+#: ../../install_any.pm_.c:441
#, c-format
msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
-msgstr ""
-"Päätit asentaa käynnistyslataajan osioon.\n"
-"Tämä viittaa siihen että sinulla on jo käynnistyslataaja\n"
-"käynnistys-kovalevylläsi (esim. System Commander).\n"
+"The following packages will be removed to allow upgrading your system: %s\n"
"\n"
-"Mikä on sinun käynnistys-kovalevy?"
-
-#: ../../install_interactive.pm:1
-#, 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."
+"Do you really want to remove these packages?\n"
msgstr ""
-"VAROITUS!\n"
+"Seuraavat paketit poistetaan jotta järjestelmäsi voidaan päivittää:\n"
+"%s\n"
"\n"
-"DrakX aikoo nyt muuttaa Windows-osiosi kokoa. Ole varovainen:\n"
-"tämä toimenpide on vaarallinen. Jos et ole vielä tarkistanut \n"
-"Windows-osioitasi, sinun tulisi poistua asennuksesta, ajaa\n"
-"kiintolevyjen tarkistus \"chkdsk c:\" Windowsissa komentokehotteessa\n"
-"(huomaa että graafisen \"scandisk\" ohjelman käyttö ei riitä), sekä\n"
-"mahdollisesti myös eheyttää levyt käyttäen defrag. Sen jälkeen voit \n"
-"aloittaa asennuksen uudelleen.Samalla suosittelemme ottamaan \n"
-"varmuuskopiot tärkeistä tiedoista.\n"
-"Kun olet varma, paina OK."
+"Haluatko varmasti poistaa näitä paketteja?\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tajik keyboard"
-msgstr "Tajik-näppäimistö"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
+msgstr "En voi käyttää kuulutusta ilman NIS-verkkoaluetta"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:879
#, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Aseta tyhjä FAT-alustettu levyke levyasemaan %s"
+
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
+msgstr "Tämä levyke ei ole FAT-alustettu"
+
+#: ../../install_any.pm_.c:895
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"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-"Voit kopioida tulostinasetukset jotka olet tehnyt %s jonolle nykyiseen %s "
-"jonoon. Kaikki asetustiedot (tulostimen nimi, kuvaus, sijainti, yhteystyyppi "
-"sekä vakioasetukset) kopioidaan, mutta tulostustöitä ei siirretä.\n"
-"Kaikkia tulostusjonoja ei voida siirtää seuraavista syistä:\n"
+"Käyttääksesi tätä \"tallennetut paketit\" valintaa, käynnistä asennus "
+"optiolla \"linux defcfg=floppy\""
-#: ../../standalone/drakfont:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, c-format
-msgid "Font List"
-msgstr "Kirjasinlista"
+msgid "Error reading file %s"
+msgstr "Virhe lukiessa tiedostoa %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_any.pm_.c:1040
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."
+"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 ""
-"Sinun pitää ehkä muuttaa Open Firmware -käynnistyslaitetta\n"
-"aktivoidaksesi järjestelmälataajan. Jos et näe järjestelmälataajaa\n"
-"käynnistäessäsi konettasi uudelleen, Paina Command-Option-O-F\n"
-"käynnistyksen yhteydessä ja kirjoita:\n"
-"setenv boot-device %s,\\\\:tbxi\n"
-"kirjoita sitten: shut-down\n"
-"Seuraavalla käynnistyskerralla sinun pitäisi nähdä käynnistyslataajan\n"
-"komentokehote."
+"On tapahtunut virhe - ei löytynyt ainuttakaan laitetta, joille voi luoda "
+"uuden tiedostojärjestelmän. Tarkista laitteistosi korjataksesi ongelman"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_interactive.pm_.c:21
#, 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"
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"Sinulla on vanhanaikainen tai tuntematon tietokone,\n"
-"joten Yaboot järjestelmänlataaja ei toimi koneessasi.\n"
-"Asennus jatkuu, mutta sinun täytyy käyttää BootX:ää\n"
-"koneesi käynnistämiseen"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Select file"
-msgstr "Valitse tiedosto"
+"Jokin osa laitteistoasi tarvitsee laitteistovalmistajan ajurit toimiakseen "
+"kunnolla.\n"
+"Voit löytää lisätietoja edellämainituista täältä: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:56
msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
+"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 ""
-"Valitse verkko tai kone jolle paikalliset tulostimet pitäisi asettaa "
-"käytettäviksi:"
+"Sinulla tulee olla juuriosio.\n"
+"Tätä varten luo osio (tai klikkaa olemassaolevaa).\n"
+"Valitse sitten toiminto ``Liitospaikka'' ja aseta se arvoon `/'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
+msgstr "Sinulla tulee olla heittovaihtotiedosto"
+
+#: ../../install_interactive.pm_.c:62
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"
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"Näitä komentoja voit myös käyttää monien ohjelmien tulostusdialogien "
-"\"Tulostuskomento\" kentässä, mutta tässä sinun ei pidä määrittää tiedoston "
-"nimeä koska ohjelma määrittää sen itse.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "Japani"
+"Sinulla ei ole heittovaihto-osiota\n"
+"\n"
+"Jatka kuitenkin?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print option list"
-msgstr "Tulostusparametrien lista"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Sinulla pitää olla FAT-osio liitettynä hakemistoon /boot/efi"
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-"Muutos on tehty, mutta ottaaksesi sen käyttöön sinun pitää kirjoittautua ulos"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
+msgstr "Käytä tyhjää tilaa"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
-msgstr "Maa / alue"
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
+msgstr "Ei tarpeeksi tilaa uusien osioiden luomiseksi"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search servers"
-msgstr "Hae palvelimet"
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
+msgstr "Käytä olemassa olevia osioita"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "NCP-jonon nimi puuttuu!"
+#: ../../install_interactive.pm_.c:102
+msgid "There is no existing partition to use"
+msgstr "Ei ole olemassa olevaa osiota käytettäväksi"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Varoitus, toinen Internetyhteys on havaittu, mahdollisesti käyttäen sinun "
-"verkkoasi"
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
+msgstr "Käytä Windows-osiota loopback-tiedostona"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM nimeltään \"%s\""
+#: ../../install_interactive.pm_.c:112
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Mille osiolle haluat laittaa Linux4Win:in?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr "CDRW media"
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
+msgstr "Valitse koot"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Tallentaa ja palauttaa järjestelmän satunnaislukualtaan, tämä\n"
-"parantaa satunnaislukujen laatua."
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
+msgstr "Juuriosion koko Mt: "
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr "Muuta koneesi luotettavaksi palvelimeksi"
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr "Sivutusosion koko Mt: "
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr "Tarkista tyhjät salasanat tiedostossa /etc/shadow"
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
+msgstr "Käytä tyhjää tilaa Windows-osiolla"
-#: ../../network/network.pm:1
-#, c-format
-msgid " (driver %s)"
-msgstr " (ajuri %s)"
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
+msgstr "Minkä osion kokoa haluat muuttaa?"
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
-msgstr "Käynnistä pyydettäessä"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "Muutan Windows osion kokoa"
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
-"Loopback file(s):\n"
-" %s\n"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-"Loopback tiedosto(t):\n"
-" %s\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr "En tiedä"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP -palvelimella \"%s\", portissa %s"
+"FAT-järjestelmän koon muuttaja ei osaa käsitellä osiotasi,\n"
+"seuraava virhe tapahtui: %s"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../install_interactive.pm_.c:137
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?"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-"Olet asettamassa Automaattisen asennuksen levykettä. Tämä toiminto on aika "
-"vaarallinen ja sitä pitää käyttää harkiten.\n"
-"\n"
-"Tällä ominaisuudella voit toistaa samanlaisen asennuksen jonka olet "
-"suorittanut tässä koneessa, ja interaktiivinen asennus antaa sinun muuttaa "
-"ainoastaan paria kohtaa asennuksen aikana.\n"
-"\n"
-"Turvallisuuden maksimoimiseksi osiointia ja formatointia ei koskaan "
-"suoriteta automaattisesti, riippumatta siitä mitä valitsit tämän koneen "
-"asennuksen aikana.\n"
-"\n"
-"Haluatko jatkaa?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Telugu"
-msgstr "Telugu"
+"Windows-osiosi on liian pirstoutunut, käynnistä koneesi uudelleen, mene "
+"Windowsiin ja aja \"Levyn ehytys\" ensin, ja aloita Mandrake Linux:in "
+"asennus uudestaan sen jälkeen."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:138
msgid ""
+"WARNING!\n"
"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
+"VAROITUS!\n"
"\n"
-"\n"
-"Käytät tällä hetkellä ajuria %s\"%s\" (vakioajuri kortillesi on \"%s\")."
-
-# Asennuksen sivuvalikko
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Uninstall"
-msgstr "Poistamisen jälkeiset toiminnot"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Avaan Internetyhteyden "
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
-msgstr " ("
+"DrakX aikoo nyt muuttaa Windows-osiosi kokoa. Ole varovainen:\n"
+"tämä toimenpide on vaarallinen. Jos et ole vielä tarkistanut \n"
+"Windows-osioitasi, sinun tulisi poistua asennuksesta, ajaa\n"
+"kiintolevyjen tarkistus Windowsissa (sekä mahdollisesti myös\n"
+"eheyttää levyt). Sen jälkeen voit aloittaa asennuksen uudelleen.\n"
+"Samalla suosittelen ottamaan varmuuskopiot tärkeistä tiedoista.Kun olet "
+"varma, paina Ok."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid level"
-msgstr "Cpuid-taso"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Kuinka paljon tilaa haluat säilyttää Windowsilla"
-#: ../../printer/main.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Novell palvelimella \"%s\", tulostin \"%s\""
+msgid "partition %s"
+msgstr "osio %s"
-#: ../../keyboard.pm:1
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "Mongolia (kyrillinen)"
+msgid "FAT resizing failed: %s"
+msgstr "FAT-tiedostojärjestelmän koon muuttaminen epäonnistui: %s"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Add a module"
-msgstr "Lisää moduuli"
+#: ../../install_interactive.pm_.c:171
+msgid ""
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Ei ole FAT-osioita, joiden kokoa voisi muuttaa tai käyttää loopback-"
+"tiedostoina (tai ei rittävästi vapaata tilaa)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr "Valitse poistettava profiili:"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr "Tyhjennä koko levy"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Local measure"
-msgstr "Paikallinen mitta"
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr "Poista Windows(TM)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
-msgstr "Varoitus: IP osoite %s on yleensä varattu !"
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Sinulla on enemmän kuin yksi kiintolevy. Mille haluat asentaa Linuxin?"
-#: ../../mouse.pm:1
+# mat
+#: ../../install_interactive.pm_.c:183
#, c-format
-msgid "busmouse"
-msgstr "väylähiiri"
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "KAIKKI olemassaolevat osiot ja niissä oleva tieto tuhoutuu asemalta %s"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Luo Etherbootia tukevia käynnistyskuvia:\n"
-" \t\tYtimen käynnistämiseksi etherbootin kautta pitää luoda erityinen "
-"kernel/initrd\n"
-" \t\t-kuva. mkinitrd-net tekee suuren osan tästä työstä ja "
-"drakTermServ on\n"
-" \t\tainoastaan graafinen käyttöliittymä näiden kuvien hallintaan/"
-"räätälöintiin.\n"
-" \t\tLuodaksesi tiedoston /etc/dhcpd.conf.etherboot-pcimap.include, "
-"jota\n"
-" \t\tkutsutaan tiedostosta dhcpd.conf, sinun pitää luoda etherboot-"
-"kuva ainakin\n"
-" \t\tyhdelle kernelille."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Käyttäjätunnus (käyttäjän nimi)"
+#: ../../install_interactive.pm_.c:191
+msgid "Custom disk partitioning"
+msgstr "Mukautettu levyn osiointi"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
-msgstr "Fdiv virhe"
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr "Käytä fdiskiä"
-#: ../../network/drakfirewall.pm:1
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-"drakfirewall asetustyökalu\n"
-"\n"
-"Varmista että olet määrittänyt verkkosi/Internetyhteytesi käyttämällä\n"
-"drakconnect:a ennen kuin jatkat."
+"Voit nyt osioda kiintolevysi %s\n"
+"Kun olet valmis, älä unohda tallettaa asetuksia komennolla `w'"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr " Hyväksy kuulutetut icmp echo viestit"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr "Uruguay"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Benin"
-msgstr "Benin"
+#: ../../install_interactive.pm_.c:227
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Sinulla ei ole tarpeeksi tyhjää tilaa Windows-osiollasi"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "SMB/Windows-palvelimella \"%s\", jako \"%s\""
+#: ../../install_interactive.pm_.c:243
+msgid "I can't find any room for installing"
+msgstr "Ei ole tarpeeksi tilaa asentamiseen"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path selection"
-msgstr "Polun valinta"
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "DrakX-Osiointivelho löysi seuraavat ratkaisut:"
-#: ../../standalone/scannerdrake:1
+# mat
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid "Name/IP address of host:"
-msgstr "Koneen nimi/IP-osoite:"
+msgid "Partitioning failed: %s"
+msgstr "Osiointi epäonnistui: %s"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Näyttö: %s\n"
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr "Käynnistän verkkoa"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom & system settings"
-msgstr "Mukautetut & järjestelmäasetukset"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr "Ajan alas verkkoa"
-#: ../../partition_table/raw.pm:1
-#, c-format
+#: ../../install_steps.pm_.c:76
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."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"Jotakin kamalaa on tapahtunut kiintolevyllesi.\n"
-"Tiedon oikeellisuuden tarkistus epäonnistui.\n"
-"Tämä tarkoittaa että kaikki asemalle kirjoitettu\n"
-"tieto muuttuu tunnistamattomaksi."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Tulostinlaitteen verkkonimi tai osoite puuttuu!"
+"Tapahtui virhe, eikä sitä ei voida käsitellä kunnolla.\n"
+"Jatka omalla riskilläsi."
-#: ../../standalone/drakbackup:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Valitse kaikki ne käyttäjät, jotka haluat sisällyttää varmuuskopioosi."
+msgid "Duplicate mount point %s"
+msgstr "Kahdentunut liitospaikka %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps.pm_.c:380
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+"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 ""
-"Kuvanlukija %s pitää asettaa printerdrake:n kautta.\n"
-"Voit käynnistää printerdrake:n Mandraken Ohjauspaneelista Laitteisto-osasta."
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Key isn't writable"
-msgstr "XawTV ei ole asennettuna!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bangladesh"
-msgstr "Bangladesh"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
-msgstr "Japani (kaapeli)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Initial tests"
-msgstr "Alkutestit"
+"Osa tärkeistä paketeista jäi asentamatta loppuun asti.\n"
+"Joko cdrom-asemasi tai levy on viallinen.\n"
+"Tarkista cdrom Linux-koneessa käyttämällä \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../network/isdn.pm:1
+# mat
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "Continue"
-msgstr "Jatka"
+msgid "Welcome to %s"
+msgstr "Tervetuloa %s:n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom Restore"
-msgstr "Mukautettu palautus"
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr "Ei levykeasemaa käytettävissä"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "Saturday"
-msgstr "Lauantai"
+msgid "Entering step `%s'\n"
+msgstr "Siirryn vaiheeseen `%s'\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:146
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."
+"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 ""
-"\"%s\": jos äänikortti on tunnistettu järjestelmässäsi, se\n"
-"näytetään täällä. Jos huomaat että näytetty äänikortti ei vastaa sitä\n"
-"joka on asennettu koneeseesi, voit painaa tätä painiketta ja valita toisen\n"
-"ajurin."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the root umask."
-msgstr "Aseta root umask."
-
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "Virhe lukiessa tiedostoa %s"
+"Järjestelmäsi resurssit ovat lopussa. Voit kohdata ongelmia Mandrake Linux:"
+"ia asentaessasi.\n"
+"Jos näin tapahtuu, voit kokeilla tekstipohjaista asennusta. Tehdäksesi niin "
+"paina `F1' kun\n"
+"käynnistät asennusohjelmaa CDROM-asemasta. Tämän jälkeen kirjoita `text'."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr "Script-pohjainen"
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr "Asennuksen luokka"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "PLL setting:"
-msgstr "PLL asetus:"
+#: ../../install_steps_gtk.pm_.c:160
+msgid "Please choose one of the following classes of installation:"
+msgstr "Valitse yksi seuraavista asennusluokista:"
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Sinulla pitää olla FAT-osio liitettynä hakemistoon /boot/efi"
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
+msgstr "Pakettiryhmien valinta"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
-msgstr ":ssa"
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
+msgstr "Yksittäisten pakettien valinta"
-#: ../../diskdrake/dav.pm:1
+# mat
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid "The URL must begin with http:// or https://"
-msgstr "Web-osoitteen tulee alkaa etuliitteellä 'http://' tai 'https://'"
+msgid "Total size: %d / %d MB"
+msgstr "Koko yhteensä: %d / %d Mt"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Voit määrittää URI:n suoraan käyttääksesi tulostinta. URI:n pitää täyttää "
-"joko CUPS tai Foomaatic määritykset. Huomioi ettei kaikki URI tyypit ole "
-"tuettuja kaikissa tulostusjonoissa."
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
+msgstr "Viallinen paketti"
-#: ../../any.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "Muu käyttöjärjestelmä (SunOS...)"
+msgid "Name: %s\n"
+msgstr "Nimi: %s\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid "Install/Upgrade"
-msgstr "Asenna/Päivitä"
+msgid "Version: %s\n"
+msgstr "Versio: %s\n"
-#: ../../install_steps_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid "%d packages"
-msgstr "%d pakettia"
+msgid "Size: %d KB\n"
+msgstr "Koko: %d Kt\n"
-#: ../../crypto.pm:1 ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
-msgid "Costa Rica"
-msgstr "Costa Rica"
+msgid "Importance: %s\n"
+msgstr "Tärkeys: %s\n"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:360
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"
+"You can't select this package as there is not enough space left to install it"
msgstr ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Varmistus- ja palautussovellus\n"
-"\n"
-"--default : tallenna oletushakemistot.\n"
-"--debug : näytä kaikki debuggaus-viestit.\n"
-"--show-conf : varmistettavien tiedostojen tai hakemistojen "
-"listaus.\n"
-"--config-info : selitä asetustiedoston optiot (käyttäjille ilman "
-"X).\n"
-"--daemon : käytä demoni-asetukset. \n"
-"--help : näytä tämä viesti.\n"
-"--version : näytä versiotiedot.\n"
+"Et voi asentaa tätä pakettia, koska levyllä ei ole tarpeeksi tilaa sen "
+"asentamiseksi"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain Authentication Required"
-msgstr "Verkkoaluetunnistus vaaditaan"
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
+msgstr "Seuraavat paketit asennetaan"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Use libsafe for servers"
-msgstr "Käytä libsafea palvelimille"
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
+msgstr "Seuraavat paketit poistetaan"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Icelandic"
-msgstr "Islanti"
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
+msgstr "Et voi valita/poistaa tätä pakettia"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
-msgstr ""
-"\n"
-"Käyttö: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Tämä on pakollinen paketti, sitä ei voida poistaa valinnoista"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
+msgstr "Et voi poistaa tämän paketin valintaa. Se on jo asennettu"
+
+#: ../../install_steps_gtk.pm_.c:395
msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
-"Suurin sallittu koko\n"
-" DrakBackup-varmuuskopiolle(Mt)"
+"Tämä paketti tulee päivittää.\n"
+"Oletko varma että haluat poistaa valinnan?"
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Ympyrä-liitoksia %s\n"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "Et voi poistaa tämän paketin valintaa. Paketti pitää päivittää."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo/grub mode"
-msgstr "Lilo/grub-tila"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
+msgstr "Näytä automaattisesti valitut paketit"
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "Martinique"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr "Asenna"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Kiintolevy / NFS"
+#: ../../install_steps_gtk.pm_.c:407
+msgid "Load/Save on floppy"
+msgstr "Lataa/Tallenna levykkeelle"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Old user list:\n"
-msgstr "Vanha käyttäjälistaus:\n"
+#: ../../install_steps_gtk.pm_.c:408
+msgid "Updating package selection"
+msgstr "Päivitän pakettien valintaa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
-msgstr "Etsi Varmuuskopioinnit"
+# Asennuksen sivuvalikko
+#: ../../install_steps_gtk.pm_.c:413
+msgid "Minimal install"
+msgstr "Minimaalinen asennus"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "a number"
-msgstr "numero"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
+msgstr "Valitse asennettavat paketit"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "Ruotsi"
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr "Asennan"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Mitä %s-ajuria kokeillaan?"
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr "Arvioin aikaa"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr "Saat hälytyksen kun jokin valituista palveluista ei ole enää käynnissä"
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr "Aikaa jäljellä "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Weekday"
-msgstr "Viikkopäivä"
+#: ../../install_steps_gtk.pm_.c:469
+msgid "Please wait, preparing installation..."
+msgstr "Odota, valmistelen asennusta..."
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid "Filesystem types:"
-msgstr "Tiedostojärjestelmien tyypit:"
+msgid "%d packages"
+msgstr "%d pakettia"
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "Northern Mariana Islands"
-msgstr "Pohjoiset Mariaanit"
+msgid "Installing package %s"
+msgstr "Asennan pakettia: %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", monitoimilaite HP JetDirectissä"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "Hyväksy"
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "ei mikään"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
+msgstr "Hylkää"
-#: ../../standalone/drakconnect:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
+"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 ""
-"Luotavan profiilin nimi (uusi profiili luodaan kopioimalla nykyisen tiedot) :"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Floppy"
-msgstr "Levyke"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "Ghostscript viittaus"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Bootloader"
-msgstr "Käynnistyslataaja"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
-msgstr "Valtuuta kaikki palvelut, joita tcp_wrappers valvoo"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "Siirrä"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Bootloader to use"
-msgstr "Käytettävä järjestelmälataaja"
+"Vaihda CD-levyä!\n"
+"\n"
+"Aseta CD-levy nimeltään \"%s\" CD-asemaan ja paina Ok kun olet valmis.\n"
+"Jos sinulla ei ole levyä, paina Peruuta välttääksesi asennukset tältä "
+"levyltä."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "SMB-palvelimen nimi"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
+msgstr "Jatka kuitenkin?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Name Servers:"
-msgstr "Nimipalvelimet:"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
+msgstr "Tapahtu virhe järjestettäessä paketteja:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Minute"
-msgstr "Minuutti"
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
+msgstr "Tapahtu virhe asennettaessa paketteja:"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:10
msgid ""
"\n"
"Warning\n"
@@ -7518,16 +4581,16 @@ msgstr ""
"\n"
"Varoitus\n"
"\n"
-"Lue huolellisesti alla olevat ehdot. Jos et hyväksy kaikkia\n"
-"ehtoja, sinulla ei ole oikeuksia asentaa seuraavaa CD-levyä.\n"
+"Lue huolellisesti alla olevat ehdot. Jos et ole samaa mieltä kaikkien\n"
+"ehtojen kanssa, sinulla ei ole oikeuksia asentaa seuraavaa CD-levyä.\n"
"Paina 'Kieltäydyn' jos haluat jatkaa asennusta käyttämättä näitä osia.\n"
"\n"
"\n"
-"Jotkin seuraavalla CD-levyllä olevat komponentit eivät ole GPL:n tai\n"
-"vastaavanlaisen lisenssin alaisia. Jokaisen tällaisen komponentin ehdot\n"
-"on määritelty erikseen niiden omien lisenssien mukaan. Tutustu näihin\n"
+"Jotkin seuraavalla CD-levyllä olevat komponentit eivät ole GPL:n tai \n"
+"vastaavanlaisen lisenssin alaisia. Jokaisen tällaisen komponentin ehdot \n"
+"on määritelty erikseen niiden omien lisenssien mukaan. Tutustu näihin \n"
"lisensseihin huolellisesti ennen kuin käytät tai levität näitä "
-"komponentteja\n"
+"komponentteja \n"
"eteenpäin.\n"
"Tällaiset lisenssit kieltävät tavallisesti siirtämisen, kopioimisen\n"
"(lukuunottamatta varmuuskopioita), uudelleenlevityksen, "
@@ -7540,6425 +4603,4824 @@ msgstr ""
"varma kaikista ehdoista, ota yhteys suoraan kyseisen komponentin \n"
"tekijään tai jakelijaan. Yllä mainittujen komponenttien tai niiden \n"
"dokumentaation saattaminen kolmannen osapuolen käsiin on tavallisesti \n"
-"kielletty.\n"
+"kieletty.\n"
"\n"
"\n"
"Kaikki oikeudet seuraavan levyn komponentteihin kuuluvat niiden \n"
"asianomaisille tekijöille ja ne on suojattu yksityisen omaisuuden ja \n"
-"ohjelmistojen tekijänoikeuslakien mukaan.\n"
+"ohjelmiston tekijänoikeuslakien avulla.\n"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Expert mode"
-msgstr "/_Asiantuntijatila"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Poista tämä tulostin Star Office/OpenOffice.org/GIMP käytöstä."
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Linux Virtual Server, jonka avulla voidaan rakentaa suuritehoinen\n"
-"korkean käytettävyyden palvelin."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr "Mikronesia"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 miljardia väriä (32 bittiä)"
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
+msgstr "Tapahtui virhe"
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
-msgstr "Lisenssi"
+#: ../../install_steps_interactive.pm_.c:85
+msgid "Do you really want to leave the installation?"
+msgstr "Haluatko todella poistua asennuksesta?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "Avaimien luominen voi kestää vähän aikaa."
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
+msgstr "Lisenssin hyväksyminen"
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:113
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"
+"Introduction\n"
"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
-"<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"
+"1. License Agreement\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 ""
-"Täällä voit asettaa turvallisuustason ja koneesi ylläpitäjä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"
-"Tietoturvan ylläpitäjä on henkilö, joka saa turvahälytykset jos "
-"'Tietoturvahälytykset'-\n"
-"optio on valittu. Se voi olla joko kättäjätunnus tai sähköpostiosoite.\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"
-"Turvallisuustaso-valikosta voit valita jonkin kuudesta "
-"turvallisuustasovaihtoehdosta,\n"
-"joita msec käyttää. Ne ulottuvat heikosta turvallisuudesta ja "
-"helppokäyttöisyydestä\n"
-"vainoharhaiseen turvallisuuteen, joka on sopiva kaikkein arkaluontoisimmille "
-"palvelin-\n"
-"sovelluksille:\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"
-"<span foreground=\"royalblue3\">Heikko</span>: Tämä on erittäin turvaton "
-"mutta erittäin helppokäyttöinen\n"
-"turvallisuustaso. Sitä tulisi käyttää vain koneissa joita ei ole liitetty "
-"mihinkään verkkoon ja jotka eivät ole\n"
-"kaikkien käytettävissä.\n"
"\n"
+"3. The GPL License and Related Licenses\n"
"\n"
-"<span foreground=\"royalblue3\">Oletus</span>: Tämä on oletus "
-"turvallisuustaso, joka on sopiva\n"
-"tietokoneille, jotka on yhteydessä Internetiin asiakkaina.\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"
-"<span foreground=\"royalblue3\">Korkea</span>: Käytössä on rajoituksia ja "
-"automaattiset tarkistukset joka yö.\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"
-"<span foreground=\"royalblue3\">Korkeampi</span>: Turvallisuus on riittävän "
-"hyvä, jotta järjestelmää voidaan\n"
-"käyttää palvelimena, joka on yhteydessä Internetiin.Jos koneesi on "
-"ainoastaan asiakaskoneena internetissä, sinun kannattaisi valita matalempi "
-"taso.\n"
"\n"
+"5. Governing Laws \n"
"\n"
-"<span foreground=\"royalblue3\">Vainoharhainen</span>: Muuten sama kuin "
-"edellinen, mutta järjestelmä on\n"
-"täysin suljettu ja turvallisuusasetukset ovat tiukimmillaan."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr ""
-"Tulostimen automaattitunnistus (paikallinen, TCP/Socket ja SMB-tulostimet )"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr "Sagem (käyttäen pppoa) usb"
-
-#: ../../install_any.pm:1
-#, 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"
+"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 ""
-"On tapahtunut virhe - ei löytynyt ainuttakaan laitetta, joille voi luoda "
-"uuden tiedostojärjestelmän. Tarkista laitteistosi korjataksesi ongelman"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Käynnistää tulostusjärjestelmän käynnistyksen aikana"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Haluatko ottaa yhteyden koneen käynnistyksen yhteydessä?"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr "Prosessorin ID"
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
+msgstr "Oletko varma että hylkäät lisenssin?"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr "Äänen vianetsintä"
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "Näppäimistö"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "Puola (QWERTY järjestys)"
+#: ../../install_steps_interactive.pm_.c:218
+msgid "Please choose your keyboard layout."
+msgstr "Valitse näppäimistösi asettelu."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Lisää Tulostin"
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
+msgstr "Tässä on koko lista olemassa olevista näppäimistöistä"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-msgstr ""
-"\n"
-"Drakbackup toimintoja CD:n kautta:\n"
-"\n"
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
+msgstr "Valitse asennuksen luokka!"
-#: ../../printer/printerdrake.pm:1
-#, 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?"
-msgstr ""
-"Olet asentamassa tulostusjärjestelmää %s järjestelmään, joka käyttää "
-"turvallisuustasoa %s.\n"
-"\n"
-"Tämä tulostusjärjestelmä suorittaa demonin (taustaprosessina), joka odottaa "
-"tulostustöitä ja käsittelee niitä. Tämä demoni on myös käytettävissä "
-"etäkoneilta verkon kautta, ja sen vuoksi se on mahdollinen hyökkäyskohde. "
-"Tästä syystä ainoastaan harvat valitut demonit käynnistetään oletuksena "
-"tällä turvallisuustasolla.\n"
-"\n"
-"Haluatko varmasti asettaa tulostusta tässä koneessa?"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
+msgstr "Asenna/Päivitä"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Kone \"%s\", portti %s"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
+msgstr "Onko tämä asennus vai päivitys?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "Osiota ei voida käyttää loopback-osiona"
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr "Suositeltu"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr "Tiedosto on jo olemassa. Käytä sitä?"
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Asiantuntija"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
-msgstr "vastaanotettu: "
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade"
+msgstr "Päivitä"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr "Oikea Alt näppäin"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade packages only"
+msgstr "Päivitä vain paketit"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "listaus vaihtoehtoisista ajureista tälle äänikortille"
+#: ../../install_steps_interactive.pm_.c:282
+msgid "Please choose the type of your mouse."
+msgstr "Valitse hiiren tyyppi."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Yhdyskäytävä"
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr "Hiiren portti"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr "Tonga"
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
+msgstr "Mihin sarjaporttiin hiiresi on liitetty."
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "Tunisia"
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
+msgstr "Näppäinemulaatio"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing"
-msgstr "Kuvanlukijan jako"
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
+msgstr "2. näppäimen emulaatio"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile: "
-msgstr "Profiili: "
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
+msgstr "3. näppäimen emulaatio"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr "Valitse laite vasemmalla olevasta puusta nähdäksesi sen tiedot täällä."
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr "Asetan PCMCIA kortteja...."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr "Salli / Estä automaattinen sisäänkirjautuminen."
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
-msgstr "XawTV ei ole asennettuna!"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr "Asetan IDE-levyä"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Älä sisällytä kriittisiä tiedostoja (passwd, group, fstab)"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "vanha staattinen laitenimi jota on käytetty dev-paketissa"
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr "ei vapaita osioita"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
-msgstr "Ota käyttöön epätavallisten IPv4 pakettien kirjaaminen lokiin"
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
+msgstr "Tarkistan osioita löytääkseni liitospaikat"
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
-msgstr "Nimike on jo käytössä"
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr "Valitse liitospaikat"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:386
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."
+"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 ""
-"\n"
-"Tervetuloa Tulostimen asetusvelhoon\n"
-"\n"
-"Tämä velho auttaa sinua asentamaan paikallisesti liitetyn tai suoraan "
-"verkkoon liitetyn tulostimen (tulostimia).\n"
-"\n"
-"Jos sinulla on paikallisesti liitetty tulostin (tulostimia), varmista että "
-"se/ne on kytketty päälle jotta se/ne voidaan tunnistaa automaattisesti. Myös "
-"verkkotulostin (tulostimet) pitää olla päällä.\n"
-"\n"
-"Huomaa että tulostimen tunnistaminen verkosta kestää kauemmin kuin "
-"paikallisten tulostimien tunnistus. Eli poista verkkotulostimien tunnistus "
-"jos et tarvitse sitä.\n"
-"\n"
-"Paina \"Seuraava\" kun haluat jatkaa tai \"Peruuta\" jos et halua asettaa "
-"tulostinta (tulostimia) nyt."
+"Ei vapaata tilaa 1 Mt:n käynnistyslohkoa varten! Asennusta jatketaan, mutta "
+"käynnistääksesi järjestelmän, sinun pitää luoda käynnistyslohko-osio "
+"DiskDrake:ssa."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
-msgstr "Kreikka (polytonic)"
+#: ../../install_steps_interactive.pm_.c:395
+msgid "No root partition found to perform an upgrade"
+msgstr "Päivitykseen tarvittavaa juuriosiota ei löytynyt"
-# mat
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Kaikki osiolla %s olevat tiedot häviävät osion alustuksen yhteydessä"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr "Juuriosio"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection Time: "
-msgstr "Yhteysaika: "
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr "Mikä on järjestelmäsi juuriosio (/) ?"
-#: ../../standalone/livedrake:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-"Aseta asennuslevy CD-asemaan ja paina OK.\n"
-"Jos sinulla ei ole levyä, paina Peruuta estääksesi järjestelmän päivityksen."
+"Sinun tulee käynnistää järjestelmä uudelleen jotta muutokset tulevat voimaan"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use group id for execution"
-msgstr "käytä ryhmä id suoritukseen"
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr "Valitse alustettavat osiot"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "Valitse oletuskäyttäjä:"
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
+msgstr "Tarkista vialliset lohkot?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "Gabon"
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr "Alustan osioita"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
-"\n"
-"Tulostimia, jotka ovat CUPS-etäpalvelimella, ei tarvitse asettaa\n"
-"tässä; nämä tulostimet tunnistetaan automaattisesti."
+msgid "Creating and formatting file %s"
+msgstr "Luon ja alustan tiedostoa %s"
-#: ../../any.pm:1
+#: ../../install_steps_interactive.pm_.c:470
#, 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."
-msgstr ""
-"Mandrake Linux tukee useaa kieltä. Valitse kielet jotka\n"
-"haluat asentaa. Ne ovat käytettävissä asennuksen jälkeen\n"
-"kun olet käynnistänyt koneesi uudelleen."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-"Hakemisto (tai moduuli) johon haluat tallentaa varmistukset tässä koneessa."
+"Tiedostojärjestelmän %s epäonnistui. Haluatko korjata virheet?\n"
+"(huomioi: voit menettä tietoja)"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain"
-msgstr "Verkkoalue"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Tarkka muistin koko, jos tarpeen (löydettiin %d Mt)"
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Heittovaihtotiedosto ei ole riittävän suuri, suurenna sitä"
-#: ../../help.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:479
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
-"LILO (the LInux LOader) ja GRUB ovat GNU/Linux järjestelmälataajia.\n"
-"Yleensä tämä askel on automaattinen, eli DrakX analysoi käynnistys-\n"
-"sektorin ja toimii sen mukaan mitä sieltä löytyy:\n"
-"\n"
-" * jos Windows käynnistyssektori löytyy, sen tilalle asennetaan GRUB/LILO\n"
-"käynnistyssektori. Tällä tavalla voit käynnistää GNU/Linuxin tai jonkin\n"
-"muun käyttöjärjestelmän.\n"
-"\n"
-" * jos GRUB tai LILO käynnistyssektori löytyy, se päivitetään uudempaan\n"
-"versioon.\n"
-"\n"
-"Jos DrakX ei voi tehdä päätöstä, se kysyy sinulta mihin haluat asentaa\n"
-"käynnistyslataajan."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "Yhteydentarjoajan dns 2 (vapaaehtoinen)"
+"Etsin saatavilla olevia paketteja, ja rakennan rpm-tietokannan uudelleen..."
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "Käynnistyslaite"
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr "Etsin saatavilla olevia paketteja..."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Minkä osion kokoa haluat muuttaa?"
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Looking at packages already installed..."
+msgstr "Etsin jo asennettuja paketteja..."
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr "Yhdysvaltain Tyynenmeren erillissaaret"
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr "Etsin päivitettäviä paketteja..."
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:505
#, c-format
-msgid "Djibouti"
-msgstr "Djibouti"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
+msgstr ""
+"Järjestelmässäsi ei ole riittävästi tilaa asennukseen tai päivitykseen (%d > "
+"%d)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Työkalu lokien seuraamiseen"
+#: ../../install_steps_interactive.pm_.c:541
+msgid ""
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
+msgstr ""
+"Lataa tai tallenna pakettien valinta levykkeelle.\n"
+"Muoto on sama kuin auto_install-toiminnon luomilla levykkeillä."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected on port %s"
-msgstr "löydetty portista %s"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Load from floppy"
+msgstr "Lataa levykkeeltä"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD"
-msgstr "LPD"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr "Tallenna levykkeelle"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Näytönohjain: %s\n"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Loading from floppy"
+msgstr "Ladataan levykkeeltä"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/Set as _Default"
-msgstr "/Aseta _Oletus"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Package selection"
+msgstr "Pakettien valinta"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
-msgstr "Salli icmp echo"
+#: ../../install_steps_interactive.pm_.c:552
+msgid "Insert a floppy containing package selection"
+msgstr "Aseta levyke, jossa on pakettien valinta"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
+msgstr "Valittu koko on suurempi kuin käytettävissä oleva levytila"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Series rullaemuloinnilla"
+#: ../../install_steps_interactive.pm_.c:649
+msgid "Type of install"
+msgstr "Asennuksen tyyppi"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "Laajennettua osiotyyppiä ei ole tuettu tässä ympäristössä"
+#: ../../install_steps_interactive.pm_.c:650
+msgid ""
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
+msgstr ""
+"Et ole valinnut yhtäkään pakettiryhmää.\n"
+"Valitse haluamasti minimaalinen asennus"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Splash selection"
-msgstr "Splash valinta"
+#: ../../install_steps_interactive.pm_.c:653
+msgid "With X"
+msgstr "X-palvelimella"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "ISDN asetus"
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
+msgstr "Perusdokumentaation kanssa (suositeltu!)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "high"
-msgstr "korkea"
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Vähimmäis-asennus (erityisesti ei urpmia)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Internetyhteyden jakaminen"
+#: ../../install_steps_interactive.pm_.c:741
+msgid ""
+"If you have all the CDs in the list below, click Ok.\n"
+"If you have none of those CDs, click Cancel.\n"
+"If only some CDs are missing, unselect them, then click Ok."
+msgstr ""
+"Jos sinulla on kaikki CD.levyt allaolevalta listalta, paina OK.\n"
+"Jos sinulla ei ole mitään levyistä, paina Peruuta.\n"
+"Jos jotkut levyistä puuttuvat, poista niiden valinnat, ja paina OK."
-#: ../../standalone/logdrake:1
+#: ../../install_steps_interactive.pm_.c:746
#, c-format
-msgid "Choose file"
-msgstr "Valitse tiedosto"
+msgid "Cd-Rom labeled \"%s\""
+msgstr "Cd-Rom nimeltään \"%s\""
-# Asennuksen sivuvalikko
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Summary: "
-msgstr "Yhteenveto: "
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr "Valmistelen asennusta"
-#: ../../network/shorewall.pm:1
+#: ../../install_steps_interactive.pm_.c:776
#, c-format
msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
+"Installing package %s\n"
+"%d%%"
msgstr ""
-"Varoitus! Olemassaoleva palomuuri löydetty. Tarvitset mahdollisesti käsin "
-"tehtäviä korjauksia asennuksen jälkeen."
+"Asennan pakettia: %s\n"
+"%d%%"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Tulostus/Kuva-Kortin käyttö laitteella \"%s\""
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
+msgstr "Asennuksen jälkeiset toiminnot"
-#: ../../security/l10n.pm:1
+#: ../../install_steps_interactive.pm_.c:828
#, c-format
-msgid "Daily security check"
-msgstr "Päivittäiset turvallisuustarkistukset"
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Aseta käyttämäsi käynnistyslevyke asemaan %s"
-#: ../../printer/printerdrake.pm:1
+# mat
+#: ../../install_steps_interactive.pm_.c:834
#, c-format
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "Aseta moduulien päivityslevyke asemaan %s"
+
+#: ../../install_steps_interactive.pm_.c:861
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates ?"
msgstr ""
-"Haluatko mahdollistaa tulostamisen yllä mainittuihin tulostimiin tai "
-"tulostimiin, jotka löytyvät paikallisverkostasi?\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer default settings"
-msgstr "Tulostimen oletusasetuksia"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Yleinen PS2 rullahiiri"
+"Sinulla on nyt mahdollisuutta hakea päivitetyt paketit. Nämä paketit\n"
+"ovat julkaistu tämän jakelun julkaisun jälkeen. Ne voivat sisältää\n"
+"tietoturva- tai virhekorjauksia.\n"
+"\n"
+"Hakeaaksesi näitä pakettejä, sinulla pitää olla toimiva nettiyhteys.\n"
+"\n"
+"Haluatko hakea ja asentaa päivitykset?"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:876
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)"
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-"WP lipuke rekisterissä CR0 pakottaa kirjoitussuojan muistisivun tasolla, "
-"jolloin sallitaan prosessorin estää tarkistamattomat ytimen käyttäjämuistin "
-"käytöt (eli tämä on virhesuoja)"
+"Otan yhteyttä Mandrake Linuxin sivustolle saadakseni listan olemassaolevista "
+"peilipalvelimista..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Poistetaan vanha tulostin \"%s\" ..."
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
+msgstr "Valitse peilipalvelin josta paketit haetaan"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Select a device !"
-msgstr "Valitse laite !"
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Yhdistän peilipalvelimeen hakeakseni uusimman pakettilistan..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected server"
-msgstr "Poista valittu palvelin"
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr "Mikä on järjestelmäsi aikavyöhyke?"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using dhcp) usb"
-msgstr "Sagem (käyttäen dhcp) usb"
+#: ../../install_steps_interactive.pm_.c:923
+msgid "Hardware clock set to GMT"
+msgstr "Laitteistokello asetettu GMT-aikaan"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Southern Territories"
-msgstr "Ranskan eteläiset alueet"
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Automaattinen kellon synkronisointi (käyttäen NTP:tä)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the processor"
-msgstr "prosessorin valmistaja"
+#: ../../install_steps_interactive.pm_.c:931
+msgid "NTP Server"
+msgstr "NTP-palvelin"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Ylläpidä %s:\n"
-" \t\tJotta levyttömien asiakkaiden käyttäjät pystyvät kirjautumaan "
-"tähän järjestelmään,\n"
-" \t\tniiden tietue /etc/shadow tiedostossa pitää kopioida tiedostoon\n"
-" \t\t%s. drakTermServ auttaa tässä toimenpiteessä\n"
-" \t\tlisäämällä tai poistamalla käyttäjiä tästä tiedostosta."
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
+msgstr "Ulkoinen CUPS-palvelin"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
-msgstr "Kaikki osion tiedot tulisi varmuuskopioida"
+#: ../../install_steps_interactive.pm_.c:966
+msgid "No printer"
+msgstr "Ei kirjoitinta"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "Asennan pakettia: %s"
+#: ../../install_steps_interactive.pm_.c:982
+msgid "Do you have an ISA sound card?"
+msgstr "Onko sinulla ISA-väylään liitettävä äänikortti?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr "Tarkistan laite ja asetan HPOJ..."
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
+msgstr "Suorita \"sndconfig\" asennuksen jälkeen asettaaksesi äänikorttisi."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-"Voidaksesi luoda lisää osioita tuhoa yksi olemassaoleva osio jotta voisit "
-"luoda laajennetun osion"
+"Yhtäkään äänikorttia ei löydetty. Kokeile \"harddrake\" asennuksen jälkeen"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"Tulostimesi asetettiin automaattisesti sallimaan kuva-kortti-aseman käyttö "
-"tietokoneeltasi. Voit nyt käyttää kuvakorttisi graafisella ohjelmalla "
-"\"MtoolsFM\" (Valikko: \"Sovellukset\" -> \"Tiedostotyökalut\" -> \"Mtools "
-"tiedostonhallinta\") tai komentorivityökaluilla \"mtools\" ( \"man mtools\" "
-"komentorivillä antaa lisää tietoa). Löydät kortin tiedostojärjestelmän "
-"asematunnuksen \"p:\" alta tai sen jälkeisten asematunnusten alta mikäli "
-"sinulla on enemmän kuin yksi HP tulostin, jossa on kuva-kortti asema. Jos "
-"käytät \"MtoolsFM\":a voit vaihtaa eri asematunnusten välillä "
-"tiedostolistauksen oikean yläkulman kentässä."
+# Asennuksen sivuvalikko
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
+msgstr "Yhteenveto"
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "Asennettavien pakettien valinta"
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
+msgstr "Hiiri"
-# mat
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "KAIKKI olemassaolevat osiot ja niissä oleva tieto tuhoutuu asemalta %s"
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
+msgstr "Aikavyöhyke"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Järjestelmässäsi ei ole riittävästi tilaa asennukseen tai päivitykseen (%d > "
-"%d)"
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "Kirjoitin"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Jokainen tulostin tarvitsee nimen (esim. \"tulostin\"). Kenttiä Kuvaus ja "
-"Sijainti ei tarvitse täyttää. Ne ovat kommentteja käyttäjille."
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
+msgstr "ISDN-kortti"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"\"%s\": painamalla \"%s\" painiketta avautuu tulostimen\n"
-"asetusvelho. Katso tätä vastaava lukua ``Aloitusoppaasta'' saadaksesi\n"
-"lisätietoa miten asetat uuden tulostimen. Oppaassa näytetty\n"
-"käyttöliittymä on vastaava kuin asennuksen aikana käytetty."
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
+msgstr "Äänikortti"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr "Bhutan"
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
+msgstr "TV-kortti"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "Verkkoliitäntä"
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
+msgstr "LDAP"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Internetyhteyden katkaiseminen ei onnistunut."
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+msgid "NIS"
+msgstr "NIS"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
-msgstr "Luetaan tulostimen tietoja ..."
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+msgid "Windows Domain"
+msgstr "Windows verkkoalue"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "Korealainen näppäimistö"
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+msgid "Local files"
+msgstr "Paikalliset tiedostot"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Not connected"
-msgstr "Ei yhteyttä"
+# Asennuksen sivuvalikko
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr "Ylläpitäjän salasana"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "Internetyhteyden asetus"
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr "Ei salasanaa"
-#: ../../keyboard.pm:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "Greek"
-msgstr "Kreikka"
+msgid "This password is too short (it must be at least %d characters long)"
+msgstr ""
+"Salasana on liian yksinkertainen (sen tulee olla ainakin %d merkkiä pitkä)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts ja Nevis"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "Tunnistustapa"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Yleinen 3-näppäinen hiiri rullaemuloinnilla"
+#: ../../install_steps_interactive.pm_.c:1088
+msgid "Authentication LDAP"
+msgstr "Tunnistus: LDAP"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
-msgstr "Mahdollista OF-käynnistys?"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
+msgstr "LDAP perus-dn"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Et voi käyttää JFS:ä alle 16 Mt osioilla"
+#: ../../install_steps_interactive.pm_.c:1090
+msgid "LDAP Server"
+msgstr "LDAP-palvelin"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Tyhjennä RW-mediasi (ensimmäinen sessio)"
+#: ../../install_steps_interactive.pm_.c:1096
+msgid "Authentication NIS"
+msgstr "Tunnistus: NIS"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Näytön virkistystaajuus: %s\n"
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "NIS-verkkoalue"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "Liitospiste"
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr "NIS-palvelin"
-#: ../../Xconfig/test.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1104
msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
+"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 ""
-"Tapahtui virhe:\n"
-"%s\n"
-"Kokeile muuttaa joitakin asetuksia"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "TCP/IP -palvelimella \"%s\", portissa %s"
+#: ../../install_steps_interactive.pm_.c:1106
+msgid "Authentication Windows Domain"
+msgstr "Tunnistus: Windows verkkoalue"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "User :"
-msgstr "Käyttäjä :"
+#: ../../install_steps_interactive.pm_.c:1108
+msgid "Domain Admin User Name"
+msgstr "Verkkoalueen pääkäyttäjän nimi"
-# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore system"
-msgstr "Palauta järjestelmä"
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
+msgstr "Verkkoalueen pääkäyttäjan salasana"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1144
msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
+"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\"."
msgstr ""
-"Nämä ovat koneet ja verkot jossa paikallisesti liitetty kuvanlukija(t) "
-"pitäisi olla käytettävissä:"
+"Mukautetulla käynnistyslevykkeellä voit käynnistää järjestelmän ilman\n"
+"tavanomaisen käyttöjärjestelmälataajan apua. Tästä on hyötyä, jos et halua\n"
+"asentaa SILOa järjestelmääsi, toinen käyttöjärjestelmä poistaa SILOn,\n"
+"tai SILO ei toimi laitteistossasi. Mukautettua käynnistyslevykettä voidaan\n"
+"käyttää myös Mandraken pelastus-kuvan kanssa, jolloin vakavista\n"
+"järjestelmän virhetilanteista on helpompi toipua.\n"
+"\n"
+"Jos haluat luoda käynnistyslevykkeen järjestelmääsi, aseta levyke\n"
+"ensimmäiseen asemaan ja paina \"Ok\","
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
-msgstr "DHCP:n alueen loppu"
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr "Ensimmäinen levykeasema"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Another one"
-msgstr "Toinen"
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "Toinen levykeasema"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "Ohita"
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:1167
#, c-format
-msgid "Colombia"
-msgstr "Kolumbia"
+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"
+msgstr ""
+"Mukautetulla käynnistyslevykkeellä voit käynnistää järjestelmän ilman\n"
+"tavanomaisen käyttöjärjestelmälataajan apua. Tästä on hyötyä, jos et halua\n"
+"asentaa LILOa (tai grubia) järjestelmääsi, toinen käyttöjärjestelmä poistaa\n"
+"LILOn, tai LILO ei toimi laitteistossasi. Mukautettua käynnistyslevykettä "
+"voidaan\n"
+"käyttää myös Mandraken pelastus-kuvan kanssa, jolloin vakavista\n"
+"järjestelmän virhetilanteista on helpompi toipua.\n"
+"Haluatko luoda käynnistyslevykkeen järjestelmääsi?\n"
+"%s"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1173
msgid ""
-"Current configuration of `%s':\n"
"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"\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)."
msgstr ""
-"Koneen `%s' nykyiset asetukset:\n"
"\n"
-"Verkko: %s\n"
-"IP-osoite: %s\n"
-"IP-määreet: %s\n"
-"Ajuri: %s"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr "Kytke ja Käytä"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr "Reunion"
+"\n"
+"(VAROITUS! käytät XFS juuriosiollesi,\n"
+" käynnistyslevykkeen luominen 1.44 Mt levykkeelle\n"
+" todennäköisesti epäonnistuu, koska XFS tarvitsee\n"
+"aika kookkaan ajurin)."
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "Yksityiskohdat"
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "Valitan, levykeasemaa ei löydy."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Turvallisuussyistä yhteys suljetaan nyt."
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr "Valitse levykeasema jolla luot käynnistyslevykkeen"
-#: ../../standalone/drakbug:1
+#: ../../install_steps_interactive.pm_.c:1189
#, c-format
-msgid "Synchronization tool"
-msgstr "Synkronointityökalu"
+msgid "Insert a floppy in %s"
+msgstr "Aseta levyke asemaan %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking your system..."
-msgstr "Tarkistan järjestelmääsi..."
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr "Luon käynnistyslevykettä..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print"
-msgstr "Tulosta"
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr "Valmistelen käyttöjärjestelmän lataajaa..."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1210
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+"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 to boot your machine"
msgstr ""
-"Aseta nauha nimellä %s\n"
-" nauha-asemaan %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "Mongolia"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
-msgstr "Liitetty\n"
-
-# Asennuksen sivuvalikko
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS"
-msgstr "Aseta CUPS"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Interface"
-msgstr "Graafinen käyttöliittymä"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Users"
-msgstr "Palauta käyttäjät"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Salausavain %s:lle"
+"Sinulla on vanhanaikainen tai tuntematon tietokone,\n"
+"joten yaboot järjestelmänlataaja ei toimi koneessasi.\n"
+"Asennus jatkuu, mutta sinun täytyy käyttää BootX:ää\n"
+"koneesi käynnistämiseen"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to recover your system?"
-msgstr "Haluatko palauttaa järjestelmäsi?"
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
+msgstr "Haluatko käyttää aboot:ia?"
-#: ../../services.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1219
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."
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
-"Portmapper hallitsee RPC-yhteyksiä, joita käyttävät esimerkiksi\n"
-"NFS ja NIS-protokollat. Portmap-palvelin on oltava käynnissä\n"
-"järjestelmissä jotka haluavat tarjota näitä protokollia."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detected hardware"
-msgstr "Tunnistettu laitteisto"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr "Mauritius"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
-msgstr "Myanmar"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Enabling swap partition %s"
-msgstr "Otetaan käyttöön sivutusosiota %s"
+"Virhe asennettaessa aboot:a,\n"
+"yritänkö pakkoasennusta vaikka se tuhoaa ensimmäisen osion?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
-msgstr ""
-"Ei ole FAT-osioita, jota voisi käyttää loopback-tiedostona (tai ei "
-"riittävästi vapaata tilaa)"
+# Asennuksen sivuvalikko
+#: ../../install_steps_interactive.pm_.c:1226
+msgid "Installing bootloader"
+msgstr "Asennan käyttöjärjestelmän lataajaa"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr "Armeenia (vanha)"
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Järjestelmälataajan asennus epäonnistui. Seuraava virhe tapahtui:"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:1240
#, 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."
+"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 ""
-"Tulostin nimellä \"%s\" on jo olemassa kohdassa %s.\n"
-"Paina \"Siirrä\" ylikirjoittaaksesi sen.\n"
-"Voit myös kirjoittaa uuden nimen tai ohittaa tämän tulostimen."
-
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
-msgstr "Löydä ratkaisuja ongelmiisi MandrakeSoft:n online-tukialustasta"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", kone \"%s\", portti %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Monaco"
-msgstr "Monaco"
+"Sinun pitää ehkä muuttaa Open Firmware -käynnistyslaitetta\n"
+"aktivoidaksesi järjestelmälataajan. Jos et näe järjeslelmälataajaa\n"
+"käynistäessäsi konettasi uudelleen, Paina Command-Option-O-F\n"
+"käynnistyksen yhteydessä ja kirjoita:\n"
+"setenv boot-device %s,\\\\:tbxi\n"
+"sitten kirjoita: shut-down\n"
+"Seuraavalla käynnistyskerralla sinun pitäisi nähdä käynnistyslataajan\n"
+"komentokehoite."
# mat
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Osiointi epäonnistui: %s"
-
-#: ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s:n alustus %s:ta epäonnistui"
-
-#: ../../standalone/drakxtv:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "Canada (cable)"
-msgstr "Kanada (kaapeli)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Floppy creation completed"
-msgstr "Levykkeen luominen valmis"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Upgrade"
-msgstr "Päivitä"
+msgid "Insert a blank floppy in drive %s"
+msgstr "Aseta tyhjä levyke levykeasemaan %s"
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
-msgstr "Työasema"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
+msgstr "Valmistelen automaattiasennuslevykettä..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1289
msgid ""
-"Installing package %s\n"
-"%d%%"
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
msgstr ""
-"Asennan pakettia: %s\n"
-"%d%%"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
-msgstr "Kyrgyzstan"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "Monikäyttölaite USB:ssa"
+"Joitain vaiheita ei ole saatettu loppuun.\n"
+"\n"
+"Haluatko todella lopettaa?"
-#: ../../../move/move.pm:1
+#: ../../install_steps_interactive.pm_.c:1300
#, 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"
+"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"
-"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."
+"%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 ""
+"Onnittelut, asennus on valmis.\n"
+"Poista käynnistys media ja paina Enter käynnistääksesi koneen uudelleen.\n"
+"\n"
+"\n"
+"Löydät tähän Mandrake Linuxin versioon olemassaolevat korjaukset ja\n"
+"korjattujen virheiden listan osoitteesta:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Järjestelmän asettamisesta saat tietoja virallisen Linux Mandraken\n"
+"käyttäjäoppaan jälkiasennuskappaleesta."
-#: ../../help.pm:1
-#, c-format
-msgid "With basic documentation"
-msgstr "Perusdokumentaation kanssa"
+#: ../../install_steps_interactive.pm_.c:1313
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr "Anacron on ajoitettujen komentojen ajastaja."
+#: ../../install_steps_interactive.pm_.c:1318
+msgid "Generate auto install floppy"
+msgstr "Luo automaattista asennuslevykettä"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1320
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 `/'"
+"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 ""
-"Sinulla tulee olla juuriosio.\n"
-"Tätä varten luo osio (tai klikkaa olemassaolevaa).\n"
-"Valitse sitten toiminto ``Liitospiste'' ja aseta se arvoon `/'"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "Länsi-Sahara"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Välityspalvelimen tulee olla muotoa http://..."
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr "Etelä-Afrikka"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Syötä naha ulos varmistuksen jälkeen"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "Etherboot levyke/ISO"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Muokkaa tulostimen asetuksia"
+"Automaattinen asennus voi olla täysin automatisoitu,\n"
+"jos niin halutaan. Siinä tapauksessa asennus täyttää\n"
+"koko kiintolevyn! (tarkoitettu toisen koneen asentamiseksi),\n"
+"\n"
+"Ehkä haluat mieluummin toistaa asennuksen.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
-msgstr "Valitse osio"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
+msgstr "Automaattinen"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Edit current rule"
-msgstr "Muokkaa nykyistä sääntöä"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Replay"
+msgstr "Toista"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
-msgstr "%s"
+#: ../../install_steps_interactive.pm_.c:1328
+msgid "Save packages selection"
+msgstr "Yksittäisten pakettien valinta"
-#: ../../mouse.pm:1
+#: ../../install_steps_newt.pm_.c:20
#, c-format
-msgid "Please test the mouse"
-msgstr "Testaa hiiri"
+msgid "Mandrake Linux Installation %s"
+msgstr "Mandrake Linux Asennus %s"
-#: ../../fs.pm:1
-#, c-format
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
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)."
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-"Älä päivitä inoodien käyttöaikaa tässä tiedostojärjestelmässä\n"
-"(esim. nopeampaan uutisspoolin käyttöön nopeuttamaan uutispalvelimia)."
+" <Tab>/<Alt-Tab> vaihtaa elementtiä | <Space> valitsee | <F12> seuraava "
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3 näppäintä ja rullaemulaatio"
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
+msgstr "kdesu puuttuu"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Sticky-bit"
-msgstr "Tahmea-bitti"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
+msgstr "consolehelper puuttuu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other Media"
-msgstr "Muu media"
+#: ../../interactive.pm_.c:152
+msgid "Choose a file"
+msgstr "Valitse tiedosto"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
+msgstr "Lisäasetukset"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files"
-msgstr "Varmuuskopioi järjestelmätiedostot"
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
+msgstr "Perusasetukset"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Sector"
-msgstr "Sektori"
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
+msgstr "<- Edellinen"
-#: ../../lang.pm:1
-#, c-format
-msgid "Qatar"
-msgstr "Qatar"
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+msgid "Next"
+msgstr "Seuraava"
-#: ../../any.pm:1
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr "Huono valinta, yritä uudelleen\n"
+
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "LDAP Base dn"
-msgstr "LDAP perus-dn"
+msgid "Your choice? (default %s) "
+msgstr "Valintasi? (oletus %s) "
-#: ../../install_steps_gtk.pm:1
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
-"You can't select this package as there is not enough space left to install it"
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-"Et voi asentaa tätä pakettia, koska levyllä ei ole tarpeeksi tilaa sen "
-"asentamiseksi"
-
-#: ../../help.pm:1
-#, c-format
-msgid "generate auto-install floppy"
-msgstr "Luo automaattinen asennuslevyke"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr "Soittotila"
-
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr "Tiedostojen jako"
+"Kohdat, jotka sinun pitää täyttää:\n"
+"%s"
-#: ../../any.pm:1
+#: ../../interactive/stdio.pm_.c:70
#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "Tyhjennä /tmp jokaisella käynnistyskerralla"
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Valintasi? (0/1, oletus '%s') "
-#: ../../lang.pm:1
+#: ../../interactive/stdio.pm_.c:95
#, c-format
-msgid "Malawi"
-msgstr "Malawi"
+msgid "Button `%s': %s"
+msgstr "Painike '%s': %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: false"
-msgstr "paikallinen asetus: ei käytössä"
+#: ../../interactive/stdio.pm_.c:96
+msgid "Do you want to click on this button?"
+msgstr "Haluatko klikata tätä painiketta?"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "System settings"
-msgstr "Järjestelmäasetukset"
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
+msgstr " kirjoita 'void' jos haluat tyhjän tietueen"
-#: ../../install_steps_interactive.pm:1
+#: ../../interactive/stdio.pm_.c:105
#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Valitse hiiren tyyppi."
+msgid "Your choice? (default `%s'%s) "
+msgstr "Valintasi? (oletus '%s'%s) "
-#: ../../services.pm:1
+#: ../../interactive/stdio.pm_.c:123
#, c-format
-msgid "running"
-msgstr "käynnissä"
+msgid "=> There are many things to choose from (%s).\n"
+msgstr "=> On monta asiaa, joista valita (%s).\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "class of hardware device"
-msgstr "rautatason laiteluokka"
+#: ../../interactive/stdio.pm_.c:126
+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 ""
+"Valitse ensimmäinen numero 10-välistä, jota haluat muokata,\n"
+"tai paina vain Enter jatkaaksesi.\n"
+"Valintasi? "
-#: ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
-"Nämä ovat koneet ja verkot joissa paikallisesti liitetty tulostin pitäisi "
-"olla käytettävissä."
+"=> Huomaa, nimike vaihtui:\n"
+"%s"
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "Iso-Britannia"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
+msgstr "Lähetä uudelleen"
-#: ../../lang.pm:1
-#, c-format
-msgid "Indonesia"
-msgstr "Indonesia"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "Tsekki (QWERTZ)"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "oletus"
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "Saksa"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "France [SECAM]"
-msgstr "Ranska [SECAM]"
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Dvorak"
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "rajoita"
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "Espanja"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "must have"
-msgstr "pakollinen"
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "Suomi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS ei tue tulostimia, jotka ovat Novell-palvelimissa, tai jotka lähettävät "
-"dataa vapaamuotoiseen komentoon.\n"
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "Ranska"
-#: ../../lang.pm:1
-#, c-format
-msgid "Senegal"
-msgstr "Senegal"
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "Norja"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Command line"
-msgstr "Komentorivi"
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "Puola"
-#: ../advertising/08-store.pl:1
-#, 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:"
-msgstr ""
-"Täydellinen tuotelinjamme Linux-ratkaisuista, sekä erikoistarjouksia "
-"tuotteista ja muista \"herkuista\" on saatavilla online e-kaupastamme:"
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "Venäjä"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "March"
-msgstr "Maaliskuu"
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
+msgstr "Ruotsi"
-#: ../../any.pm:1
-#, c-format
-msgid "access to administrative files"
-msgstr "oikeudet ylläpidollisiin tiedostoihin"
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "UK näppäimistö"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
-msgstr ""
-"Virhe sendmail:in aikana.\n"
-" Raporttiviestiäsi ei lähetetty.\n"
-" Ole hyvä ja aseta sendmail"
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "US näppäimistö"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Do not allow set-user-identifier or set-group-identifier\n"
-"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
-"have suidperl(1) installed.)"
-msgstr ""
-"Älä salli aseta-käyttäjätunniste tai aseta-ryhmätunniste\n"
-"bittien vaikutusta. (Tämä vaikuttaa turvalliselta mutta on\n"
-"itse asiassa melko turvaton mikäli sinulla on suidperl(1)\n"
-"asennettuna.)"
+#: ../../keyboard.pm_.c:167
+msgid "Albanian"
+msgstr "Albaani"
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
-msgstr "Montserrat"
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
+msgstr "Armeenia (vanha)"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Automaattiset riippuvuudet"
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
+msgstr "Armeenia (kirjoituskone)"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "Sivutus"
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
+msgstr "Armeenia (foneettinen)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom settings"
-msgstr "Mukautetut asetukset"
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
+msgstr "Azerbaidjani"
-#: ../../../move/move.pm:1
-#, 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."
-msgstr ""
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "Belgia"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Other"
-msgstr "Palauta muut"
+#: ../../keyboard.pm_.c:178
+msgid "Bengali"
+msgstr "Bengali"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "TV-kortti"
+#: ../../keyboard.pm_.c:179
+msgid "Bulgarian (phonetic)"
+msgstr "Bulgaria (foneettinen)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Tulostin SMB/Windows 95/98/NT -palvelimella"
+#: ../../keyboard.pm_.c:180
+msgid "Bulgarian (BDS)"
+msgstr "Bulgaria (BDS)"
-# Asennuksen sivuvalikko
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_Aseta CUPS"
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
+msgstr "Brasilia"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
-msgstr ","
+#: ../../keyboard.pm_.c:184
+msgid "Bosnian"
+msgstr "Bosnia"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
-msgstr "Lähetä lspci"
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
+msgstr "Valkovenäjä"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Poista valittu kone/verkko"
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "Sveitsi (Saksalainen järjestys)"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix on sähköpostin siirtoagentti, eli ohjelma joka välittää postia "
-"koneelta toiselle."
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "Sveitsi (Ranskalainen järjestys)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "Uzbek (cyrillic)"
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "Tsekki (QWERTY)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Tässä voit valita näppäimen tai näppäinyhdistelmän joka sallii\n"
-"vaihtamisen eri näppäinkarttojen välillä (esim. latin ja ei-latin)"
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr "Saksa (ei kuolleita näppäimiä)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Verkon pikakytkentä (Hotplugging)"
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
+msgstr "Devanagari"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr "jos asetettu, raportoi tarkistuksen tulokset näytölle."
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "Tanska"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From CD"
-msgstr "Palauta CD-levyltä"
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Dvorak (US)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Olet aikeissa asettaa tietokoneesi jakamaan Internetyhteyden muiden koneiden "
-"kanssa.\n"
-"Tällä ominaisuudella muut paikallisverkossa olevat tietokoneet voivat "
-"käyttää tämän tietokoneen Internetyhteyttä.\n"
-"\n"
-"Varmista että olet määrittänyt verkkosi/Internetyhteytesi käyttämällä "
-"drakconnect:a ennen kuin jatkat.\n"
-"\n"
-"Huomaa: tarvitset erityisen verkkokortin pystyttääksesi oman paikallisverkon."
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Norja)"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr "Valitse mitä verkkokorteista haluat käyttää Internetiin liittymiseen"
+#: ../../keyboard.pm_.c:196
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (Ruotsi)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Kuva-muistikortin käyttö HP monitoimilaitteissasi"
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "Eesti"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
-msgstr ""
-"Kohota tietokoneesi suorituskykyä valittujen yrityksien avulla jotka "
-"tarjoavat ammattimaisia ratkaisuja jotka ovat yhteensopivia Mandrake "
-"Linuxin kanssa."
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Georgia (\"Venäläinen\"-järjestys)"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
-msgstr "Tekijät: "
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Georgia (\"Latin\"-järjestys)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Internetyhteyden jakaminen ei ole enää käytössä."
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "Kreikka"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr "jos asetettu, tarkistetaan 'suid/sgid' tiedostojen tarkistussumma."
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
+msgstr "Gujarati"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latin American"
-msgstr "Latinalainen Amerikka"
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
+msgstr "Gurmukhi"
-# Asennuksen sivuvalikko
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Japaninkielen tekstitulostustila"
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "Unkari"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Old device file"
-msgstr "Vanha laitetiedosto"
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "Kroatia"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "Tietoja: "
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
+msgstr "Israeli"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Painike '%s': %s"
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr "Israeli (Foneettinen)"
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Odota hetki"
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr "Iran"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr "Islanti"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "None"
-msgstr "Ei mitään"
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "Italia"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "Syötetty IP on virheellinen.\n"
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
+msgstr "Inuktitut"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Varmista että cron demoni sisältyy palveluihisi."
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
+msgstr "Japani 106-näppäiminen"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
-msgstr "Verkkokortti"
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
+msgstr "Korealainen näppäimistö"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete selected printer"
-msgstr "Poista valittu tulostin"
+#: ../../keyboard.pm_.c:218
+msgid "Latin American"
+msgstr "Latinalainen amerikka"
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "Tietoja"
+#: ../../keyboard.pm_.c:219
+msgid "Laotian"
+msgstr "Latvia"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "Asenna"
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
+msgstr "Liettua AZERTY (vanha)"
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Paina \"%s\" jos haluat tuhota kaiken tällä kiintolevyllä olevan\n"
-"tiedon sekä osiot. Ole varovainen, sillä painettuasi \"%s\"\n"
-"et voi enää palauttaa mitään tällä kiintolevyllä olleita tietoja ja "
-"osioita,\n"
-"mukaanlukien kaikki Windows-tiedostot.\n"
-"\n"
-"Paina \"%s\" keskeyttääksesi tämän toiminnon ilman että\n"
-"menetät mitään kiintolevyllä ollutta tietoa ja osioita."
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
+msgstr "Liettua AZERTY (uusi)"
-# Asennuksen sivuvalikko
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "Lopeta asennus"
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Liettua \"numerorivi\" QWERTY"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
-msgstr ""
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Liettua \"foneettinen\" QWERTY"
-#: ../../standalone/drakgw:1
-#, 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)."
-msgstr ""
-"Kaikki asetettu.\n"
-"Voit nyt jakaa Internetyhteyden muiden lähiverkon koneiden kanssa "
-"käyttämällä automaattista lähiverkon määrittelyä (DHCP)."
+#: ../../keyboard.pm_.c:225
+msgid "Latvian"
+msgstr "Latvia"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Ulkoinen CUPS-palvelin"
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Sun - Hiiri"
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
+msgstr "Makedonia"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Tietokoneessasi on vain yksi verkkokortti:\n"
-"\n"
-"%s\n"
-"\n"
-"Valmistaudun asettamaan lähiverkkosi asetukset kyseiselle laitteelle."
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
+msgstr "Myanmar"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
-msgstr "Lähetä cpuinfo"
+#: ../../keyboard.pm_.c:229
+msgid "Mongolian (cyrillic)"
+msgstr "Mongolia (cyrillic)"
-# Asennuksen sivuvalikko
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Minimal install"
-msgstr "Minimaalinen asennus"
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
+msgstr "Malta (UK)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "Etiopia"
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
+msgstr "Malta (US)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
-msgstr "KYLLÄ"
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
+msgstr "Hollanti"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
-msgstr "Salli \"crontab\" ja \"at\" käyttäjille"
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
+msgstr "Puola (qwerty järjestys)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr "Devanagari"
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
+msgstr "Puola (qwertz järjestys)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- pci-laitteet: tämä kertoo PCI-korttipaikan, laitteen sekä kortin "
-"toiminnon\n"
-"- eide laitteet: tämä laite on joko orja- tai isäntälaite\n"
-"- scsi laitteet: scsi-väylä sekä scsi-laitteiden id:t"
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
+msgstr "Portugali"
-# mat
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Koko yhteensä: %d / %d Mt"
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr "Kanada (Quebec)"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "disabled"
-msgstr "ei käytössä"
+#: ../../keyboard.pm_.c:239
+msgid "Romanian (qwertz)"
+msgstr "Romania (qwertz)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Search for new scanners"
-msgstr "Etsi uusia kuvanlukijoita ..."
+#: ../../keyboard.pm_.c:240
+msgid "Romanian (qwerty)"
+msgstr "Romania (qwerty)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Disabling servers..."
-msgstr "Poistan palvelut käytöstä..."
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "Venäjä (Yawerty)"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "%s:n asennus epäonnistui. Seuraava virhe tapahtui:"
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
+msgstr "Slovenia"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr "En voi suorittaa mkinitrd -f /boot/initrd-%s.img %s."
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "Slovakia (QWERTZ)"
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
-"Olet valinnut seuraavat palvelimet: %s\n"
-"\n"
-"\n"
-"Nämä palvelimet otetaan oletuksena käyttöön. Niissä ei ole tunnettuja \n"
-"turvallisuusaukkoja, mutta sellaisia voi löytyä ajan mittaan. Mikäli niin \n"
-"tapahtuu, sinun pitäisi päivittää kyseiset palvelimet niin nopeasti kuin \n"
-"suinkin mahdollista.\n"
-"\n"
-"\n"
-"Haluatko todella asentaa nämä palvelimet?\n"
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "Slovakia (QWERTY)"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Verkkotulostin (TCP/Socket)"
+#: ../../keyboard.pm_.c:248
+msgid "Serbian (cyrillic)"
+msgstr "Serbia (cyrillic)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup User files..."
-msgstr "Varmuuskopioi käyttäjätiedostot..."
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
+msgstr "Tamil (Unicode)"
-# Asennuksen sivuvalikko
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "Asenna järjestelmä"
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
+msgstr "Tamil (TSCII)"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Ensimmäinen nimipalvelin (ei pakollinen)"
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr "Thai-näppäimistö"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-"Vaihtoehtoisesti voit syöttää laitteen tai tiedoston nimen syöteriville"
+#: ../../keyboard.pm_.c:254
+msgid "Tajik keyboard"
+msgstr "Tajik-näppäimistö"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
-"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
-"symlink /etc/security/msec/server to point to\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
-"add a service if it is present in the file during the installation of\n"
-"packages."
-msgstr ""
-"Jos SERVER_LEVEL (tai SECURE_LEVEL sen puuttuessa) on\n"
-"korkeampi kuin 3 (kolme) tiedostossa '/etc/security/msec/security.conf',\n"
-"luodaan symlinkin '/etc/security/msec/server' :istä \n"
-"'/etc/security/msec/server.<SERVER_LEVEL>'\n"
-"\n"
-"'chkconfig --add' käyttää '/etc/security/msec/server' päättääkseen jos\n"
-"palvelu pitää asettaa vai ei asennuksen aikana."
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Turkki (perinteinen \"F\"-malli)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "Venäjä (Foneettinen)"
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Turkki (perinteinen \"Q\"-malli)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Config..."
-msgstr "dhcpd:n asetus..."
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr "Ukraina"
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "LILO/grub asennus"
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "US näppäimistö (kansainvälinen)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "Israel"
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vietnamilainen \"numerorivi\" QWERTY"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Tulostin \"%s\" palvelimella \"%s\""
+#: ../../keyboard.pm_.c:263
+msgid "Yugoslavian (latin)"
+msgstr "Jugoslavia (latin)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "Voit poistaa levykkeen nyt"
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
+msgstr "Oikea Alt näppäin"
-# Asennuksen sivuvalikko
-#: ../../help.pm:1
-#, c-format
-msgid "Truly minimal install"
-msgstr "Todella minimaalinen asennus"
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
+msgstr "Molemmat Shift näppäimet samanaikaisesti"
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "Tanska"
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
+msgstr "Control ja Shift näppäimet samanaikaisesti"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "Siirrän osiota..."
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
+msgstr "CapsLock näppäin"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "(This) DHCP Server IP"
-msgstr "(Tämän) DHCP-palvelimen IP-osoite"
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
+msgstr "Ctrl ja Alt näppäimet samanaikaisesti"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Test of the configuration"
-msgstr "Kokeile asetuksia"
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
+msgstr "Alt ja Shift näppäimet samanaikaisesti"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing %s ..."
-msgstr "Asennetaan %s ..."
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
+msgstr "\"Valikko\" näppäin"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Jos valitsit mahdollisuuden valita yksittäisiä paketteja, sinulle\n"
-"näytetään hakemistopuu, jossa kaikki paketit ovat luokiteltuina\n"
-"ryhmien ja alaryhmien mukaan. Kun selaat puuta, voit valita koko\n"
-"ryhmät, alaryhmät tai yksittäiset paketit.\n"
-"\n"
-"Kun valitset paketin hakemistopuussa, sen kuvaus näkyy oikean-\n"
-"puoleisessa ikkunassa, jotta tietäisit paketin tarkoituksen.\n"
-"\n"
-"!! Jos palvelinpaketti on valittu, joko tarkoituksella tai koska se kuului\n"
-"johonkin valitsemaasi ryhmään, sinulta pyydetään vahvistusta,\n"
-"haluatko varmasti asentaa palvelimen. Oletuksena Mandrake Linux\n"
-"käynnistää jokaisen asennetun palvelin koneen käynnistyksen\n"
-"yhteydessä. Vaikka ne ovat turvallisia eikä niillä ole tunnettuja\n"
-"ongelmia jakelun julkaisuajankohtana, niistä voi löytyä turvallisuus-\n"
-"reikiä jakelun valmistumisen jälkeen. Jos et tiedä mihin joku tietty\n"
-"palvelu on tarkoitettu, tai miksi sitä asennetaan, paina \"%s\". Jos\n"
-"painat \"%s\" listatut palvelut asennetaan sekä käynnistetään\n"
-"automaattisesti oletuksena koneen käynnistyksessä !!\n"
-"\n"
-"Optio \"%s\" estää virhedialogin\n"
-"joka ilmestyy joka kerta kun asennusohjelma automaattisesti\n"
-"valitsee paketin riippuvuuksien täyttämiseksi. Jotkut paketit sisältävät\n"
-"riippuvuuksia jotka vaativat että joku toinen paketti on jo asennettu\n"
-"ennen kuin se voidaan asentaa. Asennusohjelma osaa itse huolehtia\n"
-"siitä että nämä riippuvuudet on täytetty jotta asennus valmistuisi\n"
-"onnistuneesti.\n"
-"\n"
-"Listauksen alla olevalla levykkeen kuvakkeella voit hakea pakettilistan\n"
-"joka on luotu edellisessä asennuksessa. Tämä on hyödyllistä jos\n"
-"sinulla on monta konetta joihin haluat suorittaa samanlaisen asennuksen.\n"
-"Jos painat tätä kuvaketta, sinua pyydetään asettamaan levyke joka on\n"
-"luotu toisen asennuksen lopussa. Katso edellisen vaiheen toisesta\n"
-"vihjeestä, miten luot sellaisen levykkeen."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr "Valitse tiedostojärjestelmäsi salausavain"
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr "Vasen \"Windows\" näppäin"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
+msgstr "Oikea \"Windows\" näppäin"
-#: ../../lang.pm:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid "Botswana"
-msgstr "Botswana"
+msgid "Circular mounts %s\n"
+msgstr "Ympyrä-liitoksia %s\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Andorra"
-msgstr "Andorra"
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
+msgstr "Poista loogiset osiot ensin\n"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "(default value: %s)"
-msgstr "(oletusarvo: %s)"
+#: ../../modules.pm_.c:290
+msgid ""
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+msgstr "PCMCIA tuki ei enää löydy 2.2-sarjan ytimissä. Käytä 2.4 ydintä."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
-msgstr ""
-"Asettaa salasanojen vanhenemisen \"max\" päivään ja viiveen vaihtamiselle "
-"\"inactive\"."
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
+msgstr "Voit määrittää moduulin jokainen parametri täällä."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Vaihtoehtoinen testisivu (Letter)"
+#: ../../modules/parameters.pm_.c:18
+msgid "modinfo is not available"
+msgstr "modinfo ei ole käytettävissä"
-#: ../../standalone/drakgw:1
-#, c-format
-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 ""
-"DHCP-palvelimen asettaminen.\n"
-"\n"
-"Täältä voit valita erilaiset optiot DHCP-palvelimen asettamiseen.\n"
-"Jos et tiedä jonkun option tarkoitusta, jätä se oletusarvoonsa.\n"
-"\n"
+#: ../../modules/parameters.pm_.c:50
+msgid "a number"
+msgstr "numero"
-#: ../../Xconfig/card.pm:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "Choose an X server"
-msgstr "Valitse X-palvelin"
+msgid "%d comma separated numbers"
+msgstr "%d pilkulla erotettuja numeroita"
-#: ../../../move/tree/mdk_totem:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr ""
+msgid "%d comma separated strings"
+msgstr "%d pilkulla erotettuja merkkijonoja"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Sivutusosion koko Mt: "
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
+msgstr "pilkulla erotettuja numeroita"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No changes to backup!"
-msgstr "Ei varmistettavia muutoksia!"
+# Asennuksen sivuvalikko
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated strings"
+msgstr "pilkulla erotettuja merkkijonoja"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "Alustettu\n"
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - Hiiri"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Type of install"
-msgstr "Asennuksen tyyppi"
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Tulostin \"%s\" SMB/Windows palvelimella \"%s\""
+#: ../../mouse.pm_.c:33
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Yleinen PS2 rullahiiri"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d pilkulla erotettuja numeroita"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Rusers-protokolla antaa verkon käyttäjille mahdollisuuden\n"
-"tunnistaa, ketkä ovat kirjautuneina eri koneissa."
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Automaattisten vaiheiden asetus"
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "Barbados"
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
-msgstr ""
-"Haluatko tietää enemmän Avoimen Lähdekoodin yhteisöstä? Tule osalliseksi "
-"Vapaan Ohjelmiston maailmaan!"
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+msgid "Microsoft Explorer"
+msgstr "Microsoft Explorer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Valitse varmuuskopioitava tieto..."
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
+msgstr "1 näppäin"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
-msgstr ""
-"Yhteys epäonnistui.\n"
-"Tarkista asetukset Mandraken Ohjauskeskuksessa."
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "Yleinen 2-näppäinen hiiri"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
-msgstr "vastaanotettu"
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "Rulla"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
-msgstr ""
-"Salli 'su' vain 'wheel' ryhmään kuuluville jäsenille, tai salli komento "
-"kaikille"
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "sarja"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
-msgstr "/Tiedosto/_Uusi"
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "Yleinen 3-näppäinen hiiri"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DNS Server IP"
-msgstr "DNS-palvelimen IP-osoite"
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range End:"
-msgstr "IP-alueen loppu:"
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
-msgstr "Korkea"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add a new printer to the system"
-msgstr "Lisää uusi tulostin järjestelmään"
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr "Ei näyttöä"
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
-msgstr "Tämä kenttä kuvaa laitteen"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "MM Series"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Lisätään tulostin Star Office/OpenOffice.org/GIMP käyttöön."
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printers"
-msgstr "Paikalliset tulostimet"
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (sarja, vanha C7 tyyppi)"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation image directory"
-msgstr "Asennus-kuvatiedoston hakemisto"
+#: ../../mouse.pm_.c:68
+msgid "busmouse"
+msgstr "väylähiiri"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "NIS-palvelin"
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "2 näppäintä"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Port: %s"
-msgstr "Portti: %s"
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "3 näppäintä"
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "Espanja"
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "ei mikään"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
-msgstr "paikallinen asetus: %s"
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "Ei hiirtä"
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "Käyttäjätunnus on jo lisätty"
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
+msgstr "Testaa hiiri"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
-msgstr "Valitse tiedosto"
+#: ../../mouse.pm_.c:491
+msgid "To activate the mouse,"
+msgstr "Aktivoidaksesi hiiren,"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr "Toteuta"
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr "PYÖRITÄ HIIREN RULLAA!"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Porttien automaattitunnistus"
+#: ../../my_gtk.pm_.c:65
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr "San Marino"
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
+msgstr "Loppu"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Internetyhteyden jakaminen ei ole käytössä"
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
+msgstr "Seuraava ->"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Belgium"
-msgstr "Belgia"
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "Onko tämä oikein?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
-msgstr "Kuwait"
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "Tietoja"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "Valitse käytettävä ikkunointijärjestelmä:"
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
+msgstr "Laajenna puu"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
-msgstr "Joulukuu"
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
+msgstr "Sulje puu"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "Prosessorin alasukupolvi"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr "Vaihda tasaisen ja ryhmäjärjestyksen välillä"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
-msgstr "Aloittelija-velho"
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "käytä pppoe"
-#: ../../lang.pm:1
-#, c-format
-msgid "Taiwan"
-msgstr "Taiwan"
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
+msgstr "käytä pptp"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "Pakistan"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
+msgstr "käytä dhpc"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "odota hetki, jäsennän tiedostoa: %s"
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
+msgstr "Alcatel speedtouch usb"
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
msgstr ""
-"Tapahtui virhe, eikä sitä ei voida käsitellä kunnolla.\n"
-"Jatka omalla vastuullasi."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Importance: "
-msgstr "Tärkeys: "
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
+msgstr "Yhdistä Internettiin"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:30
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."
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-"Voidaksesi tulostaa Lexmark Inkjet tulostimellasi näillä asetuksilla, "
-"tarvitset Lexmark:in tuottamat ajurit (http://www.lexmark.com/). Paina "
-"\"Drivers\" linkki. Valitse sen jälkeen tulostinmallisi ja \"Linux\" "
-"käyttöjärjestelmä. Ajurit tulevat RPM-pakettina tai komentoskripteinä "
-"interaktiivisella graafisella asennuksella. Sinun ei tarvitse asettaa "
-"tulostinta graafisella käyttöliittymällä. Peruuta heti lisenssisopimuksen "
-"jälkeen. Sitten voit tulostaa tulostinpäiden kohdistussivut \"lexmarkmaintain"
-"\" ohjelmalla ja säätää kohdistusasetukset kohdalleen."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Permissions"
-msgstr "Oikeudet"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Palveluntarjoajan nimi (esim.: tarjoaja.fi)"
+"Yleisin tapa liittyä adsl-verkkoon on käyttää pppoe:a.\n"
+"Jotkin yhteydet käyttävät pptp:tä, muutamat dhcp:tä.\n"
+"Jos et tiedä, mitä valita, valitse 'käytä pppoe'"
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:166
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'."
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-"Järjestelmäsi resurssit ovat lopussa. Voit kohdata ongelmia Mandrake Linuxia "
-"asentaessasi.\n"
-"Jos näin tapahtuu, voit kokeilla tekstipohjaista asennusta. Tehdäksesi niin "
-"paina `F1' kun\n"
-"käynnistät asennusohjelmaa CD-ROM:lta. Tämän jälkeen kirjoita `text'."
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "Käytä Windows-osiota loopback-tiedostona"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
-msgstr "Armeenia (kirjoituskone)"
-
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection type: "
-msgstr "Yhteyden nimi: "
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Graphical interface"
-msgstr "Graafinen käyttöliittymä"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "Tsad"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "Intia"
-
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s laitteistokiihdytetyllä 3D-tuella"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr "Slovakia"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "Singapore"
+"Tarvitset alcarel:in mikrokoodin.\n"
+"Voit hakea sitä osoitteesta: \n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"ja kopioi tiedosto 'mgmt.o' hakemistoon '/usr/share/speedtouch'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "Kambodza"
+#: ../../network/drakfirewall.pm_.c:12
+msgid "Web Server"
+msgstr "Webbi Palvelin"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Näytön vaakajuovataajuus: %s\n"
+#: ../../network/drakfirewall.pm_.c:17
+msgid "Domain Name Server"
+msgstr "Verkkoalue Nimipalvelin (DNS)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr "Polku"
+#: ../../network/drakfirewall.pm_.c:32
+msgid "Mail Server"
+msgstr "Sähköposti Palvelin"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
-msgstr "EI LÖYTYNYT"
+#: ../../network/drakfirewall.pm_.c:37
+msgid "POP and IMAP Server"
+msgstr "POP ja IMAP Palvelin"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
-msgstr ""
-"Täällä voit määrittää haluamasi komentorivin johon tulostustyö putkitetaan "
-"suoraan tulostimelle lähettämisen sijasta"
+#: ../../network/drakfirewall.pm_.c:111
+msgid "No network card"
+msgstr "Ei verkkokorttia"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:129
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"
+"drakfirewall configurator\n"
"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"Tulostusjärjestelmää (%s) ei käynnistetä automaattisesti kun kone "
-"käynnistetään.\n"
-"\n"
-"On mahdollista että automaattikäynnistys on poistettu käytöstä "
-"turvallisuustason nostamisen takia, koska tulostusjärjestelmä on mahdollinen "
-"hyökkäyskohta.\n"
+"drakfirewall asetustyökalu\n"
"\n"
-"Haluatko ottaa uudestaan käyttöön tulostusjärjestelmän "
-"automaattikäynnistyksen?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr ""
-"Tulostin %s\n"
-"Mitä haluat muokata tästä tulostimesta?"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add host"
-msgstr "Lisää kone"
+"Tämä asettaa henkilökohtaisen palomuurin tähän Mandrake Linux koneeseen.\n"
+"Jos haluat vahvaan omistetun palomuuri-ratkaisun ,voit katsoa erikoistettua\n"
+"MandrakeSecurity Firewall jakelua."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:135
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"
+"drakfirewall configurator\n"
"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-"Jos todellakin uskot tietäväsi mikä ajuri on oikea äänikortillesi \n"
-"voit valita yhden yllä olevasta listasta.\n"
+"drakfirewall asetustyökalu\n"
"\n"
-"Nykyinen ajuri äänikortillesi \"%s\" on \"%s\" "
+"Varmista että olet märittänyt verkkosi/Internetyhteytesi käyttämällä\n"
+"drakconnect ennen kuin jatkat."
-#: ../../any.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr "Mitkä palvelut haluat sallia olla käytettävissä Internet:istä."
+
+#: ../../network/drakfirewall.pm_.c:153
msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
-"\n"
-"\"Custom\" permit a per-user granularity.\n"
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-"Haluatko sallia käyttäjien jakaa joitakin omia hakemistoja?\n"
-"Sallimalla tämän käyttäjien tarvitsee vain painaa \"Jakaa\"\n"
-"Konquerorissa tai Nautiluksessa\n"
-"\n"
-"\"Mukautettu\" sallii käyttäjäkohtaiset oikeudet.\n"
+"Voit syöttää sekalaiset portit.\n"
+"Toimivat esimerkit ovat: 139/tcp 139/udp.\n"
+"Katso /etc/services saadaaksesi lisäätietoa."
-#: ../../install_steps_interactive.pm:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-"Lataa tai tallenna pakettien valinta levykkeelle.\n"
-"Muoto on sama kuin auto_install-toiminnon luomilla levykkeillä."
-
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "No CDROM support"
-msgstr "Radiotuki:"
+"Virheellinen porti annettu: %s.\n"
+"Oikea muoto on \"portti/tcp\" tai \"portti/udp\",\n"
+"jossa portti on 1 ja 65535 välillä."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "China (broadcast)"
-msgstr "Kiina (bcast)"
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
+msgstr "Kaikki (ei palomuuria)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use quota for backup files."
-msgstr "Käytä quotaa varmuuskopiotiedostoille."
+#: ../../network/drakfirewall.pm_.c:169
+msgid "Other ports"
+msgstr "Muut portit"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Asetetaan tulostinta \"%s\" ..."
+#: ../../network/ethernet.pm_.c:37
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
+msgstr ""
+"Mitä dhcp-asiakasohjelmaa haluat käyttää?\n"
+"Oletus on dhcp-client"
-#: ../../fs.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:88
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."
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-"Älä salli minkään binääritiedoston suoritusta tiedosto-\n"
-"järjestelmässä. Tämä optio saattaa olla hyödyllinen\n"
-"palvelimelle jonka tiedostojärjestelmässä on binäärejä\n"
-"muille kuin omalle arkkitehtuurille."
+"Ethernet-verkkokorttia ei löytynyt järjestelmästä.\n"
+"En voi asentaa tämän tyyppistä yhteyttä."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection"
-msgstr "Internetyhteys"
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
+msgstr "Valitse verkkoliittymä"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:93
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Moduulin %s lataaminen epäonnistui.\n"
-"Haluatko yrittää muilla asetuksilla?"
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "Valitse mitä verkkokorteista haluat käyttää internetiin liittymiseen"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr "Tervetuloa Avoimen Lähdekoodin maailmaan"
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "yhtäkään verkkokorttia ei löytynyt"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnia ja Herzegovina"
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "Asetan verkkoa"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:201
msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
-"Tarvitset oikean tiedostojärjestelmän (ext2/ext3, ReiserFS, XFS tai JFS) "
-"tälle liitospisteelle.\n"
+"Syötä koneesi nimi, jos tiedät sen.\n"
+"Jotkin DHCP-palvelimet tarvitsevat koneen nimen toimiakseen.\n"
+"Koneesi nimen pitäisi olla täysin laillinen nimi, kuten\n"
+"\" minunkone.omapaikka.net\"."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Sinun pitää syöttää verkkoaseman nimi tai IP-osoite.\n"
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "Koneen nimi"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "Alankomaat"
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+msgid "Network Configuration Wizard"
+msgstr "Verkkoasetusten Velho"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Lähetän tiedostoja FTP:n kautta"
+#: ../../network/isdn.pm_.c:22
+msgid "External ISDN modem"
+msgstr "Ulkoinen ISDN-modeemi"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
msgstr "Sisäinen ISDN-kortti"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
+msgstr "Minkälainen ISDN-yhteytesi on?"
+
+#: ../../network/isdn.pm_.c:45
msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
msgstr ""
-"Tunnettua vaihtoehtoista OSS/ALSA ajuria äänikortillesi (%s), joka tällä "
-"hetkellä käyttää \"%s\", ei ole"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Title"
-msgstr "Nimike"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Asenna & muunna kirjasimia"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
-msgstr "VAROITUS"
+"Mitä ISDN-asetuksia haluat käyttää?\n"
+"\n"
+"* Vanha asetusjärjestelmä käyttää isdn4net:iä. Se sisältää tehokkaat\n"
+" työkalut, mutta on vaikea asettaa, eikä se ole standardi.\n"
+"\n"
+"* Uusi asetusjärjestelmä on helpompi ymmärtää, enemmän käytössä,\n"
+" mutta se sisältää vähemmän työkaluja.\n"
+"\n"
+"Suositus on käyttää uutta ja kevyempää asetusjärjestelmää.\n"
-# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
-msgstr "Asennan käyttöjärjestelmän lataajaa"
+#: ../../network/isdn.pm_.c:54
+msgid "New configuration (isdn-light)"
+msgstr "Uusi kokoonpano (isdn-kevyt)"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "replay"
-msgstr "toista"
+#: ../../network/isdn.pm_.c:54
+msgid "Old configuration (isdn4net)"
+msgstr "Vanha kokoonpano (isdn4net)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
-msgstr "löydetty %s"
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "ISDN asetus"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/isdn.pm_.c:166
msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
-"Expect on Tcl script kielen laajennus joka sallii interaktiiviset sessiot "
-"vaatimatta ktoimenpiteitä käyttäjiltä."
+"Valitse palveluntarjoajasi.\n"
+" Jos se ei ole listassa, valitse `Ei listattu'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr "Yhdysvaltain Neitsytsaaret"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol"
+msgstr "Eurooppalainen protokolla"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "Huono varmuuskopiotiedosto"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol (EDSS1)"
+msgstr "Eurooppalainen protokolla (EDSS1)"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/isdn.pm_.c:181
+msgid "Protocol for the rest of the world"
+msgstr "Muun maailman käyttämä protokolla"
+
+#: ../../network/isdn.pm_.c:181
msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
-"Internetyhteyden jakaminen on jo asetettu.\n"
-"Sen nykyinen tila on: ei käytössä\n"
-"\n"
-"Mitä haluat tehdä?"
+"Muun maailman käyttämä protokolla \n"
+" ei D-kanavaa (vuokra-linjat)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr "Syötä sen koneen IP-osoite ja portti jonka tulostimia haluat käyttää."
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
+msgstr "Mitä protokollaa haluat käyttää?"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid "Pipe into command"
-msgstr "Putkita työ komennolle"
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr "Löysin \"%s\" rajapintaa, haluatko käyttää sitä?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Jokin osa laitteistoasi tarvitsee laitteistovalmistajan ajurit toimiakseen "
-"kunnolla.\n"
-"Voit löytää lisätietoja edellä mainituista täältä: %s"
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
+msgstr "Millainen kortti sinulla on?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "Haiti"
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
+msgstr "En tiedä"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "Etsin laitteita...."
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"Mukautettu sallii sinua määrittämään oma päivä ja aika. Muut optiot "
-"käyttävät run-parts tiedostossa /etc/crontab."
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/isdn.pm_.c:210
msgid ""
-"Description of the fields:\n"
"\n"
-msgstr "Kenttien kuvaus:\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
+msgstr ""
+"\n"
+"Jos sinulla on ISA-kortti, seuraavien arvojen pitäisi olla oikeat.\n"
+"\n"
+"Jos sinulla on PCMCIA-kortti sinun täytyy tietää korttisi \"IRQ\" ja \"IO"
+"\".\n"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Basic options"
-msgstr "Perusoptiot"
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "Hylkää"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
-msgstr "Prosessorin nimi (CPU)"
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
+msgstr "Jatka"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr "Hyväksy virheelliset IPv4 virheviestit"
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
+msgstr "Mikä ISDN-kortti sinulla on?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Päivitetään tulostintietoja..."
+#: ../../network/isdn.pm_.c:239
+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 ""
+"Olen havainnut ISDN PCI-kortin, mutta en tunnista tyyppiä. Valitse yksi "
+"seuraavassa ruudussa olevista korteista."
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr "Sinun täytyy myös alustaa %s"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "ISDN PCI-korttia ei löydetty. Valitse yksi seuraavasta ruudusta."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "Varo: tämä on vaarallinen toiminto"
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Valitse sarjaportti, johon modeemisi on kytketty."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "Aseta levyke, jossa on pakettien valinta"
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "Soittoasetukset"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server: "
-msgstr "Palvelin: "
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr "Yhteyden nimi"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Alerts:"
-msgstr "Turvavaroitukset:"
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
+msgstr "Puhelinnumero"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
-msgstr "Ruotsi"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "Käyttäjä ID"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Käytä Expect SSH:lle"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr "CHAP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "Puola"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Other ports"
-msgstr "Muut portit"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "Script-pohjainen"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "mmap-kaappauspuskurien määrä:"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "Terminaalipohjainen"
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid " - detected"
-msgstr "löydetty"
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "Verkkoalueen nimi"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr "SMBus-ohjaimet"
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+msgid "First DNS Server (optional)"
+msgstr "Ensimmäinen nimipalvelin (ei pakollinen)"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Yhteyden aikaraja (sekunneissa)"
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+msgid "Second DNS Server (optional)"
+msgstr "Toinen nimipalvelin (ei pakollinen)"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/modem.pm_.c:95
msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-"Jotkut aikaisimmista i486DX-100 prosessoreista eivät osaa luotettavasti "
-"palata käyttötilaan \"halt\" käskyn jälkeen"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Croatian"
-msgstr "Kroatia"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Use existing partition"
-msgstr "Käytä olemassa olevia osioita"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "En saa yhteyttä peilipalvelimeen %s"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Ohje/_Tietoja..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Poista käyttäjien hakemistot ennen palauttamista."
+"Modeemisi ei ole tuettu tässä järjestelmässä.\n"
+"Katso osoitteesta http://www.linmodems.org/"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/modem.pm_.c:97
#, 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?"
+"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
-"Olet asettamassa etätulostinta. Tämä vaatii toimivan verkkoyhteyden, mutta "
-"verkkosi ei ole vielä määritetty. Mikäli jatkat ilman verkkoasetusta, et voi "
-"käyttää tulostinta jota olet nyt asettamassa. Miten haluat jatkaa?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "CUPS tulostus asetukset"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr "liitetyiltä osioilta ei löytynyt ainoatakaan kirjasinta"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
-msgstr "F00F virhe"
-
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Domain Name:"
-msgstr "Verkkoalueen nimi:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Root umask"
-msgstr "Pääkäyttäjän umask"
-
-#: ../../any.pm:1
-#, c-format
-msgid "On Floppy"
-msgstr "Levykkeellä"
+"\"%s\" perustuva winmodeemi tunnistettu, haluatko asentaa tarvittavat "
+"ohjelmistot?"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reboot by the console user"
-msgstr "Uudelleenkäynnistys konsolikäyttäjällä"
+#: ../../network/modem.pm_.c:97
+msgid "Do nothing"
+msgstr "Jätä tekemättä"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore"
-msgstr "Palauta"
+#: ../../network/modem.pm_.c:97
+msgid "Install rpm"
+msgstr "Asenna rpm"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Server:"
-msgstr "Palvelin: "
+#: ../../network/modem.pm_.c:97
+msgid "Title"
+msgstr "Titteli"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
+#: ../../network/netconnect.pm_.c:29
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-"jos asetettu, tarkistetaan ovatko verkkolaitteet 'promiscuous' tilassa."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Etsin saatavilla olevia paketteja..."
-
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Odota hetki, asetetaan turvatasoa..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
-msgstr "Käynnistysviesti"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "Pelasta osiotaulu"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "Kypros"
+"\n"
+"Voit joko katkaista yhteyden tai asettaa sen uudelleen."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection complete."
-msgstr "Yhteys valmis."
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr ""
+"\n"
+"Voit asettaa yhteytesi uudelleen."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "Poista RAID:sta"
+#: ../../network/netconnect.pm_.c:29
+msgid "You are currently connected to internet."
+msgstr "Olet parasta aikaa yhteydessä internettiin."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
+#: ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
msgstr ""
-"Salausavain on liian yksinkertainen (sen pitää olla ainakin %d merkkiä pitkä)"
+"\n"
+"Voit joko ottaa yhteyden internettiin tai asettaa yhteyden uudelleen."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Asetusvelhot"
+#: ../../network/netconnect.pm_.c:32
+msgid "You are not currently connected to Internet."
+msgstr "Et ole juuri nyt yhteydessä internettiin."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN-yhteys"
+#: ../../network/netconnect.pm_.c:36
+msgid "Connect"
+msgstr "Yhdistä"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CDROM / DVDROM"
+#: ../../network/netconnect.pm_.c:37
+msgid "Disconnect"
+msgstr "Katkaise yhteys"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
-msgstr "ensisijainen"
+# Asennuksen sivuvalikko
+#: ../../network/netconnect.pm_.c:38
+msgid "Configure the connection"
+msgstr "Aseta verkkoyhteys"
-#: ../../printer/main.pm:1
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
+msgstr "Internetyhteyden muodostus ja asetukset"
+
+#: ../../network/netconnect.pm_.c:94
#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr " SMB/Windows-palvelimella \"%s\", jako \"%s\""
+msgid "We are now going to configure the %s connection."
+msgstr "Asetamme seuraavaksi %s-yhteyden."
-#: ../../help.pm:1
+#: ../../network/netconnect.pm_.c:103
#, 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"
-"!!"
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press OK to continue."
msgstr ""
-"Voit nyt valita mitkä palvelut haluat käynnistää konetta käynnistettäessä.\n"
"\n"
-"DrakX listaa kaikki palvelut, jotka löytyvät nykyisestä asennuksesta.\n"
-"Käy lista läpi huolellisesti ja poista kaikki ne palvelut, joita ei tarvita\n"
-"jokaisella käynnistyskerralla.\n"
"\n"
-"Saat kustakin palvelusta lyhyen kuvaustekstin valitsemalla sen. Jos et\n"
-"kuitenkaan ole varma palvelun hyödyllisyydestä, on yleensä varmempaa\n"
-"jättää se oletusarvoiseksi.\n"
"\n"
-"!! Tässä vaiheessa sinun pitää olla erityisen huolellinen, jos aiot käyttää\n"
-"konettasi palvelimena: et varmaankaan halua käynnistää niitä palveluita,\n"
-"joita et tarvitse. Muista myös, että jotkin palvelut voivat olla "
-"vaarallisia, jos\n"
-"ne ovat aktivoituja palvelimessa. Yleensä kannattaa valita vain ne "
-"palvelut,\n"
-"joita todella tarvitaan !!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niue"
-msgstr "Niue"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "Ohita"
+"Asetamme seuraavaksi %s-yhteyden.\n"
+"\n"
+"\n"
+"Paina Ok jatkaaksesi."
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Aktivoi/Poistaa kaikki verkkoliittymät jotka on asetettu\n"
-"käynnistyksessä."
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr "Verkon asetukset"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/netconnect.pm_.c:133
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)"
+"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 ""
-"Prosessorin taajuus MHz:inä (Megahertziä voidaan ensisilmäyksellä karkeasti "
-"verrata tehtävien määrään jotka prosessori suorittaa sekunnissa)"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "important"
-msgstr "tärkeä"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "Mandrake Linux Tulostuksen Hallintatyökalu"
+"Koska asennat käyttöjärjestelmää verkon yli, verkkon asetukset ovat jo "
+"tehty.\n"
+"Paina Ok säilyttääksesi nykyiset asetukset tai peruuta asettaaksesi "
+"internet- ja verkkoasetukset uudelleen.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
-msgstr "Kokonaisedistyminen"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:157
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"
+"Welcome to The Network Configuration Wizard.\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."
+"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 ""
-"Aluksi DrakX tunnistaa kaikki IDE-laitteet, jotka on kytketty "
-"järjestelmääsi.\n"
-"Samalla myös tutkitaan löytyykö järjestelmästä PCI SCSI -ohjaimia. Jos\n"
-"SCSI-ohjain löytyy, asentaa DrakX tarvittavat ajurit.\n"
-"\n"
-"Koska laitteiston tunnistaminen ei ole idiootinvarma, DrakX voi\n"
-"epäonnistua. Siinä tapauksessa joudut määrittämään laitteistosi\n"
-"itse.\n"
-"\n"
-"Jos sinun pitää määrittää PCI SCSI -ohjaintasi, DrakX kysyy sinulta\n"
-"haluatko määrittää ohjaimen asetuksia. Ehdotamme että sallit DrakX:n\n"
-"tunnistaa tarvittavat asetukset laitteiston alustamiseen. Yleensä DrakX\n"
-"suorittaa tämän toiminnon ongelmitta.\n"
+"Tervetuloa verkon asettamisvelhoon\n"
"\n"
-"Jos DrakX ei pystykään tunnistamaan tarvittavia asetuksia joilla ohjain\n"
-"pitää alustaa, joudut itse syöttämään ne ajurille."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr "Aruba"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "Käyttäjät"
+"Seuraavassa vaiheessa määritellään sinun internet- / verkkoasetukset.\n"
+"Jos et halua käyttää automaattista tunnistusta, poista kyseinen valinta.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Valmistelen käyttöjärjestelmän lataajaa..."
+#: ../../network/netconnect.pm_.c:163
+msgid "Choose the profile to configure"
+msgstr "Valitse profiili jonka haluat asettaa"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
+msgstr "Käytä automaattista tunnistusta"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Yhdyskäytävä (esim. %s)"
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
+msgstr "Asiantuntijatila"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
-msgstr "Salasanat poikkeavat toisistaan"
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
+msgstr "Etsin laitteita...."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Esimerkkejä oikeista IP-osoitteista:\n"
+#: ../../network/netconnect.pm_.c:214
+msgid "Normal modem connection"
+msgstr "Tavallinen modeemiyhteys"
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm_.c:214
#, c-format
-msgid "Please choose the media for backup."
-msgstr "Valitse varmuuskopiointiin käytettävä media."
+msgid "detected on port %s"
+msgstr "löydetty portista %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Taajuus (MHz)"
+#: ../../network/netconnect.pm_.c:215
+msgid "Winmodem connection"
+msgstr "Winmodeemi-yhteys"
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Käyttääksesi tätä \"tallennetut paketit\" valintaa, käynnistä asennus "
-"optiolla \"linux defcfg=floppy\""
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+msgid "detected"
+msgstr "löydetty"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of the processor"
-msgstr "prosessorin numero"
+#: ../../network/netconnect.pm_.c:216
+msgid "ISDN connection"
+msgstr "ISDN-yhteys"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Laitteistokello asetettu GMT-aikaan"
+msgid "detected %s"
+msgstr "löydetty %s"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "Haluatko aloittaa uuden asetuksen?"
+#: ../../network/netconnect.pm_.c:217
+msgid "ADSL connection"
+msgstr "ADSL-yhteys"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Give a file name"
-msgstr "Anna tiedostonimi"
+#: ../../network/netconnect.pm_.c:218
+msgid "Cable connection"
+msgstr "Kaapeliyhteys"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Valitse portti, johon tulostimesi on kytketty."
+#: ../../network/netconnect.pm_.c:218
+msgid "cable connection detected"
+msgstr "Kaapeliyhteys havaittu"
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "Vaihda CD-levyä"
+#: ../../network/netconnect.pm_.c:219
+msgid "LAN connection"
+msgstr "Lähiverkko"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "Paraguay"
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
+msgstr "seuraavat ethernet-verkkokortit löydetty"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "Asetukset ovat tehty, haluatko ottaa ne käyttöön ?"
+#: ../../network/netconnect.pm_.c:222
+msgid "Choose the connection you want to configure"
+msgstr "Valitse yhteys, jonka haluat asettaa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
+#: ../../network/netconnect.pm_.c:246
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
-"Käytä asteittaiset/erotus varmuuskopioita (älä korvaa vanhoja "
-"varmuuskopioita)"
+"Olet asettanut useita eri tapoja ottaa yhteys internetiin.\n"
+"Valitse se, jota haluat käyttää.\n"
+"\n"
-#: ../../standalone/drakTermServ:1
-#, 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:"
-msgstr ""
-" - Ylläpidä /etc/dhcpd.conf:\n"
-" \t\tVerkkokäynnistystä käyttävät asiakkaat tarvitsevat oman dhcpd."
-"conf tietueen,\n"
-" \t\tjoka määrää IP-osoitteen ja verkkokäynnistyskuvan kyseiselle "
-"koneelle.\n"
-" \t\tdrakTermServ auttaa näiden tietueiden luomisessa/poistamisessa.\n"
-"\t\t\t\n"
-" \t\t(PCI-kortit voivat jättää kuvan asettamatta - etherboot pyytää "
-"oikean kuvan.\n"
-" \t\tSinun kannattaisi myös harkita sitä että kun etherboot etsii "
-"kuvia, se\n"
-" \t\todottaa nimiä kuten boot-3c59x.nbi, boot-3c59x.2.4.1-16mdk.nbi "
-"sijasta).\n"
-"\t\t\t \n"
-" \t\tTyypillinen dhcpd.conf tietue levyttömälle asiakkaalle voi olla:"
+#: ../../network/netconnect.pm_.c:247
+msgid "Internet connection"
+msgstr "Internetyhteys"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr "Ei tunnettua ajuria äänikortillesi (%s)"
+#: ../../network/netconnect.pm_.c:253
+msgid "Do you want to start the connection at boot?"
+msgstr "Haluatko ottaa yhteyden koneen käynnistyksen yhteydessä?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "force"
-msgstr "pakota"
+#: ../../network/netconnect.pm_.c:267
+msgid "Network configuration"
+msgstr "Verkon asetukset"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Exit"
-msgstr "Poistu"
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
+msgstr "Verkko pitää käynnistää uudelleen"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/netconnect.pm_.c:272
#, c-format
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
msgstr ""
-"HUOM: Tulostinmallista ja tulostusjärjestelmästä riippuen asennetaan jopa %d "
-"Mt tarvittavia lisäohjelmia"
+"Ongelma käynnistettäessä verkkoa uudelleen: \n"
+"\n"
+"%s"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../network/netconnect.pm_.c:282
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
-"Sinulla ei ole ainoatakaan asetettua liityntää.\n"
-"Aseta ne ensin klikkaamalla 'Aseta'"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "Eesti"
+"Onnittelut, verkko- ja internetyhteyksien asetus on valmis.\n"
+"\n"
+"Asetukset tulevat käyttöön myös itse järjestelmässä.\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:286
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
-"Apache on WWW-palvelin. Palvelinta käytetään jakamaan HTML-\n"
-"tiedostoja ja ajamaan CGI-ohjelmia."
+"Kun tämä on tehty, suosittelemme käynnistämään X-ympäristön\n"
+"uudelleen välttääksesi järjestelmän nimen vaihdoksesta tulevat ongelmat."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/netconnect.pm_.c:287
msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
+"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 ""
-"Syötä kirjoittavan CD-asemasi laitenimi\n"
-" esim: 0,1,0"
+"Ongelmia asettamisen aikana.\n"
+"Testaa yhteytesi net_monitor- tai mcc-työkalulla. Jos yhteytesi ei toimi, "
+"voit käynnistää asetustyökalun uudelleen"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ALL"
-msgstr "KAIKKI"
+#: ../../network/network.pm_.c:278
+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 ""
+"VAROITUS: Tämä laite on aikaisemmin määritelty internetyhteyden ottoon.\n"
+"Hyväksy, jos haluat pitää laitteen asetukset sellaisina, kun ne olivat.\n"
+"Alla olevien kohtien muokkaaminen korvaa voimassa olevat asetukset."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Lisää/Poista asiakkaita"
+#: ../../network/network.pm_.c:283
+msgid ""
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
+msgstr ""
+"Anna koneen IP-asetukset. Kukin kohta tulee syöttää IP-osoitteena,\n"
+"pisteillä eroteltuna nelinumeroisena lukuna (esim. 1.2.3.4)."
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "Choose the network interface"
-msgstr "Valitse verkkoliitäntä"
+msgid "Configuring network device %s"
+msgstr "Asetan verkkolaitetta %s"
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../network/network.pm_.c:294
#, c-format
-msgid "Unknown Model"
-msgstr "Tuntematon malli"
+msgid " (driver %s)"
+msgstr " (ajuri %s)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
-msgstr "CD/DVD polttoasemat"
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "IP-osoite"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Osiolta käynnistetään oletuksena\n"
-" (MS-DOS käynnistys, ei LILO)\n"
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr "Verkkopeite"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Salli \"%s\" lukuoikeudet tiedostolle"
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image"
-msgstr "valitse kuva"
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "Automaattinen IP"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Palomuurin asetukset löydetty!"
+#: ../../network/network.pm_.c:299
+msgid "Start at boot"
+msgstr "Käynnistä koneen käynnistyksen yhteydessä"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "Yhteyden nimi"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP-osoitteen tullee olla muotoa 1.2.3.4"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../network/network.pm_.c:326
msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-"tekstiruudun x-koordinaatti\n"
-"määrä merkeissä"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/network.pm_.c:330
msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
msgstr ""
-"Et ehkä pysty asentamaan LILOa, koska lilo ei osaa käsitellä monista "
-"fyysisistä osioista koostuvia loogisia osioita."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Updating package selection"
-msgstr "Päivitän pakettien valintaa"
-
-# mat
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "Minne haluat liittää loopback-tiedoston %s?"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../network/network.pm_.c:350
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"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 ""
-"Levykkeen luominen onnistui.\n"
-"Voit nyt toistaa asennuksesi."
+"Syötä koneesi nimi.\n"
+"Koneesi nimen pitäisi olla täydellinen, kuten ``minunkone.yritys.fi''.\n"
+"Voit antaa myös yhdyskäytävän IP-osoitteen jos sinulla on sellainen."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Käytä CD/DVD-ROM -levyä varmuuskopioille"
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "Nimipalvelin"
-#: ../../standalone/harddrake2:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "hiiren painikkeiden määrä"
+msgid "Gateway (e.g. %s)"
+msgstr "Yhdyskäytävä (esim. %s)"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
-msgstr "Toista"
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "Yhdyskäytävän laite"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup other files"
-msgstr "Varmuuskopioi muut tiedostot"
+#: ../../network/network.pm_.c:363
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "DNS palvelimen osoite pitää olla muodossa 1.2.3.4"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "Ei levykeasemaa käytettävissä"
+#: ../../network/network.pm_.c:367
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Yhdyskäytävän osoite pitää olla muodossa 1.2.3.4"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Varmuuskopiot ovat vahingoittuneet"
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
+msgstr "Välityspalvelimien asettaminen"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
-msgstr "TV-normi :"
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "HTTP-välityspalvelin:"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr "Cpuid-perhe"
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "FTP-välityspalvelin:"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 Mt"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
+msgstr "Selvitä verkkokortti-id (hyödyllistä sylimikroille)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: thin"
-msgstr "tyyppi: ohut"
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
+msgstr "Välityspalvelimen tulee olla muotoa http://..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "Liettua AZERTY (uusi)"
+#: ../../network/network.pm_.c:388
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Web-osoitteen tulee alkaa etuliitteellä 'ftp:' tai 'http:'"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr "kyllä tarkoittaa että laskentaprosessorista löytyy poikkeusvektori"
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
+msgstr "Palomuuri asetukset löydetty!"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/shorewall.pm_.c:27
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"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
-"Olet valinnut ohjelmallisen RAID-osion juuriosioksi (/).\n"
-"Mikään käynnistyslataaja ei osaa käsitellä tätä ilman /boot -osiota.\n"
-"Lisää /boot -osio, jos haluat käyttää LILO:a tai GRUB:a"
+"Varoitus! Olemassaoleva palomuuri löydetty. Tarvitset mahdollisesti käsin "
+"tehtäviä korjauksia asennuksen jälkeen."
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "Muu käyttöjärjestelmä (MacOS...)"
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
+msgstr "Internetin asetukset"
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Aktivoidaksesi hiiren,"
+#: ../../network/tools.pm_.c:58
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Haluatko kokeilla internetyhteyttä nyt?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "Käynnistän verkkoa"
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+msgid "Testing your connection..."
+msgstr "Testaan yhteyttäsi..."
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Kuvakaappaukset löytyvät asennuksen jälkeen hakemistosta %s"
+#: ../../network/tools.pm_.c:70
+msgid "The system is now connected to Internet."
+msgstr "Järjestelmä on nyt yhdistetty internettin."
-#: ../../help.pm:1
-#, c-format
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
+msgstr "Turvallisuussyistä yhteys suljetaan nyt."
+
+#: ../../network/tools.pm_.c:72
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:\")."
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-"Useampi kuin yksi Microsoft-osio on löydetty kovalevyltäsi. Ole hyvä\n"
-"ja valitse osio jota haluat pienentää jotta pystyisit asentamaan uuden\n"
-"Mandrake Linux -käyttöjärjestelmäsi.\n"
-"\n"
-"Jokainen osio on lueteltu seuraavasti: \"Linux nimi\", Windows nimi\", \"Koko"
-"\".\n"
-"\n"
-"\"Linux nimi\" rakenne on seuraava: \"kovalevytyyppi\". \"kovalevynumero"
-"\", \n"
-"\"osionumero\" (esim. \"hda1\").\n"
-"\n"
-"\"kovalevytyyppi\" on \"hd\" jos kovalevysi on IDE-kovalevy ja \"sd\" jos\n"
-"se on SCSI-kovalevy.\n"
-"\n"
-"\"kovalevynumero\" on aina aakkonen \"hd\":n tai \"sd\":n perässä.\n"
-"IDE-kovalevyille: \n"
-"\n"
-" * \"a\" tarkoittaa \"isäntälevy ensisijaisella IDE ohjaimella\";\n"
-"\n"
-" * \"b\" tarkoittaa \"orjalevy ensisijaisella IDE ohjaimella\";\n"
-"\n"
-" * \"c\" tarkoittaa \"isäntälevy toissijaisella IDE ohjaimella\";\n"
-"\n"
-" * \"d\" tarkoittaa \"orjalevy toissijaisella IDE ohjaimella\";\n"
-"\n"
-"SCSI kovalevyillä \"a\" tarkoittaa \"pienin SCSI ID\", \"b\" tarkoittaa\n"
-"\"toiseksi pienin SCSI ID\", jne.\n"
-"\n"
-"\"Windows nimi\" on Windowsissa näkyvä osiota vastaava aakkonen.\n"
-"(ensimmäinen osio on \"C:\", seuraava \"D:\" jne.)"
+"Järjestelmä ei näytä olevan yhdistynyt internettiin.\n"
+"Yritä muuttaa internet-asetuksia."
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
-msgstr "Tansania"
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
+msgstr "Yhteyden asetus"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "Lasken FAT-tiedostojärjestelmän rajoja"
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
+msgstr "Täytä tai tarkista alla olevat kentät."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Varmuuskopion lähteet: \n"
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr "Kortin IRQ"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "custom"
-msgstr "mukautettu"
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "Kortin muisti (DMA)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Content of the file"
-msgstr "Tiedoston sisältö"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "Kortin IO"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
-msgstr "Tunnistus: LDAP"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "Kortin IO_0"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
-msgstr ""
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "Kortin IO_1"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
-msgstr "Anna minun valita mikä ajuri tahansa"
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
+msgstr "Henkilökohtainen puhelinnumerosi"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
-msgstr "lähetetty"
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
+msgstr "Palveluntarjoajan nimi (esim: tarjoaja.fi)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palestine"
-msgstr "Palestiina"
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
+msgstr "Palveluntarjoajan puhelinnumero"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+msgid "Provider dns 1 (optional)"
+msgstr "Yhteydentarjoajan dns 1 (vapaaehtoinen)"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d pilkulla erotettuja merkkijonoja"
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+msgid "Provider dns 2 (optional)"
+msgstr "Yhteydentarjoajan dns 2 (vapaaehtoinen)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " isdn"
-msgstr " isdn"
+# Asennuksen sivuvalikko
+#: ../../network/tools.pm_.c:109
+msgid "Choose your country"
+msgstr "Valitse maasi"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "Tässä on koko lista tarjolla olevista näppäimistöistä"
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
+msgstr "Soittotila"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Theme name"
-msgstr "Teeman nimi"
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+msgid "Connection speed"
+msgstr "Yhteyden nopeus"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/O_hje"
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+msgid "Connection timeout (in sec)"
+msgstr "Yhteyden aikaraja (sekunneissa)"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitrary driver"
-msgstr "Summittaisen ajurin valinta"
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
+msgstr "Käyttäjätunnus (käyttäjän nimi)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "Cookinsaaret"
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
+msgstr "Salasana"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
+msgstr "Iso-Britannia"
+
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
+msgstr "liittäminen epäonnistui: "
+
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
+msgstr "Laajennettua osiotyyppiä ei ole tuettu tässä ympäristössä"
+
+#: ../../partition_table.pm_.c:685
msgid ""
-"Here you can choose whether the scanners connected to this machine should be "
-"accessable by remote machines and by which remote machines."
+"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 ""
-"Täällä voit määrittää mikäli tähän koneeseen liitetyt kuvanlukijat pitäisi "
-"olla käytettävissä etäkoneissa sekä mitkä etäkoneet sallitaan."
+"Sinulla on reikä osiotaulussasi eikä sitä voida käyttää.\n"
+"Ainoa ratkaisu on siirtää primääriosioita siten että reikä on ennen "
+"laajennettuja osioita"
-#: ../../standalone/draksplash:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "the width of the progress bar"
-msgstr "edistymispalkin leveys"
+msgid "Restoring from file %s failed: %s"
+msgstr "Palautus tiedostosta %s epäonnistui: %s"
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Alustan osiota %s"
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
+msgstr "Huono varmuuskopiotiedosto"
-#: ../../standalone/drakbackup:1
+#: ../../partition_table.pm_.c:796
#, c-format
-msgid "Hostname required"
-msgstr "Koneen nimi vaaditaan"
+msgid "Error writing to file %s"
+msgstr "Virhe kirjoitettaessa tiedostoon %s"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "Poista asennettujen kirjasimien valinta"
+#: ../../partition_table/raw.pm_.c:192
+msgid ""
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
+msgstr ""
+"Jotakin kamalaa on tapahtunut kiintolevyllesi.\n"
+"Tiedon oikeellisuuden tarkistus epäonnistui.\n"
+"Tämä tarkoittaa että kaikki asemalle kirjoitettu\n"
+"tieto muuttuu tunnistamattomaksi."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Rulla"
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr "pakollinen"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit kernel version"
-msgstr "Lähetä ytimen versio"
+#: ../../pkgs.pm_.c:27
+msgid "important"
+msgstr "tärkeä"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Cancel"
-msgstr "Peruuta"
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr "erittäin hyvä"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for configured scanners ..."
-msgstr "Etsitään asetetut kuvanlukijat ..."
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr "hyvä"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Videocard"
-msgstr "Näytönohjain"
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr "ehkä"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tVarmuuskopiot käyttävät: tar ja bzip2\n"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
+msgstr "PDQ - Tulosta, älä jonota"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Remove Selected"
-msgstr "Poista valitut"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
+msgstr "PDQ"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/_Modeemien automaattitunnistus"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
+msgstr "LPD - rivitulostus demoni"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove printer"
-msgstr "Poista tulostin"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
+msgstr "LPD"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Last Log"
-msgstr "Näytä viimeisin lokimerkintä"
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
+msgstr "LPRng - LPR uusi sukupolvi"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "Mitkä palvelut haluat olevan käytettävissä Internetistä?"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
+msgstr "LPRng"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Connection Type"
-msgstr "Yhteystyyppi"
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
+msgstr "CUPS - Yhteinen Unix Tulostusjärjestelmä"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Tervetuloa sähköpostin asetustyökaluun.\n"
-"\n"
-"Täältä voit asettaa hälytysjärjestelmän.\n"
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
+msgstr "CUPS"
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Other"
-msgstr "Muut"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+msgid "Unknown Model"
+msgstr "Tuntematon malli"
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
-msgstr "Oletus"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "Paikallinen tulostin"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "2. näppäimen emulaatio"
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
+msgstr "Ulkoinen tulostin"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter a package name."
-msgstr "Anna paketin nimi."
+#: ../../printer/main.pm_.c:28
+msgid "Printer on remote CUPS server"
+msgstr "Tulostin ulkoisella CUPS-palvelimella"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run chkrootkit checks"
-msgstr "Suorita chkrootkit tarkistuksia"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+msgid "Printer on remote lpd server"
+msgstr "Tulostin ulkoisella lpd-palvelimella"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "type1inst building"
-msgstr "rakennetaan: type1inst"
+#: ../../printer/main.pm_.c:30
+msgid "Network printer (TCP/Socket)"
+msgstr "Verkkotulostin (TCP/Socket)"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
+#: ../../printer/main.pm_.c:31
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "Tulostin SMB/Windows 95/98/NT -palvelimella"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image file"
-msgstr "valitse kuvatiedosto"
+#: ../../printer/main.pm_.c:32
+msgid "Printer on NetWare server"
+msgstr "Tulostin NetWare-palvelimella"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "X server"
-msgstr "X-palvelin"
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+msgid "Enter a printer device URI"
+msgstr "Syötä tulostinlaitteen osoite (URI)"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin User Name"
-msgstr "Verkkoalueen pääkäyttäjän nimi"
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
+msgstr "Putkita työ käskylle"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Tapahtui virhe TV-kanavien haun aikana"
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
+msgstr "Tuntematon malli"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
-msgstr "US näppäimistö (kansainvälinen)"
+#: ../../printer/main.pm_.c:317
+msgid "Local Printers"
+msgstr "Paikalliset tulostimet"
-# Asennuksen sivuvalikko
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Not installed"
-msgstr "Ei asennettu"
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+msgid "Remote Printers"
+msgstr "Ulkoiset tulostimet"
-#: ../../keyboard.pm:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Molemmat Alt näppäimet samanaikaisesti"
+msgid " on parallel port \\/*%s"
+msgstr " rinnakkaisliitännässä \\/*%s"
-#: ../../network/netconnect.pm:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid "LAN connection"
-msgstr "Lähiverkko"
+msgid ", USB printer \\/*%s"
+msgstr ", USB tulostin \\/*%s"
-#: ../../standalone/logdrake:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid "/File/-"
-msgstr "/Tiedosto/-"
+msgid ", multi-function device on parallel port \\/*%s"
+msgstr ", monikäyttölaite rinnakkaisportissa \\/*%s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Italian"
-msgstr "Italia"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
+msgstr ", monikäyttölaite USB:ssa"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Basic"
-msgstr "Perusasetukset"
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
+msgstr ", monitoimilaite HP JetDirectissä"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
+msgstr ", monitoimilaite"
-#: ../../lang.pm:1
+#: ../../printer/main.pm_.c:344
#, c-format
-msgid "Honduras"
-msgstr "Honduras"
+msgid ", printing to %s"
+msgstr ", tulostetaan kohteeseen: %s"
-#: ../../help.pm:1
+#: ../../printer/main.pm_.c:346
#, c-format
-msgid "pdq"
-msgstr "pdq"
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr " LPD-palvelimella \"%s\", tulostin \"%s\""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../printer/main.pm_.c:348
#, c-format
-msgid "Card IO"
-msgstr "Kortin IO"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Samba server"
-msgstr "Samba palvelin"
+msgid ", TCP/IP host \"%s\", port %s"
+msgstr ", TCP/IP -palvelimella \"%s\", portissa %s"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Tämä erityinen Bootsrap-\n"
-"osio on järjestelmäsi\n"
-"kaksoiskäynnistämiseksi.\n"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr " SMB/Windows-palvelimella \"%s\", jako \"%s\""
-#: ../../standalone/drakautoinst:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Valitse jokaiselle vaiheelle toistetaanko asennus samalla tapaa kuin nyt vai "
-"onko kyseinen vaihe manuaalinen"
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr " Novell palvelimella \"%s\", tulostin \"%s\""
-#: ../../standalone/scannerdrake:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"Voit myös määrittää täällä pitäisikö etäkoneiden kuvanlukijat "
-"automaattisesti olla käytettävissä tässä koneessa."
+msgid ", using command %s"
+msgstr ", käyttäen komentoa %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Verkkoon käyttäen FTP.\n"
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
+msgstr "Raakatulostin (ei ajuria)"
-#: ../../security/l10n.pm:1
+#: ../../printer/main.pm_.c:647
#, c-format
-msgid "Reports check result to tty"
-msgstr "Raportoi tarkistuksen tulokset näytölle"
+msgid "(on %s)"
+msgstr "(%s:ssa)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Sinun täytyy syöttää laitteen tai tiedoston nimi!"
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
+msgstr "(tällä koneella)"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
+#: ../../printer/main.pm_.c:674
#, c-format
-msgid "/_Quit"
-msgstr "/_Lopeta"
+msgid "On CUPS server \"%s\""
+msgstr "CUPS-palvelimella \"%s\""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Grafiikkamuisti: %s kt\n"
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
+msgstr " (Oletus)"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
+msgstr "Valitse tulostinyhteys"
+
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
+msgstr "Miten tulostin on liitetty?"
+
+#: ../../printer/printerdrake.pm_.c:30
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"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
msgstr ""
-"Tämä ohjelma on ilmainen; voit levittää ja/tai muokata sitä Free\n"
-"Software Foundationin julkaiseman 'GNU General Public License'\n"
-"-lisenssin mukaisesti; joko lisenssin version 2 mukaisesti, tai\n"
-"(niin halutessasi) minkä tahansa uudemman version mukaisesti.\n"
-"\n"
-"Tämä ohjelma on julkaistu siinä toivossa, että se osoittautuisi\n"
-"hyödylliseksi, mutta ILMAN MINKÄÄNLAISTA TAKUUTA; ilman edes\n"
-"oletettua takuuta TUOTTEEN TOIMIVUUDESTA tai SOPIVUUDESTA \n"
-"TIETTYYN TEHTÄVÄÄN. Lisätietoja saat tutustumalla 'GNU General \n"
-"Public License' dokumentaatioon.\n"
"\n"
-"Hakemasi ohjelman mukana kuuluu tulla kopio 'GNU General Public License'\n"
-"dokumentaatiosta; jos näin ei ole, kirjoita Free Software Foundation,\n"
-"Inc.:lle osoitteeseen 59 Temple Place - Suite 330, Boston, MA 02111-1307\n"
-", USA.\n"
+"Tulostimia, jotka ovat ulkoisella CUPS-palvelimella, ei tarvitse asettaa\n"
+"tässä; nämä tulostimet tunnistetaan automaattisesti."
-#: ../../any.pm:1
-#, c-format
-msgid "access to compilation tools"
-msgstr "oikeudet ohjelmointityökaluihin"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+"Tulostimen automaattitunnistus (Paikallinen, TCP/Socket, ja SMB-tulostimet )"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Global statistics"
-msgstr "Tilastot"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+msgid "CUPS configuration"
+msgstr "CUPS asetus"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Valitse palautettava tieto..."
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+msgid "Specify CUPS server"
+msgstr "Määritä CUPS palvelinta"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:83
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"
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-"Jos aiot käyttää aboot:a, varmista että jätät vapaata tilaa levyn alkuun\n"
-"(2048 sektoria on tarpeeksi)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Standard test page"
-msgstr "Vakio testisivu"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Time Zone"
-msgstr "Aikavyöhyke"
+#: ../../printer/printerdrake.pm_.c:84
+msgid ""
+"\n"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
+msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create"
-msgstr "Luo"
+#: ../../printer/printerdrake.pm_.c:88
+msgid "The IP address should look like 192.168.1.20"
+msgstr "IP-osoitteen tullee olla muotoa 192.168.1.20"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "What"
-msgstr "Mitä"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Tapahtui virhe järjestettäessä paketteja:"
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
+msgstr "Portin numeron pitäisi olla kokonaisluku!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "Bulgaria (BDS)"
+#: ../../printer/printerdrake.pm_.c:99
+msgid "CUPS server IP"
+msgstr "CUPS-palvelimen IP"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Server"
-msgstr "Poista palvelin käytöstä"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
+msgstr "Portti"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem encryption key"
-msgstr "Tiedostojärjestelmän salausavain"
+#: ../../printer/printerdrake.pm_.c:102
+msgid "Automatic CUPS configuration"
+msgstr "CUPSin automaattinen asettaminen"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
-msgstr "Gujarati"
+#: ../../printer/printerdrake.pm_.c:159
+msgid "Checking your system..."
+msgstr "Tarkistan järjestelmäsi..."
+
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+msgid "Printerdrake"
+msgstr "Printerdrake"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:167
msgid ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by drakTermServ. Clients can "
-"either be 'thin'\n"
-" or 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, %s is\n"
-" written for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-" modified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-" using xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-" subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by drakTermServ. "
-"Clients can either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-msgstr ""
-"\t\t\tVaikka voit käyttää IP-osoiteryhmää asiakaskoneelle räätälöidyn "
-"tietueen sijasta,\n"
-"\t\t\tkiinteiden osoitteiden määritysten käyttöä helpottaa ClusterNFS:n "
-"tarjoama\n"
-"\t\t\tasiakaskohtaisten asetustiedostojen käyttö.\n"
-"\t\t\t\n"
-"\t\t\tHuomaa: \"#type\" -tietue on ainoastaan drakTermServ:n käytössä. "
-"Asiakkaat voivat\n"
-"\t\t\tolla joko 'thin'- tai 'fat-tyyppisiä'. 'Thin' asiakkaat suorittavat "
-"suurimman osan\n"
-"\t\t\tohjelmista palvelimella xdmcp kautta, kun 'fat' asiakkaat suorittavat "
-"suurimman\n"
-"\t\t\tosan ohjelmista itse. Erikoinen inittab-tiedosto, %s on\n"
-"\t\t\tluotu 'thin' asiakkaille. Järjestelmän asetustiedostot xdm-config, "
-"kdmrc ja gdm.conf\n"
-"\t\t\tmuokataan xdmcp:n käyttämiseksi, jos 'thin' asiakkaita käytetään. "
-"Koska xdmcp:n\n"
-"\t\t\tkäytössä on turvallisuusongelmia, hosts.deny ja hosts.allow muokataan "
-"käytön\n"
-"\t\t\trajoittamiseen paikallisverkon aliverkolle.\n"
-"\t\t\t\n"
-"\t\t\tHuomaa: Sinun pitää pysäyttää/käynnistää palvelin asiakkaiden "
-"lisäämisen tai\n"
-"\t\t\tmuokkauksen jälkeen"
+"There are no printers found which are directly connected to your machine"
+msgstr "Yhtäkään tulostinta ei löydetty, joka on kytketty suoraan tietokoneesi"
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:179
msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
+"The following printers\n"
+"\n"
msgstr ""
-"Valitse ensimmäinen numero 10-alueella, jota haluat muokata,\n"
-"tai paina vain Enter jatkaaksesi.\n"
-"Valintasi? "
+"Seuraavat tulostimet\n"
+"\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:180
msgid ""
-"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
+"The following printer\n"
"\n"
msgstr ""
-"\n"
-" Copyright (C)2002 MandrakeSoft.\n"
-"\tStew Benedict <sbenedict@mandrakesoft.com>\n"
+"Seuraava tulostin\n"
"\n"
-# Asennuksen sivuvalikko
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Save theme"
-msgstr "Tallenna teema"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "Brasilia"
+#: ../../printer/printerdrake.pm_.c:182
+msgid ""
+"\n"
+"and one unknown printer are "
+msgstr ""
+"\n"
+" ja yksi tuntematon tulostin ovat "
-#: ../../standalone/drakautoinst:1
+#: ../../printer/printerdrake.pm_.c:184
#, c-format
-msgid "Auto Install"
-msgstr "Automaattinen asennus"
+msgid ""
+"\n"
+"and %d unknown printers are "
+msgstr ""
+"\n"
+" ja %d tuntemattomat tulostimet ovat "
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration Wizard"
-msgstr "Verkkoasetusten velho"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"are "
+msgstr ""
+"\n"
+"ovat "
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
-msgstr "Vaihdettavan median automaattinen liittäminen"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"is "
+msgstr ""
+"\n"
+"on "
-#: ../../services.pm:1
-#, c-format
-msgid "Printing"
-msgstr "Tulostus"
+#: ../../printer/printerdrake.pm_.c:189
+msgid "directly connected to your system"
+msgstr "kytketty suoraan koneesi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save:"
-msgstr "Syötä hakemisto, johon tallennetaan:"
+#: ../../printer/printerdrake.pm_.c:192
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+"\n"
+"Löytyy yksi tuntematon tulostin joka on kytketty suoraan koneesi"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:194
#, c-format
msgid ""
-"There are no printers found which are directly connected to your machine"
+"\n"
+"There are %d unknown printers directly connected to your system"
msgstr ""
-"Yhtäkään tulostinta ei löydetty, joka on kytketty suoraan tietokoneeseesi"
+"\n"
+"Löytyy %d tuntemattomia tulostimia jotka ovat kytketty suoraan koneesi"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "Luo uusi osio"
+#: ../../printer/printerdrake.pm_.c:200
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr ""
+" (Varmista että kaikki tulostimesi ovat liitetty ja kytketty päälle).\n"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Driver:"
-msgstr "Ajuri:"
+#: ../../printer/printerdrake.pm_.c:214
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
-msgstr "tuntematon"
+#: ../../printer/printerdrake.pm_.c:215
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Haluatko ottaa käyttöön tulostaminen paikallis verkontulostimella?\n"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "Käytä fdiskiä"
+#: ../../printer/printerdrake.pm_.c:217
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Haluatko ottaa käyttöön tulostaminen yllä mainitussa tulostimeissa?\n"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "PYÖRITÄ HIIREN RULLAA!"
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr "Oletko varma että haluat asettaa tulostamista tässä koneessa?\n"
-#: ../../standalone/net_monitor:1
+#: ../../printer/printerdrake.pm_.c:219
#, c-format
-msgid "sent: "
-msgstr "lähetetty: "
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "Automaattinen IP"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+msgid "Add a new printer"
+msgstr "Lisää uusi tulostin"
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:259
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"
+"Welcome to the Printer Setup Wizard\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"
+"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"
-" Note that two different options are available after clicking the button:\n"
+"It asks you for all necessary information to set up the printer and gives "
+"you access to all available printer drivers, driver options, and printer "
+"connection types."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:272
+msgid ""
"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\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"
-" 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"
+"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) and you Windows machines must be connected and "
+"turned on.\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"
+"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"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Ole hyvä. Asennus on valmis ja GNU/Linux -järjestelmäsi on valmis\n"
-"käytettäväksi. Paina \"%s\" käynnistääksesi järjestelmän\n"
-"uudelleen. Ensimmäinen asia mitä näet sen jälkeen kun tietokoneesi\n"
-"on suorittanut laitteistotestit, on käynnistysvalikko josta voit valita "
-"minkä\n"
-"käyttöjärjestelmän haluat käynnistää.\n"
+
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
+msgid ""
"\n"
-"\"%s\" painike näyttää kaksi lisäpainiketta:\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" * \"%s\": luodaksesi levykkeen, joka suorittaa\n"
-"koko asennuksen ilman käyttäjän ohjausta, samoilla asetuksilla ja\n"
-"valinnoilla kuin nykyinen asennus.\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
"\n"
-" Huomaa, että tämä valinta näyttää kaksi vaihtoehtoa sinulle:\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"
-" * \"%s\": Tämä on osittain automaattinen asennus, voit päättää\n"
-"ainoastaan levyn osioinnista;\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:289
+msgid ""
"\n"
-" * \"%s\": Täysautomaattinen asennus: koko kovalevy\n"
-"kirjoitetaan uudestaan ja kaikki vanhat tiedot poistetaan.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" Tämä toiminto helpottaa työtä, kun asennus on tehtävä monille\n"
-"samanlaisille koneille. Katso meidän webbisivustoa, aiheella\n"
-"automaattiasennus (Auto Install);\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer or connected directly to the network.\n"
"\n"
-" * \"%s\"(*): tallentaa listan valituista paketeista\n"
-"levykkeelle. Sitten kun teet toisen asennuksen, aseta levyke asemaan,\n"
-"siirry apusivulle painamalla [F1] painiketta, ja kirjoita komentoriville\n"
-" linux defcfg=\"floppy\" ja paina 'enter'.\n"
+"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"
-"(*) Tarvitset FAT-formatoidun levykkeen (luodaksesi levykkeen\n"
-"Linuxissa kirjoita \"mformat a:\")"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Moldova"
-msgstr "Moldova"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuration of a remote printer"
-msgstr "Etätulostimen asetukset"
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
-msgstr "Online-alusta, joka vastaa yrityskohtaiseen tukitarpeeseen"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "Web-osoitteen tulee alkaa etuliitteellä 'ftp:' tai 'http:'"
+"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\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Oriya"
-msgstr "Oriya"
+#: ../../printer/printerdrake.pm_.c:307
+msgid "Auto-detect printers connected to this machine"
+msgstr "Tunnista automaattisesti tähän koneeseenliitetyt tulostimet"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Lisää uusi sääntö viimeiseksi"
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
+msgstr "Tunnista automaattisesti paikallisverkkoon liitetyt tulostimet"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr "LiLo ja Bootsplash teemojen asennus onnistui."
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr "Tunnista automaattisesti Windows-koneisiin liitetyt tulostimet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:329
msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
+"\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 ""
-"Voit myös määrittää täällä tulisiko etäkoneiden tulostimien olla "
-"automaattisesti käytettävissä tässä koneessa."
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid ""
-"You may now provide options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Voit antaa lisäasetuksia moduulille %s.\n"
-"Asetukset ovat muotoa ``nimi=arvo nimi2=arvo2 ...''.\n"
-"Esimerkiksi, ``io=0x300 irq=7''"
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Printer auto-detection"
+msgstr "Tulostimen automaattinen tunnistus"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:385
#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "Lopeta kirjoittamatta osiotaulua?"
+msgid ", network printer \"%s\", port %s"
+msgstr ", verkkotulostin \"%s\", portti %s"
-#: ../../mouse.pm:1
+#: ../../printer/printerdrake.pm_.c:387
#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr ", tulostin \"%s\" , SMB/Windows palvelimella \"%s\""
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:391
#, c-format
-msgid "On Hard Drive"
-msgstr "kiintolevylle"
+msgid "Detected %s"
+msgstr "Löydetty %s"
-#: ../../standalone.pm:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "Installing packages..."
-msgstr "Asennan paketteja..."
+msgid "Printer on parallel port \\/*%s"
+msgstr "Tulostin rinnakkaisportissa \\/*%s"
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "Dutch"
-msgstr "Hollanti"
+msgid "USB printer \\/*%s"
+msgstr "USB-tulostin \\/*%s"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:399
#, c-format
-msgid "Angola"
-msgstr "Angola"
+msgid "Network printer \"%s\", port %s"
+msgstr "Verkkotulostin \"%s\", portissa %s"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:401
#, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "Seuraavat paketit pitää asentaa:\n"
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Tulostin \"%s\" SMB/Windows palvelimella \"%s\""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "service setting"
-msgstr "Palveluiden asettaminen"
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+msgid "Local Printer"
+msgstr "Paikallinen tulostin"
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "Mukautettu"
+#: ../../printer/printerdrake.pm_.c:526
+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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
-msgstr "Latvia"
+#: ../../printer/printerdrake.pm_.c:530
+msgid "You must enter a device or file name!"
+msgstr "Sinun täytyy syöttää laitteen tai tiedoston nimi!"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr "Tiedosto on jo toisen loopback:n käytössä, valitse toinen"
+#: ../../printer/printerdrake.pm_.c:539
+msgid "No printer found!"
+msgstr "Ei tulostinta löydetty!"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr "Vain luku"
+#: ../../printer/printerdrake.pm_.c:548
+msgid "Available printers"
+msgstr "Saatavilla olevat tulostimet"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:552
msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
msgstr ""
-"Ota käyttöön / poista käytöstä nimiselvityksen spoofing suojaus.\n"
-"Jos \"alert\" on tosi, raportoidaan myös syslog:iin."
+"Seuraava tulostin löydettiin, jos se ei ole se, jonka haluat asettaa, syötä "
+"laite- tai tiedostonimi syöteriville"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
-msgstr "Ei tunnettua ajuria"
+#: ../../printer/printerdrake.pm_.c:553
+msgid ""
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
+msgstr ""
+"Tässä on lista löydetyistä tulostimista. Valitse se tulostin, jonka haluat "
+"asettaa tai syötä laite- tai tiedostonimi syöteriville"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "1 Mt"
+#: ../../printer/printerdrake.pm_.c:555
+msgid ""
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:556
msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-"Jos se ei ole sama jota haluat asettaa, syötä laite- tai tiedostonimi "
-"syöteriville"
-#: ../../standalone/draksound:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:558
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 choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-"Yhtäkään äänikorttia ei löydetty koneestasi. Varmista, että Linux-tuettu "
-"äänikortti on kytketty oikein.\n"
-"\n"
-"\n"
-"Voit katsoa meidän laitteistotietokantaa osoitteesta:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"Valitse portti, johon tulostimesi on kytketty tai syötä laitteen tai "
+"tiedoston nimi syöteriville"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Aseta paikallisverkko..."
+#: ../../printer/printerdrake.pm_.c:559
+msgid "Please choose the port where your printer is connected to."
+msgstr "Valitse portti, johon tulostimesi on kytketty."
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:561
msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
+" (Rinnakkaisportit: /dev/lp0, /dev/lp1, ..., vastaavat LPT1:, LPT2:, ..., 1. "
+"USB-tulostin: /dev/usb/lp0, 2. USB-tulostin: /dev/usb/lp1, ...)."
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr "Käynnistä äänijärjestelmä tietokoneessasi"
+#: ../../printer/printerdrake.pm_.c:565
+msgid "You must choose/enter a printer/device!"
+msgstr "Sinun täytyy valita tai syöttää tulostinlaite!"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
-msgstr "Tarkistetaan 'suid/sgid' tiedostojen tarkistussumma."
+#: ../../printer/printerdrake.pm_.c:584
+msgid "Manual configuration"
+msgstr "Manuaalinen asettaminen"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run some checks against the rpm database"
-msgstr "Suorita tarkistuksia rpm-tietokannassa"
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
+msgstr "Ulkoisen lpd-palvelimen tulostimen parametrit"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Execute"
-msgstr "Suorita"
+#: ../../printer/printerdrake.pm_.c:634
+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 ""
+"Jotta voisit käyttää ulkoista lpd-tulostinta, sinun pitäisi syöttää "
+"tulostuspalvelimen verkkonimi sekä tulostimen nimi kyseisellä palvelimella."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Valmistellaan tulostintietokantaa..."
+#: ../../printer/printerdrake.pm_.c:635
+msgid "Remote host name"
+msgstr "Palvelimen verkkonimi"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Information"
-msgstr "Tiedot"
+#: ../../printer/printerdrake.pm_.c:636
+msgid "Remote printer name"
+msgstr "Ulkoisen tulostimen nimi"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "No network card"
-msgstr "Ei verkkokorttia"
+#: ../../printer/printerdrake.pm_.c:639
+msgid "Remote host name missing!"
+msgstr "Palvelimen verkkonimi puuttuu!"
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "3 näppäintä"
+#: ../../printer/printerdrake.pm_.c:643
+msgid "Remote printer name missing!"
+msgstr "Ulkoisen tulostimen nimi puuttuu!"
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
#, c-format
-msgid "Which filesystem do you want?"
-msgstr "Minkä tiedostojärjestelmän haluat?"
+msgid "Detected model: %s %s"
+msgstr "Tunnistettu malli: %s %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malta"
-msgstr "Malta"
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Scanning network..."
+msgstr "Skannaan verkkoa..."
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, c-format
-msgid "Detailed information"
-msgstr "Yksityiskohtaiset tiedot"
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ", tulostin \"%s\" palvelimella \"%s\""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
#, 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 ""
-"Tulostimen vakioasetukset\n"
-"\n"
-"Sinun kannattaisi varmistaa että paperiasetukset ja mustetyyppi/tulostustila "
-"(jos säädettävissä) ja myös lasertulostimien laitteistoasetukset (muisti, "
-"kaksipuolinen tulostus, lisäsyöttölokerot) ovat oikein määritetty. Huomaa "
-"että korkean tulostuslaadun/resoluution käyttö voi hidastaa tulostusnopeutta."
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Tulostin \"%s\" palvelimella \"%s\""
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
-msgstr "Tämä levyke ei ole FAT-alustettu"
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "SMB (Windows 9x/NT) -tulostimen parametrit"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "Asetan verkkoa"
+#: ../../printer/printerdrake.pm_.c:796
+msgid ""
+"To print to a SMB printer, you need to provide the SMB host name (Note! It "
+"may be different from its TCP/IP hostname!) and possibly the IP address of "
+"the print server, as well as the share name for the printer you wish to "
+"access and any applicable user name, password, and workgroup information."
+msgstr ""
+"SMB-palvelimen tulostimelle tulostaaksesi sinun pitäisi syöttää SMB-koneen "
+"nimi (joka ei aina ole sama kuin koneen TCP/IP nimi!) ja mahdollisesti "
+"tulostuspalvelimen IP-osoite, tulostimen jakonimi sekä soveltuva "
+"käyttäjätunnus, salasana ja työryhmä-tieto."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:797
msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
+" 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 ""
-"Tämä optio tallentaa muuttuneet tiedostot. Tarkka toimintatapa riippuu "
-"siitä, käytetäänkö asteittainen vai erotus-varmistus."
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Graphic Card"
-msgstr "Näytönohjain"
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
+msgstr "SMB-palvelimen nimi"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing Windows partition"
-msgstr "Muutan Windows-osion kokoa"
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr "SMB-palvelimen IP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "Kamerun"
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr "Jakonimi"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "Yhteydentarjoajan dns 1 (vapaaehtoinen)"
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "Työryhmä"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Voit nyt osioida kiintolevysi %s\n"
-"Kun olet valmis, älä unohda tallentaa asetuksia komennolla `w'"
+#: ../../printer/printerdrake.pm_.c:806
+msgid "Auto-detected"
+msgstr "Automaattinen tunnistus"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finnish)"
-msgstr "Saami (ruotsi/suomi)"
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
+msgstr "Joko palvelimen nimi tai IP-numero on annettava!"
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Close"
-msgstr "Sulje"
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
+msgstr "Samba-jaon nimi puuttuu!"
+
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
+msgstr "TURVA VAROITUS!"
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:827
#, 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."
+"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 ""
-"\"%s\": tarkista maa-asetukset. Jos et ole maassa, joka on valittu,\n"
-"paina \"%s\" painiketta ja valitse joku muu. Jos maasi ei ole\n"
-"listassa, paina \"%s\" painiketta jolloin näet listan kaikista maista."
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
-msgid "Calendar"
-msgstr "Kalenteri"
+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 ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:840
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+"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 ""
-"Palauta valittu\n"
-"luettelotietue"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
+msgstr "NetWare-palvelimen tulostimen parametrit"
+
+#: ../../printer/printerdrake.pm_.c:912
msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
+"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 ""
-"Jotta voisit käyttää lpd-etätulostinta, sinun pitäisi syöttää "
-"tulostuspalvelimen verkkonimi sekä tulostimen nimi kyseisellä palvelimella."
+"NetWare-palvelimen tulostimelle tulostaaksesi sinun pitäisi syöttää NetWare-"
+"palvelinkoneen nimi (joka ei aina ole sama kuin koneen TCP/IP nimi!) ja "
+"mahdollisesti tulostusjonon nimi sille tulostimelle, jota haluat käyttää, "
+"sekä soveltuva käyttäjätunnus ja salasana."
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
-msgstr "Islanti"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr "Tulostuspalvelin"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Verkko & Internet asetukset"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
+msgstr "Tulostusjonon nimi"
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
-msgstr "consolehelper puuttuu"
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
+msgstr "NCP-palvelimen nimi puuttuu!"
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr "pysähtynyt"
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
+msgstr "NCP-jonon nimi puuttuu!"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "Löytyykö irq-vektori FPU:sta"
+msgid ", host \"%s\", port %s"
+msgstr ", kone \"%s\", portti %s"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
-msgid "Ext2"
-msgstr "Ext2"
+msgid "Host \"%s\", port %s"
+msgstr "Kone \"%s\", portti %s"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr "Laajenna puu"
+#: ../../printer/printerdrake.pm_.c:1030
+msgid "TCP/Socket Printer Options"
+msgstr "TCP/Socket -tulostimen parametrit"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1032
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
-"\n"
-"It has been reported to oops the kernel on unloading.\n"
-"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) into the input fields."
msgstr ""
-"Vanha \"%s\" ajuri on 'mustalla listalla'.\n"
-"\n"
-"Sen on raportoitu kaatavan ytimen kun sitä poistetaan käytöstä.\n"
-"\n"
-"Uusi \"%s\" ajuri otetaan käyttöön seuraavassa käynnistyksessä."
-
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Expert Mode"
-msgstr "Asiantuntijatila"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "Tulostimen asetukset"
+#: ../../printer/printerdrake.pm_.c:1033
+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 ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Local Network adress"
-msgstr "Paikallisverkon osoite"
+#: ../../printer/printerdrake.pm_.c:1037
+msgid "Printer host name or IP missing!"
+msgstr "Tulostinlaitteen verkko-nimi tai osoite puuttuu!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Varmista järjestelmätiedostot. (hakemisto /etc)"
+#: ../../printer/printerdrake.pm_.c:1059
+msgid "Printer host name or IP"
+msgstr "Tulostinlaitteen verkko-nimi tai osoite"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the user umask."
-msgstr "Aseta käyttäjän umask."
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
+msgstr "Tulostinlaitteen osoite (URI)"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1108
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 ?"
+"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 ""
-"Sinulla on nyt mahdollisuus hakea päivitetyt paketit. Nämä paketit\n"
-"on julkaistu tämän jakelun julkaisun jälkeen. Ne voivat sisältää\n"
-"tietoturva- tai virhekorjauksia.\n"
-"\n"
-"Hakeaksesi nämä paketit, sinulla pitää olla toimiva Internetyhteys.\n"
-"\n"
-"Haluatko hakea ja asentaa päivitykset?"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Samba Server"
-msgstr "Samba palvelin"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Australian Optus cable TV"
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
+msgstr "Sinun pitää syöttää laillinen URI!"
-#: ../../install_steps_newt.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1463
msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+"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 ""
-" <Tab>/<Alt-Tab> vaihtaa elementtiä | <Space> valitsee | <F12> seuraava "
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet:"
-msgstr "Aliverkko:"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr "Tulostimen nimi"
-#: ../../lang.pm:1
-#, c-format
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
+msgstr "Kuvaus"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "When"
-msgstr "Koska"
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
+msgstr "Paikka"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
-msgstr ""
-"Tarvitset alcatel:in mikrokoodin.\n"
-"Voit hakea sen osoitteesta: \n"
-"%s\n"
-"ja kopioi tiedosto 'mgmt.o' hakemistoon '/usr/share/speedtouch'"
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+msgid "Reading printer database..."
+msgstr "Luetaan tulostintietokantaa ..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hour"
-msgstr "Tunti"
+#: ../../printer/printerdrake.pm_.c:1482
+msgid "Preparing printer database..."
+msgstr "Valmistellaan tulostintietokantaa ..."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Toinen nimipalvelin (ei pakollinen)"
+#: ../../printer/printerdrake.pm_.c:1578
+msgid "Your printer model"
+msgstr "Tulostimesi Malli"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:1579
#, c-format
-msgid "Finland"
-msgstr "Suomi"
+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/various.pm:1
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Värimäärä: %s\n"
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+msgid "The model is correct"
+msgstr "Malli on oikea"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Et voi poistaa tämän paketin valintaa. Paketti pitää päivittää."
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+msgid "Select model manually"
+msgstr "Valitse malli manuaalisesti"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "Ladataan levykkeeltä"
+#: ../../printer/printerdrake.pm_.c:1606
+msgid "Printer model selection"
+msgstr "Tulostimen mallin valinta"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:1607
+msgid "Which printer model do you have?"
+msgstr "Mikä tulostinmalli sinulla on?"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
+#: ../../printer/printerdrake.pm_.c:1608
+msgid ""
+"\n"
+"\n"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-"Ota käyttöön / poista käytöstä epätavallisten IPv4 pakettien kirjaaminen "
-"lokiin."
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr "Slovenia"
+#: ../../printer/printerdrake.pm_.c:1611
+msgid ""
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
+msgstr ""
+"Jos tulostimesi ei ole listattu, valitse yhteensopiva (katso tulostimen "
+"ohjekirjasta) tai vastaava."
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse test"
-msgstr "Hiiri testi"
+#: ../../printer/printerdrake.pm_.c:1697
+msgid "OKI winprinter configuration"
+msgstr "OKI winprinterin asettaminen"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1698
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."
+"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 ""
-"Drakperm:ä käytetään tiedostojen katseluun korjataksesi oikeudet, omistajat "
-"ja ryhmät msec:n kautta.\n"
-"Voit myös muokata omat säännöt jotka ylikirjoittavat oletussäännöt."
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+msgid "Lexmark inkjet configuration"
+msgstr "Lexmark inkjetin asettaminen"
+
+#: ../../printer/printerdrake.pm_.c:1719
msgid ""
-"Enter a user\n"
-"%s"
+"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 ""
-"Lisää käyttäjä\n"
-"%s"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1746
msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"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 ""
-"- PCI- ja USB-laitteet: tämä listaa valmistajan, laitteen, alivalmistajan ja "
-"alilaitteen PCI/USB id:t"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "ProgressBar color selection"
-msgstr "Edistymispalkin värivalinta"
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr "GDI Laser Tulostin joka kyttää Zenographics ZJ-Stream Formaattia"
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1750
msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-"Tässä ovat tämänhetkiset käynnistysvalikon tietueet.\n"
-"Voit lisätä uusia tai muuttaa olemassaolevia."
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:1972
+msgid ""
+"Printer default settings\n"
+"\n"
+"You should make sure that the page size and the ink type/printing mode (if "
+"available) and also the hardware configuration of laser printers (memory, "
+"duplex unit, extra trays) are set correctly. Note that with a very high "
+"printout quality/resolution printing can get substantially slower."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
+msgid "Option %s must be an integer number!"
+msgstr "Valitsimen %s pitää olla kokonaisluku!"
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
+msgid "Option %s must be a number!"
+msgstr "Valitsimen %s pitää olla luku!"
+
+#: ../../printer/printerdrake.pm_.c:1989
+#, c-format
+msgid "Option %s out of range!"
+msgstr "Valitsin %s on arvoalueensa ulkopuolella!"
-#: ../../standalone/drakbug:1
+#: ../../printer/printerdrake.pm_.c:2028
#, c-format
msgid ""
-"Application Name\n"
-"or Full Path:"
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
-"Ohjelman nimi\n"
-"tai hakemistopolku:"
+"Haluatko asettaa tämän tulostimen (\"%s\")\n"
+"oletustulostimeksi?"
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2051
+msgid "Test pages"
+msgstr "Testisivut"
+
+#: ../../printer/printerdrake.pm_.c:2052
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."
+"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 ""
-"Ajaa komentoja määrätyillä ajanhetkillä, jotka on määritelty at-komennolla.\n"
-"Ajaa myös eräajoja, kun järjestelmän kuormitus on riittävän matala."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
-msgstr "Radiotuki:"
+#: ../../printer/printerdrake.pm_.c:2056
+msgid "No test pages"
+msgstr "Ei testisivuja"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "Asennan SANE paketteja..."
+#: ../../printer/printerdrake.pm_.c:2057
+msgid "Print"
+msgstr "Tulosta"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
-msgstr "LDAP"
+#: ../../printer/printerdrake.pm_.c:2114
+msgid "Standard test page"
+msgstr "Vakio testisivu"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
-msgstr "SILO"
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
+msgstr "Vaihtoehtoinen testisivu (Letter)"
-#: ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Change type"
-msgstr "Muuta tyyppiä"
+#: ../../printer/printerdrake.pm_.c:2120
+msgid "Alternative test page (A4)"
+msgstr "Vaihtoehtoinen testisivu (A4)"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", USB tulostin #%s"
+#: ../../printer/printerdrake.pm_.c:2122
+msgid "Photo test page"
+msgstr "Valokuva testisivu"
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "SILOn asennus"
+#: ../../printer/printerdrake.pm_.c:2126
+msgid "Do not print any test page"
+msgstr "Älä tulosta testisivua"
-#: ../../install_messages.pm:1
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
+msgstr "Tulostan testisivu(j)a..."
+
+#: ../../printer/printerdrake.pm_.c:2159
#, 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"
+"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"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-"Onnittelut, asennus on valmis.\n"
-"Poista käynnistysmedia ja paina Enter käynnistääksesi koneesi uudelleen.\n"
-"\n"
-"\n"
-"Löydät tähän Mandrake Linuxin versioon tarjollaolevat korjaukset ja\n"
-"korjattujen virheiden listan osoitteesta:\n"
-"\n"
-"\n"
+"Testisivu(t) on lähetetty tulostimelle.\n"
+"Voi kestää hetken ennen kuin tulostus alkaa.\n"
+"Tulostuksen tila:\n"
"%s\n"
"\n"
-"\n"
-"Järjestelmän asettamisesta saat tietoja virallisen Linux Mandraken\n"
-"käyttäjäoppaan jälkiasennuskappaleesta."
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Palauta verkon kautta protokollalla: %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "paranoid"
-msgstr "vainoharhainen"
+#: ../../printer/printerdrake.pm_.c:2163
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+msgstr ""
+"Testisivu(t) on lähetetty tulostimelle.\n"
+"Voi kestää hetken ennen kuin tulostus alkaa.\n"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "Älä lähetä sähköpostia kuin tarvittaessa"
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
+msgstr "Toimiiko tulostus kunnolla?"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "Kuvanlukijasi ei ole käytettävissä verkossa."
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+msgid "Raw printer"
+msgstr "Raakatulostin"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Lähetä raportti jokaisesta varmuuskopiosta sähköpostitse:"
+msgid ""
+"To print a file from the command line (terminal window) you can either use "
+"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
+"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
+"to modify the option settings easily.\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2218
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 "
+"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 ""
-"Tätä komentoa voit myös käyttää monien ohjelmien tulostusdialogien "
-"\"Tulostuskomento\" kentässä, mutta tässä sinun ei pidä määrittää tiedoston "
-"nimeä koska ohjelma määrittää sen itse.\n"
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolution"
-msgstr "Näyttötila"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, 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."
+"\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 ""
-"SMB-palvelimen tulostimelle tulostaaksesi sinun pitäisi syöttää SMB-koneen "
-"nimi (joka ei aina ole sama kuin koneen TCP/IP nimi!) ja mahdollisesti "
-"tulostuspalvelimen IP-osoite, tulostimen jakonimi sekä soveltuva "
-"käyttäjätunnus, salasana ja työryhmä-tieto."
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
#, c-format
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+"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\n"
+"\n"
msgstr ""
-"Salli 'su' vain 'wheel' ryhmään kuuluville jäsenille, tai salli komento "
-"kaikille."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
-msgstr "aseta uudelleen"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2228
msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+"Here is a list of the available printing options for the current printer:\n"
+"\n"
msgstr ""
-"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa.\n"
-"HUOMAA, ETTÄ TUKI ON KOKEELLINEN JA VOI JUMIUTTAA TIETOKONEESI."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell timeout"
-msgstr "Komentotulkin aikaviive"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Xinetd Service"
-msgstr "Xinetd palvelu"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to network tools"
-msgstr "oikeudet verkkotyökaluihin"
+"Tässä on lista nykyisen tulostinen käytössä olevista tulostusvalinnoista:\n"
+"\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "Firmwaren lataus HP LaserJet 1000 tulostimelle"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
+msgstr ""
+"Tulostaaksesi tiedoston komentoriviltä (pääteikkunasta) käytä komentoa \"%s "
+"<tiedosto>\".\n"
-#: ../advertising/03-software.pl:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
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."
+"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 ""
-"Mandrake Linux 9.2 antaa sinulle mahdollisuuden käyttää viimeisimpiä "
-"ohjelmia äänitiedostojen toistamiseen, kuvien muokkaukseen ja videoiden "
-"toistamiseen."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Tässä on lista tunnistetuista tulostimista: "
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
+msgid ""
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
+msgstr ""
+"Saadaksesi listan nykyisen tulostimen parametreistä klikkaa \"Tulostuksen "
+"valintalista\"-painiketta."
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2253
#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
msgstr ""
-"Virhe asennettaessa aboot:a,\n"
-"yritänkö pakkoasennusta vaikka se tuhoaa ensimmäisen osion?"
+"Tulostaaksesi tiedoston komentoriviltä (pääteikkunasta) käytä komentoa \"%s "
+"<tiedosto>\". tai \"%s <tiedosto>\".\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2257
msgid ""
-"Restore Selected\n"
-"Files"
+"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 ""
-"Palauta\n"
-"valitut tiedostot"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2261
#, 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."
+"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 ""
-"%s on olemassa, poistanko?\n"
-"\n"
-"Varoitus: Jos olet jo suorittanut tämä prosessin, sinun pitää\n"
-"todennäköisesti poistaa tietue authorized_keys tiedostosta palvelimella."
-#: ../../network/tools.pm:1
+#: ../../printer/printerdrake.pm_.c:2271
#, c-format
-msgid "Please fill or check the field below"
-msgstr "Täytä tai tarkista alla olevat kentät."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Haluatko tallentaa muutokset tiedostoon /etc/fstab"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
-msgstr "Käynnistysprotokolla"
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Tulostus/Skannaus/Kuva-Kortit laitteella \"%s\""
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2272
#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-levyt %s\n"
+msgid "Printing/Scanning on \"%s\""
+msgstr "Tulostus/Skannaus laitteella \"%s\""
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:2274
#, c-format
-msgid "On boot"
-msgstr "Käynnistyksen yhteydessä"
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Tulostus/Kuva-Kortit laitteella \"%s\""
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2275
#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "Paketti %s tarvitaan. Haluatko asentaa sen?"
+msgid "Printing on the printer \"%s\""
+msgstr "Tulostus käynnissä tulostimella \"%s\""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus identification"
-msgstr "Väylän tunniste"
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+msgid "Close"
+msgstr "Sulje"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vatican"
-msgstr "Vatikaani"
+#: ../../printer/printerdrake.pm_.c:2281
+msgid "Print option list"
+msgstr "Tulostusparametrien lista"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:2301
#, c-format
-msgid "Please make a backup of your data first"
-msgstr "Luo ensin varmuuskopio tiedoistasi"
+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!"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ADSL adapters"
+#: ../../printer/printerdrake.pm_.c:2322
+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 ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr "Sinulla on enemmän kuin yksi kiintolevy. Mille haluat asentaa Linuxin?"
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+msgid "Reading printer data..."
+msgstr "Luetaan tulostimen tietoja ..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Eritrea"
-msgstr "Eritrea"
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+msgid "Transfer printer configuration"
+msgstr "Siirrä tulostimen asetukset"
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm_.c:2365
#, c-format
-msgid "Boot ISO"
-msgstr "Käynnistys-ISO"
+msgid ""
+"You can copy the printer configuration which you have done for the spooler %"
+"s to %s, your current spooler. All the configuration data (printer name, "
+"description, location, connection type, and default option settings) is "
+"overtaken, but jobs will not be transferred.\n"
+"Not all queues can be transferred due to the following reasons:\n"
+msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Firmware needed"
-msgstr "Firmware tarvitaan"
+#: ../../printer/printerdrake.pm_.c:2368
+msgid ""
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove List"
-msgstr "Poista lista"
+#: ../../printer/printerdrake.pm_.c:2370
+msgid ""
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
+msgstr ""
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
-msgstr "Räätälöitävissä oleva ympäristö"
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr "LPD ja LPRng eivät tue IPP-tulostimia.\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
-msgstr "Inuktitut"
+#: ../../printer/printerdrake.pm_.c:2374
+msgid ""
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2375
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."
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
msgstr ""
-"Joitakin protokollat, kuten rsync voi olla asetettu palvelimella. Hakemiston "
-"käyttämisen sijaan,voit käyttää 'moduulin' nimi palveluhakemistona."
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "Marocco"
+#: ../../printer/printerdrake.pm_.c:2376
+msgid ""
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Mikä tulostinmalli sinulla on?"
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
+msgstr "Älä siirrä tulostimia"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add a new printer"
-msgstr "Lisää uusi tulostin"
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
+msgstr "Siirrä"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2392
#, c-format
-msgid " All of your selected data have been "
-msgstr " Kaikki valitsemasi tiedot on "
+msgid ""
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "Nepal"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr "Tulostimen nimi saa sisältää vain kirjaimia, numeroita ja alaviivan"
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
-msgid "<-- Delete"
-msgstr "<-- Poista"
+msgid ""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
+msgstr ""
+"Tulostin \"%s\" on jo olemassa,\n"
+"haluatko todellakin tuhota olemassa olevat asetukset?"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
-msgstr "cpu # "
+#: ../../printer/printerdrake.pm_.c:2413
+msgid "New printer name"
+msgstr "Uuden tulostimen nimi"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "chunk size"
-msgstr "palan koko"
+msgid "Transferring %s..."
+msgstr "Siirrän %s ..."
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2427
#, 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."
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
msgstr ""
-"Jos \"KAIKKI\" asetettu, salli /etc/issue ja /etc/issue.net olemassaolo.\n"
-"\n"
-"Jos \"EI\" asetettu, kumpaakaan ei sallita.\n"
-"\n"
-"Muutoin sallitaan ainoastaan/etc/issue."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr "Ota käyttöön / Poista käytöstä sulogin(8) yhden käyttäjän tasossa."
-
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
-#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "muokataksesi komennot ennen k~^Dynnistyst~^D, tai 'c' komentoriville."
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Ongelmia asennettaessa pakettia %s"
+#: ../../printer/printerdrake.pm_.c:2437
+msgid "Refreshing printer data..."
+msgstr "Päivitetään tulostintietoja ..."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Saat hälytyksen jos kuorma on tätä arvoa suurempi"
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+msgid "Configuration of a remote printer"
+msgstr "Ulkoisen tulostimen asetukset"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Lisää kuvanlukija manuaalisesti"
+#: ../../printer/printerdrake.pm_.c:2446
+msgid "Starting network..."
+msgstr "Käynnistän verkkoa..."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh"
-msgstr "Päivitä"
+# Asennuksen sivuvalikko
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+msgid "Configure the network now"
+msgstr "Aseta verkkoyhteys nyt"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Reload partition table"
-msgstr "Uudelleenlataa osiotaulu"
+#: ../../printer/printerdrake.pm_.c:2480
+msgid "Network functionality not configured"
+msgstr "Verkkotoimintoja ei ole asetettu"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Kyllä, haluan automaattisen sisäänkirjautumisen (käyttäjä, ympäristö)"
+#: ../../printer/printerdrake.pm_.c:2481
+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 ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Selected"
-msgstr "Palauta valittu"
+#: ../../printer/printerdrake.pm_.c:2484
+msgid "Go on without configuring the network"
+msgstr "Jatka asettamatta verkkoyhteyttä"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Etsi kirjasimia asennettujen listalta"
+#: ../../printer/printerdrake.pm_.c:2518
+msgid ""
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Paikallisverkko ei loppunut '.0':aan, täydennetään."
+#: ../../printer/printerdrake.pm_.c:2519
+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 ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Boot"
-msgstr "Käynnistys"
+#: ../../printer/printerdrake.pm_.c:2529
+msgid "Restarting printing system..."
+msgstr "Käynnistän tulostusjärjestelmää uudelleen ..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " and the CD is in the drive"
-msgstr "ja CD on asemassa"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "high"
+msgstr "korkea"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Tuner type:"
-msgstr "Vastaanottimen tyyppi:"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "paranoid"
+msgstr "vainoharhainen"
-#: ../../help.pm:1
-#, 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"
-"\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 ""
-"Nyt on aika valita tulostusjärjestelmä tietokoneellesi. Muut käyttö-\n"
-"järjestelmät saattavat tarjota sinulle yhden järjestelmän, mutta Mandrake\n"
-"Linux tarjoaa kaksi. Kukin tulostusjärjestelmä sopii parhaiten tietyille\n"
-"asetuksille.\n"
-"\n"
-" * \"%s\" -- joka tarkoittaa ``tulosta, älä jonota (print, don't queue)'',\n"
-"Tämä on sopiva valinta jos sinulla on suora yhteys tulostimeesi ja haluat\n"
-"mahdollisuuden 'hätäkatkaisuun' jos tulostin on tukossa, eikä sinulla\n"
-"on verkkoon liitettyjä tulostimia. (\"%s\" tukee ainoastaan "
-"yksinkertaisimpia\n"
-"verkkoasetelmia ja on hidas verkkokäyttöön.) Valitse \"pdq\" jos tämä on\n"
-"ensimmäinen GNU/Linux tuttavuutesi.\n"
-"\n"
-" * \"%s\" -- ``Common Unix Printing System'', eli Yleinen Unix Tulostus-\n"
-"järjestelmä, on mainio tulostettaessa paikalliseen tulostimeen tai\n"
-"vaikkapa maapallon toiselle puolelle. Se on yksinkertainen järjestelmä\n"
-"ja voi toimia tulostuspalvelimena tai asiakkaana vanhalle \"lpd\"-\n"
-"tulostusjärjestelmälle. Näin ollen, se on yhteensopiva vanhempien\n"
-"järjestelmien kanssa. Se on monitaitoinen, mutta perusasetuksen\n"
-"teko on melkein yhtä helppoa kuin \"pdq\". Jos tarvitset \"lpd\"-palvelimen\n"
-"emulointia, sinun pitää käynnistää \"cups-lpd\" -demoni. \"%s\"\n"
-"sisältää graafisen käyttöliittymän jota voidaan käyttää tulostamiseen\n"
-"tai asetuksien tekoon.\n"
-"\n"
-"Jos teet valinnan nyt, ja myöhemmin huomaat ettet pidä nykyisestä\n"
-"tulostusjärjestelmästä voit muuttaa valintaasi Mandraken ohjauspaneelista\n"
-"löytyvässä PrinterDrakessa valitsemalla Asiantuntija-painikkeen."
-
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid "\"Menu\" key"
-msgstr "\"Valikko\" näppäin"
+msgid "Installing a printing system in the %s security level"
+msgstr "Asennan tulostusjärjestelmän turvatasolla %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2570
#, 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"
-"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."
+"Do you really want to configure printing on this machine?"
msgstr ""
-"\n"
-"\n"
-"Tarkista jos Printerdrake on tunnistanut tulostimesi mallin oikein. Etsi "
-"oikea malli kun kohdistin on väärässä mallissa tai \"Raakatulostin\" "
-"valinnassa."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Administrator:"
-msgstr "Turvallisuusylläpitäjä:"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
-msgstr "Asettaa komentotulkin aikaviiveen. Arvo 0 (nolla) poistaa aikaviiveen."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "Firmwaren kopiointi onnistui"
+#: ../../printer/printerdrake.pm_.c:2604
+msgid "Starting the printing system at boot time"
+msgstr "Käynnistää tulostusjärjestelmän käynnistyksen aikana"
-#: ../../../move/tree/mdk_totem:1
+#: ../../printer/printerdrake.pm_.c:2605
#, c-format
msgid ""
-"You can't use another CDROM when the following programs are running: \n"
-"%s"
+"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 ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
-msgstr ""
-"jos asetettu, tarkistetaan tiedostojen oikeudet käyttäjien kotihakemistossa."
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
+msgstr "Tarkistan asennetut ohjelmistot..."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Sinulla ei ole ainoatakaan Internet-yhteyttä.\n"
-"Luo sellainen ensin klikkaamalla 'Aseta'"
+#: ../../printer/printerdrake.pm_.c:2630
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "Poistetaan %s"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Fonts copy"
-msgstr "Kirjasimien kopioiminen"
+#: ../../printer/printerdrake.pm_.c:2636
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "Asennan paketteja..."
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
-msgstr "Automaattinen"
+#: ../../printer/printerdrake.pm_.c:2685
+msgid "Select Printer Spooler"
+msgstr "Valitse tulostusjono"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Haluatko kokeilla asetuksia?"
+#: ../../printer/printerdrake.pm_.c:2686
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Mitä tulostusjärjestelmää (jonoa) haluat käyttää?"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2720
#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
-msgstr ""
-"Tulostin \"%s\" poistettiin Star Office/OpenOffice.org/GIMP käytöstä "
-"onnistuneesti."
+msgid "Configuring printer \"%s\"..."
+msgstr "Asetetaan tulostinta \"%s\" ..."
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save packages selection"
-msgstr "Tallenna pakettien valinta"
+#: ../../printer/printerdrake.pm_.c:2731
+msgid "Installing Foomatic..."
+msgstr "Asennan Foomatic..."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Actions"
-msgstr "/T_oiminnot"
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr "Tulostimen asetukset"
-# mat
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Remove the last item"
-msgstr "Poista viimeinen alkio"
+#: ../../printer/printerdrake.pm_.c:2810
+msgid "Preparing Printerdrake..."
+msgstr "Valmistellaan PrinterDrake..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
-"Palautettava käyttäjälista (vain uusin päivä kutakin käyttäjää kohti on "
-"tärkeä)"
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+msgid "Configuring applications..."
+msgstr "Asetetaan ohjelmia..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
-msgstr "Yhtäkään verkkokäynnistyskuvaa ei ole luotu!"
+#: ../../printer/printerdrake.pm_.c:2845
+msgid "Would you like to configure printing?"
+msgstr "Haluatko asettaa tulostuksen?"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "käytä pptp:tä"
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
+msgstr "Tulostusjärjestelmä: "
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
+#: ../../printer/printerdrake.pm_.c:2915
+msgid ""
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
-"Valitse mitkä palvelut käynnistetään automaattisesti koneen käynnistyksen "
-"yhteydessä"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check files/directories writable by everybody"
-msgstr "Tarkistetaan sallivatko tiedostot/hakemistot kirjoituksen kaikille."
+#: ../../printer/printerdrake.pm_.c:2916
+msgid ""
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; or to view information about "
+"it."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Opi kuinka käyttää tätä tulostinta"
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
+msgstr ""
+"Päivitä tulostinlistaa (näytä kaikki saatavilla olevat CUPS-etätulostimet)"
# Asennuksen sivuvalikko
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configure the network now"
-msgstr "Aseta verkkoyhteys nyt"
+#: ../../printer/printerdrake.pm_.c:2960
+msgid "Change the printing system"
+msgstr "Muuta tulostusjärjestelmä"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Valitse peilipalvelin josta paketit haetaan"
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+msgid "Normal Mode"
+msgstr "Perustila"
+
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+msgid "Do you want to configure another printer?"
+msgstr "Haluatko asettaa toisen tulostimen?"
+
+#: ../../printer/printerdrake.pm_.c:3211
+msgid "Modify printer configuration"
+msgstr "Muokkaa tulostimen asetuksia"
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:3213
#, c-format
msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
-"FAT-tiedostojärjestelmän koon muuttaja ei osaa käsitellä osiotasi,\n"
-"seuraava virhe tapahtui: %s"
-
-# mat
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Size: "
-msgstr "Koko: "
+"Tulostin %s\n"
+"Mitä haluat muokata tästä tulostimesta?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "Mille sektorille haluat siirtää?"
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
+msgstr "Tee se!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahamas"
-msgstr "Bahama"
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+msgid "Printer connection type"
+msgstr "Tulostusyhteyden tyyppi"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Do you want to click on this button?"
-msgstr "Haluatko klikata tätä painiketta?"
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+msgid "Printer name, description, location"
+msgstr "Tulostimen nimi, kuvaus, paikka"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Manual configuration"
-msgstr "Manuaalinen asettaminen"
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
+msgstr "Tulostimen valmistaja, malli, ajuri"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "search"
-msgstr "etsi"
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
+msgstr "Tulostimen valmistaja, malli"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Paketti lataa valitun näppäinkartan /etc/sysconfig/keyboard\n"
-"tiedoston asetusten mukaisesti. Asetukset voidaan valita kbdconfig "
-"työkalulla.\n"
-"Tämä tulisi ottaa käyttöön lähes kaikissa järjestelmissä."
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
+msgstr "Aseta tämä tulostin oletukseksi"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (näytönohjaimen ajurin asennus)"
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Lisää tämä tulostin Star Office/OpenOffice.org/GIMP käyttöön."
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "Zeroconf konenimi ei saa sisältää . (pistettä)."
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Poista tämä tulostin Star Office/OpenOffice.org/GIMP käytöstä."
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr " Hyväksy / Hylkää icmp echo viestit."
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+msgid "Print test pages"
+msgstr "Tulosta testisivut"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Syslog is the facility by which many daemons use to log messages\n"
-"to various system log files. It is a good idea to always run syslog."
-msgstr ""
-"Syslog on tapa jolla monet palvelut kirjoittavat viestinsä talteen\n"
-"useisiin lokitiedostoihin. On järkevää käyttää syslog-ohjelmaa."
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+msgid "Know how to use this printer"
+msgstr "Tiedä kuinka käyttää tätä tulostinta"
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown/Others"
-msgstr "Tuntematon/Muut"
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+msgid "Remove printer"
+msgstr "Poista tulostin"
-#: ../../standalone/drakxtv:1
+#: ../../printer/printerdrake.pm_.c:3282
#, c-format
-msgid "No TV Card detected!"
-msgstr "Yhtäkään TV-korttia ei löydetty."
+msgid "Removing old printer \"%s\"..."
+msgstr "Poistetaan vanha tulostin \"%s\" ..."
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Options"
-msgstr "Optiot"
+#: ../../printer/printerdrake.pm_.c:3307
+msgid "Default printer"
+msgstr "Oletustulostin"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3308
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Tulostin \"%s\" on asetettu oletustulostimeksi."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
-"Olet asettamassa OKI laser wintulostinta. Nämä tulostimet käyttävät hyvin "
-"erikoista kommunikointiprotokollaa ja sen takia ne toimivat ainoastaan "
-"liitettynä ensimmäiseen rinnakkaisporttiin. Jos tulostimesi on liitetty "
-"toiseen porttiin tai tulostuspalvelimeen sinun täytyy liittää tulostin "
-"ensimmäiseen rinnakkaisporttiin ennen kuin tulostat testisivun. Muussa "
-"tapauksessa tulostin ei toimi. Ajuri ei välitä asettamastasi yhteystavasta."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr "Prosessorin sukupolvi (esim.: Pentium III on 8, ...)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detected"
-msgstr "Automaattinen tunnistus"
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Lisäätään tulostin Star Office/OpenOffice.org/GIMP käyttöön."
-#: ../../standalone/drakpxe:1
+#: ../../printer/printerdrake.pm_.c:3312
#, 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)."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"Olet aikeissa asettaa tietokoneesi asentamaan PXE palvelimen toimimaan "
-"DHCP-\n"
-"palvelimena, ja TFTP palvelimen rakentaaksesi asennuspalvelimen.\n"
-"\n"
-"Tällä ominaisuudella muut paikallisverkossa olevat tietokoneet voidaan \n"
-"asentaa käyttämällä tämän palvelimen tietoja.\n"
-"\n"
-"Varmista että olet määrittänyt verkkosi/Internetyhteytesi käyttämällä "
-"drakconnect:a ennen kuin jatkat.\n"
-"\n"
-"Huomaa: tarvitset erityisen verkkokortin pystyttääksesi oman paikallisverkon."
+"Tulostin \"%s\" lisättiin Star Office/OpenOffice.org/GIMP käytöön "
+"onnistuneesti."
-#: ../../harddrake/sound.pm:1
+#: ../../printer/printerdrake.pm_.c:3313
#, 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 "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-"OSS (Open Sound System, eli avoin äänijärjestelmä) oli ensimmäinen ääni-"
-"API.\n"
-"Se on käyttöjärjestelmäriippumaton ääni-API (se on saatavilla useimmille\n"
-"unix-järjestelmille), mutta se aika perustasoa ja rajoitettu API.\n"
-"Sen lisäksi, OSS-ajureissa kaikki 'kehittävät pyörän uudelleen'.\n"
-"\n"
-"ALSA (Advanced Linux Sound system, eli Linuxin edistynyt äänijärjestelmä) "
-"on\n"
-"modulaarinen arkkitehtuuri, joka tukee suurta määrää ISA, USB ja PCI "
-"kortteja.\n"
-"\n"
-"Se tarjoaa myös paljon korkeamman tason API:n kuin OSS.\n"
-"\n"
-"Käyttääksesi ALSAa, voit käyttää yhtä näistä:\n"
-"- vanha OSS-yhteensopiva api.\n"
-"- uusi ALSA-api, joka tarjoaa useita parannettuja ominaisuuksia,\n"
-"mutta vaatii ALSA-kirjaston käyttöä.\n"
+"Tulostin \"%s\" lisääminen Star Office/OpenOffice.org/GIMP käytöön "
+"epäonnistui."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Ei vapaata tilaa 1 Mt:n käynnistyslohkoa varten! Asennusta jatketaan, mutta "
-"käynnistääksesi järjestelmän sinun pitää luoda käynnistyslohko-osio "
-"DiskDrake:ssa."
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Poistetaan tulostin Star Office/OpenOffice.org/GIMP käytöstä."
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3317
#, c-format
msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-"Valitse tulostin jota haluat asettaa, tai syötä laitteen tai tiedoston nimi "
-"syöteriville"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
-msgstr "Kieltäydy"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
-msgstr "PAIKALLINEN"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
-msgstr "HFS"
+"Tulostin \"%s\" poistettiin Star Office/OpenOffice.org/GIMP käytöstä "
+"onnistuneesti."
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-"HardDrake etsii uutta laitteistoa ja mahdollisesti konfiguroi\n"
-"uuden/muuttuneen laitteiston."
+"Tulostin \"%s\" poistaminen Star Office/OpenOffice.org/GIMP käytöstä "
+"epäonnistui."
-#: ../../fs.pm:1
+#: ../../printer/printerdrake.pm_.c:3325
#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Luon ja alustan tiedostoa %s"
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Haluatko todella poistaa tulostimen \"%s\"?"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:3329
#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
-msgstr "jos asetettu, tarkistetaan 'sgid' tiedostojen lisäykset/poistamiset."
+msgid "Removing printer \"%s\"..."
+msgstr "Poistetaan tulostin \"%s\" ..."
-#: ../../printer/printerdrake.pm:1
+#: ../../raid.pm_.c:35
#, 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"
-msgstr ""
-"HP LaserJet 1000 tulostimeen pitää lähettää sen firmware-koodi kun sitä on "
-"käynnistetty. Lataa Windows ajuri-pakettia HP:n kotisivulta (ajuri-cd-"
-"levyllä oleva firmware ei toimi) ja purkaa itsepurkautuva '.exe' tiedostoa "
-"käyttäen 'unzip' työkalu ja etsi 'sihp1000.img' tiedosto. Kopioi tämä "
-"tiedosto hakemistoon '/etc/printer'. Sieltä automattinen lataamisskripti "
-"löytää sen ja lataa sen tulostimelle joka kerta kun sitä on liitetty ja "
-"käynnistetään.\n"
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "En voi lisätä osiota _alustetulle_ RAID:lle md%d"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "Valitse olemassaoleva LVM johon lisätään"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
+msgstr "mkraid epäonnistui"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "xfs restart"
-msgstr "xfs:n uudelleenkäynnistys"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid epäonnistui (ehkä raidtools puuttuvat?)"
-#: ../../printer/printerdrake.pm:1
+#: ../../raid.pm_.c:153
#, c-format
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "Ei riittävästi osioita RAID tasolle %d\n"
+
+#: ../../security/main.pm_.c:36
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
+"\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
+"\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\n"
+"\n"
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
+"\n"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
-"Tulostin \"%s\" on jo olemassa,\n"
-"haluatko todellakin korvata olemassa olevat asetukset?"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Käytä kuvanlukijoita koneissa: "
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Turvataso:"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
-msgstr "Poista valinta kaikista"
+#: ../../security/main.pm_.c:77
+#, fuzzy, c-format
+msgid " (default value: %s)"
+msgstr " (oletus: %s)"
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "ei vapaita osioita"
+#: ../../security/main.pm_.c:113
+msgid "Security Alerts:"
+msgstr "Turvavaroitukset:"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Management \n"
-msgstr "Tulostinhallinta \n"
+#: ../../security/main.pm_.c:115
+msgid "Security Administrator:"
+msgstr "Turvallisuus Ylläpitäjä:"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Verkkoalueen nimiratkaisija"
+#: ../../security/main.pm_.c:128
+msgid "Network Options"
+msgstr "Verkko-optiot"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
-msgstr "Salausavain (uudelleen)"
+#: ../../security/main.pm_.c:128
+msgid "System Options"
+msgstr "Järjestelmä-optiot"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Samba-jaon nimi puuttuu!"
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
-msgstr "True Type -asennus valmis"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
+msgstr "Jaksottaiset tarkistukset"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detection in progress"
-msgstr "Tunnistus käynnissä ..."
+#: ../../security/main.pm_.c:191
+msgid "Please wait, setting security level..."
+msgstr "Odota hetki, asetetaan turvatasoa..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Käännä koko ydin -->"
+#: ../../security/main.pm_.c:197
+msgid "Please wait, setting security options..."
+msgstr "Odota hetki, asetetaan turva-optiot..."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "modem"
-msgstr "modeemi"
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr "Käynnistä ALSA (Advanced Linux Sound Architecture) äänijärjestelmä"
-# mat
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "Tervetuloa %s:n"
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
+msgstr "Anacron on jaksottainen komentojen ajastaja."
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../services.pm_.c:21
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"
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003 MandrakeSoft.\n"
-"Tämä ohjelma on ilmainen ja voit levittää sitä GNU GPL lisenssin "
-"mukaisesti.\n"
-"\n"
-"Käyttö: \n"
-
-# mat
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Aseta moduulien päivityslevyke asemaan %s"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
-msgstr "Bootsplash"
+"apmd:ta käytetään valvomaan paristojen tilaa ja raportoimaan siitä syslogin\n"
+"kautta. apmd:tä voidaan myös käyttää sulkemaan kone patterien ollessa tyhjiä."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:23
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
+"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 ""
-"Seuraava tulostin:\n"
-"\n"
-"%s%s\n"
-"on kytketty suoraan koneeseesi"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Tulostimen jako koneissa/verkoissa: "
+"Ajaa komentoja määrätyillä ajanhetkillä, jotka on määritelty at-komennolla.\n"
+"Ajaa myös eräajoja, kun järjestelmän kuormitus on riittävän matala."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:25
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>\". "
+"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 ""
-"\n"
-"\"%s\" komento tarjoaa myös mahdollisuuden muokata asetukset erityiselle "
-"tulostustyölle. Voit yksinkertaisesti lisätä halutut asetukset "
-"komentoriville, esim.: \"%s <tiedosto>\". "
-
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "DrakClock"
-msgstr "Drakbackup"
+"cron on UNIX:n perusohjelma joka ajaa määriteltyjä ohjelmia määrätyillä\n"
+"ajanhetkillä. vixie cron lisää monia omianisuuksia verrattuna normaaliin\n"
+"UNIX:n cron ohjelmaan, kuten paremman turvallisuuden ja laajemmat asetukset."
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:28
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."
+"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 ""
-"Joissakin tapauksissa %s-ajuri tarvitsee lisätietoja toimiakseen kunnolla,\n"
-"joskin tavallisesti se toimii hyvin ilmankin. Haluaisitko antaa ajurille\n"
-"lisämääreitä vai annatko sen itse etsiä tarvitsemansa tiedot? Joskus haku\n"
-"voi jumiuttaa tietokoneen, mutta se ei pitäisi aiheuta vahinkoa."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "Ei oikein nimetty CD. CD:n nimike on: %s."
+"GPM lisää hiirituen tekstipohjaisiin Linux-sovelluksiin kuten Midnight\n"
+"Commander. GPM mahdollistaa myös leikkaa/liimaa toiminnot hiirellä,\n"
+"ja sisältää tuen valikoille konsolissa."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:31
msgid ""
-"\n"
-"- Daemon, %s via:\n"
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
msgstr ""
-"\n"
-"- Demoni (%s) sisältää :\n"
+"HardDrake etsii uutta laitteistoa ja mahdollisesti konfiguroi\n"
+"uuden/muuttuneen laitteiston."
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "Kuuba"
+#: ../../services.pm_.c:33
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+msgstr ""
+"Apache on WWW-palvelin. Palvelinta käytetään jakamaan HTML-\n"
+"tiedostoja ja ajamaan CGI-ohjelmia."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr "Lokakuu"
+#: ../../services.pm_.c:34
+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 ""
+"Internet pääpalvelin (yleensä inetd) käynnistää useita eri\n"
+"internet palveluita tarpeen mukaan. Palvelin käynnistää useita\n"
+"palveluita, kuten telnet, ftp, rsh ja rlogin. inetd:n poistaminen\n"
+"poistaa myös nämä palvelut käytöstä."
-#: ../../lang.pm:1
-#, c-format
-msgid "Belize"
-msgstr "Belize"
+#: ../../services.pm_.c:38
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
+"Käynnistä pakettifiltteri Linux 2.2-sarjalle, jos haluat\n"
+"pystyttää palomuurin suojaamaan konettasi verkkohyökkäyksiltä."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Etsii uusia tulostimia..."
+#: ../../services.pm_.c:40
+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 ""
+"Paketti lataa valitun näppäinkartan /etc/sysconfig/keyboard\n"
+"tiedoston asetusten mukaisesti. Asetukset voidaan valita kbdconfig "
+"työkalulla.\n"
+"Tämä tulisi ottaa käyttöön lähes kaikissa järjestelmissä."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
-msgstr " (multi-sessio)"
+#: ../../services.pm_.c:43
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
+msgstr ""
+"Automaattinen ytimen otsikkotiedoston korjaus /boot-hakemistossa "
+"tiedostolle\n"
+"/usr/include/linux/{autoconf,versio}.h"
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
-msgstr "Ytimen käynnistysviive"
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr ""
+"Automaattinen uuden laitteiston havaitseminen ja asettaminen "
+"käynnistettäessä."
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../services.pm_.c:46
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."
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
msgstr ""
-"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit vain XFree %s:"
-"ssa.\n"
-"Korttisi on tuettu myös XFree %s:ssa, jossa on mahdollisesti parempi 2D-tuki."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Activate/Disable daily security check."
-msgstr "Ota käyttöön / poista käytöstä päivittäiset turvallisuustarkistukset."
+"Linuxconf järjestää joskus aikaa erilaisten tehtävien hoitamiseen\n"
+"käynnistyksen aikana pitääkseen yllä järjestelmän asetuksia."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-CD-ROM.\n"
+#: ../../services.pm_.c:48
+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 ""
+"lpd on tulostuspalvelin, jonka lpr ohjelma vaatii toimiakseen.\n"
+"lpd on palvelin joka jakaa tulostustöitä kirjoittimille."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
-msgstr "Ota käyttöön libsafe jos se löytyy järjestelmästä."
+#: ../../services.pm_.c:50
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
+"Linux Virtual Server, jonka avulla voidaan rakentaa suuritehoinen\n"
+"korkean käytettävyyden palvelin."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX-Osiointivelho löysi seuraavat ratkaisut:"
+#: ../../services.pm_.c:52
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
+msgstr ""
+"named (BIND) on nimipalvelin (DNS) jota käytetään muunnettaessa koneiden "
+"verkkonimiä IP-osoitteiksi."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "Unkari"
+#: ../../services.pm_.c:53
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
+msgstr ""
+"Liittää ja irroittaa NFS (Network File System), SMB (Lan\n"
+"Manager/Windows) ja NCP (NetWare) liitospaikat."
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../services.pm_.c:55
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
-"Valitse palveluntarjoajasi.\n"
-"Jos se ei ole listassa, valitse `Ei listattu'"
+"Aktivoi/Poistaa kaikki verkkoliittymät jotka on asetettu\n"
+"käynnistyksessä."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Automaattinen kellon synkronisointi (käyttäen NTP:tä)"
+#: ../../services.pm_.c:57
+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 ""
+"NFS on yleinen protokolla tiedostojen jakoon TCP/IP-\n"
+"verkoissa. Tämä palvelu mahdollistaa NFS-palvelimen\n"
+"käynnistyksen, jakoa ohjataan tiedostosta /etc/exports."
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Käytä Windows osiotani"
+#: ../../services.pm_.c:60
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
+msgstr ""
+"NFS on yleinen protokolla tiedostojen jakoon TCP/IP-\n"
+"verkoissa. Tämä palvelu mahdollistaa NSF-tiedostolukot."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
-msgstr "8 Mt"
+#: ../../services.pm_.c:62
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+"Asettaa käynnistyksessä numlock-näppäinlukitsimen päälle\n"
+"sekä konsolille että XFree:lle."
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Server"
-msgstr "LDAP-palvelin"
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr "Tuki OKI 4w -yhteensopiville Windows-tulostimille."
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:65
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 ""
-"PCMCIA tukea käytetään yleensä kannettavissa ethernet- ja modeemi-\n"
+"PCMIA tukea käytetään yleensä kannettavissa ethernet- ja modeemi-\n"
"korttien tukemiseen. Palvelu ei käynnisty ellei sitä ole asetettu, joten\n"
"sen voi asentaa myös koneisiin jotka eivät sitä tarvitse."
-# Asennuksen sivuvalikko
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Choose your country"
-msgstr "Valitse maasi"
+#: ../../services.pm_.c:68
+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 ""
+"Portmapper hallitsee RPC-yhteyksiä, joita käyttävät esimerkiksi\n"
+"NFS ja NIS-protokollat. Portmap-palvelin on oltava käynnissä\n"
+"järjestelmissä jotka haluavat tarjota näitä protokollia."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:71
msgid ""
-"\n"
-"- System Files:\n"
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
msgstr ""
-"\n"
-"- Järjestelmätiedostot:\n"
+"Postfix on sähköpostin siirtoagentti, eli ohjelma joka välittää postia "
+"koneelta toiselle."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
-msgstr "Itsenäisiä työkaluja"
+#: ../../services.pm_.c:72
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
+"Tallentaa ja palauttaa järjestelmän satunnaislukualtaan, tämä parantaa\n"
+"satunnaislukujen laatua."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Where"
-msgstr "Missä"
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
+msgstr ""
+"Määrää raakalaitteet lohkolaitteiksi (kuten kiintolevyn\n"
+"osiot) tietyn tyyppisten sovellusten (esim. Oracle) käyttöön"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "but not matching"
-msgstr "mutta ei täsmää"
+#: ../../services.pm_.c:76
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
+msgstr ""
+"Routed-palvelin mahdollistaa automaattiset IP-reititystaulun päivitykset\n"
+"RIP-protokollalla. Vaikka RIP-protokolla on paljon käytetty pienissä "
+"verkoissa,\n"
+"monimutkaisemmat verkot vaativat parempia reititysprotokollia."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../services.pm_.c:79
msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
msgstr ""
-"Täällä voit valita vaihtoehtoisen ajurin (OSS tai ALSA) äänikortillesi (%s)."
+"Rstat-protokolla mahdollistaa verkkokäyttäjille\n"
+"eri koneiden tilatietojen haun."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Asetan PCMCIA kortteja..."
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"Rusers-protokolla verkon käyttäjille mahdollisuuden tunnistaa, ketkä\n"
+"ovat sisällä eri koneissa."
-#: ../../common.pm:1
-#, c-format
-msgid "kdesu missing"
-msgstr "kdesu puuttuu"
+#: ../../services.pm_.c:83
+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 ""
+"Rwho-protokollalla etäkäyttäjät voivat listata kaikki koneella\n"
+"olevat käyttäjät (vastaa fingeriä)."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s tarvitsee käyttäjänimen...\n"
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
+msgstr "Käynnistä äänijärjestelmä tietokoneessasi"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
-msgstr "Salausavain"
+#: ../../services.pm_.c:86
+msgid ""
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
+msgstr ""
+"Syslog on tapa jolla monet palvelimet kirjottavat viestinsä talteen\n"
+"useisiin lokitiedostoihin. On järkevää käyttää syslog-ohjelmaa."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr "Lataa usb-laitteiden ajurit."
-#: ../../keyboard.pm:1
-#, 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."
+#: ../../services.pm_.c:89
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+msgstr "Käynnistää X-kirjasinpalvelimen (pakollinen, jos haluat ajaa XFree:tä)"
+
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
msgstr ""
-"Tämä asetus otetaan käyttöön asennuksen jälkeen.\n"
-"Asennuksen aikana sinun pitää käyttää oikea Control-\n"
-"painiketta vaihtaaksesi eri näppäimistöasettelujen välillä."
+"Valitse mitkä palvelut käynnistetään automaattisesti koneen käynnistyksen "
+"yhteydessä"
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "Joulusaari"
+#: ../../services.pm_.c:127
+msgid "Printing"
+msgstr "Tulostus"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Automatic"
-msgstr "Automaattinen IP"
+#: ../../services.pm_.c:128
+msgid "Internet"
+msgstr "Internet"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Järjestelmälataajan asennus epäonnistui. Seuraava virhe tapahtui:"
+#: ../../services.pm_.c:131
+msgid "File sharing"
+msgstr "Tiedostojen jako"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "EIDE/SCSI-kanava"
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+msgid "System"
+msgstr "Järjestelmä"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Aseta tämä tulostin oletukseksi"
+#: ../../services.pm_.c:138
+msgid "Remote Administration"
+msgstr "Etähallinta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Tarkista että %s on oikea hakemisto"
+#: ../../services.pm_.c:146
+msgid "Database Server"
+msgstr "Tietokantapalvelin"
-#: ../../install_interactive.pm:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "partition %s"
-msgstr "osio %s"
+msgid "Services: %d activated for %d registered"
+msgstr "Palvelut: %d aktivoitu %d:stä rekisteröidystä"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Paranoid"
-msgstr "Vainoharhainen"
+#: ../../services.pm_.c:191
+msgid "Services"
+msgstr "Palvelut"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS"
-msgstr "NIS"
+#: ../../services.pm_.c:203
+msgid "running"
+msgstr "käynnissä"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- Poista käyttäjä"
+#: ../../services.pm_.c:203
+msgid "stopped"
+msgstr "pysähtynyt"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Location on the bus"
-msgstr "Sijainti väylässä"
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
+msgstr "Palvelut ja demonit"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No printer found!"
-msgstr "Tulostinta ei löydetty!"
+#: ../../services.pm_.c:222
+msgid ""
+"No additional information\n"
+"about this service, sorry."
+msgstr ""
+"Ei lisätietoja\n"
+"tälle palvelulle, valitan."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
-msgstr "laitteen valmistaja"
+#: ../../services.pm_.c:229
+msgid "On boot"
+msgstr "Käynnistyksen yhteydessä"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Erase entire disk"
-msgstr "Tyhjennä koko levy"
+#: ../../services.pm_.c:241
+msgid "Start"
+msgstr "Käynnistä"
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Default)"
-msgstr " (Oletus)"
+#: ../../services.pm_.c:241
+msgid "Stop"
+msgstr "Pysäytä"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Automatic reconfiguration"
-msgstr "Automaattinen uudelleenasetus"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Kiitos siitä, että olet valinnu Mandrake Linux 9.0"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Receiving Speed:"
-msgstr "Vastaanottonopeus:"
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
+msgstr "Tervetuloa Avoimen Lähdekoodin maailmaan"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
-msgstr "Turks ja Caicossaaret"
+#: ../../share/advertising/01-thanks.pl_.c:11
+msgid ""
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Ip"
-msgstr "Ei lp"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
+msgstr ""
-#: ../../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
-#, c-format
-msgid "<- Previous"
-msgstr "<- Edellinen"
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr "Haluatko tietää enemmän Avoimen Lähdekoodin yhteiskunnasta?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Transfer Now"
-msgstr "Siirrä nyt"
+#: ../../share/advertising/02-community.pl_.c:11
+msgid ""
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password and network authentication methods"
-msgstr "Aseta pääkäyttäjään (root) salasana ja tunnistustavat"
+#: ../../share/advertising/03-internet.pl_.c:9
+msgid "Get the most from the Internet"
+msgstr "Ota kaikki irti Internetistä"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "Vaihda tasaisen ja ryhmäjärjestyksen välillä"
+#: ../../share/advertising/03-internet.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Themes"
-msgstr "Teemat"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "Optiot: %s"
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr "Paina multimedia rajoihinsa!"
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-"Tällä hetkellä käytössä oleva järjestelmälataaja on %s.\n"
-"Valitse Aseta käynnistääksesi asennusvelhon."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "OKI wintulostimen asettaminen"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Pelit"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
-msgstr "Saint Helena"
+#: ../../share/advertising/05-games.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Rinnakkaisliitäntä #%s"
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+msgid "Mandrake Control Center"
+msgstr "Mandraken hallintapaneeli"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Security Level"
-msgstr "Turvataso"
+#: ../../share/advertising/06-mcc.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../share/advertising/07-desktop.pl_.c:9
+msgid "User interfaces"
+msgstr "Käyttöliittymät"
+
+#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
-"Joitain vaiheita ei ole saatettu loppuun.\n"
-"\n"
-"Haluatko todella lopettaa?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "Sudan"
+#: ../../share/advertising/08-development.pl_.c:9
+msgid "Development simplified"
+msgstr "Yksinkertaistettu ohjelmakehitys"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "Puola (qwertz järjestys)"
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr "Mandrake Linux 9.1 on ratkaiseva kehitys alustana"
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
-msgstr "Syyria"
+#: ../../share/advertising/08-development.pl_.c:11
+msgid ""
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr "Muuta koneesi luotettavaksi palvelimeksi"
+
+#: ../../share/advertising/09-server.pl_.c:10
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?"
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
-"Onko tulostimesi HP tai Sony monitoimilaite (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 kuvanlukijalla, DeskJet 450, Sony IJP-V100), HP "
-"PhotoSmart tai HP LaserJet 2200?"
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
-#, c-format
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr "Optimoi turvallisuutesi"
+
+#: ../../share/advertising/10-mnf.pl_.c:10
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"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-"Tervetuloa %s k~^Dytt~^Tj~^Drjestelm~^Dnvalitsijaan!\n"
-"\n"
-"Valitse k~^Dytt~^Tj~^Drjestelm~^D yll~^D olevasta listasta tai\n"
-"odota %d sekuntia oletusk~^Dynnistyst~^D.\n"
-"\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "Portugali"
+#: ../../share/advertising/10-mnf.pl_.c:11
+msgid ""
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
-msgstr "Loopback tiedostonimi: "
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr "Tämä tuote löytyy MandrakeStore webbisivustosta"
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "DNS palvelimen osoite pitää olla muotoa 1.2.3.4"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr "Virallinen MandrakeSoft kauppa"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Control key"
-msgstr "Vasen Control näppäin"
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
-msgstr "Serbia"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr "Strateegiset yhteistyökumppanit"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Newzealand"
-msgstr "Uusi-Seelanti"
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
-msgstr "Tämän hakemiston pitäisi olla juuritiedostojärjestelmässä"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
-msgstr "verkon yli"
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
+msgid ""
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
-msgstr "CapsLock näppäin"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr ""
-# Asennuksen sivuvalikko
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "Lataajan asetus"
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
+msgid ""
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Valitse näytönohjaimen muistin määrä"
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+msgid "Become a MandrakeExpert"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
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))."
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"Ota käyttöön / poista käytöstä crontab ja at käyttäjille.\n"
-"\n"
-"Laita hyväksytyt käyttäjät tiedostoihin '/etc/cron.allow' ja '/etc/at."
-"allow'.\n"
-"(katso man at(1) ja crontab(1))."
-#: ../../standalone.pm:1
-#, c-format
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
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."
+"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 ""
-"[OPTIOT]\n"
-"Verkko & Internet yhteys- ja seurantasovellus\n"
-"\n"
-"--defaultintf liityntä : näytä tämä liityntä oletuksena.\n"
-"--connect : avaa yhteyden Internetiin jos sitä ei ole.\n"
-"--disconnect : sulkee yhteyden Internetiin jos se on olemassa.\n"
-"--force : käytä (dis)connect:in kanssa : pakota yhteyden avaus/sulkeminen.\n"
-"--status : palauttaa 1 jos yhteys on avattu, muuten 0, ja poistuu.\n"
-"--quiet : ei-interaktiivinen tila. Käytetään (dis)connect:in kanssa."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
-msgstr "Dynaaminen IP-osoiteavaruus:"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert Corporate"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "LVM:n nimi?"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr ""
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "Joitakin laitteita luokasta \"%s\" poistettiin:\n"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Löysin %s %s liitännät"
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Install"
-msgstr "Asennuksen jälkeiset toiminnot"
+#: ../../share/advertising/17-mdkclub.pl_.c:10
+msgid ""
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The internal domain name"
-msgstr "Sisäinen verkkoalueen nimi"
+#: ../../standalone.pm_.c:21
+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 ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "Kortin IRQ"
+#: ../../standalone.pm_.c:40
+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 name.\n"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "logdrake"
+#: ../../standalone.pm_.c:51
+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.pm:1
-#, c-format
+#: ../../standalone.pm_.c:57
msgid ""
"Font Importation and monitoring "
"application \n"
@@ -13973,7247 +9435,4293 @@ msgid ""
" : name_of_application like so for staroffice \n"
" : and gs for ghostscript for only this one."
msgstr ""
-"Kirjasinten tuonti- ja valvontasovellus\n"
-"--windows_import : tuo kaikilta käytettävissä olevilta windows-osioilta.\n"
-"--xls_fonts : näytä kaikki olemassa olevat xls-kirjasimet\n"
-"--strong : vahva kirjasinten verifiointi.\n"
-"--install : hyväksy mikä tahansa kirjasin ja hakemisto.\n"
-"--uninstall : poista mikä tahansa kirjasin tai kirjasinhakemisto.\n"
-"--replace : korvaa kaikki olemassaolevat kirjasimet.\n"
-"--application : 0 ei ohjelmistoa.\n"
-" : 1 kaikki olemassaolevat ohjelmistot tuettu.\n"
-" : ohjelmiston_nimi, eli so vastaa StarOfficea\n"
-" : ja gs vastaa GhostScriptiä."
-
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Valitse levykeasema jolla luot käynnistyslevykkeen"
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr "LILO tekstipohjaisella valikolla"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
+#: ../../standalone.pm_.c:68
+msgid ""
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Kaikki (ei palomuuria)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
-msgstr "Sinun täytyy määritellä ydin"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", monikäyttölaite USB:ssa"
-
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Do"
-msgstr "Aseta"
+#: ../../standalone.pm_.c:70
+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)"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Yhdistän peilipalvelimeen hakeakseni uusimman pakettilistan..."
+#: ../../standalone.pm_.c:82
+#, fuzzy
+msgid "[keyboard]"
+msgstr "Näppäimistö"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "Liettua AZERTY (vanha)"
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasilia"
+#: ../../standalone.pm_.c:84
+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 ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
-msgstr "koneen/verkon IP-osoite:"
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone.pm_.c:94
msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
+"[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 ""
-"edistymispalkin y-kordinaatti\n"
-"(vasen yläkulma)"
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System installation"
-msgstr "Järjestelmän asennus"
+#: ../../standalone.pm_.c:99
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint Vincent ja Grenadiinit"
+#: ../../standalone.pm_.c:100
+msgid ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
+msgstr ""
-#: ../../security/help.pm:1
+#: ../../standalone.pm_.c:114
#, c-format
-msgid "Allow/Forbid reboot by the console user."
-msgstr "Salli / Estä 'reboot' konsolin käyttäjille."
+msgid ""
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Open"
-msgstr "/Tiedosto/_Avaa"
+#: ../../standalone.pm_.c:168
+msgid "Installing packages..."
+msgstr "Asennan paketteja..."
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "auto_install.cfg tiedoston sijainti"
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Kirjaudu ulos ja käytä sitten Ctrl-Alt-Askelpalautin"
-#: ../../any.pm:1
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "Open Firmware Delay"
-msgstr "Vapaa Firmware -viive"
+msgid "Please relog into %s to activate the changes"
+msgstr "Kirjaudu uudelleen %s:een aktivoidaksesi muutokset"
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
-msgstr "Unkari"
+#: ../../standalone/drakTermServ_.c:239
+msgid "Mandrake Terminal Server Configuration"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "New Zealand"
-msgstr "Uusi-Seelanti"
+#: ../../standalone/drakTermServ_.c:253
+msgid "Enable Server"
+msgstr "Ota palvelin käyttöön"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Color configuration"
-msgstr "Väriasetukset"
+#: ../../standalone/drakTermServ_.c:260
+msgid "Disable Server"
+msgstr "Poista palvelin käytöstä"
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Jotkin rajoitukset on voimassa ja enemmän automaattisia \n"
-"tarkistuksia suoritetaan joka yö."
+#: ../../standalone/drakTermServ_.c:268
+msgid "Start Server"
+msgstr "Käynnistä Palvelin"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "please choose the date to restore"
-msgstr "Valitse päivämäärä, johon tiedon palauttaminen tehdään"
+#: ../../standalone/drakTermServ_.c:275
+msgid "Stop Server"
+msgstr "Pysäytä Palvelin"
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
-msgstr "Alankomaiden Antillit"
+#: ../../standalone/drakTermServ_.c:283
+msgid "Etherboot Floppy/ISO"
+msgstr "Etherboot Levyke/ISO"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr "Vaihdan ext2:sta ext3:een"
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
+msgstr "Verkko Käynnistys Kuvat"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng"
-msgstr "LPRng"
+#: ../../standalone/drakTermServ_.c:294
+msgid "Add/Del Users"
+msgstr "Lisää/Poistaa Käyttäjiä"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Selaa uuteen palautus säilytykseen."
+#: ../../standalone/drakTermServ_.c:299
+msgid "Add/Del Clients"
+msgstr "Lisää/Poista Asiakkaita"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:328
+#, fuzzy
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\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 ""
+" updates 2002 MandrakeSoft, Tekijä: Stew Benedict <sbenedict\\@mandrakesoft."
+"com>"
+
+#: ../../standalone/drakTermServ_.c:332
+msgid ""
"\n"
-"Tervetuloa Tulostimen asetusvelhoon\n"
"\n"
-"Tämä velho sallii sinua asentamaan paikallisen tai etätulostimen jota "
-"voidaan käyttää tästä koneesta ja myös verkon muista koneista.\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
-"Sinulta kysytään tarvittavia tietoja tulostimen asettamiseen, ja sinulle "
-"annetaan pääsy kaikkiin tulostinajureihin, niiden asetuksiin ja "
-"yhteystyyppeihin."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and %d unknown printers"
-msgstr " ja %d tuntematonta tulostinta "
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
msgstr ""
-"Varhaisimmista Intel Pentium prosessorien liukulukuyksiköstä löytyy virhe, "
-"joka heikentää tarkkuutta kun suoritetaan liukuluvun jakoa (FDIV)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-"Varmuuskopion kokoraja ylitetty!\n"
-"%d Mt käytetty mutta %d Mt varattu."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "ISDN PCI-korttia ei löydetty. Valitse yksi seuraavasta ruudusta."
-
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
-msgstr "Gt"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
-msgstr "Anna käyttäjätunnus"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
-msgstr "Mahdollista CD-käynnistys?"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Simply reboot"
-msgstr ""
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid " enter `void' for void entry"
-msgstr " kirjoita 'void' jos haluat tyhjän tietueen"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
-msgstr "Varmistukset irroitettavissa medioissa - Käytä Catalog palauttaaksesi"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
-msgstr "Tammikuu"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password history length"
-msgstr "Salasanahistorian pituus"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Winmodem connection"
-msgstr "Winmodeemi-yhteys"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:365
msgid ""
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\n"
"\n"
-"Congratulations, your printer is now installed and configured!\n"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\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 ""
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
"\n"
-"Onnittelut, tulostimesi on nyt asennettu ja asetettu!\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
"\n"
-"Voit tulostaa käyttämällä \"Tulosta\" toimintoa ohjelmassasi (yleensä "
-"\"Tiedosto\" valikossa).\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
"\n"
-"Jos haluat lisätä, poistaa tai uudelleennimetä tulostimen, tai jos haluat "
-"muuttaa oletusasetuksia (paperilähde, tulostuslaatu, ...), käynnistä "
-"Mandraken Ohjauskeskus, valitse \"Laitteisto\" ja sitten \"Tulostin\"."
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "Nyt voit käyttää xavtv:a (X-ikkunointijärjestelmässäsi!) !\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Sivutustilaa ei ole riittävästi, suurenna sitä"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "%s on %s"
-msgstr "%s kohteessa %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid remote root login."
-msgstr "Salli / Estä root sisäänkirjautuminen etäyhteyksiltä."
-
-#: ../../help.pm:1
-#, 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"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \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 ""
-"GNU/Linux määrittää ajan GMT (Greenwich Mean Time) -tilassa ja kääntää "
-"siitä\n"
-"paikalliseen aikaan valitsemasi aikavyöhykkeen mukaisesti. Voit myös "
-"muuttaa\n"
-"tämän käytännön poistamalla valinnan \"%s\"\n"
-"jolloin laitteistokello on sama kuin järjestelmäkello. Tämä on hyödyllistä "
-"jos\n"
-"koneessa on toinen käyttöjärjestelmä, esimerkiksi Windows.\n"
-"\n"
-"Optio \"%s\" säätää järjestelmäsi kellon\n"
-"automaattisesti oikeaan aikaan yhdistämällä johonkin Internetin "
-"aikapalvelimeen.\n"
-"Valitse listasta palvelin joka on lähelläsi tai kirjoita sen osoite suoraan "
-"kenttään.\n"
-"Sinulla pitää tietysti olla toimiva Internet-yhteys jotta tämä ominaisuus "
-"toimisi.\n"
-"Tämä myös asentaa aikapalvelimen koneeseesi jota muut paikallisverkkosi\n"
-"koneet voivat käyttää."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
-msgstr "En voi luoda lokitiedostoa!"
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
+msgstr "Käynnistys Levyke"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Mikä on järjestelmäsi aikavyöhyke?"
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
+msgstr "Käynnistys ISO"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Käytä .backupignore tiedostoja"
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
+msgstr "Käännä koko ydintä -->"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
-msgstr "Guinea"
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
+msgstr "Tämä kestää joitakin minuutteja."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Järjestelmä on nyt yhdistetty Internetiin."
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
+msgstr "Ei ydintä valittu!"
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Etelä Georgia ja Eteläiset Sandwichsaaret"
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
+msgstr "Käännä yksi verkkokortti -->"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Japani (bcast)"
+#: ../../standalone/drakTermServ_.c:587
+msgid "No nic selected!"
+msgstr "Ei verkkokorttia valittu!"
-#: ../../help.pm:1
-#, 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 ""
-"Näyttö\n"
-"\n"
-" Asennusohjelma yleensä tunnistaa ja asettaa koneeseesi liitetyn\n"
-"näytön automaattisesti. Jos tämä ei toimi, voit itse valita näyttösi\n"
-"listauksesta."
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
+msgstr "Käännä kaikki ytimet -->"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "Mosambik"
+#: ../../standalone/drakTermServ_.c:604
+msgid "<-- Delete"
+msgstr "<-- Poista"
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "Kuvake"
+#: ../../standalone/drakTermServ_.c:611
+msgid "Delete All NBIs"
+msgstr "Poista Kaikki NBI:t"
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Kill those programs"
-msgstr "oikeudet X-ohjelmiin"
+#: ../../standalone/drakTermServ_.c:668
+msgid ""
+"!!! Indicates the password in the system database is different than\n"
+" the one in the Terminal Server database.\n"
+"Delete/re-add the user to the Terminal Server to enable login."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Valitse mitä haluat varmuuskopioida"
+#: ../../standalone/drakTermServ_.c:673
+msgid "Add User -->"
+msgstr "Lisää Käyttäjä -->"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 väriä (8 bittiä)"
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
+msgstr "<-- Poista Käyttäjä"
-#: ../../any.pm:1
+#: ../../standalone/drakTermServ_.c:720
#, c-format
-msgid "Read-write"
-msgstr "Luku-kirjoitus"
+msgid "type: %s"
+msgstr "tyyppi: %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "Koko: %s\n"
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Hostname: "
-msgstr "Koneen nimi:"
+#: ../../standalone/drakTermServ_.c:773
+msgid "Thin Client"
+msgstr "Kevyt Asiakas"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a rule"
-msgstr "Lisää sääntö"
+#: ../../standalone/drakTermServ_.c:775
+msgid "Allow Thin Clients"
+msgstr "Salli Kevyet Asiakkaat"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Palan koko %s\n"
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
+msgstr "Lisää Asiakasta -->"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
-msgstr "Rakenna Linuxin tulevaisuutta!"
+#: ../../standalone/drakTermServ_.c:821
+msgid "<-- Edit Client"
+msgstr "<-- Muokkaa Asiakasta"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printer"
-msgstr "Paikallinen tulostin"
+#: ../../standalone/drakTermServ_.c:837
+msgid "Delete Client"
+msgstr "Poista Asiakasta"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Levykkeen käyttövirhe, en voi liittää %s"
+#: ../../standalone/drakTermServ_.c:843
+msgid "dhcpd Config..."
+msgstr "dhcpd Asetus..."
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+#: ../../standalone/drakTermServ_.c:876
+msgid ""
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
+msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL-yhteys"
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
+msgstr "Aliverkko:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Ei asetettu, valitse Velho tai Edistynyt.\n"
+#: ../../standalone/drakTermServ_.c:901
+msgid "Netmask:"
+msgstr "Verkkopeite:"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Error!"
-msgstr "Virhe!"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
+msgstr "Reittimet:"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "cable connection detected"
-msgstr "Kaapeliyhteys havaittu"
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
+msgstr "Aliverkkon peite:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "Oikeudet evätty siirrettäessä %s kohteeseen %s"
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
+msgstr "Lähetysosoite:"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Raportoi virheestä"
+#: ../../standalone/drakTermServ_.c:929
+msgid "Domain Name:"
+msgstr "Verkkoalue Nimi:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
-msgstr "Dominica"
+#: ../../standalone/drakTermServ_.c:937
+msgid "Name Servers:"
+msgstr "Nimipalvelimet:"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "Uusi koko"
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
+msgstr "IP alueen alku:"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Näyttötila: %s\n"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
+msgstr "IP alueen loppu:"
-#: ../../install2.pm:1
-#, c-format
-msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
-msgstr ""
-"En pysty käyttämään ytimen moduuleja jotka vastaa ydintäsi (tiedosto %s "
-"puuttuu), tämä yleensä tarkoittaa että käynnistyslevykettäsi ei ole "
-"tahdistettu asennusmedian kanssa (luo uudempi käynnistyslevyke)."
+#: ../../standalone/drakTermServ_.c:1001
+msgid "dhcpd Server Configuration"
+msgstr "dhcpd Palvelin Asetukset"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:1002
msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-"Valitse oikea portti. Esimerkiksi \"COM1\" portti Windowsissa\n"
-"on nimetty \"ttyS0\":ksi GNU/Linuxissa."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Seuraavat paketit poistetaan"
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
+msgstr "Dynaaminen IP-osoite avaruutta:"
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr "Yhdistä Internetiin"
+#: ../../standalone/drakTermServ_.c:1018
+msgid "Write Config"
+msgstr "Kirjoita Asetukset"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
-msgstr "Käytä olemassa olevia osioita"
+#: ../../standalone/drakTermServ_.c:1120
+msgid "Please insert floppy disk:"
+msgstr "Aseta levyke asemaan:"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "Kanada (Quebec)"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
+msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Hiiren laite: %s\n"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Valitse uudelleen oikeat kirjasimet"
+#: ../../standalone/drakTermServ_.c:1129
+msgid "No floppy drive available!"
+msgstr ""
-#: ../../help.pm:1
+#: ../../standalone/drakTermServ_.c:1138
#, 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 "Etherboot ISO image is %s"
msgstr ""
-"Optiot\n"
-"\n"
-" Täällä voit valita haluatko koneesi käynnistyvän suoraan graafiseen\n"
-"käyttöliittymään. Huomaa, että kysymys esitetään vaikka et olisi\n"
-"testannut asetuksia. Haluat varmaankin vastata \"%s\", jos koneesi\n"
-"on tarkoitettu palvelimeksi tai jos näytön asetus epäonnistui."
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert Corporate"
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-" [everything]\n"
-" XFdrake [--noauto] näyttö\n"
-" XFdrake tarkkuus"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Write protection"
-msgstr "Kirjoitussuoja"
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "You've not selected any font"
-msgstr "Et valinnut yhtäkään kirjasinta"
+#: ../../standalone/drakautoinst_.c:40
+msgid "Error!"
+msgstr "Virhe!"
-# Asennuksen sivuvalikko
-#: ../../steps.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, c-format
-msgid "Language"
-msgstr "Valitse kieli"
+msgid "I can't find needed image file `%s'."
+msgstr "Tarvittavaa kuvatiedostoa `%s' ei löytynyt."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer model selection"
-msgstr "Tulostimen mallin valinta"
+#: ../../standalone/drakautoinst_.c:43
+msgid "Auto Install Configurator"
+msgstr "Automaattinen Asennus Muokkaaja"
-# mat
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:44
msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr "Vaihdettuasi osion %s tyyppiä kaikki siinä olevat tiedot häviävät"
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "ISDN adapters"
-msgstr "ISDN-kortti"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d sekuntia"
-
-# mat
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Aseta tyhjä levyke levykeasemaan %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Sinun pitää syöttää oikeanmuotoinen URI!"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr "Löysin \"%s\" liitännän, haluatko käyttää sitä?"
+"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/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
-msgstr "Aseta liitäntä ja DHCP-palvelin uudelleen"
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
+msgstr "manuaalinen"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound configuration"
-msgstr "Ääniasetukset"
+#: ../../standalone/drakautoinst_.c:62
+msgid "replay"
+msgstr "toista"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
-msgstr "Valokuva testisivu"
+#: ../../standalone/drakautoinst_.c:66
+msgid "Automatic Steps Configuration"
+msgstr "Automaattisten vaiheiden asetus"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Mukautettu levyn osiointi"
+#: ../../standalone/drakautoinst_.c:67
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
+msgstr ""
+"Valitse jokaiselle vaiheelle toistetaanko asennus samalla tapaa kuin nyt vai "
+"onko kyseinen vaihe manuaalinen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Kirjoita tulostimen nimi ja kuvaus"
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+msgid "Creating auto install floppy"
+msgstr "Valmistelen automaattiasennuslevykettä"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:139
msgid ""
-"The following printers\n"
"\n"
-"%s%s\n"
-"are directly connected to your system"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-"Seuraavat tulostimet:\n"
"\n"
-"%s%s\n"
-"on kytketty suoraan koneeseesi"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "You don't have any winmodem"
-msgstr "Sinulla ei ole winmodeemia"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: %s"
-msgstr "tyyppi: %s"
+"Tervetuloa.\n"
+"\n"
+"Automaattisen asennuksen parametrit löytyvät vasemmalla olevista lohkoista"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "Slovakia (QWERTY)"
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
+msgstr "Onnittelut!"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:235
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."
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
msgstr ""
-"Tämä pitäisi olla pilkulla erotettu lista paikallisista käyttäjistä tai "
-"sähköposti- osoitteista, jolle haluat tulokset varmistuksesta. Sinulla pitää "
-"olla toimiva postinlähetystoiminto tai palvelin asetettu järjestelmässäsi."
+"Levykkeen luominen onnistui.\n"
+"Voit nyt toistaa asennuksesi."
-#: ../../standalone/draksound:1
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Äänikorttia ei löydetty!"
+#: ../../standalone/drakautoinst_.c:273
+msgid "Auto Install"
+msgstr "Automaattinen asennus"
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "Hiiren portti"
+# Asennuksen sivuvalikko
+#: ../../standalone/drakautoinst_.c:343
+msgid "Add an item"
+msgstr "Lisää alkio"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
-msgstr "Tarkista turvattomat tilit"
+# mat
+#: ../../standalone/drakautoinst_.c:350
+msgid "Remove the last item"
+msgstr "Poista viimeinen alkio"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
msgstr ""
-"Näytönhallinta pitää käynnistää uudelleen jotta muutokset tulisivat "
-"voimaan.\n"
-"(kirjoita 'service dm restart' - konsolissa)"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Ftp Server"
-msgstr "FTP palvelin"
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr "Uganda"
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
+msgstr "VAROITUS"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
-msgstr "%s kirjasinten muunnos"
+#: ../../standalone/drakbackup_.c:691
+msgid "FATAL"
+msgstr "VAKAVA"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "Väylätyyppi johon hiiri on liitetty"
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
+msgstr "TIEDOT"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:704
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"
+" DrakBackup Report \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 ""
-"Tässä DrakX näyttää yhteenvedon laitteistoasi koskevista tiedoista\n"
-"jotka se on kerännyt. Asennetusta laitteistosta riippuen, näet joitakin\n"
-"tai kaikki seuraavista tietueista. Jokainen tietue koostuu asetettavasta\n"
-"laitteesta ja lyhyestä selostuksesta laitteen asetuksien nykytilasta.\n"
-"Paina tietuetta vastaavaa \"%s\" painiketta jos haluat muuttaa sitä.\n"
"\n"
-" * \"%s\": tarkista näppäinasettelu ja vaihda sitä\n"
-"tarvittaessa;\n"
+" DrakBackup-raportti \n"
"\n"
-" * \"%s\": tarkista maa-asetukset. Jos et ole maassa, joka on valittu,\n"
-"paina \"%s\" painiketta ja valitse oikea. Jos maasi ei ole\n"
-"listassa, paina \"%s\" painiketta jolloin näet listan kaikista maista.\n"
+
+#: ../../standalone/drakbackup_.c:705
+msgid ""
"\n"
-" * \"%s\": DrakX oletuksena arvioi aikavyöhykkeesi riippuen\n"
-"siitä, minkä kielen olet valinnut. Jos tämä ei ole oikea, voit muuttaa sitä\n"
-"painamalla \"%s\".\n"
+" DrakBackup Daemon Report\n"
"\n"
-" * \"%s\": tarkista nykyiset hiiriasetukset ja muuta niitä tarvittaessa.\n"
"\n"
-" * \"%s\": painamalla \"%s\"-painiketta avaat tulostuksen\n"
-"asetusvelhon. Lue lisää asiaa koskevasta luvusta ``Aloitusoppaasta''\n"
-"saadaksesi lisätietoa miten asettaa uusi tulostin. Käyttöliittymä\n"
-"joka oppaassa esitetään on vastaava kuin se jota käytetään asennuksen\n"
-"aikana.\n"
+msgstr ""
"\n"
-" * \"%s\": jos äänikortti on tunnistettu järjestelmässäsi, se\n"
-"näytetään täällä. Jos huomaat että näytetty äänikortti ei vastaa sitä\n"
-"joka on asennettu koneeseesi, voit nappia painamalla valita toisen\n"
-"ajurin.\n"
+" DrakBackup Demonin raportti\n"
"\n"
-" * \"%s\": oletuksena DrakX asettaa graafisen\n"
-"käyttöliittymäsi käyttämään \"800x600\" tai \"1024x768\" näyttötilaa.\n"
-"Jos tämä ei sovi sinulle, paina \"%s\" muuttaaksesi asetuksia.\n"
"\n"
-" * \"%s\": jos TV-kortti on tunnistettu järjestelmässäsi, se\n"
-"näytetään täällä. Jos sinulla on TV-kortti ja sitä ei ole tunnistettu,\n"
-"voit painaa \"%s\" ja yrittää asettaa sen itse.\n"
+
+#: ../../standalone/drakbackup_.c:709
+msgid ""
"\n"
-" * \"%s\": jos ISDN-kortti on tunnistettu järjestelmässäsi, se\n"
-"näytetään täällä. Voit painaa \"%s\" jos sinulla on tarvetta\n"
-"muuttaa kortin asetuksia.\n"
+" DrakBackup Report Details\n"
"\n"
-" * \"%s\": jos haluat asettaa Internet- tai paikallisverkkoasetuksesi nyt.\n"
"\n"
-" * \"%s\": tässä voit muuttaa asennuksen alussa asettamaasi\n"
-"turvatasoa jos haluat.\n"
+msgstr ""
"\n"
-" * \"%s\": Jos aiot yhdistää koneesi Internetiin, kannattaa\n"
-"suojautua verkon vaaroilta asettamalla palomuuri. Katso ``Aloitus-\n"
-"oppaasta'' tätä aihetta vastaavaa lukua saadaksesi lisätietoa\n"
-"palomuurin asetuksista.\n"
+" DrakBackup-raportin yksityiskohdat\n"
"\n"
-" * \"%s\": jos haluat muuttaa käynnistyslataajasi asetuksia,\n"
-"paina vastaavaa nappia. Tätä ei kannata muuttaa jos et ole asiantuntija.\n"
"\n"
-" * \"%s\": täällä voit määrittää mitä palveluja järjestelmässäsi\n"
-"toimii. Jos aiot käyttää tätä konetta palvelimena, kannattaa nämä\n"
-"asetukset tarkistaa."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr "Komorit"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "May"
-msgstr "Toukokuu"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yaboot mode"
-msgstr "Yaboot-tila"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Yleinen 3-näppäinen hiiri"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
-msgstr "Yhdysvallat (kaapeli)"
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+msgid "Total progess"
+msgstr ""
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakbackup_.c:785
#, c-format
msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+"%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 ""
-"En voi suorittaa LiLoa uudelleen!\n"
-"Suorita \"LILO\" pääkäyttäjänä komentorivillä \n"
-"LILO teeman asennuksen viimeistelyyn."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Valitse toinen media, josta palauttaa"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Software Manager"
-msgstr "Ohjelmiston hallinta"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
-msgstr "Lähetä uudelleen"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD in place - continue."
-msgstr "CD on asetettu - jatka."
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
+msgstr ""
-#: ../../common.pm:1
+#: ../../standalone/drakbackup_.c:801
#, c-format
-msgid "KB"
-msgstr "kt"
+msgid "ERROR: Cannot spawn %s."
+msgstr "VIRHE: En voi haroittaa %s"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid "Network & Internet"
-msgstr "Verkko & Internet"
+msgid "No password prompt on %s at port %s"
+msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:819
#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Liettua \"foneettinen\" QWERTY"
+msgid "Bad password on %s"
+msgstr "Virheellinen salasana kohteessa %s"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "Net Boot Images"
-msgstr "Verkkokäynnistyksen kuvat"
+msgid "Permission denied transferring %s to %s"
+msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakbackup_.c:821
#, c-format
-msgid "Sharing of local scanners"
-msgstr "Paikallisten kuvanlukijoiden jakaminen"
+msgid "Can't find %s on %s"
+msgstr "En löydä %s kohteessa %s"
-#: ../../Xconfig/monitor.pm:1
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr ""
-"Kytke ja Käytä -tunnistus epäonnistui. Ole hyvä ja valitse oikea näyttö"
+msgid "%s not responding"
+msgstr "%s ei vastaa"
-#: ../../../move/move.pm:1
+#: ../../standalone/drakbackup_.c:828
#, c-format
-msgid "Detect again USB key"
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Services and deamons"
-msgstr "Palvelut ja demonit"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Etäpalvelimen verkkonimi puuttuu!"
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
+msgstr "WebDAV etäsivusto on jo synkonoitu!"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "with /usr"
-msgstr "erillinen '/usr' osio"
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
+msgstr "WebDAV sirrto epäonnistui!"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Network"
-msgstr "Verkko"
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
+msgstr "Ei CDR/DVDR levyä asemassa!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr "Tunnista automaattisesti Windows-koneisiin liitetyt tulostimet"
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
+msgstr "Ei näytä olevan tallennusta tukevaa mediaa!"
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "Salasana on liian yksinkertainen"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
+msgstr "Ei tyhjennettävää mediaa!"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "Chkconfig tottelee msec:n sääntöjä"
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
+msgstr "Median tyhjentäminen voi kestää hetken."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovakia (QWERTZ)"
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
+msgstr "Ongelma CD käytön oikeuksien kanssa."
-#: ../advertising/06-development.pl:1
+#: ../../standalone/drakbackup_.c:1060
#, 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."
-msgstr ""
-"Ohjelmien luomiseen ja muokkaamiseen eri kielissä kuten Perl, Python, C ja C+"
-"+ eivät ole ollut niin helppoa kiitos GNU gcc 3 ja parhaat Avoimen "
-"Lähdekoodin kehitysympäristöt."
+msgid "No tape in %s!"
+msgstr "Ei nauhaa asemassa %s!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No devices found"
-msgstr "Laitetta ei löydetty"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
+msgstr "Varmuuskopioi järjestelmätiedostot..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Vähimmäisasennus (erityisesti ei urpmia)"
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+msgid "Hard Disk Backup files..."
+msgstr "Kiintolevyn varmuuskopiotiedostot..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use daemon"
-msgstr "Käytä demonia"
+#: ../../standalone/drakbackup_.c:1236
+msgid "Backup User files..."
+msgstr "Varmuuskopioi käyttäjätiedostot..."
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "Tunnistustapa"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
+msgstr "Kiintolevyn varmuuskopion edistyminen..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Lisää tämä tulostin Star Office/OpenOffice.org/GIMP käyttöön."
+#: ../../standalone/drakbackup_.c:1290
+msgid "Backup Other files..."
+msgstr "Varmuuskopioi muut tiedostot..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Muut CUPS-palvelimet:"
+#: ../../standalone/drakbackup_.c:1296
+msgid "No changes to backup!"
+msgstr "Ei varmistettavia muutoksia!"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, c-format
msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) in the input fields."
-msgstr ""
-"Valitse yksi automaattitunnistetuista tulostimista listalta, tai syötä "
-"verkkonimi tai IP-osoite ja tarvittaessa porttinumero (oletus: 9100) "
-"syöttökenttiin."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr "Minne haluat liittää laitteen %s?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "Algeria"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network"
-msgstr "Palauta verkon kautta"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
+"\n"
+"Drakbackup toimintoja %s kautta:\n"
+"\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "Initrd:n koko"
-
-#: ../../help.pm:1
+#: ../../standalone/drakbackup_.c:1319
#, 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."
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-"Mikäli tarjolla on eri palvelimia ohjaimellesi, 3D tuella tai ilman,\n"
-"sinua pyydetään valitsemaan palvelin joka parhaiten vastaa tarpeitasi."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tVarmuuskopiot käyttävät: tar ja gzip\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set as default"
-msgstr "Aseta oletus"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 Mt"
-
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on this machine"
-msgstr "Asetettu tässä koneessa"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Molemmat Control näppäimet samanaikaisesti"
-
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid " --help - display this help \n"
-msgstr " --help - näytä tämä apu \n"
+"tiedostolistan lähetetty FTP:llä: %s\n"
+" "
-#: ../../standalone.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1322
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"
+"\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
msgstr ""
-"[OPTIO]...\n"
-" --no-confirmation älä pyydä varmistusta MandrakeUpdate tilassa.\n"
-" --no-verify-rpm älä tarkista pakettien allekirjoitusta\n"
-" --changelog-first näytä muutosloki ennen tiedostolistausta "
-"kuvausikkunassa\n"
-" --merge-all-rpmnew ehdota kaikkien .rpmnew/.rpmsave tiedostojen "
-"yhdistämistä"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Asetetaan oletustulostinta..."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Liitäntä %s (käyttäen moduulia %s)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Generating preview ..."
-msgstr "Luodaan esikatselu ..."
-
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1340
msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-"Taajuuden pitäisi loppua päätteeseen k, M tai G (esim. \"2.46G\" jos "
-"taajuus\n"
-"on 2.46 GHz) tai sinun pitää lisätä riittävästi '0' (nollia) loppuun."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ignore"
-msgstr "jätä huomiotta"
+"\n"
+"Drakbackup toimintoja CD:n kautta:\n"
+"\n"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1345
msgid ""
-"Allow/Forbid X connections:\n"
-"\n"
-"- ALL (all connections are allowed),\n"
"\n"
-"- LOCAL (only connection from local machine),\n"
+"Drakbackup activities via tape:\n"
"\n"
-"- NONE (no connection)."
msgstr ""
-"Salli / Estä X-yhteydet:\n"
-"\n"
-"- KAIKKI (kaikki yhteydet sallitaan)\n"
"\n"
-"- PAIKALLINEN (ainoastaan paikalliset yhteydet)\n"
+"Drakbackup toimintoja nauhan kautta:\n"
"\n"
-"- EI (ei yhteyttä)."
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", monikäyttölaite rinnakkaisportissa #%s"
+#: ../../standalone/drakbackup_.c:1354
+msgid " Error during mail sending. \n"
+msgstr "Virhe sähköpostin lähetyksessä. \n"
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "sarja"
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
+msgstr "En voi luoda luetteloa!"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
-msgstr "DVD-ROM"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+msgid "File Selection"
+msgstr "Tiedostojen valinta"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgia (\"Latin\"-järjestys)"
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
+msgstr "Valitse tiedostot tai hakemistot ja klikkaa 'Lisää'"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
+#: ../../standalone/drakbackup_.c:1573
+msgid ""
+"\n"
+"Please check all options that you need.\n"
msgstr ""
-"Saa parhaat tuotteet Mandrake Linuxin strategisilta yhteistyökumppaneilta"
+"\n"
+"Valitse kaikki asetukset, jotka tarvitset.\n"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1574
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-"Voit nyt määrittää moduulin %s optiot.\n"
-"Huomaa että osoite täytyy määrittää '0x' etuliitteellä, esim. 0x123."
+"Naillä asetuksilla voit varmuuskopioida ja palauttaa kaikki tiedostot /etc-"
+"hakemistosta.\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "Kenia"
+#: ../../standalone/drakbackup_.c:1575
+msgid "Backup your System files. (/etc directory)"
+msgstr "Varmista järjestelmätiedostot. (hakemisto /etc)"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Käytä ensin komentoa ``Irrota''"
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
+msgstr "Käytä kasvavaa varmuuskopiointia (älä korvaa vanhoja varmuuskopioita)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing mtools packages..."
-msgstr "Asennan mtools paketteja..."
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
+msgstr "Älä sisällytä kriittisiä tiedostoja (passwd, group, fstab)"
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a root partition"
-msgstr "Sinun täytyy määritellä juuriosio"
+#: ../../standalone/drakbackup_.c:1578
+msgid ""
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
+msgstr ""
+"Tällä valitsimella voit palauttaa minkä tahansa version\n"
+"/etc-hakemistostasi."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "first step creation"
-msgstr "ensiaskeleen luominen"
+#: ../../standalone/drakbackup_.c:1595
+msgid "Please check all users that you want to include in your backup."
+msgstr "Valitse kaikki ne käyttäjät, jotka haluat sisällyttää varmuuskopioosi."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Molemmat Shift näppäimet samanaikaisesti"
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
+msgstr "Älä sisällytä selaimen välimuistia"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr " --id <id_label> - lataa html apusivu joka koskee id_label\n"
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
+msgstr "Käytä kasvavia varmuuskopitoita (älä korvaa vanhoja varmuuskopioita)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select a scanner model"
-msgstr "Valitse kuvanlukijan malli"
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+msgid "Remove Selected"
+msgstr "Poista valitut"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
-msgstr "Hyväksy / Hylkää virheelliset IPv4 virheviestit."
+#: ../../standalone/drakbackup_.c:1679
+msgid "Windows (FAT32)"
+msgstr "Windows (FAT32)"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR uusi sukupolvi"
+#: ../../standalone/drakbackup_.c:1714
+msgid "Users"
+msgstr "Käyttäjät"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Drakbackup-asetukset"
+#: ../../standalone/drakbackup_.c:1740
+msgid "Use network connection to backup"
+msgstr "Käytä verkko-yhteyttä varmuuskopiointiin"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr "Tallenna nimellä.."
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
+msgstr "Verkko Tapa:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr "Korea (Pohjois)"
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
+msgstr "Käytä Expect SSH:lle"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1747
msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-"Tätä liityntää ei ole vielä asetettu.\n"
-"Käynnistä pääikkunasta löytyvä asetusvelho"
-
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System configuration"
-msgstr "Järjestelmän asetus"
-
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "Automaattinen kirjautuminen"
+"Luo/Siirrä\n"
+"SSH:n varmistusavaimet"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin Password"
-msgstr "Verkkoalueen pääkäyttäjän salasana"
+#: ../../standalone/drakbackup_.c:1748
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+" Siirrä \n"
+"Nyt"
-#: ../advertising/05-desktop.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1749
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, ..."
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-"Sopeuta tietokoneesi täydellisesti vastaamaan tarpaitasi käyttäen Mandrake "
-"Linux tarjoamat 11 käyttöliittymää jotka ovat täysin räätälöitävissä: KDE "
-"3.1, Gnome 2.2, WindowMaker, ..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer ..."
-msgstr "Asetetaan tulostinta..."
+#: ../../standalone/drakbackup_.c:1753
+msgid "Please enter the host name or IP."
+msgstr "Syötä verkkoaseman nimi tai IP."
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1758
msgid ""
-"To ensure data integrity after resizing the partition(s), \n"
-"filesystem checks will be run on your next boot into Windows(TM)"
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-"Varmistaakseen tietojen yhtenäisyyttä osio(ide)n koon\n"
-"muuttamisen jälkeen, suoritetaan tiedostojärjestelmän \n"
-"tarkistusta seuraavan kerran kun käynnistät Windows(TM)."
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "Mt"
+#: ../../standalone/drakbackup_.c:1763
+msgid "Please enter your login"
+msgstr "Syötä käyttäjätunnuksesi"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
-msgstr "jos asetettu, suoritetaan tarkistuksia rpm-tietokannassa."
+#: ../../standalone/drakbackup_.c:1768
+msgid "Please enter your password"
+msgstr "Syötä salasanasi"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr "Brittiläiset Neitsytsaaret"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bermuda"
-msgstr "Bermuda"
+#: ../../standalone/drakbackup_.c:1774
+msgid "Remember this password"
+msgstr "Muista tämä salasana"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
-msgstr "paina tähän, kun olet varma."
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
+msgstr "Verkkoaseman nimi, tunnus ja salasana tarvitaan!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
-msgstr ""
-"Asetustiedostoa ei löytynyt\n"
-"valitse joko Velho tai Kehittynyt."
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
+msgstr "Käytä CD/DVD-ROM -levyä varmuuskopioille"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1882
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."
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-"Tässä on listaus olemassa olevista tunnistetuista Linux-osioista\n"
-"kovalevylläsi. Voit säilyttää velhon tekemät valinnat, koska ne ovat\n"
-"hyviä useimmille yleisimmille asennuksille. Jos teet muutoksia, sinun\n"
-"pitää ainakin luoda juuri-osio (\"/\"). Älä valitse liian pientä osiota tai\n"
-"et voi asentaa riittävästi ohjelmia. Jos haluat tallentaa tietojasi "
-"erilliselle\n"
-"osiolle, sinun täytyy luoda myös \"/home\"-osio (mahdollista vain jos\n"
-"sinulla on enemmän kuin yksi Linux-osio käytettävissä).\n"
-"\n"
-"Jokainen osio on listattu seuraavasti: \"Nimi\", \"Koko\".\n"
-"\n"
-"\"Nimi\" rakenne on seuraava: \"kovalevytyyppi\". \"kovalevynumero\", \n"
-"\"osionumero\" (esim. \"hda1\").\n"
-"\n"
-"\"kovalevytyyppi\" on \"hd\" jos kovalevysi on IDE-kovalevy, ja \"sd\" jos\n"
-"se on SCSI kovalevy.\n"
-"\n"
-"\"kovalevynumero\" on aina aakkonen \"hd\":n tai \"sd\":n perässä.\n"
-"IDE-kovalevyille: \n"
-"\n"
-" * \"a\" tarkoittaa \"isäntälevy ensisijaisella IDE-ohjaimella\";\n"
-"\n"
-" * \"b\" tarkoittaa \"orjalevy ensisijaisella IDE-ohjaimella\";\n"
-"\n"
-" * \"c\" tarkoittaa \"isäntälevy toissijaisella IDE-ohjaimella\";\n"
-"\n"
-" * \"d\" tarkoittaa \"orjalevy toissijaisella IDE-ohjaimella\";\n"
-"\n"
-"SCSI kovalevyillä, \"a\" tarkoittaa \"pienin SCSI ID\", \"b\" tarkoittaa\n"
-"\"toiseksi pienin SCSI ID\", jne..."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Remove"
-msgstr "Poista"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr "utopia 25"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Putkita työ käskylle"
-
-# mat
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "Poista loopback-tiedosto?"
+#: ../../standalone/drakbackup_.c:1887
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Valitse CD/DVD mediasi koko (Mt)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "Cote d'Ivoire"
+#: ../../standalone/drakbackup_.c:1893
+msgid "Please check for multisession CD"
+msgstr "Valitse tämä jos haluat multisessio CD"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "uusi dynaaminen laitenimi, luotu ytimen sisäisen devfs:n toimesta"
+#: ../../standalone/drakbackup_.c:1899
+msgid "Please check if you are using CDRW media"
+msgstr "Valitse tämä jos käytät CD-RW-mediaa"
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "Kyllä"
+#: ../../standalone/drakbackup_.c:1905
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Valitse tämä jos haluat tyhjentää RW mediaa (endimmäinen sessio)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Mitä protokollaa haluat käyttää?"
+#: ../../standalone/drakbackup_.c:1906
+msgid " Erase Now "
+msgstr " Tyhjennä Nyt "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Progress"
-msgstr "Palautuksen edistyminen"
+#: ../../standalone/drakbackup_.c:1912
+msgid "Please check if you are using a DVDR device"
+msgstr "Valitse tämä jos käytät DVDR laitetta"
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
-msgstr "Viro"
+#: ../../standalone/drakbackup_.c:1918
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Valitse tämä jos käytät DVDRAM laitetta"
-#: ../../partition_table.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1931
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."
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-"Sinulla on reikä osiotaulussasi eikä sitä voida käyttää.\n"
-"Ainoa ratkaisu on siirtää primääriosioita siten että reikä on ennen "
-"laajennettuja osioita"
+"Syötä kirjoittavan CD-asemasi laitenimi\n"
+"esim: 0,1,0"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
-msgstr ""
-"Valitse kone jolle paikalliset kuvanlukijat pitäisi asettaa käytettäviksi:"
+#: ../../standalone/drakbackup_.c:1964
+msgid "No CD device defined!"
+msgstr "Yhtäkään CD-asemaa ei märitetty!"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Channel"
-msgstr "Kanava"
+#: ../../standalone/drakbackup_.c:2012
+msgid "Use tape to backup"
+msgstr "Käytä nauhaa varmuuskopioinnissa"
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Add"
-msgstr "Lisää"
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
+msgstr "Syötä varmuuskopioinnissa käytettävän laitteen nimi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr "Virhe sähköpostin lähetyksessä. \n"
+#: ../../standalone/drakbackup_.c:2021
+msgid "Please check if you want to use the non-rewinding device."
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "Näppäimistö"
+#: ../../standalone/drakbackup_.c:2027
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Valitse, jos haluat tyhjentää nauhan ennen kopiointia"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
+#: ../../standalone/drakbackup_.c:2033
+msgid "Please check if you want to eject your tape after the backup."
msgstr ""
-"Aseta CD nimellä: %s\n"
-"cd-asemaan liitospisteessä /mnt/cdrom"
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
msgstr ""
-"Nopeuden pitäisi loppua päätteeseen k, M tai G (esim. \"11M\" jos nopeus\n"
-"on 11M) tai sinun pitää lisätä riittävästi '0' (nollia) loppuun."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Valitse yhteys, jonka haluat asettaa"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Odota hetki, asetetaan turvatasoa..."
+"Syötä suurin sallittu koko\n"
+"Drakbackup-varmuuskopiolle"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Asetan verkkolaitetta %s"
+#: ../../standalone/drakbackup_.c:2103
+msgid "Please enter the directory to save to:"
+msgstr "Syötä hakemisto, johon tallennetaan:"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
-msgstr "aktivoitu"
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+msgid "Use quota for backup files."
+msgstr "Käytä quotaa varmuuskopiotiedostoille."
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
-msgstr "Valitse verkkokortti jota käytetään dhcp-palvelimelle."
+#: ../../standalone/drakbackup_.c:2180
+msgid "Network"
+msgstr "Verkko"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Etsin päivitettäviä paketteja..."
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
+msgstr "CDROM / DVDROM"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
-msgstr "Liitospiste: "
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
+msgstr "Kiintolevy / NFS"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
-msgstr "jäsennä kaikki kirjasimet"
+#: ../../standalone/drakbackup_.c:2195
+msgid "Tape"
+msgstr "Nauha"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid direct root login."
-msgstr "Salli / Estä root sisäänkirjautuminen paikallisesti."
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
+msgstr "tunneittain"
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr " Hyväksy / Hylkää kuulutetut icmp echo viestit."
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
+msgstr "päivittäin"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
-msgstr "X-palvelimella"
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
+msgstr "viikoittain"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Usean näytön asettaminen"
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
+msgstr "kuukausittain"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "No browser available! Please install one"
-msgstr "Ei selainta käytettävissä! Ole hyvä ja asenna jokin"
+#: ../../standalone/drakbackup_.c:2229
+msgid "Use daemon"
+msgstr "Käytä demonia"
-#: ../../Xconfig/main.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2234
msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
+"Please choose the time \n"
+"interval between each backup"
msgstr ""
-"Säilytä muutokset?\n"
-"Nykyiset asetukset ovat:\n"
-"\n"
-"%s"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Et voi käyttää ReiserFS:ä alle 32 Mt osioilla"
+"Valitse peräkkäisten\n"
+"varmuuskopioiden aikaväli"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2240
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)."
+"Please choose the\n"
+"media for backup."
msgstr ""
-"Rwho-protokollalla etäkäyttäjät voivat listata kaikki\n"
-"koneella olevat käyttäjät (vastaa fingeriä)."
+"Valitse varmuuskopiointiin\n"
+"käytettävä media."
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "Verkkoalueen nimi"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Paikallisten tulostimien jakaminen"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
-msgstr "Ota käyttöön / poista käytöstä libsafe jos se löytyy järjestelmästä."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Available printers"
-msgstr "Saatavilla olevat tulostimet"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "NO"
-msgstr "EI"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "Tyhjä"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
-msgstr "tekstiruudun leveys"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Minne haluat liittää laitteen %s?"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Vakio käyttöaika (sekunneissa)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2247
msgid ""
-"We are now going to configure the %s connection.\n"
+"Please be sure that the cron daemon is included in your services. \n"
"\n"
-"\n"
-"Press \"%s\" to continue."
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-"Asetamme seuraavaksi %s-yhteyden.\n"
-"\n"
-"\n"
-"Paina \"%s\" jatkaaksesi."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Liitäntä \"%s\""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Perusdokumentaation kanssa (suositeltu!)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr "1 näppäin"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
+msgstr "Lähetä raportti jokaisesta varmuuskopiosta sähköpostitse :"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-"\n"
-"Löytyy %d tuntemattomia tulostimia jotka on kytketty suoraan koneeseesi"
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Test"
-msgstr "Kokeile"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea"
-msgstr "Korea"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Valintasi? (oletus '%s'%s) "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer"
-msgstr "Raakatulostin"
+#: ../../standalone/drakbackup_.c:2324
+msgid "What"
+msgstr "Mitä"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "prosessorin valmistajan virallinen nimi"
+#: ../../standalone/drakbackup_.c:2329
+msgid "Where"
+msgstr "Missä"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
-msgstr "Hyödytön ilman Päätepalvelinta"
+#: ../../standalone/drakbackup_.c:2334
+msgid "When"
+msgstr "Koska"
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Vendor"
-msgstr "Valmistaja"
+#: ../../standalone/drakbackup_.c:2339
+msgid "More Options"
+msgstr "Lisävalinnat"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s"
-msgstr "Liitäntä %s"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+msgid "Drakbackup Configuration"
+msgstr "Drakbackup-asetukset"
-# Asennuksen sivuvalikko
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "Hiiren määrittely"
+#: ../../standalone/drakbackup_.c:2376
+msgid "Please choose where you want to backup"
+msgstr "Valitse, mihin haluat tehdä varmuuskopiot"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
-msgstr "Valitse liitospisteet"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
+msgstr "kiintolevylle"
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr "OK"
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
+msgstr "verkon yli"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslavia (latin)"
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
+msgstr "cd-levylle"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "Asennan"
+#: ../../standalone/drakbackup_.c:2406
+msgid "on Tape Device"
+msgstr "Nauhalle"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan rullaemuloinnilla"
+#: ../../standalone/drakbackup_.c:2449
+msgid "Please choose what you want to backup"
+msgstr "Valitse mitä haluat varmuuskopioida"
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
-msgstr "Käynnistä UserDrake"
+# Asennuksen sivuvalikko
+#: ../../standalone/drakbackup_.c:2450
+msgid "Backup system"
+msgstr "Varmuuskopioi järjestelmä"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Onko tämä asennus vai päivitys?"
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
+msgstr "Varmuuskopioi käyttäjät"
-#: ../../help.pm:1
-#, c-format
-msgid "ISDN card"
-msgstr "ISDN-kortti"
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
+msgstr "Valitse käyttäjät yksitellen"
-#: ../advertising/02-community.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2537
msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
+"\n"
+"Backup Sources: \n"
msgstr ""
-"Jakaaksesi omaa tietämystäsi ja auttaaksesi Linux-työkalujen kehityksessä, "
-"liity keskustelufoorumeihin, joita löydät meidän \"Yhteisö\" webbisivuilta."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-Kiintolevy.\n"
+"\n"
+"Varmuuskopion lähteet: \n"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2538
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"
+"- System Files:\n"
+msgstr ""
"\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"
+"- Järjestelmätiedostot:\n"
+
+#: ../../standalone/drakbackup_.c:2540
+msgid ""
"\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."
+"- User Files:\n"
msgstr ""
-"Tämä vaihe asennuksesta näytetään ainoastaan jos vanha GNU/Linux-\n"
-"osio on löydetty koneestasi.\n"
"\n"
-"DrakX haluaa nyt tietää, haluatko suorittaa uuden asennuksen vai vanhan\n"
-"Mandrake Linux -järjestelmän päivityksen:\n"
-"\n"
-" * \"%s\": oletuksena tämä tapa poistaa vanhan asennuksen. Jos haluat\n"
-"muuttaa miten kovalevysi on osioitu tai vaihtaa tiedostojärjestelmää, sinun\n"
-"kannattaa valita tämä vaihtoehto. Riippuen nykyisestä osioinnistasi, voit\n"
-"ehkä valita niin ettei kaikkia tietojasi hävitetä.\n"
+"- Käyttäjätiedostot:\n"
+
+#: ../../standalone/drakbackup_.c:2542
+msgid ""
"\n"
-" * \"%s\": tämä vaihtoehto sallii sinun päivittää paketteja\n"
-"nykyisessä Mandrake Linux -järjestelmässäsi. Nykyistä osiointiasi ei\n"
-"muuteta, eikä käyttäjien tietoja muuteta. Suurin osa muista asennus-\n"
-"vaiheista on käytössäsi niin kuin ne ovat vakioasennuksessa.\n"
+"- Other Files:\n"
+msgstr ""
"\n"
-"``Päivitä''-ominaisuuden pitäisi toimia Mandrake Linux\n"
-"-järjestelmissä versioista \"8.1\" ja uudemmat. Vanhemman version\n"
-"kuin \"8.1\" päivittämistä ei suositella."
+"- Muut tiedostot:\n"
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakbackup_.c:2544
#, 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"
+"- Save on Hard drive on path: %s\n"
msgstr ""
"\n"
-" Copyright (C) 2001-2002 MandrakeSoft \n"
-"\tDUPONT Sebastien (alkuperäinen versio) \n"
-" CHAUMETTE Damien dchaumette@mandrakesoft.com\n"
-"\n"
-"Tämä ohjelma on ilmainen; voit levittää ja/tai muokata sitä Free\n"
-"Software Foundationin julkaiseman 'GNU General Public License'\n"
-"-lisenssin mukaisesti; joko lisenssin version 2 mukaisesti, tai\n"
-"(niin halutessasi) minkä tahansa uudemman version mukaisesti.\n"
-"\n"
-"Tämä ohjelma on julkaistu siinä toivossa, että se osoittautuisi\n"
-"hyödylliseksi, mutta ILMAN MINKÄÄNLAISTA TAKUUTA; ilman edes\n"
-"oletettua takuuta TUOTTEEN TOIMIVUUDESTA tai SOPIVUUDESTA \n"
-"TIETTYYN TEHTÄVÄÄN. Lisätietoja saat tutustumalla 'GNU General \n"
-"Public License' dokumentaatioon.\n"
+"- Tallenna kiintolevylle polulle: %s\n"
+
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
"\n"
-"Hakemasi ohjelman mukana kuuluu tulla kopio 'GNU General Public License'\n"
-"dokumentaatiosta; jos näin ei ole, kirjoita osoitteeseen:\n"
-"Free Software Foundation Inc., 59 Temple Place - Suite 330,\n"
-" Boston, MA 02111-1307, USA.\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
"\n"
-" Kiitoksia:\n"
-" - pfm2afm: \n"
-"\t Ken Borgendale:\n"
-"\t Muuttaa Windows .pfm tiedoston .afm muotoon (Adobe Font Metrics)\n"
-" - type1inst:\n"
-"\t James Macnicol: \n"
-"\t type1inst luo tiedostot fonts.dir fonts.scale & Fontmap.\n"
-" - ttf2pt1: \n"
-"\t Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Muuttaa ttf fonttitiedostot afm ja pfb fonteiksi\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Tulostin etäpalvelimella (CUPS)"
+"- Poista tar tiedostot kovalevystä varmistuksen jälkeen.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2553
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+"\n"
+"- Burn to CD"
msgstr ""
-"Tulostimen \"%s\" poistaminen Star Office/OpenOffice.org/GIMP käytöstä "
-"epäonnistui."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
-msgstr "tähän jos et ole."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DHCP host name"
-msgstr "DHCP kone nimi"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Maksimi käyttöaika (sekunneissa)"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Mihin sarjaporttiin hiiresi on liitetty."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
-msgstr "Toimiiko tulostus kunnolla?"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
-msgstr "Liitä tiedostojärjestelmä vain luku -tilassa."
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "Huono"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result by mail"
-msgstr "Raportoi tarkistuksen tulos sähköpostitse."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
-msgstr "Grenada"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
-msgstr "DHCP:n alueen alku"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "Turvaton"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "SSH server"
-msgstr "SSH-palvelin"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektoria"
-
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "Ei"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Kannada"
-msgstr "Kannada"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
-msgstr "kirjasimia ei löytynyt.\n"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Haluatko Askelpalautin-näppäimen toimivan kuten Delete konsolissa?"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Pystyvirkistystaajuus"
-
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Siirryn vaiheeseen `%s'\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niger"
-msgstr "Niger"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing %s ..."
-msgstr "Poistetaan %s ..."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No printer"
-msgstr "Ei tulostinta"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "alert configuration"
-msgstr "hälytyksen asetukset"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "NetWare tulostusparametrit"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "%s BootSplash (%s) preview"
-msgstr "%s BootSplash (%s) esikatselu"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "February"
-msgstr "Helmikuu"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
-msgstr "Yleinen"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
-msgstr "/etc/issue* on olemassa"
-
-# Asennuksen sivuvalikko
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "Käyttäjien lisääminen"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Verkon asetukset (%d-laitteille)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "April"
-msgstr "Huhtikuu"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Deactivate now"
-msgstr "Deaktivoi nyt"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Pakollinen paketti %s puuttuu"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Filippiinit"
+"\n"
+"- Polta CD:lle"
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "OK"
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
+msgstr "RW"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup_.c:2555
#, c-format
-msgid "drakTermServ Overview"
-msgstr "drakTermServ yleiskuva"
+msgid " on device: %s"
+msgstr "laitteella: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
-msgstr "Tulostusjonon nimi"
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
+msgstr " (multi-sessio)"
-#: ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup_.c:2557
#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Haluatko käyttää aboot:a?"
+msgid ""
+"\n"
+"- Save to Tape on device: %s"
+msgstr ""
+"\n"
+"- Tallenna nauhalle laitteessa: %s"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "Belarusian"
-msgstr "Valkovenäjä"
+msgid "\t\tErase=%s"
+msgstr "\t\tPoista=%s"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2561
#, c-format
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"\n"
+"- Save via %s on host: %s\n"
msgstr ""
-"PDQ tukee vain paikallisia tulostimia, LPD etätulostimia, ja Socket/TCP "
-"tulostimia.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move files to the new partition"
-msgstr "Siirrä tiedostot uuteen osioon"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2562
#, 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."
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
msgstr ""
-"Lisää tähän CUPS-palvelimet, joiden tulostimia haluat käyttää. Sinun "
-"tarvitsee tehdä tämä vain mikäli palvelimet eivät lähetä tulostintietojaan "
-"paikallisverkkoon."
+"\t\t käyttäjätunnus: %s\n"
+"\t\t polulla: %s \n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2563
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."
+"- Options:\n"
msgstr ""
"\n"
-"Tervetuloa Tulostimen asetusvelhoon\n"
-"\n"
-"Tämä velho auttaa sinua asentamaan paikallisesti liitetyn tulostimen "
-"(tulostimia).\n"
-"\n"
-"Jos sinulla on paikallisesti liitetty tulostin (tulostimia), varmista että "
-"se/ne on kytketty päälle jotta se/ne voidaan tunnistaa automaattisesti.\n"
-"\n"
-"Paina \"Seuraava\" kun haluat jatkaa tai \"Peruuta\" jos et halua asettaa "
-"tulostinta (tulostimia) nyt."
+"- Valitsimet:\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
-msgstr "Pitcairn"
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
+msgstr "\tÄlä sisällytä järjestelmätiedostoja\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Palauta luettelosta"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
+msgstr "\tVarmuuskopiot käyttävät: tar ja bzip2\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "IDE"
-msgstr "IDE"
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
+msgstr "\tVarmuuskopiot käyttävät: tar ja gzip\n"
-#: ../../fs.pm:1
+#: ../../standalone/drakbackup_.c:2572
#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "osion %s liittäminen hakemistoon %s epäonnistui"
+msgid ""
+"\n"
+"- Daemon (%s) include:\n"
+msgstr ""
+"\n"
+"- Demoni (%s) sisältää :\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
-msgstr "Lilo näyttö"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
+msgstr "\t-Kiintolevy.\n"
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO graafisella valikolla"
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
+msgstr "\t-CD-ROM.\n"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "Arvioin aikaa"
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
+msgstr "\t-Nauha \n"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
-msgstr "Et voi poistaa tämän paketin valintaa. Se on jo asennettu"
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
+msgstr "\t-Verkkoon käyttäen FTP.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", tulostin \"%s\" , SMB/Windows palvelimella \"%s\""
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
+msgstr "\t-Verkkoon käyttäen SSH.\n"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "Jatka kuitenkin?"
+#: ../../standalone/drakbackup_.c:2578
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Verkkoon käyttäen Rsync.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr ""
-"Etsin saatavilla olevia paketteja, ja rakennan rpm-tietokannan uudelleen..."
+#: ../../standalone/drakbackup_.c:2579
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Verkkoon käyttäen WebDAV.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
+msgstr "Ei asetettu, valitse Velho tai Edistynyt.\n"
+
+#: ../../standalone/drakbackup_.c:2587
msgid ""
+"List of data to restore:\n"
"\n"
-" DrakBackup Report \n"
msgstr ""
+"Lista palautettavista tiedoista:\n"
"\n"
-" DrakBackup-raportti \n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Ei näytä olevan tallennusta tukevaa mediaa!"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "Lisäasetukset"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "New user list:\n"
-msgstr "Uusi käyttäjälistaus:\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Joko palvelimen nimi tai IP-osoite on annettava!"
-
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2754
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"
+"List of data corrupted:\n"
"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
msgstr ""
-"Mukautetulla käynnistyslevykkeellä voit käynnistää järjestelmän ilman\n"
-"tavanomaisen käyttöjärjestelmälataajan apua. Tästä on hyötyä, jos et halua\n"
-"asentaa SILOa järjestelmääsi, toinen käyttöjärjestelmä poistaa SILOn,\n"
-"tai SILO ei toimi laitteistossasi. Mukautettua käynnistyslevykettä voidaan\n"
-"käyttää myös Mandraken pelastus-kuvan kanssa, jolloin vakavista\n"
-"järjestelmän virhetilanteista on helpompi toipua.\n"
+"Lista vahingoittuneista tiedoista:\n"
"\n"
-"Jos haluat luoda käynnistyslevykkeen järjestelmääsi, aseta levyke\n"
-"ensimmäiseen asemaan ja paina \"OK\"."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Et voi käyttää salattua tiedostojärjestelmää liitospisteelle %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password history length to prevent password reuse."
-msgstr ""
-"Aseta salasanojen historian pituus estääksesi salasanojen käyttämistä "
-"uudelleen."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
-msgstr "Norfolkinsaari"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Theme installation failed!"
-msgstr "Teeman asennus epäonnistui!"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
-msgstr "Ei mitään tekemistä"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "Käytä loopback-tiedostoa"
+#: ../../standalone/drakbackup_.c:2756
+msgid "Please uncheck or remove it on next time."
+msgstr "Poista valinta tai poista se seuraavalla kerralla."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr "Mandraken virheenraportointityökalu"
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
+msgstr "Varmuuskopiot ovat vahingoittuneet"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
-msgstr "Suodata"
+#: ../../standalone/drakbackup_.c:2787
+msgid " All of your selected data have been "
+msgstr " Kaikki valitsemasi tietoa on "
-#: ../../network/adsl.pm:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "use pppoe"
-msgstr "käytä pppoe:tä"
+msgid " Successfuly Restored on %s "
+msgstr " onnistuneesti palautettu paikkaan %s "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving files to the new partition"
-msgstr "Siirrän tiedostoja uudelle osiolle"
+#: ../../standalone/drakbackup_.c:2906
+msgid " Restore Configuration "
+msgstr " Palauta asetukset "
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s KOKEELLISELLA laitteistokiihdytetyllä 3D-tuella"
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
+msgstr "Ok palauttaakseen muut tiedostot."
-#: ../../help.pm:1 ../../interactive.pm:1
-#, c-format
-msgid "Advanced"
-msgstr "Lisäasetukset"
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
+msgstr ""
+"Palautettava käyttäjälista (vain uusin päivä kutakin käyttäjää kohti on "
+"tärkeä)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer"
-msgstr "Siirrä"
+#: ../../standalone/drakbackup_.c:3019
+msgid "Backup the system files before:"
+msgstr "Tee järjestelmätiedostoista varmuuskopio ennen:"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Ruotsi)"
+#: ../../standalone/drakbackup_.c:3021
+msgid "please choose the date to restore"
+msgstr "Valitse päivämäärä, johon tiedon palauttaminen tehdään"
-#: ../../lang.pm:1
-#, c-format
-msgid "Afghanistan"
-msgstr "Afganistan"
+#: ../../standalone/drakbackup_.c:3057
+msgid "Use Hard Disk to backup"
+msgstr "Käytä kiintolevyä varmuuskopiointiin"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "More Options"
-msgstr "Lisävalinnat"
+#: ../../standalone/drakbackup_.c:3060
+msgid "Please enter the directory to save:"
+msgstr "Syötä hakemisto, johon tallennetaan:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
-"Poista kovalevyllä olevat 'varmista toiselle medialle' jälkeiset tar-"
-"tiedostot"
+#: ../../standalone/drakbackup_.c:3103
+msgid "FTP Connection"
+msgstr "FTP-yhteys"
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "Burundi"
+#: ../../standalone/drakbackup_.c:3110
+msgid "Secure Connection"
+msgstr "Salattu yhteys"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"cron on UNIX:n perusohjelma joka ajaa määriteltyjä ohjelmia määrätyillä\n"
-"ajanhetkillä. vixie cron lisää monia ominaisuuksia verrattuna normaaliin\n"
-"UNIX:n cron ohjelmaan, kuten paremman turvallisuuden ja laajemmat asetukset."
+#: ../../standalone/drakbackup_.c:3134
+msgid "Restore from Hard Disk."
+msgstr "Palauta kiintolevyltä."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr "Lisää asiakas -->"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
+msgstr "Anna hakemisto, johon varmuuskopiot on tallennettu"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "Lue tarkkaan!"
+#: ../../standalone/drakbackup_.c:3204
+msgid "Select another media to restore from"
+msgstr "Valitse toinen media, josta palauttaa"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
-msgstr "RW"
+#: ../../standalone/drakbackup_.c:3206
+msgid "Other Media"
+msgstr "Muu media"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"Ole hyvä,\n"
-"kirjoita käyttämäsi TV-normi sekä asuinmaa"
+# Asennuksen sivuvalikko
+#: ../../standalone/drakbackup_.c:3211
+msgid "Restore system"
+msgstr "Palauta järjestelmä"
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "Portti"
+#: ../../standalone/drakbackup_.c:3212
+msgid "Restore Users"
+msgstr "Palauta käyttäjät"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
-msgstr "Ei (vain asiantuntijoille)"
+#: ../../standalone/drakbackup_.c:3213
+msgid "Restore Other"
+msgstr "Palauta muut"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-msgstr "Ydintä ei valittu!"
+#: ../../standalone/drakbackup_.c:3215
+msgid "select path to restore (instead of /)"
+msgstr "valitse polku, joh onpalautat (juurihakemiston sijaan)"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-"Paina enter k~^Dynnist~^D~^Dksesi valitun k~^Dytt~^Tj~^Drjestelm~^Dn, 'e'"
+"Tee uusi varmuuskopio ennen palauttamista (vain kasvavilla varmuuskopioilla)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
-msgstr "Aseta-GID"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The encryption keys do not match"
-msgstr "Salausavaimet eivät täsmää"
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
+msgstr "Poista käyttäjien hakemistot ennen palauttamista."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3334
msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-"Multisessio-cd:lle ainoastaan ensimmääinen sessio tyhjentää cdrw:n. Muissa "
-"tapauksissa cdrw tyhjennetään ennen jokaista varmistusta."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "USB printer"
-msgstr "USB tulostin"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Oikea \"Windows\" näppäin"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr "jos asetettu, tarkistetaan tyhjät salasanat tiedostossa /etc/shadow."
+"Palauta valittu\n"
+"luettelotietue"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3344
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."
+"Restore Selected\n"
+"Files"
msgstr ""
-"Ennen jatkamista sinun pitäisi lukea huolellisesti lisenssin ehdot.\n"
-"Lisenssi kattaa koko Mandrake Linux jakelun. Jos hyväksyt kaikki\n"
-"ehdot, valitse \"%s\" vaihtoehto. Jos et hyväksy ehtoja, sinun\n"
-"tarvitsee vain sammuttaa tietokoneesi."
+"Palauta\n"
+"valitut tiedostot"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3361
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
+"Change\n"
+"Restore Path"
msgstr ""
-"Tässä on lista nykyisen tulostimen käytössä olevista tulostusvalinnoista:\n"
-"\n"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "Näyttötilat"
+"Muuta\n"
+"palautushakemisto"
-#: ../../network/drakfirewall.pm:1
+#: ../../standalone/drakbackup_.c:3427
#, 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."
-msgstr ""
-"drakfirewall asetustyökalu\n"
-"\n"
-"Tämä asettaa henkilökohtaisen palomuurin tähän Mandrake Linux koneeseen.\n"
-"Jos haluat vahvan omistetun palomuuri-ratkaisun ,voit katsoa erikoistettua\n"
-"MandrakeSecurity Firewall jakelua."
+msgid "Backup files not found at %s."
+msgstr "Varmistustiedostot ei löydetty kohteesta: %s"
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../standalone/drakbackup_.c:3440
#, c-format
msgid ""
-"Please enter your username, password and domain name to access this host."
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-"Anna tunnuksesi, salasanasi ja verkkoalue käyttääksesi tätä palvelinta."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Remove selected host"
-msgstr "Poista valittu kone"
+"Aseta CD nimellä: %s\n"
+"cd-asemaan liitoskohdassa /mnt/cdrom"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network configuration"
-msgstr "Verkon asetukset"
+#: ../../standalone/drakbackup_.c:3440
+msgid "Restore From CD"
+msgstr "Palauta CD-levyltä"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakbackup_.c:3442
#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/_Jaz asemien automaattitunnistus"
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr "Ei oikein nimitty CD. CD:n nimike on: %s."
-#: ../../any.pm:1
+#: ../../standalone/drakbackup_.c:3452
#, c-format
-msgid "No sharing"
-msgstr "Ei jaettu"
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
+msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Alenna valittua sääntöä yksi taso"
+#: ../../standalone/drakbackup_.c:3452
+msgid "Restore From Tape"
+msgstr "Palauta Nauhalta"
-#: ../../common.pm:1
+#: ../../standalone/drakbackup_.c:3454
#, c-format
-msgid "TB"
-msgstr "Tt"
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr "Ei oikein nimitty nauha. Nauhan nimike on: %s."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "FATAL"
-msgstr "VAKAVA"
+#: ../../standalone/drakbackup_.c:3474
+msgid "Restore Via Network"
+msgstr "Palauta verkon kautta"
-#: ../../standalone/printerdrake:1
+#: ../../standalone/drakbackup_.c:3474
#, c-format
-msgid "Refresh the list"
-msgstr "Päivitä lista"
+msgid "Restore Via Network Protocol: %s"
+msgstr "Palauta Verkko Protokolla: %s kautta"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Asiakaskohtainen %s:\n"
-" \t\tClusternfs:n kautta jokaisella levyttömällä asiakkaalla voi olla "
-"oma räätälöity\n"
-" \t\tasetustiedosto palvelimen juuritiedostojärjestelmässä. "
-"Tulevaisuudessa\n"
-" \t\tdrakTermServ auttaa näiden tiedostojen luomisessa."
+#: ../../standalone/drakbackup_.c:3475
+msgid "Host Name"
+msgstr "Palvelin nimi"
-#: ../../standalone/drakpxe:1
-#, 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"
-msgstr ""
-"DHCP-palvelin sallii muiden tietokoneiden käynnistyä käyttäen PXE:tä "
-"annetussa osoiteavaruudessa.\n"
-"\n"
-"Verkko-osoite on: %s ja aliverkko on: %s.\n"
-"\n"
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
+msgstr "Palvelin Polku tai Moduuli"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete"
-msgstr "Poista"
+#: ../../standalone/drakbackup_.c:3483
+msgid "Password required"
+msgstr "Salasana vaaditaan"
-#: ../../Xconfig/various.pm:1
-#, 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?"
-msgstr ""
-"Tietokoneesi voidaan asettaa käynnistymään automaattisesti graafiseen tilaan "
-"(XFree).\n"
-"Haluatko XFree:n käynnistyvän automaattisesti?"
+#: ../../standalone/drakbackup_.c:3489
+msgid "Username required"
+msgstr "Käyttäjätunnus vaaditaan"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
-msgstr "Muodosta levy"
+#: ../../standalone/drakbackup_.c:3492
+msgid "Hostname required"
+msgstr "Koneen nimi vaaditaan"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnect %s"
-msgstr "Katkaise %s"
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
+msgstr "Hakemisto tai moduuli vaaditaan"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
-msgstr "Tila:"
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
+msgstr "Tiedostot palautettu..."
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP-välityspalvelin:"
+#: ../../standalone/drakbackup_.c:3513
+msgid "Restore Failed..."
+msgstr "Palauta Epäonnistui..."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "SSH Server"
-msgstr "SSH-palvelin"
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
+msgstr "Palauta kaikki varmuuskopiot"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-Verkkoon käyttäen Rsync.\n"
+#: ../../standalone/drakbackup_.c:3760
+msgid "Custom Restore"
+msgstr "Mukautettu palautus"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
-msgstr "Eurooppalainen protokolla"
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
+msgstr "CD on asetettu - jatka."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", tulostin \"%s\" palvelimella \"%s\""
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
+msgstr "Selaa uuteen palautus säilytykseen."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
-msgstr ""
-"Huomaa että nykyhetkellä kaikki 'verkko' mediat käyttävät myös kovalevyä."
+#: ../../standalone/drakbackup_.c:3813
+msgid "Restore From Catalog"
+msgstr "Palauta luettelosta"
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
-#, c-format
-msgid "Error"
-msgstr "Virhe"
+#: ../../standalone/drakbackup_.c:3841
+msgid "Restore Progress"
+msgstr "Palautuksen edistyminen"
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
-msgstr "salli \"su\""
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+msgid "Previous"
+msgstr "Edellinen"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Australia"
-msgstr "Australia"
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+msgid "Save"
+msgstr "Tallenna"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "odota kunnes ttmkfdir on valmis..."
+#: ../../standalone/drakbackup_.c:3946
+msgid "Build Backup"
+msgstr "Tee varmuuskopio"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Aseta vain kortin \"%s\"%s"
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+msgid "Restore"
+msgstr "Palauta"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Level"
-msgstr "Taso"
+#: ../../standalone/drakbackup_.c:4189
+msgid ""
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
+msgstr ""
-# Asennuksen sivuvalikko
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Change the printing system"
-msgstr "Muuta tulostusjärjestelmä"
+#: ../../standalone/drakbackup_.c:4195
+msgid ""
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4209
msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
msgstr ""
-"Järjestelmäsi tukee usean näytön laitteistokokoonpanoa.\n"
-"Mitä haluat tehdä?"
+"Seuraavat paketit pitää asentaa:\n"
+" @list_of_rpm_to_install"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr "liittäminen epäonnistui: "
+#: ../../standalone/drakbackup_.c:4232
+msgid "Please select data to restore..."
+msgstr "Valitse palautettava tieto..."
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "Palvelujen asettaminen"
+#: ../../standalone/drakbackup_.c:4267
+msgid "Please select media for backup..."
+msgstr "Valitse varmuuskopioinnissa käytettävä media..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Lähetysosoite:"
+#: ../../standalone/drakbackup_.c:4275
+msgid "Please select data to backup..."
+msgstr "Valitse varmuuskopioitava tieto..."
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
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."
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-"GNU/Linuxin ytimen täytyy suorittaa laskentasilmukka käynnistyksen "
-"yhteydessä ajastimen alustamiseksi. Tulos tallennetaan bogomipseinä, joka on "
-"tapa mitata prosessorin suorituskykyä."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "Kuva"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Remote Administration"
-msgstr "Etähallinta"
+"Asetustiedostoa ei löytynyt\n"
+"valitse joko Velho tai Kehittynyt."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-msgstr ""
-"Tulostimen \"%s\" lisääminen Star Office/OpenOffice.org/GIMP käyttöön "
-"epäonnistui."
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
+msgstr "Kehityksen alla ... odota."
-#: ../../modules.pm:1
-#, c-format
-msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
-msgstr "PCMCIA tuki ei enää löydy 2.2-sarjan ytimistä. Käytä 2.4 ydintä."
+#: ../../standalone/drakbackup_.c:4382
+msgid "Backup system files"
+msgstr "Varmuuskopioi järjestelmätiedostot"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Selected All"
-msgstr "Valitse kaikki"
+#: ../../standalone/drakbackup_.c:4384
+msgid "Backup user files"
+msgstr "Varmuuskopioi käyttäjätiedostot"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Yleinen Unix Tulostusjärjestelmä"
+#: ../../standalone/drakbackup_.c:4386
+msgid "Backup other files"
+msgstr "Varmuuskopioi muut tiedostot"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Webmin Service"
-msgstr "Webmin palvelu"
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
+msgstr "Kokonaisedistyminen"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
-msgstr "laite"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
+msgstr "tiedostoja lähetetään FTP:n yli"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Syötä hakemisto, johon tallennetaan:"
+#: ../../standalone/drakbackup_.c:4416
+msgid "Sending files..."
+msgstr "Lähetän tiedostoja..."
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
-msgstr "Kreikka"
+#: ../../standalone/drakbackup_.c:4500
+msgid "Backup Now from configuration file"
+msgstr "Tee heti asetustiedoston varmuuskopio"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "Kaikki"
+#: ../../standalone/drakbackup_.c:4505
+msgid "View Backup Configuration."
+msgstr "Näytä varmuuskopioinnin asetukset."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Mitä tulostusjärjestelmää (jonoa) haluat käyttää?"
+#: ../../standalone/drakbackup_.c:4526
+msgid "Wizard Configuration"
+msgstr "Velhon Asettaminen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
-msgstr "Heinäkuu"
+#: ../../standalone/drakbackup_.c:4531
+msgid "Advanced Configuration"
+msgstr "Lisäasetukset"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Prints into %s"
-msgstr "Tulostetaan kohteeseen %s"
+# Asennuksen sivuvalikko
+#: ../../standalone/drakbackup_.c:4536
+msgid "Backup Now"
+msgstr "Varmuuskopioi heti"
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "Tapahtui virhe"
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
+msgstr "Drakbackup"
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4624
msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
+"options description:\n"
+"\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
msgstr ""
-"Tämä paketti tulee päivittää.\n"
-"Oletko varma että haluat poistaa valinnan?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "Tamil (kirjoituskone-asettelu)"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
-msgstr "Käytä salasanoja käyttäjien tunnistamiseen."
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4654
msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-"Salli / Estä järjestelmän käyttäjien listaus näytönhallinnassa (kdm ja gdm)."
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
-msgstr "manuaalinen"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
-msgstr "Etsittävän tiedoston nimi:"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Tulostimen valmistaja, malli, ajuri"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4662
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
msgstr ""
-"Mediaa ei ole olemassa tai se on kirjoitussuojattu laitteessa %s.\n"
-"Ole hyvä ja aseta media."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4701
msgid ""
-"Directory %s already contains data\n"
-"(%s)"
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
+"\n"
msgstr ""
-"Hakemisto %s sisältää jo jotakin tietoa\n"
-"(%s)"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Tulostin NetWare-palvelimella"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Anna muistin koko megatavuina (Mt)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr "Perjantai"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Internetyhteyden katkaiseminen valmis."
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "Oikea nimi"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "done"
-msgstr "valmis"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Poista valinta tai poista se seuraavalla kerralla."
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Higher"
-msgstr "Korkeampi"
+#: ../../standalone/drakbackup_.c:4727
+#, fuzzy
+msgid ""
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
+msgstr ""
+" Copyright (C) 2001 MandrakeSoft. Tekijä: DUPONT Sebastien <dupont_s"
+"\\@epita.fr>"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Valitse alustettavat osiot"
+#: ../../standalone/drakbackup_.c:4729
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+" updates 2002 MandrakeSoft, Tekijä: Stew Benedict <sbenedict\\@mandrakesoft."
+"com>"
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4732
msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
+"Description:\n"
"\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
"\n"
-"You can visit our hardware database at:\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-msgstr ""
-"Yhtäkään TV-korttia ei löydetty koneestasi. Varmista, että Linux-tuettu "
-"Video/TV-kortti on kytketty oikein.\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
"\n"
-"Voit katsoa meidän laitteistotietokantaa osoitteesta:\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't find %s on %s"
-msgstr "En löydä %s kohteessa %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "Japani 106-näppäiminen"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
-msgstr "En voinut asentaa paketteja joita tarvitaan kuvanlukijasi jakamiseen."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Tämä kestää joitakin minuutteja."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "June"
-msgstr "Kesäkuu"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Käytä etäkoneiden kuvanlukijoita"
+#: ../../standalone/drakbackup_.c:4769
+msgid ""
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Delete selected rule"
-msgstr "Poista valittu sääntö"
+#: ../../standalone/drakbackup_.c:4778
+msgid ""
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Tulostin CUPS-etäpalvelimella"
+msgid "Installation of %s failed. The following error occured:"
+msgstr "%s:n asennus epäonnistui. Seuraava virhe tapahtui:"
-#: ../../any.pm:1
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Aseta levyke asemaan %s"
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
+msgstr "Mandrake:N Virhe-raportointi Työkalu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
-msgstr "Maldiivit"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Aloittelija Velho"
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "tiivis"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Synkronointi työkalu"
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
-msgstr "1 minuutti"
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+msgid "Standalone Tools"
+msgstr "Itsenäisiä Työkaluja"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: fat"
-msgstr "tyyppi: paksu"
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "on channel %d id %d\n"
-msgstr "väylässä %d id %d\n"
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
-msgstr ", monitoimilaite"
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr "Laos"
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msec"
-#: ../advertising/04-configuration.pl:1
-#, 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!"
-msgstr ""
-"Mandrake Linux 9.2 tarjoaa sinulle Mandraken Ohjauskeskus, joka on tehokas "
-"työkalu sopeuttamaan tietokoneesi vastaamaan tarpeitasi. Aseta ja räätälöi "
-"osat kuten turvataso, laitteisto (näyttö, hiiri, näppäimistö...), "
-"Internetyhteytesi ja paljon muuta!"
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Kauko Ohjaus"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
-msgstr "Ota käyttöön / poista käytöstä verkkokorttien 'promiscuous' tarkistus."
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Ohjelmisto Hallinta"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr ""
-"Ei ole FAT-osioita, joiden kokoa voisi muuttaa (tai ei riittävästi vapaata "
-"tilaa)"
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr "Ylös"
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Windows:ista Siirtymisen työkalu"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
-msgstr "Palomuuri"
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr "Alue :"
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Asetus Velhot"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr "(E)IDE/ATA-ohjaimet"
+#: ../../standalone/drakbug_.c:75
+msgid "Application:"
+msgstr "Sovellus:"
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
-msgstr "Kaikki luku/kirjoitustoiminnot tehdään synkronisesti."
+#: ../../standalone/drakbug_.c:76
+msgid "Package: "
+msgstr "Paketti: "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "Tulostuspalvelin"
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
+msgstr "Ydin:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Custom configuration"
-msgstr "Mukautettu asetus"
+#: ../../standalone/drakbug_.c:78
+msgid "Release: "
+msgstr "Jakelu"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbug_.c:93
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 ""
-"Ole hyvä ja valitse missä asennus-kuvatiedosto sijaitsee.\n"
"\n"
-"Jos sinulle ei ole olemassaolevaa hakemistoa, ole hyvä ja kopioi CD-levyjen "
-"tai DVD-levyn sisältö.\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
"\n"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint Pierre ja Miquelon"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
-msgstr "Syyskuu"
+#: ../../standalone/drakbug_.c:112
+msgid "Report"
+msgstr "Raportti"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "tallennan Bootsplash teeman..."
+# Asennuksen sivuvalikko
+#: ../../standalone/drakbug_.c:148
+msgid "Not installed"
+msgstr "Ei asennettu"
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
-msgstr "Portugali"
+# Asennuksen sivuvalikko
+#: ../../standalone/drakbug_.c:160
+msgid "Package not installed"
+msgstr "Paketti ei asennettu"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "Onko sinulla muita?"
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
+msgstr "yhdistetään Bugzilla velhoon ..."
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", printing to %s"
-msgstr ", tulostetaan kohteeseen: %s"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Myönnä koneennimi DHCP osoitteesta"
+#: ../../standalone/drakbug_.c:180
+msgid "No browser available! Please install one"
+msgstr "Ei selainta käytettävissä! Ole hyvä ja asenna joku"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakconnect_.c:75
#, c-format
-msgid "Toggle to normal mode"
-msgstr "Vaihda Vakio-tilaan"
+msgid "Network configuration (%d adapters)"
+msgstr "Verkon asetukset (%d-laitteille)"
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
-msgstr "Yleinen"
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+msgid "Profile: "
+msgstr "Profiili: "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Sylinteristä %d sylinteriin %d\n"
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
+msgstr "Poista profiili..."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
-msgstr "VIESTISI TÄÄLLÄ"
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
+msgstr "Valitse poistettava profiili:"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakconnect_.c:125
msgid "New profile..."
msgstr "Uusi profiili..."
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
-#, c-format
-msgid "NONE"
-msgstr "EI"
+#: ../../standalone/drakconnect_.c:131
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Luotavan profiilin nimi (uusi profiili luodaan kopioimalla nykyisen tiedot) :"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "Mille levylle haluat siirtää?"
+#: ../../standalone/drakconnect_.c:157
+msgid "Hostname: "
+msgstr "Koneen nimi:"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Display logo on Console"
-msgstr "Näytä logo konsolissa"
+#: ../../standalone/drakconnect_.c:164
+msgid "Internet access"
+msgstr "Internetyhteys"
-#: ../../any.pm:1
-#, c-format
-msgid "Windows Domain"
-msgstr "Windows verkkoalue"
+#: ../../standalone/drakconnect_.c:177
+msgid "Type:"
+msgstr "Tyyppi:"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (norwegian)"
-msgstr "Saami (Norja)"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "Yhdyskäytävä:"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Interface %s (on network %s)"
-msgstr "Liitäntä %s (verkossa %s)"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Interface:"
+msgstr "Liitäntä:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
-msgstr "TIEDOT"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
+msgstr "Tila:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
-msgstr "Wallis ja Futuna"
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
+msgstr "Odota hetki"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Pitää ensin luoda /etc/dhcpd.conf!"
+#: ../../standalone/drakconnect_.c:216
+msgid "Configure Internet Access..."
+msgstr "Määrittele internetyhteys..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
-msgstr "Löytyykö FPU"
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+msgid "LAN configuration"
+msgstr "Lähiverkon asetukset"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
-"Ei lisätietoja\n"
-"tälle palvelulle, valitan."
+#: ../../standalone/drakconnect_.c:228
+msgid "Driver"
+msgstr "Ajurit"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr ""
-"Yhtäkään kuvanlukijaa ei löydetty, joka on kytketty suoraan tietokoneesi.\n"
+#: ../../standalone/drakconnect_.c:228
+msgid "Interface"
+msgstr "Liitäntä"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Käännä yksi verkkokortti -->"
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
+msgstr "Protokolla"
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "Marshallinsaaret"
+#: ../../standalone/drakconnect_.c:228
+msgid "State"
+msgstr "Tila"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "Onko tämä oikein?"
+#: ../../standalone/drakconnect_.c:240
+msgid "Configure Local Area Network..."
+msgstr "Aseta paikallisverkko..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
+msgstr "Paina tähän käynnistääksesi asennusohjelman ->"
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr "Pääkäyttäjän salasana"
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "Velho..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Käännä kaikki ytimet -->"
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
+msgstr "Toteuta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVDRAM device"
-msgstr "DVDRAM laite"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Connected"
+msgstr "Yhteys muodostettu"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
-msgstr "jos asetettu, raportoidaan omistamattomat tiedostot."
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Not connected"
+msgstr "Ei yhteyttä"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
+msgstr "Yhdistä..."
+
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
+msgstr "Katkaise yhteys..."
+
+#: ../../standalone/drakconnect_.c:400
msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Sinulla ei ole sivutusosiota\n"
-"\n"
-"Jatka kuitenkin?"
+"Varoitus, toinen internet-yhteys on havaittu, mahdollisesti käyttäen sinun "
+"vekkoasi"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Version: "
-msgstr "Versio: "
+#: ../../standalone/drakconnect_.c:427
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Sinulla ei ole ainoatakaan asetettua liityntää.\n"
+"Aseta ne ensin klikkaamalla 'Aseta'"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Server IP missing!"
-msgstr "Palvelimen IP puuttuu!"
+#: ../../standalone/drakconnect_.c:449
+msgid "LAN Configuration"
+msgstr "Lähiverkon asetukset"
-#: ../../lang.pm:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Suriname"
-msgstr "Surinam"
+msgid "Adapter %s: %s"
+msgstr "Laite %s: %s"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Use a floppy"
-msgstr "Käytä levykettä"
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
+msgstr "Käynnistysprotokolla"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
-msgstr "Ota ACPI käyttöön"
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
+msgstr "Käynnistetty koneen käynnistämisen yhteydessä"
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
-msgstr "Salli kirjoitusoikeutta tavalliselle käyttäjille"
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
+msgstr "DHCP-asiakas"
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
-msgstr "Graafinen ympäristö"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "activate now"
+msgstr "aktivoi nyt"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
-msgstr "Gibraltar"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "deactivate now"
+msgstr "deaktivoi nyt"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Do nothing"
-msgstr "Jätä tekemättä"
+#: ../../standalone/drakconnect_.c:499
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Tätä liityntärajapintaa ei ole vielä asetettu.\n"
+"Käynnistä pääikkunasta löytyvä asetusvelho"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete Client"
-msgstr "Poista asiakas"
+#: ../../standalone/drakconnect_.c:556
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Sinulla ei ole ainoatakaan internet-yhteyttä.\n"
+"Luo sellainen ensin klikkaamalla 'Aseta'"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "Tiedostojärjestelmä: "
+#: ../../standalone/drakconnect_.c:580
+msgid "Internet connection configuration"
+msgstr "Internetyhteyden asetus"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting network..."
-msgstr "Käynnistän verkkoa..."
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet Connection Configuration"
+msgstr "Internetyhteyden asetus"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
-msgstr "Vietnam"
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+msgid "Connection type: "
+msgstr "Yhteyden nimi: "
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Kenttien kuvaus"
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
+msgstr "Parametrit"
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr "Optimoi turvallisuutesi"
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Yhdyskäytävä"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-" Kiitokset:\n"
-"\t- LTSP Projekti http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
+msgstr "Verkkokortti"
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Help"
-msgstr "Apua"
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
+msgstr "DHCP-asiakas"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
-msgstr "Tarkista ovatko verkkolaitteet 'promiscuous' tilassa."
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Your personal phone number"
-msgstr "Henkilökohtainen puhelinnumerosi"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Module name"
+msgstr "Moduulin nimi"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which size do you want to keep for Windows on"
-msgstr "Kuinka paljon tilaa haluat säilyttää Windowsille"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Size"
+msgstr "Koko"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Testisivu(t) on lähetetty tulostimelle.\n"
-"Voi kestää hetken ennen kuin tulostus alkaa.\n"
+#: ../../standalone/drakfloppy_.c:45
+msgid "drakfloppy"
+msgstr "drakfloppy"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Username required"
-msgstr "Käyttäjätunnus vaaditaan"
+#: ../../standalone/drakfloppy_.c:63
+msgid "boot disk creation"
+msgstr "käynnistyslevykkeen luonti"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Device"
-msgstr "Laite"
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr "oletus"
-#: ../../help.pm:1
+#: ../../standalone/drakfloppy_.c:87
#, 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."
-msgstr ""
-"Tavallisesti DrakX valitsee sinulle oikean näppäimistön sen mukaan, minkä\n"
-"kielen olet valinnut. Kuitenkaan sinulla ei välttämättä ole näppäimistöä, "
-"joka\n"
-"vastaa suoraan kieltäsi. Jos olet esimerkiksi englanninkielinen "
-"sveitsiläinen,\n"
-"voit silti haluta sveitsiläisen näppäimistön. Tai jos puhut englantia, mutta "
-"asut\n"
-"Quebecissä, sinulla voi olla samanlainen tilanne, missä kieli ja "
-"näppäimistö\n"
-"eivät vastaa toisiaan. Molemmissa tapauksissa tämä asennusvaihe antaa\n"
-"sinulle mahdollisuuden valita sopivan näppäimistön listasta.\n"
-"\n"
-"Paina \"%s\"-painiketta saadaksesi täydellisen listan tuetuista\n"
-"näppäimistöistä.\n"
-"\n"
-"Jos valitset näppäimistön joka ei perustu latinalaiseen kirjaimistoon, "
-"sinulta\n"
-"kysytään näppäinyhdistelmää joka vaihtaa latinalaisenja ei-latinalaisen\n"
-"järjestyksen välillä."
+msgid "DrakFloppy Error: %s"
+msgstr "Virhe DrakFloppyssa: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) -tulostimen parametrit"
+#: ../../standalone/drakfloppy_.c:98
+msgid "kernel version"
+msgstr "ytimen versio"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
+#: ../../standalone/drakfloppy_.c:104
+msgid "General"
+msgstr "Yleinen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr ""
-"Voimassa oleva käyttäjien lista on muutettu, asetustiedosto kirjoitetaan "
-"uudestaan."
+#: ../../standalone/drakfloppy_.c:109
+msgid "Expert Area"
+msgstr "Asiantuntijan alue"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakfloppy_.c:112
msgid "mkinitrd optional arguments"
-msgstr "mkinitrd vapaaehtoiset parametrit"
-
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
-msgstr ""
-"Selaa Internetiä käyttäen Mozilla tai Konqueror, lue sähköpostit käyttäen "
-"Evolutionia tai KMailia, luo dokumenttejasi OpenOffice.org avulla."
+msgstr "mkinitrd:n vapaaehtoiset parametrit"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Muun maailman käyttämä protokolla"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print test pages"
-msgstr "Tulosta testisivut"
+#: ../../standalone/drakfloppy_.c:113
+msgid "Add a module"
+msgstr "Lisää moduuli"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Activate now"
-msgstr "Aktivoi nyt"
+#: ../../standalone/drakfloppy_.c:133
+msgid "force"
+msgstr "pakota"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
-msgstr "64 Mt tai enemmän"
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
+msgstr "jos tarvitaan"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
-"Valitse testisivut jotka haluat tulostaa.\n"
-"Huomautus: valokuva testisivun tulostus voi kestää aika kauan ja "
-"lasertulostimissa, joissa on liian vähän muistia, tulostus voi epäonnistua. "
-"Yleensä vakiotestisivun tulostus riittää."
+#: ../../standalone/drakfloppy_.c:135
+msgid "omit scsi modules"
+msgstr "jätä pois scsi-moduulit"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Valitse laite johon kuvanlukijasi %s on kytketty."
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
+msgstr "jätä pois raid-moduulit"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Not formatted\n"
-msgstr "Ei alustettu\n"
+#: ../../standalone/drakfloppy_.c:172
+msgid "Remove a module"
+msgstr "Poista moduuli"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Periodic Checks"
-msgstr "Jaksottaiset tarkistukset"
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
+msgstr "Tuloste"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "PXE Server Configuration"
-msgstr "PXE-palvelimen asetukset"
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
+msgstr "Muodosta levy"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "Backup the system files before:"
-msgstr "Luo järjestelmätiedostoista varmuuskopio ennen:"
+msgid "Be sure a media is present for the device %s"
+msgstr "Varmista, että media on laitteessa %s"
-#: ../../security/level.pm:1
+#: ../../standalone/drakfloppy_.c:341
#, c-format
msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
-"Tämä on vakio turvataso, jota suositellaan tietokoneelle, jota käytetään\n"
-"Internetissä asiakaskoneena."
-#: ../../any.pm:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "First floppy drive"
-msgstr "Ensimmäinen levykeasema"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Tiedosto/_Lopeta"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak"
-msgstr "Dvorak"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose the new size"
-msgstr "Valitse uusi koko"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Media class"
-msgstr "Media luokka"
+msgid "Unable to fork: %s"
+msgstr "Prosessia %s ei voitu haarauttaa"
-#: ../../standalone/XFdrake:1
+#: ../../standalone/drakfloppy_.c:349
#, c-format
-msgid "You need to log out and back in again for changes to take effect"
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
msgstr ""
-"Sinun pitää kirjautua ulos, ja takaisin sisään jotta muutokset tulevat "
-"voimaan."
+"mkbootdisk:iä ei voitu sulkea oikein: \n"
+" %s \n"
+" %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
-msgstr "%s ei ole tunnettu tässä Scannerdraken versiossa."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Faroe Islands"
-msgstr "Fäärsaaret"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
+msgstr "Etsi asennetut kirjasimet"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Restart XFS"
-msgstr "Käynnistä XFS uudelleen"
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
+msgstr "Poista asetettujen kirjasimien valinta"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
-msgstr "Lisää kone/verkko"
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
+msgstr "jäsennä kaikki kirjasimet"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "Scannerdrake ei käynnistetä nyt."
+#: ../../standalone/drakfont_.c:242
+msgid "no fonts found"
+msgstr "kirjasimia ei löytynyt"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model name"
-msgstr "Mallinimi"
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+msgid "done"
+msgstr "valmis"
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
-msgstr "Albania"
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
+msgstr "liitetyiltä osioilta ei löytynyt ainoatakaan kirjasinta"
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr "Brittiläinen Intian valtameren alue"
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
+msgstr "Valitse uudelleen oikeat kirjasimet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Normal Mode"
-msgstr "Perustila"
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
+msgstr "kirjasimia ei löytynyt.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "Ei CDR/DVDR levyä asemassa!"
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
+msgstr "Etsi kirjasimia asennettujen listalta"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer connection type"
-msgstr "Tulostusyhteyden tyyppi"
+#: ../../standalone/drakfont_.c:359
+msgid "Fonts copy"
+msgstr "Kirjasimet kopioi"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
-msgstr "Koneessasi ei ole verkkokorttia!"
+#: ../../standalone/drakfont_.c:363
+msgid "True Type fonts installation"
+msgstr "True Type kirjasimien asennus"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network %s"
-msgstr "Verkko %s"
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
+msgstr "odota kunnes ttmkfdir on valmis..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
-msgstr "Malayalam"
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
+msgstr "True Type -asennus valmis"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
-msgstr "Valitsin %s on arvoalueensa ulkopuolella!"
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
+msgstr "Kirjasinten muuntaminen"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connect %s"
-msgstr "Yhdistä %s"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
+msgstr "rakennetaan: type1inst"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "Käynnistetään CUPS uudelleen..."
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
+msgstr "Ghostscript viittaus"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Tulostus/Skannaus/Kuva-Kortit laitteella \"%s\""
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
+msgstr "ttf kirjasinten muunnos"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
-msgstr ""
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
+msgstr "pfm kirjasinten muunnos"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Kahdentunut liitospiste %s"
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
+msgstr "Poista väliaikaistiedostot"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
-msgstr "jos asetettu, suoritetaan chkrootkit tarkistuksia."
+#: ../../standalone/drakfont_.c:459
+msgid "Restart XFS"
+msgstr "Käynnistä XFS uudelleen"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "Yhteyden asetus"
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
+msgstr "Poista kirjasintiedostot"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|Generic"
-msgstr "Tuntematon|Yleinen"
+#: ../../standalone/drakfont_.c:528
+msgid "xfs restart"
+msgstr "xfs:n uudelleenkäynnistys"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
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 ""
-"Tässä vaiheessa, kun asennat Mandrake Linuxia, on todennäköistä että\n"
-"jotkut paketit on päivitetty alkujulkaisun jälkeen. Joitakin virheitä voi "
-"olla\n"
-"korjattu ja turvallisuusaukkoja paikattu. Hyödyntääksesi näitä päivityksiä,\n"
-"sinulla on nyt mahdollisuus hakea ne Internetistä. Valitse \"%s\" jos\n"
-"sinulla on toimiva Internet yhteys, tai \"%s\" jos haluat asentaa\n"
-"päivitykset myöhemmin.\n"
-"\n"
-"Valitsemalla \"%s\" sinulle näytetään lista päivityspalvelimista.\n"
-"Valitse lähin palvelin. Sen jälkeen sinulle näytetään lista päivityksistä:\n"
-"tarkista valinnat ja paina \"%s\" jolloin paketit haetaan ja\n"
-"asennetaan, tai \"%s\" poistuaksesi päivityksestä."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-msgstr "Myanmar"
-
-#: ../../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
-#, c-format
-msgid "Quit"
-msgstr "Lopeta"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "Automaattinen varaus"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Tarkista vialliset lohkot?"
+"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 using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
+msgstr ""
+"Ennen kuin asennat uusia kirjasimia, varmista että sinulla on oikeudet "
+"käyttää ja asentaa ne järjestelmääsi.\n"
+"\n"
+"- Voit asentaa kirjasimet perinteisellä tavalla. Harvoissa tapauksissa bogus-"
+"kirjasimet voivat lukitä X-palvelimen."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Other MultiMedia devices"
-msgstr "Muu multimedialaite"
+# Asennuksen sivuvalikko
+#: ../../standalone/drakfont_.c:621
+msgid "Fonts Importation"
+msgstr "Kirjasinten tuonti"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "burner"
-msgstr "poltin"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
+msgstr "Hae Windowsin kirjasimet"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Bug Description/System Information"
-msgstr "Vian kuvaus/Järjestelmätiedot"
+#: ../../standalone/drakfont_.c:658
+msgid "Uninstall Fonts"
+msgstr "Poista kirjasimet levyltä"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (Default is all users)"
-msgstr " (Oletuksena kaikki käyttäjät)"
+#: ../../standalone/drakfont_.c:669
+msgid "Advanced Options"
+msgstr "Lisävalinnat"
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "No remote machines"
-msgstr "Ei etäkoneita"
+#: ../../standalone/drakfont_.c:677
+msgid "Font List"
+msgstr "Kirjasinlista"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:737
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"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@mandrakesoft.com\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 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"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
-msgstr ""
+" 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"
-"Tervetuloa Tulostimen asetusvelhoon\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"
-"Tämä velho auttaa sinua asentamaan paikallisesti liitetyn tulostimen "
-"(tulostimia).\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"
"\n"
-"Jos sinulla on paikallisesti liitetty tulostin (tulostimia), varmista että "
-"se/ne on kytketty päälle jotta se/ne voidaan tunnistaa automaattisesti.\n"
"\n"
-"Paina \"Seuraava\" kun haluat jatkaa tai \"Peruuta\" jos et halua asettaa "
-"tulostinta (tulostimia) nyt."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "Tunnistus: NIS"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-"Asetus ``Rajoita komentorivioptioita'' ei ole hyödyllinen ilman salasanaa"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Internetyhteyden jakaminen on käytössä"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "Arabiemiirikunnat"
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:862
+msgid "Choose the applications that will support the fonts:"
+msgstr "Valitse sovellukset, jotka tukevat kirjasimia :"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "Kortin IO_0"
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
+msgstr "Ghostscript"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
-msgstr "Poista paikallinen asetus käytöstä"
+#: ../../standalone/drakfont_.c:877
+msgid "StarOffice"
+msgstr "StarOffice"
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "Thaimaa"
+#: ../../standalone/drakfont_.c:884
+msgid "Abiword"
+msgstr "Abiword"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "Kortin IO_1"
+#: ../../standalone/drakfont_.c:891
+msgid "Generic Printers"
+msgstr "Yleiset tulostimet"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
-msgstr "Etsi:"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
+msgstr "Valitse kirjasintiedosto tai hakemisto ja klikkaa 'Lisää'"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "Kazakstan"
+# Asennuksen sivuvalikko
+#: ../../standalone/drakfont_.c:1005
+msgid "Install List"
+msgstr "Asenna lista"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
-msgstr "Reitittimet:"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
+msgstr "paina tähän, kun olet varma."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Write"
-msgstr "Kirjoita"
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
+msgstr "tähän jos et ole."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Näytä kaikki saatavilla olevat CUPS-etätulostimet"
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
+msgstr "Poista valinta kaikista"
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux asennus %s"
+#: ../../standalone/drakfont_.c:1116
+msgid "Selected All"
+msgstr "Valitse kaikki"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
-msgstr "Tuntematon ajuri"
+#: ../../standalone/drakfont_.c:1120
+msgid "Remove List"
+msgstr "Poista lista"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "Thai-näppäimistö"
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+msgid "Initials tests"
+msgstr "Alkutestit"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr "Bouvet'nsaari"
+#: ../../standalone/drakfont_.c:1145
+msgid "Copy fonts on your system"
+msgstr "Kopioi kirjasimet järjestelmääsi"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "Soittoasetukset"
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
+msgstr "Asenna & muunna kirjasimia"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "Jos porttia ei ole määritetty, käytetään oletusporttia 631"
+#: ../../standalone/drakfont_.c:1153
+msgid "Post Install"
+msgstr "Asennuksen jälkeiset toiminnot"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Asiakaskohtaiset järjestelmän asetustiedostot:\n"
-" \t\tClusternfs:n kautta, jokaisella levyttömällä asiakkaalla voi "
-"olla omat räätälöidyt\n"
-" \t\tasetustiedostot palvelimen juuritiedostojärjestelmässä. "
-"Sallimalla paikallisen asiakaan\n"
-"\t\t\t\tlaitteistoasetukset, asiakkaat voivat muokata esimerkiksi /etc/"
-"modules.conf,\n"
-" \t\t/etc/sysconfig/mouse, /etc/sysconfig/keyboard asiakaskohtaisina "
-"tiedostoina.\n"
-"\n"
-"\n"
-" Huom! Paikallisten laitteistoasetuksien salliminen sallii root "
-"kirjautumista jokaisen\n"
-" koneen terminaalipalvelimelle jossa tämä toiminto on käytössä.\n"
-" Paikallinen asetus voidaan poistaa käytöstä kun kaikki asetukset on "
-"tehty, säästäen\n"
-" mukautetut asetustiedostot."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-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 ""
-"Vaihda CD-levyä!\n"
-"\n"
-"Aseta CD-levy nimeltään \"%s\" CD-asemaan ja paina OK kun olet valmis.\n"
-"Jos sinulla ei ole levyä, paina Peruuta välttääksesi asennukset tältä "
-"levyltä."
+#: ../../standalone/drakfont_.c:1178
+msgid "Remove fonts on your system"
+msgstr "Poista järjestelmässäsi olevia kirjasimia"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "Puola"
+# Asennuksen sivuvalikko
+#: ../../standalone/drakfont_.c:1182
+msgid "Post Uninstall"
+msgstr "Poistamisen jälkeiset toiminnot"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Online"
-msgstr "Mandrake Online"
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
+msgstr "Internetyhteyden jakaminen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
-msgstr "\t-Verkkoon käyttäen WebDAV.\n"
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Valitamme, tuemme ainoastaan 2.4 ytimet."
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", monikäyttölaite rinnakkaisportissa "
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Internetyhteyden jakaminen on käytössä"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakgw_.c:126
msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"Koneestasi ei löytynyt yhtään verkkokorttia. Aja laitteiston "
-"tunnistustyökalu."
-
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "Verkkopeite"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "No hard drives found"
-msgstr "Yhtäkään kovalevyä ei löytynyt"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "2 näppäintä"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "Minkälainen ISDN-yhteytesi on?"
+"Internetyhteyden jakaminen on jo asetettu.\n"
+"Sen nykyinen tila on: käytössä.\n"
+"\n"
+"Mitä haluat tehdä?"
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "Nimike"
+#: ../../standalone/drakgw_.c:130
+msgid "disable"
+msgstr "poista käytöstä"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "Tallenna levykkeelle"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
+msgstr "peruuta"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check open ports"
-msgstr "Tarkista avoimet portit"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "reconfigure"
+msgstr "aseta uudelleen"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Edit selected printer"
-msgstr "Muokkaa valittua tulostinta"
+#: ../../standalone/drakgw_.c:133
+msgid "Disabling servers..."
+msgstr "Poistan palvelut käytöstä..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection"
-msgstr "Tulostimen automaattinen tunnistus"
+#: ../../standalone/drakgw_.c:142
+msgid "Internet connection sharing is now disabled."
+msgstr "Internetyhteyden jakaminen ei ole enää käytössä."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Mikä näistä on ISDN-korttisi?"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Internetyhteyden jakaminen ei ole käytössä"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:150
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."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"NFS on yleinen protokolla tiedostojen jakoon TCP/IP-\n"
-"verkoissa. Tämä palvelu mahdollistaa NFS-palvelimen\n"
-"käynnistyksen, jakoa ohjataan tiedostosta /etc/exports."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Msec"
-msgstr "Msec"
+"Internetyhteyden jakaminen on jo asetettu.\n"
+"Sen nykyinen tila on .ei käytössä\n"
+"\n"
+"Mitä haluat tehdä?"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
-"=> Huomaa, nimike vaihtui:\n"
-"%s"
+#: ../../standalone/drakgw_.c:154
+msgid "enable"
+msgstr "ota käyttöön"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
-msgstr "Kaappauspuskurien määrä:"
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
+msgstr "Otan palvelut käyttöön.."
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Valintasi? (0/1, oletus '%s') "
+#: ../../standalone/drakgw_.c:166
+msgid "Internet connection sharing is now enabled."
+msgstr "Internetyhteyden jakaminen on nyt käytössä."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:183
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"
+"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"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
"\n"
-"Click on \"%s\" if you wish to select partitions that will be checked for\n"
-"bad blocks on the disk."
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
-"Kaikki vasta määritellyt osiot täytyy alustaa käyttöä varten (alustaminen\n"
-"tarkoittaa tiedostojärjestelmän luomista).\n"
-"\n"
-"Samalla voit haluta alustaa uudelleen myös olemassaolevia osioita\n"
-"poistaaksesi kaiken niissä olevan tiedon. Jos haluat haluat tehdä niin,\n"
-"valitse myös ne osiot.\n"
-"\n"
-"Huomaa, että sinun ei ole pakko alustaa kaikkia jo olemassa olevia\n"
-"osioita. Sinun pitää alustaa ne osiot, joilla käyttöjärjestelmä\n"
-"sijaitsee (kuten \"/\", \"/usr\" ja \"/var\"), mutta voit säilyttää osiot,\n"
-"joilla henkilökohtaiset tiedostosi sijaitsevat (tavallisesti \"/home\").\n"
-"\n"
-"Ole huolellinen osioita valitessasi. Alustamisen jälkeen kaikki tieto\n"
-"valituilla osioilla on poissa eikä niiden palauttaminen enää onnistu.\n"
-"\n"
-"Valitse \"%s\" kun olet valmis alustamaan osiot.\n"
+"Olet aikeissa asettaa tietokoneesi jakamaan internetyhteyden muiden koneiden "
+"kanssa.\n"
+"Tällä ominaisuudella muut paikallisverkossa olevat tietokoneet voivat "
+"käyttää tämän tietokoneen internetyhteyttä.\n"
"\n"
-"Valitse \"%s\", jos haluat valita toisen osion Mandrake Linuxin\n"
-"asentamiseen.\n"
+"Varmista että olet määrittänyt verkkosi/nettiyhteytesi käyttämällä "
+"drakconnect ennen kuin jatkat.\n"
"\n"
-"Valitse \"%s\", jos haluat valita osiot, jotka tarkistetaan\n"
-"levyllä olevien viallisten lohkojen varalta."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "French"
-msgstr "Ranska"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTY)"
-msgstr "Tsekki (QWERTY)"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow X Window connections"
-msgstr "Salli X Window -yhteydet"
+"Huomaa: tarvitset erityisen verkkokortin pystyttääksesi oman paikallisverkon."
-#: ../../standalone/service_harddrake:1
+#: ../../standalone/drakgw_.c:211
#, c-format
-msgid "Hardware probing in progress"
-msgstr "Laitteiston tunnistaminen käynnissä..."
+msgid "Interface %s (using module %s)"
+msgstr "Liittymä %s (käyttäen moduulia %s)"
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
+#: ../../standalone/drakgw_.c:212
#, c-format
-msgid "Net Device"
-msgstr "Verkkolaite"
+msgid "Interface %s"
+msgstr "Liittymä %s"
-# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "Yhteenveto"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr "Koneessasi ei ole verkkokorttia!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:221
msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
msgstr ""
-" (Rinnakkaisportit: /dev/lp0, /dev/lp1, ..., vastaavat LPT1:, LPT2:, ..., 1. "
-"USB-tulostin: /dev/usb/lp0, 2. USB-tulostin: /dev/usb/lp1, ...)."
+"Koneestasi ei löytynyt yhtään verkkokorttia. Aja laitteistonhakutyökalu."
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Next"
-msgstr "Seuraava"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Et voi asentaa käyttöjärjestelmän lataajaa osiolle %s\n"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp/zeroconf)"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr "Verkkoliittymä"
-#: ../../standalone/drakautoinst:1
+#: ../../standalone/drakgw_.c:228
#, c-format
msgid ""
+"There is only one configured network adapter on your system:\n"
"\n"
-"Welcome.\n"
+"%s\n"
"\n"
-"The parameters of the auto-install are available in the sections on the left"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
+"Tietokoneessasi on vain yksi verkkokortti:\n"
"\n"
-"Tervetuloa.\n"
+"%s\n"
"\n"
-"Automaattisen asennuksen parametrit löytyvät vasemmalla olevista lohkoista"
+"Valmistaudun asettamaan lähiverkkosi asetukset kyseiselle laitteelle."
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/drakgw_.c:235
msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
-msgstr ""
-"paketti 'ImageMagick' vaaditaan jotta kaikki toimisi oikein.\n"
-"Paina \"Ok\" asentaaksesi 'ImageMagick\" tai \"Peruuta\" lopettaaksesi."
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Telnet server"
-msgstr "X-palvelin"
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr "Valitse verkkokortti, joka on kytketty paikallisverkkoon."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Liettua \"numerorivi\" QWERTY"
+#: ../../standalone/drakgw_.c:261
+msgid "Network interface already configured"
+msgstr "Verkkoliitäntä on jo asetettu"
-#: ../../install_any.pm:1
+#: ../../standalone/drakgw_.c:262
#, c-format
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
+"Warning, the network adapter (%s) is already configured.\n"
"\n"
+"Do you want an automatic re-configuration?\n"
"\n"
-"Do you really want to remove these packages?\n"
+"You can do it manually but you need to know what you're doing."
msgstr ""
-"Seuraavat paketit poistetaan jotta järjestelmäsi voidaan päivittää:\n"
-"%s\n"
+"Varoitus, verkkokortti (%s) on jo asetettu.\n"
+"\n"
+"Haluatko automaattisen uudelleenasetuksen?\n"
"\n"
-"Haluatko varmasti poistaa nämä paketit?\n"
+"Voit asettaa sen myös manuaalisesti, mutta silloin sinun pitää tietää, mitä "
+"olet tekemässä."
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
-msgstr "Anguilla"
+#: ../../standalone/drakgw_.c:267
+msgid "Automatic reconfiguration"
+msgstr "Automaattinen uudelleenasetus"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "NIS-verkkoalue"
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
+msgstr "Ei (asiantuntijoille)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "Antarktis"
+#: ../../standalone/drakgw_.c:268
+msgid "Show current interface configuration"
+msgstr "Näytä nykyiset liitäntäasetukset"
+
+#: ../../standalone/drakgw_.c:269
+msgid "Current interface configuration"
+msgstr "Nykyiset liitäntäasetukset"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:270
#, c-format
msgid ""
+"Current configuration of `%s':\n"
"\n"
-"- User Files:\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
msgstr ""
+"Koneen `%s' nykyiset asetukset:\n"
"\n"
-"- Käyttäjätiedostot:\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
-msgstr "Liittämisen optiot"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Jamaica"
-msgstr "Jamaika"
+"Verkko: %s\n"
+"IP-osoite: %s\n"
+"IP-määreet: %s\n"
+"Ajuri: %s"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:283
msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
+"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"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
+"\n"
msgstr ""
-"Määrää raakalaitteet lohkolaitteiksi (kuten kiintolevyn osiot)\n"
-"tietyn tyyppisten sovellusten, kuten Oracle tai DVD-soitin, käyttöön"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Odota, valmistelen asennusta..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "Tsekki (QWERTZ)"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Selvitä verkkokortti-id (hyödyllistä sylimikroille)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Portin numeron pitäisi olla kokonaisluku!"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "You must choose an image file first!"
-msgstr "Sinun pitää valita kuvatiedosto ensin!"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Palauta kiintolevyltä."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "Lisää LVM:iin"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "Nimipalvelin"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr "Trinidad ja Tobago"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD ja LPRng eivät tue IPP-tulostimia.\n"
+#: ../../standalone/drakgw_.c:290
+msgid "Local Network adress"
+msgstr "Paikallinen Verkko osoite"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host name or IP."
-msgstr "Koneen nimi tai IP"
+#: ../../standalone/drakgw_.c:294
+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 ""
+"SHCP Palvelin Asettaminen.\n"
+"\n"
+"Täältä voit valita erilaiset optiot DHCP palvelimen asettamiseen.\n"
+"Jos et tiedä jonkun option tarkoitus, jätä sitä oletusarvoihinsa.\n"
+"\n"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Edit"
-msgstr "/_Muokkaa"
+#: ../../standalone/drakgw_.c:300
+msgid "(This) DHCP Server IP"
+msgstr "(Tämän) DHCP-palvelimen IP-osoite"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "yksinkertainen"
+#: ../../standalone/drakgw_.c:301
+msgid "The DNS Server IP"
+msgstr "DNS Palvelimen IP-osoite"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "Tyhjennä kaikki"
+#: ../../standalone/drakgw_.c:302
+msgid "The internal domain name"
+msgstr "Sisäinen verkkoalueen nimi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No test pages"
-msgstr "Ei testisivuja"
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
+msgstr "DHCP:n alueen alku"
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falklandinsaaret"
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
+msgstr "DHCP:n alueen loppu"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Laite %s: %s"
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
+msgstr "Vakio liisaus-aika (sekunneissa)"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Boot disk creation"
-msgstr "Käynnistyslevykkeen luominen"
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
+msgstr "Maksimi liisaus aika (sekunneissa)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
-msgstr "Maanantai"
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
+msgstr "Aseta liityntärajapinta ja DHCP-palvelin uudelleen"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown model"
-msgstr "Tuntematon malli"
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
+msgstr "Paikallisverkko ei loppunut '.0':aan, töydennetään."
-#: ../../security/help.pm:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
+msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-"jos asetettu, tarkistetaan sallivatko tiedostot/hakemistot kirjoituksen "
-"kaikille."
+"Mahdollinen lähiverkon osoitetörmäys löydetty nykyisillä asetuksilla %s!\n"
-#: ../../help.pm:1
-#, c-format
-msgid "authentication"
-msgstr "tunnistustapa"
-
-# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now"
-msgstr "Varmuuskopioi heti"
+#: ../../standalone/drakgw_.c:335
+msgid "Configuring..."
+msgstr "Määrittelen..."
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/_Tiedosto"
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+"Määrittelen komentotiedostot, asennan ohjelmistot, käynnistän palvelimet..."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:372
#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Poistetaan tulostin Star Office/OpenOffice.org/GIMP käytöstä."
+msgid "Problems installing package %s"
+msgstr "Ongelmia asennettaessa pakettia %s"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:505
msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
+"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 ""
-"Käynnistä pakettisuodatin Linux 2.2-sarjalle, jos haluat\n"
-"pystyttää palomuurin suojaamaan konettasi verkkohyökkäyksiltä."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Editable"
-msgstr "Muokattavissa"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
-msgstr "Mitä dhcp-asiakasohjelmaa haluat käyttää? (oletus on dhcp-client)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr "Tamil (ISCII-asettelu)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
-msgstr "Mayotte"
+"Kaikki asetettu.\n"
+"Voit nyt jakaa internetyhteyden muiden lähiverkon koneiden kanssakäyttämällä "
+"automaattista lähiverkon määrittelyä (DHCP)."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-"Asettaa komentotulkin historian koon. Arvo -1 tarkoittaa rajoittamatonta."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d KB\n"
-msgstr "%d kt\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Valmistelen automaattiasennuslevykettä..."
+"Asetukset on jo tehty, mutta ne ovat tällä hetkellä poistettu käytöstä."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for scanners ..."
-msgstr "Etsitään kuvanlukijoita ..."
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
+msgstr "Asetukset on jo tehty ja ne ovat käytössä."
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
-msgstr "Venäjä"
+#: ../../standalone/drakgw_.c:525
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Internetyhteyden jakamista ei ole koskaan asetettu."
-#: ../../steps.pm:1
-#, c-format
-msgid "Partitioning"
-msgstr "Osiointi"
+#: ../../standalone/drakgw_.c:531
+msgid "Internet connection sharing configuration"
+msgstr "Internetyhteyden jakamisen asetukset"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
-msgstr "seuraavat ethernet-verkkokortit löydetty"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
-msgstr "Järjestelmäloki"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create catalog!"
-msgstr "En voi luoda luetteloa!"
-
-#: ../advertising/11-mnf.pl:1
+#: ../../standalone/drakgw_.c:539
#, 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."
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"Viimeistele turvallisuusasetuksesi tällä helppokäyttöisellä ohjelmalla joka "
-"yhdistää suuritehoisia osia kuten palomuuri, virtuaalinen yksityisverkko "
-"(VPN) -palvelin ja -asiakas, tunkeutumistunnistusjärjestelmä ja "
-"liikennehallinta."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
-msgstr "Vapaa tila ei riitä automaattiseen varaukseen"
-
-# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "Ylläpitäjän (\"root\") salasana"
+"Tervetuloa internetyhteyden jakamisen apuohjelmaan!\n"
+"\n"
+"%s\n"
+"\n"
+"Paina Aseta käynnistääksesi asennusvelhon."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable IP spoofing protection"
-msgstr "Ota käyttöön IP spoofing suojaus."
+#: ../../standalone/drakperm_.c:36
+msgid "group"
+msgstr "työryhmä"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
-msgstr ""
-"Äänikortillesi (%s) ei löydy vapaata ajuria, mutta patenttisuojattu ajuri "
-"löytyy osoitteesta \"%s\"."
+#: ../../standalone/drakperm_.c:36
+msgid "path"
+msgstr "polku"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group :"
-msgstr "Ryhmä :"
+#: ../../standalone/drakperm_.c:36
+msgid "permissions"
+msgstr "oikeudet"
-# mat
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "Osion %s koon muuttamisen jälkeen kaikki osion tiedot tuhoutuvat"
+#: ../../standalone/drakperm_.c:36
+msgid "user"
+msgstr "käyttäjä"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Internetyhteyden asetus"
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
+msgstr "Ylös"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
-msgstr "Lisää nimi jota msec:n salasanojen vanheneminen ei koske."
+#: ../../standalone/drakperm_.c:44
+msgid "delete"
+msgstr "poista"
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "USB"
-msgstr "LSB"
+#: ../../standalone/drakperm_.c:45
+msgid "edit"
+msgstr "muokkaa"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "Haetaan TV-kanavia"
+#: ../../standalone/drakperm_.c:46
+msgid "Down"
+msgstr "Alas"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
-msgstr "Ydin:"
+#: ../../standalone/drakperm_.c:47
+msgid "add a rule"
+msgstr "Lisää sääntö"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_About..."
-msgstr "/_Tietoja..."
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
+msgstr "valitse näytettävä/muokattava perm tiedosto"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
-msgstr "Bengali"
+#: ../../standalone/drakperm_.c:51
+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 ""
+"Drakperm käytetään tiedostojen katseluunvkorjataaksesi oikeudet, omistajat "
+"ja ryhmät msec:in kautta.\n"
+"Voit myös muokata omat säännöt jotka ylikirjoittavat oletussäännöt."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
-msgstr "Ominaisuus: "
+#: ../../standalone/drakperm_.c:56
+msgid "Add a new rule at the end"
+msgstr "Lisää uusi sääntö viimeisenä"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Palvelut: %d aktivoitu %d:stä rekisteröidystä"
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
+msgstr "Muokkaa nykyinen sääntö"
-# Asennuksen sivuvalikko
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "Luo käynnistyslevyke"
+#: ../../standalone/drakperm_.c:58
+msgid "Up selected rule one level"
+msgstr "Ylennä valittu sääntö yksi taso"
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "Salomonsaaret"
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
+msgstr "Alenna valittu sääntö yksi taso"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Ole hyvä ja testaa hiiresi:"
+#: ../../standalone/drakperm_.c:60
+msgid "Delete selected rule"
+msgstr "Poista valittu sääntö"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(moduuli %s)"
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
+msgstr "selaa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
-msgstr "Työryhmä"
+#: ../../standalone/drakperm_.c:231
+msgid "Current user"
+msgstr "Nykyinen käyttäjä"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Tulostinlaitteen verkkonimi tai osoite"
+#: ../../standalone/drakperm_.c:236
+msgid "Permissions"
+msgstr "Oikeudet"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "down"
-msgstr "valmis"
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
+msgstr "Polku"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Path or Module"
-msgstr "Koneen polku tai moduuli"
+#: ../../standalone/drakperm_.c:238
+msgid "Property"
+msgstr "Ominaisuus"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Tulostimen nimi saa sisältää vain kirjaimia, numeroita ja alaviivan"
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
+msgstr "tahmea-bitti"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Show current interface configuration"
-msgstr "Näytä nykyiset liitäntäasetukset"
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
+msgstr "Aseta-UID"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Add Printer"
-msgstr "Lisää Tulostin"
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
+msgstr "Aseta-GID"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:296
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."
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
msgstr ""
-"Parametri määrää sallitaanko asiakkaiden yhdistää X-palvelimelle\n"
-"TCP-portissa 6000 vai ei."
+"Käytetään hakemistolle:\n"
+"ainoastaan hakemiston omistaja voi poistaa sitä"
-#: ../../help.pm:1
-#, c-format
-msgid "Development"
-msgstr "Kehitysympäristö"
+#: ../../standalone/drakperm_.c:297
+msgid "Use owner id for execution"
+msgstr "käytä omistaja id suoritukseen"
-#: ../../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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Done"
-msgstr "Valmis"
+#: ../../standalone/drakperm_.c:298
+msgid "Use group id for execution"
+msgstr "käytä ryhmä id suoritukseen"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Web Server"
-msgstr "Webbipalvelin"
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
+msgstr "kun valittu, omistaja ja ryhmä ei muuteta."
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "Chile"
+#: ../../standalone/drakperm_.c:304
+msgid "Path selection"
+msgstr "Polun valinta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tÄlä sisällytä järjestelmätiedostoja\n"
+#: ../../standalone/drakperm_.c:350
+msgid "user :"
+msgstr "käyttäjä :"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Lexmark:in tuottamat inkjet tulostimien ajurit tukevat ainoastaan "
-"paikallisia tulostimia, mutta ei lainkaan etäkoneiden tai "
-"tulostinpalvelimien tulostimia. Liitä tulostin paikalliseen porttiin tai "
-"aseta se koneessa johon se on liitetty."
+#: ../../standalone/drakperm_.c:352
+msgid "group :"
+msgstr "työryhmä :"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/draksound_.c:46
+msgid "No Sound Card detected!"
+msgstr "Ei Äänikorttia löydetty!"
+
+#: ../../standalone/draksound_.c:47
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"
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
"\n"
-"Do not use \"scannerdrake\" for this device!"
-msgstr ""
-"Monitoimilaitteesi asetettiin automaattisesti osaamaan skannauksen. Nyt voit "
-"skannata komennolla \"scanimage\" (\"scanimage -d hp:%s\" määrittääksesi "
-"skanneri jos sinulla on enemmän kuin yksi) komentorivillä tai graafisella "
-"käyttöliittymällä: \"xscanimage\" tai \"xsane\". Jos käytät GIMP:ä voit myös "
-"skannata valitsemalla sopivan pisteen \"Tiedosto\"/\"Nouda\" valikosta. Voit "
-"myös kutsua \"man scanimage\" komentorivillä saadaksesi lisää tietoa.\n"
"\n"
-"Älä käytä \"scannerdrake\":a tälle laitteelle!"
-
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "(lisätty jo: %s)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation in progress"
-msgstr "Käyttöjärjestelmän lataajan asennus käynnissä"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
-msgstr ", käyttäen komentoa %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt ja Shift näppäimet samanaikaisesti"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
-msgstr "Liput"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Users"
-msgstr "Lisää/Poista käyttäjiä"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Koneen/verkon IP-osoite puuttuu."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
-msgstr "viikoittain"
-
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "Asetukset"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "Syötetty koneen/verkon IP on virheellinen.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "Luo/Siirrä SSH:n varmistusavaimet"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr "Tässä on koko lista käytettävissä olevista maista"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Vaihtoehtoinen testisivu (A4)"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
-msgstr ""
-"Jos sinulla on kaikki CD-levyt allaolevalta listalta, paina OK.\n"
-"Jos sinulla ei ole mitään levyistä, paina Peruuta.\n"
-"Jos jotkut levyistä puuttuvat, poista niiden valinnat, ja paina OK."
-
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
-msgstr "Odota hetki"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup user files"
-msgstr "Varmuuskopioi käyttäjätiedostot"
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "New"
-msgstr "Uusi"
-
-#: ../../help.pm:1
-#, 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"
+"You can visit our hardware database at:\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"
+"http://www.linux-mandrake.com/en/hardware.php3"
+msgstr ""
+"Yhtäkään äänikorttia ei löydetty koneestasi. Varmista että Linux-tuettu\n"
+"Video/TV-Kortti on kytketty oikein.\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"
+"Voit katsoa meidän laitteisto-tietokanta osoitteesta:\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 ""
-"Tämä on tärkein päätös joka koskee GNU/Linux-järjestelmäsi turvallisuutta:\n"
-"sinun pitää syöttää \"root\" salasana. \"Root\" on järjestelmän ylläpitäjä\n"
-"ja ainoa, jolla on oikeudet päivittää järjestelmää, lisätä käyttäjiä, "
-"muuttaa\n"
-"järjestelmän asetuksia jne. Lyhyesti, \"root\" voi tehdä mitä vain! Tämän\n"
-"vuoksi sinun pitää valita salasana joka on vaikea arvata - DrakX kertoo\n"
-"sinulle jos salasana on liian helppo. Kuten huomaat, voit jättää salasanan\n"
-"syöttämättä, mutta suosittelemme ettet tee niin, ainakin yhdestä syystä:\n"
-"GNU/Linux on yhtä altis käyttäjän virheille kuin muutkin "
-"käyttöjärjestelmät.\n"
-"Koska \"root\" voi ohittaa kaikki rajoitukset ja vahingossa poistaa kaikki\n"
-"tiedot osioilta on tärkeää, että on vaikea päästä \"root\"-käyttäjäksi.\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+
+#: ../../standalone/draksound_.c:54
+msgid ""
"\n"
-"Salasanan pitäisi koostua aakkosista ja numeroista sekä olla vähintään\n"
-"8 merkkiä pitkä. Älä koskaan kirjoita \"root\" salasanaa paperille - se\n"
-"tekisi järjestelmään murtautumisesta liian helppoa.\n"
"\n"
-"Älä myöskään valitse liian pitkää tai monimutkaista salasanaa koska sinun\n"
-"pitää myös muistaa se ongelmitta.\n"
"\n"
-"Salasanaa ei näytetä kun syötät sitä ja tästä syystä sinun pitää syöttää\n"
-"se kahdesti, jolla pyritään ehkäisemään kirjoitusvirheitä. Jos sattumalta\n"
-"teet saman kirjoitusvirheen kahdesti, joudut käyttämään tätä ``väärää''\n"
-"salasanaa ensimmäisessä sisäänkirjautumisessa.\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
"\n"
-"Jos haluat että pääsyä tähän koneeseen hallitaan tunnistuspalvelimen\n"
-"kautta, paina \"%s\"-painiketta.\n"
"\n"
-"Jos verkkosi käyttää LDAP, NIS tai PDC Windows verkkoalueen tunnistus-\n"
-"palvelua, valitse oikea \"%s\" vaihtoehto. Jos sinulla ei ole\n"
-"tietoa, kysy verkon ylläpitäjältä.\n"
"\n"
-"Jos sinulla on ongelmia muistaa salasanoja, tai jos koneesi ei ole\n"
-"yhteydessä Internetiin, tai jos uskot kaikkiin koneesi käyttäjiin, voit "
-"valita\n"
-"\"%s\"."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
-msgstr "Koneen nimen huijaussuojaus"
+"Huomaa: Jos sinulla on ISA PnP äänikortti, sinun pitää käyttää sndconfig "
+"ohjelmaa. Eli kirjoita \"sndconfig\" konsoolissa."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:21
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."
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-"Tässä vaiheessa DrakX sallii sinun valita tietokoneellesi sopivan\n"
-"turvatason. Yleisesti mitä enemmän tärkeää tietoa on tallennettu\n"
-"koneellesi, tai jos se on kytketty Internetiin, sitä korkeampi turvatason\n"
-"pitäisi olla. Huomaa kuitenkin, että korkeampi turvallisuustaso\n"
-"saavutetaan yleensä käytettävyyden kustannuksella.\n"
-"\n"
-"Jos et tiedä mitä valita, käytä oletuksena olevaa vaihtoehtoa."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "Lataa levykkeeltä"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Seuraava tulostin tunnistettiin automaattisesti. "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Uses command %s"
-msgstr "Käyttää komentoa %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
-msgstr "Käynnistyslevyke"
+"paketti 'ImageMagick' vaaditaan jotta kaikki toimisi oikein.\n"
+"Paina \"Ok\" asentaaksesi 'ImageMagick\" tai \"Peruuta\" lopettaaksesi."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "Norja"
+#: ../../standalone/draksplash_.c:67
+msgid "first step creation"
+msgstr "ensi askeleen luonti"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for new scanners ..."
-msgstr "Etsitään uusia kuvanlukijoita ..."
+#: ../../standalone/draksplash_.c:70
+msgid "final resolution"
+msgstr "lopullinen tarkkuus"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Apache WWW-palvelin"
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+msgid "choose image file"
+msgstr "Valitse kuva-tiedosto"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "prosessorin askel (alamalli (sukupolvi) numero)"
+#: ../../standalone/draksplash_.c:72
+msgid "Theme name"
+msgstr "Teeman nimi"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "select path to restore (instead of /)"
-msgstr "valitse polku, johon palautat (juurihakemiston sijaan)"
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
+msgstr "Selaa"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
msgid "Configure bootsplash picture"
msgstr "Aseta bootsplash kuvaa"
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr "Georgia"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "Kiina"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr " (Varmista että kaikki tulostimesi on liitetty ja kytketty päälle).\n"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "Haetaan asennettuja tulostimia..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
-msgstr " Tyhjennä nyt "
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "palvelin"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Aseta tyhjä FAT-alustettu levyke levykeasemaan %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "kyllä tarkoittaa että prosessorilla on laskentaprosessori"
-
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Odota hetki... Otetaan asetukset käyttöön"
-
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Tervetuloa GRUB k~^Dytt~^Tj~^Drjestelm~^Dnvalitsijaan!"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "GRUB"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
-msgstr "SCSI-ohjaimet"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr " LPD-palvelimella \"%s\", tulostin \"%s\""
-
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Näytönhallinnan valitseminen"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Zeroconf konenimi"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
-msgstr "Mukautettu asetus / crontab tietue:"
-
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP-osoitteen tulee olla muotoa 1.2.3.4"
-
-# Asennuksen sivuvalikko
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Aseta CUPS tulostusjärjestelmä"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "Ecuador"
-
-# Asennuksen sivuvalikko
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Add an item"
-msgstr "Lisää alkio"
+#: ../../standalone/draksplash_.c:90
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
+msgstr ""
+"tekstiruudun x-kordinaatti\n"
+"määrä merkeissä"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
-msgstr "Tulostimet tässä koneessa ovat muiden koneiden käytettävissä"
+#: ../../standalone/draksplash_.c:91
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr ""
+"tekstiruudun y-kordinaatti\n"
+"määrä merkeissä"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "China (Hong Kong)"
-msgstr "Hong Kong"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
+msgstr "tekstiruudun leveys"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Tarvittavaa kuvatiedostoa `%s' ei löytynyt."
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
+msgstr "tekstiruudun korkeus"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
-"Yhtäkään äänikorttia ei löydetty. Kokeile \"harddrake\" asennuksen jälkeen"
+"edistymispalkin x-kordinaatti\n"
+"(vasen yläkulma)"
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:95
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
-"Virheellinen portti annettu: %s.\n"
-"Oikea muoto on \"portti/tcp\" tai \"portti/udp\",\n"
-"jossa portti on 1 ja 65535 välillä."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Shell"
-msgstr "Komentotulkki"
+"edistymispalkin y-kordinaatti\n"
+"(vasen yläkulma)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome ja Principe"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
+msgstr "edistymispalkin leveys"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
+msgstr "edistymispalkin korkeus"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
-msgstr "En voi kirjoittautua käyttäjätunnuksella: %s (väärä salasana?)"
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
+msgstr "edistymispalkin väri"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaidjani"
+#: ../../standalone/draksplash_.c:113
+msgid "Preview"
+msgstr "Esikatselu"
# Asennuksen sivuvalikko
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package not installed"
-msgstr "Pakettia ei asennettu"
+#: ../../standalone/draksplash_.c:115
+msgid "Save theme"
+msgstr "Tallenna teema"
-#: ../../lang.pm:1
-#, c-format
-msgid "American Samoa"
-msgstr "Amerikan Samoa"
+#: ../../standalone/draksplash_.c:116
+msgid "Choose color"
+msgstr "Valitse väri"
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Become a MandrakeExpert"
-msgstr "Tule MandrakeExpert asiantuntijaksi"
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
+msgstr "Näytä logo konsoolissa"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Protocol"
-msgstr "Protokolla"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
+msgstr "Aseta ytimen viestejä hiljaiseksi oletuksena"
-#: ../../standalone/drakfont:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, c-format
-msgid "Copy fonts on your system"
-msgstr "Kopioi kirjasimet järjestelmääsi"
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr "Tälle teemalle ei olemassa yhtään bootsplash kohdassa %s !"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
-msgstr "Harddrake ohje"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
+msgstr "tallennan Bootsplash teeman..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
+#: ../../standalone/draksplash_.c:428
+msgid "ProgressBar color selection"
+msgstr "Edistymispalkin värivalinta"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Mandrake Terminal Server Asetus"
+#: ../../standalone/draksplash_.c:449
+msgid "You must choose an image file first!"
+msgstr "Sinun pitää valita kuvatiedostoa ensin!"
+
+#: ../../standalone/draksplash_.c:458
+msgid "Generating preview ..."
+msgstr "Luodaan esikatselu ..."
-#: ../../standalone/drakbackup:1
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "%s BootSplash (%s) esikatselu"
+
+#: ../../standalone/drakxtv_.c:46
msgid ""
+"XawTV isn't installed!\n"
"\n"
-" DrakBackup Report Details\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
"\n"
"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
+"XawTV ei ole asennettu!\n"
"\n"
-" DrakBackup-raportin yksityiskohdat\n"
+"\n"
+"Jos sinulla on TV-kortti, mutta DrakX ei tunnistanut sitä (ei bttv eikä \n"
+"saa713 moduuli tiedostossa \"/etc/modules\") eikä asentanut xawtv, \n"
+"lähetä \"lspcidrake -v -f\" tuloste osoitteeseen \"install\\@mandrakesoft."
+"com\n"
+"otsikolla \"undetected TV card\".\n"
"\n"
"\n"
+"Voit asentaa sitä kirjoittamalla \"urpmi xawtw\" pääkäyttäjänä konsoolissa."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
-msgstr "Palauta kaikki varmuuskopiot"
+#: ../../standalone/drakxtv_.c:63
+msgid "Canada (cable)"
+msgstr "Kanada (kaapeli)"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
-msgstr " rinnakkaisliitännässä #%s"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
+msgstr "Yhdysvallat (bcast)"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
-msgstr ""
-"Aseta salasanojen vähimmäispituus sekä vähimmäismäärä numeroita ja isoja "
-"kirjaimia."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
+msgstr "Yhdysvallat (kaapeli)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr "jos asetettu, tarkistetaan avoimet portit."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
+msgstr "Yhdysvallat (hrc-kaapeli)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Median tyhjentäminen voi kestää hetken."
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
+msgstr "Kiina (bcast)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "Et voi valita/poistaa tätä pakettia"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
+msgstr "Japani (bcast)"
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "Varoitus"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
+msgstr "Japani (kaapeli)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
-msgstr ""
-"\n"
-"- Muut tiedostot:\n"
+#: ../../standalone/drakxtv_.c:65
+msgid "East Europe"
+msgstr "Itä-Eurooppa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name"
-msgstr "Etäkoneen verkkonimi"
+#: ../../standalone/drakxtv_.c:65
+msgid "France [SECAM]"
+msgstr "Ranska [SECAM]"
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr "oikeudet X-ohjelmiin"
+#: ../../standalone/drakxtv_.c:65
+msgid "Ireland"
+msgstr "Irlanti"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "Lasken Windows-osion kokoa"
+#: ../../standalone/drakxtv_.c:65
+msgid "West Europe"
+msgstr "Länsi-Eurooppa"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Päivitä"
+#: ../../standalone/drakxtv_.c:66
+msgid "Australia"
+msgstr "Australia"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Italy"
-msgstr "Italia"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
+msgstr "Uusi-Seelanti"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
-msgstr "Caymansaaret"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
+msgstr "Etelä-Afrikka"
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "virhe irrotettaessa %s: %s"
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
+msgstr "Argentiina"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "Tulostimen nimi"
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
+msgstr "Australian Optus cable TV"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
-msgstr "poista käytöstä"
+#: ../../standalone/drakxtv_.c:102
+msgid ""
+"Please,\n"
+"type in your tv norm and country"
+msgstr ""
+"Ole hyvä,\n"
+"kirjoita käyttämäsi tv-normi sekä asuinmaa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do it!"
-msgstr "Suorita!"
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
+msgstr "TV-normi :"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
-msgstr "%s ei vastaa"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
+msgstr "Alue :"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select model manually"
-msgstr "Valitse malli manuaalisesti"
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
+msgstr "TV-kanavien haku käynnissä ..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Format"
-msgstr "Alusta"
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
+msgstr "Haetaan TV-kanavia"
-#: ../../network/adsl.pm:1
-#, 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'"
-msgstr ""
-"Yleisin tapa liittyä adsl-verkkoon on käyttää pppoe:a.\n"
-"Jotkin yhteydet käyttävät pptp:tä, muutamat dhcp:tä.\n"
-"Jos et tiedä mitä valita, valitse 'käytä pppoe'"
+#: ../../standalone/drakxtv_.c:120
+msgid "There was an error while scanning for TV channels"
+msgstr "Tapahtui virhe TV-kanavien haun aikana"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
-msgstr "Useita"
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
+msgstr "XawTV ei ole asennettu!"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
-msgstr "Zip"
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
+msgstr "Hyvää päivänjatkoa!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
-msgstr "Oikea Alt näppäin"
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Nyt voit käyttää xavtv (X-ikkunointijärjestelmässäsi!) !\n"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Load setting"
-msgstr "Lataa asetukset"
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
+msgstr "Yhtäkään TV-Korttia ei löydetty."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:148
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"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"Yhtäkään TV-Korttia ei löydetty koneestasi. Varmista että Linux-tuettu\n"
+"Video/TV-Kortti on kytketty oikein.\n"
"\n"
"\n"
-"Printerdrake ei tunnistanut mitä mallia tulostimesi %s on. Ole hyvä ja "
-"valitse oikea malli listasta."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Aseta valittu tulostin oletukseksi"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"Voit katsoa meidän laitteisto-tietokanta osoitteesta:\n"
"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
-msgstr ""
"\n"
-"Merkitse tulostimet jotka haluat siirtää ja paina \n"
-"\"Siirrä\"."
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
-msgstr "Albaani"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "Liettua"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "Tiivis"
+"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Tunnistettu malli: %s %s"
+#: ../../standalone/harddrake2_.c:17
+msgid "Alternative drivers"
+msgstr "Vaihtoehtoiset ajurit"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
-msgstr "MandrakeSoft on valinnut parhaat ohjelmat sinulle"
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
+msgstr "listauksen vaihtoehto-ajureista tälle äänikortille"
-#: ../../any.pm:1
-#, c-format
-msgid "Local files"
-msgstr "Paikalliset tiedostot"
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
+msgstr "Väylä"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "ehkä"
+#: ../../standalone/harddrake2_.c:21
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr "tämä on fyysinen väylä johon laite on kytketty (esim PCI, USB, ...)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
-msgstr "Panama"
+#: ../../standalone/harddrake2_.c:22
+msgid "Channel"
+msgstr "Kanava"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Can't open %s!"
-msgstr "En voi avata %s!"
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
+msgstr "EIDE/SCSI kanava"
-#: ../../Xconfig/various.pm:1
-#, 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?"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
msgstr ""
-"Näyttää siltä että näytönohjaimessasi on TV-ulostuloliitäntä.\n"
-"Se voidaan asettaa toimimaan näyttöpuskurin kanssa.\n"
-"\n"
-"Saadaksesi tämän toimimaan, sinun pitää kytkeä näytönohjaimesi\n"
-"televisioon ennen kuin käynnistät tietokoneesi. Valitse sitten \"TV-Out\"\n"
-"valinta käynnistysvalikossa.\n"
-"\n"
-"Onko sinulla tämä ominaisuus?"
-
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "Näyttö"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:23
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"
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
msgstr ""
-"Olet asettamassa tulostamista Windows tiliin salasanan kanssa. Samban "
-"asiakasohjelmiston arkkitehtuurissa olevan virheen takia salasana syötetään "
-"selkokielisenä komentoriviin, jolla Samba-asiakas lähettää tulostustyön "
-"Windows-palvelimelle. Joten tämän koneen jokaisella käyttäjällä on "
-"mahdollisuus nähdä tuo salasana näytöllä käyttämällä komentoa: \"ps auxwww"
-"\".\n"
-"\n"
-"Suosittelemme käyttämään jotain seuraavista vaihtoehdoista (kaikissa "
-"vaihtoehdoissa sinun pitää varmistua siitä että ainoastaan paikallisverkon "
-"käyttäjät voivat käyttää Windows-palvelintasi, esimerkiksi käyttämällä "
-"palomuuria):\n"
-"\n"
-"Käytä salasanasuojatonta tiliä Windows-palvelimellasi, joko \"VIERAS\" tiliä "
-"tai tulostamiseen omistettua tiliä. Älä poista salasanaa henkilökohtaisesta "
-"tilistä tai järjestelmävalvojan tililtä.\n"
-"\n"
-"Aseta Windows-palvelimesi jakamaan tulostinta LPD-protokollan kautta. Aseta "
-"sen jälkeen tulostus tästä koneesta käyttämällä \"%s\" yhteystyyppiä "
-"Printerdrake:ssa.\n"
-"\n"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tuhatta väriä (16 bittiä)"
+#: ../../standalone/harddrake2_.c:26
+msgid "Bus identification"
+msgstr "Väylän tunniste"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/harddrake2_.c:27
msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-"\n"
-"- Tallenna kiintolevylle polulle: %s\n"
+"- PCI ja USB laitteet: tämä listaa: valmistaja, laite, alivalmistaja ja "
+"alilaite PCI/USB id:t"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Poista järjestelmässäsi olevia kirjasimia"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
+msgstr "Sijainti väylässä"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../standalone/harddrake2_.c:30
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."
+"- 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 ""
-"Varoitus, verkkokortti (%s) on jo asetettu.\n"
-"\n"
-"Haluatko automaattisen uudelleenasetuksen?\n"
-"\n"
-"Voit asettaa sen myös manuaalisesti, mutta silloin sinun pitää tietää, mitä "
-"olet tekemässä."
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "Graafinen tila käynnistyksessä"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
-msgstr " adsl"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Ei riittävästi osioita RAID tasolle %d\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "Levykkeiden eri muodot joita asema tukee"
+"- pci-laitteet: tämä kertoo PCI korttipaikka, laiteen sekä kortin toiminto\n"
+"- eide laitteet: tämä laite on joko orja- tai isäntälaite\n"
+"- scsi laitteet: scsi väylä sekä scsi laitteiden id:t"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "Firmwaren kopiointi epäonnistui, tiedosto %s ei löytynyt"
+#: ../../standalone/harddrake2_.c:33
+#, fuzzy
+msgid "Cache size"
+msgstr "palan koko"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: true"
-msgstr "paikallinen asetus:käytössä"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
msgstr ""
-"Seuraavat tulostimet ovat asetettuja. Tuplaklikkaa tulostinta muuttaaksesi "
-"sen asetuksia; asettaaksesi sen oletustulostimeksi; nähdäksesi tulostimen "
-"tiedot;"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connected"
-msgstr "Yhteys muodostettu"
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
-msgstr "Makedonia"
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "Mali"
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
-msgstr "Sillat ja järjestelmäohjaimet"
+#: ../../standalone/harddrake2_.c:36
+#, fuzzy
+msgid "Cpuid level"
+msgstr "Turvataso"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "/Tiedosto/_Tallenna"
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "No details"
-msgstr "Ei yksityiskohtia"
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
+msgstr ""
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "erittäin hyvä"
+#: ../../standalone/harddrake2_.c:37
+msgid ""
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Preview"
-msgstr "Esikatselu"
+#: ../../standalone/harddrake2_.c:38
+#, fuzzy
+msgid "This field describes the device"
+msgstr "tämä kenttä kuvaa laitteen"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Remote Control"
-msgstr "Kauko-ohjaus"
+#: ../../standalone/harddrake2_.c:39
+msgid "Old device file"
+msgstr "Vanha laite tiedosto"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select media for backup..."
-msgstr "Valitse varmuuskopioinnissa käytettävä media..."
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
+msgstr "vanha staattinen laite nimi on käytetty dev-paketissa"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
-msgstr "Virhellinen sähköposti"
+#: ../../standalone/harddrake2_.c:41
+msgid "New devfs device"
+msgstr "Uusi devfs laite"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 palvelin: %s\n"
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr "uusi dynaaminen laitenimi luotu ytimen sisäisen devfs:n toimesta"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Allow Thin Clients"
-msgstr "Salli kevyet asiakkaat"
+#: ../../standalone/harddrake2_.c:43
+msgid "Module"
+msgstr "Moduuli"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgia (\"Venäläinen\"-järjestys)"
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr "GNU/Linux ytimen moduuli joka käsittelee tuo laite."
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_Optiot"
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Your printer model"
-msgstr "Tulostimesi malli "
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
+msgstr ""
-#: ../../any.pm:1
-#, 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)."
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
msgstr ""
-"\n"
-"\n"
-"(VAROITUS! käytät XFS:ä juuriosiollesi,\n"
-"käynnistyslevykkeen luominen 1.44 Mt levykkeelle\n"
-"todennäköisesti epäonnistuu, koska XFS tarvitsee\n"
-"erittäin kookkaan ajurin)."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/harddrake2_.c:46
msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-"\n"
-"- Poista tar tiedostot kovalevyltä varmistuksen jälkeen.\n"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
msgstr ""
-"CD- tai DVD-kuvaa ei löydy, ole hyvä ja kopioi asennusohjelma ja rpm-"
-"tiedostot."
-#: ../advertising/04-configuration.pl:1
-#, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "Mandraken monitoiminen asetustyökalu"
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
+msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Save"
-msgstr "Tallenna"
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
-msgstr "Tämä %s kuvanlukija ei ole tuettu"
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr "Lataa USB-laitteiden ajurit."
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Disk"
-msgstr "Levy"
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
+msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Syötä tulostinlaitteen osoite (URI)"
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
+msgstr ""
-#: ../advertising/01-thanks.pl:1
-#, c-format
+#: ../../standalone/harddrake2_.c:53
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."
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-"MandrakeSoft:n menestys perustuu Vapaan Ohjelmiston periaatteeseen. Uusi "
-"käyttöjärjestelmäsi on maailmanlaajuisen Linux Yhteisön yhteistyön tulos."
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "Israel"
+#: ../../standalone/harddrake2_.c:55
+#, fuzzy
+msgid "Floppy format"
+msgstr "Alusta"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "Ranska, Guayana"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "default:LTR"
+#: ../../standalone/harddrake2_.c:56
+#, fuzzy
+msgid "Level"
+msgstr "taso"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
-msgstr "Komentorivi pitää syöttää!"
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
-msgstr "Valitse käyttäjät yksitellen"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
+msgstr "Media luokka"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Siirrä tulostimen asetukset"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
+msgstr "rautatason laiteluoka"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Haluatko mahdollistaa tulostamisen yllä mainituissa tulostimissa?\n"
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+msgid "Model"
+msgstr "Malli"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of suid root files"
-msgstr "Tarkista 'suid root' tiedostojen lisäykset/poistamiset."
+#: ../../standalone/harddrake2_.c:58
+msgid "hard disk model"
+msgstr "kovalevy malli"
-#: ../../any.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
msgstr ""
-"Jotta tämä toimisi W2K PDC kanssa, sinun pitää todennäköisesti pyytää sen "
-"järjestelmävalvojaa suorittamaan: C:\\>net localgroup \"Pre-Windows 2000 "
-"Compatible Access\" everyone /add ja käynnistämään palvelin uudelleen.\n"
-"Tarvitset myös verkkoalueen ylläpitäjän tunnusta liittääksesi koneesi Windows"
-"(TM) verkkoalueeseen.\n"
-"Jos verkkoa ei ole vielä asetettu, DrakX yrittää liittyä verkkoalueeseen kun "
-"verkon asetusvaihe on tehty.\n"
-"Jos tämä asetus epäonnistuu jostain syystä ja verkkoalueen tunnistus ei "
-"toimi, suorita: 'smbpasswd -j VERKKOALUE -U KÄYTTÄJÄ%%SALASANA' käyttäen "
-"Windows verkkoaluetta ja verkkoalueen ylläpitäjän tunnusta/salasanaa "
-"käynnistyksen jälkeen.\n"
-"Komento 'wbinfo -t' tarkistaa jos tunnistuksen salaisuuksia ovat kunnossa."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (portti %s)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Käytä verkkoyhteyttä varmuuskopiointiin"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Kernel version"
-msgstr "Ytimen versio"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Nyt on aika valita mitä ohjelmia haluat asentaa järjestelmääsi. Tarjolla\n"
-"on tuhansia paketteja Mandrake Linux jakelussa, ja pakettien\n"
-"hallinnan helpottamiseksi ne on koottu samanlaisten ohjelmistojen\n"
-"ryhmiin.\n"
-"\n"
-"Paketit on ryhmitelty ryhmiin koneesi käyttötarkoituksen mukaisesti.\n"
-"Mandrake Linux sisältää neljä eri ennakkoon määriteltyä asennustapaa.\n"
-"Voit verrata asennustapoja pakettiryhmiin. Voit tietysti asentaa paketteja\n"
-"eri ryhmistä niin halutessasi, joten ``Työasema''-asennus voi sisältää\n"
-"ohjelmia esimerkiksi ``Kehitysympäristö''-ryhmästä.\n"
-"\n"
-" * \"%s\": Jos aiot käyttää konettasi työasemana, valitse yksi tai\n"
-"useampi ohjelma tästä ryhmästä;\n"
-"\n"
-" * \"%s\": Jos konettasi aiotaan käyttää ohjelmakehitykseen,\n"
-"valitse yksi tai useampi haluttu paketti tästä ryhmästä;\n"
-"\n"
-" * \"%s\": Jos koneesi on tarkoitettu toimimaan palvelimena'\n"
-"valitse yksi tai useampi haluttu palvelu tai palvelinohjelma tästä\n"
-"ryhmästä;\n"
-"\n"
-" * \"%s\": täältä valitset haluamasi graafisen ympäristön.\n"
-"Ainakin yksi pitää olla valittu jos haluat graafisen työaseman!\n"
-"\n"
-"Jos siirrät hiiren kohdistinta ryhmänimen yläpuolella, lyhyt selostus\n"
-"ryhmän sisällöstä tulee näkyviin. Jos poistat kaikki ryhmävalinnat kun\n"
-"teet tavallisen asennuksen (päivityksen sijasta), esille tulee dialogi,\n"
-"joka ehdottaa kolmea eri optiota vähimmäisasennukseen:\n"
-"\n"
-" * \"%s\": asenna vain tarvittavat paketit, joilla saat\n"
-"toimivan graafisen työpöydän;\n"
-"\n"
-" * \"%s\": asentaa perusjärjestelmän ja\n"
-"perustyökalut sekä niiden dokumentaatiot. Tämä valinta sopii\n"
-"palvelinasennukseen;\n"
-"\n"
-" * \"%s\": asentaa ainoastaan tarvittavat osat\n"
-"saadaksesi toimivan komentorivipohjaisen Linux-järjestelmän.\n"
-"Tämä asennus vie vain noin 65 Mt tilaa.\n"
-"\n"
-"Voit valita \"%s\" jos tarjolla olevat\n"
-"paketit ovat tuttuja sinulle tai jos haluat täydellisen\n"
-"hallinnan asennettaviin paketteihin.\n"
-"\n"
-"Jos aloitit asennuksen \"%s\"-tilassa, voit poistaa kaikkien\n"
-"ryhmien valinnat välttääksesi uusien pakettien asentamisen.\n"
-"Tämä on hyödyllistä jos haluat korjata tai päivittää olemassa\n"
-"olevaa järjestelmää."
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "Hyväksy käyttäjä"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Model name"
+msgstr "Moduulin nimi"
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
-msgstr "Palvelin"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Official vendor name of the cpu"
+msgstr "laitteen valmistajan nimi"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
-msgstr "Vasen Shift näppäin"
+#: ../../standalone/harddrake2_.c:61
+msgid "Number of buttons"
+msgstr "painikkeiden määrä"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " local network"
-msgstr " paikallisverkko"
+#: ../../standalone/harddrake2_.c:62
+msgid "Name"
+msgstr "Nimi"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "Huono valinta, yritä uudelleen\n"
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "network printer port"
+msgstr ", verkkotulostin \"%s\", portti %s"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
-msgstr "Järjestelmäloki konsoliin 12"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
+msgstr "Prosessorin ID"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search new servers"
-msgstr "Etsi uudet palvelimet"
+#: ../../standalone/harddrake2_.c:64
+msgid "the number of the processor"
+msgstr "prosessorin numero"
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
-msgstr "Heard ja McDonaldinsaaret"
+#: ../../standalone/harddrake2_.c:65
+#, fuzzy
+msgid "Model stepping"
+msgstr "lataa asetukset"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
-msgstr "Ei vaihtoehtoista ajuria"
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "Vaihda Asiantuntija-tilaan"
+#: ../../standalone/harddrake2_.c:66
+#, fuzzy
+msgid "The type of bus on which the mouse is connected"
+msgstr "Mihin sarjaporttiin hiiresi on liitetty."
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
-msgstr "(tällä koneella)"
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
+msgstr "laitteen valmistajan nimi"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Yhdyskäytävän osoite pitää olla muotoa 1.2.3.4"
+#: ../../standalone/harddrake2_.c:68
+msgid "the vendor name of the processor"
+msgstr "prosessorin valmistajan nimi"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
-msgstr ""
-"\"%s\" perustuva winmodeemi tunnistettu, haluatko asentaa tarvittavat "
-"ohjelmistot?"
+#: ../../standalone/harddrake2_.c:82
+msgid "/_Quit"
+msgstr "/_Lopeta"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Etsin jo asennettuja paketteja..."
+#: ../../standalone/harddrake2_.c:83
+#, fuzzy
+msgid "/Autodetect _printers"
+msgstr "Automaattinen tunnistus"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Käytä Erotusvarmistus"
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
+msgstr "/Asetukset"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Driver"
-msgstr "Ajurit"
+#: ../../standalone/harddrake2_.c:85
+#, fuzzy
+msgid "/Autodetect _modems"
+msgstr "Automaattinen tunnistus"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
-msgstr ""
-"Linuxconf järjestää joskus aikaa erilaisten tehtävien hoitamiseen\n"
-"käynnistyksen aikana pitääkseen yllä järjestelmän asetuksia."
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
+msgstr "/_Ohje"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVD-R device"
-msgstr "DVD-R laite"
+#: ../../standalone/harddrake2_.c:89
+msgid "/_Help..."
+msgstr "/_Ohje..."
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Tulostin etäpalvelimella (lpd)"
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
+msgstr "Harddrake ohje"
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/harddrake2_.c:93
msgid ""
-"Before installing any fonts, be sure that you have the right to use and "
-"install them on your system.\n"
+"Description of the fields:\n"
"\n"
-"-You can install the fonts the normal way. In rare cases, bogus fonts may "
-"hang up your X Server."
msgstr ""
-"Ennen kuin asennat uusia kirjasimia, varmista että sinulla on oikeudet "
-"käyttää ja asentaa ne järjestelmääsi.\n"
+"Kenttien kuvaus:\n"
"\n"
-"- Voit asentaa kirjasimet perinteisellä tavalla. Harvoissa tapauksissa bogus-"
-"kirjasimet voivat lukita X-palvelimen."
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:96
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."
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
msgstr ""
-"Yaboot on käynnistyslataaja NewWorld MacIntosh laitteistolle. Se osaa\n"
-"käynnistää GNU/Linuxin, MacOS:n tai MacOSX:n jos ne löytyvät koneestasi.\n"
-"Yleensä nämä muut käyttöjärjestelmät tunnistetaan oikein ja asetetaan\n"
-"käynnistyslataajan valikkoon. Jos näin ei tapahdu, voit tässä lisätä\n"
-"tietueen käsin. Varmista että valitset oikeat parametrit.\n"
-"\n"
-"Yabootin pääoptiot ovat:\n"
-"\n"
-" * Käynnistysviesti: yksinkertainen tekstiviesti joka näytetään ennen\n"
-"käynnistyskehotetta;\n"
-"\n"
-" * Käynnistyslaite: kertoo mihin haluat asentaa GNU/Linuxin käynnistykseen\n"
-"tarvittavat tiedot. Yleensä olet jo asettanut bootstrap-osion tähän\n"
-"tarkoitukseen;\n"
-"\n"
-" * Open Firmware -viive: eri tavoin kuin LILO, Yabootille löytyy kaksi\n"
-"viivettä. Ensimmäinen viive lasketaan sekunneissa jolloin sinulla on\n"
-"mahdollisuus valita CD:n, OF käynnistyksen, MacOS:n ja Linuxin välillä;\n"
-"\n"
-" * Ytimen käynnistysviive: tämä viive on vastaava kuin LILO:n käynnistys-\n"
-"viive. Valittuasi Linuxin sinulla on tämä viive 0.1 sekunnin kertoimella,\n"
-"ennen kuin oletusytimen käynnistys valitaan;\n"
-"\n"
-" * Mahdollista CD-käynnistys?: merkitsemällä tämän option sinun sallitaan\n"
-"valita ``C'' valitaksesi CD-käynnistyksen ensimmäisessä\n"
-"käynnistyskehotteessa;\n"
-"\n"
-" * Mahdollista OF-käynnistys?: merkitsemällä tämä optio sinun sallitaan\n"
-"valita ``N'' valitaksesi Open Firmware -käynnistys ensimmäisessä\n"
-"käynnistyskehotteessa;\n"
-"\n"
-" * Oletuskäyttöjärjestelmä: voit määrittää mikä käyttöjärjestelmä\n"
-"käynnistetään oletuksena kun Open Firmware -viive täyttyy."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
-msgstr "Keskiviikko"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "Saksa"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
-msgstr "Itävalta"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "Ei hiirtä"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "Valitse CD/DVD mediasi koko (Mt)"
+#: ../../standalone/harddrake2_.c:96
+#, fuzzy
+msgid "Select a device !"
+msgstr "Valitse kuvanlukija"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check permissions of files in the users' home"
-msgstr "Tarkista tiedostojen oikeudet käyttäjien kotihakemistossa."
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
+msgstr "/_Raportoi Virheen"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr "Suorita \"sndconfig\" asennuksen jälkeen asettaaksesi äänikorttisi."
+#: ../../standalone/harddrake2_.c:102
+msgid "/_About..."
+msgstr "/_Tietoja..."
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "Sulje puu"
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
+msgstr "Tietoja Harddrake:sta"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Automaattisen asennuksen muokkaaja"
+#: ../../standalone/harddrake2_.c:105
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Tämä on HardDrake, Mandraken laitteisto assetustyökalu.\n"
+"Versio: "
-# Asennuksen sivuvalikko
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "Verkkoasetukset"
+#: ../../standalone/harddrake2_.c:106
+msgid "Author:"
+msgstr "Tekijä:"
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "Minne haluat asentaa käyttöjärjestelmän lataajan?"
+#: ../../standalone/harddrake2_.c:113
+msgid "Detection in progress"
+msgstr "Tunnistus käynnissä ..."
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"Valitsemasi oletuskieli päättää minkä kielinen dokumentaatio\n"
-"asennetaan, kuten myös asennusohjelman ja järjestelmän\n"
-"kielen. Valitse ensin missä asut, ja sitten mitä kieltä käytät.\n"
-"\n"
-"Painamalla \"%s\"-painiketta saat mahdollisuuden valita\n"
-"myös muita kieliä asennettavaksi työasemallesi. Muiden kielien\n"
-"valitseminen asentaa kielikohtaiset tiedostot järjestelmän\n"
-"dokumentoinnista ja ohjelmistoista. Esimerkiksi jos sinulla\n"
-"koneessasi espanjalaisia käyttäjiä, valitse suomi (tai englanti)\n"
-"pääkieleksi ja lisäasetusten puolelta \"%s\".\n"
-"\n"
-"Huomaa, että voit valita useita ylimääräisiä kieliä tai jopa kaikki\n"
-"valitsemalla \"%s\". Kielituen valinta tarkoittaa käännöksien,\n"
-"kirjasinten, oikoluku-ohjelmien jne. asentamista kyseiselle\n"
-"kielelle. Tämän lisäksi voit valita \"%s\"\n"
-"joka pakottaa järjestelmän käyttämään Unicodea (UTF-8). Huomaa\n"
-"kuitenkin että tämä on ominaisuus joka on kokeiluvaiheessa.\n"
-"Jos valitset eri kieliä jotka tarvitsevat eri koodausta, asennetaan\n"
-"Unicode-tuki tästä valinnasta huolimatta.\n"
-"\n"
-"Vaihtaaksesi eri kielten välillä, voit suorittaa \"/usr/bin/localedrake\"\n"
-"\"root\"-käyttäjänä, jolloin vaihdat koko järjestelmän kieltä, tai\n"
-"tavallisena käyttäjänä jolloin vaihdat vain sen käyttäjän vakiokielen."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr "%s ei ole tuettu tässä Mandrake Linux versiossa."
+#: ../../standalone/harddrake2_.c:119
+msgid "Harddrake2 version "
+msgstr "Harddrake2 versio "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "tape"
-msgstr "nauha"
+#: ../../standalone/harddrake2_.c:126
+msgid "Detected hardware"
+msgstr "Tunnistettu laitteisto"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr "DHCP-asiakas"
+#: ../../standalone/harddrake2_.c:129
+msgid "Information"
+msgstr "Tiedot"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Näytä lista järjestelmän käyttäjistä näytönhallinnassa (kdm ja gdm)"
+# Asennuksen sivuvalikko
+#: ../../standalone/harddrake2_.c:131
+msgid "Configure module"
+msgstr "Aseta moduuli"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (sarja, vanha C7 tyyppi)"
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
+msgstr "Suorita asetustyökalu"
-#: ../../partition_table.pm:1
+#: ../../standalone/harddrake2_.c:143
#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Palautus tiedostosta %s epäonnistui: %s"
+msgid "Running \"%s\" ..."
+msgstr "Suoritetaan \"%s\" ..."
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:159
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"
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-"En voi lukea laitteen %s osiotaulukkoa. Se on liian korruptoitunut :(.\n"
-"Voin yrittää jatkaa poistamalla kaikki virheelliset osiot (KAIKKI TIEDOT\n"
-"tuhotaan). Toinen vaihtoehto on, ettei sallita DrakX:ää muokata "
-"osiotaulukkoa.\n"
-"(virhe: %s)\n"
-"\n"
-"Hyväksytkö että kaikki virheelliset osiot poistetaan?\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Find Package"
-msgstr "Etsi paketti"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Oletko varma että haluat asettaa tulostuksen tässä koneessa?\n"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "New devfs device"
-msgstr "Uusi devfs laite"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
-msgstr "VIRHE: En voi haroittaa %s"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Boot Style Configuration"
-msgstr "Käynnistystavan asetus"
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
+msgstr "ensisijainen"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Automaattinen kellon synkronisointi"
+#: ../../standalone/harddrake2_.c:231
+msgid "secondary"
+msgstr "toissijainen"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "Varmistustiedostoja ei löydetty kohteesta: %s"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect modems"
+msgstr "Automaattinen tunnistus"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "Armeenia (foneettinen)"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect printers"
+msgstr "Automaattinen tunnistus"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Card model:"
-msgstr "Kortin malli:"
+#: ../../standalone/harddrake2_.c:261
+#, fuzzy
+msgid "/Options"
+msgstr "/Asetukset"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
-msgstr "Kevyt asiakas"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "Valitse näppäimistösi asettelu."
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
-msgstr "Kiitos, että olet valinnut Mandrake Linux 9.2:n"
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr "Haluatko Askelpalautin-näppäimen toimivan kuten Delete konsolissa?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Start Server"
-msgstr "Käynnistä palvelin"
+#: ../../standalone/livedrake_.c:18
+msgid "Change Cd-Rom"
+msgstr "Vaihda CD-levyä"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
+#: ../../standalone/livedrake_.c:19
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"Aseta asennuslevy CD-asemaan ja paina Ok.\n"
+"Jos sinulla ei ole levyä, paina Peruuta estääksesi järjestelmän päivityksen."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "All remote machines"
-msgstr "Kaikki etäkoneet"
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Järjestelmän päivitystä ei voida aloittaa!\n"
-# Asennuksen sivuvalikko
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Install themes"
-msgstr "Asenna teemoja"
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
+msgstr ""
+"Muutos on tehty, mutta ottaaksesi niitä käyttöön sinun pitää kirjoittautua "
+"ulos"
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
-msgstr "espanja"
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
+msgstr "logdrake"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "Valmistelen asennusta"
+#: ../../standalone/logdrake_.c:68
+msgid "Show only for the selected day"
+msgstr "Näytä vain valittu päivä"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Muokkaa valittua konetta/verkkoa"
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
+msgstr "/Tiedosto/Uusi"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add User -->"
-msgstr "Lisää käyttäjä -->"
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
+msgstr "<control>N"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "Nauru"
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
+msgstr "/Tiedosto/Avaa"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type fonts installation"
-msgstr "True Type -kirjasimien asennus"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
+msgstr "<control>O"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Tunnista automaattisesti paikallisverkkoon liitetyt tulostimet"
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr "/Tiedosto/Talleta"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN configuration"
-msgstr "Lähiverkon asetukset"
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
+msgstr "<control>S"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "hard disk model"
-msgstr "kovalevyn malli"
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
+msgstr "/Tiedosto/Talleta nimellä"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Ylläpidä /etc/exports:\n"
-" \t\tClusternfs sallii juuritiedostojärjestelmän jakoa levyttömille "
-"asiakkaille. drakTermServ\n"
-" \t\tasettaa oikean tietueen anonyymikäytön sallimiseksi "
-"juuritiedostojärjestelmälle\n"
-" \t\tlevyttömiltä asiakkailta.\n"
-"\n"
-" \t\tTyypillinen exports tietue clusternfs:ille:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t\t/home ALIVERKKO/MASKI(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tmissä ALIVERKKO/MASKI vastaa verkkoasi."
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr "/Tiedosto/-"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Et voi käyttää LVM loogista taltiota liitepisteelle %s"
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
+msgstr "/Asetukset/Testaa"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "Hae Windowsin kirjasimet"
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
+msgstr "/Ohje/_Tietoja..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
+#: ../../standalone/logdrake_.c:145
+msgid "User"
+msgstr "Käyttäjä"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
-msgstr ""
+#: ../../standalone/logdrake_.c:146
+msgid "Messages"
+msgstr "Viestit"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "Iran"
+#: ../../standalone/logdrake_.c:147
+msgid "Syslog"
+msgstr "Järjestelmäloki"
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
-msgstr "Kroatia"
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
+msgstr "Mandraken työkälujen selitykset"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "Yhdyskäytävä:"
+#: ../../standalone/logdrake_.c:151
+msgid "search"
+msgstr "etsi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add server"
-msgstr "Lisää palvelin"
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
+msgstr "Työkalu lokien seuraamiseen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name"
-msgstr "Etätulostimen nimi"
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
+msgstr "Asetukset"
-#: ../advertising/10-security.pl:1
-#, 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."
-msgstr ""
-"MandrakeSoft on suunnitellut erityiset työkalut luodakseen turvallisimman "
-"Mandrake Linux -jakelun tähän sakka: Draksec, järjestelmän turvallisuuden "
-"hallintatyökalu, ja tehokas palomuuri yhdistettynä vähentää oleellisesti "
-"hakkeroinnin vaaraa."
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
+msgstr "täsmää"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "Laite: "
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
+msgstr "mutta ei täsmää"
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
+msgstr "Valitse tiedosto"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "Käyttöoikeussopimus"
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
+msgstr "Kalenteri"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "System Options"
-msgstr "Järjestelmäoptiot"
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
+msgstr "Tiedoston sisältö"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Please choose the desired security level"
-msgstr "Valitse haluttu turvataso"
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+msgid "Mail alert"
+msgstr "Posti-hälytys"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/logdrake_.c:245
#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "Tämä kone on jo listassa, eikä sitä voida lisätä uudestaan.\n"
+msgid "please wait, parsing file: %s"
+msgstr "odota hetki, jäsennän tiedostoa: %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", USB printer"
-msgstr ", USB tulostin"
+#: ../../standalone/logdrake_.c:392
+msgid "Mail alert configuration"
+msgstr "Posti-hälytyksen asetukset"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/logdrake_.c:393
msgid ""
-"Unable to properly close mkbootdisk:\n"
+"Welcome to the mail configuration utility.\n"
"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"mkbootdisk ei voitu sulkea oikein: \n"
+"Tervetuloa sähköpostin asetustyökaluun.\n"
"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-"Asteittaiset varmistukset tallentavat ainoastaan muuttuneet tiedostot ja "
-"tiedostoja jota on luotu viime varmistuksen jälkeen."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Valitse sovellukset, jotka tukevat kirjasimia:"
+"Täältä voit asettaa hälytysjärjestelmän.\n"
-# Asennuksen sivuvalikko
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "Asenna X"
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
+msgstr "Apache WWW-Palvelin"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hd"
-msgstr "hd"
+#: ../../standalone/logdrake_.c:401
+msgid "Domain Name Resolver"
+msgstr "Verkkoalueen Nimi Ratkaisija"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turkki (perinteinen \"F\"-malli)"
+#: ../../standalone/logdrake_.c:402
+msgid "Ftp Server"
+msgstr "FTP Palvelin"
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "Onnittelut!"
+#: ../../standalone/logdrake_.c:403
+msgid "Postfix Mail Server"
+msgstr "Postfix - Postipalvelin"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
-msgstr "käytä omistaja id suoritukseen"
+#: ../../standalone/logdrake_.c:404
+msgid "Samba Server"
+msgstr "Samba Palvelin"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow remote root login"
-msgstr "Salli root sisäänkirjautuminen etäyhteyksiltä."
+#: ../../standalone/logdrake_.c:405
+msgid "SSH Server"
+msgstr "SSH-Palvelin"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Down"
-msgstr "Alas"
+#: ../../standalone/logdrake_.c:406
+msgid "Webmin Service"
+msgstr "Webmin Palvelu"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Raakatulostin (ei ajuria)"
+#: ../../standalone/logdrake_.c:407
+msgid "Xinetd Service"
+msgstr "Xinetd Palvelu"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Install rpm"
-msgstr "Asenna rpm"
+#: ../../standalone/logdrake_.c:414
+msgid "service setting"
+msgstr "Palveluiden asettaminen"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/logdrake_.c:415
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 ""
-"Tulostaaksesi tiedoston komentoriviltä (pääte-ikkunasta) voit käyttää joko "
-"komentoa: \"%s <tiedosto>\" tai graafinen tulostustyökalu: \"xpp tiedosto\" "
-"tai \"kprinter <tiedosto>\". Graafiset työkalut sallivat sinun valita "
-"tulostimen ja muuttaa sen asetuksia helposti.\n"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "Aikaa jäljellä "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "UK näppäimistö"
+"You will receive an alert if one of the selected services is no more running"
+msgstr "Saat hälytyksen kun jokin valituista palveluista ei ole enää käynnissä"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "Irrota"
+#: ../../standalone/logdrake_.c:428
+msgid "load setting"
+msgstr "lataa asetukset"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
+msgstr "Saat hälytyksen jos kuorma on tätä arvoa suurempi"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "Poista kirjasimia"
+#: ../../standalone/logdrake_.c:444
+msgid "alert configuration"
+msgstr "hälytyksen asetukset"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Odota hetki, asetetaan turvatasoa..."
+#: ../../standalone/logdrake_.c:445
+msgid "Please enter your email address below "
+msgstr "Syötä sähköpostiosoitteesi alla "
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "Saksa (ei kuolleita näppäimiä)"
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
+msgstr "Tallenna nimellä.."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tLähetä sähköposti osoitteeseen %s\n"
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "Valitse hiiren tyyppi."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
-msgstr "Siirrän %s..."
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
+msgstr "Emuloi kolmas näppäin?"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tuhatta väriä (15 bittiä)"
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Verkon asetukset"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
-msgstr "Voit jakaa sekä NFS:llä että Samballa. Valitse kumpaa haluat käyttää."
+#: ../../standalone/net_monitor_.c:96
+#, fuzzy
+msgid "Profile "
+msgstr "Profiili: "
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "Gambia"
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Mandraken Ohjauskeskus"
+#: ../../standalone/net_monitor_.c:103
+#, fuzzy
+msgid "Sending Speed:"
+msgstr "Lähetän tiedostoja..."
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Reboot"
-msgstr "Käynnistä uudelleen"
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device"
-msgstr "Monitoimilaite"
+#: ../../standalone/net_monitor_.c:106
+#, fuzzy
+msgid "Connection Time: "
+msgstr "Yhteyden nimi: "
-#: ../../network/drakfirewall.pm:1
-#, 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."
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
msgstr ""
-"Voit syöttää sekalaiset portit.\n"
-"Toimivat esimerkit ovat: 139/tcp 139/udp.\n"
-"Katso /etc/services saadaksesi lisää tietoa."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Nauha \n"
+#: ../../standalone/net_monitor_.c:147
+#, fuzzy
+msgid "Wait please, testing your connection..."
+msgstr "Testaan yhteyttäsi..."
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
-msgstr ""
-"Selainta ei ole asennettu järjestelmässäsi, ole hyvä ja asenna jokin jos "
-"haluat selata ohjejärjestelmää"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Yhdistä Internettiin"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remember this password"
-msgstr "Muista tämä salasana"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Yhdistä Internettiin"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Internetyhteyden jakaminen on nyt käytössä."
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Verkkoon käyttäen SSH.\n"
+#: ../../standalone/net_monitor_.c:225
+#, fuzzy
+msgid "Connection complete."
+msgstr "Yhteyden nopeus"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:226
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."
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-" Jos haluttu tulostin tunnistettiin automaattisesti, sinun tarvitsee "
-"ainoastaan valita se listasta ja lisätä käyttäjänimi, salasana, ja/tai "
-"työryhmä tarvittaessa."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " cable"
-msgstr " kaapeli"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
-msgstr "Käytä tyhjää tilaa Windows-osiolla"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s löytyi paikasta %s, aseta se automaattisesti ?"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 ajuri: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr "Tämä kone/verkko on jo listassa, eikä sitä voida lisätä uudestaan.\n"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Valitse asennettavat paketit"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
-msgstr "Papua Uusi-Guinea"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Monikäyttölaite rinnakkaisportissa "
-
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Busy files"
-msgstr "Varmuuskopioi järjestelmätiedostot"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "Serbia (cyrillic)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Anna hakemisto, johon varmuuskopiot on tallennettu"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
-msgstr "Aseta ytimen viestit hiljaiseksi oletuksena"
+#: ../../standalone/net_monitor_.c:330
+#, fuzzy
+msgid "Color configuration"
+msgstr "hälytyksen asetukset"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
msgstr ""
-"Haluatko asettaa tämän tulostimen (\"%s\")\n"
-"oletustulostimeksi?"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
-msgstr "DHCP:n alueen loppu"
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "Luon käynnistyslevykettä..."
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Odota, testaan yhteyttäsi..."
+#: ../../standalone/net_monitor_.c:400
+#, fuzzy
+msgid "Local measure"
+msgstr "Paikalliset tiedostot"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "Ajan alas verkkoa"
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
+msgstr ""
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "Käyttäjä ID"
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:453
+#, fuzzy
msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+"Warning, another internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"NFS on yleinen protokolla tiedostojen jakoon TCP/IP-\n"
-"verkoissa. Tämä palvelu mahdollistaa NSF-tiedostolukot."
+"Varoitus, toinen internet-yhteys on havaittu, mahdollisesti käyttäen sinun "
+"vekkoasi"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
-msgstr "DHCP-asiakas"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "Yhdistä"
-#: ../../standalone/harddrake2:1
-#, 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"
-msgstr ""
-"Tämä on HardDrake, Mandraken laitteistonasetustyökalu.\n"
-"<span foreground=\"royalblue3\">Versio:</span> %s\n"
-"<span foreground=\"royalblue3\">Tekijä:</span> Thierry Vignaud &lt;"
-"tvignaud@mandrakesoft.com&gt;\n"
-"\n"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Disconnect %s"
+msgstr "Katkaise yhteys"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
-msgstr "peruuta"
+#: ../../standalone/printerdrake_.c:47
+msgid "Reading printer data ..."
+msgstr "Luetaan tulostimen tietoja ..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Tulostus/Skannaus laitteella \"%s\""
+#: ../../standalone/scannerdrake_.c:39
+msgid "Detecting devices ..."
+msgstr "Etsin laitteita ..."
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit raid modules"
-msgstr "jätä pois raid-moduulit"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
+msgstr "Kokeile portteja"
-#: ../../services.pm:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, c-format
-msgid ""
-"lpd is the print daemon required for lpr to work properly. It is\n"
-"basically a server that arbitrates print jobs to printer(s)."
-msgstr ""
-"lpd on tulostuspalvelin, jonka lpr ohjelma vaatii toimiakseen.\n"
-"lpd on palvelin joka jakaa tulostustöitä kirjoittimille."
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr "%s ei ole tuettu tässä Mandrake Linux versiossa."
-#: ../../keyboard.pm:1
+#: ../../standalone/scannerdrake_.c:54
#, c-format
-msgid "Irish"
-msgstr "Irlantilainen"
+msgid "%s found on %s, configure it?"
+msgstr "%s löytyi paikasta %s, aseta se ?"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/scannerdrake_.c:57
#, c-format
-msgid "Sunday"
-msgstr "Sunnuntai"
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
+"%s ei löytynyt kuvanlukija-tietokannasta, \n"
+"asetetaanko manuaalisesti?"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Internetyhteyden asetus"
+#: ../../standalone/scannerdrake_.c:63
+msgid "Select a scanner"
+msgstr "Valitse kuvanlukija"
-#: ../../modules/parameters.pm:1
+#: ../../standalone/scannerdrake_.c:91
#, c-format
-msgid "comma separated numbers"
-msgstr "pilkulla erotettuja numeroita"
+msgid "This %s scanner is unsupported"
+msgstr "Tätä %s kuvanlukija ei ole tuettu"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/scannerdrake_.c:105
#, 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\")"
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
msgstr ""
-"Kunhan olet valinnut laitteen, näet kuvauksen oikealla näkyvässä kehyksessä "
-"(\"Tiedot\")"
+"Scannerdraje ei onnistunut %s kuvanlukijasi.\n"
+"Valitse laite johon kuvanlukijasi on kytketty."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Ylennä valittua sääntöä yksi taso"
+#: ../../standalone/scannerdrake_.c:107
+msgid "choose device"
+msgstr "valitse laite"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:113
#, c-format
msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
msgstr ""
-"Seuraava kuvanlukija:\n"
-"\n"
-"%s\n"
-"on käytettävissä järjestelmässäsi.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Haluatko todella poistaa tulostimen \"%s\"?"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "I can't find any room for installing"
-msgstr "Ei ole tarpeeksi tilaa asentamiseen"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Default printer"
-msgstr "Oletustulostin"
+"Kuvanlukija %s pitää asettaa printerdrake:n kautta.\n"
+"Voit käynnistää printerdrake Mandraken hallintapaneelista\n"
+"Asetukset valikosta."
-#: ../../network/netconnect.pm:1
+#: ../../standalone/scannerdrake_.c:118
#, c-format
msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
msgstr ""
-"Olet asettanut useita eri tapoja ottaa yhteys Internetiin.\n"
-"Valitse se, jota haluat käyttää.\n"
-"\n"
+"Kuvanlukijasi %s on asetettu.\n"
+"Nyt voit lukea dokumentit tietokoneesi käyttämällä \"XSane\" \n"
+"Multimedia / Grafiikka valikossa."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "Modify RAID"
-msgstr "Muokkaa RAID:a"
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Joitakin laitteita luokasta \"%s\" poistettiin:\n"
-#: ../../network/isdn.pm:1
-#, 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."
-msgstr ""
-"Olen havainnut ISDN PCI-kortin, mutta en tunnista tyyppiä. Valitse yksi "
-"seuraavassa ruudussa olevista korteista."
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
+msgstr "Joitakin laitteita lisättiin:\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr "Lisää käyttäjä"
+#: ../../standalone/service_harddrake_.c:64
+msgid "Hardware probing in progress"
+msgstr "Laitteiston tunnistaminen käynnissä..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-levyt %s\n"
+# Asennuksen sivuvalikko
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "Valitse Kieli"
-#: ../../lang.pm:1
-#, c-format
-msgid "Liberia"
-msgstr "Liberia"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "Asennuksen luokka"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-"En voinut asentaa paketit jota tarvitaan kuvanlukijan asettamiseen "
-"Scannerdraken avulla."
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
+msgstr "Kiintolevyjen tunnistus"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-"Ole hyvä ja syötä liitynnän nimi jolla yhdistetään Internetiin.\n"
-"\n"
-"Esimerkkejä:\n"
-"\t\tppp+ modeemi tai DSL yhteyksille.\n"
-"\t\teth0 tai eth1 kaapeliyhteydelle.\n"
-"\t\tppp+ ISDN-yhteydelle.\n"
+# Asennuksen sivuvalikko
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "Hiiren määrittely"
# Asennuksen sivuvalikko
-#: ../../steps.pm:1
-#, c-format
+#: ../../steps.pm_.c:18
msgid "Choose your keyboard"
msgstr "Näppäimistön valinta"
+#: ../../steps.pm_.c:19
+msgid "Security"
+msgstr "Tietoturva"
+
# Asennuksen sivuvalikko
-#: ../../steps.pm:1
-#, c-format
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "Tiedostojärjestelmät"
+
+# Asennuksen sivuvalikko
+#: ../../steps.pm_.c:21
msgid "Format partitions"
msgstr "Levyjen osiointi"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "CUPS asetuksien automaattinen korjaus "
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Running \"%s\" ..."
-msgstr "Suoritetaan \"%s\" ..."
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "enable radio support"
-msgstr "ota radio-tuki käyttöön"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Kuvanlukijan jako koneille: "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Loopback-tiedoston nimi: %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Valitse tulostin johon tulostustyöt pitää ohjata."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not transfer printers"
-msgstr "Älä siirrä tulostimia"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Delay before booting the default image"
-msgstr "Viive ennen oletusjärjestelmän käynnistystä"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Hard Disk to backup"
-msgstr "Käytä kiintolevyä varmuuskopiointiin"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Configure"
-msgstr "Aseta"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake"
-msgstr "Scannerdrake"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Varoitus, toinen Internet-yhteys on havaittu, mahdollisesti käyttäen sinun "
-"verkkoasi"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
-msgstr "Varmuuskopioi käyttäjät"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Syötä koneesi nimi.\n"
-"Koneesi nimen pitäisi olla täydellinen, kuten ``minunkone.yritys.fi''.\n"
-"Voit antaa myös yhdyskäytävän IP-osoitteen jos sinulla on sellainen."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Valitse tulostusjono"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Create new theme"
-msgstr "Luo uusi teema"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
-msgstr "Mandraken työkalujen selitykset"
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "Asennettavat paketit"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "No image found"
-msgstr "Kuvatiedostoa ei löydetty"
+# Asennuksen sivuvalikko
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "Asenna järjestelmä"
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
-"Osa tärkeistä paketeista jäi asentamatta loppuun asti.\n"
-"Joko cdrom-asemasi tai levy on viallinen.\n"
-"Tarkista cd-rom Linux-koneessa käyttämällä \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
+# Asennuksen sivuvalikko
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "Käyttäjien lisääminen"
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
-msgstr "Mandrake Linux 9.2 on ratkaiseva kehitysalusta"
+# Asennuksen sivuvalikko
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "Verkkoasetukset"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Detected model: %s"
-msgstr "Tunnistettu malli: %s"
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "Palvelujen asettaminen"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
-msgstr "\"%s\" ei ole kelvollinen sähköpostiosoite!"
+# Asennuksen sivuvalikko
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "Lataajan asetus"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"X11 Näytönhallinta sallii sinua käyttämään graafista\n"
-"sisäänkirjautumista järjestelmään, jossa X-ikkunointijärjestelmä on "
-"käytössä\n"
-"ja sallii useita samanaikaisia käyttäjiä paikallisessa koneessa."
+# Asennuksen sivuvalikko
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "Käynnistyslevyke"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr "jos asetettu, suoritetaan päivittäiset turvallisuustarkistukset."
+# Asennuksen sivuvalikko
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "Asenna X"
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
-msgstr "Azerbaidzan"
+# Asennuksen sivuvalikko
+#: ../../steps.pm_.c:34
+msgid "Install system updates"
+msgstr "Asenna päivitykset"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Varmuuskopioinnissa käytettävän laitteen nimi"
+# Asennuksen sivuvalikko
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "Lopeta asennus"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
-msgstr "Ei nauhaa asemassa %s!"
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
msgstr ""
-" --doc <linkki> - linkki toiselle webbisivustolle (WM tervetuloa-"
-"etusivulle)\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "Web/FTP"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr "tämä on fyysinen väylä, johon laite on kytketty (esim PCI, USB, ...)"
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
+msgstr "Verkkopääte (asiakas)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Miten tulostin on liitetty?"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS-, SMB-, SSH- ja välityspalvelin"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security level"
-msgstr "Turvataso"
+#: ../../share/compssUsers:999
+msgid "Office"
+msgstr "Toimistosovellukset"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "final resolution"
-msgstr "lopullinen tarkkuus"
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Gnome-työasema"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
-msgstr "Palvelut"
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Työkalut Palm Pilotin tai Visorin liittämiseksi"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Auto configuration"
-msgstr "Mukautettu asetus"
+#: ../../share/compssUsers:999
+msgid "Workstation"
+msgstr "Työasema"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 Mt"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Palomuuri / Reititys"
#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Toimistotyöasema"
+msgid "Domain Name and Network Information Server"
+msgstr "Nimipalvelin (DNS) ja tietoverkon informaatiopalvelin (NIS)"
#: ../../share/compssUsers:999
msgid ""
@@ -21224,69 +13732,78 @@ msgstr ""
"(kspread,gnumeric), pdf-lukijat jne"
#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Pelikone"
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "Äänenkäsittely: mp3, midi, mikserit, jne"
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Pelit: tasohyppely, korttipelit, strategia jne"
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standardi Perusta - Kolmannen osapuolen ohjelmistojen tuki"
#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimediakone"
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Kirjoja ja ohjeita Linuxista sekä vapaan lähdekoodin ohjelmista"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Äänen sekä videon toisto- ja editointiohjelmat"
+msgid "KDE Workstation"
+msgstr "KDE-työasema"
#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internetkone"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, jne"
#: ../../share/compssUsers:999
-#, fuzzy
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Valikoima työkaluja sähköpostin ja uutisryhmien lukemiseen (pine, mutt, "
-"tin...) sekä Internetissä surffailuun"
+msgid "Multimedia - Video"
+msgstr "Multimedia - Video"
#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Verkkopääte (asiakas)"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+"Kokoelma työkaluja sähköpostiin, nyytisiin, webiin, tiedostonsiirtoon ja "
+"jutusteluun"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Asiakasohjelmat eri protokollille (SSH jne)"
+msgid "Database"
+msgstr "Tietokanta"
#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Asetustyökalut"
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL tai MySQL tietokantapalvelin"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
msgstr "Työkalut, jotka helpottavat tietokoneesi asetusten muokkaamista"
#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Tieteellinen työasema"
+msgid "Multimedia - Sound"
+msgstr "Multimedia - Ääni"
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
-msgstr "Tieteelliset sovellukset kuten gnuplot"
+msgid "Documentation"
+msgstr "Dokumentaatio"
#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr "Komentorivityökalut"
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editorit, komentotulkit, tiedostotyökalut, päätteet"
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix-postipalvelin, Inn-uutispalvelin"
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE-työasema"
+msgid "Internet station"
+msgstr "Internet-asema"
+
+#: ../../share/compssUsers:999
+msgid "Multimedia station"
+msgstr "Multimedia-asema"
+
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Asetustyökalut"
+
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "Lisää graafisia työpöytiä (Gnome, IceWM)"
#: ../../share/compssUsers:999
msgid ""
@@ -21296,826 +13813,377 @@ msgstr ""
"K-työpöytäympäristö. Graafinen perusympäristö ja sen mukana tulevat työkalut"
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome-työasema"
+msgid "Graphical Environment"
+msgstr "Graafinen ympäristö"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Graafinen ympäristö käyttäjäystävällisellä ohjelmistolla ja työkaluilla."
+msgid "Development"
+msgstr "Kehitysympäristö"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Muut graafiset käyttöympäristöt"
+msgid "Apache, Pro-ftpd"
+msgstr "Apache WWW-palvelin ja Pro-ftpd FTP-palvelin"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "IceWM, Window Maker, Enlightenment, FVWM, jne"
+msgid "Tools to create and burn CD's"
+msgstr "Työkalut CD:iden luomiseen ja polttamiseen"
#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C ja C++ ohjelmointityökalut, kirjastot ja include-tiedostot"
+msgid "Office Workstation"
+msgstr "Toimistotyöasema"
#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Dokumentaatio"
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, jne"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Kirjoja ja ohjeita Linuxista sekä vapaan lähdekoodin ohjelmista"
+msgid "Graphics programs such as The Gimp"
+msgstr "Grafiikkaohjelmistot, kuten Gimp"
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr "LSB"
+msgid "DNS/NIS "
+msgstr "DNS/NIS "
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr ""
-"Linux Standard Base (Linux Standardi Perusta)\n"
-" - Kolmannen osapuolen ohjelmistojen tuki"
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C ja C++ ohjelmointityökalut, kirjastot ja include-tiedostot"
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
+msgid "Network Computer server"
+msgstr "Verkkotietokone (palvelin)"
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache WWW-palvelin ja Pro-ftpd FTP-palvelin"
+msgid "Mail/Groupware/News"
+msgstr "Sähköposti/Groupware/Uutiset"
#: ../../share/compssUsers:999
-msgid "Mail"
-msgstr "Sähköposti"
+msgid "Game station"
+msgstr "Pelikone"
#: ../../share/compssUsers:999
-msgid "Postfix mail server"
-msgstr "Postfix Sähköpostipalvelin"
+msgid "Video players and editors"
+msgstr "Videon katselu ja editointi"
#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Tietokanta"
+msgid "Multimedia - Graphics"
+msgstr "Multimedia - Grafiikka"
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL tai MySQL tietokantapalvelin"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Pelit: tasohyppely, korttipelit, strategia, jne"
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Palomuuri / Reititys"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"Valikoima työkaluja sähköpostin ja nyytisten lukemiseen (pine, mutt, tin...) "
+"sekä internetissä surffailuun"
#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Internetyhdyskäytävä"
+msgid "Personal Finance"
+msgstr "Henkilökohtainen kirjanpito"
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Graafinen ympäristö käyttäjäystävällisellä ohjelmistolla ja työkaluilla."
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Nimipalvelin (DNS) ja tietoverkon informaatiopalvelin (NIS)"
+msgid "Clients for different protocols including ssh"
+msgstr "Asiakasohjelmat eri protokollille (ssh jne)"
#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Verkkotietokone (palvelin)"
+msgid "LSB"
+msgstr "LSB"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS-, SMB-, SSH- ja välityspalvelin"
+msgid "Internet gateway"
+msgstr "Internetyhdyskäytävä"
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
-msgstr ""
-"Valikoima työkaluja sähköpostin ja uutisryhmien lukemiseen sekä Internetissä "
-"surffailuun"
-
-#~ msgid "The setup has already been done, and it's currently enabled."
-#~ msgstr "Asetukset on jo tehty ja ne ovat käytössä."
-
-#~ msgid "Logs"
-#~ msgstr "Lokit"
-
-#~ msgid "The setup has already been done, but it's currently disabled."
-#~ msgstr ""
-#~ "Asetukset on jo tehty, mutta ne ovat tällä hetkellä poistettu käytöstä."
-
-#~ msgid "Profile "
-#~ msgstr "Profiili: "
-
-#~ msgid ""
-#~ "Welcome to the Internet Connection Sharing utility!\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ "Click on Configure to launch the setup wizard."
-#~ msgstr ""
-#~ "Tervetuloa Internetyhteyden jakamisen apuohjelmaan!\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ "Paina Aseta käynnistääksesi asennusvelhon."
-
-#~ msgid "Internet Connection Sharing configuration"
-#~ msgstr "Internetyhteyden jakamisen asetukset"
-
-#~ msgid "No Internet Connection Sharing has ever been configured."
-#~ msgstr "Internetyhteyden jakamista ei ole koskaan asetettu."
-
-#~ msgid "when checked, owner and group won't be changed"
-#~ msgstr "kun valittu, omistajaa ja ryhmää ei muuteta"
-
-#~ msgid ""
-#~ "XawTV isn't installed!\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do have a TV card but DrakX has neither detected it (no bttv nor "
-#~ "saa7134\n"
-#~ "module in \"/etc/modules\") nor installed xawtv, please send the\n"
-#~ "results of \"lspcidrake -v -f\" to \"install@mandrakesoft.com\"\n"
-#~ "with subject \"undetected TV card\".\n"
-#~ "\n"
-#~ "\n"
-#~ "You can install it by typing \"urpmi xawtv\" as root, in a console."
-#~ msgstr ""
-#~ "XawTV ei ole asennettuna!\n"
-#~ "\n"
-#~ "\n"
-#~ "Jos sinulla on TV-kortti, mutta DrakX ei tunnistanut sitä (ei bttv eikä \n"
-#~ "saa713 moduulia tiedostossa \"/etc/modules\") eikä asentanut xawtv:tä, \n"
-#~ "lähetä \"lspcidrake -v -f\" tuloste osoitteeseen \"install@mandrakesoft."
-#~ "com\n"
-#~ "otsikolla \"undetected TV card\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Voit asentaa sen kirjoittamalla \"urpmi xawtv\" pääkäyttäjänä konsolissa."
-
-#~ msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-
-#~ msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#~ msgid "Error while parsing \"MODULES\" line from %s"
-#~ msgstr "Virhe luettaessa \"MODULES\" rivi kohteesta %s"
-
-#~ msgid "Hostname configuration"
-#~ msgstr "Koneennimen asettaminen"
-
-#~ msgid "Hostname"
-#~ msgstr "Koneennimi"
-
-#~ msgid "Remote Printers"
-#~ msgstr "Etätulostimet"
-
-#~ msgid "Printing system: "
-#~ msgstr "Tulostusjärjestelmä: "
-
-#~ msgid "Level 1"
-#~ msgstr "Taso 1"
-
-#~ msgid "Level 2"
-#~ msgstr "Taso 2"
-
-#~ msgid "Level 3"
-#~ msgstr "Taso 3"
-
-#~ msgid "Level 4"
-#~ msgstr "Taso 4"
-
-#~ msgid "Level 5"
-#~ msgstr "Taso 5"
-
-#~ msgid "Load"
-#~ msgstr "Lataa"
-
-#~ msgid ""
-#~ "Unable to properly close mkbootdisk: \n"
-#~ " %s \n"
-#~ " %s"
-#~ msgstr ""
-#~ "mkbootdisk:ä ei voitu sulkea oikein: \n"
-#~ " %s \n"
-#~ " %s"
-
-#~ msgid "Bad Ip"
-#~ msgstr "Virheellinen lp"
-
-#~ msgid "Bad Mask"
-#~ msgstr "Virheellinen aliverkko"
+msgid "Sound and video playing/editing programs"
+msgstr "Äänen sekä videon soitto- ja editointiohjelmat"
-#~ msgid "Output"
-#~ msgstr "Tuloste"
+#: ../../share/compssUsers:999
+msgid "Other Graphical Desktops"
+msgstr "Muut graafiset käyttöympäristöt"
-#~ msgid "activate now"
-#~ msgstr "aktivoi nyt"
+#: ../../share/compssUsers:999
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editorit, komentotulkit, tiedostotyökalut, terminaalit"
-#~ msgid "Total progess"
-#~ msgstr "Kokonaisedistyminen"
+#: ../../share/compssUsers:999
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "Tilinpito-ohjelmia, kuten gnucash"
-#~ msgid "deactivate now"
-#~ msgstr "deaktivoi nyt"
+#: ../../share/compssUsers:999
+msgid "Personal Information Management"
+msgstr "Henkilökohteisen tiedon hallinta"
-#~ msgid "Please relog into %s to activate the changes"
-#~ msgstr "Kirjaudu uudelleen %s:een aktivoidaksesi muutokset"
+#: ../../share/compssUsers:999
+msgid "Multimedia - CD Burning"
+msgstr "Multimedia - CD:n poltto"
-#~ msgid "Start Search..."
-#~ msgstr "Käynnistä haku..."
+#: ../../share/compssUsers:999
+msgid "Scientific Workstation"
+msgstr "Tieteellinen työasema"
-#~ msgid ""
-#~ "Search For...\n"
-#~ "%s"
-#~ msgstr ""
-#~ "Hae...\n"
-#~ "%s"
+#~ msgid "can not open /etc/inittab for reading: %s"
+#~ msgstr "ei voi lukea tiedostoa /etc/inittab: %s"
-#~ msgid ""
-#~ "Description:\n"
-#~ "\n"
-#~ " Drakbackup is used to backup your system.\n"
-#~ " During the configuration you can select: \n"
-#~ "\t- System files, \n"
-#~ "\t- Users files, \n"
-#~ "\t- Other files.\n"
-#~ "\tor All your system ... and Other (like Windows Partitions)\n"
-#~ "\n"
-#~ " Drakbackup allows you to backup your system on:\n"
-#~ "\t- Harddrive.\n"
-#~ "\t- NFS.\n"
-#~ "\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-#~ "\t- FTP.\n"
-#~ "\t- Rsync.\n"
-#~ "\t- Webdav.\n"
-#~ "\t- Tape.\n"
-#~ "\n"
-#~ " Drakbackup allows you to restore your system to\n"
-#~ " a user selected directory.\n"
-#~ "\n"
-#~ " Per default all backups will be stored on your\n"
-#~ " /var/lib/drakbackup directory\n"
-#~ "\n"
-#~ " Configuration file:\n"
-#~ "\t/etc/drakconf/drakbackup/drakbackup.conf\n"
-#~ "\n"
-#~ "Restore Step:\n"
-#~ " \n"
-#~ " During the restore step, DrakBackup will remove \n"
-#~ " your original directory and verify that all \n"
-#~ " backup files are not corrupted. It is recommended \n"
-#~ " you do a last backup before restoring.\n"
-#~ "\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Kuvaus:\n"
-#~ "\n"
-#~ " Drakbackup:a käytetään järjestelmäsi varmistamiseen.\n"
-#~ " Asetuksen aikana voit valita: \n"
-#~ "\t- Järjestelmätiedostoja, \n"
-#~ "\t- Käyttäjien tiedostoja, \n"
-#~ "\t- Muita tiedostoja,\n"
-#~ "\ttai Koko järjestelmäsi... ja Muut (esim. Windows-osiot)\n"
-#~ "\n"
-#~ " Drakbackup sallii varmistaminen seuraaviin kohteisiin:\n"
-#~ "\t- Kovalevy.\n"
-#~ "\t- NFS.\n"
-#~ "\t- CDROM (CDRW), DVDROM (sisältää automaattikäynnistyksen,\n"
-#~ "\t pelastuksen ja automaattiasennuksen.).\n"
-#~ "\t- FTP.\n"
-#~ "\t- Rsync.\n"
-#~ "\t- Webdav.\n"
-#~ "\t- Nauha.\n"
-#~ "\n"
-#~ " Drakbackup sallii sinun palauttaa järjestelmäsi\n"
-#~ " haluamasi hakemistoon.\n"
-#~ "\n"
-#~ " Oletuksena kaikki varmistukset tallennetaan\n"
-#~ " /var/lib/drakbackup hakemistoon\n"
-#~ "\n"
-#~ " Asetustiedosto:\n"
-#~ "\t/etc/drakconf/drakbackup/drakbackup.conf\n"
-#~ "\n"
-#~ "Palautusaskel:\n"
-#~ " \n"
-#~ " Palautusvaiheen aikana Drakbackup poistaa alkuperäiset\n"
-#~ " hakemistosi, ja tarkistaa etteivät varmistustiedostosi ole\n"
-#~ " korruptoituneet. On suositeltavaa että suoritat viimeisen\n"
-#~ " varmistuksen ennen palautuksen tekoa.\n"
-#~ "\n"
-#~ "\n"
+#~ msgid "cpu number "
+#~ msgstr "prosessorinumero"
#~ msgid ""
-#~ "Options Description:\n"
-#~ "\n"
-#~ " - Backup System Files:\n"
-#~ " \n"
-#~ "\tThis option allows you to backup your /etc directory,\n"
-#~ "\twhich contains all configuration files. Please be\n"
-#~ "\tcareful during the restore step to not overwrite:\n"
-#~ "\t\t/etc/passwd \n"
-#~ "\t\t/etc/group \n"
-#~ "\t\t/etc/fstab\n"
+#~ "You now have the opportunity to download encryption software.\n"
#~ "\n"
-#~ " - Backup User Files: \n"
+#~ "WARNING:\n"
#~ "\n"
-#~ "\tThis option allows you select all users that you want to \n"
-#~ "\tbackup. To preserve disk space, it is recommended that\n"
-#~ "\tyou do not include the web browser's cache.\n"
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
#~ "\n"
-#~ " - Backup Other Files: \n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
#~ "\n"
-#~ "\tThis option allows you to include additional data to save.\n"
-#~ "\tIf you want to add individual files, select them from the\n"
-#~ "\trighthand 'Files' list pane. To add directories, enter the \n"
-#~ "\tdirectory by clicking on it in the lefthand 'Folders' pane, \n"
-#~ "\tand at that point click 'OK' without selecting any files.\n"
-#~ " \n"
-#~ " - Incremental Backups:\n"
+#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
#~ "\n"
-#~ "\tThe incremental backup is the most powerful option for \n"
-#~ "\tbackup. This option allows you to backup all your data \n"
-#~ "\tthe first time, and only the changed data afterward.\n"
-#~ "\tThen you will be able, during the restore step, to restore \n"
-#~ "\tyour data from a specified date. If you have not selected \n"
-#~ "\tthis option all old backups are deleted before each backup. \n"
-#~ "\n"
-#~ " - Differential Backups:\n"
-#~ " \n"
-#~ "\tThe differential backup, rather than comparing changes in the\n"
-#~ "\tdata to the previous incremental backup, always compares the\n"
-#~ "\tdata to the initial base backup. This method allows one to\n"
-#~ "\trestore the base and then the differential from a certain date.\n"
#~ "\n"
+#~ "For any queries relating to these agreement, please contact \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
#~ msgstr ""
-#~ "Optioiden kuvaus:\n"
-#~ "\n"
-#~ " - Varmista järjestelmätiedostoja:\n"
-#~ "\n"
-#~ "\tTämä optio sallii sinun varmistamaan /etc hakemistosi,\n"
-#~ "\tjoka sisältää kaikki asetustiedostot. Ole varovainen\n"
-#~ "\tpalautuksen aikana ettei seuraavia tiedostoja ylikirjoiteta:\n"
-#~ "\t\t/etc/passwd \n"
-#~ "\t\t/etc/group \n"
-#~ "\t\t/etc/fstab\n"
-#~ "\n"
-#~ " - Varmista käyttäjien tiedostot:\n"
+#~ "Sinulla on nyt mahdollisuus hakea internetistä ne ohjelmistot, jotka on \n"
+#~ "suunnattu tiedon salakirjoittamiseen.\n"
#~ "\n"
-#~ "\tTämä optio sallii sinun valitsemaan kaikki käyttäjät\n"
-#~ "\tjoiden tiedostoja haluat varmistaa.\n"
-#~ "\tSäästääksesi levytilaa, ehdotamme ettet sisällä\n"
-#~ "\tnettiselaimen välimuistitiedostoja.\n"
+#~ "VAROITUS:\n"
#~ "\n"
-#~ " - Varmista muita tiedostoja:\n"
+#~ "Näitä ohjelmistoja koskevien eri tasoisten vaatimusten ja eri "
+#~ "lainsäädäntöjen \n"
+#~ "määräysten vuoksi näiden ohjelmistojen asiakkaan ja/tai loppukäyttäjän \n"
+#~ "pitää varmistaa, että hänen maansa lainsäädäntö sallii hänen hakea, "
+#~ "tallentaa \n"
+#~ "ja käyttää näitä ohjelmistoja.\n"
#~ "\n"
-#~ "\tTämä optio sallii sinua lisätä varmistettavaa tietoa.\n"
-#~ "\tTätä optiota et voi tällä hetkellä käyttää asteittaisen \n"
-#~ "\tvarmistuksen kanssa.\n"
+#~ "Lisäksi asiakkaan ja/tai loppukäyttäjän tulee olla erityisen varmoja "
+#~ "siitä, etteivät \n"
+#~ "he riko maansa lainsäädäntöä vastaan.Mikäli asiakas ja/tai loppukäyttäjä "
+#~ "ei \n"
+#~ "noudata näiden lakien määräyksiä, heille voidaan langettaa vakaviakin \n"
+#~ "rangaistuksia.\n"
#~ "\n"
-#~ " - Asteittaiset varmistukset:\n"
+#~ "Missään tilanteissa ei Mandrakesoft tai sen valmistajat ja/tai "
+#~ "jälleenmyyjät \n"
+#~ "ole vastuuvelvollisia erityisiin, epäsuoriin tai satunnaisiin "
+#~ "vahinkoihin, jotka\n"
+#~ "voivat aiheutua (mukaan lukien, mutta ei rajoittuen: tulonmenetykset, \n"
+#~ "yritystoiminnan katkeaminen, kaupallisten tietojen menetys ja muut \n"
+#~ "rahalliset menetykset, sekä mahdolliset vahingonkorvaukset, jotka "
+#~ "oikeus \n"
+#~ "päättää langettaa). ohjelmiston käyttämisestä, hallussapidosta, tai "
+#~ "pelkästä \n"
+#~ "internetistä hakemisesta, jossa asiakas ja/tai loppukäyttäjä voi saada \n"
+#~ "haltuunsa nämä ohjelmistot hyväksyttyään tämän sopimuksen.\n"
#~ "\n"
-#~ "\tAsteittainen varmistus on tehokkain tapa varmistaa.\n"
-#~ "\tTämä optio sallii sinua varmistaa ensin kaikki tietosi,\n"
-#~ "\tsen jälkeen ainoastaan muuttuneet tiedostot.\n"
-#~ "\tTällä tavalla voit palauttaa tiedot haluamasi päivämäärän\n"
-#~ "\tmukaan.\n"
-#~ "\tJos et valitse tätä optiota kaikki vanhat varmistukset\n"
-#~ "\tpoistetaan ennen uuden tekoa. \n"
-#~ "\n"
-#~ " - Erotusvarmistuskset:\n"
-#~ "\n"
-#~ "Erotusvarmistus toimii vertaamalla muutoksia aluperäiseen \n"
-#~ "varmistukseen edellisen asteittaisen sijasta. Tällä tavalla \n"
-#~ "palautus toivotusta päivämäärästä saadaan tehty palauttamalla\n"
-#~ "ensin alkuperäinen palautus ja sitten haluttu päivämäärä.\n"
#~ "\n"
+#~ "Mihin tahansa tätä sopimusta koskeviin tiedusteluihin, ota yhteys:"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
-#~ msgid "Please check if you want to use the non-rewinding device."
-#~ msgstr "Valitse, jos haluat käyttää ei-taaksekelautuvaa laitetta"
-
-#~ msgid "Please enter your password"
-#~ msgstr "Syötä salasanasi"
+#~ msgid "Proxy configuration"
+#~ msgstr "Välityspalvelin-asetukset"
#~ msgid ""
+#~ "Welcome to the proxy configuration utility.\n"
#~ "\n"
-#~ " Some errors during sendmail are caused by \n"
-#~ " a bad configuration of postfix. To solve it you have to\n"
-#~ " set myhostname or mydomain in /etc/postfix/main.cf\n"
-#~ "\n"
+#~ "Here, you'll be able to set up your http and ftp proxies\n"
+#~ "with or without login and password\n"
#~ msgstr ""
+#~ "Tervetuloa välityspalvelimen asettamisohjelmaan.\n"
#~ "\n"
-#~ " Jotkut virheet sendmailin aikana johtuvat huonoista \n"
-#~ "postfix-asetuksista. Korjataksesi vian sinun täytyy asettaa \n"
-#~ "myhostname tai mydomain /etc/postfix/main.cf tiedostossa.\n"
-#~ "\n"
+#~ "Täältä voit asettaa http- ja ftp-välityspalvelimesi sisäänkirjautumisen "
+#~ "ja\n"
+#~ "salasanojen kanssa tai ilman niitä\n"
#~ msgid ""
-#~ "Please choose your CD/DVD device\n"
-#~ "(Press Enter to propogate settings to other fields.\n"
-#~ "This field isn't necessary, only a tool to fill in the form.)"
+#~ "Please fill in the http proxy informations\n"
+#~ "Leave it blank if you don't want an http proxy"
#~ msgstr ""
-#~ "Ole hyvä ja valitse CD/DVD-laitteesi\n"
-#~ "(paina Enter täyttääksesi asetukset muihin kenttiin.\n"
-#~ " Tämä kenttä ei ole pakollinen, ainoastaan työkalu\n"
-#~ " lomakkeen täyttämiseen.)"
+#~ "Täytä http-välityspalvelimen tiedot\n"
+#~ "Jätä kohta tyhjäksi, jos et haluat http-välityspalvelinta"
-#~ msgid "Please check if you want to eject your tape after the backup."
-#~ msgstr "Valitse tämä jos haluat poistaa nauhan varmistuksen jälkeen"
+#~ msgid "URL"
+#~ msgstr "URL"
-#~ msgid "Please check if you want to erase your tape before the backup."
-#~ msgstr "Valitse, jos haluat tyhjentää nauhan ennen kopiointia"
+#~ msgid "port"
+#~ msgstr "portti"
-#~ msgid "Please enter the host name or IP."
-#~ msgstr "Syötä verkkoaseman nimi tai IP."
+#~ msgid "Url should begin with 'http:'"
+#~ msgstr "Web-osoitteen tulee alkaa etuliitteellä 'http:'"
-#~ msgid ""
-#~ " Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s@epita."
-#~ "fr>"
-#~ msgstr ""
-#~ " Copyright (C) 2001-2002 MandrakeSoft.\n"
-#~ " Tekijä: DUPONT Sebastien <dupont_s@epita.fr>"
+#~ msgid "The port part should be numeric"
+#~ msgstr "Porttiosan pitäisi olla numeerinen"
#~ msgid ""
-#~ "Options Description:\n"
-#~ "\n"
-#~ "Please be careful when you are using ftp backup, because only \n"
-#~ "backups that are already built are sent to the server.\n"
-#~ "So at the moment, you need to build the backup on your hard \n"
-#~ "drive before sending it to the server.\n"
-#~ "\n"
+#~ "Please fill in the ftp proxy informations\n"
+#~ "Leave it blank if you don't want an ftp proxy"
#~ msgstr ""
-#~ "Optioiden kuvaus:\n"
-#~ "\n"
-#~ "Ole varovainen kun käytät FTP-varmistusta, koska ainoastaan\n"
-#~ "valmiiksi 'rakennetut' varmistukset lähetetään palvelimelle.\n"
-#~ "Joten tällä hetkellä sinun täytyy 'rakentaa' varmistukset \n"
-#~ "kovalevylläsi ennen kuin lähetät niitä palvelimelle.\n"
-#~ "\n"
+#~ "Täytä ftp-välityspalvelimen tiedot\n"
+#~ "Jätä kohta tyhjäksi, jos et haluat ftp-välityspalvelinta"
#~ msgid ""
-#~ "\n"
-#~ "Restore Backup Problems:\n"
-#~ "\n"
-#~ "During the restore step, Drakbackup will verify all your\n"
-#~ "backup files before restoring them.\n"
-#~ "Before the restore, Drakbackup will remove \n"
-#~ "your original directory, and you will loose all your \n"
-#~ "data. It is important to be careful and not modify the \n"
-#~ "backup data files by hand.\n"
+#~ "Please enter proxy login and password, if any.\n"
+#~ "Leave it blank if you don't want login/passwd"
#~ msgstr ""
-#~ "\n"
-#~ "Varmistuksen palautusongelmia:\n"
-#~ "\n"
-#~ "Palautusvaiheen aikana Drakbackup tarkistaa kaikki\n"
-#~ "varmistustiedostosi ennen niiden palauttamista.\n"
-#~ "Ennen palauttamista Drakbackup poistaa alkuperäiset\n"
-#~ "hakemistosi ja menetät kaikki nykyiset datasi. On tärkeää\n"
-#~ "olla varovainen eikä muokata varmistustiedostoja käsin.\n"
+#~ "Syötä välityspalvelimen käyttäjätunnus ja salasana, jos sellaiset on.\n"
+#~ "Jätä kohdat tyhjiksi, jos et halua käyttää tunnus/salasana-yhdistelmää"
-#~ msgid ""
-#~ " updates 2002 MandrakeSoft by Stew Benedict <sbenedict@mandrakesoft.com>"
-#~ msgstr ""
-#~ " Päivitykset 2002 MandrakeSoft\n"
-#~ " Tekijä: Stew Benedict <sbenedict@mandrakesoft.com>"
+#~ msgid "login"
+#~ msgstr "käyttäjätunnus"
-#~ msgid ""
-#~ "Arguments: (arg, expr='*.*', dev='tty12')\n"
-#~ "\n"
-#~ "Enable/Disable syslog reports to console 12. \\fIexpr\\fP is the\n"
-#~ "expression describing what to log (see syslog.conf(5) for more details) "
-#~ "and\n"
-#~ "dev the device to report the log."
-#~ msgstr ""
-#~ "Parametrit: (arg, expr='*.*', dev='tty12')\n"
-#~ "\n"
-#~ "Ota käyttöön / poista käytöstä syslog:n raportin ohjaus konsoliin 12.\n"
-#~ "\\fIexpr\\fP määrää mitä pitää kirjoittaa lokiin (katso syslog.conf(5) \n"
-#~ "saadaksesi lisätietoja), ja dev mihin laitteeseen raportoidaan."
+#~ msgid "password"
+#~ msgstr "salasana"
-#~ msgid "edit"
-#~ msgstr "muokkaa"
+#~ msgid "re-type password"
+#~ msgstr "salasana uudelleen"
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ " Accept/Refuse broadcasted icmp echo."
-#~ msgstr ""
-#~ "Parametrit: (arg)\n"
-#~ "\n"
-#~ " Hyväksy / Hylkää kuulutetut icmp echo viestit."
+#~ msgid "The passwords don't match. Try again!"
+#~ msgstr "Salasanat poikkeavat toisistaan. Kokeile uudelleen!"
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable libsafe if libsafe is found on the system."
-#~ msgstr ""
-#~ "Parametrit: (arg)\n"
-#~ "\n"
-#~ "Ota käyttöön / poista käytöstä libsafe jos se löytyy järjestelmästä."
+#~ msgid "Can't write file %s"
+#~ msgstr "En voi kirjoittaa tiedostoa %s"
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Allow/Forbid remote root login."
-#~ msgstr ""
-#~ "Parametrit: (arg)\n"
-#~ "\n"
-#~ "Salli / Estä root sisäänkirjautuminen etäyhteyksiltä."
-
-#~ msgid "select perm file to see/edit"
-#~ msgstr "valitse näytettävä/muokattava perm tiedosto"
+#~ msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-#~ msgid "path"
-#~ msgstr "polku"
+#~ msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#, fuzzy
#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable the logging of IPv4 strange packets."
+#~ "Warning, another internet connexion has been detected, maybe using your "
+#~ "network"
#~ msgstr ""
-#~ "Parametrit: (arg)\n"
-#~ "\n"
-#~ "Ota käyttöön / poista käytöstä epätavallisten IPv4 pakettien kirjaaminen "
-#~ "lokiin."
+#~ "Varoitus, toinen internet-yhteys on havaittu, mahdollisesti käyttäen "
+#~ "sinun vekkoasi"
-#~ msgid ""
-#~ "Arguments: (arg, alert=1)\n"
-#~ "\n"
-#~ "Enable/Disable IP spoofing protection."
-#~ msgstr ""
-#~ "Parametrit: (arg, alert=1)\n"
-#~ "\n"
-#~ "Ota käyttöön / poista käytöstä IP spoofing suojaus."
+#~ msgid "no help implemented yet.\n"
+#~ msgstr "ohjeita ei ole vielä olemassa.\n"
-#~ msgid "permissions"
-#~ msgstr "oikeudet"
+#~ msgid "Please click on a medium"
+#~ msgstr "Klikkaa mediaa"
#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable msec hourly security check."
+#~ "Which dhcp client do you want to use?\n"
+#~ "Default is dhcpcd"
#~ msgstr ""
-#~ "Parametrit: (arg)\n"
-#~ "\n"
-#~ "Ota käyttöön / poista käytöstä msec turvallisuustarkistukset joka tunti."
+#~ "Mitä dhcp-asiakasohjelmaa haluat käyttää?\n"
+#~ "Oletus on dhcpcd"
-#~ msgid "delete"
-#~ msgstr "poista"
+#~ msgid "Removing LPRng..."
+#~ msgstr "Poistetaan LPRng..."
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Accept/Refuse bogus IPv4 error messages."
-#~ msgstr ""
-#~ "Parametrit: (arg)\n"
-#~ "\n"
-#~ "Hyväksy / Hylkää virheelliset IPv4 virheviestit."
+#~ msgid "Removing LPD..."
+#~ msgstr "Poistetaan LPD..."
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Use password to authenticate users."
-#~ msgstr ""
-#~ "Parametrit: (arg)\n"
-#~ "\n"
-#~ "Käytä salasanoja käyttäjien tunnistamiseen."
-
-#~ msgid "user"
-#~ msgstr "käyttäjä"
+#~ msgid " (default: %s)"
+#~ msgstr " (oletus: %s)"
#~ msgid ""
-#~ "Standard: This is the standard security recommended for a computer that "
-#~ "will be used to connect\n"
-#~ " to the Internet as a client.\n"
-#~ "\n"
-#~ "High: There are already some restrictions, and more automatic "
-#~ "checks are run every night.\n"
+#~ "drakbug version %s\n"
+#~ "Copyright (C) 2002 MandrakeSoft.\n"
+#~ "This is free software and may be redistributed under the terms of the GNU "
+#~ "GPL.\n"
#~ "\n"
-#~ "Higher: The security is now high enough to use the system as a server "
-#~ "which can accept\n"
-#~ " connections from many clients. If your machine is only a "
-#~ "client on the Internet, you\n"
-#~ " should choose a lower level.\n"
+#~ "usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
#~ "\n"
-#~ "Paranoid: This is similar to the previous level, but the system is "
-#~ "entirely closed and security\n"
-#~ " features are at their maximum\n"
-#~ "\n"
-#~ "Security Administrator:\n"
-#~ " If the 'Security Alerts' option is set, security alerts "
-#~ "will be sent to this user (username or\n"
-#~ " email)"
+#~ "OPTIONS:\n"
#~ msgstr ""
-#~ "Vakio: Tämä on vakio turvallisuustaso, jota suositellaan "
-#~ "tietokoneelle \n"
-#~ " joka yhdistetään Internetiin asiakaskoneena.\n"
-#~ "\n"
-#~ "Korkea: Joitakin turvallisuusrajoituksia on jo käytössä, ja "
-#~ "enemmän \n"
-#~ " automaattisia tarkistuksia suoritetaan joka yö.\n"
+#~ "drakbug versio %s\n"
+#~ "Copyright (C) 2002 MandrakeSoft.\n"
+#~ "Tämä on vapaa ohjelmaa ja saadaan levittää GNU GPL lisenssin\n"
+#~ "ehtojen mukaan.\n"
#~ "\n"
-#~ "Korkeampi: Turvallisuustaso on nyt riittävän korkea jotta "
-#~ "järjestelmän\n"
-#~ " käyttö palvelimena, joka voi palvella useaa käyttäjää, "
-#~ "on \n"
-#~ " järkevää. Jos konettasi käytetään ainoastaan "
-#~ "asiakaskoneena\n"
-#~ " Internetissä suosittelemme matalampaa turvatasoa.\n"
+#~ "käyttö: drakbug [OPTIOT] [OHJELMA_NIMI]\n"
#~ "\n"
-#~ "Vainoharhainen: Tämä on samankaltainen kuin edellinen taso, mutta "
-#~ "järjestelmä\n"
-#~ " on kokonaan suljettu, ja turvallisuusominaisuudet ovat\n"
-#~ " korkeimmillaan.\n"
-#~ "\n"
-#~ "Turvallisuusylläpitäjä:\n"
-#~ " Jos 'Turvavaroitukset' -optio on valittu, nämä "
-#~ "varoitukset\n"
-#~ " lähetetään tälle käyttäjälle (käyttäjänimi tai sähköposti)"
-
-#~ msgid "Expert Area"
-#~ msgstr "Asiantuntijan alue"
-
-#~ msgid "Wizard..."
-#~ msgstr "Velho..."
-
-#~ msgid " / Region"
-#~ msgstr " / alue"
+#~ "OPTIOT:\n"
-#~ msgid "Country"
-#~ msgstr "Maa"
+#~ msgid " --help - print this help message.\n"
+#~ msgstr " --help - tulosta tämä viesti.\n"
-#~ msgid "Previous"
-#~ msgstr "Edellinen"
-
-#~ msgid ""
-#~ "Options Description:\n"
-#~ "\n"
-#~ " In this step Drakbackup allow you to change:\n"
-#~ "\n"
-#~ " - The compression mode:\n"
-#~ " \n"
-#~ " If you check bzip2 compression, you will compress\n"
-#~ " your data better than gzip (about 2-10 %%).\n"
-#~ " This option is not checked by default because\n"
-#~ " this compression mode needs more time (about 1000%% more).\n"
-#~ " \n"
-#~ " - The update mode:\n"
-#~ "\n"
-#~ " This option will update your backup, but this\n"
-#~ " option is not really useful because you need to\n"
-#~ " decompress your backup before you can update it.\n"
-#~ " \n"
-#~ " - the .backupignore mode:\n"
-#~ "\n"
-#~ " Like with cvs, Drakbackup will ignore all references\n"
-#~ " included in .backupignore files in each directories.\n"
-#~ " ex: \n"
-#~ " #> cat .backupignore\n"
-#~ " *.o\n"
-#~ " *~\n"
-#~ " ...\n"
-#~ " \n"
-#~ "\n"
+#~ msgid " --report - program should be one of mandrake tools\n"
#~ msgstr ""
-#~ "Optioiden kuvaus:\n"
-#~ "\n"
-#~ "Tässä vaiheessa Drakbackup sallii sinua muuttaa:\n"
-#~ "\n"
-#~ " - Pakkaustapaa:\n"
-#~ "\n"
-#~ " Jos valitset bzip2-pakkauksen, tietosi pakataan\n"
-#~ " paremmin kuin gzip:illä (noin 2-10%%).\n"
-#~ " Tämä optio ei ole valittu oletuksena, koska se\n"
-#~ " vie enemmän aikaa ( noin 1000%% enemmän).\n"
-#~ "\n"
-#~ " - Päivitys-tila:\n"
-#~ "\n"
-#~ " tämä optio päivittää varmistuksesi, mutta tämä ei\n"
-#~ " oikeastaan ole hyvä vaihtoehto, koska sinun tarvitsee\n"
-#~ " purkaa varmistuksesi ennen kuin voit päivittää sen.\n"
-#~ "\n"
-#~ " - .backupignore (varmista-ohita) tila:\n"
-#~ "\n"
-#~ " Niin kuin cvs, Drakbackup ohittaa kaikki viitteet jotka\n"
-#~ " ovat sisällettynä .backupignore tiedostoissa jokaisessa\n"
-#~ " hakemistossa. Esim.:\n"
-#~ " /*> cat .backupignore*/\n"
-#~ " *.o\n"
-#~ " *~\n"
-#~ " ...\n"
-#~ " \n"
-#~ "\n"
-
-#~ msgid "help"
-#~ msgstr "apua"
-
-#~ msgid "Please check if you are using CDRW media"
-#~ msgstr "Valitse tämä jos käytät CD-RW-mediaa"
-
-#~ msgid "Please check if you are using a DVDRAM device"
-#~ msgstr "Valitse tämä jos käytät DVDRAM laitetta"
+#~ " --report - ohjelma pitäisi olla yksi mandraken työkaluista\n"
-#~ msgid "Please check if you are using a DVDR device"
-#~ msgstr "Valitse tämä jos käytät DVDR laitetta"
-
-#~ msgid "Please check for multisession CD"
-#~ msgstr "Valitse tämä jos haluat multisessio-CD:n"
-
-#~ msgid "We are now going to configure the %s connection."
-#~ msgstr "Asetamme seuraavaksi %s-yhteyden."
+#~ msgid " --incident - program should be one of mandrake tools\n"
+#~ msgstr ""
+#~ " --incident - ohjelma pitäisi olla yksi mandraken työkaluista\n"
-#~ msgid "Name: %s\n"
-#~ msgstr "Nimi: %s\n"
+#~ msgid "usage: drakfloppy\n"
+#~ msgstr "käyttö: drakfloppy\n"
#~ msgid ""
-#~ "Which ISDN configuration do you prefer?\n"
#~ "\n"
-#~ "* The Old configuration uses isdn4net. It contains powerful\n"
-#~ " tools, but is tricky to configure, and not standard.\n"
-#~ "\n"
-#~ "* The New configuration is easier to understand, more\n"
-#~ " standard, but with less tools.\n"
-#~ "\n"
-#~ "We recommand the light configuration.\n"
+#~ "Usage: harddrake [-h|--help] [--test]\n"
#~ msgstr ""
-#~ "Mitä ISDN-asetuksia haluat käyttää?\n"
-#~ "\n"
-#~ "* Vanha asetusjärjestelmä käyttää isdn4net:iä. Se sisältää tehokkaat\n"
-#~ " työkalut, mutta on vaikea asettaa, eikä se ole standardi.\n"
-#~ "\n"
-#~ "* Uusi asetusjärjestelmä on helpompi ymmärtää, enemmän käytössä,\n"
-#~ " mutta se sisältää vähemmän työkaluja.\n"
#~ "\n"
-#~ "Suositus on käyttää uutta ja kevyempää asetusjärjestelmää.\n"
+#~ "Käyttö: harddrake [-h|--help] [--test]\n"
-#~ msgid "New configuration (isdn-light)"
-#~ msgstr "Uusi kokoonpano (isdn-kevyt)"
-
-#~ msgid "Old configuration (isdn4net)"
-#~ msgstr "Vanha kokoonpano (isdn4net)"
-
-#~ msgid ""
-#~ "the WP flag in the CR0 register enforce write proctection at the memory "
-#~ "page level, thus enabling the processor to prevent kernel accesses)"
-#~ msgstr ""
-#~ "WP lipuke rekisterissä CD0 pakottaa kirjoitussuojan muistisivun tasolla, "
-#~ "jolloin sallitaan prosessoria estää ytimen käyttöä"
+#~ msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+#~ msgstr "käyttö: keyboarddrake [--expert] [keyboard]\n"
-#~ msgid "Internet connection & configuration"
-#~ msgstr "Internetyhteyden muodostus ja asetukset"
+#, fuzzy
+#~ msgid "Probing %s class\n"
+#~ msgstr "s"
-#~ msgid "Disconnect"
-#~ msgstr "Katkaise yhteys"
+#~ msgid "detected on interface %s"
+#~ msgstr "löydetty seuraavasta liitännästä: %s"
-#~ msgid "Connect"
-#~ msgstr "Yhdistä"
+#, fuzzy
+#~ msgid "unable to backup lilo message"
+#~ msgstr " "
#~ msgid ""
+#~ "I can keep your current configuration and assume you already set up a "
+#~ "DHCP server; in that case please verify I correctly read the C-Class "
+#~ "Network that you use for your local network; I will not reconfigure it "
+#~ "and I will not touch your DHCP server configuration.\n"
#~ "\n"
-#~ "You can reconfigure your connection."
-#~ msgstr ""
+#~ "Else, I can reconfigure your interface and (re)configure a DHCP server "
+#~ "for you.\n"
#~ "\n"
-#~ "Voit asettaa yhteytesi uudelleen."
-
-#~ msgid ""
-#~ "\n"
-#~ "You can connect to the Internet or reconfigure your connection."
#~ msgstr ""
+#~ "Voin säilyttää nykyiset asetuksesi ja olettaa, että olet jo pystyttänyt "
+#~ "DHCP-palvelimen. Siinä tapauksessa varmista että luen oikein C-luokan "
+#~ "verkon, jota käytät paikallisverkkonasi, sillä en muuta sen asetuksia tai "
+#~ "koske DHCP-palvelimesi asetuksiin.\n"
#~ "\n"
-#~ "Voit joko ottaa yhteyden Internetiin tai asettaa yhteyden uudelleen."
-
-#~ msgid "You are not currently connected to the Internet."
-#~ msgstr "Et ole juuri nyt yhteydessä Internetiin."
-
-#~ msgid ""
-#~ "\n"
-#~ "You can disconnect or reconfigure your connection."
-#~ msgstr ""
+#~ "Muussa tapauksessa voin asettaa liitäntäsi ja asettaa (uudelleen) DHCP-"
+#~ "palvelimen puolestasi.\n"
#~ "\n"
-#~ "Voit joko katkaista yhteyden tai asettaa sen uudelleen."
-
-#~ msgid "You are currently connected to the Internet."
-#~ msgstr "Olet parasta aikaa yhteydessä Internetiin."
-
-#~ msgid "files sending by FTP"
-#~ msgstr "tiedostoja lähetetään FTP:n yli"
-
-#~ msgid "Use incremental backup (do not replace old backups)"
-#~ msgstr ""
-#~ "Käytä kasvavaa varmuuskopiointia (älä korvaa vanhoja varmuuskopioita)"
-
-#~ msgid "Relaunch 'lilo'"
-#~ msgstr "Suorita 'lilo' uudelleen"
-
-#~ msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#~ msgstr "Tee initrd: 'mkinitrd -f /boot/initrd-%s.img %s'."
-
-#~ msgid "Copy %s to %s"
-#~ msgstr "Kopioidaan %s kohteeseen %s"
-
-#~ msgid "Backup %s to %s.old"
-#~ msgstr "Varmista %s kohteeseen %s.old"
-
-#~ msgid "ttf fonts conversion"
-#~ msgstr "ttf kirjasinten muunnos"
-
-#~ msgid "Fonts conversion"
-#~ msgstr "Kirjasinten muuntaminen"
diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po
index 85ee5f5b8..73c7d2e26 100644
--- a/perl-install/share/po/fr.po
+++ b/perl-install/share/po/fr.po
@@ -1,5 +1,3 @@
-# translation of DrakX-fr.po to Français
-# translation of DrakX-fr.po to french
# Translation file of Mandrake graphic install
# Copyright (C) 1999 Mandrakesoft
# David BAUDENS <baudens@mandrakesoft.com>, 1999-2002
@@ -7,10 +5,8 @@
# Pablo Saratxaga <pablo@mandrakesoft.com>, 2001
# KAtiOS <katios@nolabel.net>, 2001
# Guillaume Cottenceau <gc@mandrakesoft.com>, 2001-2002
-# Thierry Vignaud <tvignaud@mandrakesoft.com>, 2001-2003
-# Christophe Combelles <ccomb@free.fr>, 2002,2003
-# Stéphane T <steletch@steletch.org>
-# Adrien REZER <monsieurdidi@free.fr>, 2003
+# Thierry Vignaud <tvignaud@mandrakesoft.com>, 2001-2002
+# Combelles Christophe <ccomb@club-internet.fr>, 2002
#
# Veuillez ne pas mettre à jour ce fichier à moins d'être
# certain tant de vos traductions que de votre grammaire et
@@ -27,11 +23,6 @@
# le point, espace insécables avant les points d'interrogation,
# d'exclamation, les deux-points et le point virgule, espace aussi après
# le point virgule).
-# N'enlevez pas l'espace qui suit un signe de ponctuation en fin de
-# phrase; vous devez respecter la version originale. Dans ce type de
-# cas, il est extrèmement probable que le programme va afficher
-# quelque chose d'autre à la fin. En enlevant l'espace, vous allez
-# accoller deux mots.
#
# ESPACES INSÉCABLES
# Vous devez utiliser un espace insécable (c'est un espace qui ne peut
@@ -52,7 +43,7 @@
# Les guillemets françaises sont « et » et non ". La guillemet ouvrante
# « est suivie d'un espace insécable et la guillemet fermante » est
# précédée du même type d'espace. Pour le tapper, vous pouvez utiliser
-# la combinaison Compose < <, et Compose > > (ou alt-z et alt-x).
+# la combinaison Compose < <, et Compose > >.
#
# Enfin, traduisez INTELLIGEMMENT et non mot à mot. Certaines traductions
# n'ont aucun sens en français.
@@ -60,3320 +51,1874 @@
# Nous vous remercions de votre compréhension.
msgid ""
msgstr ""
-"Project-Id-Version: DrakX-fr\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
-"PO-Revision-Date: 2003-12-05 17:01+0000\n"
-"Last-Translator: Adrien REZER <monsieurdidi@free.fr>\n"
-"Language-Team: Français <fr@li.org>\n"
+"Project-Id-Version: DrakX for MDK 8.1\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"PO-Revision-Date: 2002-09-17 10:31+0200\n"
+"Last-Translator: David Baudens <baudens@mandrakesoft.com>\n"
+"Language-Team: <fr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr "Examen des partitions afin d'identifier les points de montage"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr ""
-"Si oui, vérifie les ajouts/retraits des fichiers qui ont la permission \"suid"
-"\"."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-"%s: %s a besoin du nom de domaine, de l'adresse MAC, de l'IP, de la nbi-"
-"image, 0/1 pour Client Léger, 0/1 pour Config Locale...\n"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr "La configuration a été modifiée. Relancer clusternfs/dhcpd ?"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr "\t\tEfface=%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
-"Les sauvegardes différentielles sauvent seulement les fichiers qui ont été "
-"modifiés ou ceux qui sont nouveaux depuis la sauvegarde de base."
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 ko"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "network printer port"
-msgstr "port de l'imprimante réseau"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 ko"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Please insert floppy disk:"
-msgstr "Veuillez insérer une disquette dans le lecteur"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Mo"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr "DrakTermServ"
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Mo"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Mo"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"La table des partitions contenue sur la sauvegarde\n"
-"n'a pas la même taille que le disque.\n"
-"Désirez-vous tout de même continuer ?"
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Mo"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Which username"
-msgstr "Quel nom d'utilisateur"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Mo"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "Quel type de système souhaitez-vous ajouter ?"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Mo"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Restore partition table"
-msgstr "Charger une table des partitions..."
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Mo ou plus"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure hostname..."
-msgstr "Configuration du nom de machine..."
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "Choisissez un serveur d'affichage (serveur XFree)"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "Sur serveur CUPS « %s »"
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "serveur XFree"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Post-install configuration"
-msgstr "Configuration post-installation"
+#: ../../Xconfig/card.pm_.c:230
+msgid "Multi-head configuration"
+msgstr "Configuration multi-écrans"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-"Le niveau de sécurité courant est %s\n"
-"Sélectionnez les permissions à consulter et/ou éditer"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Utilisez plutôt « %s »"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Type"
-msgstr "Type"
+"Votre système peut utiliser simultanément plusieurs écrans.\n"
+"Que souhaitez-vous faire ?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
msgstr ""
-"\n"
-"Aussi, les imprimantes configurées avec les fichiers PPD fournis par leur "
-"fabriquant ou avec des pilotes CUPS natifs ne peuvent pas être transférées."
+"Veuillez préciser la quantité de mémoire vidéo de votre carte graphique"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "Configuration d'XFree"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr ""
-"Les imprimantes suivantes :\n"
-"\n"
-"%s%s\n"
-"sont connectées directement à votre système."
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Quelle configuration d'XFree désirez-vous utiliser ?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
-msgstr "République Centrafricaine"
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
+msgstr "Configurer les écrans séparément"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "Périphérique passerelle"
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
+msgstr "Répartir l'affichage sur plusieurs écrans (Xinerama)"
-#: ../../standalone/drakfloppy:1
+#: ../../Xconfig/card.pm_.c:389
#, c-format
-msgid "Advanced preferences"
-msgstr "Options avancées"
+msgid "Configure only card \"%s\"%s"
+msgstr "Configurer seulement la carte « %s » %s"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Net Method:"
-msgstr "Méthode NET :"
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../harddrake/data.pm:1
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Ethernetcard"
-msgstr "Carte ethernet"
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s avec accélération 3D matérielle"
-#: ../../security/l10n.pm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-"Si rempli, envoie le rapport par courriel à cette adresse, sinon à root"
-
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Parameters"
-msgstr "Paramètres"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "no"
-msgstr "non"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Auto-detect"
-msgstr "Auto-détecter"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface:"
-msgstr "Interface :"
+"Votre carte vidéo peut utiliser l'accélération 3D matérielle mais\n"
+"uniquement en utilisant XFree %s.\n"
+"Votre carte vidéo est supportée par XFree %s. Ce dernier peut être plus\n"
+"performant en 2D."
-#: ../../steps.pm:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid "Select installation class"
-msgstr "Classe d'installation"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+"Votre carte vidéo peut utiliser l'accélération 3D matérielle avec XFree %s."
-#: ../../network/tools.pm:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Le système ne semble pas connecté à Internet.\n"
-"Essayez de reconfigurer votre connexion."
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s avec support EXPÉRIMENTAL de l'accélération 3D matérielle"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+"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."
msgstr ""
-"Branchez votre imprimante sur un serveur Linux et laissez votre(vos) machine"
-"(s) Windows se connecter en tant que client.\n"
+"Votre carte vidéo peut utiliser l'accélération 3D matérielle mais\n"
+"uniquement en utilisant XFree %s.\n"
+"Attention, veuillez noter que ce support est EXPÉRIMENTAL et peut BLOQUER\n"
+"VOTRE ORDINATEUR.\n"
"\n"
-"Souhaitez-vous vraiment poursuivre le parmétrage de cette imprimante de "
-"cette façon ?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belarus"
-msgstr "Bélarus"
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Erreur d'écriture dans le fichier %s"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result to syslog"
-msgstr "Enregistrer le rapport de vérification via syslog"
+"Votre carte vidéo est supportée par XFree %s. Ce dernier peut être plus\n"
+"performant en 2D."
-#: ../../services.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"Apmd surveille l'état de la batterie d'un portable, et en garde une trace "
-"(via syslog). Il peut être utilisé pour arrêter proprement la machine "
-"lorsque la batterie est très faible et après avoir averti les utilisateurs."
+"Votre carte vidéo peut utiliser l'accélération 3D matérielle en utilisant\n"
+"XFree %s.\n"
+"Veuillez noter que ce support est EXPÉRIMENTAL et qu'il peut BLOQUER VOTRE\n"
+"ORDINATEUR."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tape to backup"
-msgstr "Sauvegarde sur cartouche"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (pilote d'affichage pour l'installation)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
-msgstr "Les paquetages suivants vont être installés"
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "Personnalisée"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS configuration"
-msgstr "Configuration de CUPS"
+#: ../../Xconfig/main.pm_.c:102
+msgid "Graphic Card"
+msgstr "Carte graphique"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total progress"
-msgstr "Avancement total :"
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "Moniteur"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr "Pas assez d'espace libre pour créer de nouvelles partitions"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "Résolution"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "Déplacement"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
+msgstr "Test"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
-"\n"
-"activités de Drakbackup par %s :\n"
-"\n"
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Options"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "yes"
-msgstr "oui"
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "Ok"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr "("
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "Quitter"
-#: ../../network/netconnect.pm:1
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
-"Welcome to The Network Configuration Wizard.\n"
+"Keep the changes?\n"
+"The current configuration is:\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"
+"%s"
msgstr ""
-"Bienvenue dans l'assistant de configuration réseau.\n"
+"Désirez-vous conserver les changements ?\n"
+"La configuration actuelle est :\n"
"\n"
-"Nous sommes sur le point de configurer votre connexion internet et réseau.\n"
-"Si vous ne souhaitez pas utiliser la détection automatique, désélectionnez "
-"la case correspondante.\n"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ")"
+"%s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "Liban"
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "Choisissez un moniteur"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
+msgstr "Plug'n Play"
-#: ../../services.pm:1
-#, c-format
-msgid "Stop"
-msgstr "Arrêter"
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "Générique"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Edit selected host"
-msgstr "Modifier l'hôte sélectionné"
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+msgid "Vendor"
+msgstr "Vendeur"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD device defined!"
-msgstr "Pas de périphérique CD défini !"
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr "Échec de l'interrogation « Plug'n Play ». Veuillez choisir un moniteur"
-#: ../../network/shorewall.pm:1
-#, c-format
+#: ../../Xconfig/monitor.pm_.c:114
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 ""
-"Veuillez entrer le nom de l'interface par laquelle vous etes connecté à "
-"Internet.\n"
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"Exemples:\n"
-"\t\tppp+ pour une connection ADSL ou un modem,\n"
-"\t\teth0 ou eth1 pour connection par cable,\n"
-"\t\tippp+ pour une connection RNIS.\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "\tUtiliser les fichiers .backupignore\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "Bulgare (phonétique)"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP start ip"
-msgstr "L'adresse DHCP de début"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "256 kB"
-msgstr "256 ko"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Don't rewind tape after backup"
-msgstr "Ne pas rembobiner la bande après la sauvegarde"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "Principales options du programme d'amorçage"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
-"[--manual] [--device=dev] [--update-sane=dossier_source_sane] [--update-"
-"usbtable] [--dynamic=dev]"
-
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Tape"
-msgstr "Bande"
+"Les deux paramètres importants sont la fréquence de rafraîchissement\n"
+"verticale (qui détermine la vitesse à laquelle l'écran est rafraîchi)\n"
+"et, surtout, la fréquence de synchronisation horizontale (qui détermine\n"
+"la vitesse à laquelle les lignes sont tracées).\n"
+"\n"
+"Il ne faut SURTOUT PAS choisir un type de moniteur ayant\n"
+"une fréquence de rafraîchissement excédant les capacités de votre\n"
+"moniteur. Vous risqueriez de l'endommager.\n"
+"En cas de doute, choisissez un réglage moins performant mais\n"
+"sans risque pour votre matériel."
-#: ../../lang.pm:1
-#, c-format
-msgid "Malaysia"
-msgstr "Malaisie"
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "Fréquence horizontale"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning network..."
-msgstr "Parcours du réseau..."
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "Fréquence verticale"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
-"Note : la sauvegarde incrémentale n'écrase pas les anciennes sauvegardes."
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 couleurs (8 bits)"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr ""
-"Les modifications ont été appliquées à la configuration, souhaitez-vous "
-"redémarrer le service dm ?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mille couleurs (15 bits)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (French layout)"
-msgstr "Suisse (français)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mille couleurs (16 bits)"
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "« mkraid » a échoué (les « raidtools » sont-ils installés ?)"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 millions de couleurs (24 bits)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "August"
-msgstr "Août"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milliards de couleurs (32 bits)"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "FTP server"
-msgstr "Serveur FTP"
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "Résolutions"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Webcam"
-msgstr "Webcam"
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "Choix de la résolution et du nombre de couleurs"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr "taille du cache (de second niveau) du processeur"
+msgid "Graphics card: %s"
+msgstr "Carte graphique : %s"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Soundcard"
-msgstr "Carte son"
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr "Annuler"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Month"
-msgstr "Mois"
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "Test de la configuration"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search for files to restore"
-msgstr "Chercher les fichiers à restaurer"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "Désirez-vous tester la configuration ?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Luxembourg"
-msgstr "Luxembourg"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Attention : tester cette carte vidéo peut bloquer votre ordinateur"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
-"Pour imprimer un fichier depuis la ligne de commande (une fenêtre de "
-"terminal), utilisez la commande « %s <fichier>».\n"
+msgid "Keyboard layout: %s\n"
+msgstr "Type de clavier : %s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid "Level %s\n"
-msgstr "RAID de niveau %s\n"
+msgid "Mouse type: %s\n"
+msgstr "Type de souris : %s\n"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid "Syriac (phonetic)"
-msgstr "Syriaque (phonétique)"
+msgid "Mouse device: %s\n"
+msgstr "Périphérique : %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid "Iran"
-msgstr "Irak"
+msgid "Monitor: %s\n"
+msgstr "Moniteur : %s\n"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Bus"
-msgstr "Bus"
+msgid "Monitor HorizSync: %s\n"
+msgstr "Fréquence horizontale : %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Iraq"
-msgstr "Irak"
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Fréquence verticale : %s\n"
-#: ../../standalone/drakbug:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid "connecting to %s ..."
-msgstr "Connexion à %s ..."
+msgid "Graphics card: %s\n"
+msgstr "Carte graphique : %s\n"
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
-"Conflit potentiel d'adresses du réseau local trouvé dans la configuration de "
-"%s !\n"
+msgid "Graphics memory: %s kB\n"
+msgstr "Mémoire vidéo : %s ko\n"
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:38
#, c-format
-msgid "Configuring..."
-msgstr "Configuration en cours..."
+msgid "Color depth: %s\n"
+msgstr "Nombre de couleurs : %s\n"
-#: ../../harddrake/v4l.pm:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
-msgstr ""
-"Pour la plupart des cartes TV récentes, le module bttv du noyau GNU/Linux "
-"auto-détecte tout seul les bons paramètres.\n"
-"Si votre carte est mal détectée, vous pouvez donner les types de tuner et de "
-"carte corrects ici. Vous n'avez qu'a sélectionner les paramètres nécessaires "
-"à votre carte TV si nécessaire."
+msgid "Resolution: %s\n"
+msgstr "Résolution : %s\n"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Password (again)"
-msgstr "Mot de passe (vérif)"
+msgid "XFree86 server: %s\n"
+msgstr "Serveur XFree86 : %s\n"
-#: ../../standalone/drakfont:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Search installed fonts"
-msgstr "Chercher les polices installées"
+msgid "XFree86 driver: %s\n"
+msgstr "Pilote XFree86 : %s\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default desktop"
-msgstr "Environnement par défaut"
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "Interface graphique lors du démarrage"
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:62
msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
-"Pour soumettre un rapport de bogue, cliquez sur le bouton Signaler.\n"
-"Cela ouvrira une fenêtre de navigateur sur %s\n"
-"où vous trouverez un formulaire à remplir.\n"
-" L'information affichée ci-dessus sera transférée vers ce serveur."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr "Venezuela"
-
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "IP address"
-msgstr "Adresse IP"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "Choix des tailles"
+"Souhaitez-vous que l'interface graphique soit\n"
+"automatiquement lancée lors du démarrage ?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:73
msgid ""
-"List of data corrupted:\n"
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
"\n"
-msgstr ""
-"Liste des données corrompues :\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"
-
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
-msgstr ""
-"Ne peut être monté qu'explicitement (ie.,\n"
-"l'option -a ne montera pas le système de fichier)."
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
+"Do you have this feature?"
msgstr ""
-"Votre modem n'est pas supporté par le système.\n"
-"Veuillez consulter http://www.linmodems.org"
+"Votre carte graphique semble avoir un connecteur TV-OUT.\n"
+"Elle peut être configurée pour fonctionner avec le « frame-buffer ».\n"
+"\n"
+"Pour cela vous devez connecter votre carte graphique à votre TV avant de "
+"démarrer votre ordinateur.\n"
+"Ensuite choisissez l'option « TVout » dans le menu d'amorçage\n"
+"\n"
+"Avez-vous cette fonction ?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose another partition"
-msgstr "Choisissez une autre partition"
+#: ../../Xconfig/various.pm_.c:85
+msgid "What norm is your TV using?"
+msgstr "Quelle norme utilise votre téléviseur ?"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Current user"
-msgstr "Utilisateur courant"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
+msgstr "Premier secteur de la partition d'amorçage"
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Username"
-msgstr "Nom d'utilisateur"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
+msgstr "Premier secteur du disque (MBR)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
-msgstr "Touche « Windows » gauche"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "Installation de SILO"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "Guyana"
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
+msgstr "Où désirez-vous installer le programme d'amorçage ?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Configuration du serveur dhcpd"
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "Installation de LILO ou Grub"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
-"Utilisé pour des dossiers :\n"
-"un fichier du dossier ne peut être effacé ou renommé que par le "
-"propriétaire du dossier ou du fichier"
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
+msgstr "SILO"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " sur serveur Novell « %s », imprimante « %s »"
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
+msgstr "LILO en mode texte"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Name"
-msgstr "Nom de l'Imprimante"
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
+msgstr "LILO en mode graphique"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
-msgstr "Installation de la clé USB"
+#: ../../any.pm_.c:142
+msgid "Grub"
+msgstr "Grub"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
-msgstr "Retirer un module"
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "Amorcer à partir de DOS/Windows (loadlin)"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Password"
-msgstr "Mot de passe"
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Advanced Configuration"
-msgstr "Configuration manuelle"
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "Principales options du programme d'amorçage"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr "Numérisation avec votre périphérique multifonction HP"
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
+msgstr "Programme d'amorçage à utiliser"
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "Partition racine"
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "Installation du programme d'amorçage"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "Choisissez un RAID existant"
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "Périphérique d'amorçage"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turc (modèle moderne « Q »)"
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "Compact"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo message not found"
-msgstr "Message de LILO non trouvé"
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "compact"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
-"Régénération automatique des fichiers d'en-têtes pour le noyau\n"
-"dans le dossier /boot pour /usr/include/linux/{autoconf,version}.h"
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "Mode vidéo"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
-msgstr "si besoin est"
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
+msgstr "Délai avant l'activation du choix par défaut"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
-msgstr ""
-"Le package ntp doit être installé\n"
-"afin de pouvoir activer NTP"
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
+msgid "Password"
+msgstr "Mot de passe"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Failed..."
-msgstr "Échec de la restauration..."
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "Mot de passe (vérif)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr ""
-"Stocke le mot de passe pour ce système dans la configuration DrakBackup"
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "Protéger par mot de passe les options"
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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 ""
-"Introduction\n"
-"\n"
-"Le système d'exploitation et les divers composants disponibles dans la \n"
-"distribution Mandrake Linux sont ci-après dénommés les « Logiciels ».\n"
-"Les Logiciels comprennent notamment, mais de façon non limitative,\n"
-"l'ensemble des programmes, procédés, règles et documentations \n"
-"relatifs au système d'exploitation et aux divers composants de la \n"
-"distribution Mandrake Linux.\n"
-"\n"
-"\n"
-"1. Licence\n"
-"\n"
-"Veuillez lire attentivement le présent document. Ce document constitue \n"
-"un contrat de licence entre vous (personne physique ou personne morale) et \n"
-"MandrakeSoft S.A. portant sur les Logiciels.\n"
-"Le fait d'installer, de reproduire ou d'utiliser les Logiciels de quelque \n"
-"manière que ce soit indique que vous reconnaissez avoir préalablement eu \n"
-"connaissance et que vous acceptez de vous conformer aux termes et "
-"conditions \n"
-"du présent contrat de licence. En cas de désaccord avec le présent "
-"document \n"
-"vous n'êtes pas autorisé à installer, reproduire et utiliser de quelque \n"
-"manière que ce soit ce produit.\n"
-"Le contrat de licence sera résilié automatiquement et sans préavis dans le \n"
-"cas où vous ne vous conformeriez pas aux dispositions du présent document. \n"
-"En cas de résiliation vous devrez immédiatement détruire tout exemplaire "
-"et \n"
-"toute copie de tous programmes et de toutes documentations qui constituent \n"
-"le système d'exploitation et les divers composants disponibles dans la \n"
-"distribution Mandrake Linux.\n"
-"\n"
-"\n"
-"2. Garantie et limitations de garantie\n"
-"\n"
-"Les Logiciels et la documentation qui les accompagne sont fournis en "
-"l'état \n"
-"et sans aucune garantie. MandrakeSoft S.A. décline toute responsabilité \n"
-"découlant d'un dommage direct, spécial, indirect ou accessoire, de quelque \n"
-"nature que ce soit, en relation avec l'utilisation des Logiciels, "
-"notamment \n"
-"et de façon non limitative, tout dommage entraîné par les pertes de \n"
-"bénéfices, interruptions d'activité, pertes d'informations commerciales ou \n"
-"autres pertes pécuniaires, ainsi que des éventuelles condamnations et \n"
-"indemnités devant être versées par suite d'une décision de justice, et ce \n"
-"même si MandrakeSoft S.A. a été informée de la survenue ou de \n"
-"l'éventualité de tels dommages.\n"
-"\n"
-"AVERTISSEMENT QUANT À LA DÉTENTION OU L'UTILISATION DE LOGICIELS \n"
-"PROHIBÉS DANS CERTAINS PAYS \n"
-"\n"
-"En aucun cas, ni MandrakeSoft S.A. ni ses fournisseurs ne pourront être \n"
-"tenus responsable à raison d'un préjudice spécial, direct, indirect ou \n"
-"accessoire, de quelque nature que ce soit (notamment et de façon non \n"
-"limitative les pertes de bénéfices, interruptions d'activité, pertes \n"
-"d'informations commerciales ou autres pertes pécuniaires, ainsi que \n"
-"des éventuelles condamnations et indemnités devant être versées par suite \n"
-"d'une décision de justice) qui ferait suite à l'utilisation, la détention \n"
-"ou au simple téléchargement depuis l'un des sites de téléchargement de \n"
-"Mandrake Linux de logiciels prohibés par la législation à laquelle vous \n"
-"êtes soumis. Cet avertissement concerne notamment certains logiciels de \n"
-"cryptographie fournis avec les Logiciels.\n"
-"\n"
-"\n"
-"3. Licence GPL et autres licences\n"
-"\n"
-"Les Logiciels sont constitués de modules logiciels créés par diverses \n"
-"personnes (physiques ou morales). Nombre d'entre eux sont distribués sous \n"
-"les termes de la Licence Publique Générale GNU (ci-après dénommée « GPL »)\n"
-"ou d'autres licences similaires. La plupart de ces licences vous "
-"permettent \n"
-"de copier, d'adapter ou de redistribuer les modules logiciels qu'elles \n"
-"régissent. Veuillez lire et agréer les termes et conditions des licences \n"
-"accompagnant chacun d'entre eux avant de les utiliser. Toute question \n"
-"concernant la licence d'un Logiciel est à soumettre à l'auteur (ou à ses\n"
-"représentants) du Logiciel et non à MandrakeSoft. \n"
-"Les programmes conçus par MandrakeSoft sont régis par la licence GPL. \n"
-"La documentation rédigée par MandrakeSoft fait l'objet d'une licence \n"
-"spécifique. Veuillez vous référez à la documentation pour obtenir plus \n"
-"de précisions.\n"
-"\n"
-"\n"
-"4. Propriété intellectuelle\n"
-"\n"
-"Tous les droits, titres et intérêts des différents Logiciels sont la \n"
-"propriété exclusive de leurs auteurs respectifs et sont protégés au titre \n"
-"des droits de propriété intellectuelle et de copyright applicables aux "
-"Logiciels.\n"
-"Les marques « Mandrake » et « Mandrake Linux » ainsi que les \n"
-"logotypes associés sont déposés par MandrakeSoft S.A. \n"
-"\n"
-"\n"
-"5. Dispositions diverses\n"
-"\n"
-"Si une disposition de ce contrat de licence devait être déclarée nulle, \n"
-"illégale ou inapplicable par un tribunal compétent, cette disposition sera \n"
-"exclue du présent contrat. Vous continuerez à être liés aux autres \n"
-"dispositions, qui recevront leurs pleins effets. Le contrat de licence \n"
-"est soumis à la Loi française. Toute contestation relative aux présentes \n"
-"dispositions sera réglée préalablement par voie amiable. A défaut d'accord\n"
-"avec MandrakeSoft S.A., les tribunaux compétents de Paris seront saisis du \n"
-"litige. Pour toute question relative au présent document, veuillez \n"
-"contacter MandrakeSoft S.A.\n"
+#: ../../any.pm_.c:171
+msgid "restrict"
+msgstr "restrict"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Default user"
-msgstr "Utilisateur par défaut"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "Vider le répertoire /tmp à chaque démarrage"
-#: ../../standalone/draksplash:1
+#: ../../any.pm_.c:174
#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
-msgstr ""
-"coordonnées x du coin supérieur gauche\n"
-"de la barre de progression"
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Précisez la taille mémoire si nécessaire (%d Mo trouvés)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Current interface configuration"
-msgstr "Configuration actuelle de l'interface"
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
+msgstr "Autoriser plusieurs profils"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "Indiquez la quantité de mémoire en Mo"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../any.pm_.c:182
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"
+"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-"\n"
-"Si vous possédez une carte ISA, les données du prochain écran devraient\n"
-"être correctes.\n"
-"\n"
-"Si vous possédez une carte PCMCIA, vous avez besoin de connaître\n"
-"les réglages « IRQ » et « IO » de votre carte.\n"
+"L'option ``Restrict command line options'' est inutile sans mot de passe"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do not print any test page"
-msgstr "Ne pas imprimer de page de test"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "Veuillez réessayer"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr "Gurmukhi"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "Les mots de passe ne sont pas identiques"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s est déja utilisé\n"
+#: ../../any.pm_.c:191
+msgid "Init Message"
+msgstr "Message de démarrage"
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
-msgstr "Forcer sans APIC"
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
+msgstr "Délai de l'Open Firmware"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr "Ce mot de passe est trop court (minimum %d caractères)"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
+msgstr "Délai d'amorçage du noyau"
-#: ../../standalone.pm:1
-#, c-format
-msgid "[keyboard]"
-msgstr "[clavier]"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
+msgstr "Autoriser le démarrage sur CD ?"
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "Serveur mandataire FTP"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
+msgstr "Autoriser le démarrage sur l'OF ?"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install List"
-msgstr "Installe la liste"
+#: ../../any.pm_.c:197
+msgid "Default OS?"
+msgstr "Système d'exploitation par défaut ?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:231
msgid ""
-"Change\n"
-"Restore Path"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
+"\n"
+"On which drive are you booting?"
msgstr ""
-"Changer le\n"
-"chemin de sauvegarde"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
-msgstr "N'afficher que les pour les jours sélectionnés"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
-msgstr "\tLimiter l'usage disque à %s Mo\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 ko"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr "(N.B. : les ports parallèles ne peuvent être auto-détectés)"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr "<Ctrl>-N"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Quel type de carte possédez-vous ?"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr "<Ctrl>-O"
-
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Security"
-msgstr "Sécurité"
+"Vous avez décidé d'installer le programme d'amorçage sur une partition.\n"
+"Cela implique que vous ayez déjà un programme d'amorçage sur le disque dur "
+"sur lequel le système démarre (exemple : System Commander).\n"
+"\n"
+"Quel est le disque de démarrage ?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:247
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"
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
-"Vous pouvez également utiliser l'interface graphique « xpdq » pour "
-"positionner des options d'impression et administrer les travaux "
-"d'impression.\n"
-"Si vous utiliser le bureau KDE, vous disposez d'un « bouton panique », une "
-"icône sur le bureau, nommé « STOP Imprimante ! », qui peut suspendre tous "
-"les travaux d'impression. Ceci peut être utile en cas de bourrage papier, "
-"par exemple.\n"
+"Voici les différentes entrées.\n"
+"Vous pouvez en ajouter de nouvelles ou modifier les entrées existantes."
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "<control>Q"
-msgstr "<control>Q"
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "Ajouter"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Impossible de trouver les sauvegardes à restaurer...\n"
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "Terminer"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown"
-msgstr "Inconnu"
+#: ../../any.pm_.c:257
+msgid "Modify"
+msgstr "Modifier l'élément sélectionné"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr "Ce serveur est déjà dans la liste, il ne peut pas être rajouté.\n"
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "Quel type de système souhaitez-vous ajouter ?"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Network Configuration"
-msgstr "Configuration du réseau"
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "Linux"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>S"
-msgstr "<Ctrl>-S"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "Autres systèmes (SunOS, etc.)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Protocole pour le reste du monde \n"
-"Pas de D-Channel (lignes louées)"
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "Autres systèmes (MacOS, etc.)"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - /etc/xinetd.d/tftp :\n"
-" \t\tDrakTermServ peut configurer ces fichiers pour fonctionner en "
-"conjonction avec les images crées par mkinitrd-net,\n"
-" \t\tet les entrées dans /etc/dhcpd.conf pour mettre les images "
-"d'amorçage à disposition des clients légers.\n"
-"\n"
-" \t\tUn fichier de configuration typique ressemble à ceci :\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \t\tIci les différences par rapport à l'installation par défaut sont "
-"le drapeau 'disable' mis à 'no'\n"
-" \t\tet le chemin d'accès à tftpboot mis à \"/var/lib/tftpboot\", où "
-"mkinitrd-net place ses images."
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "Autres systèmes (Windows, etc.)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "L'option %s être un nombre !"
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "Image"
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, c-format
-msgid "Notice"
-msgstr "Mode d'emploi"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "Partition racine"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr ""
-"Vous n'avez pas configuré le serveur d'affichage (XFree86). Êtes-vous sûr de "
-"ce que vous faites ?"
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
+msgstr "options passées au noyau"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
-"La configuration de cette imprimante sera effectuée automatiquement. Si "
-"votre imprimante n'a pas été correctement détectée ou si vous préférez "
-"effectuer une configuration personnalisée, activez « Configuration Manuelle "
-"»."
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Fichier RamDisk"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "What type of partitioning?"
-msgstr "Quel type de partitionnement ?"
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "Lecture/écriture"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-" "
-msgstr ""
-"liste des fichiers envoyée par FTP : %s\n"
-" "
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "Table des partitions"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Interface"
-msgstr "Interface"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "Peu sûr"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Multisession CD"
-msgstr "CD multisessions"
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "Label"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated strings"
-msgstr "chaînes séparées par des virgules"
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "Choix par défaut"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr ""
-"Voici les machines à partir desquelles les scanners locauxseront "
-"disponibles :"
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
+msgstr "Taille du RamDisk"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Messages"
-msgstr "Messages"
+#: ../../any.pm_.c:318
+msgid "NoVideo"
+msgstr "NoVideo"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Inconnu|CPH06X (bt878) [nombreux vendeurs]"
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "Supprimer l'entrée"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "Serveur POP et IMAP"
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "Un label vide n'est pas autorisé"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mexico"
-msgstr "Mexique"
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
+msgstr "Vous devez spécifier l'image noyau désirée"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model stepping"
-msgstr "Numéro de modèle"
+#: ../../any.pm_.c:330
+msgid "You must specify a root partition"
+msgstr "Vous devez spécifier une partition racine"
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
-msgstr "Rwanda"
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "Ce label est déjà utilisé"
-#: ../../lang.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Switzerland"
-msgstr "Suisse"
+msgid "Found %s %s interfaces"
+msgstr "Interface(s) détectée(s) : %s %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr "Sultanat de Brunei"
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "En possédez-vous d'autres ?"
-#: ../../modules/interactive.pm:1
+#: ../../any.pm_.c:642
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Possédez-vous des interfaces %s ?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr ""
-"Vous devez être root afin de pouvoir consulter le fichier de "
-"configuration. \n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr "Configuration d'une imprimante Unix (lpd) distante"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"GNU/Linux est un système multiutilisateurs, ce qui signifie généralement\n"
-"que chaque utilisateur peut avoir des préférences différentes, ses propres\n"
-"fichiers, etc. Pour plus d'informations, consultez le « Guide de\n"
-"démarrage ». Contrairement à « root » qui a tous les droits, les\n"
-"utilisateurs que vous ajouterez ici n'auront que des permissions pour agir\n"
-"sur leurs propres fichiers exclusivement. L'utilisateur/ administrateur\n"
-"devrait également se créer un compte « normal ». C'est à travers cet\n"
-"utilisateur que celui-ci devrait se connecter pour accomplir ses tâches\n"
-"quotidiennes. Car, bien qu'il soit pratique d'avoir tous les accès, cette\n"
-"situation peut également engendrer des situations désastreuses si un\n"
-"fichier est détruit par inadvertance. Un utilisateur normal n'ayant pas\n"
-"accès aux fichiers sensibles, ne peut causer de dommages majeurs.\n"
-"\n"
-"Il faut d'abord entrer le vrai nom de la personne. Évidemment, vous pouvez\n"
-"y inscrire n'importe quoi. DrakX prendra le premier mot inséré et le\n"
-"transposera comme « %s ». C'est le nom qui sera utilisé pour se connecter\n"
-"au système. Vous pouvez le modifier. Il faut maintenant entrer un mot de\n"
-"passe. Celui-ci n'est pas aussi crucial que le mot de passe de « root »,\n"
-"mais ce n'est pas une raison pour rentrer 123456. Après tout, ceci mettrait\n"
-"vos fichiers en péril.\n"
-"\n"
-"Après avoir cliqué sur « %s », il vous sera possible d'ajouter d'autres\n"
-"utilisateurs. Créez un utilisateur différent pour chaque personne devant\n"
-"utiliser votre ordinateur. Une fois chaque utilisateur défini, cliquez sur\n"
-"« %s ».\n"
-"\n"
-"En cliquant sur « %s », vous pourrez sélectionner un « shell » différent\n"
-"pour cet utilisateur (bash est assigné par défaut).\n"
-"\n"
-"Lorsque vous avez fini d'installer tous les utilisateurs, il vous est\n"
-"proposé de choisir un utilisateur qui sera automatiquement connecté lors du\n"
-"démarrage de l'ordinateur. Si cela vous intéresse (et que la sécurité\n"
-"locale n'est pas trop un problème), choisissez l'utilisateur et le\n"
-"gestionnaire de fenêtres, puis cliquez sur « %s ». Si cela ne vous\n"
-"intéresse pas, décochez la case « %s »."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Internet Access..."
-msgstr "Configurer l'accès à Internet..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Veuillez choisir l'intervalle de temps entre les sauvegardes"
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "Non"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Norway"
-msgstr "Norvège"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "Oui"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Delete profile"
-msgstr "Effacer le profil"
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "Voir les informations sur le matériel"
-#: ../../keyboard.pm:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Danish"
-msgstr "Danois"
+msgid "Installing driver for %s card %s"
+msgstr "Installation du pilote pour la carte %s %s"
-#: ../../services.pm:1
+#: ../../any.pm_.c:663
#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
-"Activation de la touche « Verr Num » du pavé numérique du clavier au "
-"démarrage."
+msgid "(module %s)"
+msgstr "(module %s)"
-#: ../../network/network.pm:1
+#: ../../any.pm_.c:674
#, 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)."
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-"Veuillez indiquer la configuration IP de cette machine.\n"
-"Chaque champ doit être rempli avec une adresse IP en notation\n"
-"décimale pointée (par exemple, 12.34.56.78)."
+"Vous pouvez maintenant founir des options au module %s.\n"
+"Veuillez noter que les adresses doivent être précédées de 0x, comme « 0x123 »"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
+#: ../../any.pm_.c:680
#, 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."
-msgstr ""
-"Les paquetages requis à l'installation de Mandrake Linux sont distribués\n"
-"sur plusieurs CDROM. Heureusement, DrakX connaît l'emplacement de chacun\n"
-"des paquetages. Il éjectera celui présent dans le lecteur et vous demandera\n"
-"d'insérer le CDROM approprié, selon le cas."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
+"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 ""
-"Une fois vérifiés, le propriétaire et le groupe ne seront plus modifiés"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "Bulgarie"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
-msgstr "Mardi"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr "Processeurs"
+"Vous pouvez maintenant préciser les options du module %s.\n"
+"Les options sont de la forme « nom=valeur nom2=valeur2 ... ».\n"
+"Par exemple, « io=0x300 irq=7 »"
-#: ../../lang.pm:1
-#, c-format
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "Îles Svalbard et Jan Mayen"
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "Options du module :"
-#: ../../standalone/drakTermServ:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "No NIC selected!"
-msgstr "Aucune interface réseau sélectionnée !"
+msgid "Which %s driver should I try?"
+msgstr "Quel pilote %s faut-il essayer ?"
-#: ../../network/netconnect.pm:1
+#: ../../any.pm_.c:703
#, 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."
-msgstr ""
-"Des problèmes sont apparus pendant la configuration.\n"
-"Testez votre connexion avec le « Centre de Contrôle Mandrake » (dans la "
-"section « réseau ») ou la commande « net_monitor ». Si votre connexion ne "
-"fonctionne pas, vous pouvez essayer de relancer la configuration."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
-msgstr "la partition %s est maintenant connue comme %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Other files..."
-msgstr "Sauvegarde des autres fichiers..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
-msgstr "Congo (Kinshasa)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "Adresse IP du serveur"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
-"La table des partitions de %s va maintenant être écrite sur le disque !"
+"Le pilote de matériel « %s » a parfois besoin d'options supplémentaires\n"
+"pour fonctionner de manière optimale.\n"
+"Vous pouvez lui fournir manuellement ces options,\n"
+"ou bien lui laisser les détecter automatiquement.\n"
+"(La détection peut dans certains cas bloquer l'ordinateur,\n"
+"mais sans lui causer de dommage.)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing HPOJ package..."
-msgstr "Installation du paquetage HPOJ..."
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
+msgstr "Détection automatique"
-#: ../../any.pm:1
-#, 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"
-msgstr ""
-"Une disquette d'amorçage permet de lancer votre système Linux\n"
-"sans utiliser le programme d'amorçage du disque dur.\n"
-"\n"
-"C'est utile si vous ne voulez pas installer LILO sur votre système,\n"
-"si un autre système d'exploitation supprime le programme d'amorçage, ou "
-"encore\n"
-"si ce dernier ne peut être installé sur votre machine.\n"
-"\n"
-"Vous pouvez également utiliser cette disquette avec l'image de secours "
-"Mandrake.\n"
-"Cela permet une récupération plus aisée du système en cas de problèmes "
-"majeurs.\n"
-"\n"
-"Désirez-vous créer une disquette d'amorçage pour votre système ?\n"
-"%s"
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "Spécifier des options"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:719
#, c-format
msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
-"\n"
-" Rapport du service DrakBackup\n"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latvian"
-msgstr "Letton"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
-msgstr "tous les mois"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Retry"
-msgstr "Réessayer"
+"Le chargement du module %s a échoué.\n"
+"Désirez-vous réessayer avec d'autres paramètres ?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr "Nom du module"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
+msgstr "accès aux programmes graphiques"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Start at boot"
-msgstr "Lancer au démarrage"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
+msgstr "accès aux outils rpm"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
-msgstr "Utiliser des sauvegardes incrémentales"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
+msgstr "autoriser « su »"
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
-msgstr "Premier secteur du disque (MBR)"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
+msgstr "accès aux fichiers d'administration"
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "El Salvador"
+#: ../../any.pm_.c:738
+msgid "access to network tools"
+msgstr "accès aux outils réseaux"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
-msgstr "Joystick"
+#: ../../any.pm_.c:739
+msgid "access to compilation tools"
+msgstr "accès aux outils de compilation"
-#: ../../standalone/harddrake2:1
+#: ../../any.pm_.c:744
#, c-format
-msgid "DVD"
-msgstr "DVD"
+msgid "(already added %s)"
+msgstr "Utilisateur(s) existant(s) : %s"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
-msgstr "Utiliser l'Unicode par défaut"
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "Ce mot de passe est trop simple"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "le module du noyau GNU/Linux qui gère ce périphérique"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
+msgstr "Veuillez taper un nom d'utilisateur"
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "Votre horloge système est-elle réglée sur Greenwich (GMT) ?"
+#: ../../any.pm_.c:751
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr ""
+"Le nom d'utilisateur ne peut contenir que des lettres minuscules,\n"
+"des nombres, ainsi que les caractères « - » et « _ »"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Trying to rescue partition table"
-msgstr "Tentative de lecture de l'organisation des partitions..."
+#: ../../any.pm_.c:752
+msgid "The user name is too long"
+msgstr "Ce nom d'utilisateur est trop long"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "L'option %s doit être un nombre entier !"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "Ce nom d'utilisateur est déjà utilisé"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
-msgstr "Utilise un mot de passe pour authentifier les utilisateurs"
+#: ../../any.pm_.c:757
+msgid "Add user"
+msgstr "Ajouter un utilisateur"
-#: ../../interactive/stdio.pm:1
+#: ../../any.pm_.c:758
#, c-format
msgid ""
-"Entries you'll have to fill:\n"
+"Enter a user\n"
"%s"
msgstr ""
-"Les champs que vous devrez remplir sont :\n"
+"Créer un compte utilisateur\n"
"%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-"Pour les sauvegardes vers d'autres supports, les fichiers sont toujours "
-"créés sur le disque dur local, puis sont transférés vers le support de "
-"sauvegarde. Activer cette option permet d'effacer les fichiers temporaires "
-"locaux après la sauvegarde."
-
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Impossible de démarrer la mise à jour !!!\n"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "Nom : "
+#: ../../any.pm_.c:759
+msgid "Accept user"
+msgstr "Accepter"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
-msgstr "activé"
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "Nom et prénom"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 millions de couleurs (24 bits)"
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "Nom d'utilisateur"
-#: ../../any.pm:1
-#, c-format
-msgid "Allow all users"
-msgstr "Autoriser tous les utilisateurs"
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "Interpréteur"
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr "La boutique officielle Mandrake"
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "Icône"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "Redimensionnement"
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "Connexion automatique"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:804
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
-"Entrez la taille maximale\n"
-"autorisée pour Drakbackup (Mo) :"
+"Lors du démarrage, souhaitez-vous que le système connecte\n"
+"automatiquement un utilisateur par défaut ?"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Cable connection"
-msgstr "Connexion par câble"
-
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, c-format
-msgid "User"
-msgstr "Utilisateur"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "Nouvelle sauvegarde avant restauration (seulement pour l'incrémental)"
-
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "« mkraid » a échoué"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Name"
-msgstr "Nom"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr "Émulation du bouton n° 3"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
-msgstr "Vérifier les ajouts/retraits des fichiers sgid"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files..."
-msgstr "Envoi des fichiers..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr "Israélien (phonétique)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
-msgstr "accès aux outils rpm"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Vous devez choisir ou entrer une imprimante ou un périphérique !"
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "Choisissez l'utilisateur par défaut :"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
-msgstr "Vous n'avez pas les droits d'accès au CD."
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
+msgstr "Choisissez l'environnement graphique :"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "Numéro de téléphone"
+#: ../../any.pm_.c:824
+msgid "Please choose a language to use."
+msgstr "Choisissez la langue :"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
+#: ../../any.pm_.c:826
+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 ""
-"Erreur : le pilote « %s » pour votre carte son n'est pas dans la liste."
+"Vous pouvez choisir d'autres langues.\n"
+"Elles seront disponibles après l'installation."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer name, description, location"
-msgstr "Nom, description, emplacement"
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "Tout"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
-msgstr "USA (hertzien)"
+#: ../../any.pm_.c:961
+msgid "Allow all users"
+msgstr "Autoriser tous les utilisateurs"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Use Xinerama extension"
-msgstr "Répartir l'affichage sur plusieurs écrans (Xinerama)"
+#: ../../any.pm_.c:961
+msgid "No sharing"
+msgstr "Pas de partage"
-#: ../../diskdrake/interactive.pm:1
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
#, c-format
-msgid "Loopback"
-msgstr "Bouclage"
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr "Le paquetage %s doit être installé. Souhaitez-vous l'installer ?"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "West Europe"
-msgstr "Europe de l'ouest"
+#: ../../any.pm_.c:973
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
+msgstr ""
+"Souhaitez-vous exporter par NFS (protocole Unix) ou SMB (protocole Windows)?"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
-msgid "On CD-R"
-msgstr "sur CD-Rom"
+msgid "Mandatory package %s is missing"
+msgstr "Le paquetage %s, requis, est manquant"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../any.pm_.c:987
msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
+"Would you like to allow users to share some of their directories?\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror "
+"and nautilus.\n"
"\n"
-"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"
+"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-"[OPTIONS] [NOM_PROGRAMME]\n"
+"Souhaitez-vous permettre aux utilisateurs de partager certains sous-"
+"répertoires de leur répertoire personnel (/home) ?\n"
+"De cette façon, les utilisateurs pouront simplement cliquer sur « Partager » "
+"dans konqueror (kde) et nautilus (gnome).\n"
"\n"
-"OPTIONS:\n"
-" --help - affiche ce message.\n"
-" --report - le programme doit être un outil mandrake\n"
-" --incident - le programme doit être un outil mandrake"
+"« Personnalisée » permet d'autoriser le partage pour certains utilisateurs.\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake2 version %s"
-msgstr "Harddrake2 version %s"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
+msgstr "Lancer Userdrake"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Preferences"
-msgstr "Préférences"
+#: ../../any.pm_.c:1003
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
+msgstr ""
+"Pour autoriser un utilisateur à partager ses répertoires, vous devez ajouter "
+"cet utilisateur dans le groupe « fileshare ».\n"
+"Ceci peut se faire grâce au programme « Userdrake »."
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr "Swaziland"
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
+msgstr "Bienvenue aux pirates"
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr "Dominique"
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Très faible"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
-msgstr "Copie de %s"
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
+msgstr "Standard"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Choose color"
-msgstr "Choisissez une couleur"
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Élevée"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Syriac"
-msgstr "Syriaque"
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+msgid "Higher"
+msgstr "Plus élevée"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
-msgstr "Set-UID"
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "Paranoïaque"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1061
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!"
+"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 ""
-"Choisissez le disque dur à effacer pour installer votre partition\n"
-"GNU/Linux. Soyez prudent, toute l'information stockée sur le disque sera\n"
-"détruite."
-
-#. -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
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Utilisez les touches %c et %c pour faire votre choix."
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Souris standard à 2 boutons"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Permet à « %s » d'exécuter ce fichier"
-
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
-msgstr "Enlevez d'abord les volumes logiques\n"
-
-#. -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
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Demarrage automatique dans %d secondes."
+"Ce niveau de sécurité doit être utilisé avec précaution. Il rend votre\n"
+"système plus facile à utiliser, aux dépens de la sécurité. Il ne devrait\n"
+"donc pas être utilisé sur une machine connectée à un réseau ou à Internet.\n"
+"Aucun mot de passe n'est requis."
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../any.pm_.c:1064
msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
-"Impossible d'écrire dans /etc/sysconfig/bootsplash\n"
-"Fichier non trouvé"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet access"
-msgstr "Accès internet"
+"Les mots de passe sont maintenant requis. Pour autant, il n'est pas\n"
+"recommandé d'utiliser cette machine sur un réseau."
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../any.pm_.c:1065
msgid ""
-"y coordinate of text box\n"
-"in number of characters"
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
-"coordonnées y de la zone de texte\n"
-"en nombre de caractères"
+"Ceci est le niveau de sécurité standard recommandé pour un ordinateur \n"
+"utilisé pour se connecter à Internet en tant que client."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1066
msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
-"Pour obtenir la liste des paramètres disponibles pour l'imprimante courante, "
-"cliquez sur le bouton « liste des options d'impression »."
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr "Activation des serveurs..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
-msgstr "Impression des pages de test..."
+"Il y a déjà des restrictions, et des vérifications automatiques sont "
+"effectuées chaque nuit."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1067
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."
+"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 ""
-"Transfert réussi.\n"
-"Vous pouvez vérifier votre mot de passe sur le serveur avec :\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"sans qu'il ne soit affiché de demande."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Le point de montage %s est déjà utilisé\n"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
-msgstr "Activer/Désactiver les vérifications de msec toutes les heures"
+"Avec ce niveau de sécurité, l'utilisation de cette machine en tant que\n"
+"serveur devient envisageable. La sécurisation est suffisamment forte pour\n"
+"accepter les connexions de nombreux clients. Note : si votre machine est\n"
+"seulement connectée en tant que client sur Internet, vous devriez plutôt\n"
+"choisir un niveau inférieur."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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''."
+#: ../../any.pm_.c:1070
+msgid ""
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-"Cette étape vous permet de déterminer précisément l'emplacement de votre\n"
-"installation de Mandrake Linux. Si votre disque est vide ou utilisé par un\n"
-"autre système d'exploitation, vous devrez repartitionner votre disque.\n"
-"Partitionner un disque signifie de le diviser précisément afin de créer un\n"
-"espace pour votre installation.\n"
-"\n"
-"Comme les effets du partitionnement sont irréversibles (l'ensemble du\n"
-"disque est effacé), le partitionnement est généralement intimidant et\n"
-"stressant pour un utilisateur inexpérimenté. Heureusement, un assistant a\n"
-"été prévu à cet effet. Avant de commencer, révisez vos manuels et surtout,\n"
-"prenez votre temps.\n"
-"\n"
-"Selon la configuration de votre disque, plusieurs options sont disponibles\n"
-":\n"
-"\n"
-" * « %s » : cette option tentera simplement de partitionner automatiquement\n"
-"l'espace inutilisé sur votre disque. Il n'y aura pas d'autre question.\n"
-"\n"
-" * « %s » : l' assistant a détecté une ou plusieurs partitions existants\n"
-"sur votre disque. Si vous voulez les utiliser, choisissez cette option. Il\n"
-"vous sera alors demandé de choisir les points de montage associés à chacune\n"
-"des partitions. Les anciens points de montage sont sélectionnés par défaut,\n"
-"et vous devriez généralement les garder.\n"
-"\n"
-" * « %s » : si Microsoft Windows est installé sur votre disque et en prend\n"
-"toute la place vous devez faire de la place pour votre installation Linux.\n"
-"Pour ce faire, vous pouvez tout effacer (voir « effacer tout le disque »)\n"
-"ou vous pouvez redimensionner la partition FAT Windows. Le\n"
-"redimensionnement peut être effectué sans pertes de données, à condition\n"
-"que vous ayez préalablement défragmenté la partition Windows, et qu'elle\n"
-"utilise le format FAT. Une sauvegarde de vos données ne fera pas de mal non\n"
-"plus. Cette solution est recommandée pour faire cohabiter Linux et Windows\n"
-"sur le même ordinateur.\n"
-"\n"
-" Avant de choisir cette option, il faut comprendre qu'après cette\n"
-"procédure l'espace disponible pour Windows sera réduit. Vous aurez moins\n"
-"d'espace pour installer des logiciels ou sauvegarder de l'information avec\n"
-"Windows.\n"
-"\n"
-" * « %s »: si vous voulez effacer toutes les données et les applications\n"
-"installées sur votre système et les remplacer par votre nouveau système\n"
-"Mandrake Linux, choisissez cette option. Soyez prudent, car ce choix est\n"
-"irréversible et permanent. Il vous sera impossible de retrouver vos données\n"
-"effacées.\n"
-"\n"
-" !! En choisissant cette option, l'ensemble du contenu de votre disque\n"
-"sera détruit. !!\n"
-"\n"
-" * « %s »: ce choix effacera tout simplement ce que contient le disque et\n"
-"recommencera à zéro. Toutes les données et les programmes présents sur le\n"
-"disque seront effacés.\n"
-"\n"
-" !! En choisissant cette option, l'ensemble de votre disque sera effacé\n"
-"!!\n"
-"\n"
-" * « %s » : permet de partitionner manuellement votre disque. Soyez\n"
-"prudent, car bien que plus puissante, cette option est dangereuse. Vous\n"
-"pouvez facilement perdre l'ensemble du contenu d'un disque. Donc, ne\n"
-"choisissez pas cette option si vous ne savez pas exactement ce que vous\n"
-"devez faire. Pour en savoir plus sur DiskDrake, référez vous à « Gérer ses\n"
-"partitions » du « Guide de démarrage »."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
-msgstr "Ukraine"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Application:"
-msgstr "Application :"
+"Ce niveau de sécurité est basé sur le précédent mais le système est "
+"maintenant\n"
+"complètement clos (vu du réseau). La sécurité est maximale."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "External ISDN modem"
-msgstr "Modem RNIS/ISDN externe"
+#: ../../any.pm_.c:1076
+msgid "DrakSec Basic Options"
+msgstr "Options de base de DrakSec"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr "Si oui, envoie un rapport de vérification par courriel"
+#: ../../any.pm_.c:1077
+msgid "Please choose the desired security level"
+msgstr "Choisissez le niveau de sécurité desiré"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Que choisissez-vous ? (%s par défaut) "
+#: ../../any.pm_.c:1080
+msgid "Security level"
+msgstr "Niveau de sécurité"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr "Résolution de problème"
+#: ../../any.pm_.c:1082
+msgid "Use libsafe for servers"
+msgstr "Utilisation de « libsafe » pour les serveurs"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1083
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"
+"A library which defends against buffer overflow and format string attacks."
msgstr ""
-"Les pages de test ont été envoyées à l'imprimante.\n"
-"Il peut se passer un certain temps avant le début effectif de l'impression.\n"
-"Statut de l'impression :\n"
-"%s\n"
-"\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
-msgstr "tous les jours"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "and one unknown printer"
-msgstr "et une imprimante inconnue"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Ireland"
-msgstr "Irlande"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Restore Configuration "
-msgstr " Restauration de la configuration "
+"Une bibliothèque qui protège contre les attaques par débordement de pile.\n"
+"(les plus fréquentes)"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Is this the correct setting?"
-msgstr "La configuration est-elle correcte ?"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
+msgstr "Administrateur sécurité (identifiant (login) ou adresse email)"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1166
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."
+"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 ""
-"Si vous désirez connecter votre système à un réseau ou à Internet, cliquez\n"
-"sur « %s ». L'auto-détection des périphériques réseau et modem sera alors\n"
-"lancée. Si cette détection échoue, décochez la case « %s ». Vous pouvez\n"
-"aussi choisir de ne pas configurer le réseau, ou de le faire plus tard.\n"
-"Dans ce cas, cliquez simplement sur « %s ».\n"
-"\n"
-"Les types de connexion supportées sont : modem téléphonique, modem ISDN,\n"
-"connexion ADSL, modem câble ou simplement LAN (réseau Ethernet).\n"
-"\n"
-"Nous ne détaillerons pas ici chacune des configurations possibles.\n"
-"Assurez-vous seulement que vous avez toutes les informations de votre\n"
-"fournisseur de service Internet à portée de main.\n"
-"\n"
-"Vous pouvez consulter le chapitre du « Guide de démarrage » concernant les\n"
-"connexions à Internet pour plus de détails à propos des configurations\n"
-"spécifiques de chaque type de connexion. Vous pouvez également configurer\n"
-"votre connexion à Internet une fois l'installation terminée."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wizard Configuration"
-msgstr "Configuration par assistant"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Autoprobe"
-msgstr "Détection automatique"
+"Vous pouvez choisir ici la touche ou la combinaison de touches qui\n"
+"permettra de commuter entre les différents types de claviers\n"
+"(ex : latin et non latin)"
-#: ../../security/help.pm:1
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, c-format
msgid ""
-"if set to yes, check for :\n"
-"\n"
-"- empty passwords,\n"
+"Welcome to %s the operating system chooser!\n"
"\n"
-"- no password in /etc/shadow\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
"\n"
-"- for users with the 0 id other than root."
msgstr ""
-"Si oui, vérifie :\n"
-"\n"
-"- les mots de passe vides,\n"
+"Bienvenue dans %s, le chargeur de systemes d'exploitation.\n"
"\n"
-"- les mots de passes absents de /etc/shadow,\n"
+"Choisissez un systeme d'exploitation dans la liste ci-dessus.\n"
+"-- Demarrage automatique dans %d secondes.\n"
"\n"
-"- les utilisateurs autres que root ayant le numéro d'\"id\" égal à 0."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files..."
-msgstr "Sauvegarde des fichiers systèmes..."
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Bienvenue dans GRUB, le chargeur de systemes d'exploitation"
-#: ../../any.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:986
#, c-format
-msgid "Can't use broadcast with no NIS domain"
-msgstr "On ne peut pas utiliser l'option broadcast sans domaine NIS"
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Utilisez les touches %c et %c pour faire votre choix."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Suppression de l'imprimante « %s »..."
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Appuyez sur <Entree> pour demarrer, sur <e> pour modifier la"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell history size"
-msgstr "Taille (en lignes) de l'historique du shell"
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "commande de demarrage ou sur <c> pour utiliser la ligne de commande."
-#: ../../standalone/drakfloppy:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:995
#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Demarrage automatique dans %d secondes."
-#: ../../standalone/drakpxe:1
-#, 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"
-msgstr ""
-"Veuillez indiquer l'emplacement du fichier auto_install.cfg.\n"
-"\n"
-"Laissez le champ vide si vous ne voulez pas configurer de mode "
-"d'installation automatique.\n"
-"\n"
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
+msgstr "il n'y a pas assez de place dans le répertoire /boot"
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on other machines"
-msgstr "Configurées sur d'autres machines"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "Bureau"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
-msgstr "niveau d'information qui peut être obtenu par l'instruction cpuid"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "Menu Démarrer"
-#: ../../lang.pm:1
+#: ../../bootloader.pm_.c:1120
#, c-format
-msgid "Peru"
-msgstr "Pérou"
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr ""
+"Vous ne pouvez pas installer le programme d'amorçage\n"
+"sur une partition %s\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " on device: %s"
-msgstr "sur le périphérique : %s"
+#: ../../bootlook.pm_.c:53
+msgid "Boot Style Configuration"
+msgstr "Configuration du style de démarrage"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "Supprimer Microsoft Windows(TM)"
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
+msgstr "/_Fichier"
-#: ../../services.pm:1
-#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr ""
-"Démarre le serveur de polices de caractères, obligatoire pour le "
-"fonctionnement de l'interface graphique (XFree)"
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
+msgstr "/Fichier/_Quitter"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-"La plupart de ces valeurs ont été extraites\n"
-"de votre système. Vous pouvez les modifier\n"
-"comme vous le souhaitez."
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
+msgstr "<control>Q"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr "Sélectionnez les polices ou dossiers et cliquez sur « Ajouter »"
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
+msgstr "Moniteur nouveau style avec catégorisation"
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "Madagascar"
+#: ../../bootlook.pm_.c:83
+msgid "NewStyle Monitor"
+msgstr "Moniteur nouveau style"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Urpmi"
-msgstr "Urpmi"
+#: ../../bootlook.pm_.c:84
+msgid "Traditional Monitor"
+msgstr "Moniteur traditionnel"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
-msgstr "Cron n'est pas encore disponible en dehors de root."
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
+msgstr "Moniteur traditionnel Gtk+"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "System"
-msgstr "Système"
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
+msgstr "Démarrage entièrement graphique (Aurora)"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Do you want to use this feature?"
-msgstr "Voulez-vous utiliser cette fonctionnalité ?"
+#: ../../bootlook.pm_.c:89
+msgid "Lilo/grub mode"
+msgstr "Menu d'amorçage"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Arabic"
-msgstr "Arabe"
+#: ../../bootlook.pm_.c:89
+msgid "Yaboot mode"
+msgstr "Menu d'amorçage"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:138
+msgid "Install themes"
+msgstr "Installation de thèmes"
+
+#: ../../bootlook.pm_.c:139
msgid ""
-"\n"
-"- Options:\n"
+"Display theme\n"
+"under console"
msgstr ""
-"\n"
-"- Options :\n"
+"Affiche le thème\n"
+"dans la console"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Password required"
-msgstr "Mot de passe nécessaire"
+#: ../../bootlook.pm_.c:140
+msgid "Create new theme"
+msgstr "Créer un nouveau thème"
-#: ../../common.pm:1
+#: ../../bootlook.pm_.c:184
#, c-format
-msgid "%d minutes"
-msgstr "%d minutes"
+msgid "Backup %s to %s.old"
+msgstr "Sauvegarde de %s vers %s.old"
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: ../../bootlook.pm_.c:187
#, c-format
-msgid "Graphics card: %s"
-msgstr "Carte graphique : %s"
+msgid "Copy %s to %s"
+msgstr "Copie de %s vers %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV transfer failed!"
-msgstr "Échec du transfert WebDAV !"
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+msgstr "Erreur"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "Configuration d'XFree"
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
+msgstr "Message de LILO non trouvé"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Choose action"
-msgstr "Choisissez une action"
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr "Impossible d'écrire dans /etc/sysconfig/bootsplash."
-#: ../../lang.pm:1
+#: ../../bootlook.pm_.c:222
#, c-format
-msgid "French Polynesia"
-msgstr "Polynésie Française"
+msgid "Write %s"
+msgstr "Ecriture de %s"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:224
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."
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-"DrakX détecte généralement le nombre de boutons de votre souris. Sinon, il\n"
-"prend pour acquis que vous avez une souris à deux boutons et configurera\n"
-"l'émulation du troisième bouton. De plus, DrakX saura automatiquement si\n"
-"vous avez une souris PS/2, série ou USB.\n"
-"\n"
-"Si vous désirez installer une souris différente, veuillez la sélectionner à\n"
-"partir de la liste qui vous est proposée.\n"
-"\n"
-"Si vous sélectionnez une souris différente de celle choisie par défaut,\n"
-"DrakX vous présentera un écran de test. Utilisez les boutons et la molette\n"
-"pour vous assurer que tout fonctionne correctement. Si votre souris ne\n"
-"fonctionne pas normalement, appuyez sur la barre d'espacement ou la touche\n"
-"[Entrée] pour annuler le test et retourner à la liste de choix de la\n"
-"souris.\n"
-"\n"
-"Les souris à roulette ne sont pas détectées parfois. Vous devrez alors\n"
-"sélectionner manuellement une souris dans la liste. Assurez vous de choisir\n"
-"celle qui correspond à votre modèle et au bon port de connexion. Après\n"
-"avoir pressé le bouton « %s », une image de souris apparaît. Vous devez\n"
-"alors faire tourner la molette afin de l'activer correctement. Testez alors\n"
-"que tous les mouvements et boutons fonctionnent correctement."
+"Impossible d'écrire dans /etc/sysconfig/bootsplash\n"
+"Fichier non trouvé"
-#: ../../services.pm:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Support des imprimantes winprinter OKI 4w et compatibles."
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr "Impossible de lancer mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:238
#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
-msgstr ""
-"Les fichiers listés dans le fichier .backupignore, placé au sommet d'une "
-"hiérarchie de dossiers, ne seront pas sauvegardés."
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgstr "construisez le RAMdisk avec 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+#: ../../bootlook.pm_.c:244
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-"Démarrage ou arrêt du système sonore ALSA (Advanced Linux Sound "
-"Architecture) Il charge le pilote pour votre carte son, et restaure les "
-"réglages du périphérique de mixage."
+"Impossible de relancer LILO !\n"
+"Lancez « lilo » dans une ligne de commande en étant root pour terminer "
+"l'installation du thème de LILO."
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Installation du pilote pour la carte %s %s"
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
+msgstr "Relancez « lilo »"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-"Vous avez transféré votre précédente imprimante par défaut (« %s »). Doit-"
-"elle être également l'imprimante par défaut de votre nouveau système "
-"d'impression %s ?"
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+msgid "Notice"
+msgstr "Mode d'emploi"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Enable Server"
-msgstr "Activer le serveur"
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr "Installation réussie des thèmes pour l'image d'amorçage et pour LILO."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ukrainian"
-msgstr "Ukrainien"
+#: ../../bootlook.pm_.c:251
+msgid "Theme installation failed!"
+msgstr "Echec d'installation du thème"
-#: ../../printer/printerdrake.pm:1
+#: ../../bootlook.pm_.c:259
#, 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."
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"L'accès réseau n'a pas pu être démarré. Veuillez vérifier la configuration "
-"de votre matériel et de votre accès réseau grâce au « Centre de Contrôle "
-"Mandrake » puis essayez à nouveau de configurer l'imprimante distante."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to write the file"
-msgstr "Permet à « %s » de modifier ce fichier"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Insérez la disquette d'amorçage utilisée dans le lecteur %s"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local network(s)"
-msgstr "Réseaux locaux"
+"Le choix du système d'exploitation est actuellement géré par %s.\n"
+"Vous pouvez ici modifier la liste du menu d'amorçage."
-#: ../../help.pm:1
-#, c-format
-msgid "Remove Windows"
-msgstr "Supprimer Windows"
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
+msgstr "Configurer"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
-msgstr ""
-"Votre %s a été configuré.\n"
-"Vous pouvez maintenant scanner des documents en utilisant « XSane » à partir "
-"du menu général Multimédia->Graphisme."
+#: ../../bootlook.pm_.c:268
+msgid "Splash selection"
+msgstr "Sélection de l'image"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Firewire controllers"
-msgstr "Contrôleurs Firewire"
+#: ../../bootlook.pm_.c:271
+msgid "Themes"
+msgstr "Thèmes"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:273
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!"
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
msgstr ""
-"Après avoir configuré les paramètres généraux de LILO ou grub la liste des\n"
-"options de démarrage sera rendue disponible au démarrage.\n"
-"\n"
-"Si d'autres systèmes d'exploitation sont détectés, il seront\n"
-"automatiquement ajoutés au menu démarrage. Vous pouvez ici affiner votre\n"
-"configuration. Cliquez sur « %s » pour créer une nouvelle entrée;\n"
-"Choisissez une entrée, cliquez « %s » pour l'éditer, ou « %s » pour\n"
-"l'enlever. « %s » validera vos changements.\n"
"\n"
-"Il est possible que vous vouliez limiter l'accès à ce système\n"
-"d'exploitation. Il vous suffit de retirer l'entrée dans les options de\n"
-"démarrage et démarrer ce système avec une disquette."
+"Sélectionnez un thème pour LILO\n"
+"et l'image pendant l'amorçage,\n"
+"vous pouvez les choisir \n"
+"séparément"
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
+msgstr "Ecran de LILO"
+
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
+msgstr "Image pendant l'amorçage"
+
+#: ../../bootlook.pm_.c:316
msgid "System mode"
msgstr "Choix pour l'interface utilisateur"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
-msgstr ""
-"Pour pouvoir utiliser une imprimante connectée à un serveur Netware, vous "
-"devez au moins indiquer le nom Netware du serveur (qui peut être différent "
-"du nom d'hôte TCP/IP) et le nom de la file d'impression à laquelle vous "
-"voulez accéder ainsi qu'un nom d'utilisateur et un mot de passe si "
-"nécessaire."
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
+msgstr "Lancer l'interface graphique au démarrage"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Netmask:"
-msgstr "Masque de réseau :"
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
+msgstr "Ne pas connecter automatiquement un utilisateur"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
-msgstr "Le faire plus tard"
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "Connexion automatique (choisir utilisateur et environnement)"
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "options passées au noyau"
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
+msgstr "OK"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
-msgstr ""
-"Rafraîchir la liste des imprimantes (pour afficher toutes les imprimantes "
-"CUPS distantes)"
+#: ../../common.pm_.c:107
+msgid "GB"
+msgstr "Go"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
-"Quand cette option est activée, chaque démarrage de CUPS vérifiera que :\n"
-"\n"
-"- si LPD/LPRng est installé, /etc/printcap ne sera pas écrasé par CUPS\n"
-"\n"
-"- si /etc/cups/cupsd.conf est absent, il sera créé\n"
-"\n"
-"- quand l'information d'imprimante est diffusée, elle ne contient past "
-"\"localhost\" comme nom de serveur.\n"
-"\n"
-"Si cette option vous conduit à des problèmes, désactivez-la, mais faites "
-"alors attention aux points ci-dessus."
+#: ../../common.pm_.c:107
+msgid "KB"
+msgstr "Ko"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
-"L'auto-installation peut être complètement automatique si nécessaire,\n"
-"dans ce cas elle prend le contrôle du disque dur !!\n"
-"(prévu pour l'installation d'une autre machine).\n"
-"\n"
-"Vous pouvez préférer rejouer l'installation.\n"
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "Mo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Imprimante réseau autonome « %s », port %s"
+#: ../../common.pm_.c:115
+msgid "TB"
+msgstr "To"
-#: ../../standalone/drakgw:1
+#: ../../common.pm_.c:123
#, c-format
-msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-"Veuillez choisir quelle carte réseau sera connectée à votre réseau local"
+msgid "%d minutes"
+msgstr "%d minutes"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
-msgstr "OK pour restaurer les autres fichiers."
+#: ../../common.pm_.c:125
+msgid "1 minute"
+msgstr "1 minute"
-#: ../../install_steps_interactive.pm:1
+#: ../../common.pm_.c:127
#, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Veuillez choisir votre type de clavier."
+msgid "%d seconds"
+msgstr "%d secondes"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "Adresse réseau du périphérique d'impression"
+#: ../../common.pm_.c:172
+msgid "Can't make screenshots before partitioning"
+msgstr "Impossible de faire des captures d'écran avant le partitionnement"
-#: ../../standalone/drakbackup:1
+#: ../../common.pm_.c:179
#, c-format
-msgid "Not erasable media!"
-msgstr "Ce n'est pas un support effaçable !"
+msgid "Screenshots will be available after install in %s"
+msgstr "Les captures d'écran seront disponibles après l'installation dans %s"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "Manuelle par terminal"
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+msgid "France"
+msgstr "France"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr "Activer/désactiver la protection contre l'usurpation d'adresse IP"
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
+msgstr "Costa Rica"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Installation du système d'impression sous le niveau de sécurité « %s »"
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+msgid "Belgium"
+msgstr "Belgique"
-#: ../../any.pm:1
-#, c-format
-msgid "The user name is too long"
-msgstr "Ce nom d'utilisateur est trop long"
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
+msgstr "République Tchèque"
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "Autres systèmes (Windows, etc.)"
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+msgid "Germany"
+msgstr "Allemagne"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr "Le site distant WebDAV est déjà synchronisé !"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+msgid "Greece"
+msgstr "Grèce"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
-msgstr "Lecture de la base de données des imprimantes..."
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+msgid "Norway"
+msgstr "Norvège"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Generate auto install floppy"
-msgstr "Créer une disquette d'auto-installation"
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+msgid "Sweden"
+msgstr "Suède"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-msgstr ""
-"\t\t nom de connexion : %s\n"
-"\t\t dans le dossier : %s \n"
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
+msgstr "Pays-Bas"
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
-msgstr "Somalie"
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+msgid "Italy"
+msgstr "Italie"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
-msgstr "Pas de pilote open-source"
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+msgid "Austria"
+msgstr "Autriche"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
-msgstr "Def."
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
+msgstr "États-Unis"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../diskdrake/dav.pm_.c:19
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"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 ""
-"Ce niveau de sécurité est basé sur le précédent mais le système est "
-"maintenant\n"
-"complètement clos (vu du réseau). La sécurité est maximale."
+"WebDAV est un protocole qui vous permet de monter localement un répertoire\n"
+"de serveur web, et de le traiter comme un système de fichiers local (à "
+"condition\n"
+"que le serveur web soit configuré en serveur WebDAV). Si vous voulez "
+"ajouter\n"
+"des points de montage WebDAV choisissez « Nouveau »."
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "Nicaragua"
+#: ../../diskdrake/dav.pm_.c:27
+msgid "New"
+msgstr "Nouveau"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
-msgstr "Nouvelle-Calédonie"
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
+msgstr "Démonter"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Protocole pour l'Europe (EDSS1)"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
+msgstr "Monter"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Delete"
-msgstr "/_Effacer"
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
+msgstr "Serveur"
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "Mode vidéo"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Point de montage"
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
-msgstr "Oman"
+#: ../../diskdrake/dav.pm_.c:85
+msgid "Please enter the WebDAV server URL"
+msgstr "Entrez l'adresse du serveur WebDAV"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Please enter your email address below "
-msgstr "Veuillez entrer votre adresse courriel ci -dessous"
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
+msgstr "L'URL doit commencer par http:// ou https://"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Network Monitoring"
-msgstr "Surveillance du réseau"
+#: ../../diskdrake/dav.pm_.c:109
+msgid "Server: "
+msgstr "Serveur: "
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "SunOS"
-msgstr "SunOS"
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
+msgstr "Point de montage : "
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "New size in MB: "
-msgstr "Nouvelle taille en Mo : "
+msgid "Options: %s"
+msgstr "Options : %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Table des partitions de type : %s\n"
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
+msgstr ""
+"Avant d'utiliser un logiciel de partitionnement de disques,\n"
+"il est prudent de faire une copie de sauvegarde de vos données !!"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication Windows Domain"
-msgstr "Authentification au Domaine Windows"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "MISE EN GARDE"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard"
-msgstr "Américain (États-Unis)"
+#: ../../diskdrake/hd_gtk.pm_.c:100
+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 ""
+"Si vous voulez utiliser « aboot », vous devez réserver\n"
+"un espace libre (d'au moins 2048 secteurs) au début du disque."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr "Émulation des boutons"
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "Assistant"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ", imprimante réseau « %s », port « %s »"
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
+msgstr "Choisissez une action"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
-"\n"
-"activités de Drakbackup par cartouche :\n"
-"\n"
+"Votre disque possède une seule grande partition, qui est de type FAT\n"
+"(généralement utilisé par Microsoft DOS ou Windows).\n"
+"Vous devriez la réduire pour pouvoir créer d'autres partitions :\n"
+"cliquez sur la partition puis sur « Redimensionner »."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
-"\n"
-"Problème de connexion FTP : impossible d'envoyer vos fichiers de sauvegarde "
-"par FTP.\n"
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "Veuillez cliquer sur une partition"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Sending Speed:"
-msgstr "Vitesse d'émission :"
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "Détails"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"The classic bug sound tester is to run the following commands:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
-"currently uses\n"
-"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services're configured to be run on\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Pour résoudre un problème de son,\n"
-"vous pouvez hurler les commandes suivantes dans une console :\n"
-"\n"
-"- « lspcidrake -v | fgrep AUDIO » vous indique quel pilote votre carte\n"
-" utilise par défaut\n"
-"\n"
-"- « grep sound-slot /etc/modules.conf » vous affiche quel pilote\n"
-"(module) est actuellement utilisé.\n"
-"\n"
-"- « /sbin/lsmod » vous permet de vérifier si ce module est chargé\n"
-"\n"
-"- « /sbin/chkconfig --list sound » et « /sbin/chkconfig --list alsa »\n"
-"vous diront si les services « sound » et « alsa » sont configurés pour\n"
-"être démarrés dès le niveau d'exécution 3 (init runlevel 3)\n"
-"\n"
-"- « aumix -q » vous chuchotera peut-être que le volume est coupé...\n"
-"\n"
-"- « /sbin/fuser -v /dev/dsp » dénoncera quel programme est en train\n"
-"d'utiliser ou de bloquer la carte son.\n"
+#: ../../diskdrake/hd_gtk.pm_.c:254
+msgid "No hard drives found"
+msgstr "Aucun disque dur trouvé"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
-msgstr "Bogue de l'instruction halt"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert configuration"
-msgstr "Configuration des alertes par courrier"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "FAT"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
-msgstr "Tokelau"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Matching"
-msgstr "Contenant"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Journalised FS"
+msgstr "SF journalisé"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bosnian"
-msgstr "Bosniaque"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Release: "
-msgstr "Version : "
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "Swap"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection speed"
-msgstr "Vitesse de connexion"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "Vide"
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
-msgstr "Namibie"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "Autre"
-#: ../../services.pm:1
-#, c-format
-msgid "Database Server"
-msgstr "Serveur de base de données"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "Types des systèmes de fichiers :"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
-"caractéristiques spéciales du lecteur (capable de graver des médias ou de "
-"lire des DVD)"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "Créer"
-#: ../../raid.pm:1
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr ""
-"Impossible d'ajouter une partition au RAID md%d car\n"
-"celui-ci est déjà formaté"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "Type"
-#: ../../standalone/drakclock:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid "Network Time Protocol"
-msgstr "Protocole du Temps Réseau (NTP)"
+msgid "Use ``%s'' instead"
+msgstr "Utilisez plutôt « %s »"
+
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "Supprimer"
+
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
+msgstr "Cliquez d'abord sur « Démonter »"
-#: ../../Xconfig/card.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, 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."
+"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-"Votre carte vidéo peut utiliser l'accélération 3D matérielle mais\n"
-"uniquement en utilisant XFree %s.\n"
-"Attention, veuillez noter que ce support est EXPÉRIMENTAL et peut BLOQUER\n"
-"VOTRE ORDINATEUR.\n"
-"\n"
-"Votre carte vidéo est supportée par XFree %s. Ce dernier peut être plus\n"
-"performant en 2D."
+"Après avoir modifié le type de la partition %s, toutes les données\n"
+"présentes sur cette partition seront perdues."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security options..."
-msgstr "Veuillez patienter, configuration des options de sécurité..."
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose a partition"
+msgstr "Choisissez une partition"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "Inconnu|CPH05X (bt878) [nombreux vendeurs]"
+#: ../../diskdrake/interactive.pm_.c:177
+msgid "Choose another partition"
+msgstr "Choisissez une autre partition"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
-msgstr "Lancer l'interface graphique au démarrage"
+#: ../../diskdrake/interactive.pm_.c:202
+msgid "Exit"
+msgstr "Quitter"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr "toutes les heures"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
+msgstr "Passer en mode expert"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
-msgstr "Touche Majuscule droite"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
+msgstr "Passer en mode normal"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
-" correctement restaurées en prenant « %s » comme dossier racine "
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "État précédent"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
-msgstr "Mise à disposition du port d'imprimante à CUPS..."
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "Désirez-vous tout de même continuer ?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr "Antigua-et-Barbuda"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "Quitter sans sauvegarder"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-"!!! Ceci indique que le mot de passe connu par le système est différent de "
-"celui\n"
-"connu par le Terminal Server. Effacez et ajoutez à nouveau l'utilisateur\n"
-"au Terminal Server pour permettre la connexion."
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "Désirez-vous réellement quitter sans écrire la table des partitions ?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Spanish"
-msgstr "Espagnol"
+#: ../../diskdrake/interactive.pm_.c:257
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "Désirez-vous sauvegarder les modifications de /etc/fstab"
-#: ../../services.pm:1
-#, c-format
-msgid "Start"
-msgstr "Démarrer"
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "Supprimer toutes les partitions"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
-msgstr "Login root direct"
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
+msgstr "Partitionnement automatique"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring applications..."
-msgstr "Configuration des applications..."
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+msgid "More"
+msgstr "Davantage"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"Bienvenue dans l'assistant de configuration d'imprimante\n"
-"\n"
-"Cet assistant vous aidera à installer les imprimantes connectées soit à cet "
-"ordinateur, soit directement au réseau, soit sur un ordinateur distant sous "
-"Windows.\n"
-"\n"
-"Si vous avez des imprimantes branchées sur cet ordinateur, veuillez les "
-"allumer afin qu'elles soient détectées automatiquement. Les imprimantes "
-"réseau et les imprimantes sous Windows doivent aussi être allumées et "
-"reliées.\n"
-"\n"
-"Notez que l'autodétection des imprimantes réseau ou Windows est plus longue "
-"que celle des imprimantes locales, donc vous pouvez la désactiver si vous "
-"n'en avez pas besoin.\n"
-"\n"
-"Cliquez sur « Suivant » quand vous êtes prêt, ou sur « Annuler » si vous ne "
-"voulez pas configurer d'imprimante(s) maintenant."
+#: ../../diskdrake/interactive.pm_.c:278
+msgid "Hard drive information"
+msgstr "Informations sur les disques durs"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Normal modem connection"
-msgstr "Connexion par modem"
+#: ../../diskdrake/interactive.pm_.c:310
+msgid "All primary partitions are used"
+msgstr "Toutes les partitions primaires sont utilisées"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "File Selection"
-msgstr "Sélection de fichiers ou dossiers"
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "Impossible d'ajouter une partition"
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr "CUPS"
+#: ../../diskdrake/interactive.pm_.c:312
+msgid ""
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
+msgstr ""
+"Pour pouvoir utiliser plus de partitions, vous devez d'abord en supprimer "
+"une pour la remplacer par une partition étendue."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase tape before backup"
-msgstr "Effacer la cartouche avant la sauvegarde"
+#: ../../diskdrake/interactive.pm_.c:322
+msgid "Save partition table"
+msgstr "Sauvegarder la table des partitions..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
-msgstr "Lancer l'outil de configuration"
+#: ../../diskdrake/interactive.pm_.c:323
+msgid "Restore partition table"
+msgstr "Charger une table des partitions..."
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "Installation du programme d'amorçage"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
+msgstr "Deviner automatiquement la table des partitions"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Taille de la partition racine en Mo : "
+#: ../../diskdrake/interactive.pm_.c:326
+msgid "Reload partition table"
+msgstr "Relire la table des partitions"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Ce paquetage est nécessaire, vous ne pouvez pas le désélectionner"
+#: ../../diskdrake/interactive.pm_.c:331
+msgid "Removable media automounting"
+msgstr "Auto-montage des périphériques amovibles"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "Sélectionnez un fichier"
+
+#: ../../diskdrake/interactive.pm_.c:347
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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
-" - Créer des disquettes ou CD etherboot :\n"
-" \t\tLes clients légers ont besoin d'une image d'amorçage placée sur "
-"la mémoire morte (ROM) de la carte réseau,\n"
-" \t\tou bien d'un CD ou d'une disquette pour initier la séquence "
-"d'amorçage. drakTermServ permet de générer ces images,\n"
-" \t\tbasées sur les cartes réseau des machines clientes.\n"
-" \t\t\n"
-" \t\tUn exemple simple de création manuelle de disquette d'amorçage "
-"pour une carte 3Com 3c509 consiste à taper :\n"
-" \t\t\n"
-" \tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+"The backup partition table has not the same size\n"
+"Still continue?"
+msgstr ""
+"La table des partitions contenue sur la sauvegarde\n"
+"n'a pas la même taille que le disque.\n"
+"Désirez-vous tout de même continuer ?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr "L'image ISO etherboot est %s"
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "Attention"
-#: ../../services.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:362
msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
-"Named (BIND) est un Serveur de Noms de Domaine (DNS) qui est utilisé pour "
-"convertir les adresses internet en adresses IP. (Il est principalement mis "
-"en place par les fournisseur d'accès)"
+"Insérez une disquette dans le lecteur.\n"
+"Toutes les données présentes sur cette disquette seront perdues."
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr "Sainte-Lucie"
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
+msgstr "Tentative de lecture de l'organisation des partitions..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "Novembre"
+#: ../../diskdrake/interactive.pm_.c:379
+msgid "Detailed information"
+msgstr "Informations détaillées"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
-msgstr "Se déconnecter..."
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "Redimensionner"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Report"
-msgstr "Signaler"
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "Déplacer"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr "Palaos (Les)"
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "Formater"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "Niveau de RAID"
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "Ajouter au RAID"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr ""
-"Tous les incidents sont suivis par un interlocuteur unique et qualifié."
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "Ajouter au LVM"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "Sélection des groupes de paquetages"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "Supprimer du RAID"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr ""
-"Permettre une configuration\n"
-"matérielle locale."
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "Supprimer du LVM"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr "Restaurer via le Protocole Réseau : %s"
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "Modifier le RAID"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "You can configure each parameter of the module here."
-msgstr "Vous pouvez configurer ici chaque paramètre du module."
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
+msgstr "Utiliser pour loopback"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Choix de la résolution et du nombre de couleurs"
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "Créer une nouvelle partition"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
-msgstr "Émuler le troisième bouton ?"
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "Secteur de début : "
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "Taille en Mo : "
+
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "Type du système de fichiers : "
+
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Préférence : "
+
+#: ../../diskdrake/interactive.pm_.c:481
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
@@ -3383,1942 +1928,1724 @@ msgstr ""
"(vous avez atteint le nombre maximum de partitions primaires).\n"
"Retirez d'abord une partition primaire et créez une partition étendue."
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr "Monter"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Creating auto install floppy"
-msgstr "Création de la disquette d'auto-installation"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Install updates"
-msgstr "Installer les mises à jour"
+#: ../../diskdrake/interactive.pm_.c:511
+msgid "Remove the loopback file?"
+msgstr "Supprimer le fichier loopback ?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
-msgstr "hauteur de la zone de texte"
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "Changement du type de partition"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "State"
-msgstr "État"
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+msgid "Which filesystem do you want?"
+msgstr "Quel système de fichiers désirez-vous utiliser ?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Assurez-vous qu'un médium est présent dans le périphérique %s"
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
+msgstr "Passage de ext2 à ext3"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "Enable multiple profiles"
-msgstr "Autoriser plusieurs profils"
+msgid "Where do you want to mount loopback file %s?"
+msgstr "Où désirez-vous monter le fichier loopback %s ?"
-#: ../../fs.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr ""
-"Ignorer les fichiers spéciaux de type caractère ou bloc sur le système de "
-"fichier."
+msgid "Where do you want to mount device %s?"
+msgstr "Où désirez-vous monter la partition %s ?"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
-"Ces options peuvent sauvegarder et restaurer\n"
-"tous les fichiers du dossier de configuration système « /etc »\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Local printer"
-msgstr "Imprimante locale"
+"Il est impossible de désélectionner ce point de montage car il est\n"
+"utilisé pour le loopback. Veuillez supprimer ce dernier d'abord."
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm_.c:606
#, c-format
-msgid "Files Restored..."
-msgstr "Fichiers restaurés..."
+msgid "Where do you want to mount %s?"
+msgstr "Où désirez-vous monter %s ?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
-msgstr "Sélection des paquetages"
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "Calcul des limites du système de fichiers FAT ..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritania"
-msgstr "Mauritanie"
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "Redimensionnement"
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
-"Je peux conserver votre configuration actuelle, et supposer que vous avez "
-"déjà configuré un serveur DHCP ; dans ce cas veuillez vérifier que j'ai "
-"correctement lu l'adresse du réseau de Classe C que vous utilisez pour votre "
-"réseau local ; je ne le reconfigurerai pas et je ne toucherai pas à la "
-"configuration de votre serveur DHCP.\n"
-"\n"
-"L'entrée DNS par défaut est le serveur cache de nom configuré pour le pare-"
-"feu. Vous pouvez par exemple la remplacer par l'adresse IP du serveur DNS de "
-"votre fournisseur d'accès.\n"
-"\t\t \n"
-"Sinon, je peux reconfigurer votre interface et (re)configurer un serveur "
-"DHCP à votre place.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:662
+msgid "This partition is not resizeable"
+msgstr "Cette partition ne peut pas être redimensionnée"
-#: ../../printer/printerdrake.pm:1
-#, 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, ...)."
+#: ../../diskdrake/interactive.pm_.c:667
+msgid "All data on this partition should be backed-up"
msgstr ""
-"Aucune imprimante locale n'a pu être trouvée !\n"
-"Pour en installer une manuellement entrez un nom de périphérique ou de "
-"fichier sur la ligne d'entrée (Ports parallèles : /dev/lp0, /dev/lp1, ..., "
-"équivalents à LPT1:, LPT2:, ..., première imprimante USB : /dev/usb/lp0, "
-"deuxième imprimante USB : /dev/usb/lp1, ...) "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All primary partitions are used"
-msgstr "Toutes les partitions primaires sont utilisées"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "Serveur d'impression LPD « %s », imprimante « %s »"
+"Toutes les données présentes sur cette partition\n"
+"devraient avoir été sauvegardées."
-#: ../../network/netconnect.pm:1
+#: ../../diskdrake/interactive.pm_.c:669
#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
+msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-"Une fois terminé, il est recommandé de redémarrer votre interface graphique, "
-"afin d'éviter les problèmes liés au changement de nom d'hôte de la machine."
+"Après avoir redimensionné la partition %s, toutes les données présentes\n"
+"sur cette partition seront perdues"
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Détection automatique et configuration du matériel au démarrage."
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "Choisissez la nouvelle taille"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation Server Configuration"
-msgstr "Configuration du serveur d'installation"
+#: ../../diskdrake/interactive.pm_.c:675
+msgid "New size in MB: "
+msgstr "Nouvelle taille en Mo : "
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "Configuration IDE"
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "Sur quel disque souhaitez-vous la déplacer ?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Network functionality not configured"
-msgstr "Les fonctions du réseau ne sont pas configurées"
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "Secteur"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Configure module"
-msgstr "Configuration du module"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "Sur quel secteur souhaitez-vous la déplacer ?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
-msgstr "Îles Cocos"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "Déplacement"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr ""
-"Vous devez redémarrer pour que les modifications soient prises en compte"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "Déplacement de la partition..."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
-msgstr "Numéro de téléphone pour l'accès"
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr "Choisissez un RAID existant"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Host %s"
-msgstr "Hôte %s"
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "Nouveau"
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
-msgstr "Fidji"
+#: ../../diskdrake/interactive.pm_.c:766
+msgid "Choose an existing LVM to add to"
+msgstr "Choisissez un LVM existant"
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
-msgstr "Arménie"
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
+msgstr "Nom LVM ?"
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "Second lecteur de disquette"
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
+msgstr "Cette partition ne peut pas être utilisée pour du loopback"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
-msgstr "A propos de Harddrake"
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
+msgstr "Loopback"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
-msgstr "Autoriser les connections X Window via TCP"
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
+msgstr "Nom du fichier loopback :"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr "Spécificités du lecteur"
+#: ../../diskdrake/interactive.pm_.c:831
+msgid "Give a file name"
+msgstr "Donnez un nom de fichier"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
msgstr ""
-"Insérez une disquette dans le lecteur.\n"
-"Toutes les données présentes sur cette disquette seront perdues."
+"Ce fichier est déjà utilisé par un autre loopback.\n"
+"Veuillez en choisir un autre."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "Taille : %s"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
+msgstr "Le fichier existe déjà. Faut-il l'utiliser ?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr "Touches <Ctrl> et <Maj> simultanément"
+#: ../../diskdrake/interactive.pm_.c:858
+msgid "Mount options"
+msgstr "Options de montage"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "secondary"
-msgstr "esclave"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
+msgstr "Divers"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Backup Configuration."
-msgstr "Voir la configuration de sauvegarde"
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "périphérique"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr "Si oui, envoie le rapport de vérification vers syslog."
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "Niveau de RAID"
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "Aucun"
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "Taille de bloc"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nigeria"
-msgstr "Nigeria"
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
+msgstr "Soyez prudent : cette opération est dangereuse."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr "%s: %s nécessite un nom d'hôte...\n"
+#: ../../diskdrake/interactive.pm_.c:962
+msgid "What type of partitioning?"
+msgstr "Quel type de partitionnement ?"
-#: ../../install_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:978
#, c-format
-msgid "There is no existing partition to use"
-msgstr "Pas de partition existante à utiliser"
+msgid "The package %s is needed. Install it?"
+msgstr "Le paquetage %s est requis. Souhaitez-vous l'installer ?"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:992
msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
-"Les scanners suivants :\n"
-"\n"
-"%s\n"
-"sont disponibles sur votre système.\n"
+"Le programme d'amorçage LILO ne peut pas fonctionner si vous placez\n"
+"la partition du répertoire /boot aussi loin sur le disque (c'est-à-dire\n"
+"au delà du 1024ème cylindre). Si vous n'utilisez pas LILO, vous n'avez\n"
+"pas besoin de partition spécifique pour le répertoire /boot."
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Périphérique multifonction sur le port parallèle %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:996
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."
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-"Pour imprimer sur une imprimante TCP ou socket, vous devez indiquer le nom "
-"d'hôte de l'imprimante et, optionellement, le numéro du port. Pour les "
-"serveurs d'impression « HP JetDirect », le numéro du port est habituellement "
-"9100, mais cela peut être différent pour d'autres serveurs. Veuillez "
-"consulter le manuel de votre imprimante."
+"Attention, votre partition racine se situe au delà du 1024ème cylindre.\n"
+"Si vous comptez utiliser le programme d'amorçage LILO, vous devez créer\n"
+"une autre partition juste pour le répertoire /boot en deçà du 1024ème "
+"cylindre."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Hard drive information"
-msgstr "Informations sur les disques durs"
+#: ../../diskdrake/interactive.pm_.c:1002
+msgid ""
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
+msgstr ""
+"Attention, vous avez choisi une partition RAID logiciel comme partition\n"
+"racine. Pour que votre système puisse démarrer, vous devez ajouter\n"
+"une partition non RAID, spécifique pour le répertoire /boot."
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid "Russian"
-msgstr "Russe"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr ""
+"La table des partitions de %s va maintenant être écrite sur le disque !"
-#: ../../lang.pm:1
-#, c-format
-msgid "Jordan"
-msgstr "Jordanie"
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
+msgstr ""
+"Vous devez redémarrer pour que les modifications soient prises en compte"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1037
#, c-format
-msgid "Hide files"
-msgstr "Cacher les fichiers"
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr ""
+"Après avoir formaté la partition %s, toutes les données présentes\n"
+"sur cette partition seront perdues."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Détecter automatiquement les imprimantes connectées sur cette machine"
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "Formatage"
-#: ../../any.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "Désolé, aucun lecteur de disquette ne semble disponible"
+msgid "Formatting loopback file %s"
+msgstr "Formatage du fichier loopback %s"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "Bolivia"
-msgstr "Bolivie"
+msgid "Formatting partition %s"
+msgstr "Formatage de la partition %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
-msgstr ""
-"Paramétrez votre serveur Windows afin que l'imprimante soit disponible sous "
-"le protocole IPP et réglez l'impression à partir de cette machine-ci avec le "
-"type de connexion « %s » dans Printerdrake.\n"
-"\n"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Hide files"
+msgstr "Cacher les fichiers"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "Mauvais paquetage"
+#: ../../diskdrake/interactive.pm_.c:1052
+msgid "Move files to the new partition"
+msgstr "Déplacer les fichiers sur la nouvelle partition"
-#: ../advertising/07-server.pl:1
+#: ../../diskdrake/interactive.pm_.c:1053
#, 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!"
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-"Transformez votre ordinateur en un puissant serveur Linux. Les serveurs Web, "
-"de courrier, pare-feu, routeur, de fichiers et d'impression (etc.) ne sont "
-"qu'à quelques clics."
+"Le répertoire %s contient déjà des données\n"
+"(%s)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "DrakSec Basic Options"
-msgstr "Options de base de DrakSec"
+#: ../../diskdrake/interactive.pm_.c:1064
+msgid "Moving files to the new partition"
+msgstr "Déplacement des fichiers sur la nouvelle partition..."
-#: ../../standalone/draksound:1
+#: ../../diskdrake/interactive.pm_.c:1068
#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"Note : si vous avez une carte ISA PnP, vous devrez utiliser le programme "
-"sndconfig.\n"
-"Vous n'avez qu'à taper « sndconfig » dans une console."
+msgid "Copying %s"
+msgstr "Copie de %s"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1072
#, c-format
-msgid "Romania"
-msgstr "Roumanie"
+msgid "Removing %s"
+msgstr "Suppression de %s"
-#: ../../standalone/drakperm:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid "Group"
-msgstr "Groupe"
+msgid "partition %s is now known as %s"
+msgstr "la partition %s est maintenant connue comme %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Canada"
-msgstr "Canada"
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "Périphérique : "
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "choose device"
-msgstr "choisissez le périphérique"
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "Lettre de lecteur DOS supposée : %s:\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from LVM"
-msgstr "Supprimer du LVM"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "Type : "
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Timezone"
-msgstr "Fuseau horaire"
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "Nom : "
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "German"
-msgstr "Allemand"
+msgid "Start: sector %s\n"
+msgstr "Début : secteur %s\n"
-#: ../../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
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "Next ->"
-msgstr "Suivant ->"
+msgid "Size: %s"
+msgstr "Taille : %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid ""
-"Turning on this allows to print plain text files in japanese language. Only "
-"use this function if you really want to print text in japanese, if it is "
-"activated you cannot print accentuated characters in latin fonts any more "
-"and you will not be able to adjust the margins, the character size, etc. "
-"This setting only affects printers defined on this machine. If you want to "
-"print japanese text on a printer set up on a remote machine, you have to "
-"activate this function on that remote machine."
-msgstr ""
-"Activer ceci permet d'imprimer des fichiers textes purs en japonais. "
-"N'utilisez cette fonction que si vous voulez réellement imprimer des textes "
-"en japonais, car vous ne pourrez alors plus imprimer des caractères latins "
-"accentués, ni ajuster les marges ou la taille de caractères. Ce paramètre "
-"affecte seulement les imprimantes définies sur cette machine. Si vous voulez "
-"imprimer en japonais à partir d'une machine distante, vous devrez activer "
-"cette option sur la machine distante."
+msgid ", %s sectors"
+msgstr ", %s secteurs"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1125
#, c-format
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Cette partition est probablement\n"
-"une partition de pilotes systèmes,\n"
-"vous ne devriez pas la toucher.\n"
+msgid "Cylinder %d to %d\n"
+msgstr "Cylindre %d à %d\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
-msgstr "Guinée-Bissau"
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "Formatée\n"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Fréquence horizontale"
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "Non formatée\n"
+
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
+msgstr "Montée\n"
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Edit"
-msgstr "Éditer"
+msgid "RAID md%s\n"
+msgstr "Appartient au RAID md%s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, c-format
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+"Loopback file(s):\n"
+" %s\n"
msgstr ""
-"Il est impossible de désélectionner ce point de montage car il est\n"
-"utilisé pour du bouclage. Veuillez supprimer ce dernier d'abord."
+"Fichier(s) loopback :\n"
+" %s\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1132
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\""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"L'interface réseau qui a été configurée pendant l'installation ne peut pas "
-"être démarrée maintenant. Veuillez vérifier si votre réseau est activé après "
-"démarrage. Démarrez le « Centre de Contrôle Mandrake », vérifiez la "
-"configuration dans la section « réseau et internet / connexion ». Puis "
-"essayez à nouveau de configurer l'imprimante dans la section « Matériel / "
-"Imprimante »."
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "USB controllers"
-msgstr "Contrôleurs USB"
+"Partition d'amorçage par défaut\n"
+"(pour DOS/Windows, pas pour LILO)\n"
-#: ../../Xconfig/various.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, c-format
-msgid "What norm is your TV using?"
-msgstr "Quelle norme utilise votre téléviseur ?"
+msgid "Level %s\n"
+msgstr "RAID de niveau %s\n"
-#: ../../standalone/drakconnect:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "Type:"
-msgstr "Type :"
+msgid "Chunk size %s\n"
+msgstr "Taille de bloc %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Share name"
-msgstr "Nom de partage de l'imprimante"
+msgid "RAID-disks %s\n"
+msgstr "disques RAID %s\n"
-#: ../../standalone/drakgw:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid "enable"
-msgstr "activer"
+msgid "Loopback file name: %s"
+msgstr "Nom du fichier loopback : %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-"Connexion au site Web de Mandrake Linux pour obtenir la liste des serveurs "
-"miroirs disponibles..."
+"\n"
+"Il y a des chances que cette partition\n"
+"soit une partition de pilotes systèmes,\n"
+"vous ne devriez pas la toucher.\n"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"Un problème est survenu pendant le redémarrage du réseau : \n"
"\n"
-"%s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove the loopback file?"
-msgstr "Supprimer le fichier de boucle ?"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr "La taille sélectionnée est plus importante que la place disponible"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP server name missing!"
-msgstr "Nom du serveur NCP manquant !"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose your country."
-msgstr "Veuillez choisir votre pays."
+"Cette partition d'amorçage (bootstrap)\n"
+"est nécessaire si vous avez plusieurs\n"
+"systèmes d'exploitation. \n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Sauvegarde sur disque dur..."
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
+msgstr "Protégé en lecture"
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid "Laotian"
-msgstr "Laotien"
+msgid "Size: %s\n"
+msgstr "Taille : %s\n"
-#: ../../lang.pm:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "Samoa"
-msgstr "Samoa"
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Géométrie : %s cylindres, %s têtes, %s secteurs\n"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-"Le protocole rstat permet aux utilisateurs sur un même réseau d'obtenir des "
-"mesures de la performance de n'importe quelle machine sur ce réseau."
+#: ../../diskdrake/interactive.pm_.c:1166
+msgid "Info: "
+msgstr "Information : "
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid "Re-generating list of configured scanners ..."
-msgstr "Régénération de la liste des scanners configurés..."
+msgid "LVM-disks %s\n"
+msgstr "disques LVM %s\n"
-#: ../../modules/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid "Module configuration"
-msgstr "Configuration du module"
+msgid "Partition table type: %s\n"
+msgstr "Table des partitions de type : %s\n"
-#: ../../harddrake/data.pm:1
+#: ../../diskdrake/interactive.pm_.c:1169
#, c-format
-msgid "Scanner"
-msgstr "Scanner"
+msgid "on channel %d id %d\n"
+msgstr "sur canal %d id %d\n"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Attention : tester cette carte vidéo peut bloquer votre ordinateur"
+#: ../../diskdrake/interactive.pm_.c:1199
+msgid "Filesystem encryption key"
+msgstr "Clef de chiffrement du système de fichiers"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Le nom d'utilisateur ne peut contenir que des lettres minuscules,\n"
-"des nombres, ainsi que les caractères « - » et « _ »"
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
+msgstr "Choisissez la clef de chiffrement du système de fichiers"
-#: ../../standalone/drakbug:1
+#: ../../diskdrake/interactive.pm_.c:1203
#, c-format
-msgid "Menudrake"
-msgstr "Menudrake"
+msgid "This encryption key is too simple (must be at least %d characters long)"
+msgstr "Cette clef de chiffrement est trop courte (minimum %d caractères)"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
-msgstr "Bienvenue aux pirates"
+#: ../../diskdrake/interactive.pm_.c:1204
+msgid "The encryption keys do not match"
+msgstr "Les clefs de chiffrement ne correspondent pas"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
-msgstr "Options du module :"
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
+msgstr "Clef de chiffrement"
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
-msgstr "Sécurisez vos réseaux avec le Multi Newtwork Firewall"
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
+msgstr "Clef de chiffrement (confirmation)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Go on without configuring the network"
-msgstr "Continuer sans configurer le réseau"
+#: ../../diskdrake/removable.pm_.c:47
+msgid "Change type"
+msgstr "Changer le type"
-#: ../../network/isdn.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "Abort"
-msgstr "Arrêter"
+msgid "Can't login using username %s (bad password?)"
+msgstr "Impossible de se connecter avec le nom %s (mauvais mot de passe?)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr "Pas de demande de mot de passe sur %s à l'entrée %s"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Domaine d'authentification nécessaire"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse avec émulation de la molette"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Un autre"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Usage of remote scanners"
-msgstr "Utilisation des scanners distants"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Quel nom d'utilisateur"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
+"Please enter your username, password and domain name to access this host."
msgstr ""
-"Votre partition FAT est trop fragmentée. Redémarrez sous Windows\n"
-"et lancez le programme de défragmentation « defrag »,\n"
-"puis relancez l'installation de Mandrake Linux."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak norvégien"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
-msgstr "Sauvegarde sur disque dur..."
-
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Ne peut dédoubler (fork) : %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "Type : "
+"Veuillez entrez vos nom d'utilisateur, mot de passe et nom de domaine pour "
+"accéder à ce serveur"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
-msgstr "<-- Modifier un client"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+msgid "Username"
+msgstr "Nom d'utilisateur"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "no fonts found"
-msgstr "aucune fonte trouvée"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Domaine"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Mouse"
-msgstr "Souris"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+msgid "Search servers"
+msgstr "Rechercher les serveurs"
-#: ../../bootloader.pm:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "not enough room in /boot"
-msgstr "il n'y a pas assez de place dans le dossier /boot"
+msgid "%s formatting of %s failed"
+msgstr "le formatage au format %s de %s a échoué"
-#: ../../install_steps_gtk.pm:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "trying to promote %s"
-msgstr ""
+msgid "I don't know how to format %s in type %s"
+msgstr "Impossible de formater %s au format %s"
-#: ../../lang.pm:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
+msgid "mounting partition %s in directory %s failed"
+msgstr "le montage de la partition %s dans le répertoire %s a échoué"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid "Host name"
-msgstr "Nom d'hôte :"
+msgid "error unmounting %s: %s"
+msgstr "Le démontage de %s a échoué : %s"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the color of the progress bar"
-msgstr "la couleur de la barre de progression"
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "simple"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr "Supprimer les fichiers de polices"
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
+msgstr "avec /usr"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to RAID"
-msgstr "Ajouter au RAID"
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "serveur"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
+#: ../../fsedit.pm_.c:240
#, c-format
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"
+"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"
-" * 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."
+"Do you agree to loose all the partitions?\n"
msgstr ""
-"Vous pouvez ajouter des entrées supplémentaires au menu yaboot, soit pour\n"
-"d'autres systèmes d'exploitation, des noyaux alternatifs, ou pour des\n"
-"images de démarrage en cas de problème.\n"
-"\n"
-"Pour les autres OS, l'entrée n'est constituée que d'une étiquette et d'une\n"
-"partition « root ».\n"
-"\n"
-"Pour Linux, quelques options sont disponibles :\n"
-"\n"
-" * Étiquette : c'est simplement le nom que vous devrez taper lors de\n"
-"l'invite yaboot pour choisir cette option de démarrage ;\n"
-"\n"
-" * Image : c'est le nom de l'image noyau à démarrer. Généralement, on\n"
-"utilise vmlinux ou une variante de vmlinux avec une extension ;\n"
-"\n"
-" * Root : le périphérique « root » ou « / » pour votre installation Linux ;\n"
-"\n"
-" * Adjonction (« Append ») : sur le matériel Apple, l'option d'adjonction\n"
-"noyau est utilisée assez souvent afin d'aider à l'initialisation de\n"
-"matériel vidéo ou pour permettre l'émulation de la souris clavier, vu que\n"
-"les souris Apple n'ont souvent qu'un bouton. Voici quelques exemples :\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 : cette option peut être utilisée pour charger des modules\n"
-"initiaux avant que le périphérique de démarrage ne soit disponible, ou pour\n"
-"charger une image de disque virtuel (« ramdisk ») dans le cas où une\n"
-"situation de démarrage d'urgence surviendrait ;\n"
-"\n"
-" * Initrd-size : la taille par défaut de l'image de disque virtuel est\n"
-"normalement 4 096 octets. Si vous avez besoin d'un grand espace de disque\n"
-"virtuel, cette option peut être utilisée ;\n"
-"\n"
-" * Lecture-écriture : normalement, la partition « root » est montée en\n"
-"« lecture seulement » pour permettre une vérification du système de\n"
-"fichiers avant que le système ne soit « live ». Vous pouvez changer ces\n"
-"options dans cette section ;\n"
-"\n"
-" * NoVideo : si le matériel vidéo Apple devait très mal fonctionner, vous\n"
-"pouvez sélectionner cette option pour démarrer en mode « novideo », avec\n"
-"une prise en charge native de la mémoire d'image (« frame buffer ») ;\n"
+"La table des partitions de %s ne peut être lue car elle est trop "
+"endommagée.\n"
+"Il est possible de réinitialiser les partitions endommagées (TOUTES LES\n"
+"DONNÉES seront perdues). Une autre solution consiste à ne pas autoriser\n"
+"le logiciel DrakX à modifier la table des partitions (l'erreur est %s)\n"
"\n"
-" * Défaut : sélectionne cette entrée en tant que choix Linux par défaut. En\n"
-"tapant sur ENTRÉE lors de l'invite de yaboot, vous y accéderez\n"
-"automatiquement. Cette entrée sera mise en évidence par le biais d'une\n"
-"astérisque (« * ») et si vous cliquez sur la touche [Tab], vous verrez\n"
-"toutes les sélections de démarrage possibles."
+"Êtes-vous d'accord pour perdre toutes vos partitions ?\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr "L'imprimante « %s » a été ajoutée avec succès à StarOffice/OpenOffice"
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr "Les partitions JFS doivent faire au moins 16 Mo."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No floppy drive available!"
-msgstr "Aucun lecteur de disquette disponible !"
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "Les partitions ReiserFS doivent faire au moins 32 Mo."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
-msgstr ""
-"Pour obtenir la liste des paramètres disponibles pour l'imprimante courante, "
-"lisez la liste ci-dessous ou cliquez sur le bouton « imprimer la liste des "
-"options ».%s%s%s\n"
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
+msgstr "Les points de montage doivent commencer par /"
-#: ../../lang.pm:1
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "Saudi Arabia"
-msgstr "Arabie Saoudite"
+msgid "There is already a partition with mount point %s\n"
+msgstr "Le point de montage %s est déjà utilisé\n"
-#: ../../services.pm:1
+#: ../../fsedit.pm_.c:526
#, c-format
-msgid "Internet"
-msgstr "internet"
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr ""
+"Vous ne pouvez pas utiliser une partition logique LVM pour le point de "
+"montage %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "Désirez-vous tout de même continuer ?"
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
+msgstr "Ce répertoire doit rester dans la partition racine"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:530
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Si votre imprimante n'est pas listée, choisissez-en une compatible (voir le "
-"manuel de l'imprimante) ou similaire."
+"Vous avez besoin d'un vrai système de fichiers (ext2/ext3, reiserfs, xfs, ou "
+"jfs) pour ce point de montage\n"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:532
#, c-format
-msgid "Printer"
-msgstr "Imprimante"
+msgid "You can't use an encrypted file system for mount point %s"
+msgstr ""
+"Vous ne pouvez pas utiliser de système de fichiers crypté pour le point de "
+"montage %s"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices were added:\n"
-msgstr "Certains périphériques ont été ajoutés :\n"
+#: ../../fsedit.pm_.c:599
+msgid "Not enough free space for auto-allocating"
+msgstr "Pas assez d'espace libre pour le partitionnement automatique"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Géométrie : %s cylindres, %s têtes, %s secteurs\n"
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
+msgstr "Rien à faire"
-#: ../../printer/printerdrake.pm:1
+#: ../../fsedit.pm_.c:694
#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Impression sur l'imprimante « %s »"
+msgid "Error opening %s for writing: %s"
+msgstr "Erreur lors de l'ouverture de %s en écriture : %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
msgstr ""
-"/etc/hosts.allow et /etc/hosts.deny déjà configurés. Aucune modification"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Tape"
-msgstr "Restaurer à partir d'une bande"
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
+msgstr "Pas de pilote alternatif"
-#: ../../standalone/drakbug:1
+#: ../../harddrake/sound.pm_.c:171
#, 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's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-"Pour soumettre un rapport de bogue, cliquez sur le bouton Signaler.\n"
-"Cela ouvrira votre navigateur par défaut\n"
-"sur une page qui vous permettra d'envoyer l'information affichée ci-dessus "
-"en tant que rapport de bogue."
+"Il n'y a aucun pilote OSS ou ALSA connu pour votre carte son (%s) qui "
+"actuellement utilise « %s »"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the profile to configure"
-msgstr "Choisissez le profil à configurer"
+#: ../../harddrake/sound.pm_.c:173
+msgid "Sound configuration"
+msgstr "Configuration du son"
-#: ../../security/l10n.pm:1
+#: ../../harddrake/sound.pm_.c:174
#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
msgstr ""
-"Longueur minimum du mot de passe ainsi que le nombre de chiffres et de "
-"majuscules"
+"Vous pouvez sélectionner ici un pilote alternatif (OSS ou ALSA) pour votre "
+"carte son (%s)"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../harddrake/sound.pm_.c:176
#, c-format
msgid ""
"\n"
"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
"\n"
"\n"
-"Entrez un nom d'hôte ZeroConf sans point si vous ne\n"
-"voulez pas utiliser le nom par défaut."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now from configuration file"
-msgstr "Sauvegarder à partir de la configuration définie"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr ""
-"Les points de montage ne doivent contenir que des caractères alphanumériques"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting printing system..."
-msgstr "Redémarrage du système d'impression..."
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr "Vous ne pouvez continuer que sans support de CDROM"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "Voir les informations sur le matériel"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
-msgstr "Jour"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr "Premier secteur de la partition d'amorçage"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
-msgstr "Marque, modèle"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
-
-#: ../../standalone.pm:1
-#, 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)"
-msgstr ""
-"[OPTIONS]...\n"
-"Configurateur pour Mandrake Terminal Server\n"
-"--enable : active MTS\n"
-"--disable : désactive MTS\n"
-"--start : démarre MTS\n"
-"--stop : arrête MTS\n"
-"--adduser : ajoute un utilisateur système existant au MTS (nécessite "
-"un nom d'utilisateur)\n"
-"--deluser : enlève un utilisateur système existant du MTS (nécessite "
-"un nom d'utilisateur)\n"
-"--addclient : ajoute une machine cliente au MTS (nécessite une adresse "
-"MAC, IP, nom d'image nbi)\n"
-"--delclient : enlève une machine cliente au MTS (nécessite une adresse "
-"MAC, IP, nom d'image nbi)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet Mask:"
-msgstr "Masque de sous-réseau :"
+"Votre carte utilise actuellement le pilote %s « %s » (le pilote par défaut "
+"étant « %s »)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Set password expiration and account inactivation delays"
-msgstr ""
-"Règle la durée de vie des mots de passe et le délai d'inactivation du compte"
+#: ../../harddrake/sound.pm_.c:178
+msgid "Driver:"
+msgstr "Pilote:"
+
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+msgid "Help"
+msgstr "Aide"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
-msgstr "Charge"
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
+msgstr "Aide sur le basculement entre OSS et ALSA"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
+#: ../../harddrake/sound.pm_.c:186
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"
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Les deux paramètres importants sont la fréquence de rafraîchissement\n"
-"verticale (qui détermine la vitesse à laquelle l'écran est rafraîchi)\n"
-"et, surtout, la fréquence de synchronisation horizontale (qui détermine\n"
-"la vitesse à laquelle les lignes sont tracées).\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"
-"Il ne faut SURTOUT PAS choisir un type de moniteur ayant\n"
-"une fréquence de rafraîchissement excédant les capacités de votre\n"
-"moniteur. Vous risqueriez de l'endommager.\n"
-"En cas de doute, choisissez un réglage moins performant mais\n"
-"sans risque pour votre matériel."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
-msgstr "Modifier"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+"It also provides a much higher API than OSS.\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"
+"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 ""
+"OSS (Open Sound System) fut la première API sonore. Elle est multi plate-"
+"formes (disponible sur la majorité des systèmes unix) mais est limitée et de "
+"très bas niveau.\n"
+"De plus, tous les pilotes OSS réinventent la roue.\n"
"\n"
-"Les commandes « %s » et « %s » permettent également de modifier les "
-"paramètres d'impression pour une impression particulière. Il suffit pour "
-"cela d'ajouter les paramètres voulus sur la ligne de commande, par exemple "
-"« %s <fichier> ».\n"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
-msgstr ""
-"Le nom d'hôte, le nom d'utilisateur et le mot de passe dont nécessaires !"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Insert floppy"
-msgstr "Insérez une disquette"
+"ALSA (Advanced Linux Sound Architecture) est une architecture modulaire qui\n"
+"supporte un nombre impressionnant de cartes ISA, PCI, USB...\n"
+"\n"
+"Elle fournit également une API de plus haut niveau qu'OSS.\n"
+"\n"
+"Pour utiliser ALSA, il est possible d'utiliser:\n"
+"- la compatibilité avec l'ancienne API OSS\n"
+"- la nouvelle API ALSA qui fournit un grand nombre de possiblités avancées "
+"mais nécessite la bibliothèque ALSA.\n"
-#: ../../diskdrake/dav.pm:1
+#: ../../harddrake/sound.pm_.c:202
#, 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\"."
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-"WebDAV est un protocole qui vous permet de monter localement un dossier\n"
-"de serveur web, et de le traiter comme un système de fichiers local (à "
-"condition\n"
-"que le serveur web soit configuré en serveur WebDAV). Si vous voulez "
-"ajouter\n"
-"des points de montage WebDAV choisissez « Nouveau »."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "HardDrake"
-msgstr "HardDrake"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
-msgstr "Nouveau"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable syslog reports to console 12"
-msgstr "Activer/désactiver l'affichage des messages systèmes sur la console 12"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Would you like to try again?"
-msgstr "Désirez-vous essayer à nouveau ?"
+"L'ancien pilote « %s » est sur liste noire.\n"
+"\n"
+"Plusieurs personnes ont rapporté des problèmes avec le kernel lors de son "
+"arrêt.\n"
+"\n"
+"Le nouveau pilote « %s » ne sera utilisé qu'au prochain démarrage."
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Wizard"
-msgstr "Assistant"
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+msgid "Please Wait... Applying the configuration"
+msgstr "Veuillez patienter... mise en place de la configuration"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected server"
-msgstr "Modifier le serveur sélectionné"
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "Veuillez patienter"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose where you want to backup"
-msgstr "Veuillez choisir où stocker la sauvegarde"
+#: ../../harddrake/sound.pm_.c:210
+msgid "No known driver"
+msgstr "Aucun pilote connu"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
-"Vous devez redémarrer pour que les modifications apportées à la\n"
-"table des partitions soient prises en compte"
+msgid "There's no known driver for your sound card (%s)"
+msgstr "Il n'y a pas de pilote connu pour votre carte son (%s)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
-msgstr "Ne pas inclure le cache du navigateur internet (fichiers tampon)"
+#: ../../harddrake/sound.pm_.c:214
+msgid "Unkown driver"
+msgstr "Pilote inconnu"
-#: ../../install_steps_interactive.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, c-format
msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-"Erreur à la vérification du système de fichiers %s. Souhaitez-vous corriger "
-"les erreurs ? (attention, vous pouvez perdre des données)"
-
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Veuillez choisir votre type de clavier."
-
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
-msgstr "Standard"
-
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Veuillez choisir le type de votre souris."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
-msgstr "Se connecter..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Échec de configuration de l'imprimante « %s » !"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "not configured"
-msgstr "non configuré"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "About"
-msgstr "À propos"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "Configuration des serveurs mandataires (proxy)"
+"Le pilote « %s » pour votre carte son n'est pas listé.\n"
+"\n"
+"SVP, envoyez la sortie de la commande « lspcidrake -v » à\n"
+"<install at mandrakesoft dot com>\n"
+"avec comme sujet: unlisted sound driver \"%s\""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start: sector %s\n"
-msgstr "Début : secteur %s\n"
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+msgid "Auto-detect"
+msgstr "Auto-détecter"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Mask"
-msgstr "Pas de masque"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+msgid "Unknown|Generic"
+msgstr "Inconnu|Générique"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface already configured"
-msgstr "Interface réseau déjà configurée"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Inconnu|CPH05X (bt878) [nombreux vendeurs]"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
-msgstr "Impossible d'accéder à la disquette !"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Inconnu|CPH06X (bt878) [nombreux vendeurs]"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
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."
+"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 ""
-"Attention: les logiciels libres ne sont pas forcément exempts de licence et "
-"certains\n"
-"logiciels libres peuvent etre couverts par des brevets dans votre pays. Par "
-"exemple, les\n"
-"décodeurs MP3 inclus peuvent nécessiter une licence pour un usage plus "
-"poussé (voyez\n"
-"http://www.mp3licensing.com pour plus de détails). Si vous n'êtes pas sûr si "
-"une licence\n"
-"peut vous etre demandés, vérifiez les lois en vigueurs dans votre pays."
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Mail Server"
-msgstr "Serveur de courrier"
+"Pour la plupart des cartes TV récentes, le module bttv du noyau GNU/Linux "
+"auto-détecte tout seul les bons paramètres.\n"
+"Si votre carte est mal détectée, vous pouvez donner les types de tuner et de "
+"carte corrects ici. Vous n'avez qu'a sélectionner les paramètres nécessaires "
+"à votre carte TV si nécessaire."
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "Veuillez cliquer sur une partition"
+#: ../../harddrake/v4l.pm_.c:227
+msgid "Card model:"
+msgstr "Modèle de carte :"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr "Périphérique HP JetDirect multifonction"
+#: ../../harddrake/v4l.pm_.c:228
+msgid "Tuner type:"
+msgstr "Type de tuner :"
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linux"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
+msgstr "Nombre de tampons de capture"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
-msgstr "Passez une bonne journée !"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "nombre de tampons pour la capture via mmap()"
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
+#: ../../harddrake/v4l.pm_.c:231
+msgid "PLL setting:"
+msgstr "Réglage de la BVP (PLL)"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Upgrade %s"
-msgstr "Mettre à jour %s"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
+msgstr "Support de la radio :"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Connection"
-msgstr "Type de connexion de l'imprimante"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
+msgstr "activer le support de la radio"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels in progress ..."
-msgstr "Recherche des canaux de télévision en cours ..."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+"GNU/Linux est un système multi-utilisateurs, ce qui signifie généralement\n"
+"que chaque utilisateur peut avoir des préférences différences, ses propres\n"
+"fichiers, etc. Pour plus d'informations, consultez le manuel d'utilisation.\n"
+"Contrairement à « root » qui a tous les droits, les utilisateurs que vous\n"
+"ajouterez ici n'auront que des permissions pour agir sur leurs propres\n"
+"fichiers exclusivement. L'utilisateur/administrateur devrait également se\n"
+"créer un compte « normal ». C'est à travers cet utilisateur que celui-ci\n"
+"devrait se connecter pour accomplir ses tâches quotidiennes. Car, bien\n"
+"qu'il soit pratique d'avoir tous les accès, cette situation peut également\n"
+"engendrer des situations désastreuses si un fichier est détruit par\n"
+"inadvertance. Un utilisateur normal n'ayant pas accès aux fichiers\n"
+"sensibles, ne peut causer de dommages majeurs.\n"
+"\n"
+"Il faut d'abord entrer le vrai nom de la personne. Évidemment, vous pouvez\n"
+"y inscrire n'importe quoi. DrakX prendra le premier mot inséré et le\n"
+"transposera comme « Nom de login ». C'est le nom qui sera utilisé pour se\n"
+"connecter au système. Vous pouvez le modifier. Il faut maintenant entrer un\n"
+"mot de passe. Celui-ci n'est pas aussi crucial que le mot de passe de\n"
+"« root », mais ce n'est pas une raison pour rentrer 123456. Après tout,\n"
+"ceci mettrait vos fichiers en péril.\n"
+"\n"
+"Si vous cliquez « Accepter », il vous sera possible d'ajouter d'autres\n"
+"utilisateurs. Créez un utilisateur différent pour chaque personne devant\n"
+"utiliser votre ordinateur. Une fois chaque utilisateur défini, cliquez sur\n"
+"« Terminer ».\n"
+"\n"
+"En cliquant sur « Avancé », vous pourrez sélectionner un « shell »\n"
+"différent pour cet utilisateur (bash est assigné par défaut)."
-#: ../../standalone/drakbackup:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:48
msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/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 ""
-"Erreur pendant l'envoi du fichier par FTP.\n"
-" Veuillez corriger votre configuration FTP"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr "Début de la plage d'adresses IP :"
+"La liste présentée plus haut identifie les partitions GNU/Linux détectées\n"
+"sur votre système. Vous pouvez accepter les choix proposés par l'assistant\n"
+"qui s'avère bon dans la grande majorité des cars. Si vous faîtes un\n"
+"changement, vous devez au moins avoir une partition root (\"/\"). root\n"
+"partition (« / »). Prenez garder de vous réserver suffisamment d'espace\n"
+"pour installer toutes les applications qui vous intéresse. Vous devrez\n"
+"également créer une partition «  /home ». Ceci s'avère exclusivement\n"
+"possible lorsque vous avez déjà au moins une partition GNU/Linux de\n"
+"configurer.\n"
+"\n"
+"Chaque partition est listée comme suit: \"Nom\", \"Capacité\".\n"
+"\n"
+"Le \"Nom\" est structuré ainsi : \"type de disque dur\", \"numéro du disque\n"
+"dur\", \"numéro de partition\". Par exemple, « hda1 ».\n"
+"\n"
+"Le \"Type de disque dur\" correspond à hd si votre disque est IDE. Pour un\n"
+"disque SCSI, vous lirez \"sd\".\n"
+"\n"
+"Le numéro du disque est toujours listée après le \"hd\" ou \"fd\". Pour les\n"
+"disque IDE :\n"
+"\n"
+" * \"a\" signifie \"disque primaire maître sur le premier contrôleur IDE\";\n"
+"\n"
+" * \"b\" signifie le \"disque primaire esclave sur le premier contrôleur\n"
+"IDE\";\n"
+"\n"
+" * \"c\" indique le \"disque primaire maître sur le second contrôleur\n"
+"IDE\";\n"
+"\n"
+" * \"d\" signifie le \"disque primaire esclave sur le second contrôleur\n"
+"IDE\";\n"
+"\n"
+"Avec les disques SCSI, le \"a\" indique le plus petit SCSI ID, et « b » le\n"
+"« deuxième plus petit ID », etc."
-#: ../../services.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:79
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."
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
-"Le métaserveur « inetd » sert à démarrer automatiquement les autres serveurs "
-"réseau lorsqu'une requête est détectée. Il est notamment responsable du "
-"démarrage des serveurs telnet, ftp, rsh et rlogin, etc. Le désactiver "
-"revient à désactiver tous les services qu'il gère."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
-msgstr "la hauteur de la barre de progression"
+"Les paquetages requis à l'installation de Mandrake Linux sont distribués\n"
+"sur plusieurs CDROM. Heureusement, DrakX connaît l'emplacement de chacun\n"
+"des paquetages. Il éjectera celui présent dans le lecteur et vous demandera\n"
+"d'insérer le CDROM approprié, selon le cas."
-#: ../../standalone/drakbackup:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:84
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"
+"you are not supposed to know them all by heart.\n"
"\n"
-"- Save via %s on host: %s\n"
-msgstr ""
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
"\n"
-"- Sauvegarde via %s sur la machine : %s\n"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr "Argentine"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Domain Name Server"
-msgstr "Serveur de Noms de domaine"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Level:"
-msgstr "Niveau de sécurité :"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
-msgstr "Les points de montage doivent commencer par /"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Choisissez votre lecteur CD/DVD"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "CUPS server"
-msgstr "Serveur CUPS"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Postfix Mail Server"
-msgstr "Serveur de courrier Postfix"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "Quitter sans sauvegarder"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "Yemen"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
-msgstr "Ce produit est disponible sur notre boutique en ligne."
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr "=> Il y a beaucoup de choses à choisir (%s).\n"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "GMT - DrakClock"
-msgstr "DrakClock: GMT"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
-"%s\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
+"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
+"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
+"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
"\n"
-"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"
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
"\n"
-"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."
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
-"Une erreur est survenue :\n"
+"C'est maintenant le moment de choisir les paquetages qui seront installés\n"
+"sur votre système. Sachez que Mandrake Linux contient plusieurs milliers de\n"
+"paquetages à installer, et qu'il n'est pas nécessaire de tous les connaître\n"
+"par coeur.\n"
"\n"
+"Si vous êtes en train de faire une installation normale à partir d'un\n"
+"CDROM, il vous sera d'abord demandé de spécifier quel CD vous avez (en mode\n"
+"Expert). Vérifier les étiquettes et cliquez sur les boîtes leur étant\n"
+"associées. Cliquez sur « OK », lorsque vous êtes prêt à continuer.\n"
"\n"
-"%s\n"
+"Les paquetages sont regroupés selon la nature de l'installation. Les\n"
+"groupes sont divisés en quatre sections principales :\n"
"\n"
-"Cela peu provenir de fichiers de configuration système corrompus\n"
-"sur la clé USB, dans ce cas les supprimer et ensuite redémarrer\n"
-"MandrakeMove résoudrait le problème. Pour faire cela, cliquez\n"
-"sur le bouton correspondant.\n"
+" * « Station de travail »: si vous comptez utiliser votre machine ainsi,\n"
+"sélectionner un ou plusieurs groupes y correspondant.\n"
"\n"
+" * « Environnement graphique »: ce groupe vous permettra de déterminer quel\n"
+"environnement graphique vous voulez avoir sur votre système. Évidemment, il\n"
+"vous en faut au moins un pour utiliser votre station en mode graphique.\n"
"\n"
-"Vous pouvez aussi redémarrer l'ordinateur et enlever la clé\n"
-"USB, ou bien examiner son contenu sous un autre système\n"
-"d'exploitation, ou même regarder les fichiers de log sur\n"
-"les consoles #3 et #4 pour essayer de deviner ce qui s'est\n"
-"passé."
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
-msgstr "Détection des disques durs"
+" * « Développement »: si votre système sera utilisé pour la programmation,\n"
+"choisissez les groupes désirés.\n"
+"\n"
+" * « Serveur »: finalement, si vous système doit agir en tant que serveur,\n"
+"vous pourrez sélectionner les services que vous voulez installer.\n"
+"\n"
+" * « Environnement graphique »: ce groupe vous permettra de déterminer quel\n"
+"environnement graphique vous voulez avoir sur votre système. Évidemment, il\n"
+"vous en faut au moins un pour utiliser votre station en mode graphique.\n"
+"\n"
+"En plaçant votre souris au dessus d'un nom de groupe, vous verrez\n"
+"apparaître une courte description de ce groupe. Si vous dé sélectionnez\n"
+"tous les groupes lors d'une installation standard (par opposition à une\n"
+"mise à jour), un dialogue apparaîtra proposant différentes options pour une\n"
+"installation minimale :\n"
+"\n"
+" * « Avec X » : installe le moins de paquetages possible pour avoir un\n"
+"environnement de travail graphique ;\n"
+"\n"
+" * « Avec la documentation de base » : installe le système de base plus\n"
+"certains utilitaires de base et leur documentation. Cette installation est\n"
+"utilisable comme base pour monter un serveur ;\n"
+"\n"
+" * « Installation vraiment minimale » : installera le strict minimum\n"
+"nécessaire pour obtenir un système GNU/Linux fonctionnel, en ligne de\n"
+"commande. Cette installation prend à peu près 65Mo.\n"
+"\n"
+"Vous pouvez finalement cocher l'option « Sélection individuelle des\n"
+"paquetages ». Cette option est à utiliser si vous connaissez exactement le\n"
+"paquetage désiré ou si vous voulez avoir le contrôle total de votre\n"
+"installation.\n"
+"\n"
+"Si vous avez démarré l'installation en mode \"mise à jour\", vous pouvez\n"
+"\"dé-sélectionner\" tous les groupes afin d'éviter l'installation de\n"
+"nouveaux programmes. Cette option est très utile pour restaurer un système\n"
+"défectueux."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:135
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
msgstr ""
-"Vous n'avez sélectionné aucun groupe de paquetages.\n"
-"Veuillez choisir l'installation minimale désirée :"
+"Finalement, si vous avez choisi de sélectionner individuellement les\n"
+"paquetages à installer, DrakX vous présentera un arbre contenant tous les\n"
+"paquetages, classés par groupes et sous-groupes. En naviguant à travers\n"
+"l'arbre, vous pouvez sélectionner des groupes, des sous-groupes ou des\n"
+"paquetages individuels.\n"
+"\n"
+"Dès que vous sélectionnez un paquetage dans l'arbre, une descriptions\n"
+"apparaît à droite. Une fois votre sélection complétée, cliquez sur\n"
+"« Installation » pour lancer le processus. Soyez patient, car en fonction\n"
+"du type d'installation choisi ou du nombre de paquetages sélectionnés, le\n"
+"temps requis peut être substantiellement différent. Une estimation du temps\n"
+"requis est présentée sur l'écran en cours d'opération afin de vous\n"
+"permettre d'évaluer de combien de temps vous disposez pour prendre votre\n"
+"déjeuner.\n"
+"\n"
+"!! Si un logiciel serveur a été sélectionné, vous devrez confirmer que vous\n"
+"voulez vraiment que celui-ci soit installé. Sous Mandrake, par défaut, tous\n"
+"les serveurs installés sont lancés au démarrage. Malgré tous les efforts\n"
+"investis pour vous livrer une distribution Linux sécuritaire, il est\n"
+"possible que certaines failles de sécurité affectes les serveurs installés\n"
+"au-delà de la date de publication. Si vous ne savez pas précisément à quoi\n"
+"sert un serveur en particulier ou pourquoi il est installé, cliquez sur\n"
+"« NON ». En cliquant sur « OUI », le serveur sera installé et le service\n"
+"rendu disponible au démarrage. !!\n"
+"\n"
+"L'option « Dépendances automatiques » désactive les avertissements qui\n"
+"apparaissent à chaque fois que l'installeur sélectionne un nouveau paquet.\n"
+"Ces avertissements surviennent parce que DrakX a déterminé que pour qu'un\n"
+"paquetage soit fonctionnel, il lui en faut un autre dont il est dépendant.\n"
+"\n"
+"La petite icône de disquette qui apparaît au bas de la liste permet de\n"
+"récupérer une liste de paquetages sélectionnés durant une autre\n"
+"installation. En cliquant dessus, on vous demandera d'insérer la disquette\n"
+"créée lors d'une installation précédente. Voir la deuxième note de la\n"
+"dernière étape afin de savoir comment créer une telle disquette."
-#: ../../network/adsl.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:171
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 ""
-"Le microcode d'Alcatel est nécessaire.\n"
-"Celui-ci peut être fourni maintenant via une disquette ou depuis votre "
-"partition Windows, ou plus tard"
-
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "Entrez l'adresse du serveur WebDAV"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
-msgstr "Tadjikistan"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "Accepter"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "Description"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter summary text."
-msgstr "Veuillez entrer votre texte de résumé."
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Erreur lors de l'ouverture de %s en écriture : %s"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Type de souris : %s\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-"Votre carte vidéo peut utiliser l'accélération 3D matérielle avec XFree %s."
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "Choisissez un moniteur"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "Un label vide n'est pas autorisé"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
-msgstr "Maltais (UK)"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "Impossible d'ajouter une partition"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "Taille en Mo : "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "Imprimante distante"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please choose a language to use."
-msgstr "Choisissez la langue :"
+"Si vous désirez connecter votre système à un réseau ou à l'Internet,\n"
+"cliquez sur « OK ». L'autodétection des périphériques réseau et modems sera\n"
+"alors lancée. Si cette détection échoue, décochez la case « Utiliser\n"
+"l'autodétection ». Vous pouvez aussi choisir de ne pas configurer le\n"
+"réseau, ou de le faire plus tard. Dans ce cas, cliquez simplement sur\n"
+"« Annuler ».\n"
+"\n"
+"Les types de connexion supportées sont : modem téléphonique, modem ISDN,\n"
+"connexion ADSL, modem câble ou simplement LAN (réseau ethernet).\n"
+"\n"
+"Nous ne détaillerons pas ici chacune des configurations\n"
+"possible. Assurez-vous seulement que vous avez toutes les informations\n"
+"de votre fournisseur de service Internet à portée de main.\n"
+"\n"
+"Vous pouvez consulter le chapitre du « Guide de l'utilisateur » concernant\n"
+"les connexions à Internet pour plus de détails à propos des configurations\n"
+"spécifiques de chaque type de connexion. Vous pouvez également configurer\n"
+"votre connexion à Internet une fois l'installation terminée.\n"
+"\n"
+"Si vous désirez configurer votre réseau plus tard ou si vous avez terminé\n"
+"l'installation de votre réseau, cliquez sur « Annuler »."
-#: ../../network/network.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:193
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 ""
-"ATTENTION : ce périphérique a déjà été configuré pour la connexion "
-"internet.\n"
+"You may now choose which services you wish to start at boot time.\n"
"\n"
-"Cliquez simplement sur « OK » pour conserver sa configuration.\n"
-"Sinon la configuration actuelle sera écrasée par les modifications que vous "
-"ferez."
-
-#: ../../any.pm:1
-#, c-format
-msgid "I can set up your computer to automatically log on one user."
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
+"\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
-"À la fin du démarrage, une session peut être ouverte automatiquement pour un "
-"utilisateur."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Floppy format"
-msgstr "Type de lecteur de disquette"
+"Vous pouvez maintenant choisir les services disponibles au démarrage de\n"
+"votre système.\n"
+"\n"
+"Ici sont présentés tous les services disponibles avec l'installation en\n"
+"place. Faites une bonne vérification et enlevez tout ce qui n'est pas\n"
+"absolument nécessaire au démarrage du système.\n"
+"\n"
+"Vous pouvez obtenir une courte explication des services en les\n"
+"sélectionnant spécifiquement. Cela dit, si vous n'êtes pas certain de\n"
+"l'application d'un service, conservez les paramètres par défaut\n"
+"\n"
+"!! À cette étape, soyez particulièrement attentif dans le cas d'un système\n"
+"destiné à agir comme serveur. Dans ce cas, vous voudrez probablement\n"
+"permettre exclusivement les services nécessaires. !!"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Generic Printers"
-msgstr "Imprimantes génériques"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:210
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
+msgstr ""
+"GNU/Linux manipule l'heure au format GMT (Greenwich Mean Time) et la\n"
+"convertit en temps local selon le fuseau horaire choisi. Il est néanmoins\n"
+"possible de désactiver cela en désélectionnant « Horloge système réglée sur\n"
+"le méridien de Greenwich » de façon à ce que l'horloge matérielle soit la\n"
+"même que celle du système. Cela est particulièrement utile si la machine\n"
+"accueille un autre système d'exploitation tel que Windows.\n"
+"\n"
+"La « Synchronisation automatique » permet de régler l'heure automatiquement\n"
+"en se connectant à un serveur de temps sur Internet. Dans la liste qui est\n"
+"alors présentée, choisissez un serveur géographiquement proche de vous.\n"
+"Vous devez avoir une connexion Internet pour que cela fonctionne bien\n"
+"entendu. Cela installera en fait sur votre machine un serveur de temps\n"
+"local qui pourra optionnellement être lui-même utilisé par d'autres\n"
+"machines de votre réseau local."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:224
msgid ""
-"Please choose the printer to which the print jobs should go or enter a "
-"device name/file name in the input line"
-msgstr ""
-"Veuillez choisir l'imprimante sur laquelle les travaux d'impression seront "
-"envoyés ou tapez un nom de périphérique ou de fichier dans le champ d'entrée"
+"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.\n"
+"\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
+msgstr ""
+"X (pour le X Window system) est le coeur de votre interface graphique sous\n"
+"GNU/Linux. Tous les environnements graphiques (Gnome, KDE, Afterstep, ...)\n"
+"présents sur Mandrake Linux dépendent de X. A cette étape, DrakX, va tenter\n"
+"de le configurer automatiquement.\n"
+"\n"
+"Il est très rare que cette étape échoue, à moins d'avoir un équipement\n"
+"obsolète (ou trop récent). Si le processus réussit, il va démarrer X\n"
+"automatiquement avec la meilleure résolution d'écran possible, en fonction\n"
+"de la taille du moniteur. Une fenêtre apparaît alors vous demandant si\n"
+"cette configuration vous convient.\n"
+"\n"
+"Si vous faites une installation « Expert », vous entrerez dans\n"
+"l'information de configuration de X. Voir les sections correspondantes du\n"
+"manuel pour plus d'information.\n"
+"\n"
+"Si vous pouvez voir le message et cliquez sur oui, DrakX continuera à la\n"
+"prochaine étape. Si vous ne pouvez voir la fenêtre, ceci signifie que le\n"
+"test a échoué et vous serez ramené à l'écran précédant en 10 secondes."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The scanners on this machine are available to other computers"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:246
+msgid ""
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
msgstr ""
-"Les scanners de cette machine sont utilisables par les autres ordinateurs"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of the root partition"
-msgstr "Premier secteur de la partition racine"
+"Finalement, il vous sera demandé si vous souhaitez obtenir l'interface\n"
+"graphique dès le démarrage ou non. Notez que cette question sera posée même\n"
+"si vous choisissez de ne pas tester la configuration. Il est évidemment\n"
+"souhaitable de répondre « Non » si cette machine est un serveur sur\n"
+"laquelle personne n'est censée travailler en mode graphique."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Alternative drivers"
-msgstr "Autres pilotes"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:253
+msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
+msgstr ""
+"Le CDROM d'installation de Mandrake Linux a un mode de récupération\n"
+"prédéfini. Vous pouvez y accéder en démarrant l'ordinateur sur le CDROM.\n"
+"Selon la version de votre « BIOS », il faut lui spécifier de démarrer sur\n"
+"le CDROM. Vous devriez revenir au disquette de démarrage dans deux cas\n"
+"précis :\n"
+"\n"
+" * Au moment d'installer le « Programme d'amorce », DrakX va réécrire sur\n"
+"le secteur (MBR) contenant le programme d'amorce (boot loader) afin de vous\n"
+"permettre de démarrer avec Linux ou Windows (en prenant pour acquis que\n"
+"vous avez deux systèmes d'exploitation installés. Si vous réinstallez\n"
+"Windows, celui-ci va réécrire sur le MBR et il vous sera désormais\n"
+"impossible de démarrer Linux.\n"
+"\n"
+" * Si un problème survient et qu'il vous est impossible de démarrer\n"
+"GNU/Linux à partir du disque dur, cette disquette deviendra votre seul\n"
+"moyen de démarrer votre système Linux. Elle contient un bon nombre d'outils\n"
+"pour récupérer un système défectueux, peu importe la source du problème.\n"
+"\n"
+"En cliquant sur cette étape, on vous demandera d'insérer une disquette. La\n"
+"disquette insérée sera complètement effacée et DrakX se chargera de la\n"
+"formater et d'y insérer les fichiers nécessaires."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:277
+msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-"Please check all options that you need.\n"
-msgstr ""
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
-"Veuillez cocher toutes les options dont vous avez besoin.\n"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Fichier RamDisk"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cape Verde"
-msgstr "Cap-Vert"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr "le processeur a-t-il le bogue « coma » du Cyrix 6x86 ?"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr "Chargement de la configuration des imprimantes... Veuillez patienter"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
msgstr ""
-"les premiers Pentium étaient bogués et se bloquaient pendant le décodage du "
-"bytecode f00f"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guam"
-msgstr "Guam"
+"Cette étape vous permet de déterminer précisément l'emplacement de votre\n"
+"installation de Mandrake Linux. Si votre disque est vide ou utilisé par un\n"
+"autre système d'exploitation, vous devrez repartitionner votre disque.\n"
+"Partitionner un disque signifie de le diviser précisément afin de créer un\n"
+"espace pour votre installation.\n"
+"\n"
+"Comme les effets du partitionage sont irréversibles (l'ensemble du disque\n"
+"est effacé), le partitionnement est généralement intimidant et stressant\n"
+"pour un utilisateur inexpérimenté. Heureusement, une interface a été prévue\n"
+"à cet effet. Avant de commencer, révisez vos manuels et surtout, prenez\n"
+"votre temps.\n"
+"\n"
+"Si vous êtes en mode expert, l'application DiskDrake, l'outil de\n"
+"partitionnement de Mandrake Linux, vous permettra de déterminer précisément\n"
+"l'emplacement de chacune de vos partitions. À partir de l'interface\n"
+"d'installation, vous pouvez lancer les assistants en cliquant sur\n"
+"« Assistant ».\n"
+"\n"
+"Si des partitions ont déjà été définies, peu importe qu'elles proviennent\n"
+"d'une autre installation ou d'un autre outil de partitionnement, il vous\n"
+"suffit de simplement choisir sur quelle partition vous voulez installer\n"
+"Mandrake.\n"
+"\n"
+"Si vos partitions ne sont pas définies, vous devrez les créer en utilisant\n"
+"l'assistant. Selon la configuration de votre disque, plusieurs options sont\n"
+"disponibles :\n"
+"\n"
+" * « Utilisez l'espace disponible » : cette option tentera simplement de\n"
+"partitionner automatiquement l'espace inutilisé sur votre disque. Il n'y\n"
+"aura pas d'autre question.\n"
+"\n"
+" * « Utiliser les partitions existantes » : l' assistant a détecté une ou\n"
+"plusieurs partitions existants sur votre disque. Si vous voulez les\n"
+"utiliser, choisissez cette option.\n"
+"\n"
+" * « Utilisez l'espace libre sur une partition Windows » : si Microsoft\n"
+"Windows est installé sur votre disque et prend l'ensemble de l'espace vous\n"
+"devez créer une place pour votre installation Mandrake. Pour ce faire, vous\n"
+"pouvez tout effacer (voir « effacer tout le disque » ou « Mode expert ») ou\n"
+"vous pouvez redimensionner l'espace utilisé par Windows. Le\n"
+"redimensionnement peut être effectué sans pertes de données, à condition\n"
+"que vous ayez préalablement défragmenté la partition Windows. Une\n"
+"sauvegarde de Vos données ne fera pas de mal non plus. Cette seconde option\n"
+"peut être accomplie sans perte de données. Cette solution est recommandée\n"
+"pour faire cohabiter Linux et Windows sur le même ordinateur.\n"
+"\n"
+" Avant de choisir cette option, il faut comprendre qu'après cette\n"
+"procédure l'espace disponible pour Windows sera réduit. Vous aurez moins\n"
+"d'espace pour installer des logiciels ou sauvegarder de l'information avec\n"
+"Windows.\n"
+"\n"
+" * « Effacer tout le disque »: si vous voulez effacer toutes les données et\n"
+"les applications installées sur votre système et les remplacer par votre\n"
+"nouveau système Mandrake Linux, choisissez cette option. Soyez prudent, car\n"
+"ce choix est irréversible et permanent. Il vous sera impossible de\n"
+"retrouver vos données effacées.\n"
+"\n"
+" !! En choisissant cette option, l'ensemble du contenu de votre disque\n"
+"sera détruit. !!\n"
+"\n"
+" * « Supprimer Microsoft Windows »: ce choix effacera tout simplement ce\n"
+"que contient le disque et recommencera à zéro. Toutes les données et les\n"
+"programmes présents sur le disque seront effacés.\n"
+"\n"
+" !! En choisissant cette option, l'ensemble de votre disque sera effacé\n"
+"!!\n"
+"\n"
+" * « Mode expert »: permet de partitionner manuellement votre disque. Soyez\n"
+"prudent, parce que bien que plus puissante, cette option est dangereuse.\n"
+"Vous pouvez facilement perdre l'ensemble du contenu d'un disque. Donc, ne\n"
+"choisissez pas cette option si vous ne savez pas exactement ce que vous\n"
+"devez faire. Pour en savoir plus sur DiskDrake, référez vous à « Gérer ses\n"
+"partitions » du the « « Guide de l'utilisateur » »"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:347
msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-"Veuillez choisir le port sur laquelle votre imprimante est connectée ou "
-"tapez le nom du périphérique ou de fichier dans le champs d'entrée"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/Options/Test"
+"Votre installation de Mandrake Linux est maintenant terminée et votre\n"
+"système est prêt à être utilisé. Cliquez sur « OK » pour redémarrer votre\n"
+"système. Vous aurez alors le choix de démarrer GNU/Linux ou Windows (s'il\n"
+"est présent).\n"
+"\n"
+"Le bouton « Avancée » (en mode Expert uniquement) permet deux autres\n"
+"options :\n"
+"\n"
+" * « Générer une disquette d'auto-install »: Pour créer une disquette\n"
+"d'installation qui permettra de reproduire l'installation que vous venez de\n"
+"réaliser sans l'aide d'un administrateur.\n"
+"\n"
+" Notez que les deux options suivantes apparaissent après avoir cliqué sur\n"
+"le bouton :\n"
+"\n"
+" * « Replay ». C'est une installation partiellement automatique où il\n"
+"est possible de personnaliser le partitionnement du disque (exclusivement).\n"
+"\n"
+" * « Automatique ». Complètement automatique, cette installation\n"
+"reformate le disque au complet.\n"
+"\n"
+" Cette fonctionnalité est particulièrement pratique pour l'installation\n"
+"de multiples systèmes. Voir la sectionAuto install de notre site Web.\n"
+"\n"
+" * « Sauvegarder les paquetages sélectionnés » (*) sauve la sélection des\n"
+"paquetages installés. Puis, lorsque vous ferez une autre installation,\n"
+"insérer la disquette dans le lecteur et accéder au menu d'aide en tapant\n"
+"[f1], et entrez la commande suivante : « linux defcfg=\"floppy\" ».\n"
+"\n"
+"(*) Vous avez besoin d'une disquette formatée avec FAT (pour la créer sous\n"
+"Linux, tapez « mformat a: »)"
-#: ../../security/level.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:378
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."
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-"Ce niveau de sécurité doit être utilisé avec précaution. Il rend votre\n"
-"système plus facile à utiliser, aux dépens de la sécurité. Il ne devrait\n"
-"donc pas être utilisé sur une machine connectée à un réseau ou à Internet.\n"
-"Aucun mot de passe n'est requis."
-
-#: ../../fs.pm:1
-#, c-format
-msgid "Mounting partition %s"
-msgstr "Montage de la partition %s"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "Nom d'utilisateur"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Userdrake"
-msgstr "Userdrake"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Quelle partition désirez-vous utiliser pour Linux4Win ?"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to missing %s"
-msgstr "parce que %s manque"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Test pages"
-msgstr "Pages de test"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Logical volume name "
-msgstr "Nom du volume logique"
+"Les partitions ayant été nouvellement définies doivent être formaté (ce qui\n"
+"signifie la création d'un système de fichiers.\n"
+"\n"
+"À cette étape, vous pouvez reformater des partitions existantes pour\n"
+"effacer les donnés présentes. Vous devrez alors les sélectionner également.\n"
+"\n"
+"Sachez qu'il n'est pas nécessaire de reformater toutes les partitions\n"
+"existantes. Vous devez formater les contenant le système d'exploitation\n"
+"(comme « / »,«  /usr » ou « /var », mais il n'est pas nécessaire de\n"
+"formater les partitions de données, notamment « /home »..\n"
+"\n"
+"Restez prudent. Une fois les partition sélectionnée reformatée, il sera\n"
+"impossible de récupérer des donnés.\n"
+"\n"
+"Cliquez sur « OK » lorsque vous êtes prêt formater les partitions.\n"
+"\n"
+"Cliquez sur « Annuler » pour ajouter ou enlever une partition à formater.\n"
+"\n"
+"Cliquer sur « Avancer » si vous désirez sélectionner des partitions pour\n"
+"une vérifications des mauvais secteurs (« Bad Blocks »)."
-#: ../../standalone/drakbackup:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:404
msgid ""
-"List of data to restore:\n"
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
"\n"
+"Please be patient."
msgstr ""
-"Liste de données à restaurer :\n"
+"Votre nouvelle distribution Mandrake Linux est en cours d'installation.\n"
+"Selon la quantité de paquetages à installer et la vitesse de votre "
+"ordinateur,\n"
+"la durée de cette opération peut varier de quelques instants à plusieurs "
+"minutes.\n"
"\n"
+"Veuillez patienter."
-#: ../../fs.pm:1
-#, c-format
-msgid "Checking %s"
-msgstr "Vérification de %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "Options de l'imprimante réseau (TCP/socket)"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Plage mémoire (DMA)"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnecting from Internet "
-msgstr "Déconnexion d'Internet en cours"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "France"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
-msgstr "naviguer"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
-msgstr "Vérification du logiciel installé..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name missing!"
-msgstr "Le nom de l'imprimante est manquant !"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr ""
-"Souhaitez-vous activer l'impression sur les imprimantes de votre réseau ?\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "Turquie"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel Speedtouch USB"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Number of buttons"
-msgstr "Nombre de bouttons"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamien « colonne numérique » QWERTY"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Module"
-msgstr "Module"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:412
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
+"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
-"De plus, les files d'attente qui n'ont pas été créées avec ce programme ou "
-"avec «foomatic-configure» ne peuvent pas être transférées."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
-msgstr "Matériel"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Touches Ctrl et Alt simultanément"
-
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "États-Unis"
+"Au moment où vous êtes en train d'installer Mandrake Linux, il est possible\n"
+"que certains paquetages aient été mis à jour depuis la sortie du produit.\n"
+"Des bogues ont pu être corrigés, et des problèmes de sécurité résolus. Pour\n"
+"vous permettre de bénéficier de ces mises à jour, il vous est maintenant\n"
+"proposé de les télé-charger sur Internet. Choisissez « Oui » si vous avez\n"
+"une connexion Internet, ou « Non » si vous préférez installer les mises à\n"
+"jour plus tard.\n"
+"\n"
+"En choisissant « Oui », la liste des sites depuis lesquels les mises à\n"
+"jours peuvent être télé-chargées est affichée. Choisissez le site le plus\n"
+"proche. Puis un arbre de choix des paquetages apparaît : vérifiez la\n"
+"sélection, puis cliquez sur « Installer » pour télé-charger et installer\n"
+"les mises à jour sélectionnées, ou « Annuler » pour abandonner."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "User umask"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:425
+msgid ""
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
msgstr ""
-"Masque des permissions pour la création de fichier par les utilisateurs"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "Système d'exploitation par défaut ?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "Suisse (allemand)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Configurer les écrans séparément"
+"Avant d'aller plus loin, il est fortement recommandé de lire attentivement\n"
+"les termes et conditions d'utilisations de la licence. Celle-ci régit\n"
+"l'ensemble de la distribution Mandrake Linux. Si, pour une raison ou une\n"
+"autre, vous n'acceptez pas ces conditions, cliquez sur « Refuser ».\n"
+"L'installation sera alors immédiatement interrompue. Pour continuer,\n"
+"cliquez sur « Accepter »."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:432
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\"."
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
msgstr ""
-"Veuillez choisir l'imprimante que vous voulez configurer. La configuration "
-"de cette imprimante sera effectuée automatiquement. Si votre imprimante n'a "
-"pas été correctement détectée ou si vous préférez effectuer une "
-"configuration personnalisée, activez « Configuration Manuelle  »."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "Serveur NTP"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Sulogin(8) in single user level"
-msgstr "Activer la demande de mot de passe en mode mono-utilisateur"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Load/Save on floppy"
-msgstr "Charger/Sauver sur disquette"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
-msgstr "Ces thèmes n'avaient pas encore d'image de démarrage dans %s !"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "utile"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Fin dans %d secondes"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Veuillez choisir le port série sur lequel votre modem est connecté."
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Property"
-msgstr "Propietés"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
-msgstr "Ghostscript"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN Configuration"
-msgstr "Configuration du LAN (réseau local)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "Ghana"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
-msgstr "Le chemin ou le module est nécessaire"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Advanced Options"
-msgstr "Options avancées"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Configuration"
-msgstr "Afficher la Configuration"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
-msgstr "Bogue de « coma »"
+"À cette étape, vous devrez déterminer le niveau de sécurité requis par\n"
+"votre système. Le niveau de sécurité requis se détermine en fonction de\n"
+"l'exposition du système à d'autres utilisateurs (s'il est connecté\n"
+"directement sur Internet par exemple) et selon le niveau de sensibilité de\n"
+"l'information contenu dans le système (des numéros de carte de crédit par\n"
+"exemple). Sachez que, de manière générale, plus la sécurité d'un système\n"
+"est élevée, plus il est complexe à opérer. Référez-vous au chapitre\n"
+"« msec » du « Manuel de référence » pour obtenir plus d'informations sur\n"
+"les niveaux de sécurité.\n"
+"\n"
+"Si vous ne savez pas quel niveau choisir, gardez la sélection par défaut."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:442
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"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -5328,70 +3655,68 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``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 ""
-"À cette étape, vous devez sélectionner quelle partition sera utilisée pour\n"
-"votre système Mandrake Linux. Si votre disque est déjà partitionné, soit\n"
-"par une autre installation GNU/Linux ou par un autre outil de\n"
-"partitionnement, vous pourrez les utiliser. Sinon, les partitions devront\n"
-"être créées.\n"
+"À cette étape, vous devez sélectionner quelle partition sera utilisé pour\n"
+"votre système Mandrake Linux. Si vous disque est déjà partitionné, soit par\n"
+"une autre installation GNU/Linux ou par un autre outil de partitionnement,\n"
+"vous pourrez les utiliser. Si non,, Les partitions devront être créés.\n"
"\n"
"Pour créer une partition, vous devez d'abord sélectionner le disque à\n"
"utiliser. Vous pouvez le sélectionner en cliquant sur « hda » pour le\n"
@@ -5401,47 +3726,48 @@ msgstr ""
"Pour partitionner, le disque dur sélectionné, vous pouvez utiliser les\n"
"options suivantes :\n"
"\n"
-" * « %s »: cette option effacera toutes les partitions sur le disque\n"
-"sélectionné;\n"
+" * « Tout effacer »: cette option effacera toutes les partitions sur le\n"
+"disque sélectionné;\n"
"\n"
-" * « %s »: cette option permet de créer un système de ficher ext3 et\n"
-"« Swap » dans l'espace libre sur votre disque;\n"
+" * «  Attribution Automatique »: cette option permet de créer un système de\n"
+"ficher « Ext2 » and « Swap » dans l'espace libre sur votre disque;\n"
"\n"
-"« %s »: permet d'accéder à des fonctionnalités additionnelles :\n"
-"\n"
-" * « %s »: sauve la table de partition sur un disque amovibles. Cette\n"
-"option s'avère particulièrement pratique pour réparer des partitions\n"
-"endommagées. Il est fortement recommandé de procéder ainsi;\n"
+" * « Plus d'options »: permet d'accéder à des fonctionnalité additionnelle\n"
+":\n"
"\n"
-" * « %s »: permet de restaurer une table de partition sauvée au préalable\n"
-"sur une disquette.\n"
+" * « Sauvegarder la table de partition »: sauves la table de partition\n"
+"sur un disque amovibles. Cette option s'avère particulièrement pratique\n"
+"pour récurer des partition endommagées. Il est fortement recommandé de\n"
+"procéder ainsi;\n"
"\n"
-" * « %s »: si votre table de partition est endommagée, vous pouvez essayer\n"
-"de la récupérer avec ces options. Soyez prudent et sachez que cela ne\n"
-"fonctionne pas à coup sûr.\n"
+" * « Restaurer la table de partition »: permet de restaurer une table de\n"
+"partition sauvée au préalable sur une disquette.\n"
"\n"
-" * « %s »: écarte les changements et charge la table de partition initiale;\n"
+" * « Récupérer une partition »: si votre table de partition est\n"
+"endommagée, vous pouvez essayer de la récupérer avec ces options. Soyez\n"
+"prudent et sachez que ça ne fonctionne pas à tous les coups.\n"
"\n"
-" * « %s »: en cochant cette case, les CD-ROM et disquettes (et autres\n"
-"support) seront chargés automatiquement.\n"
+" * « Recharger la table de partition »: écarte les changements et charge\n"
+"la table de partition initiale;\n"
"\n"
-" * « %s »: utilisez cette option si vous souhaitez utiliser un assistant\n"
-"pour partitionner votre disque. Cette option est particulièrement\n"
-"recommandée si vous faites vos premiers pas avec les partitions.\n"
+" * « Chargement automatique des médias amovibles »: en cochant cette\n"
+"case, les cdrom et disquettes (et autres support) seront chargées\n"
+"automatiquement.\n"
"\n"
-" * « %s »: utilisez cette option pour annuler vos changements;\n"
+" * « Assistant »: utilisez cette option si vous désirez un assistant pour\n"
+"partitionner votre disque. Cette option est particulièrement recommandée si\n"
+"vous êtes nouveau en matière de partition.\n"
"\n"
-" * « %s »: permet des actions additionnelles sur les partitions (type,\n"
-"options, format) et donne plus d'informations;\n"
+" * « Défaire »: utilisez cette option pour annuler vos changements;\n"
"\n"
-" * « %s »: une fois le partitionnement terminé, ce bouton vous permettra de\n"
-"sauvegarder vos changements sur le disque.\n"
+" * «  Changez de mode normal/expert »: permet des actions additionnelles "
+"sur\n"
+"les partitions (type, options, format) et donne plus d'informations;\n"
"\n"
-"Lorsque vous définissez la taille d'une partition, vous pouvez choisir\n"
-"précisément la taille de celle-ci en utilisant les Flèches de votre\n"
-"clavier.\n"
+" * « Terminer »: une fois le partitionnement terminé, ce bouton vous\n"
+"permettra de sauvegarder vos changements sur le disque.\n"
"\n"
-"Note: vous pouvez atteindre toutes les options en utilisant le clavier.\n"
+"Notez: vous pouvez modifier toutes les options en utilisant le clavier.\n"
"Naviguer avec les flèches et [Tab].\n"
"\n"
"Une fois la partition sélectionnée, vous pouvez utiliser :\n"
@@ -5457,2020 +3783,1392 @@ msgstr ""
"sur le système de fichier ext2FS dans « Manuel de référence ».\n"
"\n"
"Si vous installez sur un poste PPC, vous devrez créer une petite partition\n"
-"HFS « bootstrap » d'au moins 1 Mo qui sera utilisée par le chargeur de\n"
-"démarrage (« bootloader ») yaboot. Si vous optez pour une partition plus\n"
-"grande, disons 50Mo, vous trouverez utile d'y placer des noyaux et des\n"
-"images « ramdisk » accessibles en cas de problème."
+"HFS « bootstrap » d'au moins 1 Mo qui sera utilisée par le « bootloader  »\n"
+"yaboot. Si vous optez pour une partition plus grande, disons 50Mo, vous\n"
+"trouverez utile d'y placer des noyaux et des images « ramdisk » accessibles\n"
+"en cas de problème."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:513
msgid ""
-"Graphic Card\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-" 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"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\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 ""
-"Carte graphique\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-" Le programme d'installation détecte et configure automatiquement les\n"
-"cartes graphiques présentes sur votre machine. Si ce n'est pas le cas, vous\n"
-"pouvez choisir dans cette liste la carte que vous utilisez effectivement.\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"
-" Dans le cas où différents serveurs seraient disponible pour votre carte,\n"
-"avec ou sans accélération 3D, il vous est alors proposé de choisir le\n"
-"serveur qui vous conviendra le mieux."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr "Erreur lors de l'installation des paquetages :"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Configuration de l'imprimante Lexmark inkjet"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "État précédent"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Save partition table"
-msgstr "Sauvegarder la table des partitions..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "Finlandais"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr "Macédoine"
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
-msgstr ""
-"Pour autoriser un utilisateur à partager ses dossiers, vous devez ajouter "
-"cet utilisateur dans le groupe « fileshare ».\n"
-"Ceci peut se faire grâce au programme « Userdrake »."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr "Slovénien"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Authorize:\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"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-"- only local ones if set to \"LOCAL\"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- none if set to \"NONE\".\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
msgstr ""
-"Autoriser:\n"
+"Plus d'une partition Windows ont été détecté sur votre disque dur. SVP,\n"
+"veuillez choisir celle que vous voulez pour votre nouvelle installation de\n"
+"Mandrake Linux.\n"
+"\n"
+"Chaque partition est identifié comme suit: \"Nom linux\", \"Nom Windows\",\n"
+"\"Capacité\".\n"
"\n"
-"- tous les services contrôlés par tcp_wrappers (voir hosts.deny(5)) si "
-"« TOUS »,\n"
+"Le \"Nom\" est structuré ainsi : \"type de disque dur\", \"numéro du disque\n"
+"dur\", \"numéro de partition\". Par exemple, « hda1 ».\n"
"\n"
-"- seulement ceux qui sont locaux si « LOCAL »\n"
+"Le \"Type de disque dur\" correspond à hd si votre disque est IDE. Pour un\n"
+"disque SCSI, vous lirez \"sd\".\n"
"\n"
-"- aucun si « NONE ».\n"
+"Le numéro du disque est toujours listée après le \"hd\" ou \"fd\". Pour les\n"
+"disque IDE :\n"
"\n"
-"Pour autoriser les services dont vous avez besoin, utilisez\n"
-"/etc/hosts.allow (voir hosts.allow(5)."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr "Libye"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"Configuration des scripts, installation des logiciels, démarrage des "
-"serveurs..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Imprimante sur le port parallèle %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+" * \"a\" signifie \"disque primaire maître sur le premier contrôleur IDE\";\n"
"\n"
-"- Burn to CD"
-msgstr ""
+" * \"b\" signifie le \"disque primaire esclave sur le premier contrôleur\n"
+"IDE\";\n"
"\n"
-"- Graver le CD"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "Table des partitions"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Impossible de formater %s au format %s"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Model"
-msgstr "Modèle"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "USB printer #%s"
-msgstr "Imprimante USB %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Stop Server"
-msgstr "Arrêter le serveur"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
+" * \"c\" indique le \"disque primaire maître sur le second contrôleur\n"
+"IDE\";\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
+" * \"d\" signifie le \"disque primaire esclave sur le second contrôleur\n"
+"IDE\";\n"
"\n"
-"Sélectionnez un thème pour LILO\n"
-"et l'image pendant l'amorçage,\n"
-"vous pouvez les choisir \n"
-"séparément"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Modem"
-msgstr "Modem"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr "Tuvalu"
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr "Utiliser la détection automatique"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
-msgstr ""
-"GPM permet d'utiliser la souris dans des applications fonctionnant en mode "
-"texte dans la console (comme par exemple Midnight Commander). Il permet "
-"également d'utiliser le copier-coller et inclut le support des menus "
-"contextuels sur la console."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr "Lancer au démarrage"
-
-#: ../advertising/12-mdkexpert.pl:1
-#, 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:"
-msgstr ""
-"Rejoignez les équipes de support de MandrakeSoft et la communauté Linux. "
-"Partagez vos connaissances et aidez les autres en devenant un Expert reconnu "
-"sur le site Web de support technique :"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "No password aging for"
-msgstr "Pas de délai d'expiration des mots de passe pour"
-
-#: ../../standalone/draksec:1
-#, 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"
-msgstr ""
-"Les options suivantes permettent de personnaliser la sécurité de votre "
-"système.\n"
-"Si vous avez besoin d'explications, jetez un oeil aux bulles d'aide.\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr ""
-"Trouver automatiquement des imprimantes disponibles sur des machines "
-"distantes."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr "Timor Oriental"
+"Avec les disques SCSI, le \"a\" indique le plus petit SCSI ID, et ainsi de\n"
+"suite.\n"
+"\n"
+"\"Windows name\" c'est la lettre assignée à votre disque, (le premier disk\n"
+"ou partition \"C:\")"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
-msgstr "sur Lecteur de Bande "
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
+msgstr "Veuillez patienter. Cette opération peut prendre plusieurs minutes."
-#: ../../standalone/drakbackup:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:547
msgid ""
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
"\n"
-"- Save to Tape on device: %s"
-msgstr ""
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
"\n"
-"- Sauvegarde sur bande via le périphérique : %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Login name"
-msgstr "Identifiant de connexion"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
-msgstr "Rechercher les fichiers n'appartenant à aucun utilisateur"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr "Effacer le profil..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing Foomatic..."
-msgstr "Installation de Foomatic..."
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr ""
-"Veuillez vous déconnecter puis presser simultanément les touches Ctrl-Alt-"
-"BackSpace"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected"
-msgstr "détecté"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "Le réseau doit être redémarré. Souhaitez-vous le redémarrer ?"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Package: "
-msgstr "Paquetage : "
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr "Impossible d'écrire dans /etc/sysconfig/bootsplash."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr "ALERTE DE SÉCURITÉ !"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "StarOffice"
-msgstr "StarOffice"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
-msgstr "Ne pas connecter automatiquement un utilisateur"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
-msgstr "Outil de migration windows"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "All languages"
-msgstr "Toutes les langues"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removing %s"
-msgstr "Suppression de %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s not found...\n"
-msgstr "%s introuvable...\n"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Testing your connection..."
-msgstr "Test de votre connexion..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cache size"
-msgstr "Taille du cache"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Les mots de passe sont maintenant requis. Pour autant, il n'est pas\n"
-"recommandé d'utiliser cette machine sur un réseau."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr "Secteur de début : "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr "Congo (Brazzaville)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Read"
-msgstr "Lecture"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Le paquetage %s doit être installé. Souhaitez-vous l'installer ?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
-msgstr "Seychelles"
-
-#: ../../printer/printerdrake.pm:1
-#, 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"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
"\n"
-"For your printer Printerdrake has found:\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
"\n"
-"%s"
-msgstr ""
-"Le nom de modèle résultant de l'autodétection a été comparée à la base de "
-"données d'imprimantes pour trouver la meilleure correspondance. Ce choix "
-"peut être mauvais, particulièrement si votre modèle d'imprimanten'apparaît "
-"pas dans la base de données. Vérifiez ce choix, puis cliquez sur« Le modèle "
-"est correct », ou le cas échéant sur « Sélectionner manuellement le "
-"modèle ».\n"
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
"\n"
-"Votre imprimante a été détectée comme étant :\n"
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
"\n"
-"%s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Bad password on %s"
-msgstr "Mauvais mot de passe sur %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
"\n"
-"There is one unknown printer directly connected to your system"
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
msgstr ""
+"DrakX doit maintenant savoir quel type d'installation vous désirez\n"
+"réaliser. Deux types d'installations sont proposés : Par défaut (« \n"
+"Recommandée »), qui limite le nombre de questions à l'utilisateur au\n"
+"minimum ou « Expert » qui vous permet de sélectionner individuellement\n"
+"chacune des composantes à installer. Également, on vous propose de faire\n"
+"une « Installation » ou une « Mise à jour » d'un système Mandrake Linux\n"
+"existant :\n"
+"\n"
+" * « Installation » : balaye l'ancien système. En fait, selon ce que votre\n"
+"machine comporte, vous pourrez garder intacte certaines des anciennes\n"
+"partition (Linux ou autres) ;\n"
+"\n"
+" * « Mise à jour » : cette classe d'installation permet de simplement\n"
+"mettre à jours les paquetages qui composent votre système Mandrake Linux.\n"
+"Elle conserve les partitions existantes, ainsi que la configuration des\n"
+"utilisateurs. Toutes les autres étapes de l'installation sont accessibles\n"
+"en comparaison avec une installation classique ;\n"
+"\n"
+" * « Mise à jour des paquetages uniquement » : Cette nouvelle classe\n"
+"d'installation permet de mettre à jour un système Mandrake Linux existant,\n"
+"tout en gardant sa configuration inchangée. L'ajout de nouveaux paquetages\n"
+"durant la mise à jour est cependant possible.\n"
"\n"
-"Il y a une imprimante inconnue connectée à votre machine"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Control key"
-msgstr "Touche Contrôle droite"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"Insérez une disquette formatée en FAT dans le lecteur %s avec %s dans\n"
-"le répertoire racine, puis appuyez sur %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "Zambie"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr "Administrateur sécurité (nom d'utilisateur ou adresse de courriel)"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr "Désolé, nous ne prenons en charge que les noyaux (kernel) 2.4."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwerty)"
-msgstr "Roumain (QWERTY)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
-msgstr "En développement ... veuillez patienter."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "Égypte"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "République Tchèque"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "Carte son"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Import Fonts"
-msgstr "Importation de polices"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Votre disque possède une seule grosse partition Windows.\n"
-"Vous devriez la réduire pour pouvoir créer d'autres partitions :\n"
-"cliquez sur la partition puis sur « Redimensionner »."
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
-msgstr "Supprimer les fichiers temporaires"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+"La mise à jour devrait fonctionner correctement pour les système Mandrake\n"
+"Linux à partir de la version « 8.1 ».\n"
"\n"
-msgstr "Félicitations, la configuration internet et réseau est terminée.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "Changement du type de partition"
+"Selon votre niveau d'expertise avec les systèmes d'exploitations GNU/Linux,\n"
+"il faut choisir l'un des deux types d'installations suivants:\n"
+"\n"
+" * « Recommandée »: choisissez cette option si vous n'avez jamais installé\n"
+"de système d'exploitation GNU/Linux. C'est la méthode la plus facile, la\n"
+"plupart des choix ont déjà été fait pour vous.\n"
+"\n"
+" * Expert: si vous avez une bonne connaissance de GNU/Linux, vous pouvez\n"
+"choisir ce type d'installation. Cette méthode vous permettra de\n"
+"personnaliser l'ensemble des composantes de votre système. Ces questions\n"
+"peuvent s'avérer complexes, particulièrement en matière de partitionnement\n"
+"et du choix des paquetages installés. En conséquence, il n'est pas\n"
+"recommandé de s'y aventurer sans de bonnes connaissances au préalable.\n"
+"\n"
+"Le présent manuel s'efforce de documenter l'ensemble des classes proposées\n"
+"dans le mode « Expert ». Si vous avez choisi le mode « Recommandée »,\n"
+"ignorez simplement les étapes identifiées seulement au mode « Expert »."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:582
msgid ""
-"Resolution\n"
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\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 ""
-"Résolution\n"
+"Click on the \"More\" button to be presented with the complete list of\n"
+"supported keyboards.\n"
"\n"
-" Vous pouvez choisir ici la résolution et nombre de couleur parmi celles\n"
-"disponibles pour votre matériel. Choisissez la configuration optimale pour\n"
-"votre utilisation (vous pourrez néanmoins modifier cela après\n"
-"l'installation). Un échantillon de la configuration choisie apparaît dans\n"
-"le moniteur stylisé."
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Network Options"
-msgstr "Options réseau"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable msec hourly security check"
-msgstr "Activer les vérifications de msec toutes les heures"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Display theme\n"
-"under console"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
msgstr ""
-"Affiche le thème\n"
-"dans la console"
-
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on %s)"
-msgstr "(sur %s)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Une bibliothèque qui protège contre les attaques par débordement de pile.\n"
-"(les plus fréquentes)"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr "moyenne"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "New printer name"
-msgstr "Nouveau nom de l'imprimante"
+"Normalement, DrakX sélectionne le clavier approprié en fonction de la\n"
+"langue choisie et vous ne devriez pas voir cette étape. Cela dit, il est\n"
+"possible que vous ayez un clavier ne correspondant pas exactement à votre\n"
+"langue d'utilisation. Par exemple, si vous habitez le Québec et parlez le\n"
+"français et l'anglais, vous pouvez vouloir avoir votre clavier anglais pour\n"
+"les tâches d'administration système et votre clavier français pour écrire\n"
+"de la poésie. Dans ces cas, il vous faudra revenir à cette étape\n"
+"d'installation et sélectionner un autre clavier à partir de la liste.\n"
+"\n"
+"Vous n'avez qu'a choisir la disposition de clavier qui vous convient.\n"
+"\n"
+"Cliquez sur « Davantage » pour voir toutes les options proposées.\n"
+"\n"
+"Si vous choisissez un clavier basé sur un alphabet non-latin, on vous\n"
+"demandera au prochain écran de choisir la combinaison de clés permettant\n"
+"d'alterner entre ceux-ci."
-#: ../../fs.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:598
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 )."
+"The first step is to choose your preferred language.\n"
+"\n"
+"Please choose your preferred language for installation and system usage.\n"
+"\n"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
+"\n"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
-"Permet à un utilisateur ordinaire de monter le système de fichier. Le\n"
-"jom de l'utilisateur est écrit dans mtab de telle façon qu'il puisse\n"
-"démonter le système de fichier ensuite. Cette option implique les\n"
-"options noxec, nosuid, et nodev (à moins que ces dernières soit\n"
-"désactivée par les options suivantes comme dans l'exemple suivant:\n"
-"\"user,exec,dev,suid)."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
-msgstr "Guinée Équatoriale"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup System"
-msgstr "Sauvegarder le système"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Build Backup"
-msgstr "Sauvegarder !"
+"La première étape consiste à choisir votre langue.\n"
+"\n"
+"Veuillez choisir votre langue de communication. Celle-ci sera utilisée\n"
+"durant le processus d'installation, ainsi que durant les mises à jour de\n"
+"votre système.\n"
+"\n"
+"En cliquant sur « Avancé », le programme vous proposera également d'autres\n"
+"langues pouvant être installées sur votre station de travail. En\n"
+"choisissant d'autres langues, le programme vous installera toute la\n"
+"documentation et les applications nécessaires à l'utilisation de cette\n"
+"autre langue. Par exemple, si vous prévoyez d'accueillir des utilisateurs\n"
+"d'Espagne sur votre serveur, choisissez l'anglais comme langue principale,\n"
+"et, dans la section avancée, cliquez sur l'étoile grise correspondant à\n"
+"Spanish|Spain.\n"
+"\n"
+"Sachez que plusieurs langues peuvent être installées. Une fois votre\n"
+"sélection complète terminée, cliquez sur « OK » pour continuer."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:617
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
+"\n"
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
+"\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
msgstr ""
-"Pour imprimer un fichier depuis la ligne de commande (une fenêtre de "
-"terminal), utilisez la commande « %s <fichier> » ou « %s <fichier> ».\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr "Il n'y a pour l'instant pas de solution alternative"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Romanian (qwertz)"
-msgstr "Roumain (QWERTZ)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Write Config"
-msgstr "Écrire la configuration"
+"DrakX détecte généralement le nombre de boutons de votre souris. Sinon, il\n"
+"prend pour acquis que vous avez une souris à deux boutons et configurera\n"
+"l'émulation du troisième bouton. Également, DrakX saura automatiquement si\n"
+"vous avez une souris PS/2, série ou USB.\n"
+"\n"
+"Si vous désirez installer une souris différente, veuillez la sélectionner à\n"
+"partir de la liste qui vous est proposée.\n"
+"\n"
+"Si vous sélectionnez une souris différente de celle choisie par défaut,\n"
+"DrakX vous présentera un écran de test. Utilisez les boutons et la roue\n"
+"pour vous assurer que tout fonctionne correctement. Si votre souris ne\n"
+"fonctionne pas normalement, appuyer sur la barre d'espacement ou [Entrée]\n"
+"ou encore « Annuler », puis, sélectionner une autre souris."
-#: ../../services.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:638
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."
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"Le service routed permet la mise à jour automatique des tables de routage IP "
-"grâce au protocole RIP. Bien que RIP soit très utilisé sur les petits "
-"réseaux, des protocoles de routage plus complets sont nécessaires pour les "
-"réseaux de plus grande taille. "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr "Kiribati"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Souris Logitech (série, ancien modèle C7) avec émulation de la molette"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
-msgstr "D'autres clefs (pas celles de drakbackup) sont déjà en place"
+"Sélectionnez le bon port série. Par exemple: l'équivalent du port « COM1 »\n"
+"sur Windows, se nomme « ttyS0 » sous GNU/Linux."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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"
+#: ../../help.pm_.c:642
+msgid ""
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\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"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
"\n"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
"\n"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
"\n"
-"Monitor\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\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"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
+msgstr ""
+"Vous avez à prendre ici une décision cruciale pour la sécurité de votre\n"
+"système. L'utilisateur « root » est l'administrateur du système qui a tous\n"
+"les droits d'accès aux fichiers de configuration, etc. Il est donc\n"
+"impératif de choisir un mot de passe difficile à deviner (pensez aux\n"
+"systèmes prévus à cet effet qui anticipent les combinaisons communes des\n"
+"utilisateurs). DrakX vous avertira si le mot de passe entré est trop facile\n"
+"à deviner. Comme vous pouvez le voir, il est également possible de ne pas\n"
+"entrer de mot de passe. Nous déconseillons fortement cette pratique. Comme\n"
+"l'erreur est humaine, un utilisateur avec tous les droits peut tout\n"
+"détruire sur votre système, c'est pourquoi le mot de passe doit agir comme\n"
+"barrière à l'entrée.\n"
"\n"
+"Le mot de passe choisi devrait contenir au moins 8 caractères\n"
+"alphanumériques. Ne jamais écrire un mot de passe, forcez-vous à vous en\n"
+"souvenir par coeur. Il faut donc ménager accessibilité et mémoire, donc un\n"
+"mot de passe de 30 caractères est presque impossible à mémoriser.\n"
"\n"
-"Resolution\n"
+"Afin d'éviter les regards indiscrets, le mot de passe n'apparaîtra pas à\n"
+"l'écran. Il vous faudra donc l'inscrire deux fois afin d'éviter les erreurs\n"
+"de frappe. Évidemment, si vous faites deux fois la même erreur, celle-ci\n"
+"sera sauvegardée et vous devrez la reproduire afin d'accéder à votre\n"
+"système pour la première fois.\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"
+"En mode expert, on vous demandera si vous comptez vous connecter sur un\n"
+"serveur d'authentification, tel que NIS ou LDAP. Si votre réseau utilise un\n"
+"de ces protocoles, il faut le sélectionner. Si vous n'en avez aucune idée,\n"
+"demandez à votre administrateur de réseau.\n"
"\n"
+"Si votre ordinateur n'est pas connecté sur un réseau administré, vous devez\n"
+"choisir « Fichiers Locaux » pour l'authentification.\n"
"\n"
+"En mode expert, on vous demanderas si vous vous connecterez sur un serveur\n"
+"d'authentification tel que NIS ou LDAP.\n"
"\n"
-"Test\n"
+"Si votre réseau utilises soit LDAP, NIS, ou un PDC Windows, choisissez-le\n"
+"comme protocole d'authentification. En cas de doute, demandez à votre\n"
+"administrateur réseau.\n"
"\n"
-" 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"
+"Si votre poste n'est pas sur un réseau, choisissez « Fichiers Locales »\n"
+"pour l'authentification."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:678
+msgid ""
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\n"
"\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, 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"
-"Options\n"
+"if in doubt, DrakX will display a dialog with various options.\n"
"\n"
-" Here you can choose whether you want to have your machine automatically\n"
-"switch to a graphical interface at boot. Obviously, you want to check\n"
-"\"%s\" if your machine is to act as a server, or if you were not successful\n"
-"in getting the display configured."
-msgstr ""
-"X (pour le système X Window) est le coeur de votre interface graphique sous\n"
-"GNU/Linux. Tous les environnements graphiques (KDE, GNOME, WindowMaker\n"
-"etc.) présents sur Mandrake Linux dépendent de X.\n"
+" * \"Bootloader to use\": you have three choices:\n"
"\n"
-"Il vous sera présenté la liste de divers paramètres à changer pour obtenir\n"
-"un affichage optimal : Carte graphique\n"
+" * \"GRUB\": if you prefer grub (text menu);\n"
"\n"
-" Le programme d'installation détecte et configure automatiquement les\n"
-"cartes graphiques présentes sur votre machine. Si ce n'est pas le cas, vous\n"
-"pouvez choisir dans cette liste la carte que vous utilisez effectivement.\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\n"
"\n"
-" Dans le cas où différents serveurs seraient disponible pour votre carte,\n"
-"avec ou sans accélération 3D, il vous est alors proposé de choisir le\n"
-"serveur qui vous conviendra le mieux.\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
"\n"
-"Moniteur\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\n"
"\n"
-" Le programme d'installation détecte et configure automatiquement les\n"
-"moniteurs connectés à votre unité centrale. Si ce n'est pas le cas, vous\n"
-"pouvez choisir dans cette liste le moniteur que vous utilisez\n"
-"effectivement.\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
+msgstr ""
+"LILO et grub sont deux programmes d'amorce pour GNU/Linux. Cette étape est\n"
+"normalement complètement automatique. En fait, DrakX analyse le secteur de\n"
+"démarrage (master boot record) et agit en fonction de ce qu'il peut y lire\n"
+":\n"
"\n"
+" * Si un secteur de démarrage Windows est détecté, il va être remplacer par\n"
+"LILO/GRUB. Donc, vous serez capable de démarrer GNU/Linux et tout autre\n"
+"système d'exploitation.\n"
"\n"
+" * si GRUB ou LILO est détecté, il sera remplacé par la nouvelle version;\n"
"\n"
-"Résolution\n"
+"En cas de doute, DrakX affiche différentes options.\n"
"\n"
-" Vous pouvez choisir ici la résolution et nombre de couleur parmi celles\n"
-"disponibles pour votre matériel. Choisissez la configuration optimale pour\n"
-"votre utilisation (vous pourrez néanmoins modifier cela après\n"
-"l'installation). Un échantillon de la configuration choisie apparaît dans\n"
-"le moniteur stylisé.\n"
+" * « Programme d'amorçage à utiliser » vous propose trois choix :\n"
"\n"
+" * « GRUB » : si vous préférer GRUB (menu texte).\n"
"\n"
+" * « LILO en mode graphique » : si vous préférez l'interface graphique.\n"
"\n"
-"Test\n"
+" * « LILO en mode texte » : si vous préférez la version texte de LILO.\n"
"\n"
-" le système va ici essayer d'ouvrir un écran graphique à la résolution\n"
-"choisie. Si vous pouvez voir le message pendant le test, et répondez\n"
-"« %s », alors DrakX passera à l'étape suivante. Si vous ne pouvez pas voir\n"
-"de message, cela signifie que vos paramètres sont incompatibles, et le test\n"
-"terminera automatiquement après 12 secondes. Changez la configuration\n"
-"jusqu'à obtenir un affichage correct lors du test.\n"
+" * « Périphériques de démarrage »: dans la plupart des cas, vous n'aurez\n"
+"pas à changer le disque par défaut (« /dev/hda », mais si vous le désirez,\n"
+"le programme d'amorce peut être installé sur un second disque,\n"
+"« /dev/hdb », ou même sur une disquette, « /dev/fd0 ».\n"
"\n"
+" * « Délais avant l'activation du choix par défaut »: au redémarrage de\n"
+"l'ordinateur, il s'agit du temps accordé à l'utilisateur pour démarrer un\n"
+"autre système d'exploitation.\n"
"\n"
+"!! Prenez garde, si vous décidez de ne pas installer de programme d'amorce\n"
+"(en cliquant sur « Annuler »), vous devez vous assurez d'avoir une méthode\n"
+"pour démarrer le système. Aussi, assurez vous de bien savoir ce que vous\n"
+"faites si vous modifiez les options. !!\n"
"\n"
-"Options\n"
+"En cliquant sur « Avancée », vous aurez accès à plusieurs autres options de\n"
+"configuration. Sachez que celles-ci sont réservées aux experts en la\n"
+"matière.\n"
"\n"
-" Vous pourrez finalement choisir ici de démarrer l'interface graphique au\n"
-"lancement de la machine. Il est préférable de choisir « %s » si vous êtes\n"
-"en train d'installer un serveur, ou si vous n'avez pas réussi à configurer\n"
-"l'écran correctement."
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr "Naviguer"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
-msgstr "CD-Rom"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Souhaitez-vous vous connecter à Internet maintenant ?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "Belge"
+"Si vous avez d'autres systèmes d'exploitation installés sur votre\n"
+"ordinateur, ils seront automatiquement détectés et ajout à vos menus de\n"
+"démarrage. À cette étape, vous pouvez décider de préciser ces options. En\n"
+"double-cliquant sur une entrée existante vous pourrez la paramétrer à votre\n"
+"guise, ou l'enlever. « Ajouter » permet de créer de nouvelles entrées, et\n"
+"« terminer » vous conduit à la prochaine étape d'installation."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "Possédez-vous une carte son ISA ?"
-
-#: ../../network/ethernet.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:718
msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"Aucune carte réseau n'a été détectée sur votre système.\n"
-"La connexion ne peut donc pas être configurée."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Windows"
-msgstr "Windows"
-
-#: ../../common.pm:1
-#, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "Impossible de faire des captures d'écran avant le partitionnement"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Name"
-msgstr "Nom d'hôte"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Fichier/_Enregistrer sous"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"only need to turn on the \"Automatically find available printers on remote "
-"machines\" option; the CUPS servers inform your machine automatically about "
-"their printers. All printers currently known to your machine are listed in "
-"the \"Remote printers\" section in the main window of Printerdrake. If your "
-"CUPS server(s) is/are not in your local network, you have to enter the IP "
-"address(es) and optionally the port number(s) here to get the printer "
-"information from the server(s)."
-msgstr ""
-"Pour obtenir l'accès aux imprimantes situées sur des serveurs CUPS distants "
-"de votre réseau local, vous avez seulement besoin d'activer l'option "
-"\"Trouver automatiquement des imprimantes disponibles sur des machines "
-"distantes\". Les serveurs CUPS informent votre machine automatiquement sur "
-"leurs imprimantes. Toutes les imprimantes actuellement connues par votre "
-"machine sont listées dans la section \"Imprimantes distantes\" dans la "
-"fenêtre principale de Printerdrake. Si les serveurs CUPS ne sont pas dans "
-"votre réseau local, vous devez entrer leur adresse IP et optionnellement "
-"leur numéro de port, afin d'obtenir des informations sur les imprimantes qui "
-"y sont connectées."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
-msgstr "%s n'est pas dans la base des scanners, configuration manuelle ?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
-msgstr "Délai avant l'activation du choix par défaut"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Restrict command line options"
-msgstr "Protéger par mot de passe les options"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "East Europe"
-msgstr "Europe de l'est"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "Utiliser l'espace libre"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "utiliser « dhcp »"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
-msgstr "Alerte par courrier"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Internet configuration"
-msgstr "Configuration de l'accès Internet"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr "Ouzbékistan"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected %s"
-msgstr "Détecté %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _printers"
-msgstr "/Auto-détecter les _imprimantes"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "Terminer"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
-msgstr "Montrer les paquetages sélectionnés automatiquement"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Togo"
-msgstr "Togo"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "CPU flags reported by the kernel"
-msgstr "Drapeaux processeurs indiqués par du noyau"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Quelque chose s'est mal passé ! mkisofs est-il bien installé ?"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "16 Mo"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "Veuillez réessayer"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The model is correct"
-msgstr "Le modèle est correct"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Le redimensionnement de la partition FAT a échoué : %s"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr "Sélection individuelle des paquetages"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr "Cette partition ne peut pas être redimensionnée"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr "Emplacement"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr "USA (câble ou HRC)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr "SF journalisé"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr "Activer la vérification du mode espion des cartes réseau"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
-msgstr "Cette machine"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Lettre de lecteur DOS supposée : %s:\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
-msgstr "Bahreïn"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr "Sélectionnez les fichiers ou dossiers puis cliquez sur « OK »"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit scsi modules"
-msgstr "ne pas tenir compte des modules SCSI"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr "famille du processeur (exemple : 6 pour la classe des i686)"
+"Après avoir configurer les paramètres généraux de LILO ou grub la liste des\n"
+"options de démarrage sera rendu disponible au démarrage.\n"
+"\n"
+"Si un autre système d'exploitation est détecté, il sera automatiquement\n"
+"ajouté au menu démarrage. Vous pouvez ici raffinée votre configuration.\n"
+"Choisissez une entrée, cliquez « Modifier » pour l'éditer ou la retirer;\n"
+"sur « Ajouter » créer une nouvelle entrée, finalement « Terminer » vous\n"
+"permet de passé à la prochaine étape.\n"
+"\n"
+"Il est possible que vous vouliez limiter l'accès à ce système\n"
+"d'exploitation. Il vous suffit de retirer l'entrée dans les options de\n"
+"démarrage et démarrer ce système avec une disquette."
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../help.pm_.c:732
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"
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\n"
+"\n"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
msgstr ""
-"Comme vous êtes en train de faire une installation réseau,\n"
-" cela veut dire que votre réseau est déjà configuré.\n"
-"Cliquez sur <Ok> pour conserver votre configuration,\n"
-"ou sur <Annuler> pour reconfigurer votre connexion internet et réseau.\n"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
-msgstr "Effectue les vérifications quotidiennes de sécurité"
+"Vous devez maintenant choisir où placer le programme d'amorçage, LILO ou "
+"Grub,\n"
+"nécessaire au démarrage de GNU/Linux.\n"
+"\n"
+"À moins de savoir exactement ce que vous faites, choisissez\n"
+"toujours « Premier secteur du disque (MBR) »."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Type de clavier : %s\n"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:739
+msgid ""
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
+"\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
+"\n"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
+msgstr ""
+"Il faut choisir ici un système d'impression pour votre ordinateur. D'autre\n"
+"OSs offrent un, Mandrake Linux en propose trois.\n"
+"\n"
+" * « pdq » - qui veut dire « print, don't queue », (ou, impression sans\n"
+"passer par la file d'attente) est un bon choix si votre imprimante est\n"
+"branchée directement sur votre poste et que vous voulez pouvoir arrêter\n"
+"l'impression directement en cas de problème et que vous n'avez pas\n"
+"d'imprimantes réseau. Il prendra en charge de simples cas en réseau, mais\n"
+"les performances sont plutôt mauvaise dans ces cas. Choisissez pdq si vous\n"
+"êtes à une première expérience avec Linux. Vous pourrez toujours changer de\n"
+"système plus tard avec PrinterDrake à partir du Mandrake Control Center en\n"
+"cliquant sur « Expert ».\n"
+"\n"
+" * « CUPS » - « Common Unix Printing System », est fabuleux tant pour\n"
+"imprimante local que pour imprimer à l'autre bout du monde. C'est simple et\n"
+"il peu agir comme serveur ou un client avec l'ancien système d'impression\n"
+"« lpd ». Il s'agit d'un outil très puissant, mais les configurations de\n"
+"bases sont aussi simple que pdq. Pour émuler un serveur lpq, partez le\n"
+"deamon cups-lpq. Finalement, cups offre une interface simple pour imprimer\n"
+"et choisir les imprimantes.\n"
+"\n"
+" * « lprNG » - « line printer daemon New Generation ». Ce système permet\n"
+"essentiellement les mêmes fonctionnalités que les précédents, avec la\n"
+"particularité de pouvoir interface avec un réseau Novell, à travers le\n"
+"protocole IPX et le support pour l'impression directement de la ligne de\n"
+"commande. Donc, si vous devez imprimer dans un réseau Novell ou de la ligne\n"
+"de commande sans redirection, choisissez lprNG. Si non, CUPS est plus\n"
+"facile et plus efficace sur les réseaux."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:759
msgid ""
-"Here you can choose whether the printers connected to this machine should be "
-"accessable by remote machines and by which remote machines."
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"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 does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
+"\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
msgstr ""
-"Vous pouvez ici choisir si les imprimantes connectées à cette machine "
-"doivent être accessibles depuis des machines distantes, et quelles machines "
-"pourront y accéder."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
-msgstr "Maltais (US)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "La création de la disquette de démarrage a été menée avec succès\n"
+"DrakX détecte maintenant tous les périphériques IDE présents sur votre\n"
+"système. Également, DrakX recherchera les périphériques SCSI. Finalement,\n"
+"selon les composantes détectées, DrakX installera tous les pilotes\n"
+"nécessaires à son fonctionnement.\n"
+"\n"
+"Compte tenu de la vaste gamme de périphériques disponibles sur le marché,\n"
+"dans certain cas la détection de matériel ne fonctionnera pas. Dans ce cas,\n"
+"DrakX vous demandera de confirmer si des composantes SCSI sont présentes\n"
+"sur votre système. Cliquez sur « Oui » si vous êtes certain d'avoir un\n"
+"périphérique SCSI sur votre système. DrakX vous présentera alors une liste\n"
+"de carte SCSI disponibles. Sélectionnez la vôtre. Évidement, cliquez sur\n"
+"« Non », si vous n'en avez pas. Si vous n'êtes pas certain, cliquez sur\n"
+"« Voir les informations sur le matériel », puis sur « OK ». Vérifiez la\n"
+"liste du matériel, puis cliquez sur « OK » pour retourner à la question\n"
+"concernant les périphériques SCSI.\n"
+"\n"
+"Si vous devez spécifier votre carte SCSI manuellement, DrakX vous demandera\n"
+"de confirmer les options du périphérique. Vous devriez permettre à DrakX de\n"
+"vérifier automatiquement votre carte pour les options nécessaires à\n"
+"déterminer.\n"
+"\n"
+"Il peut arriver que DrakX soit incapable de vérifier les options\n"
+"nécessaires. Dans ce cas, vous devrez les déterminer manuellement."
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:781
msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
+"\n"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\n"
+"\n"
+"For Linux, there are a few possible options:\n"
+"\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
+"\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
+"\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
+"\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
+"\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"hda=autotune\n"
+"\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
+"\n"
+" * Initrd: this option can be used either to load initial modules, before\n"
+"the boot device is available, or to load a ramdisk image for an emergency\n"
+"boot situation;\n"
+"\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
+"\n"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
+"\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support;\n"
+"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
msgstr ""
-"Montage et démontage de tous les dossiers partagés: systèmes de fichiers\n"
-"distants (NFS), SMB (Lan Manager/Windows), et NCP (Netware)."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Launch the wizard"
-msgstr "Lancer l'assistant"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Tvcard"
-msgstr "Carte TV"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Toggle between normal/expert mode"
-msgstr "Bassculer entre les modes expert et normal"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr "Taille"
-
-#: ../../help.pm:1
-#, c-format
-msgid "GRUB"
-msgstr "GRUB"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr "Groenland"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "Jeudi"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
-msgstr "Ce n'est pas la bonne bande. Celle-ci s'appelle %s."
+"Vous pouvez ajouter des entrées supplémentaires dans « yaboot », soit\n"
+"pour démarrer un autre système d'exploitation, soit pour des noyaux de\n"
+"secours.\n"
+"\n"
+"Pour les autres systèmes, l'entrée consiste en un label et la partition "
+"racine.\n"
+"\n"
+"Pour Linux, voici les options possibles :\n"
+"\n"
+"- label : le nom que vous devrez taper au message d'invite de yaboot pour\n"
+"activer cette option d'amorçage. \n"
+"\n"
+"- racine : le périphérique racine ou « / » pour votre installation Linux. \n"
+"\n"
+"- options passées au noyau : sur les matériels Apple, des options sont\n"
+" souvent transmises au noyau pour l'initialisation de la carte graphique,\n"
+"ou pour activer l'émulation (au clavier) des deux boutons qui manquent\n"
+"souvent aux souris d'Apple. Voici quelques exemples : \n"
+"\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+"hda=autotune\n"
+"\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
+"\n"
+"- Fichier RamDisk : cette option peut être utilisée pour charger des\n"
+"modules avant que le périphérique d'amorçage ne soit disponible, ou\n"
+"pour charger une image ramdisk pour un démarrage de secours.\n"
+"\n"
+"- Taille du RamDisk : la taille par défaut est généralement de 4096 octets.\n"
+"Si vous voulez une taille plus grande, utilisez cette option.\n"
+"- Préactivé en écriture : normalement, la partition racine est initialement\n"
+"montée en mode lecture seulement, pour vérifier le système de fichier\n"
+"avant qu'il ne soit activé. Avec cette option, vous pouvez autoriser la\n"
+"partition racine à être montée directement en mode écriture.\n"
+"\n"
+"- NoVideo : si la carte graphique devait poser trop de problèmes, vous \n"
+"pouvez activer cette option pour démarrer en mode « framebuffer » natif.\n"
+"\n"
+"- Defaut : sélectionne cette entrée comme choix par défaut, activé en \n"
+"pressant juste <ENTREE> au message d'invite de « yaboot ». C'est cette\n"
+"entrée qui sera alors précédée d'un « * », si vous pressez <Tab> pour voir\n"
+"la liste des possibilités."
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../help.pm_.c:828
msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
"\n"
-"What would you like to do?"
+"Yaboot's main options are:\n"
+"\n"
+" * Init Message: a simple text message displayed before the boot prompt;\n"
+"\n"
+" * Boot Device: indicates where you want to place the information required\n"
+"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
+"to hold this information;\n"
+"\n"
+" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+"yaboot. The first delay is measured in seconds and at this point, you can\n"
+"choose between CD, OF boot, MacOS or Linux;\n"
+"\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
+"\n"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\n"
+"\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
+"\n"
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
msgstr ""
-"La configuration du partage de la connexion à Internet a déjà été\n"
-"effectuée. Elle est actuellement activée.\n"
+"« Yaboot » est un programme d'amorçage pour les MacIntosh dotés de\n"
+"l'architecture NewWorld (iMac, G3, G4, PowerBook G3 Series 99, iBook, etc.)\n"
+"Il est capable de faire démarrer GNU/Linux, MacOS, ou MacOSX, si\n"
+"ces systèmes sont présents sur votre ordinateur. Normalement, les\n"
+"systèmes d'exploitation déjà présents devraient avoir été détectés.\n"
+"Si ce n'est pas le cas, vous pouvez ajouter manuellement l'entrée manquante\n"
+"sur cet écran. Veuillez faire attention de choisir les bons paramètres.\n"
"\n"
-"Que souhaitez-vous faire ?"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete All NBIs"
-msgstr "Effacer toutes les NBI"
+"Les principales options de Yaboot sont :\n"
+"\n"
+"- Message de démarrage : un simple texte, affiché avant l'amorçage.\n"
+"\n"
+"- Périphérique d'amorçage : indique où vous souhaitez installer le\n"
+"programme d'amorçage. Généralement, vous aurez configuré auparavant\n"
+"une partition d'amorçage (bootstrap) pour contenir ces informations.\n"
+"\n"
+"- Délai de l'OpenFirmware : à la différence de LILO, il y a deux\n"
+"délais disponibles avec Yaboot. Pendant le premier (mesuré en secondes),\n"
+"vous pouvez choisir entre CD, OF, MacOS, et Linux.\n"
+"\n"
+"- Délai d'amorçage du noyau : ce délai est similaire à celui de\n"
+"LILO. Après avoir sélectionné Linux, vous aurez ce délai (en dixièmes\n"
+"de seconde) avant d'accepter les paramètres noyau par défaut.\n"
+"\n"
+"- Autoriser l'amorçage sur CD ? : si vous activez cette option, vous\n"
+"pourrez choisir 'C', pour le CD, à la première invite d'amorçage.\n"
+"\n"
+"- Autoriser l'amorçage sur l'OF ? : si vous activez cette option, vous\n"
+"pourrez choisir 'N' pour l'OpenFirmware à la première invite d'amorçage.\n"
+"\n"
+"- choix par défaut : vous pouvez sélectionner quel système démarrera par\n"
+"défaut après expiration du délai de l'Open Firmware."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:860
+#, fuzzy
msgid ""
-"This dialog allows you to fine tune your bootloader:\n"
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
"\n"
-" * \"%s\": there are three choices for your bootloader:\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
"\n"
-" * \"%s\": if you prefer grub (text menu).\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
"\n"
-" * \"%s\": if you prefer LILO with its text menu interface.\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
-" * \"%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"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\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"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\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"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\n"
"\n"
-"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
-"are normally reserved for the expert user."
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
msgstr ""
-"Ce dialogue permet de contrôler finement le chargeur de démarrage :\n"
+"On vous présente ici les différents paramètres de votre système. Selon le\n"
+"matériel installé, certaines entrées seront présentes et d'autres pas.\n"
"\n"
-" * « %s » vous propose trois choix :\n"
+" * « Souris »: pour vérifier la configuration actuelle de la souris.\n"
+"Cliquez sur le bouton pour modifier les options.\n"
"\n"
-" * « %s » : si vous préférez GRUB (menu texte).\n"
+" * « Clavier »: vérifie la configuration choisie pour le clavier. Cliquez\n"
+"sur le bouton pour la modifier.\n"
"\n"
-" * « %s » : si vous préférez la version texte de LILO.\n"
+" * « Fuseau horaire »: DrakX, par défaut, essaie de trouver le fuseau\n"
+"horaire dans lequel vous êtes. Encore une fois, il est possible que vous ne\n"
+"soyez pas dans le fuseau horaire qui vous convient. Donc, vous aurez\n"
+"peut-être à cliquer sur le bouton « fuseau horaire » pour identifier\n"
+"précisément l'heure qui doit apparaître dans vos horloges.\n"
"\n"
-" * « %s » : si vous préférez l'interface graphique.\n"
+" * « Imprimante »: en cliquant sur « Pas d'imprimante », l'outil de\n"
+"configuration sera démarré.\n"
"\n"
-" * « %s »: dans la plupart des cas, vous n'aurez pas à changer le disque\n"
-"par défaut (« %s », mais si vous le désirez, le programme d'amorce peut\n"
-"être installé sur un second disque, « %s », ou même sur une disquette,\n"
-"« %s ».\n"
+" * « Carte son »: si une carte son a été détectée, elle apparaîtra ici.\n"
+"Aucune modification n'est possible à cette étape.\n"
"\n"
-" * « %s »: au redémarrage de l'ordinateur, il s'agit du temps accordé à\n"
-"l'utilisateur pour démarrer un autre système d'exploitation.\n"
-"\n"
-"!! Prenez garde, si vous décidez de ne pas installer de programme d'amorce\n"
-"(en cliquant sur « %s »), vous devez vous assurer d'avoir une méthode pour\n"
-"démarrer le système. Aussi, assurez-vous de bien savoir ce que vous faites\n"
-"si vous modifiez les options. !!\n"
+" * « Carte TV »: si une carte d'entrée/sortie vidéo (carte TV) a été\n"
+"détectée, elle apparaîtra ici. Aucune modification possible à cette étape.\n"
"\n"
-"En cliquant sur « %s », vous aurez accès à plusieurs autres options de\n"
-"configuration. Sachez que celles-ci sont réservées aux experts en la\n"
-"matière."
+" * « Carte ISDN »: si une carte ISDN est détectée, elle apparaîtra ici.\n"
+"Vous pouvez cliquer sur le bouton pour en modifier les paramètres."
-#: ../../security/help.pm:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:891
msgid ""
-"if set, send the mail report to this email address else send it to root."
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
-"Si rempli, envoie le rapport par courriel à cette adresse, sinon à root."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Quelle configuration d'XFree désirez-vous utiliser ?"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "More"
-msgstr "Davantage"
+"Choisissez le disque dur à effacer pour installé votre partition GNU/Linux.\n"
+"Soyez prudent, toute l'information stockée sur le disque sera détruite."
-#: ../../standalone/drakbackup:1
-#, c-format
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#: ../../help.pm_.c:896
msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"La syntaxe est la même que pour les programmes en ligne de commande "
-"'cdrecord'. La commande 'cdrecord -scanbus' vous permettra de connaître les "
-"numéros des périphériques."
+"Cliquez sur « OK » si vous voulez vraiment effacer toute l'information et\n"
+"les partitions. Soyez prudent, après avoir cliqué sur « OK », vous ne\n"
+"pourrez plus récupérer les données ou les partitions, incluant les données\n"
+"Windows.\n"
+"\n"
+"Cliquez « annuler » pour annuler cette opération sans perdre de données."
-#: ../../security/level.pm:1
+#: ../../install2.pm_.c:111
#, 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."
+"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 ""
-"Avec ce niveau de sécurité, l'utilisation de cette machine en tant que\n"
-"serveur devient envisageable. La sécurisation est suffisamment forte pour\n"
-"accepter les connexions de nombreux clients. Note : si votre machine est\n"
-"seulement connectée en tant que client sur Internet, vous devriez plutôt\n"
-"choisir un niveau inférieur."
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Server Name"
-msgstr "Nom du serveur"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Password"
-msgstr "Mot de passe du compte"
+"Impossible d'accéder aux modules correspondant à votre noyau (le fichier %s "
+"est manquant), cela veut généralement dire que votre disquette de boot est "
+"désynchronisée par rapport à votre medium d'Installation (veuillez créer une "
+"disquette de boot plus récente)"
-#: ../../standalone/drakhelp:1
+#: ../../install2.pm_.c:167
#, c-format
-msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
-msgstr ""
-"%s ne peut être affiché\n"
-". Aucune entrée d'aide pour ce type\n"
+msgid "You must also format %s"
+msgstr "Vous devez aussi formater %s"
-#: ../../any.pm:1
+#: ../../install_any.pm_.c:423
#, 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"
+"You have selected the following server(s): %s\n"
"\n"
-"On which drive are you booting?"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
msgstr ""
-"Vous avez décidé d'installer le programme d'amorçage sur une partition.\n"
-"Cela implique que vous ayez déjà un programme d'amorçage sur le disque dur "
-"sur lequel le système démarre (exemple : System Commander).\n"
+"Vous avez sélectionné le(s) serveur(s) suivant(s) : %s\n"
"\n"
-"Quel est le disque de démarrage ?"
+"\n"
+"Ces serveurs seront activés par défaut. Ils n'ont pas de trou\n"
+"de sécurité connu, mais de nouveaux problèmes peuvent être\n"
+"découverts par la suite. Dans ce cas, vous devrez vous assurer\n"
+"de mettre à jour vos serveurs le plus rapidement possible.\n"
+"\n"
+"\n"
+"Confirmez vous l'installation de ces serveurs ?\n"
-#: ../../install_interactive.pm:1
+#: ../../install_any.pm_.c:441
#, c-format
msgid ""
-"WARNING!\n"
+"The following packages will be removed to allow upgrading your system: %s\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."
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-"ATTENTION !\n"
+"Les paquetages suivants seront désinstallés pour permettre la mise à jour : %"
+"s \n"
"\n"
-"La taille de votre partition Windows va maintenant être réduite.\n"
-"Soyez prudent : cette opération est dangereuse. Si ce n'est pas déjà\n"
-"fait, vous devriez tout d'abord quitter l'installation, lancer\n"
-"« chkdsk c: » depuis la ligne de commande sous Windows (attention, le\n"
-"programme graphique « scandisk » n'est pas suffisant, utilisez\n"
-"réellement « chkdsk » depuis la ligne de commande!), éventuellement\n"
-"exécutez defrag, puis recommencez l'installation. Vous devriez\n"
-"également sauvegarder vos données.\n"
-"Si vous êtes sûr de vous, cliquez sur OK."
+"\n"
+"Souhaitez-vous réellement les désinstaller ?\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tajik keyboard"
-msgstr "Tadjik"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
+msgstr "On ne peut pas utiliser l'option broadcast sans domaine NIS"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:879
#, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Insérez une disquette formatée en FAT (format DOS/Windows) %s"
+
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
+msgstr "Cette disquette n'est pas au format DOS/Windows"
+
+#: ../../install_any.pm_.c:895
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"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-"Vous pouvez copier la configuration de l'imprimante faite pour le "
-"gestionnaire %s vers votre gestionnaire actuel %s. Toutes les données de "
-"configuration (nom de l'imprimante, description, emplacement, type de "
-"connexion, et paramètres par défaut) sont récupérées, mais les travaux ne "
-"seront pas transférés.\n"
-"Toutes les files d'attente n'ont pas pu être transférées à cause des raisons "
-"suivantes :\n"
+"Pour utiliser cette sauvegarde de sélection des paquetages, veuillez "
+"redémarrer l'installation avec la commande « linux defcfg=floppy »."
-#: ../../standalone/drakfont:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, c-format
-msgid "Font List"
-msgstr "Liste des polices"
+msgid "Error reading file %s"
+msgstr "Erreur lors de la lecture du fichier %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_any.pm_.c:1040
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."
+"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 ""
-"Vous aurez peut-être besoin de changer le périphérique d'amorçage\n"
-"de l'OpenFirmware pour activer le programme d'amorçage. Si vous\n"
-"ne voyez pas apparaître l'invite du programme d'amorçage lorsque\n"
-"vous redémarrerez, appuyez sur Command-Option-O-F au démarrage et\n"
-"entrez :\n"
-"setenv boot-device %s,\\\\:tbxi\n"
-"Puis tapez : shut-down\n"
-"Au prochain démarrage vous devriez voir apparaître l'invite du\n"
-"programme d'amorçage."
+"Une erreur est survenue : aucun périphérique valide n'a été trouvé pour\n"
+"créer de nouvelles partitions. Veuillez vérifier votre matériel."
-#: ../../install_steps_interactive.pm:1
+#: ../../install_interactive.pm_.c:21
#, 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"
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"Il semble que votre machine ne soit pas dotée de l'architecture "
-"« NewWorld ».\n"
-"Le programme d'amorçage « yaboot » ne fonctionnera pas.\n"
-"L'installation va continuer, mais vous aurez besoin de « BootX » ou\n"
-"d'une autre méthode pour démarrer votre machine."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Select file"
-msgstr "Sélectionnez un fichier"
+"Certains périphériques présents sur votre système nécessitent des\n"
+"pilotes « propriétaires » pour pouvoir fonctionner. Vous pouvez\n"
+"trouver plus d'informations les concernant ici : %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:56
msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
+"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 ""
-"Choisissez l'hôte ou le réseau à partir duquel les imprimantes locales "
-"seront disponibles :"
+"Vous devez avoir une partition racine.\n"
+"Pour la définir, créez une partition (ou choisissez-en une déjà\n"
+"existante) puis cliquez sur « Point de montage » et choisissez « / »."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
+msgstr "Vous devez créer une partition d'échange (swap)"
+
+#: ../../install_interactive.pm_.c:62
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"
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"Vous pouvez également utiliser ces commandes dans le champ « commande "
-"d'impression » des boîtes de dialogue d'impression dans de nombreuses "
-"applications. Dans ce cas n'indiquez pas le nom du fichier puisqu'il sera "
-"fourni par l'application elle-même.\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "Japon"
+"Vous n'avez pas de partition d'échange (swap).\n"
+"\n"
+"Désirez-vous tout de même continuer ?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print option list"
-msgstr "Liste des options d'impression"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Vous devez disposer d'une partition FAT montée en /boot/efi"
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-"Les changements ont été effectués mais ne seront effectifs qu'après votre "
-"déconnexion"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
+msgstr "Utiliser l'espace libre"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
-msgstr "Pays / Région"
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
+msgstr "Pas assez d'espace libre pour créer de nouvelles partitions"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search servers"
-msgstr "Rechercher les serveurs"
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
+msgstr "Utiliser une partition existante"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
-msgstr "Nom de la file d'attente NCP manquant !"
+#: ../../install_interactive.pm_.c:102
+msgid "There is no existing partition to use"
+msgstr "Pas de partition existante à utiliser"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Attention, une autre connexion internet a été détectée, peut-être utilisant "
-"votre réseau"
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
+msgstr "Utiliser la partition Windows pour le loopback"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-Rom « %s »"
+#: ../../install_interactive.pm_.c:112
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Quelle partition désirez-vous utiliser pour Linux4Win ?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr "Média CDRW"
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
+msgstr "Choix des tailles"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-"Sauvegarde et restaure l'entropie du système pour une meilleure génération "
-"de nombres aléatoires. (utile par exemple pour la création de clefs de "
-"cryptographie)"
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
+msgstr "Taille de la partition racine en Mo : "
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr "Transformez votre ordinateur en un serveur fiable"
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr "Taille de la partition d'échange (swap) en Mo : "
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
-msgstr "Vérifier les mots de passe vides dans /etc/shadow."
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
+msgstr "Utiliser l'espace libre sur la partition Windows"
-#: ../../network/network.pm:1
-#, c-format
-msgid " (driver %s)"
-msgstr " (pilote %s)"
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
+msgstr "Quelle partition désirez-vous redimensionner ?"
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
-msgstr "Démarré si nécessaire"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
+msgstr "Calcul des limites du système de fichiers de Windows en cours"
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
-"Loopback file(s):\n"
-" %s\n"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-"Fichier(s) de bouclage :\n"
-" %s\n"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr "Je ne sais pas"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", hôte TCP/IP « %s », port « %s »"
+"Le programme de redimensionnement des partitions FAT ne peut gérer votre\n"
+"partition. L'erreur suivante est survenue : %s"
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../install_interactive.pm_.c:137
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?"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-"Vous êtes sur le point de configurer une disquette d'auto-installation. "
-"Cette fonction est relativement dangereuse, et doit donc être utilisée avec "
-"précaution.\n"
-"\n"
-"La disquette d'auto-installation vous permettra d'installer un autre "
-"ordinateur avec exactement la même configuration que le vôtre. Mais parmi "
-"l'ensemble des étapes d'installation, vous pouvez choisir lesquelles seront "
-"complètement automatisées et lesquelles seront manuelles.\n"
-"Pour une sûreté maximale, les étapes de partitionnement et de formatage ne "
-"seront jamais faites automatiquement, quels que soient les choix que vous "
-"aviez fait lors de la première installation de cet ordinateur.\n"
-"\n"
-"Souhaitez-vous continuer ?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Telugu"
-msgstr "Telegu"
+"Votre partition FAT est trop fragmentée. Redémarrez sous Windows\n"
+"et lancez le programme de défragmentation « defrag »,\n"
+"puis relancez l'installation de Mandrake Linux."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:138
msgid ""
+"WARNING!\n"
"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
+"ATTENTION !\n"
"\n"
+"La taille de votre partition Windows va maintenant être réduite.\n"
"\n"
-"Votre carte utilise actuellement le pilote %s « %s » (le pilote par défaut "
-"étant « %s »)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Uninstall"
-msgstr "Post-désinstallation"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connecting to Internet "
-msgstr "Connexion à Internet en"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
-msgstr " ("
+"Soyez prudent : cette opération est dangereuse. Si ce n'est pas déjà\n"
+"fait, vous devriez tout d'abord sauvegarder vos données et lancer les\n"
+"programmes « scandisk » et « defrag » (fournis avec Windows)\n"
+"sur cette partition.\n"
+"\n"
+"Si vous êtes sûr de vous, cliquez sur OK."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid level"
-msgstr "Niveau CPUID"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
+msgstr "Quelle taille désirez-vous allouer à Windows sur la"
-#: ../../printer/main.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Serveur Novell « %s », imprimante « %s »"
+msgid "partition %s"
+msgstr "partition %s"
-#: ../../keyboard.pm:1
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid "Mongolian (cyrillic)"
-msgstr "Mongolien (cyrillique)"
+msgid "FAT resizing failed: %s"
+msgstr "Le redimensionnement de la partition FAT a échoué : %s"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Add a module"
-msgstr "Ajouter un module"
+#: ../../install_interactive.pm_.c:171
+msgid ""
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Il n'y a aucune partition FAT à redimensionner ou à utiliser en tant que "
+"loopback (ou trop peu d'espace est disponible)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile to delete:"
-msgstr "Profil à effacer :"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr "Effacer tout le disque"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Local measure"
-msgstr "Mesure locale"
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr "Supprimer Microsoft Windows(TM)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
-msgstr "Attention: l'adresse IP %s est déja réservée !"
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+"Vous possédez plus d'un disque dur.\n"
+"Sur lequel désirez vous installer Linux ?"
-#: ../../mouse.pm:1
+#: ../../install_interactive.pm_.c:183
#, c-format
-msgid "busmouse"
-msgstr "souris bus"
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+"TOUTES les partitions et les données présentes sur le disque %s seront "
+"perdues"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Créer des images d'amorçage Etherboot :\n"
-" \tPour amorcer un noyau par etherboot, un noyau et un initrd "
-"spéciaux doivent être créés.\n"
-" \t\tmkinitrd-net fait une grande partie de ce travail et "
-"drakTermServ est simplement une interface graphique\n"
-" \t\tpour aider à gérer et personnaliser ces images.\n"
-" \t\tPour créer le fichier /etc/dhcpd.conf.etherboot-pcimap.include\n"
-" \t\tqui est inclus dans dhcpd.conf, vous devriez créer les images\n"
-" \t\tEtherboot pour au moins un noyau complet."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Nom d'utilisateur du compte"
+#: ../../install_interactive.pm_.c:191
+msgid "Custom disk partitioning"
+msgstr "Partitionnement personnalisé"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Fdiv bug"
-msgstr "Bogue de l'instruction FDIV"
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr "Utiliser fdisk"
-#: ../../network/drakfirewall.pm:1
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-"configuration drakfirewall\n"
+"Vous pouvez maintenant partitionner %s.\n"
"\n"
-"Assurez-vous d'avoir configuré le réseau et Internet grâce à\n"
-"drakconnect avant d'aller plus loin."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
-msgstr "Accepter l'écho icmp émis par diffusion"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr "Uruguay"
+"Lorsque vous aurez terminé, n'oubliez pas d'enregistrer vos\n"
+"modifications en appuyant sur la touche « w »."
-#: ../../lang.pm:1
-#, c-format
-msgid "Benin"
-msgstr "Bénin"
+#: ../../install_interactive.pm_.c:227
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Utiliser l'espace libre sur la partition de Windows"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "Serveur SMB/Windows « %s », partage « %s »"
+#: ../../install_interactive.pm_.c:243
+msgid "I can't find any room for installing"
+msgstr "Pas de place disponible pour l'installation"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path selection"
-msgstr "Sélection du chemin"
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+"L'assistant de partitionnement a\n"
+"trouvé les solutions suivantes :"
-#: ../../standalone/scannerdrake:1
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid "Name/IP address of host:"
-msgstr "Nom ou Adresse IP de l'hôte :"
+msgid "Partitioning failed: %s"
+msgstr "Le partitionnement a échoué : %s"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Moniteur : %s\n"
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr "Démarrage de l'interface réseau"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom & system settings"
-msgstr "Réglages personnalisés et système"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr "Arrêt de l'interface réseau"
-#: ../../partition_table/raw.pm:1
-#, c-format
+#: ../../install_steps.pm_.c:76
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."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"Votre disque dur semble avoir un problème matériel :\n"
-"un test pour vérifier son aptitude à conserver l'intégrité des données a "
-"échoué.\n"
-"Cela signifie que serez victime de pertes aléatoires de données."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Nom d'hôte de l'imprimante ou adresse IP manquant(e) !"
+"Une erreur est survenue et semble difficile à résoudre correctement.\n"
+"Vous pouvez continuer, mais à vos risques et périls."
-#: ../../standalone/drakbackup:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Veuillez cocher tous les comptes utilisateurs à sauvegarder"
+msgid "Duplicate mount point %s"
+msgstr "Point de montage en double : %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps.pm_.c:380
msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+"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 ""
-"%s doit être configurée par printerdrake.\n"
-"Vous pouvez lancer printerdrake depuis le Centre de Contrôle Mandrake dans "
-"la section Matériel"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Key isn't writable"
-msgstr "La clé n'est pas accessible en écriture"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bangladesh"
-msgstr "Bangladesh"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (cable)"
-msgstr "Japon (câble)"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Initial tests"
-msgstr "Tests initiaux"
+"Quelques paquetages importants n'ont pas été correctement installés. Il se\n"
+"peut que le lecteur de cédérom ou le cédérom lui-même soit défectueux. Vous\n"
+"pouvez vous assurer du bon état de ce dernier en exécutant la commande "
+"suivante\n"
+"sur un ordinateur fonctionnant correctement : « rpm -qpl Mandrake/RPMS/*."
+"rpm »\n"
-#: ../../network/isdn.pm:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "Continue"
-msgstr "Continuer"
+msgid "Welcome to %s"
+msgstr "Bienvenue sur %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom Restore"
-msgstr "Restauration personnalisée..."
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr "Aucun lecteur de disquette disponible"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "Saturday"
-msgstr "Samedi"
+msgid "Entering step `%s'\n"
+msgstr "Démarrage de l'étape « %s »\n"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:146
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."
+"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 ""
-"« %s » : si une carte son a été détectée, elle apparaîtra ici. Si vous\n"
-"remarquez que la carte configurée n'est pas celle qui se trouve\n"
-"effectivement sur votre système, vous pouvez cliquer sur le bouton pour en\n"
-"choisir une autre."
+"Votre ordinateur possède peu de mémoire. Vous aurez peut-être quelques\n"
+"problèmes pour installer Mandrake Linux. Si cela se produit, vous pouvez\n"
+"essayer de procéder à une installation en mode texte. Pour cela, appuyez\n"
+"sur la touche « F1 » après l'amorçage sur cédérom puis entrez « text »."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the root umask."
-msgstr "Règle le « umask » de root"
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr "Classe d'installation"
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "Erreur lors de la lecture du fichier %s"
+#: ../../install_steps_gtk.pm_.c:160
+msgid "Please choose one of the following classes of installation:"
+msgstr "Veuillez choisir une des classes d'installation ci-dessous :"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr "Basée sur un script"
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
+msgstr "Sélection des groupes de paquetages"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "PLL setting:"
-msgstr "Réglage de la BVP (PLL)"
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
+msgstr "Sélection individuelle des paquetages"
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Vous devez disposer d'une partition FAT montée en /boot/efi"
+msgid "Total size: %d / %d MB"
+msgstr "Taille totale : %d / %d Mo"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
-msgstr " sur"
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
+msgstr "Mauvais paquetage"
-#: ../../diskdrake/dav.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "The URL must begin with http:// or https://"
-msgstr "L'URL doit commencer par http:// ou https://"
+msgid "Name: %s\n"
+msgstr "Nom : %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
-msgstr ""
-"Si vous la connaissez, vous pouvez spécifier directement l'adresse réseau "
-"(URL) qui permet d'accéder à l'imprimante. Choisissez un en-tête puis "
-"complétez l'adresse en respectant les spécifications CUPS ou Foomatic. Notez "
-"que tous les types d'URL ne sont pas supportés par tous les gestionnaires "
-"d'impression."
+msgid "Version: %s\n"
+msgstr "Version : %s\n"
-#: ../../any.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "Autres systèmes (SunOS, etc.)"
+msgid "Size: %d KB\n"
+msgstr "Taille : %d Ko\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
-msgid "Install/Upgrade"
-msgstr "Installation/Mise à jour"
+msgid "Importance: %s\n"
+msgstr "Importance : %s\n"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d packages"
-msgstr "%d paquetages"
+#: ../../install_steps_gtk.pm_.c:360
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr "Il n'y a pas assez de place pour installer ce paquetage"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Costa Rica"
-msgstr "Costa Rica"
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
+msgstr "Les paquetages suivants vont être installés"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Backup and Restore application\n"
-"\n"
-"--default : save default directories.\n"
-"--debug : show all debug messages.\n"
-"--show-conf : list of files or directories to backup.\n"
-"--config-info : explain configuration file options (for non-X "
-"users).\n"
-"--daemon : use daemon configuration. \n"
-"--help : show this message.\n"
-"--version : show version number.\n"
-msgstr ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Logiciel de sauvegardes et restaurations\n"
-"\n"
-"--default : sauve les dossiers par défaut.\n"
-"--debug : affiche tous les messages de déboguage.\n"
-"--show-conf : liste les fichiers ou dossiers à sauvegarder.\n"
-"--config-info : explique les options du fichier de configuration (en "
-"mode texte).\n"
-"--daemon : utilise la configuration de sauvegardes "
-"périodiques.\n"
-"--help : affiche ce message.\n"
-"--version : affiche le numéro de version.\n"
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
+msgstr "Les paquetages suivants vont être désinstallés"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain Authentication Required"
-msgstr "Domaine d'authentification nécessaire"
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
+msgstr "Vous ne pouvez pas sélectionner/désélectionner ce paquetage"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Use libsafe for servers"
-msgstr "Utilisation de « libsafe » pour les serveurs"
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Ce paquetage est nécessaire, vous ne pouvez pas le désélectionner"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Icelandic"
-msgstr "Islandais"
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
+msgstr "Vous ne pouvez pas désélectionner ce paquetage. Il est déjà installé"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:395
msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
-"\n"
-"Utilisation : %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+"Ce paquetage doit être mis à jour.\n"
+"Êtes-vous certain de vouloir le désélectionner ?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-"Taille maximale\n"
-" permise à Drakbackup (Mo)"
-
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Points de montage circulaires %s\n"
+"Vous ne pouvez pas désélectionner ce paquetage, il doit être mis à jour."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo/grub mode"
-msgstr "Menu d'amorçage"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
+msgstr "Montrer les paquetages sélectionnés automatiquement"
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr "Martinique"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr "Installation"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr "Dans un dossier (local ou partagé)..."
+#: ../../install_steps_gtk.pm_.c:407
+msgid "Load/Save on floppy"
+msgstr "Charger/Sauver sur disquette"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Old user list:\n"
-msgstr "Ancienne liste d'utilisateurs :\n"
+#: ../../install_steps_gtk.pm_.c:408
+msgid "Updating package selection"
+msgstr "Mise-à-jour de la sélection des paquetages"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
-msgstr "Recherche de sauvegardes"
+#: ../../install_steps_gtk.pm_.c:413
+msgid "Minimal install"
+msgstr "Installation minimale"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "a number"
-msgstr "un nombre"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
+msgstr "Choisissez les paquetages que vous voulez installer"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr "Suédois"
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr "Installation"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Quel pilote %s faut-il essayer ?"
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr "Estimation en cours"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr ""
-"Vous recevrez une alerte si l'un des services sélectionnés ne tourne plus"
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr "Temps restant "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Weekday"
-msgstr "Jour de la semaine"
+#: ../../install_steps_gtk.pm_.c:469
+msgid "Please wait, preparing installation..."
+msgstr "Veuillez patienter, préparation de l'installation..."
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid "Filesystem types:"
-msgstr "Types des systèmes de fichiers :"
+msgid "%d packages"
+msgstr "%d paquetages"
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "Northern Mariana Islands"
-msgstr "Îles Mariannes du Nord"
+msgid "Installing package %s"
+msgstr "Installation du paquetage %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ", périphérique HP JetDirect multifonction"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "Accepter"
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "aucun"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
+msgstr "Refuser"
-#: ../../standalone/drakconnect:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
+"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 ""
-"Nom du profil à créer (le nouveau profil est créé comme une copie du profil "
-"courant :"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Floppy"
-msgstr "Lecteur de disquette"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript referencing"
-msgstr "Inscription dans ghostscript"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Bootloader"
-msgstr "Programme d'amorçage"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
-msgstr "Autoriser tous les services contrôlés par tcp_wrappers"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "Déplacer"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Bootloader to use"
-msgstr "Programme d'amorçage à utiliser"
+"--Changement de cédérom--\n"
+"\n"
+"Veuillez insérer le cédérom nommé « %s »,\n"
+"puis cliquez sur « OK ».\n"
+"\n"
+"Si vous ne le possédez pas, cliquez sur « Annuler » afin de ne rien "
+"installer à partir de ce Cd-Rom."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "Nom du serveur"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
+msgstr "Souhaitez-vous tout de même continuer ?"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Name Servers:"
-msgstr "Serveurs de nom :"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
+msgstr "Erreur lors du tri des paquetages :"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Minute"
-msgstr "Minute"
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
+msgstr "Erreur lors de l'installation des paquetages :"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:10
msgid ""
"\n"
"Warning\n"
@@ -7505,11 +5203,11 @@ msgstr ""
"Important\n"
"\n"
"Veuillez lire attentivement le présent document. En cas de désaccord \n"
-"avec l'un de ses termes vous n'êtes pas autorisé à installer les CD-Rom\n"
-"suivants. Dans ce cas, cliquez sur « Refuser » pour continuer \n"
+"avec l'un de ses termes vous n'êtes pas autorisé à installer les cédéroms\n"
+"suivants. Dans ce cas, Cliquez sur « Refuser » pour continuer \n"
"l'installation sans ces médias.\n"
"\n"
-"Certains composants logiciels contenus dans les prochains CD-Rom \n"
+"Certains composants logiciels contenus dans les prochains cédéroms \n"
"ne sont pas soumis aux licences GPL ou similaires permettant la copie, \n"
"la modification ou la redistribution. Chacun de ces composants logiciels \n"
"est distribué sous les termes et conditions d'un accord de licence qui \n"
@@ -7534,5021 +5232,3386 @@ msgstr ""
"droits de propriété intellectuelle et de copyright applicables aux "
"logiciels.\n"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Expert mode"
-msgstr "/Mode _Expert"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Retirer cette imprimante de StarOffice/OpenOffice"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-"Activation / désactivation du Linux Virtual Server, qui est un service "
-"utilisé pour créer un serveur virtuel haute-performance et haute "
-"disponibilité, composé d'un ensemble de serveur linux reliés entre eux."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr "Micronésie"
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
+msgstr "Une erreur est survenue"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 milliards de couleurs (32 bits)"
+#: ../../install_steps_interactive.pm_.c:85
+msgid "Do you really want to leave the installation?"
+msgstr "Désirez-vous vraiment quitter l'installation ?"
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
msgstr "Licence"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr "Générer les clefs peut prendre un moment."
-
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
+"Introduction\n"
"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
-"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"
+"1. License Agreement\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"
+"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"
-"<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"
+"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"
-"<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"
+"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"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
"\n"
+"3. The GPL License and Related Licenses\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"
+"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"
-"<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 ""
-"Ici, vous pouvez configurer le niveau de sécurité et l'administrateur\n"
-"de la sécurité de votre machine.\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"
-"L'Administrateur de Sécurité recevra les alertes de sécurité si\n"
-"l'option « Alertes de Sécurité » est cochée. Il peut s'agir d'une\n"
-"adresse email ou d'un nom d'utilisateur.\n"
"\n"
+"5. Governing Laws \n"
"\n"
-"Le menu « Niveau de Sécurité » permet de séléctionner l'un des six\n"
-"niveaux de sécurité préconfigurés par msec.\n"
-"Ces niveaux vont de « Très faible » à « Panaoïaque », utilisable comme\n"
-"base pour créer un serveur hautement sécurisé.\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 ""
+"Introduction\n"
"\n"
+"Le système d'exploitation et les divers composants disponibles dans la \n"
+"distribution Mandrake Linux sont ci-après dénommés les « Logiciels ».\n"
+"Les Logiciels comprennent notamment, mais de façon non limitative,\n"
+"l'ensemble des programmes, procédés, règles et documentations \n"
+"relatifs au système d'exploitation et aux divers composants de la \n"
+"distribution Mandrake Linux.\n"
"\n"
-"<span foreground=\"royalblue3\">Très faible</span> : Ce niveau de\n"
-"sécurité n'est absolument pas sur mais votre système est plus facile à\n"
-"utiliser. Il ne devrait donc pas être utilisé sur une machine\n"
-"connectée à un réseau ou à Internet.\n"
"\n"
+"1. Licence\n"
"\n"
-"<span foreground=\"royalblue3\">Standard</span> : Ceci est le niveau\n"
-"standard de sécurité recommandé pour un ordinateur devant se connecter\n"
-"à Internet en tant que client.\n"
+"Veuillez lire attentivement le présent document. Ce document constitue \n"
+"un contrat de licence entre vous (personne physique ou personne morale) et \n"
+"MandrakeSoft S.A. portant sur les Logiciels.\n"
+"Le fait d'installer, de reproduire ou d'utiliser les Logiciels de quelque \n"
+"manière que ce soit indique que vous reconnaissez avoir préalablement eu \n"
+"connaissance et que vous acceptez de vous conformer aux termes et "
+"conditions \n"
+"du présent contrat de licence. En cas de désaccord avec le présent "
+"document \n"
+"vous n'êtes pas autorisé à installer, reproduire et utiliser de quelque \n"
+"manière que ce soit ce produit.\n"
+"Le contrat de licence sera résilié automatiquement et sans préavis dans le \n"
+"cas où vous ne vous conformeriez pas aux dispositions du présent document. \n"
+"En cas de résiliation vous devrez immédiatement détruire tout exemplaire "
+"et \n"
+"toute copie de tous programmes et de toutes documentations qui constituent \n"
+"le système d'exploitation et les divers composants disponibles dans la \n"
+"distribution Mandrake Linux.\n"
"\n"
"\n"
-"<span foreground=\"royalblue3\">Élevée</span> : il y a déjà quelques\n"
-"restrictions, et un peu plus de vérifications de sécurité sont\n"
-"effectuées chaque nuit.\n"
+"2. Garantie et limitations de garantie\n"
"\n"
+"Les Logiciels et la documentation qui les accompagne sont fournis en "
+"l'état \n"
+"et sans aucune garantie. MandrakeSoft S.A. décline toute responsabilité \n"
+"découlant d'un dommage direct, spécial, indirect ou accessoire, de quelque \n"
+"nature que ce soit, en relation avec l'utilisation des Logiciels, "
+"notamment \n"
+"et de façon non limitative, tout dommage entraîné par les pertes de \n"
+"bénéfices, interruptions d'activité, pertes d'informations commerciales ou \n"
+"autres pertes pécuniaires, ainsi que des éventuelles condamnations et \n"
+"indemnités devant être versées par suite d'une décision de justice, et ce \n"
+"même si MandrakeSoft S.A. a été informée de la survenue ou de \n"
+"l'éventualité de tels dommages.\n"
"\n"
-"<span foreground=\"royalblue3\">Plus élevée</span> : La sécurité est ici\n"
-"suffisante pour utiliser la machine comme serveur acceptant de\n"
-"multiples connexions. Si votre machine est simplement une machine\n"
-"cliente pour Internet, un niveau inférieur est préférable.\n"
+"AVERTISSEMENT QUANT À LA DÉTENTION OU L'UTILISATION DE LOGICIELS \n"
+"PROHIBÉS DANS CERTAINS PAYS \n"
"\n"
+"En aucun cas, ni MandrakeSoft S.A. ni ses fournisseurs ne pourront être \n"
+"tenus responsable à raison d'un préjudice spécial, direct, indirect ou \n"
+"accessoire, de quelque nature que ce soit (notamment et de façon non \n"
+"limitative les pertes de bénéfices, interruptions d'activité, pertes \n"
+"d'informations commerciales ou autres pertes pécuniaires, ainsi que \n"
+"des éventuelles condamnations et indemnités devant être versées par suite \n"
+"d'une décision de justice) qui ferait suite à l'utilisation, la détention \n"
+"ou au simple téléchargement depuis l'un des sites de téléchargement de \n"
+"Mandrake Linux de logiciels prohibés par la législation à laquelle vous \n"
+"êtes soumis. Cet avertissement concerne notamment certains logiciels de \n"
+"cryptographie fournis avec les Logiciels.\n"
"\n"
-"<span foreground=\"royalblue3\">Panaoïaque</span> : Similaire au\n"
-"précédent, mais le système sera totalement clos et la sécurité au\n"
-"maximum."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr "Autodétection d'imprimante (locale, réseau, et SMB)"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr "Sagem USB (avec pppoa)"
-
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"Une erreur est survenue : aucun périphérique valide n'a été trouvé pour\n"
-"créer de nouvelles partitions. Veuillez vérifier votre matériel."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr "Activation du système d'impression au démarrage"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "Désirez-vous activer la connexion lors du démarrage ?"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr "Identifiant du processeur"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr "Résolution d'un problème de son"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr "Polonais (QWERTY)"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Add Printer"
-msgstr "/_Ajouter une Imprimante"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
"\n"
-"Drakbackup activities via CD:\n"
+"3. Licence GPL et autres licences\n"
"\n"
-msgstr ""
+"Les Logiciels sont constitués de modules logiciels créés par diverses \n"
+"personnes (physiques ou morales). Nombre d'entre eux sont distribués sous \n"
+"les termes de la Licence Publique Générale GNU (ci-après dénommée « GPL »)\n"
+"ou d'autres licences similaires. La plupart de ces licences vous "
+"permettent \n"
+"de copier, d'adapter ou de redistribuer les modules logiciels qu'elles \n"
+"régissent. Veuillez lire et agréer les termes et conditions des licences \n"
+"accompagnant chacun d'entre eux avant de les utiliser. Toute question \n"
+"concernant la licence d'un Logiciel est à soumettre à l'auteur (ou à ses\n"
+"représentants) du Logiciel et non à MandrakeSoft. \n"
+"Les programmes conçus par MandrakeSoft sont régis par la licence GPL. \n"
+"La documentation rédigée par MandrakeSoft fait l'objet d'une licence \n"
+"spécifique. Veuillez vous référez à la documentation pour obtenir plus \n"
+"de précisions.\n"
"\n"
-"activités de Drakbackup par CD :\n"
"\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
+"4. Propriété intellectuelle\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"
+"Tous les droits, titres et intérêts des différents Logiciels sont la \n"
+"propriété exclusive de leurs auteurs respectifs et sont protégés au titre \n"
+"des droits de propriété intellectuelle et de copyright applicables aux "
+"Logiciels.\n"
+"Les marques « Mandrake » et « Mandrake Linux » ainsi que les \n"
+"logotypes associés sont déposés par MandrakeSoft S.A. \n"
"\n"
-"Do you really want to configure printing on this machine?"
-msgstr ""
-"Vous êtes sur le point d'installer le système d'impression %s sur un système "
-"dont le niveau de sécurité est réglé sur « %s ».\n"
"\n"
-"Ce système d'impression écoute en permanence le réseau afin de répondre aux "
-"requêtes d'impression. Ceci se fait grâce à un service qui tourne en tâche "
-"de fond (daemon) et qui est accessible par les autres machines du réseau. "
-"C'est donc une cible possible pour des attaques réseau éventuelles. C'est "
-"pourquoi le minimum possible de « daemons » doivent être démarrés dans ce "
-"niveau de sécurité.\n"
+"5. Dispositions diverses\n"
"\n"
-"Souhaitez-vous réellement installer un système d'impression ?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
-msgstr "Hôte « %s », port « %s »"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr "Cette partition ne peut pas être utilisée pour du bouclage"
+"Si une disposition de ce contrat de licence devait être déclarée nulle, \n"
+"illégale ou inapplicable par un tribunal compétent, cette disposition sera \n"
+"exclue du présent contrat. Vous continuerez à être liés aux autres \n"
+"dispositions, qui recevront leurs pleins effets. Le contrat de licence \n"
+"est soumis à la Loi française. Toute contestation relative aux présentes \n"
+"dispositions sera réglée préalablement par voie amiable. A défaut d'accord\n"
+"avec MandrakeSoft S.A., les tribunaux compétents de Paris seront saisis du \n"
+"litige. Pour toute question relative au présent document, veuillez \n"
+"contacter MandrakeSoft S.A.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr "Le fichier existe déjà. Faut-il l'utiliser ?"
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
+msgstr "Etes vous sur de refuser cette license ?"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
-msgstr "reçus : "
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "Clavier"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr "Touche Alt droite"
+#: ../../install_steps_interactive.pm_.c:218
+msgid "Please choose your keyboard layout."
+msgstr "Veuillez choisir votre type de clavier."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr "list des autres pilotes pour cette carte son"
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
+msgstr "Voici la liste complète des claviers disponibles"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Passerelle"
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
+msgstr "Quelle classe d'installation désirez-vous utiliser ?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr "Tonga"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
+msgstr "Installation/Mise-à-jour"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "Tunisie"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
+msgstr "Désirez-vous faire une installation ou une mise-à-jour ?"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scanner sharing"
-msgstr "Partage de scanners"
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr "Recommandée"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile: "
-msgstr "Profil : "
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Expert"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
-"Cliquez sur un périphérique dans l'arborescence afin de consulter les "
-"informations correspondantes."
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade"
+msgstr "Mise-à-jour"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr "Activer/Désactiver la connexion automatique (autologin)."
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+msgid "Upgrade packages only"
+msgstr "Mise à jour seulement des paquetages"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
-msgstr "XawTV n'est pas installé !"
+#: ../../install_steps_interactive.pm_.c:282
+msgid "Please choose the type of your mouse."
+msgstr "Veuillez choisir le type de votre souris."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr "Ne pas inclure les fichiers critiques (passwd, group, fstab)"
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr "Port souris"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
-msgstr "ancien nom de périphérique statique utilisé dans le paquetage dev"
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
+msgstr "Veuillez choisir le port série sur lequel votre souris est connectée."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
-msgstr "Activer le traçage de tous les paquets IPv4 étranges"
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
+msgstr "Émulation des boutons"
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
-msgstr "Ce label est déjà utilisé"
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
+msgstr "Émulation du bouton n° 2"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"\n"
-"Bienvenue dans l'assistant de configuration d'imprimante\n"
-"\n"
-"Cet assistant vous aidera à installer les imprimantes connectées soit à cet "
-"ordinateur, soit directement au réseau.\n"
-"\n"
-"Si vous avez des imprimantes branchées sur cet ordinateur, veuillez les "
-"allumer afin qu'elles soient détectées automatiquement. Les imprimantes "
-"réseau doivent aussi être allumées.\n"
-"\n"
-"Notez que l'autodétection des imprimantes réseau est plus longue que celle "
-"des imprimantes locales, donc vous pouvez la désactiver si vous n'en avez "
-"pas besoin.\n"
-"\n"
-"Cliquez sur « suivant » quand vous êtes prêt, ou sur « annuler » si vous ne "
-"voulez pas configurer d'imprimante maintenant."
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
+msgstr "Émulation du bouton n° 3"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
-msgstr "Grec (polytonic)"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr "Configuration des cartes PCMCIA..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr ""
-"Après avoir formaté la partition %s, toutes les données présentes\n"
-"sur cette partition seront perdues."
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection Time: "
-msgstr "Temps de connexion : "
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr "Configuration IDE"
-#: ../../standalone/livedrake:1
-#, 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."
-msgstr ""
-"Changement de CD-Rom\n"
-"\n"
-"Veuillez insérer le CD-Rom d'installation dans votre lecteur.\n"
-"Ceci fait, cliquez sur « OK ».\n"
-"\n"
-"Si vous ne le possédez pas, cliquez sur « Annuler » pour annuler la mise à "
-"jour."
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use group id for execution"
-msgstr "Utiliser l'id du groupe lors de l'exécution"
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr "Aucune partition disponible"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "Choisissez l'utilisateur par défaut :"
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
+msgstr "Examen des partitions afin d'identifier les points de montage"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr "Gabon"
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr "Choix des points de montage"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:386
msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
+"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 ""
-"\n"
-"Les imprimantes connectées à un serveur CUPS distant n'ont pas besoin d'être "
-"configurées ici; elles seront automatiquement détectées."
+"Pas de place libre pour la partition d'amorçage (bootstrap) de 1 Mo."
+"L'installation va\n"
+"continuer, mais pour que votre système puisse démarrer, vous aurez besoin "
+"de\n"
+"créer la partition d'amorçage avec DiskDrake."
-#: ../../any.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:395
+msgid "No root partition found to perform an upgrade"
msgstr ""
-"Vous pouvez choisir d'autres langues.\n"
-"Elles seront disponibles après l'installation."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
-msgstr "Dossier (ou module) où poser la sauvegarde sur cette machine"
+"Impossible de trouver une partition racine pour procéder à une mise à jour."
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Domain"
-msgstr "Domaine"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr "Partition racine"
-#: ../../any.pm:1
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Précisez la taille mémoire si nécessaire (%d Mo trouvés)"
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr "Quelle est la partition racine (/) de votre système ?"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:411
+msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-"LILO et grub sont deux programmes d'amorce pour GNU/Linux. Cette étape est\n"
-"normalement complètement automatique. En fait, DrakX analyse le secteur de\n"
-"démarrage (« master boot record ») et agit en fonction de ce qu'il peut y\n"
-"lire :\n"
-"\n"
-" * Si un secteur de démarrage Windows est détecté, il sera remplacé par\n"
-"grub/LILO. Donc, vous serez capable de démarrer GNU/Linux et tout autre\n"
-"système d'exploitation.\n"
-"\n"
-" * si grub ou LILO est détecté, il sera remplacé par la nouvelle version;\n"
-"\n"
-"En cas de doute, DrakX affiche différentes options."
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "2ème DNS du fournisseur (optionnel)"
+"Vous devez redémarrer pour que les modifications apportées à la\n"
+"table des partitions soient prises en compte"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "Périphérique d'amorçage"
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr "Sélectionnez les partitions que vous souhaitez formater"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr "Quelle partition désirez-vous redimensionner ?"
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
+msgstr "Vérifier la présence de secteurs endommagés ?"
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr "Îles mineures des États-Unis d'Amérique"
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr "Formatage des partitions"
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid "Djibouti"
-msgstr "Djibouti"
+msgid "Creating and formatting file %s"
+msgstr "Création et formatage du fichier %s"
-#: ../../standalone/logdrake:1
+#: ../../install_steps_interactive.pm_.c:470
#, c-format
-msgid "A tool to monitor your logs"
-msgstr "Un outil pour voir vos fichiers journaux"
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+"Erreur à la vérification du système de fichiers %s. Souhaitez-vous corriger "
+"les erreurs ? (attention, vous pouvez perdre des données)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected on port %s"
-msgstr "détecté sur le port %s"
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+"Le swap est insuffisant pour achever l'installation, veuillez en ajouter."
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD"
-msgstr "LPD"
+#: ../../install_steps_interactive.pm_.c:479
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr ""
+"Recherche des paquetages disponibles et reconstruction de la base de données "
+"rpm..."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Carte graphique : %s\n"
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr "Recherche des paquetages disponibles..."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/Set as _Default"
-msgstr "/par _défaut"
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Looking at packages already installed..."
+msgstr "Recherche des paquetages déja installés..."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
-msgstr "Accepter l'écho ICMP"
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr "Recherche des paquetages à mettre à jour..."
-#: ../../bootloader.pm:1
+#: ../../install_steps_interactive.pm_.c:505
#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
+msgstr ""
+"Votre système ne dispose pas d'assez d'espace libre pour l'installation ou "
+"la mise-à-jour (%d > %d)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Logitech CC Series avec émulation de la molette"
+#: ../../install_steps_interactive.pm_.c:541
+msgid ""
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
+msgstr ""
+"Vous avez le choix entre :\n"
+"- Sauver sur disquette la sélection des paquetages.\n"
+"- Établir un nouveau choix de sélection à partir d'une sauvegarde sur "
+"disquette.\n"
+"Le format est le même que celui des disquettes générées pour l'installation "
+"automatisée."
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr "Les partitions étendues ne sont pas supportée par cette plateforme"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Load from floppy"
+msgstr "Charger à partir d'une disquette..."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Splash selection"
-msgstr "Sélection de l'image"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr "Sauvegarder sur disquette..."
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Configuration RNIS/ISDN"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Loading from floppy"
+msgstr "Chargement depuis la disquette..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "high"
-msgstr "élevé"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Package selection"
+msgstr "Sélection des paquetages"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
-msgstr "Partage de la connexion internet"
+#: ../../install_steps_interactive.pm_.c:552
+msgid "Insert a floppy containing package selection"
+msgstr "Insérez une disquette contenant une sélection de paquetages."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Choose file"
-msgstr "Choisir le fichier"
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
+msgstr "La taille sélectionnée est plus importante que la place disponible"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Summary: "
-msgstr "Résumé: "
+#: ../../install_steps_interactive.pm_.c:649
+msgid "Type of install"
+msgstr "Type d'installation"
-#: ../../network/shorewall.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:650
msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
msgstr ""
-"Attention ! Une configuration existante du Pare-Feu a été détectée. Vous "
-"devrez peut-être modifier la configuration manuellement après l'installation."
+"Vous n'avez sélectionné aucun groupe de paquetages.\n"
+"Veuillez choisir l'installation minimale désirée :"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Impression/Accès aux cartes photos sur « %s »"
+#: ../../install_steps_interactive.pm_.c:653
+msgid "With X"
+msgstr "Avec X"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
-msgstr "Vérfications journalières de sécurité"
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
+msgstr "Avec la documentation de base (recommandé !)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "Installation vraiment minimale (et en particulier pas d'urpmi)"
+
+#: ../../install_steps_interactive.pm_.c:741
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"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 ""
-"Souhaitez-vous permettre l'impression sur les imprimantes ci-dessus ou sur "
-"celles du réseau local ?\n"
+"Si vous possédez tous les cédéroms ci-dessous, cliquez sur « OK ».\n"
+"Si vous n'en possédez aucun, cliquez sur « Annuler ».\n"
+"Sinon, désélectionnez ceux que vous n'avez pas, puis cliquez sur « OK »."
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:746
#, c-format
-msgid "Printer default settings"
-msgstr "Paramètres par défaut de l'imprimante"
+msgid "Cd-Rom labeled \"%s\""
+msgstr "Cédérom « %s »"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Souris standard PS2 à molette"
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr "Préparation de l'installation"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm_.c:776
#, 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)"
+"Installing package %s\n"
+"%d%%"
msgstr ""
-"le drapeau WP dans le registre CR0 du processeur active la protection contre "
-"les accès en écriture et prévient ainsi les bogues du kernel écrivant "
-"directement dans la mémoire des processus utilisateurs"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Désinstallation de l'ancienne imprimante « %s »..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Select a device !"
-msgstr "Sélectionnez un périphérique !"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected server"
-msgstr "Supprimer le serveur sélectionné"
+"Installation du paquetage %s\n"
+"%d%%"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using dhcp) usb"
-msgstr "Sagem USB (avec dhcp)"
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
+msgstr "Configuration post-installation"
-#: ../../lang.pm:1
+#: ../../install_steps_interactive.pm_.c:828
#, c-format
-msgid "French Southern Territories"
-msgstr "Terres Australes Françaises"
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Insérez la disquette d'amorçage utilisée dans le lecteur %s"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm_.c:834
#, c-format
-msgid "the vendor name of the processor"
-msgstr "le nom du vendeur de ce processeur"
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "Insérez la disquette de mise-à-jour de modules dans le lecteur %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
+# I added an example (install on a networked machine, and the server is connected to the Internet).
+# / J'ai rajouté un exemple (voir texte) car cela me semble plus clair comme çà.
+#: ../../install_steps_interactive.pm_.c:861
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."
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates ?"
msgstr ""
-" - Maintenir %s :\n"
-" \t\tPour que les utilisateurs puissent se connecter au système à "
-"partir d'un client léger, l'entrée leur correspondant\n"
-" \t\tdans /etc/shadow doit être dupliquée dans %s.\n"
-" \t\tDrakTermServ permet à cet effet d'ajouter ou de retirer des "
-"utilisateurs de ce fichier."
+"Vous avez maintenant la possibilité de télécharger les mises-à-jour\n"
+"créées depuis la sortie de cette distribution. Il peut y avoir des "
+"correctifs de\n"
+" sécurité ou des résolutions de bogues.\n"
+"\n"
+"Vous devez avoir une connexion internet active pour les télécharger,\n"
+"par exemple si vous êtes en réseau et que votre serveur est connecté.\n"
+"\n"
+"Souhaitez-vous installer les mises-à-jour ?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "All data on this partition should be backed-up"
+#: ../../install_steps_interactive.pm_.c:876
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-"Toutes les données présentes sur cette partition\n"
-"devraient avoir été sauvegardées."
+"Connexion au site web de Mandrake Linux pour obtenir la liste des serveurs "
+"miroirs disponibles..."
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "Installation du paquetage %s"
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
+msgstr "Choisissez un serveur miroir d'où télécharger les paquetages"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
-msgstr "Vérification du périphérique et configuration de HPOJ..."
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Téléchargement de la liste des paquetages disponibles..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Pour pouvoir utiliser plus de partitions, vous devez d'abord en supprimer "
-"une pour la remplacer par une partition étendue."
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr "Quelle est votre fuseau horaire ?"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
-"Votre imprimante HP a été configurée automatiquement pour vous donner accès "
-"aux lecteurs de carte mémoire à partir de votre PC. Maintenant vous pouvez "
-"accéder à vos cartes en utilisant le programme graphique "
-"« MtoolsFM » (Menu : « Applications » -> « Outils fichiers » -> "
-"« gestionnaire de fichiers MTools ») ou le programme en ligne de commande "
-"mtools (tapez « man mtools » pour plus d'infos). Vous accéderez à la carte "
-"par le lecteur ayant la lettre « p: », ou une autre lettre si vous avez plus "
-"d'un appareil de ce type. Dans « MtoolsFM » vous pouvez commuter entre "
-"plusieurs lecteurs grâce au champ situé dans le coin supérieur droit de la "
-"liste de fichiers."
+#: ../../install_steps_interactive.pm_.c:923
+msgid "Hardware clock set to GMT"
+msgstr "Horloge système réglée sur le Temps Universel (GMT)"
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "Choix des paquetages"
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Synchronisation automatique de l'horloge (via NTP)"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-"TOUTES les partitions et les données présentes sur le disque %s seront "
-"perdues"
+#: ../../install_steps_interactive.pm_.c:931
+msgid "NTP Server"
+msgstr "Serveur NTP"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
-msgstr ""
-"Votre système ne dispose pas d'assez d'espace libre pour l'installation ou "
-"la mise à jour (%d > %d)"
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
+msgstr "Serveur CUPS distant"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
-msgstr ""
-"Toute imprimante a besoin d'un nom (par exemple « lpr ») auquel on se réfère "
-"pour pouvoir imprimer.\n"
-"Les champs « Description » et « Emplacement » n'ont pas besoin d'être "
-"remplis. Ce sont de simples commentaires pour les utilisateurs."
+#: ../../install_steps_interactive.pm_.c:966
+msgid "No printer"
+msgstr "Pas d'imprimante"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:982
+msgid "Do you have an ISA sound card?"
+msgstr "Possédez-vous une carte son ISA ?"
+
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
+msgstr "Lancez « sndconfig » après l'installation pour configurer la carte son"
+
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-"« %s »: en cliquant sur « %s », l'outil de configuration d'impression sera\n"
-"démarré. Consultez le chapitre correspondant du « Guide de démarrage » pour\n"
-"plus de renseignements. L'interface qui y est documentée est similaire à\n"
-"celle rencontrée lors de l'installation."
+"Aucune carte son detectée. Essayez avec « harddrake » après l'installation"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr "Bhoutan"
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
+msgstr "Résumé"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "Carte réseau"
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
+msgstr "Souris"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet failed."
-msgstr "La déconnexion d'Internet a échouée."
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
+msgstr "Fuseau horaire"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
-msgstr "Lecture des données de l'imprimante..."
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "Imprimante"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "Coréen"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
+msgstr "Carte RNIS/ISDN"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Not connected"
-msgstr "Non connecté"
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
+msgstr "Carte son"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "No internet connection configured"
-msgstr "Aucune connexion internet n'a ete Configuration"
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
+msgstr "Carte TV"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
-msgstr "Grec"
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
+msgstr "LDAP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr "Saint-Kitts-et-Nevis"
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+msgid "NIS"
+msgstr "NIS"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Souris standard à 3 boutons avec émulation de la molette"
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+msgid "Windows Domain"
+msgstr "Domaine Windows"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
-msgstr "Autoriser le démarrage sur l'OF ?"
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+msgid "Local files"
+msgstr "Fichiers locaux"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Les partitions JFS doivent faire au moins 16 Mo."
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr "Mot de passe root"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Effacer votre support réinscriptible (1ere session)"
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr "Pas de mot de passe"
-#: ../../Xconfig/various.pm:1
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Fréquence verticale : %s\n"
+msgid "This password is too short (it must be at least %d characters long)"
+msgstr "Ce mot de passe est trop court (minimum %d caractères)"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
-msgstr "Point de montage"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "Authentification"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
-"Une erreur est survenue :\n"
-"%s\n"
-"Essayez de changer les paramètres"
+#: ../../install_steps_interactive.pm_.c:1088
+msgid "Authentication LDAP"
+msgstr "Authentification LDAP"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr "Hôte TCP/IP « %s », port « %s »"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
+msgstr "Racine (dn) LDAP"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "User :"
-msgstr "Utilisateur :"
+#: ../../install_steps_interactive.pm_.c:1090
+msgid "LDAP Server"
+msgstr "Serveur LDAP"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore system"
-msgstr "Restaurer le système"
+#: ../../install_steps_interactive.pm_.c:1096
+msgid "Authentication NIS"
+msgstr "Authentification NIS"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "Domaine NIS"
+
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr "Serveur NIS"
+
+#: ../../install_steps_interactive.pm_.c:1104
msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
+"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 ""
-"Voici les machines à partir desquelles les scanners connectés localement "
-"seront disponibles :"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
-msgstr "L'adresse DHCP de fin"
+"Pour que cela fonctionne avec un Contrôleur Principal de Domaine (PDC) "
+"Windows 2000, vous devrez probablement dire à l'administrateur de lancer : C:"
+"\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /add et de "
+"redémarrer le serveur.\n"
+"Vous aurez aussi besoin des nom utilisateur et mot de passe d'un "
+"administrateur de Domaine pour joindre la machine au Domaine Windows(TM).\n"
+"Si le réseau n'est pas encore activé, le domaine sera joint après l'étape de "
+"configuration du réseau.\n"
+"Si cette étape échoue pour quelque raison que ce soit et que "
+"l'authentification de domaine ne fonctionne pas, lancez 'smbpasswd -j DOMAIN "
+"-U USER%PASSWORD' en utilisant votre domaine Windows(tm), et vos nom "
+"d'administateur et mot de passe, après le démarrage du système.\n"
+"La commande 'wbinfo -t' permet de tester le fonctionnement de "
+"l'authentification."
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Another one"
-msgstr "Un autre"
+#: ../../install_steps_interactive.pm_.c:1106
+msgid "Authentication Windows Domain"
+msgstr "Authentification au Domaine Windows"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
-msgstr "Drakbackup"
+#: ../../install_steps_interactive.pm_.c:1108
+msgid "Domain Admin User Name"
+msgstr "Nom d'administrateur de domaine"
-#: ../../lang.pm:1
-#, c-format
-msgid "Colombia"
-msgstr "Colombie"
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
+msgstr "Mot de passe d'administration de domaine"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1144
msgid ""
-"Current configuration of `%s':\n"
+"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"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
msgstr ""
-"Configuration actuelle de « %s » :\n"
+"Une disquette d'amorçage permet de lancer votre système Linux\n"
+"sans utiliser le programme d'amorçage du disque dur.\n"
"\n"
-"Réseau : %s\n"
-"Adresse IP : %s\n"
-"Attribution de l'adresse : %s\n"
-"Pilote : %s"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr "Plug'n Play"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr "Réunion, île de la"
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "Détails"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "Pour des raisons de sécurité, il va être déconnecté maintenant."
+"C'est utile si vous ne voulez pas installer SILO sur votre système,\n"
+"si un autre système d'exploitation supprime le programme d'amorçage, ou "
+"encore\n"
+"si ce dernier ne peut être installé sur votre machine.\n"
+"\n"
+"Vous pouvez également utiliser cette disquette avec l'image de secours "
+"Mandrake.\n"
+"Cela permet une récupération plus aisée du système en cas de problèmes "
+"majeurs.\n"
+"\n"
+"Si vous voulez créer une disquette d'amorçage pour votre système, insérez \n"
+"une disquette dans le premier lecteur et appuyer sur « Ok »."
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Synchronization tool"
-msgstr "Outil de synchronisation"
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr "Premier lecteur de disquette"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking your system..."
-msgstr "Vérification de votre système..."
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "Second lecteur de disquette"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print"
-msgstr "Imprimer"
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "Abandonner"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:1167
#, c-format
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+"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"
msgstr ""
-"Insérez la bande ayant pour nom %s\n"
-"dans le lecteur de bande %s."
+"Une disquette d'amorçage permet de lancer votre système Linux\n"
+"sans utiliser le programme d'amorçage du disque dur.\n"
+"\n"
+"C'est utile si vous ne voulez pas installer LILO sur votre système,\n"
+"si un autre système d'exploitation supprime le programme d'amorçage, ou "
+"encore\n"
+"si ce dernier ne peut être installé sur votre machine.\n"
+"\n"
+"Vous pouvez également utiliser cette disquette avec l'image de secours "
+"Mandrake.\n"
+"Cela permet une récupération plus aisée du système en cas de problèmes "
+"majeurs.\n"
+"\n"
+"Désirez-vous créer une disquette d'amorçage pour votre système ?\n"
+"%s"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "Mongolie"
+#: ../../install_steps_interactive.pm_.c:1173
+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)."
+msgstr ""
+"\n"
+"\n"
+"(ATTENTION ! Vous utilisez XFS pour votre partition racine,\n"
+"créer une disquette de boot 1.44 Mb va probablement échouer,\n"
+"parce que XFS a besoin d'un pilote très gros)."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
-msgstr "Montée\n"
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "Désolé, aucun lecteur de disquette ne semble disponible"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS"
+#: ../../install_steps_interactive.pm_.c:1185
+msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-"Configuration\n"
-"de CUPS"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Interface"
-msgstr "Interface graphique"
+"Choisissez le lecteur de disquette à utiliser pour\n"
+"créer votre disquette d'amorçage."
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:1189
#, c-format
-msgid "Restore Users"
-msgstr "Restaurer les comptes utilisateurs"
+msgid "Insert a floppy in %s"
+msgstr "Insérez une disquette dans le %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Encryption key for %s"
-msgstr "Clef de chiffrement pour %s"
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr "Création de la disquette d'amorçage..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to recover your system?"
-msgstr "Désirez-vous restaurer votre système?"
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr "Préparation du programme d'amorçage..."
-#: ../../services.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1210
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."
+"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 to boot your machine"
msgstr ""
-"Le portmapper gère les connexions RPC qui sont utilisées par des serveurs "
-"comme NFS et NIS. Le serveur portmap doit être activé sur des machines "
-"jouant le rôle de serveur pour des protocoles utilisant le mécanisme RPC."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detected hardware"
-msgstr "Matériel détecté"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritius"
-msgstr "Maurice"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
-msgstr "Myanmar (Burmese)"
+"Il semble que votre machine ne soit pas dotée de l'architecture "
+"« NewWorld ».\n"
+"Le programme d'amorçage « yaboot » ne fonctionnera pas.\n"
+"L'installation va continuer, mais vous aurez besoin de « BootX » pour "
+"démarrer\n"
+"votre machine."
-#: ../../fs.pm:1
-#, c-format
-msgid "Enabling swap partition %s"
-msgstr "Activer la partition d'échange %s"
+#: ../../install_steps_interactive.pm_.c:1216
+msgid "Do you want to use aboot?"
+msgstr "Désirez-vous utiliser « aboot » ?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
+#: ../../install_steps_interactive.pm_.c:1219
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
-"Il n'y a aucune partition FAT à utiliser pour le bouclage (ou trop peu "
-"d'espace est disponible)"
+"Une erreur est survenue lors de l'installation de « aboot ».\n"
+"Désirez-vous forcer l'installation au risque de détruire la\n"
+"première partition du disque ?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr "Arménien (ancien)"
+#: ../../install_steps_interactive.pm_.c:1226
+msgid "Installing bootloader"
+msgstr "Installation du programme d'amorçage..."
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-"Une imprimante nommée « %s » existe déjà sous %s.\n"
-"Cliquez sur « Transfert » pour la remplacer.\n"
-"Vous pouvez également taper un nouveau nom ou\n"
-"simplement ignorer cette imprimante."
+"L'installation du programme d'amorçage a échoué pour la raison suivante :"
-#: ../advertising/12-mdkexpert.pl:1
+#: ../../install_steps_interactive.pm_.c:1240
#, c-format
msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
-msgstr "Résolvez vos problèmes via notre plate-forme de support en ligne."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ", hôte « %s », port « %s »"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Monaco"
-msgstr "Monaco"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Le partitionnement a échoué : %s"
-
-#: ../../fs.pm:1 ../../swap.pm:1
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "le formatage au format %s de %s a échoué"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Canada (cable)"
-msgstr "Canada (câble)"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Floppy creation completed"
-msgstr "La création de la disquette est maintenant terminée"
+"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 ""
+"Vous aurez peut-être besoin de changer le périphérique d'amorçage\n"
+"de l'OpenFirmware pour activer le programme d'amorçage. Si vous\n"
+"ne voyez pas apparaître l'invite du programme d'amorçage lorsque\n"
+"vous redémarrerez, appuyez sur Command-Option-O-F au démarrage et\n"
+"entrez :\n"
+"setenv boot-device %s,\\\\:tbxi\n"
+"Puis tapez : shut-down\n"
+"Au prochain démarrage vous devriez voir apparaître l'invite du\n"
+"programme d'amorçage."
-#: ../../help.pm:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "Upgrade"
-msgstr "Mise à jour"
+msgid "Insert a blank floppy in drive %s"
+msgstr "Insérez une disquette vierge dans le lecteur %s"
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
-msgstr "Station de travail"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
+msgstr "Création de la disquette d'auto-installation..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1289
msgid ""
-"Installing package %s\n"
-"%d%%"
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
msgstr ""
-"Installation du paquetage %s\n"
-"%d%%"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
-msgstr "Kirghizistan"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on USB"
-msgstr "Périphérique USB multifonction"
+"Certaines étapes ne sont pas terminées.\n"
+"\n"
+"Souhaitez-vous vraiment quitter maintenant ?"
-#: ../../../move/move.pm:1
+#: ../../install_steps_interactive.pm_.c:1300
#, 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"
+"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"
-"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."
+"%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 ""
-"Aucune clé USB n'a été détectée sur votre système. Si vous\n"
-"connectez une clé USB maintenant, Mandrake Move pourra\n"
-"sauvegarder automatiquement les données de votre dossier\n"
-"personnel et les configurations système, pour le prochain\n"
-"démarrage de votre ordinateur ou bien sur un autre\n"
-"ordinateur. Notez que si vous connectez une clé maintenant,\n"
-"il faut attendre quelques secondes avant de détecter à\n"
-"nouveau la présence de la clé.\n"
+"Félicitations, l'installation est terminée.\n"
+"Enlevez la disquette ou le cédérom d'amorçage et appuyez sur « Entrée ».\n"
+"\n"
+"\n"
+"Pour toutes informations sur les corrections disponibles pour cette version "
+"de Mandrake Linux, consultez les Errata disponibles depuis :\n"
+"\n"
+"\n"
+"%s\n"
"\n"
"\n"
-"Vous pouvez aussi continuer sans clé USB - vous pourrez\n"
-"toujours utiliser Mandrake Move comme un système\n"
-"d'exploitation Mandrake sur CDROM."
+"Des informations sur la configuration de votre système sont \n"
+"disponibles dans le Guide de l'Utilisateur de Mandrake Linux."
-#: ../../help.pm:1
-#, c-format
-msgid "With basic documentation"
-msgstr "Avec la documentation de base"
+#: ../../install_steps_interactive.pm_.c:1313
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
-msgstr ""
-"Anacron exécute des tâches périodiques avec une précision exprimée en jours. "
-"Les tâches sont exécutées automatiquement au redémarrage de la machine si "
-"elles ont expirés leur délai. Quelques tâches de maintenance quotidiennes et "
-"hebdomadaires sont préconfigurées pour le système Mandrake.(Plus d'infos "
-"dans « man anacron »)"
+#: ../../install_steps_interactive.pm_.c:1318
+msgid "Generate auto install floppy"
+msgstr "Créer une disquette d'auto-installation"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1320
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 `/'"
+"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 ""
-"Vous devez avoir une partition racine.\n"
-"Pour la définir, créez une partition (ou choisissez-en une déjà\n"
-"existante) puis cliquez sur « Point de montage » et choisissez « / »."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
-msgstr "Sahara Occidental"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "La syntaxe doit être http://..."
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr "Afrique du Sud"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Eject tape after the backup"
-msgstr "Éjectez la bande une fois la sauvegarde effectuée"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
-msgstr "disquette/ISO etherboot"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Modify printer configuration"
-msgstr "Modifier la configuration de l'imprimante"
+"L'auto-installation peut être complètement automatique si nécessaire,\n"
+"dans ce cas elle prend le contrôle du disque dur !!\n"
+"(prévu pour l'installation d'une autre machine).\n"
+"\n"
+"Vous pouvez préférer rejouer l'installation.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose a partition"
-msgstr "Choisissez une partition"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
+msgstr "Automatisée"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Edit current rule"
-msgstr "Modifier la règle"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Replay"
+msgstr "Rejouer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
-msgstr "%s"
+#: ../../install_steps_interactive.pm_.c:1328
+msgid "Save packages selection"
+msgstr "Sauvegarder la sélection des paquetages"
-#: ../../mouse.pm:1
+#: ../../install_steps_newt.pm_.c:20
#, c-format
-msgid "Please test the mouse"
-msgstr "Veuillez tester votre souris"
+msgid "Mandrake Linux Installation %s"
+msgstr "Installation de Mandrake Linux %s"
-#: ../../fs.pm:1
-#, c-format
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
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)."
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-"Ne pas mettre à jour l'heure d'accès aux inodes sur ce système de fichier\n"
-"(par exemple, afin d'avoir d'accélérer un serveur de nouvelles via un accès "
-"plus rapide aux à ces dernières)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr "3 bouttons avec émulation de la molette"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Sticky-bit"
-msgstr "Sticky-bit"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other Media"
-msgstr "Autre support"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files"
-msgstr "Sauvegarde des fichiers systèmes..."
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Sector"
-msgstr "Secteur"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Qatar"
-msgstr "Qatar"
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Base dn"
-msgstr "Racine (dn) LDAP"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "Il n'y a pas assez de place pour installer ce paquetage"
-
-#: ../../help.pm:1
-#, c-format
-msgid "generate auto-install floppy"
-msgstr "Créer une disquette d'auto-installation"
+"<Tab> suivant | <Alt-Tab> précédent | <Espace> sélectionner | <F12> Écran "
+"suivant "
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Dialing mode"
-msgstr "Numérotation"
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
+msgstr "le programme « kdesu » est introuvable"
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
-msgstr "Partage de fichiers"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
+msgstr "le programme « consolehelper » est introuvable"
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "Vider le dossier /tmp à chaque démarrage"
+#: ../../interactive.pm_.c:152
+msgid "Choose a file"
+msgstr "Choisissez un fichier"
-#: ../../lang.pm:1
-#, c-format
-msgid "Malawi"
-msgstr "Malawi"
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
+msgstr "Avancé"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: false"
-msgstr "fichiers locaux: non"
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
+msgstr "Basique"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "System settings"
-msgstr "Réglages système"
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
+msgstr "<- Précédent"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please choose your type of mouse."
-msgstr "Veuillez choisir le type de votre souris."
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+msgid "Next"
+msgstr "Suivant ->"
-#: ../../services.pm:1
-#, c-format
-msgid "running"
-msgstr "actif"
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr "Choix erroné, veuillez recommencer\n"
-#: ../../standalone/harddrake2:1
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "class of hardware device"
-msgstr "classe de matériel"
+msgid "Your choice? (default %s) "
+msgstr "Que choisissez-vous ? (%s par défaut) "
-#: ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-"Voici les machines et les réseaux à partir desquels les imprimantes locales "
-"seront disponibles :"
-
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "Royaume-Uni"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Indonesia"
-msgstr "Indonésie"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "par défaut"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "France [SECAM]"
-msgstr "France [SECAM]"
-
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "protection"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "must have"
-msgstr "obligatoire"
+"Les champs que vous devrez remplir sont :\n"
+"%s"
-#: ../../printer/printerdrake.pm:1
+#: ../../interactive/stdio.pm_.c:70
#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
-msgstr ""
-"CUPS ne supporte pas les imprimantes sur les serveurs Novell ni les "
-"impressions vers des commandes shell.\n"
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Votre choix ? (0/1, défaut « %s »)"
-#: ../../lang.pm:1
+#: ../../interactive/stdio.pm_.c:95
#, c-format
-msgid "Senegal"
-msgstr "Sénégal"
+msgid "Button `%s': %s"
+msgstr "Bouton « %s » : %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Command line"
-msgstr "Ligne de commande"
+#: ../../interactive/stdio.pm_.c:96
+msgid "Do you want to click on this button?"
+msgstr "Désirez-vous cliquer sur ce bouton ?"
-#: ../advertising/08-store.pl:1
-#, 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:"
-msgstr ""
-"Notre gamme complète de solutions Linux ainsi que des offres spéciales sur "
-"des produits et accessoires sont disponibles sur notre boutique en ligne :"
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
+msgstr "Saisissez `void' pour une entrée vide"
-#: ../../standalone/drakbackup:1
+#: ../../interactive/stdio.pm_.c:105
#, c-format
-msgid "March"
-msgstr "Mars"
+msgid "Your choice? (default `%s'%s) "
+msgstr "Que choisissez-vous ? (« %s » par défaut%s) "
-#: ../../any.pm:1
+#: ../../interactive/stdio.pm_.c:123
#, c-format
-msgid "access to administrative files"
-msgstr "accès aux fichiers d'administration"
+msgid "=> There are many things to choose from (%s).\n"
+msgstr "=> Il y a beaucoup de choses à choisir (%s).\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../interactive/stdio.pm_.c:126
msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
msgstr ""
-"Impossible d'envoyer un courrier\n"
-" Votre rapport n'a pas été envoyé.\n"
-" Veuillez configurer « sendmail »"
+"Veuillez choisir le premier nombre du groupe de 10 que vous\n"
+"souhaitez modifier, ou appuyez juste sur <Entrée> pour continuer.\n"
+"Votre choix ? "
-#: ../../fs.pm:1
+#: ../../interactive/stdio.pm_.c:139
#, 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.)"
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
-"Empêche les bits SUID ou SGID d'être actifs. (Cela semble sûr, sauf si "
-"suidperl(1) est installé.)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
-msgstr "Dépendances automatiques"
+"=> Notez qu'un message a changé :\n"
+"%s"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "Swap"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
+msgstr "Revalider"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Custom settings"
-msgstr "Réglages personnalisés"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "tchèque (QWERTZ)"
-#: ../../../move/move.pm:1
-#, 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."
-msgstr ""
-"La clé USB semble être protégée en écriture, mais nous\n"
-"ne pouvons pas la déconnecter de manière sûre maintenant.\n"
-"\n"
-"\n"
-"Cliquez le bouton pour redémarrer l'ordinateur,\n"
-"déconnectez la clé, enlevez la protection en écriture,\n"
-"connectez la clé à nouveau, et relancez Mandrake Move."
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "allemand"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Other"
-msgstr "Restaurer les autres fichiers ou dossiers"
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Dvorak standard"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "Carte TV"
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "espagnol"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Imprimante sur serveur SMB (Windows 95/98/NT)"
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "finlandais"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Configure CUPS"
-msgstr "/_Configuration de CUPS"
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "français"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
-msgstr ", "
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "norvégien"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
-msgstr "Envoyer la liste des périphériques PCI"
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "polonais"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove selected host/network"
-msgstr "Supprimer l'hôte/réseau sélectionné"
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "russe"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
-"Postfix est un agent de transport du courrier (Mail Transport Agent - MTA) "
-"permettant l'échange de courriers électroniques entre machines."
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
+msgstr "suédois"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Uzbek (cyrillic)"
-msgstr "Ouzbékistanais (cyrillique)"
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "anglais"
-#: ../../keyboard.pm:1
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
-"Vous pouvez choisir ici la touche ou la combinaison de touches qui\n"
-"permettra de commuter entre les différents types de claviers\n"
-"(ex : latin et non latin)"
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "américain (États-Unis)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Branchement à chaud du réseau"
+#: ../../keyboard.pm_.c:167
+msgid "Albanian"
+msgstr "albanais"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
-msgstr "Si oui, envoie le rapport de vérification dans le terminal."
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
+msgstr "arménien (ancien)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From CD"
-msgstr "Restaurer à partir d'un CD"
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
+msgstr "arménien (machine à écrire)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
-msgstr ""
-"Vous êtes sur le point de configurer votre ordinateur pour partager sa "
-"connexion internet.\n"
-"Avec cette fonction, d'autres ordinateurs sur votre réseau local pourront "
-"utiliser la connexion internet de cet ordinateur.\n"
-"\n"
-"Assurez-vous d'avoir configuré votre accès Réseau/Internet grâce à "
-"DrakConnect avant d'aller plus loin.\n"
-"\n"
-"Veuillez noter que vous avez besoin d'une carte réseau dédiée à votre réseau "
-"local."
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
+msgstr "arménien (phonétique)"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr "Veuillez choisir la carte réseau qui sera connectée à Internet"
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
+msgstr "azerbaïdjanais (latin)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Accès à la carte mémoire photo de votre périphérique multifonction"
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "belge"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
-msgstr ""
-"Améliorez les performances de votre ordinateur grâce à l'aide d'une "
-"sélection de partenaires offrant des solutions professionnelles compatibles "
-"avec Mandrake Linux"
+#: ../../keyboard.pm_.c:178
+msgid "Bengali"
+msgstr "Bengale"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
-msgstr "Auteurs: "
+#: ../../keyboard.pm_.c:179
+msgid "Bulgarian (phonetic)"
+msgstr "bulgare (phonétique)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Le partage de la connexion à Internet est maintenant désactivé."
+#: ../../keyboard.pm_.c:180
+msgid "Bulgarian (BDS)"
+msgstr "bulgare (BDS)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr ""
-"Si oui, vérifie les sommes de contrôle des fichiers ayant la permission suid/"
-"sgid."
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
+msgstr "brésilien"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latin American"
-msgstr "Latino-américain"
+#: ../../keyboard.pm_.c:184
+msgid "Bosnian"
+msgstr "Bosniaque"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Japanese text printing mode"
-msgstr "Mode d'impression du texte japonais"
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
+msgstr "blélorusse"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Old device file"
-msgstr "Ancien nom de périphérique"
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "suisse (allemand)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Info: "
-msgstr "Information : "
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "suisse (français)"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Button `%s': %s"
-msgstr "Bouton « %s » : %s"
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "tchèque (QWERTY)"
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Veuillez patienter"
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr "allemand (sans touches mortes)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
+msgstr "Devanagari"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "None"
-msgstr "Aucun"
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "danois"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "L'adresse IP n'est pas correcte.\n"
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Dvorak américain"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Veuillez vérifier que le démon « cron » fait partie de vos services."
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak norvégien"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
-msgstr "Carte ethernet"
+#: ../../keyboard.pm_.c:196
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak suédois"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete selected printer"
-msgstr "Supprimer l'imprimante sélectionée"
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "estonien"
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "Information"
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
+msgstr "géorgien (disposition russe)"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "Installation"
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
+msgstr "géorgien (disposition latine)"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-"Cliquez sur « %s » si vous voulez vraiment effacer toute l'information et\n"
-"les partitions. Soyez prudent, après avoir cliqué sur « %s », vous ne\n"
-"pourrez plus récupérer les données ou les partitions, y compris les données\n"
-"Windows.\n"
-"\n"
-"Cliquez « %s » pour annuler cette opération sans perdre de données."
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "grec"
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "Fin de l'installation"
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
+msgstr "Gujarati"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
-msgstr "Il faut une clé pour sauvegarder vos données"
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
+msgstr "Gurmukhi"
-#: ../../standalone/drakgw:1
-#, 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)."
-msgstr ""
-"Tout a été configuré.\n"
-"Vous pouvez maintenant partager votre connexion internet avec d'autres "
-"ordinateurs sur votre réseau local, en utilisant la configuration réseau "
-"automatique (DHCP)."
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "hongrois"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Serveur CUPS distant"
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "croate"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Souris SUN"
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
+msgstr "israélien"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
-msgstr ""
-"Une seule carte réseau est configurée sur votre système :\n"
-"\n"
-"%s\n"
-"\n"
-"Je vais configurer votre réseau local avec cette carte réseau."
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr "israélien (phonétique)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
-msgstr "Envoyer les informations sur le processeur"
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr "iranien"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Minimal install"
-msgstr "Installation minimale"
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr "islandais"
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "Éthiopie"
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "italien"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
-msgstr "OUI"
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
+msgstr "Inuktitut"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
-msgstr "Autoriser « crontab » et « at » pour les utilisateurs"
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
+msgstr "japonais 106 touches"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
-msgstr "Devanagari"
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
+msgstr "coréen"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
-msgstr ""
-"- périphériques PCI : slot, périphériques et fonction PCI de cette carte\n"
-"- périphériques EIDE : ce périphérique est soit maître, soit esclave\n"
-"- périphériques SCSI : le bus et l'identifiant SCSI"
+#: ../../keyboard.pm_.c:218
+msgid "Latin American"
+msgstr "latino-américain"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Taille totale : %d / %d Mo"
+#: ../../keyboard.pm_.c:219
+msgid "Laotian"
+msgstr "Laosien"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "disabled"
-msgstr "désactivé"
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
+msgstr "lituanien (AZERTY, ancien modèle)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Search for new scanners"
-msgstr "Rechercher des nouveaux scanners"
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
+msgstr "lituanien (AZERTY, nouveau modèle)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Disabling servers..."
-msgstr "Désactivation des serveurs..."
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "lituanien « ligne de nombres » QWERTY"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "L'installation de %s a échoué pour la raison suivante :"
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "lituanien « phonétique » QWERTY"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr "Impossible de lancer mkinitrd -f /boot/initrd-%s.img %s."
+#: ../../keyboard.pm_.c:225
+msgid "Latvian"
+msgstr "letton"
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
msgstr ""
-"Vous avez sélectionné le(s) serveur(s) suivant(s) : %s\n"
-"\n"
-"\n"
-"Ces serveurs seront activés par défaut.\n"
-"Ils n'ont actuellement aucun problème de sécurité connu,\n"
-"mais si des vulnérabilités sont découvertes par la suite,\n"
-"vous devrez effectuer une mise à jour le plus rapidement possible.\n"
-"\n"
-"\n"
-"Confirmez vous l'installation de ces serveurs ?\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Imprimante réseau autonome (TCP/Socket)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup User files..."
-msgstr "Sauvegarde des comptes utilisateurs..."
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "Installation du système"
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
+msgstr "macédonien"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "serveur DNS principal (optionnel)"
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
+msgstr "Myanmar (Burmese)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-"Sinon vous pouvez spécifier un nom de périphérique ou de fichier dans le "
-"champ d'entrée"
+#: ../../keyboard.pm_.c:229
+msgid "Mongolian (cyrillic)"
+msgstr "Mongolien (cyrillique)"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
-"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
-"symlink /etc/security/msec/server to point to\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
-"add a service if it is present in the file during the installation of\n"
-"packages."
-msgstr ""
-"Si SERVER_LEVEL (ou SECURE_LEVEL sinon) est supérieur à 3 dans\n"
-"/etc/security/msec/security.conf, créer le lien symbolique\n"
-"/etc/security/msec/server pointant vers\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"Le fichier /etc/security/msec/server est utilisé par chkconfig --add\n"
-"pour décider d'ajouter un service s'il est présent dans le fichier\n"
-"pendant l'installation des paquetages."
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
+msgstr "Maltais (UK)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian (Phonetic)"
-msgstr "Russe (phonétique)"
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
+msgstr "Maltais (US)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "dhcpd Config..."
-msgstr "Configuration de dhcpd..."
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
+msgstr "hollandais"
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "Installation de LILO ou Grub"
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
+msgstr "polonais (QWERTY)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
-msgstr "Israélien"
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
+msgstr "polonais (QWERTZ)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Imprimante « %s » sur serveur « %s »"
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
+msgstr "portugais"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
-msgstr "La disquette peut maintenant être retirée du lecteur"
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr "canadien (Québec)"
-#: ../../help.pm:1
-#, c-format
-msgid "Truly minimal install"
-msgstr "Installation réellement minimale"
+#: ../../keyboard.pm_.c:239
+msgid "Romanian (qwertz)"
+msgstr "roumain (QWERTZ)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "Danemark"
+#: ../../keyboard.pm_.c:240
+msgid "Romanian (qwerty)"
+msgstr "roumain (QWERTY)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "Déplacement de la partition..."
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "russe (Yawerty)"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "(This) DHCP Server IP"
-msgstr "Adresse IP du serveur DHCP"
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
+msgstr "slovénien"
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Test of the configuration"
-msgstr "Test de la configuration"
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "slovaque (QWERTZ)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing %s ..."
-msgstr "Installation de %s ..."
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "slovaque (QWERTY)"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, fuzzy, 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."
-msgstr ""
-"Finalement, si vous avez choisi de sélectionner individuellement les\n"
-"paquetages à installer, DrakX vous présentera un arbre contenant tous les\n"
-"paquetages, classés par groupes et sous-groupes. En naviguant à travers\n"
-"l'arbre, vous pouvez sélectionner des groupes, des sous-groupes ou des\n"
-"paquetages individuels.\n"
-"\n"
-"Dès que vous sélectionnez un paquetage dans l'arbre, une description\n"
-"apparaît à droite. Une fois votre sélection terminée, cliquez sur « %s »\n"
-"pour lancer le processus. Soyez patient, car en fonction du type\n"
-"d'installation choisi ou du nombre de paquetages sélectionnés, le temps\n"
-"requis peut être substantiellement différent. Une estimation du temps\n"
-"requis est présentée sur l'écran en cours d'opération afin de vous\n"
-"permettre d'évaluer de combien de temps vous disposez pour prendre votre\n"
-"déjeuner.\n"
-"\n"
-"!! Si un logiciel serveur a été sélectionné, vous devrez confirmer que vous\n"
-"voulez vraiment que celui-ci soit installé. Sous Mandrake, par défaut, tous\n"
-"les serveurs installés sont lancés au démarrage. Malgré tous les efforts\n"
-"investis pour vous livrer une distribution Linux sécuritaire, il est\n"
-"possible que certaines failles de sécurité affectes les serveurs installés\n"
-"au-delà de la date de publication. Si vous ne savez pas précisément à quoi\n"
-"sert un serveur en particulier ou pourquoi il est installé, cliquez sur\n"
-"« %s ». En cliquant sur « %s », le serveur sera installé et le service\n"
-"rendu disponible au démarrage. !!\n"
-"\n"
-"L'option « %s » désactive les avertissements qui apparaissent à chaque fois\n"
-"que l'installeur sélectionne un nouveau paquet. Ces avertissements\n"
-"surviennent parce que DrakX a déterminé que pour qu'un paquetage soit\n"
-"fonctionnel, il lui en faut un autre dont il est dépendant.\n"
-"\n"
-"La petite icône de disquette qui apparaît au bas de la liste permet de\n"
-"récupérer une liste de paquetages sélectionnés durant une autre\n"
-"installation. En cliquant dessus, on vous demandera d'insérer la disquette\n"
-"créée lors d'une installation précédente. Voir la deuxième note de la\n"
-"dernière étape afin de savoir comment créer une telle disquette."
+#: ../../keyboard.pm_.c:248
+msgid "Serbian (cyrillic)"
+msgstr "serbe (cyrillique)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
-msgstr "Choisissez la clef de chiffrement du système de fichiers"
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
+msgstr "tamoul (Unicode)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
+msgstr "tamoul (TSCII)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
-msgstr "Botswana"
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr "thaïlandais"
-#: ../../lang.pm:1
-#, c-format
-msgid "Andorra"
-msgstr "Andorre"
+#: ../../keyboard.pm_.c:254
+msgid "Tajik keyboard"
+msgstr "tadjik"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "(default value: %s)"
-msgstr "(valeur par défaut : %s)"
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr "turc (modèle traditionnel « F »)"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
-msgstr ""
-"Règle la durée de vie des mots de passe à « max » et le délai de changement "
-"de mot de passe à « inactive »."
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr "turc (modèle moderne « Q »)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (Letter)"
-msgstr "Page de test alternative (Letter)"
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr "ukrainien"
-#: ../../standalone/drakgw:1
-#, c-format
-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 ""
-"Configuration du serveur DHCP.\n"
-"\n"
-"Vous pouvez ici sélectionner différentes options pour le serveur DHCP.\n"
-"Si vous ne connaissez pas leur signification, laissez-les telles quelles.\n"
-"\n"
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "américain (international)"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Choose an X server"
-msgstr "Choisissez un serveur d'affichage (serveur XFree)"
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "vietnamien « colonne numérique » QWERTY"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
-msgstr "Copie en mémoire pour permettre l'éjection du CDROM"
+#: ../../keyboard.pm_.c:263
+msgid "Yugoslavian (latin)"
+msgstr "yougoslave (latin)"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Taille de la partition d'échange (swap) en Mo : "
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
+msgstr "Touche Alt droite"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No changes to backup!"
-msgstr "Pas de changement à sauvegarder !"
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
+msgstr "Deux touches Shift simultanément"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Formatted\n"
-msgstr "Formatée\n"
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
+msgstr "Touches Control et Shift simultanément"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Type of install"
-msgstr "Type d'installation"
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
+msgstr "Touche CapsLock (verrouillage majuscule)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Imprimante « %s » sur serveur Windows/SMB « %s »"
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
+msgstr "Touches Ctrl et Alt simultanément"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
-msgstr "%d nombres séparés par des virgules"
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
+msgstr "Touches Alt et Shift simultanément"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
-msgstr ""
-"Le protocole rusers permet aux utilisateurs de connaître tous les "
-"utilisateurs connectés aux machines supportant ce protocole."
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
+msgstr "Touche « Menu »"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Configuration des étapes automatiques"
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr "Touche « Windows » gauche"
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
-msgstr "Barbade"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
+msgstr "Touche « Windows » droite"
-#: ../advertising/02-community.pl:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
-msgstr ""
-"Vous désirez en savoir plus et contribuer à la communauté Open Source ? "
-"Impliquez-vous dans le monde Open Source !"
+msgid "Circular mounts %s\n"
+msgstr "Points de montage circulaires %s\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to backup..."
-msgstr "Veuillez choisir les données à sauvegarder..."
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
+msgstr "Enlevez d'abord les volumes logiques\n"
-#: ../../standalone/net_monitor:1
-#, c-format
+#: ../../modules.pm_.c:290
msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
-msgstr ""
-"La connexion a échoué.\n"
-"Vérifiez votre configuration dans le Centre de Contrôle Mandrake."
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received"
-msgstr "reçus"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-"Autoriser « su » seulement aux membres du groupe « wheel » ou à tout le monde"
+"Le support du PCMCIA n'est plus disponible avec les noyaux 2.2. Veuillez "
+"utiliser un noyau 2.4."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
-msgstr "/Fichier/_Nouveau"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
+msgstr "Vous pouvez configurer ici chaque paramètre du module."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DNS Server IP"
-msgstr "L'adresse IP du serveur DNS"
+#: ../../modules/parameters.pm_.c:18
+#, fuzzy
+msgid "modinfo is not available"
+msgstr "Aucun lecteur de disquette disponible"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range End:"
-msgstr "Fin de la plage d'adresses IP :"
+#: ../../modules/parameters.pm_.c:50
+msgid "a number"
+msgstr "un nombre"
-#: ../../security/level.pm:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "High"
-msgstr "Élevée"
+msgid "%d comma separated numbers"
+msgstr "%d nombres séparés par des virgules"
-#: ../../standalone/printerdrake:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "Add a new printer to the system"
-msgstr "Ajouter une nouvelle imprimante au système"
+msgid "%d comma separated strings"
+msgstr "%d chaînes séparées par des virgules"
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr "NoVideo"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
+msgstr "nombres séparés par des virgules"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
-msgstr "ce champs décrit le périphérique"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated strings"
+msgstr "chaînes séparées par des virgules"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Ajout de l'imprimante à StarOffice/OpenOffice"
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Souris SUN"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printers"
-msgstr "Imprimantes locales"
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Installation image directory"
-msgstr "Dossier des images d'installation"
+#: ../../mouse.pm_.c:33
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Souris standard PS2 à molette"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "Serveur NIS"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Port: %s"
-msgstr "Port : %s"
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "Espagne"
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
-msgstr "configuration locale: %s"
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "Ce nom d'utilisateur est déjà utilisé"
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+msgid "Microsoft Explorer"
+msgstr "Microsoft Explorer"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Choose a file"
-msgstr "Choisissez un fichier"
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
+msgstr "1 bouton"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr "Appliquer"
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "Souris standard à 2 boutons"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Auto-detect available ports"
-msgstr "Auto-détecter les ports disponibles"
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "Roulette"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr "San Marin"
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "série"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Le partage de la connexion à Internet est désactivé"
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "Souris standard à 3 boutons"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Belgium"
-msgstr "Belgique"
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
-msgstr "Koweit"
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "Choisissez l'environnement graphique :"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
-msgstr "Décembre"
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "sub generation of the cpu"
-msgstr "sous-génération de processeur"
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "First Time Wizard"
-msgstr "Assistant de première connexion"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "MM Series"
-#: ../../lang.pm:1
-#, c-format
-msgid "Taiwan"
-msgstr "Taïwan"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "Pakistan"
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Souris Logitech (série, ancien modèle C7)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "s'il vous plaît attendez, examen du fichier : %s"
+#: ../../mouse.pm_.c:68
+msgid "busmouse"
+msgstr "souris bus"
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Une erreur est survenue et semble difficile à résoudre correctement.\n"
-"Vous pouvez continuer, mais à vos risques et périls."
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "2 boutons"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Importance: "
-msgstr "Importance : "
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "3 boutons"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
-msgstr ""
-"Afin de pouvoir imprimer avec votre imprimante Lexmark inkjet et la "
-"configuration actuelle, vous avez besoin des pilotes d'impression inkjet "
-"fournis par Lexmark (http://www.lexmark.com/). Allez sur la section "
-"« Drivers » du site américain de Lexmark, puis choisissez votre modèle et "
-"enfin « Linux » comme système d'exploitation. Les pilotes sont des "
-"paquetages RPM ou des scripts shell avec une installation graphique "
-"interactive. Vous n'avez pas besoin de faire cette configuration avec "
-"l'interface graphique. Annulez directement après l'acceptation de la "
-"licence. Ensuite, imprimez les pages pour l'alignement des têtes "
-"d'impression avec « lexmarkmaintain » et ajustez les paramètres de ces têtes "
-"avec ce programme."
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "aucun"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Permissions"
-msgstr "Permissions"
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "Pas de souris"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Fournisseur d'accès (ex. : fournisseur.fr)"
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
+msgstr "Veuillez tester votre souris"
-#: ../../install_steps_gtk.pm:1
-#, 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'."
-msgstr ""
-"Votre ordinateur possède peu de mémoire. Vous aurez peut-être quelques\n"
-"problèmes pour installer Mandrake Linux. Si cela se produit, vous pouvez\n"
-"essayer de procéder à une installation en mode texte. Pour cela, appuyez\n"
-"sur la touche « F1 » après l'amorçage sur CD-Rom puis entrez « text »."
+#: ../../mouse.pm_.c:491
+msgid "To activate the mouse,"
+msgstr "Pour activer la souris,"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr "Utiliser la partition Windows pour le bouclage"
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr "VEUILLEZ FAIRE TOURNER LA MOLETTE !"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
-msgstr "Arménien (machine à écrire)"
+#: ../../my_gtk.pm_.c:65
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection type: "
-msgstr "Type de connexion : "
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
+msgstr "Terminer"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Graphical interface"
-msgstr "Interface graphique"
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
+msgstr "Suivant ->"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
-msgstr "Tchad"
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "Est-ce correct ?"
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "Inde"
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "Information"
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s avec accélération 3D matérielle"
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
+msgstr "Développer l'arborescence"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr "Slovaquie"
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
+msgstr "Réduire l'arborescence"
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "Singapour"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr "Basculer entre tri alphabétique et tri par groupes"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
-msgstr "Cambodge"
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "utiliser « pppoe »"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Fréquence horizontale : %s\n"
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
+msgstr "utiliser « pptp »"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
-msgstr "Chemin"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
+msgstr "utiliser « dhcp »"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
-msgstr "NON TROUVÉ"
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
+msgstr "Alcatel Speedtouch USB"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
msgstr ""
-"Vous pouvez spécifier ici une ligne de commande dans laquelle sera "
-"redirigée l'impression, au lieu d'être envoyée à l'imprimante."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
+msgstr "Connexion à Internet"
+
+#: ../../network/adsl.pm_.c:30
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?"
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-"Le système d'impression (%s) ne sera pas activé automatiquement lors du "
-"démarrage de la machine.\n"
+"La façon la plus courante de se connecter à Internet en utilisant\n"
+"une ligne ADSL est d'utiliser « pppoe ».\n"
"\n"
-"Il est possible que l'activation automatique ait été supprimée par "
-"l'utilisation d'un plus grand niveau de sécurité, car les systèmes "
-"d'impression sont des cibles potentielles d'attaque.\n"
+"Certaines connexions utilisent « pptp », quelques unes se servent de "
+"« DHCP ».\n"
"\n"
-"Souhaitez-vous rétablir l'activation automatique du système d'impression ?"
+"Si vous ne savez pas quoi choisir, utilisez pppoe."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:166
msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-"Imprimante %s\n"
-"Que souhaitez-vous modifier sur cette imprimante ?"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add host"
-msgstr "Ajouter un hôte"
+#: ../../network/drakfirewall.pm_.c:12
+msgid "Web Server"
+msgstr "Serveur Web"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:17
+msgid "Domain Name Server"
+msgstr "Serveur de Noms de domaine"
+
+#: ../../network/drakfirewall.pm_.c:32
+msgid "Mail Server"
+msgstr "Serveur de courrier"
+
+#: ../../network/drakfirewall.pm_.c:37
+msgid "POP and IMAP Server"
+msgstr "Serveur POP et IMAP"
+
+#: ../../network/drakfirewall.pm_.c:111
+msgid "No network card"
+msgstr "Aucune carte réseau"
+
+#: ../../network/drakfirewall.pm_.c:129
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"
+"drakfirewall configurator\n"
"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"Si vous pensez vraiment savoir quel pilote est le bon pour votre carte\n"
-"vous pouvez en choisir un dans la liste ci-dessous.\n"
+"Configuration de drakfirewall\n"
"\n"
-"Le pilote actuel pour votre carte son \"%s\" est \"%s\"."
+"Ceci configure un Pare-Feu (firewall) personnel pour votre machine Mandrake "
+"Linux.\n"
+"Si vous souhaitez un Pare-Feu dédié plus puissant, tournez-vous plutôt vers\n"
+"la distribution spécialisée « MandrakeSecurity »."
-#: ../../any.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:135
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"
+"drakfirewall configurator\n"
"\n"
-"\"Custom\" permit a per-user granularity.\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-"Souhaitez-vous permettre aux utilisateurs de partager certains sous-"
-"répertoires de leur dossier personnel (/home) ?\n"
-"De cette façon, les utilisateurs pouront simplement cliquer sur « Partager » "
-"dans Konqueror (kde) et Nautilus (gnome).\n"
-"\n"
-"« Personnalisée » permet d'autoriser le partage pour certains utilisateurs.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr "Quels services souhaitez-vous laisser accessible depuis internet ?"
+
+#: ../../network/drakfirewall.pm_.c:153
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-"Vous avez le choix entre :\n"
-"- Sauver sur disquette la sélection des paquetages.\n"
-"- Établir un nouveau choix de sélection à partir d'une sauvegarde sur "
-"disquette.\n"
-"Le format est le même que celui des disquettes générées pour l'installation "
-"automatisée."
+"Vous pouvez entrer divers ports. \n"
+"Exemples valides: 139/tcp 139/udp.\n"
+"Jetez un ½il à /etc/services pour plus d'infos."
-#: ../../../move/tree/mdk_totem:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
-msgid "No CDROM support"
-msgstr "Pas de support du CDROM"
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
+"Le port entré est incorrect: %s.\n"
+"Le bon format est « port/tcp » ou « port/udp », \n"
+"où le port est compris entre 1 et 65535."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "China (broadcast)"
-msgstr "Chine (hertzien)"
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
+msgstr "Tout (pas de firewall)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use quota for backup files."
-msgstr "Limiter la taille de la sauvegarde"
+#: ../../network/drakfirewall.pm_.c:169
+msgid "Other ports"
+msgstr "Autres ports"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Configuration en cours de l'imprimante « %s »..."
+#: ../../network/ethernet.pm_.c:37
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
+msgstr ""
+"Quel client DHCP désirez-vous utiliser ?\n"
+"\n"
+"Le client par défaut est « dhcp-client »."
-#: ../../fs.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:88
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 " "
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+"Aucune carte réseau n'a été détectée sur votre système.\n"
+"La connexion ne peut donc pas être configurée."
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Internet connection"
-msgstr "Connexion internet"
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
+msgstr "Choisissez la carte réseau"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:93
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Le chargement du module %s a échoué.\n"
-"Désirez-vous réessayer avec d'autres paramètres ?"
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "Veuillez choisir la carte réseau qui sera connectée à Internet"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr "Bienvenue dans le monde de l'Open Source."
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "Aucune carte réseau n'a été identifiée"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnie Herzégovine"
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "Configuration du réseau"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:201
msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
-"Vous avez besoin d'un vrai système de fichiers (ext2/ext3, reiserfs, xfs, ou "
-"jfs) pour ce point de montage\n"
+"Veuillez indiquer le nom d'hôte de votre machine si vous le connaissez.\n"
+"Certains serveurs DHCP ont besoin de ce nom d'hôte pour fonctionner.\n"
+"Celui-ci doit être pleinenement qualifié, comme par exemple :\n"
+"mamachine.monlabo.masociete.com"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Vous devez entrer un nom d'hôte ou une adresse IP.\n"
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "Nom d'hôte :"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "Pays-Bas"
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+msgid "Network Configuration Wizard"
+msgstr "Assistant de configuration réseau"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sending files by FTP"
-msgstr "Envoi des fichiers par FTP"
+#: ../../network/isdn.pm_.c:22
+msgid "External ISDN modem"
+msgstr "Modem RNIS/ISDN externe"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
msgstr "Carte RNIS/ISDN interne"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
+msgstr "Quel est le type de votre connexion RNIS/ISDN ?"
+
+#: ../../network/isdn.pm_.c:45
msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
msgstr ""
-"Il n'existe pas de pilote alternatif OSS ou ALSA connu pour votre carte son "
-"(%s) qui actuellement utilise « %s »"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Title"
-msgstr "Titre"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install & convert Fonts"
-msgstr "Installe et convertit des polices"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
-msgstr "ATTENTION"
+"Quelle configuration RNIS/ISDN préférez-vous?\n"
+"\n"
+"- L'ancienne configuration contient des outils puissants,\n"
+" mais est difficile à configurer, et n'est pas standard.\n"
+" Elle utilise « isdn4net »\n"
+"- La nouvelle configuration est plus facile à comprendre\n"
+" et plus standard, mais a moins d'outils.\n"
+" Elle utilise « isdn-light »\n"
+"Nous recommandons la seconde (isdn-light)\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing bootloader"
-msgstr "Installation du programme d'amorçage..."
+#: ../../network/isdn.pm_.c:54
+msgid "New configuration (isdn-light)"
+msgstr "Nouvelle configuration (isdn-light)"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "replay"
-msgstr "rejouer"
+#: ../../network/isdn.pm_.c:54
+msgid "Old configuration (isdn4net)"
+msgstr "Ancienne configuration (isdn4net)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
-msgstr "détecté %s"
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "Configuration RNIS/ISDN"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/isdn.pm_.c:166
msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
-"Expect est une extension du langage Tcl qui permet d'établir des sessions "
-"interactives (FTP, SSH, etc.) sans intervention manuelle."
+"Veuillez choisir votre fournisseur d'accès.\n"
+"S'il ne figure pas dans la liste, choisissez « Non listé »."
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
-msgstr "Îles Vierges (US)"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol"
+msgstr "Protocole pour l'Europe"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "Mauvais fichier de sauvegarde"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol (EDSS1)"
+msgstr "Protocole pour l'Europe (EDSS1)"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/isdn.pm_.c:181
+msgid "Protocol for the rest of the world"
+msgstr "Protocole pour le reste du monde"
+
+#: ../../network/isdn.pm_.c:181
msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
-"La configuration du partage de la connexion à Internet a déjà été\n"
-"effectuée. Elle est actuellement désactivée.\n"
-"\n"
-"Que souhaitez-vous faire ?"
+"Protocole pour le reste du monde \n"
+" Pas de D-Channel (lignes louées)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
-msgstr ""
-"Entrez l'adresse IP et le numéro de port de la machine dont vous voulez "
-"utiliser les imprimantes."
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
+msgstr "Quel protocole désirez-vous utiliser ?"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid "Pipe into command"
-msgstr "Impression vers une commande shell"
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr "Interface trouvée : « %s ». Voulez-vous l'utiliser ?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
-"Certains périphériques présents sur votre système nécessitent des\n"
-"pilotes « propriétaires » pour pouvoir fonctionner. Vous pouvez\n"
-"trouver plus d'informations les concernant ici : %s"
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
+msgstr "Quel type de carte possédez-vous ?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "Haïti"
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
+msgstr "Je ne sais pas"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr "Détection des périphériques..."
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
-"\"Personnalisé\" vous permet de spécifier votre propre date et heure. Les "
-"autres options utilisent \"run-parts\" dans /etc/crontab."
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/isdn.pm_.c:210
msgid ""
-"Description of the fields:\n"
"\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
-"Description des champs :\n"
"\n"
+"Si vous possédez une carte ISA, les données du prochain écran devraient\n"
+"être correctes.\n"
+"\n"
+"Si vous possédez une carte PCMCIA, vous avez besoin de connaître\n"
+"les réglages « IRQ » et « IO » de votre carte.\n"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Basic options"
-msgstr "Options de base"
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "Arrêter"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
-msgstr "le nom du processeur"
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
+msgstr "Continuer"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr "Accepter les messages d'erreur IPv4 bogués"
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
+msgstr "Quel est le modèle de votre carte RNIS/ISDN ?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
-msgstr "Mise à jour des données de l'imprimante..."
+#: ../../network/isdn.pm_.c:239
+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 ""
+"Une carte RNIS/ISDN a été détectée mais son type est inconnu. Veuillez "
+"sélectionner une carte PCI dans le prochain écran."
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
-msgstr "Vous devez aussi formater %s"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+"Aucune carte RNIS/ISDN identifiée. Veuillez en sélectionner une dans le\n"
+"prochain écran."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr "Soyez prudent : cette opération est dangereuse."
+#: ../../network/modem.pm_.c:57
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Veuillez choisir le port série sur lequel votre modem est connecté."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "Insérez une disquette contenant une sélection de paquetages."
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "Options d'appel"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server: "
-msgstr "Serveur : "
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr "Nom de la connexion"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Alerts:"
-msgstr "Alertes de sécurité :"
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
+msgstr "Numéro de téléphone"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Sweden"
-msgstr "Suède"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "Identifiant de connexion"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
-msgstr "Utiliser Expect pour SSH"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr "CHAP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "Pologne"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Other ports"
-msgstr "Autres ports"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "Basée sur un script"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "nombre de tampons pour la capture via mmap()"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "Manuelle par terminal"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid " - detected"
-msgstr " - détecté"
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "Nom de domaine"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr "Contrôleurs SMB"
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+msgid "First DNS Server (optional)"
+msgstr "serveur DNS principal (optionnel)"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Temps maxi pour établir la connexion (en sec.)"
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+msgid "Second DNS Server (optional)"
+msgstr "serveur DNS secondaire (optionnel)"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/modem.pm_.c:95
msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-"Certaines vielles puces i486DX-100 ne peuvent pas redémarrer de façon fiable "
-"après une instruction \"halt\"."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Croatian"
-msgstr "Croate"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Use existing partition"
-msgstr "Utiliser une partition existante"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Impossible d'accéder au mirroir %s"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Aide/_A propos..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
-msgstr "Retirer les dossiers personnels des utilisateurs avant restauration"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../network/modem.pm_.c:97
#, 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?"
+"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
-"Vous êtes sur le point de configurer une imprimante distante. Cela nécessite "
-"un accès au réseau, mais votre réseau n'est pas encore configuré. Si vous "
-"voulez continuer sans configurer le réseau, vous ne pourrez pas utiliser "
-"l'imprimante que vous êtes en train de configurer. Que souhaitez-vous faire ?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "CUPS printer configuration"
-msgstr "Configuration de l'imprimante CUPS"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
-msgstr "impossible de trouver des polices dans vos disques"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
-msgstr "bogue f00f"
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Domain Name:"
-msgstr "Nom de domaine :"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Root umask"
-msgstr "Masque des permissions pour la création de fichier par root"
-
-#: ../../any.pm:1
-#, c-format
-msgid "On Floppy"
-msgstr "sur disquette"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reboot by the console user"
-msgstr "L'utilisateur peut redémarrer l'ordinateur depuis la console"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore"
-msgstr "Restaurer !"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Server:"
-msgstr "Serveur :"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Do nothing"
+msgstr "mais ne contenant pas"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
-msgstr "Si oui, vérifie si les périphériques réseaux sont dans un mode espion"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Install rpm"
+msgstr "Installation"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Recherche des paquetages disponibles..."
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Title"
+msgstr "Table des partitions"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
+#: ../../network/netconnect.pm_.c:29
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-"Veuillez patienter, installation des fichiers de configuration système sur "
-"la clé USB..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
-msgstr "Message de démarrage"
+"\n"
+"Vous pouvez vous déconnecter ou reconfigurer votre connexion."
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
-msgstr "Deviner automatiquement la table des partitions"
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr ""
+"\n"
+"Vous pouvez reconfigurer votre connexion."
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "Chypre"
+#: ../../network/netconnect.pm_.c:29
+msgid "You are currently connected to internet."
+msgstr "Vous êtes actuellement connecté à Internet."
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connection complete."
-msgstr "Connexion effectuée."
+#: ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr ""
+"\n"
+"Vous pouvez vous connecter à Internet ou reconfigurer votre connexion."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "Supprimer du RAID"
+#: ../../network/netconnect.pm_.c:32
+msgid "You are not currently connected to Internet."
+msgstr "Vous n'êtes actuellement pas connecté à Internet."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "Cette clef de chiffrement est trop courte (minimum %d caractères)"
+#: ../../network/netconnect.pm_.c:36
+msgid "Connect"
+msgstr "Connecter"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Configuration Wizards"
-msgstr "Assistants de configuration"
+#: ../../network/netconnect.pm_.c:37
+msgid "Disconnect"
+msgstr "Se déconnecter"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ISDN connection"
-msgstr "Connexion par RNIS/ISDN"
+#: ../../network/netconnect.pm_.c:38
+msgid "Configure the connection"
+msgstr "Configurez la connection"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD-R / DVD-R"
-msgstr "CD-Rom / DVD"
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
+msgstr "Connexion internet et configuration"
-#: ../../standalone/harddrake2:1
+#: ../../network/netconnect.pm_.c:94
#, c-format
-msgid "primary"
-msgstr "maître"
+msgid "We are now going to configure the %s connection."
+msgstr "Nous allons configurer la connexion %s."
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr " sur serveur Windows « %s », partage « %s »"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
+#: ../../network/netconnect.pm_.c:103
#, 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"
-"!!"
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press OK to continue."
msgstr ""
-"Vous pouvez maintenant choisir les services disponibles au démarrage de\n"
-"votre système.\n"
"\n"
-"Ici sont présentés tous les services disponibles avec l'installation en\n"
-"place. Faites une bonne vérification et enlevez tout ce qui n'est pas\n"
-"absolument nécessaire au démarrage du système.\n"
"\n"
-"Vous pouvez obtenir une courte explication des services en les\n"
-"sélectionnant spécifiquement. Cela dit, si vous n'êtes pas sûr de\n"
-"l'application d'un service, conservez les paramètres par défaut.\n"
"\n"
-"!! À cette étape, soyez particulièrement attentif dans le cas d'un système\n"
-"destiné à agir comme serveur. Dans ce cas, vous voudrez probablement\n"
-"permettre exclusivement les services nécessaires. !!"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niue"
-msgstr "Nioue"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "Passer"
+"Nous allons maintenant configurer la connexion %s.\n"
+"\n"
+"\n"
+"Cliquez sur OK pour continuer."
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
-msgstr ""
-"Gestion groupée de toutes les connexions réseau que vous avez configurées et "
-"que vous avez choisi d'activer dès le démarrage du système. (par ex. vos "
-"connexions pour le réseau local et l'ADSL ou le Câble). Vous pouvez accéder "
-"séparément à vos interfaces réseau grâce au « Centre de Contrôle Mandrake » "
-"dans la section « Internet et réseau »."
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr "Configuration du réseau"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/netconnect.pm_.c:133
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)"
+"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 ""
-"la fréquence du processeur en MHz (les méga hertz sont en première\n"
-"approximation le nombre d'instructions exécutables par seconde par le\n"
-"processeur)"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "important"
-msgstr "important"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "Outil de gestion des imprimantes de Mandrake Linux"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
-msgstr "TOTAL :"
+"Comme vous êtes en train de faire une installation réseau,\n"
+" cela veut dire que votre réseau est déjà configuré.\n"
+"Cliquez sur <Ok> pour conserver votre configuration,\n"
+"ou sur <Annuler> pour reconfigurer votre connexion internet et réseau.\n"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:157
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"
+"Welcome to The Network Configuration Wizard.\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."
+"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 ""
-"DrakX détecte maintenant tous les périphériques IDE présents sur votre\n"
-"système. DrakX recherchera aussi les périphériques SCSI. Finalement, selon\n"
-"les composantes détectées, DrakX installera tous les pilotes nécessaires à\n"
-"son fonctionnement.\n"
-"\n"
-"Compte tenu de la vaste gamme de périphériques disponibles sur le marché,\n"
-"dans certains cas la détection de matériel ne fonctionnera pas. Si c'est le\n"
-"cas, vous devrez alors configurer votre matériel à la main.\n"
-"\n"
-"Si vous devez configurer votre carte SCSI manuellement, DrakX vous\n"
-"demandera si vous souhaitez spécifier à la main les options du\n"
-"périphérique. Laissez en fait DrakX chercher automatiquement les options\n"
-"nécessaires à la configuration de votre carte, cela fonctionne\n"
-"généralement.\n"
+"Bienvenue dans l'assistant de configuration réseau.\n"
"\n"
-"Il peut arriver que DrakX soit incapable de vérifier les options\n"
-"nécessaires. Dans ce cas, vous devrez les déterminer manuellement."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr "Aruba"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Users"
-msgstr "Utilisateurs..."
+"Nous sommes sur le point de configurer votre connexion internet et réseau.\n"
+"Si vous ne souhaitez pas utiliser la détection automatique, désélectionnez "
+"la case correspondante.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Préparation du programme d'amorçage..."
+#: ../../network/netconnect.pm_.c:163
+msgid "Choose the profile to configure"
+msgstr "Choisissez le profil à configurer"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
-msgstr ""
-"Entrez vos informations utilisateurs, le mot de passe sera utilisé pour "
-"l'économiseur d'écran"
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
+msgstr "Utiliser la détection automatique"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Passerelle (p.ex. %s)"
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
+msgstr "Mode Expert"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
-msgstr "Les mots de passe ne sont pas identiques"
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
+msgstr "Détection des périphériques..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Examples for correct IPs:\n"
-msgstr "Exemples d'adresses IP correctes :\n"
+#: ../../network/netconnect.pm_.c:214
+msgid "Normal modem connection"
+msgstr "Connexion par modem"
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm_.c:214
#, c-format
-msgid "Please choose the media for backup."
-msgstr "Veuillez choisir le média de sauvegarde."
+msgid "detected on port %s"
+msgstr "détecté sur le port %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Frequency (MHz)"
-msgstr "Fréquence (MHz)"
+#: ../../network/netconnect.pm_.c:215
+#, fuzzy
+msgid "Winmodem connection"
+msgstr "Connexion par modem"
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Pour utiliser cette sauvegarde de sélection des paquetages, veuillez "
-"redémarrer l'installation avec la commande « linux defcfg=floppy »."
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "detected"
+msgstr "détecté %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the number of the processor"
-msgstr "le numéro du processeur"
+#: ../../network/netconnect.pm_.c:216
+msgid "ISDN connection"
+msgstr "Connexion par RNIS/ISDN"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid "Hardware clock set to GMT"
-msgstr "Horloge système réglée sur le Temps Universel (GMT)"
+msgid "detected %s"
+msgstr "détecté %s"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "Désirez-vous débuter une nouvelle configuration ?"
+#: ../../network/netconnect.pm_.c:217
+msgid "ADSL connection"
+msgstr "Connexion par ADSL"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Give a file name"
-msgstr "Donnez un nom de fichier"
+#: ../../network/netconnect.pm_.c:218
+msgid "Cable connection"
+msgstr "Connexion par cable"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Veuillez choisir le port sur lequel votre imprimante est connectée."
+#: ../../network/netconnect.pm_.c:218
+msgid "cable connection detected"
+msgstr "connexion par Cable détectée"
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "Changer de CD-Rom"
+#: ../../network/netconnect.pm_.c:219
+msgid "LAN connection"
+msgstr "Connexion à travers un réseau local (LAN)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "Paraguay"
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
+msgstr "carte(s) ethernet détectée(s)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
-msgstr "La configuration est achevée, voulez-vous appliquer les changements ?"
+#: ../../network/netconnect.pm_.c:222
+msgid "Choose the connection you want to configure"
+msgstr "Choisissez la connexion que vous voulez configurer"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
+#: ../../network/netconnect.pm_.c:246
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
-"Utiliser des sauvegardes différentielles/incrémentales (ne remplace pas les "
-"anciennes sauvegardes)"
+"Vous avez configuré plusieurs moyens d'accès à Internet.\n"
+"Choisissez celui que vous voulez utiliser.\n"
+"\n"
-#: ../../standalone/drakTermServ:1
-#, 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:"
-msgstr ""
-" - Maintenir /etc/dhcpd.conf :\n"
-" \t\tPour pouvoir être amorcé par le réseau, chaque client a besoin "
-"d'une entrée dans le fichier dhcpd.conf, pour lui assigner une adresse IP\n"
-" \t\tet des images d'amorçage. drakTermServ permet de créer ou "
-"retirer ces entrées.\n"
-"\t\t\t\n"
-" \t\t(Les cartes PCI peuvent omettre l'image, etherboot demandera "
-"l'image correcte. Il faut aussi\n"
-" \t\ttenir compte du fait que quand etherboot cherche des images, il "
-"s'attend à trouver des noms comme\n"
-" \t\tboot-3c59x.nbi, plutôt que boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tUne strophe habituelle de dhcpd.conf pour le support d'un client "
-"léger ressemble à :"
+#: ../../network/netconnect.pm_.c:247
+msgid "Internet connection"
+msgstr "Connexion internet"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr "Il n'y a pas de pilote connu pour votre carte son (%s)"
+#: ../../network/netconnect.pm_.c:253
+msgid "Do you want to start the connection at boot?"
+msgstr "Désirez-vous activer la connexion lors du démarrage ?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "force"
-msgstr "forcer"
+#: ../../network/netconnect.pm_.c:267
+msgid "Network configuration"
+msgstr "Configuration du réseau"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Exit"
-msgstr "Quitter"
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
+msgstr "Le réseau doit être redémarré"
-#: ../../printer/printerdrake.pm:1
+#: ../../network/netconnect.pm_.c:272
#, c-format
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
msgstr ""
-"NOTE : En fonction du modèle et du système d'impression, jusqu'à %d Mo de "
-"logiciels additionnels seront installés."
+"Un problème est survenu pendant le redémarrage du réseau : \n"
+"\n"
+"%s"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../network/netconnect.pm_.c:282
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
-"Vous n'avez aucune interface réseau configurée.\n"
-"Vous pouvez en configurer une en cliquant sur « Configurer »"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "Estonien"
+"Félicitations, votre choix de configuration internet et réseau est "
+"terminée.\n"
+"La configuration va maintenant être appliquée à votre système.\n"
+"\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:286
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
-"Apache est un serveur Web (HTTP). Il est utilisé pour faire fonctionner un "
-"site internet."
+"Une fois terminé, il est recommandé de redémarrer votre interface graphique, "
+"afin d'éviter les problèmes liés au changement de nom d'hôte de la machine."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/netconnect.pm_.c:287
msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
+"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 ""
-"Veuillez entrer le nom du périphérique de votre graveur de CD\n"
-"Par exemple : 0,1,0 )"
+"Des problèmes sont apparus pendant la configuration.\n"
+"Testez votre connexion avec le « Centre de Contrôle Mandrake » (dans la "
+"section « réseau ») ou la commande « net_monitor ». Si votre connexion ne "
+"fonctionne pas, vous pouvez essayer de relancer la configuration."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ALL"
-msgstr "TOUS"
+#: ../../network/network.pm_.c:278
+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 ""
+"ATTENTION : ce périphérique a déjà été configuré pour la connexion "
+"internet.\n"
+"\n"
+"Cliquez simplement sur « OK » pour conserver sa configuration.\n"
+"Sinon la configuration actuelle sera écrasée par les modifications que vous "
+"ferez."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Clients"
-msgstr "Ajouter/Effacer un client"
+#: ../../network/network.pm_.c:283
+msgid ""
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
+msgstr ""
+"Veuillez indiquer la configuration IP de cette machine.\n"
+"Chaque champ doit être complété avec une adresse IP en notation\n"
+"décimale pointée (par exemple, 12.34.56.78)."
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "Choose the network interface"
-msgstr "Choisissez la carte réseau"
+msgid "Configuring network device %s"
+msgstr "Configuration du périphérique réseau %s"
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../network/network.pm_.c:294
#, c-format
-msgid "Unknown Model"
-msgstr "Modèle inconnu"
+msgid " (driver %s)"
+msgstr " (pilote %s)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
-msgstr "Graveurs CD/DVD"
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "Adresse IP"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Partition d'amorçage par défaut\n"
-"(pour DOS/Windows, pas pour LILO)\n"
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr "Masque de sous-réseau"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr "Permet à « %s » de lire ce fichier"
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(BOOTP/DHCP)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image"
-msgstr "choisissez l'image"
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "Attribution automatique de l'adresse IP"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr "Configuration du Pare Feu détectée"
+#: ../../network/network.pm_.c:299
+msgid "Start at boot"
+msgstr "Exécuter au démarrage"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "Nom de la connexion"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
+msgstr "L'adresse IP doit ressembler à quelque chose comme « 192.168.1.20 »"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../network/network.pm_.c:326
msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-"coordonnées x de la zone de texte\n"
-"en nombre de caractères"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/network.pm_.c:330
msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
msgstr ""
-"Vous risquez de ne pas être en mesure d'installer lilo (car lilo ne supporte "
-"pas un LV sur plusieurs PVs)"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Updating package selection"
-msgstr "Mise à jour de la sélection des paquetages"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "Où désirez-vous monter le fichier de bouclage %s ?"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
+#: ../../network/network.pm_.c:350
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"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 ""
-"La disquette a été générée avec succès.\n"
-"Vous pouvez maintenant rejouer votre installation."
+"Veuillez indiquer un nom d'hôte pour la machine.\n"
+"Celui-ci doit être un nom de machine pleinement qualifié, par exemple :\n"
+"mamachine.monlabo.masociete.com\n"
+"Vous pouvez également indiquer l'adresse IP de la passerelle\n"
+"si votre réseau local en possède une."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr "Sauvegarder sur CDR (ou DVDR)"
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "Serveur DNS"
-#: ../../standalone/harddrake2:1
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "the number of buttons the mouse has"
-msgstr "le nombre de boutons que possède la souris"
+msgid "Gateway (e.g. %s)"
+msgstr "Passerelle (p.ex. %s)"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
-msgstr "Rejouer"
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "Périphérique passerelle"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup other files"
-msgstr "Sauvegarde des autres fichiers ou dossiers..."
+#: ../../network/network.pm_.c:363
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr ""
+"L'adresse du DNS doit ressembler à quelque chose comme « 192.168.1.20 »"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "Aucun lecteur de disquette disponible"
+#: ../../network/network.pm_.c:367
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr ""
+"L'adresse de la passerelle doit ressembler à quelque chose comme "
+"« 192.168.1.20 »"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
-msgstr "Les fichiers de sauvegarde sont corrompus"
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
+msgstr "Configuration des serveurs mandataires (proxy)"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
-msgstr "Norme TV :"
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "Serveur mandataire HTTP"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr "Famille CPUID"
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "Serveur mandataire FTP"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 Mo"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
+msgstr "Identifiant de la carte réseau (utile pour les portables)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: thin"
-msgstr "type : léger"
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
+msgstr "La syntaxe doit être http://..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lituanien (AZERTY, nouveau modèle)"
+#: ../../network/network.pm_.c:388
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "L'URL doit commencer par 'ftp:' ou 'http:'"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr "\"oui\" signifie que le coprocesseur possède un vecteur d'exception"
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
+msgstr "Configuration du Pare Feu détectée"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/shorewall.pm_.c:27
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"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
-"Attention, vous avez choisi une partition RAID logiciel comme partition\n"
-"racine (/). Pour que votre système puisse démarrer, vous devez ajouter\n"
-"une partition non RAID, spécifique pour le dossier /boot."
+"Attention ! Une configuration existante du Pare-Feu a été détectée. Vous "
+"devrez peut-être modifier la configuration manuellement après l'installation."
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "Autres systèmes (MacOS, etc.)"
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
+msgstr "Configuration de l'accès Internet"
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
-msgstr "Pour activer la souris,"
+#: ../../network/tools.pm_.c:58
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Souhaitez-vous vous connecter à Internet maintenant ?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "Démarrage de l'interface réseau..."
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+msgid "Testing your connection..."
+msgstr "Test de votre connexion..."
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Les captures d'écran seront disponibles après l'installation dans %s"
+#: ../../network/tools.pm_.c:70
+msgid "The system is now connected to Internet."
+msgstr "Le système est à présent connecté à Internet."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
+msgstr "Pour des raisons de sécurité, il va être déconnecté maintenant."
+
+#: ../../network/tools.pm_.c:72
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:\")."
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-"Plus d'une partition Windows ont été détectées sur votre disque dur. SVP,\n"
-"veuillez choisir celle que vous choisissez pour votre nouvelle installation\n"
-"de Mandrake Linux.\n"
-"\n"
-"Chaque partition est identifiée comme suit: \"Nom linux\", \"Nom Windows\",\n"
-"\"Capacité\".\n"
-"\n"
-"Le \"Nom\" est structuré ainsi : \"type de disque dur\", \"numéro du disque\n"
-"dur\", \"numéro de partition\". Par exemple, « hda1 ».\n"
-"\n"
-"Le \"Type de disque dur\" correspond à hd si votre disque est IDE. Pour un\n"
-"disque SCSI, vous lirez \"sd\".\n"
-"\n"
-"Le numéro du disque est toujours listé après le \"hd\" ou \"fd\". Pour les\n"
-"disques IDE :\n"
-"\n"
-" * \"a\" signifie \"disque primaire maître sur le premier contrôleur IDE\";\n"
-"\n"
-" * \"b\" signifie \"disque primaire esclave sur le premier contrôleur\n"
-"IDE\";\n"
-"\n"
-" * \"c\" indique \"disque primaire maître sur le second contrôleur IDE\";\n"
-"\n"
-" * \"d\" signifie \"disque primaire esclave sur le second contrôleur IDE\";\n"
-"\n"
-"Avec les disques SCSI, le \"a\" indique le plus petit SCSI ID, et ainsi de\n"
-"suite.\n"
-"\n"
-"\"Windows name\" c'est la lettre assignée à votre disque, (le premier\n"
-"disque ou partition \"C:\")"
+"Le système ne semble pas connecté à Internet.\n"
+"Essayez de reconfigurer votre connexion."
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
-msgstr "Tanzanie"
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
+msgstr "Configuration de la connexion"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "Calcul des limites du système de fichiers FAT..."
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
+msgstr "Veuillez compléter ou vérifier les champs ci-dessous"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-msgstr ""
-"\n"
-"Sources de sauvegarde : \n"
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr "n° IRQ de la carte"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "custom"
-msgstr "personnalisé"
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "Plage mémoire (DMA)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Content of the file"
-msgstr "Contenu du fichier"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "E/S de la carte"
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
-msgstr "Authentification LDAP"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "E/S_O de la carte"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "in order to keep %s"
-msgstr "afin de conserver %s"
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "E/S_1 de la carte"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
-msgstr "Choix d'un pilote"
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+msgid "Your personal phone number"
+msgstr "Votre numéro de téléphone personnel"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
-msgstr "transmis"
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
+msgstr "Fournisseur d'accès (ex. : fournisseur.fr)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palestine"
-msgstr "Palestine"
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
+msgstr "Numéro de téléphone pour l'accès"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID md%s\n"
-msgstr "Appartient au RAID md%s\n"
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+msgid "Provider dns 1 (optional)"
+msgstr "1er DNS du fournisseur (optionnel)"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
-msgstr "%d chaînes séparées par des virgules"
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+msgid "Provider dns 2 (optional)"
+msgstr "2ème DNS du fournisseur (optionnel)"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " isdn"
-msgstr "rnis"
+#: ../../network/tools.pm_.c:109
+msgid "Choose your country"
+msgstr "Choisissez votre pays"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Here is the full list of keyboards available"
-msgstr "Voici la liste complète des claviers disponibles"
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
+msgstr "Numérotation"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Theme name"
-msgstr "nom du thème"
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+msgid "Connection speed"
+msgstr "Vitesse de connexion"
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/_Aide"
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+msgid "Connection timeout (in sec)"
+msgstr "Temps maxi pour établir la connexion (en sec.)"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitrary driver"
-msgstr "Choix arbitraire d'un pilote..."
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
+msgstr "Nom d'utilisateur du compte"
-#: /home/gc/cvs/gi/move/move.pm:1
-#, 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."
-msgstr ""
-"Votre clé USB n'a aucune partition Windows (FAT) valide.\n"
-"Nous en avons besoin d'une pour continuer (de plus, c'est\n"
-"standard donc vous pourrez vous déplacer et accéder à vos\n"
-"fichiers à partir de machines tournant sous Windows). Veuillez\n"
-"connecter une clé USB contenant une partition Windows à la\n"
-"place.\n"
-"\n"
-"\n"
-"Vous pouvez aussi continuer sans clé USB - vous pourrez\n"
-"toujours utiliser Mandrake Move comme un système\n"
-"d'exploitation Mandrake sur CDROM."
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
+msgstr "Mot de passe du compte"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
-msgstr "Îles Cook"
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
+msgstr "Royaume-Uni"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
+msgstr "Le montage a échoué : "
+
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
+msgstr "Les partitions étendues ne sont pas supportée par cette plateforme"
+
+#: ../../partition_table.pm_.c:685
msgid ""
-"Here you can choose whether the scanners connected to this machine should be "
-"accessable by remote machines and by which remote machines."
+"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 ""
-"Vous pouvez ici choisir si les scanners connectés à cette machine doivent "
-"être accessibles depuis des machines distantes, et quelles machines pourront "
-"y accéder."
+"Il y a un espace vide dans la table des partitions mais il est\n"
+"inutilisable. La seule solution est de déplacer vos partitions primaires\n"
+"de telle façon que cet espace soit placé contre les partitions étendues."
-#: ../../standalone/draksplash:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "the width of the progress bar"
-msgstr "la largeur de la barre de progression"
+msgid "Restoring from file %s failed: %s"
+msgstr "Restauration impossible depuis le fichier %s : %s"
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Formatage de la partition %s"
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
+msgstr "Mauvais fichier de sauvegarde"
-#: ../../standalone/drakbackup:1
+#: ../../partition_table.pm_.c:796
#, c-format
-msgid "Hostname required"
-msgstr "Nom de machine nécessaire"
+msgid "Error writing to file %s"
+msgstr "Erreur d'écriture dans le fichier %s"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselect fonts installed"
-msgstr "Désélectionner les polices installées"
+#: ../../partition_table/raw.pm_.c:192
+msgid ""
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
+msgstr ""
+"Votre disque dur semble avoir un problème matériel :\n"
+"le test pour vérifier son aptitude à conserver l'intégrité des données a "
+"échoué.\n"
+"Cela signifie que serez victime de pertes aléatoires de données."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Roulette"
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr "obligatoire"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit kernel version"
-msgstr "Version du noyau"
+#: ../../pkgs.pm_.c:27
+msgid "important"
+msgstr "important"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Cancel"
-msgstr "Annuler"
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr "très utile"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for configured scanners ..."
-msgstr "Recherche de scanners configurés..."
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr "utile"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Videocard"
-msgstr "Carte vidéo"
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr "éventuellement"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tLe sauvegarde utilise « tar » et « bzip2 »\n"
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
+msgstr "PDQ - Print, Don't Queue"
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Remove Selected"
-msgstr "Supprimer sélection"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
+msgstr "PDQ"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _modems"
-msgstr "/Auto-détecter les _modems"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
+msgstr "LPD - Line Printer Daemon"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove printer"
-msgstr "Désinstaller l'imprimante"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
+msgstr "LPD"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "View Last Log"
-msgstr "Consulter le dernier journal"
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
+msgstr "LPRng - LPR Nouvelle Génération"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "Quels services souhaitez-vous laisser accessible depuis internet ?"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
+msgstr "LPRng"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Connection Type"
-msgstr "Type de connexion"
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
+msgstr "CUPS - Common Unix Printing System"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
-msgstr ""
-"Bienvenue dans l'utilitaire de configuration des alertes par courrier.\n"
-"\n"
-"Vous allez pouvoir configurer ici vos les alertes systèmes.\n"
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
+msgstr "CUPS"
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Other"
-msgstr "Autre"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+msgid "Unknown Model"
+msgstr "Modèle inconnu"
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
-msgstr "Choix par défaut"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "Imprimante locale"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
-msgstr "Émulation du bouton n° 2"
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
+msgstr "Imprimante distante"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter a package name."
-msgstr "Veuillez taper un nom de paquetage."
+#: ../../printer/main.pm_.c:28
+msgid "Printer on remote CUPS server"
+msgstr "Imprimante sur serveur CUPS distant"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run chkrootkit checks"
-msgstr "Vérifie l'abence de chkrootkit"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+msgid "Printer on remote lpd server"
+msgstr "Imprimante sur serveur LPD distant"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "type1inst building"
-msgstr "construction par type1inst"
+#: ../../printer/main.pm_.c:30
+msgid "Network printer (TCP/Socket)"
+msgstr "Imprimante réseau autonome (TCP/Socket)"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Abiword"
-msgstr "Abiword"
+#: ../../printer/main.pm_.c:31
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "Imprimante sur serveur SMB (Windows 95/98/NT)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "choose image file"
-msgstr "choisissez un fichier image"
+#: ../../printer/main.pm_.c:32
+msgid "Printer on NetWare server"
+msgstr "Imprimante sur serveur NetWare"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "X server"
-msgstr "serveur XFree"
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+msgid "Enter a printer device URI"
+msgstr "Indiquer l'adresse du périphérique d'impression"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin User Name"
-msgstr "Nom d'administrateur de domaine"
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
+msgstr "Impression vers une commande shell"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "There was an error while scanning for TV channels"
-msgstr "Une erreur est survenue pendant la recherche des chaînes TV."
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
+msgstr "Modèle inconnu"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "US keyboard (international)"
-msgstr "Américain (international)"
+#: ../../printer/main.pm_.c:317
+msgid "Local Printers"
+msgstr "Imprimantes locales"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Not installed"
-msgstr "Non installé"
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+msgid "Remote Printers"
+msgstr "Imprimantes distantes"
-#: ../../keyboard.pm:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid "Both Alt keys simultaneously"
-msgstr "Les deux touches Alt simultanément"
+msgid " on parallel port \\/*%s"
+msgstr " sur port parallèle \\/*%s"
-#: ../../network/netconnect.pm:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid "LAN connection"
-msgstr "Connexion à travers un réseau local (LAN)"
+msgid ", USB printer \\/*%s"
+msgstr ", imprimante USB \\/*%s"
-#: ../../standalone/logdrake:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid "/File/-"
-msgstr "/Fichier/-"
+msgid ", multi-function device on parallel port \\/*%s"
+msgstr ", périphérique multi-fonctions sur le port parallèle \\/*%s"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Italian"
-msgstr "Italien"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
+msgstr ", périphérique USB multi-fonctions"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Basic"
-msgstr "Basique"
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
+msgstr ", périphérique HP JetDirect multi-fonctions"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
+msgstr ", périphérique multi-fonctions"
-#: ../../lang.pm:1
+#: ../../printer/main.pm_.c:344
#, c-format
-msgid "Honduras"
-msgstr "Honduras"
+msgid ", printing to %s"
+msgstr ", impression sur %s"
-#: ../../help.pm:1
+#: ../../printer/main.pm_.c:346
#, c-format
-msgid "pdq"
-msgstr "pdq"
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr " sur serveur d'impression LPD « %s », imprimante « %s »"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../printer/main.pm_.c:348
#, c-format
-msgid "Card IO"
-msgstr "E/S de la carte"
+msgid ", TCP/IP host \"%s\", port %s"
+msgstr ", hôte TCP/IP « %s », port « %s »"
-#: ../../network/drakfirewall.pm:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid "Samba server"
-msgstr "Serveur Samba"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr " sur serveur Windows « %s », partage « %s »"
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Cette partition d'amorçage (bootstrap)\n"
-"est nécessaire si vous avez plusieurs\n"
-"systèmes d'exploitation. \n"
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr " sur serveur Novell « %s », imprimante « %s »"
-#: ../../standalone/drakautoinst:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-"Veuillez choisir, pour chaque étape, si celle-ci doit être rejouée comme "
-"pendant votre installation, ou si elle doit s'effectuer manuellement."
+msgid ", using command %s"
+msgstr ", en utilisant la commande %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
-"Vous pouvez aussi décider ici si les scanners des machines distantes seront "
-"rendus disponibles sur cette machine."
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
+msgstr "Imprimante à accès direct (pas de pilote)"
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:647
#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr "\t-celle par transfert FTP.\n"
+msgid "(on %s)"
+msgstr "(sur %s)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reports check result to tty"
-msgstr "Afficher le rapport de vérification dans le terminal"
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
+msgstr "(sur cette machine)"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/main.pm_.c:674
#, c-format
-msgid "You must enter a device or file name!"
-msgstr "Vous devez enter un nom de fichier ou de périphérique !"
+msgid "On CUPS server \"%s\""
+msgstr "Sur serveur CUPS « %s »"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Quit"
-msgstr "/_Quitter"
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+msgid " (Default)"
+msgstr " (Défaut)"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Mémoire vidéo : %s ko\n"
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
+msgstr "Type de connexion de l'imprimante"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
+msgstr "Quel est le type de connexion de l'imprimante ?"
+
+#: ../../printer/printerdrake.pm_.c:30
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"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
msgstr ""
-"Ce programme est un logiciel libre : vous pouvez le redistribuer\n"
-"et/ou le modifier selon les termes de la « GNU General Public\n"
-"License », tels que publiés par la « Free Software Foundation »; soit\n"
-"la version 2 de cette licence ou (selon votre choix) toute version\n"
-"ultérieure.\n"
"\n"
-"Ce programme est distribué dans l'espoir qu'il sera utile, mais\n"
-"SANS AUCUNE GARANTIE, ni explicite ni implicite; sans même les\n"
-"garanties de commercialisation ou d'adaptation dans un but spécifique.\n"
-"Se référer à la « GNU General Public License » pour plus de détails.\n"
-"\n"
-"Vous devriez avoir reçu une copie de la « GNU General Public License »\n"
-"en même temps que ce programme; sinon, écrivez à la « Free Software\n"
-"Foundation », Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, "
-"USA.\n"
+"Si vous utilisez un serveur CUPS distant, vous n'avez pas besoin de "
+"configurer d'imprimante ici. Elles seront automatiquement détectées."
-#: ../../any.pm:1
-#, c-format
-msgid "access to compilation tools"
-msgstr "accès aux outils de compilation"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr "Autodétection d'imprimante (locale, réseau, et SMB)"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Global statistics"
-msgstr "Statistiques globales"
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+msgid "CUPS configuration"
+msgstr "Configuration de CUPS"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select data to restore..."
-msgstr "Veuillez choisir les données à restaurer..."
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+msgid "Specify CUPS server"
+msgstr "Specifiez le serveur CUPS"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:83
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 ""
-"Si vous voulez utiliser « aboot », vous devez réserver\n"
-"un espace libre (d'au moins 2048 secteurs) au début du disque."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Standard test page"
-msgstr "Page de test standard"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Time Zone"
-msgstr "Fuseau horaire"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create"
-msgstr "Créer"
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
+msgstr ""
+"Avec les serveurs CUPS distants, vous n'avez pas besoin de configurer "
+"d'imprimante ici ; ceux-ci doivent fournir automatiquement à votre machine "
+"des informations sur les imprimantes disponibles. Toutes les imprimantes "
+"connues de votre ordinateur sont actuellement listées dans le champ "
+"« Imprimante par défaut ». Choisissez l'imprimante par défaut pour votre "
+"machine, puis cliquez sur le bouton « Valider / Rafraîchir ». Ce bouton sert "
+"également à rafraîchir la liste. (il peut se passer jusqu'à 30 secondes "
+"avant que toutes les imprimantes distantes soient visibles). Si le serveur "
+"CUPS est sur un réseau différent, vous devez préciser son adresse IP, et "
+"éventuellement le numéro de port afin d'obtenir les informations sur les "
+"imprimantes. Sinon, laissez ces champs vides."
+
+#: ../../printer/printerdrake.pm_.c:84
+msgid ""
+"\n"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
+msgstr ""
+"\n"
+"Normalement, CUPS est configuré automatiquement en fonction de votre "
+"environnement réseau, de façon que vous puissiez accéder aux imprimantes "
+"gérées par les serveurs CUPS de votre réseau local. Si cela ne fonctionne "
+"pas, désactivez « configuration automatique de CUPS » et éditez le fichier "
+"manuellement le fichier /etc/cups/cupsd.conf. N'oubliez pas ensuite de "
+"relancer CUPS (à l'aide de la commande : « service cups restart » ou bien "
+"avec le « Centre de Contrôle Mandrake » dans la section « Services »)."
+
+#: ../../printer/printerdrake.pm_.c:88
+msgid "The IP address should look like 192.168.1.20"
+msgstr "L'adresse IP doit ressembler à quelque chose comme « 192.168.1.20 »"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "What"
-msgstr "Quoi..."
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
+msgstr "Le numéro de port doit être un nombre entier !"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
-msgstr "Erreur lors du tri des paquetages :"
+#: ../../printer/printerdrake.pm_.c:99
+msgid "CUPS server IP"
+msgstr "Adresse IP du serveur CUPS"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bulgarian (BDS)"
-msgstr "Bulgare (BDS)"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
+msgstr "Port"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Server"
-msgstr "Désactiver le serveur"
+#: ../../printer/printerdrake.pm_.c:102
+msgid "Automatic CUPS configuration"
+msgstr "Configuration automatique du serveur CUPS"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem encryption key"
-msgstr "Clef de chiffrement du système de fichiers"
+#: ../../printer/printerdrake.pm_.c:159
+msgid "Checking your system..."
+msgstr "Vérification de votre système..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
-msgstr "Gujarati"
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+msgid "Printerdrake"
+msgstr "Printerdrake"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:167
msgid ""
-" While you can use a pool of IP addresses, rather than setup a "
-"specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-" of client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by drakTermServ. Clients can "
-"either be 'thin'\n"
-" or 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-" most software on the client machine. A special inittab, %s is\n"
-" written for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-" modified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-" using xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-" subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by drakTermServ. "
-"Clients can either \n"
-" be 'true' or 'false'. 'true' enables root login at the client "
-"machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' "
-"tools. This is enabled \n"
-" by creating separate config files associated with the client's IP "
-"address and creating \n"
-" read/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-" with the configuration, you can remove root login privileges from "
-"the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing "
-"clients."
-msgstr ""
-"\t\t\tBien que vous pouvez utiliser une plage d'adresses IP plutôt qu'une "
-"entrée\n"
-"\t\t\tspécifique pour chaque machine client, l'utilisation d'adresses fixes "
-"permet de profiter\n"
-"\t\t\tde configurations séparées par client pour les fonctions que fournit "
-"ClusterNFS.\n"
-"\t\t\t\t\t\tRemarque : L'entrée \"#type\" est utilisée seulement par "
-"drakTermServ. Les clients peuvent être soit\n"
-"\t\t\t\"légers\", soit \"lourd\". Les clients légers font tourner la plupart "
-"des logiciels sur le serveur via xdmcp, \n"
-"\t\t\ttandis que les clients lourds font tourner eux-mêmes leurs logiciels. "
-"Un fichier inittab spécial, %s est\n"
-"\t\t\técrit pour les clients légers. Les fichiers de configuration système "
-"xdm-config, kdmrc, et gdm.conf sont modifiés\n"
-"\t\t\tsi des clients légers sont utilisés, pour pouvoir activer xdmcp. Étant "
-"donné que xdmcp pose des problèmes de sécurité,\n"
-"\t\t\tles fichiers hosts.deny et hosts.allow sont modifiés pour limiter "
-"l'accès au sous-réseau local.\n"
-"\t\t\t\n"
-"\t\t\tRemarque : vous devez redémarrer le serveur après avoir ajouté ou "
-"modifié des clients."
+"There are no printers found which are directly connected to your machine"
+msgstr ""
+"Aucune des imprimantes trouvées n'est directement reliée à votre machine"
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:179
msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
+"The following printers\n"
+"\n"
msgstr ""
-"Veuillez choisir le premier nombre du groupe de 10 que vous\n"
-"souhaitez modifier, ou appuyez juste sur <Entrée> pour continuer.\n"
-"Votre choix ? "
+"Les imprimantes suivantes\n"
+"\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:180
msgid ""
-"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
+"The following printer\n"
"\n"
msgstr ""
+"L'imprimante suivante\n"
"\n"
-" Copyright (C) 2002 par MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Save theme"
-msgstr "sauvegarder le thème"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "Brésil"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install"
-msgstr "Installation automatique"
-
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration Wizard"
-msgstr "Assistant de configuration réseau"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
-msgstr "Auto-montage des périphériques amovibles"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Printing"
-msgstr "Impression"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save:"
-msgstr "Entrez le répertoire à sauvegarder :"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:182
msgid ""
-"There are no printers found which are directly connected to your machine"
+"\n"
+"and one unknown printer are "
msgstr ""
-"Aucune des imprimantes trouvées n'est directement reliée à votre machine"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "Créer une nouvelle partition"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Driver:"
-msgstr "Pilote :"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
-msgstr "inconnu"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "Utiliser fdisk"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "VEUILLEZ FAIRE TOURNER LA MOLETTE !"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "sent: "
-msgstr "envoyés : "
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "Attribution automatique de l'adresse IP"
+"\n"
+"et une imprimante inconnue est "
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:184
#, 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:\")"
+"and %d unknown printers are "
msgstr ""
-"Votre installation de Mandrake Linux est maintenant terminée et votre\n"
-"système est prêt à être utilisé. Cliquez sur « %s » pour redémarrer votre\n"
-"système. Vous aurez alors le choix de démarrer GNU/Linux ou Windows (s'il\n"
-"est présent).\n"
-"\n"
-"Le bouton « %s » (en mode Expert uniquement) permet deux autres options :\n"
-"\n"
-" * « %s »: Pour créer une disquette d'installation qui permettra de\n"
-"reproduire l'installation que vous venez de réaliser sans l'aide d'un\n"
-"administrateur.\n"
"\n"
-" Notez que les deux options suivantes apparaissent après avoir cliqué sur\n"
-"le bouton :\n"
-"\n"
-" * « %s ». C'est une installation partiellement automatique où il est\n"
-"possible de personnaliser le partitionnement du disque (exclusivement).\n"
+"et %d imprimantes inconnues sont"
+
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
"\n"
-" * « %s ». Complètement automatique, cette installation reformate le\n"
-"disque au complet.\n"
+"are "
+msgstr ""
"\n"
-" Cette fonctionnalité est particulièrement pratique pour l'installation\n"
-"de multiples systèmes. Voir la section Auto install de notre site Web.\n"
+"sont"
+
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
"\n"
-" * « %s » (*) sauve la sélection des paquetages installés. Puis, lorsque\n"
-"vous ferez une autre installation, insérez la disquette dans le lecteur et\n"
-"accédez au menu d'aide en tapant [f1], et entrez la commande suivante :\n"
-"« linux defcfg=\"floppy\" ».\n"
+"is "
+msgstr ""
"\n"
-"(*) Vous avez besoin d'une disquette formatée avec FAT (pour la créer sous\n"
-"Linux, tapez « mformat a: »)"
+"est"
-#: ../../lang.pm:1
-#, c-format
-msgid "Moldova"
-msgstr "République de Moldova"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
+#: ../../printer/printerdrake.pm_.c:189
+msgid "directly connected to your system"
+msgstr "connectée à votre machine"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuration of a remote printer"
-msgstr "Configuration d'une imprimante distante"
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
-msgstr "Une plate-forme en ligne pour répondre aux besoins des entreprises."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "L'URL doit commencer par 'ftp:' ou 'http:'"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Oriya"
-msgstr "Oriya"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a new rule at the end"
-msgstr "Ajouter une nouvelle règle à la fin"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
-msgstr "Installation réussie des thèmes pour l'image d'amorçage et pour LILO."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:192
msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
+"\n"
+"There is one unknown printer directly connected to your system"
msgstr ""
-"Vous pouvez aussi décider ici si les imprimantes des machines distantes "
-"seront rendues automatiquement disponibles sur cette machine."
+"\n"
+"Il y a une imprimante inconnue connectée à votre machine"
-#: ../../modules/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:194
#, 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''"
+"\n"
+"There are %d unknown printers directly connected to your system"
msgstr ""
-"Vous pouvez maintenant préciser les options du module %s.\n"
-"Les options sont de la forme « nom=valeur nom2=valeur2 ... ».\n"
-"Par exemple, « io=0x300 irq=7 »"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "Désirez-vous réellement quitter sans écrire la table des partitions ?"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Hard Drive"
-msgstr "sur disque dur"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "Installing packages..."
-msgstr "Installation des paquetages..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dutch"
-msgstr "Hollandais"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Angola"
-msgstr "Angola"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "Les paquetages suivants doivent être installés :\n"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "service setting"
-msgstr "configuration des services"
+"\n"
+"Il y a %d imprimantes inconnues reliées à votre machine"
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "Personnalisé"
+#: ../../printer/printerdrake.pm_.c:200
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "(Vérifiez que toutes les imprimantes sont connectées et allumées).\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
-msgstr "Lettonie"
+#: ../../printer/printerdrake.pm_.c:214
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
+"Souhaitez-vous permettre l'impression sur les imprimantes ci-dessus ou sur "
+"celles du réseau local ?\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
+#: ../../printer/printerdrake.pm_.c:215
+msgid "Do you want to enable printing on printers in the local network?\n"
msgstr ""
-"Ce fichier est déjà utilisé par un bouclage.\n"
-"Veuillez en choisir un autre."
+"Souhaitez-vous activer l'impression sur les imprimantes de votre réseau?\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr "Protégé en lecture"
+#: ../../printer/printerdrake.pm_.c:217
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Souhaitez-vous activer l'impression sur les imprimantes ci-dessus?\n"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr "Êtes-vous sûr de vouloir définir l'impression sur cette machine ?\n"
+
+#: ../../printer/printerdrake.pm_.c:219
#, c-format
msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
msgstr ""
-"Activer/Désactiver la protection contre l'usurpation de résolution de\n"
-"nom (name resolution spoofing). Si « alert » est à 1, effectue aussi\n"
-"des rapports à syslog."
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
-msgstr "Aucun pilote connu"
+"NOTE: En fonction du modèle et du système d'impression, jusqu'à %d Mo de "
+"logiciels additionnels seront installés."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "1 Mo"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+msgid "Add a new printer"
+msgstr "Ajouter une nouvelle imprimante"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:259
msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
+"\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 ""
-"si ce n'est pas celle que vous voulez configurer, tapez un nom de fichier ou "
-"de périphérique dans le champ d'entrée"
+"\n"
+"Bienvenue dans l'Assistant de Configuration d'Imprimante\n"
+"\n"
+"Cet assistant permet de configurer des imprimantes locales ou réseau afin "
+"d'être utilisée à partir de cette machine ainsi que des autres machines du "
+"réseau.\n"
+"\n"
+"Toutes les informations nécessaires pour configurer l'imprimante vous seront "
+"demandées; vous aurez également accès à tous les pilotes d'imprimantes "
+"disponibles ainsi qu'à toutes leurs options et à tous les types de "
+"connection."
-#: ../../standalone/draksound:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:272
msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
-"You can visit our hardware database at:\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) and you 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"
-"http://www.linux-mandrake.com/en/hardware.php3"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Aucune carte son n'a été détectée sur votre ordinateur. Veuillez vérifier "
-"qu'une carte son supportée par Linux est correctement branchée.\n"
"\n"
+"Bienvenue dans l'assistant de configuration d'imprimante\n"
"\n"
-"Vous pouvez visiter notre base de données de support matériel à :\n"
+"Cet assistant vous aidera à installer les imprimantes connectées soit à cet "
+"ordinateur, soit directement au réseau, soit sur un ordinateur distant sous "
+"Windows.\n"
"\n"
+"Si vous avez des imprimantes branchées sur cet ordinateur, veuillez les "
+"allumer afin qu'elles soient détectées automatiquement. Les imprimantes "
+"réseau et les imprimantes sous Windows doivent aussi être allumées et "
+"reliées.\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Configurer le réseau local..."
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
-msgstr ""
-"La clé USB semble être protégée en écriture. Veuillez la\n"
-"déconnecter, enlever la protection en écriture, puis la\n"
-"connecter à nouveau."
-
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr "Démarrer le système de gestion du son sur votre machine."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
-msgstr ""
-"Vérifier les sommes de contrôle des fichiers ayant la permission suid/sgid"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run some checks against the rpm database"
-msgstr ""
-"Vérifie les fichiers les paquetages rpm par rapport à la base de données"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Execute"
-msgstr "Exécuter"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Preparing printer database..."
-msgstr "Préparation de la base de données des imprimantes..."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Information"
-msgstr "Informations"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "No network card"
-msgstr "Aucune carte réseau"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "3 boutons"
-
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Which filesystem do you want?"
-msgstr "Quel système de fichiers désirez-vous utiliser ?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Malta"
-msgstr "Malte"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Detailed information"
-msgstr "Informations détaillées"
+"Notez que les autodétections des imprimantes réseau ou Windows sont plus "
+"longues que celle des imprimantes locales, donc vous pouvez les désactiver "
+"si vous n'en avez pas besoin.\n"
+"\n"
+"Cliquez sur « suivant » quand vous êtes prêt, et sur « annuler » si vous ne "
+"voulez pas configurer d'imprimante maintenant."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
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 ""
-"Paramétrage de l'imprimante par défaut.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"Assurez-vous que la taille de la page et le type d'encre (si disponible) "
-"sont correctement indiqués. Notez que la vitesse d'impression peut diminuer "
-"si vous augmentez la qualité d'impression."
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
-msgstr "Cette disquette n'est pas au format DOS/Windows"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "Configuration du réseau"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
-msgstr ""
-"Cette option permet de sauver les fichiers qui ont changé. Le comportement "
-"exact dépend du mode (différentiel ou incrémental)."
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Graphic Card"
-msgstr "Carte graphique"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Resizing Windows partition"
-msgstr "Calcul des limites du système de fichiers de Windows en cours"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "Cameroun"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "1er DNS du fournisseur (optionnel)"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Vous pouvez maintenant partitionner %s.\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
"\n"
-"Lorsque vous aurez terminé, n'oubliez pas d'enregistrer vos\n"
-"modifications en appuyant sur la touche « w »."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finnish)"
-msgstr "Saami (Suédois/Finnois)"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Close"
-msgstr "Fermer"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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 ""
-"« %s »: vérifiez la section du pays. Si vous ne vous trouvez pas dans ce\n"
-"pays, cliquez sur le bouton « %s » et choisissez le bon. Si votre pays ne\n"
-"se trouve pas dans la première liste, cliquez sur « %s » pour avoir la\n"
-"liste complète."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Calendar"
-msgstr "Calendrier"
-
-# whom is selected, the entry or the catalog?
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
-"Rétablir l'entrée\n"
-"du catalogue choisi."
-
-#: ../../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."
+"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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"Pour utiliser une imprimante Unix distante, vous devez indiquer le nom "
-"d'hôte du serveur LPD et le nom attribué à l'imprimante par ce serveur."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
-msgstr "Islande"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Configuration réseau & Internet"
-
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
-msgstr "le programme « consolehelper » est introuvable"
-
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr "arrêté"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Whether the FPU has an irq vector"
-msgstr "Est-ce que le FPU a un vecteur d'IRQ"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
-msgstr "Développer l'arborescence"
+"\n"
+"Bienvenue dans l'assistant de configuration d'imprimante\n"
+"\n"
+"Cet assistant vous aidera à installer les imprimantes connectées soit à cet "
+"ordinateur.\n"
+"\n"
+"Si vous avez des imprimantes branchées sur cet ordinateur, veuillez les "
+"allumer afin qu'elles soient détectées automatiquement.\n"
+"\n"
+"Cliquez sur « suivant » quand vous êtes prêt, et sur « annuler » si vous ne "
+"voulez pas configurer d'imprimante maintenant."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:289
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
"\n"
-"It has been reported to oops the kernel on unloading.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+"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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-"L'ancien pilote « %s » est sur liste noire.\n"
"\n"
-"Plusieurs personnes ont rapporté des problèmes avec le noyau lors de son "
-"arrêt.\n"
+"Bienvenue dans l'assistant de configuration d'imprimante\n"
"\n"
-"Le nouveau pilote « %s » ne sera utilisé qu'au prochain démarrage."
-
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Expert Mode"
-msgstr "Mode Expert"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer options"
-msgstr "Options de l'imprimante"
+"Cet assistant vous aidera à installer les imprimantes connectées soit à cet "
+"ordinateur, soit directement au réseau.\n"
+"\n"
+"Si vous avez des imprimantes branchées sur cet ordinateur, veuillez les "
+"allumer afin qu'elles soient détectées automatiquement. Les imprimantes "
+"réseau doivent aussi être allumées.\n"
+"\n"
+"Notez que l'autodétection des imprimantes réseau est plus longue que celle "
+"des imprimantes locales, donc vous pouvez la désactiver si vous n'en avez "
+"pas besoin.\n"
+"\n"
+"Cliquez sur « suivant » quand vous êtes prêt, et sur « annuler » si vous ne "
+"voulez pas configurer d'imprimante maintenant."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Local Network adress"
-msgstr "Adresse de Réseau Local"
+#: ../../printer/printerdrake.pm_.c:307
+msgid "Auto-detect printers connected to this machine"
+msgstr "Détecter automatiquement les imprimantes connectées sur cette machine"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Sauvegarder vos fichiers système (dossier /etc)"
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
+msgstr "Détecter automatiquement les imprimantes reliées directement au réseau"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the user umask."
-msgstr "Réglez le « umask » utilisateur."
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+"Détecter automatiquement les imprimantes reliées à des machines sous windows"
-# I added an example (install on a networked machine, and the server is connected to the Internet).
-# / J'ai rajouté un exemple (voir texte) car cela me semble plus clair comme çà.
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:329
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"
+"Congratulations, your printer is now installed and configured!\n"
"\n"
-"Do you want to install the updates ?"
+"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 ""
-"Vous avez maintenant la possibilité de télécharger les mises à jour\n"
-"créées depuis la sortie de cette distribution. Il peut y avoir des "
-"correctifs de\n"
-" sécurité ou des résolutions de bogues.\n"
"\n"
-"Vous devez avoir une connexion internet pour les télécharger,\n"
+"Félicitation, votre imprimante est maintenant installée et configurée.\n"
"\n"
-"Souhaitez-vous installer les mises à jour ?"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Samba Server"
-msgstr "Serveur Samba"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr "Câble TV australien Optus"
+"Vous pouvez imprimer en utilisant la commande « imprimer » de vos\n"
+"applications (souvent dans le menu « fichier »).\n"
+"\n"
+"Si vous voulez ajouter, enlever ou renommer une imprimante, ou sivous voulez "
+"changer les options par défaut (alimentation papier,qualité d'impression, "
+"etc.), rendez-vous dans la partie « imprimante »de la section « matériel » "
+"du Centre de Contrôle Mandrake."
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-"<Tab> suivant | <Alt-Tab> précédent | <Espace> sélectionner | <F12> Écran "
-"suivant "
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Printer auto-detection"
+msgstr "détection automatique d'imprimantes"
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm_.c:385
#, c-format
-msgid "Subnet:"
-msgstr "Sous-réseau :"
+msgid ", network printer \"%s\", port %s"
+msgstr ", imprimante réseau « %s », port « %s »"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:387
#, c-format
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr ", imprimante « %s » sur serveur SMB/Windows « %s »"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:391
#, c-format
-msgid "When"
-msgstr "Quand..."
+msgid "Detected %s"
+msgstr "Détecté %s"
-#: ../../network/adsl.pm:1
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
-msgstr ""
-"Vous avez besoin du microcode d'Alcatel.\n"
-"Téléchargez-le à\n"
-"%s\n"
-"et copiez le fichier mgmt.o dans /usr/share/speedtouch"
+msgid "Printer on parallel port \\/*%s"
+msgstr "Imprimante sur le port parallèle \\/*%s"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "Hour"
-msgstr "Heure"
+msgid "USB printer \\/*%s"
+msgstr "Imprimante USB \\/*%s"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:399
#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "serveur DNS secondaire (optionnel)"
+msgid "Network printer \"%s\", port %s"
+msgstr "Imprimante réseau autonome « %s », port %s"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:401
#, c-format
-msgid "Finland"
-msgstr "Finlande"
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Imprimante « %s » sur serveur SMB/Windows « %s »"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Color depth: %s\n"
-msgstr "Nombre de couleurs : %s\n"
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+msgid "Local Printer"
+msgstr "Imprimante locale"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It must be upgraded"
+#: ../../printer/printerdrake.pm_.c:526
+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 ""
-"Vous ne pouvez pas désélectionner ce paquetage, il doit être mis à jour."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "Chargement depuis la disquette..."
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Timezone - DrakClock"
-msgstr "Fuseau horaire - DrakClock"
+"Aucune imprimante locale n'a pu être trouvée!\n"
+"Pour en installer une manuellement entrez un nom de périphérique ou de "
+"fichier sur la ligne d'entrée (Ports parallèles : /dev/lp0, /dev/lp1, ..., "
+"équivalents à LPT1:, LPT2:, ..., première imprimante USB : /dev/usb/lp0, "
+"deuxième imprimante USB : /dev/usb/lp1, ...) "
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
-msgstr "Activer/désactiver le traçage de tous les paquets IPv4 étranges"
+#: ../../printer/printerdrake.pm_.c:530
+msgid "You must enter a device or file name!"
+msgstr "Vous devez enter un nom de fichier ou de périphérique!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr "Slovénie"
+#: ../../printer/printerdrake.pm_.c:539
+msgid "No printer found!"
+msgstr "Aucune imprimante trouvée !"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse test"
-msgstr "Test de la souri"
+#: ../../printer/printerdrake.pm_.c:548
+msgid "Available printers"
+msgstr "Imprimantes disponibles"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:552
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."
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
msgstr ""
-"Drakperm permet de voir les fichiers à utiliser pour corriger des "
-"permissions, propriétaire et groupe grâce à msec.\n"
-"Vous pouvez aussi éditer vos propres règles, prioritaires devant celles par "
-"défaut."
+"L'imprimante suivante a été auto-détectée; si ce n'est pas celle que vous "
+"voulez configurer, tapez un nom de fichier ou de périphérique dans le champs "
+"d'entrée"
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:553
msgid ""
-"Enter a user\n"
-"%s"
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
msgstr ""
-"Créer un compte utilisateur\n"
-"%s"
+"Voici une liste de toutes les imprimantes auto-détectées. Veuillez choisir "
+"l'imprimante que vous voulez configurer ou tapez un nom de périphérique ou "
+"de fichier dans le champs d'entrée"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:555
msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
msgstr ""
-"- périphériques PCI et USB : liste des identifiants vendeur, périphériques, "
-"sous-vendeur, et sous-périphériques PCI/USB"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "ProgressBar color selection"
-msgstr "Sélection de couleur de la barre de progression"
+"L'imprimante suivante a été auto-détectée. La configuration de cette "
+"imprimante sera effectuée automatiquement. Si votre imprimante n'a pas été "
+"correctement détectée ou si vous préférer effectuer une configuration "
+"personalisée, activez « Configuration Manuelle  » ."
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:556
msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-"Voici les différentes entrées.\n"
-"Vous pouvez en ajouter de nouvelles ou modifier les entrées existantes."
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
+"Voici une liste de toutes les imprimantes auto-détectées. Veuillez choisir "
+"l'imprimante que vous voulez configurer. La configuration de cette "
+"imprimante sera effectuée automatiquement. Si votre imprimante n'a pas été "
+"correctement détectée ou si vous préférer effectuer une configuration "
+"personalisée, activez « Configuration Manuelle  » ."
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
-
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:558
msgid ""
-"Application Name\n"
-"or Full Path:"
+"Please choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-"Nom de l'Application\n"
-"ou Chemin Complet:"
+"Veuillez choisir le port sur laquelle votre imprimante est connectée ou "
+"tapez le nom du périphérique ou de fichier dans le champs d'entrée"
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:559
+msgid "Please choose the port where your printer is connected to."
+msgstr "Veuillez choisir le port sur lequel votre imprimante est connectée."
+
+#: ../../printer/printerdrake.pm_.c:561
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."
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-"Service qui permet de démarrer une tâche à une heure précise. Chaque tâche "
-"doit être créée par la commande « at », puis, a l'heure dite, le service "
-"« atd » lance cette tâche. Par exemple pour éteindre automatiquement la "
-"machine ce soir à 23h59, tapez « at 23:59 » dans une fenêtre de commande, "
-"puis « halt » et <Ctrl-D>."
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
-msgstr "Support de la radio :"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing SANE packages..."
-msgstr "Installation des paquetages SANE..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
-msgstr "SILO"
+"(Ports parallèles : /dev/lp0, /dev/lp1, ..., équivalents à LPT1:, "
+"LPT2:, ..., première imprimante USB : /dev/usb/lp0, deuxième imprimante "
+"USB : /dev/usb/lp1, ...)."
-#: ../../diskdrake/removable.pm:1
-#, c-format
-msgid "Change type"
-msgstr "Changer le type"
+#: ../../printer/printerdrake.pm_.c:565
+msgid "You must choose/enter a printer/device!"
+msgstr "Vous devez choisir ou entrer une imprimante ou un périphérique !"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
-msgstr ", imprimante USB %s"
+#: ../../printer/printerdrake.pm_.c:584
+msgid "Manual configuration"
+msgstr "Configuration manuelle"
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "Installation de SILO"
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
+msgstr "Configuration d'une imprimante Unix (lpd) distante"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:634
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."
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
-"Félicitations, l'installation est terminée.\n"
-"Enlevez la disquette ou le CD-Rom d'amorçage et appuyez sur « Entrée ».\n"
-"\n"
-"\n"
-"Pour toutes informations sur les corrections disponibles pour cette version "
-"de Mandrake Linux, consultez les Errata disponibles depuis :\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Des informations sur la configuration de votre système sont \n"
-"disponibles dans le Guide de l'Utilisateur de Mandrake Linux."
+"Pour utiliser une imprimante Unix distante, vous devez indiquer le nom "
+"d'hôte du serveur LPD et le nom attribué à l'imprimante par ce serveur."
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Enable Network Time Protocol"
-msgstr "Activer NTP"
+#: ../../printer/printerdrake.pm_.c:635
+msgid "Remote host name"
+msgstr "Nom d'hôte du serveur"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "paranoid"
-msgstr "paranoïaque"
+#: ../../printer/printerdrake.pm_.c:636
+msgid "Remote printer name"
+msgstr "Nom de l'imprimante"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Do not send mails when unneeded"
-msgstr "Ne pas envoyer de mail quand cela n'est pas nécessaire"
+#: ../../printer/printerdrake.pm_.c:639
+msgid "Remote host name missing!"
+msgstr "Nom du serveur distant manquant !"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Your scanner(s) will not be available on the network."
-msgstr "Vos scanners ne seront pas disponibles sur le réseau."
+#: ../../printer/printerdrake.pm_.c:643
+msgid "Remote printer name missing!"
+msgstr "Le nom de l'imprimante est manquant !"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
#, c-format
-msgid "Send mail report after each backup to:"
-msgstr "Envoyer un rapport par courriel après chaque sauvegarde à :"
+msgid "Detected model: %s %s"
+msgstr "Modèle détecté : %s %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications. But here do not supply the file name "
-"because the file to print is provided by the application.\n"
-msgstr ""
-"Cette commande peut également être utilisée dans le champ « commande "
-"d'impression » des boîtes de dialogue d'impression dans de nombreuses "
-"applications. Dans ce cas, n'indiquez pas le nom du fichier à imprimer "
-"puisque celui-ci sera fourni par l'application elle-même.\n"
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+msgid "Scanning network..."
+msgstr "Parcours du réseau..."
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, c-format
-msgid "Resolution"
-msgstr "Résolution"
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ", imprimante « %s » sur serveur « %s »"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
#, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Imprimante « %s » sur serveur « %s »"
+
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "Configuration d'une imprimante SMB (Windows 9x/NT)"
+
+#: ../../printer/printerdrake.pm_.c:796
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 "
@@ -12562,618 +8625,316 @@ msgstr ""
"d'utilisateur, mot de passe et groupe de travail nécessaires pour accéder à "
"l'imprimante."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:797
msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+" 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 ""
-" Autorise « su » seulement pour les membres du groupe « wheel » ou bien pour "
-"tout le monde."
+"Si l'imprimante voulue a été autodétectée, choisissez la dans la liste et "
+"ajoutez un nom d'utilisateur, un mot de passe et un groupe de travail si "
+"nécessaire."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
-msgstr "reconfigurer"
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
+msgstr "Nom du serveur"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Votre carte vidéo peut utiliser l'accélération 3D matérielle en utilisant\n"
-"XFree %s.\n"
-"Veuillez noter que ce support est EXPÉRIMENTAL et qu'il peut BLOQUER VOTRE\n"
-"ORDINATEUR."
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr "Adresse IP du serveur"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell timeout"
-msgstr "Délai d'expiration de l'interpréteur de commande"
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr "Nom de partage de l'imprimante"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Xinetd Service"
-msgstr "Service Xinetd"
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "Groupe de travail"
-#: ../../any.pm:1
-#, c-format
-msgid "access to network tools"
-msgstr "accès aux outils réseaux"
+#: ../../printer/printerdrake.pm_.c:806
+msgid "Auto-detected"
+msgstr "Auto-détecté"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
-msgstr "Téléchargement du firmware pour la HP LaserJet 1000"
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
+msgstr "Il faut au moins préciser le nom du serveur ou son adresse IP."
-#: ../advertising/03-software.pl:1
-#, 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."
-msgstr ""
-"Et bien sûr, poussez le multimédia à ses limites. Utilisez les tous derniers "
-"lecteurs audio et video. Manipulez vos images et photos."
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
+msgstr "Il faut préciser le nom de partage de l'imprimante."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
-msgstr "Voici la liste de toutes les imprimantes auto-détectées. "
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
+msgstr "ALERTE DE SÉCURITÉ !"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:827
#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"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 ""
-"Une erreur est survenue lors de l'installation de « aboot ».\n"
-"Désirez-vous forcer l'installation au risque de détruire la\n"
-"première partition du disque ?"
+"Vous êtes sur le point de paramétrer l'impression vers un compte Windows "
+"avec mot de passe. A cause d'une erreur dans la conception du logiciel "
+"client Samba, le mot de passe est inscrit en clair dans la ligne de commande "
+"qu'il envoie pour transmettre le travail d'impression au serveur Windows. Il "
+"est donc possible pour n'importe quel utilisateur de cette machine "
+"d'afficher à l'écran ce mot de passe, simplement ent tapant une commande "
+"comme « ps auxwww ».\n"
+"\n"
+"Nous vous conseillons d'utiliser les solutions alternatives suivantes (dans "
+"tous les cas, vous devez vous assurer que seules les machines de votre "
+"réseau local peuvent accéder à votre serveur Windows, à l'aide d'un pare-feu "
+"logiciel (firewall) par exemple):\n"
+"\n"
+"Utilisez un compte sans mot de passe sur votre serveur Windows, tel que le "
+"compte « Invité » ou alors un compte dédié spécialement à l'impression. "
+"N'enlevez pas la protection d'un compte Utilisateur ou Administrateur.\n"
+"\n"
+"Paramétrez votre serveur Windows afin que les imprimantes soient disponibles "
+"sous le protocole LPD. Réglez ensuite l'impression de cette machine-ci avec "
+"le type de connexion « %s » dans Printerdrake.\n"
+"\n"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
msgid ""
-"Restore Selected\n"
-"Files"
+"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 ""
-"Restaurer les\n"
-"fichiers choisis"
+"Paramétrez votre serveur Windows afin que l'imprimante soit disponible sous "
+"le protocole IPP et réglez l'impression à partir de cette machine-ci avec le "
+"type de connexion « %s » dans Printerdrake.\n"
+"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:840
msgid ""
-"%s exists, delete?\n"
+"Connect your printer to a Linux server and let your Windows machine(s) "
+"connect to it as a client.\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."
+"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-"%s existe, l'effacer ? \n"
+"Branchez votre imprimante sur un serveur Linux et laissez votre(vos) machine"
+"(s) Windows se connecter en tant que client.\n"
"\n"
-"Attention : si vous avez déjà fait ce processus, vous devrez\n"
-"probablement purger l'entrée des clés autorisées sur le serveur."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Veuillez compléter ou vérifier les champs ci-dessous"
+"Souhaitez-vous vraiment poursuivre le parmétrage de cette imprimante de "
+"cette façon?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Désirez-vous sauvegarder les modifications de /etc/fstab"
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
+msgstr "Options de l'imprimante NetWare"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Boot Protocol"
-msgstr "Protocole d'amorçage"
+#: ../../printer/printerdrake.pm_.c:912
+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 ""
+"Pour pouvoir utiliser une imprimante connectée à un serveur Netware, vous "
+"devez au moins indiquer le nom Netware du serveur (qui peut être différent "
+"du nom d'hôte TCP/IP) et le nom de la file d'impression à laquelle vous "
+"voulez accéder ainsi qu'un nom de login et un mot de passe si nécessaire."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "disques LVM %s\n"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr "Nom du serveur d'impression"
-#: ../../services.pm:1
-#, c-format
-msgid "On boot"
-msgstr "Au démarrage"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
+msgstr "Nom de la file d'impression"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "Le paquetage %s est requis. Souhaitez-vous l'installer ?"
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
+msgstr "Nom du serveur NCP manquant!"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bus identification"
-msgstr "Identification de Bus"
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
+msgstr "Nom de la file d'attente NCP manquant!"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, c-format
-msgid "Vatican"
-msgstr "Vatican"
+msgid ", host \"%s\", port %s"
+msgstr ", hôte « %s », port « %s »"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
-msgid "Please make a backup of your data first"
-msgstr ""
-"Avant d'utiliser un logiciel de partitionnement de disques,\n"
-"il est prudent de faire une copie de sauvegarde de vos données !!"
+msgid "Host \"%s\", port %s"
+msgstr "Hôte « %s », port « %s »"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ADSL adapters"
-msgstr "Modems ADSL"
+#: ../../printer/printerdrake.pm_.c:1030
+msgid "TCP/Socket Printer Options"
+msgstr "Options de l'imprimante réseau (TCP/socket)"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
+#: ../../printer/printerdrake.pm_.c:1032
+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) into the input fields."
msgstr ""
-"Vous possédez plus d'un disque dur.\n"
-"Sur lequel désirez vous installer Linux ?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Eritrea"
-msgstr "Érythrée"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot ISO"
-msgstr "Image ISO de démarrage"
+"Choisissez une imprimante parmi celles qui ont été détectées, ou entrez un "
+"nom de machine ou une adresse IP et le numéro port optionnel (9100 par "
+"défaut)."
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Firmware needed"
-msgstr "Firmware nécessaire:"
+#: ../../printer/printerdrake.pm_.c:1033
+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 ""
+"Pour imprimer sur une imprimante TCP ou socket, vous devez indiquer le nom "
+"d'hôte de l'imprimante et, optionellement, le numéro du port. Pour les "
+"serveurs d'impression « HP JetDirect », le numéro du port est habituellement "
+"9100, mais cela peut être différent pour d'autres serveurs. Veuillez "
+"consulter le manuel de votre imprimante."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove List"
-msgstr "Désinstalle la liste"
+#: ../../printer/printerdrake.pm_.c:1037
+msgid "Printer host name or IP missing!"
+msgstr "Nom d'hôte de l'imprimante ou adresse IP manquant(e) !"
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
-msgstr "Un environnement adapté à vos besoins"
+#: ../../printer/printerdrake.pm_.c:1059
+msgid "Printer host name or IP"
+msgstr "Nom d'hôte ou adresse IP de l'imprimante "
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Inuktitut"
-msgstr "Inuktitut"
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
+msgstr "Adresse réseau du périphérique d'impression"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1108
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."
+"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 ""
-"Certains protocoles, comm rsync, peuvent être configurés du côté serveur. Au "
-"lieu d'utiliser un chemin de dossier, vous utiliseriez un nom de module pour "
-"le chemin du service."
+"Si vous la connaissez, vous pouvez spécifier directement l'adresse réseau "
+"(URL) qui permet d'accéder à l'imprimante. Choisissez un en-tête puis "
+"complétez l'adresse en respectant les spécifications CUPS ou Foomatic. Notez "
+"que tous les types d'URL ne sont pas supportés par tous les gestionnaires "
+"d'impression."
-#: ../../lang.pm:1
-#, c-format
-msgid "Morocco"
-msgstr "Maroc"
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
+msgstr "Une adresse valide doit être entrée !"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printer model do you have?"
-msgstr "Quel modèle d'imprimante possédez-vous ?"
+#: ../../printer/printerdrake.pm_.c:1463
+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 ""
+"Toute imprimante a besoin d'un nom (par exemple « lpr ») auquel on se réfère "
+"pour pouvoir imprimer.\n"
+"Les champs « Description » et « Emplacement » n'ont pas besoin d'être "
+"remplis. Ce sont de simples commentaires pour les utilisateurs."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add a new printer"
-msgstr "Ajouter une nouvelle imprimante"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr "Nom de l'imprimante"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " All of your selected data have been "
-msgstr " Toutes vos données sélectionnées ont été "
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
+msgstr "Description"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "Népal"
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
+msgstr "Emplacement"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Delete"
-msgstr "<-- Effacer"
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+msgid "Reading printer database..."
+msgstr "Lecture de la base de données des imprimantes..."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
-msgstr "processeur n°"
+#: ../../printer/printerdrake.pm_.c:1482
+msgid "Preparing printer database..."
+msgstr "Préparation de la base de données des imprimantes..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "chunk size"
-msgstr "Taille de bloc"
+#: ../../printer/printerdrake.pm_.c:1578
+msgid "Your printer model"
+msgstr "Le modèle de votre imprimante"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:1579
#, c-format
msgid ""
-"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
+"Printerdrake has compared the model name resulting from the printer auto-"
+"detection with the models listed in its printer database to find the best "
+"match. This choice can be wrong, especially when your printer is not listed "
+"at all in the database. So check whether the choice is correct and click "
+"\"The model is correct\" if so and if not, click \"Select model manually\" "
+"so that you can choose your printer model manually on the next screen.\n"
"\n"
-"If set to NONE, no issues are allowed.\n"
+"For your printer Printerdrake has found:\n"
"\n"
-"Else only /etc/issue is allowed."
+"%s"
msgstr ""
-"Si TOUS est choisi, permet à /etc/issue et /etc/issue.net d'exister.\n"
+"Le nom de modèle résultant de l'autodétection a été comparée à la basede "
+"données d'imprimantes pour trouver la meilleure correspondance.Ce choix peut "
+"être mauvais, particulièrement si votre modèle d'imprimanten'apparaît pas "
+"dans la base de données. Vérifiez ce choix, puis cliquez sur« Le modèle est "
+"correct », ou le cas échéant sur « Sélectionner manuellement le modèle ».\n"
"\n"
-"Si NON est choisi, aucun de ces fichiers est autorisé.\n"
+"Votre imprimante a été détectée comme étant :\n"
"\n"
-"Sinon seulement /etc/issue est permis."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
-msgstr ""
-"Activer/Désactiver la demande de mot de passe en mode mono-utilisateur."
-
-#. -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
-#, c-format
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "commande de demarrage ou sur <c> pour utiliser la ligne de commande."
-
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Des problèmes sont apparus en installant le paquetage %s"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
-msgstr "Vous recevrez une alerte si la charge machine dépasse cette valeur"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
-msgstr "Ajouter manuellement un scanner"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh"
-msgstr "Rafraîchir"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Reload partition table"
-msgstr "Relire la table des partitions"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Connexion automatique (choisir utilisateur et environnement)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Selected"
-msgstr "Restaurer les fichiers choisis"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
-msgstr "Chercher des polices dans la liste des installées"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "Le réseau local ne finissait pas par `.0', j'abandonne."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Boot"
-msgstr "Partition de démarrage"
+"%s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " and the CD is in the drive"
-msgstr " et le CD est dans le lecteur."
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+msgid "The model is correct"
+msgstr "Le modèle est correct"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Tuner type:"
-msgstr "Type de tuner :"
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+msgid "Select model manually"
+msgstr "Sélectionner manuellement le modèle"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, fuzzy, 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"
-"\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 ""
-"Il faut choisir ici un système d'impression pour votre ordinateur. D'autres\n"
-"OSs offrent un, Mandrake Linux en propose deux.\n"
-"\n"
-" * « %s » - qui veut dire « print, don't queue », (ou, impression sans\n"
-"passer par la file d'attente) est un bon choix si votre imprimante est\n"
-"branchée directement sur votre poste et que vous voulez pouvoir arrêter\n"
-"l'impression directement en cas de problème et que vous n'avez pas\n"
-"d'imprimantes réseau. Il prendra en charge de simples cas en réseau, mais\n"
-"les performances sont plutôt mauvaises dans ces cas. Choisissez pdq si vous\n"
-"êtes à une première expérience avec Linux. Vous pourrez toujours changer de\n"
-"système plus tard avec PrinterDrake à partir du Centre de contrôle Mandrake\n"
-"en cliquant sur « %s ».\n"
-"\n"
-" * « %s » - « Common Unix Printing System », est fabuleux tant pour\n"
-"imprimante local que pour imprimer à l'autre bout du monde. C'est simple et\n"
-"il peu agir comme serveur ou un client avec l'ancien système d'impression\n"
-"« lpd ». Il s'agit d'un outil très puissant, mais les configurations de\n"
-"bases sont aussi simple que pdq. Pour émuler un serveur lpq, partez le\n"
-"démon (« daemon ») cups-lpq. Finalement, cups offre une interface simple\n"
-"pour imprimer et choisir les imprimantes.\n"
-"\n"
-"Vous pourrez changer ultérieurement de système d'impression en lançant\n"
-"PrinterDrake depuis le Centre de contrôle Mandrake."
+#: ../../printer/printerdrake.pm_.c:1606
+msgid "Printer model selection"
+msgstr "Sélection du modèle de l'imprimante"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
-msgstr "Touche « Menu »"
+#: ../../printer/printerdrake.pm_.c:1607
+msgid "Which printer model do you have?"
+msgstr "Quel modèle d'imprimante possédez-vous ?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1608
msgid ""
"\n"
"\n"
"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
msgstr ""
"\n"
"\n"
-"Veuillez vérifier si l'imprimante a été correctement détectée. Cherchez le "
+"Veuillez vérifier si l'imprimante a été correctement détectée Cherchez le "
"modèle correct dans la liste si le curseur se situe sur un modèle erroné ou "
"sur « Imprimante à accès direct »."
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Security Administrator:"
-msgstr "Administrateur sécurité :"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
-msgstr "Réglez le délai d'expiration du shell. Zéro signifie pas d'expiration."
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
-msgstr "La copie du firmware a réussi."
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid ""
-"You can't use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-"Vous ne pouvez pas utiliser un autre CDROM lorsque les programmes suivants "
-"sont en cours de fonctionnement : \n"
-"%s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
-msgstr ""
-"Si oui, vérifie les droits des fichiers dans les dossiers personnels des "
-"utilisateurs."
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Vous n'avez aucune connexion internet.\n"
-"Vous pouvez en créer une en cliquant sur « Configurer »"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Fonts copy"
-msgstr "Copie des fontes"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automated"
-msgstr "Automatisée"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "Désirez-vous tester la configuration ?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1611
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
-msgstr "L'imprimante « %s » a été retirée avec succès de StarOffice/OpenOffice"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save packages selection"
-msgstr "Sauvegarder la sélection des paquetages"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Actions"
-msgstr "/_Actions"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Remove the last item"
-msgstr "Supprimer le dernier élément"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr "Fichiers de sauvegarde à restaurer (seul le plus récent compte)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
-msgstr "Aucune image d'amorçage réseau créée"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "utiliser « pptp »"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
-"Choisissez les services à démarrer automatiquement lors du démarrage du "
-"système"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check files/directories writable by everybody"
-msgstr "Vérifie les fichiers et/ou dossiers modifiables par tout un chacun"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Learn how to use this printer"
-msgstr "Savoir comment utiliser cette imprimante"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configure the network now"
-msgstr "Configurez le réseau maintenant"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
-msgstr "Choisissez un serveur miroir d'où télécharger les paquetages"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Le programme de redimensionnement des partitions FAT ne peut gérer votre\n"
-"partition. L'erreur suivante est survenue : %s"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Size: "
-msgstr "Taille : "
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "Sur quel secteur souhaitez-vous la déplacer ?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahamas"
-msgstr "Bahamas"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Do you want to click on this button?"
-msgstr "Désirez-vous cliquer sur ce bouton ?"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Manual configuration"
-msgstr "Configuration manuelle"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "search"
-msgstr "chercher"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
-msgstr ""
-"Ce paquetage active la disposition de clavier défini dans le fichier /etc/"
-"sysconfig/keyboard. Cette disposition peut être modifiée en utilisant "
-"l'outil kbdconfig. Ce service devrait être activé sur la plupart des "
-"machines."
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (pilote d'affichage pour l'installation)"
-
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "Le nom d'hôte zeroconf ne doit pas contenir de point"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse icmp echo."
-msgstr "Accepter/refuser l'écho icmp."
-
-#: ../../services.pm:1
-#, 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."
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
-"Syslog est un service utilisé par beaucoup d'autres services pour "
-"enregistrer des rapports d'activité. C'est une très bonne idée de toujours "
-"l'activer."
-
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Unknown/Others"
-msgstr "Inconnus/Autres"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
-msgstr "Aucune carte TV détectée !"
-
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Options"
-msgstr "Options"
+"Si votre imprimante n'est pas listée, choisissez-en une compatible (voir le "
+"manuel de l'imprimante) ou similaire."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "L'imprimante « %s » est maintenant celle par défaut."
+#: ../../printer/printerdrake.pm_.c:1697
+msgid "OKI winprinter configuration"
+msgstr "Configuration de l'imprimante OKI winprinter"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1698
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -13190,278 +8951,238 @@ msgstr ""
"l'impression de la page de test. Sans cela, l'imprimante ne fonctionnera pas "
"Vos paramètres de type de connexion seront ignorés par le pilote."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr "génération du processeur (exemple : 8 pour les Pentium III, ...)"
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+msgid "Lexmark inkjet configuration"
+msgstr "Configuration de l'imprimante Lexmark inkjet"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detected"
-msgstr "Auto-détecté"
+#: ../../printer/printerdrake.pm_.c:1719
+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 ""
+"Les pilotes d'impression inkjet fournis par Lexmark ne permettent que "
+"l'utilisation des imprimantes locales, et pas des imprimantes distantes ou "
+"des serveurs d'impression. Veuillez connecter votre imprimante sur un port "
+"local ou configurez-la sur la machine à laquelle elle est connectée."
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1746
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)."
+"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 ""
-"Vous vous apprêtez à installer un serveur PXE agissant comme un serveur "
-"DHCP,\n"
-"et un serveur TFTP comme un serveur d'installation.\n"
-"Avec cette fonction, d'autres ordinateurs sur votre réseau local pourront "
-"être installés à partir de cet ordinateur.\n"
-"\n"
-"Assurez-vous d'avoir configuré votre accès Réseau/Internet avec DrakConnect "
-"avant d'aller plus loin.\n"
-"\n"
-"Veuillez noter que vous avez besoin d'une carte réseau dédiée à votre réseau "
-"local."
+"Afin de pouvoir imprimer avec votre imprimante Lexmark inkjet et la "
+"configuration actuelle, vous avez besoin des pilotes d'impression inkjet "
+"fournis par Lexmark (http://www.lexmark.com/). Allez sur la section "
+"« Drivers » du site américain de Lexmark, puis choisissez votre modèle et "
+"enfin « Linux » comme système d'exploitation. Les pilotes sont des "
+"paquetages RPM ou des scripts shell avec une installation graphique "
+"interactive. Vous n'avez pas besoin de faire cette configuration avec "
+"l'interface graphique. Annulez directement après l'acceptation de la "
+"licence. Ensuite, imprimez les pages pour l'alignement des têtes "
+"d'impression avec « lexmarkmaintain » et ajustez les paramètres de ces têtes "
+"avec ce programme."
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr "Imprimante Laser GDI avec le format Zenographics ZJ-Stream"
+
+#: ../../printer/printerdrake.pm_.c:1750
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"
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\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"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
"\n"
-"It also provides a much higher API than OSS.\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\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"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-"OSS (Open Sound System) fut la première API sonore. Elle est multi plate-"
-"formes (disponible sur la majorité des systèmes UNIX(tm)) mais est limitée "
-"et très basique.\n"
-"De ce fait, tous les pilotes OSS doivent réinventer la roue.\n"
+"Votre imprimante appartient au groupe d'imprimantes laser GDI (destinées à "
+"MS-Windows) vendues par différents fabricants et qui utilisent le format de "
+"trames Zenographics ZJ-stream pour les données envoyées à l'imprimante. Le "
+"pilote pour ces imprimantes est encore en processus de développement et "
+"pourrait ne pas fonctionner de manière optimale. En particulier, un format "
+"autre que A4 pour le papier peut s'avérer problèmatique.\n"
"\n"
-"ALSA (Advanced Linux Sound Architecture) est une architecture modulaire qui\n"
-"supporte un nombre impressionnant de cartes ISA, PCI et USB.\n"
+"Certaines de ces imprimantes, comme la HP LaserJet 1000, pour lequel ce "
+"pilote a été écrit à l'origine, ont besoin à l'allumage d'avoir leur micro-"
+"code téléchargé en mémoire. Dans le cas de la HP LaserJet 1000 vous cherchez "
+"le fichier « sihp1000.img » sur le CD fourni avec l'imprimante ou dans votre "
+"partition Windows et envoyez ce fichier dans la mémoire de l'imprimante avec "
+"l'une des commandes suivantes:\n"
"\n"
-"Elle fournit également une API de plus haut niveau qu'OSS.\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
"\n"
-"Pour utiliser ALSA, il est possible d'utiliser :\n"
-"- la compatibilité avec l'ancienne API OSS\n"
-"- la nouvelle API ALSA qui fournit un grand nombre de possibilités avancées "
-"mais nécessite la bibliothèque ALSA.\n"
+"La première commande peut être lancée par un utilisateur normal, la seconde "
+"ne peut être lancée que par root.Aprés cela vous pourrez imprimer "
+"normalement.\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1972
msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
-"Pas de place libre pour la partition d'amorçage (bootstrap) de 1 Mo."
-"L'installation va\n"
-"continuer, mais pour que votre système puisse démarrer, vous aurez besoin "
-"de\n"
-"créer la partition d'amorçage avec DiskDrake."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
+"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 ""
-"Veuillez choisir l'imprimante que vous voulez configurer ou tapez un nom de "
-"périphérique ou de fichier dans le champ d'entrée"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
-msgstr "Refuser"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
-msgstr "LOCAL"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
-msgstr "HFS"
+"Paramétrage de l'imprimante par défaut.\n"
+"\n"
+"Assurez-vous que la taille de la page et le type d'encre (si disponible) "
+"sont correctement indiqués. Notez que la vitesse d'impression peut diminuer "
+"si vous augmentez la qualité d'impression."
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
-"HardDrake effectue une détection matérielle, et configure éventuellement le "
-"nouveau matériel."
+msgid "Option %s must be an integer number!"
+msgstr "L'option %s doit être un nombre entier !"
-#: ../../fs.pm:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Création et formatage du fichier %s"
+msgid "Option %s must be a number!"
+msgstr "L'option %s être un nombre !"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:1989
#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
-msgstr ""
-"Si oui, vérifie les ajouts/retraits des fichiers qui ont la permission \"sgid"
-"\"."
+msgid "Option %s out of range!"
+msgstr "L'option %s est en dehors des limites !"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2028
#, 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"
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
-"La HP LaserJet 1000 a besoin de récupérer son firmware après la mise sous "
-"tension. Téléchargez le pilote pour Windows sur le site de HP (le pilote "
-"fourni avec l'imprimante ne fonctionne pas) et récupérez le fichier de "
-"firmware \"sihp1000.img\" en décompressant l'archive autoextractible (.exe) "
-"avec l'outil \"unzip\". Copiez le fichier firmware dans le dossier /etc/"
-"printer. Il sera récupéré par le script de chargement et envoyé vers "
-"l'imprimante à chaque mise sous tension.\n"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "Choisissez un LVM existant"
+"Désirez-vous que l'imprimante « %s » soit l'imprimante\n"
+"par défaut ?"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "xfs restart"
-msgstr "redémarrage du serveur de fonte"
+#: ../../printer/printerdrake.pm_.c:2051
+msgid "Test pages"
+msgstr "Pages de test"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2052
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"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 ""
-"L'imprimante « %s » existe déjà,\n"
-"souhaitez-vous vraiment écraser sa configuration ?"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
-msgstr "Utiliser les scanners sur les hôtes : "
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
-msgstr "Désélectionne tout"
-
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "Aucune partition disponible"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Printer Management \n"
-msgstr "Gestion des imprimantes \n"
+"Merci de sélectionner les pages de test que vous voulez imprimer.\n"
+"Note : la page de test photo peut prendre un temps assez long pour "
+"s'imprimer, et sur les imprimantes laser avec trop peu de mémoire, elle peut "
+"même ne pas sortir.\n"
+"Dans la plupart des cas, l'impression de la page de test standard suffit."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Domain Name Resolver"
-msgstr "Solveur de Nom de domaine"
+#: ../../printer/printerdrake.pm_.c:2056
+msgid "No test pages"
+msgstr "Pas de page de test"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
-msgstr "Clef de chiffrement (confirmation)"
+#: ../../printer/printerdrake.pm_.c:2057
+msgid "Print"
+msgstr "Imprimer"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
-msgstr "Il faut préciser le nom de partage de l'imprimante."
+#: ../../printer/printerdrake.pm_.c:2114
+msgid "Standard test page"
+msgstr "Page de test standard"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
-msgstr "Installation « True Type » terminée"
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
+msgstr "Page de test alternative (Letter)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Detection in progress"
-msgstr "Détection en cours"
+#: ../../printer/printerdrake.pm_.c:2120
+msgid "Alternative test page (A4)"
+msgstr "Page de test alternative (A4)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr "Construire le noyau entier -->"
+#: ../../printer/printerdrake.pm_.c:2122
+msgid "Photo test page"
+msgstr "Page de test photo"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "modem"
-msgstr "modem"
+#: ../../printer/printerdrake.pm_.c:2126
+msgid "Do not print any test page"
+msgstr "Ne pas imprimer de page de test"
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "Bienvenue sur %s"
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
+msgstr "Impression des pages de test..."
-#: ../../standalone/drakhelp:1
+#: ../../printer/printerdrake.pm_.c:2159
#, 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"
+"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"
-"Usage: \n"
msgstr ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003 MandrakeSoft.\n"
-"Ce programme est un logiciel libre et peut être redistribué selon les\n"
-"termes de la license GNU GPL.\n"
+"Les pages de test ont été envoyées à l'imprimante.\n"
+"Il peut se passer un certain temps avant le début effectif de l'impression.\n"
+"Statut de l'impression :\n"
+"%s\n"
"\n"
-"Usage: \n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Insérez la disquette de mise à jour de modules dans le lecteur %s"
+#: ../../printer/printerdrake.pm_.c:2163
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+msgstr ""
+"Les pages de test ont été envoyées à l'imprimante.\n"
+"Il peut se passer un certain temps avant le début effectif de l'impression.\n"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
-msgstr "Image pendant l'amorçage"
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
+msgstr "Êtes-vous satisfait du résultat ?"
+
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+msgid "Raw printer"
+msgstr "Imprimante à accès direct"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
+"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 ""
-"L'imprimante suivante :\n"
-"\n"
-"%s%s\n"
-"est connectée directement à votre système."
+"Pour imprimer un fichier depuis la ligne de commande (une fenêtre de "
+"terminal), vous pouvez soit utiliser la commande « %s <fichier> » ou un "
+"utilitaire d'impression graphique: « xpp <fichier> » ou « kprinter "
+"<fichier> ». Les utilitaires graphiques vous permettent de choisir "
+"l'imprimante et de modifier les paramètres d'impression facilement.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Partage d'imprimante sur les hôtes/réseaux :"
+#: ../../printer/printerdrake.pm_.c:2218
+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 ""
+"Vous pouvez également utiliser ces commandes dans le champ « commande "
+"d'impression » des boîtes de dialogue d'impression dans de nombreuses "
+"applications. Dans ce cas n'indiquez pas le nom du fichier puisqu'il sera "
+"fourni par l'application elle-même.\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, c-format
msgid ""
"\n"
@@ -13474,7924 +9195,6013 @@ msgstr ""
"pour une impression particulière. Il suffit pour cela d'ajouter les "
"paramètres voulus sur la ligne de commande. Par exemple, « %s <fichier> ». "
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "DrakClock"
-msgstr "DrakClock"
-
-#: ../../modules/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
#, 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."
+"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\n"
+"\n"
msgstr ""
-"Le pilote de matériel « %s » a parfois besoin d'options supplémentaires\n"
-"pour fonctionner de manière optimale.\n"
-"Vous pouvez lui fournir manuellement ces options,\n"
-"ou bien lui laisser les détecter automatiquement.\n"
-"(La détection peut dans certains cas bloquer l'ordinateur,\n"
-"mais sans lui causer de dommage.)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr "Ce n'est pas le bon CD. Celui-ci est intitulé %s."
+"Pour obtenir la liste des paramètres disponibles pour l'imprimante courante, "
+"lisez la liste ci-dessous ou cliquez sur le bouton « imprimer la liste des "
+"options ».%s%s\n"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2228
msgid ""
+"Here is a list of the available printing options for the current printer:\n"
"\n"
-"- Daemon, %s via:\n"
msgstr ""
+"Voici la listes des options d'impression disponibles pour l'imprimante "
+"courante:\n"
"\n"
-"- Démon, %s via:\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "Cuba"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr "Octobre"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Belize"
-msgstr "Belize"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Searching for new printers..."
-msgstr "Recherche de nouvelles imprimantes..."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
-msgstr " (multisession)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Kernel Boot Timeout"
-msgstr "Délai d'amorçage du noyau"
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, 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."
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
msgstr ""
-"Votre carte vidéo peut utiliser l'accélération 3D matérielle mais\n"
-"uniquement en utilisant XFree %s.\n"
-"Votre carte vidéo est supportée par XFree %s. Ce dernier peut être plus\n"
-"performant en 2D."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Activate/Disable daily security check."
-msgstr " Activer/Désactiver les vérifications quotidiennes de sécurité."
+"Pour imprimer un fichier depuis la ligne de commande (une fenêtre de "
+"terminal), utilisez la commande « %s <fichier>».\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr "\t-celle sur CDR.\n"
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
+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 ""
+"Cette commande peut également être utilisée dans le champ « commande "
+"d'impression » des boîtes de dialogue d'impression dans de nombreuses "
+"applications. Dans ce cas, n'indiquez pas le nom du fichier à imprimer "
+"puisque celui-ci sera fourni par l'application elle-même.\n"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
-msgstr "Activer la bibliothèque libsafe si elle est présente sur le système"
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
+msgid ""
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
+msgstr ""
+"Pour obtenir la liste des paramètres disponibles pour l'imprimante courante, "
+"cliquez sur le bouton « liste des options d'impression »."
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2253
#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "L'assistant de partitionnement a trouvé les solutions suivantes :"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
+msgstr ""
+"Pour imprimer un fichier depuis la ligne de commande (une fenêtre de "
+"terminal), utilisez la commande « %s <fichier> » ou « %s <fichier> ».\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "Hongrois"
+#: ../../printer/printerdrake.pm_.c:2257
+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 ""
+"Vous pouvez également utiliser l'interface graphique « xpdq » pour "
+"positionner des options d'impression et administrer les travaux "
+"d'impression.\n"
+"Si vous utiliser le bureau KDE, vous disposez d'un « bouton panique », une "
+"icône sur le bureau, nommé « STOP Imprimante ! », qui peut suspendre tous "
+"les travaux d'impression. Ceci peut être utile en cas de bourrage papier, "
+"par exemple.\n"
-#: ../../network/isdn.pm:1
+#: ../../printer/printerdrake.pm_.c:2261
#, c-format
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"\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 ""
-"Veuillez choisir votre fournisseur d'accès.\n"
-"S'il ne figure pas dans la liste, choisissez « Non listé »."
+"\n"
+"Les commandes « %s » et « %s » permettent également de modifier les "
+"paramètres d'impression pour une impression particulière. Il suffit pour "
+"cela d'ajouter les paramètres voulus sur la ligne de commande, par exemple "
+"« %s <fichier> ».\n"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2271
#, c-format
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Synchronisation automatique de l'horloge (via NTP)"
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Impression/Acquisition/Cartes photo sur « %s »"
-#: ../../network/adsl.pm:1
+#: ../../printer/printerdrake.pm_.c:2272
#, c-format
-msgid "Use my Windows partition"
-msgstr "Utiliser ma partition Windows"
+msgid "Printing/Scanning on \"%s\""
+msgstr "Impression/Acquisition sur l'imprimante « %s »"
-#: ../../Xconfig/card.pm:1
+#: ../../printer/printerdrake.pm_.c:2274
#, c-format
-msgid "8 MB"
-msgstr "8 Mo"
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Impression/Accès aux cartes photos sur « %s »"
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:2275
#, c-format
-msgid "LDAP Server"
-msgstr "Serveur LDAP"
+msgid "Printing on the printer \"%s\""
+msgstr "Impression sur l'imprimante « %s »"
-#: ../../services.pm:1
-#, 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."
-msgstr ""
-"PCMCIA permet d'utiliser des périphériques PCCARD comme des cartes Ethernet "
-"ou des modems avec des ordinateurs portables. Ce service ne sera pas démarré "
-"à moins qu'il soit correctement configuré. Il peut donc être activé sans "
-"danger sur des machines ne possédant pas ce type de périphériques."
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+msgid "Close"
+msgstr "Fermer"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Choose your country"
-msgstr "Choisissez votre pays"
+#: ../../printer/printerdrake.pm_.c:2281
+msgid "Print option list"
+msgstr "Liste des options d'impression"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:2301
#, 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"
-"- System Files:\n"
+"Do not use \"scannerdrake\" for this device!"
msgstr ""
+"Votre appareil multifonction HP a été configuré automatiquement pour être "
+"capable de scanner. Maintenant vous pouvez scanner avec "
+"« scanimage » ( « scanimage -d hp:%s » pour spécifier le scanner si vous en "
+"avez plus d'un) à partir de la ligne de commande, ou avec des interfaces "
+"graphiques comme « xscanimage » ou « xsane ». Si vous utilisez « Le Gimp », "
+"vous pouvez aussi scanner grace au menu « Fichier / Acquisition ». Pour "
+"avoir plus d'information, vous pouvez taper « man scanimage » dans une "
+"fenêtre de commandes.\n"
"\n"
-"- Fichiers système :\n"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
-msgstr "Outils autonomes"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Where"
-msgstr "Où..."
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "but not matching"
-msgstr "mais ne contenant pas"
+"N'utilisez pas « scannerdrake » pour cet appareil ! "
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2322
msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
+"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 ""
-"Vous pouvez sélectionner ici un pilote alternatif (OSS ou ALSA) pour votre "
-"carte son (%s)"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Configuration des cartes PCMCIA..."
-
-#: ../../common.pm:1
-#, c-format
-msgid "kdesu missing"
-msgstr "le programme « kdesu » est introuvable"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
-msgstr "%s: %s nécessite un nom d'utilisateur...\n"
+"Votre imprimante HP a été configurée automatiquement pour vous donner accès "
+"aux lecteurs de carte mémoire à partir de votre PC. Maintenant vous pouvez "
+"accéder à vos cartes en utilisant le programme graphique "
+"« MtoolsFM » (Menu : « Applications » -> « Outils fichiers » -> "
+"« gestionnaire de fichiers MTools ») ou le programme en ligne de commande "
+"mtools (tapez « man mtools » pour plus d'infos). Vous accéderez à la carte "
+"par le lecteur ayant la lettre « p: », ou une autre lettre si vous avez plus "
+"d'un appareil de ce type. Dans « MtoolsFM » vous pouvez commuter entre "
+"plusieurs lecteurs grâce au champ situé dans le coin supérieur droit de la "
+"liste de fichiers."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
-msgstr "Clef de chiffrement"
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+msgid "Reading printer data..."
+msgstr "Lecture des données de l'imprimante..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+msgid "Transfer printer configuration"
+msgstr "Transfert de la configuration de l'imprimante"
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm_.c:2365
#, 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."
+"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 ""
-"Ce paramètre sera activé après l'installation.\n"
-"Pendant l'installation, vous devrez utiliser la touche \"Ctrl\" droite\n"
-"pour commuter entre les différentes configurations du clavier."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
-msgstr "Île Christmas"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Automatic"
-msgstr "Automatique"
+"Vous pouvez copier la configuration de l'imprimante faite pour le "
+"gestionnaire %s vers votre gestionnaire actuel %s. Toutes les données de "
+"configuration (nom de l'imprimante, description, emplacement, type de "
+"connexion, et paramètres par défaut) sont récupérées, mais les travaux ne "
+"seront pas transférés.\n"
+"Toutes les files d'attente n'ont pas pu être transférées à cause des raisons "
+"suivantes :\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
+#: ../../printer/printerdrake.pm_.c:2368
+msgid ""
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
msgstr ""
-"L'installation du programme d'amorçage a échoué pour la raison suivante :"
+"CUPS ne supporte pas les imprimantes sur les serveurs Novell ni les "
+"impressions vers des commandes shell.\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "EIDE/SCSI channel"
-msgstr "Nappe EIDE/Canal SCSI"
+#: ../../printer/printerdrake.pm_.c:2370
+msgid ""
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
+msgstr ""
+"PDQ ne supporte que les imprimantes locales, les imprimantes LPD distantes, "
+"et les imprimantes réseau autonomes.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Set this printer as the default"
-msgstr "Choisir comme imprimante par défaut"
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr "LPD et LPRng ne supportent pas les imprimantes IPP.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Verify that %s is the correct path"
-msgstr "Vérifiez que %s est le bon chemin"
+#: ../../printer/printerdrake.pm_.c:2374
+msgid ""
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
+msgstr ""
+"De plus, les files d'attente qui n'ont pas été créées avec ce programme ou "
+"avec «foomatic-configure» ne peuvent pas être transférées."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "partition %s"
+#: ../../printer/printerdrake.pm_.c:2375
+msgid ""
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
+msgstr ""
+"\n"
+"Aussi, les imprimantes configurées avec les fichiers PPD fournis par leur "
+"fabriquant ou avec des pilotes CUPS natifs ne peuvent pas être transférées."
-#: ../../security/level.pm:1
-#, c-format
-msgid "Paranoid"
-msgstr "Paranoïaque"
+#: ../../printer/printerdrake.pm_.c:2376
+msgid ""
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
+msgstr ""
+"\n"
+"Cochez les imprimantes que vous voulez transférer, et\n"
+"cliquez sur « Transfert »."
-#: ../../any.pm:1
-#, c-format
-msgid "NIS"
-msgstr "NIS"
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
+msgstr "Ne pas transférer les imprimantes"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Del User"
-msgstr "<-- Effacer un utilisateur"
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
+msgstr "Transfert"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:2392
#, c-format
-msgid "Location on the bus"
-msgstr "Position sur le bus"
+msgid ""
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
+msgstr ""
+"Une imprimante nommée « %s » existe déjà sous %s.\n"
+"Cliquez sur « Transfert » pour la remplacer.\n"
+"Vous pouvez également taper un nouveau nom ou\n"
+"simplement ignorer cette imprimante."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No printer found!"
-msgstr "Aucune imprimante trouvée !"
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr ""
+"Le nom de l'imprimante ne devrait contenir que des lettres, des nombres et "
+"des tirets bas (_)"
-#: ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
-msgid "the vendor name of the device"
-msgstr "le nom du vendeur de ce périphérique"
+msgid ""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
+msgstr ""
+"L'imprimante « %s » existe déjà,\n"
+"souhaitez-vous vraiment écraser sa configuration ?"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Erase entire disk"
-msgstr "Effacer tout le disque"
+#: ../../printer/printerdrake.pm_.c:2413
+msgid "New printer name"
+msgstr "Nouveau nom de l'imprimante"
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid " (Default)"
-msgstr " (Défaut)"
+msgid "Transferring %s..."
+msgstr "Transfert de %s..."
-#: ../../standalone/drakgw:1
+#: ../../printer/printerdrake.pm_.c:2427
#, c-format
-msgid "Automatic reconfiguration"
-msgstr "Reconfiguration automatique"
+msgid ""
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
+msgstr ""
+"Vous avez transféré votre précédente imprimante par défaut (« %s »). Doit-"
+"elle être également l'imprimante par défaut de votre nouveau système "
+"d'impression %s ?"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Receiving Speed:"
-msgstr "Vitesse de réception :"
+#: ../../printer/printerdrake.pm_.c:2437
+msgid "Refreshing printer data..."
+msgstr "Mise à jour des données de l'imprimante..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
-msgstr "Îles Turks et Caïcos"
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+msgid "Configuration of a remote printer"
+msgstr "Configuration d'une imprimante distante"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Ip"
-msgstr "Pas d'IP"
+#: ../../printer/printerdrake.pm_.c:2446
+msgid "Starting network..."
+msgstr "Démarrage du réseau..."
-#: ../../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
-#, c-format
-msgid "<- Previous"
-msgstr "<- Précédent"
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+msgid "Configure the network now"
+msgstr "Configurez le réseau maintenant"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Transfer Now"
-msgstr "Transfert Maintenant"
+#: ../../printer/printerdrake.pm_.c:2480
+msgid "Network functionality not configured"
+msgstr "Les fonctionnalités du réseau ne sont pas configurées"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password and network authentication methods"
+#: ../../printer/printerdrake.pm_.c:2481
+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 ""
-"Paramétréz le mot de passe root et les méthodes authentification réseau"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Toggle between flat and group sorted"
-msgstr "Basculer entre tri alphabétique et tri par groupes"
+"Vous êtes sur le point de configurer une imprimante distante. Cela nécessite "
+"un accès au réseau, mais votre réseau n'est pas encore configuré. Si vous "
+"voulez continuer sans configurer le réseau, vous ne pourez pas utiliser "
+"l'imprimante que vous êtes en train de configurer. Que souhaitez-vous faire ?"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Themes"
-msgstr "Thèmes"
+#: ../../printer/printerdrake.pm_.c:2484
+msgid "Go on without configuring the network"
+msgstr "Continuer sans configurer le réseau"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "Options : %s"
+#: ../../printer/printerdrake.pm_.c:2518
+msgid ""
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
+"L'interface réseau qui a été configurée pendant l'installation ne peut pas "
+"être démarrée maintenant. Veuillez vérifier si votre réseau est activé après "
+"démarrage. Démarrez le « Centre de Contrôle Mandrake », vérifiez la "
+"configuration dans la section « réseau et internet / connexion ». Puis "
+"essayez à nouveau de configurer l'imprimante dans la section « Matériel / "
+"Imprimante »."
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2519
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
+"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 ""
-"Le choix du système d'exploitation est actuellement géré par %s.\n"
-"Vous pouvez ici modifier la liste du menu d'amorçage."
+"L'accès réseau n'a pas pu être démarré. Veuillez vérifier la configuration "
+"de votre matériel et de votre accès réseau grâce au « Centre de Contrôle "
+"Mandrake » puis essayez à nouveau de configurer l'imprimante distante."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "OKI winprinter configuration"
-msgstr "Configuration de l'imprimante OKI winprinter"
+#: ../../printer/printerdrake.pm_.c:2529
+msgid "Restarting printing system..."
+msgstr "Redémarrage du système d'impression..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
-msgstr "Sainte-Hélène"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "high"
+msgstr "élevé"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Parallel port #%s"
-msgstr "Port parallèle %s"
+#: ../../printer/printerdrake.pm_.c:2568
+msgid "paranoid"
+msgstr "paranoïaque"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid "Security Level"
-msgstr "Niveau de sécurité"
+msgid "Installing a printing system in the %s security level"
+msgstr "Installation du système d'impression sous le niveau de sécurité « %s »"
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2570
#, c-format
msgid ""
-"Some steps are not completed.\n"
+"You are about to install the printing system %s on a system running in the %"
+"s security level.\n"
"\n"
-"Do you really want to quit now?"
+"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 ""
-"Certaines étapes ne sont pas terminées.\n"
+"Vous êtes sur le point d'installer le système d'impression %s sur un système "
+"dont le niveau de sécurité est réglé sur « %s ».\n"
"\n"
-"Souhaitez-vous vraiment quitter maintenant ?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "Soudan"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
-msgstr "Polonais (QWERTZ)"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
-msgstr "Syrie"
+"Ce système d'impression écoute en permanence le réseau afin de répondre aux "
+"requêtes d'impression. Ceci se fait grâce à un processus (daemon) qui tourne "
+"en tâche de fond et qui est accessible par les autres machines du réseau. "
+"C'est donc une cible possible pour des attaques réseau éventuelles. C'est "
+"pourquoi le minimum possible de « daemons » doivent être démarrés dans ce "
+"niveau de sécurité.\n"
+"\n"
+"Souhaitez-vous réellement installer un système d'impression ?"
-#: ../../printer/printerdrake.pm:1
-#, 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?"
-msgstr ""
-"Votre imprimante est-elle un périphérique multifonction de HP ou Sony "
-"(OfficeJet, PSC, LaserJet 1100/1200/1220/3200/3300 avec scanner, DeskJet "
-"450, Sony IJP-V100), un HP PhotoSmart ou un HP LaserJet 2200 ?"
+#: ../../printer/printerdrake.pm_.c:2604
+msgid "Starting the printing system at boot time"
+msgstr "Activation du système d'impression au démarrage"
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
+#: ../../printer/printerdrake.pm_.c:2605
#, c-format
msgid ""
-"Welcome to %s the operating system chooser!\n"
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\n"
"\n"
-"Choose an operating system from the list above or\n"
-"wait %d seconds for default boot.\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 ""
-"Bienvenue dans %s, le chargeur de systemes d'exploitation.\n"
+"Le système d'impression (%s) ne sera pas activé automatiquement lors du "
+"démarrage de la machine.\n"
"\n"
-"Choisissez un systeme d'exploitation dans la liste ci-dessus.\n"
-"-- Demarrage automatique dans %d secondes.\n"
+"Il est possible que l'activation automatique ait été supprimée par "
+"l'utilisation d'un plus grand niveau de sécurité, car les systèmes "
+"d'impression sont des cibles potentielles d'attaque.\n"
"\n"
+"Souhaitez-vous rétablir l'activation automatique du système d'impression ?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
-msgstr "Portugais"
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
+msgstr "Vérification du logiciel installé..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
-msgstr "Nom du fichier de bouclage :"
+#: ../../printer/printerdrake.pm_.c:2630
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "Suppression de %s"
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr ""
-"L'adresse du DNS doit ressembler à quelque chose comme « 192.168.1.20 »"
+#: ../../printer/printerdrake.pm_.c:2636
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "Installation des paquetages..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Control key"
-msgstr "Touche Contrôle gauche"
+#: ../../printer/printerdrake.pm_.c:2685
+msgid "Select Printer Spooler"
+msgstr "Choisissez le gestionnaire d'impression"
-#: ../../lang.pm:1
-#, c-format
-msgid "Serbia"
-msgstr "Serbie"
+#: ../../printer/printerdrake.pm_.c:2686
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Quel système d'impression désirez-vous utiliser ?"
-#: ../../standalone/drakxtv:1
+#: ../../printer/printerdrake.pm_.c:2720
#, c-format
-msgid "Newzealand"
-msgstr "Nouvelle Zélande"
+msgid "Configuring printer \"%s\"..."
+msgstr "Configuration en cours de l'imprimante « %s »..."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
-msgstr "Ce dossier doit rester dans la partition racine"
+#: ../../printer/printerdrake.pm_.c:2731
+msgid "Installing Foomatic..."
+msgstr "Installation de Foomatic ..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
-msgstr "par réseau"
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr "Options de l'imprimante"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
-msgstr "Touche CapsLock (verrouillage majuscule)"
+#: ../../printer/printerdrake.pm_.c:2810
+msgid "Preparing Printerdrake..."
+msgstr "Préparation de PrinterDrake..."
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "Programme d'amorçage"
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+msgid "Configuring applications..."
+msgstr "Configuration des applications...."
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr ""
-"Veuillez préciser la quantité de mémoire vidéo de votre carte graphique"
+#: ../../printer/printerdrake.pm_.c:2845
+msgid "Would you like to configure printing?"
+msgstr "Désirez-vous configurer l'impression ?"
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Enable/Disable crontab and at for users.\n"
-"\n"
-"Put allowed users in /etc/cron.allow and /etc/at.allow (see man at(1)\n"
-"and crontab(1))."
-msgstr ""
-"Active/Désactive les travaux planifiés (crontab et at) pour les\n"
-"utilisateurs.\n"
-"\n"
-"Mettre les utilisateurs autorisés dans /etc/cron.allow et\n"
-"/etc/at.allow (voir les pages de manuel at(1) et crontab(1)."
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
+msgstr "Système d'impression : "
-#: ../../standalone.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2915
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."
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
-"[OPTIONS]\n"
-"Application de surveillance et de connexion réseau et internet\n"
-"\n"
-"--defaultintf interface : montre cette interface par défaut\n"
-"--connect : se connecte à Internet (si non connecté)\n"
-"--disconnect : se déconnecte d'Internet (si connecté)\n"
-"--force : utilisé avec l'option (dis)connect : force la (dé)connexion.\n"
-"--status : retourne 1 si connecté, 0 sinon, puis quitte.\n"
-"--quiet : non interactif. À utiliser avec l'option (dis)connect."
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
-msgstr "Plages d'adresses IP dynamiques"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "Nom LVM ?"
-
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr "Certains matériels listés dans la classe « %s » ont été enlevés :\n"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Interface(s) détectée(s) : %s %s"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Post Install"
-msgstr "Post-installation"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The internal domain name"
-msgstr "Le nom de domaine international"
+"Les imprimantes suivantes sont configurées. Double-cliquez sur l'une d'entre "
+"elles pour modifier ses paramètres, en faire l'imprimante par défaut, "
+"consulter les informations à son propos ou pour rendre une imprimante d'un "
+"serveur CUPS distant utilisable par Star Office/OpenOffice.org/GIMP."
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "n° IRQ de la carte"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "logdrake"
-
-#: ../../standalone.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2916
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."
+"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 ""
-"Application de gestion et d'importation de polices de "
-"caratères \n"
-"--windows_import : importe à partir de toutes les partitions Windows "
-"disponibles.\n"
-"--xls_fonts : montre toutes les polices déjà existante par xls\n"
-"--strong : vérification forte de la fonte.\n"
-"--install : accepte tout fichier et tout dossier pour les polices.\n"
-"--uninstall : désinstalle toute police ou tout dossier pour les "
-"polices.\n"
-"--replace : remplace les polices existantes\n"
-"--application : 0 : aucune application.\n"
-" : 1 : toute application disponible supportée.\n"
-" : nom_application : pour par exemple staroffice, \n"
-" : ou gs pour ghostscript (pour 1 appli)."
-
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+"Les imprimantes suivantes sont configurées. Cliquez sur l'une d'entre elles "
+"pour modifier ses paramètres, en faire l'imprimante par défaut ou consulter "
+"les informations à son propos."
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-"Choisissez le lecteur de disquette à utiliser pour\n"
-"créer votre disquette d'amorçage."
-
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr "LILO en mode texte"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
-msgstr "instantané"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Tout (pas de firewall)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
-msgstr "Vous devez spécifier l'image noyau désirée"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
-msgstr ", périphérique USB multifonction"
+"Rafraîchir la liste des imprimantes (pour afficher toutes les imprimantes "
+"CUPS distantes)"
-#: ../../interactive/newt.pm:1
-#, c-format
-msgid "Do"
-msgstr "Faire"
+#: ../../printer/printerdrake.pm_.c:2960
+msgid "Change the printing system"
+msgstr "Changer le système d'impression"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Téléchargement de la liste des paquetages disponibles..."
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+msgid "Normal Mode"
+msgstr "Mode normal"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lituanien (AZERTY, ancien modèle)"
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+msgid "Do you want to configure another printer?"
+msgstr "Désirez-vous configurer une autre imprimante ?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
-msgstr "Brésilien"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
-msgstr "Adresse IP de l'hôte/réseau :"
+#: ../../printer/printerdrake.pm_.c:3211
+msgid "Modify printer configuration"
+msgstr "Modifier la configuration de l'imprimante"
-#: ../../standalone/draksplash:1
+#: ../../printer/printerdrake.pm_.c:3213
#, c-format
msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
-"coordonnées y du coin supérieur gauche\n"
-"de la barre de progression"
+"Imprimante %s\n"
+"Que souhaitez-vous modifier sur cette imprimante ?"
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System installation"
-msgstr "Installation du système"
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
+msgstr "Faire"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint-Vincent-et-les-Grenadines"
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+msgid "Printer connection type"
+msgstr "Type de connexion"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid reboot by the console user."
-msgstr ""
-"Activer/Désactiver le redémarrage du système par l'utilisateur de la console."
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+msgid "Printer name, description, location"
+msgstr "Nom, description, emplacement"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Open"
-msgstr "/Fichier/_Ouvrir"
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
+msgstr "Marque, modèle, pilote"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "Emplacement du fichier auto_install.cfg"
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
+msgstr "Marque, modèle"
-#: ../../any.pm:1
-#, c-format
-msgid "Open Firmware Delay"
-msgstr "Délai de l'Open Firmware"
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
+msgstr "Choisir comme imprimante par défaut"
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
-msgstr "Hongrie"
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Ajouter cette imprimante à StarOffice/OpenOffice"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Zealand"
-msgstr "Nouvelle-Zélande"
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Retirer cette imprimante de StarOffice/OpenOffice"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Color configuration"
-msgstr "Configuration des couleurs"
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+msgid "Print test pages"
+msgstr "Imprimer des pages de test"
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
-"Il y a déjà des restrictions, et des vérifications automatiques sont "
-"effectuées chaque nuit."
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+msgid "Know how to use this printer"
+msgstr "Savoir comment utiliser cette imprimante"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "please choose the date to restore"
-msgstr "Veuillez choisir la date à restaurer"
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+msgid "Remove printer"
+msgstr "Désinstaller l'imprimante"
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:3282
#, c-format
-msgid "Netherlands Antilles"
-msgstr "Antilles néerlandaises"
+msgid "Removing old printer \"%s\"..."
+msgstr "Désinstallation de l'ancienne imprimante « %s »..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
-msgstr "Passage de ext2 à ext3"
+#: ../../printer/printerdrake.pm_.c:3307
+msgid "Default printer"
+msgstr "Imprimante par défaut"
-#: ../../printer/data.pm:1
+#: ../../printer/printerdrake.pm_.c:3308
#, c-format
-msgid "LPRng"
-msgstr "LPRng"
+msgid "The printer \"%s\" is set as the default printer now."
+msgstr "L'imprimante « %s » est maintenant celle par défaut."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
-msgstr "Naviguer dans le nouvel emplacement de sauvegarde."
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "Ajout de l'imprimante à StarOffice/OpenOffice"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3312
#, c-format
msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
-msgstr ""
-"\n"
-"Bienvenue dans l'Assistant de Configuration d'Imprimante\n"
-"\n"
-"Cet assistant permet de configurer des imprimantes locales ou réseau afin "
-"d'être utilisées à partir de cette machine ainsi que des autres machines du "
-"réseau.\n"
-"\n"
-"Toutes les informations nécessaires pour configurer l'imprimante vous seront "
-"demandées; vous aurez également accès à tous les pilotes d'imprimantes "
-"disponibles ainsi qu'à toutes leurs options et à tous les types de connexion."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+msgstr "L'imprimante « %s » a été ajoutée avec succès à StarOffice/OpenOffice"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3313
#, c-format
-msgid "and %d unknown printers"
-msgstr "et %d imprimantes inconnues"
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgstr "Impossible d'ajouter l'imprimante « %s » à StarOffice/OpenOffice"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the required precision when performing a "
-"Floating point DIVision (FDIV)"
-msgstr ""
-"Les premiers Pentium produits ont un bogue dans leur unité de calcul en "
-"nombres flottants qui empêche d'avoir la précision nécessaire lors d'une "
-"opération de division en flottants (FDIV)."
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "Retrait de l'imprimante de StarOffice/OpenOffice"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:3317
#, c-format
msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
-msgstr ""
-"Quota de sauvegarde dépassé !\n"
-"%d Mo utilisés contre %d Mo alloués."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr ""
-"Aucune carte RNIS/ISDN identifiée. Veuillez en sélectionner une dans le\n"
-"prochain écran."
-
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
-msgstr "Go"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
-msgstr "Veuillez taper un nom d'utilisateur"
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
+msgstr "L'imprimante « %s » a été retirée avec succès de StarOffice/OpenOffice"
-#: ../../any.pm:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
-msgid "Enable CD Boot?"
-msgstr "Autoriser le démarrage sur CD ?"
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+msgstr "Impossible de retirer l'imprimante « %s » de StarOffice/OpenOffice"
-#: ../../../move/move.pm:1
+#: ../../printer/printerdrake.pm_.c:3325
#, c-format
-msgid "Simply reboot"
-msgstr "Seulement redémarrer"
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Désirez-vous vraiment désinstaller l'imprimante « %s »?"
-#: ../../interactive/stdio.pm:1
+#: ../../printer/printerdrake.pm_.c:3329
#, c-format
-msgid " enter `void' for void entry"
-msgstr "Saisissez `void' pour une entrée vide"
+msgid "Removing printer \"%s\"..."
+msgstr "Suppression de l'imprimante « %s »..."
-#: ../../standalone/drakbackup:1
+#: ../../raid.pm_.c:35
#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
+msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr ""
-"Sauvegardes sur supports non montables - Utilisez le Catalogue pour "
-"restaurer."
+"Impossible d'ajouter une partition au RAID md%d car\n"
+"celui-ci est déjà formaté"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
-msgstr "Janvier"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
+msgstr "« mkraid » a échoué"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Password history length"
-msgstr "Taille de l'historique des mots de passe"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "« mkraid » a échoué (les « raidtools » sont-ils installés ?)"
-#: ../../network/netconnect.pm:1
+#: ../../raid.pm_.c:153
#, c-format
-msgid "Winmodem connection"
-msgstr "Connexion par winmodem"
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "Trop peu de partitions pour du RAID de niveau %d\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../security/main.pm_.c:36
msgid ""
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
"\n"
-"Congratulations, your printer is now installed and configured!\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\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."
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
+"\n"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
+"Standard : Ceci est le niveau standard de sécurité recommandé pour un "
+"ordinateur devant se connecter à Internet en tant que client.\n"
"\n"
-"Félicitation, votre imprimante est maintenant installée et configurée.\n"
+"Elevée : Quelques restrictions en plus, et chaque nuit divers contrôles sont "
+"exécutés.\n"
"\n"
-"Vous pouvez imprimer en utilisant la commande « imprimer » de vos\n"
-"applications (souvent dans le menu « fichier »).\n"
+"Plus élevée : La sécurité est ici suffisante pour utiliser la machine comme "
+"serveur acceptant de multiples connexions. Si votre machine n'est pas "
+"destinée à être serveur sur Internet, un niveau plus bas est approprié.\n"
"\n"
-"Si vous voulez ajouter, enlever ou renommer une imprimante, ou si vous "
-"voulez changer les options par défaut (alimentation papier,qualité "
-"d'impression, etc.), rendez-vous dans la partie « imprimante »de la section "
-"« matériel » du Centre de Contrôle Mandrake."
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr "Maintenant vous pouvez lancer xawtv (sous X-Window) !\n"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr ""
-"La partition d'échange (swap) est insuffisante pour achever l'installation, "
-"veuillez en ajouter."
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "%s on %s"
-msgstr "%s sur %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid remote root login."
-msgstr "Permettre la connexion distante en tant que root"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-"GNU/Linux manipule l'heure au format GMT (« Greenwich Mean Time ») et la\n"
-"convertit en temps local selon le fuseau horaire choisi. Il est néanmoins\n"
-"possible de désactiver cela en désélectionnant « %s » de façon à ce que\n"
-"l'horloge matérielle soit la même que celle du système. Cela est\n"
-"particulièrement utile si la machine accueille un autre système\n"
-"d'exploitation tel que Windows.\n"
+"Panaoïaque : Idem que le précédent, mais le système sera totalement clos et "
+"la sécurité au maximum.\n"
"\n"
-"La « %s » permet de régler l'heure automatiquement en se connectant à un\n"
-"serveur de temps sur Internet. Dans la liste qui est alors présentée,\n"
-"choisissez un serveur géographiquement proche de vous. Vous devez avoir une\n"
-"connexion Internet pour que cela fonctionne bien entendu. Cela installera\n"
-"en fait sur votre machine un serveur de temps local qui pourra, en option,\n"
-"être lui-même utilisé par d'autres machines de votre réseau local."
+"Administreur de Sécurité : Si l'option « Alertes de sécurité » est choisie, "
+"celles-ci seont envoyées à l'utilisateur indiqué (nom ou\n"
+"courriel).\t"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
-msgstr "Ne peut créer le fichier journal !"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Quelle est votre fuseau horaire ?"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Niveau de sécurité:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use .backupignore files"
-msgstr "Utiliser les fichiers .backupignore"
+#: ../../security/main.pm_.c:77
+#, fuzzy, c-format
+msgid " (default value: %s)"
+msgstr " (défaut: %s)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
-msgstr "Guinée"
+#: ../../security/main.pm_.c:113
+msgid "Security Alerts:"
+msgstr "Alertes de sécurité:"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Le système est à présent connecté à Internet."
+#: ../../security/main.pm_.c:115
+msgid "Security Administrator:"
+msgstr "Administrateur sécurité:"
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr "Géorgie du Sud et Îles Sandwich du Sud"
+#: ../../security/main.pm_.c:128
+msgid "Network Options"
+msgstr "Options réseau"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
-msgstr "Japon (hertzien)"
+#: ../../security/main.pm_.c:128
+msgid "System Options"
+msgstr "Options système"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
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."
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
msgstr ""
-"Moniteur\n"
-"\n"
-" Le programme d'installation détecte et configure automatiquement les\n"
-"moniteurs connectés à votre unité centrale. Si ce n'est pas le cas, vous\n"
-"pouvez choisir dans cette liste le moniteur que vous utilisez\n"
-"effectivement."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "Mozambique"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "Icône"
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Kill those programs"
-msgstr "Fermer ces programmes"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please choose what you want to backup"
-msgstr "Veuillez choisir ce que vous voulez sauvegarder"
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 couleurs (8 bits)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "Lecture/écriture"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "Taille : %s\n"
+"Les options suivantes permettent de paramétrer finement votre système de "
+"sécurité.\n"
+"Si vous avez besoin d'explications, cliquez sur le bouton d'aide.\n"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Hostname: "
-msgstr "Nom de machine : "
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Add a rule"
-msgstr "Ajouter une règle"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Taille de bloc %s\n"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
+msgstr "Vérifications périodiques"
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
-msgstr "Construisez le futur de Linux !"
+#: ../../security/main.pm_.c:191
+msgid "Please wait, setting security level..."
+msgstr "Veuillez patienter, configuration du niveau de sécurité..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Local Printer"
-msgstr "Imprimante locale"
+#: ../../security/main.pm_.c:197
+msgid "Please wait, setting security options..."
+msgstr "Veuillez patienter, configuration des options de sécurité..."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
-"Erreur lors de l'accès à la disquette, impossible de monter le périphérique %"
-"s"
-
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr "[--file=monfichier] [--word=monmot] [--explain=regexp] [--alert]"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ADSL connection"
-msgstr "Connexion par ADSL"
+"Démarrage ou arrêt du système sonore ALSA (Advanced Linux Sound "
+"Architecture) Il charge le pilote pour votre carte son, et restaure les "
+"réglages du périphérique de mixage."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
msgstr ""
-"La configuration de sauvegarde n'est pas encore définie. \n"
-"Veuillez cliquer sur « Configuration par assistant », ou « Configuration "
-"manuelle »\n"
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Error!"
-msgstr "Erreur !"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "cable connection detected"
-msgstr "connexion par Câble détectée"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr "Vous n'avez pas le droit de transférer %s vers %s"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Signaler une bogue"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
-msgstr "Dominique"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "Redimensionner"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Résolution : %s\n"
+"Anacron exécute des tâches périodiques avec une précision exprimée en jours. "
+"Les tâches sont exécutées automatiquement au redémarrage de la machine si "
+"elles ont expirés leur délai. Quelques tâches de maintenance quotidiennes et "
+"hebdomadaires sont préconfigurées pour le système Mandrake.(Plus d'infos "
+"dans « man anacron »)"
-#: ../../install2.pm:1
-#, c-format
+#: ../../services.pm_.c:21
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)"
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-"Impossible d'accéder aux modules correspondant à votre noyau (le fichier %s "
-"est manquant), cela veut généralement dire que votre disquette d'amorçage "
-"n'est plus à jour par rapport à votre périphérique d'installation (veuillez "
-"créer une disquette d'amorçage plus récente)"
+"Apmd surveille l'état de la batterie d'un portable, et en garde une trace "
+"(via syslog). Il peut être utilisé pour arrêter proprement la machine "
+"lorsque la batterie est très faible et après avoir averti les utilisateurs."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../services.pm_.c:23
msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+"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 ""
-"Sélectionnez le bon port. Par exemple: l'équivalent du port « COM1 » sur\n"
-"Windows, se nomme « ttyS0 » sous GNU/Linux."
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
-msgstr "Les paquetages suivants vont être désinstallés"
-
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr "Connexion à Internet"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
-msgstr "Utiliser une partition existante"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
-msgstr "Canadien (Québec)"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Périphérique : %s\n"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Reselect correct fonts"
-msgstr "Resélectionnez des polices correctes"
+"Service qui permet de démarrer une tâche à une heure précise. Chaque tâche "
+"doit être créée par la commande « at », puis, a l'heure dite, le service "
+"« atd » lance cette tâche. Par exemple pour éteindre automatiquement la "
+"machine ce soir à 23h59, tapez « at 23:59 » dans une fenêtre de commande, "
+"puis « halt » et <Ctrl-D>."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../services.pm_.c:25
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."
+"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 ""
-"Options\n"
-"\n"
-" Vous pourrez finalement choisir ici de démarrer l'interface graphique au\n"
-"lancement de la machine. Il est préférable de choisir « %s » si vous êtes\n"
-"en train d'installer un serveur, ou si vous n'avez pas réussi à configurer\n"
-"l'écran correctement."
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert Corporate"
+"Cron est un planificateur de tâches. Contrairement à Anacron, les tâches "
+"sont exécutées à des moments précis, pendant lesquels la machine doit être "
+"allumée. « Vixie cron » ajoute des fonctionnalités au « cron » UNIX de base "
+"(notamment une meilleure sécurité et des options de configuration plus "
+"complètes)."
-#: ../../standalone.pm:1
-#, c-format
+#: ../../services.pm_.c:28
msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+"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 ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Write protection"
-msgstr "Protection en écriture"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "You've not selected any font"
-msgstr "Vous n'avez sélectionné aucune police"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Language"
-msgstr "Choix de la langue"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer model selection"
-msgstr "Sélection du modèle de l'imprimante"
+"GPM permet d'utiliser la souris dans des applications fonctionnant en mode "
+"texte dans la console (comme par exemple Midnight Commander) . Il permet "
+"également d'utiliser le copier-coller et inclut le support des menus "
+"contextuels sur la console."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:31
msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
msgstr ""
-"Après avoir modifié le type de la partition %s, toutes les données\n"
-"présentes sur cette partition seront perdues."
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "ISDN adapters"
-msgstr "Cartes RNIS"
+"HardDrake effectue une détection matérielle, et configure éventuellement le "
+"nouveau matériel."
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d secondes"
+#: ../../services.pm_.c:33
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+msgstr ""
+"Apache est un serveur web (HTTP). Il est utilisé pour faire fonctionner un "
+"site internet."
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Insérez une disquette vierge dans le lecteur %s"
+#: ../../services.pm_.c:34
+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 ""
+"Le métaserveur « inetd » sert à démarrer automatiquement les autres serveurs "
+"réseau lorsqu'une requête est détectée. Il est notamment responsable du "
+"démarrage des serveurs telnet, ftp, rsh et rlogin, etc. Le désactiver "
+"revient à désactiver tous les services qu'il gère."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr "Une adresse valide doit être entrée !"
+#: ../../services.pm_.c:38
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
+"Démarre le filtrage des paquets réseau pour la série 2.2 des noyaux Linux, "
+"afin de mettre en place un pare-feu (firewall) pour protéger votre machine "
+"des attaques réseau. "
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr "Interface trouvée : « %s ». Voulez-vous l'utiliser ?"
+#: ../../services.pm_.c:40
+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 ""
+"Ce paquetage active la disposition de clavier défini dans le fichier /etc/"
+"sysconfig/keyboard. Cette disposition peut être modifiée en utilisant "
+"l'outil kbdconfig. Ce service devrait être activé sur la plupart des "
+"machines."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Re-configure interface and DHCP server"
-msgstr "Reconfigurer l'interface et le serveur DHCP"
+#: ../../services.pm_.c:43
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
+msgstr ""
+"Régénération automatique des fichiers d'en-têtes pour le noyau\n"
+"dans le répertoire /boot pour /usr/include/linux/{autoconf,version}.h"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound configuration"
-msgstr "Configuration du son"
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr "Détection automatique et configuration du matériel au démarrage."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
-msgstr "Page de test photo"
+#: ../../services.pm_.c:46
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
+msgstr ""
+"Linuxconf effectue certaines tâches au démarrage afin de maintenir la "
+"configuration du système."
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Custom disk partitioning"
-msgstr "Partitionnement personnalisé"
+#: ../../services.pm_.c:48
+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 ""
+"Lpd est le serveur d'impression nécessaire au bon fonctionnement de la "
+"commande lpr. Il permet gérer les files d'attente et les demandes "
+"d'impression."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr "Entrez un nom d'imprimante et un commentaire."
+#: ../../services.pm_.c:50
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
+"Activation / désactivation du Linux Virtual Server, qui est un service "
+"utilisé pour créer un serveur virtuel haute-performance et haute "
+"disponibilité, composé d'un ensemble de serveur linux reliés entre eux."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:52
msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
msgstr ""
-"Les imprimantes suivantes :\n"
-"\n"
-"%s%s\n"
-"sont connectées directement à votre système."
+"Named (BIND) est un Serveur de Noms de Domaine (DNS) qui est utilisé pour "
+"convertir les adresses internet en adresses IP. (Il est principalement mis "
+"en place par les fournisseur d'accès)"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "You don't have any winmodem"
-msgstr "Vous n'avez pas de winmodem"
+#: ../../services.pm_.c:53
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
+msgstr ""
+"Effectue la connexion ou la déconnexion (montage et démontage) vers les "
+"systèmes de fichiers distants ou répertoires partagés de type NFS (Unix), "
+"SMB (Windows), et NCP (Netware) que vous avez configurés. (Pour NFS et SMB, "
+"voir le « Centre de contrôle Mandrake », dans la section « matériel / "
+"points de montage »)"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: %s"
-msgstr "type : %s"
+#: ../../services.pm_.c:55
+msgid ""
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
+msgstr ""
+"Gestion groupée de toutes les connexions réseau que vous avez configurées et "
+"que vous avez choisi d'activer dès le démarrage du système. (par ex. vos "
+"connexions pour le réseau local et l'ADSL ou le Cable). Vous pouvez accéder "
+"séparément à vos interfaces réseau grâce au « Centre de Contrôle Mandrake » "
+"dans la section « Internet et réseau »."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "Slovaque (QWERTY)"
+#: ../../services.pm_.c:57
+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 ""
+"Démarrage ou arrêt du serveur NFS. Un serveur NFS permet d'effectuer un "
+"partage de fichiers en ouvrant l'accès à certains répertoires depuis un "
+"réseau. Les répertoires partagés sont listés dans le fichier /etc/exports, "
+"mais vous pouvez l'éditer grâce à « linuxconf » dans la section « réseau / "
+"serveur »."
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../services.pm_.c:60
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."
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
msgstr ""
-"Ceci devrait être une liste (séparée par des virgules) d'utilisateurs locaux "
-"ou d'adresses e-mail auxquels vous voulez que soient envoyés les résultats "
-"de sauvegarde. Vous devrez avoir installé sur votre système un logiciel de "
-"transfert de mail (MTA)."
+"Ce service permet le démarrage des fonctionnalités de verrouillage des "
+"fichiers pour NFS, lorsque le noyau ne les a pas démarrées lui-même. Cela "
+"dit les noyaux récents n'en ont pas besoin. Cependant, le service statd est "
+"aussi démarré et sert à avertir les clients distants de l'arrêt du serveur "
+"NFS."
-#: ../../standalone/draksound:1
-#, c-format
-msgid "No Sound Card detected!"
-msgstr "Aucune carte son détectée !"
+#: ../../services.pm_.c:62
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+"Activation de la touche « Verr Num » du pavé numérique du clavier au "
+"démarrage."
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "Port souris"
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr "Support des imprimantes winprinter OKI 4w et compatibles."
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
-msgstr "Rechercher les comptés non sécurisés"
+#: ../../services.pm_.c:65
+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 ""
+"PCMCIA permet d'utiliser des périphériques PCCARD comme des cartes Ethernet "
+"ou des modems avec des ordinateurs portables. Ce service ne sera pas démarré "
+"à moins qu'il soit correctement configuré. Il peut donc être activé sans "
+"danger sur des machines ne possédant pas ce type de périphériques."
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../services.pm_.c:68
msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
+"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 ""
-"Le gestionnaire de connexion doit être redémarré pour que les changements\n"
-"prennent tous effet. (\"service dm restart\" dans une console)"
+"Le portmapper gère les connexions RPC qui sont utilisées par des serveurs "
+"comme NFS et NIS. Le serveur portmap doit être activé sur des machines "
+"jouant le rôle de serveur pour des protocoles utilisant le mécanisme RPC."
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Ftp Server"
-msgstr "Serveur FTP"
+#: ../../services.pm_.c:71
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
+msgstr ""
+"Postfix est un agent de transport du courrier (Mail Transport Agent - MTA) "
+"permettant l'échange de courriers électroniques entre machines."
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr "Ouganda"
+#: ../../services.pm_.c:72
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
+"Sauvegarde et restaure l'entropie du système pour une meilleure génération "
+"de nombres aléatoires. (utile par exemple pour la création de clefs de "
+"cryptographie)"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
-msgstr "Conversion des polices « %s »"
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
+msgstr ""
+"Permet de faire apparaître des périphériques de type bloc (par ex. "
+"partitions de disque dur) comme des périphériques bruts à accès direct (raw "
+"devices). Les correspondances sont établies dans le fichier /etc/sysconfig/"
+"rawdevices, et c'est la commande « raw » qui est utilisée. Cela peut être "
+"utilisé par des bases de données comme Oracle."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "le type de bus sur lequel la souris est connectée"
+#: ../../services.pm_.c:76
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
+msgstr ""
+"Le service routed permet la mise à jour automatique des tables de routage IP "
+"grâce au protocole RIP. Bien que RIP soit très utilisé sur les petits "
+"réseaux, des protocoles de routage plus complets sont nécessaires pour les "
+"réseaux de plus grande taille. "
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../services.pm_.c:79
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."
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
msgstr ""
-"On vous présente ici diverses informations sur la configuration actuelle.\n"
-"Selon le matériel installé, certaines entrées seront présentes et d'autres\n"
-"pas. Chaque paramètre est constitué du nom de la configuration, suivi d'un\n"
-"cours résumé de la configuration actuelle. Cliquez sur le bouton « %s »\n"
-"correspondant pour changer cela.\n"
-"\n"
-" * « %s »: vérifiez la configuration choisie pour le clavier.\n"
-"\n"
-" * « %s »: vérifiez la section du pays. Si vous ne vous trouvez pas dans ce\n"
-"pays, cliquez sur le bouton « %s » et choisissez le bon. Si votre pays ne\n"
-"se trouve pas dans la première liste, cliquez sur « %s » pour avoir la\n"
-"liste complète.\n"
-"\n"
-" * « %s »: DrakX, par défaut, configure le fuseau horaire selon le pays\n"
-"dans lequel vous êtes.\n"
-"\n"
-" * « %s »: pour vérifier la configuration actuelle de la souris. Cliquez\n"
-"sur le bouton pour modifier les options.\n"
-"\n"
-" * « %s »: en cliquant sur « %s », l'outil de configuration d'impression\n"
-"sera démarré. Consultez le chapitre correspondant du « Guide de démarrage »\n"
-"pour plus de renseignements. L'interface qui y est documentée est similaire\n"
-"à celle rencontrée lors de l'installation.\n"
-"\n"
-" * « %s » : si une carte son a été détectée, elle apparaîtra ici. Si vous\n"
-"remarquez que la carte configurée n'est pas celle qui se trouve\n"
-"effectivement sur votre système, vous pouvez cliquer sur le bouton pour en\n"
-"choisir une autre.\n"
-"\n"
-" * « %s » : par défaut, DrakX configure votre interface graphique avec une\n"
-"résolution de « 800x600 » ou « 1024x768 ». Si cela ne vous convient pas,\n"
-"cliquez sur « %s » pour changer la configuration de votre interface\n"
-"graphique.\n"
-"\n"
-" * « %s » : si une carte d'entrée/sortie vidéo (carte TV) a été détectée,\n"
-"elle apparaîtra ici. Si vous avez une carte TV et qu'elle n'a pas été\n"
-"détectée, cliquez sur ce bouton pour la configurer à la main.\n"
-"\n"
-" * « %s » : si une carte RNIS (ISDN) est détectée, elle apparaîtra ici.\n"
-"Vous pouvez cliquer sur le bouton pour en modifier les paramètres.\n"
-"\n"
-" * « %s » : Si vous souhaitez configurer votre accès Internet ou réseau\n"
-"local dès maintenant.\n"
-"\n"
-" * « %s »: il vous est ici proposé de redéfinir votre niveau de sécurité\n"
-"tel que défini dans une étape précédente ().\n"
-"\n"
-" * « %s » : si vous avez l'intention de connecter votre ordinateur à\n"
-"Internet, c'est une bonne idée de le protéger des intrusions grâce à un\n"
-"pare-feu. Consultez la section correspondante du « Guide de démarrage »\n"
-"pour plus de renseignements.\n"
-"\n"
-" * « %s » : Si vous souhaitez changer la configuration par défaut de votre\n"
-"chargeur de démarrage. À réserver aux utilisateurs expérimentés.\n"
-"\n"
-" * « %s » : vous pourrez ici contrôler finement les services disponibles\n"
-"sur votre machine. si vous envisagez de monter un serveur, c'est une bonne\n"
-"idée de vérifier cette configuration."
+"Le protocole rstat permet aux utilisateurs sur un même réseau d'obtenir des "
+"mesures de la performance de n'importe quelle machine sur ce réseau."
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
-msgstr "Comores"
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"Le protocole rusers permet aux utilisateurs de connaître tous les "
+"utilisateurs connectés aux machines supportant ce protocole."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "May"
-msgstr "Mai"
+#: ../../services.pm_.c:83
+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 ""
+"Le protocole rwho permet aux utilisateurs distants d'obtenir une liste des "
+"utilisateurs connectés à une machine qui fait tourner le démon rwho "
+"(similaire à finger)."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yaboot mode"
-msgstr "Menu d'amorçage"
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
+msgstr "Démarrer le système de gestion du son sur votre machine."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Souris standard à 3 boutons"
+#: ../../services.pm_.c:86
+msgid ""
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
+msgstr ""
+"Syslog est un service utilisé par beaucoup d'autres services pour "
+"enregistrer des rapports d'activité. C'est une très bonne idée de toujours "
+"l'activer."
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
-msgstr "USA (câble)"
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr "Charger les pilotes pour vos périphériques usb."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+#: ../../services.pm_.c:89
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr ""
-"Impossible de relancer LILO !\n"
-"Lancez « lilo » dans une ligne de commande en étant root pour terminer "
-"l'installation du thème de LILO."
+"Démarre le serveur de polices de caractères, obligatoire pour le "
+"fonctionnement de l'interface graphique (XFree)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select another media to restore from"
-msgstr "Choisir un autre support de sauvegarde"
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
+msgstr ""
+"Choisissez les services à démarrer automatiquement lors du démarrage du "
+"système"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Software Manager"
-msgstr "Gestionnaire de programmes"
+#: ../../services.pm_.c:127
+msgid "Printing"
+msgstr "Impression"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
-msgstr "Revalider"
+#: ../../services.pm_.c:128
+msgid "Internet"
+msgstr "internet"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD in place - continue."
-msgstr "Le CD et en place - continuer."
+#: ../../services.pm_.c:131
+msgid "File sharing"
+msgstr "Partage de fichiers"
-#: ../../common.pm:1
-#, c-format
-msgid "KB"
-msgstr "Ko"
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+msgid "System"
+msgstr "Système"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Network & Internet"
-msgstr "Réseau et Internet"
+#: ../../services.pm_.c:138
+msgid "Remote Administration"
+msgstr "Administration à distance"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituanien « phonétique » QWERTY"
+#: ../../services.pm_.c:146
+msgid "Database Server"
+msgstr "Serveur de base de données"
-#: ../../standalone/drakTermServ:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "Net Boot Images"
-msgstr "Images d'amorçage réseau"
+msgid "Services: %d activated for %d registered"
+msgstr "Services : %d activés sur %d enregistrés"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Sharing of local scanners"
-msgstr "Partage de scanners locaux"
+#: ../../services.pm_.c:191
+msgid "Services"
+msgstr "Services"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr "Échec de l'interrogation « Plug'n Play ». Veuillez choisir un moniteur"
+#: ../../services.pm_.c:203
+msgid "running"
+msgstr "actif"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Detect USB key again"
-msgstr "Détecter à nouveau la clé USB"
+#: ../../services.pm_.c:203
+msgid "stopped"
+msgstr "arrêté"
-#: ../../services.pm:1
-#, c-format
+#: ../../services.pm_.c:217
msgid "Services and deamons"
msgstr "Serveurs et services"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name missing!"
-msgstr "Nom du serveur distant manquant !"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "with /usr"
-msgstr "avec /usr"
+#: ../../services.pm_.c:222
+msgid ""
+"No additional information\n"
+"about this service, sorry."
+msgstr "Pas d'autre information au sujet de ce service, désolé."
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Network"
-msgstr "Réseau"
+#: ../../services.pm_.c:229
+msgid "On boot"
+msgstr "Au démarrage"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
-"Détecter automatiquement les imprimantes reliées à des machines sous windows"
+#: ../../services.pm_.c:241
+msgid "Start"
+msgstr "Démarrer"
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "Ce mot de passe est trop simple"
+#: ../../services.pm_.c:241
+msgid "Stop"
+msgstr "Arrêter"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "Chkconfig obéit les rèbles de msec"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
+msgstr "Merci d'avoir choisi Mandrake Linux 9.0"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovaque (QWERTZ)"
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
+msgstr "Bienvenue dans le monde Open Source"
-#: ../advertising/06-development.pl:1
-#, c-format
+#: ../../share/advertising/01-thanks.pl_.c:11
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."
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
msgstr ""
-"Programmer en utilisant des langages aussi différents que Perl, Python, C ou "
-"C++ n'a jamais été aussi facile grâce à GNU gcc 3 et les meilleurs outils de "
-"développement Open Source."
+"Le principe du logiciel libre est à l'origine de MandrakeSoft et de son "
+"succès. Ce système d'exploitation est le fruit du travail collaboratif et "
+"ouvert de la communauté Linux. Ses contributeurs passionnés sont répartis "
+"dans le monde entier."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No devices found"
-msgstr "Aucun périphérique trouvé"
+#: ../../share/advertising/02-community.pl_.c:9
+msgid "Get involved in the Free Software world"
+msgstr "Rejoignez le monde du logiciel libre !"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
-msgstr "Installation vraiment minimale (et en particulier pas d'urpmi)"
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
+msgstr "Souhaitez-vous en savoir plus sur la communauté Open Source?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use daemon"
-msgstr "Sauvegarde périodique"
-
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "Authentification"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr "Ajouter cette imprimante à StarOffice/OpenOffice"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Additional CUPS servers: "
-msgstr "Serveurs CUPS additionnels :"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/02-community.pl_.c:11
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."
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
msgstr ""
-"Choisissez une imprimante parmi celles qui ont été détectées, ou entrez un "
-"nom de machine ou une adresse IP et le numéro port optionnel (9100 par "
-"défaut)."
+"Pour mieux connaître la communauté Open Source et y contribuer, partagez vos "
+"connaissances et participez au développement d'outils en accédant aux forums "
+"de discussions sur nos pages Web « community »"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount %s?"
-msgstr "Où désirez-vous monter %s ?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "Algérie"
+#: ../../share/advertising/03-internet.pl_.c:9
+msgid "Get the most from the Internet"
+msgstr "Tirez le meilleur parti de votre messagerie et d'Internet !"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network"
-msgstr "Restaurer à partir du réseau"
+#: ../../share/advertising/03-internet.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
+msgstr ""
+"Mandrake Linux 9.0 vous fournit les meilleures applications du moment. Vous "
+"pourrez parcourir le Web et visualiser des animations via Mozilla ou "
+"Konqueror, lire vos e-mails et gérer vos informations personnelles avec "
+"Evolution ou Kmail"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
-msgstr "Utiliser « tar » et « bzip2 » (à la place de « tar » et « gzip »)"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr ""
+"Grâce à Mandrake Linux 9.0, profitez au maximum des capacités multimédia de "
+"votre ordinateur."
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "Taille du RamDisk"
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
+msgstr "Poussez le multimedia à ses limites !"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../share/advertising/04-multimedia.pl_.c:11
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."
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-"Dans le cas où différents serveurs seraient disponible pour votre carte,\n"
-"avec ou sans accélération 3D, il vous est alors proposé de choisir le\n"
-"serveur qui vous conviendra le mieux."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tLa sauvegarde utilise « tar » et « gzip »\n"
+"Utilisez les dernières applications pour gérer vos fichiers audios, éditez "
+"vos images ou collections de photos et visualisez vos vidéos."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set as default"
-msgstr "Par défaut"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Jeux"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 Mo"
+#: ../../share/advertising/05-games.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
+msgstr ""
+"Mandrake Linux 9.0 vous fournit les meilleurs jeux Open Source en arcade, "
+"action, réflexion, stratégie, ..."
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Configured on this machine"
-msgstr "Configurées(s) sur cette machine"
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+msgid "Mandrake Control Center"
+msgstr ""
+"Mandrake Linux 9.0 intègre un puissant logiciel de configuration centralisé"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
-msgstr "Les deux touches Contrôle simultanément"
+#: ../../share/advertising/06-mcc.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
+msgstr ""
+"Vous pourrez contrôler entièrement vos périphériques et administrer votre "
+"machine"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid " --help - display this help \n"
-msgstr "--help - affiche ce message\n"
+#: ../../share/advertising/07-desktop.pl_.c:9
+msgid "User interfaces"
+msgstr "Personnalisez vos environnements de travail !"
-#: ../../standalone.pm:1
-#, c-format
+#: ../../share/advertising/07-desktop.pl_.c:10
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"
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
-"[OPTION]...\n"
-" --no-confirmation ne demande pas la première confirmation en mode "
-"MandrakeUpdate\n"
-" --no-verify-rpm ne vérifie pas les signatures des paquetages\n"
-" --changelog-first affiche le changelog avant la liste des fichiers "
-"dans la fenêtre de description\n"
-" --merge-all-rpmnew propose de fusionner tous les fichiers .rpmnew/."
-"rpmsave trouvés"
+"Nous vous proposons 11 interfaces utilisateurs entièrement paramétrables "
+"dont KDE 3, Gnome 2, WindowMaker, ..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Setting Default Printer..."
-msgstr "Configuration de l'imprimante par défaut..."
+#: ../../share/advertising/08-development.pl_.c:9
+msgid "Development simplified"
+msgstr "Simplifiez vos développements !"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Interface %s (utilisant le module %s)"
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
+msgstr "Mandrake Linux 9.0 est une plate-forme de choix pour le développement"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Generating preview ..."
-msgstr "Création de l'aperçu ..."
-
-#: ../../network/network.pm:1
-#, c-format
+#: ../../share/advertising/08-development.pl_.c:11
msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0' (zeroes)."
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-"La fréquence doit avoir un suffixe k, M ou G (par ex. \"2.46G\" pour 2.46 "
-"GHz), ou bien avoir suffisamment de zéros."
+"Vous bénéficiez de la puissance du compilateur GNU GCC 3 ainsi que des "
+"meilleurs environnements Open Source"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ignore"
-msgstr "ignorer"
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
+msgstr "La puissance de Linux au profit des serveurs"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Allow/Forbid X connections:\n"
-"\n"
-"- ALL (all connections are allowed),\n"
-"\n"
-"- LOCAL (only connection from local machine),\n"
-"\n"
-"- NONE (no connection)."
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
-"Permet/interdit les connexions à XFree :\n"
-"\n"
-"- TOUS (toutes connexions permises),\n"
-"\n"
-"- LOCAL (seulement les connexions locales),\n"
-"\n"
-"- AUCUN (aucune connexion)."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
-msgstr ", périphérique multifonction sur le port parallèle %s"
+"En quelques clics, Mandrake Linux 9.0 transforme votre ordinateur en un "
+"puissant serveur : serveur Web, mail, pare-feu, routeur, partage de fichiers "
+"et d'imprimantes..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "série"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
-msgstr "DVD"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Géorgien (disposition latine)"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr "La sécurité optimale sous Linux !"
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
+#: ../../share/advertising/10-mnf.pl_.c:10
+msgid ""
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-"Obtenez le meilleur avec les partenaires stratégiques de Mandrake Linux"
+"La gamme de produit MandrakeSecurity comprend entre autres le Multi Network "
+"Firewall (M.N.F.)"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
msgstr ""
-"Vous pouvez maintenant fournir des options au module %s.\n"
-"Veuillez noter que les adresses doivent être précédées de 0x, comme « 0x123 »"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "Kenya"
+"Bien plus qu'un firewall, ce produit polyvalent répondra à tous vos besoins "
+"de sécurité"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
-msgstr "Cliquez d'abord sur « Démonter »"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing mtools packages..."
-msgstr "Installation des paquetages mtools..."
-
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a root partition"
-msgstr "Vous devez spécifier une partition racine"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "first step creation"
-msgstr "Création de la 1ere étape"
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
+msgstr "Ce produit est disponible sur MandrakeStore"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr "Deux touches Shift simultanément"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
+msgstr "MandrakeStore : la boutique en ligne officielle de MandrakeSoft"
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
-" --id <label_id> - charge la page d'aide html identifiéd par label_id\n"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Select a scanner model"
-msgstr "Sélectionnez un modèle de scanner"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
-msgstr "Accepter/refuser les messages d'erreur IPv4 bogués"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR Nouvelle Génération"
+"Accédez à l'ensemble de nos solutions Linux, profitez des offres exclusives "
+"sur nos produits et goodies via notre site de vente en ligne à l'adresse "
+"suivante"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup Configuration"
-msgstr "Configuration de sauvegarde Drakbackup"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
+msgstr "Les partenaires stratégiques de MandrakeSoft"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr "Enregistrer sous..."
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
+msgstr ""
+"De nouveaux acteurs viennent apporter leurs contributions pour développer "
+"des solutions professionnelles compatibles Mandrake Linux. Retrouvez la "
+"liste de nos partenaires sur MandrakeStore, onglet nommé « logiciels tiers »"
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
-msgstr "Corée du Nord"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr ""
+"Découvrez le catalogue de formation Linux-Campus et devenez Expert sous "
+"Linux !"
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
msgstr ""
-"Cette interface n'a pas encore été configurée.\n"
-"Lancez l'assistant de configuration dans la fenêtre principale"
+"Linux-Campus est le programme de formation élaboré par MandrakeSoft pour "
+"répondre à la fois aux besoins des utilisateurs finaux et à ceux des experts "
+"(administrateurs réseaux et systèmes)"
-#: ../../install_gtk.pm:1
-#, c-format
-msgid "System configuration"
-msgstr "Configuration du système"
-
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "Connexion automatique"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
+msgstr "Devenez ingénieur certifié Linux"
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin Password"
-msgstr "Mot de passe d'administration de domaine"
-
-#: ../advertising/05-desktop.pl:1
-#, c-format
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
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, ..."
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-"Adaptez votre ordinateur à vos besoins grâce aux 11 interfaces utilisateurs "
-"entièrement paramétrables : KDE 3.1, Gnome 2.2, Window Maker, ..."
+"Que vous choisissiez de vous former vous-même via la plate-forme de "
+"formation en ligne MandrakeCampus ou via notre réseau de partenaires, le "
+"catalogue Linux-Campus vous préparera à la certification L.P.I. (« Linux "
+"Professional Institute ») reconnue professionnellement"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Configuring printer ..."
-msgstr "Configuration de l'imprimante en cours..."
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+msgid "Become a MandrakeExpert"
+msgstr "Devenez un Expert Mandrake"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
-"To ensure data integrity after resizing the partition(s), \n"
-"filesystem checks will be run on your next boot into Windows(TM)"
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-"Afin d'assurer l'intégrité des données après le redimensionnement de(s) "
-"partition(s),\n"
-"une vérification du système de fichier sera réalisé au prochain démarrage de "
-"Windows(TM)"
-
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "Mo"
+"Bénéficiez de l'aide de la communauté et de MandrakeSoft pour obtenir un "
+"support de qualité"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
+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 ""
-"Si oui, effectue des vérifications par rapport à la base de données des "
-"paquetages rpm."
+"En tant qu'expert, vous pourrez partager vos connaissances et proposer du "
+"support à d'autres utilisateurs sur :"
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (British)"
-msgstr "Îles Vierges (Britanniques)"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert Corporate"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bermuda"
-msgstr "Bermudes"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
+msgstr "Un support spécifique aux entreprises"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "click here if you are sure."
-msgstr "Cliquez ici si vous êtes sûr"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
+msgstr ""
+"Afin de répondre aux besoins spécifiques des entreprises, MandrakeSoft met à "
+"la disposition des grands comptes sa nouvelle plate-forme professionnelle de "
+"support en ligne. Cette interface vous garantira le suivi de vos incidents "
+"par l'intermédiaire d'un interlocuteur unique et vous permettra d'obtenir "
+"toute l'expertise du support Entreprise de MandrakeSoft"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
+msgstr "Découvrez MandrakeClub et Mandrake Corporate Club"
+
+#: ../../share/advertising/17-mdkclub.pl_.c:10
msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
msgstr ""
-"La configuration de sauvegarde n'est pas encore définie. \n"
-"Veuillez cliquer sur « Configuration par assistant », ou « Configuration "
-"manuelle »"
+"MandrakeClub et Mandrake Corporate Club ont été créés pour les entreprises "
+"et les utilisateurs de Mandrake Linux qui souhaitent soutenir directement "
+"leur distribution Linux préférée tout en bénéficiant de privilèges spéciaux. "
+"Si vous aimez nos produits, si votre société utilise nos produits pour "
+"gagner en compétitivité, si vous voulez soutenir le développement de "
+"Mandrake Linux, rejoignez MandrakeClub !"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone.pm_.c:21
+#, fuzzy
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"
+"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"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\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"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
+"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 ""
-"La liste présentée plus haut identifie les partitions GNU/Linux détectées\n"
-"sur votre système. Vous pouvez accepter les choix proposés par l'assistant,\n"
-"qui s'avèrent bon dans la grande majorité des cas. Si vous faites un\n"
-"changement, vous devez au moins avoir une partition root (\"/\"). root\n"
-"partition (« / »). Prenez garde de vous réserver suffisamment d'espace pour\n"
-"installer toutes les applications qui vous intéressent. Vous devrez\n"
-"également créer une partition «  /home ». Ceci s'avère exclusivement\n"
-"possible lorsque vous avez déjà au moins une partition GNU/Linux de\n"
-"configurée.\n"
-"\n"
-"Chaque partition est listée comme suit: \"Nom\", \"Capacité\".\n"
-"\n"
-"Le \"Nom\" est structuré ainsi : \"type de disque dur\", \"numéro du disque\n"
-"dur\", \"numéro de partition\". Par exemple, « hda1 ».\n"
-"\n"
-"Le \"Type de disque dur\" correspond à hd si votre disque est IDE. Pour un\n"
-"disque SCSI, vous lirez \"sd\".\n"
-"\n"
-"Le numéro du disque est toujours listé après le \"hd\" ou \"fd\". Pour les\n"
-"disques IDE :\n"
-"\n"
-" * \"a\" signifie \"disque primaire maître sur le premier contrôleur IDE\";\n"
-"\n"
-" * \"b\" signifie le \"disque primaire esclave sur le premier contrôleur\n"
-"IDE\";\n"
-"\n"
-" * \"c\" indique le \"disque primaire maître sur le second contrôleur\n"
-"IDE\";\n"
+" Ce programme est un logiciel libre : vous pouvez le redistribuer\n"
+"et/ou le modifier selon les termes de la « GNU General Public\n"
+"License », tels que publiés par la « Free Software Foundation »; soit\n"
+"la version 2 de cette licence ou (à votre choix) toute version\n"
+"ultérieure.\n"
"\n"
-" * \"d\" signifie le \"disque primaire esclave sur le second contrôleur\n"
-"IDE\";\n"
+"Ce programme est distribué dans l'espoir qu'il sera utile, mais\n"
+"SANS AUCUNE GARANTIE, ni explicite ni implicite; sans même les\n"
+"garanties de commercialisation ou d'adaptation dans un but spécifique.\n"
+"Se référer à la « GNU General Public License » pour plus de détails.\n"
"\n"
-"Avec les disques SCSI, le \"a\" indique le plus petit SCSI ID, et « b » le\n"
-"« deuxième plus petit ID », etc."
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Remove"
-msgstr "Enlever"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
-msgstr "utopia 25"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
-msgstr "Impression vers une commande shell"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Remove system config files"
-msgstr "Supprimer les fichiers de config."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
-msgstr "Côte d'Ivoire"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
-msgstr "nouveau nom de périphérique dynamique généré par devfs"
-
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "Oui"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Quel protocole désirez-vous utiliser ?"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Progress"
-msgstr "Avancement de la restauration"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
-msgstr "Estonie"
+"Vous devriez avoir reçu une copie de la « GNU General Public License »\n"
+"en même temps que ce programme; sinon, écrivez à la « Free Software\n"
+"Foundation », Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../partition_table.pm:1
-#, c-format
+#: ../../standalone.pm_.c:40
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."
+"[--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 name.\n"
msgstr ""
-"Il y a un espace vide dans la table des partitions mais il est\n"
-"inutilisable. La seule solution est de déplacer vos partitions primaires\n"
-"de telle façon que cet espace soit placé contre les partitions étendues."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
+#: ../../standalone.pm_.c:51
+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 ""
-"Choisissez l'hôte à partir duquel les scanners locaux seront disponibles :"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Channel"
-msgstr "Canal"
-
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Add"
-msgstr "Ajouter"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Error while sending mail. \n"
-msgstr "Erreur lors de l'envoi du courrier.\n"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "Clavier"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone.pm_.c:57
msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
+"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 ""
-"Insérez le CD %s dans le lecteur correspondant\n"
-"au point de montage /mnt/cdrom"
-#: ../../network/network.pm:1
-#, c-format
+#: ../../standalone.pm_.c:68
msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
msgstr ""
-"Le débit doit avoir un suffixe k, M ou G (par ex. \"11M\" pour 11Mo), ou "
-"bien avoir suffisamment de zéros."
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Choisissez la connexion que vous voulez configurer"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Please wait, setting security level..."
-msgstr "Veuillez patienter, configuration du niveau de sécurité..."
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Configuration du périphérique réseau %s"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
-msgstr "activée"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
+#: ../../standalone.pm_.c:70
+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)"
msgstr ""
-"Veuillez choisir la carte réseau qui sera utilisée pour le serveur DHCP"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Recherche des paquetages à mettre à jour..."
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
-msgstr "Point de montage : "
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
-msgstr "Parcourir toutes les polices"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid direct root login."
-msgstr "Permet/interdit la connexion directe en tant que root."
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
-msgstr "Accepter/refuser l'écho icmp émis par diffusion"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With X"
-msgstr "Avec X"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Configuration multi-écrans"
+#: ../../standalone.pm_.c:82
+#, fuzzy
+msgid "[keyboard]"
+msgstr "Clavier"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "No browser available! Please install one"
-msgstr "Pas de navigateur disponible ! Veuillez en installer un."
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
+msgstr ""
-#: ../../Xconfig/main.pm:1
-#, c-format
+#: ../../standalone.pm_.c:84
msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
+"[OPTIONS]\n"
+"Network & Internet connection and monitoring application\n"
"\n"
-"%s"
+"--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 ""
-"Désirez-vous conserver les changements ?\n"
-"La configuration actuelle est :\n"
-"\n"
-"%s"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Les partitions ReiserFS doivent faire au moins 32 Mo."
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone.pm_.c:94
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)."
+"[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 ""
-"Le protocole rwho permet aux utilisateurs distants d'obtenir une liste des "
-"utilisateurs connectés à une machine qui fait tourner le démon rwho "
-"(similaire à finger)."
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "Nom de domaine"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Sharing of local printers"
-msgstr "Partage d'imprimantes locales"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
+#: ../../standalone.pm_.c:99
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
msgstr ""
-"Activer/désactiver la bibliothèque libsafe si elle est présente sur le "
-"système"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Available printers"
-msgstr "Imprimantes disponibles"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "NO"
-msgstr "NON"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "Vide"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
-msgstr "largeur du texte"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Où désirez-vous monter la partition %s ?"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr "Délai standard (en secondes)"
-
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../standalone.pm_.c:100
msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
msgstr ""
-"Nous allons maintenant configurer la connexion %s.\n"
-"\n"
-"\n"
-"Cliquez sur « %s » pour continuer."
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Interface \"%s\""
-msgstr "Interface \"%s\""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
-msgstr "Avec la documentation de base (recommandé !)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr "1 bouton"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone.pm_.c:114
#, c-format
msgid ""
"\n"
-"There are %d unknown printers directly connected to your system"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
-"\n"
-"Il y a %d imprimantes inconnues reliées à votre machine"
-
-#: ../../Xconfig/main.pm:1
-#, c-format
-msgid "Test"
-msgstr "Test"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea"
-msgstr "Corée"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Que choisissez-vous ? (« %s » par défaut%s) "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer"
-msgstr "Imprimante à accès direct"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
-msgstr "le nom officiel du fabriquant de ce processeur"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
-msgstr "Inutilisable sans Serveur de Terminal"
+#: ../../standalone.pm_.c:168
+msgid "Installing packages..."
+msgstr "Installation des paquetages..."
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Vendor"
-msgstr "Vendeur"
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr ""
+"Veuillez vous déconnecter puis presser simultanément les touches Ctrl-Alt-"
+"BackSpace"
-#: ../../standalone/drakgw:1
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "Interface %s"
-msgstr "Interface %s"
+msgid "Please relog into %s to activate the changes"
+msgstr "Veuillez relancer %s pour activer les changements"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "Configuration de la souris"
+#: ../../standalone/drakTermServ_.c:239
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Configuration du Serveur de Terminaux Mandrake"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
-msgstr "Choix des points de montage"
+#: ../../standalone/drakTermServ_.c:253
+msgid "Enable Server"
+msgstr "Activer le serveur"
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr "OK"
+#: ../../standalone/drakTermServ_.c:260
+msgid "Disable Server"
+msgstr "Désactiver le serveur"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
-msgstr "Yougoslave (latin)"
+#: ../../standalone/drakTermServ_.c:268
+msgid "Start Server"
+msgstr "Lancer le serveur"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "Installation"
+#: ../../standalone/drakTermServ_.c:275
+msgid "Stop Server"
+msgstr "Arrêter le serveur"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Logitech MouseMan avec émulation de la molette"
+#: ../../standalone/drakTermServ_.c:283
+msgid "Etherboot Floppy/ISO"
+msgstr "disquette/ISO etherboot"
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
-msgstr "Lancer Userdrake"
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
+msgstr "Images d'amorçage réseau"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Désirez-vous faire une installation ou une mise à jour ?"
+#: ../../standalone/drakTermServ_.c:294
+msgid "Add/Del Users"
+msgstr "Ajouter/Effacer un utilisateur"
-#: ../../help.pm:1
-#, c-format
-msgid "ISDN card"
-msgstr "Carte RNIS"
+#: ../../standalone/drakTermServ_.c:299
+msgid "Add/Del Clients"
+msgstr "Ajouter/Effacer un client"
-#: ../advertising/02-community.pl:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:328
+#, fuzzy
msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
+"\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
+"\n"
msgstr ""
-"Pour partager vos connaissances et aider à la création de logiciels Linux, "
-"rejoignez nos forums de discussion sur nos pages « community »."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr "\t-celle sur Disque dur.\n"
+" modifications 2002 MandrakeSoft par Stew Benedict <sbenedict\\@mandrakesoft."
+"com>"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakTermServ_.c:332
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"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\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 ""
-"Cette étape ne s'affiche que si une partition GNU/Linux a été détectée sur\n"
-"votre disque dur.\n"
-"\n"
-"DrakX doit maintenant savoir quel type d'installation vous désirez\n"
-"réaliser. Deux types d'installations sont proposés : Par défaut (« %s »),\n"
-"qui limite le nombre de questions à l'utilisateur au minimum ou « %s » qui\n"
-"vous permet de sélectionner individuellement chacune des composantes à\n"
-"installer. Il vous est également proposé de faire une « %s » ou une « %s »\n"
-"d'un système Mandrake Linux déjà installé :\n"
-"\n"
-" * « %s » : Remplace l'ancien système. En fait, selon ce que votre machine\n"
-"comporte, vous pourrez garder intactes certaines des anciennes partitions\n"
-"(Linux ou autres) ;\n"
-"\n"
-" * « %s » : cette classe d'installation permet de mettre à jour seulement\n"
-"les paquetages qui composent votre système Mandrake Linux. Elle conserve\n"
-"les partitions existantes, ainsi que la configuration des utilisateurs. La\n"
-"plupart des autres étapes d'une installation classique sont accessibles ;\n"
-"\n"
-"La mise à jour devrait fonctionner correctement pour les système Mandrake\n"
-"Linux à partir de la version « 8.1 ». Essayer de lancer une mise à jour sur\n"
-"les versions antérieures à « 8.1 » n'est pas recommandé."
-#: ../../standalone/drakfont:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:365
msgid ""
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\n"
"\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"
-msgstr ""
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\n"
"\n"
-" Copyright (C) 2001-2002 par MandrakeSoft \n"
-" DUPONT Sebastien (original version)\n"
-" CHAUMETTE Damien <dchaumette@mandrakesoft.com>\n"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\n"
"\n"
-"Ce programme est un logiciel libre : vous pouvez le redistribuer\n"
-"et/ou le modifier selon les termes de la « GNU General Public\n"
-"License », tels que publiés par la « Free Software Foundation »; soit\n"
-"la version 2 de cette licence ou (à votre choix) toute version\n"
-"ultérieure.\n"
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
"\n"
-"Ce programme est distribué dans l'espoir qu'il sera utile, mais\n"
-"SANS AUCUNE GARANTIE, ni explicite ni implicite; sans même les\n"
-"garanties de commercialisation ou d'adaptation dans un but spécifique.\n"
-"Se référer à la « GNU General Public License » pour plus de détails.\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\n"
"\n"
-"Vous devriez avoir reçu une copie de la « GNU General Public License »\n"
-"en même temps que ce programme; sinon, écrivez à la « Free Software\n"
-"Foundation », Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, "
-"USA. \n"
-" Remerciements :\n"
-" - pfm2afm : \n"
-"\t par Ken Borgendale :\n"
-"\t Conversion d'un fichier .pfm Windows vers un .afm (Adobe Font "
-"Metrics)\n"
-" - type1inst :\n"
-"\t par James Macnicol : \n"
-"\t type1inst génère les fichiers fonts.dir, fonts.scale et Fontmap.\n"
-" - ttf2pt1 : \n"
-"\t par Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Conversion des fichiers ttf vers afm et pfb\n"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
"\n"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \n"
"\n"
+msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Imprimante sur serveur CUPS distant"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
-msgstr "Impossible de retirer l'imprimante « %s » de StarOffice/OpenOffice"
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
+msgstr "Disquette de démarrage"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
-msgstr "Ici sinon"
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
+msgstr "Image ISO de démarrage"
-#: ../../network/network.pm:1
-#, c-format
-msgid "DHCP host name"
-msgstr "Nom d'hôte DHCP"
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
+msgstr "Construire le Kernel entier -->"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr "Délai maxi (en secondes)"
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
+msgstr "Celà va prendre quelques minutes."
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr "Veuillez choisir le port série sur lequel votre souris est connectée."
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
+msgstr "Aucun noyau sélectionné!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
-msgstr "Êtes-vous satisfait du résultat ?"
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
+msgstr "Construire un NIC unique -- >"
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
-msgstr "Monter le système de fichier en lecture seule."
+#: ../../standalone/drakTermServ_.c:587
+msgid "No nic selected!"
+msgstr "Aucune interface réseau sélectionnée!"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "Très faible"
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
+msgstr "Construire tous les noyaux -->"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result by mail"
-msgstr "Envoyer le rapport de vérification par courriel"
+#: ../../standalone/drakTermServ_.c:604
+msgid "<-- Delete"
+msgstr "<-- Effacer"
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
-msgstr "Grenade"
+#: ../../standalone/drakTermServ_.c:611
+msgid "Delete All NBIs"
+msgstr "Effacer tous les NBIs"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
-msgstr "La plage DHCP de début"
+#: ../../standalone/drakTermServ_.c:668
+msgid ""
+"!!! Indicates the password in the system database is different than\n"
+" the one in the Terminal Server database.\n"
+"Delete/re-add the user to the Terminal Server to enable login."
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "Peu sûr"
+#: ../../standalone/drakTermServ_.c:673
+msgid "Add User -->"
+msgstr "Ajouter un utilisateur -->"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "SSH server"
-msgstr "Serveur SSH"
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
+msgstr "<-- Effacer un utilisateur"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s secteurs"
+#: ../../standalone/drakTermServ_.c:720
+#, fuzzy, c-format
+msgid "type: %s"
+msgstr "Type : "
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "Non"
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
+msgstr "Aucune image d'amorçage réseau créée"
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
+#: ../../standalone/drakTermServ_.c:773
+#, fuzzy
+msgid "Thin Client"
+msgstr "Client DHCP"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Kannada"
-msgstr "Kannada"
+#: ../../standalone/drakTermServ_.c:775
+#, fuzzy
+msgid "Allow Thin Clients"
+msgstr "Ajouter/Effacer un client"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
-msgstr "impossible de trouver des polices.\n"
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
+msgstr "Ajouter un client -->"
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Souhaitez-vous que la touche BackSpace retourne Delete en console ?"
+#: ../../standalone/drakTermServ_.c:821
+#, fuzzy
+msgid "<-- Edit Client"
+msgstr "<-- Effacer un client"
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Fréquence verticale"
+#: ../../standalone/drakTermServ_.c:837
+#, fuzzy
+msgid "Delete Client"
+msgstr "<-- Effacer un client"
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Démarrage de l'étape « %s »\n"
+#: ../../standalone/drakTermServ_.c:843
+msgid "dhcpd Config..."
+msgstr "Configuration de dhcpd..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Niger"
-msgstr "Niger"
+#: ../../standalone/drakTermServ_.c:876
+msgid ""
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing %s ..."
-msgstr "Suppression de %s ..."
+#: ../../standalone/drakTermServ_.c:901
+#, fuzzy
+msgid "Netmask:"
+msgstr "Masque de sous-réseau"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No printer"
-msgstr "Pas d'imprimante"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
+msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "alert configuration"
-msgstr "configuration des alertes"
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "Options de l'imprimante NetWare"
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "%s BootSplash (%s) preview"
-msgstr "Aperçu de l'écran de démarrage %s (%s)"
+#: ../../standalone/drakTermServ_.c:929
+#, fuzzy
+msgid "Domain Name:"
+msgstr "Nom de domaine"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "February"
-msgstr "Février"
+#: ../../standalone/drakTermServ_.c:937
+#, fuzzy
+msgid "Name Servers:"
+msgstr "Serveur Sambe"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
-msgstr "Général"
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
-msgstr "/etc/issue* existent"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "Ajout des utilisateurs"
+#: ../../standalone/drakTermServ_.c:1001
+msgid "dhcpd Server Configuration"
+msgstr "Configuration du serveur dhcpd"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuration du réseau (%d cartes réseau)"
+#: ../../standalone/drakTermServ_.c:1002
+#, fuzzy
+msgid ""
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
+msgstr ""
+"La plupart de ces valeurs ont été extraites de votre système.\n"
+"Vous pouvez les modifier comme vous souhaitez."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "April"
-msgstr "Avril"
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Deactivate now"
-msgstr "Désactiver maintenant"
+#: ../../standalone/drakTermServ_.c:1018
+msgid "Write Config"
+msgstr "Écrire la configuration"
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "Mandatory package %s is missing"
-msgstr "Le paquetage %s, requis, est manquant"
+#: ../../standalone/drakTermServ_.c:1120
+msgid "Please insert floppy disk:"
+msgstr "Veuillez insérez une disquette dans le lecteur"
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Philippines"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
+msgstr "Impossible d'accéder à la disquette !"
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "Ok"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
+msgstr "La disquette peut maintenant etre retirée du lecteur"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "drakTermServ Overview"
-msgstr "Survol de drakTermServ"
+#: ../../standalone/drakTermServ_.c:1129
+msgid "No floppy drive available!"
+msgstr "Aucun lecteur de disquette disponible!"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakTermServ_.c:1138
#, c-format
-msgid "Print Queue Name"
-msgstr "Nom de la file d'impression"
+msgid "Etherboot ISO image is %s"
+msgstr "L'image ISO etherboot est %s"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Do you want to use aboot?"
-msgstr "Désirez-vous utiliser « aboot » ?"
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Quelque chose s'est mal passé! mkisofs est-il bien installé ?"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belarusian"
-msgstr "Blélorusse"
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "Il faut d'abord créer /etc/dhcpd.conf !"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
-"PDQ ne supporte que les imprimantes locales, les imprimantes LPD distantes, "
-"et les imprimantes réseau autonomes.\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move files to the new partition"
-msgstr "Déplacer les fichiers sur la nouvelle partition"
+#: ../../standalone/drakautoinst_.c:40
+msgid "Error!"
+msgstr "Erreur !"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, c-format
-msgid ""
-"Add here the CUPS servers whose printers you want to use. You only need to "
-"do this if the servers do not broadcast their printer information into the "
-"local network."
-msgstr ""
-"Ajoutez ici les serveurs CUPS dont vous voulez utiliser les imprimantes. "
-"Vous n'avez besoin de faire cela que si les serveurs ne diffusent pas les "
-"informations de leurs imprimantes sur le réseau local."
+msgid "I can't find needed image file `%s'."
+msgstr "Impossible de trouver le fichier image « %s »."
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:43
+msgid "Auto Install Configurator"
+msgstr "Configurateur d'installation automatisée"
+
+#: ../../standalone/drakautoinst_.c:44
msgid ""
+"You are about to configure an Auto Install floppy. This feature is somewhat "
+"dangerous and must be used circumspectly.\n"
"\n"
-"Welcome to the Printer Setup Wizard\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"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\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 ""
+"Vous êtes sur le point de configurer une disquette d'auto-installation. "
+"Cette fonctionnalité est relativement dangereuse, et doit donc être utilisée "
+"avec précaution.\n"
"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
+"La disquette d'auto-installation vous permettra d'installer un autre "
+"ordinateur avec exactement la même configuration que le vôtre. Mais parmi "
+"l'ensemble des étapes d'installation, vous pouvez choisir lesquelles seront "
+"complètement automatisées et lesquelles seront manuelles.\n"
+"Pour une sûreté maximale, les étapes de partitionnement et de formatage ne "
+"seront jamais faites automatiquement, quels que soient les choix que vous "
+"aviez fait lors de la première installation de cet ordinateur.\n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
+"Souhaitez-vous continuer ?"
+
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
+msgstr ""
+
+#: ../../standalone/drakautoinst_.c:62
+#, fuzzy
+msgid "replay"
+msgstr "Rejouer"
+
+#: ../../standalone/drakautoinst_.c:66
+msgid "Automatic Steps Configuration"
+msgstr "Configuration des étapes automatiques"
+
+#: ../../standalone/drakautoinst_.c:67
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
msgstr ""
+"Veuillez choisir, pour chaque étape, si celle-ci doit être rejouée comme "
+"pendant votre installation, ou si elle doit s'effectuer manuellement."
+
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+msgid "Creating auto install floppy"
+msgstr "Création de la disquette d'auto-installation"
+
+#: ../../standalone/drakautoinst_.c:139
+msgid ""
"\n"
-"Bienvenue dans l'assistant de configuration d'imprimante\n"
+"Welcome.\n"
"\n"
-"Cet assistant vous aidera à installer les imprimantes connectées à cet "
-"ordinateur.\n"
+"The parameters of the auto-install are available in the sections on the left"
+msgstr ""
"\n"
-"Si vous avez des imprimantes branchées sur cet ordinateur, veuillez les "
-"allumer afin qu'elles soient détectées automatiquement.\n"
+"Bienvenue.\n"
"\n"
-"Cliquez sur « suivant » quand vous êtes prêt, ou sur « annuler » si vous ne "
-"voulez pas configurer d'imprimante maintenant."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore From Catalog"
-msgstr "Restaurer à partir d'un catalogue"
+"Les paramètres de l'installation automatique sont disponibles dans les "
+"sections sur la gauche."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "IDE"
-msgstr "IDE"
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
+msgstr "Félicitations !"
-#: ../../fs.pm:1
-#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr "le montage de la partition %s dans le dossier %s a échoué"
+#: ../../standalone/drakautoinst_.c:235
+msgid ""
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
+msgstr ""
+"La disquette a été générée avec succès.\n"
+"Vous pouvez maintenant rejouer votre installation."
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo screen"
-msgstr "Écran de LILO"
+#: ../../standalone/drakautoinst_.c:273
+msgid "Auto Install"
+msgstr "Installation automatique"
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO en mode graphique"
+#: ../../standalone/drakautoinst_.c:343
+msgid "Add an item"
+msgstr "Ajouter un élément"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "Estimation en cours"
+#: ../../standalone/drakautoinst_.c:350
+msgid "Remove the last item"
+msgstr "Supprimer le dernier élément"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
-msgstr "Vous ne pouvez pas désélectionner ce paquetage. Il est déjà installé"
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
+msgstr "Cron n'est pas encore disponible en dehors de root."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", imprimante « %s » sur serveur SMB/Windows « %s »"
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
+msgstr "ATTENTION"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "Souhaitez-vous tout de même continuer ?"
+#: ../../standalone/drakbackup_.c:691
+msgid "FATAL"
+msgstr "FATALE"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr ""
-"Recherche des paquetages disponibles et reconstruction de la base de données "
-"rpm..."
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
+msgstr "INFO"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakbackup_.c:704
msgid ""
"\n"
" DrakBackup Report \n"
+"\n"
msgstr ""
"\n"
" Rapport de sauvegarde (DrakBackup) \n"
+"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Does not appear to be recordable media!"
-msgstr "Cela ne semble pas être un support enregistrable !"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "Spécifier des options"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "New user list:\n"
-msgstr "Nouvelle liste d'utilisateurs :\n"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Il faut au moins préciser le nom du serveur ou son adresse IP."
-
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:705
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\"."
+" DrakBackup Daemon Report\n"
+"\n"
+"\n"
msgstr ""
-"Une disquette d'amorçage permet de lancer votre système Linux\n"
-"sans utiliser le programme d'amorçage du disque dur.\n"
"\n"
-"C'est utile si vous ne voulez pas installer SILO sur votre système,\n"
-"si un autre système d'exploitation supprime le programme d'amorçage, ou "
-"encore\n"
-"si ce dernier ne peut être installé sur votre machine.\n"
+" Rapport de sauvegarde périodique (DrakBackup)\n"
"\n"
-"Vous pouvez également utiliser cette disquette avec l'image de secours "
-"Mandrake.\n"
-"Cela permet une récupération plus aisée du système en cas de problèmes "
-"majeurs.\n"
"\n"
-"Si vous voulez créer une disquette d'amorçage pour votre système, insérez \n"
-"une disquette dans le premier lecteur et appuyer sur « Ok »."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr ""
-"Vous ne pouvez pas utiliser de système de fichiers crypté pour le point de "
-"montage %s"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password history length to prevent password reuse."
+#: ../../standalone/drakbackup_.c:709
+msgid ""
+"\n"
+" DrakBackup Report Details\n"
+"\n"
+"\n"
msgstr ""
-"Règle la profondeur de l'historique des mots de passe pour éviter la "
-"réutilisation de mots de passe."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
-msgstr "Île Norfolk"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Theme installation failed!"
-msgstr "Échec d'installation du thème"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
-msgstr "Rien à faire"
+"\n"
+" Détails du rapport de sauvegarde\n"
+"\n"
+"\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
-msgstr "Utiliser pour le bouclage"
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+msgid "Total progess"
+msgstr "Avancement :"
-#: ../../standalone/drakbug:1
+#: ../../standalone/drakbackup_.c:785
#, c-format
-msgid "Mandrake Bug Report Tool"
-msgstr "Outil de signalement de bogue Mandrake"
+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 ""
+"%s existe, l'effacer? \n"
+"\n"
+"Attention: si vous avez déja fait ce processus, vous devrez\n"
+"probablement purger l'entrée des clés autorisées sur le serveur."
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
-msgstr "Appliquer le filtre"
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
+msgstr "Générer les cles peut prendre un moment."
-#: ../../network/adsl.pm:1
+#: ../../standalone/drakbackup_.c:801
#, c-format
-msgid "use pppoe"
-msgstr "utiliser « pppoe »"
+msgid "ERROR: Cannot spawn %s."
+msgstr "ERREUR : Impossible de lancer %s."
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid "Moving files to the new partition"
-msgstr "Déplacement des fichiers sur la nouvelle partition..."
+msgid "No password prompt on %s at port %s"
+msgstr "Pas de demande de mot de passe sur %s à l'entrée %s"
-#: ../../Xconfig/card.pm:1
+#: ../../standalone/drakbackup_.c:819
#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s avec support EXPÉRIMENTAL de l'accélération 3D matérielle"
+msgid "Bad password on %s"
+msgstr "Mauvais mot de passe sur %s"
-#: ../../help.pm:1 ../../interactive.pm:1
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "Advanced"
-msgstr "Avancé"
+msgid "Permission denied transferring %s to %s"
+msgstr "Vous n'avez pas le droit de transférer %s vers %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:821
#, c-format
-msgid "Transfer"
-msgstr "Transfert"
+msgid "Can't find %s on %s"
+msgstr "Ne peut trouver %s sur %s"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak suédois"
+msgid "%s not responding"
+msgstr "%s ne répond pas"
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup_.c:828
#, c-format
-msgid "Afghanistan"
-msgstr "Afghanistan"
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+"Transfert réussi.\n"
+"Vous pouvez vérifier votre mot de passe sur le serveur avec:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"sans qu'il ne soit affiché de demande."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "More Options"
-msgstr "Plus d'options..."
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
+msgstr "Le site distant WebDAV est déja synchronisé!"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr "Effacer les fichiers tar après sauvegarde vers un autre support."
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
+msgstr "Echec du transfert WebDAV!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Burundi"
-msgstr "Burundi"
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
+msgstr "Il n'y a pas de CDR/DVDR dans le lecteur!"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
-msgstr ""
-"Cron est un planificateur de tâches. Contrairement à Anacron, les tâches "
-"sont exécutées à des moments précis, pendant lesquels la machine doit être "
-"allumée. « Vixie cron » ajoute des fonctions au « cron » UNIX de base "
-"(notamment une meilleure sécurité et des options de configuration plus "
-"complètes)."
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
+msgstr "Cela ne semble pas être un support enregistrable!"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
-msgstr "Ajouter un client -->"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
+msgstr "Ce n'est pas un support effaçable!"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "MISE EN GARDE"
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
+msgstr "Effacer le support peut prendre un moment."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
-msgstr "RW"
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
+msgstr "Vous n'avez pas les droits d'accés au CD."
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakbackup_.c:1060
#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
-"SVP,\n"
-"Veuillez choisir votre région et votre norme de TV"
+msgid "No tape in %s!"
+msgstr "Pas de bande dans %s!"
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "Port"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
+msgstr "Sauvegarde des fichiers systèmes..."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
-msgstr "Non (pour les experts)"
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+msgid "Hard Disk Backup files..."
+msgstr "Sauvegarde sur disque dur..."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-msgstr "Aucun noyau sélectionné !"
+#: ../../standalone/drakbackup_.c:1236
+msgid "Backup User files..."
+msgstr "Sauvegarde des comptes utilisateurs..."
-#. -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
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Appuyez sur <Entree> pour demarrer, sur <e> pour modifier la"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
+msgstr "Sauvegarde sur disque dur..."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
-msgstr "Set-GID"
+#: ../../standalone/drakbackup_.c:1290
+msgid "Backup Other files..."
+msgstr "Sauvegarde des autres fichiers..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "The encryption keys do not match"
-msgstr "Les clefs de chiffrement ne correspondent pas"
+#: ../../standalone/drakbackup_.c:1296
+msgid "No changes to backup!"
+msgstr "Pas de changement à sauvegarder!"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, c-format
msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-"Pour un CD multisession, seulement la première session va effacer le CD/RW. "
-"Sinon, le CD/RW est effacé avant chaque sauvegarde."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "USB printer"
-msgstr "Imprimante USB"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr "Touche « Windows » droite"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr "Si oui, vérifie les mots de passe vides dans /etc/shadow."
+"\n"
+"activités de Drakbackup par %s :\n"
+"\n"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
+#: ../../standalone/drakbackup_.c:1319
#, 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."
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-"Avant d'aller plus loin, il est fortement recommandé de lire attentivement\n"
-"les termes et conditions d'utilisations de la licence. Celle-ci régit\n"
-"l'ensemble de la distribution Mandrake Linux. Si vous en acceptez tous les\n"
-"termes, cochez la case « %s », sinon, éteignez simplement votre ordinateur."
+"liste des fichiers envoyée par FTP : %s\n"
+" "
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1322
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
"\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
msgstr ""
-"Voici la listes des options d'impression disponibles pour l'imprimante "
-"courante :\n"
"\n"
+"Problème de connection FTP: impossible d'envoyer vos fichiers de sauvegarde "
+"par FTP.\n"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "Résolutions"
-
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1340
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."
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-"Configuration de drakfirewall\n"
"\n"
-"Ceci configure un Pare-Feu (firewall) personnel pour votre machine Mandrake "
-"Linux.\n"
-"Si vous souhaitez un Pare-Feu dédié plus puissant, tournez-vous plutôt vers\n"
-"la distribution spécialisée « MandrakeSecurity »."
+"activités de Drakbackup par CD:\n"
+"\n"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1345
msgid ""
-"Please enter your username, password and domain name to access this host."
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-"Veuillez entrer vos nom d'utilisateur, mot de passe et nom de domaine pour "
-"accéder à ce serveur"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Remove selected host"
-msgstr "Supprimer l'hôte sélectionné"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network configuration"
-msgstr "Configuration du réseau"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "/Auto-détecter les périphériques Jaz"
-
-#: ../../any.pm:1
-#, c-format
-msgid "No sharing"
-msgstr "Pas de partage"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule down one level"
-msgstr "Abaisser la prioriété de la règle d'un niveau"
+"\n"
+"activités de Drakbackup par cartouche :\n"
+"\n"
-#: ../../common.pm:1
-#, c-format
-msgid "TB"
-msgstr "To"
+#: ../../standalone/drakbackup_.c:1354
+msgid " Error during mail sending. \n"
+msgstr "Erreur lors de l'envoi du courrier.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "FATAL"
-msgstr "FATALE"
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
+msgstr "Ne peut créer le catalogue!"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Refresh the list"
-msgstr "Rafraîchir la liste"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+msgid "File Selection"
+msgstr "Sélection de fichiers ou répertoires"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-" - Fichier par client %s :\n"
-" \t\tAvec clusternfs, chaque client léger peut avoir son propre "
-"fichier de configuration unique\n"
-" \t\tsur la partition racine du serveur. DrakTermServ permettra plus "
-"tard de créer ces fichiers."
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
+msgstr "Sélectionnez les fichiers ou répertoires puis cliquez sur « Ajouter »"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1573
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"
+"Please check all options that you need.\n"
msgstr ""
-"Le serveur DHCP permettra aux autres ordinateurs de s'amorcer en utilisant "
-"le PXE dans la plage d'adresses donnée.\n"
"\n"
-"L'adresse réseau est %s, avec le masque %s.\n"
-"\n"
-
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete"
-msgstr "Supprimer"
+"Veuillez cocher toutes les options dont vous avez besoin.\n"
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1574
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?"
+"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-"Souhaitez-vous que l'interface graphique soit\n"
-"automatiquement lancée lors du démarrage ?"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
-msgstr "Créer la disquette"
+"Ces options peuvent sauvegarder et restaurer\n"
+"tous les fichiers du répertoire de configuration système « /etc »\n"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnect %s"
-msgstr "Déconnecter %s"
+#: ../../standalone/drakbackup_.c:1575
+msgid "Backup your System files. (/etc directory)"
+msgstr "Sauvegarder vos fichiers système (répertoire /etc)"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Status:"
-msgstr "État :"
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
+msgstr "Sauvegardes incrémentales (économie d'espace)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "Serveur mandataire HTTP"
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
+msgstr "Ne pas inclure les fichiers critiques (passwd, group, fstab)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "SSH Server"
-msgstr "Serveur SSH"
+#: ../../standalone/drakbackup_.c:1578
+msgid ""
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
+msgstr ""
+"Note : la sauvegarde incrémentale n'écrase pas les anciennes sauvegardes."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
-msgstr "\t-celle par rsync.\n"
+#: ../../standalone/drakbackup_.c:1595
+msgid "Please check all users that you want to include in your backup."
+msgstr "Veuillez cocher tous les comptes utilisateurs à sauvegarder"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "European protocol"
-msgstr "Protocole pour l'Europe"
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
+msgstr "Ne pas inclure le cache du navigateur internet (fichiers tampon)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ", imprimante « %s » sur serveur « %s »"
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
+msgstr "Sauvegardes incrémentales (économie d'espace)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
-msgstr ""
-"Tenez compte du fait qu'actuellement tous les médias réseaux utilisent "
-"également le disque dur."
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+msgid "Remove Selected"
+msgstr "Supprimer sélection"
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
-#, c-format
-msgid "Error"
-msgstr "Erreur"
+#: ../../standalone/drakbackup_.c:1679
+msgid "Windows (FAT32)"
+msgstr "Windows (FAT32)"
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
-msgstr "autoriser « su »"
+#: ../../standalone/drakbackup_.c:1714
+msgid "Users"
+msgstr "Utilisateurs..."
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Australia"
-msgstr "Australie"
+#: ../../standalone/drakbackup_.c:1740
+msgid "Use network connection to backup"
+msgstr "Sauvegarder via le réseau"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
-msgstr "Veuillez patienter pendant « ttmkfdir »"
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
+msgstr "Méthode NET:"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Configurer seulement la carte « %s » %s"
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
+msgstr "Utiliser Expect pour SSH"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Level"
-msgstr "Niveau"
+#: ../../standalone/drakbackup_.c:1747
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+"Créer/Transférer\n"
+"les clés de sauvegardes pour SSH."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Change the printing system"
-msgstr "Changer le système d'impression"
+#: ../../standalone/drakbackup_.c:1748
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+"Transfert \n"
+"Maintenant"
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1749
msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-"Votre système peut utiliser simultanément plusieurs écrans.\n"
-"Que souhaitez-vous faire ?"
+"D'autres clefs (pas de\n"
+"drakbackup sont déjà en place"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
-msgstr "Le montage a échoué : "
+#: ../../standalone/drakbackup_.c:1753
+msgid "Please enter the host name or IP."
+msgstr "Nom d'hôte ou adresse IP de la machine de sauvegarde"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "Configuration des services"
+#: ../../standalone/drakbackup_.c:1758
+msgid ""
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
+msgstr "Dossier ou module où poser la sauvegarde sur cette machine"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
-msgstr "Adresse de diffusion (broadcast) :"
+#: ../../standalone/drakbackup_.c:1763
+msgid "Please enter your login"
+msgstr "Nom de connexion sur cette machine"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"the GNU/Linux kernel needs to run a calculation loop at boot time to "
-"initialize a timer counter. Its result is stored as bogomips as a way to "
-"\"benchmark\" the cpu."
-msgstr ""
-"le noyau Linux doit exécuter une boucle de calcul au démarrage pour "
-"initialiser un compteur d'horloge. Le résultat est donné sous la forme de "
-"bogomips et donne une indication sur les performances du processeur."
+#: ../../standalone/drakbackup_.c:1768
+msgid "Please enter your password"
+msgstr "Veuillez entrer votre mot de passe"
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "Image"
+#: ../../standalone/drakbackup_.c:1774
+msgid "Remember this password"
+msgstr "Se souvenir du mot de passe"
-#: ../../services.pm:1
-#, c-format
-msgid "Remote Administration"
-msgstr "Administration à distance"
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
+msgstr ""
+"Le nom d'hôte, le nom d'utilisateur et le mot de passe dont nécessaires!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-msgstr "Impossible d'ajouter l'imprimante « %s » à StarOffice/OpenOffice"
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
+msgstr "Sauvegarder sur CDR (ou DVDR)"
-#: ../../modules.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1882
msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-"Le support du PCMCIA n'est plus disponible avec les noyaux 2.2. Veuillez "
-"utiliser un noyau 2.4."
+"SVP choisissez votre lecteur CD/DVD\n"
+"(Appuyer sur Entrée pour étendre les paramètres aux\n"
+"autres champs. Ce champ n'est pas indispensable et ne sert que d'info)."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Selected All"
-msgstr "Sélectionne tout"
+#: ../../standalone/drakbackup_.c:1887
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Veuillez choisir la taille de votre CD/DVD"
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
+#: ../../standalone/drakbackup_.c:1893
+msgid "Please check for multisession CD"
+msgstr "Vérifier le CD multisession"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Webmin Service"
-msgstr "Service Webmin"
+#: ../../standalone/drakbackup_.c:1899
+msgid "Please check if you are using CDRW media"
+msgstr "CD Réinscriptible"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
-msgstr "périphérique"
+#: ../../standalone/drakbackup_.c:1905
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr ""
+"Vérifiez si vous voulez effacer votre support réinscriptible (1ere session)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory to save to:"
-msgstr "Veuillez indiquer le dossier où sauvegarder :"
+#: ../../standalone/drakbackup_.c:1906
+msgid " Erase Now "
+msgstr "Effacer maintenant"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Greece"
-msgstr "Grèce"
+#: ../../standalone/drakbackup_.c:1912
+msgid "Please check if you are using a DVDR device"
+msgstr "Vérifier que vous utilisez bien un DVDR"
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "Tout"
+#: ../../standalone/drakbackup_.c:1918
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Vérifier que vous utilisez bien un DVDRAM"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Quel système d'impression désirez-vous utiliser ?"
+#: ../../standalone/drakbackup_.c:1931
+msgid ""
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
+msgstr ""
+"Veuillez entrer l'emplacement de votre graveur (bus,id,lun)\n"
+"(détecter avec « cdrecord -scanbus ». Par exemple : 0,1,0 )"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
-msgstr "Juillet"
+#: ../../standalone/drakbackup_.c:1964
+msgid "No CD device defined!"
+msgstr "Pas de périphérique CD défini!"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Prints into %s"
-msgstr "Impression sur %s"
+#: ../../standalone/drakbackup_.c:2012
+msgid "Use tape to backup"
+msgstr "Sauvegarde sur cartouche"
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "Une erreur est survenue"
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
+msgstr "Nom de périphérique du matériel de sauvegarde (/dev/...?)"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Ce paquetage doit être mis à jour.\n"
-"Êtes-vous certain de vouloir le désélectionner ?"
+#: ../../standalone/drakbackup_.c:2021
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Vérifiez que vous voulez utilisez un périphérique non-rembobinable"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr "Tamoul (façon machine à écrire)"
+#: ../../standalone/drakbackup_.c:2027
+msgid "Please check if you want to erase your tape before the backup."
+msgstr ""
+"Etes vous sur de vouloir effacer votre bande magnétique avant de faire la "
+"sauvegarde."
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
-msgstr "Utiliser des mots de passe pour authentifier les utilisateurs"
+#: ../../standalone/drakbackup_.c:2033
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Vérifiez que vous voulez éjecter la bande aprés sauvegarde."
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
-msgstr ""
-"Permet/interdit la liste des utilisateurs du système sur les gestionnaires "
-"de connexion (kdm et gdm)."
-
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
-msgstr "manuel"
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
+msgstr "Taille maximale de sauvegarde :"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
-msgstr "Nom de fichier à chercher :"
+#: ../../standalone/drakbackup_.c:2103
+msgid "Please enter the directory to save to:"
+msgstr "Veuillez indiquer le dossier où sauvegarder:"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
-msgstr "Marque, modèle, pilote"
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+msgid "Use quota for backup files."
+msgstr "Limiter la taille de la sauvegarde"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-"Il n'y a aucune disquette dans le lecteur %s ou alors elle est \n"
-"protégée contre l'écriture. Veuillez vérifier ou en insérer une."
+#: ../../standalone/drakbackup_.c:2180
+msgid "Network"
+msgstr "par transfert réseau..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Directory %s already contains data\n"
-"(%s)"
-msgstr ""
-"Le dossier %s contient déjà des données\n"
-"(%s)"
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
+msgstr "CDROM / DVDROM"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Printer on NetWare server"
-msgstr "Imprimante sur serveur NetWare"
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
+msgstr "Dans un répertoire (local ou partagé)..."
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Indiquez la quantité de mémoire en Mo"
+#: ../../standalone/drakbackup_.c:2195
+msgid "Tape"
+msgstr "Bande"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr "Vendredi"
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
+msgstr "toutes les heures"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Déconnexion d'Internet effectuée."
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
+msgstr "tous les jours"
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "Nom et prénom"
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
+msgstr "toutes les semaines"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "done"
-msgstr "terminé"
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
+msgstr "tous les mois"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Veuillez le décocher ou le retirer la prochaine fois"
+#: ../../standalone/drakbackup_.c:2229
+msgid "Use daemon"
+msgstr "Sauvegarde périodique"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Higher"
-msgstr "Plus élevée"
+#: ../../standalone/drakbackup_.c:2234
+msgid ""
+"Please choose the time \n"
+"interval between each backup"
+msgstr "Veuillez choisir l'intervalle de temps entre les sauvegardes"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Sélectionnez les partitions que vous souhaitez formater"
+#: ../../standalone/drakbackup_.c:2240
+msgid ""
+"Please choose the\n"
+"media for backup."
+msgstr "Quelle sauvegarde sera périodique ?"
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2247
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"
+"Please be sure that the cron daemon is included in your services. \n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-"Aucune carte TV n'a été détectée sur votre ordinateur. Veuillez vérifier "
-"qu'une carte TV/Vidéo supportée par Linux est correctement branchée.\n"
-"\n"
-"\n"
-"Vous pouvez visiter notre base de données de support matériel à :\n"
+"Veuillez vérifier que le démon « cron » fait partie de vos services.\n"
"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't find %s on %s"
-msgstr "Ne peut trouver %s sur %s"
+"Tenez compte du fait qu'actuellement tous les médias réseaux utilisent "
+"également le disque dur."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "Japonais 106 touches"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
+msgstr "Envoyer un rapport par mail après chaque sauvegarde à :"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
-msgstr ""
-"Impossible d'installer les paquetages nécessaires au partage de vos scanners."
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr "Effacer les fichiers tar aprés sauvegarde vers un autre support."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
-msgstr "Cela va prendre quelques minutes."
+#: ../../standalone/drakbackup_.c:2324
+msgid "What"
+msgstr "Quoi..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
+#: ../../standalone/drakbackup_.c:2329
+msgid "Where"
+msgstr "Où..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "June"
-msgstr "Juin"
+#: ../../standalone/drakbackup_.c:2334
+msgid "When"
+msgstr "Quand..."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use scanners on remote computers"
-msgstr "Utiliser des scanners sur des ordinateurs distants"
+#: ../../standalone/drakbackup_.c:2339
+msgid "More Options"
+msgstr "Plus d'options..."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Delete selected rule"
-msgstr "Supprimer la règle"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+msgid "Drakbackup Configuration"
+msgstr "Configuration de sauvegarde Drakbackup"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Accès aux imprimantes sur serveurs CUPS distant..."
+#: ../../standalone/drakbackup_.c:2376
+msgid "Please choose where you want to backup"
+msgstr "Veuillez choisir où stocker la sauvegarde"
-#: ../../any.pm:1
-#, c-format
-msgid "Insert a floppy in %s"
-msgstr "Insérez une disquette dans le %s"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
+msgstr "sur disque dur"
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
-msgstr "Maldives"
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
+msgstr "par réseau"
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "compact"
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
+msgstr "sur CDROM"
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
-msgstr "1 minute"
+#: ../../standalone/drakbackup_.c:2406
+msgid "on Tape Device"
+msgstr "su Lecteur de Bande "
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "type: fat"
-msgstr "type : fat"
+#: ../../standalone/drakbackup_.c:2449
+msgid "Please choose what you want to backup"
+msgstr "Veuillez choisir ce que vous voulez sauvegarder"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "on channel %d id %d\n"
-msgstr "sur canal %d id %d\n"
+#: ../../standalone/drakbackup_.c:2450
+msgid "Backup system"
+msgstr "Sauvegarder le système"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
-msgstr ", périphérique multifonction"
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
+msgstr "Sauvegarder les comptes utilisateurs"
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr "Laos"
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
+msgstr "Sélectionner individuellement les utilisateurs"
-#: ../advertising/04-configuration.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2537
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!"
+"\n"
+"Backup Sources: \n"
msgstr ""
-"Mandrake Linux 9.2 est livrée avec Mandrake Control Center. Ce puissant "
-"logiciel vous permet d'adapter votre ordinateur à vos besoins. Configurez "
-"des éléments tels que le niveau de sécurité, vos périphériques (écran, "
-"souris, clavier...), la connexion Internet et plus encore !"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
-msgstr "Active/Désactive la vérification du mode espion des cartes réseau."
+"\n"
+"Sources de sauvegarde : \n"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
+#: ../../standalone/drakbackup_.c:2538
+msgid ""
+"\n"
+"- System Files:\n"
msgstr ""
-"Il n'y a aucune partition FAT à redimensionner (ou trop peu d'espace est "
-"disponible)"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr "Monter"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
-msgstr "Pare Feu"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr "Zone :"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr "Contrôleurs (E)IDE/ATA"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
-msgstr "Toutes les E/S sur ce système de fichier sont asynchrones."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "Nom du serveur d'impression"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Custom configuration"
-msgstr "configuration personnalisée"
+"\n"
+"- Fichiers système:\n"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2540
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"
+"- User Files:\n"
msgstr ""
-"Veuillez indiquer où les images d'installation seront disponibles.\n"
-"\n"
-"Si vous n'avez pas de dossier existant, veuillez copier le contenu du CD ou "
-"du DVD.\n"
"\n"
+"- Données des utilisateurs :\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr "Saint-Pierre-et-Miquelon"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
-msgstr "Septembre"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr "sauvegarde du thème de démarrage..."
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
-msgstr "Portugal"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "En possédez-vous d'autres ?"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", printing to %s"
-msgstr ", impression sur %s"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Affecter le nom d'hôte à partir de l'adresse DHCP"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to normal mode"
-msgstr "Passer en mode normal"
+#: ../../standalone/drakbackup_.c:2542
+msgid ""
+"\n"
+"- Other Files:\n"
+msgstr ""
+"\n"
+"- Autres fichiers ou répertoires :\n"
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
+#: ../../standalone/drakbackup_.c:2544
#, c-format
-msgid "Generic"
-msgstr "Générique"
+msgid ""
+"\n"
+"- Save on Hard drive on path: %s\n"
+msgstr ""
+"\n"
+"- Sauvegarde sur le disque dur dans le répertoire : %s\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Cylindre %d à %d\n"
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+"\n"
+"- Efface les fichiers du disque dur aprés sauvegarde.\n"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
-msgstr "VOTRE TEXTE ICI"
+#: ../../standalone/drakbackup_.c:2553
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+"\n"
+"- Graver le CD"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "New profile..."
-msgstr "Nouveau profil..."
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
+msgstr "RW"
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
+#: ../../standalone/drakbackup_.c:2555
#, c-format
-msgid "NONE"
-msgstr "AUCUN"
+msgid " on device: %s"
+msgstr "sur le périphérique : %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "Sur quel disque souhaitez-vous la déplacer ?"
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
+msgstr " (multi-session)"
-#: ../../standalone/draksplash:1
+#: ../../standalone/drakbackup_.c:2557
#, c-format
-msgid "Display logo on Console"
-msgstr "Affiche le logo dans la console"
+msgid ""
+"\n"
+"- Save to Tape on device: %s"
+msgstr ""
+"\n"
+"- Sauvegarde sur bande via le périphérique : %s"
-#: ../../any.pm:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "Windows Domain"
-msgstr "Domaine Windows"
+msgid "\t\tErase=%s"
+msgstr "\t\tEfface=%s"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:2561
#, c-format
-msgid "Saami (norwegian)"
-msgstr "Saami (norvégien)"
+msgid ""
+"\n"
+"- Save via %s on host: %s\n"
+msgstr ""
+"\n"
+"- Sauvegarde via %s sur la machine : %s\n"
-#: ../../standalone/drakpxe:1
+#: ../../standalone/drakbackup_.c:2562
#, c-format
-msgid "Interface %s (on network %s)"
-msgstr "Interface %s (sur le réseau %s)"
+msgid ""
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
+msgstr ""
+"\t\t nom de connexion : %s\n"
+"\t\t dans le répertoire : %s \n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
-msgstr "INFO"
+#: ../../standalone/drakbackup_.c:2563
+msgid ""
+"\n"
+"- Options:\n"
+msgstr ""
+"\n"
+"- Options:\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
-msgstr "Wallis et Futuna, îles"
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
+msgstr "\tFichiers systèmes non inclus\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr "Il faut d'abord créer /etc/dhcpd.conf !"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
+msgstr "\tLe sauvegarde utilise « tar » et « bzip2 »\n"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
-msgstr "Coprocesseur arithmétique présent"
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
+msgstr "\tLa sauvegarde utilise « tar » et « gzip »\n"
-#: ../../services.pm:1
+#: ../../standalone/drakbackup_.c:2572
#, c-format
msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr "Pas d'autre information au sujet de ce service, désolé."
+"\n"
+"- Daemon (%s) include:\n"
+msgstr ""
+"\n"
+"- Le Démon (%s) comprend :\n"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr "Aucun scanner trouvé disponible sur votre système.\n"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
+msgstr "\t-celle sur Disque dur.\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
-msgstr "Construire un NIC unique -->"
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
+msgstr "\t-celle sur CDR.\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
-msgstr "Îles Marshall"
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
+msgstr "\t-Bande\n"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "Est-ce correct ?"
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
+msgstr "\t-celle par transfert FTP.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Windows (FAT32)"
-msgstr "Windows (FAT32)"
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
+msgstr "\t-celle par transfert SSH.\n"
-#: ../../steps.pm:1
-#, c-format
-msgid "Root password"
-msgstr "Mot de passe root"
+#: ../../standalone/drakbackup_.c:2578
+msgid "\t-Network by rsync.\n"
+msgstr "\t-celle par rsync.\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
-msgstr "Construire tous les noyaux -->"
+#: ../../standalone/drakbackup_.c:2579
+msgid "\t-Network by webdav.\n"
+msgstr "\t-celle par webdav.\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVDRAM device"
-msgstr "périphérique DVDRAM"
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
+msgstr ""
+"La configuration de sauvegarde n'est pas encore définie. \n"
+"Veuillez cliquer sur « Configuration par assistant », ou « Configuration "
+"manuelle »\n"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
-msgstr "Si oui, cherche des fichiers sans propriétaire."
+#: ../../standalone/drakbackup_.c:2587
+msgid ""
+"List of data to restore:\n"
+"\n"
+msgstr ""
+"Liste de données à restaurer :\n"
+"\n"
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2754
msgid ""
-"You don't have a swap partition.\n"
+"List of data corrupted:\n"
"\n"
-"Continue anyway?"
msgstr ""
-"Vous n'avez pas de partition d'échange (swap).\n"
+"Liste des données corrompues :\n"
"\n"
-"Désirez-vous tout de même continuer ?"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Version: "
-msgstr "Version :"
+#: ../../standalone/drakbackup_.c:2756
+msgid "Please uncheck or remove it on next time."
+msgstr "Veuillez le décocher ou le retirer la prochaine fois"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Server IP missing!"
-msgstr "Adresse IP du serveur manquante !"
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
+msgstr "Les fichiers de sauvegarde sont corrompus"
-#: ../../lang.pm:1
-#, c-format
-msgid "Suriname"
-msgstr "Suriname"
+#: ../../standalone/drakbackup_.c:2787
+msgid " All of your selected data have been "
+msgstr " Toutse vos données sélectionnées ont été "
-#: ../../network/adsl.pm:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "Use a floppy"
-msgstr "Utiliser une disquette"
+msgid " Successfuly Restored on %s "
+msgstr ""
+" correctement restaurées en prenant « %s » comme répertoire racine "
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
-msgstr "Activer l'ACPI"
+#: ../../standalone/drakbackup_.c:2906
+msgid " Restore Configuration "
+msgstr " Restauration de la configuration "
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
-msgstr "Donner l'accès en écriture aux utilisateurs ordinaires."
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
+msgstr "OK pour restaurer les autres fichiers."
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
-msgstr "Environnement graphique"
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
+msgstr "Fichiers de sauvegarde à restaurer (seul le plus récent compte)"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
-msgstr "Gibraltar"
+#: ../../standalone/drakbackup_.c:3019
+msgid "Backup the system files before:"
+msgstr "Sauvegarder les fichiers système avant :"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Do nothing"
-msgstr "Ne rien faire"
+#: ../../standalone/drakbackup_.c:3021
+msgid "please choose the date to restore"
+msgstr "Veuillez choisir la date à restaurer"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Delete Client"
-msgstr "Effacer un client"
+#: ../../standalone/drakbackup_.c:3057
+msgid "Use Hard Disk to backup"
+msgstr "Sauvegarde sur disque dur"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "Type du système de fichiers : "
+#: ../../standalone/drakbackup_.c:3060
+msgid "Please enter the directory to save:"
+msgstr "Dossier où poser la sauvegarde :"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting network..."
-msgstr "Démarrage du réseau..."
+#: ../../standalone/drakbackup_.c:3103
+msgid "FTP Connection"
+msgstr "par connexion FTP..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Vietnam"
-msgstr "Vietnam"
+#: ../../standalone/drakbackup_.c:3110
+msgid "Secure Connection"
+msgstr "par connexion sécurisée..."
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "/_Fields description"
-msgstr "/_Description des champs"
+#: ../../standalone/drakbackup_.c:3134
+msgid "Restore from Hard Disk."
+msgstr "Restaurer à partir d'un répertoire"
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
-msgstr "Optimisez votre sécurité en utilisant Mandrake Linux"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
+msgstr "Veuillez entrer le répertoire où résident les sauvegardes"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-" Remerciements :\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
+#: ../../standalone/drakbackup_.c:3204
+msgid "Select another media to restore from"
+msgstr "Choisir un autre support de sauvegarde"
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Help"
-msgstr "Aide"
+#: ../../standalone/drakbackup_.c:3206
+msgid "Other Media"
+msgstr "Autre support"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
-msgstr "Vérifier l'utilisation du mode espion par les périphériques réseaux"
+#: ../../standalone/drakbackup_.c:3211
+msgid "Restore system"
+msgstr "Restaurer le système"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Your personal phone number"
-msgstr "Votre numéro de téléphone personnel"
+#: ../../standalone/drakbackup_.c:3212
+msgid "Restore Users"
+msgstr "Restaurer les comptes utilisateurs"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which size do you want to keep for Windows on"
-msgstr "Quelle taille désirez-vous allouer à Windows sur la"
+#: ../../standalone/drakbackup_.c:3213
+msgid "Restore Other"
+msgstr "Restaurer les autres fichiers ou répertoires"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-msgstr ""
-"Les pages de test ont été envoyées à l'imprimante.\n"
-"Il peut se passer un certain temps avant le début effectif de l'impression.\n"
+#: ../../standalone/drakbackup_.c:3215
+msgid "select path to restore (instead of /)"
+msgstr "Choisir un chemin de restauration ( au lieu de / )"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Username required"
-msgstr "Nom d'utilisateur nécessaire"
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
+msgstr "Nouvelle sauvegarde avant restauration (seulement pour l'incrémental)"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Device"
-msgstr "Périphérique"
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
+msgstr "Retirer les répertoires personnels ds utilisateurs avant restauration"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+# whom is selected, the entry or the catalog?
+#: ../../standalone/drakbackup_.c:3334
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."
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-"Selon la langue principale que vous avez choisie à l'étape , DrakX\n"
-"sélectionne le clavier approprié. Cela dit, il est possible que vous ayez\n"
-"un clavier ne correspondant pas exactement à votre langue d'utilisation.\n"
-"Par exemple, si vous habitez le Québec et parlez le français et l'anglais,\n"
-"vous pouvez vouloir avoir votre clavier anglais pour les tâches\n"
-"d'administration système et votre clavier français pour écrire de la\n"
-"poésie. Dans ces cas, il vous faudra revenir à cette étape d'installation\n"
-"et sélectionner un autre clavier à partir de la liste.\n"
-"\n"
-"Cliquez sur « %s » pour voir toutes les options proposées.\n"
-"\n"
-"Si vous choisissez un clavier basé sur un alphabet non-latin, on vous\n"
-"demandera au prochain écran de choisir la combinaison de clés permettant\n"
-"d'alterner entre ceux-ci."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Configuration d'une imprimante SMB (Windows 9x/NT)"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
-msgstr "URI: %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
-msgstr "Liste d'utilisateurs modifiée. Réécriture du fichier de configuration."
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "mkinitrd optional arguments"
-msgstr "arguments optionnels pour mkinitrd"
+"Rétablir l'entrée\n"
+"du catalogue choisi."
-#: ../advertising/03-software.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3344
msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
+"Restore Selected\n"
+"Files"
msgstr ""
-"Consultez des sites Web avec Mozilla ou Konqueror. Lisez votre courrier avec "
-"Evolution ou Kmail. Créez vos documents avec OpenOffice.org."
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Protocole pour le reste du monde"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print test pages"
-msgstr "Imprimer des pages de test"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Activate now"
-msgstr "Activer maintenant"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
-msgstr "64 Mo ou plus"
+"Restaurer les\n"
+"fichiers choisis"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3361
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."
+"Change\n"
+"Restore Path"
msgstr ""
-"Merci de sélectionner les pages de test que vous voulez imprimer.\n"
-"Note : la page de test photo peut prendre un temps assez long pour "
-"s'imprimer, et sur les imprimantes laser avec trop peu de mémoire, elle peut "
-"même ne pas sortir.\n"
-"Dans la plupart des cas, l'impression de la page de test standard suffit."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr "Veuillez sélectionner le périphérique sur lequel %s est branché"
+"Changer le\n"
+"chemin de sauvegarde"
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup_.c:3427
#, c-format
-msgid "Not formatted\n"
-msgstr "Non formatée\n"
+msgid "Backup files not found at %s."
+msgstr "Fichiers de sauvegardes non trouvés sur %s."
-#: ../../standalone/draksec:1
+#: ../../standalone/drakbackup_.c:3440
#, c-format
-msgid "Periodic Checks"
-msgstr "Vérifications périodiques"
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+"Insérez le CD %s dans le lecteur correspondant\n"
+"au point de montage /mnt/cdrom"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "PXE Server Configuration"
-msgstr "Configuration du serveur PXE"
+#: ../../standalone/drakbackup_.c:3440
+msgid "Restore From CD"
+msgstr "Restaurer à partir d'un CD"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:3442
#, c-format
-msgid "Backup the system files before:"
-msgstr "Sauvegarder les fichiers système avant :"
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr "Ce n'est pas le bon CD. Celui-ci est intitulé %s."
-#: ../../security/level.pm:1
+#: ../../standalone/drakbackup_.c:3452
#, c-format
msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
-"Ceci est le niveau de sécurité standard recommandé pour un ordinateur \n"
-"utilisé pour se connecter à Internet en tant que client."
-
-#: ../../any.pm:1
-#, c-format
-msgid "First floppy drive"
-msgstr "Premier lecteur de disquette"
+"Insérez la bande ayant pour nom %s\n"
+"dans le lecteur de bande %s."
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Fichier/_Quitter"
+#: ../../standalone/drakbackup_.c:3452
+msgid "Restore From Tape"
+msgstr "Restaurer à partir d'une bande"
-#: ../../keyboard.pm:1
+#: ../../standalone/drakbackup_.c:3454
#, c-format
-msgid "Dvorak"
-msgstr "Dvorak standard"
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr "Ce n'est pas la bonne bande. Celle-ci s'appelle %s."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose the new size"
-msgstr "Choisissez la nouvelle taille"
+#: ../../standalone/drakbackup_.c:3474
+msgid "Restore Via Network"
+msgstr "Restaurer à partir du réseau"
-#: ../../standalone/harddrake2:1
+#: ../../standalone/drakbackup_.c:3474
#, c-format
-msgid "Media class"
-msgstr "Classe de matériel"
+msgid "Restore Via Network Protocol: %s"
+msgstr "Restaurer via le Protocole Réseau: %s"
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "You need to log out and back in again for changes to take effect"
-msgstr ""
-"Vous devez vous déconnecter puis vous connecter à nouveau afin de prendre "
-"les changements en considération"
+#: ../../standalone/drakbackup_.c:3475
+msgid "Host Name"
+msgstr "Nom d'hôte"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
-msgstr "%s n'est pas supporté par cette version de Scannerdrake."
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
+msgstr "Chemin de l'hôte ou du module"
-#: ../../lang.pm:1
-#, c-format
-msgid "Faroe Islands"
-msgstr "Îles Faroe"
+#: ../../standalone/drakbackup_.c:3483
+msgid "Password required"
+msgstr "Mot de passe nécessaire"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Restart XFS"
-msgstr "Relancer le serveur de polices"
+#: ../../standalone/drakbackup_.c:3489
+msgid "Username required"
+msgstr "Nom d'utilisateur nécessaire"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
-msgstr "Ajouter un hôte/réseau"
+#: ../../standalone/drakbackup_.c:3492
+msgid "Hostname required"
+msgstr "Nom de machine nécessaire"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake will not be started now."
-msgstr "ScannerDrake ne sera pas lancé tout de suite."
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
+msgstr "Le chemin ou le module est nécessaire"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Model name"
-msgstr "Nom du modèle"
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
+msgstr "Fichiers restaurés..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
-msgstr "Albanie"
+#: ../../standalone/drakbackup_.c:3513
+msgid "Restore Failed..."
+msgstr "Echec de la restauration..."
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
-msgstr "Territoire Britannique de l'océan Indien"
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
+msgstr "Restaurer toutes les sauvegardes..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Normal Mode"
-msgstr "Mode normal"
+#: ../../standalone/drakbackup_.c:3760
+msgid "Custom Restore"
+msgstr "Restauration personnalisée..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
-msgstr "Il n'y a pas de CDR/DVDR dans le lecteur !"
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
+msgstr "Le CD et en place - continuer."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer connection type"
-msgstr "Type de connexion"
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
+msgstr "Naviguer dans le nouvel emplacement de sauvegarde."
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
-msgstr "Aucune carte réseau n'est présente dans votre système"
+#: ../../standalone/drakbackup_.c:3813
+msgid "Restore From Catalog"
+msgstr "Restaurer à partir d'un catalogue"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network %s"
-msgstr "Réseau %s"
+#: ../../standalone/drakbackup_.c:3841
+msgid "Restore Progress"
+msgstr "Avancement de la restauration"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
-msgstr "Malayalam"
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+msgid "Previous"
+msgstr "<- Précédent"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
-msgstr "L'option %s est en dehors des limites !"
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+msgid "Save"
+msgstr "Valider"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Connect %s"
-msgstr "Connecter %s"
+#: ../../standalone/drakbackup_.c:3946
+msgid "Build Backup"
+msgstr "Sauvegarder !"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting CUPS..."
-msgstr "Redémarrage de CUPS..."
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+msgid "Restore"
+msgstr "Restaurer !"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Impression/Acquisition/Cartes photo sur « %s »"
+#: ../../standalone/drakbackup_.c:4189
+msgid ""
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
+msgstr ""
+"Impossible d'envoyer un courrier\n"
+" Votre rapport n'a pas été envoyé.\n"
+" Veuillez configurer « sendmail »"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
-msgstr "Continuer sans clé USB"
+#: ../../standalone/drakbackup_.c:4195
+msgid ""
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
+msgstr ""
+"Erreur pendant l'envoi du fichier par FTP.\n"
+" Veuillez corriger votre configuration FTP"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Point de montage en double : %s"
+#: ../../standalone/drakbackup_.c:4209
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr ""
+"Les paquetages suivants doivent être installés :\n"
+" @list_of_rpm_to_install"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
-msgstr "Si oui, vérifie l'absence de rootkit via chkrootkits."
+#: ../../standalone/drakbackup_.c:4232
+msgid "Please select data to restore..."
+msgstr "Veuillez choisir les données à restaurer..."
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "Configuration de la connexion"
+#: ../../standalone/drakbackup_.c:4267
+msgid "Please select media for backup..."
+msgstr "Veuillez choisir le support de sauvegarde..."
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|Generic"
-msgstr "Inconnu|Générique"
+#: ../../standalone/drakbackup_.c:4275
+msgid "Please select data to backup..."
+msgstr "Veuillez choisir les données à sauvegarder..."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
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."
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-"Au moment où vous êtes en train d'installer Mandrake Linux, il est possible\n"
-"que certains paquetages aient été mis à jour depuis la sortie du produit.\n"
-"Des bogues ont pu être corrigés, et des problèmes de sécurité résolus. Pour\n"
-"vous permettre de bénéficier de ces mises à jour, il vous est maintenant\n"
-"proposé de les télécharger depuis Internet. Choisissez « %s » si vous avez\n"
-"une connexion Internet, ou « %s » si vous préférez installer les mises à\n"
-"jour plus tard.\n"
-"\n"
-"En choisissant « %s », la liste des sites depuis lesquels les mises à jour\n"
-"peuvent être téléchargées est affichée. Choisissez le site le plus proche.\n"
-"Puis un arbre de choix des paquetages apparaît : vérifiez la sélection,\n"
-"puis cliquez sur « %s » pour télé-charger et installer les mises à jour\n"
-"sélectionnées, ou « %s » pour abandonner."
+"La configuration de sauvegarde n'est pas encore définie. \n"
+"Veuillez cliquer sur « Configuration par assistant », ou « Configuration "
+"manuelle »"
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-msgstr "Birmanie"
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
+msgstr "En développement ... veuillez patienter."
-#: ../../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
-#, c-format
-msgid "Quit"
-msgstr "Quitter"
+#: ../../standalone/drakbackup_.c:4382
+msgid "Backup system files"
+msgstr "Sauvegarde des fichiers systèmes..."
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
-msgstr "Partitionnement automatique"
+#: ../../standalone/drakbackup_.c:4384
+msgid "Backup user files"
+msgstr "Sauvegarde des comptes utilisateurs..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
-msgstr "Vérifier la présence de secteurs endommagés ?"
+#: ../../standalone/drakbackup_.c:4386
+msgid "Backup other files"
+msgstr "Sauvegarde des autres fichiers ou répertoires..."
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Other MultiMedia devices"
-msgstr "Autre périphériques multimédia"
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
+msgstr "TOTAL :"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "burner"
-msgstr "graveur"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
+msgstr "Envoi par FTP"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Bug Description/System Information"
-msgstr "Description de l'erreur/Informations Système"
+#: ../../standalone/drakbackup_.c:4416
+msgid "Sending files..."
+msgstr "Envoi des fichiers..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (Default is all users)"
-msgstr "(par défaut, tous les utilisateurs)"
+#: ../../standalone/drakbackup_.c:4500
+msgid "Backup Now from configuration file"
+msgstr "Sauvegarder à partir de la configuration définie"
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "No remote machines"
-msgstr "Pas de machine distante"
+#: ../../standalone/drakbackup_.c:4505
+msgid "View Backup Configuration."
+msgstr "Voir la configuration de sauvegarde"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4526
+msgid "Wizard Configuration"
+msgstr "Configuration par assistant"
+
+#: ../../standalone/drakbackup_.c:4531
+msgid "Advanced Configuration"
+msgstr "Configuration manuelle"
+
+#: ../../standalone/drakbackup_.c:4536
+msgid "Backup Now"
+msgstr "Sauvegarder !"
+
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
+msgstr "Drakbackup"
+
+#: ../../standalone/drakbackup_.c:4624
msgid ""
+"options description:\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
+" In this step Drakbackup allow you to change:\n"
"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\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 option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
msgstr ""
+"description des options :\n"
"\n"
-"Bienvenue dans l'assistant de configuration d'imprimante\n"
+" À cette étape, Drakbackup vous permet de changer :\n"
"\n"
-"Cet assistant vous aidera à installer les imprimantes connectées à cet "
-"ordinateur.\n"
+" - Le mode de compression :\n"
+" \n"
+" Si vous cochez la compression bzip2, vous compresserez\n"
+" mieux qu'avec gzip (de 2 à 10 %).\n"
+" Cette option n'est pas choisie par défaut\n"
+" parce qu'elle est beaucoup plus lente (1000% de plus).\n"
+" \n"
+" - Le mode de mise-à-jour:\n"
"\n"
-"Si vous avez des imprimantes branchées sur cet ordinateur, veuillez les "
-"allumer afin qu'elles soient détectées automatiquement.\n"
+" Cette option mets à jour votre sauvegarde, mais\n"
+" n'est pas vraiment utile car vous devez la\n"
+" décompresser avant de la mettre à jour.\n"
+" \n"
+" - le mode .backupignore :\n"
+"\n"
+" Comme avec CVS, Drakbackup va ignorer les références\n"
+" incluses dans les fichiers .backupignore de chaque répertoire.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
"\n"
-"Cliquez sur « suivant » quand vous êtes prêt, ou sur « annuler » si vous ne "
-"voulez pas configurer d'imprimante maintenant."
-
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "Authentification NIS"
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4654
msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-"L'option ``Restrict command line options'' est inutile sans mot de passe"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Le partage de la connexion internet est activé"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "Émirats Arabes Unis"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "E/S_O de la carte"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
-msgstr "Désactive la Configuration Locale"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "Thaïlande"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "E/S_1 de la carte"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
-msgstr "Chercher:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
-msgstr "Kazakhstan"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
-msgstr "Routeurs :"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Write"
-msgstr "Écriture"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr "Afficher toutes les imprimantes CUPS distantes"
-
-#: ../../install_steps_newt.pm:1
-#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Installation de Mandrake Linux %s"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
-msgstr "Pilote inconnu"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
-msgstr "Thaïlandais"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr "Île Bouvet"
-
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "Options d'appel"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr "631 sera le port utilisé par défaut"
+"\n"
+" Certaines erreurs lors de l'envoi de mails peuvent être causées par\n"
+" une mauvaise configuration de postfix. Pour le résoudre, vous devez\n"
+" configurer le nom de machine ou de domaine dans /etc/postfix/main.cf.\n"
+"\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4662
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 ""
-" - Fichiers de configuration système par client :\n"
-" \tAvec clusternfs, chaque client léger peut avoir ses propres "
-"fichiers de configuration\n"
-" \tsur la partition racine du serveur. En permettant la configuration "
-"matérielle locale,\n"
-"\tles clients peuvent personnaliser des fichiers comme /etc/modules.conf,\n"
-" \t/etc/sysconfig/mouse, /etc/sysconfig/keyboard, de façon séparée "
-"pour chaque client.\n"
-"\n"
-" Note : activer la configuration matérielle locale ne permet pas la "
-"connexion en root sur\n"
-" le serveur terminal de chaque machine cliente sur laquelle ce "
-"paramètre est activé.\n"
-" La configuration locale peut être à nouveau désactivée, en "
-"conservant les fichers de\n"
-" configuration, une fois que la machine cliente est configurée."
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Change your Cd-Rom!\n"
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\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 ""
-"--Changement de CD-Rom--\n"
+"description des options :\n"
+"\n"
+" - Sauvegarde des fichiers systèmes :\n"
+" \n"
+"\tCette option vous permet de sauvegarder votre répertoire /etc,\n"
+"\tqui contient tous les fichiers de configuration. Faites attention\n"
+"\tpendant la restauration de ne pas écraser :\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Sauvegarde des comptes utilisateurs :\n"
+"\n"
+"\tCette option vous permet de choisir les utilisateurs \n"
+"\tà sauvegarder.\n"
+"\tPour préserver l'espace disque, il est recommandé\n"
+"\tde ne pas inclure les répertoire « cache » des navigateurs.\n"
+"\n"
+" - Sauvegarde des autres fichiers : \n"
+"\n"
+"\tCette option vous permet d'ajouter d'autres données\n"
+"\tà sauvegarder. Pour l'instant il n'est pas possible de faire\n"
+"\tune sauvegarde incrémentale avec cette option.\t\t\n"
+" \n"
+" - Sauvegardes incrémentales:\n"
+"\n"
+"\tLa sauvegarde incrémentale est l'option la \n"
+"\tplus puissante pour la sauvegarde. Elle vous permet \n"
+"\tde tout sauver la première fois, puis seulement les \n"
+"\tchangements les fois suivantes.\n"
+"\tAinsi vous serez capable de restaurer les données\n"
+"\tcorrespondant à n'importe quelle sauvegarde précédente.\n"
+"\t\n"
+"\tSi vous n'avez pas sélectionné cette option, toutes\n"
+"\tvos sauvegardes précédentes sont préalablement éffacées. \n"
"\n"
-"Veuillez insérer le CD-Rom nommé « %s »,\n"
-"puis cliquez sur « OK ».\n"
"\n"
-"Si vous ne le possédez pas, cliquez sur « Annuler » afin de ne rien "
-"installer à partir de ce Cd-Rom."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "Polonais"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Online"
-msgstr "Mandrake Online"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
-msgstr "\t-celle par webdav.\n"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on a parallel port"
-msgstr ", périphérique multifonction sur port parallèle"
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4701
msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
+"\n"
msgstr ""
-"Aucune carte réseau n'a été détectée sur votre système. Veuillez utiliser "
-"l'outil de configuration du matériel."
-
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
-msgstr "Masque de sous-réseau"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "No hard drives found"
-msgstr "Aucun disque dur trouvé"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "2 boutons"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
-msgstr "Quel est le type de votre connexion RNIS/ISDN ?"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "Label"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "Sauvegarder sur disquette..."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check open ports"
-msgstr "Vérifier la liste des ports ouverts"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Edit selected printer"
-msgstr "Modifier l'imprimante sélectionné"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection"
-msgstr "détection automatique d'imprimantes"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Parmis les choix suivants, lequel correspond à votre carte RNIS/ISDN ?"
+"description de la restauration :\n"
+" \n"
+"Seule la date de sauvegarde choisie la plus récente sera utilisée, car avec\n"
+"le mode incrémental, toutes les sauvegardes précédentes doivent être "
+"restaurées.\n"
+"\n"
+"Donc si vous ne voulez pas restaurer un utilisateur, décochez toutes ses "
+"cases\n"
+"\n"
+"Sinon, vous ne pouvez en choisir qu'une.\n"
+"\n"
+"- Sauvegardes incrémentales:\n"
+"\n"
+"\tLa sauvegarde incrémentale est l'option la plus puissante.\n"
+"\tElle vous permet de sauvegarder toutes vos données la\n"
+"première fois, et seulement celles modifiées ensuite.\n"
+"\tAinsi vous pourrez, pendant la phase de restauration,\n"
+"\tchoisir de restaurer à partir d'une date précise.\n"
+"\tSi vous n'avez pas choisi cette option, toutes les\n"
+"\tanciennes sauvegardes seront effacés à chaque sauvegarde.\n"
+"\n"
+"\n"
+"\n"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4727
+#, fuzzy
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."
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
-"NFS est un protocole populaire pour le partage de fichiers sur les réseaux "
-"TCP/IP.\n"
-"Ce service fournit un serveur NFS. Les dossiers partagés sont listés dans le "
-"fichier /etc/exports."
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Msec"
-msgstr "Msec"
+" Copyright (C) 2001 MandrakeSoft par DUPONT Sébastien <dupont_s\\@epita.fr>"
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4729
msgid ""
-"=> Notice, a label changed:\n"
-"%s"
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-"=> Notez qu'un message a changé :\n"
-"%s"
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
-msgstr "Nombre de tampons de capture"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Votre choix ? (0/1, défaut « %s »)"
+" modifications 2002 MandrakeSoft par Stew Benedict <sbenedict\\@mandrakesoft."
+"com>"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4732
+#, fuzzy
msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a file system).\n"
+"Description:\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"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\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"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\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"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
"\n"
-"Click on \"%s\" when you are ready to format partitions.\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\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 ""
-"Les partitions ayant été nouvellement définies doivent être formatées (ce\n"
-"qui implique la création d'un système de fichiers).\n"
+"Description:\n"
"\n"
-"Lors de cette étape, vous pouvez reformater des partitions existantes pour\n"
-"effacer les données présentes. Vous devrez alors les sélectionner\n"
-"également.\n"
+" Drakbackup sert à sauvegarder votre système.\n"
+" Pendant sa configuration vous pouvez sélectionner: \n"
+"\t- des fichiers systèmes, \n"
+"\t- des comptes utilisateur, \n"
+"\t- d'autres données.\n"
+"\tou Tout votre système ... et d'autres (comme des partitions Windows)\n"
"\n"
-"Sachez qu'il n'est pas nécessaire de reformater toutes les partitions\n"
-"existantes. Vous devez formater les partitions contenant le système\n"
-"d'exploitation (comme « / », « /usr » ou « /var », mais il n'est pas\n"
-"nécessaire de formater les partitions de données, notamment « /home »...\n"
+" Drakbackup vous permet de faire des sauvegarde sur:\n"
+"\t- Disque dur.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (avec autoboot, récupération and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Cartouche.\n"
"\n"
-"Soyez prudent. Une fois que les partitions sélectionnées seront\n"
-"reformatées, il sera impossible de récupérer des données.\n"
+" Drakbackup peut restaurer votre système vers un répertoire choisi\n"
"\n"
-"Cliquez sur « %s » lorsque vous êtes prêt à formater les partitions.\n"
+" Par défaut toute sauvegarde sera stockée dans le\n"
+" répertoire /var/lib/drakbackup\n"
+"\n"
+" Fichier de configuration :\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"\n"
+"Étape de restauration :\n"
+" \n"
+" Pendant l'étape de restauration, DrakBackup va retirer \n"
+" votre répertoire d'origine et vérifier que tous les \n"
+" fichiers de sauvegarde ne sont pas corrompus. Il est recommandé \n"
+" de faire une dernière sauvegarde avant restauration.\n"
"\n"
-"Cliquez sur « %s » pour ajouter ou enlever une partition à formater.\n"
"\n"
-"Cliquer sur « %s » si vous désirez sélectionner des partitions pour une\n"
-"vérification des secteurs défectueux (« Bad Blocks »)."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "French"
-msgstr "Français"
+#: ../../standalone/drakbackup_.c:4769
+msgid ""
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
+msgstr ""
+"description des options :\n"
+"\n"
+"Attention en utilisant la sauvegarde par FTP, car seulement \n"
+"les sauvegardes déjà construites sont envoyées vers le serveur.\n"
+"Ainsi, pour le moment, vous devez faire une sauvegarde sur disque dur\n"
+"avant de l'envoyer vers le serveur.\n"
+"\n"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTY)"
-msgstr "Tchèque (QWERTY)"
+#: ../../standalone/drakbackup_.c:4778
+msgid ""
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
+msgstr ""
+"\n"
+"Problèmes de restauration :\n"
+"\n"
+"Avant l'étape de restauration, Drakbackup va vérifier tous vos\n"
+"fichiers de sauvegarde. Les répertoires originaux seront effacés\n"
+"et vous allez perdre toutes vos données. Il est important de \n"
+"faire les choses avec précaution et de ne pas modifier à la main\n"
+"les fichiers de sauvegarde.\n"
-#: ../../security/l10n.pm:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Allow X Window connections"
-msgstr "Autoriser les connexions à X Window"
+msgid "Installation of %s failed. The following error occured:"
+msgstr "L'installation de %s a échoué pour la raison suivante :"
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Hardware probing in progress"
-msgstr "Détection du matériel en cours"
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
+msgstr "Outil de signalement de bug Mandrake"
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
-#, c-format
-msgid "Net Device"
-msgstr "Périphérique réseau"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Assistant de première connection"
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "Résumé"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Outil de synchronisation"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
-msgstr ""
-"(Ports parallèles : /dev/lp0, /dev/lp1, ..., équivalents à LPT1:, "
-"LPT2:, ..., première imprimante USB : /dev/usb/lp0, deuxième imprimante "
-"USB : /dev/usb/lp1, ...)."
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+msgid "Standalone Tools"
+msgstr "Outils autonomes"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Next"
-msgstr "Suivant ->"
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr ""
-"Vous ne pouvez pas installer le programme d'amorçage\n"
-"sur une partition %s\n"
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msec"
-#: ../../network/network.pm:1
-#, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "BOOTP/DHCP/Zeroconf"
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Contrôle à distance"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-"\n"
-"Bienvenue.\n"
-"\n"
-"Les paramètres de l'installation automatique sont disponibles dans les "
-"sections sur la gauche."
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Gestionnaire de programmes"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
-msgstr ""
-"le paquetage « ImageMagick » est nécessaire pour fonctionner correctement.\n"
-"Cliquez sur « Ok » pour l'installer ou « Annuler » pour quitter"
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Telnet server"
-msgstr "Serveur telnet"
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Outil de migration windows"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lituanien « ligne de nombres » QWERTY"
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "Userdrake"
-#: ../../install_any.pm:1
-#, c-format
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Assistants de configuration"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Application:"
+msgstr "Application:"
+
+#: ../../standalone/drakbug_.c:76
+msgid "Package: "
+msgstr "Paquetage:"
+
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
+msgstr "Noyau:"
+
+#: ../../standalone/drakbug_.c:78
+msgid "Release: "
+msgstr "Version: "
+
+#: ../../standalone/drakbug_.c:93
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
"\n"
"\n"
-"Do you really want to remove these packages?\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
msgstr ""
-"Les paquetages suivants seront désinstallés pour permettre la mise à jour : %"
-"s \n"
"\n"
"\n"
-"Souhaitez-vous réellement les désinstaller ?\n"
+"Pour soumettre un rapport de bogue, cliquez sur le bouton Signaler.\n"
+"Cela ouvrira une fenêtre de navigateur sur https://drakbug.mandrakesoft.com\n"
+"où vous trouverez un formulaire à remplir.\n"
+" L'information affichée ci-dessus sera transférée vers ce serveur\n"
+"\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
-msgstr "Anguilla"
+#: ../../standalone/drakbug_.c:112
+msgid "Report"
+msgstr "Signaler"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "Domaine NIS"
+#: ../../standalone/drakbug_.c:148
+msgid "Not installed"
+msgstr "Non installé"
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "Antarctique"
+#: ../../standalone/drakbug_.c:160
+#, fuzzy
+msgid "Package not installed"
+msgstr "Non installé"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- User Files:\n"
-msgstr ""
-"\n"
-"- Données des utilisateurs :\n"
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
+msgstr "Connection à l'assistant Bugzilla ..."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount options"
-msgstr "Options de montage"
+#: ../../standalone/drakbug_.c:180
+msgid "No browser available! Please install one"
+msgstr "Pas de navigateur disponible! Veuillez en installer un."
-#: ../../lang.pm:1
+#: ../../standalone/drakconnect_.c:75
#, c-format
-msgid "Jamaica"
-msgstr "Jamaïque"
+msgid "Network configuration (%d adapters)"
+msgstr "Configuration du réseau (%d cartes réseaux)"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
-msgstr ""
-"Permet de faire apparaître des périphériques de type bloc (par ex. "
-"partitions de disque dur) comme des périphériques bruts à accès direct (raw "
-"devices). Les correspondances sont établies dans le fichier /etc/sysconfig/"
-"rawdevices, et c'est la commande « raw » qui est utilisée. Cela peut être "
-"utilisé par des applications comme Oracle ou par des lecteurs de DVD."
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+msgid "Profile: "
+msgstr "Profil : "
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Veuillez patienter, préparation de l'installation..."
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
+msgstr "Effacer le profil..."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "Tchèque (QWERTZ)"
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
+msgstr "Profil à effacer :"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr "Suivre l'id. de la carte réseau (utile pour les portables)"
+#: ../../standalone/drakconnect_.c:125
+msgid "New profile..."
+msgstr "Nouveau profil..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
-msgstr "Le numéro de port doit être un nombre entier !"
+#: ../../standalone/drakconnect_.c:131
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Nom du profil à créer (le nouveau profil est créé comme une copie du profil "
+"courant :"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "You must choose an image file first!"
-msgstr "Vous devez choisir une image d'abord !"
+#: ../../standalone/drakconnect_.c:157
+msgid "Hostname: "
+msgstr "Nom de machine : "
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore from Hard Disk."
-msgstr "Restaurer à partir d'un dossier"
+#: ../../standalone/drakconnect_.c:164
+msgid "Internet access"
+msgstr "Accès internet"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "Ajouter au LVM"
+#: ../../standalone/drakconnect_.c:177
+msgid "Type:"
+msgstr "Type :"
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "Serveur DNS"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "Passerelle :"
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr "Trinité-et-Tobago"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Interface:"
+msgstr "Interface :"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD et LPRng ne supportent pas les imprimantes IPP.\n"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
+msgstr "État :"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host name or IP."
-msgstr "Nom d'hôte ou IP."
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
+msgstr "Veuillez patienter"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Edit"
-msgstr "/_Éditer"
+#: ../../standalone/drakconnect_.c:216
+msgid "Configure Internet Access..."
+msgstr "Configurer l'accès à Internet..."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "simple"
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+msgid "LAN configuration"
+msgstr "Configuration LAN (réseau local)"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "Supprimer toutes les partitions"
+#: ../../standalone/drakconnect_.c:228
+msgid "Driver"
+msgstr "Pilote"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No test pages"
-msgstr "Pas de page de test"
+#: ../../standalone/drakconnect_.c:228
+msgid "Interface"
+msgstr "Interface"
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
-msgstr "Îles Malouinnes"
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
+msgstr "Protocole"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Carte réseau %s : %s"
+#: ../../standalone/drakconnect_.c:228
+msgid "State"
+msgstr "État"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Boot disk creation"
-msgstr "Création d'une disquette d'amorçage"
+#: ../../standalone/drakconnect_.c:240
+msgid "Configure Local Area Network..."
+msgstr "Configurer le réseau local..."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
-msgstr "Lundi"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
+msgstr "Cliquez ici pour lancer l'assistant ->"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown model"
-msgstr "Modèle inconnu"
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "Assistant..."
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
-msgstr "Si oui, vérifie les fichiers/dossiers que tout le monde peut modifier"
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
+msgstr "Appliquer"
-#: ../../help.pm:1
-#, c-format
-msgid "authentication"
-msgstr "Authentification"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Connected"
+msgstr "Connecté"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Now"
-msgstr "Sauvegarder !"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+msgid "Not connected"
+msgstr "Non connecté"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/_Fichier"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
+msgstr "Se connecter..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr "Retrait de l'imprimante de StarOffice/OpenOffice"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
+msgstr "Se déconnecter..."
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:400
msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Démarre le filtrage des paquets réseau pour la série 2.2 des noyaux Linux, "
-"afin de mettre en place un pare-feu (firewall) pour protéger votre machine "
-"des attaques réseau. "
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Editable"
-msgstr "Éditable"
+"Attention, une autre connexion internet a été détectée, peut-être utilisant "
+"votre réseau"
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
+#: ../../standalone/drakconnect_.c:427
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
msgstr ""
-"Quel client DHCP désirez-vous utiliser ? (Le client par défaut étant dhcp-"
-"client)"
+"Vous n'avez aucune interface réseau configurée.\n"
+"Vous pouvez en configurer une en cliquant sur « Configurer »"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (ISCII-layout)"
-msgstr "Tamoul (ISCII)"
+#: ../../standalone/drakconnect_.c:449
+msgid "LAN Configuration"
+msgstr "Configuration du LAN (réseau local)"
-#: ../../lang.pm:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Mayotte"
-msgstr "Mayotte"
+msgid "Adapter %s: %s"
+msgstr "Carte réseau %s : %s"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
-msgstr ""
-"Réglez la profondeur de l'historique du shell. Une valeur de -1 signifie "
-"historique illimité."
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
+msgstr "Protocole d'amorçage"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d KB\n"
-msgstr "%d Ko\n"
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
+msgstr "Lancer au démarrage"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
-msgstr "Création de la disquette d'auto-installation..."
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
+msgstr "Client DHCP"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for scanners ..."
-msgstr "Recherche des scanners..."
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "activate now"
+msgstr "activer maintenant"
-#: ../../lang.pm:1
-#, c-format
-msgid "Russia"
-msgstr "Russie"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "deactivate now"
+msgstr "désactiver maintenant"
-#: ../../steps.pm:1
-#, c-format
-msgid "Partitioning"
-msgstr "Partitionnement"
+#: ../../standalone/drakconnect_.c:499
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Cette interface n'a pas encore été configurée.\n"
+"Lancez l'assistant de configuration dans la fenêtre principale"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
-msgstr "carte(s) ethernet détectée(s)"
+#: ../../standalone/drakconnect_.c:556
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Vous n'avez aucune connection internet.\n"
+"Vous pouvez en créer une en cliquant sur « Configurer »"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
-msgstr "Syslog"
+#: ../../standalone/drakconnect_.c:580
+msgid "Internet connection configuration"
+msgstr "Configuration de la connexion internet"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create catalog!"
-msgstr "Ne peut créer le catalogue !"
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet Connection Configuration"
+msgstr "Configuration de la connexion internet"
-#: ../advertising/11-mnf.pl:1
-#, 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."
-msgstr ""
-"Optimisez votre sécurité avec ce logiciel très facile à utiliser combinant "
-"des éléments de haute performance : un pare-feu, un serveur et un client "
-"pour réseau privé virtuel (VPN), un système de détection d'intrusion et un "
-"gestionnaire de trafic."
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+msgid "Connection type: "
+msgstr "Type de connexion : "
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
-msgstr "Pas assez d'espace libre pour le partitionnement automatique"
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
+msgstr "Paramètres"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "Mot de passe root"
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Passerelle"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable IP spoofing protection"
-msgstr "Activer la protection contre l'usurpation d'adresse IP"
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
+msgstr "Carte ethernet"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
-msgstr ""
-"Il n'existe pas de pilote libre pour votre carte son (%s), mais il en existe "
-"un propriétaire à « %s »"
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
+msgstr "Client DHCP"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Group :"
-msgstr "Groupe"
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr ""
-"Après avoir redimensionné la partition %s, toutes les données présentes\n"
-"sur cette partition seront perdues"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Module name"
+msgstr "Nom du module"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet connection configuration"
-msgstr "Configuration de la connexion internet"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Size"
+msgstr "Taille"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
-msgstr "Exclue « nom » de la gestion des mots de passe par msec."
+#: ../../standalone/drakfloppy_.c:45
+msgid "drakfloppy"
+msgstr "drakfloppy"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "USB"
-msgstr "USB"
+#: ../../standalone/drakfloppy_.c:63
+msgid "boot disk creation"
+msgstr "création d'une disquette d'amorçage"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
-msgstr "Recherche des canaux de télévision"
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr "par défaut"
-#: ../../standalone/drakbug:1
+#: ../../standalone/drakfloppy_.c:87
#, c-format
-msgid "Kernel:"
-msgstr "Noyau :"
+msgid "DrakFloppy Error: %s"
+msgstr "Erreur DrakFloppy : %s"
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_About..."
-msgstr "/_A propos..."
+#: ../../standalone/drakfloppy_.c:98
+msgid "kernel version"
+msgstr "version du noyau"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
-msgstr "Bengale"
+#: ../../standalone/drakfloppy_.c:104
+msgid "General"
+msgstr "Général"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
-msgstr "Préférence : "
+#: ../../standalone/drakfloppy_.c:109
+msgid "Expert Area"
+msgstr "Mode Expert"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Services : %d activés sur %d enregistrés"
+#: ../../standalone/drakfloppy_.c:112
+msgid "mkinitrd optional arguments"
+msgstr "arguments optionnels pour mkinitrd"
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "Disquette d'amorçage"
+#: ../../standalone/drakfloppy_.c:113
+msgid "Add a module"
+msgstr "Ajouter un module"
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
-msgstr "Îles Salomon"
+#: ../../standalone/drakfloppy_.c:133
+msgid "force"
+msgstr "forcer"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please test your mouse:"
-msgstr "Veuillez tester votre souris:"
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
+msgstr "si besoin est"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(module %s)"
+#: ../../standalone/drakfloppy_.c:135
+msgid "omit scsi modules"
+msgstr "ne pas tenir compte des modules SCSI"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
-msgstr "Groupe de travail"
+#: ../../standalone/drakfloppy_.c:136
+msgid "omit raid modules"
+msgstr "ne pas tenir compte des modules RAID"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer host name or IP"
-msgstr "Nom d'hôte ou adresse IP de l'imprimante "
+#: ../../standalone/drakfloppy_.c:172
+msgid "Remove a module"
+msgstr "Retirer un module"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "down"
-msgstr "arrêté"
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
+msgstr "Sortie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Path or Module"
-msgstr "Chemin de l'hôte ou du module"
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
+msgstr "Créer la disquette"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
-"Le nom de l'imprimante ne devrait contenir que des lettres, des nombres et "
-"des tirets bas (_)"
+msgid "Be sure a media is present for the device %s"
+msgstr "Assurez-vous qu'un médium est présent dans le périphérique %s"
-#: ../../standalone/drakgw:1
+#: ../../standalone/drakfloppy_.c:341
#, c-format
-msgid "Show current interface configuration"
-msgstr "Montrer la configuration actuelle"
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Il n'y a aucune disquette dans le lecteur %s ou alors elle est \n"
+"protégée contre l'écriture. Veuillez vérifier ou en insérer une."
-#: ../../standalone/printerdrake:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "Add Printer"
-msgstr ""
-"Ajouter une\n"
-"Imprimante"
+msgid "Unable to fork: %s"
+msgstr "Ne peut dédoubler (fork) : %s"
-#: ../../security/help.pm:1
+#: ../../standalone/drakfloppy_.c:349
#, 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."
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
msgstr ""
-"L'argument spécifie si les clients sont autorisés ou non à se connecter\n"
-"au serveur d'affichage (Xfree) sur le port tcp 6000."
+"Ne peut terminer correctement mkbootdisk : \n"
+" %s \n"
+" %s"
-#: ../../help.pm:1
-#, c-format
-msgid "Development"
-msgstr "Développement"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
+msgstr "Chercher les polices installées"
-#: ../../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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Done"
-msgstr "Terminer"
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
+msgstr "Désélectionner les polices installées"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Web Server"
-msgstr "Serveur Web"
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
+msgstr "Parcourir toutes les polices"
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "Chili"
+#: ../../standalone/drakfont_.c:242
+msgid "no fonts found"
+msgstr "aucune fonte trouvée"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr "\tFichiers systèmes non inclus\n"
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+msgid "done"
+msgstr "terminé"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
-msgstr ""
-"Les pilotes d'impression inkjet fournis par Lexmark ne permettent que "
-"l'utilisation des imprimantes locales, et pas des imprimantes distantes ou "
-"des serveurs d'impression. Veuillez connecter votre imprimante sur un port "
-"local ou configurez-la sur la machine à laquelle elle est connectée."
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
+msgstr "impossible de trouver des polices dans vos disques"
-#: ../../printer/printerdrake.pm:1
-#, 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!"
-msgstr ""
-"Votre périphérique multifonction HP a été configuré automatiquement pour "
-"être capable de scanner. Maintenant vous pouvez scanner avec "
-"« scanimage » ( « scanimage -d hp:%s » pour spécifier le scanner si vous en "
-"avez plus d'un) à partir de la ligne de commande, ou avec des interfaces "
-"graphiques comme « xscanimage » ou « xsane ». Si vous utilisez « Le Gimp », "
-"vous pouvez aussi scanner grâce au menu « Fichier / Acquisition ». Pour "
-"avoir plus d'information, vous pouvez taper « man scanimage » dans une "
-"fenêtre de commandes.\n"
-"\n"
-"N'utilisez pas « scannerdrake » pour cet appareil ! "
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
+msgstr "Résélectionnez des polices correctes"
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
-msgstr "Utilisateur(s) existant(s) : %s"
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
+msgstr "impossible de trouver des polices.\n"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation in progress"
-msgstr "Installation du programme d'amorçage en cours"
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
+msgstr "Chercher des polices dans la liste des installées"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
-msgstr ", en utilisant la commande %s"
+#: ../../standalone/drakfont_.c:359
+msgid "Fonts copy"
+msgstr "Copie des fontes"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
-msgstr "Touches Alt et Shift simultanément"
+#: ../../standalone/drakfont_.c:363
+msgid "True Type fonts installation"
+msgstr "Installation de polices « True Type »"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
-msgstr "Drapeaux"
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
+msgstr "Veuillez patienter pendant « ttmkfdir »"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Users"
-msgstr "Ajouter/Effacer un utilisateur"
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
+msgstr "Installation « True Type » terminée"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
-msgstr "Adresse IP de l'hôte/réseau manquante."
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
+msgstr "Conversion de polices"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
-msgstr "toutes les semaines"
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
+msgstr "construction par type1inst"
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "Paramètres"
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
+msgstr "Inscription dans ghoscript"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
-msgstr "L'adresse IP de l'hôte/réseau n'est pas correcte.\n"
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
+msgstr "Conversion de polices « True Type »"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
-msgstr "Créer/Transférer les clés de sauvegardes pour SSH."
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
+msgstr "Conversion de polices « pfm »"
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
-msgstr "Voici la liste complète des pays disponibles"
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
+msgstr "Supprimer les fichiers temporaires"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (A4)"
-msgstr "Page de test alternative (A4)"
+#: ../../standalone/drakfont_.c:459
+msgid "Restart XFS"
+msgstr "Relancer le serveur de polices"
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
+msgstr "Supprimer les fichiers de polices"
+
+#: ../../standalone/drakfont_.c:528
+msgid "xfs restart"
+msgstr "redémarrage du serveur de fonte"
+
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
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."
+"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 using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
msgstr ""
-"Si vous possédez tous les CD-Rom ci-dessous, cliquez sur « OK ».\n"
-"Si vous n'en possédez aucun, cliquez sur « Annuler ».\n"
-"Sinon, désélectionnez ceux que vous n'avez pas, puis cliquez sur « OK »."
+"Avant d'installer des polices de caractères, assurez-vous que vous avez\n"
+"les permissions de les utiliser et de les installer sur votre système. \n"
+"\n"
+"- Vous pouvez installer les polices par la voie habituelle. Dans de rares "
+"cas,\n"
+"des polices boguées peuvent bloquer votre serveur d'affichage XFree."
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
-msgstr "Veuillez patienter"
+#: ../../standalone/drakfont_.c:621
+msgid "Fonts Importation"
+msgstr "Importation de polices"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
+msgstr "Récupérer les polices de Windows"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup user files"
-msgstr "Sauvegarde des comptes utilisateurs..."
+#: ../../standalone/drakfont_.c:658
+msgid "Uninstall Fonts"
+msgstr "Désinstaller des polices"
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "New"
-msgstr "Nouveau"
+#: ../../standalone/drakfont_.c:669
+msgid "Advanced Options"
+msgstr "Options avancées"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakfont_.c:677
+msgid "Font List"
+msgstr "Liste des polices"
+
+#: ../../standalone/drakfont_.c:737
+#, fuzzy
msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only 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 ""
-"Vous devez prendre ici une décision cruciale pour la sécurité de votre\n"
-"système. L'utilisateur « root » est l'administrateur du système qui a tous\n"
-"les droits d'accès aux fichiers de configuration, etc. Il est donc\n"
-"impératif de choisir un mot de passe difficile à deviner (pensez aux\n"
-"systèmes prévus à cet effet qui anticipent les combinaisons communes des\n"
-"utilisateurs). DrakX vous avertira si le mot de passe entré est trop facile\n"
-"à deviner. Comme vous pouvez le voir, il est également possible de ne pas\n"
-"entrer de mot de passe. Nous déconseillons fortement cette pratique. Comme\n"
-"l'erreur est humaine, un utilisateur avec tous les droits peut tout\n"
-"détruire sur votre système, c'est pourquoi le mot de passe doit agir comme\n"
-"barrière à l'entrée.\n"
-"\n"
-"Le mot de passe choisi devrait contenir au moins 8 caractères\n"
-"alphanumériques. Ne jamais écrire un mot de passe, forcez-vous à vous en\n"
-"souvenir par coeur. Il faut donc ménager accessibilité et mémoire, donc un\n"
-"mot de passe de 30 caractères est presque impossible à mémoriser.\n"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@mandrakesoft.com\n"
"\n"
-"Afin d'éviter les regards indiscrets, le mot de passe n'apparaîtra pas à\n"
-"l'écran. Il vous faudra donc l'inscrire deux fois afin d'éviter les erreurs\n"
-"de frappe. Évidemment, si vous faites deux fois la même erreur, celle-ci\n"
-"sera sauvegardée et vous devrez la reproduire afin d'accéder à votre\n"
-"système pour la première fois.\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"
-"En mode expert, on vous demandera si vous comptez vous connecter sur un\n"
-"serveur d'authentification, tel que NIS ou LDAP. Si votre réseau utilise un\n"
-"de ces protocoles, il faut le sélectionner. Si vous n'en avez aucune idée,\n"
-"demandez à votre administrateur de réseau.\n"
+" 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"
-"Si vous souhaitez que l'accès à cette machine soit contrôlé par un serveur\n"
-"d'authentification, cliquez sur le bouton « %s ».\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"
-"Si votre réseau utilise soit LDAP, NIS, ou un PDC Windows, choisissez-le\n"
-"comme protocole d'authentification. En cas de doute, demandez à votre\n"
-"administrateur réseau.\n"
+" 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"
"\n"
-"Si vous avez des problèmes à vous souvenir de vos mots de passe, vous\n"
-"pouvez choisir « %s », si votre ordinateur ne sera pas connecté à Internet,\n"
-"et si vous avez confiance en tous ceux qui auront accès à cette machine."
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
-msgstr "Protection contre l'usurpation de résolution de nom"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, 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."
msgstr ""
-"À cette étape, vous devrez déterminer le niveau de sécurité requis par\n"
-"votre système. Le niveau de sécurité requis se détermine en fonction de\n"
-"l'exposition du système à d'autres utilisateurs (s'il est connecté\n"
-"directement sur Internet par exemple) et selon le niveau de sensibilité de\n"
-"l'information contenu dans le système. Sachez que, de manière générale,\n"
-"plus la sécurité d'un système est élevée, plus il est complexe à utiliser.\n"
+" Ce programme est un logiciel libre : vous pouvez le redistribuer\n"
+"et/ou le modifier selon les termes de la « GNU General Public\n"
+"License », tels que publiés par la « Free Software Foundation »; soit\n"
+"la version 2 de cette licence ou (à votre choix) toute version\n"
+"ultérieure.\n"
"\n"
-"Si vous ne savez pas quel niveau choisir, gardez la sélection par défaut."
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "Charger à partir d'une disquette..."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The following printer was auto-detected. "
-msgstr "L'imprimante suivante a été détectée."
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Uses command %s"
-msgstr "En utilisant la commande %s"
+"Ce programme est distribué dans l'espoir qu'il sera utile, mais\n"
+"SANS AUCUNE GARANTIE, ni explicite ni implicite; sans même les\n"
+"garanties de commercialisation ou d'adaptation dans un but spécifique.\n"
+"Se référer à la « GNU General Public License » pour plus de détails.\n"
+"\n"
+"Vous devriez avoir reçu une copie de la « GNU General Public License »\n"
+"en même temps que ce programme; sinon, écrivez à la « Free Software\n"
+"Foundation », Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
+
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:862
+msgid "Choose the applications that will support the fonts:"
+msgstr "Choisissez les applications qui supporteront ces polices"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
-msgstr "Disquette de démarrage"
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
+msgstr "Ghostscript"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "Norvégien"
+#: ../../standalone/drakfont_.c:877
+msgid "StarOffice"
+msgstr "StarOffice"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Searching for new scanners ..."
-msgstr "Recherche de nouveaux scanners..."
+#: ../../standalone/drakfont_.c:884
+msgid "Abiword"
+msgstr "Abiword"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr "Apache (serveur www)"
+#: ../../standalone/drakfont_.c:891
+msgid "Generic Printers"
+msgstr "Imprimante générique"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr "numéro de sous-modèle du processeur (stepping)"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
+msgstr "Sélectionnez les polices ou répertoires et cliquez sur « Ajouter »"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "select path to restore (instead of /)"
-msgstr "Choisir un chemin de restauration ( au lieu de / )"
+#: ../../standalone/drakfont_.c:1005
+msgid "Install List"
+msgstr "Installe la liste"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Configure bootsplash picture"
-msgstr "Créer une image de démarrage"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
+msgstr "Cliquez ici si vous êtes sûr"
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr "Géorgie"
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
+msgstr "Ici sinon"
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "Chine"
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
+msgstr "Désélectionne tout"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "(Vérifiez que toutes les imprimantes sont connectées et allumées).\n"
+#: ../../standalone/drakfont_.c:1116
+msgid "Selected All"
+msgstr "Sélectionne tout"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Reading data of installed printers..."
-msgstr "Lecture des données des imprimantes installées..."
+#: ../../standalone/drakfont_.c:1120
+msgid "Remove List"
+msgstr "Désinstalle la liste"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
-msgstr "Effacer maintenant"
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+msgid "Initials tests"
+msgstr "Tests initiaux"
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "serveur"
+#: ../../standalone/drakfont_.c:1145
+msgid "Copy fonts on your system"
+msgstr "Copier les polices sur votre système"
-#: ../../install_any.pm:1
-#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Insérez une disquette formatée en FAT (format DOS/Windows) %s"
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
+msgstr "Installe et convertit des polices"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
-msgstr "\"oui\" signifie qu'un coprocesseur arithmétique est présent"
+#: ../../standalone/drakfont_.c:1153
+msgid "Post Install"
+msgstr "Post-installation"
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Veuillez patienter... Mise en place de la configuration"
+#: ../../standalone/drakfont_.c:1178
+msgid "Remove fonts on your system"
+msgstr "Retirer des polices de votre système"
-#. -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
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Bienvenue dans GRUB, le chargeur de systemes d'exploitation"
+#: ../../standalone/drakfont_.c:1182
+msgid "Post Uninstall"
+msgstr "Post-désinstallation"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "Grub"
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
+msgstr "Partage de la connexion internet"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
-msgstr "Contrôleurs SCSI"
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Désolé, nous ne prenons en charge que les noyaux (kernel) 2.4 ."
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr " sur serveur d'impression LPD « %s », imprimante « %s »"
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Le partage de la connexion internet est activé"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
-msgstr "Choix d'un gestionnaire de connexion"
+#: ../../standalone/drakgw_.c:126
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+"La configuration du partage de la connexion à Internet a déjà été\n"
+"effectuée. Elle est actuellement activée.\n"
+"\n"
+"Que souhaitez-vous faire ?"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Nom d'hôte ZeroConf"
+#: ../../standalone/drakgw_.c:130
+msgid "disable"
+msgstr "désactiver"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
-msgstr "Entrée setup/crontab personnalisée :"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
+msgstr "ne rien faire"
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "L'adresse IP doit ressembler à quelque chose comme « 192.168.1.20 »"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "reconfigure"
+msgstr "reconfigurer"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Configure CUPS printing system"
-msgstr "Configurer le système d'impression CUPS"
+#: ../../standalone/drakgw_.c:133
+msgid "Disabling servers..."
+msgstr "Désactivation des serveurs..."
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "Équateur"
+#: ../../standalone/drakgw_.c:142
+msgid "Internet connection sharing is now disabled."
+msgstr "Le partage de la connexion à Internet est maintenant désactivé."
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Add an item"
-msgstr "Ajouter un élément"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Le partage de la connexion à Internet est désactivé"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
+#: ../../standalone/drakgw_.c:150
+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 ""
-"Les imprimantes de cette machine sont disponibles aux autres ordinateurs"
+"La configuration du partage de la connexion à Internet a déjà été\n"
+"effectuée. Elle est actuellement désactivée.\n"
+"\n"
+"Que souhaitez-vous faire ?"
-#: ../../lang.pm:1
-#, c-format
-msgid "China (Hong Kong)"
-msgstr "Chine (Hong-Kong)"
+#: ../../standalone/drakgw_.c:154
+msgid "enable"
+msgstr "activer"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Impossible de trouver le fichier image « %s »."
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
+msgstr "Activation des serveurs..."
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
-"Aucune carte son détectée. Essayez avec « harddrake » après l'installation"
+#: ../../standalone/drakgw_.c:166
+msgid "Internet connection sharing is now enabled."
+msgstr "Le partage de la connexion internet est maintenant activé."
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:183
+#, fuzzy
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"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 ""
-"Le port entré est incorrect : %s.\n"
-"Le bon format est « port/tcp » ou « port/udp », \n"
-"où le port est compris entre 1 et 65535."
+"Votre ordinateur peut être paramétré afin de partager sa connexion "
+"internet.\n"
+"Avec cette fonctionnalité, d'autres ordinateurs sur votre réseau local "
+"pourront utiliser la connexion internet de cet ordinateur.\n"
+"\n"
+"Veuillez noter que vous avez besoin d'une carte réseau dédiée à votre réseau "
+"local."
-#: ../../any.pm:1
+#: ../../standalone/drakgw_.c:211
#, c-format
-msgid "Shell"
-msgstr "Interpréteur"
+msgid "Interface %s (using module %s)"
+msgstr "Interface %s (utilisant le module %s)"
-#: ../../lang.pm:1
+#: ../../standalone/drakgw_.c:212
#, c-format
-msgid "Sao Tome and Principe"
-msgstr "Sao Tomé-et-Principe"
+msgid "Interface %s"
+msgstr "Interface %s"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr "Aucune carte réseau n'est présente dans votre système"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
-msgstr "Impossible de se connecter avec le nom %s (mauvais mot de passe ?)"
+#: ../../standalone/drakgw_.c:221
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"Aucune carte réseau n'a été détectée sur votre système. Veuillez utiliser "
+"l'outil de configuration du matériel."
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaïdjanais (latin)"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr "Carte réseau"
-#: ../../standalone/drakbug:1
+#: ../../standalone/drakgw_.c:228
#, c-format
-msgid "Package not installed"
-msgstr "Paquetage non installé"
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"%s\n"
+"\n"
+"I am about to setup your Local Area Network with that adapter."
+msgstr ""
+"Une seule carte réseau est configurée sur votre système :\n"
+"\n"
+"%s\n"
+"\n"
+"Je vais configurer votre réseau local avec cette carte réseau."
-#: ../../lang.pm:1
-#, c-format
-msgid "American Samoa"
-msgstr "Samoa Américaine"
+#: ../../standalone/drakgw_.c:235
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+"Veuillez choisir quelle carte réseau sera connectée à votre réseau local"
-#: ../advertising/12-mdkexpert.pl:1
-#, c-format
-msgid "Become a MandrakeExpert"
-msgstr "Devenez un Expert Mandrake"
+#: ../../standalone/drakgw_.c:261
+msgid "Network interface already configured"
+msgstr "Interface réseau déjà configurée"
-#: ../../standalone/drakconnect:1
+#: ../../standalone/drakgw_.c:262
#, c-format
-msgid "Protocol"
-msgstr "Protocole"
+msgid ""
+"Warning, the network adapter (%s) is already configured.\n"
+"\n"
+"Do you want an automatic re-configuration?\n"
+"\n"
+"You can do it manually but you need to know what you're doing."
+msgstr ""
+"Attention, la carte réseau (%s) est déjà configurée.\n"
+"\n"
+"Désirez-vous une reconfiguration automatique ?\n"
+"\n"
+"Vous pouvez le faire manuellement, mais vous devez savoir ce que vous faites."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Copy fonts on your system"
-msgstr "Copier les polices sur votre système"
+#: ../../standalone/drakgw_.c:267
+msgid "Automatic reconfiguration"
+msgstr "Reconfiguration automatique"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
-msgstr "Aide de Harddrake"
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Bogomips"
-msgstr "Bogomips"
+#: ../../standalone/drakgw_.c:268
+msgid "Show current interface configuration"
+msgstr "Montrer la configuration actuelle"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Configuration du Serveur de Terminaux Mandrake"
+#: ../../standalone/drakgw_.c:269
+#, fuzzy
+msgid "Current interface configuration"
+msgstr "Montrer la configuration actuelle"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:270
#, c-format
msgid ""
+"Current configuration of `%s':\n"
"\n"
-" DrakBackup Report Details\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
+msgstr ""
+"Configuration actuelle de « %s » :\n"
"\n"
+"Réseau : %s\n"
+"Adresse IP : %s\n"
+"Attribution de l'adresse : %s\n"
+"Pilote : %s"
+
+#: ../../standalone/drakgw_.c:283
+#, fuzzy
+msgid ""
+"I can keep your current configuration and assume you already set up a DHCP "
+"server; in that case please verify I correctly read the Network that you use "
+"for your local network; I will not reconfigure it and I will not touch your "
+"DHCP server configuration.\n"
"\n"
-msgstr ""
+"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"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
"\n"
-" Détails du rapport de sauvegarde\n"
+msgstr ""
+"Je peux conserver votre configuration actuelle, et supposer que vous avez "
+"déjà\n"
+"configuré un serveur DHCP ; dans ce cas veuillez vérifier que j'ai "
+"correctement\n"
+"lu l'adresse du réseau de Classe C que vous utilisez pour votre réseau "
+"local ;\n"
+"je ne le reconfigurerai pas et je ne toucherai pas à la configuration de "
+"votre\n"
+"serveur DHCP.\n"
"\n"
+"Sinon, je peux reconfigurer votre interface et (re)configurer un serveur "
+"DHCP.\n"
"\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
-msgstr "Restaurer toutes les sauvegardes..."
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
-msgstr " sur port parallèle %s"
+#: ../../standalone/drakgw_.c:290
+#, fuzzy
+msgid "Local Network adress"
+msgstr "Réseau Local de classe C"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:294
msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
+"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 ""
-"Règle la longueur minimum, le nombre minimum de chiffres et le nombre "
-"minimum de lettres en majuscule d'un mot de passe."
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
-msgstr "Si oui, vérifie les ports ouverts du réseau."
+#: ../../standalone/drakgw_.c:300
+msgid "(This) DHCP Server IP"
+msgstr "Adresse IP du serveur DHCP"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
-msgstr "Effacer le support peut prendre un moment."
+#: ../../standalone/drakgw_.c:301
+#, fuzzy
+msgid "The DNS Server IP"
+msgstr "Adresse IP du serveur DHCP"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
-msgstr "Vous ne pouvez pas sélectionner/désélectionner ce paquetage"
+#: ../../standalone/drakgw_.c:302
+#, fuzzy
+msgid "The internal domain name"
+msgstr "Nouveau nom de l'imprimante"
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "Attention"
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
msgstr ""
-"\n"
-"- Autres fichiers ou dossiers :\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name"
-msgstr "Nom d'hôte du serveur"
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr "accès aux programmes graphiques"
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
+msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "Calcul de l'espace libre sur la partition Windows"
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
+msgstr "Re-configurer l'interface et le serveur DHCP"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr "/_Rafraîchir"
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
+msgstr "Le réseau local ne finissait pas par `.0', j'abandonne."
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid "Italy"
-msgstr "Italie"
+msgid "Potential LAN address conflict found in current config of %s!\n"
+msgstr ""
+"Conflit potentiel d'adresses du réseau local trouvé dans la configuration de "
+"%s !\n"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
-msgstr "Îles Caïman"
+#: ../../standalone/drakgw_.c:335
+msgid "Configuring..."
+msgstr "Configuration en cours..."
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
-msgstr "Le démontage de %s a échoué : %s"
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+"Configuration des scripts, installation des logiciels, démarrage des "
+"serveurs..."
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:372
#, c-format
-msgid "Name of printer"
-msgstr "Nom de l'imprimante"
+msgid "Problems installing package %s"
+msgstr "Des problèmes sont apparus en installant le paquetage %s"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
-msgstr "désactiver"
+#: ../../standalone/drakgw_.c:505
+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 ""
+"Tout a été configuré.\n"
+"Vous pouvez maintenant partager votre connexion internet avec d'autres "
+"ordinateurs sur votre réseau local, en utilisant la configuration réseau "
+"automatique (DHCP)."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do it!"
-msgstr "Faire"
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
+msgstr ""
+"La configuration a déjà été effectuée, mais elle est actuellement désactivée."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
-msgstr "%s ne répond pas"
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
+msgstr ""
+"La configuration a déjà été effectuée, et elle est actuellement activée."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select model manually"
-msgstr "Sélectionner manuellement le modèle"
+#: ../../standalone/drakgw_.c:525
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Le partage de la connexion internet n'a encore jamais été configuré."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Format"
-msgstr "Formater"
+#: ../../standalone/drakgw_.c:531
+msgid "Internet connection sharing configuration"
+msgstr "Configuration du partage de la connexion internet"
-#: ../../network/adsl.pm:1
+#: ../../standalone/drakgw_.c:539
#, 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'"
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"La façon la plus courante de se connecter à Internet en utilisant\n"
-"une ligne ADSL est d'utiliser « pppoe ».\n"
+"Bienvenue dans l'utilitaire de partage de connexion internet !\n"
"\n"
-"Certaines connexions utilisent « pptp », quelques unes se servent de "
-"« DHCP ».\n"
+"%s\n"
"\n"
-"Si vous ne savez pas quoi choisir, utilisez pppoe."
+"Cliquez sur Configurer pour lancer l'assistant de configuration."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
-msgstr "Divers"
+#: ../../standalone/drakperm_.c:36
+msgid "group"
+msgstr "groupe"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
-msgstr "Lecteurs Zip"
+#: ../../standalone/drakperm_.c:36
+msgid "path"
+msgstr "chemin"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
-msgstr "Touche Alt gauche"
+#: ../../standalone/drakperm_.c:36
+msgid "permissions"
+msgstr "permissions"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Load setting"
-msgstr "Chargement des paramètres"
+#: ../../standalone/drakperm_.c:36
+msgid "user"
+msgstr "utilisateur"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
-msgstr ""
-"\n"
-"\n"
-"Le modèle de votre imprimante %s n'a pas pu être déterminé. Veuillez choisir "
-"le modèle correct dans la liste."
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
+msgstr "monter"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set selected printer as the default printer"
-msgstr "Choisir l'imprimante sélectionnée comme étant celle par défaut"
+#: ../../standalone/drakperm_.c:44
+msgid "delete"
+msgstr "supprimer"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:45
+msgid "edit"
+msgstr "éditer"
+
+#: ../../standalone/drakperm_.c:46
+msgid "Down"
+msgstr "descendre"
+
+#: ../../standalone/drakperm_.c:47
+msgid "add a rule"
+msgstr "Ajouter une règle"
+
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
+msgstr "choisissez un fichier de permissions à voir/modifier"
+
+#: ../../standalone/drakperm_.c:51
msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+"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 ""
-"\n"
-"Cochez les imprimantes que vous voulez transférer, et\n"
-"cliquez sur « Transfert »."
+"Drakperm permet de voir les fichiers à utiliser pour corriger des "
+"permissions, propriétaire et groupe grâce à msec.\n"
+"Vous pouvez aussi éditer vos propres règles, prioritaires devant celles par "
+"défaut."
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
-msgstr "PDQ"
+#: ../../standalone/drakperm_.c:56
+msgid "Add a new rule at the end"
+msgstr "Ajouter une nouvelle règle à la fin"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
-msgstr "Albanais"
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
+msgstr "Modifier la règle"
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
-msgstr "Lituanie"
+#: ../../standalone/drakperm_.c:58
+msgid "Up selected rule one level"
+msgstr "Augmenter la priorité de la règle d'un niveau"
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "Compact"
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
+msgstr "Abaisser la prioriété de la règle d'un niveau"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detected model: %s %s"
-msgstr "Modèle détecté : %s %s"
+#: ../../standalone/drakperm_.c:60
+msgid "Delete selected rule"
+msgstr "Supprimer la règle"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
-msgstr "MandrakeSoft a sélectionné les meilleurs logiciels pour vous"
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
+msgstr "naviguer"
-#: ../../any.pm:1
-#, c-format
-msgid "Local files"
-msgstr "Fichiers locaux"
+#: ../../standalone/drakperm_.c:231
+msgid "Current user"
+msgstr "Utilisateur courant"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "éventuellement"
+#: ../../standalone/drakperm_.c:236
+msgid "Permissions"
+msgstr "Permissions"
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
-msgstr "Panama"
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
+msgstr "Chemin"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Can't open %s!"
-msgstr "Ne peut ouvrir %s !"
+#: ../../standalone/drakperm_.c:238
+msgid "Property"
+msgstr "Propietés"
-#: ../../Xconfig/various.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
+msgstr "sticky-bit"
+
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
+msgstr "Set-UID"
+
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
+msgstr "Set-GID"
+
+#: ../../standalone/drakperm_.c:296
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?"
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
msgstr ""
-"Votre carte graphique semble avoir un connecteur TV-OUT.\n"
-"Elle peut être configurée pour fonctionner avec le « frame-buffer ».\n"
-"\n"
-"Pour cela vous devez connecter votre carte graphique à votre TV avant de "
-"démarrer votre ordinateur.\n"
-"Ensuite choisissez l'option « TVout » dans le menu d'amorçage\n"
-"\n"
-"Avez-vous cette fonction ?"
+"Utilisé pour des dossiers :\n"
+"un fichier du dossier ne peut être effacé ou renommé que par le "
+"propriétaire du dossier ou du fichier"
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "Moniteur"
+#: ../../standalone/drakperm_.c:297
+msgid "Use owner id for execution"
+msgstr "Utiliser l'id du propriétaire lors de l'exécution"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:298
+msgid "Use group id for execution"
+msgstr "Utiliser l'id du groupe lors de l'exécution"
+
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
+msgstr ""
+"une fois vérifiés, le propriétaire et le groupe ne seront plus modifiés"
+
+#: ../../standalone/drakperm_.c:304
+msgid "Path selection"
+msgstr "Sélection du chemin"
+
+#: ../../standalone/drakperm_.c:350
+msgid "user :"
+msgstr "utilisateur :"
+
+#: ../../standalone/drakperm_.c:352
+msgid "group :"
+msgstr "groupe :"
+
+#: ../../standalone/draksound_.c:46
+msgid "No Sound Card detected!"
+msgstr "Aucune carte son détectée !"
+
+#: ../../standalone/draksound_.c:47
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"
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Vous êtes sur le point de paramétrer l'impression vers un compte Windows "
-"avec mot de passe. A cause d'une erreur dans la conception du logiciel "
-"client Samba, le mot de passe est inscrit en clair dans la ligne de commande "
-"qu'il envoie pour transmettre le travail d'impression au serveur Windows. Il "
-"est donc possible pour n'importe quel utilisateur de cette machine "
-"d'afficher à l'écran ce mot de passe, simplement en tapant une commande "
-"comme « ps auxwww ».\n"
+"Aucune carte son n'a été détectée sur votre ordinateur. Veuillez vérifier "
+"qu'une carte son supportée par Linux est correctement branchée.\n"
"\n"
-"Nous vous conseillons d'utiliser les solutions alternatives suivantes (dans "
-"tous les cas, vous devez vous assurer que seules les machines de votre "
-"réseau local peuvent accéder à votre serveur Windows, à l'aide d'un pare-feu "
-"logiciel (firewall) par exemple) :\n"
"\n"
-"Utilisez un compte sans mot de passe sur votre serveur Windows, tel que le "
-"compte « Invité » ou alors un compte dédié spécialement à l'impression. "
-"N'enlevez pas la protection d'un compte Utilisateur ou Administrateur.\n"
+"Vous pouvez visiter notre base de données de support matériel à :\n"
"\n"
-"Paramétrez votre serveur Windows afin que les imprimantes soient disponibles "
-"sous le protocole LPD. Réglez ensuite l'impression de cette machine-ci avec "
-"le type de connexion « %s » dans Printerdrake.\n"
"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mille couleurs (16 bits)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/draksound_.c:54
msgid ""
"\n"
-"- Save on Hard drive on path: %s\n"
-msgstr ""
"\n"
-"- Sauvegarde sur le disque dur dans le dossier : %s\n"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Remove fonts on your system"
-msgstr "Retirer des polices de votre système"
-
-#: ../../standalone/drakgw:1
-#, 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."
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-"Attention, la carte réseau (%s) est déjà configurée.\n"
"\n"
-"Désirez-vous une reconfiguration automatique ?\n"
"\n"
-"Vous pouvez le faire manuellement, mais vous devez savoir ce que vous faites."
+"\n"
+"Note: si vous avez une carte ISA PnP, vous devrez utiliser le programme "
+"sndconfig.\n"
+"Vous n'avez qu'à taper « sndconfig » dans une console."
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "Interface graphique lors du démarrage"
+#: ../../standalone/draksplash_.c:21
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr ""
+"le paquetage « ImageMagick » est nécessaire pour fonctionner correctement.\n"
+"Cliquez sur « Ok » pour l'installer ou « Annuler » pour quitter"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
-msgstr "ADSL"
+#: ../../standalone/draksplash_.c:67
+msgid "first step creation"
+msgstr "Création de la 1ere étape"
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Trop peu de partitions pour du RAID de niveau %d\n"
+#: ../../standalone/draksplash_.c:70
+msgid "final resolution"
+msgstr "résolution finale"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
-msgstr "le format des disquettes que le lecteur accepte"
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+msgid "choose image file"
+msgstr "choisissez un fichier image"
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy failed, file %s not found"
-msgstr "La copie du firmware a échouée, fichier %s non trouvé"
+#: ../../standalone/draksplash_.c:72
+msgid "Theme name"
+msgstr "nom du thème"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: true"
-msgstr "configuration locale: oui"
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
+msgstr "Naviguer"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
+msgid "Configure bootsplash picture"
+msgstr "Créer une image de démarrage"
+
+#: ../../standalone/draksplash_.c:90
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."
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
-"Les imprimantes suivantes sont configurées. Cliquez sur l'une d'entre elles "
-"pour modifier ses paramètres, en faire l'imprimante par défaut ou consulter "
-"les informations à son propos."
+"coordonnées x de la zone de texte\n"
+"en nombre de caractères"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Connected"
-msgstr "Connecté"
+#: ../../standalone/draksplash_.c:91
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr ""
+"coodonnées y de la zone de texte\n"
+"en nombre de caractères"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
-msgstr "Macédonien"
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
+msgstr "largeur du texte"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "Mali"
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
+msgstr "hauteur de la zone de texte"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
-msgstr "Ponts et contrôleurs système"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
+"coordonnées x du coin supérieur gauche\n"
+"de la barre de progression"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "/Fichier/Enregi_strer"
+#: ../../standalone/draksplash_.c:95
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
+"coordonnées y du coin supérieur gauche\n"
+"de la barre de progression"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "No details"
-msgstr "Pas de détails"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
+msgstr "la largeur de la barre de progression"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "très utile"
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
+msgstr "la hauteur de la barre de progression"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
+msgstr "la couleur de la barre de progression"
+
+#: ../../standalone/draksplash_.c:113
msgid "Preview"
msgstr "aperçu"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Remote Control"
-msgstr "Contrôle à distance"
+#: ../../standalone/draksplash_.c:115
+msgid "Save theme"
+msgstr "sauvegarder le thème"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Please select media for backup..."
-msgstr "Veuillez choisir le support de sauvegarde..."
+#: ../../standalone/draksplash_.c:116
+msgid "Choose color"
+msgstr "Choisissez une couleur"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
-msgstr "Email invalide"
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
+msgstr "Affiche le logo dans la console"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Serveur XFree86 : %s\n"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
+msgstr "Rendre non-intrusifs les messages kernel"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, c-format
-msgid "Allow Thin Clients"
-msgstr "Autoriser les client légers"
+msgid "This theme haven't yet any bootsplash in %s !"
+msgstr "Ces themes n'avaient pas encore d'image de démarrage dans %s!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Géorgien (disposition russe)"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
+msgstr "sauvegarde du thème de démarrage..."
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_Options"
+#: ../../standalone/draksplash_.c:428
+msgid "ProgressBar color selection"
+msgstr "Sélection de couleur de la barre de progression"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Your printer model"
-msgstr "Le modèle de votre imprimante"
+#: ../../standalone/draksplash_.c:449
+msgid "You must choose an image file first!"
+msgstr "Vous devez choisir une image d'abord!"
-#: ../../any.pm:1
+#: ../../standalone/draksplash_.c:458
+msgid "Generating preview ..."
+msgstr "Création de l'aperçu ..."
+
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Aperçu de lécran de démarrage %s (%s)"
+
+#: ../../standalone/drakxtv_.c:46
msgid ""
+"XawTV isn't installed!\n"
"\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)."
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
+"XawTV n'est pas installé!\n"
"\n"
"\n"
-"(ATTENTION ! Vous utilisez XFS pour votre partition racine,\n"
-"créer une disquette d'amorçage 1.44 Mo va probablement échouer,\n"
-"parce que XFS a besoin d'un pilote très gros)."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"Si vous avez une carte TV mais que DrakX n'e l'a pas détectée (pas de\n"
+"module bttv ni saa7134 dans « /etc/modules ») ou que DrakX n'a pas installé "
+"xawtv,\n"
+"envoyez, s'il vous plaît, le résultat de la commande « lspcidrake -v -f »\n"
+"à « install\\@mandrakesoft.com » avec comme sujet « undetected TV card ».\n"
"\n"
-"- Delete hard drive tar files after backup.\n"
-msgstr ""
"\n"
-"- Efface les fichiers du disque dur après sauvegarde.\n"
+"Vous pouvez quand même l'installer en tapant « urpmi xawtv » dans un "
+"terminal en tant que root."
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
-msgstr ""
-"Aucune image de CD ou de DVD trouvée. Veuillez copier le programme "
-"d'installation et les paquetages rpm."
+#: ../../standalone/drakxtv_.c:63
+msgid "Canada (cable)"
+msgstr "Canada (cable)"
-#: ../advertising/04-configuration.pl:1
-#, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "Le logiciel de configuration universel de Mandrake"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
+msgstr "USA (hertzien)"
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, c-format
-msgid "Save"
-msgstr "Valider"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
+msgstr "USA (cable)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
-msgstr "%s n'est pas supporté"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
+msgstr "USA (cable ou HRC)"
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
-msgstr "Charger les pilotes pour vos périphériques USB."
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
+msgstr "Chine (hertzien)"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Disk"
-msgstr "Disques"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
+msgstr "Japon (hertzien)"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter a printer device URI"
-msgstr "Indiquer l'adresse du périphérique d'impression"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
+msgstr "Japon (cable)"
-#: ../advertising/01-thanks.pl:1
-#, 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."
-msgstr ""
-"Le succès de MandrakeSoft est basé sur le logiciel libre. Votre nouveau "
-"système d'exploitation est le résultat du travail de la communauté Linux "
-"mondiale."
+#: ../../standalone/drakxtv_.c:65
+msgid "East Europe"
+msgstr "Europe de l'est"
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "Israël"
+#: ../../standalone/drakxtv_.c:65
+msgid "France [SECAM]"
+msgstr "France [SECAM]"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "Guyane Française"
+#: ../../standalone/drakxtv_.c:65
+msgid "Ireland"
+msgstr "Irlande"
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "default:LTR"
+#: ../../standalone/drakxtv_.c:65
+msgid "West Europe"
+msgstr "Europe de l'ouest"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
-msgstr "Une ligne de commande doit être tapée !"
+#: ../../standalone/drakxtv_.c:66
+msgid "Australia"
+msgstr "Australie"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
-msgstr "Sélectionner individuellement les utilisateurs"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
+msgstr "Nouvelle Zélande"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer printer configuration"
-msgstr "Transfert de la configuration de l'imprimante"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
+msgstr "Afrique du Sud"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Souhaitez-vous activer l'impression sur les imprimantes ci-dessus ?\n"
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
+msgstr "Argentine"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of suid root files"
-msgstr ""
-"Vérifier les ajouts/retraits des fichiers qui ont la permission \"suid\""
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
+msgstr "Câble TV australien Optus"
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:102
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."
+"Please,\n"
+"type in your tv norm and country"
msgstr ""
-"Pour que cela fonctionne avec un Contrôleur Principal de Domaine (PDC) "
-"Windows 2000, vous devrez probablement demander à l'administrateur de "
-"lancer : C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" "
-"everyone /add et de redémarrer le serveur.\n"
-"Vous aurez aussi besoin du nom utilisateur et du mot de passe d'un "
-"administrateur de domaine pour joindre la machine au domaine Windows(tm).\n"
-"Si le réseau n'est pas encore activé, le domaine sera joint après l'étape de "
-"configuration du réseau.\n"
-"Si cette étape échoue pour quelque raison que ce soit et que "
-"l'authentification de domaine ne fonctionne pas, lancez 'smbpasswd -j DOMAIN "
-"-U USER%%PASSWORD' en utilisant votre domaine Windows(tm), et vos nom "
-"d'administrateur et mot de passe, après le démarrage du système.\n"
-"La commande 'wbinfo -t' permet de tester la validité de votre "
-"authentification."
+"SVP,\n"
+"Veuillez choisir votre région et votre norme de TV"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "%s (Port %s)"
-msgstr "%s (Port %s)"
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
+msgstr "Norme TV :"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use network connection to backup"
-msgstr "Sauvegarder via le réseau"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
+msgstr "Zone :"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Kernel version"
-msgstr "Version du noyau"
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
+msgstr "Recherche des canaux de télévision en cours ..."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
+msgstr "Recherche des canaux de télévision"
+
+#: ../../standalone/drakxtv_.c:120
+msgid "There was an error while scanning for TV channels"
+msgstr "Une erreur est survenue pendant la recherche des chaînes TV."
+
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
+msgstr "XawTV n'est pas installé!"
+
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
+msgstr "Passez une bonne journée!"
+
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Maintenant vous pouvez lancer xawtv (sous X-Window) !\n"
+
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
+msgstr "Aucune carte TV détectée !"
+
+#: ../../standalone/drakxtv_.c:148
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"
+"No TV Card has been detected on your machine. Please verify that a Linux-"
+"supported Video/TV Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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."
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"C'est maintenant le moment de choisir les paquetages qui seront installés\n"
-"sur votre système. Sachez que Mandrake Linux contient plusieurs milliers de\n"
-"paquetages à installer, et qu'il n'est pas nécessaire de tous les connaître\n"
-"par coeur.\n"
-"\n"
-"Les paquetages sont regroupés selon la nature de l'installation. Les\n"
-"groupes sont divisés en quatre sections principales :\n"
-"\n"
-" * « %s »: si vous comptez utiliser votre machine ainsi, sélectionner un ou\n"
-"plusieurs groupes y correspondant.\n"
-"\n"
-" * « %s »: si votre système doit être utilisé pour la programmation,\n"
-"choisissez les groupes désirés.\n"
-"\n"
-" * « %s »: finalement, si votre système doit agir en tant que serveur, vous\n"
-"pourrez sélectionner les services que vous voulez installer.\n"
-"\n"
-" * « %s »: ce groupe vous permettra de déterminer quel environnement\n"
-"graphique vous voulez avoir sur votre système. Évidemment, il vous en faut\n"
-"au moins un pour utiliser votre station en mode graphique.\n"
-"\n"
-"En plaçant votre souris au dessus d'un nom de groupe, vous verrez\n"
-"apparaître une courte description de ce groupe. Si vous dé-sélectionnez\n"
-"tous les groupes lors d'une installation standard (par opposition à une\n"
-"mise à jour), un dialogue apparaîtra proposant différentes options pour une\n"
-"installation minimale :\n"
-"\n"
-" * « %s » : installe le moins de paquetages possible pour avoir un\n"
-"environnement de travail graphique ;\n"
+"Aucune carte TV n'a été détectée sur votre ordinateur. Veuillez vérifier "
+"qu'une carte TV/Vidéo supportée par Linux est correctement branchée.\n"
"\n"
-" * « %s » : installe le système de base plus certains utilitaires de base\n"
-"et leur documentation. Cette installation est utilisable comme base pour\n"
-"monter un serveur ;\n"
"\n"
-" * « %s » : installera le strict minimum nécessaire pour obtenir un système\n"
-"GNU/Linux fonctionnel, en ligne de commande. Cette installation prends à\n"
-"peu près 65 MO.\n"
+"Vous pouvez visiter notre base de données de support matériel à :\n"
"\n"
-"Vous pouvez finalement cocher l'option « %s ». Cette option est à utiliser\n"
-"si vous connaissez exactement le paquetage désiré ou si vous voulez avoir\n"
-"le contrôle total de votre installation.\n"
"\n"
-"Si vous avez démarré l'installation en mode « %s », vous pouvez\n"
-"« dé-sélectionner » tous les groupes afin d'éviter l'installation de\n"
-"nouveaux programmes. Cette option est très utile pour restaurer un système\n"
-"défectueux."
+"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
-msgstr "Accepter"
+#: ../../standalone/harddrake2_.c:17
+msgid "Alternative drivers"
+msgstr "Autres pilotes"
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
-msgstr "Serveur"
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
+msgstr "list des autres pilotes pour cette carte son"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
-msgstr "Touche Majuscule gauche"
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
+msgstr "Bus"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " local network"
-msgstr "réseau local"
+#: ../../standalone/harddrake2_.c:21
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+"ceci est le bus physique sur lequel le périphérique est connecté (ex: PCI, "
+"USB, ...)"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "Choix erroné, veuillez recommencer\n"
+#: ../../standalone/harddrake2_.c:22
+msgid "Channel"
+msgstr "Canal"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
-msgstr "Afficher les messages systèmes sur la console 12"
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
+msgstr "Nappe EIDE/Canal SCSI"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Search new servers"
-msgstr "Rechercher les nouveaux serveurs"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
-msgstr "Îles Heard et McDonald"
+#: ../../standalone/harddrake2_.c:23
+msgid ""
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
+msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
-msgstr "Pas de pilote alternatif"
+#: ../../standalone/harddrake2_.c:26
+msgid "Bus identification"
+msgstr "IDs du matériel"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr "Passer en mode expert"
+#: ../../standalone/harddrake2_.c:27
+msgid ""
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
+msgstr ""
+"- périphériques PCI et USB : liste des identifiants vendeur, périphériques, "
+"sous-vendeur, sous-périphériques PCI/USB"
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
-msgstr "(sur cette machine)"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
+msgstr "Position sur le bus"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
+#: ../../standalone/harddrake2_.c:30
+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 ""
-"L'adresse de la passerelle doit ressembler à quelque chose comme "
-"« 192.168.1.20 »"
+"- périphériques PCI: slot, périphériques et fonction PCI de cette carte\n"
+"- périphériques EIDE: ce périphériques est soit maitre soit esclave\n"
+"- périphériques SCSI: the bus et l'identifiant SCSI"
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
+#: ../../standalone/harddrake2_.c:33
+#, fuzzy
+msgid "Cache size"
+msgstr "Taille de bloc"
+
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
msgstr ""
-"Winmodem détecté basé sur « %s ». Voulez-vous installer le logiciel "
-"approprié ?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking at packages already installed..."
-msgstr "Recherche des paquetages déjà installés..."
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
-msgstr "Utiliser des sauvegardes différentielles"
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Driver"
-msgstr "Pilote"
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
msgstr ""
-"Linuxconf effectue certaines tâches au démarrage afin de maintenir la "
-"configuration du système."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "DVD-R device"
-msgstr "périphérique DVDR"
+#: ../../standalone/harddrake2_.c:36
+#, fuzzy
+msgid "Cpuid level"
+msgstr "Niveau de sécurité"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer on remote lpd server"
-msgstr "Imprimante sur serveur LPD distant"
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, 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."
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
msgstr ""
-"Avant d'installer des polices de caractères, assurez-vous que vous avez\n"
-"les permissions de les utiliser et de les installer sur votre système. \n"
-"\n"
-"- Vous pouvez installer les polices par la voie habituelle. Dans de rares "
-"cas,\n"
-"des polices boguées peuvent bloquer votre serveur d'affichage XFree."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:37
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."
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
msgstr ""
-"Yaboot est un chargeur de démarrage pour les équipements NewWorld\n"
-"MacIntosh. Il est capable de démarrer soit GNU/Linux, MacOS ou MacOSX,\n"
-"s'ils sont présents sur votre ordinateur bien entendu. Normalement, ces\n"
-"systèmes d'exploitation sont correctement détectés et installés. Si ce\n"
-"n'est pas le cas, vous pouvez maintenant ajouter une entrée à la main.\n"
-"Soyez prudent et choisissez les bons paramètres.\n"
-"\n"
-"Les options principales de Yaboot sont :\n"
-"\n"
-" * Message Init : un message texte apparaît l'invite de démarrage ;\n"
-"\n"
-" * Périphérique de démarrage (« Boot ») : indique où vous voulez placer\n"
-"l'information nécessaire pour démarrer GNU/Linux. Généralement, il est\n"
-"préférable de créer une partition bootstrap avant l'installation pour\n"
-"contenir cette information ;\n"
-"\n"
-" * Délai Open Firmware : contrairement à LILO, deux délais sont disponibles\n"
-"pour yaboot. Le premier se mesure en secondes et à cette étape, vous pouvez\n"
-"choisir entre le CD, l'amorçage OF (Open Firmware), MacOS ou Linux ;\n"
-"\n"
-" * Expiration du démarrage du noyau (« Kernel Boot Timeout » : cette\n"
-"expiration de temps est similaire au délai de démarrage de LILO. Après\n"
-"avoir choisi Linux, il y aura un délai de 0,1 secondes avant que le noyau\n"
-"par défaut soit choisi ;\n"
-"\n"
-" * Activer le démarrage via un CD ? : en cochant cette option, vous pourrez\n"
-"choisir l'option « C » pour démarrer avec un CD lors de la première invite\n"
-"de démarrage ;\n"
-"\n"
-" * Activer le démarrage OF ? : en choisissant cette option, vous pourrez\n"
-"sélectionner la touche « N » pour activer Open Firmware lors de la première\n"
-"invite de démarrage ;\n"
-"\n"
-" * OS par défaut : vous pouvez choisir le système d'exploitation qui\n"
-"démarrera par défaut lorsque le délai de temps attribué à Open Firmware\n"
-"expire."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
-msgstr "Mercredi"
+#: ../../standalone/harddrake2_.c:38
+#, fuzzy
+msgid "This field describes the device"
+msgstr "ce champs décrit le périphérique"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Germany"
-msgstr "Allemagne"
+#: ../../standalone/harddrake2_.c:39
+msgid "Old device file"
+msgstr "Ancien nom de périphérique"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Austria"
-msgstr "Autriche"
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
+msgstr "ancien nom de périphérique statique utilisé dans le paquetage dev"
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "Pas de souris"
+#: ../../standalone/harddrake2_.c:41
+msgid "New devfs device"
+msgstr "Nouveau périphérique devfs"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "Veuillez choisir la taille de votre CD/DVD (Mo)"
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr "nouveau nom de périphérique dynamique généré par le kernel"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check permissions of files in the users' home"
-msgstr "Vérifie les droits des fichiers dans les dossiers personnels"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr "Lancez « sndconfig » après l'installation pour configurer la carte son"
+#: ../../standalone/harddrake2_.c:43
+msgid "Module"
+msgstr "Module"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr "Réduire l'arborescence"
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr "le module du noyau GNU/Linux qui gère ce périphérique"
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "Auto Install Configurator"
-msgstr "Configurateur d'installation automatisée"
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "Configuration du réseau"
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
-msgstr "Où désirez-vous installer le programme d'amorçage ?"
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
+msgstr ""
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:46
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."
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-"La première étape consiste à choisir votre langue.\n"
-"\n"
-"Le choix de la langue sera appliqué à la documentation, l'installation et\n"
-"le système en général. Commencez par choisir la région où vous vous situez,\n"
-"puis la langue que vous parlez.\n"
-"\n"
-"En cliquant sur « %s », le programme vous proposera également des langues\n"
-"complémentaires pouvant être installées sur votre station de travail. En\n"
-"choisissant des langues supplémentaires, le programme vous installera toute\n"
-"la documentation et les applications nécessaires à l'utilisation de ces\n"
-"langues. Par exemple, si vous prévoyez d'accueillir des utilisateurs\n"
-"d'Espagne sur votre machine, choisissez le français comme langue principale\n"
-"dans l'arborescence, et « %s », dans la section avancée.\n"
-"\n"
-"Remarquez que vous n'êtes pas limité à une langue supplémentaire. Vous\n"
-"pouvez en choisir plusieurs, ou même les installer toutes en choisissant\n"
-"« %s ». Choisir le support pour une langue signifie ajouter les\n"
-"traductions, les polices, correcteurs orthographiques, etc. La case « %s »\n"
-"force le système à utiliser l'encodage unicode (UTF-8). Mais c'est une\n"
-"fonctionnalité expérimentale. Toutefois, si vous sélectionnez des langages\n"
-"qui nécessitent des encodages incompatibles, le support unicode sera\n"
-"installé de toutes façons.\n"
-"\n"
-"Pour passer d'une langue à l'autre, vous pouvez lancer l'utilitaire\n"
-"« /usr/sbin/localedrake » en tant que « root » pour changer la langue\n"
-"utilisée dans tout le système ; connectez-vous en simple utilisateur pour\n"
-"ne changer que la langue de cet utilisateur."
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr "%s n'est pas supporté par cette version de Mandrake Linux."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "tape"
-msgstr "Cartouche"
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr "Client DHCP"
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
msgstr ""
-"Lister les utilisateurs dans les gestionnaires de connexion (kdm et gdm)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Souris Logitech (série, ancien modèle C7)"
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
+msgstr ""
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Restauration impossible depuis le fichier %s : %s"
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
+msgstr ""
+
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
+msgstr ""
+
+#: ../../standalone/harddrake2_.c:53
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"
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-"La table des partitions du disque %s n'a pas pu être lue.\n"
-"Il est possible de réinitialiser les partitions endommagées (TOUTES LES\n"
-"DONNÉES seront perdues). Une autre solution consiste à ne pas autoriser\n"
-"le logiciel DrakX à modifier la table des partitions (l'erreur est %s)\n"
-"\n"
-"Êtes-vous d'accord pour perdre toutes les partitions de ce disque ?\n"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Find Package"
-msgstr "Rechercher des Paquetages"
+#: ../../standalone/harddrake2_.c:55
+#, fuzzy
+msgid "Floppy format"
+msgstr "Formater"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr "Êtes-vous sûr de vouloir définir l'impression sur cette machine ?\n"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "New devfs device"
-msgstr "Nouveau périphérique devfs"
+#: ../../standalone/harddrake2_.c:56
+#, fuzzy
+msgid "Level"
+msgstr "Niveau de RAID"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
-msgstr "ERREUR : Impossible de lancer %s."
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
+msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Boot Style Configuration"
-msgstr "Configuration du style de démarrage"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
+msgstr "Classe de matériel"
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic time synchronization"
-msgstr "Synchronisation automatique de l'horloge"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
+msgstr "classe de matériel"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
-msgstr "Fichiers de sauvegardes non trouvés sur %s."
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+msgid "Model"
+msgstr "Modèle"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
-msgstr "Arménien (phonétique)"
+#: ../../standalone/harddrake2_.c:58
+msgid "hard disk model"
+msgstr "Modèle de disque dur"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Card model:"
-msgstr "Modèle de carte :"
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
-msgstr "Client léger"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Model name"
+msgstr "Nom du module"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
-msgstr "Merci d'avoir choisi Mandrake Linux 9.2"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Official vendor name of the cpu"
+msgstr "le nom du vendeur de ce périphérique"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Start Server"
-msgstr "Lancer le serveur"
+#: ../../standalone/harddrake2_.c:61
+msgid "Number of buttons"
+msgstr "Nombre de bouttons"
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr "Turkménistan"
+#: ../../standalone/harddrake2_.c:62
+#, fuzzy
+msgid "Name"
+msgstr "Nom : "
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "All remote machines"
-msgstr "Toutes les machines distantes"
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "network printer port"
+msgstr ", imprimante réseau « %s », port « %s »"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Install themes"
-msgstr "Installation de thèmes"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
-msgstr "Espagnol"
+#: ../../standalone/harddrake2_.c:64
+#, fuzzy
+msgid "the number of the processor"
+msgstr "la couleur de la barre de progression"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "Préparation de l'installation"
+#: ../../standalone/harddrake2_.c:65
+#, fuzzy
+msgid "Model stepping"
+msgstr "chargement des paramètres"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
-msgstr "Modifier l'hôte/réseau sélectionné"
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add User -->"
-msgstr "Ajouter un utilisateur -->"
+#: ../../standalone/harddrake2_.c:66
+#, fuzzy
+msgid "The type of bus on which the mouse is connected"
+msgstr "Veuillez choisir le port série sur lequel votre souris est connectée."
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "Nauru"
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
+msgstr "le nom du vendeur de ce périphérique"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type fonts installation"
-msgstr "Installation de polices « True Type »"
+#: ../../standalone/harddrake2_.c:68
+#, fuzzy
+msgid "the vendor name of the processor"
+msgstr "le nom du vendeur de ce périphérique"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
-msgstr "Détecter automatiquement les imprimantes reliées directement au réseau"
+#: ../../standalone/harddrake2_.c:82
+msgid "/_Quit"
+msgstr "/_Quitter"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "LAN configuration"
-msgstr "Configuration LAN (réseau local)"
+#: ../../standalone/harddrake2_.c:83
+#, fuzzy
+msgid "/Autodetect _printers"
+msgstr "Auto-détecté"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "hard disk model"
-msgstr "Modèle de disque dur"
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
+msgstr "/_Options"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/harddrake2_.c:85
+#, fuzzy
+msgid "/Autodetect _modems"
+msgstr "Auto-détecté"
+
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
+msgstr "/_Aide"
+
+#: ../../standalone/harddrake2_.c:89
+msgid "/_Help..."
+msgstr "/_Aide..."
+
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
+msgstr "Aide de Harddrake"
+
+#: ../../standalone/harddrake2_.c:93
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"
+"Description of the fields:\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 ""
-" - Maintenir /etc/exports :\n"
-" \t\tClusternfs permet d'exporter la partition racine (/) vers les "
-"clients légers. drakTermServ fait les\n"
-" \t\tmodifications nécessaires pour autoriser les clients légers à y "
-"accéder de façon anonyme.\n"
+"Description des champs:\n"
"\n"
-" \t\tUne entrée typique dans ce fichier est :\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tAvec SUBNET/MASK défini pour votre réseau."
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
+#: ../../standalone/harddrake2_.c:96
+msgid ""
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
msgstr ""
-"Vous ne pouvez pas utiliser une partition logique LVM pour le point de "
-"montage %s"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
-msgstr "Récupérer les polices de Windows"
+#: ../../standalone/harddrake2_.c:96
+#, fuzzy
+msgid "Select a device !"
+msgstr "Sélectionnez un scanner"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
+msgstr "/_Signaler une bogue"
-#: ../../standalone/drakclock:1
-#, c-format
+#: ../../standalone/harddrake2_.c:102
+msgid "/_About..."
+msgstr "/_A propos..."
+
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
+msgstr "A propos de Harddrake"
+
+#: ../../standalone/harddrake2_.c:105
msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
msgstr ""
-"Votre ordinateur peut synchroniser son horloge\n"
-"avec un un serveur distant via NTP"
+"Harddrake est l'outil de configuration Mandrake du matériel.\n"
+"Version:"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr "Iranien"
+#: ../../standalone/harddrake2_.c:106
+msgid "Author:"
+msgstr "Auteur:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
-msgstr "Croatie"
+#: ../../standalone/harddrake2_.c:113
+msgid "Detection in progress"
+msgstr "Détection en cours"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "Passerelle :"
+#: ../../standalone/harddrake2_.c:119
+msgid "Harddrake2 version "
+msgstr "Harddrake2 version"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add server"
-msgstr "Ajouter un serveur"
+#: ../../standalone/harddrake2_.c:126
+msgid "Detected hardware"
+msgstr "Matériel détecté"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote printer name"
-msgstr "Nom de l'imprimante"
+#: ../../standalone/harddrake2_.c:129
+msgid "Information"
+msgstr "Informations"
-#: ../advertising/10-security.pl:1
+#: ../../standalone/harddrake2_.c:131
+msgid "Configure module"
+msgstr "Configuration du module"
+
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
+msgstr "Lancer l'outil de configuration"
+
+#: ../../standalone/harddrake2_.c:143
#, c-format
+msgid "Running \"%s\" ..."
+msgstr "Lancement de « %s »..."
+
+#: ../../standalone/harddrake2_.c:159
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."
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-"MandrakeSoft a créé des outils exclusifs pour créer le plus sécurisé des "
-"Linux ayant jamais existé : DrakSec, un outil permettant de gérer la "
-"sécurité, et un solide pare-feu vous permettent de grandement réduire les "
-"risques de piratage."
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "Périphérique : "
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
+msgstr "maître"
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Printerdrake"
-msgstr "Printerdrake"
+#: ../../standalone/harddrake2_.c:231
+msgid "secondary"
+msgstr "esclave"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "Licence"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect modems"
+msgstr "Auto-détecté"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "System Options"
-msgstr "Options système"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect printers"
+msgstr "Auto-détecté"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Please choose the desired security level"
-msgstr "Choisissez le niveau de sécurité désiré"
+#: ../../standalone/harddrake2_.c:261
+#, fuzzy
+msgid "/Options"
+msgstr "/_Options"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr "Cet hôte est déjà dans la liste, il ne peut pas être rajouté.\n"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "Veuillez choisir votre type de clavier."
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", USB printer"
-msgstr ", imprimante USB"
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr "Souhaitez-vous que la touche BackSpace retourne Delete en console ?"
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/livedrake_.c:18
+msgid "Change Cd-Rom"
+msgstr "Changer de cédérom"
+
+#: ../../standalone/livedrake_.c:19
msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
-"Ne peut terminer correctement mkbootdisk : \n"
+"Changement de cédérom\n"
+"\n"
+"Veuillez insérer le cédérom d'Installation dans votre lecteur.\n"
+"Ceci fait, cliquez sur « OK ».\n"
"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+"Si vous ne le possédez pas, cliquez sur « Annuler » pour annuler la mise à "
+"jour."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
-"Les sauvegardes incrémentales ne sauvent que les fichiers modifiés ou "
-"nouveaux depuis la sauvegarde précédente."
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Impossible de démarrer la mise à jour !!!\n"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Choisissez les applications qui supporteront ces polices"
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
+msgstr ""
+"Les changements ont été effectués mais ne seront effectifs qu'après votre "
+"déconnection"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "Configuration de X"
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
+msgstr "logdrake"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hd"
-msgstr "hd"
+#: ../../standalone/logdrake_.c:68
+msgid "Show only for the selected day"
+msgstr "N'afficher que les pour les jours sélectionnés"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turc (modèle traditionnel « F »)"
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
+msgstr "/Fichier/_Nouveau"
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "Félicitations !"
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
+msgstr "<control>N"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
-msgstr "Utiliser l'id du propriétaire lors de l'exécution"
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
+msgstr "/Fichier/_Ouvrir"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Allow remote root login"
-msgstr "Permettre la connexion distante en tant que root"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
+msgstr "<control>O"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Down"
-msgstr "Descendre"
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr "/Fichier/Enregi_strer"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
-msgstr "Imprimante à accès direct (pas de pilote)"
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
+msgstr "<control>S"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Install rpm"
-msgstr "Installation rpm"
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
+msgstr "/Fichier/_Enregistrer sous"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
-"Pour imprimer un fichier depuis la ligne de commande (une fenêtre de "
-"terminal), vous pouvez soit utiliser la commande « %s <fichier> » ou un "
-"utilitaire d'impression graphique : « xpp <fichier> » ou « kprinter "
-"<fichier> ». Les utilitaires graphiques vous permettent de choisir "
-"l'imprimante et de modifier les paramètres d'impression facilement.\n"
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr "/Fichier/-"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "Temps restant "
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
+msgstr "/Options/Test"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "Anglais (Angleterre)"
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
+msgstr "/Aide/_A propos..."
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr "Démonter"
+#: ../../standalone/logdrake_.c:145
+msgid "User"
+msgstr "Utilisateur"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft Explorer"
+#: ../../standalone/logdrake_.c:146
+msgid "Messages"
+msgstr "Messages"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "Désinstaller des polices"
+#: ../../standalone/logdrake_.c:147
+msgid "Syslog"
+msgstr "Syslog"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Veuillez patienter, détection et configuration des périphériques..."
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
+msgstr "Explications sur les Outils Mandrake"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "Allemand (sans touches mortes)"
+#: ../../standalone/logdrake_.c:151
+msgid "search"
+msgstr "chercher"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
-msgstr "\tEnvoyez un mail à %s\n"
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
+msgstr "Un outil pour voir vos fichiers journaux"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transferring %s..."
-msgstr "Transfert de %s..."
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
+msgstr "Paramètres"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mille couleurs (15 bits)"
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
+msgstr "contenant"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
-msgstr ""
-"Souhaitez-vous exporter par NFS (protocole Unix) ou SMB (protocole Windows) ?"
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
+msgstr "mais ne contenant pas"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
-msgstr "Gambie"
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
+msgstr "Choisir le fichier"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr ""
-"Mandrake Linux 9.2 intègre un puissant logiciel de configuration centralisé"
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
+msgstr "Calendrier"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Reboot"
-msgstr "Redémarrage"
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
+msgstr "Contenu du fichier"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device"
-msgstr "Périphérique multifonction"
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+msgid "Mail alert"
+msgstr "Alerte par courrier"
-#: ../../network/drakfirewall.pm:1
+#: ../../standalone/logdrake_.c:245
#, 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."
-msgstr ""
-"Vous pouvez entrer divers ports. \n"
-"Exemples valides : 139/tcp 139/udp.\n"
-"Jetez un ½il à /etc/services pour plus d'infos."
+msgid "please wait, parsing file: %s"
+msgstr "s'il vous plaît attendez, examen du fichier : %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Tape \n"
-msgstr "\t-Bande\n"
+#: ../../standalone/logdrake_.c:392
+msgid "Mail alert configuration"
+msgstr "Configuration des alertes par courrier"
-#: ../../standalone/drakhelp:1
-#, c-format
+#: ../../standalone/logdrake_.c:393
msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
+"Welcome to the mail configuration utility.\n"
+"\n"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Aucun navigateur n'est installé sur votre système. Veuillez en installer un "
-"si vous voulez consulter le système d'aide."
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remember this password"
-msgstr "Se souvenir du mot de passe"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr "car %s n'est pas résolu"
+"Bienvenue dans l'utilitaire de configuration des alertes par courrier.\n"
+"\n"
+"Vous allez pouvoir configurer ici vos les alertes systèmes.\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Le partage de la connexion internet est maintenant activé."
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
+msgstr "Apache (serveur www)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr "\t-celle par transfert SSH.\n"
+#: ../../standalone/logdrake_.c:401
+msgid "Domain Name Resolver"
+msgstr "Solveur de Nom de domaine"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
-"Si l'imprimante voulue a été autodétectée, choisissez la dans la liste et "
-"ajoutez un nom d'utilisateur, un mot de passe et un groupe de travail si "
-"nécessaire."
+#: ../../standalone/logdrake_.c:402
+msgid "Ftp Server"
+msgstr "Serveur Ftp"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " cable"
-msgstr "cable"
+#: ../../standalone/logdrake_.c:403
+msgid "Postfix Mail Server"
+msgstr "Serveur de courrier Postfix"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
-msgstr "Utiliser l'espace libre sur la partition Windows"
+#: ../../standalone/logdrake_.c:404
+msgid "Samba Server"
+msgstr "Serveur Sambe"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "%s trouvé sur %s. Le configurer automatiquement ?"
+#: ../../standalone/logdrake_.c:405
+msgid "SSH Server"
+msgstr "Serveur SSH"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Pilote XFree86 : %s\n"
+#: ../../standalone/logdrake_.c:406
+msgid "Webmin Service"
+msgstr "Service Webmin"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr "Cet hôte/réseau est déjà dans la liste, il ne peut pas être rajouté.\n"
+#: ../../standalone/logdrake_.c:407
+msgid "Xinetd Service"
+msgstr "Service Xinetd"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr "Choisissez les paquetages que vous voulez installer"
+#: ../../standalone/logdrake_.c:414
+msgid "service setting"
+msgstr "configuration des services"
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
-msgstr "Papouasie-Nouvelle-Guinée"
+#: ../../standalone/logdrake_.c:415
+msgid ""
+"You will receive an alert if one of the selected services is no more running"
+msgstr ""
+"Vous recevrez une alerte si l'un des services sélectionnés ne tourne plus"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Périphérique multifonction sur port parallèle"
+#: ../../standalone/logdrake_.c:428
+msgid "load setting"
+msgstr "chargement des paramètres"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Busy files"
-msgstr "Fichiers occupés"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
+msgstr "Vous recevrez une alerte si la charge machine dépasse cette valeur"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
-msgstr "Serbe (cyrillique)"
+#: ../../standalone/logdrake_.c:444
+msgid "alert configuration"
+msgstr "configuration des alertes"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Veuillez entrer le dossier où résident les sauvegardes"
+#: ../../standalone/logdrake_.c:445
+msgid "Please enter your email address below "
+msgstr "Veuillez entrer votre adresse e-mail ci -dessous"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
-msgstr "Rendre non bavards les messages noyau"
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
+msgstr "Enregistrer sous..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
-"Désirez-vous que l'imprimante « %s » soit l'imprimante\n"
-"par défaut ?"
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "Veuillez choisir le type de votre souris."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
-msgstr "La plage DHCP de fin"
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
+msgstr "Émuler le troisième bouton ?"
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "Création de la disquette d'amorçage..."
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Configuration du réseau"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please, testing your connection..."
-msgstr "Test de votre connexion, veuillez patienter..."
+#: ../../standalone/net_monitor_.c:96
+#, fuzzy
+msgid "Profile "
+msgstr "Profil : "
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "Arrêt de l'interface réseau..."
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
+msgstr ""
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "Identifiant de connexion"
+#: ../../standalone/net_monitor_.c:103
+#, fuzzy
+msgid "Sending Speed:"
+msgstr "Envoi des fichiers..."
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
msgstr ""
-"NFS est un protocole populaire pour le partage de fichiers sur les réseaux "
-"TCP/IP.\n"
-"Ce service permet de vérouiller des fichiers sur NFS."
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
-msgstr "Client DHCP"
+#: ../../standalone/net_monitor_.c:106
+#, fuzzy
+msgid "Connection Time: "
+msgstr "Type de connexion : "
-#: ../../standalone/harddrake2:1
-#, 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"
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
msgstr ""
-"Harddrake est l'outil de configuration Mandrake du matériel.\n"
-"<span foreground=\"royalblue3\">Version :</span> %s\n"
-"<span foreground=\"royalblue3\">Author :</span> Thierry Vignaud &lt;"
-"tvignaud@mandrakesoft.com&gt;\n"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
-msgstr "ne rien faire"
+#: ../../standalone/net_monitor_.c:147
+#, fuzzy
+msgid "Wait please, testing your connection..."
+msgstr "Test de votre connexion..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Impression/Acquisition sur l'imprimante « %s »"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Connexion à Internet"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "omit raid modules"
-msgstr "ne pas tenir compte des modules RAID"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Connexion à Internet"
-#: ../../services.pm:1
-#, 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)."
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
msgstr ""
-"Lpd est le serveur d'impression nécessaire au bon fonctionnement de la "
-"commande lpr. Il permet gérer les files d'attente et les demandes "
-"d'impression."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
-msgstr "Irlandais"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sunday"
-msgstr "Dimanche"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Internet Connection Configuration"
-msgstr "Configuration de la connexion internet"
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
+msgstr ""
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
-msgstr "nombres séparés par des virgules"
+#: ../../standalone/net_monitor_.c:225
+#, fuzzy
+msgid "Connection complete."
+msgstr "Vitesse de connexion"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/net_monitor_.c:226
msgid ""
-"Once you've selected a device, you'll be able to see the device information "
-"in fields displayed on the right frame (\"Information\")"
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-"Après avoir sélectionné un périphérique, vous pourrez consulter les "
-"informations correspondantes dans la partie droite (« Information »)"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule up one level"
-msgstr "Augmenter la priorité de la règle d'un niveau"
+#: ../../standalone/net_monitor_.c:330
+#, fuzzy
+msgid "Color configuration"
+msgstr "configuration des alertes"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
msgstr ""
-"Le scanner suivant :\n"
-"\n"
-"%s\n"
-"est disponible sur votre système.\n"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Désirez-vous vraiment désinstaller l'imprimante « %s » ?"
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
+msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "I can't find any room for installing"
-msgstr "Pas de place disponible pour l'installation"
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Default printer"
-msgstr "Imprimante par défaut"
+#: ../../standalone/net_monitor_.c:400
+#, fuzzy
+msgid "Local measure"
+msgstr "Fichiers locaux"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
msgstr ""
-"Vous avez configuré plusieurs moyens d'accès à Internet.\n"
-"Choisissez celui que vous voulez utiliser.\n"
-"\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Modify RAID"
-msgstr "Modifier le RAID"
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
+msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:453
+#, fuzzy
msgid ""
-"I have detected an ISDN PCI card, but I don't know its type. Please select a "
-"PCI card on the next screen."
+"Warning, another internet connection has been detected, maybe using your "
+"network"
msgstr ""
-"Une carte RNIS/ISDN a été détectée mais son type est inconnu. Veuillez "
-"sélectionner une carte PCI dans le prochain écran."
+"Attention, une autre connexion internet a été détectée, peut-être utilisant "
+"votre réseau"
-#: ../../any.pm:1
-#, c-format
-msgid "Add user"
-msgstr "Ajouter un utilisateur"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "Connecter"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "disques RAID %s\n"
+#: ../../standalone/net_monitor_.c:459
+#, fuzzy, c-format
+msgid "Disconnect %s"
+msgstr "Se déconnecter"
-#: ../../lang.pm:1
-#, c-format
-msgid "Liberia"
-msgstr "Libéria"
+#: ../../standalone/printerdrake_.c:47
+msgid "Reading printer data ..."
+msgstr "Lecture des données de l'imprimante..."
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
-msgstr ""
-"Impossible d'installer les paquetages nécessaires à la configuration d'un "
-"scanner avec ScannerDrake."
+#: ../../standalone/scannerdrake_.c:39
+msgid "Detecting devices ..."
+msgstr "Détection des périphériques..."
-#: ../../standalone/drakgw:1
-#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-msgstr ""
-"Veuillez entrer le nom de l'interface par laquelle vous etes connecté à "
-"Internet.\n"
-"\n"
-"Exemples:\n"
-"\t\tppp+ pour une connection ADSL ou un modem,\n"
-"\t\teth0 ou eth1 pour connection par cable,\n"
-"\t\tippp+ pour une connection RNIS.\n"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
+msgstr "Test des ports"
-#: ../../steps.pm:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, c-format
-msgid "Choose your keyboard"
-msgstr "Choix du clavier"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr "%s n'est pas supporté par cette version de Mandrake Linux."
-#: ../../steps.pm:1
+#: ../../standalone/scannerdrake_.c:54
#, c-format
-msgid "Format partitions"
-msgstr "Formatage des partitions"
+msgid "%s found on %s, configure it?"
+msgstr "%s trouvé sur %s, configurer ?"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/scannerdrake_.c:57
#, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Correction automatique de la configuration du serveur CUPS"
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr "%s n'est pas dans la base des scanners, configuration manuelle?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Running \"%s\" ..."
-msgstr "Lancement de « %s »..."
+#: ../../standalone/scannerdrake_.c:63
+msgid "Select a scanner"
+msgstr "Sélectionnez un scanner"
-#: ../../harddrake/v4l.pm:1
+#: ../../standalone/scannerdrake_.c:91
#, c-format
-msgid "enable radio support"
-msgstr "activer le support de la radio"
+msgid "This %s scanner is unsupported"
+msgstr "Ce scanner %s n'est pas supporté"
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:105
#, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Partage de scanners pour les hôtes : "
+msgid ""
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
+msgstr ""
+"Scannerdrake n'a pas réussi à détecter votre scanner %s.\n"
+"Veuillez sélectionner le périphérique sur lequel votre scanner est branché"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: %s"
-msgstr "Nom du fichier de bouclage : %s"
+#: ../../standalone/scannerdrake_.c:107
+msgid "choose device"
+msgstr "choisissez le périphérique"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/scannerdrake_.c:113
#, c-format
-msgid "Please choose the printer to which the print jobs should go."
+msgid ""
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
msgstr ""
-"Veuillez choisir l'imprimante sur laquelle seront envoyé les travaux "
-"d'impression."
+"Ce scanner (%s) doit être configurée par printerdrake.\n"
+"Vous pouvez lancer printerdrake depuis le Centre de Contrôle Mandrake dans "
+"la section Matériel"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/scannerdrake_.c:118
#, c-format
-msgid "Do not transfer printers"
-msgstr "Ne pas transférer les imprimantes"
+msgid ""
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
+msgstr ""
+"Votre scanner %s a été configuré.\n"
+"Vous pouvez maintenant scanner des documents en utilisant « XSane » à partir "
+"de Multimédia/Graphisme dans le menu des applications."
-#: ../../help.pm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "Delay before booting the default image"
-msgstr "Délai avant l'activation du choix par défaut"
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Certains matériels listés dans la classe « %s » ont été enlevés:\n"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Hard Disk to backup"
-msgstr "Sauvegarde sur disque dur"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
+msgstr "Certains périphériques ont été ajoutés :\n"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Configure"
-msgstr "Configurer"
+#: ../../standalone/service_harddrake_.c:64
+#, fuzzy
+msgid "Hardware probing in progress"
+msgstr "Détection en cours"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake"
-msgstr "Scannerdrake"
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "Choix de la langue"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Attention, une autre connexion internet a été détectée, peut-être utilisant "
-"votre réseau"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "Classe d'installation"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
-msgstr "Sauvegarder les comptes utilisateurs"
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
+msgstr "Détection des disques durs"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
-"Veuillez indiquer un nom d'hôte pour la machine.\n"
-"Celui-ci doit être un nom de machine pleinement qualifié, par exemple :\n"
-"mamachine.monlabo.masociete.com\n"
-"Vous pouvez également indiquer l'adresse IP de la passerelle\n"
-"si votre réseau local en possède une."
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "Configuration de la souris"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Select Printer Spooler"
-msgstr "Choisissez le gestionnaire d'impression"
+#: ../../steps.pm_.c:18
+msgid "Choose your keyboard"
+msgstr "Choix du clavier"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Create new theme"
-msgstr "Créer un nouveau thème"
+#: ../../steps.pm_.c:19
+msgid "Security"
+msgstr "Sécurité"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
-msgstr "Explications sur les Outils Mandrake"
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "Systèmes de fichiers"
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "No image found"
-msgstr "Aucune image trouvée"
+#: ../../steps.pm_.c:21
+msgid "Format partitions"
+msgstr "Formatage des partitions"
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
-"Quelques paquetages importants n'ont pas été correctement installés. Il se\n"
-"peut que le lecteur de CD-Rom ou le CD-Rom lui-même soit défectueux. Vous\n"
-"pouvez vous assurer du bon état de ce dernier en exécutant la commande "
-"suivante\n"
-"sur un ordinateur fonctionnant correctement : « rpm -qpl Mandrake/RPMS/*."
-"rpm »\n"
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "Choix des paquetages"
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
-msgstr "Mandrake Linux 9.2 : la plate-forme de développement idéale"
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "Installation du système"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Detected model: %s"
-msgstr "Modèle détecté : %s"
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "Ajout des utilisateurs"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
-msgstr "« %s » n'est pas une adresse email valide!"
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "Configuration du réseau"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
-"Le gestionnaire de connexion vous permet d'ouvrir une session graphique\n"
-"sur votre système grâce au serveur d'affichage XFree, et permet le "
-"fonctionnement\n"
-"de plusieurs sessions XFree en même temps sur la même machine."
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "Configuration des services"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr "Si oui, effectue les vérifications quotidiennes de sécurité."
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "Programme d'amorçage"
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
-msgstr "Azerbaïdjan"
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "Disquette d'amorçage"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
-msgstr "Nom de périphérique du matériel de sauvegarde"
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "Configuration de X"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
-msgstr "Pas de bande dans %s !"
+#: ../../steps.pm_.c:34
+msgid "Install system updates"
+msgstr "Mise-à-jour système"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
-msgstr ""
-" --doc <lien> - lien vers une autre page web (pour l'interface de "
-"bienvenue de WM)\n"
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "Fin de l'installation"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Dvorak américain"
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
msgstr ""
-"ceci est le bus physique sur lequel le périphérique est connecté (ex : PCI, "
-"USB, ...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
-msgstr "Quel est le type de connexion de l'imprimante ?"
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "Web/FTP"
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security level"
-msgstr "Niveau de sécurité"
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
+msgstr "Ordinateur réseau (client)"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "final resolution"
-msgstr "résolution finale"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Serveur NFS, serveur SMB, serveur Proxy (mandataire), serveur SSH"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
-msgstr "Services"
+#: ../../share/compssUsers:999
+msgid "Office"
+msgstr "Bureautique"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Auto configuration"
-msgstr "Configuration automatique"
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Station de travail Gnome"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 Mo"
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Outils pour votre Palm Pilot ou votre Visor"
#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Machine de bureau"
+msgid "Workstation"
+msgstr "Station de travail"
+
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Pare Feu/Routeur"
+
+#: ../../share/compssUsers:999
+msgid "Domain Name and Network Information Server"
+msgstr "Serveur de Nom (DNS) et Serveur d'Information (NIS)"
#: ../../share/compssUsers:999
msgid ""
@@ -21402,69 +15212,78 @@ msgstr ""
"tableurs (kspread, gnumeric), visualiseur pdf, etc"
#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Jeux"
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "Outils audio : lecteurs mp3 ou midi, mixeurs, etc"
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr ""
-"Programmes de divertissement : jeux d'arcade, de plateaux, de stratégie, etc"
+msgid "Linux Standard Base. Third party applications support"
+msgstr "« Linux Standard Base ». Support des programmes tiers"
#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimédia"
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Livres et Howto's sur Linux et le Logiciel Libre"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Programmes pour jouer/éditer du son et de la vidéo"
+msgid "KDE Workstation"
+msgstr "Station de travail KDE"
#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internet"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
-msgstr ""
-"Ensemble d'outils pour lire et envoyer des courriers électronique et des "
-"messages de forums (mutt, tin, ...), ainsi que pour naviguer sur Internet"
+msgid "Multimedia - Video"
+msgstr "Multimédia - Vidéo"
#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Ordinateur réseau (client)"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+"Utilitaires pour le courrier électronique, les news, le web, le transfert de "
+"fichiers, les discussions en ligne"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Clients pour différents protocoles, dont ssh"
+msgid "Database"
+msgstr "Base de Données"
#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Configuration"
+msgid "PostgreSQL or MySQL database server"
+msgstr "Serveurs de bases de données PostgreSQL ou MySQL"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
msgstr "Outils pour faciliter la configuration de votre ordinateur"
#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Applications scientifiques"
+msgid "Multimedia - Sound"
+msgstr "Multimédia - Son"
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
-msgstr "Applications scientifiques telles que gnuplot"
+msgid "Documentation"
+msgstr "Documentation"
#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr "Utilitaires console"
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Éditeurs, interpréteurs, outils fichiers, terminaux"
+msgid "Postfix mail server, Inn news server"
+msgstr "Serveur de courrier Postfix, serveur de news Inn"
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "Station de travail KDE"
+msgid "Internet station"
+msgstr "Internet"
+
+#: ../../share/compssUsers:999
+msgid "Multimedia station"
+msgstr "Multimédia"
+
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Configuration"
+
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "Plus d'Environnements de Bureau (Gnome, IceWM)"
#: ../../share/compssUsers:999
msgid ""
@@ -21475,24 +15294,36 @@ msgstr ""
"collection d'outils"
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Station de travail Gnome"
+msgid "Graphical Environment"
+msgstr "Environnement graphique"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Un environnement de bureau avec un ensemble d'applications et d'outils "
-"intuitifs"
+msgid "Development"
+msgstr "Développement"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Autres Environnements de Bureau"
+msgid "Apache, Pro-ftpd"
+msgstr "Apache et Pro-ftpd"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgid "Tools to create and burn CD's"
+msgstr "Outils pour créer et graver des CD"
+
+#: ../../share/compssUsers:999
+msgid "Office Workstation"
+msgstr "Machine de bureau"
+
+#: ../../share/compssUsers:999
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+
+#: ../../share/compssUsers:999
+msgid "Graphics programs such as The Gimp"
+msgstr "Programmes de graphisme comme Le Gimp"
+
+#: ../../share/compssUsers:999
+msgid "DNS/NIS "
+msgstr "DNS/NIS"
#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
@@ -21500,213 +15331,270 @@ msgstr ""
"Bibliothèques de développement C et C++, programmes et fichiers d'en-tête"
#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "Documentation"
+msgid "Network Computer server"
+msgstr "Serveur réseau"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Livres et Howto's sur Linux et le Logiciel Libre"
+msgid "Mail/Groupware/News"
+msgstr "E-mail/Groupware/News"
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr "LSB"
+msgid "Game station"
+msgstr "Jeux"
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr "« Linux Standard Base ». Support des programmes tiers"
+msgid "Video players and editors"
+msgstr "Lecteurs et éditeurs vidéo"
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
+msgid "Multimedia - Graphics"
+msgstr "Multimédia - Graphisme"
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache et Pro-ftpd"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+"Programmes de divertissement : jeux d'arcade, de plateaux, de stratégie, etc"
#: ../../share/compssUsers:999
-msgid "Mail"
-msgstr "Courrier"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"Ensemble d'outils pour lire ou envoyer des courriers électronique (pine, "
+"mutt), des news (tin), et pour naviguer sur l'internet"
#: ../../share/compssUsers:999
-msgid "Postfix mail server"
-msgstr "Serveur de courrier Postfix"
+msgid "Personal Finance"
+msgstr "Gestion Financière"
#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Base de Données"
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Un environnement de bureau avec un ensemble d'applications et d'outils "
+"intuitifs"
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "Serveurs de bases de données PostgreSQL ou MySQL"
+msgid "Clients for different protocols including ssh"
+msgstr "Clients pour différents protocoles, dont ssh"
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Pare Feu/Routeur"
+msgid "LSB"
+msgstr "LSB"
#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Passerelle internet"
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS"
+msgid "Sound and video playing/editing programs"
+msgstr "Programmes pour jouer/éditer du son et de la vidéo"
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Serveur de Nom (DNS) et Serveur d'Information (NIS)"
+msgid "Other Graphical Desktops"
+msgstr "Autres Environnements de Bureau"
#: ../../share/compssUsers:999
-msgid "Network Computer server"
-msgstr "Serveur réseau"
+msgid "Editors, shells, file tools, terminals"
+msgstr "Éditeurs, interpréteurs, outils fichiers, terminaux"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "Serveur NFS, serveur SMB, serveur Proxy (mandataire), serveur SSH"
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "Programmes pour gérer votre finance, comme gnucash"
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
-msgstr ""
-"Ensemble d'outils pour lire et envoyer des courriers électronique, des "
-"messages de forums, et pour naviguer sur Internet"
+msgid "Personal Information Management"
+msgstr "Gestionnaire d'Informations Personnelles"
-#~ msgid "The setup has already been done, and it's currently enabled."
-#~ msgstr ""
-#~ "La configuration a déjà été effectuée, et elle est actuellement activée."
+#: ../../share/compssUsers:999
+msgid "Multimedia - CD Burning"
+msgstr "Multimédia - Gravure de CD"
-#~ msgid "Logs"
-#~ msgstr "Journaux"
+#: ../../share/compssUsers:999
+msgid "Scientific Workstation"
+msgstr "Applications scientifiques"
-#~ msgid "The setup has already been done, but it's currently disabled."
-#~ msgstr ""
-#~ "La configuration a déjà été effectuée, mais elle est actuellement "
-#~ "désactivée."
+#~ msgid "can not open /etc/inittab for reading: %s"
+#~ msgstr "Impossible de lire le fichier /etc/inittab  : %s"
-#~ msgid "Profile "
-#~ msgstr "Profil "
+#, fuzzy
+#~ msgid "cpu number "
+#~ msgstr "un nombre"
#~ msgid ""
-#~ "Welcome to the Internet Connection Sharing utility!\n"
+#~ "You now have the opportunity to download encryption software.\n"
#~ "\n"
-#~ "%s\n"
+#~ "WARNING:\n"
#~ "\n"
-#~ "Click on Configure to launch the setup wizard."
-#~ msgstr ""
-#~ "Bienvenue dans l'utilitaire de partage de connexion internet !\n"
+#~ "Due to different general requirements applicable to these software and "
+#~ "imposed\n"
+#~ "by various jurisdictions, customer and/or end user of theses software "
+#~ "should\n"
+#~ "ensure that the laws of his/their jurisdiction allow him/them to "
+#~ "download, stock\n"
+#~ "and/or use these software.\n"
#~ "\n"
-#~ "%s\n"
+#~ "In addition customer and/or end user shall particularly be aware to not "
+#~ "infringe\n"
+#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
+#~ "respect the provision of these applicable laws, he/they will incure "
+#~ "serious\n"
+#~ "sanctions.\n"
#~ "\n"
-#~ "Cliquez sur Configurer pour lancer l'assistant de configuration."
-
-#~ msgid "Internet Connection Sharing configuration"
-#~ msgstr "Configuration du partage de la connexion internet"
-
-#~ msgid "No Internet Connection Sharing has ever been configured."
-#~ msgstr ""
-#~ "Le partage de la connexion internet n'a encore jamais été configuré."
-
-#~ msgid "when checked, owner and group won't be changed"
+#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
+#~ "liable\n"
+#~ "for special, indirect or incidental damages whatsoever (including, but "
+#~ "not\n"
+#~ "limited to loss of profits, business interruption, loss of commercial "
+#~ "data and\n"
+#~ "other pecuniary losses, and eventual liabilities and indemnification to "
+#~ "be paid\n"
+#~ "pursuant to a court decision) arising out of use, possession, or the "
+#~ "sole\n"
+#~ "downloading of these software, to which customer and/or end user could\n"
+#~ "eventually have access after having sign up the present agreement.\n"
+#~ "\n"
+#~ "\n"
+#~ "For any queries relating to these agreement, please contact \n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
#~ msgstr ""
-#~ "une fois vérifiés, le propriétaire et le groupe ne seront plus modifiés"
-
-#~ msgid ""
-#~ "XawTV isn't installed!\n"
+#~ "Vous avez maintenant la possibilité de télécharger des paquetages "
+#~ "contenant des logiciels faisant usage de cryptographie si votre connexion "
+#~ "internet est correctement configurée.\n"
#~ "\n"
#~ "\n"
-#~ "If you do have a TV card but DrakX has neither detected it (no bttv nor "
-#~ "saa7134\n"
-#~ "module in \"/etc/modules\") nor installed xawtv, please send the\n"
-#~ "results of \"lspcidrake -v -f\" to \"install@mandrakesoft.com\"\n"
-#~ "with subject \"undetected TV card\".\n"
+#~ "ATTENTION : EN RAISON DE LA DIVERSITÉ DES RÉGLEMENTATIONS CONCERNANT CES "
+#~ "LOGICIELS, VOUS DEVEZ VOUS ASSURER QUE LES LOIS ET RÈGLEMENTS AUXQUELS "
+#~ "VOUS ÊTES SOUMIS VOUS AUTORISENT À LES TÉLÉCHARGER, LES STOCKER ET/OU LES "
+#~ "UTILISER.\n"
#~ "\n"
#~ "\n"
-#~ "You can install it by typing \"urpmi xawtv\" as root, in a console."
-#~ msgstr ""
-#~ "XawTV n'est pas installé !\n"
+#~ "NOUS ATTIRONS TOUT PARTICULIÈREMENT VOTRE ATTENTION SUR LE RESPECT DE LA "
+#~ "RÉGLEMENTATION EN VIGUEUR DANS VOTRE PAYS. VOUS VOUS EXPOSEZ À DE GRAVES "
+#~ "SANCTIONS EN CAS DE VIOLATION DESDITES RÈGLES.\n"
+#~ "\n"
#~ "\n"
+#~ "EN AUCUN CAS, NI MANDRAKESOFT NI SES FOURNISSEURS NE POURRONT ÊTRE TENUS "
+#~ "RESPONSABLES À RAISON D'UN PRÉJUDICE SPÉCIAL, INDIRECT OU ACCESSOIRE, DE "
+#~ "QUELQUE NATURE QUE CE SOIT (NOTAMMENT LES PERTES DE BÉNÉFICES, "
+#~ "INTERRUPTIONS D'ACTIVITÉ, PERTES D'INFORMATIONS COMMERCIALES OU AUTRES "
+#~ "PERTES PÉCUNIAIRES, AINSI QUE DES ÉVENTUELLES CONDAMNATIONS ET INDEMNITÉS "
+#~ "DEVANT ÊTRE VERSÉES PAR SUITE D'UNE DÉCISION DE JUSTICE) QUI FERAIT SUITE "
+#~ "À L'UTILISATION, LA DÉTENTION OU AU SIMPLE TÉLÉCHARGEMENT DES LOGICIELS "
+#~ "DE CRYPTOGRAPHIE AUXQUELS VOUS POURREZ ÉVENTUELLEMENT ACCÉDER APRÈS AVOIR "
+#~ "VALIDÉ LE PRÉSENT ACCORD.\n"
#~ "\n"
-#~ "Si vous avez une carte TV mais que DrakX ne l'a pas détectée (pas de\n"
-#~ "module bttv ni saa7134 dans « /etc/modules ») ou que DrakX n'a pas "
-#~ "installé xawtv,\n"
-#~ "envoyez, s'il vous plaît, le résultat de la commande « lspcidrake -v -"
-#~ "f »\n"
-#~ "à « install@mandrakesoft.com » avec comme sujet « undetected TV card ».\n"
#~ "\n"
+#~ "Si vous résidez en France, le présent accord est soumis à loi française. "
+#~ "Si vous résidez hors de France, le droit local pourra, le cas échéant, "
+#~ "s'appliquer.\n"
#~ "\n"
-#~ "Vous pouvez quand même l'installer en tapant « urpmi xawtv » dans un "
-#~ "terminal en tant que root."
+#~ "\n"
+#~ "Au cas où vous auriez des questions concernant cet accord, veuillez vous "
+#~ "mettre en relation avec :\n"
+#~ "Mandrakesoft, Inc.\n"
+#~ "2400 N. Lincoln Avenue Suite 243\n"
+#~ "Altadena California 91001\n"
+#~ "USA"
+
+#~ msgid "Proxy configuration"
+#~ msgstr "Configuration des serveurs mandataires (proxy)"
-#~ msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgid ""
+#~ "Welcome to the proxy configuration utility.\n"
+#~ "\n"
+#~ "Here, you'll be able to set up your http and ftp proxies\n"
+#~ "with or without login and password\n"
+#~ msgstr ""
+#~ "Bienvenue dans la configuration du serveur mandataire (proxy).\n"
+#~ "\n"
+#~ "Vous allez pouvoir configurer ici vos serveurs mandataires http et ftp\n"
+#~ "avec ou sans identifiant et mot de passe\n"
-#~ msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+#~ msgid ""
+#~ "Please fill in the http proxy informations\n"
+#~ "Leave it blank if you don't want an http proxy"
+#~ msgstr ""
+#~ "Veuillez entrer les informations concernant le mandataire http\n"
+#~ "ou laissez-les vide si vous ne voulez pas de ce mandataire"
-#~ msgid "Error while parsing \"MODULES\" line from %s"
-#~ msgstr "Erreur lors de la lecteure de « MODULES » dans %s"
+#~ msgid "URL"
+#~ msgstr "URL"
-#~ msgid "Hostname configuration"
-#~ msgstr "Configuration du nom de la machine"
+#~ msgid "port"
+#~ msgstr "port"
-#~ msgid "Hostname"
-#~ msgstr "Nom d'hôte"
+#~ msgid "Url should begin with 'http:'"
+#~ msgstr "L'URL doit commencer par 'http:'"
-#~ msgid "Remote Printers"
-#~ msgstr "Imprimantes distantes"
+#~ msgid "The port part should be numeric"
+#~ msgstr "Le numéro de port doit être numérique"
-#~ msgid "Printing system: "
-#~ msgstr "Système d'impression : "
+#~ msgid ""
+#~ "Please fill in the ftp proxy informations\n"
+#~ "Leave it blank if you don't want an ftp proxy"
+#~ msgstr ""
+#~ "Veuillez entrer les informations concernant le mandataire ftp\n"
+#~ "ou laissez-les vide si vous ne voulez pas de ce mandataire"
#~ msgid ""
-#~ "Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
-#~ "LaserJet 1100/1200/1220/3200/3300 with scanner, Sony IJP-V100), an HP "
-#~ "PhotoSmart or an HP LaserJet 2200?"
+#~ "Please enter proxy login and password, if any.\n"
+#~ "Leave it blank if you don't want login/passwd"
#~ msgstr ""
-#~ "Votre imprimante est-elle un périphérique multifonction de HP ou Sony "
-#~ "(OfficeJet, PSC, LaserJet 1100/1200/1220/3200/3300 avec scanner, Sony IJP-"
-#~ "V100), un HP PhotoSmart ou un HP LaserJet 2200 ?"
+#~ "Veuillez entrer l'identifiant et le mot de passe pour le mandataire,\n"
+#~ "si nécessaire.\n"
+#~ "Laissez-les vides si vous n'en voulez pas"
-#~ msgid "Level 1"
-#~ msgstr "Niveau 1"
+#~ msgid "login"
+#~ msgstr "identifiant"
-#~ msgid "Level 2"
-#~ msgstr "Niveau 2"
+#~ msgid "password"
+#~ msgstr "Mot de passe"
-#~ msgid "Level 3"
-#~ msgstr "Niveau 3"
+#~ msgid "re-type password"
+#~ msgstr "Ré-entrer le mot de passe"
-#~ msgid "Level 4"
-#~ msgstr "Niveau 4"
+#~ msgid "The passwords don't match. Try again!"
+#~ msgstr "Les mots de passe ne correspondent pas. Réessayez !"
-#~ msgid "Level 5"
-#~ msgstr "Niveau 5"
+#~ msgid "Can't write file %s"
+#~ msgstr "Impossible d'écrire le fichier %s"
-#~ msgid "Load"
-#~ msgstr "Charger"
+#~ msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-#~ msgid "Bad Ip"
-#~ msgstr "Mauvaise adresse IP"
+#~ msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-#~ msgid "Output"
-#~ msgstr "Sortie"
+#, fuzzy
+#~ msgid ""
+#~ "Warning, another internet connexion has been detected, maybe using your "
+#~ "network"
+#~ msgstr ""
+#~ "Attention, une autre connexion internet a été détectée, peut-être "
+#~ "utilisant votre réseau"
-#~ msgid "Please relog into %s to activate the changes"
-#~ msgstr "Veuillez relancer %s pour activer les changements"
+#~ msgid "no help implemented yet.\n"
+#~ msgstr "pas d'aide disponible pour l'instant.\n"
-#~ msgid "Start Search..."
-#~ msgstr "Lancer la recherce..."
+#~ msgid "Please click on a medium"
+#~ msgstr "Veuillez cliquer sur un médium"
-#~ msgid ""
-#~ "Search For...\n"
-#~ "%s"
-#~ msgstr ""
-#~ "Rechercher de...\n"
-#~ "%s"
+#~ msgid "Removing LPRng..."
+#~ msgstr "Suppression de LPRng..."
+
+#~ msgid "Removing LPD..."
+#~ msgstr "Suppression de LPD..."
#~ msgid ""
#~ "Description:\n"
#~ "\n"
#~ " Drakbackup is used to backup your system.\n"
-#~ " During the configuration you can select: \n"
+#~ " During the configuration you can select \n"
#~ "\t- System files, \n"
#~ "\t- Users files, \n"
#~ "\t- Other files.\n"
@@ -21724,392 +15612,112 @@ msgstr ""
#~ " Drakbackup allows you to restore your system to\n"
#~ " a user selected directory.\n"
#~ "\n"
-#~ " Per default all backups will be stored on your\n"
+#~ " Per default all backup will be stored on your\n"
#~ " /var/lib/drakbackup directory\n"
#~ "\n"
#~ " Configuration file:\n"
-#~ "\t/etc/drakconf/drakbackup/drakbackup.conf\n"
+#~ "\t/etc/drakconf/drakbackup/drakbakup.conf\n"
#~ "\n"
#~ "Restore Step:\n"
#~ " \n"
-#~ " During the restore step, DrakBackup will remove \n"
-#~ " your original directory and verify that all \n"
-#~ " backup files are not corrupted. It is recommended \n"
+#~ " During the restore step, Drakbackup will remove\n"
+#~ " your original directory and verify that all\n"
+#~ " backup files are not corrupted. It is recommended\n"
#~ " you do a last backup before restoring.\n"
-#~ "\n"
+#~ " \n"
#~ "\n"
#~ msgstr ""
-#~ "Description :\n"
+#~ "Description:\n"
#~ "\n"
#~ " Drakbackup sert à sauvegarder votre système.\n"
-#~ " Pendant sa configuration vous pouvez sélectionner : \n"
+#~ " Pendant sa configuration vous pouvez sélectionner: \n"
#~ "\t- des fichiers systèmes, \n"
#~ "\t- des comptes utilisateur, \n"
-#~ "\t- d'autres données,\n"
+#~ "\t- d'autres données.\n"
#~ "\tou Tout votre système ... et d'autres (comme des partitions Windows)\n"
#~ "\n"
-#~ " Drakbackup vous permet de faire des sauvegarde sur :\n"
+#~ " Drakbackup vous permet de faire des sauvegarde sur:\n"
#~ "\t- Disque dur.\n"
#~ "\t- NFS.\n"
-#~ "\t- CD-Rom, DVD (avec auto-amorçage, récupération et auto-install.).\n"
+#~ "\t- CDROM (CDRW), DVDROM (avec autoboot, récupération and autoinstall.).\n"
#~ "\t- FTP.\n"
#~ "\t- Rsync.\n"
#~ "\t- Webdav.\n"
#~ "\t- Cartouche.\n"
#~ "\n"
-#~ " Drakbackup peut restaurer votre système vers un dossier choisi.\n"
+#~ " Drakbackup peut restaurer votre système vers un répertoire choisi\n"
#~ "\n"
#~ " Par défaut toute sauvegarde sera stockée dans le\n"
-#~ " dossier /var/lib/drakbackup\n"
+#~ " répertoire /var/lib/drakbackup\n"
#~ "\n"
#~ " Fichier de configuration :\n"
-#~ "\t/etc/drakconf/drakbackup/drakbackup.conf\n"
+#~ "\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+#~ "\n"
#~ "\n"
#~ "Étape de restauration :\n"
#~ " \n"
#~ " Pendant l'étape de restauration, DrakBackup va retirer \n"
-#~ " votre dossier d'origine et vérifier qu'aucun fichier\n"
-#~ " de sauvegarde n'est corrompu. Il est recommandé \n"
+#~ " votre répertoire d'origine et vérifier que tous les \n"
+#~ " fichiers de sauvegarde ne sont pas corrompus. Il est recommandé \n"
#~ " de faire une dernière sauvegarde avant restauration.\n"
#~ "\n"
#~ "\n"
-#~ msgid "Please check if you want to use the non-rewinding device."
-#~ msgstr "Vérifiez que vous voulez utiliser un périphérique non-rembobinable"
-
-#~ msgid "Please enter your password"
-#~ msgstr "Veuillez entrer votre mot de passe"
-
#~ msgid ""
+#~ "drakbug version %s\n"
+#~ "Copyright (C) 2002 MandrakeSoft.\n"
+#~ "This is free software and may be redistributed under the terms of the GNU "
+#~ "GPL.\n"
#~ "\n"
-#~ " Some errors during sendmail are caused by \n"
-#~ " a bad configuration of postfix. To solve it you have to\n"
-#~ " set myhostname or mydomain in /etc/postfix/main.cf\n"
+#~ "usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
#~ "\n"
+#~ "OPTIONS:\n"
#~ msgstr ""
+#~ "drakbug version %s\n"
+#~ "Copyright (C) 2002 MandrakeSoft.\n"
+#~ "Ce programme est un logiciel libre, il peut être redistribué selon les "
+#~ "termes de la licence GNU GPL.\n"
#~ "\n"
-#~ " Certaines erreurs lors de l'envoi de courriels peuvent être causées par\n"
-#~ " une mauvaise configuration de postfix. Pour le résoudre, vous devez\n"
-#~ " configurer le nom de machine ou de domaine dans /etc/postfix/main.cf.\n"
+#~ "utilisation: drakbug [OPTIONS] [NOM_DU_PROGRAMME]\n"
#~ "\n"
+#~ "OPTIONS:\n"
-#~ msgid ""
-#~ "Please choose your CD/DVD device\n"
-#~ "(Press Enter to propogate settings to other fields.\n"
-#~ "This field isn't necessary, only a tool to fill in the form.)"
-#~ msgstr ""
-#~ "SVP choisissez votre lecteur CD/DVD\n"
-#~ "(Appuyer sur Entrée pour étendre les paramètres aux\n"
-#~ "autres champs. Ce champ n'est pas indispensable et ne sert que d'info)."
-
-#~ msgid "Please check if you want to eject your tape after the backup."
-#~ msgstr "Vérifiez que vous voulez éjecter la bande après sauvegarde."
-
-#~ msgid "Please check if you want to erase your tape before the backup."
-#~ msgstr ""
-#~ "Êtes-vous sûr de vouloir effacer votre bande magnétique avant de faire la "
-#~ "sauvegarde."
+#~ msgid " --help - print this help message.\n"
+#~ msgstr " --help - affiche ce message d'aide.\n"
-#~ msgid "Please enter the host name or IP."
-#~ msgstr "Nom d'hôte ou adresse IP de la machine de sauvegarde"
-
-#~ msgid ""
-#~ " Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s@epita."
-#~ "fr>"
+#~ msgid " --report - program should be one of mandrake tools\n"
#~ msgstr ""
-#~ " Copyright (C) 2001-2002 MandrakeSoft par DUPONT Sébastien "
-#~ "<dupont_s@epita.fr>"
+#~ " --report - le programme devrait être un outil de Mandrake\n"
-#~ msgid ""
-#~ "\n"
-#~ "Restore Backup Problems:\n"
-#~ "\n"
-#~ "During the restore step, Drakbackup will verify all your\n"
-#~ "backup files before restoring them.\n"
-#~ "Before the restore, Drakbackup will remove \n"
-#~ "your original directory, and you will loose all your \n"
-#~ "data. It is important to be careful and not modify the \n"
-#~ "backup data files by hand.\n"
+#~ msgid " --incident - program should be one of mandrake tools\n"
#~ msgstr ""
-#~ "\n"
-#~ "Problèmes de restauration :\n"
-#~ "\n"
-#~ "Avant l'étape de restauration, Drakbackup va vérifier tous vos\n"
-#~ "fichiers de sauvegarde. Les dossiers originaux seront effacés\n"
-#~ "et vous allez perdre toutes vos données. Il est important de \n"
-#~ "faire les choses avec précaution et de ne pas modifier à la main\n"
-#~ "les fichiers de sauvegarde.\n"
+#~ " --incident - le programme devrait être un outil de Mandrake\n"
-#~ msgid ""
-#~ " updates 2002 MandrakeSoft by Stew Benedict <sbenedict@mandrakesoft.com>"
-#~ msgstr ""
-#~ " modifications 2002 MandrakeSoft par Stew Benedict "
-#~ "<sbenedict@mandrakesoft.com>"
+#~ msgid "usage: drakfloppy\n"
+#~ msgstr "mode d'emploi : drakfloppy\n"
#~ msgid ""
-#~ "Arguments: (arg, expr='*.*', dev='tty12')\n"
#~ "\n"
-#~ "Enable/Disable syslog reports to console 12. \\fIexpr\\fP is the\n"
-#~ "expression describing what to log (see syslog.conf(5) for more details) "
-#~ "and\n"
-#~ "dev the device to report the log."
+#~ "Usage: harddrake [-h|--help] [--test]\n"
#~ msgstr ""
-#~ "Arguments : (arg, expr='*.*', dev='tty12')\n"
#~ "\n"
-#~ "Active/Désactive les rapports syslog vers la console 12. « expr » est\n"
-#~ "l'expression décrivant quoi rapporter (voir syslog.conf(5) pour plus de "
-#~ "détails) et\n"
-#~ "dev le périphérique où faire les rapports."
-
-#~ msgid "edit"
-#~ msgstr "éditer"
-
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ " Accept/Refuse broadcasted icmp echo."
-#~ msgstr ""
-#~ "Arguments : (arg)\n"
-#~ "\n"
-#~ " Accepte/refuse l'écho icmp émis par diffusion"
-
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable libsafe if libsafe is found on the system."
-#~ msgstr ""
-#~ "Arguments : (arg)\n"
-#~ "\n"
-#~ "Active/Désactive la bibliothèque libsafe si elle est trouvée sur le "
-#~ "système."
-
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Allow/Forbid remote root login."
-#~ msgstr ""
-#~ "Arguments : (arg)\n"
-#~ "\n"
-#~ "Active/Désactive la connexion distante en tant que root."
-
-#~ msgid "select perm file to see/edit"
-#~ msgstr "choisissez un fichier de permissions à voir/modifier"
-
-#~ msgid "path"
-#~ msgstr "chemin"
-
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable the logging of IPv4 strange packets."
-#~ msgstr ""
-#~ "Arguments : (arg)\n"
-#~ "\n"
-#~ "Active/Désactive le traçage de tous les paquets IPv4 étranges."
-
-#~ msgid ""
-#~ "Arguments: (arg, alert=1)\n"
-#~ "\n"
-#~ "Enable/Disable IP spoofing protection."
-#~ msgstr ""
-#~ "Arguments : (arg, alerte=1)\n"
-#~ "\n"
-#~ "Active/Désactive la protection contre l'usurpation d'adresse IP (IP "
-#~ "spoofing)."
-
-#~ msgid "permissions"
-#~ msgstr "permissions"
-
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Enable/Disable msec hourly security check."
-#~ msgstr ""
-#~ "Arguments : (arg)\n"
-#~ "\n"
-#~ "Active/Désactive les vérifications de msec toutes les heures."
-
-#~ msgid "delete"
-#~ msgstr "supprimer"
-
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Accept/Refuse bogus IPv4 error messages."
-#~ msgstr ""
-#~ "Arguments : (arg)\n"
-#~ "\n"
-#~ "Accepte/refuse les messages d'erreur IPv4 bogués."
-
-#~ msgid ""
-#~ "Arguments: (arg)\n"
-#~ "\n"
-#~ "Use password to authenticate users."
-#~ msgstr ""
-#~ "Arguments : (arg)\n"
-#~ "\n"
-#~ "Utilise un mot de passe pour authentifier les utilisateurs."
-
-#~ msgid "user"
-#~ msgstr "utilisateur"
-
-#~ msgid ""
-#~ "Standard: This is the standard security recommended for a computer that "
-#~ "will be used to connect\n"
-#~ " to the Internet as a client.\n"
-#~ "\n"
-#~ "High: There are already some restrictions, and more automatic "
-#~ "checks are run every night.\n"
-#~ "\n"
-#~ "Higher: The security is now high enough to use the system as a server "
-#~ "which can accept\n"
-#~ " connections from many clients. If your machine is only a "
-#~ "client on the Internet, you\n"
-#~ " should choose a lower level.\n"
-#~ "\n"
-#~ "Paranoid: This is similar to the previous level, but the system is "
-#~ "entirely closed and security\n"
-#~ " features are at their maximum\n"
-#~ "\n"
-#~ "Security Administrator:\n"
-#~ " If the 'Security Alerts' option is set, security alerts "
-#~ "will be sent to this user (username or\n"
-#~ " email)"
-#~ msgstr ""
-#~ "Standard : Ceci est le niveau standard de sécurité recommandé pour un "
-#~ "ordinateur devant se connecter à Internet en tant que client.\n"
-#~ "\n"
-#~ "Élevée : il y a déjà quelques restrictions, et un peu plus de "
-#~ "vérifications de sécurité sont effectuées chaque nuit.\n"
-#~ "\n"
-#~ "Plus élevée : La sécurité est ici suffisante pour utiliser la machine "
-#~ "comme serveur acceptant de multiples connexions. Si votre machine est "
-#~ "simplement une machine cliente pour Internet, un niveau inférieur est "
-#~ "préférable.\n"
-#~ "\n"
-#~ "Panaoïaque : Similaire au précédent, mais le système sera totalement clos "
-#~ "et la sécurité au maximum.\n"
-#~ "\n"
-#~ "Administrateur de Sécurité : Si l'option « Alertes de sécurité » est "
-#~ "choisie, celles-ci seront envoyées à l'utilisateur indiqué (nom ou\n"
-#~ "courriel)."
-
-#~ msgid "Expert Area"
-#~ msgstr "Mode Expert"
-
-#~ msgid "Wizard..."
-#~ msgstr "Assistant..."
-
-#~ msgid " / Region"
-#~ msgstr " / Région"
-
-#~ msgid "Country"
-#~ msgstr "Pays"
-
-#~ msgid "Previous"
-#~ msgstr "<- Précédent"
-
-#~ msgid "Please check if you are using CDRW media"
-#~ msgstr "CD Réinscriptible"
-
-#~ msgid "Please check if you are using a DVDRAM device"
-#~ msgstr "Vérifier que vous utilisez bien un DVDRAM"
-
-#~ msgid "Please check if you are using a DVDR device"
-#~ msgstr "Vérifier que vous utilisez bien un DVDR"
-
-#~ msgid "Please check for multisession CD"
-#~ msgstr "Vérifier le CD multisession"
-
-#~ msgid "We are now going to configure the %s connection."
-#~ msgstr "Nous allons configurer la connexion %s."
-
-#~ msgid "Name: %s\n"
-#~ msgstr "Nom : %s\n"
-
-#~ msgid ""
-#~ "Which ISDN configuration do you prefer?\n"
-#~ "\n"
-#~ "* The Old configuration uses isdn4net. It contains powerful\n"
-#~ " tools, but is tricky to configure, and not standard.\n"
-#~ "\n"
-#~ "* The New configuration is easier to understand, more\n"
-#~ " standard, but with less tools.\n"
-#~ "\n"
-#~ "We recommand the light configuration.\n"
-#~ msgstr ""
-#~ "Quelle configuration RNIS/ISDN préférez-vous ?\n"
-#~ "\n"
-#~ "- L'ancienne configuration contient des outils puissants,\n"
-#~ " mais est difficile à configurer, et n'est pas standard.\n"
-#~ " Elle utilise « isdn4net »\n"
-#~ "- La nouvelle configuration est plus facile à comprendre\n"
-#~ " et plus standard, mais a moins d'outils.\n"
-#~ " Elle utilise « isdn-light »\n"
-#~ "Nous recommandons la seconde (isdn-light)\n"
-
-#~ msgid "New configuration (isdn-light)"
-#~ msgstr "Nouvelle configuration (isdn-light)"
-
-#~ msgid "Old configuration (isdn4net)"
-#~ msgstr "Ancienne configuration (isdn4net)"
-
-#~ msgid "Internet connection & configuration"
-#~ msgstr "Connexion internet et configuration"
-
-#~ msgid "Disconnect"
-#~ msgstr "Se déconnecter"
-
-#~ msgid "Connect"
-#~ msgstr "Connecter"
-
-#~ msgid ""
-#~ "\n"
-#~ "You can reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "Vous pouvez reconfigurer votre connexion."
-
-#~ msgid ""
-#~ "\n"
-#~ "You can connect to the Internet or reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "Vous pouvez vous connecter à Internet ou reconfigurer votre connexion."
-
-#~ msgid "You are not currently connected to the Internet."
-#~ msgstr "Vous n'êtes actuellement pas connecté à Internet."
-
-#~ msgid ""
-#~ "\n"
-#~ "You can disconnect or reconfigure your connection."
-#~ msgstr ""
-#~ "\n"
-#~ "Vous pouvez vous déconnecter ou reconfigurer votre connexion."
-
-#~ msgid "You are currently connected to the Internet."
-#~ msgstr "Vous êtes actuellement connecté à Internet."
-
-#~ msgid "files sending by FTP"
-#~ msgstr "Envoi par FTP"
-
-#~ msgid "Use incremental backup (do not replace old backups)"
-#~ msgstr "Sauvegardes incrémentales (économie d'espace)"
+#~ "utilisation : harddrake [-h|--help] [--test]\n"
-#~ msgid "Relaunch 'lilo'"
-#~ msgstr "Relancez « lilo »"
+#~ msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+#~ msgstr "utilisation : keyboarddrake [--expert] [clavier]\n"
-#~ msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#~ msgstr "construisez le RAMdisk avec 'mkinitrd -f /boot/initrd-%s.img %s'."
+#~ msgid "Probing %s class\n"
+#~ msgstr "Détection de la classe %s\n"
-#~ msgid "Copy %s to %s"
-#~ msgstr "Copie de %s vers %s"
+#~ msgid "detected on interface %s"
+#~ msgstr "détecté sur l'interface %s"
-#~ msgid "Backup %s to %s.old"
-#~ msgstr "Sauvegarde de %s vers %s.old"
+#, fuzzy
+#~ msgid "Periodic Checks 2"
+#~ msgstr "Vérifications périodiques"
-#~ msgid "ttf fonts conversion"
-#~ msgstr "Conversion de polices « True Type »"
+#~ msgid "unable to backup lilo message"
+#~ msgstr "Impossible de conserver le message de LILO"
-#~ msgid "Fonts conversion"
-#~ msgstr "Conversion de polices"
+#~ msgid "can't change lilo message"
+#~ msgstr "Impossible de changer le message de LILO"
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index 9b006db60..50a18cd04 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2003-12-03 03:09+0100\n"
+"POT-Creation-Date: 2002-12-05 19:52+0100\n"
"PO-Revision-Date: 2000-08-24 12:00-0000\n"
"Last-Translator: Alastair McKinstry <mckinstry@computer.org>\n"
"Language-Team: Irish <ga@li.org>\n"
@@ -12,2917 +12,1699 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Scanning partitions to find mount points"
-msgstr ""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of suid root files."
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, "
-"0/1 for Local Config...\n"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Configuration changed - restart clusternfs/dhcpd?"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t\tErase=%s"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Differential backups only save files that have changed or are new since the "
-"original 'base' backup."
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "network printer port"
-msgstr "Printéir Gréasán (lpd)"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Please insert floppy disk:"
-msgstr "Cur isteach diosca sa dioscthiomant %s"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "DrakTermServ"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
-msgstr ""
-"Níl an méid céanna ar an rann cúltaca\n"
-"Lean ar aghaidh ar aon nós?"
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Which username"
-msgstr "Ainm úsáideora"
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
-#: ../../any.pm:1
-#, c-format
-msgid "Which type of entry do you want to add?"
-msgstr "Cén sort iontráil a suimigh do"
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Restore partition table"
-msgstr "Scriobh clár-ranna"
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB nó níos mó"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Configure hostname..."
-msgstr "Cumraigh luchóg"
+#: ../../Xconfig/card.pm_.c:203
+msgid "Choose a X server"
+msgstr "Roghnaigh freastalaí X"
-#: ../../printer/cups.pm:1
-#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "IP freastalaí SMP"
+#: ../../Xconfig/card.pm_.c:203
+msgid "X server"
+msgstr "X freastalaí"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Post-install configuration"
-msgstr "Cumraíocht Iar-feistú"
+#: ../../Xconfig/card.pm_.c:230
+msgid "Multi-head configuration"
+msgstr "Cumraíochti gach cinn iolrach"
-#: ../../standalone/drakperm:1
-#, c-format
+#: ../../Xconfig/card.pm_.c:231
msgid ""
-"The current security level is %s\n"
-"Select permissions to see/edit"
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:288
+msgid "Select the memory size of your graphics card"
+msgstr "Roghnaigh an méid cuimhne atá id' charta grafachach"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Type"
-msgstr "Cineál"
+#: ../../Xconfig/card.pm_.c:349
+msgid "XFree configuration"
+msgstr "Cumraíocht XFree"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
+#: ../../Xconfig/card.pm_.c:351
+msgid "Which configuration of XFree do you want to have?"
msgstr ""
-# LK
-#: ../../lang.pm:1
-#, c-format
-msgid "Sri Lanka"
-msgstr "Srí Lanca"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr "Níl aon gaireas ghreasán san do chorás!"
+#: ../../Xconfig/card.pm_.c:383
+msgid "Configure all heads independently"
+msgstr "Cumraigh gach cinn ar leith"
-#: ../../lang.pm:1
-#, c-format
-msgid "Central African Republic"
+#: ../../Xconfig/card.pm_.c:384
+msgid "Use Xinerama extension"
msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway device"
-msgstr "Gaireas na hInneal Geata"
-
-#: ../../standalone/drakfloppy:1
+#: ../../Xconfig/card.pm_.c:389
#, fuzzy, c-format
-msgid "Advanced preferences"
-msgstr "Éirigh as cumraíocht"
+msgid "Configure only card \"%s\"%s"
+msgstr "Cumraigh carta \"%s\" (%s) amhain"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
+#: ../../Xconfig/various.pm_.c:23
#, c-format
-msgid "Net Method:"
-msgstr ""
+msgid "XFree %s"
+msgstr "Freastalaí XFree86: %s"
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Ethernetcard"
-msgstr "Idirlíon"
+#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/various.pm_.c:23
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s le luadghearú crua-earraí 3D"
-#: ../../security/l10n.pm:1
+#: ../../Xconfig/card.pm_.c:416
#, c-format
-msgid "If set, send the mail report to this email address else send it to root"
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
+#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
#, c-format
-msgid "Parameters"
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "no"
-msgstr "Eolas"
-
-#: ../../harddrake/v4l.pm:1
-#, fuzzy, c-format
-msgid "Auto-detect"
-msgstr "Scríos Printéir"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Interface:"
-msgstr "suimiúil"
-
-#: ../../steps.pm:1
+#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
#, c-format
-msgid "Select installation class"
-msgstr "Roghnaigh rang feistiú"
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "Freastalaí XFree %s le luasghearú crua-earraí 3D TRIALACH"
-#: ../../network/tools.pm:1
+#: ../../Xconfig/card.pm_.c:429
#, c-format
msgid ""
-"The system doesn't seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
+"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."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Belarus"
+#: ../../Xconfig/card.pm_.c:455
+msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Error writing to file %s"
-msgstr "Earráidh ag scríobh comhad %s"
+#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+msgid "Custom"
+msgstr "Socraithe"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result to syslog"
-msgstr ""
+#: ../../Xconfig/main.pm_.c:102
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Carta Grafach"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"apmd is used for monitoring battery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
-msgstr ""
+#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
+msgid "Monitor"
+msgstr "Scáileán"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use tape to backup"
-msgstr "Droch comhad chúltaca"
+#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
+msgid "Resolution"
+msgstr "Réiteach"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be installed"
+#: ../../Xconfig/main.pm_.c:113
+msgid "Test"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "CUPS configuration"
-msgstr "cumraíocht"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Total progress"
-msgstr "Bain trial as arís"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Not enough free space to allocate new partitions"
-msgstr ""
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
+#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Roghnachais"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving"
-msgstr "Ag bogadh"
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
+#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
+#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
+#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
+#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
+msgid "Ok"
+msgstr "Ceart go Leor"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
+#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
+msgid "Quit"
+msgstr "Éalaigh"
-#: ../../standalone/draksec:1
+#: ../../Xconfig/main.pm_.c:145
#, fuzzy, c-format
-msgid "yes"
-msgstr "Tá"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "("
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, c-format
msgid ""
-"Welcome to The Network Configuration Wizard.\n"
+"Keep the changes?\n"
+"The current configuration is:\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 ""
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid ")"
-msgstr ""
-
-# LB
-#: ../../lang.pm:1
-#, c-format
-msgid "Lebanon"
-msgstr "An Liobáin"
+"%s"
+msgstr "Coimead an cumraíocht IP atá ann"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../Xconfig/monitor.pm_.c:93
+msgid "Choose a monitor"
+msgstr "Roghnaigh scáileán"
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "Stop"
-msgstr "Teascán"
+#: ../../Xconfig/monitor.pm_.c:97
+msgid "Plug'n Play"
+msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Edit selected host"
-msgstr "Scrios ciú"
+#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
+msgid "Generic"
+msgstr "Gnáth"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "No CD device defined!"
-msgstr "Roghnaigh Comhad"
+#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
+#: ../../standalone/harddrake2_.c:68
+#, fuzzy
+msgid "Vendor"
+msgstr "Leasú"
-#: ../../network/shorewall.pm:1
-#, c-format
-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"
+#: ../../Xconfig/monitor.pm_.c:109
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "\tUse .backupignore files\n"
-msgstr "Droch comhad chúltaca"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Bulgarian (phonetic)"
-msgstr "Bulgáiris"
-
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "The DHCP start ip"
+#: ../../Xconfig/monitor.pm_.c:114
+msgid ""
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
+"\n"
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "256 kB"
-msgstr "256 kB"
+#: ../../Xconfig/monitor.pm_.c:121
+msgid "Horizontal refresh rate"
+msgstr "Ráta athnuachana cothrománach"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Don't rewind tape after backup"
-msgstr "Droch comhad chúltaca"
+#: ../../Xconfig/monitor.pm_.c:122
+msgid "Vertical refresh rate"
+msgstr "Ráta athnuachana ingearach"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader main options"
-msgstr "Príomhroghanna bootáil"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 dath (8 giotáin)"
-#: ../../standalone.pm:1
-#, c-format
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
-"usbtable] [--dynamic=dev]"
-msgstr ""
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 míle dath (15 giotáin)"
-#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Tape"
-msgstr "Cineál"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 míle dath (16 giotáin)"
-# MY
-#: ../../lang.pm:1
-#, c-format
-msgid "Malaysia"
-msgstr "An Mhalaeisia"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milliún dath (24 giotáin)"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Scanning network..."
-msgstr "Nasc Printéir"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 billiún dath (32 giotáin)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
+#: ../../Xconfig/resolution_and_depth.pm_.c:130
+msgid "Resolutions"
+msgstr "Réiteachaí"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "The change is done, do you want to restart the dm service ?"
-msgstr ""
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
+msgid "Choose the resolution and the color depth"
+msgstr "Roghnaigh Réiteach agus an méid dath"
-#: ../../keyboard.pm:1
+#: ../../Xconfig/resolution_and_depth.pm_.c:256
#, c-format
-msgid "Swiss (French layout)"
-msgstr "Eilvéis (Stíl Francaigh)"
+msgid "Graphics card: %s"
+msgstr "Carta Grafach: %s"
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr ""
+#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
+#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
+#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
+#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
+#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
+#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
+#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
+#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
+#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
+#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
+#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
+#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
+#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
+#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
+#: ../../ugtk2.pm_.c:926
+msgid "Cancel"
+msgstr "Cealaigh"
-# AT
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "August"
-msgstr "An Ostair"
+#: ../../Xconfig/test.pm_.c:29
+msgid "Test of the configuration"
+msgstr "Trialaigh an cumraíocht"
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "FTP server"
-msgstr "Freastalaí NTP"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Do you want to test the configuration?"
+msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Webcam"
+#: ../../Xconfig/test.pm_.c:30
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:29
#, c-format
-msgid "size of the (second level) cpu cache"
-msgstr ""
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Soundcard"
-msgstr "Carta Fuaim"
+msgid "Keyboard layout: %s\n"
+msgstr "Leagan amach eocharchlára: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../Xconfig/various.pm_.c:30
#, c-format
-msgid "Month"
-msgstr "Mí"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Search for files to restore"
-msgstr "Cén cinéal luchóg atá agat?"
+msgid "Mouse type: %s\n"
+msgstr "Cineál luchóg: %s\n"
-# LU
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:31
#, c-format
-msgid "Luxembourg"
-msgstr "Lucsamburg"
+msgid "Mouse device: %s\n"
+msgstr "Gaireas luchóige: %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../Xconfig/various.pm_.c:32
#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
-msgstr ""
+msgid "Monitor: %s\n"
+msgstr "Scáileán: %s\n"
-#: ../../diskdrake/interactive.pm:1
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Level %s\n"
-msgstr "Leibhéal %s\n"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Syriac (phonetic)"
-msgstr "Bulgáiris"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Iran"
-msgstr "An Iaráic"
+msgid "Monitor HorizSync: %s\n"
+msgstr "Scáileán HorizSync: %s\n"
-#: ../../standalone/harddrake2:1
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Bus"
-msgstr "GN"
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Scáileán VertRefresh: %s\n"
-#: ../../lang.pm:1
+#: ../../Xconfig/various.pm_.c:35
#, c-format
-msgid "Iraq"
-msgstr "An Iaráic"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "connecting to %s ..."
-msgstr "Scríos Printéir"
+msgid "Graphics card: %s\n"
+msgstr "Carta Grafach: %s\n"
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:36
#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr ""
+msgid "Graphics memory: %s kB\n"
+msgstr "Cuimhne grafach: %s kb\n"
-#: ../../standalone/drakgw:1
+#: ../../Xconfig/various.pm_.c:38
#, fuzzy, c-format
-msgid "Configuring..."
-msgstr "Ag cumraigh IDE"
+msgid "Color depth: %s\n"
+msgstr "Scáileán VertRefresh: %s\n"
-#: ../../harddrake/v4l.pm:1
+#: ../../Xconfig/various.pm_.c:39
#, c-format
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed."
-msgstr ""
+msgid "Resolution: %s\n"
+msgstr "Réiteachaí: %s\n"
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../Xconfig/various.pm_.c:41
#, c-format
-msgid "Password (again)"
-msgstr "Pasfhocal (arís)"
+msgid "XFree86 server: %s\n"
+msgstr "Freastalaí XFree86: %s\n"
-#: ../../standalone/drakfont:1
+#: ../../Xconfig/various.pm_.c:42
#, c-format
-msgid "Search installed fonts"
-msgstr ""
+msgid "XFree86 driver: %s\n"
+msgstr "Tiománaí XFree86: %s\n"
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Default desktop"
-msgstr "Gnáth"
+#: ../../Xconfig/various.pm_.c:61
+msgid "Graphical interface at startup"
+msgstr "X ag tús"
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:62
msgid ""
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on %s\n"
-" where you'll find a form to fill in. The information displayed above will "
-"be \n"
-"transferred to that server."
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
+"Is féidir linn do ríomhaire a shocrú le X a thosnú i ndhiadh bootáil.\n"
+"An dteastaíonn uait go dtosnófar X nuair a aththosnítear an ríomhaire?"
-# VE
-#: ../../lang.pm:1
-#, c-format
-msgid "Venezuela"
-msgstr "Veiniséala"
-
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "IP address"
-msgstr "Seoladh IP"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Choose the sizes"
-msgstr "Roghnaigh an méid nua"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../Xconfig/various.pm_.c:73
msgid ""
-"List of data corrupted:\n"
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
"\n"
+"Do you have this feature?"
msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Can only be mounted explicitly (i.e.,\n"
-"the -a option will not cause the file system to be mounted)."
+#: ../../Xconfig/various.pm_.c:85
+msgid "What norm is your TV using?"
msgstr ""
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132
+msgid "First sector of boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Choose another partition"
-msgstr "Cruthaigh rann nua"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Current user"
+#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
+msgid "First sector of drive (MBR)"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Username"
-msgstr "Ainm úsáideora"
+#: ../../any.pm_.c:111
+msgid "SILO Installation"
+msgstr "Roghnaigh rang feistiú"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left \"Windows\" key"
+#: ../../any.pm_.c:112 ../../any.pm_.c:125
+msgid "Where do you want to install the bootloader?"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Guyana"
-msgstr "An Ghuáin"
+#: ../../any.pm_.c:124
+msgid "LILO/grub Installation"
+msgstr "Feistiú LILO/grub"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "dhcpd Server Configuration"
-msgstr "Éirigh as cumraíocht"
+#: ../../any.pm_.c:136 ../../any.pm_.c:150
+msgid "SILO"
+msgstr "SILO"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
-msgstr ""
+#: ../../any.pm_.c:138
+msgid "LILO with text menu"
+msgstr "LILO le chlár teacs"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr ""
+#: ../../any.pm_.c:139 ../../any.pm_.c:150
+msgid "LILO with graphical menu"
+msgstr "LILO le Chlár Graphaice"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Printer Name"
-msgstr "Clódóir"
+#: ../../any.pm_.c:142
+msgid "Grub"
+msgstr "Grub"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Setting up USB key"
-msgstr ""
+#: ../../any.pm_.c:146
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "Bootáil as DOS/Windows (loadin)"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Remove a module"
-msgstr "Scríos modúil"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Password"
-msgstr "Pasfhocal"
+#: ../../any.pm_.c:148 ../../any.pm_.c:150
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Advanced Configuration"
-msgstr "Éirigh as cumraíocht"
+#: ../../any.pm_.c:158 ../../any.pm_.c:189
+msgid "Bootloader main options"
+msgstr "Príomhroghanna bootáil"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Scanning on your HP multi-function device"
-msgstr ""
+#: ../../any.pm_.c:159 ../../any.pm_.c:190
+msgid "Bootloader to use"
+msgstr "Ríomhchlar Tosnaithe a úsáid "
-#: ../../any.pm:1
-#, c-format
-msgid "Root"
-msgstr "Root"
+#: ../../any.pm_.c:161
+msgid "Bootloader installation"
+msgstr "Feistiú cód tosnaithe"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose an existing RAID to add to"
-msgstr "Roghnaigh RAID atá ann le méadú"
+#: ../../any.pm_.c:163 ../../any.pm_.c:192
+msgid "Boot device"
+msgstr "Gaireas bootáil"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (modern \"Q\" model)"
-msgstr ""
+#: ../../any.pm_.c:164
+msgid "Compact"
+msgstr "Compact"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo message not found"
-msgstr ""
+#: ../../any.pm_.c:164
+msgid "compact"
+msgstr "compact"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
-msgstr ""
+#: ../../any.pm_.c:165 ../../any.pm_.c:289
+msgid "Video mode"
+msgstr "Mód fís"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "if needed"
+#: ../../any.pm_.c:167
+msgid "Delay before booting default image"
msgstr ""
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol"
-msgstr ""
+#: ../../any.pm_.c:169 ../../any.pm_.c:772
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
+#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
+#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
+#: ../../standalone/drakconnect_.c:647
+msgid "Password"
+msgstr "Pasfhocal"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Failed..."
-msgstr "Aisig ó comhad"
+#: ../../any.pm_.c:170 ../../any.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:1078
+msgid "Password (again)"
+msgstr "Pasfhocal (arís)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Store the password for this system in drakbackup configuration."
-msgstr ""
+#: ../../any.pm_.c:171
+msgid "Restrict command line options"
+msgstr "Teorannaigh roghanna líne ordú"
-#: ../../install_messages.pm:1
-#, c-format
-msgid ""
-"Introduction\n"
-"\n"
-"The operating system and the different components available in the Mandrake "
-"Linux distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products "
-"include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related "
-"to the operating \n"
-"system and the different components of the Mandrake Linux distribution.\n"
-"\n"
-"\n"
-"1. License Agreement\n"
-"\n"
-"Please read 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_.c:171
+msgid "restrict"
+msgstr "teorannaigh"
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Default user"
-msgstr "Printéir áitiúl"
+#: ../../any.pm_.c:173
+msgid "Clean /tmp at each boot"
+msgstr "Glan /tmp nuair a thosnaigh an coráis"
-#: ../../standalone/draksplash:1
+#: ../../any.pm_.c:174
#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
+msgid "Precise RAM size if needed (found %d MB)"
msgstr ""
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Current interface configuration"
-msgstr "Cumraigh Idirlíon"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPD - Line Printer Daemon"
+#: ../../any.pm_.c:176
+msgid "Enable multi profiles"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../any.pm_.c:180
+msgid "Give the ram size in MB"
+msgstr "Tabhair na Méid Cuimhne as MB"
+
+#: ../../any.pm_.c:182
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"
+"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Do not print any test page"
-msgstr "Óstainm Printéir"
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:1204
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "Please try again"
+msgstr "Aththrialaigh"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gurmukhi"
-msgstr ""
+#: ../../any.pm_.c:183 ../../any.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:1072
+msgid "The passwords do not match"
+msgstr "Ní mar a chéile na pasfhocail"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s already in use\n"
-msgstr ""
+#: ../../any.pm_.c:191
+msgid "Init Message"
+msgstr "Scéal Tosnú"
-#: ../../any.pm:1
-#, c-format
-msgid "Force No APIC"
+#: ../../any.pm_.c:193
+msgid "Open Firmware Delay"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
+#: ../../any.pm_.c:194
+msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../standalone.pm:1
-#, fuzzy, c-format
-msgid "[keyboard]"
-msgstr "Eocharclár"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "FTP proxy"
-msgstr "Seach-FTP"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Install List"
-msgstr "Feistigh córas"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid ""
-"Change\n"
-"Restore Path"
-msgstr "Aisig ó comhad"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Show only for the selected day"
+#: ../../any.pm_.c:195
+msgid "Enable CD Boot?"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tLimit disk usage to %s MB\n"
+#: ../../any.pm_.c:196
+msgid "Enable OF Boot?"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "512 kB"
-msgstr "512 kB"
+#: ../../any.pm_.c:197
+msgid "Default OS?"
+msgstr "OS Loiceadh?"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
+#: ../../any.pm_.c:231
+msgid ""
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
+"\n"
+"On which drive are you booting?"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>N"
-msgstr "<control>N"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Cén cinéal c atá uait?"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>O"
-msgstr "<control>O"
-
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Security"
-msgstr "Slándáil"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:247
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"
+"Here are the entries on your boot menu so far.\n"
+"You can add some more or change the existing ones."
msgstr ""
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "<control>Q"
-msgstr "<control>E"
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
+#: ../../standalone/drakfont_.c:996
+msgid "Add"
+msgstr "Suim"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Unable to find backups to restore...\n"
-msgstr "Roghnaight do theangam le do thoil."
+#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
+#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
+msgid "Done"
+msgstr "Críochnithe"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Unknown"
-msgstr "Gnáth"
+#: ../../any.pm_.c:257
+msgid "Modify"
+msgstr "Athraigh"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This server is already in the list, it cannot be added again.\n"
-msgstr ""
+#: ../../any.pm_.c:265
+msgid "Which type of entry do you want to add?"
+msgstr "Cén sort iontráil a suimigh do"
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Network Configuration"
-msgstr "Cumraíocht Gréasánú"
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
+msgid "Linux"
+msgstr "Linux"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "<control>S"
-msgstr "<control>S"
+#: ../../any.pm_.c:266
+msgid "Other OS (SunOS...)"
+msgstr "CO Eile (SunOS...)"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
+#: ../../any.pm_.c:267
+msgid "Other OS (MacOS...)"
+msgstr "CO Eile (MunOS...)"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
+#: ../../any.pm_.c:267
+msgid "Other OS (windows...)"
+msgstr "CO Eile (windows...)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
+#: ../../any.pm_.c:285
+msgid "Image"
+msgstr "Iomha"
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Notice"
-msgstr "GanBhideó"
+#: ../../any.pm_.c:286 ../../any.pm_.c:297
+msgid "Root"
+msgstr "Root"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
-msgstr ""
+#: ../../any.pm_.c:287 ../../any.pm_.c:315
+msgid "Append"
+msgstr "Append"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The configuration of the printer will work fully automatically. If your "
-"printer was not correctly detected or if you prefer a customized printer "
-"configuration, turn on \"Manual configuration\"."
-msgstr ""
+#: ../../any.pm_.c:291
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "What type of partitioning?"
-msgstr "Cén sort rannú atá ort?"
+#: ../../any.pm_.c:292
+msgid "Read-write"
+msgstr "Léamh-Scríobh"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-" "
-msgstr ""
+#: ../../any.pm_.c:299
+msgid "Table"
+msgstr "Table"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Interface"
-msgstr "Cláréadan Gréasán"
+#: ../../any.pm_.c:300
+msgid "Unsafe"
+msgstr "Baolach"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Multisession CD"
-msgstr "Stáisiún Ilmheánach"
+#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
+msgid "Label"
+msgstr "Lipéad"
-#: ../../modules/parameters.pm:1
-#, fuzzy, c-format
-msgid "comma separated strings"
-msgstr "Formáidigh ranna"
+#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+msgid "Default"
+msgstr "Gnáth"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "These are the machines from which the scanners should be used:"
-msgstr ""
+#: ../../any.pm_.c:316
+msgid "Initrd-size"
+msgstr "Méid-Initrd"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Messages"
-msgstr "scéalaí"
+#: ../../any.pm_.c:318
+msgid "NoVideo"
+msgstr "GanBhideó"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
+#: ../../any.pm_.c:326
+msgid "Remove entry"
+msgstr "Scrios iontráil"
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "POP and IMAP Server"
-msgstr "Freastalaí LDAP"
+#: ../../any.pm_.c:329
+msgid "Empty label not allowed"
+msgstr "Níl ceadaigh an lipéad folamh ann"
-# MX
-#: ../../lang.pm:1
-#, c-format
-msgid "Mexico"
-msgstr "Meicsiceo"
+#: ../../any.pm_.c:330
+msgid "You must specify a kernel image"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Model stepping"
-msgstr "Ag formáidiú"
+#: ../../any.pm_.c:330
+#, fuzzy
+msgid "You must specify a root partition"
+msgstr "Níl aon ranna agat!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Rwanda"
-msgstr ""
+#: ../../any.pm_.c:331
+msgid "This label is already used"
+msgstr "Is ann cheana don ainm úsáideora seo"
-# CH
-#: ../../lang.pm:1
+#: ../../any.pm_.c:640
#, c-format
-msgid "Switzerland"
-msgstr "An Eilvéis"
+msgid "Found %s %s interfaces"
+msgstr "Fuair %s %s comhéadan"
-#: ../../lang.pm:1
-#, c-format
-msgid "Brunei Darussalam"
-msgstr ""
+#: ../../any.pm_.c:641
+msgid "Do you have another one?"
+msgstr "An bhfuil ceann eile agat?"
-#: ../../modules/interactive.pm:1
+#: ../../any.pm_.c:642
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "An bhfuil comhéadan %s agat?"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "You must be root to read configuration file. \n"
-msgstr "Cumraíocht Gréasánú"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote lpd Printer Options"
-msgstr ""
-
-#: ../../help.pm:1
-#, 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."
-msgstr ""
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Configure Internet Access..."
-msgstr "Cumraigh gréasánú"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please choose the time interval between each backup"
-msgstr "Roghnaight do theangam le do thoil."
+#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
+msgid "No"
+msgstr "Níl"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Norway"
-msgstr "Ioruais"
+#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
+msgid "Yes"
+msgstr "Tá"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Delete profile"
-msgstr "Roghnaigh Comhad"
+#: ../../any.pm_.c:645
+msgid "See hardware info"
+msgstr "Leámh an t-eolais crua-earra"
-#: ../../keyboard.pm:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:662
#, c-format
-msgid "Danish"
-msgstr "Danmharghais"
+msgid "Installing driver for %s card %s"
+msgstr "Ag feistáil tiomanaí do %s, carta %s"
-#: ../../services.pm:1
+#: ../../any.pm_.c:663
#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
-msgstr ""
+msgid "(module %s)"
+msgstr "(modíl %s)"
-#: ../../network/network.pm:1
+#: ../../any.pm_.c:674
#, 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)."
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../help.pm:1
+#: ../../any.pm_.c:680
#, 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."
-msgstr ""
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "When checked, owner and group won't be changed"
+"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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Bulgaria"
-msgstr "An Bhulgáir"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Tuesday"
-msgstr "Mairt"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Processors"
-msgstr ""
+#: ../../any.pm_.c:682
+msgid "Module options:"
+msgstr "Roghachais modúil:"
-#: ../../lang.pm:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:694
#, c-format
-msgid "Svalbard and Jan Mayen Islands"
+msgid "Which %s driver should I try?"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "No NIC selected!"
-msgstr "Cumraigh ADSL"
-
-#: ../../network/netconnect.pm:1
+#: ../../any.pm_.c:703
#, 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."
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "partition %s is now known as %s"
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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
-#, fuzzy, c-format
-msgid "Backup Other files..."
-msgstr "Droch comhad chúltaca"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Kinshasa)"
+#: ../../any.pm_.c:707
+msgid "Autoprobe"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server IP"
-msgstr "IP freastalaí SMP"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Scríobhfar clár diosca %s go dhiosca!"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Installing HPOJ package..."
-msgstr "Ag feistiál pacáiste %s"
-
-#: ../../any.pm:1
-#, 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"
-msgstr ""
+#: ../../any.pm_.c:707
+msgid "Specify options"
+msgstr "Cumraigh roghanna"
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:719
#, c-format
msgid ""
-"\n"
-" DrakBackup Daemon Report\n"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Latvian"
-msgstr "Áit"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "monthly"
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Retry"
-msgstr "Aisig ó comhad"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Module name"
-msgstr "Ainm Modúl"
-
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Start at boot"
-msgstr "Cruthaigh an diosca "
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental Backups"
+#: ../../any.pm_.c:734
+msgid "access to X programs"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of drive (MBR)"
+#: ../../any.pm_.c:735
+msgid "access to rpm tools"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "El Salvador"
-msgstr "An tSalvadóir"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Joystick"
+#: ../../any.pm_.c:736
+msgid "allow \"su\""
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "DVD"
+#: ../../any.pm_.c:737
+msgid "access to administrative files"
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Use Unicode by default"
+#: ../../any.pm_.c:738
+msgid "access to network tools"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
+#: ../../any.pm_.c:739
+msgid "access to compilation tools"
msgstr ""
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Is your hardware clock set to GMT?"
-msgstr "An bhfuil an clog cruaearrach ar GMT?"
-
-#: ../../diskdrake/interactive.pm:1
+#: ../../any.pm_.c:744
#, c-format
-msgid "Trying to rescue partition table"
-msgstr "Ag iarraidh an clár-ranna a tarrtháil"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s must be an integer number!"
+msgid "(already added %s)"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Use password to authenticate users"
-msgstr ""
+#: ../../any.pm_.c:749
+msgid "This password is too simple"
+msgstr "Tá an pasfhocal seo ro-shimplí"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
+#: ../../any.pm_.c:750
+msgid "Please give a user name"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:751
msgid ""
-"For backups to other media, files are still created on the hard drive, then "
-"moved to the other media. Enabling this option will remove the hard drive "
-"tar files after the backup."
-msgstr ""
-
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Unable to start live upgrade !!!\n"
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Name: "
-msgstr "Ainm: "
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "up"
-msgstr ""
+#: ../../any.pm_.c:752
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Is ann cheana don ainm úsáideora seo"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "16 million colors (24 bits)"
-msgstr "16 milliún dath (24 giotáin)"
+#: ../../any.pm_.c:753
+msgid "This user name is already added"
+msgstr "Is ann cheana don ainm úsáideora seo"
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Allow all users"
+#: ../../any.pm_.c:757
+msgid "Add user"
msgstr "Suimigh úsáideoir"
-#: ../advertising/08-store.pl:1
-#, c-format
-msgid "The official MandrakeSoft Store"
-msgstr ""
-
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resizing"
-msgstr "Ag athméadú"
-
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:758
#, c-format
msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+"Enter a user\n"
+"%s"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Cable connection"
+#: ../../any.pm_.c:759
+msgid "Accept user"
msgstr ""
-#: ../../standalone/drakperm:1 ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "User"
-msgstr "Ainm úsáideora"
+#: ../../any.pm_.c:770
+msgid "Real name"
+msgstr "Fíor ainm"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
+#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
+#: ../../printer/printerdrake.pm_.c:915
+msgid "User name"
+msgstr "Ainm úsáideora"
-#: ../../raid.pm:1
-#, c-format
-msgid "mkraid failed"
-msgstr "teip ar 'mkraid'"
+#: ../../any.pm_.c:774
+msgid "Shell"
+msgstr "Blaosc"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Name"
-msgstr "Ainm: "
+#: ../../any.pm_.c:776
+msgid "Icon"
+msgstr "Dealbh"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 3 Emulation"
-msgstr ""
+#: ../../any.pm_.c:803
+msgid "Autologin"
+msgstr "Uath-Logann"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of sgid files"
+#: ../../any.pm_.c:804
+#, fuzzy
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"Do you want to use this feature?"
msgstr ""
+"Is féidir linn do ríomhaire a shocrú le X a thosnú i ndhiadh bootáil.\n"
+"An dteastaíonn uait go dtosnófar X nuair a aththosnítear an ríomhaire?"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Sending files..."
-msgstr "Sabháil i gcomhad"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli (Phonetic)"
-msgstr ""
+#: ../../any.pm_.c:808
+msgid "Choose the default user:"
+msgstr "Roghnagih an úsáidoer gneás:"
-#: ../../any.pm:1
-#, c-format
-msgid "access to rpm tools"
-msgstr ""
+#: ../../any.pm_.c:809
+msgid "Choose the window manager to run:"
+msgstr "Roghnaigh an Bainistéoir Fhuinneoga a úsásd:"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "You must choose/enter a printer/device!"
-msgstr "Gaireas Printéir (URI)"
+#: ../../any.pm_.c:824
+#, fuzzy
+msgid "Please choose a language to use."
+msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission problem accessing CD."
+#: ../../any.pm_.c:826
+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 ""
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Phone number"
-msgstr "Uimhir fón"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr ""
+#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
+#: ../../standalone/drakxtv_.c:70
+msgid "All"
+msgstr "Gach Rud"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer name, description, location"
-msgstr ""
+#: ../../any.pm_.c:961
+#, fuzzy
+msgid "Allow all users"
+msgstr "Suimigh úsáideoir"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (broadcast)"
-msgstr ""
+#: ../../any.pm_.c:961
+#, fuzzy
+msgid "No sharing"
+msgstr "Ag Tosnaigh CUPS"
-#: ../../Xconfig/card.pm:1
+#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
#, c-format
-msgid "Use Xinerama extension"
+msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback"
+#: ../../any.pm_.c:973
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "West Europe"
-msgstr "Eorap"
-
-#: ../../standalone/drakbackup:1
+#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
#, c-format
-msgid "On CD-R"
+msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
+#: ../../any.pm_.c:987
msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
+"Would you like to allow users to share some of their directories?\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror "
+"and nautilus.\n"
"\n"
-"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
-#, fuzzy, c-format
-msgid "Harddrake2 version %s"
-msgstr "leagan `kernel'"
-
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Preferences"
-msgstr "Tosaíocht: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Swaziland"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominican Republic"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Copying %s"
+"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Choose color"
-msgstr "Roghnaigh scáileán"
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Syriac"
-msgstr "srathach"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-UID"
+#: ../../any.pm_.c:1001
+msgid "Launch userdrake"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1003
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!"
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user in this group."
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
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
+#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
+msgid "Welcome To Crackers"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 2 Button Mouse"
-msgstr "Luchóg 2-cnaipe Loiceadh"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr ""
+#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
+msgid "Poor"
+msgstr "Bocht"
-#: ../../lvm.pm:1
-#, c-format
-msgid "Remove the logical volumes first\n"
+#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
+msgid "Standard"
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
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr ""
+#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
+msgid "High"
+msgstr "Árd"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
-msgstr ""
+#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
+#, fuzzy
+msgid "Higher"
+msgstr "Árd"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Internet access"
-msgstr "suimiúil"
+#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
+msgid "Paranoid"
+msgstr "Paranóid"
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../any.pm_.c:1061
msgid ""
-"y coordinate of text box\n"
-"in number of characters"
+"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 ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1064
msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Enabling servers..."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printing test page(s)..."
+"Password are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../any.pm_.c:1065
msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "There is already a partition with mount point %s\n"
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable msec hourly security check."
+#: ../../any.pm_.c:1066
+msgid ""
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1067
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''."
+"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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Ukraine"
+#: ../../any.pm_.c:1070
+msgid ""
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Application:"
-msgstr "Deimniú"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "External ISDN modem"
-msgstr "Móideam ISDN seantrach"
+#: ../../any.pm_.c:1076
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Roghnachais"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result by mail."
-msgstr ""
+#: ../../any.pm_.c:1077
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Roghnaigh liebhéal slándáil"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Do rogha? (gnás %s)"
+#: ../../any.pm_.c:1080
+#, fuzzy
+msgid "Security level"
+msgstr "Roghnaigh liebhéal slándáil"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Trouble shooting"
-msgstr ""
+#: ../../any.pm_.c:1082
+#, fuzzy
+msgid "Use libsafe for servers"
+msgstr "Roghnaigh cumraíocht an freastalaí"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../any.pm_.c:1083
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"
+"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "daily"
+#: ../../any.pm_.c:1084
+msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "and one unknown printer"
-msgstr "Gan Printéir"
-
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "Ireland"
-msgstr "Athlódaigh"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid " Restore Configuration "
-msgstr "Cumraíocht Gréasánú"
-
-#: ../../Xconfig/test.pm:1
-#, fuzzy, c-format
-msgid "Is this the correct setting?"
-msgstr "An bhfuil seo ceart?"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../any.pm_.c:1166
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 ""
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Wizard Configuration"
-msgstr "cumraíocht"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Autoprobe"
+"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 ""
-#: ../../security/help.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:436
#, c-format
msgid ""
-"if set to yes, check for :\n"
-"\n"
-"- empty passwords,\n"
+"Welcome to %s the operating system chooser!\n"
"\n"
-"- no password in /etc/shadow\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
"\n"
-"- for users with the 0 id other than root."
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup system files..."
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Scríos Printéir"
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+# FIXME
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:983
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Fáile go GRUB, an roghnóir Choráis "
-#: ../../security/l10n.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:986
#, c-format
-msgid "Shell history size"
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
-
-#: ../../standalone/drakpxe:1
-#, 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"
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:989
+msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configured on other machines"
-msgstr "Cumraigh seirbhisí"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:992
+msgid "commands before booting, or 'c' for a command-line."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Peru"
-msgstr "Peiriú"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid " on device: %s"
-msgstr "Gaireas luchóige: %s\n"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Remove Windows(TM)"
-msgstr "Dealaigh Windows(TM)"
-
-#: ../../services.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:995
#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
+#: ../../bootloader.pm_.c:999
+msgid "not enough room in /boot"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:1099
+msgid "Desktop"
+msgstr "Deasc"
-# MG
-#: ../../lang.pm:1
-#, c-format
-msgid "Madagascar"
-msgstr "Madagascar"
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:1101
+msgid "Start Menu"
+msgstr "Clár Tosnú"
-#: ../../standalone/drakbug:1
+#: ../../bootloader.pm_.c:1120
#, c-format
-msgid "Urpmi"
+msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Cron not available yet as non-root"
-msgstr ""
+#: ../../bootlook.pm_.c:53
+msgid "Boot Style Configuration"
+msgstr "Cumraíocht Stíl Tosnú"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "System"
-msgstr "Mód Coras"
+#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
+#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
+#: ../../standalone/logdrake_.c:74
+msgid "/_File"
+msgstr "/_Comhad"
-#: ../../any.pm:1 ../../help.pm:1
-#, fuzzy, c-format
-msgid "Do you want to use this feature?"
-msgstr "Céard a theastaíonn uait a dhéanamh?"
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/logdrake_.c:80
+msgid "/File/_Quit"
+msgstr "/Comhad/_Ealu"
-# AT
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Arabic"
-msgstr "An Ostair"
+#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
+#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
+msgid "<control>Q"
+msgstr "<control>E"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid ""
-"\n"
-"- Options:\n"
-msgstr "Roghnachais"
+#: ../../bootlook.pm_.c:82
+msgid "NewStyle Categorizing Monitor"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Password required"
-msgstr "Pasfhocal"
+#: ../../bootlook.pm_.c:83
+msgid "NewStyle Monitor"
+msgstr "Scáileán Stíl Nua"
-#: ../../common.pm:1
-#, c-format
-msgid "%d minutes"
-msgstr "%d noiméaid"
+#: ../../bootlook.pm_.c:84
+msgid "Traditional Monitor"
+msgstr "Scáileán Tradisiúnta"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Graphics card: %s"
-msgstr "Carta Grafach: %s"
+#: ../../bootlook.pm_.c:85
+msgid "Traditional Gtk+ Monitor"
+msgstr "Monatóir Tradisiúnta Gtk+"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV transfer failed!"
-msgstr ""
+#: ../../bootlook.pm_.c:86
+msgid "Launch Aurora at boot time"
+msgstr "Tosnaigh Aurora "
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree configuration"
-msgstr "Cumraíocht XFree"
+#: ../../bootlook.pm_.c:89
+msgid "Lilo/grub mode"
+msgstr "Mód Lilo/Grub"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Choose action"
-msgstr "Roghnaigh gníomh"
+#: ../../bootlook.pm_.c:89
+msgid "Yaboot mode"
+msgstr "Mód Yaboot"
-#: ../../lang.pm:1
-#, c-format
-msgid "French Polynesia"
-msgstr ""
+#: ../../bootlook.pm_.c:138
+#, fuzzy
+msgid "Install themes"
+msgstr "Feistigh córas"
-#: ../../help.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:139
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."
+"Display theme\n"
+"under console"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr ""
+#: ../../bootlook.pm_.c:140
+#, fuzzy
+msgid "Create new theme"
+msgstr "Cruthaigh rann nua"
-#: ../../standalone/drakbackup:1
+#: ../../bootlook.pm_.c:184
#, c-format
-msgid ""
-"Files or wildcards listed in a .backupignore file at the top of a directory "
-"tree will not be backed up."
+msgid "Backup %s to %s.old"
msgstr ""
-#: ../../services.pm:1
+#: ../../bootlook.pm_.c:187
#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgid "Copy %s to %s"
msgstr ""
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Ag feistáil tiomanaí do %s, carta %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Enable Server"
-msgstr "Freastalaí Printéir"
-
-# uk
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Ukrainian"
-msgstr "Úcráinis"
+#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
+#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
+#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
+#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
+#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
+#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
+msgid "Error"
+msgstr "Earráid"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../bootlook.pm_.c:192
+msgid "Lilo message not found"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to write the file"
+#: ../../bootlook.pm_.c:222
+msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Cur isteach diosca sa dioscthiomant %s"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: ../../bootlook.pm_.c:222
#, fuzzy, c-format
-msgid "Local network(s)"
-msgstr "ní fuaireathas cárta gréasánú"
-
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Remove Windows"
-msgstr "Dealaigh Windows(TM)"
+msgid "Write %s"
+msgstr "Freastalaí XFree86: %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../bootlook.pm_.c:224
msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
-"applications menu."
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-#: ../../harddrake/data.pm:1
+#: ../../bootlook.pm_.c:235
#, c-format
-msgid "Firewire controllers"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../help.pm:1
+#: ../../bootlook.pm_.c:238
#, 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 "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "System mode"
-msgstr "Mód Coras"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../bootlook.pm_.c:244
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/drakTermServ:1
-#, c-format
-msgid "Netmask:"
-msgstr ""
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Do it later"
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Append"
-msgstr "Append"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
+#: ../../bootlook.pm_.c:248
+msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically "
-"made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" "
-"as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, "
-"but then you have to take care of these points."
-msgstr ""
+#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
+#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
+#, fuzzy
+msgid "Notice"
+msgstr "GanBhideó"
-#: ../../install_steps_interactive.pm:1
-#, 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"
+#: ../../bootlook.pm_.c:251
+msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Printéir Gréasán (lpd)"
+#: ../../bootlook.pm_.c:251
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Roghnaigh rang feistiú"
-#: ../../standalone/drakgw:1
+#: ../../bootlook.pm_.c:259
#, c-format
msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "OK to restore the other files."
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Please choose your keyboard layout."
-msgstr "Cén leagan amach atá ar d'eocharchlársa"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Device URI"
-msgstr "Gaireas Printéir (URI)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not erasable media!"
-msgstr ""
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Terminal-based"
-msgstr "Teirminéal-bhunaithe"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable IP spoofing protection."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Installing a printing system in the %s security level"
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "The user name is too long"
-msgstr "Is ann cheana don ainm úsáideora seo"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (windows...)"
-msgstr "CO Eile (windows...)"
+#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
+#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
+msgid "Configure"
+msgstr "Cumraigh"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WebDAV remote site already in sync!"
-msgstr ""
+#: ../../bootlook.pm_.c:268
+#, fuzzy
+msgid "Splash selection"
+msgstr "Roghnú Grúpa Pacáistí"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer database..."
+#: ../../bootlook.pm_.c:271
+msgid "Themes"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Generate auto install floppy"
-msgstr "Cruthaigh flapach bootáil"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../bootlook.pm_.c:273
msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
+"\n"
+"Select theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Somalia"
+#: ../../bootlook.pm_.c:276
+msgid "Lilo screen"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No open source driver"
+#: ../../bootlook.pm_.c:281
+msgid "Bootsplash"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Def."
-msgstr ""
+#: ../../bootlook.pm_.c:316
+msgid "System mode"
+msgstr "Mód Coras"
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+#: ../../bootlook.pm_.c:318
+msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "New Caledonia"
+#: ../../bootlook.pm_.c:323
+msgid "No, I don't want autologin"
msgstr ""
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Eorap (EDS11)"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Delete"
-msgstr "Scríos"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Video mode"
-msgstr "Mód fís"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Oman"
+#: ../../bootlook.pm_.c:325
+msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Please enter your email address below "
-msgstr "Aththrialaigh"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Network Monitoring"
-msgstr "Cumraíocht Gréasánú"
+#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
+#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
+#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
+#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
+#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
+#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
+#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
+#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
+#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
+#: ../../ugtk2.pm_.c:355
+msgid "OK"
+msgstr "Ceart go Leor"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "SunOS"
-msgstr "SunOS"
+#: ../../common.pm_.c:107
+msgid "GB"
+msgstr "GB"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "New size in MB: "
-msgstr "Méid i MB: "
+#: ../../common.pm_.c:107
+msgid "KB"
+msgstr "KB"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Cinéal tabla rann: %s\n"
+#: ../../common.pm_.c:107
+msgid "MB"
+msgstr "MB"
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Authentication Windows Domain"
-msgstr "Deimniú LDAP"
+#: ../../common.pm_.c:115
+msgid "TB"
+msgstr "TB"
-#: ../../keyboard.pm:1
+#: ../../common.pm_.c:123
#, c-format
-msgid "US keyboard"
-msgstr "Meárchlár US"
+msgid "%d minutes"
+msgstr "%d noiméaid"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Buttons emulation"
-msgstr ""
+#: ../../common.pm_.c:125
+msgid "1 minute"
+msgstr "1 noiméad"
-#: ../../printer/printerdrake.pm:1
+#: ../../common.pm_.c:127
#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ""
+msgid "%d seconds"
+msgstr "%d siocand"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
+#: ../../common.pm_.c:172
+#, fuzzy
+msgid "Can't make screenshots before partitioning"
+msgstr "Ní féidir liom rann eile a cur isteach"
-#: ../../standalone/drakbackup:1
+#: ../../common.pm_.c:179
#, c-format
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
+msgid "Screenshots will be available after install in %s"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Sending Speed:"
-msgstr "Sabháil i gcomhad"
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"The classic bug sound tester is to run the following commands:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
-"currently uses\n"
-"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services're configured to be run on\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:127
+msgid "France"
+msgstr "Fraince"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Halt bug"
+#: ../../crypto.pm_.c:15
+msgid "Costa Rica"
msgstr ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Mail alert configuration"
-msgstr "Cumraigh Lilo/Grub"
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:130
+#, fuzzy
+msgid "Belgium"
+msgstr "Belgáiris"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tokelau"
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+msgid "Czech Republic"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Matching"
-msgstr ""
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#, fuzzy
+msgid "Germany"
+msgstr "Gearmáinis"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Bosnian"
-msgstr "Eastóinis"
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#, fuzzy
+msgid "Greece"
+msgstr "Greicís"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Release: "
-msgstr "Fan tamall"
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
+#, fuzzy
+msgid "Norway"
+msgstr "Ioruais"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Connection speed"
-msgstr "Athraigh cineál ranna"
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
+#, fuzzy
+msgid "Sweden"
+msgstr "Amharc"
-#: ../../lang.pm:1
-#, c-format
-msgid "Namibia"
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:128
+msgid "Netherlands"
msgstr ""
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "Database Server"
-msgstr "Freastalaí Printéir"
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "Italy"
+msgstr "Iodálais"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
+#, fuzzy
+msgid "Austria"
+msgstr "srathach"
-#: ../../raid.pm:1
-#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:131
+msgid "United States"
msgstr ""
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Network Time Protocol"
-msgstr "Cláréadan Gréasán"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../diskdrake/dav.pm_.c:19
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."
+"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/draksec:1
-#, fuzzy, c-format
-msgid "Please wait, setting security options..."
-msgstr "Fan tamall, ag ullmhaigh feistiú"
+#: ../../diskdrake/dav.pm_.c:27
+#, fuzzy
+msgid "New"
+msgstr "nua"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
+#: ../../diskdrake/smbnfs_gtk.pm_.c:81
+msgid "Unmount"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Launch the graphical environment when your system starts"
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
+#: ../../diskdrake/smbnfs_gtk.pm_.c:82
+msgid "Mount"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hourly"
-msgstr ""
+#: ../../diskdrake/dav.pm_.c:65
+msgid "Server"
+msgstr "Freastalaí"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Shift key"
+#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
+#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
+#: ../../diskdrake/dav.pm_.c:85
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Teastáil an luchóg, le do thoil"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Making printer port available for CUPS..."
+#: ../../diskdrake/dav.pm_.c:88
+msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Antigua and Barbuda"
-msgstr ""
+#: ../../diskdrake/dav.pm_.c:109
+#, fuzzy
+msgid "Server: "
+msgstr "Freastalaí"
-#: ../../standalone/drakTermServ:1
-#, 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."
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
+#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1177
+msgid "Mount point: "
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
#, c-format
-msgid "Spanish"
-msgstr "Spáinis"
-
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "Start"
-msgstr "Clár Tosnú"
+msgid "Options: %s"
+msgstr "Roghnachais: %s"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Direct root login"
+#: ../../diskdrake/hd_gtk.pm_.c:97
+msgid "Please make a backup of your data first"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Configuring applications..."
-msgstr "Cumraigh printéir"
+#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
+#: ../../diskdrake/interactive.pm_.c:956
+#: ../../diskdrake/interactive.pm_.c:1022
+msgid "Read carefully!"
+msgstr "Léigh go curamach"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/hd_gtk.pm_.c:100
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."
+"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 ""
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Normal modem connection"
-msgstr "Cumraigh nasc ghréasán"
-
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "File Selection"
-msgstr "Roghnú Grúpa Pacáistí"
-
-#: ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
-#, c-format
-msgid "CUPS"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:154
+msgid "Wizard"
+msgstr "Draíodoir"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Erase tape before backup"
-msgstr "Droch comhad chúltaca"
+#: ../../diskdrake/hd_gtk.pm_.c:187
+msgid "Choose action"
+msgstr "Roghnaigh gníomh"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Run config tool"
+#: ../../diskdrake/hd_gtk.pm_.c:191
+msgid ""
+"You have one big FAT partition\n"
+"(generally used by MicroSoft Dos/Windows).\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
+"Tá rann mór FAT amháin agat.\n"
+"Molaim dhuit an rann sin a athmhéadú ar dtús\n"
+"(roghnaigh an rann agus brú ar \"Athméidigh\")"
-#: ../../any.pm:1
-#, c-format
-msgid "Bootloader installation"
-msgstr "Feistiú cód tosnaithe"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Root partition size in MB: "
-msgstr "Méid i MB do Rhann Fréamhach:"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "This is a mandatory package, it can't be unselected"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:194
+msgid "Please click on a partition"
+msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakTermServ:1
-#, 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/boot1a.bin \\\n"
-" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:464
+msgid "Details"
+msgstr "Sonraí"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:254
+#, fuzzy
+msgid "No hard drives found"
+msgstr "Printéir áitiúl"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Lucia"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "FAT"
+msgstr "FAT"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "November"
-msgstr "Samhain"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "HFS"
+msgstr "HFS"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Disconnect..."
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Journalised FS"
msgstr ""
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Report"
-msgstr "Poirt"
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../lang.pm:1
-#, c-format
-msgid "Palau"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:325
+msgid "Swap"
+msgstr "Malairte"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "level"
-msgstr "leibhéal"
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
+msgid "Empty"
+msgstr "Folamh"
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid ""
-"All incidents will be followed up by a single qualified MandrakeSoft "
-"technical expert."
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
+#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
+#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
+msgid "Other"
+msgstr "Eile"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package Group Selection"
-msgstr "Roghnú Grúpa Pacáistí"
+#: ../../diskdrake/hd_gtk.pm_.c:330
+msgid "Filesystem types:"
+msgstr "Cineál córais-comhadlanna"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
-msgstr "Cumraigh ADSL"
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
+msgid "Create"
+msgstr "Cruthaigh"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
+#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
+msgid "Type"
+msgstr "Cineál"
-#: ../../modules/interactive.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
#, c-format
-msgid "You can configure each parameter of the module here."
+msgid "Use ``%s'' instead"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Choose the resolution and the color depth"
-msgstr "Roghnaigh Réiteach agus an méid dath"
+#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
+msgid "Delete"
+msgstr "Scríos"
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Emulate third button?"
+#: ../../diskdrake/hd_gtk.pm_.c:353
+msgid "Use ``Unmount'' first"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
#, 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."
+"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:177
+#, fuzzy
+msgid "Choose a partition"
+msgstr "Roghnaigh gníomh"
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Creating auto install floppy"
-msgstr "Cruthaigh flapach bootáil"
+#: ../../diskdrake/interactive.pm_.c:177
+#, fuzzy
+msgid "Choose another partition"
+msgstr "Cruthaigh rann nua"
-#: ../../steps.pm:1
-#, fuzzy, c-format
-msgid "Install updates"
-msgstr "Feistigh córas"
+#: ../../diskdrake/interactive.pm_.c:202
+#, fuzzy
+msgid "Exit"
+msgstr "Ext2"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text box height"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to expert mode"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "State"
-msgstr "Clár Tosnú"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Be sure a media is present for the device %s"
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Toggle to normal mode"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Enable multiple profiles"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:228
+msgid "Undo"
+msgstr "Leasú"
-#: ../../fs.pm:1
-#, c-format
-msgid "Do not interpret character or block special devices on the file system."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:247
+msgid "Continue anyway?"
+msgstr "Lean ar aghaidh ar aon nós?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without saving"
+msgstr "Éalaigh gan sabháil"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Local printer"
-msgstr "Printéir áitiúl"
+#: ../../diskdrake/interactive.pm_.c:252
+msgid "Quit without writing the partition table?"
+msgstr "Éalaigh gan an clár-ranna a scríobh?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Files Restored..."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:257
+#, fuzzy
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Package selection"
-msgstr "Roghnú Grúpa Pacáistí"
+#: ../../diskdrake/interactive.pm_.c:271
+msgid "Clear all"
+msgstr "Glan gach ceann"
-#: ../../lang.pm:1
-#, c-format
-msgid "Mauritania"
+#: ../../diskdrake/interactive.pm_.c:272
+msgid "Auto allocate"
msgstr ""
-#: ../../standalone/drakgw:1
-#, 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"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:273
+#: ../../install_steps_interactive.pm_.c:220
+msgid "More"
+msgstr "Mór"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:278
+#, fuzzy
+msgid "Hard drive information"
+msgstr "Eolas R-Phost"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:310
msgid "All primary partitions are used"
msgstr "Tá na ranna príofa uilig úsáidthe"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "LPD server \"%s\", printer \"%s\""
-msgstr "Ag dúnadh síos an ghreasán"
+#: ../../diskdrake/interactive.pm_.c:311
+msgid "I can't add any more partition"
+msgstr "Ní féidir liom rann eile a cur isteach"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:312
msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-
-#: ../../services.pm:1
-#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
msgstr ""
+"Le breis ranna a bheith agat, dealaigh ceann amháin le bheith in ann "
+"rannsínithe a cruthú"
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Installation Server Configuration"
-msgstr "Éirigh as cumraíocht"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring IDE"
-msgstr "Ag cumraigh IDE"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Network functionality not configured"
-msgstr "Níl aon scáileán cumraithe"
+#: ../../diskdrake/interactive.pm_.c:322
+#, fuzzy
+msgid "Save partition table"
+msgstr "Scriobh clár-ranna"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Configure module"
-msgstr "Cumraigh luchóg"
+#: ../../diskdrake/interactive.pm_.c:323
+#, fuzzy
+msgid "Restore partition table"
+msgstr "Scriobh clár-ranna"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cocos (Keeling) Islands"
+#: ../../diskdrake/interactive.pm_.c:324
+msgid "Rescue partition table"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Beidh ort an ríomhaire a aththosnú sula ndéanfar an athrú"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider phone number"
-msgstr "Uimhir fón"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Host %s"
-msgstr "ÓstAinm"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Fiji"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:326
+#, fuzzy
+msgid "Reload partition table"
+msgstr "Scriobh clár-ranna"
-#: ../../lang.pm:1
-#, c-format
-msgid "Armenia"
+#: ../../diskdrake/interactive.pm_.c:331
+msgid "Removable media automounting"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Second floppy drive"
-msgstr "Dara dioscthiomáint flapach"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "About Harddrake"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
+msgid "Select file"
+msgstr "Roghnaigh Comhad"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize TCP connections to X Window"
+#: ../../diskdrake/interactive.pm_.c:347
+msgid ""
+"The backup partition table has not the same size\n"
+"Still continue?"
msgstr ""
+"Níl an méid céanna ar an rann cúltaca\n"
+"Lean ar aghaidh ar aon nós?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Drive capacity"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
+#: ../../network/modem.pm_.c:95
+msgid "Warning"
+msgstr "Rabhadh"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:362
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -2930,1495 +1712,1297 @@ msgstr ""
"Cur diosca flapach sa dioscthiomant\n"
"Caillfear gach sonra ar an dhiosca seo"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s"
-msgstr "Méid: %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Control and Shift keys simultaneously"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:373
+msgid "Trying to rescue partition table"
+msgstr "Ag iarraidh an clár-ranna a tarrtháil"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "secondary"
-msgstr "%d siocand"
+#: ../../diskdrake/interactive.pm_.c:379
+#, fuzzy
+msgid "Detailed information"
+msgstr "Eolas R-Phost"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "View Backup Configuration."
-msgstr "Cumraíocht Gréasánú"
+#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
+msgid "Resize"
+msgstr "Athméidigh"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report check result to syslog."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
+msgid "Move"
+msgstr "Bog"
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No password"
-msgstr "Gan pasfhocal"
+#: ../../diskdrake/interactive.pm_.c:396
+msgid "Format"
+msgstr "Formáidigh"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nigeria"
-msgstr "An Nigéir"
+#: ../../diskdrake/interactive.pm_.c:398
+msgid "Add to RAID"
+msgstr "Cur le RAID"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires hostname...\n"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:399
+msgid "Add to LVM"
+msgstr "Cur le LVM"
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "There is no existing partition to use"
-msgstr "Ag iarraidh an clár-ranna a tarrtháil"
+#: ../../diskdrake/interactive.pm_.c:402
+msgid "Remove from RAID"
+msgstr "Bain ó RAID"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-msgstr "Níl aon gaireas ghreasán san do chorás!"
+#: ../../diskdrake/interactive.pm_.c:403
+msgid "Remove from LVM"
+msgstr "Bain ó RAID"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Multi-function device on parallel port #%s"
-msgstr "Óstainm Printéir"
+#: ../../diskdrake/interactive.pm_.c:404
+msgid "Modify RAID"
+msgstr "Athraigh RAID"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../diskdrake/interactive.pm_.c:405
+msgid "Use for loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Hard drive information"
-msgstr "Eolas R-Phost"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Russian"
-msgstr "Ruislís"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Jordan"
-msgstr "An Iordáin"
+#: ../../diskdrake/interactive.pm_.c:445
+msgid "Create a new partition"
+msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Hide files"
-msgstr "teip ar 'mkraid'"
+#: ../../diskdrake/interactive.pm_.c:448
+msgid "Start sector: "
+msgstr "Teascán tosasch: "
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Auto-detect printers connected to this machine"
-msgstr "Scríos Printéir"
+#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
+msgid "Size in MB: "
+msgstr "Méid i MB: "
-#: ../../any.pm:1
-#, c-format
-msgid "Sorry, no floppy drive available"
-msgstr "Brón orm, níl aon dioscthiománt flapach ar fáil"
+#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
+msgid "Filesystem type: "
+msgstr "Cineál córas-comhadlanna:"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bolivia"
-msgstr "An Bholaiv"
+#: ../../diskdrake/interactive.pm_.c:456
+msgid "Preference: "
+msgstr "Tosaíocht: "
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:481
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"
+"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 ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Bad package"
-msgstr "Pacáiste mícheart"
+#: ../../diskdrake/interactive.pm_.c:511
+#, fuzzy
+msgid "Remove the loopback file?"
+msgstr "Ag formáidiú comhad 'loopback' %s"
-#: ../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!"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:541
+msgid "Change partition type"
+msgstr "Athraigh cineál ranna"
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid "DrakSec Basic Options"
-msgstr "Roghnachais"
+#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
+#, fuzzy
+msgid "Which filesystem do you want?"
+msgstr "Cén rann atá uait?"
-#: ../../standalone/draksound:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
-"program. Just type \"sndconfig\" in a console."
+#: ../../diskdrake/interactive.pm_.c:548
+msgid "Switching from ext2 to ext3"
msgstr ""
-# RO
-#: ../../lang.pm:1
-#, c-format
-msgid "Romania"
-msgstr "An Rómáin"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Group"
-msgstr "Grupa na hOibre"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Canada"
-msgstr "Ceanada"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "choose device"
-msgstr "Gaireas bootáil"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from LVM"
-msgstr "Bain ó RAID"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Timezone"
-msgstr "Am Críos"
-
-#: ../../keyboard.pm:1
+#: ../../diskdrake/interactive.pm_.c:578
#, c-format
-msgid "German"
-msgstr "Gearmáinis"
-
-#: ../../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
-#, c-format
-msgid "Next ->"
+msgid "Where do you want to mount loopback file %s?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:579
#, 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 "Where do you want to mount device %s?"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Horizontal refresh rate"
-msgstr "Ráta athnuachana cothrománach"
-
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: ../../diskdrake/interactive.pm_.c:606
#, fuzzy, c-format
-msgid "Edit"
-msgstr "Ext2"
+msgid "Where do you want to mount %s?"
+msgstr "Céard a theastaíonn uait a dhéanamh?"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:630
+msgid "Computing FAT filesystem bounds"
+msgstr "Ag ríomhadh teorainn na córais-comhadlanna FAT"
-#: ../../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 ""
+#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing"
+msgstr "Ag athméadú"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "USB controllers"
+#: ../../diskdrake/interactive.pm_.c:662
+msgid "This partition is not resizeable"
msgstr ""
-#: ../../Xconfig/various.pm:1
+#: ../../diskdrake/interactive.pm_.c:667
+#, fuzzy
+msgid "All data on this partition should be backed-up"
+msgstr "caillfear gach sonra ar an rann seo"
+
+#: ../../diskdrake/interactive.pm_.c:669
#, c-format
-msgid "What norm is your TV using?"
+msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Type:"
-msgstr "Cineál: "
+#: ../../diskdrake/interactive.pm_.c:674
+msgid "Choose the new size"
+msgstr "Roghnaigh an méid nua"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Share name"
-msgstr "Comh. ainm"
+#: ../../diskdrake/interactive.pm_.c:675
+#, fuzzy
+msgid "New size in MB: "
+msgstr "Méid i MB: "
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "enable"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:728
+msgid "Which disk do you want to move it to?"
+msgstr "Cén diosca ag a dteastaíonn uait é a bhogadh?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:729
+msgid "Sector"
+msgstr "Teascán"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
+#: ../../diskdrake/interactive.pm_.c:730
+msgid "Which sector do you want to move it to?"
+msgstr "Cén tescán ag a dteastaíonn uait é a bhogadh?"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Remove the loopback file?"
-msgstr "Ag formáidiú comhad 'loopback' %s"
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving"
+msgstr "Ag bogadh"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Selected size is larger than available space"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:733
+msgid "Moving partition..."
+msgstr "Ag bogadh rann..."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP server name missing!"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:750
+msgid "Choose an existing RAID to add to"
+msgstr "Roghnaigh RAID atá ann le méadú"
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Please choose your country."
-msgstr "Cén cinéal luchóg atá agat?"
+#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
+msgid "new"
+msgstr "nua"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Hard Disk Backup files..."
-msgstr "Droch comhad chúltaca"
+#: ../../diskdrake/interactive.pm_.c:766
+#, fuzzy
+msgid "Choose an existing LVM to add to"
+msgstr "Roghnaigh RAID atá ann le méadú"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Laotian"
-msgstr "Áit"
+#: ../../diskdrake/interactive.pm_.c:771
+msgid "LVM name?"
+msgstr "ainm LVM?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Samoa"
+#: ../../diskdrake/interactive.pm_.c:812
+msgid "This partition can't be used for loopback"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
+#: ../../diskdrake/interactive.pm_.c:825
+msgid "Loopback"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Re-generating list of configured scanners ..."
+#: ../../diskdrake/interactive.pm_.c:826
+msgid "Loopback file name: "
msgstr ""
-#: ../../modules/interactive.pm:1
-#, fuzzy, c-format
-msgid "Module configuration"
-msgstr "Cumraigh Idirlíon"
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Scanner"
-msgstr "Roghnaigh carta grafachach"
-
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:831
+#, fuzzy
+msgid "Give a file name"
+msgstr "Fíor ainm"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
+#: ../../diskdrake/interactive.pm_.c:834
+msgid "File already used by another loopback, choose another one"
msgstr ""
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Menudrake"
-msgstr "sainordaitheach"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Welcome To Crackers"
+#: ../../diskdrake/interactive.pm_.c:835
+msgid "File already exists. Use it?"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Module options:"
+#: ../../diskdrake/interactive.pm_.c:858
+#, fuzzy
+msgid "Mount options"
msgstr "Roghachais modúil:"
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
+#: ../../diskdrake/interactive.pm_.c:865
+msgid "Various"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Go on without configuring the network"
-msgstr "Cumraigh gréasánú"
+#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
+msgid "device"
+msgstr "feist"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Abort"
-msgstr "Tobscoir"
+#: ../../diskdrake/interactive.pm_.c:930
+msgid "level"
+msgstr "leibhéal"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No password prompt on %s at port %s"
+#: ../../diskdrake/interactive.pm_.c:931
+msgid "chunk size"
+msgstr "méid smután"
+
+#: ../../diskdrake/interactive.pm_.c:947
+msgid "Be careful: this operation is dangerous."
msgstr ""
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
-msgstr "Kensington Thinking Mouse"
+#: ../../diskdrake/interactive.pm_.c:962
+msgid "What type of partitioning?"
+msgstr "Cén sort rannú atá ort?"
-#: ../../standalone/scannerdrake:1
+#: ../../diskdrake/interactive.pm_.c:978
#, fuzzy, c-format
-msgid "Usage of remote scanners"
-msgstr "Úsáid spás saor"
+msgid "The package %s is needed. Install it?"
+msgstr "Roghnaigh pacáistí ..."
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:992
msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
+"Níl mé sasta /boot a cruthú comh fada sin isteach sa diosca, (ar sorcóir > "
+"1024).\n"
+"Má tá tú ag úsáid LILO ní oibróidh sé, nó níl /boot uait muna n-úsáideann tú "
+"LILO"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Ioruais)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hard Disk Backup Progress..."
+#: ../../diskdrake/interactive.pm_.c:996
+msgid ""
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
+"Tá an rann atá roghnaithe agat don fréamh (/) suitithe i ndhiadh an 1024ú\n"
+"sorcóir ar an dhiosca, agus níl aon rann /boot agat.\n"
+"Má tá tú chun LILO a úsáid, beidh ort rann /boot a cruthú ar ball."
-#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Teip ar glaoch `fork': %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Type: "
-msgstr "Cineál: "
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Edit Client"
+#: ../../diskdrake/interactive.pm_.c:1002
+msgid ""
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"So be careful to add a /boot partition"
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "no fonts found"
-msgstr "Teip ag cuardach %s"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1
+#: ../../diskdrake/interactive.pm_.c:1022
#, c-format
-msgid "Mouse"
-msgstr "Luchóg"
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "Scríobhfar clár diosca %s go dhiosca!"
-#: ../../bootloader.pm:1
-#, c-format
-msgid "not enough room in /boot"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:1026
+msgid "You'll need to reboot before the modification can take place"
+msgstr "Beidh ort an ríomhaire a aththosnú sula ndéanfar an athrú"
-#: ../../install_steps_gtk.pm:1
+#: ../../diskdrake/interactive.pm_.c:1037
#, c-format
-msgid "trying to promote %s"
+msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Liechtenstein"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:1039
+msgid "Formatting"
+msgstr "Ag formáidiú"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../diskdrake/interactive.pm_.c:1040
#, c-format
-msgid "Host name"
-msgstr "ÓstAinm"
+msgid "Formatting loopback file %s"
+msgstr "Ag formáidiú comhad 'loopback' %s"
-#: ../../standalone/draksplash:1
+#: ../../diskdrake/interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:466
#, c-format
-msgid "the color of the progress bar"
-msgstr ""
+msgid "Formatting partition %s"
+msgstr "Ag formáidiú rann %s"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Fonts Files"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:1052
+#, fuzzy
+msgid "Hide files"
+msgstr "teip ar 'mkraid'"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to RAID"
-msgstr "Cur le RAID"
+#: ../../diskdrake/interactive.pm_.c:1052
+#, fuzzy
+msgid "Move files to the new partition"
+msgstr "Cruthaigh rann nua"
-#: ../../help.pm:1
+#: ../../diskdrake/interactive.pm_.c:1053
#, c-format
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."
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1064
+#, fuzzy
+msgid "Moving files to the new partition"
+msgstr "Cruthaigh rann nua"
+
+#: ../../diskdrake/interactive.pm_.c:1068
#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+msgid "Copying %s"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../diskdrake/interactive.pm_.c:1072
#, fuzzy, c-format
-msgid "No floppy drive available!"
-msgstr "Níl dioscthiománt flapach ar fáil"
+msgid "Removing %s"
+msgstr "Réiteachaí: %s\n"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1082
#, c-format
-msgid ""
-"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s%s%s\n"
-"\n"
+msgid "partition %s is now known as %s"
msgstr ""
-# SA
-#: ../../lang.pm:1
-#, c-format
-msgid "Saudi Arabia"
-msgstr "An Araib"
+#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1162
+msgid "Device: "
+msgstr "Gaireas: "
-#: ../../services.pm:1
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
-msgid "Internet"
-msgstr "Idirlíon"
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "Litir Dioscthiománt DOS: %s (buile faoi thuraim)\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Continue anyway?"
-msgstr "Lean ar aghaidh ar aon nós?"
+#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1181
+msgid "Type: "
+msgstr "Cineál: "
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:1112
+msgid "Name: "
+msgstr "Ainm: "
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1120
#, c-format
-msgid "Printer"
-msgstr "Printéir"
+msgid "Start: sector %s\n"
+msgstr "Tús: teascán %s\n"
-#: ../../standalone/service_harddrake:1
+#: ../../diskdrake/interactive.pm_.c:1121
#, c-format
-msgid "Some devices were added:\n"
-msgstr ""
+msgid "Size: %s"
+msgstr "Méid: %s"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1123
#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Céimseasamh: %s sorcóir, %s ceann, %s teascán\n"
+msgid ", %s sectors"
+msgstr ", %s teascáin"
-#: ../../printer/printerdrake.pm:1
+#: ../../diskdrake/interactive.pm_.c:1125
#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Ag dúnadh síos an ghreasán"
+msgid "Cylinder %d to %d\n"
+msgstr "Sorcóir %d go sorcóir %d\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
+#: ../../diskdrake/interactive.pm_.c:1126
+msgid "Formatted\n"
+msgstr "Formáidithe\n"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore From Tape"
-msgstr "Scriobh clár-ranna"
+#: ../../diskdrake/interactive.pm_.c:1127
+msgid "Not formatted\n"
+msgstr "Neamhformáidithe\n"
-#: ../../standalone/drakbug:1
-#, 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."
+#: ../../diskdrake/interactive.pm_.c:1128
+msgid "Mounted\n"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Choose the profile to configure"
-msgstr "Roghnagih an úsáidoer gneás:"
-
-#: ../../security/l10n.pm:1
+#: ../../diskdrake/interactive.pm_.c:1129
#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
-msgstr ""
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../diskdrake/interactive.pm_.c:1131
#, c-format
msgid ""
-"\n"
-"\n"
-"Enter a Zeroconf host name without any dot if you don't\n"
-"want to use the default host name."
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup Now from configuration file"
-msgstr "Cumraíocht Gréasánú"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points should contain only alphanumerical characters"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Restarting printing system..."
-msgstr "Scríos Printéir"
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "You can only run with no CDROM support"
-msgstr ""
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "See hardware info"
-msgstr "Leámh an t-eolais crua-earra"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Day"
-msgstr "La"
-
-#: ../../any.pm:1
-#, c-format
-msgid "First sector of boot partition"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model"
+"Loopback file(s):\n"
+" %s\n"
msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ - Print, Don't Queue"
+#: ../../diskdrake/interactive.pm_.c:1132
+msgid ""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
+"Rann tosaithe de ghnáth\n"
+" (do thosnú MS-DOS, ní lilo)\n"
-#: ../../standalone.pm:1
+#: ../../diskdrake/interactive.pm_.c:1134
#, 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)"
-msgstr ""
+msgid "Level %s\n"
+msgstr "Leibhéal %s\n"
-#: ../../standalone/drakTermServ:1
+#: ../../diskdrake/interactive.pm_.c:1135
#, c-format
-msgid "Subnet Mask:"
-msgstr ""
+msgid "Chunk size %s\n"
+msgstr "Méid smután %s\n"
-#: ../../security/l10n.pm:1
+#: ../../diskdrake/interactive.pm_.c:1136
#, c-format
-msgid "Set password expiration and account inactivation delays"
-msgstr ""
+msgid "RAID-disks %s\n"
+msgstr "Dioscaí RAID %s\n"
-#: ../../standalone/logdrake:1
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
-msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
+msgid "Loopback file name: %s"
msgstr ""
-#: ../../Xconfig/monitor.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1141
msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
msgstr ""
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, c-format
-msgid "Modify"
-msgstr "Athraigh"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../diskdrake/interactive.pm_.c:1144
msgid ""
"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
+#: ../../diskdrake/interactive.pm_.c:1163
+msgid "Read-only"
msgstr ""
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Insert floppy"
-msgstr "Cur isteach diosca sa dioscthiomant %s"
-
-#: ../../diskdrake/dav.pm:1
+#: ../../diskdrake/interactive.pm_.c:1164
#, c-format
-msgid ""
-"WebDAV is a protocol that allows you to mount a web server's directory\n"
-"locally, and treat it like a local filesystem (provided the web server is\n"
-"configured as a WebDAV server). If you would like to add WebDAV mount\n"
-"points, select \"New\"."
-msgstr ""
+msgid "Size: %s\n"
+msgstr "Méid: %s\n"
-#: ../../standalone/drakbug:1
+#: ../../diskdrake/interactive.pm_.c:1165
#, c-format
-msgid "HardDrake"
-msgstr ""
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Céimseasamh: %s sorcóir, %s ceann, %s teascán\n"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "new"
-msgstr "nua"
+#: ../../diskdrake/interactive.pm_.c:1166
+#, fuzzy
+msgid "Info: "
+msgstr "Eolas"
-#: ../../security/help.pm:1
+#: ../../diskdrake/interactive.pm_.c:1167
#, c-format
-msgid "Enable/Disable syslog reports to console 12"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Would you like to try again?"
-msgstr "An dteastaìonn uait printéir a chumrú?"
+msgid "LVM-disks %s\n"
+msgstr "Dioscaí LVM %s\n"
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
+#: ../../diskdrake/interactive.pm_.c:1168
#, c-format
-msgid "Wizard"
-msgstr "Draíodoir"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Edit selected server"
-msgstr "Scrios ciú"
+msgid "Partition table type: %s\n"
+msgstr "Cinéal tabla rann: %s\n"
-#: ../../standalone/drakbackup:1
+#: ../../diskdrake/interactive.pm_.c:1169
#, fuzzy, c-format
-msgid "Please choose where you want to backup"
-msgstr "Cén cinéal luchóg atá agat?"
+msgid "on channel %d id %d\n"
+msgstr "ar bhús %d, id %d\n"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Beidh ort an ríomhaire a aththosnú sula ndéanfar an athrú"
+#: ../../diskdrake/interactive.pm_.c:1199
+#, fuzzy
+msgid "Filesystem encryption key"
+msgstr "Cineál córas-comhadlanna:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include the browser cache"
+#: ../../diskdrake/interactive.pm_.c:1200
+msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm_.c:1203
#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can lose data)"
+msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Please, choose your keyboard layout."
-msgstr "Cén leagan amach atá ar d'eocharchlársa"
+#: ../../diskdrake/interactive.pm_.c:1204
+#, fuzzy
+msgid "The encryption keys do not match"
+msgstr "Ní mar a chéile na pasfhocail"
-#: ../../mouse.pm:1 ../../security/level.pm:1
-#, c-format
-msgid "Standard"
+#: ../../diskdrake/interactive.pm_.c:1207
+msgid "Encryption key"
msgstr ""
-#: ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose your mouse type."
-msgstr "Cén cinéal luchóg atá agat?"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Connect..."
+#: ../../diskdrake/interactive.pm_.c:1208
+msgid "Encryption key (again)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Failed to configure printer \"%s\"!"
-msgstr "Cumraigh printéir"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "not configured"
-msgstr "Cumraigh"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA/ PCMCIA"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "About"
-msgstr "Tobscoir"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "GlidePoint"
-msgstr "GlidePoint"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxies configuration"
-msgstr "Cumraigh seach-freastalaí"
+#: ../../diskdrake/removable.pm_.c:47
+#, fuzzy
+msgid "Change type"
+msgstr "Athraigh cineál ranna"
-#: ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
-msgid "Start: sector %s\n"
-msgstr "Tús: teascán %s\n"
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "No Mask"
-msgstr "Pacáiste mícheart"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Deimniú"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Network interface already configured"
-msgstr "Níl aon scáileán cumraithe"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Idirlíon"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Couldn't access the floppy!"
-msgstr ""
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Ainm úsáideora"
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
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."
+"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Mail Server"
-msgstr "Freastalaí Printéir"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please click on a partition"
-msgstr "Roghnaigh rann le do thoil"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on HP JetDirect"
-msgstr ""
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
+#, fuzzy
+msgid "Username"
+msgstr "Ainm úsáideora"
-#: ../../any.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Linux"
-msgstr "Linux"
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Fearannas NIS"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Have a nice day!"
-msgstr ""
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
+#, fuzzy
+msgid "Search servers"
+msgstr "freastalaí DNS"
-#: ../../help.pm:1
+#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
+#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
#, c-format
-msgid "/dev/fd0"
-msgstr "/dev/fd0"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Upgrade %s"
-msgstr "Uasgrádaigh"
+msgid "%s formatting of %s failed"
+msgstr "Formáidiú %s de %s teipithe"
-#: ../../printer/printerdrake.pm:1
+#: ../../fs.pm_.c:610
#, c-format
-msgid "Select Printer Connection"
-msgstr ""
+msgid "I don't know how to format %s in type %s"
+msgstr "níl a fhios agam conas %s a formáidiú go %s"
-#: ../../standalone/drakxtv:1
+#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
#, c-format
-msgid "Scanning for TV channels in progress ..."
+msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
#, c-format
-msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+msgid "error unmounting %s: %s"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range Start:"
-msgstr ""
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "simplí"
-#: ../../services.pm:1
-#, 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."
+#: ../../fsedit.pm_.c:25
+msgid "with /usr"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the height of the progress bar"
-msgstr ""
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "Freastalaí"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../fsedit.pm_.c:240
+#, fuzzy, 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"
-"- Save via %s on host: %s\n"
+"Do you agree to loose all the partitions?\n"
msgstr ""
+"Ni féidir liom an tábla rainn a léamh, tá máchaillí ann :(\n"
+"Leanfaidh mé orm ag cealú droch rainn"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "Argentina"
-msgstr ""
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Domain Name Server"
-msgstr "Ainm Fearannas"
-
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Security Level:"
-msgstr "Roghnaigh liebhéal slándáil"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Mount points must begin with a leading /"
+#: ../../fsedit.pm_.c:501
+msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Choose your CD/DVD device"
-msgstr "Cén leagan amach atá ar d'eocharchlársa"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "CUPS server"
-msgstr "freastalaí DNS"
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Postfix Mail Server"
-msgstr "Freastalaí Printéir"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without saving"
-msgstr "Éalaigh gan sabháil"
-
-# YE
-#: ../../lang.pm:1
-#, c-format
-msgid "Yemen"
-msgstr "Éimin"
-
-#: ../advertising/11-mnf.pl:1
-#, c-format
-msgid "This product is available on the MandrakeStore Web site."
+#: ../../fsedit.pm_.c:502
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "=> There are many things to choose from (%s).\n"
+#: ../../fsedit.pm_.c:521
+msgid "Mount points must begin with a leading /"
msgstr ""
-#: ../../standalone/drakclock:1
+#: ../../fsedit.pm_.c:522
#, c-format
-msgid "GMT - DrakClock"
+msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: ../../../move/move.pm:1
+#: ../../fsedit.pm_.c:526
#, 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 "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Hard drive detection"
+#: ../../fsedit.pm_.c:528
+msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../fsedit.pm_.c:530
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../fsedit.pm_.c:532
#, 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 "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../diskdrake/dav.pm:1
-#, fuzzy, c-format
-msgid "Please enter the WebDAV server URL"
-msgstr "Teastáil an luchóg, le do thoil"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tajikistan"
+#: ../../fsedit.pm_.c:599
+msgid "Not enough free space for auto-allocating"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Accept"
-msgstr "Aontaigh"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Description"
-msgstr "Cuntas"
-
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Please enter summary text."
+#: ../../fsedit.pm_.c:601
+msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm:1
+#: ../../fsedit.pm_.c:694
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Earráid ag oscailt %s do scríobh: %s"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Cineál luchóg: %s\n"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
+#: ../../harddrake/data.pm_.c:71
+msgid "cpu /* "
msgstr ""
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Choose a monitor"
-msgstr "Roghnaigh scáileán"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Empty label not allowed"
-msgstr "Níl ceadaigh an lipéad folamh ann"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (UK)"
+#: ../../harddrake/sound.pm_.c:170
+msgid "No alternative driver"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "I can't add any more partition"
-msgstr "Ní féidir liom rann eile a cur isteach"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size in MB: "
-msgstr "Méid i MB: "
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Remote printer"
-msgstr "Scríos Printéir"
-
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Please choose a language to use."
-msgstr "Roghnaight do theangam le do thoil."
-
-#: ../../network/network.pm:1
+#: ../../harddrake/sound.pm_.c:171
#, 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."
-msgstr ""
-
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "I can set up your computer to automatically log on one user."
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-"Is féidir linn do ríomhaire a shocrú le X a thosnú i ndhiadh bootáil.\n"
-"An dteastaíonn uait go dtosnófar X nuair a aththosnítear an ríomhaire?"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Floppy format"
-msgstr "Formáidigh"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Generic Printers"
-msgstr "Printéir"
+#: ../../harddrake/sound.pm_.c:173
+#, fuzzy
+msgid "Sound configuration"
+msgstr "cumraíocht"
-#: ../../printer/printerdrake.pm:1
+#: ../../harddrake/sound.pm_.c:174
#, 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"
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../harddrake/sound.pm_.c:176
#, c-format
-msgid "The scanners on this machine are available to other computers"
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "First sector of the root partition"
-msgstr "Níl aon ranna agat!"
+#: ../../harddrake/sound.pm_.c:178
+#, fuzzy
+msgid "Driver:"
+msgstr "Tiománaí"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Alternative drivers"
+#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
+#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
+#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
+#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
+#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
+#, fuzzy
+msgid "Help"
+msgstr "/C_úidiú"
+
+#: ../../harddrake/sound.pm_.c:185
+msgid "Switching between ALSA and OSS help"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../harddrake/sound.pm_.c:186
msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"Please check all options that you need.\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 ""
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd"
-msgstr "Initrd"
-
-#: ../../lang.pm:1
+#: ../../harddrake/sound.pm_.c:202
#, c-format
-msgid "Cape Verde"
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr ""
+#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Trialaigh an cumraíocht"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Loading printer configuration... Please wait"
-msgstr "Cumraigh Idirlíon"
+#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
+#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
+#: ../../standalone/service_harddrake_.c:64
+msgid "Please wait"
+msgstr "Fan tamall"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
+#: ../../harddrake/sound.pm_.c:210
+msgid "No known driver"
msgstr ""
-#: ../../lang.pm:1
+#: ../../harddrake/sound.pm_.c:211
#, c-format
-msgid "Guam"
+msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Please choose the port that your printer is connected to or enter a device "
-"name/file name in the input line"
+#: ../../harddrake/sound.pm_.c:214
+msgid "Unkown driver"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Options/Test"
-msgstr "/Roghnachais/Teastáil"
-
-#: ../../security/level.pm:1
+#: ../../harddrake/sound.pm_.c:215
#, 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."
+"The \"%s\" driver for your sound card is unlisted\n"
+"\n"
+"Please send the output of the \"lspcidrake -v\" command to\n"
+"<install at mandrakesoft dot com>\n"
+"with subject: unlisted sound driver \"%s\""
msgstr ""
-#: ../../fs.pm:1
-#, fuzzy, c-format
-msgid "Mounting partition %s"
-msgstr "Ag formáidiú rann %s"
-
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "User name"
-msgstr "Ainm úsáideora"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Userdrake"
-msgstr "Clódóir"
-
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Cén rann a bhfuil tú ag iarraidh úsáid mar rann fréamhach"
+#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Scríos Printéir"
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "due to missing %s"
-msgstr "kdesu ar iarraidh"
+#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Gnáth"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Test pages"
-msgstr "Bain trial as arís"
+#: ../../harddrake/v4l.pm_.c:97
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Logical volume name "
-msgstr "Chomaid Áitiúl"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../harddrake/v4l.pm_.c:224
msgid ""
-"List of data to restore:\n"
-"\n"
+"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 ""
-#: ../../fs.pm:1
-#, fuzzy, c-format
-msgid "Checking %s"
-msgstr "Réiteachaí: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "TCP/Socket Printer Options"
-msgstr "Roghanna Printéir NetWare"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card mem (DMA)"
+#: ../../harddrake/v4l.pm_.c:227
+#, fuzzy
+msgid "Card model:"
msgstr "Cuimhne Charta (DMA)"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Disconnecting from Internet "
+#: ../../harddrake/v4l.pm_.c:228
+#, fuzzy
+msgid "Tuner type:"
msgstr "Athraigh cineál ranna"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "France"
-msgstr "Fraince"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "browse"
+#: ../../harddrake/v4l.pm_.c:229
+msgid "Number of capture buffers:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking installed software..."
+#: ../../harddrake/v4l.pm_.c:229
+msgid "number of capture buffers for mmap'ed capture"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remote printer name missing!"
-msgstr "Scríos Printéir"
+#: ../../harddrake/v4l.pm_.c:231
+#, fuzzy
+msgid "PLL setting:"
+msgstr "Ag formáidiú"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do you want to enable printing on printers in the local network?\n"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "Radio support:"
msgstr ""
-# TR
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkey"
-msgstr "An Tuirc"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Alcatel speedtouch usb"
+#: ../../harddrake/v4l.pm_.c:232
+msgid "enable radio support"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Number of buttons"
-msgstr "2 cnaipí"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
+#: ../../help.pm_.c:13
+msgid ""
+"GNU/Linux is a multiuser system, and this means that each user can have his\n"
+"own preferences, his own files and so on. You can read the ``User Guide''\n"
+"to learn more this concept. But unlike \"root\", which is the\n"
+"administrator, the users you add here will not be entitled to change\n"
+"anything except their own files and their own configurations. You will have\n"
+"to create at least one regular user for yourself. That account is where you\n"
+"should log in for routine use. Although it is very practical to log in as\n"
+"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, you may only lose some information, but not the\n"
+"entire system.\n"
+"\n"
+"First, you have to enter your real name. This is not mandatory, of course\n"
+"-- as you can actually enter whatever you want. DrakX will then take the\n"
+"first word you have entered in the box and will bring it over to the \"User\n"
+"name\". This is the name this particular user will use to log onto the\n"
+"system. You can change it. You then have to enter a password here. A\n"
+"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
+"one from a security point of view, but that is no reason to neglect it:\n"
+"after all, your files are at risk.\n"
+"\n"
+"If you click on \"Accept user\", you can then add as many as you want. Add\n"
+"a user for each one of the people meant to use that computer. When you are\n"
+"finish adding all the users you want, select \"Done\".\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be proposed to choose a\n"
+"user which can automatically log into the system when the computer boots\n"
+"up. If you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Yes\".\n"
+"If you are not interested in this feature, click \"No\"."
+msgstr ""
+
+#: ../../help.pm_.c:48
+msgid ""
+"Listed above are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, they are good for most common\n"
+"installations. If you make any changes, you must at least define a root\n"
+"partition (\"/\"). Do not choose too small a partition or you will not be\n"
+"able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/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 ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Module"
-msgstr "Luchóg"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:79
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM and will eject the\n"
+"current CD and ask you to insert a different one as required."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Hardware"
+#: ../../help.pm_.c:84
+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"
+"you are not supposed to know them all by heart.\n"
+"\n"
+"If you are performing a standard installation from a CD-ROM, you will first\n"
+"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
+"the CD labels and highlight the boxes corresponding to the CDs you have\n"
+"available for installation. Click \"OK\" when you are ready to continue.\n"
+"\n"
+"Packages are sorted in groups corresponding to a particular use of your\n"
+"machine. The groups themselves are sorted into four sections:\n"
+"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
+"\n"
+" * \"Development\": if your machine is to be used for programming, choose\n"
+"the desired group(s);\n"
+"\n"
+" * \"Server\": if your machine is intended to be a server, you will be able\n"
+"to select which of the most common services you wish to install on your\n"
+"machine;\n"
+"\n"
+" * \"Graphical Environment\": finally, this is where you will choose your\n"
+"preferred graphical environment. At least one must be selected if you want\n"
+"to have a graphical workstation!\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the fewest packages possible to have a working\n"
+"graphical desktop;\n"
+"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server;\n"
+"\n"
+" * \"Truly minimal install\": will install the strict minimum necessary to\n"
+"get a working Linux system, in command line only. This installation is\n"
+"about 65Mb large.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful to repair or\n"
+"update an existing system."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Ctrl and Alt keys simultaneously"
+#: ../../help.pm_.c:135
+msgid ""
+"Finally, depending on whether or not you chose to be able to select\n"
+"individual packages, you will be presented a tree containing all packages\n"
+"classified by groups and subgroups. While browsing the tree, you can select\n"
+"entire groups, subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right. When your selection is finished, click the \"Install\" button which\n"
+"will then launch the installation process. Depending on the speed of your\n"
+"hardware and the number of packages that need to be installed, it may take\n"
+"a while to complete the process. An installation time estimate is displayed\n"
+"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
+"of coffee.\n"
+"\n"
+"!! If a server package has been selected, either intentionally or because\n"
+"it was part of a whole group, you will be asked to confirm that you really\n"
+"want those servers to be installed. Under Mandrake Linux, any installed\n"
+"servers are started by default at boot time. Even if they are safe and have\n"
+"no known issues at the time the distribution was shipped, it may happen\n"
+"that security holes are discovered after this version of 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 \"No\". Clicking \"Yes\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default. !!\n"
+"\n"
+"The \"Automatic dependencies\" option simply disables the warning dialog\n"
+"which appears whenever the installer automatically selects a package. This\n"
+"occurs because it has determined that it needs to satisfy a dependency with\n"
+"another package in order to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows to load the\n"
+"package list chosen during a previous installation. Clicking on this icon\n"
+"will ask you to insert a floppy disk previously created at the end of\n"
+"another installation. See the second tip of the previous step on how to\n"
+"create such a floppy disk."
msgstr ""
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United States"
-msgstr "Stáit Aontaithe Mheiriceá"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "User umask"
-msgstr "Ainm úsáideora"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Default OS?"
-msgstr "OS Loiceadh?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swiss (German layout)"
-msgstr "Eilvéis (Stíl Ghearmánais)"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Configure all heads independently"
-msgstr "Cumraigh gach cinn ar leith"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:171
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\"."
+"You are now able to set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"OK\".\n"
+"The autodetection of network devices and modem will be launched. If this\n"
+"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
+"also choose not to configure the network, or do it later; in that case,\n"
+"simply click the \"Cancel\" button.\n"
+"\n"
+"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
+"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"\n"
+"Here, we will not detail each configuration. Simply make sure that you have\n"
+"all the parameters from your Internet Service Provider or system\n"
+"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.\n"
+"\n"
+"If you wish to configure the network later after installation, or if you\n"
+"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "NTP Server"
-msgstr "Freastalaí NTP"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Sulogin(8) in single user level"
+#: ../../help.pm_.c:193
+msgid ""
+"You may now choose which services you wish to start at boot time.\n"
+"\n"
+"Here are listed all the services available with the current installation.\n"
+"Review them carefully and uncheck those which are not always needed at boot\n"
+"time.\n"
+"\n"
+"You can get a short explanatory text about a service by selecting a\n"
+"specific service. However, if you are not sure whether a service is useful\n"
+"or not, it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services which you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Load/Save on floppy"
-msgstr "Sabháil ar dhiosca flapach"
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
+#: ../../help.pm_.c:210
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
+"local time according to the time zone you selected. It is however possible\n"
+"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
+"hardware clock is the same as the system clock. This is useful when the\n"
+"machine is hosting another operating system like Windows.\n"
+"\n"
+"The \"Automatic time synchronization\" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. In the\n"
+"list that is presented, choose a server located near you. Of course you\n"
+"must have a working Internet connection for this feature to work. It will\n"
+"actually install on your machine a time server which can be optionally used\n"
+"by other machines on your local network."
msgstr ""
-#: ../../pkgs.pm:1
-#, c-format
-msgid "nice"
-msgstr "deas"
-
-#: ../../Xconfig/test.pm:1
-#, fuzzy, c-format
-msgid "Leaving in %d seconds"
-msgstr "%d siocand"
-
-#: ../../network/modem.pm:1
-#, fuzzy, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Cén cinéal luchóg atá agat?"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Property"
-msgstr "Poirt"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript"
+#: ../../help.pm_.c:224
+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.\n"
+"\n"
+"You will be presented the list of available resolutions and color depth\n"
+"available for your hardware. Choose the one that best suit your needs (you\n"
+"will be able to change that after installation though). When you are\n"
+"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
+"then appear and ask you if you can see it.\n"
+"\n"
+"If you are doing an \"Expert\" installation, you will enter the X\n"
+"configuration wizard. See the corresponding section of the manual for more\n"
+"information about this wizard.\n"
+"\n"
+"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
+"will proceed to the next step. If you cannot see the message, it simply\n"
+"means that the configuration was wrong and the test will automatically end\n"
+"after 10 seconds, restoring the screen. Refer then to the video\n"
+"configuration section of the user guide for more information on how to\n"
+"configure your display."
+msgstr ""
+
+#: ../../help.pm_.c:246
+msgid ""
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
+msgstr ""
+
+#: ../../help.pm_.c:253
+msgid ""
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
+"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
+"should come back to this step for help in at least two situations:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
+"MBR) of your main disk (unless you are using another boot manager), to\n"
+"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
+"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector, and then you will not be able\n"
+"to start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
+"contains a fair number of system tools for restoring a system, which has\n"
+"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+"password, or any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
+"floppy disk you will insert must be empty or contain data which you do not\n"
+"need. You will not have to format it since DrakX will rewrite the whole\n"
+"disk."
+msgstr ""
+
+#: ../../help.pm_.c:277
+msgid ""
+"You now need to choose where you want to install the Mandrake Linux\n"
+"operating system on your hard drive. If your hard drive is empty or if an\n"
+"existing operating system is using all the available space, you will need\n"
+"to partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Mandrake Linux system.\n"
+"\n"
+"Because the partitioning process' effects are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced\n"
+"user. Fortunately, there is a wizard which simplifies this process. Before\n"
+"beginning, please consult the manual and take your time.\n"
+"\n"
+"If you are running the installation in Expert mode, you will enter\n"
+"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
+"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
+"Guide''. From the installation interface, you can use the wizards as\n"
+"described here by clicking the dialog's \"Wizard\" button.\n"
+"\n"
+"If partitions have already been defined, either from a previous\n"
+"installation or from another partitioning tool, simply select those to\n"
+"install your Linux system.\n"
+"\n"
+"If partitions are not defined, you will need to create them using the\n"
+"wizard. Depending on your hard drive configuration, several options are\n"
+"available.\n"
+"\n"
+" * \"Use free space\": this option will simply lead to an automatic\n"
+"partitioning of your blank drive(s). You will not be prompted further;\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated to\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and you should generally keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
+"be performed without the loss of any data, provided you previously\n"
+"defragment the Windows partition. Backing up your data won't hurt either..\n"
+"This solution is recommended if you want to use both Mandrake Linux and\n"
+"Microsoft 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"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
+"\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful with this solution because you will\n"
+"not be able to revert your choice after you confirm;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost;\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Expert mode\": choose this option if you want to manually partition\n"
+"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing. To know how to use the DiskDrake utility used\n"
+"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
+"Guide''''"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "LAN Configuration"
-msgstr "cumraíocht"
+#: ../../help.pm_.c:347
+msgid ""
+"There you are. Installation is now completed and your GNU/Linux system is\n"
+"ready to use. Just click \"OK\" to reboot the system. You can start\n"
+"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
+"soon as the computer has booted up again.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"which will automatically perform a whole installation without the help of\n"
+"an operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation as the\n"
+"partitioning step (and only this one) remains interactive;\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a great number of similar\n"
+"machines. See the Auto install section on our web site;\n"
+"\n"
+" * \"Save packages selection\"(*): saves the package selection as done\n"
+"previously. Then, when doing another installation, insert the floppy inside\n"
+"the drive and run the installation going to the help screen by pressing on\n"
+"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Ghana"
-msgstr "Gána"
+#: ../../help.pm_.c:378
+msgid ""
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a filesystem on it).\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 \"OK\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Path or Module required"
+#: ../../help.pm_.c:404
+msgid ""
+"Your new Mandrake Linux operating system is currently being installed.\n"
+"Depending on the number of packages you will be installing and the speed of\n"
+"your computer, this operation could take from a few minutes to a\n"
+"significant amount of time.\n"
+"\n"
+"Please be patient."
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Advanced Options"
-msgstr "Éirigh as cumraíocht"
+#: ../../help.pm_.c:412
+msgid ""
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Some bugs may have\n"
+"been fixed, and security issues solved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
+"\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. Then a package-selection tree\n"
+"appears: review the selection, and press \"Install\" to retrieve and\n"
+"install the selected package(s), or \"Cancel\" to abort."
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "View Configuration"
-msgstr "cumraíocht"
+#: ../../help.pm_.c:425
+msgid ""
+"Before continuing, you should read carefully the terms of the license. It\n"
+"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
+"all the terms included in it, click on the \"Refuse\" button which will\n"
+"immediately terminate the installation. To continue with the installation,\n"
+"click on the \"Accept\" button."
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Coma bug"
+#: ../../help.pm_.c:432
+msgid ""
+"At this point, it is time to choose the security level desired for the\n"
+"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
+"the data stored in it is crucial, the higher the security level should be.\n"
+"However, a higher security level is generally obtained at the expense of\n"
+"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
+"get more information about the meaning of these levels.\n"
+"\n"
+"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:442
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"
+"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
@@ -4428,1748 +3012,965 @@ msgid ""
"\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"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"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"
+" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
+"swap partitions on your hard drive's free space;\n"
"\n"
-"\"%s\": gives access to additional features:\n"
+"\"More\": 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"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
+" * \"Restore partition table\": allows to restore a previously saved\n"
+"partition table from a 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"
+" * \"Rescue partition table\": if your partition table is damaged, you can\n"
+"try to recover it using this option. Please be careful and remember that it\n"
+"can fail;\n"
"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
+" * \"Reload partition table\": discards all changes and loads your initial\n"
+"partition table;\n"
"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
+"CD-ROMs.\n"
"\n"
-" * \"%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"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
+"partitioning;\n"
"\n"
-" * \"%s\": use this option to cancel your changes.\n"
+" * \"Undo\": 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"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+" * \"Done\": 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"
+"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
"\n"
-" * Ctrl-d to delete a partition\n"
+" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point\n"
+" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different file system types available, please\n"
+"To get information about the different filesystem types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:513
msgid ""
-"Graphic Card\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-" 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"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\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 ""
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error installing packages:"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Lexmark inkjet configuration"
-msgstr "Cumraigh Idirlíon"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Undo"
-msgstr "Leasú"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Save partition table"
-msgstr "Scriobh clár-ranna"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Finnish"
-msgstr "Fionlainnais"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Macedonia"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovenian"
-msgstr ""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Authorize:\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
-"set to \"ALL\",\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"
-"- only local ones if set to \"LOCAL\"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
"\n"
-"- none if set to \"NONE\".\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Libya"
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer on parallel port #%s"
-msgstr "Óstainm Printéir"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
-"- Burn to CD"
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Table"
-msgstr "Table"
-
-#: ../../fs.pm:1
-#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "níl a fhios agam conas %s a formáidiú go %s"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Model"
-msgstr "Luchóg"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "USB printer #%s"
-msgstr "Gan Printéir"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Stop Server"
-msgstr "Freastalaí NIS"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
-msgstr ""
-
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Modem"
-msgstr "Luchóg"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Tuvalu"
-msgstr ""
-
-#: ../../help.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Use auto detection"
-msgstr ""
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
-msgstr ""
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Started on boot"
-msgstr ""
-
-#: ../advertising/12-mdkexpert.pl:1
-#, 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:"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "No password aging for"
-msgstr "Gan pasfhocal"
-
-#: ../../standalone/draksec:1
-#, 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"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Automatically find available printers on remote machines"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "East Timor"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "On Tape Device"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- Save to Tape on device: %s"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Login name"
-msgstr "Ainm Fearannas"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report unowned files"
-msgstr ""
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Del profile..."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Installing Foomatic..."
-msgstr "Ag feistiál pacáiste %s"
-
-#: ../../standalone/XFdrake:1
-#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Éirigh as le do thoil agus Crtl-Alt-BackSpace a úsáid"
-
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "detected"
-msgstr "Scríos Printéir"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr ""
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Package: "
-msgstr "Roghnú Grúpa Pacáistí"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SECURITY WARNING!"
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "StarOffice"
-msgstr "Oifig"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "No, I don't want autologin"
+"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 ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Windows Migration tool"
+#: ../../help.pm_.c:544
+msgid "Please be patient. This operation can take several minutes."
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1
-#, fuzzy, c-format
-msgid "All languages"
-msgstr "Roghnaigh do theanga"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Réiteachaí: %s\n"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "%s not found...\n"
-msgstr "Teip ag cuardach %s"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Testing your connection..."
-msgstr "Cumraigh nasc ghréasán"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Cache size"
-msgstr "méid smután"
-
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:547
msgid ""
-"Passwords are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Start sector: "
-msgstr "Teascán tosasch: "
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Congo (Brazzaville)"
-msgstr ""
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Read"
-msgstr "Athlódaigh"
-
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Seychelles"
+"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
+"installation or if you want to have greater control (\"Expert\") over your\n"
+"installation. You can also choose to do a new installation or upgrade your\n"
+"existing Mandrake Linux system:\n"
+"\n"
+" * \"Install\": completely wipes out the old system. However, depending on\n"
+"what is currently installed on your machine, you may be able to keep some\n"
+"old partitions (Linux or otherwise) unchanged;\n"
+"\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps your\n"
+"hard drives' current partitions as well as user configurations. All other\n"
+"configuration steps remain available, similar to a normal installation;\n"
+"\n"
+" * \"Upgrade Packages Only\": this new installation class allows you to\n"
+"upgrade an existing Mandrake Linux system while keeping all system\n"
+"configurations unchanged. Adding new packages to the current installation\n"
+"is also possible.\n"
+"\n"
+"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
+"or later.\n"
+"\n"
+"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
+"\n"
+" * Recommended: choose this if you have never installed a GNU/Linux\n"
+"operating system. The installation will be very easy and you will only be\n"
+"asked a few questions;\n"
+"\n"
+" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
+"perform a highly customized installation. Some of the decisions you will\n"
+"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
+"so it is not recommended that those without a fair amount of experience\n"
+"select this installation class."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:582
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"
+"Normally, DrakX selects the right keyboard for you (depending on the\n"
+"language you have chosen). However, you might not have a keyboard that\n"
+"corresponds exactly to your language: for example, if you are an English\n"
+"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation. In both cases, you will have to go back to\n"
+"this installation step and select an appropriate keyboard from the list.\n"
"\n"
-"For your printer Printerdrake has found:\n"
+"Click on the \"More\" button to be presented with the complete list of\n"
+"supported keyboards.\n"
"\n"
-"%s"
+"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
+"asked in the next dialog to choose the key binding that will switch the\n"
+"keyboard layout between the latin and non-latin layouts."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Bad password on %s"
-msgstr "Gan pasfhocal"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:598
msgid ""
+"The first step is to choose your preferred language.\n"
"\n"
-"There is one unknown printer directly connected to your system"
+"Please choose your preferred language for installation and system usage.\n"
+"\n"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation. Selecting other languages\n"
+"will install the language-specific files for system documentation and\n"
+"applications. For example, if you host users from Spain on your machine,\n"
+"select English as the main language in the tree view and in the Advanced\n"
+"section, click on the box corresponding to \"Spanish|Spain\".\n"
+"\n"
+"Note that multiple languages may be installed. Once you have selected any\n"
+"additional locales, click the \"OK\" button to continue.\n"
+"\n"
+"To switch from one language to the other, you can launch the\n"
+"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
+"language, or as a simple user to only change that user's default language."
msgstr ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Right Control key"
-msgstr "Scríos Printéir"
-
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
+#: ../../help.pm_.c:617
msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr "Cur isteach diosca sa dioscthiomant %s"
-
-# ZM
-#: ../../lang.pm:1
-#, c-format
-msgid "Zambia"
-msgstr "An tSaimbia"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Security Administrator (login or email)"
-msgstr ""
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Sorry, we support only 2.4 kernels."
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Romanian (qwerty)"
-msgstr "Rúisis (Yawerty)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Under Devel ... please wait."
+"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
+"it assumes you have a two-button mouse and will set it up for third-button\n"
+"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
+"USB mouse.\n"
+"\n"
+"If you wish to specify a different type of mouse, select the appropriate\n"
+"type from the provided list.\n"
+"\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct. If the mouse is not working well, press the space bar or [Return]\n"
+"to \"Cancel\" and choose again.\n"
+"\n"
+"Sometimes, wheel mouses are not automatically detected. You will need to\n"
+"manually select it in the list. Be sure to select the one corresponding to\n"
+"the correct port it is attached to. After you have pressed the \"OK\"\n"
+"button, a mouse image will be displayed. You then need to move the wheel of\n"
+"your mouse to activate it correctly. Then test that all buttons and\n"
+"movements are correct."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Egypt"
-msgstr "An Éigipt"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Czech Republic"
-msgstr "An Phoblacht nc tSeic"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Sound card"
-msgstr "Carta Fuaim"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Import Fonts"
-msgstr "Formáidigh ranna"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, fuzzy, c-format
+#: ../../help.pm_.c:638
msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
-msgstr ""
-"Tá rann mór FAT amháin agat.\n"
-"Molaim dhuit an rann sin a athmhéadú ar dtús\n"
-"(roghnaigh an rann agus brú ar \"Athméidigh\")"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Suppress Temporary Files"
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../help.pm_.c:642
msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
+"This is the most crucial decision in regards with the security of your\n"
+"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
+"system administrator and is the only one authorized to make updates, add\n"
+"users, change the overall system configuration, and so on. In short,\n"
+"\"root\" can do everything! That is why you must choose a password that is\n"
+"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
+"see, you can choose not to enter a password, but we strongly advise you\n"
+"against this if only for one reason: do not think that because you booted\n"
+"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
+"\"root\" can overcome all limitations and unintentionally erase all data on\n"
+"partitions by carelessly accessing the partitions themselves, it is\n"
+"important for it to be difficult to become \"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it too\n"
+"easy to compromise a system.\n"
"\n"
+"However, please do not make the password too long or complicated because\n"
+"you must be able to remember it without too much effort.\n"
+"\n"
+"The password will not be displayed on screen as you type it in. Hence, you\n"
+"will have to type the password twice to reduce the chance of a typing\n"
+"error. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
+"\n"
+"In Expert mode, you will be asked if you will be connecting to an\n"
+"authentication server, like NIS or LDAP.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you have no\n"
+"clue, ask your network administrator.\n"
+"\n"
+"If your computer is not connected to any administrated network, you will\n"
+"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Change partition type"
-msgstr "Athraigh cineál ranna"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:678
msgid ""
-"Resolution\n"
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
+"accordingly, depending on what it finds there:\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 ""
-
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Network Options"
-msgstr "Roghachais modúil:"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable msec hourly security check"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. Hence, 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 in doubt, DrakX will display a dialog with various options.\n"
+"\n"
+" * \"Bootloader to use\": you have three choices:\n"
+"\n"
+" * \"GRUB\": if you prefer grub (text menu);\n"
+"\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface;\n"
+"\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
+"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
+"\n"
+" * \"Delay before booting the default image\": when rebooting the computer,\n"
+"this is the delay granted to the user to choose -- in the bootloader menu,\n"
+"another boot entry than the default one.\n"
+"\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
+"Linux system! Also, be sure you know what you do before changing any of the\n"
+"options. !!\n"
+"\n"
+"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
+"options, which are reserved for the expert user."
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../help.pm_.c:718
msgid ""
-"Display theme\n"
-"under console"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options which will be available at boot time will be displayed.\n"
+"\n"
+"If there is another operating system installed on your machine, it will\n"
+"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
+"the existing options. Select an entry and click \"Modify\" to modify or\n"
+"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
+"installation step.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone. In which case, you can delete the corresponding entries. But then,\n"
+"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-#: ../../printer/cups.pm:1
-#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(modíl %s)"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "MM Series"
-msgstr "MM Series"
-
-#: ../../security/level.pm:1
-#, c-format
+#: ../../help.pm_.c:732
msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "average"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "New printer name"
-msgstr "Gan Printéir"
-
-#: ../../fs.pm:1
-#, 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 )."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Equatorial Guinea"
+"You must indicate where you wish to place the information required to boot\n"
+"GNU/Linux.\n"
+"\n"
+"Unless you know exactly what you are doing, choose \"First sector of drive\n"
+"(MBR)\"."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup System"
-msgstr "Socraigh córas chomhad"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Build Backup"
-msgstr "Droch comhad chúltaca"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:739
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Currently, no alternative possibility is available"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Romanian (qwertz)"
-msgstr "Rúisis (Yawerty)"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Write Config"
+"Here, we select a printing system for your computer. Other OSes may offer\n"
+"you one, but Mandrake Linux offers two.\n"
+"\n"
+" * \"pdq\" -- which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
+"printer jams, and you do not have networked printers. It will handle only\n"
+"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
+"if this is your first voyage to GNU/Linux. You can change your choices\n"
+"after installation by running PrinterDrake from the Mandrake Control Center\n"
+"and clicking the expert button.\n"
+"\n"
+" * \"CUPS\" -- ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+"graphical front-ends for printing or choosing printer options."
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../help.pm_.c:759
msgid ""
-"The routed daemon allows for automatic IP router table updated via\n"
-"the RIP protocol. While RIP is widely used on small networks, more complex\n"
-"routing protocols are needed for complex networks."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kiribati"
-msgstr ""
-
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
-msgstr "Luchóg Logitech (srathach, séan cinéal C7)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Other (not drakbackup) keys in place already"
+"DrakX now detects any IDE device present in your computer. It will also\n"
+"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 does not always detect a piece of hardware,\n"
+"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
+"if you know that there is a SCSI card installed in your machine. You will\n"
+"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
+"have no SCSI hardware. If you are unsure, you can check the list of\n"
+"hardware detected in your machine by selecting \"See hardware info\" and\n"
+"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
+"button to return to the SCSI interface question.\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for\n"
+"the card-specific options which the hardware needs to initialize. This\n"
+"usually works well.\n"
+"\n"
+"If DrakX is not able to probe for the options which need to be passed, you\n"
+"will need to manually provide options to the driver."
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../help.pm_.c:781
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"
+"You can add additional entries for yaboot, either for other operating\n"
+"systems, alternate kernels, or for an emergency boot image.\n"
"\n"
-"You will be presented with a list of different parameters to change to get\n"
-"an optimal graphical display: Graphic Card\n"
+"For other OSes, the entry consists only of a label and the \"root\"\n"
+"partition.\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"
+"For Linux, there are a few possible options:\n"
+"\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
+"\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension;\n"
"\n"
-" 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"
+" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
"\n"
+" * Append: on Apple hardware, the kernel append option is used quite often\n"
+"to assist in initializing video hardware, or to enable keyboard mouse\n"
+"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
+"Apple mouse. The following are some examples:\n"
"\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"hda=autotune\n"
"\n"
-"Monitor\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\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"
+" * Initrd: this option can be used either to load initial modules, before\n"
+"the boot device is available, or to load a ramdisk image for an emergency\n"
+"boot situation;\n"
"\n"
+" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
+"need to allocate a large ramdisk, this option can be used;\n"
"\n"
+" * Read-write: normally the \"root\" partition is initially brought up in\n"
+"read-only, to allow a filesystem check before the system becomes ``live''.\n"
+"Here, you can override this option;\n"
"\n"
-"Resolution\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"
-" 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"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
+"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
+"selections."
+msgstr ""
+
+#: ../../help.pm_.c:828
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
+"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
+"these other operating systems are correctly detected and installed. If this\n"
+"is not the case, you can add an entry by hand in this screen. Be careful to\n"
+"choose the correct parameters.\n"
"\n"
+"Yaboot's main options are:\n"
"\n"
+" * Init Message: a simple text message displayed before the boot prompt;\n"
"\n"
-"Test\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"
-" 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"
+" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+"yaboot. The first delay is measured in seconds and at this point, you can\n"
+"choose between CD, OF boot, MacOS or Linux;\n"
"\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt;\n"
"\n"
-"Options\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\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 ""
-
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Browse"
-msgstr ""
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CDROM"
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
msgstr ""
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belgian"
-msgstr "Belgáiris"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Do you have an ISA sound card?"
-msgstr "An bhfuil ceann eile agat?"
-
-#: ../../network/ethernet.pm:1
-#, c-format
+#: ../../help.pm_.c:860
msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
+"Here are presented various parameters concerning your machine. Depending on\n"
+"your installed hardware, you may (or may not), see the following entries:\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary;\n"
+"\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary;\n"
+"\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
+"\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the correpsonding 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 at installation time;\n"
+"\n"
+" * \"Sound card\": if a sound card is detected on your system, it will be\n"
+"displayed here.\n"
+"\n"
+" * \"TV card\": if a TV card is detected on your system, it will be\n"
+"displayed here.\n"
+"\n"
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated to it."
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, fuzzy, c-format
-msgid "Windows"
-msgstr "Fearannas NIS"
-
-#: ../../common.pm:1
-#, fuzzy, c-format
-msgid "Can't make screenshots before partitioning"
-msgstr "Ní féidir liom rann eile a cur isteach"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Host Name"
-msgstr "ÓstAinm"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/Save _As"
-msgstr "/Comhad/Sábháil _Mar"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../help.pm_.c:891
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
-#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
+"Choose the hard drive you want to erase in order to install your new\n"
+"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
+"and will not be recoverable!"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Delay before booting default image"
+#: ../../help.pm_.c:896
+msgid ""
+"Click on \"OK\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"Cancel\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-#: ../../any.pm:1
+#: ../../install2.pm_.c:111
#, c-format
-msgid "Restrict command line options"
-msgstr "Teorannaigh roghanna líne ordú"
-
-#: ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "East Europe"
-msgstr "Eorap"
-
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use free space"
-msgstr "Úsáid spás saor"
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use dhcp"
-msgstr "úsáid dhcp"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mail alert"
+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 ""
-#: ../../network/tools.pm:1
+#: ../../install2.pm_.c:167
#, c-format
-msgid "Internet configuration"
-msgstr "Cumraigh Idirlíon"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Uzbekistan"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "Pointe taca dublach %s"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/Autodetect _printers"
-msgstr "Scríos Printéir"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
-#, c-format
-msgid "Finish"
-msgstr "Criochnaigh"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Show automatically selected packages"
+msgid "You must also format %s"
msgstr ""
-#: ../../lang.pm:1
+#: ../../install_any.pm_.c:423
#, c-format
-msgid "Togo"
+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 could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: ../../install_any.pm_.c:441
#, c-format
-msgid "CPU flags reported by the kernel"
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
+#: ../../install_any.pm_.c:471
+msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Please try again"
-msgstr "Aththrialaigh"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../install_any.pm_.c:879
#, fuzzy, c-format
-msgid "The model is correct"
-msgstr "An bhfuil seo ceart?"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Theip ar uathathmhéadú FAT: %s"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Individual package selection"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition is not resizeable"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Location"
-msgstr "Áit"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable-hrc)"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Guatemala"
-msgstr "Guatamala"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Journalised FS"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Ethernet cards promiscuity check"
-msgstr ""
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This machine"
+#: ../../install_any.pm_.c:883
+msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Litir Dioscthiománt DOS: %s (buile faoi thuraim)\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahrain"
+#: ../../install_any.pm_.c:895
+msgid ""
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
#, c-format
-msgid "Select the files or directories and click on 'OK'"
-msgstr ""
-
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "omit scsi modules"
-msgstr "Luchóg ar bith"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
-msgstr ""
+msgid "Error reading file %s"
+msgstr "Earráid ag léamh comhad %s"
-#: ../../network/netconnect.pm:1
-#, c-format
+#: ../../install_any.pm_.c:1040
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 ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run the daily security checks"
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
+"Tharla earráid - ní fhuaireadh aon gaireas ar a bhféadfaí córais-comhadlanna "
+"nua a cruthu. Ba chóir duit do chuid crua-earraí a seiceáil le cúis an fadhb "
+"a aimsiú"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Leagan amach eocharchlára: %s\n"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../install_interactive.pm_.c:21
#, 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."
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Maltese (US)"
+#: ../../install_interactive.pm_.c:56
+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 ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
+#: ../../install_interactive.pm_.c:61
+msgid "You must have a swap partition"
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:62
msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
-msgstr ""
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Launch the wizard"
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
+"Níl aon ranna malairte agat\n"
+"\n"
+"x1Lean ar aghaidh ar aon nós?"
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Tvcard"
-msgstr "Carta Telefís"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Toggle between normal/expert mode"
+#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
+msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Size"
-msgstr "Méid"
-
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "GRUB"
-msgstr "GB"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Greenland"
-msgstr "An Ghraonlainn"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Thursday"
-msgstr "Deardaoin"
+#: ../../install_interactive.pm_.c:90
+msgid "Use free space"
+msgstr "Úsáid spás saor"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
+#: ../../install_interactive.pm_.c:92
+msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../standalone/drakgw:1
-#, 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?"
+#: ../../install_interactive.pm_.c:100
+msgid "Use existing partitions"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Delete All NBIs"
-msgstr "Roghnaigh Comhad"
+#: ../../install_interactive.pm_.c:102
+#, fuzzy
+msgid "There is no existing partition to use"
+msgstr "Ag iarraidh an clár-ranna a tarrtháil"
-#: ../../help.pm:1
-#, 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."
+#: ../../install_interactive.pm_.c:109
+msgid "Use the Windows partition for loopback"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"if set, send the mail report to this email address else send it to root."
-msgstr ""
+#: ../../install_interactive.pm_.c:112
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Cén rann a bhfuil tú ag iarraidh úsáid mar rann fréamhach"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Which configuration of XFree do you want to have?"
-msgstr ""
+#: ../../install_interactive.pm_.c:114
+msgid "Choose the sizes"
+msgstr "Roghnaigh an méid nua"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "More"
-msgstr "Mór"
+#: ../../install_interactive.pm_.c:115
+msgid "Root partition size in MB: "
+msgstr "Méid i MB do Rhann Fréamhach:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -"
-"scanbus' would also show you the device number."
-msgstr ""
+#: ../../install_interactive.pm_.c:116
+msgid "Swap partition size in MB: "
+msgstr "Méid i MB do rhann malairte:"
-#: ../../security/level.pm:1
-#, 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."
+#: ../../install_interactive.pm_.c:126
+msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Server Name"
-msgstr "Freastalaí"
+#: ../../install_interactive.pm_.c:129
+msgid "Which partition do you want to resize?"
+msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Password"
-msgstr "Pasfhocal"
+#: ../../install_interactive.pm_.c:131
+#, fuzzy
+msgid "Resizing Windows partition"
+msgstr "Ag ríomhadh teorainn na córais-comhadlanna FAT"
-#: ../../standalone/drakhelp:1
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-#: ../../any.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:137
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?"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:138
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"
+"DrakX will now resize your Windows partition. Be careful:\n"
+"this operation is dangerous. If you have not already done\n"
+"so, you should first exit the installation, run scandisk\n"
+"under Windows (and optionally run defrag), then restart the\n"
"installation. You should also backup your data.\n"
"When sure, press Ok."
msgstr ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Tajik keyboard"
-msgstr "Meárchlár US"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Font List"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, 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."
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, 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"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../install_interactive.pm_.c:149
#, c-format
-msgid "Select file"
-msgstr "Roghnaigh Comhad"
+msgid "partition %s"
+msgstr "rann %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid ""
-"Choose the network or host on which the local printers should be made "
-"available:"
-msgstr ""
+msgid "FAT resizing failed: %s"
+msgstr "Theip ar uathathmhéadú FAT: %s"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_interactive.pm_.c:171
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"
+"There is no FAT partition to resize or to use as loopback (or not enough "
+"space left)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Japan"
-msgstr "An tSeapáin"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Print option list"
-msgstr "Roghanna Printéir"
-
-#: ../../standalone/localedrake:1
-#, c-format
-msgid "The change is done, but to be effective you must logout"
-msgstr ""
-
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Country / Region"
-msgstr "Tír"
+#: ../../install_interactive.pm_.c:177
+msgid "Erase entire disk"
+msgstr "Glan diosca ina iomlán"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Search servers"
-msgstr "freastalaí DNS"
+#: ../../install_interactive.pm_.c:177
+msgid "Remove Windows(TM)"
+msgstr "Dealaigh Windows(TM)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NCP queue name missing!"
+#: ../../install_interactive.pm_.c:180
+msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: ../../install_interactive.pm_.c:183
#, c-format
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
+msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Cd-Rom labeled \"%s\""
+#: ../../install_interactive.pm_.c:191
+msgid "Custom disk partitioning"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CDRW media"
-msgstr ""
+#: ../../install_interactive.pm_.c:195
+msgid "Use fdisk"
+msgstr "Úsáid fdisk"
-#: ../../services.pm:1
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
-msgstr ""
-
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Turn your computer into a reliable server"
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check empty password in /etc/shadow"
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid " (driver %s)"
-msgstr " (tiomáint %s)"
+#: ../../install_interactive.pm_.c:227
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Níl aon ranna agat!"
-#: ../../services.pm:1
-#, c-format
-msgid "Start when requested"
-msgstr ""
+#: ../../install_interactive.pm_.c:243
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "Ní féidir liom rann eile a cur isteach"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
+#: ../../install_interactive.pm_.c:246
+msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "I don't know"
-msgstr "Níl fhíos agam"
-
-#: ../../printer/main.pm:1
+#: ../../install_interactive.pm_.c:250
#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
+msgid "Partitioning failed: %s"
+msgstr "Theip ar rannú: %s"
-#: ../../standalone/drakautoinst:1
-#, 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?"
-msgstr ""
+#: ../../install_interactive.pm_.c:260
+msgid "Bringing up the network"
+msgstr "Ag tosnú suas an ghréasán"
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Telugu"
-msgstr "Belgáiris"
+#: ../../install_interactive.pm_.c:265
+msgid "Bringing down the network"
+msgstr "Ag dúnadh síos an ghreasán"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../install_steps.pm_.c:76
msgid ""
-"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Post Uninstall"
-msgstr "Eirigh as Feistiú"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connecting to Internet "
-msgstr "Athraigh cineál ranna"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid " ("
-msgstr ""
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Cpuid level"
-msgstr "Roghnaigh liebhéal slándáil"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Novell server \"%s\", printer \"%s\""
-msgstr "Printéir Gréasán (lpd)"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Mongolian (cyrillic)"
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
+"Ta earraid ann, níl a fhios agam conas é a cheartú.\n"
+"Lean ort, ar do phriacal féin."
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Add a module"
-msgstr "Suimigh Modúil"
-
-#: ../../standalone/drakconnect:1
+#: ../../install_steps.pm_.c:211
#, c-format
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Local measure"
-msgstr "Chomaid Áitiúl"
+msgid "Duplicate mount point %s"
+msgstr "Pointe taca dublach %s"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Warning : IP address %s is usually reserved !"
+#: ../../install_steps.pm_.c:380
+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 ""
-#: ../../mouse.pm:1
+#: ../../install_steps.pm_.c:450
#, c-format
-msgid "busmouse"
-msgstr "busmouse"
+msgid "Welcome to %s"
+msgstr "Fáilte go %s"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Account Login (user name)"
-msgstr ""
+#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
+msgid "No floppy drive available"
+msgstr "Níl dioscthiománt flapach ar fáil"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_auto_install.pm_.c:76
+#: ../../install_steps_stdio.pm_.c:22
#, c-format
-msgid "Fdiv bug"
-msgstr ""
+msgid "Entering step `%s'\n"
+msgstr "Ag tosnú ar céim `%s'\n"
-#: ../../network/drakfirewall.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:146
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept broadcasted icmp echo"
+"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 ""
-# UY
-#: ../../lang.pm:1
-#, c-format
-msgid "Uruguay"
-msgstr "Uragua"
+#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
+msgid "Install Class"
+msgstr "Rann Feistiú"
-#: ../../lang.pm:1
-#, c-format
-msgid "Benin"
+#: ../../install_steps_gtk.pm_.c:160
+msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Path selection"
+#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
+msgid "Package Group Selection"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Name/IP address of host:"
-msgstr ""
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor: %s\n"
-msgstr "Scáileán: %s\n"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Custom & system settings"
-msgstr "Ag formáidiú"
-
-#: ../../partition_table/raw.pm:1
-#, 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."
+#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
+msgid "Individual package selection"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer host name or IP missing!"
-msgstr "Óstainm Printéir"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please check all users that you want to include in your backup."
-msgstr "Roghnaight do theangam le do thoil."
-
-#: ../../standalone/scannerdrake:1
+#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
#, c-format
-msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
-msgstr ""
+msgid "Total size: %d / %d MB"
+msgstr "Méid iomlán: %d / %d MB"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Key isn't writable"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:334
+msgid "Bad package"
+msgstr "Pacáiste mícheart"
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:335
#, c-format
-msgid "Bangladesh"
-msgstr "An Bhanglaidéis"
+msgid "Name: %s\n"
+msgstr "Ainm: %s\n"
-#: ../../standalone/drakxtv:1
+#: ../../install_steps_gtk.pm_.c:336
#, c-format
-msgid "Japan (cable)"
-msgstr ""
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Initial tests"
-msgstr "Scéal Tosnú"
+msgid "Version: %s\n"
+msgstr "Leagan: %s\n"
-#: ../../network/isdn.pm:1
+#: ../../install_steps_gtk.pm_.c:337
#, c-format
-msgid "Continue"
-msgstr "Lean"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Custom Restore"
-msgstr "Socraithe"
+msgid "Size: %d KB\n"
+msgstr "Méid: %d KB\n"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_gtk.pm_.c:338
#, c-format
-msgid "Saturday"
-msgstr "Sathairn"
+msgid "Importance: %s\n"
+msgstr "Tábhacht: %s\n"
-#: ../../help.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:360
msgid ""
-"\"%s\": if a sound card is detected on your system, it is displayed here.\n"
-"If you notice the sound card displayed is not the one that is actually\n"
-"present on your system, you can click on the button and choose another\n"
-"driver."
-msgstr ""
-
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Set the root umask."
-msgstr "Gan pasfhocal"
-
-#: ../../install_any.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "Error reading file %s"
-msgstr "Earráid ag léamh comhad %s"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Script-based"
-msgstr "Script-bhunaithe"
-
-#: ../../harddrake/v4l.pm:1
-#, fuzzy, c-format
-msgid "PLL setting:"
-msgstr "Ag formáidiú"
-
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
-#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
+"You can't select this package as there is not enough space left to install it"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on "
+#: ../../install_steps_gtk.pm_.c:365
+msgid "The following packages are going to be installed"
msgstr ""
-#: ../../diskdrake/dav.pm:1
-#, c-format
-msgid "The URL must begin with http:// or https://"
+#: ../../install_steps_gtk.pm_.c:366
+msgid "The following packages are going to be removed"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../install_steps_gtk.pm_.c:378
+msgid "You can't select/unselect this package"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (SunOS...)"
-msgstr "CO Eile (SunOS...)"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Install/Upgrade"
-msgstr "Feistiúi/Uadgrádaigh"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "%d packages"
-msgstr "%d pacáistí"
-
-# CR
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, c-format
-msgid "Costa Rica"
-msgstr "Cósta Rice"
-
-#: ../../standalone.pm:1
-#, 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"
+#: ../../install_steps_gtk.pm_.c:390
+msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Domain Authentication Required"
-msgstr "Deimniú"
-
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid "Use libsafe for servers"
-msgstr "Roghnaigh cumraíocht an freastalaí"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Icelandic"
+#: ../../install_steps_gtk.pm_.c:392
+msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
+#: ../../install_steps_gtk.pm_.c:395
msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
+#: ../../install_steps_gtk.pm_.c:398
+msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../loopback.pm:1
-#, c-format
-msgid "Circular mounts %s\n"
+#: ../../install_steps_gtk.pm_.c:403
+msgid "Show automatically selected packages"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Lilo/grub mode"
-msgstr "Mód Lilo/Grub"
+#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#: ../../standalone/drakbackup_.c:4211
+msgid "Install"
+msgstr "Feistiú"
-#: ../../lang.pm:1
-#, c-format
-msgid "Martinique"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:407
+#, fuzzy
+msgid "Load/Save on floppy"
+msgstr "Sabháil ar dhiosca flapach"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "HardDrive / NFS"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:408
+#, fuzzy
+msgid "Updating package selection"
+msgstr "Roghnú Grúpa Pacáistí"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Old user list:\n"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:413
+#, fuzzy
+msgid "Minimal install"
+msgstr "Eirigh as Feistiú"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Search Backups"
+#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
+msgid "Choose the packages you want to install"
msgstr ""
-#: ../../modules/parameters.pm:1
-#, fuzzy, c-format
-msgid "a number"
-msgstr "Uimhir fón"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Swedish"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
+msgid "Installing"
+msgstr "Ag Feistiú"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:450
+msgid "Estimating"
+msgstr "Ag meastú"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid ""
-"You will receive an alert if one of the selected services is no longer "
-"running"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:457
+msgid "Time remaining "
+msgstr "Am fagtha "
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Weekday"
-msgstr "Ceádaoin"
+#: ../../install_steps_gtk.pm_.c:469
+msgid "Please wait, preparing installation..."
+msgstr "Fan tamall, ag ullmhaigh feistiú"
-#: ../../diskdrake/hd_gtk.pm:1
+#: ../../install_steps_gtk.pm_.c:551
#, c-format
-msgid "Filesystem types:"
-msgstr "Cineál córais-comhadlanna"
+msgid "%d packages"
+msgstr "%d pacáistí"
-#: ../../lang.pm:1
+#: ../../install_steps_gtk.pm_.c:556
#, c-format
-msgid "Northern Mariana Islands"
-msgstr ""
+msgid "Installing package %s"
+msgstr "Ag feistiál pacáiste %s"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+#: ../../standalone/drakautoinst_.c:197
+msgid "Accept"
+msgstr "Aontaigh"
-#: ../../mouse.pm:1
-#, c-format
-msgid "none"
-msgstr "Ar bith"
+#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:791
+msgid "Refuse"
+msgstr "Tarrtháil"
-#: ../../standalone/drakconnect:1
+#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
#, c-format
msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
+"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 ""
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Floppy"
-msgstr "Sabháil ar dhiosca flapach"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:804
+#: ../../install_steps_interactive.pm_.c:808
+msgid "Go on anyway?"
+msgstr "Lean ar aghaidh ar aon nós?"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Ghostscript referencing"
+#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
+msgid "There was an error ordering packages:"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Bootloader"
-msgstr "Ríomhchlar Tosnaithe a úsáid "
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
+#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
+msgid "There was an error installing packages:"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Move"
-msgstr "Bog"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Bootloader to use"
-msgstr "Ríomhchlar Tosnaithe a úsáid "
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB server host"
-msgstr "freastalaí óstann SMB"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Name Servers:"
-msgstr "Freastalaí NIS"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Minute"
-msgstr "Noimeaíd"
-
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:10
msgid ""
"\n"
"Warning\n"
@@ -6201,11964 +4002,8906 @@ msgid ""
"copyright laws applicable to software programs.\n"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Expert mode"
-msgstr "Mód Saineolaí"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr ""
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Micronesia"
-msgstr ""
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "4 billion colors (32 bits)"
-msgstr "4 billiún dath (32 giotáin)"
+#: ../../install_steps_interactive.pm_.c:67
+msgid "An error occurred"
+msgstr "Tharla earráid"
-#: ../../steps.pm:1
-#, c-format
-msgid "License"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:85
+#, fuzzy
+msgid "Do you really want to leave the installation?"
+msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to generate the keys."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:112
+msgid "License agreement"
+msgstr "Ceadúnas"
-#: ../../standalone/draksec:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
+"Introduction\n"
"\n"
+"The operating system and the different components available in the Mandrake "
+"Linux distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mandrake Linux distribution.\n"
"\n"
-"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"
+"1. License Agreement\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"
+"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"
-"<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"
+"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"
-"<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"
+"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"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
"\n"
+"3. The GPL License and Related Licenses\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"
+"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"
-"<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 ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr ""
-
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using pppoa) usb"
-msgstr ""
-
-#: ../../install_any.pm:1
-#, c-format
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"Tharla earráid - ní fhuaireadh aon gaireas ar a bhféadfaí córais-comhadlanna "
-"nua a cruthu. Ba chóir duit do chuid crua-earraí a seiceáil le cúis an fadhb "
-"a aimsiú"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Starting the printing system at boot time"
-msgstr ""
-
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Do you want to start the connection at boot?"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Processor ID"
-msgstr ""
-
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Sound trouble shooting"
-msgstr ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwerty layout)"
-msgstr ""
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Add Printer"
-msgstr "Printéir"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
+"4. Intellectual Property Rights\n"
"\n"
-"Drakbackup activities via CD:\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"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, 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"
+"5. Governing Laws \n"
"\n"
-"Do you really want to configure printing on this machine?"
+"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 ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host \"%s\", port %s"
+#: ../../install_steps_interactive.pm_.c:197
+msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This partition can't be used for loopback"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:217
+#: ../../install_steps_interactive.pm_.c:995
+#: ../../standalone/keyboarddrake_.c:25
+msgid "Keyboard"
+msgstr "Eocharclár"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File already exists. Use it?"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:218
+#, fuzzy
+msgid "Please choose your keyboard layout."
+msgstr "Cén leagan amach atá ar d'eocharchlársa"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "received: "
+#: ../../install_steps_interactive.pm_.c:219
+msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right Alt key"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:237
+msgid "Which installation class do you want?"
+msgstr "Cén rann feistiú atá uait?"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the list of alternative drivers for this sound card"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Install/Update"
+msgstr "Feistiúi/Uadgrádaigh"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway"
-msgstr "Inneal Geata:"
+#: ../../install_steps_interactive.pm_.c:241
+msgid "Is this an install or an update?"
+msgstr "Feistigh nó uasgrádaigh ?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Tonga"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:250
+msgid "Recommended"
+msgstr "Molta"
-# TN
-#: ../../lang.pm:1
-#, c-format
-msgid "Tunisia"
-msgstr "An Túinéis"
+#: ../../install_steps_interactive.pm_.c:253
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Expert"
+msgstr "Saineolaí"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Scanner sharing"
-msgstr "Printéir"
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#, fuzzy
+msgid "Upgrade"
+msgstr "Uasgrádaigh"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Profile: "
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:265
+#, fuzzy
+msgid "Upgrade packages only"
+msgstr "Roghnú Grúpa Pacáistí"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"Click on a device in the left tree in order to display its information here."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:282
+#, fuzzy
+msgid "Please choose the type of your mouse."
+msgstr "Cén cinéal luchóg atá agat?"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid autologin."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
+msgid "Mouse Port"
+msgstr "Gaireas luchóige"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "XawTV isn't installed!"
+#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
+msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
+#: ../../install_steps_interactive.pm_.c:297
+msgid "Buttons emulation"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "old static device name used in dev package"
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Button 2 Emulation"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable the logging of IPv4 strange packets"
+#: ../../install_steps_interactive.pm_.c:300
+msgid "Button 3 Emulation"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "This label is already used"
-msgstr "Is ann cheana don ainm úsáideora seo"
+#: ../../install_steps_interactive.pm_.c:321
+msgid "Configuring PCMCIA cards..."
+msgstr "Cumraigh Cártaí PCMCIA"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:321
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek (polytonic)"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:328
+msgid "Configuring IDE"
+msgstr "Ag cumraigh IDE"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
+#: ../../install_steps_interactive.pm_.c:328
+msgid "IDE"
+msgstr "IDE"
+
+#: ../../install_steps_interactive.pm_.c:345
+msgid "No partition available"
+msgstr "níl aon ranna saora ann"
+
+#: ../../install_steps_interactive.pm_.c:348
+msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connection Time: "
-msgstr "Athraigh cineál ranna"
+#: ../../install_steps_interactive.pm_.c:356
+msgid "Choose the mount points"
+msgstr ""
-#: ../../standalone/livedrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:386
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."
+"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/drakperm:1
-#, c-format
-msgid "Use group id for execution"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:395
+#, fuzzy
+msgid "No root partition found to perform an upgrade"
+msgstr "Roghnaigh na ranna atá le formáidiú"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the default user:"
-msgstr "Roghnagih an úsáidoer gneás:"
+#: ../../install_steps_interactive.pm_.c:396
+msgid "Root Partition"
+msgstr "Rann Fréamhach"
-#: ../../lang.pm:1
-#, c-format
-msgid "Gabon"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:397
+msgid "What is the root partition (/) of your system?"
+msgstr "Céard é an rann fréamhach (/) ded' chóras?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these "
-"printers will be automatically detected."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:411
+#, fuzzy
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr "Beidh ort an ríomhaire a aththosnú sula ndéanfar an athrú"
-#: ../../any.pm:1
-#, 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."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:435
+msgid "Choose the partitions you want to format"
+msgstr "Roghnaigh na ranna atá le formáidiú"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Directory (or module) to put the backup on this host."
+#: ../../install_steps_interactive.pm_.c:436
+msgid "Check bad blocks?"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Domain"
-msgstr "Fearannas NIS"
+#: ../../install_steps_interactive.pm_.c:463
+msgid "Formatting partitions"
+msgstr "Ag formáidiú ranna"
-#: ../../any.pm:1
+#: ../../install_steps_interactive.pm_.c:465
#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
+msgid "Creating and formatting file %s"
msgstr ""
-#: ../../help.pm:1
+#: ../../install_steps_interactive.pm_.c:470
#, 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."
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Provider dns 2 (optional)"
-msgstr "Roghanna Printéir"
-
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Boot device"
-msgstr "Gaireas bootáil"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which partition do you want to resize?"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:472
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "Nil dothain spas malartu chun insealbhu, chuir leis an spas"
-#: ../../lang.pm:1
-#, c-format
-msgid "United States Minor Outlying Islands"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:479
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Ag curdach do na pacáistí atá ar fáil"
-#: ../../lang.pm:1
-#, c-format
-msgid "Djibouti"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:480
+msgid "Looking for available packages..."
+msgstr "Ag curdach do na pacáistí atá ar fáil"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "A tool to monitor your logs"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:483
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Roghnaigh pacáistí ..."
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "detected on port %s"
-msgstr "Pointe taca dublach %s"
+#: ../../install_steps_interactive.pm_.c:487
+msgid "Finding packages to upgrade..."
+msgstr "Ag cúrdach pacáistí le húasgrádú"
-#: ../../printer/data.pm:1
+#: ../../install_steps_interactive.pm_.c:505
#, c-format
-msgid "LPD"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Carta Grafach: %s\n"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/Set as _Default"
-msgstr "Gnáth"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept icmp echo"
+#: ../../install_steps_interactive.pm_.c:541
+msgid ""
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Yaboot"
-msgstr "Yaboot"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Load from floppy"
+msgstr "Aisig ó dhiosca flapach"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Logitech CC Series with Wheel emulation"
-msgstr "Luchóg Logitech CC"
+#: ../../install_steps_interactive.pm_.c:543
+msgid "Save on floppy"
+msgstr "Sabháil ar dhiosca flapach"
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Extended partition not supported on this platform"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Loading from floppy"
+msgstr "Aisig ó dhiosca flapach"
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Splash selection"
+#: ../../install_steps_interactive.pm_.c:547
+msgid "Package selection"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Cumraigh ISDN"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "high"
-msgstr "Árd"
+#: ../../install_steps_interactive.pm_.c:552
+#, fuzzy
+msgid "Insert a floppy containing package selection"
+msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing"
+#: ../../install_steps_interactive.pm_.c:634
+msgid "Selected size is larger than available space"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Choose file"
-msgstr "Tóg comhad"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Summary: "
-msgstr "Coimriú"
+#: ../../install_steps_interactive.pm_.c:649
+#, fuzzy
+msgid "Type of install"
+msgstr "Roghnaigh pacáistí a feistiú ..."
-#: ../../network/shorewall.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:650
msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fixes after installation."
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Ag dúnadh síos an ghreasán"
+#: ../../install_steps_interactive.pm_.c:653
+#, fuzzy
+msgid "With X"
+msgstr "Fan tamall"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Daily security check"
+#: ../../install_steps_interactive.pm_.c:655
+msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:656
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:741
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"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 ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer default settings"
-msgstr "Nasc Printéir"
+#: ../../install_steps_interactive.pm_.c:746
+#, c-format
+msgid "Cd-Rom labeled \"%s\""
+msgstr ""
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Mouse Gnáth (PS/2)"
+#: ../../install_steps_interactive.pm_.c:767
+msgid "Preparing installation"
+msgstr "Ag Ullmhaigh feistiú"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm_.c:776
#, 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)"
+"Installing package %s\n"
+"%d%%"
msgstr ""
+"Ag feisteáil pacáiste %s\n"
+"%d%%"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Scríos Printéir"
+#: ../../install_steps_interactive.pm_.c:822
+msgid "Post-install configuration"
+msgstr "Cumraíocht Iar-feistú"
-#: ../../standalone/harddrake2:1
+#: ../../install_steps_interactive.pm_.c:828
#, fuzzy, c-format
-msgid "Select a device !"
-msgstr "Roghnaigh carta grafachach"
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../printer/printerdrake.pm:1
+#: ../../install_steps_interactive.pm_.c:834
#, fuzzy, c-format
-msgid "Remove selected server"
-msgstr "Scrios ciú"
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "Cur isteach diosca folamh sa dioscthiomant %s"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Sagem (using dhcp) usb"
+#: ../../install_steps_interactive.pm_.c:861
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates ?"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "French Southern Territories"
+#: ../../install_steps_interactive.pm_.c:876
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the processor"
+#: ../../install_steps_interactive.pm_.c:881
+msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:890
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "All data on this partition should be backed-up"
-msgstr "caillfear gach sonra ar an rann seo"
+#: ../../install_steps_interactive.pm_.c:918
+msgid "Which is your timezone?"
+msgstr "Cén ceann do chrois ama"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Installing package %s"
-msgstr "Ag feistiál pacáiste %s"
+#: ../../install_steps_interactive.pm_.c:923
+#, fuzzy
+msgid "Hardware clock set to GMT"
+msgstr "An bhfuil an clog cruaearrach ar GMT?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Checking device and configuring HPOJ..."
+#: ../../install_steps_interactive.pm_.c:924
+msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
-msgstr ""
-"Le breis ranna a bheith agat, dealaigh ceann amháin le bheith in ann "
-"rannsínithe a cruthú"
+#: ../../install_steps_interactive.pm_.c:931
+msgid "NTP Server"
+msgstr "Freastalaí NTP"
-#: ../../printer/printerdrake.pm:1
-#, 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."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:972
+msgid "Remote CUPS server"
+msgstr "Scrios Freastalaí CUPS"
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose packages to install"
-msgstr "Roghnaigh pacáistí ..."
+#: ../../install_steps_interactive.pm_.c:966
+msgid "No printer"
+msgstr "Gan Printéir"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:982
+#, fuzzy
+msgid "Do you have an ISA sound card?"
+msgstr "An bhfuil ceann eile agat?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
+#: ../../install_steps_interactive.pm_.c:984
+msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:986
+msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../help.pm:1
-#, 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."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
+msgid "Summary"
+msgstr "Coimriú"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bhutan"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:994
+msgid "Mouse"
+msgstr "Luchóg"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Network interface"
-msgstr "Cláréadan Gréasán"
+#: ../../install_steps_interactive.pm_.c:996
+msgid "Timezone"
+msgstr "Am Críos"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Disconnection from Internet failed."
-msgstr "Athraigh cineál ranna"
+#: ../../install_steps_interactive.pm_.c:997
+#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+msgid "Printer"
+msgstr "Printéir"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Reading printer data..."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:999
+msgid "ISDN card"
+msgstr "Carta ISDN"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Korean keyboard"
-msgstr "Méarchlár Chóiris"
+#: ../../install_steps_interactive.pm_.c:1003
+#: ../../install_steps_interactive.pm_.c:1009
+msgid "Sound card"
+msgstr "Carta Fuaim"
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Not connected"
-msgstr "Cumraigh ADSL"
+#: ../../install_steps_interactive.pm_.c:1012
+msgid "TV card"
+msgstr "Carta Telefís"
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "No internet connection configured"
-msgstr "Nasc na hIdirlíon agus cumraíocht"
+#: ../../install_steps_interactive.pm_.c:1055
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1084
+msgid "LDAP"
+msgstr "LDAP"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Greek"
-msgstr "Greicís"
+#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1093
+msgid "NIS"
+msgstr "NIS"
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Kitts and Nevis"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1057
+#: ../../install_steps_interactive.pm_.c:1080
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1107
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Fearannas NIS"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
-msgstr "Luchóg Gnáth 3-cnaipe"
+#: ../../install_steps_interactive.pm_.c:1058
+#: ../../install_steps_interactive.pm_.c:1080
+msgid "Local files"
+msgstr "Chomaid Áitiúl"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable OF Boot?"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1067
+#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
+msgid "Set root password"
+msgstr "Socraigh pasfhocal root"
-#: ../../fsedit.pm:1
+#: ../../install_steps_interactive.pm_.c:1069
+msgid "No password"
+msgstr "Gan pasfhocal"
+
+#: ../../install_steps_interactive.pm_.c:1074
#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Erase your RW media (1st Session)"
-msgstr "Roghnaigh rann le do thoil"
+#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
+#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
+msgid "Authentication"
+msgstr "Deimniú"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Scáileán VertRefresh: %s\n"
+#: ../../install_steps_interactive.pm_.c:1088
+msgid "Authentication LDAP"
+msgstr "Deimniú LDAP"
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Mount point"
+#: ../../install_steps_interactive.pm_.c:1089
+msgid "LDAP Base dn"
msgstr ""
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1090
+msgid "LDAP Server"
+msgstr "Freastalaí LDAP"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "TCP/IP host \"%s\", port %s"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1096
+msgid "Authentication NIS"
+msgstr "Deimniú NIS"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "User :"
-msgstr "Ainm úsáideora"
+#: ../../install_steps_interactive.pm_.c:1097
+msgid "NIS Domain"
+msgstr "Fearannas NIS"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore system"
-msgstr "Feistigh córas"
+#: ../../install_steps_interactive.pm_.c:1098
+msgid "NIS Server"
+msgstr "Freastalaí NIS"
-#: ../../standalone/scannerdrake:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1104
msgid ""
-"These are the machines on which the locally connected scanner(s) should be "
-"available:"
+"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/drakpxe:1
-#, c-format
-msgid "The DHCP end ip"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1106
+#, fuzzy
+msgid "Authentication Windows Domain"
+msgstr "Deimniú LDAP"
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Another one"
-msgstr "Idirlíon"
+#: ../../install_steps_interactive.pm_.c:1108
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Ainm Fearannas"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Drakbackup"
+#: ../../install_steps_interactive.pm_.c:1109
+msgid "Domain Admin Password"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Colombia"
-msgstr "AN Cholóim"
-
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1144
msgid ""
-"Current configuration of `%s':\n"
+"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"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
-msgstr ""
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Reunion"
-msgstr ""
-
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Details"
-msgstr "Sonraí"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "For security reasons, it will be disconnected now."
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Synchronization tool"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1160
+msgid "First floppy drive"
+msgstr "Cead dioscthiománt flapach"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Checking your system..."
-msgstr "Scríos Printéir"
+#: ../../install_steps_interactive.pm_.c:1161
+msgid "Second floppy drive"
+msgstr "Dara dioscthiomáint flapach"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Print"
-msgstr "Printéir"
+#: ../../install_steps_interactive.pm_.c:1162
+#: ../../printer/printerdrake.pm_.c:2397
+msgid "Skip"
+msgstr "Scipeáil"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:1167
#, c-format
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+"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"
msgstr ""
-# MN
-#: ../../lang.pm:1
-#, c-format
-msgid "Mongolia"
-msgstr "An Mhóngóil"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mounted\n"
+#: ../../install_steps_interactive.pm_.c:1173
+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)."
msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configure CUPS"
-msgstr "Cumraigh X"
+#: ../../install_steps_interactive.pm_.c:1181
+msgid "Sorry, no floppy drive available"
+msgstr "Brón orm, níl aon dioscthiománt flapach ar fáil"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Graphical Interface"
-msgstr "X ag tús"
+#: ../../install_steps_interactive.pm_.c:1185
+#, fuzzy
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr "Roghnaigh na ranna atá le formáidiú"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_interactive.pm_.c:1189
#, fuzzy, c-format
-msgid "Restore Users"
-msgstr "Aisig ó comhad"
+msgid "Insert a floppy in %s"
+msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Encryption key for %s"
-msgstr "Ní mar a chéile na pasfhocail"
+#: ../../install_steps_interactive.pm_.c:1192
+msgid "Creating bootdisk..."
+msgstr "Ag Cruthaigh diosca thosnaithe"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Do you want to recover your system?"
-msgstr "Céard a theastaíonn uait a dhéanamh?"
+#: ../../install_steps_interactive.pm_.c:1199
+msgid "Preparing bootloader..."
+msgstr "Ag Ullmhaigh ríomhchlar thosnaithe"
-#: ../../services.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1210
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 ""
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Detected hardware"
-msgstr "Leámh an t-eolais crua-earra"
-
-# mr
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Mauritius"
-msgstr "Marataí"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Myanmar (Burmese)"
+"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 to boot your machine"
msgstr ""
-#: ../../fs.pm:1
-#, fuzzy, c-format
-msgid "Enabling swap partition %s"
-msgstr "Ag formáidiú rann %s"
+#: ../../install_steps_interactive.pm_.c:1216
+#, fuzzy
+msgid "Do you want to use aboot?"
+msgstr "Céard a theastaíonn uait a dhéanamh?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
+#: ../../install_steps_interactive.pm_.c:1219
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (old)"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1226
+#, fuzzy
+msgid "Installing bootloader"
+msgstr "Feistigh cód tosnaithe"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../install_steps_interactive.pm_.c:1232
+msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../advertising/12-mdkexpert.pl:1
+#: ../../install_steps_interactive.pm_.c:1240
#, c-format
msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", host \"%s\", port %s"
+"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 ""
-# MC
-#: ../../lang.pm:1
-#, c-format
-msgid "Monaco"
-msgstr "Monacó"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Theip ar rannú: %s"
-
-#: ../../fs.pm:1 ../../swap.pm:1
+#: ../../install_steps_interactive.pm_.c:1274
+#: ../../standalone/drakautoinst_.c:76
#, c-format
-msgid "%s formatting of %s failed"
-msgstr "Formáidiú %s de %s teipithe"
+msgid "Insert a blank floppy in drive %s"
+msgstr "Cur isteach diosca folamh sa dioscthiomant %s"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Canada (cable)"
+#: ../../install_steps_interactive.pm_.c:1278
+msgid "Creating auto install floppy..."
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Floppy creation completed"
-msgstr "Athraigh cineál ranna"
-
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Upgrade"
-msgstr "Uasgrádaigh"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Workstation"
-msgstr "Stáisiún Oibre"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1289
msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Ag feisteáil pacáiste %s\n"
-"%d%%"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Kyrgyzstan"
-msgstr ""
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device on USB"
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
msgstr ""
-#: ../../../move/move.pm:1
+#: ../../install_steps_interactive.pm_.c:1300
#, 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"
+"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"
-"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."
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "With basic documentation"
-msgstr "Áit"
-
-#: ../../services.pm:1
-#, c-format
-msgid "Anacron is a periodic command scheduler."
+#: ../../install_steps_interactive.pm_.c:1313
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../install_steps_interactive.pm_.c:1318
+#, fuzzy
+msgid "Generate auto install floppy"
+msgstr "Cruthaigh flapach bootáil"
+
+#: ../../install_steps_interactive.pm_.c:1320
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 `/'"
+"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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Western Sahara"
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Automated"
msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "Proxy should be http://..."
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1325
+msgid "Replay"
+msgstr "Athlódaigh"
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "South Africa"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1328
+#, fuzzy
+msgid "Save packages selection"
+msgstr "Roghnú Grúpa Pacáistí"
-#: ../../standalone/drakbackup:1
+#: ../../install_steps_newt.pm_.c:20
#, fuzzy, c-format
-msgid "Eject tape after the backup"
-msgstr "Droch comhad chúltaca"
+msgid "Mandrake Linux Installation %s"
+msgstr "Feistiú Linux-Mandrake %s"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Etherboot Floppy/ISO"
+#. -PO This string must fit in a 80-char wide text screen
+#: ../../install_steps_newt.pm_.c:33
+msgid ""
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Modify printer configuration"
-msgstr "Cumraigh Idirlíon"
+#: ../../interactive.pm_.c:87
+msgid "kdesu missing"
+msgstr "kdesu ar iarraidh"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Choose a partition"
+#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
+msgid "consolehelper missing"
+msgstr ""
+
+#: ../../interactive.pm_.c:152
+#, fuzzy
+msgid "Choose a file"
msgstr "Roghnaigh gníomh"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Edit current rule"
+#: ../../interactive.pm_.c:318
+msgid "Advanced"
+msgstr "Réamhioaíocht"
+
+#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
+msgid "Basic"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s"
+#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
+#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
+msgid "<- Previous"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Please test the mouse"
-msgstr "Teastáil an luchóg, le do thoil"
+#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
+#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
+#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
+#, fuzzy
+msgid "Next"
+msgstr "Teacs"
-#: ../../fs.pm:1
-#, c-format
-msgid ""
-"Do not update inode access times on this file system\n"
-"(e.g, for faster access on the news spool to speed up news servers)."
-msgstr ""
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
+msgid "Bad choice, try again\n"
+msgstr "Droch rogha, aththrialaigh\n"
-#: ../../mouse.pm:1
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
-msgid "3 buttons with Wheel emulation"
-msgstr ""
+msgid "Your choice? (default %s) "
+msgstr "Do rogha? (gnás %s)"
-#: ../../standalone/drakperm:1
+#: ../../interactive/stdio.pm_.c:54
#, c-format
-msgid "Sticky-bit"
+msgid ""
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../interactive/stdio.pm_.c:70
#, fuzzy, c-format
-msgid "Other Media"
-msgstr "Eile"
-
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Logitech MouseMan+"
-msgstr "Luchóg Bus Logitech"
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Do rogha? (gnás %s)"
-#: ../../standalone/drakbackup:1
+#: ../../interactive/stdio.pm_.c:95
#, fuzzy, c-format
-msgid "Backup system files"
-msgstr "Droch comhad chúltaca"
+msgid "Button `%s': %s"
+msgstr "Roghnachais: %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Sector"
-msgstr "Teascán"
+#: ../../interactive/stdio.pm_.c:96
+#, fuzzy
+msgid "Do you want to click on this button?"
+msgstr "Céard a theastaíonn uait a dhéanamh?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Qatar"
+#: ../../interactive/stdio.pm_.c:105
+msgid " enter `void' for void entry"
msgstr ""
-#: ../../any.pm:1
+#: ../../interactive/stdio.pm_.c:105
+#, fuzzy, c-format
+msgid "Your choice? (default `%s'%s) "
+msgstr "Do rogha? (gnás %s)"
+
+#: ../../interactive/stdio.pm_.c:123
#, c-format
-msgid "LDAP Base dn"
+msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
+#: ../../interactive/stdio.pm_.c:126
msgid ""
-"You can't select this package as there is not enough space left to install it"
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "generate auto-install floppy"
-msgstr "Cruthaigh flapach bootáil"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#: ../../interactive/stdio.pm_.c:139
#, c-format
-msgid "Dialing mode"
+msgid ""
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "File sharing"
+#: ../../interactive/stdio.pm_.c:146
+msgid "Re-submit"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Clean /tmp at each boot"
-msgstr "Glan /tmp nuair a thosnaigh an coráis"
-
-# MW
-#: ../../lang.pm:1
-#, c-format
-msgid "Malawi"
-msgstr "Malawi"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "local config: false"
-msgstr "Chomaid Áitiúl"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "System settings"
-msgstr "Ag formáidiú"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Please choose your type of mouse."
-msgstr "Cén cinéal luchóg atá agat?"
-
-#: ../../services.pm:1
-#, c-format
-msgid "running"
-msgstr "ag rith"
+#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
+msgid "Czech (QWERTZ)"
+msgstr "Ceichís (QWERTZ)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "class of hardware device"
-msgstr ""
+#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
+msgid "German"
+msgstr "Gearmáinis"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"These are the machines and networks on which the locally connected printer"
-"(s) should be available:"
-msgstr ""
+#: ../../keyboard.pm_.c:155
+msgid "Dvorak"
+msgstr "Dvorak"
-# UK
-#: ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "United Kingdom"
-msgstr "An Ríocht"
+#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
+msgid "Spanish"
+msgstr "Spáinis"
-#: ../../lang.pm:1
-#, c-format
-msgid "Indonesia"
-msgstr "An Indinéis"
+#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+msgid "Finnish"
+msgstr "Fionlainnais"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "default"
-msgstr "gnáth"
+#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
+msgid "French"
+msgstr "Francaigh"
-#: ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "France [SECAM]"
-msgstr "Fraince"
+#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
+msgid "Norwegian"
+msgstr "Ioruais"
-#: ../../any.pm:1
-#, c-format
-msgid "restrict"
-msgstr "teorannaigh"
+#: ../../keyboard.pm_.c:160
+msgid "Polish"
+msgstr "Polainnais"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "must have"
-msgstr "riachtanas"
+#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
+msgid "Russian"
+msgstr "Ruislís"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
+#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+msgid "Swedish"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Senegal"
-msgstr ""
+#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
+msgid "UK keyboard"
+msgstr "Méarchlár UK"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Command line"
-msgstr "Ainm Fearannas"
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
+msgid "US keyboard"
+msgstr "Meárchlár US"
-#: ../advertising/08-store.pl:1
-#, 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:"
+#: ../../keyboard.pm_.c:167
+msgid "Albanian"
msgstr ""
-# mr
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "March"
-msgstr "Marataí"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to administrative files"
+#: ../../keyboard.pm_.c:168
+msgid "Armenian (old)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
+#: ../../keyboard.pm_.c:169
+msgid "Armenian (typewriter)"
msgstr ""
-#: ../../fs.pm:1
-#, 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.)"
+#: ../../keyboard.pm_.c:170
+msgid "Armenian (phonetic)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Montserrat"
+#: ../../keyboard.pm_.c:175
+msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Automatic dependencies"
+#: ../../keyboard.pm_.c:177
+msgid "Belgian"
+msgstr "Belgáiris"
+
+#: ../../keyboard.pm_.c:178
+msgid "Bengali"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Swap"
-msgstr "Malairte"
+#: ../../keyboard.pm_.c:179
+#, fuzzy
+msgid "Bulgarian (phonetic)"
+msgstr "Bulgáiris"
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Custom settings"
-msgstr "Ag formáidiú"
+#: ../../keyboard.pm_.c:180
+#, fuzzy
+msgid "Bulgarian (BDS)"
+msgstr "Bulgáiris"
-#: ../../../move/move.pm:1
-#, 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."
+#: ../../keyboard.pm_.c:181
+msgid "Brazilian (ABNT-2)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Other"
-msgstr "Aisig ó comhad"
+#: ../../keyboard.pm_.c:184
+#, fuzzy
+msgid "Bosnian"
+msgstr "Eastóinis"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "TV card"
-msgstr "Carta Telefís"
+#: ../../keyboard.pm_.c:185
+msgid "Belarusian"
+msgstr "Belarúisis"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
+#: ../../keyboard.pm_.c:186
+msgid "Swiss (German layout)"
+msgstr "Eilvéis (Stíl Ghearmánais)"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Configure CUPS"
-msgstr "Cumraigh X"
+#: ../../keyboard.pm_.c:187
+msgid "Swiss (French layout)"
+msgstr "Eilvéis (Stíl Francaigh)"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ", "
-msgstr ", "
+#: ../../keyboard.pm_.c:189
+msgid "Czech (QWERTY)"
+msgstr "Ceichís (QWERTY)"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit lspci"
+#: ../../keyboard.pm_.c:191
+msgid "German (no dead keys)"
+msgstr "Gearmáinis (gach meachlár marbh)"
+
+#: ../../keyboard.pm_.c:192
+msgid "Devanagari"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remove selected host/network"
-msgstr "Scrios ciú"
+#: ../../keyboard.pm_.c:193
+msgid "Danish"
+msgstr "Danmharghais"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
-msgstr ""
+#: ../../keyboard.pm_.c:194
+msgid "Dvorak (US)"
+msgstr "Dvorak (Meiriceá)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Uzbek (cyrillic)"
-msgstr ""
+#: ../../keyboard.pm_.c:195
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Ioruais)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
+#: ../../keyboard.pm_.c:196
+#, fuzzy
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (Meiriceá)"
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Network Hotplugging"
-msgstr "Cumraíocht Gréasánú"
+#: ../../keyboard.pm_.c:197
+msgid "Estonian"
+msgstr "Eastóinis"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, reports check result to tty."
+#: ../../keyboard.pm_.c:201
+msgid "Georgian (\"Russian\" layout)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore From CD"
-msgstr "Aisig ó dhiosca flapach"
-
-#: ../../standalone/drakgw:1
-#, 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)."
+#: ../../keyboard.pm_.c:202
+msgid "Georgian (\"Latin\" layout)"
msgstr ""
-#: ../../network/ethernet.pm:1
-#, fuzzy, c-format
-msgid ""
-"Please choose which network adapter you want to use to connect to Internet."
-msgstr "Cén cinéal luchóg atá agat?"
+#: ../../keyboard.pm_.c:203
+msgid "Greek"
+msgstr "Greicís"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo memory card access on your HP multi-function device"
+#: ../../keyboard.pm_.c:204
+msgid "Gujarati"
msgstr ""
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid ""
-"Enhance your computer performance with the help of a selection of partners "
-"offering professional solutions compatible with Mandrake Linux"
+#: ../../keyboard.pm_.c:205
+msgid "Gurmukhi"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Authors: "
-msgstr ""
+#: ../../keyboard.pm_.c:206
+msgid "Hungarian"
+msgstr "Ungárais"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Internet Connection Sharing is now disabled."
-msgstr "Nasc na hIdirlíon agus cumraíocht"
+#: ../../keyboard.pm_.c:207
+msgid "Croatian"
+msgstr "Cróitis"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
+#: ../../keyboard.pm_.c:208
+msgid "Israeli"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Latin American"
-msgstr "Mheirceá Theas"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Japanese text printing mode"
-msgstr "Cumraigh gréasánú"
+#: ../../keyboard.pm_.c:209
+msgid "Israeli (Phonetic)"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Old device file"
-msgstr "Roghnaigh Comhad"
+#: ../../keyboard.pm_.c:210
+msgid "Iranian"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Info: "
-msgstr "Eolas"
+#: ../../keyboard.pm_.c:211
+msgid "Icelandic"
+msgstr ""
-#: ../../interactive/stdio.pm:1
-#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Roghnachais: %s"
+#: ../../keyboard.pm_.c:212
+msgid "Italian"
+msgstr "Iodálais"
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
-#: ../../standalone/service_harddrake:1
-#, c-format
-msgid "Please wait"
-msgstr "Fan tamall"
+#: ../../keyboard.pm_.c:213
+msgid "Inuktitut"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetMouse"
-msgstr "Genius NetMouse"
+#: ../../keyboard.pm_.c:214
+msgid "Japanese 106 keys"
+msgstr "Seápainis (106 eochair)"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "None"
-msgstr "Críochnithe"
+#: ../../keyboard.pm_.c:217
+msgid "Korean keyboard"
+msgstr "Méarchlár Chóiris"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "The entered IP is not correct.\n"
-msgstr "An bhfuil seo ceart?"
+#: ../../keyboard.pm_.c:218
+msgid "Latin American"
+msgstr "Mheirceá Theas"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please be sure that the cron daemon is included in your services."
-msgstr "Roghnaight do theangam le do thoil."
+#: ../../keyboard.pm_.c:219
+#, fuzzy
+msgid "Laotian"
+msgstr "Áit"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Ethernet Card"
+#: ../../keyboard.pm_.c:220
+msgid "Lithuanian AZERTY (old)"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Delete selected printer"
-msgstr "Scrios ciú"
-
-#: ../../services.pm:1 ../../ugtk2.pm:1
-#, c-format
-msgid "Info"
-msgstr "Eolas"
-
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
-msgstr "Feistiú"
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
+#: ../../keyboard.pm_.c:222
+msgid "Lithuanian AZERTY (new)"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
-msgstr "Eirigh as Feistiú"
-
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Need a key to save your data"
+#: ../../keyboard.pm_.c:223
+msgid "Lithuanian \"number row\" QWERTY"
msgstr ""
-#: ../../standalone/drakgw:1
-#, 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)."
+#: ../../keyboard.pm_.c:224
+msgid "Lithuanian \"phonetic\" QWERTY"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Remote CUPS server"
-msgstr "Scrios Freastalaí CUPS"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Sun - Mouse"
-msgstr "Luchóg - Sun"
+#: ../../keyboard.pm_.c:225
+#, fuzzy
+msgid "Latvian"
+msgstr "Áit"
-#: ../../standalone/drakgw:1
-#, 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."
+#: ../../keyboard.pm_.c:226
+msgid "Malayalam"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Submit cpuinfo"
+#: ../../keyboard.pm_.c:227
+msgid "Macedonian"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Minimal install"
-msgstr "Eirigh as Feistiú"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ethiopia"
-msgstr "An Aetóip"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "YES"
+#: ../../keyboard.pm_.c:228
+msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
+#: ../../keyboard.pm_.c:229
+msgid "Mongolian (cyrillic)"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Devanagari"
+#: ../../keyboard.pm_.c:230
+msgid "Maltese (UK)"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, 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"
+#: ../../keyboard.pm_.c:231
+msgid "Maltese (US)"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Méid iomlán: %d / %d MB"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "disabled"
-msgstr "Table"
-
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Search for new scanners"
-msgstr "Printéir áitiúl"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Disabling servers..."
+#: ../../keyboard.pm_.c:232
+msgid "Dutch"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Installation of %s failed. The following error occured:"
+#: ../../keyboard.pm_.c:234
+msgid "Polish (qwerty layout)"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+#: ../../keyboard.pm_.c:235
+msgid "Polish (qwertz layout)"
msgstr ""
-#: ../../install_any.pm:1
-#, 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"
-"\n"
-"Do you really want to install these servers?\n"
+#: ../../keyboard.pm_.c:236
+msgid "Portuguese"
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr "Printéir Gréasán (lpd)"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup User files..."
-msgstr "Droch comhad chúltaca"
+#: ../../keyboard.pm_.c:237
+msgid "Canadian (Quebec)"
+msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Install system"
-msgstr "Feistigh córas"
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Romanian (qwertz)"
+msgstr "Rúisis (Yawerty)"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "First DNS Server (optional)"
-msgstr "Cead Freastalaí DNS"
+#: ../../keyboard.pm_.c:240
+#, fuzzy
+msgid "Romanian (qwerty)"
+msgstr "Rúisis (Yawerty)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
+#: ../../keyboard.pm_.c:242
+msgid "Russian (Yawerty)"
+msgstr "Rúisis (Yawerty)"
-#: ../../security/help.pm:1
-#, 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."
+#: ../../keyboard.pm_.c:244
+msgid "Slovenian"
msgstr ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Russian (Phonetic)"
-msgstr "Bulgáiris"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "dhcpd Config..."
-msgstr "Ag cumraigh IDE"
+#: ../../keyboard.pm_.c:245
+msgid "Slovakian (QWERTZ)"
+msgstr "Slóbaicis (QWERTZ)"
-#: ../../any.pm:1
-#, c-format
-msgid "LILO/grub Installation"
-msgstr "Feistiú LILO/grub"
+#: ../../keyboard.pm_.c:246
+msgid "Slovakian (QWERTY)"
+msgstr "Slóbaicis (QWERTY)"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Israeli"
+#: ../../keyboard.pm_.c:248
+msgid "Serbian (cyrillic)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Ag dúnadh síos an ghreasán"
+#: ../../keyboard.pm_.c:250
+msgid "Tamil (Unicode)"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Floppy can be removed now"
+#: ../../keyboard.pm_.c:251
+msgid "Tamil (TSCII)"
msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Truly minimal install"
-msgstr "Eirigh as Feistiú"
+#: ../../keyboard.pm_.c:252
+msgid "Thai keyboard"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Denmark"
-msgstr "An Danmhairg"
+#: ../../keyboard.pm_.c:254
+#, fuzzy
+msgid "Tajik keyboard"
+msgstr "Meárchlár US"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Moving partition..."
-msgstr "Ag bogadh rann..."
+#: ../../keyboard.pm_.c:255
+msgid "Turkish (traditional \"F\" model)"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "(This) DHCP Server IP"
-msgstr "IP freastalaí SMP"
+#: ../../keyboard.pm_.c:256
+msgid "Turkish (modern \"Q\" model)"
+msgstr ""
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Test of the configuration"
-msgstr "Trialaigh an cumraíocht"
+#: ../../keyboard.pm_.c:258
+msgid "Ukrainian"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Installing %s ..."
-msgstr "Ag feistiál pacáiste %s"
+#: ../../keyboard.pm_.c:261
+msgid "US keyboard (international)"
+msgstr "Mearchlár US (idirnaisiúnta)"
-#: ../../help.pm:1
-#, 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."
+#: ../../keyboard.pm_.c:262
+msgid "Vietnamese \"numeric row\" QWERTY"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose your filesystem encryption key"
+#: ../../keyboard.pm_.c:263
+msgid "Yugoslavian (latin)"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Sierra Leone"
+#: ../../keyboard.pm_.c:270
+msgid "Right Alt key"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Botswana"
+#: ../../keyboard.pm_.c:271
+msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Andorra"
+#: ../../keyboard.pm_.c:272
+msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "(default value: %s)"
-msgstr "Gnáth"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
+#: ../../keyboard.pm_.c:273
+msgid "CapsLock key"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (Letter)"
+#: ../../keyboard.pm_.c:274
+msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-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"
+#: ../../keyboard.pm_.c:275
+msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, fuzzy, c-format
-msgid "Choose an X server"
-msgstr "Roghnaigh freastalaí X"
-
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Copying to memory to allow removing the CDROM"
+#: ../../keyboard.pm_.c:276
+msgid "\"Menu\" key"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Swap partition size in MB: "
-msgstr "Méid i MB do rhann malairte:"
+#: ../../keyboard.pm_.c:277
+msgid "Left \"Windows\" key"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "No changes to backup!"
-msgstr "Droch comhad chúltaca"
+#: ../../keyboard.pm_.c:278
+msgid "Right \"Windows\" key"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../loopback.pm_.c:32
#, c-format
-msgid "Formatted\n"
-msgstr "Formáidithe\n"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Type of install"
-msgstr "Roghnaigh pacáistí a feistiú ..."
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/Windows 95/98/NT"
+msgid "Circular mounts %s\n"
+msgstr ""
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated numbers"
+#: ../../lvm.pm_.c:103
+msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../modules.pm_.c:290
msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Automatic Steps Configuration"
-msgstr "Cumraíocht Stíl Tosnú"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Barbados"
+#: ../../modules/interactive.pm_.c:16
+msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid ""
-"Want to know more and to contribute to the Open Source community? Get "
-"involved in the Free Software world!"
-msgstr ""
+#: ../../modules/parameters.pm_.c:18
+#, fuzzy
+msgid "modinfo is not available"
+msgstr "Níl dioscthiománt flapach ar fáil"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please select data to backup..."
-msgstr "Roghnaight do theangam le do thoil."
+#: ../../modules/parameters.pm_.c:50
+#, fuzzy
+msgid "a number"
+msgstr "Uimhir fón"
-#: ../../standalone/net_monitor:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
+msgid "%d comma separated numbers"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: ../../modules/parameters.pm_.c:52
#, c-format
-msgid "received"
+msgid "%d comma separated strings"
msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable su only from the wheel group members or for any user"
+#: ../../modules/parameters.pm_.c:54
+msgid "comma separated numbers"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_New"
-msgstr "/Comhad/_Nua"
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "The DNS Server IP"
-msgstr "IP freastalaí SMP"
+#: ../../modules/parameters.pm_.c:54
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formáidigh ranna"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "IP Range End:"
-msgstr ""
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Luchóg - Sun"
-#: ../../security/level.pm:1
-#, c-format
-msgid "High"
-msgstr "Árd"
+#: ../../mouse.pm_.c:32
+#, fuzzy
+msgid "Logitech MouseMan+"
+msgstr "Luchóg Bus Logitech"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Add a new printer to the system"
-msgstr "Cuir grupa"
+#: ../../mouse.pm_.c:33
+#, fuzzy
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Mouse Gnáth (PS/2)"
-#: ../../any.pm:1
-#, c-format
-msgid "NoVideo"
-msgstr "GanBhideó"
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "this field describes the device"
-msgstr ""
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr ""
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Local Printers"
-msgstr "Printéir áitiúl"
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Installation image directory"
-msgstr "Éirigh as cumraíocht"
+#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
+#, fuzzy
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Server"
-msgstr "Freastalaí NIS"
+#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
+msgid "1 button"
+msgstr "1 Cnaipe"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Port: %s"
-msgstr "Poirt"
+#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+msgid "Generic 2 Button Mouse"
+msgstr "Luchóg 2-cnaipe Loiceadh"
-# ES
-#: ../../lang.pm:1
-#, c-format
-msgid "Spain"
-msgstr "An Spáinn"
+#: ../../mouse.pm_.c:47
+msgid "Wheel"
+msgstr "Rothar"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "local config: %s"
-msgstr ""
+#: ../../mouse.pm_.c:51
+msgid "serial"
+msgstr "srathach"
-#: ../../any.pm:1
-#, c-format
-msgid "This user name has already been added"
-msgstr "Is ann cheana don ainm úsáideora seo"
+#: ../../mouse.pm_.c:54
+msgid "Generic 3 Button Mouse"
+msgstr "Luchóg Gnáth 3-cnaipe"
-#: ../../interactive.pm:1
-#, fuzzy, c-format
-msgid "Choose a file"
-msgstr "Roghnaigh gníomh"
+#: ../../mouse.pm_.c:55
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Apply"
-msgstr ""
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan"
+msgstr "Luchóg MouseMan"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Auto-detect available ports"
-msgstr "Scríos Printéir"
+#: ../../mouse.pm_.c:57
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
-#: ../../lang.pm:1
-#, c-format
-msgid "San Marino"
-msgstr ""
+#: ../../mouse.pm_.c:59
+msgid "Logitech CC Series"
+msgstr "Luchóg Logitech CC"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently disabled"
-msgstr ""
+#: ../../mouse.pm_.c:60
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Belgium"
-msgstr "Belgáiris"
+#: ../../mouse.pm_.c:62
+msgid "MM Series"
+msgstr "MM Series"
-# KW
-#: ../../lang.pm:1
-#, c-format
-msgid "Kuwait"
-msgstr "Cuáit"
+#: ../../mouse.pm_.c:63
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
-#: ../../any.pm:1
-#, c-format
-msgid "Choose the window manager to run:"
-msgstr "Roghnaigh an Bainistéoir Fhuinneoga a úsásd:"
+#: ../../mouse.pm_.c:64
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Luchóg Logitech (srathach, séan cinéal C7)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "December"
-msgstr "Nollag"
+#: ../../mouse.pm_.c:68
+msgid "busmouse"
+msgstr "busmouse"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "sub generation of the cpu"
-msgstr ""
+#: ../../mouse.pm_.c:71
+msgid "2 buttons"
+msgstr "2 cnaipí"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "First Time Wizard"
-msgstr "Ag Éirigh as Draíodóir\n"
+#: ../../mouse.pm_.c:72
+msgid "3 buttons"
+msgstr "3 cnaipí"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Taiwan"
-msgstr "Áit"
+#: ../../mouse.pm_.c:75
+msgid "none"
+msgstr "Ar bith"
-#: ../../lang.pm:1
-#, c-format
-msgid "Pakistan"
-msgstr "An Phacastán"
+#: ../../mouse.pm_.c:77
+msgid "No mouse"
+msgstr "Luchóg ar bith"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "Ag Parsáil an comhad %s, fan tamall"
+#: ../../mouse.pm_.c:490
+msgid "Please test the mouse"
+msgstr "Teastáil an luchóg, le do thoil"
-#: ../../install_steps.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+#: ../../mouse.pm_.c:491
+msgid "To activate the mouse,"
msgstr ""
-"Ta earraid ann, níl a fhios agam conas é a cheartú.\n"
-"Lean ort, ar do phriacal féin."
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Importance: "
-msgstr "Tábhacht: %s\n"
+#: ../../mouse.pm_.c:492
+msgid "MOVE YOUR WHEEL!"
+msgstr "BOG DO ROTHAR!"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../my_gtk.pm_.c:65
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Permissions"
-msgstr "Leagan: %s\n"
+#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
+msgid "Finish"
+msgstr "Fionnlainnis"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Provider name (ex provider.net)"
+#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
+#: ../../ugtk2.pm_.c:435
+msgid "Next ->"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, 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'."
-msgstr ""
+#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
+msgid "Is this correct?"
+msgstr "An bhfuil seo ceart?"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use the Windows partition for loopback"
-msgstr ""
+#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
+msgid "Info"
+msgstr "Eolas"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (typewriter)"
+#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
+msgid "Expand Tree"
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connection type: "
-msgstr "Athraigh cineál ranna"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Graphical interface"
-msgstr "X ag tús"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Chad"
+#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
+msgid "Collapse Tree"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "India"
-msgstr "An India"
+#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
+msgid "Toggle between flat and group sorted"
+msgstr ""
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s le luadghearú crua-earraí 3D"
+#: ../../network/adsl.pm_.c:23
+msgid "use pppoe"
+msgstr "úsáid pppoe"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovakia"
-msgstr ""
+#: ../../network/adsl.pm_.c:24
+msgid "use pptp"
+msgstr "úsáid pppoe"
-# SG
-#: ../../lang.pm:1
-#, c-format
-msgid "Singapore"
-msgstr "Singeapór"
+#: ../../network/adsl.pm_.c:25
+msgid "use dhcp"
+msgstr "úsáid dhcp"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cambodia"
+#: ../../network/adsl.pm_.c:26
+msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Scáileán HorizSync: %s\n"
-
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Path"
+#: ../../network/adsl.pm_.c:27
+msgid "Sagem (using pppoe) usb"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "NOT FOUND"
+#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
+msgid "Connect to the Internet"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:30
msgid ""
-"Here you can specify any arbitrary command line into which the job should be "
-"piped instead of being sent directly to a printer."
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/adsl.pm_.c:166
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?"
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
+#: ../../network/drakfirewall.pm_.c:12
+#, fuzzy
+msgid "Web Server"
+msgstr "Freastalaí"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Add host"
-msgstr "Suimigh úsáideoir"
+#: ../../network/drakfirewall.pm_.c:17
+#, fuzzy
+msgid "Domain Name Server"
+msgstr "Ainm Fearannas"
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:32
+#, fuzzy
+msgid "Mail Server"
+msgstr "Freastalaí Printéir"
+
+#: ../../network/drakfirewall.pm_.c:37
+#, fuzzy
+msgid "POP and IMAP Server"
+msgstr "Freastalaí LDAP"
+
+#: ../../network/drakfirewall.pm_.c:111
+#, fuzzy
+msgid "No network card"
+msgstr "ní fuaireathas cárta gréasánú"
+
+#: ../../network/drakfirewall.pm_.c:129
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"
+"drakfirewall configurator\n"
"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-#: ../../any.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:135
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"
+"drakfirewall configurator\n"
"\n"
-"\"Custom\" permit a per-user granularity.\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../network/drakfirewall.pm_.c:152
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm_.c:153
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-#: ../../../move/tree/mdk_totem:1
+#: ../../network/drakfirewall.pm_.c:159
#, c-format
-msgid "No CDROM support"
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "China (broadcast)"
+#: ../../network/drakfirewall.pm_.c:167
+msgid "Everything (no firewall)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use quota for backup files."
-msgstr "Droch comhad chúltaca"
+#: ../../network/drakfirewall.pm_.c:169
+#, fuzzy
+msgid "Other ports"
+msgstr "Eile"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Cumraigh printéir"
+#: ../../network/ethernet.pm_.c:37
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client"
+msgstr ""
-#: ../../fs.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:88
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."
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Internet connection"
-msgstr "Nasc Printéir"
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
+msgid "Choose the network interface"
+msgstr "Roghnaigh an cláréadan ghréasán"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:93
+#, fuzzy
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "Cén cinéal luchóg atá agat?"
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Welcome to the Open Source world."
-msgstr ""
+#: ../../network/ethernet.pm_.c:176
+msgid "no network card found"
+msgstr "ní fuaireathas cárta gréasánú"
-#: ../../lang.pm:1
-#, c-format
-msgid "Bosnia and Herzegovina"
-msgstr ""
+#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
+msgid "Configuring network"
+msgstr "Cumraigh gréasánú"
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/ethernet.pm_.c:201
msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "You must enter a host name or an IP address.\n"
-msgstr "Teastáil an luchóg, le do thoil"
+#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
+msgid "Host name"
+msgstr "ÓstAinm"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "Netherlands"
-msgstr "An Isiltír"
+#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
+#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
+#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
+#: ../../network/netconnect.pm_.c:253
+msgid "Network Configuration Wizard"
+msgstr "Draíodóir Cumraíocht Gréasánú"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Sending files by FTP"
-msgstr "Sabháil i gcomhad"
+#: ../../network/isdn.pm_.c:22
+msgid "External ISDN modem"
+msgstr "Móideam ISDN seantrach"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
msgstr "Carta ISDN inmheánamach"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
-msgstr ""
-
-#: ../../network/modem.pm:1
-#, fuzzy, c-format
-msgid "Title"
-msgstr "Table"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Install & convert Fonts"
+#: ../../network/isdn.pm_.c:22
+msgid "What kind is your ISDN connection?"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "WARNING"
+#: ../../network/isdn.pm_.c:45
+msgid ""
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Installing bootloader"
-msgstr "Feistigh cód tosnaithe"
+#: ../../network/isdn.pm_.c:54
+#, fuzzy
+msgid "New configuration (isdn-light)"
+msgstr "Cumraíocht Gréasánú"
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "replay"
-msgstr "Athlódaigh"
+#: ../../network/isdn.pm_.c:54
+#, fuzzy
+msgid "Old configuration (isdn4net)"
+msgstr "Éirigh as cumraíocht"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "detected %s"
-msgstr ""
+#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
+#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
+#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
+msgid "ISDN Configuration"
+msgstr "Cumraigh ISDN"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../network/isdn.pm_.c:166
msgid ""
-"Expect is an extension to the Tcl scripting language that allows interactive "
-"sessions without user intervention."
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Virgin Islands (U.S.)"
+#: ../../network/isdn.pm_.c:179
+msgid "Europe protocol"
msgstr ""
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Bad backup file"
-msgstr "Droch comhad chúltaca"
+#: ../../network/isdn.pm_.c:179
+#, fuzzy
+msgid "Europe protocol (EDSS1)"
+msgstr "Eorap (EDS11)"
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../network/isdn.pm_.c:181
+#, fuzzy
+msgid "Protocol for the rest of the world"
+msgstr "Trialaigh an cumraíocht"
+
+#: ../../network/isdn.pm_.c:181
msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
+#: ../../network/isdn.pm_.c:185
+msgid "Which protocol do you want to use?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../network/isdn.pm_.c:196
#, c-format
-msgid "Pipe into command"
+msgid "Found \"%s\" interface do you want to use it ?"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
-msgstr ""
+#: ../../network/isdn.pm_.c:203
+msgid "What kind of card do you have?"
+msgstr "Cén cinéal c atá uait?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Haiti"
-msgstr "Háiti"
+#: ../../network/isdn.pm_.c:204
+msgid "I don't know"
+msgstr "Níl fhíos agam"
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Detecting devices..."
-msgstr ""
+#: ../../network/isdn.pm_.c:204
+msgid "ISA / PCMCIA"
+msgstr "ISA/ PCMCIA"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Custom allows you to specify your own day and time. The other options use "
-"run-parts in /etc/crontab."
-msgstr ""
+#: ../../network/isdn.pm_.c:204
+msgid "PCI"
+msgstr "PCI"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/isdn.pm_.c:210
msgid ""
-"Description of the fields:\n"
"\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Basic options"
-msgstr "Roghnachais"
+#: ../../network/isdn.pm_.c:214
+msgid "Abort"
+msgstr "Tobscoir"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the name of the CPU"
-msgstr ""
+#: ../../network/isdn.pm_.c:214
+msgid "Continue"
+msgstr "Lean"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Accept bogus IPv4 error messages"
-msgstr ""
+#: ../../network/isdn.pm_.c:220
+msgid "Which is your ISDN card?"
+msgstr "Cén sort carta ISDN atá uait?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Refreshing printer data..."
+#: ../../network/isdn.pm_.c:239
+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 ""
-#: ../../install2.pm:1
-#, c-format
-msgid "You must also format %s"
+#: ../../network/isdn.pm_.c:248
+msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Be careful: this operation is dangerous."
-msgstr ""
+#: ../../network/modem.pm_.c:57
+#, fuzzy
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Cén cinéal luchóg atá agat?"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Insert a floppy containing package selection"
-msgstr "Cur isteach diosca sa dioscthiomant %s"
+#: ../../network/modem.pm_.c:67
+msgid "Dialup options"
+msgstr "Roghanna 'Dialup'"
-#: ../../diskdrake/dav.pm:1
-#, fuzzy, c-format
-msgid "Server: "
-msgstr "Freastalaí"
+#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
+msgid "Connection name"
+msgstr "Ainm Nasc"
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Security Alerts:"
-msgstr "Roghnaigh liebhéal slándáil"
+#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
+msgid "Phone number"
+msgstr "Uimhir fón"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Sweden"
-msgstr "Amharc"
+#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
+msgid "Login ID"
+msgstr "Ainm Login:"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Expect for SSH"
-msgstr ""
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "CHAP"
+msgstr "CHAP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Poland"
-msgstr "An Pholainn"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "PAP"
+msgstr "PAP"
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Other ports"
-msgstr "Eile"
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Script-based"
+msgstr "Script-bhunaithe"
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
+#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
+msgid "Terminal-based"
+msgstr "Teirminéal-bhunaithe"
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid " - detected"
-msgstr "Scríos Printéir"
+#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
+msgid "Domain name"
+msgstr "Ainm Fearannas"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SMBus controllers"
-msgstr ""
+#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
+#, fuzzy
+msgid "First DNS Server (optional)"
+msgstr "Cead Freastalaí DNS"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Ainm Nasc"
+#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
+#, fuzzy
+msgid "Second DNS Server (optional)"
+msgstr "Dara Freastalaí DNS"
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../network/modem.pm_.c:95
msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../network/modem.pm_.c:97
#, c-format
-msgid "Croatian"
-msgstr "Cróitis"
+msgid ""
+"\"%s\" based winmodem detected, do you want to install needed software ?"
+msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Use existing partition"
-msgstr "Ag iarraidh an clár-ranna a tarrtháil"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Do nothing"
+msgstr "Ag Tosnaigh CUPS"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Unable to contact mirror %s"
-msgstr "Teip ar glaoch `fork': %s"
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Install rpm"
+msgstr "Feistiú"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/Help/_About..."
-msgstr "/Cúidiú/_Faoi..."
+#: ../../network/modem.pm_.c:97
+#, fuzzy
+msgid "Title"
+msgstr "Table"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Remove user directories before restore."
+#: ../../network/netconnect.pm_.c:29
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+#, fuzzy
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 ""
+"\n"
+"You can reconfigure your connection."
+msgstr "Cumraigh nasc ghréasán"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "CUPS printer configuration"
-msgstr "Cumraigh Idirlíon"
+#: ../../network/netconnect.pm_.c:29
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "Bainteach le hIdirlíon"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font in your mounted partitions"
+#: ../../network/netconnect.pm_.c:32
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "F00f bug"
-msgstr ""
+#: ../../network/netconnect.pm_.c:32
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "Cén diosca ag a dteastaíonn uait é a bhogadh?"
-#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree %s"
-msgstr "Freastalaí XFree86: %s"
+#: ../../network/netconnect.pm_.c:36
+#, fuzzy
+msgid "Connect"
+msgstr "Lean"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Domain Name:"
-msgstr "Ainm Fearannas"
+#: ../../network/netconnect.pm_.c:37
+#, fuzzy
+msgid "Disconnect"
+msgstr "Cumraigh nasc ghréasán"
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Root umask"
-msgstr "Gan pasfhocal"
+#: ../../network/netconnect.pm_.c:38
+#, fuzzy
+msgid "Configure the connection"
+msgstr "Cumraigh gréasánú"
-#: ../../any.pm:1
+#: ../../network/netconnect.pm_.c:41
+msgid "Internet connection & configuration"
+msgstr "Nasc na hIdirlíon agus cumraíocht"
+
+#: ../../network/netconnect.pm_.c:94
#, fuzzy, c-format
-msgid "On Floppy"
-msgstr "Sabháil ar dhiosca flapach"
+msgid "We are now going to configure the %s connection."
+msgstr "Cumraigh nasc ghréasán"
-#: ../../security/l10n.pm:1
+#: ../../network/netconnect.pm_.c:103
#, c-format
-msgid "Reboot by the console user"
+msgid ""
+"\n"
+"\n"
+"\n"
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press OK to continue."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore"
-msgstr "Aisig ó comhad"
+#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
+#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
+msgid "Network Configuration"
+msgstr "Cumraíocht Gréasánú"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Server:"
-msgstr "Freastalaí"
+#: ../../network/netconnect.pm_.c:133
+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 ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
+#: ../../network/netconnect.pm_.c:157
+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 ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Looking for available packages..."
-msgstr "Ag curdach do na pacáistí atá ar fáil"
+#: ../../network/netconnect.pm_.c:163
+#, fuzzy
+msgid "Choose the profile to configure"
+msgstr "Roghnagih an úsáidoer gneás:"
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
-msgstr "Roghnaigh liebhéal slándáil"
+#: ../../network/netconnect.pm_.c:164
+msgid "Use auto detection"
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Init Message"
-msgstr "Scéal Tosnú"
+#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
+#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
+#: ../../standalone/drakfloppy_.c:118
+msgid "Expert Mode"
+msgstr "Mód Saineolaí"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Rescue partition table"
+#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
+msgid "Detecting devices..."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cyprus"
-msgstr "An Chipir"
+#: ../../network/netconnect.pm_.c:214
+#, fuzzy
+msgid "Normal modem connection"
+msgstr "Cumraigh nasc ghréasán"
-#: ../../standalone/net_monitor:1
+#: ../../network/netconnect.pm_.c:214
#, fuzzy, c-format
-msgid "Connection complete."
-msgstr "Athraigh cineál ranna"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Remove from RAID"
-msgstr "Bain ó RAID"
+msgid "detected on port %s"
+msgstr "Pointe taca dublach %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr ""
+#: ../../network/netconnect.pm_.c:215
+#, fuzzy
+msgid "Winmodem connection"
+msgstr "Cumraigh nasc ghréasán"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Configuration Wizards"
-msgstr "Draíodóir Cumraíocht Gréasánú"
+#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "detected"
+msgstr "Scríos Printéir"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
+#: ../../network/netconnect.pm_.c:216
+#, fuzzy
msgid "ISDN connection"
msgstr "Cumraigh ISDN"
-#: ../../standalone/drakbackup:1
+#: ../../network/netconnect.pm_.c:216
#, c-format
-msgid "CD-R / DVD-R"
+msgid "detected %s"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "primary"
-msgstr ""
+#: ../../network/netconnect.pm_.c:217
+#, fuzzy
+msgid "ADSL connection"
+msgstr "Nasc LAN"
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
+#: ../../network/netconnect.pm_.c:218
+msgid "Cable connection"
msgstr ""
-#: ../../help.pm:1
-#, 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"
-"!!"
-msgstr ""
+#: ../../network/netconnect.pm_.c:218
+#, fuzzy
+msgid "cable connection detected"
+msgstr "Cumraigh nasc ghréasán"
-#: ../../lang.pm:1
-#, c-format
-msgid "Niue"
+#: ../../network/netconnect.pm_.c:219
+msgid "LAN connection"
+msgstr "Nasc LAN"
+
+#: ../../network/netconnect.pm_.c:219
+msgid "ethernet card(s) detected"
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Skip"
-msgstr "Scipeáil"
+#: ../../network/netconnect.pm_.c:222
+#, fuzzy
+msgid "Choose the connection you want to configure"
+msgstr "Roghnaigh na ranna atá le formáidiú"
-#: ../../services.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:246
msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"the CPU frequency in MHz (Megahertz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
-msgstr ""
+#: ../../network/netconnect.pm_.c:247
+#, fuzzy
+msgid "Internet connection"
+msgstr "Nasc Printéir"
-#: ../../pkgs.pm:1
-#, c-format
-msgid "important"
-msgstr "tábhachtach"
+#: ../../network/netconnect.pm_.c:253
+#, fuzzy
+msgid "Do you want to start the connection at boot?"
+msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Mandrake Linux Printer Management Tool"
-msgstr "Feistiú Linux-Mandrake %s"
+#: ../../network/netconnect.pm_.c:267
+msgid "Network configuration"
+msgstr "Cumraíocht Gréasánú"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Total Progress"
+#: ../../network/netconnect.pm_.c:268
+msgid "The network needs to be restarted"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../network/netconnect.pm_.c:272
+#, fuzzy, c-format
msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
+"A problem occured while restarting the network: \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 ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Aruba"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Users"
-msgstr "Ainm úsáideora"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing bootloader..."
-msgstr "Ag Ullmhaigh ríomhchlar thosnaithe"
+"%s"
+msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Enter your user information, password will be used for screensaver"
+#: ../../network/netconnect.pm_.c:282
+msgid ""
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway (e.g. %s)"
+#: ../../network/netconnect.pm_.c:286
+msgid ""
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
-#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "The passwords do not match"
-msgstr "Ní mar a chéile na pasfhocail"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Examples for correct IPs:\n"
+#: ../../network/netconnect.pm_.c:287
+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 ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please choose the media for backup."
-msgstr "Roghnaight do theangam le do thoil."
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Frequency (MHz)"
+#: ../../network/network.pm_.c:278
+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_any.pm:1
-#, c-format
+#: ../../network/network.pm_.c:283
msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
+"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 ""
-#: ../../standalone/harddrake2:1
+#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
#, c-format
-msgid "the number of the processor"
-msgstr ""
+msgid "Configuring network device %s"
+msgstr "Ag cumrú gléas gréasánú %s"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../network/network.pm_.c:294
#, fuzzy, c-format
-msgid "Hardware clock set to GMT"
-msgstr "An bhfuil an clog cruaearrach ar GMT?"
+msgid " (driver %s)"
+msgstr " (tiomáint %s)"
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "Do you want to start a new configuration ?"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
+#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
+#: ../../standalone/drakconnect_.c:464
+msgid "IP address"
+msgstr "Seoladh IP"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Give a file name"
-msgstr "Fíor ainm"
+#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
+#: ../../standalone/drakgw_.c:291
+msgid "Netmask"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Please choose the port that your printer is connected to."
-msgstr "Cén cinéal luchóg atá agat?"
+#: ../../network/network.pm_.c:298
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../standalone/livedrake:1
-#, c-format
-msgid "Change Cd-Rom"
-msgstr "Athraigh CD-ROM"
+#: ../../network/network.pm_.c:298
+msgid "Automatic IP"
+msgstr "Uath-IP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Paraguay"
-msgstr "Paraguay"
+#: ../../network/network.pm_.c:299
+#, fuzzy
+msgid "Start at boot"
+msgstr "Cruthaigh an diosca "
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
+#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
+msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
+#: ../../network/network.pm_.c:326
+msgid ""
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0'."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../network/network.pm_.c:330
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:"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0'."
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
+#: ../../network/network.pm_.c:350
+msgid ""
+"Please enter your host name.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''.\n"
+"You may also enter the IP address of the gateway if you have one"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: ../../network/network.pm_.c:355
+msgid "DNS server"
+msgstr "freastalaí DNS"
+
+#: ../../network/network.pm_.c:356
#, c-format
-msgid "force"
-msgstr "forsáil"
+msgid "Gateway (e.g. %s)"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Exit"
-msgstr "Ext2"
+#: ../../network/network.pm_.c:358
+msgid "Gateway device"
+msgstr "Gaireas na hInneal Geata"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+#: ../../network/network.pm_.c:363
+msgid "DNS server address should be in format 1.2.3.4"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+#: ../../network/network.pm_.c:367
+msgid "Gateway address should be in format 1.2.3.4"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Estonian"
-msgstr "Eastóinis"
+#: ../../network/network.pm_.c:381
+msgid "Proxies configuration"
+msgstr "Cumraigh seach-freastalaí"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr ""
+#: ../../network/network.pm_.c:382
+msgid "HTTP proxy"
+msgstr "Seach-HTTP"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
+#: ../../network/network.pm_.c:383
+msgid "FTP proxy"
+msgstr "Seach-FTP"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "ALL"
+#: ../../network/network.pm_.c:384
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add/Del Clients"
+#: ../../network/network.pm_.c:387
+msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
-#: ../../standalone/drakpxe:1
-#, c-format
-msgid "Choose the network interface"
-msgstr "Roghnaigh an cláréadan ghréasán"
-
-#: ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown Model"
+#: ../../network/network.pm_.c:388
+msgid "Url should begin with 'ftp:' or 'http:'"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "CD/DVD burners"
+#: ../../network/shorewall.pm_.c:26
+msgid "Firewalling configuration detected!"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../network/shorewall.pm_.c:27
msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation."
msgstr ""
-"Rann tosaithe de ghnáth\n"
-" (do thosnú MS-DOS, ní lilo)\n"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to read the file"
-msgstr ""
+#: ../../network/tools.pm_.c:57
+msgid "Internet configuration"
+msgstr "Cumraigh Idirlíon"
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "choose image"
-msgstr "Roghnaigh gníomh"
+#: ../../network/tools.pm_.c:58
+#, fuzzy
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../network/shorewall.pm:1
-#, c-format
-msgid "Firewalling configuration detected!"
-msgstr ""
+#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "Cumraigh nasc ghréasán"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Connection name"
-msgstr "Ainm Nasc"
+#: ../../network/tools.pm_.c:70
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "Cén diosca ag a dteastaíonn uait é a bhogadh?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+#: ../../network/tools.pm_.c:71
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
+#: ../../network/tools.pm_.c:72
msgid ""
-"You may not be able to install lilo (since lilo doesn't handle a LV on "
-"multiple PVs)"
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Updating package selection"
-msgstr "Roghnú Grúpa Pacáistí"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Where do you want to mount the loopback file %s?"
-msgstr "Céard a theastaíonn uait a dhéanamh?"
+#: ../../network/tools.pm_.c:96
+msgid "Connection Configuration"
+msgstr "Cumraíocht Idirlíon."
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+#: ../../network/tools.pm_.c:97
+msgid "Please fill or check the field below"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use CD-R/DVD-R to backup"
-msgstr ""
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
+msgid "Card IRQ"
+msgstr "IRQ na Carta"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "the number of buttons the mouse has"
-msgstr "2 cnaipí"
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
+msgid "Card mem (DMA)"
+msgstr "Cuimhne Charta (DMA)"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Replay"
-msgstr "Athlódaigh"
+#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
+msgid "Card IO"
+msgstr "I/A Carta"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup other files"
-msgstr "Droch comhad chúltaca"
+#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
+msgid "Card IO_0"
+msgstr "I/A_0 Carta"
-#: ../../install_steps.pm:1
-#, c-format
-msgid "No floppy drive available"
-msgstr "Níl dioscthiománt flapach ar fáil"
+#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
+msgid "Card IO_1"
+msgstr "I/A_1 Carta"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files are corrupted"
-msgstr ""
+#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
+#, fuzzy
+msgid "Your personal phone number"
+msgstr "Uimhir fón"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "TV norm:"
+#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
+msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Cpuid family"
-msgstr ""
+#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
+msgid "Provider phone number"
+msgstr "Uimhir fón"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "32 MB"
-msgstr "32 MB"
+#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
+#, fuzzy
+msgid "Provider dns 1 (optional)"
+msgstr "Roghanna Printéir"
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "type: thin"
-msgstr "Cineál: "
+#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
+#, fuzzy
+msgid "Provider dns 2 (optional)"
+msgstr "Roghanna Printéir"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (new)"
-msgstr ""
+#: ../../network/tools.pm_.c:109
+#, fuzzy
+msgid "Choose your country"
+msgstr "Roghnaigh mhéarchlár"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
+#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
+msgid "Dialing mode"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid ""
-"You've selected a software RAID partition as root (/).\n"
-"No bootloader is able to handle this without a /boot partition.\n"
-"Please be sure to add a /boot partition"
-msgstr ""
+#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
+#, fuzzy
+msgid "Connection speed"
+msgstr "Athraigh cineál ranna"
-#: ../../any.pm:1
-#, c-format
-msgid "Other OS (MacOS...)"
-msgstr "CO Eile (MunOS...)"
+#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
+#, fuzzy
+msgid "Connection timeout (in sec)"
+msgstr "Ainm Nasc"
-#: ../../mouse.pm:1
-#, c-format
-msgid "To activate the mouse,"
+#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
+msgid "Account Login (user name)"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing up the network"
-msgstr "Ag tosnú suas an ghréasán"
+#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
+#: ../../standalone/drakconnect_.c:647
+msgid "Account Password"
+msgstr "Pasfhocal"
-#: ../../common.pm:1
-#, c-format
-msgid "Screenshots will be available after install in %s"
+#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
+msgid "United Kingdom"
msgstr ""
-#: ../../help.pm:1
-#, 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:\")."
+#: ../../partition_table.pm_.c:603
+msgid "mount failed: "
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Tanzania"
+#: ../../partition_table.pm_.c:667
+msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Computing FAT filesystem bounds"
-msgstr "Ag ríomhadh teorainn na córais-comhadlanna FAT"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../partition_table.pm_.c:685
msgid ""
-"\n"
-"Backup Sources: \n"
+"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 ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "custom"
-msgstr "Socraithe"
-
-#: ../../standalone/logdrake:1
+#: ../../partition_table.pm_.c:774
#, c-format
-msgid "Content of the file"
+msgid "Restoring from file %s failed: %s"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication LDAP"
-msgstr "Deimniú LDAP"
+#: ../../partition_table.pm_.c:776
+msgid "Bad backup file"
+msgstr "Droch comhad chúltaca"
-#: ../../install_steps_gtk.pm:1
+#: ../../partition_table.pm_.c:796
#, c-format
-msgid "in order to keep %s"
-msgstr ""
+msgid "Error writing to file %s"
+msgstr "Earráidh ag scríobh comhad %s"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Let me pick any driver"
+#: ../../partition_table/raw.pm_.c:192
+msgid ""
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random trash"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "transmitted"
-msgstr ""
+#: ../../pkgs.pm_.c:26
+msgid "must have"
+msgstr "riachtanas"
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Palestine"
-msgstr "Roghnú Grúpa Pacáistí"
+#: ../../pkgs.pm_.c:27
+msgid "important"
+msgstr "tábhachtach"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+#: ../../pkgs.pm_.c:28
+msgid "very nice"
+msgstr "an-dheas"
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "%d comma separated strings"
+#: ../../pkgs.pm_.c:29
+msgid "nice"
+msgstr "deas"
+
+#: ../../pkgs.pm_.c:30
+msgid "maybe"
+msgstr "b'fhéidir"
+
+#: ../../printer/data.pm_.c:18
+msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " isdn"
+#: ../../printer/data.pm_.c:19
+msgid "PDQ"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Here is the full list of keyboards available"
+#: ../../printer/data.pm_.c:30
+msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Theme name"
-msgstr "Comh. ainm"
+#: ../../printer/data.pm_.c:31
+msgid "LPD"
+msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Help"
-msgstr "/C_úidiú"
+#: ../../printer/data.pm_.c:51
+msgid "LPRng - LPR New Generation"
+msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Choosing an arbitrary driver"
+#: ../../printer/data.pm_.c:52
+msgid "LPRng"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cook Islands"
+#: ../../printer/data.pm_.c:75
+msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, 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."
+#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
+msgid "CUPS"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "the width of the progress bar"
+#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
+#: ../../printer/detect.pm_.c:250
+msgid "Unknown Model"
msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid "Formatting partition %s"
-msgstr "Ag formáidiú rann %s"
+#: ../../printer/main.pm_.c:26
+msgid "Local printer"
+msgstr "Printéir áitiúl"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Hostname required"
-msgstr "Ainm úsáideora"
+#: ../../printer/main.pm_.c:27
+msgid "Remote printer"
+msgstr "Scríos Printéir"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselect fonts installed"
-msgstr ""
+#: ../../printer/main.pm_.c:28
+#, fuzzy
+msgid "Printer on remote CUPS server"
+msgstr "Scrios Freastalaí CUPS"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Rothar"
+#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
+#, fuzzy
+msgid "Printer on remote lpd server"
+msgstr "Scrios freastalaí lpd"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Submit kernel version"
-msgstr "leagan `kernel'"
+#: ../../printer/main.pm_.c:30
+#, fuzzy
+msgid "Network printer (TCP/Socket)"
+msgstr "Printéir Gréasán (lpd)"
-#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
-#: ../../install_steps_interactive.pm:1 ../../interactive.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/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1
-#: ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/logdrake:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Cancel"
-msgstr "Cealaigh"
+#: ../../printer/main.pm_.c:31
+#, fuzzy
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "SMB/Windows 95/98/NT"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Searching for configured scanners ..."
-msgstr "Printéir áitiúl"
+#: ../../printer/main.pm_.c:32
+#, fuzzy
+msgid "Printer on NetWare server"
+msgstr "Freastalaí Printéir"
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Videocard"
-msgstr "Mód fís"
+#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
+#, fuzzy
+msgid "Enter a printer device URI"
+msgstr "Gaireas Printéir (URI)"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and bzip2\n"
+#: ../../printer/main.pm_.c:34
+msgid "Pipe job into a command"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Remove Selected"
-msgstr "Scrios ciú"
+#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
+#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
+msgid "Unknown model"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/Autodetect _modems"
-msgstr "Scríos Printéir"
+#: ../../printer/main.pm_.c:317
+#, fuzzy
+msgid "Local Printers"
+msgstr "Printéir áitiúl"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remove printer"
+#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
+#, fuzzy
+msgid "Remote Printers"
msgstr "Scríos Printéir"
-#: ../../standalone/drakbackup:1
+#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
#, c-format
-msgid "View Last Log"
+msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
+msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Connection Type"
-msgstr "Athraigh cineál ranna"
-
-#: ../../standalone/logdrake:1
+#: ../../printer/main.pm_.c:334
#, c-format
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
+msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Other"
-msgstr "Eile"
+#: ../../printer/main.pm_.c:337
+msgid ", multi-function device on USB"
+msgstr ""
-#: ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1
-#, c-format
-msgid "Default"
-msgstr "Gnáth"
+#: ../../printer/main.pm_.c:339
+msgid ", multi-function device on HP JetDirect"
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Button 2 Emulation"
+#: ../../printer/main.pm_.c:341
+msgid ", multi-function device"
msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../printer/main.pm_.c:344
#, fuzzy, c-format
-msgid "Please enter a package name."
-msgstr "Roghnaight do theangam le do thoil."
+msgid ", printing to %s"
+msgstr "Earráidh ag scríobh comhad %s"
-#: ../../security/l10n.pm:1
+#: ../../printer/main.pm_.c:346
#, c-format
-msgid "Run chkrootkit checks"
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../printer/main.pm_.c:348
#, c-format
-msgid "type1inst building"
+msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Abiword"
-msgstr "Tobscoir"
-
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "choose image file"
-msgstr "Roghnaigh gníomh"
-
-#: ../../Xconfig/card.pm:1
+#: ../../printer/main.pm_.c:352
#, c-format
-msgid "X server"
-msgstr "X freastalaí"
-
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Domain Admin User Name"
-msgstr "Ainm Fearannas"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr ""
-#: ../../standalone/drakxtv:1
+#: ../../printer/main.pm_.c:356
#, c-format
-msgid "There was an error while scanning for TV channels"
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../printer/main.pm_.c:358
#, c-format
-msgid "US keyboard (international)"
-msgstr "Mearchlár US (idirnaisiúnta)"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Not installed"
-msgstr "Eirigh as Feistiú"
+msgid ", using command %s"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Alt keys simultaneously"
+#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
+msgid "Raw printer (No driver)"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "LAN connection"
-msgstr "Nasc LAN"
+#: ../../printer/main.pm_.c:647
+#, fuzzy, c-format
+msgid "(on %s)"
+msgstr "(modíl %s)"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/-"
-msgstr "/Comhad/-"
+#: ../../printer/main.pm_.c:649
+msgid "(on this machine)"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Italian"
-msgstr "Iodálais"
+#: ../../printer/main.pm_.c:674
+#, fuzzy, c-format
+msgid "On CUPS server \"%s\""
+msgstr "IP freastalaí SMP"
-#: ../../interactive.pm:1
-#, c-format
-msgid "Basic"
+#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
+#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
+#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
+#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
+#, fuzzy
+msgid " (Default)"
msgstr "Gnáth"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Honduras"
+#: ../../printer/printerdrake.pm_.c:27
+msgid "Select Printer Connection"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "pdq"
+#: ../../printer/printerdrake.pm_.c:28
+msgid "How is the printer connected?"
msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO"
-msgstr "I/A Carta"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Samba server"
-msgstr "Freastalaí NIS"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:30
msgid ""
"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
+"Printers on remote CUPS servers you do not have to configure here; these "
+"printers will be automatically detected."
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
+#: ../../printer/printerdrake.pm_.c:38
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid ""
-"You can also decide here whether scanners on remote machines should be made "
-"available on this machine."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
+#, fuzzy
+msgid "CUPS configuration"
+msgstr "cumraíocht"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by FTP.\n"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
+#, fuzzy
+msgid "Specify CUPS server"
+msgstr "Scrios Freastalaí CUPS"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Reports check result to tty"
+#: ../../printer/printerdrake.pm_.c:83
+msgid ""
+"To get access to printers on remote CUPS servers in your local network you "
+"do not have to configure anything; 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. When your CUPS server is not in your local network, you have "
+"to enter the CUPS server IP address and optionally the port number to get "
+"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "You must enter a device or file name!"
-msgstr "Gaireas Printéir (URI)"
-
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Quit"
-msgstr "Éalaigh"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Cuimhne grafach: %s kb\n"
-
-#: ../../standalone.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:84
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"
+"Normally, CUPS is automatically configured according to your network "
+"environment, so that you can access the printers on the CUPS servers in your "
+"local network. If this does not work correctly, turn off \"Automatic CUPS "
+"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
+"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "access to compilation tools"
+#: ../../printer/printerdrake.pm_.c:88
+msgid "The IP address should look like 192.168.1.20"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Global statistics"
+#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
+msgid "The port number should be an integer!"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please select data to restore..."
-msgstr "Roghnaight do theangam le do thoil."
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, 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"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:99
+#, fuzzy
+msgid "CUPS server IP"
+msgstr "IP freastalaí SMP"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Standard test page"
-msgstr "Uirlisí gnáth"
+#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
+#: ../../standalone/harddrake2_.c:63
+msgid "Port"
+msgstr "Poirt"
-#: ../../standalone/drakclock:1
-#, fuzzy, c-format
-msgid "Time Zone"
-msgstr "Am Críos"
+#: ../../printer/printerdrake.pm_.c:102
+#, fuzzy
+msgid "Automatic CUPS configuration"
+msgstr "Cumraigh ADSL"
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create"
-msgstr "Cruthaigh"
+#: ../../printer/printerdrake.pm_.c:159
+#, fuzzy
+msgid "Checking your system..."
+msgstr "Scríos Printéir"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "What"
-msgstr "Fan tamall"
+#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
+#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
+#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
+#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
+#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
+#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
+#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
+#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
+#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
+#: ../../standalone/printerdrake_.c:47
+#, fuzzy
+msgid "Printerdrake"
+msgstr "Clódóir"
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "There was an error ordering packages:"
+#: ../../printer/printerdrake.pm_.c:167
+msgid ""
+"There are no printers found which are directly connected to your machine"
msgstr ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Bulgarian (BDS)"
-msgstr "Bulgáiris"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Disable Server"
-msgstr "Freastalaí Printéir"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Filesystem encryption key"
-msgstr "Cineál córas-comhadlanna:"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Gujarati"
+#: ../../printer/printerdrake.pm_.c:179
+msgid ""
+"The following printers\n"
+"\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:180
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."
+"The following printer\n"
+"\n"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:182
msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
+"\n"
+"and one unknown printer are "
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm_.c:184
#, c-format
msgid ""
"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
+"and %d unknown printers are "
msgstr ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Save theme"
-msgstr "Feistigh córas"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Brazil"
-msgstr "An Bhrasail"
-
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Auto Install"
-msgstr "Feistiú"
-
-#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
-#, c-format
-msgid "Network Configuration Wizard"
-msgstr "Draíodóir Cumraíocht Gréasánú"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"are "
+msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Removable media automounting"
+#: ../../printer/printerdrake.pm_.c:187
+msgid ""
+"\n"
+"is "
msgstr ""
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "Printing"
-msgstr "Printéir"
+#: ../../printer/printerdrake.pm_.c:189
+#, fuzzy
+msgid "directly connected to your system"
+msgstr "Níl aon gaireas ghreasán san do chorás!"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Enter the directory to save:"
-msgstr "Teastáil an luchóg, le do thoil"
+#: ../../printer/printerdrake.pm_.c:192
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:194
#, c-format
msgid ""
-"There are no printers found which are directly connected to your machine"
+"\n"
+"There are %d unknown printers directly connected to your system"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Create a new partition"
-msgstr "Cruthaigh rann nua"
+#: ../../printer/printerdrake.pm_.c:200
+#, fuzzy
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Cén cinéal luchóg atá agat?"
-#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
-msgid "Driver:"
-msgstr "Tiománaí"
+#: ../../printer/printerdrake.pm_.c:214
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "unknown"
+#: ../../printer/printerdrake.pm_.c:215
+msgid "Do you want to enable printing on printers in the local network?\n"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use fdisk"
-msgstr "Úsáid fdisk"
+#: ../../printer/printerdrake.pm_.c:217
+#, fuzzy
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../mouse.pm:1
-#, c-format
-msgid "MOVE YOUR WHEEL!"
-msgstr "BOG DO ROTHAR!"
+#: ../../printer/printerdrake.pm_.c:218
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
-#: ../../standalone/net_monitor:1
+#: ../../printer/printerdrake.pm_.c:219
#, c-format
-msgid "sent: "
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
msgstr ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "Automatic IP"
-msgstr "Uath-IP"
+#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
+#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
+#: ../../printer/printerdrake.pm_.c:3060
+#, fuzzy
+msgid "Add a new printer"
+msgstr "Gan Printéir"
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:259
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"
+"Welcome to the Printer Setup Wizard\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"
+"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"
-" Note that two different options are available after clicking the button:\n"
+"It asks you for all necessary information to set up the printer and gives "
+"you access to all available printer drivers, driver options, and printer "
+"connection types."
+msgstr ""
+
+#: ../../printer/printerdrake.pm_.c:272
+msgid ""
"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\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"
-" 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"
+"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) and you Windows machines must be connected and "
+"turned on.\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"
+"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"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Moldova"
-msgstr "Luain"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Kensington Thinking Mouse"
-msgstr "Kensington Thinking Mouse"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Configuration of a remote printer"
-msgstr "Cumraigh Printéir"
-
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, c-format
-msgid "An online platform to respond to enterprise support needs."
-msgstr ""
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
+#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
+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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Oriya"
+#: ../../printer/printerdrake.pm_.c:289
+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\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Add a new rule at the end"
-msgstr "Gan Printéir"
+#: ../../printer/printerdrake.pm_.c:307
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
+msgstr "Scríos Printéir"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
+#: ../../printer/printerdrake.pm_.c:310
+msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You can also decide here whether printers on remote machines should be "
-"automatically made available on this machine."
+#: ../../printer/printerdrake.pm_.c:313
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:329
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''"
+"\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 ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Quit without writing the partition table?"
-msgstr "Éalaigh gan an clár-ranna a scríobh?"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
+#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+#, fuzzy
+msgid "Printer auto-detection"
+msgstr "Scríos Printéir"
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:385
#, c-format
-msgid "On Hard Drive"
+msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../standalone.pm:1
+#: ../../printer/printerdrake.pm_.c:387
#, fuzzy, c-format
-msgid "Installing packages..."
-msgstr "Ag feistiál pacáiste %s"
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm_.c:391
+#, fuzzy, c-format
+msgid "Detected %s"
+msgstr "Pointe taca dublach %s"
+
+#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
+#: ../../printer/printerdrake.pm_.c:440
#, c-format
-msgid "Dutch"
+msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
+#: ../../printer/printerdrake.pm_.c:443
#, c-format
-msgid "Angola"
+msgid "USB printer \\/*%s"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:399
#, fuzzy, c-format
-msgid "The following packages need to be installed:\n"
-msgstr "Roghnaigh pacáistí ..."
+msgid "Network printer \"%s\", port %s"
+msgstr "Printéir Gréasán (lpd)"
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm_.c:401
#, fuzzy, c-format
-msgid "service setting"
-msgstr "suimiúil"
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Custom"
-msgstr "Socraithe"
+#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
+#, fuzzy
+msgid "Local Printer"
+msgstr "Printéir áitiúl"
-#: ../../lang.pm:1
-#, c-format
-msgid "Latvia"
+#: ../../printer/printerdrake.pm_.c:526
+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 ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "File is already used by another loopback, choose another one"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:530
+#, fuzzy
+msgid "You must enter a device or file name!"
+msgstr "Gaireas Printéir (URI)"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read-only"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:539
+#, fuzzy
+msgid "No printer found!"
+msgstr "Printéir áitiúl"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:548
+#, fuzzy
+msgid "Available printers"
+msgstr "Printéir áitiúl"
+
+#: ../../printer/printerdrake.pm_.c:552
msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
+"The following printer was auto-detected, if it is not the one you want to "
+"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No known driver"
+#: ../../printer/printerdrake.pm_.c:553
+msgid ""
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "1 MB"
-msgstr "1 MB"
+#: ../../printer/printerdrake.pm_.c:555
+msgid ""
+"The following printer was auto-detected. The configuration of the printer "
+"will work fully automatically. If your printer was not correctly detected or "
+"if you prefer a customized printer configuration, turn on \"Manual "
+"configuration\"."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:556
msgid ""
-"If it is not the one you want to configure, enter a device name/file name in "
-"the input line"
+"Here is a list of all auto-detected printers. Please choose the printer you "
+"want to set up. The configuration of the printer will work fully "
+"automatically. If your printer was not correctly detected or if you prefer a "
+"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../standalone/draksound:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:558
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 choose the port where your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Configure Local Area Network..."
-msgstr "Cumraigh gréasánú"
+#: ../../printer/printerdrake.pm_.c:559
+#, fuzzy
+msgid "Please choose the port where your printer is connected to."
+msgstr "Cén cinéal luchóg atá agat?"
-#: ../../../move/move.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:561
msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Launch the sound system on your machine"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:565
+#, fuzzy
+msgid "You must choose/enter a printer/device!"
+msgstr "Gaireas Printéir (URI)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Verify checksum of the suid/sgid files"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:584
+#, fuzzy
+msgid "Manual configuration"
+msgstr "Cumraigh Idirlíon"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Run some checks against the rpm database"
+#: ../../printer/printerdrake.pm_.c:633
+msgid "Remote lpd Printer Options"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Execute"
+#: ../../printer/printerdrake.pm_.c:634
+msgid ""
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Preparing printer database..."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:635
+#, fuzzy
+msgid "Remote host name"
+msgstr "ÓstAinm"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Information"
-msgstr "Taispeán Eolas"
+#: ../../printer/printerdrake.pm_.c:636
+#, fuzzy
+msgid "Remote printer name"
+msgstr "Scríos Printéir"
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "No network card"
-msgstr "ní fuaireathas cárta gréasánú"
+#: ../../printer/printerdrake.pm_.c:639
+msgid "Remote host name missing!"
+msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "3 buttons"
-msgstr "3 cnaipí"
+#: ../../printer/printerdrake.pm_.c:643
+#, fuzzy
+msgid "Remote printer name missing!"
+msgstr "Scríos Printéir"
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
+#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
#, fuzzy, c-format
-msgid "Which filesystem do you want?"
-msgstr "Cén rann atá uait?"
+msgid "Detected model: %s %s"
+msgstr "Pointe taca dublach %s"
+
+#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Nasc Printéir"
-# MT
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
#, c-format
-msgid "Malta"
-msgstr "Málta"
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
#, fuzzy, c-format
-msgid "Detailed information"
-msgstr "Eolas R-Phost"
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Ag dúnadh síos an ghreasán"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:795
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "Roghanna Printéir SMB (Fuinneoga 9x/NT)"
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
+#: ../../printer/printerdrake.pm_.c:796
+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 ""
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, c-format
-msgid "Configuring network"
-msgstr "Cumraigh gréasánú"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:797
msgid ""
-"This option will save files that have changed. Exact behavior depends on "
-"whether incremental or differential mode is used."
+" 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 ""
-#: ../../Xconfig/main.pm:1
-#, fuzzy, c-format
-msgid "Graphic Card"
-msgstr "Carta Grafach"
+#: ../../printer/printerdrake.pm_.c:799
+msgid "SMB server host"
+msgstr "freastalaí óstann SMB"
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "Resizing Windows partition"
-msgstr "Ag ríomhadh teorainn na córais-comhadlanna FAT"
+#: ../../printer/printerdrake.pm_.c:800
+msgid "SMB server IP"
+msgstr "IP freastalaí SMP"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cameroon"
-msgstr "Camarún"
+#: ../../printer/printerdrake.pm_.c:801
+msgid "Share name"
+msgstr "Comh. ainm"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Provider dns 1 (optional)"
-msgstr "Roghanna Printéir"
+#: ../../printer/printerdrake.pm_.c:804
+msgid "Workgroup"
+msgstr "Grupa na hOibre"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
+#: ../../printer/printerdrake.pm_.c:806
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Scríos Printéir"
+
+#: ../../printer/printerdrake.pm_.c:816
+msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Saami (swedish/finnish)"
+#: ../../printer/printerdrake.pm_.c:820
+msgid "Samba share name missing!"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Close"
-msgstr "Dún"
+#: ../../printer/printerdrake.pm_.c:826
+msgid "SECURITY WARNING!"
+msgstr ""
-#: ../../help.pm:1
+#: ../../printer/printerdrake.pm_.c:827
#, 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."
+"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/logdrake:1
-#, c-format
-msgid "Calendar"
-msgstr "Feilire"
-
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:837
#, c-format
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+"Set up your Windows server to make the printer available under the IPP "
+"protocol and set up printing from this machine with the \"%s\" connection "
+"type in Printerdrake.\n"
+"\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:840
msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
+"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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
-msgstr "An Íoslainn"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Network & Internet Configuration"
-msgstr "Cumraíocht Gréasánú"
+#: ../../printer/printerdrake.pm_.c:911
+msgid "NetWare Printer Options"
+msgstr "Roghanna Printéir NetWare"
-#: ../../common.pm:1
-#, c-format
-msgid "consolehelper missing"
+#: ../../printer/printerdrake.pm_.c:912
+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 ""
-#: ../../services.pm:1
-#, c-format
-msgid "stopped"
-msgstr "ag stoppadh"
+#: ../../printer/printerdrake.pm_.c:913
+msgid "Printer Server"
+msgstr "Freastalaí Printéir"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Whether the FPU has an irq vector"
+#: ../../printer/printerdrake.pm_.c:914
+msgid "Print Queue Name"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Expand Tree"
+#: ../../printer/printerdrake.pm_.c:919
+msgid "NCP server name missing!"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"The old \"%s\" driver is blacklisted.\n"
-"\n"
-"It has been reported to oops the kernel on unloading.\n"
-"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+#: ../../printer/printerdrake.pm_.c:923
+msgid "NCP queue name missing!"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
#, c-format
-msgid "Expert Mode"
-msgstr "Mód Saineolaí"
+msgid ", host \"%s\", port %s"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
#, c-format
-msgid "Printer options"
-msgstr "Roghanna Printéir"
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Local Network adress"
-msgstr "ní fuaireathas cárta gréasánú"
+msgid "Host \"%s\", port %s"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup your System files. (/etc directory)"
-msgstr "Droch comhad chúltaca"
+#: ../../printer/printerdrake.pm_.c:1030
+#, fuzzy
+msgid "TCP/Socket Printer Options"
+msgstr "Roghanna Printéir NetWare"
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Set the user umask."
-msgstr "Ainm úsáideora"
+#: ../../printer/printerdrake.pm_.c:1032
+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) into the input fields."
+msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1033
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 ?"
+"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 ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Samba Server"
-msgstr "Freastalaí NIS"
+#: ../../printer/printerdrake.pm_.c:1037
+#, fuzzy
+msgid "Printer host name or IP missing!"
+msgstr "Óstainm Printéir"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Australian Optus cable TV"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:1059
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Óstainm Printéir"
-#: ../../install_steps_newt.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
+msgid "Printer Device URI"
+msgstr "Gaireas Printéir (URI)"
+
+#: ../../printer/printerdrake.pm_.c:1108
msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+"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 ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Subnet:"
+#: ../../printer/printerdrake.pm_.c:1123
+msgid "A valid URI must be entered!"
msgstr ""
-# ZW
-#: ../../lang.pm:1
-#, c-format
-msgid "Zimbabwe"
-msgstr "An tSiombáib"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "When"
-msgstr "Rothar"
-
-#: ../../network/adsl.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1463
msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
+"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 ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Hour"
-msgstr "Uair"
+#: ../../printer/printerdrake.pm_.c:1464
+msgid "Name of printer"
+msgstr "Ainm Printéir"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Dara Freastalaí DNS"
+#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
+msgid "Description"
+msgstr "Cuntas"
-#: ../../lang.pm:1
-#, c-format
-msgid "Finland"
-msgstr "An Fhionlainn"
+#: ../../printer/printerdrake.pm_.c:1466
+msgid "Location"
+msgstr "Áit"
-#: ../../Xconfig/various.pm:1
-#, fuzzy, c-format
-msgid "Color depth: %s\n"
-msgstr "Scáileán VertRefresh: %s\n"
+#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
+msgid "Reading printer database..."
+msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It must be upgraded"
+#: ../../printer/printerdrake.pm_.c:1482
+msgid "Preparing printer database..."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Loading from floppy"
-msgstr "Aisig ó dhiosca flapach"
+#: ../../printer/printerdrake.pm_.c:1578
+#, fuzzy
+msgid "Your printer model"
+msgstr "Scríos Printéir"
-#: ../../standalone/drakclock:1
+#: ../../printer/printerdrake.pm_.c:1579
#, c-format
-msgid "Timezone - DrakClock"
+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 ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
+#, fuzzy
+msgid "The model is correct"
+msgstr "An bhfuil seo ceart?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Slovenia"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
+#: ../../printer/printerdrake.pm_.c:1589
+#, fuzzy
+msgid "Select model manually"
+msgstr "Scríos Printéir"
-#: ../../standalone/mousedrake:1
-#, fuzzy, c-format
-msgid "Mouse test"
-msgstr "Mouse Systems"
+#: ../../printer/printerdrake.pm_.c:1606
+#, fuzzy
+msgid "Printer model selection"
+msgstr "Nasc Printéir"
-#: ../../standalone/drakperm:1
-#, 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."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:1607
+#, fuzzy
+msgid "Which printer model do you have?"
+msgstr "Cén sort printéir atá ort?"
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1608
msgid ""
-"Enter a user\n"
-"%s"
+"\n"
+"\n"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Search the correct model in the list when the cursor is "
+"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1611
msgid ""
-"- PCI and USB devices: this lists the vendor, device, subvendor and "
-"subdevice PCI/USB ids"
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "ProgressBar color selection"
-msgstr "Nasc Printéir"
+#: ../../printer/printerdrake.pm_.c:1697
+#, fuzzy
+msgid "OKI winprinter configuration"
+msgstr "Cumraigh Idirlíon"
-#: ../../any.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1698
msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
+"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 ""
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hda"
-msgstr "/dev/hda"
-
-#: ../../help.pm:1
-#, c-format
-msgid "/dev/hdb"
-msgstr "/dev/hdb"
+#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
+#, fuzzy
+msgid "Lexmark inkjet configuration"
+msgstr "Cumraigh Idirlíon"
-#: ../../standalone/drakbug:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1719
msgid ""
-"Application Name\n"
-"or Full Path:"
+"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 ""
-#: ../../services.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1746
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 ""
-
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Radio support:"
+"To be able to print with your Lexmark inkjet and this configuration, you "
+"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Installing SANE packages..."
-msgstr "Ag feistiál pacáiste %s"
-
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP"
-msgstr "LDAP"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../diskdrake/removable.pm:1
-#, fuzzy, c-format
-msgid "Change type"
-msgstr "Athraigh cineál ranna"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", USB printer #%s"
+#: ../../printer/printerdrake.pm_.c:1749
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "SILO Installation"
-msgstr "Roghnaigh rang feistiú"
-
-#: ../../install_messages.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:1750
msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\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"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../standalone/drakclock:1
-#, c-format
-msgid "Enable Network Time Protocol"
+#: ../../printer/printerdrake.pm_.c:1972
+msgid ""
+"Printer default settings\n"
+"\n"
+"You should make sure that the page size and the ink type/printing mode (if "
+"available) and also the hardware configuration of laser printers (memory, "
+"duplex unit, extra trays) are set correctly. Note that with a very high "
+"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "paranoid"
-msgstr "Paranóid"
-
-#: ../../security/l10n.pm:1
+#: ../../printer/printerdrake.pm_.c:1981
#, c-format
-msgid "Do not send mails when unneeded"
+msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../printer/printerdrake.pm_.c:1985
#, c-format
-msgid "Your scanner(s) will not be available on the network."
+msgid "Option %s must be a number!"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:1989
#, c-format
-msgid "Send mail report after each backup to:"
+msgid "Option %s out of range!"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2028
#, 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"
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolution"
-msgstr "Réiteach"
+#: ../../printer/printerdrake.pm_.c:2051
+#, fuzzy
+msgid "Test pages"
+msgstr "Bain trial as arís"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2052
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."
+"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 ""
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-" Enabling su only from members of the wheel group or allow su from any user."
+#: ../../printer/printerdrake.pm_.c:2056
+msgid "No test pages"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "reconfigure"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2057
+#, fuzzy
+msgid "Print"
+msgstr "Printéir"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2114
+#, fuzzy
+msgid "Standard test page"
+msgstr "Uirlisí gnáth"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Shell timeout"
+#: ../../printer/printerdrake.pm_.c:2117
+msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Xinetd Service"
-msgstr "Freastalaí Printéir"
-
-#: ../../any.pm:1
-#, c-format
-msgid "access to network tools"
+#: ../../printer/printerdrake.pm_.c:2120
+msgid "Alternative test page (A4)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
+#: ../../printer/printerdrake.pm_.c:2122
+msgid "Photo test page"
msgstr ""
-#: ../advertising/03-software.pl:1
-#, 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."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2126
+#, fuzzy
+msgid "Do not print any test page"
+msgstr "Óstainm Printéir"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Here is a list of all auto-detected printers. "
+#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
+msgid "Printing test page(s)..."
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2159
#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"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
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm_.c:2163
msgid ""
-"Restore Selected\n"
-"Files"
-msgstr "Scrios ciú"
-
-#: ../../standalone/drakbackup:1
-#, 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."
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Please fill or check the field below"
+#: ../../printer/printerdrake.pm_.c:2170
+msgid "Did it work properly?"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
+#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
+#, fuzzy
+msgid "Raw printer"
+msgstr "Gan Printéir"
-#: ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:2216
#, c-format
-msgid "Boot Protocol"
+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 ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "Dioscaí LVM %s\n"
-
-#: ../../services.pm:1
-#, c-format
-msgid "On boot"
-msgstr "Ar Tús"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "Roghnaigh pacáistí ..."
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Bus identification"
-msgstr "Deimniú"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Vatican"
-msgstr "Áit"
-
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Please make a backup of your data first"
+#: ../../printer/printerdrake.pm_.c:2218
+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 ""
-#: ../../harddrake/data.pm:1
+#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
+#: ../../printer/printerdrake.pm_.c:2248
#, c-format
-msgid "ADSL adapters"
+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 ""
-#: ../../install_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
+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\n"
+"\n"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Eritrea"
+#: ../../printer/printerdrake.pm_.c:2228
+msgid ""
+"Here is a list of the available printing options for the current printer:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
#, c-format
-msgid "Boot ISO"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "Firmware needed"
+#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
+#: ../../printer/printerdrake.pm_.c:2255
+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/drakfont:1
-#, fuzzy, c-format
-msgid "Remove List"
-msgstr "Scríos Printéir"
-
-#: ../advertising/05-desktop.pl:1
-#, c-format
-msgid "A customizable environment"
+#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
+msgid ""
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../printer/printerdrake.pm_.c:2253
#, c-format
-msgid "Inuktitut"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2257
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."
+"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 ""
-# MA
-#: ../../lang.pm:1
+#: ../../printer/printerdrake.pm_.c:2261
#, c-format
-msgid "Morocco"
-msgstr "Maracó"
+msgid ""
+"\n"
+"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
+"a particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\".\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2271
#, fuzzy, c-format
-msgid "Which printer model do you have?"
-msgstr "Cén sort printéir atá ort?"
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Ag dúnadh síos an ghreasán"
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2272
#, fuzzy, c-format
-msgid "Add a new printer"
-msgstr "Gan Printéir"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " All of your selected data have been "
-msgstr ""
+msgid "Printing/Scanning on \"%s\""
+msgstr "Ag dúnadh síos an ghreasán"
-#: ../../lang.pm:1
-#, c-format
-msgid "Nepal"
-msgstr "Neipeál"
+#: ../../printer/printerdrake.pm_.c:2274
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Ag dúnadh síos an ghreasán"
-#: ../../standalone/drakTermServ:1
+#: ../../printer/printerdrake.pm_.c:2275
#, fuzzy, c-format
-msgid "<-- Delete"
-msgstr "Scríos"
+msgid "Printing on the printer \"%s\""
+msgstr "Ag dúnadh síos an ghreasán"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "cpu # "
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
+#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
+#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
+#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
+#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
+#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
+msgid "Close"
+msgstr "Dún"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "chunk size"
-msgstr "méid smután"
+#: ../../printer/printerdrake.pm_.c:2281
+#, fuzzy
+msgid "Print option list"
+msgstr "Roghanna Printéir"
-#: ../../security/help.pm:1
+#: ../../printer/printerdrake.pm_.c:2301
#, 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"
+"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"
-"Else only /etc/issue is allowed."
-msgstr ""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
+"Do not use \"scannerdrake\" for this 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
-#, c-format
-msgid "commands before booting, or 'c' for a command-line."
+#: ../../printer/printerdrake.pm_.c:2322
+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 ""
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Problems installing package %s"
-msgstr "Ag feistiál pacáiste %s"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "You will receive an alert if the load is higher than this value"
+#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
+#: ../../printer/printerdrake.pm_.c:2990
+msgid "Reading printer data..."
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Add a scanner manually"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
+#: ../../printer/printerdrake.pm_.c:2426
+#, fuzzy
+msgid "Transfer printer configuration"
+msgstr "Cumraigh Idirlíon"
-#: ../../standalone/printerdrake:1
+#: ../../printer/printerdrake.pm_.c:2365
#, c-format
-msgid "Refresh"
+msgid ""
+"You can copy the printer configuration which you have done for the spooler %"
+"s to %s, your current spooler. All the configuration data (printer name, "
+"description, location, connection type, and default option settings) is "
+"overtaken, but jobs will not be transferred.\n"
+"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Reload partition table"
-msgstr "Scriobh clár-ranna"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
+#: ../../printer/printerdrake.pm_.c:2368
+msgid ""
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Selected"
-msgstr "Scrios ciú"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Search for fonts in installed list"
+#: ../../printer/printerdrake.pm_.c:2370
+msgid ""
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
+#: ../../printer/printerdrake.pm_.c:2372
+msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Boot"
-msgstr "Root"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " and the CD is in the drive"
+#: ../../printer/printerdrake.pm_.c:2374
+msgid ""
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, fuzzy, c-format
-msgid "Tuner type:"
-msgstr "Athraigh cineál ranna"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2375
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 ""
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "\"Menu\" key"
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2376
msgid ""
"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Find the correct model in the list when a wrong model or "
-"\"Raw printer\" is highlighted."
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
msgstr ""
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Security Administrator:"
-msgstr "Scríos Printéir"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
+#: ../../printer/printerdrake.pm_.c:2379
+msgid "Do not transfer printers"
msgstr ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy succeeded"
+#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
+msgid "Transfer"
msgstr ""
-#: ../../../move/tree/mdk_totem:1
+#: ../../printer/printerdrake.pm_.c:2392
#, c-format
msgid ""
-"You can't use another CDROM when the following programs are running: \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 ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
+#: ../../printer/printerdrake.pm_.c:2400
+msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../printer/printerdrake.pm_.c:2405
#, c-format
msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Fonts copy"
-msgstr "Formadaigh flapach"
+#: ../../printer/printerdrake.pm_.c:2413
+#, fuzzy
+msgid "New printer name"
+msgstr "Gan Printéir"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: ../../printer/printerdrake.pm_.c:2416
#, c-format
-msgid "Automated"
+msgid "Transferring %s..."
msgstr ""
-#: ../../Xconfig/test.pm:1
-#, c-format
-msgid "Do you want to test the configuration?"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:2427
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
+"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 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Save packages selection"
-msgstr "Roghnú Grúpa Pacáistí"
-
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Actions"
+#: ../../printer/printerdrake.pm_.c:2437
+msgid "Refreshing printer data..."
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Remove the last item"
-msgstr "Ag formáidiú comhad 'loopback' %s"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
+#: ../../printer/printerdrake.pm_.c:2528
+#, fuzzy
+msgid "Configuration of a remote printer"
+msgstr "Cumraigh Printéir"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No net boot images created!"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2446
+#, fuzzy
+msgid "Starting network..."
+msgstr "Nasc Printéir"
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pptp"
-msgstr "úsáid pppoe"
+#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
+#: ../../printer/printerdrake.pm_.c:2485
+#, fuzzy
+msgid "Configure the network now"
+msgstr "Cumraigh gréasánú"
-#: ../../services.pm:1
-#, c-format
-msgid "Choose which services should be automatically started at boot time"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2480
+#, fuzzy
+msgid "Network functionality not configured"
+msgstr "Níl aon scáileán cumraithe"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check files/directories writable by everybody"
+#: ../../printer/printerdrake.pm_.c:2481
+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
-#, fuzzy, c-format
-msgid "Learn how to use this printer"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Configure the network now"
+#: ../../printer/printerdrake.pm_.c:2484
+#, fuzzy
+msgid "Go on without configuring the network"
msgstr "Cumraigh gréasánú"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose a mirror from which to get the packages"
+#: ../../printer/printerdrake.pm_.c:2518
+msgid ""
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network gets 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 ""
-#: ../../install_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2519
msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
+"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 ""
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Size: "
-msgstr "Méid: %s"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which sector do you want to move it to?"
-msgstr "Cén tescán ag a dteastaíonn uait é a bhogadh?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Bahamas"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2529
+#, fuzzy
+msgid "Restarting printing system..."
+msgstr "Scríos Printéir"
-#: ../../interactive/stdio.pm:1
-#, fuzzy, c-format
-msgid "Do you want to click on this button?"
-msgstr "Céard a theastaíonn uait a dhéanamh?"
+#: ../../printer/printerdrake.pm_.c:2568
+#, fuzzy
+msgid "high"
+msgstr "Árd"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Manual configuration"
-msgstr "Cumraigh Idirlíon"
+#: ../../printer/printerdrake.pm_.c:2568
+#, fuzzy
+msgid "paranoid"
+msgstr "Paranóid"
-#: ../../standalone/logdrake:1
+#: ../../printer/printerdrake.pm_.c:2569
#, c-format
-msgid "search"
-msgstr "faigh"
+msgid "Installing a printing system in the %s security level"
+msgstr ""
-#: ../../services.pm:1
+#: ../../printer/printerdrake.pm_.c:2570
#, 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."
+"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 ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Xpmac (installation display driver)"
+#: ../../printer/printerdrake.pm_.c:2604
+msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#: ../../printer/printerdrake.pm_.c:2605
#, c-format
-msgid "Zeroconf host name must not contain a ."
+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 ""
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse icmp echo."
+#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
+msgid "Checking installed software..."
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Syslog is the facility by which many daemons use to log messages\n"
-"to various system log files. It is a good idea to always run syslog."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2630
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "Réiteachaí: %s\n"
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
+#: ../../printer/printerdrake.pm_.c:2636
#, fuzzy, c-format
-msgid "Unknown/Others"
-msgstr "Gnáth"
+msgid "Installing %s ..."
+msgstr "Ag feistiál pacáiste %s"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "No TV Card detected!"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2685
+#, fuzzy
+msgid "Select Printer Spooler"
+msgstr "Nasc Printéir"
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Options"
-msgstr "Roghnachais"
+#: ../../printer/printerdrake.pm_.c:2686
+#, fuzzy
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Cén rann atá uait?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2720
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
+msgstr "Cumraigh printéir"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2731
+#, fuzzy
+msgid "Installing Foomatic..."
+msgstr "Ag feistiál pacáiste %s"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
+#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
+msgid "Printer options"
+msgstr "Roghanna Printéir"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Auto-detected"
+#: ../../printer/printerdrake.pm_.c:2810
+#, fuzzy
+msgid "Preparing Printerdrake..."
msgstr "Scríos Printéir"
-#: ../../standalone/drakpxe:1
-#, 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)."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
+#, fuzzy
+msgid "Configuring applications..."
+msgstr "Cumraigh printéir"
-#: ../../harddrake/sound.pm:1
-#, 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"
+#: ../../printer/printerdrake.pm_.c:2845
+#, fuzzy
+msgid "Would you like to configure printing?"
+msgstr "An dteastaìonn uait printéir a chumrú?"
+
+#: ../../printer/printerdrake.pm_.c:2857
+msgid "Printing system: "
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2915
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"
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:2916
msgid ""
-"Please choose the printer you want to set up or enter a device name/file "
-"name in the input line"
+"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 ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Refuse"
-msgstr "Tarrtháil"
-
-#: ../../standalone/draksec:1
-#, c-format
-msgid "LOCAL"
+#: ../../printer/printerdrake.pm_.c:2942
+msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "HFS"
-msgstr "HFS"
+#: ../../printer/printerdrake.pm_.c:2960
+#, fuzzy
+msgid "Change the printing system"
+msgstr "Cumraigh gréasánú"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
+#, fuzzy
+msgid "Normal Mode"
+msgstr "Luchóg ar bith"
-#: ../../fs.pm:1
-#, c-format
-msgid "Creating and formatting file %s"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
+#: ../../printer/printerdrake.pm_.c:3363
+#, fuzzy
+msgid "Do you want to configure another printer?"
+msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:3211
+#, fuzzy
+msgid "Modify printer configuration"
+msgstr "Cumraigh Idirlíon"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../printer/printerdrake.pm_.c:3213
+#, fuzzy, 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"
-msgstr ""
+"Printer %s\n"
+"What do you want to modify on this printer?"
+msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Choose an existing LVM to add to"
-msgstr "Roghnaigh RAID atá ann le méadú"
+#: ../../printer/printerdrake.pm_.c:3217
+msgid "Do it!"
+msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "xfs restart"
-msgstr "teorannaigh"
+#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
+#, fuzzy
+msgid "Printer connection type"
+msgstr "Nasc Printéir"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
+msgid "Printer name, description, location"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use the scanners on hosts: "
+#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
+msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Unselected All"
+#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
+msgid "Printer manufacturer, model"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "níl aon ranna saora ann"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Printer Management \n"
-msgstr "Gan Printéir"
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Domain Name Resolver"
-msgstr "Ainm Fearannas"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key (again)"
+#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
+msgid "Set this printer as the default"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Samba share name missing!"
+#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "True Type install done"
+#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Detection in progress"
-msgstr "Pointe taca dublach %s"
+#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
+#, fuzzy
+msgid "Print test pages"
+msgstr "Óstainm Printéir"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Whole Kernel -->"
-msgstr ""
+#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
+#, fuzzy
+msgid "Know how to use this printer"
+msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../network/netconnect.pm:1
+#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
+#, fuzzy
+msgid "Remove printer"
+msgstr "Scríos Printéir"
+
+#: ../../printer/printerdrake.pm_.c:3282
#, fuzzy, c-format
-msgid "modem"
-msgstr "Luchóg"
+msgid "Removing old printer \"%s\"..."
+msgstr "Scríos Printéir"
-#: ../../lang.pm:1
-#, c-format
-msgid "Welcome to %s"
-msgstr "Fáilte go %s"
+#: ../../printer/printerdrake.pm_.c:3307
+#, fuzzy
+msgid "Default printer"
+msgstr "Printéir áitiúl"
-#: ../../standalone/drakhelp:1
+#: ../../printer/printerdrake.pm_.c:3308
#, 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 "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Cur isteach diosca folamh sa dioscthiomant %s"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Bootsplash"
+#: ../../printer/printerdrake.pm_.c:3310
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
-msgstr "Níl aon gaireas ghreasán san do chorás!"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer sharing on hosts/networks: "
-msgstr "Printéir"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../printer/printerdrake.pm_.c:3312
#, 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>\". "
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../standalone/drakclock:1
+#: ../../printer/printerdrake.pm_.c:3313
#, c-format
-msgid "DrakClock"
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../modules/interactive.pm:1
-#, 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."
+#: ../../printer/printerdrake.pm_.c:3315
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:3317
#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
+msgid ""
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../printer/printerdrake.pm_.c:3318
#, c-format
msgid ""
-"\n"
-"- Daemon, %s via:\n"
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Cuba"
-msgstr "Cúba"
+#: ../../printer/printerdrake.pm_.c:3325
+#, fuzzy, c-format
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "October"
-msgstr "D. Fómhair"
+#: ../../printer/printerdrake.pm_.c:3329
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
+msgstr "Scríos Printéir"
-#: ../../lang.pm:1
+#: ../../raid.pm_.c:35
#, c-format
-msgid "Belize"
+msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Searching for new printers..."
-msgstr "Printéir áitiúl"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed"
+msgstr "teip ar 'mkraid'"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " (multi-session)"
+#: ../../raid.pm_.c:137
+msgid "mkraid failed (maybe raidtools are missing?)"
msgstr ""
-#: ../../any.pm:1
+#: ../../raid.pm_.c:153
#, c-format
-msgid "Kernel Boot Timeout"
+msgid "Not enough partitions for RAID level %d\n"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../security/main.pm_.c:36
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."
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
+"\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
+"\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\n"
+"\n"
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
+"\n"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid " Activate/Disable daily security check."
-msgstr ""
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Roghnaigh liebhéal slándáil"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-CD-R.\n"
-msgstr ""
+#: ../../security/main.pm_.c:77
+#, fuzzy, c-format
+msgid " (default value: %s)"
+msgstr "Gnáth"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
-msgstr ""
+#: ../../security/main.pm_.c:113
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Roghnaigh liebhéal slándáil"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr ""
+#: ../../security/main.pm_.c:115
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Scríos Printéir"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Hungarian"
-msgstr "Ungárais"
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "Network Options"
+msgstr "Roghachais modúil:"
-#: ../../network/isdn.pm:1
-#, c-format
+#: ../../security/main.pm_.c:128
+#, fuzzy
+msgid "System Options"
+msgstr "Roghachais modúil:"
+
+#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Automatic time synchronization (using NTP)"
+#: ../../security/main.pm_.c:177
+msgid "Periodic Checks"
msgstr ""
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid "Use my Windows partition"
-msgstr "Ag ríomhadh teorainn na córais-comhadlanna FAT"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "8 MB"
-msgstr "8 MB"
+#: ../../security/main.pm_.c:191
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Roghnaigh liebhéal slándáil"
-#: ../../any.pm:1
-#, c-format
-msgid "LDAP Server"
-msgstr "Freastalaí LDAP"
+#: ../../security/main.pm_.c:197
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Fan tamall, ag ullmhaigh feistiú"
-#: ../../services.pm:1
-#, 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."
+#: ../../services.pm_.c:19
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "Choose your country"
-msgstr "Roghnaigh mhéarchlár"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
+#: ../../services.pm_.c:20
+msgid "Anacron a periodic command scheduler."
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Standalone Tools"
+#: ../../services.pm_.c:21
+msgid ""
+"apmd is used for monitoring batery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Where"
-msgstr "Rothar"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "but not matching"
+#: ../../services.pm_.c:23
+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 ""
-#: ../../harddrake/sound.pm:1
-#, c-format
+#: ../../services.pm_.c:25
msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
+"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 ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Configuring PCMCIA cards..."
-msgstr "Cumraigh Cártaí PCMCIA"
-
-#: ../../common.pm:1
-#, c-format
-msgid "kdesu missing"
-msgstr "kdesu ar iarraidh"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "%s: %s requires a username...\n"
+#: ../../services.pm_.c:28
+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 ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Encryption key"
+#: ../../services.pm_.c:31
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
-
-#: ../../keyboard.pm:1
-#, c-format
+#: ../../services.pm_.c:33
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."
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Christmas Island"
+#: ../../services.pm_.c:34
+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 ""
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Automatic"
-msgstr "Uath-IP"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
+#: ../../services.pm_.c:38
+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
-#, c-format
-msgid "EIDE/SCSI channel"
+#: ../../services.pm_.c:40
+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
-#, c-format
-msgid "Set this printer as the default"
+#: ../../services.pm_.c:43
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Verify that %s is the correct path"
-msgstr "An bhfuil seo ceart?"
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "partition %s"
-msgstr "rann %s"
-
-#: ../../security/level.pm:1
-#, c-format
-msgid "Paranoid"
-msgstr "Paranóid"
-
-#: ../../any.pm:1
-#, c-format
-msgid "NIS"
-msgstr "NIS"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "<-- Del User"
+#: ../../services.pm_.c:45
+msgid "Automatic detection and configuration of hardware at boot."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Location on the bus"
+#: ../../services.pm_.c:46
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "No printer found!"
-msgstr "Printéir áitiúl"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "the vendor name of the device"
+#: ../../services.pm_.c:48
+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 ""
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Erase entire disk"
-msgstr "Glan diosca ina iomlán"
-
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid " (Default)"
-msgstr "Gnáth"
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Automatic reconfiguration"
-msgstr "Cumraigh ADSL"
-
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Receiving Speed:"
+#: ../../services.pm_.c:50
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Turks and Caicos Islands"
+#: ../../services.pm_.c:52
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "No Ip"
+#: ../../services.pm_.c:53
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
-#: ../../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
-#, c-format
-msgid "<- Previous"
+#: ../../services.pm_.c:55
+msgid ""
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Transfer Now"
+#: ../../services.pm_.c:57
+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
-#, c-format
-msgid "Set root password and network authentication methods"
+#: ../../services.pm_.c:60
+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
-#, c-format
-msgid "Toggle between flat and group sorted"
+#: ../../services.pm_.c:62
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Themes"
+#: ../../services.pm_.c:64
+msgid "Support the OKI 4w and compatible winprinters."
msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Options: %s"
-msgstr "Roghnachais: %s"
-
-#: ../../standalone/drakboot:1
-#, c-format
+#: ../../services.pm_.c:65
msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
+"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
-#, fuzzy, c-format
-msgid "OKI winprinter configuration"
-msgstr "Cumraigh Idirlíon"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Helena"
+#: ../../services.pm_.c:68
+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 ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Parallel port #%s"
-msgstr "Óstainm Printéir"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Security Level"
-msgstr "Roghnaigh liebhéal slándáil"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
+#: ../../services.pm_.c:71
msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
msgstr ""
-# SD
-#: ../../lang.pm:1
-#, c-format
-msgid "Sudan"
-msgstr "An tSúdáin"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish (qwertz layout)"
+#: ../../services.pm_.c:72
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Syria"
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../services.pm_.c:76
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?"
+"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 ""
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
-#, c-format
+#: ../../services.pm_.c:79
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"
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Portuguese"
+#: ../../services.pm_.c:81
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Loopback file name: "
+#: ../../services.pm_.c:83
+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 ""
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
msgstr ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Left Control key"
-msgstr "Scríos Printéir"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Serbia"
-msgstr "srathach"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Newzealand"
+#: ../../services.pm_.c:86
+msgid ""
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "This directory should remain within the root filesystem"
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Across Network"
+#: ../../services.pm_.c:89
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "CapsLock key"
+#: ../../services.pm_.c:115 ../../services.pm_.c:157
+msgid "Choose which services should be automatically started at boot time"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Install bootloader"
-msgstr "Feistigh cód tosnaithe"
+#: ../../services.pm_.c:127
+#, fuzzy
+msgid "Printing"
+msgstr "Printéir"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Select the memory size of your graphics card"
-msgstr "Roghnaigh an méid cuimhne atá id' charta grafachach"
+#: ../../services.pm_.c:128
+msgid "Internet"
+msgstr "Idirlíon"
-#: ../../security/help.pm:1
-#, 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))."
+#: ../../services.pm_.c:131
+msgid "File sharing"
msgstr ""
-#: ../../standalone.pm:1
-#, 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."
-msgstr ""
+#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
+#, fuzzy
+msgid "System"
+msgstr "Mód Coras"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Dynamic IP Address Pool:"
-msgstr ""
+#: ../../services.pm_.c:138
+#, fuzzy
+msgid "Remote Administration"
+msgstr "Scríos Printéir"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "LVM name?"
-msgstr "ainm LVM?"
+#: ../../services.pm_.c:146
+#, fuzzy
+msgid "Database Server"
+msgstr "Freastalaí Printéir"
-#: ../../standalone/service_harddrake:1
+#: ../../services.pm_.c:175
#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgid "Services: %d activated for %d registered"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Fuair %s %s comhéadan"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Post Install"
-msgstr "Feistiú"
-
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "The internal domain name"
-msgstr "Gan Printéir"
+#: ../../services.pm_.c:191
+msgid "Services"
+msgstr "Seirbishí"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ na Carta"
+#: ../../services.pm_.c:203
+msgid "running"
+msgstr "ag rith"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "logdrake"
-msgstr "logdrake"
+#: ../../services.pm_.c:203
+msgid "stopped"
+msgstr "ag stoppadh"
-#: ../../standalone.pm:1
-#, 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."
+#: ../../services.pm_.c:217
+msgid "Services and deamons"
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+#: ../../services.pm_.c:222
+msgid ""
+"No additional information\n"
+"about this service, sorry."
msgstr ""
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Roghnaigh na ranna atá le formáidiú"
+#: ../../services.pm_.c:229
+msgid "On boot"
+msgstr "Ar Tús"
-#: ../../bootloader.pm:1 ../../help.pm:1
-#, c-format
-msgid "LILO with text menu"
-msgstr "LILO le chlár teacs"
+#: ../../services.pm_.c:241
+#, fuzzy
+msgid "Start"
+msgstr "Clár Tosnú"
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "instantaneous"
-msgstr ""
+#: ../../services.pm_.c:241
+#, fuzzy
+msgid "Stop"
+msgstr "Teascán"
-#: ../../network/drakfirewall.pm:1
-#, c-format
-msgid "Everything (no firewall)"
+#: ../../share/advertising/01-thanks.pl_.c:9
+msgid "Thank you for choosing Mandrake Linux 9.0"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "You must specify a kernel image"
+#: ../../share/advertising/01-thanks.pl_.c:10
+msgid "Welcome to the Open Source world"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on USB"
+#: ../../share/advertising/01-thanks.pl_.c:11
+msgid ""
+"The success of MandrakeSoft is based upon the principle of Free Software. "
+"Your new operating system is the result of collaborative work on the part of "
+"the worldwide Linux Community"
msgstr ""
-#: ../../interactive/newt.pm:1
-#, fuzzy, c-format
-msgid "Do"
-msgstr "Críochnithe"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr ""
+#: ../../share/advertising/02-community.pl_.c:9
+#, fuzzy
+msgid "Get involved in the Free Software world"
+msgstr "Trialaigh an cumraíocht"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian AZERTY (old)"
+#: ../../share/advertising/02-community.pl_.c:10
+msgid "Want to know more about the Open Source community?"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Brazilian (ABNT-2)"
+#: ../../share/advertising/02-community.pl_.c:11
+msgid ""
+"To share your own knowledge and help build Linux tools, join the discussion "
+"forums you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address of host/network:"
+#: ../../share/advertising/03-internet.pl_.c:9
+msgid "Get the most from the Internet"
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../share/advertising/03-internet.pl_.c:10
msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
+"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"view animations with Mozilla and Konqueror, or read your mail and handle "
+"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../install_gtk.pm:1
-#, fuzzy, c-format
-msgid "System installation"
-msgstr "Roghnaigh rang feistiú"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Vincent and the Grenadines"
+#: ../../share/advertising/04-multimedia.pl_.c:9
+msgid "Discover the most up-to-date graphical and multimedia tools!"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Allow/Forbid reboot by the console user."
+#: ../../share/advertising/04-multimedia.pl_.c:10
+msgid "Push multimedia to its limits!"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Open"
-msgstr "/Comhad/_Oscail"
-
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Location of auto_install.cfg file"
-msgstr "Cruthaigh flapach bootáil"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Open Firmware Delay"
+#: ../../share/advertising/04-multimedia.pl_.c:11
+msgid ""
+"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Hungary"
-msgstr "An Ungáir"
+#: ../../share/advertising/05-games.pl_.c:9
+msgid "Games"
+msgstr "Cluichí"
-#: ../../lang.pm:1
-#, c-format
-msgid "New Zealand"
-msgstr "An Nua-Shéalainn"
+#: ../../share/advertising/05-games.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+"strategy, ..."
+msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Color configuration"
-msgstr "Cumraigh Idirlíon"
+#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+#, fuzzy
+msgid "Mandrake Control Center"
+msgstr "Bainteach le hIdirlíon"
-#: ../../security/level.pm:1
-#, c-format
+#: ../../share/advertising/06-mcc.pl_.c:10
msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
+"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "please choose the date to restore"
-msgstr "Cén cinéal luchóg atá agat?"
+#: ../../share/advertising/07-desktop.pl_.c:9
+#, fuzzy
+msgid "User interfaces"
+msgstr "Cláréadan Gréasán"
-#: ../../lang.pm:1
-#, c-format
-msgid "Netherlands Antilles"
+#: ../../share/advertising/07-desktop.pl_.c:10
+msgid ""
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Switching from ext2 to ext3"
+#: ../../share/advertising/08-development.pl_.c:9
+#, fuzzy
+msgid "Development simplified"
+msgstr "Forbairt"
+
+#: ../../share/advertising/08-development.pl_.c:10
+msgid "Mandrake Linux 9.0 is the ultimate development platform"
msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng"
+#: ../../share/advertising/08-development.pl_.c:11
+msgid ""
+"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
+"development environments"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Browse to new restore repository."
+#: ../../share/advertising/09-server.pl_.c:9
+msgid "Turn your machine into a reliable server"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
+"Transform your machine into a powerful Linux server with a few clicks of "
+"your mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "and %d unknown printers"
-msgstr "Gan Printéir"
+#: ../../share/advertising/10-mnf.pl_.c:9
+msgid "Optimize your security"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../share/advertising/10-mnf.pl_.c:10
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)"
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
+"This firewall product includes network features that allow you to fulfill "
+"all your security needs"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
+#: ../../share/advertising/10-mnf.pl_.c:12
+msgid "This product is available on MandrakeStore website"
msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "GB"
-msgstr "GB"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Please give a user name"
+#: ../../share/advertising/11-mdkstore.pl_.c:9
+msgid "The official MandrakeSoft store"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Enable CD Boot?"
+#: ../../share/advertising/11-mdkstore.pl_.c:10
+msgid ""
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Simply reboot"
+#: ../../share/advertising/12-mdkstore.pl_.c:9
+msgid "Strategic partners"
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid " enter `void' for void entry"
+#: ../../share/advertising/12-mdkstore.pl_.c:10
+msgid ""
+"MandrakeSoft works alongside a selection of companies offering professional "
+"solutions compatible with Mandrake Linux. A list of these partners is "
+"available on the MandrakeStore"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
+#: ../../share/advertising/13-mdkcampus.pl_.c:9
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "January"
-msgstr "Éanair"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Password history length"
-msgstr "Tá an pasfhocal seo ro-shimplí"
-
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Winmodem connection"
-msgstr "Cumraigh nasc ghréasán"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../share/advertising/13-mdkcampus.pl_.c:10
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."
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Now, you can run xawtv (under X Window!) !\n"
+#: ../../share/advertising/13-mdkcampus.pl_.c:11
+msgid "Certify yourself on Linux"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Nil dothain spas malartu chun insealbhu, chuir leis an spas"
-
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "%s on %s"
-msgstr "Poirt"
-
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Allow/Forbid remote root login."
-msgstr "Scríos Printéir"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../share/advertising/13-mdkcampus.pl_.c:12
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."
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create log file!"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
-#, c-format
-msgid "Which is your timezone?"
-msgstr "Cén ceann do chrois ama"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use .backupignore files"
-msgstr "Droch comhad chúltaca"
-
-# GN
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea"
-msgstr "An Ghuine"
-
-#: ../../network/tools.pm:1
-#, fuzzy, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Cén diosca ag a dteastaíonn uait é a bhogadh?"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "South Georgia and the South Sandwich Islands"
-msgstr ""
+#: ../../share/advertising/14-mdkexpert.pl_.c:9
+#, fuzzy
+msgid "Become a MandrakeExpert"
+msgstr "Saineolaí"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Japan (broadcast)"
+#: ../../share/advertising/14-mdkexpert.pl_.c:10
+msgid ""
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../share/advertising/14-mdkexpert.pl_.c:11
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."
+"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 ""
-# FIXME
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr "Mósaimbic"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
-msgstr "Dealbh"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
+#, fuzzy
+msgid "MandrakeExpert Corporate"
+msgstr "Saineolaí"
-#: ../../../move/tree/mdk_totem:1
-#, c-format
-msgid "Kill those programs"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please choose what you want to backup"
-msgstr "Roghnaight do theangam le do thoil."
-
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "256 colors (8 bits)"
-msgstr "256 dath (8 giotáin)"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Read-write"
-msgstr "Léamh-Scríobh"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Size: %s\n"
-msgstr "Méid: %s\n"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Hostname: "
-msgstr "Ainm úsáideora"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Add a rule"
-msgstr "Suimigh Modúil"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Méid smután %s\n"
-
-#: ../advertising/02-community.pl:1
-#, c-format
-msgid "Build the future of Linux!"
+#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+msgid ""
+"All incidents will be followed up by a single qualified MandrakeSoft "
+"technical expert."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Local Printer"
-msgstr "Printéir áitiúl"
-
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
+#: ../../share/advertising/17-mdkclub.pl_.c:9
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
msgstr ""
-#: ../../standalone.pm:1
-#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+#: ../../share/advertising/17-mdkclub.pl_.c:10
+msgid ""
+"MandrakeClub and Mandrake Corporate Club were created for business and "
+"private users of Mandrake Linux who would like to directly support their "
+"favorite Linux distribution while also receiving special privileges. If you "
+"enjoy our products, if your company benefits from our products to gain a "
+"competititve edge, if you want to support Mandrake Linux development, join "
+"MandrakeClub!"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "ADSL connection"
-msgstr "Nasc LAN"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No configuration, please click Wizard or Advanced.\n"
+#: ../../standalone.pm_.c:21
+msgid ""
+"This program is free software; you can redistribute it and/or modify\n"
+"it under the terms of the GNU General Public License as published by\n"
+"the Free Software Foundation; either version 2, or (at your option)\n"
+"any later version.\n"
+"\n"
+"This program is distributed in the hope that it will be useful,\n"
+"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
+"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
+"GNU General Public License for more details.\n"
+"\n"
+"You should have received a copy of the GNU General Public License\n"
+"along with this program; if not, write to the Free Software\n"
+"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Error!"
-msgstr "Earráid"
-
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "cable connection detected"
-msgstr "Cumraigh nasc ghréasán"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Permission denied transferring %s to %s"
+#: ../../standalone.pm_.c:40
+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 name.\n"
msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Report Bug"
-msgstr "/_Tuairaisc Fabht"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Dominica"
+#: ../../standalone.pm_.c:51
+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 ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Resize"
-msgstr "Athméidigh"
-
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Resolution: %s\n"
-msgstr "Réiteachaí: %s\n"
-
-#: ../../install2.pm:1
-#, c-format
+#: ../../standalone.pm_.c:57
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)"
+"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 ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone.pm_.c:68
msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+"[OPTIONS]...\n"
+"\t --debug print debugging information"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "The following packages are going to be removed"
+#: ../../standalone.pm_.c:70
+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)"
msgstr ""
-#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
-#, c-format
-msgid "Connect to the Internet"
-msgstr ""
+#: ../../standalone.pm_.c:82
+#, fuzzy
+msgid "[keyboard]"
+msgstr "Eocharclár"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Use existing partitions"
+#: ../../standalone.pm_.c:83
+msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Canadian (Quebec)"
+#: ../../standalone.pm_.c:84
+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 ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Gaireas luchóige: %s\n"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Reselect correct fonts"
+#: ../../standalone.pm_.c:93
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone.pm_.c:94
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."
+"[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 ""
-#: ../advertising/13-mdkexpert_corporate.pl:1
-#, fuzzy, c-format
-msgid "MandrakeExpert Corporate"
-msgstr "Saineolaí"
+#: ../../standalone.pm_.c:99
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
+msgstr ""
-#: ../../standalone.pm:1
-#, c-format
+#: ../../standalone.pm_.c:100
msgid ""
" [everything]\n"
" XFdrake [--noauto] monitor\n"
" XFdrake resolution"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Write protection"
-msgstr "Scríos Printéir"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "You've not selected any font"
-msgstr "Scrios ciú"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Language"
-msgstr "Roghnaigh do theanga"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer model selection"
-msgstr "Nasc Printéir"
-
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone.pm_.c:114
#, c-format
msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "ISDN adapters"
-msgstr "Carta ISDN inmheánamach"
-
-#: ../../common.pm:1
-#, c-format
-msgid "%d seconds"
-msgstr "%d siocand"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
-#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Cur isteach diosca folamh sa dioscthiomant %s"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A valid URI must be entered!"
-msgstr ""
+#: ../../standalone.pm_.c:168
+#, fuzzy
+msgid "Installing packages..."
+msgstr "Ag feistiál pacáiste %s"
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
-msgstr ""
+#: ../../standalone/XFdrake_.c:138
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Éirigh as le do thoil agus Crtl-Alt-BackSpace a úsáid"
-#: ../../standalone/drakgw:1
+#: ../../standalone/XFdrake_.c:142
#, c-format
-msgid "Re-configure interface and DHCP server"
+msgid "Please relog into %s to activate the changes"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
-msgid "Sound configuration"
-msgstr "cumraíocht"
+#: ../../standalone/drakTermServ_.c:239
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Cumraigh Idirlíon"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Photo test page"
-msgstr ""
+#: ../../standalone/drakTermServ_.c:253
+#, fuzzy
+msgid "Enable Server"
+msgstr "Freastalaí Printéir"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Custom disk partitioning"
-msgstr ""
+#: ../../standalone/drakTermServ_.c:260
+#, fuzzy
+msgid "Disable Server"
+msgstr "Freastalaí Printéir"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter Printer Name and Comments"
-msgstr ""
+#: ../../standalone/drakTermServ_.c:268
+#, fuzzy
+msgid "Start Server"
+msgstr "Freastalaí NIS"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
-msgstr "Níl aon gaireas ghreasán san do chorás!"
+#: ../../standalone/drakTermServ_.c:275
+#, fuzzy
+msgid "Stop Server"
+msgstr "Freastalaí NIS"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "You don't have any winmodem"
+#: ../../standalone/drakTermServ_.c:283
+msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "type: %s"
-msgstr "Cineál: "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTY)"
-msgstr "Slóbaicis (QWERTY)"
-
-#: ../../standalone/drakbackup:1
-#, 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."
+#: ../../standalone/drakTermServ_.c:288
+msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/draksound:1
-#, fuzzy, c-format
-msgid "No Sound Card detected!"
-msgstr "Cumraigh ADSL"
-
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Mouse Port"
-msgstr "Gaireas luchóige"
+#: ../../standalone/drakTermServ_.c:294
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Suimigh úsáideoir"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check for unsecured accounts"
+#: ../../standalone/drakTermServ_.c:299
+msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:328
msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Ftp Server"
-msgstr "Freastalaí NIS"
-
-# UG
-#: ../../lang.pm:1
-#, c-format
-msgid "Uganda"
-msgstr "Uganda"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "%s fonts conversion"
+"\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
+"\n"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "the type of bus on which the mouse is connected"
-msgstr "2 cnaipí"
-
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:332
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"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\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"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:365
+msgid ""
+"drakTermServ Overview\n"
+"\t\t\t \n"
+" - Create Etherboot Enabled Boot Images:\n"
+" \t\tTo boot a kernel via etherboot, a special kernel/initrdrd image "
+"must be created.\n"
+" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical interface\n"
+" \t\tto help manage/customize these images.\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"
+" - Maintain /etc/dhcpd.conf:\n"
+" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP address\n"
+" \t\tand net boot images to the machine. drakTermServ helps create/"
+"remove these entries.\n"
+"\t\t\t\n"
+" \t\t(PCI cards may omit the image - etherboot will request the "
+"correct image. You should\n"
+" \t\talso consider that when etherboot looks for the images, it "
+"expects names like\n"
+" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:\n"
+" \t\t\n"
+"\t\t\t\thost curly {\n"
+"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+"\t\t\t\t\tfixed-address 192.168.192.3;\n"
+"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
+"nbi\";\n"
+"\t\t\t\t}\n"
+"\t\t\t\n"
+"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
+"entry for\n"
+"\t\t\ta client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"*/\n"
+"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run most\n"
+"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
+"$IP=client_ip\\$\\$ is\n"
+"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are modified\n"
+"\t\t\tif thin clients are used, to enable xdmcp. Since there are security "
+"issues in using xdmcp,\n"
+"\t\t\thosts.deny and hosts.allow are modified to limit access to the local "
+"subnet.\n"
+"\t\t\t\n"
+"\t\t\tNote: You must stop/start the server after adding or changing "
+"clients.\n"
+"\t\t\t\n"
+" - Maintain /etc/exports:\n"
+" \t\tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \t\tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \t\tdiskless clients.\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"
+" \t\tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home SUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+"\t\t\tWith SUBNET/MASK being defined for your network.\n"
+" \t\t\n"
+" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
+" \t\tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
+"\\$. drakTermServ helps\n"
+" \t\tin this respect by adding or removing system users from this "
+"file.\n"
+"\n"
+" - Per client /etc/X11XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future drakTermServ "
+"will help create these\n"
+" \t\tfiles.\n"
"\n"
-" * \"%s\": If you want to configure your Internet or local network access\n"
-"now.\n"
+" - Per client system configuration files:\n"
+" \t\tThrough clusternfs, each diskless client can have it's own "
+"unique configuration files\n"
+" \t\ton the root filesystem of the server. In the future, "
+"drakTermServ can help create files\n"
+" \t\tsuch as /etc/modules.conf, /etc/sysconfig/mouse, /etc/sysconfig/"
+"keyboard on a per-client\n"
+" \t\tbasis.\n"
"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tdrakTermServ will configure this file to work in conjunction "
+"with the images created by\n"
+" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to each\n"
+" \t\tdiskless client.\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"
+" \t\tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \t\tservice tftp\n"
+" \t\t(\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+" \t\t\n"
+" \t\tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \t\tputs it's images.\n"
"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click that\n"
-"button. This should be reserved to advanced users.\n"
+" - Create etherboot floppies/CDs:\n"
+" \t\tThe diskless client machines need either ROM images on the NIC, "
+"or a boot floppy\n"
+" \t\tor CD to initate the boot sequence. drakTermServ will help "
+"generate these images,\n"
+" \t\tbased on the NIC in the client machine.\n"
+" \t\t\n"
+" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
+"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \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 ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Comoros"
+#: ../../standalone/drakTermServ_.c:488
+msgid "Boot Floppy"
msgstr ""
-# ms
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "May"
-msgstr "Malaeis"
-
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Yaboot mode"
-msgstr "Mód Yaboot"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Luchóg Gnáth 3-cnaipe"
-
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "USA (cable)"
+#: ../../standalone/drakTermServ_.c:490
+msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakboot:1
-#, c-format
-msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+#: ../../standalone/drakTermServ_.c:559
+msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Select another media to restore from"
-msgstr "Cén cinéal luchóg atá agat?"
+#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
+msgid "This will take a few minutes."
+msgstr ""
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Software Manager"
-msgstr "Comh. ainm"
+#: ../../standalone/drakTermServ_.c:573
+msgid "No kernel selected!"
+msgstr ""
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Re-submit"
+#: ../../standalone/drakTermServ_.c:576
+msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "CD in place - continue."
+#: ../../standalone/drakTermServ_.c:587
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Cumraigh ADSL"
+
+#: ../../standalone/drakTermServ_.c:590
+msgid "Build All Kernels -->"
msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "KB"
-msgstr "KB"
+#: ../../standalone/drakTermServ_.c:604
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Scríos"
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Network & Internet"
-msgstr "Cláréadan Gréasán"
+#: ../../standalone/drakTermServ_.c:611
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Roghnaigh Comhad"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
+#: ../../standalone/drakTermServ_.c:668
+msgid ""
+"!!! Indicates the password in the system database is different than\n"
+" the one in the Terminal Server database.\n"
+"Delete/re-add the user to the Terminal Server to enable login."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Net Boot Images"
+#: ../../standalone/drakTermServ_.c:673
+#, fuzzy
+msgid "Add User -->"
+msgstr "Suimigh úsáideoir"
+
+#: ../../standalone/drakTermServ_.c:681
+msgid "<-- Del User"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakTermServ_.c:720
#, fuzzy, c-format
-msgid "Sharing of local scanners"
-msgstr "Printéir áitiúl"
-
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
-msgstr ""
+msgid "type: %s"
+msgstr "Cineál: "
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Detect again USB key"
+#: ../../standalone/drakTermServ_.c:753
+msgid "No net boot images created!"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Services and deamons"
+#: ../../standalone/drakTermServ_.c:773
+msgid "Thin Client"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Remote host name missing!"
+#: ../../standalone/drakTermServ_.c:775
+msgid "Allow Thin Clients"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "with /usr"
+#: ../../standalone/drakTermServ_.c:778
+msgid "Add Client -->"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Network"
-msgstr "Cláréadan Gréasán"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
+#: ../../standalone/drakTermServ_.c:821
+msgid "<-- Edit Client"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "This password is too simple"
-msgstr "Tá an pasfhocal seo ro-shimplí"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Chkconfig obey msec rules"
-msgstr "Cumraigh seirbhisí"
+#: ../../standalone/drakTermServ_.c:837
+#, fuzzy
+msgid "Delete Client"
+msgstr "Scríos"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Slovakian (QWERTZ)"
-msgstr "Slóbaicis (QWERTZ)"
+#: ../../standalone/drakTermServ_.c:843
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Ag cumraigh IDE"
-#: ../advertising/06-development.pl:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:876
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."
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "No devices found"
-msgstr "Printéir áitiúl"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Truly minimal install (especially no urpmi)"
+#: ../../standalone/drakTermServ_.c:894
+msgid "Subnet:"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use daemon"
-msgstr "Ainm úsáideora"
-
-#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakconnect:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Authentication"
-msgstr "Deimniú"
+#: ../../standalone/drakTermServ_.c:901
+msgid "Netmask:"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+#: ../../standalone/drakTermServ_.c:908
+msgid "Routers:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Additional CUPS servers: "
-msgstr "IP freastalaí SMP"
+#: ../../standalone/drakTermServ_.c:915
+msgid "Subnet Mask:"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakTermServ_.c:922
+msgid "Broadcast Address:"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Where do you want to mount %s?"
-msgstr "Céard a theastaíonn uait a dhéanamh?"
+#: ../../standalone/drakTermServ_.c:929
+#, fuzzy
+msgid "Domain Name:"
+msgstr "Ainm Fearannas"
-#: ../../lang.pm:1
-#, c-format
-msgid "Algeria"
-msgstr "An Algéir"
+#: ../../standalone/drakTermServ_.c:937
+#, fuzzy
+msgid "Name Servers:"
+msgstr "Freastalaí NIS"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Via Network"
-msgstr "Aisig ó comhad"
+#: ../../standalone/drakTermServ_.c:948
+msgid "IP Range Start:"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
+#: ../../standalone/drakTermServ_.c:949
+msgid "IP Range End:"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Initrd-size"
-msgstr "Méid-Initrd"
+#: ../../standalone/drakTermServ_.c:1001
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Éirigh as cumraíocht"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakTermServ_.c:1002
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."
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tBackups use tar and gzip\n"
+#: ../../standalone/drakTermServ_.c:1005
+msgid "Dynamic IP Address Pool:"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Set as default"
-msgstr "gnáth"
+#: ../../standalone/drakTermServ_.c:1018
+msgid "Write Config"
+msgstr ""
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
-msgstr "2 MB"
+#: ../../standalone/drakTermServ_.c:1120
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configured on this machine"
-msgstr "Cumraigh luchóg"
+#: ../../standalone/drakTermServ_.c:1124
+msgid "Couldn't access the floppy!"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Control keys simultaneously"
+#: ../../standalone/drakTermServ_.c:1126
+msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakhelp:1
+#: ../../standalone/drakTermServ_.c:1129
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Níl dioscthiománt flapach ar fáil"
+
+#: ../../standalone/drakTermServ_.c:1138
#, c-format
-msgid " --help - display this help \n"
+msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone.pm:1
-#, 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"
+#: ../../standalone/drakTermServ_.c:1140
+msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Setting Default Printer..."
-msgstr "Printéir áitiúl"
+#: ../../standalone/drakTermServ_.c:1159
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Interface %s (using module %s)"
+#: ../../standalone/drakTermServ_.c:1451
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Generating preview ..."
-msgstr "Scríos Printéir"
+#: ../../standalone/drakautoinst_.c:40
+#, fuzzy
+msgid "Error!"
+msgstr "Earráid"
-#: ../../network/network.pm:1
+#: ../../standalone/drakautoinst_.c:41
#, 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 "I can't find needed image file `%s'."
msgstr ""
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "ignore"
-msgstr "Ar bith"
+#: ../../standalone/drakautoinst_.c:43
+#, fuzzy
+msgid "Auto Install Configurator"
+msgstr "Cumraíocht Iar-feistú"
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:44
msgid ""
-"Allow/Forbid X connections:\n"
+"You are about to configure an Auto Install floppy. This feature is somewhat "
+"dangerous and must be used circumspectly.\n"
"\n"
-"- ALL (all connections are allowed),\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"
-"- LOCAL (only connection from local machine),\n"
+"For maximum safety, the partitioning and formatting will never be performed "
+"automatically, whatever you chose during the install of this computer.\n"
"\n"
-"- NONE (no connection)."
+"Do you want to continue?"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device on parallel port #%s"
+#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
+msgid "manual"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "serial"
-msgstr "srathach"
+#: ../../standalone/drakautoinst_.c:62
+#, fuzzy
+msgid "replay"
+msgstr "Athlódaigh"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "DVD-ROM"
-msgstr ""
+#: ../../standalone/drakautoinst_.c:66
+#, fuzzy
+msgid "Automatic Steps Configuration"
+msgstr "Cumraíocht Stíl Tosnú"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Latin\" layout)"
+#: ../../standalone/drakautoinst_.c:67
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
msgstr ""
-#: ../advertising/09-mdksecure.pl:1
-#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
-msgstr ""
+#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Cruthaigh flapach bootáil"
-#: ../../modules/interactive.pm:1
-#, c-format
+#: ../../standalone/drakautoinst_.c:139
msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+"\n"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Kenya"
-msgstr "An Chéinia"
+#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
+#: ../../standalone/scannerdrake_.c:117
+msgid "Congratulations!"
+msgstr "Comhghairdeas!"
-#: ../../diskdrake/hd_gtk.pm:1
-#, c-format
-msgid "Use ``Unmount'' first"
+#: ../../standalone/drakautoinst_.c:235
+msgid ""
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Installing mtools packages..."
-msgstr "Ag feistiál pacáiste %s"
-
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "You must specify a root partition"
-msgstr "Níl aon ranna agat!"
-
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "first step creation"
-msgstr "Trialaigh an cumraíocht"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Both Shift keys simultaneously"
-msgstr ""
+#: ../../standalone/drakautoinst_.c:273
+#, fuzzy
+msgid "Auto Install"
+msgstr "Feistiú"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-msgstr ""
+#: ../../standalone/drakautoinst_.c:343
+#, fuzzy
+msgid "Add an item"
+msgstr "Suimigh úsáideoir"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Select a scanner model"
-msgstr "Roghnaigh carta grafachach"
+#: ../../standalone/drakautoinst_.c:350
+#, fuzzy
+msgid "Remove the last item"
+msgstr "Ag formáidiú comhad 'loopback' %s"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
+#: ../../standalone/drakbackup_.c:580
+msgid "Cron not available yet as non-root"
msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "LPRng - LPR New Generation"
+#: ../../standalone/drakbackup_.c:690
+msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Drakbackup Configuration"
-msgstr "Cumraíocht Gréasánú"
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Save as.."
-msgstr "Sábháil mar..."
+#: ../../standalone/drakbackup_.c:691
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
-#: ../../lang.pm:1
-#, c-format
-msgid "Korea (North)"
+#: ../../standalone/drakbackup_.c:692
+msgid "INFO"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakbackup_.c:704
msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+"\n"
+" DrakBackup Report \n"
+"\n"
msgstr ""
-#: ../../install_gtk.pm:1
-#, fuzzy, c-format
-msgid "System configuration"
-msgstr "Cumraigh Idirlíon"
-
-#: ../../any.pm:1 ../../security/l10n.pm:1
-#, c-format
-msgid "Autologin"
-msgstr "Uath-Logann"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Domain Admin Password"
+#: ../../standalone/drakbackup_.c:705
+msgid ""
+"\n"
+" DrakBackup Daemon Report\n"
+"\n"
+"\n"
msgstr ""
-#: ../advertising/05-desktop.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:709
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, ..."
+"\n"
+" DrakBackup Report Details\n"
+"\n"
+"\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Configuring printer ..."
-msgstr "Cumraigh printéir"
+#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
+#: ../../standalone/drakbackup_.c:859
+#, fuzzy
+msgid "Total progess"
+msgstr "Bain trial as arís"
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../standalone/drakbackup_.c:785
#, 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)"
+"%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 ""
-#: ../../common.pm:1
-#, c-format
-msgid "MB"
-msgstr "MB"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run some checks against the rpm database."
+#: ../../standalone/drakbackup_.c:794
+msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup_.c:801
#, c-format
-msgid "Virgin Islands (British)"
+msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup_.c:818
#, c-format
-msgid "Bermuda"
+msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakbackup_.c:819
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Gan pasfhocal"
+
+#: ../../standalone/drakbackup_.c:820
#, c-format
-msgid "click here if you are sure."
+msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:821
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Earráid ag oscailt %s do scríobh: %s"
+
+#: ../../standalone/drakbackup_.c:824
#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+msgid "%s not responding"
msgstr ""
-#: ../../help.pm:1
+#: ../../standalone/drakbackup_.c:828
#, 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"
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"ssh -i %s %s\\@%s\n"
"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
+"without being prompted for a password."
msgstr ""
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, fuzzy, c-format
-msgid "Remove"
-msgstr "Scríos Printéir"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Lesotho"
+#: ../../standalone/drakbackup_.c:873
+msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "utopia 25"
+#: ../../standalone/drakbackup_.c:877
+msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Pipe job into a command"
+#: ../../standalone/drakbackup_.c:898
+msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Remove system config files"
-msgstr "Ag formáidiú comhad 'loopback' %s"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Cote d'Ivoire"
+#: ../../standalone/drakbackup_.c:902
+msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
+#: ../../standalone/drakbackup_.c:906
+msgid "Not erasable media!"
msgstr ""
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/drakgw:1
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Yes"
-msgstr "Tá"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "Which protocol do you want to use?"
+#: ../../standalone/drakbackup_.c:945
+msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore Progress"
-msgstr "Aisig ó comhad"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Estonia"
+#: ../../standalone/drakbackup_.c:1033
+msgid "Permission problem accessing CD."
msgstr ""
-#: ../../partition_table.pm:1
+#: ../../standalone/drakbackup_.c:1060
#, 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 "No tape in %s!"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
+#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
+msgid "Backup system files..."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Channel"
-msgstr "Cealaigh"
+#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
+#, fuzzy
+msgid "Hard Disk Backup files..."
+msgstr "Droch comhad chúltaca"
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
-#, c-format
-msgid "Add"
-msgstr "Suim"
+#: ../../standalone/drakbackup_.c:1236
+#, fuzzy
+msgid "Backup User files..."
+msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid " Error while sending mail. \n"
-msgstr "Earráid ag léamh comhad %s"
+#: ../../standalone/drakbackup_.c:1237
+msgid "Hard Disk Backup Progress..."
+msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Keyboard"
-msgstr "Eocharclár"
+#: ../../standalone/drakbackup_.c:1290
+#, fuzzy
+msgid "Backup Other files..."
+msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:1296
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Droch comhad chúltaca"
+
+#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
#, c-format
msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-#: ../../network/network.pm:1
+#: ../../standalone/drakbackup_.c:1319
#, c-format
msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Roghnaigh na ranna atá le formáidiú"
-
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "Please wait, setting security level..."
-msgstr "Roghnaigh liebhéal slándáil"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Ag cumrú gléas gréasánú %s"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "activated"
+#: ../../standalone/drakbackup_.c:1322
+msgid ""
+"\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
-msgstr "Cén cinéal luchóg atá agat?"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Finding packages to upgrade..."
-msgstr "Ag cúrdach pacáistí le húasgrádú"
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Mount point: "
+#: ../../standalone/drakbackup_.c:1340
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "parse all fonts"
+#: ../../standalone/drakbackup_.c:1345
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../security/help.pm:1
-#, fuzzy, c-format
-msgid "Allow/Forbid direct root login."
-msgstr "Scríos Printéir"
+#: ../../standalone/drakbackup_.c:1354
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Earráid ag léamh comhad %s"
-#: ../../security/help.pm:1
-#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
+#: ../../standalone/drakbackup_.c:1380
+msgid "Can't create catalog!"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "With X"
-msgstr "Fan tamall"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "Multi-head configuration"
-msgstr "Cumraíochti gach cinn iolrach"
+#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
+#: ../../standalone/drakfont_.c:946
+#, fuzzy
+msgid "File Selection"
+msgstr "Roghnú Grúpa Pacáistí"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "No browser available! Please install one"
+#: ../../standalone/drakbackup_.c:1529
+msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../Xconfig/main.pm:1
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:1573
msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
"\n"
-"%s"
-msgstr "Coimead an cumraíocht IP atá ann"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
+"Please check all options that you need.\n"
msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1574
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)."
+"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Domain name"
-msgstr "Ainm Fearannas"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Sharing of local printers"
-msgstr "Printéir áitiúl"
+#: ../../standalone/drakbackup_.c:1575
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Droch comhad chúltaca"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
+#: ../../standalone/drakbackup_.c:1576
+msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Available printers"
-msgstr "Printéir áitiúl"
+#: ../../standalone/drakbackup_.c:1577
+msgid "Do not include critical files (passwd, group, fstab)"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "NO"
+#: ../../standalone/drakbackup_.c:1578
+msgid ""
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Empty"
-msgstr "Folamh"
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Please check all users that you want to include in your backup."
+msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "text width"
+#: ../../standalone/drakbackup_.c:1622
+msgid "Do not include the browser cache"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Where do you want to mount device %s?"
+#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
+msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The default lease (in seconds)"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
+#, fuzzy
+msgid "Remove Selected"
+msgstr "Scrios ciú"
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr "Cumraigh nasc ghréasán"
+#: ../../standalone/drakbackup_.c:1679
+#, fuzzy
+msgid "Windows (FAT32)"
+msgstr "Dealaigh Windows(TM)"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Interface \"%s\""
-msgstr "suimiúil"
+#: ../../standalone/drakbackup_.c:1714
+#, fuzzy
+msgid "Users"
+msgstr "Ainm úsáideora"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "With basic documentation (recommended!)"
+#: ../../standalone/drakbackup_.c:1740
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Droch comhad chúltaca"
+
+#: ../../standalone/drakbackup_.c:1742
+msgid "Net Method:"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "1 button"
-msgstr "1 Cnaipe"
+#: ../../standalone/drakbackup_.c:1746
+msgid "Use Expect for SSH"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1747
msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-#: ../../Xconfig/main.pm:1
-#, fuzzy, c-format
-msgid "Test"
-msgstr "An Tibéid"
-
-#: ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Korea"
-msgstr "Mór"
-
-#: ../../interactive/stdio.pm:1
-#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Do rogha? (gnás %s)"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Raw printer"
-msgstr "Gan Printéir"
+#: ../../standalone/drakbackup_.c:1748
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "official vendor name of the cpu"
+#: ../../standalone/drakbackup_.c:1749
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Useless without Terminal Server"
+#: ../../standalone/drakbackup_.c:1753
+#, fuzzy
+msgid "Please enter the host name or IP."
+msgstr "Teastáil an luchóg, le do thoil"
+
+#: ../../standalone/drakbackup_.c:1758
+msgid ""
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Vendor"
-msgstr "Leasú"
+#: ../../standalone/drakbackup_.c:1763
+#, fuzzy
+msgid "Please enter your login"
+msgstr "Aththrialaigh"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Interface %s"
-msgstr "suimiúil"
+#: ../../standalone/drakbackup_.c:1768
+#, fuzzy
+msgid "Please enter your password"
+msgstr "Aththrialaigh"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure mouse"
-msgstr "Cumraigh luchóg"
+#: ../../standalone/drakbackup_.c:1774
+#, fuzzy
+msgid "Remember this password"
+msgstr "Gan pasfhocal"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the mount points"
+#: ../../standalone/drakbackup_.c:1785
+msgid "Need hostname, username and password!"
msgstr ""
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1
-#, c-format
-msgid "OK"
-msgstr "Ceart go Leor"
+#: ../../standalone/drakbackup_.c:1879
+msgid "Use CD/DVDROM to backup"
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Yugoslavian (latin)"
+#: ../../standalone/drakbackup_.c:1882
+msgid ""
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Installing"
-msgstr "Ag Feistiú"
+#: ../../standalone/drakbackup_.c:1887
+#, fuzzy
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Cén leagan amach atá ar d'eocharchlársa"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Logitech MouseMan with Wheel emulation"
-msgstr "Luchóg MouseMan"
+#: ../../standalone/drakbackup_.c:1893
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Roghnaigh rann le do thoil"
-#: ../../any.pm:1
-#, c-format
-msgid "Launch userdrake"
+#: ../../standalone/drakbackup_.c:1899
+#, fuzzy
+msgid "Please check if you are using CDRW media"
+msgstr "Roghnaigh rann le do thoil"
+
+#: ../../standalone/drakbackup_.c:1905
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Roghnaigh rann le do thoil"
+
+#: ../../standalone/drakbackup_.c:1906
+msgid " Erase Now "
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Is this an install or an upgrade?"
-msgstr "Feistigh nó uasgrádaigh ?"
+#: ../../standalone/drakbackup_.c:1912
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Roghnaigh rann le do thoil"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "ISDN card"
-msgstr "Carta ISDN inmheánamach"
+#: ../../standalone/drakbackup_.c:1918
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Roghnaigh rann le do thoil"
-#: ../advertising/02-community.pl:1
-#, c-format
+#: ../../standalone/drakbackup_.c:1931
msgid ""
-"To share your own knowledge and help build Linux software, join our "
-"discussion forums on our \"Community\" webpages."
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Hard drive.\n"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1964
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Roghnaigh Comhad"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
+#: ../../standalone/drakbackup_.c:2012
+#, fuzzy
+msgid "Use tape to backup"
+msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakfont:1
-#, 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"
+#: ../../standalone/drakbackup_.c:2015
+msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Printer on remote CUPS server"
-msgstr "Scrios Freastalaí CUPS"
+#: ../../standalone/drakbackup_.c:2021
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Roghnaight do theangam le do thoil."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
-msgstr ""
+#: ../../standalone/drakbackup_.c:2027
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "here if no."
+#: ../../standalone/drakbackup_.c:2033
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Roghnaight do theangam le do thoil."
+
+#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:3068
+msgid ""
+"Please enter the maximum size\n"
+" allowed for Drakbackup"
msgstr ""
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "DHCP host name"
-msgstr "ÓstAinm"
+#: ../../standalone/drakbackup_.c:2103
+#, fuzzy
+msgid "Please enter the directory to save to:"
+msgstr "Teastáil an luchóg, le do thoil"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The maximum lease (in seconds)"
-msgstr ""
+#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
+#, fuzzy
+msgid "Use quota for backup files."
+msgstr "Droch comhad chúltaca"
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
-#, c-format
-msgid "Please choose which serial port your mouse is connected to."
-msgstr ""
+#: ../../standalone/drakbackup_.c:2180
+#, fuzzy
+msgid "Network"
+msgstr "Cláréadan Gréasán"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Did it work properly?"
+#: ../../standalone/drakbackup_.c:2185
+msgid "CDROM / DVDROM"
msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid "Mount the file system read-only."
+#: ../../standalone/drakbackup_.c:2190
+msgid "HardDrive / NFS"
msgstr ""
-#: ../../security/level.pm:1
-#, c-format
-msgid "Poor"
-msgstr "Bocht"
+#: ../../standalone/drakbackup_.c:2195
+#, fuzzy
+msgid "Tape"
+msgstr "Cineál"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Report check result by mail"
+#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
+#: ../../standalone/drakbackup_.c:2216
+msgid "hourly"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Grenada"
+#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
+#: ../../standalone/drakbackup_.c:2216
+msgid "daily"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP start range"
+#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
+#: ../../standalone/drakbackup_.c:2216
+msgid "weekly"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Unsafe"
-msgstr "Baolach"
+#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2216
+msgid "monthly"
+msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "SSH server"
-msgstr "Freastalaí NIS"
+#: ../../standalone/drakbackup_.c:2229
+#, fuzzy
+msgid "Use daemon"
+msgstr "Ainm úsáideora"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid ", %s sectors"
-msgstr ", %s teascáin"
+#: ../../standalone/drakbackup_.c:2234
+#, fuzzy
+msgid ""
+"Please choose the time \n"
+"interval between each backup"
+msgstr "Roghnaight do theangam le do thoil."
-#: ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1
-#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
-#: ../../standalone/drakclock:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "No"
-msgstr "Níl"
+#: ../../standalone/drakbackup_.c:2240
+#, fuzzy
+msgid ""
+"Please choose the\n"
+"media for backup."
+msgstr "Roghnaight do theangam le do thoil."
-#: ../../lang.pm:1
-#, c-format
-msgid "Guadeloupe"
+#: ../../standalone/drakbackup_.c:2247
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Kannada"
-msgstr "Ceanada"
-
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "could not find any font.\n"
+#: ../../standalone/drakbackup_.c:2283
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/keyboarddrake:1
-#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
+#: ../../standalone/drakbackup_.c:2289
+msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Vertical refresh rate"
-msgstr "Ráta athnuachana ingearach"
-
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Ag tosnú ar céim `%s'\n"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Niger"
-msgstr "An Nígir"
+#: ../../standalone/drakbackup_.c:2324
+#, fuzzy
+msgid "What"
+msgstr "Fan tamall"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech MouseMan"
-msgstr "Luchóg MouseMan"
+#: ../../standalone/drakbackup_.c:2329
+#, fuzzy
+msgid "Where"
+msgstr "Rothar"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Removing %s ..."
-msgstr "Réiteachaí: %s\n"
+#: ../../standalone/drakbackup_.c:2334
+#, fuzzy
+msgid "When"
+msgstr "Rothar"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No printer"
-msgstr "Gan Printéir"
+#: ../../standalone/drakbackup_.c:2339
+#, fuzzy
+msgid "More Options"
+msgstr "Roghachais modúil:"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "alert configuration"
-msgstr "Cumraigh Idirlíon"
+#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
+#, fuzzy
+msgid "Drakbackup Configuration"
+msgstr "Cumraíocht Gréasánú"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "NetWare Printer Options"
-msgstr "Roghanna Printéir NetWare"
+#: ../../standalone/drakbackup_.c:2376
+#, fuzzy
+msgid "Please choose where you want to backup"
+msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "%s BootSplash (%s) preview"
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "February"
-msgstr "Feabhra"
-
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "General"
-msgstr "Gnáth"
+#: ../../standalone/drakbackup_.c:2388
+msgid "across Network"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "/etc/issue* exist"
+#: ../../standalone/drakbackup_.c:2398
+msgid "on CDROM"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Add a user"
-msgstr "Suimigh úsáideoir"
+#: ../../standalone/drakbackup_.c:2406
+msgid "on Tape Device"
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Cumraíocht Gréasánú"
+#: ../../standalone/drakbackup_.c:2449
+#, fuzzy
+msgid "Please choose what you want to backup"
+msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "April"
-msgstr "Aibreáin"
+#: ../../standalone/drakbackup_.c:2450
+#, fuzzy
+msgid "Backup system"
+msgstr "Socraigh córas chomhad"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Deactivate now"
+#: ../../standalone/drakbackup_.c:2451
+msgid "Backup Users"
msgstr ""
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
-#, c-format
-msgid "Mandatory package %s is missing"
+#: ../../standalone/drakbackup_.c:2454
+msgid "Select user manually"
msgstr ""
-# PH FIXME
-#: ../../lang.pm:1
-#, c-format
-msgid "Philippines"
-msgstr "Na hOileáin"
-
-#: ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1
-#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
-#: ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakperm:1
-#: ../../standalone/draksec:1 ../../standalone/mousedrake:1
-#: ../../standalone/net_monitor:1
-#, c-format
-msgid "Ok"
-msgstr "Ceart go Leor"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "drakTermServ Overview"
+#: ../../standalone/drakbackup_.c:2537
+msgid ""
+"\n"
+"Backup Sources: \n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Print Queue Name"
+#: ../../standalone/drakbackup_.c:2538
+msgid ""
+"\n"
+"- System Files:\n"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Do you want to use aboot?"
-msgstr "Céard a theastaíonn uait a dhéanamh?"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Belarusian"
-msgstr "Belarúisis"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2540
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"\n"
+"- User Files:\n"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Move files to the new partition"
-msgstr "Cruthaigh rann nua"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:2542
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."
+"\n"
+"- Other Files:\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup_.c:2544
#, 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"
+"- Save on Hard drive on path: %s\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2547
+msgid ""
"\n"
-"Please plug in and turn on all printers connected to this machine so that it/"
-"they can be auto-detected.\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2553
+msgid ""
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
-"to set up your printer(s) now."
+"- Burn to CD"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Pitcairn"
+#: ../../standalone/drakbackup_.c:2554
+msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:2555
#, fuzzy, c-format
-msgid "Restore From Catalog"
-msgstr "Scriobh clár-ranna"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid " on device: %s"
+msgstr "Gaireas luchóige: %s\n"
-#: ../../fs.pm:1
-#, c-format
-msgid "mounting partition %s in directory %s failed"
+#: ../../standalone/drakbackup_.c:2556
+msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakboot:1
+#: ../../standalone/drakbackup_.c:2557
#, c-format
-msgid "Lilo screen"
+msgid ""
+"\n"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../bootloader.pm:1 ../../help.pm:1
+#: ../../standalone/drakbackup_.c:2558
#, c-format
-msgid "LILO with graphical menu"
-msgstr "LILO le Chlár Graphaice"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Estimating"
-msgstr "Ag meastú"
-
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't unselect this package. It is already installed"
+msgid "\t\tErase=%s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/Windows 95/98/NT"
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Go on anyway?"
-msgstr "Lean ar aghaidh ar aon nós?"
-
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Ag curdach do na pacáistí atá ar fáil"
-
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:2561
#, c-format
msgid ""
"\n"
-" DrakBackup Report \n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakbackup_.c:2562
#, c-format
-msgid "Does not appear to be recordable media!"
+msgid ""
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
msgstr ""
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Specify options"
-msgstr "Cumraigh roghanna"
+#: ../../standalone/drakbackup_.c:2563
+#, fuzzy
+msgid ""
+"\n"
+"- Options:\n"
+msgstr "Roghnachais"
-#: ../../lang.pm:1
-#, c-format
-msgid "Vanuatu"
+#: ../../standalone/drakbackup_.c:2564
+msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "New user list:\n"
+#: ../../standalone/drakbackup_.c:2567
+msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
+#: ../../standalone/drakbackup_.c:2569
+msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../any.pm:1
+#: ../../standalone/drakbackup_.c:2572
#, 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\"."
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
+#: ../../standalone/drakbackup_.c:2573
+msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "Set the password history length to prevent password reuse."
+#: ../../standalone/drakbackup_.c:2574
+msgid "\t-CDROM.\n"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Norfolk Island"
+#: ../../standalone/drakbackup_.c:2575
+msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Theme installation failed!"
-msgstr "Roghnaigh rang feistiú"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Nothing to do"
+#: ../../standalone/drakbackup_.c:2576
+msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Use for loopback"
+#: ../../standalone/drakbackup_.c:2577
+msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Bug Report Tool"
+#: ../../standalone/drakbackup_.c:2578
+msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Apply filter"
+#: ../../standalone/drakbackup_.c:2579
+msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../network/adsl.pm:1
-#, c-format
-msgid "use pppoe"
-msgstr "úsáid pppoe"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Moving files to the new partition"
-msgstr "Cruthaigh rann nua"
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "Freastalaí XFree %s le luasghearú crua-earraí 3D TRIALACH"
-
-#: ../../help.pm:1 ../../interactive.pm:1
-#, c-format
-msgid "Advanced"
-msgstr "Réamhioaíocht"
+#: ../../standalone/drakbackup_.c:2581
+msgid "No configuration, please click Wizard or Advanced.\n"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Transfer"
+#: ../../standalone/drakbackup_.c:2587
+msgid ""
+"List of data to restore:\n"
+"\n"
msgstr ""
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (Meiriceá)"
+#: ../../standalone/drakbackup_.c:2754
+msgid ""
+"List of data corrupted:\n"
+"\n"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Afghanistan"
-msgstr "An Afghanastáin"
+#: ../../standalone/drakbackup_.c:2756
+#, fuzzy
+msgid "Please uncheck or remove it on next time."
+msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "More Options"
-msgstr "Roghachais modúil:"
+#: ../../standalone/drakbackup_.c:2766
+msgid "Backup files are corrupted"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
+#: ../../standalone/drakbackup_.c:2787
+msgid " All of your selected data have been "
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakbackup_.c:2788
#, c-format
-msgid "Burundi"
+msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../services.pm:1
-#, 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."
+#: ../../standalone/drakbackup_.c:2906
+#, fuzzy
+msgid " Restore Configuration "
+msgstr "Cumraíocht Gréasánú"
+
+#: ../../standalone/drakbackup_.c:2924
+msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Add Client -->"
+#: ../../standalone/drakbackup_.c:2941
+msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Read carefully!"
-msgstr "Léigh go curamach"
+#: ../../standalone/drakbackup_.c:3019
+#, fuzzy
+msgid "Backup the system files before:"
+msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "RW"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3021
+#, fuzzy
+msgid "please choose the date to restore"
+msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3057
+#, fuzzy
+msgid "Use Hard Disk to backup"
+msgstr "Droch comhad chúltaca"
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
-#, c-format
-msgid "Port"
-msgstr "Poirt"
+#: ../../standalone/drakbackup_.c:3060
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Teastáil an luchóg, le do thoil"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "No (experts only)"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3103
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Nasc LAN"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No kernel selected!"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3110
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Nasc Printéir"
-#. -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
-#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3134
+#, fuzzy
+msgid "Restore from Hard Disk."
+msgstr "Aisig ó dhiosca flapach"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Set-GID"
+#: ../../standalone/drakbackup_.c:3136
+msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "The encryption keys do not match"
-msgstr "Ní mar a chéile na pasfhocail"
+#: ../../standalone/drakbackup_.c:3204
+#, fuzzy
+msgid "Select another media to restore from"
+msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"For a multisession CD, only the first session will erase the cdrw. Otherwise "
-"the cdrw is erased before each backup."
-msgstr ""
+#: ../../standalone/drakbackup_.c:3206
+#, fuzzy
+msgid "Other Media"
+msgstr "Eile"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "USB printer"
-msgstr "Gan Printéir"
+#: ../../standalone/drakbackup_.c:3211
+#, fuzzy
+msgid "Restore system"
+msgstr "Feistigh córas"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Right \"Windows\" key"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3212
+#, fuzzy
+msgid "Restore Users"
+msgstr "Aisig ó comhad"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
-msgstr ""
+#: ../../standalone/drakbackup_.c:3213
+#, fuzzy
+msgid "Restore Other"
+msgstr "Aisig ó comhad"
-#: ../../help.pm:1
-#, 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."
-msgstr ""
+#: ../../standalone/drakbackup_.c:3215
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Cén cinéal luchóg atá agat?"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
+#: ../../standalone/drakbackup_.c:3219
+msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "Resolutions"
-msgstr "Réiteachaí"
-
-#: ../../network/drakfirewall.pm:1
-#, 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."
+#: ../../standalone/drakbackup_.c:3221
+msgid "Remove user directories before restore."
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:3334
msgid ""
-"Please enter your username, password and domain name to access this host."
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Remove selected host"
+#: ../../standalone/drakbackup_.c:3344
+#, fuzzy
+msgid ""
+"Restore Selected\n"
+"Files"
msgstr "Scrios ciú"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "Network configuration"
-msgstr "Cumraíocht Gréasánú"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/Autodetect _jaz drives"
-msgstr "Scríos Printéir"
-
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "No sharing"
-msgstr "Ag Tosnaigh CUPS"
+#: ../../standalone/drakbackup_.c:3361
+#, fuzzy
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Aisig ó comhad"
-#: ../../standalone/drakperm:1
+#: ../../standalone/drakbackup_.c:3427
#, c-format
-msgid "Move selected rule down one level"
+msgid "Backup files not found at %s."
msgstr ""
-#: ../../common.pm:1
+#: ../../standalone/drakbackup_.c:3440
#, c-format
-msgid "TB"
-msgstr "TB"
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "FATAL"
-msgstr "FAT"
+#: ../../standalone/drakbackup_.c:3440
+#, fuzzy
+msgid "Restore From CD"
+msgstr "Aisig ó dhiosca flapach"
-#: ../../standalone/printerdrake:1
+#: ../../standalone/drakbackup_.c:3442
#, c-format
-msgid "Refresh the list"
+msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup_.c:3452
#, 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."
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakpxe:1
+#: ../../standalone/drakbackup_.c:3452
+#, fuzzy
+msgid "Restore From Tape"
+msgstr "Scriobh clár-ranna"
+
+#: ../../standalone/drakbackup_.c:3454
#, 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"
+msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../standalone/drakperm:1 ../../standalone/printerdrake:1
-#, c-format
-msgid "Delete"
-msgstr "Scríos"
+#: ../../standalone/drakbackup_.c:3474
+#, fuzzy
+msgid "Restore Via Network"
+msgstr "Aisig ó comhad"
-#: ../../Xconfig/various.pm:1
+#: ../../standalone/drakbackup_.c:3474
#, 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 "Restore Via Network Protocol: %s"
msgstr ""
-"Is féidir linn do ríomhaire a shocrú le X a thosnú i ndhiadh bootáil.\n"
-"An dteastaíonn uait go dtosnófar X nuair a aththosnítear an ríomhaire?"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Build the disk"
+#: ../../standalone/drakbackup_.c:3475
+#, fuzzy
+msgid "Host Name"
+msgstr "ÓstAinm"
+
+#: ../../standalone/drakbackup_.c:3476
+msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Disconnect %s"
-msgstr "Cumraigh nasc ghréasán"
+#: ../../standalone/drakbackup_.c:3483
+#, fuzzy
+msgid "Password required"
+msgstr "Pasfhocal"
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Status:"
-msgstr "_Stádas:"
+#: ../../standalone/drakbackup_.c:3489
+#, fuzzy
+msgid "Username required"
+msgstr "Ainm úsáideora"
-#: ../../network/network.pm:1
-#, c-format
-msgid "HTTP proxy"
-msgstr "Seach-HTTP"
+#: ../../standalone/drakbackup_.c:3492
+#, fuzzy
+msgid "Hostname required"
+msgstr "Ainm úsáideora"
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "SSH Server"
-msgstr "Freastalaí NIS"
+#: ../../standalone/drakbackup_.c:3497
+msgid "Path or Module required"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by rsync.\n"
+#: ../../standalone/drakbackup_.c:3510
+msgid "Files Restored..."
msgstr ""
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "European protocol"
-msgstr "Eorap (EDS11)"
+#: ../../standalone/drakbackup_.c:3513
+#, fuzzy
+msgid "Restore Failed..."
+msgstr "Aisig ó comhad"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ", printer \"%s\" on server \"%s\""
+#: ../../standalone/drakbackup_.c:3751
+msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
-msgstr ""
+#: ../../standalone/drakbackup_.c:3760
+#, fuzzy
+msgid "Custom Restore"
+msgstr "Socraithe"
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
-#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
-#: ../../standalone/drakauth:1 ../../standalone/drakboot:1
-#: ../../standalone/drakbug:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
-#: ../../standalone/draksplash:1 ../../../move/move.pm:1
-#, c-format
-msgid "Error"
-msgstr "Earráid"
+#: ../../standalone/drakbackup_.c:3804
+msgid "CD in place - continue."
+msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "allow \"su\""
+#: ../../standalone/drakbackup_.c:3810
+msgid "Browse to new restore repository."
msgstr ""
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "Australia"
-msgstr "srathach"
+#: ../../standalone/drakbackup_.c:3813
+#, fuzzy
+msgid "Restore From Catalog"
+msgstr "Scriobh clár-ranna"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "please wait during ttmkfdir..."
+#: ../../standalone/drakbackup_.c:3841
+#, fuzzy
+msgid "Restore Progress"
+msgstr "Aisig ó comhad"
+
+#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
+#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
+#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
+#: ../../standalone/drakbackup_.c:4139
+msgid "Previous"
msgstr ""
-#: ../../Xconfig/card.pm:1
-#, fuzzy, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Cumraigh carta \"%s\" (%s) amhain"
+#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
+#: ../../standalone/logdrake_.c:203
+#, fuzzy
+msgid "Save"
+msgstr "Clár Tosnú"
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Level"
-msgstr "leibhéal"
+#: ../../standalone/drakbackup_.c:3946
+#, fuzzy
+msgid "Build Backup"
+msgstr "Droch comhad chúltaca"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Change the printing system"
-msgstr "Cumraigh gréasánú"
+#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
+#, fuzzy
+msgid "Restore"
+msgstr "Aisig ó comhad"
-#: ../../Xconfig/card.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4189
msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../../partition_table.pm:1
-#, c-format
-msgid "mount failed: "
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure services"
-msgstr "Cumraigh seirbhisí"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Broadcast Address:"
+#: ../../standalone/drakbackup_.c:4195
+msgid ""
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4209
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."
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Image"
-msgstr "Iomha"
+#: ../../standalone/drakbackup_.c:4232
+#, fuzzy
+msgid "Please select data to restore..."
+msgstr "Roghnaight do theangam le do thoil."
-#: ../../services.pm:1
-#, fuzzy, c-format
-msgid "Remote Administration"
-msgstr "Scríos Printéir"
+#: ../../standalone/drakbackup_.c:4267
+#, fuzzy
+msgid "Please select media for backup..."
+msgstr "Roghnaight do theangam le do thoil."
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
-msgstr ""
+#: ../../standalone/drakbackup_.c:4275
+#, fuzzy
+msgid "Please select data to backup..."
+msgstr "Roghnaight do theangam le do thoil."
-#: ../../modules.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Selected All"
-msgstr "Roghnaigh Comhad"
-
-#: ../../printer/data.pm:1
-#, c-format
-msgid "CUPS - Common Unix Printing System"
+#: ../../standalone/drakbackup_.c:4308
+msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Webmin Service"
-msgstr "Seirbishí"
+#: ../../standalone/drakbackup_.c:4382
+#, fuzzy
+msgid "Backup system files"
+msgstr "Droch comhad chúltaca"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "device"
-msgstr "feist"
+#: ../../standalone/drakbackup_.c:4384
+#, fuzzy
+msgid "Backup user files"
+msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Enter the directory to save to:"
-msgstr "Teastáil an luchóg, le do thoil"
+#: ../../standalone/drakbackup_.c:4386
+#, fuzzy
+msgid "Backup other files"
+msgstr "Droch comhad chúltaca"
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Greece"
-msgstr "Greicís"
+#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
+msgid "Total Progress"
+msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
-#, c-format
-msgid "All"
-msgstr "Gach Rud"
+#: ../../standalone/drakbackup_.c:4412
+msgid "files sending by FTP"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Cén rann atá uait?"
+#: ../../standalone/drakbackup_.c:4416
+#, fuzzy
+msgid "Sending files..."
+msgstr "Sabháil i gcomhad"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "July"
-msgstr "Iuíl"
+#: ../../standalone/drakbackup_.c:4500
+#, fuzzy
+msgid "Backup Now from configuration file"
+msgstr "Cumraíocht Gréasánú"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Prints into %s"
-msgstr "Earráidh ag scríobh comhad %s"
+#: ../../standalone/drakbackup_.c:4505
+#, fuzzy
+msgid "View Backup Configuration."
+msgstr "Cumraíocht Gréasánú"
-#: ../../install_steps_interactive.pm:1 ../../../move/move.pm:1
-#, c-format
-msgid "An error occurred"
-msgstr "Tharla earráid"
+#: ../../standalone/drakbackup_.c:4526
+#, fuzzy
+msgid "Wizard Configuration"
+msgstr "cumraíocht"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
+#: ../../standalone/drakbackup_.c:4531
+#, fuzzy
+msgid "Advanced Configuration"
+msgstr "Éirigh as cumraíocht"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (Typewriter-layout)"
-msgstr ""
+#: ../../standalone/drakbackup_.c:4536
+#, fuzzy
+msgid "Backup Now"
+msgstr "Socraigh córas chomhad"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Use password to authenticate users."
+#: ../../standalone/drakbackup_.c:4576
+msgid "Drakbackup"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4624
msgid ""
-"Allow/Forbid the list of users on the system on display managers (kdm and "
-"gdm)."
+"options description:\n"
+"\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "manual"
+#: ../../standalone/drakbackup_.c:4654
+msgid ""
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Filename text to search for:"
+#: ../../standalone/drakbackup_.c:4662
+msgid ""
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer manufacturer, model, driver"
+#: ../../standalone/drakbackup_.c:4701
+msgid ""
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
+"\n"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4727
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4729
msgid ""
-"Directory %s already contains data\n"
-"(%s)"
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Printer on NetWare server"
-msgstr "Freastalaí Printéir"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Give the ram size in MB"
-msgstr "Tabhair na Méid Cuimhne as MB"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Friday"
-msgstr "Aoine"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Disconnection from Internet complete."
-msgstr "Athraigh cineál ranna"
-
-#: ../../any.pm:1
-#, c-format
-msgid "Real name"
-msgstr "Fíor ainm"
-
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "done"
-msgstr "Críochnithe"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please uncheck or remove it on next time."
-msgstr "Cén cinéal luchóg atá agat?"
-
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid "Higher"
-msgstr "Árd"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the partitions you want to format"
-msgstr "Roghnaigh na ranna atá le formáidiú"
-
-#: ../../standalone/drakxtv:1
-#, c-format
+#: ../../standalone/drakbackup_.c:4732
msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
+"Description:\n"
"\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
"\n"
-"You can visit our hardware database at:\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
+"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
+"\n"
+" Per default all backup will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Can't find %s on %s"
-msgstr "Earráid ag oscailt %s do scríobh: %s"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Japanese 106 keys"
-msgstr "Seápainis (106 eochair)"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
+#: ../../standalone/drakbackup_.c:4769
+msgid ""
+"options description:\n"
+"\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
+"\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "This will take a few minutes."
+#: ../../standalone/drakbackup_.c:4778
+msgid ""
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakboot_.c:50
#, c-format
-msgid "Burkina Faso"
+msgid "Installation of %s failed. The following error occured:"
msgstr ""
-# GN
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "June"
-msgstr "An Ghuine"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Use scanners on remote computers"
+#: ../../standalone/drakbug_.c:45
+msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Delete selected rule"
-msgstr "Scrios ciú"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Accessing printers on remote CUPS servers"
-msgstr "Scrios Freastalaí CUPS"
-
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Cur isteach diosca sa dioscthiomant %s"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Maldives"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "compact"
-msgstr "compact"
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
+#: ../../standalone/drakbug_.c:139
+msgid "Standalone Tools"
+msgstr ""
-#: ../../common.pm:1
-#, c-format
-msgid "1 minute"
-msgstr "1 noiméad"
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "type: fat"
-msgstr "Cineál: "
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Bainteach le hIdirlíon"
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "on channel %d id %d\n"
-msgstr "ar bhús %d, id %d\n"
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "sainordaitheach"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", multi-function device"
-msgstr ""
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Luchóg"
-#: ../../lang.pm:1
-#, c-format
-msgid "Laos"
-msgstr ""
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Scríos Printéir"
-#: ../advertising/04-configuration.pl:1
-#, 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!"
-msgstr ""
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Comh. ainm"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Up"
-msgstr ""
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Clódóir"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Firewall"
-msgstr ""
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Draíodóir Cumraíocht Gréasánú"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Area:"
-msgstr ""
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Application:"
+msgstr "Deimniú"
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "(E)IDE/ATA controllers"
-msgstr ""
+#: ../../standalone/drakbug_.c:76
+#, fuzzy
+msgid "Package: "
+msgstr "Roghnú Grúpa Pacáistí"
-#: ../../fs.pm:1
-#, c-format
-msgid "All I/O to the file system should be done synchronously."
+#: ../../standalone/drakbug_.c:77
+msgid "Kernel:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Printer Server"
-msgstr "Freastalaí Printéir"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Custom configuration"
-msgstr "Cumraigh Idirlíon"
+#: ../../standalone/drakbug_.c:78
+#, fuzzy
+msgid "Release: "
+msgstr "Fan tamall"
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakbug_.c:93
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"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
"\n"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Saint Pierre and Miquelon"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "September"
-msgstr "M. Fómhair"
+#: ../../standalone/drakbug_.c:112
+#, fuzzy
+msgid "Report"
+msgstr "Poirt"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "saving Bootsplash theme..."
-msgstr ""
+#: ../../standalone/drakbug_.c:148
+#, fuzzy
+msgid "Not installed"
+msgstr "Eirigh as Feistiú"
-# PT
-#: ../../lang.pm:1
-#, c-format
-msgid "Portugal"
-msgstr "An Phortaingéil"
+#: ../../standalone/drakbug_.c:160
+#, fuzzy
+msgid "Package not installed"
+msgstr "Eirigh as Feistiú"
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "Do you have another one?"
-msgstr "An bhfuil ceann eile agat?"
+#: ../../standalone/drakbug_.c:173
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Earráidh ag scríobh comhad %s"
+#: ../../standalone/drakbug_.c:180
+msgid "No browser available! Please install one"
+msgstr ""
-#: ../../network/network.pm:1
+#: ../../standalone/drakconnect_.c:75
#, fuzzy, c-format
-msgid "Assign host name from DHCP address"
-msgstr "Teastáil an luchóg, le do thoil"
+msgid "Network configuration (%d adapters)"
+msgstr "Cumraíocht Gréasánú"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to normal mode"
+#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
+msgid "Profile: "
msgstr ""
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Generic"
-msgstr "Gnáth"
-
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Sorcóir %d go sorcóir %d\n"
+#: ../../standalone/drakconnect_.c:91
+msgid "Del profile..."
+msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "YOUR TEXT HERE"
+#: ../../standalone/drakconnect_.c:97
+msgid "Profile to delete:"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
+#: ../../standalone/drakconnect_.c:125
msgid "New profile..."
msgstr ""
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
-#, c-format
-msgid "NONE"
+#: ../../standalone/drakconnect_.c:131
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Which disk do you want to move it to?"
-msgstr "Cén diosca ag a dteastaíonn uait é a bhogadh?"
+#: ../../standalone/drakconnect_.c:157
+#, fuzzy
+msgid "Hostname: "
+msgstr "Ainm úsáideora"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Display logo on Console"
-msgstr ""
+#: ../../standalone/drakconnect_.c:164
+#, fuzzy
+msgid "Internet access"
+msgstr "suimiúil"
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Windows Domain"
-msgstr "Fearannas NIS"
+#: ../../standalone/drakconnect_.c:177
+#, fuzzy
+msgid "Type:"
+msgstr "Cineál: "
-#: ../../keyboard.pm:1
-#, fuzzy, c-format
-msgid "Saami (norwegian)"
-msgstr "Dvorak (Ioruais)"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+msgid "Gateway:"
+msgstr "Inneal Geata:"
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "Interface %s (on network %s)"
+#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
+#, fuzzy
+msgid "Interface:"
msgstr "suimiúil"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "INFO"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Wallis and Futuna"
+#: ../../standalone/drakconnect_.c:191
+msgid "Status:"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
+#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
+msgid "Wait please"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Is FPU present"
-msgstr ""
+#: ../../standalone/drakconnect_.c:216
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "Cumraigh gréasánú"
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"No additional information\n"
-"about this service, sorry."
-msgstr ""
+#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
+#, fuzzy
+msgid "LAN configuration"
+msgstr "Cumraigh ADSL"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "There are no scanners found which are available on your system.\n"
-msgstr ""
+#: ../../standalone/drakconnect_.c:228
+msgid "Driver"
+msgstr "Tiománaí"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build Single NIC -->"
-msgstr ""
+#: ../../standalone/drakconnect_.c:228
+#, fuzzy
+msgid "Interface"
+msgstr "Cláréadan Gréasán"
-#: ../../lang.pm:1
-#, c-format
-msgid "Marshall Islands"
+#: ../../standalone/drakconnect_.c:228
+msgid "Protocol"
msgstr ""
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Is this correct?"
-msgstr "An bhfuil seo ceart?"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Windows (FAT32)"
-msgstr "Dealaigh Windows(TM)"
+#: ../../standalone/drakconnect_.c:228
+#, fuzzy
+msgid "State"
+msgstr "Clár Tosnú"
-#: ../../steps.pm:1
-#, fuzzy, c-format
-msgid "Root password"
-msgstr "Gan pasfhocal"
+#: ../../standalone/drakconnect_.c:240
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "Cumraigh gréasánú"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Build All Kernels -->"
+#: ../../standalone/drakconnect_.c:252
+msgid "Click here to launch the wizard ->"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "DVDRAM device"
-msgstr "feist"
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, report unowned files."
-msgstr ""
+#: ../../standalone/drakconnect_.c:253
+msgid "Wizard..."
+msgstr "Draíodoir..."
-#: ../../install_interactive.pm:1
-#, c-format
-msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
+#: ../../standalone/drakconnect_.c:279
+msgid "Apply"
msgstr ""
-"Níl aon ranna malairte agat\n"
-"\n"
-"x1Lean ar aghaidh ar aon nós?"
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "Version: "
-msgstr "Leagan: %s\n"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Server IP missing!"
-msgstr "Óstainm Printéir"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Suriname"
-msgstr ""
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+#, fuzzy
+msgid "Connected"
+msgstr "Ainm Nasc"
-#: ../../network/adsl.pm:1
-#, fuzzy, c-format
-msgid "Use a floppy"
-msgstr "Sabháil ar dhiosca flapach"
+#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
+#: ../../standalone/net_monitor_.c:457
+#, fuzzy
+msgid "Not connected"
+msgstr "Cumraigh ADSL"
-#: ../../any.pm:1
-#, c-format
-msgid "Enable ACPI"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Connect..."
msgstr ""
-#: ../../fs.pm:1
-#, c-format
-msgid "Give write access to ordinary users"
+#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
+msgid "Disconnect..."
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Graphical Environment"
+#: ../../standalone/drakconnect_.c:400
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Gibraltar"
+#: ../../standalone/drakconnect_.c:427
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
msgstr ""
-#: ../../network/modem.pm:1
-#, fuzzy, c-format
-msgid "Do nothing"
-msgstr "Ag Tosnaigh CUPS"
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Delete Client"
-msgstr "Scríos"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Filesystem type: "
-msgstr "Cineál córas-comhadlanna:"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Starting network..."
-msgstr "Nasc Printéir"
+#: ../../standalone/drakconnect_.c:449
+#, fuzzy
+msgid "LAN Configuration"
+msgstr "cumraíocht"
-#: ../../lang.pm:1
+#: ../../standalone/drakconnect_.c:460
#, c-format
-msgid "Vietnam"
+msgid "Adapter %s: %s"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "/_Fields description"
-msgstr "Cuntas"
-
-#: ../advertising/10-security.pl:1
-#, c-format
-msgid "Optimize your security by using Mandrake Linux"
+#: ../../standalone/drakconnect_.c:466
+msgid "Boot Protocol"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
+#: ../../standalone/drakconnect_.c:467
+msgid "Started on boot"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
-#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
-#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
-#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
-#: ../../standalone/drakconnect:1 ../../standalone/drakfont:1
-#: ../../standalone/drakperm:1 ../../standalone/draksec:1
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Help"
-msgstr "/C_úidiú"
+#: ../../standalone/drakconnect_.c:468
+msgid "DHCP client"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check if the network devices are in promiscuous mode"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "activate now"
msgstr ""
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Your personal phone number"
-msgstr "Uimhir fón"
+#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
+msgid "deactivate now"
+msgstr ""
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which size do you want to keep for Windows on"
+#: ../../standalone/drakconnect_.c:499
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakconnect_.c:556
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 internet connection.\n"
+"Create one first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Username required"
-msgstr "Ainm úsáideora"
+#: ../../standalone/drakconnect_.c:580
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Device"
-msgstr "Gaireas: "
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
+#, fuzzy
+msgid "Connection type: "
+msgstr "Athraigh cineál ranna"
+
+#: ../../standalone/drakconnect_.c:599
+msgid "Parameters"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Roghanna Printéir SMB (Fuinneoga 9x/NT)"
+#: ../../standalone/drakconnect_.c:618
+msgid "Gateway"
+msgstr "Inneal Geata:"
-#: ../../printer/main.pm:1
-#, c-format
-msgid "URI: %s"
+#: ../../standalone/drakconnect_.c:627
+msgid "Ethernet Card"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Valid user list changed, rewriting config file."
+#: ../../standalone/drakconnect_.c:628
+msgid "DHCP Client"
msgstr ""
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "mkinitrd optional arguments"
-msgstr ""
+#: ../../standalone/drakfloppy_.c:39
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid ""
-"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
-"Kmail, create your documents with OpenOffice.org."
-msgstr ""
+#: ../../standalone/drakfloppy_.c:40
+msgid "Module name"
+msgstr "Ainm Modúl"
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Trialaigh an cumraíocht"
+#: ../../standalone/drakfloppy_.c:40
+msgid "Size"
+msgstr "Méid"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Print test pages"
-msgstr "Óstainm Printéir"
+#: ../../standalone/drakfloppy_.c:45
+msgid "drakfloppy"
+msgstr "drakfloppy"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Activate now"
-msgstr ""
+#: ../../standalone/drakfloppy_.c:63
+#, fuzzy
+msgid "boot disk creation"
+msgstr "Trialaigh an cumraíocht"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "64 MB or more"
-msgstr "64 MB nó níos mó"
+#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
+msgid "default"
+msgstr "gnáth"
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakfloppy_.c:87
#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
-msgstr ""
+msgid "DrakFloppy Error: %s"
+msgstr "Earraidh DrakFloppy: %s"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Please select the device where your %s is attached"
-msgstr ""
+#: ../../standalone/drakfloppy_.c:98
+msgid "kernel version"
+msgstr "leagan `kernel'"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Not formatted\n"
-msgstr "Neamhformáidithe\n"
+#: ../../standalone/drakfloppy_.c:104
+msgid "General"
+msgstr "Gnáth"
-#: ../../standalone/draksec:1
-#, c-format
-msgid "Periodic Checks"
+#: ../../standalone/drakfloppy_.c:109
+msgid "Expert Area"
+msgstr "Roghnachais Saineoiaí"
+
+#: ../../standalone/drakfloppy_.c:112
+msgid "mkinitrd optional arguments"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "PXE Server Configuration"
-msgstr "Éirigh as cumraíocht"
+#: ../../standalone/drakfloppy_.c:113
+msgid "Add a module"
+msgstr "Suimigh Modúil"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup the system files before:"
-msgstr "Droch comhad chúltaca"
+#: ../../standalone/drakfloppy_.c:133
+msgid "force"
+msgstr "forsáil"
-#: ../../security/level.pm:1
-#, c-format
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
+#: ../../standalone/drakfloppy_.c:134
+msgid "if needed"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "First floppy drive"
-msgstr "Cead dioscthiománt flapach"
+#: ../../standalone/drakfloppy_.c:135
+#, fuzzy
+msgid "omit scsi modules"
+msgstr "Luchóg ar bith"
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Quit"
-msgstr "/Comhad/_Ealu"
+#: ../../standalone/drakfloppy_.c:136
+#, fuzzy
+msgid "omit raid modules"
+msgstr "Scríos modúil"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak"
-msgstr "Dvorak"
+#: ../../standalone/drakfloppy_.c:172
+msgid "Remove a module"
+msgstr "Scríos modúil"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Choose the new size"
-msgstr "Roghnaigh an méid nua"
+#: ../../standalone/drakfloppy_.c:194
+msgid "Output"
+msgstr "Aschur"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Media class"
+#: ../../standalone/drakfloppy_.c:206
+msgid "Build the disk"
msgstr ""
-#: ../../standalone/XFdrake:1
+#: ../../standalone/drakfloppy_.c:336
#, c-format
-msgid "You need to log out and back in again for changes to take effect"
+msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/drakfloppy_.c:341
#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
-#: ../../lang.pm:1
+#: ../../standalone/drakfloppy_.c:344
#, c-format
-msgid "Faroe Islands"
-msgstr ""
+msgid "Unable to fork: %s"
+msgstr "Teip ar glaoch `fork': %s"
-#: ../../standalone/drakfont:1
+#: ../../standalone/drakfloppy_.c:349
#, c-format
-msgid "Restart XFS"
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Add host/network"
+#: ../../standalone/drakfont_.c:213
+msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Scannerdrake will not be started now."
+#: ../../standalone/drakfont_.c:215
+msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Model name"
-msgstr "Ainm Modúl"
+#: ../../standalone/drakfont_.c:239
+msgid "parse all fonts"
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Albania"
-msgstr "An Albáin"
+#: ../../standalone/drakfont_.c:242
+#, fuzzy
+msgid "no fonts found"
+msgstr "Teip ag cuardach %s"
-#: ../../lang.pm:1
-#, c-format
-msgid "British Indian Ocean Territory"
+#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
+#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
+#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
+#, fuzzy
+msgid "done"
+msgstr "Críochnithe"
+
+#: ../../standalone/drakfont_.c:257
+msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Normal Mode"
-msgstr "Luchóg ar bith"
+#: ../../standalone/drakfont_.c:303
+msgid "Reselect correct fonts"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No CD-R/DVD-R in drive!"
+#: ../../standalone/drakfont_.c:307
+msgid "could not find any font.\n"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer connection type"
-msgstr "Nasc Printéir"
+#: ../../standalone/drakfont_.c:331
+msgid "Search fonts in installed list"
+msgstr ""
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
-msgid "No network adapter on your system!"
-msgstr "Níl aon gaireas ghreasán san do chorás!"
+#: ../../standalone/drakfont_.c:359
+#, fuzzy
+msgid "Fonts copy"
+msgstr "Formadaigh flapach"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Network %s"
-msgstr "Cláréadan Gréasán"
+#: ../../standalone/drakfont_.c:363
+#, fuzzy
+msgid "True Type fonts installation"
+msgstr "Ag Ullmhaigh feistiú"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Malayalam"
+#: ../../standalone/drakfont_.c:371
+msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Option %s out of range!"
+#: ../../standalone/drakfont_.c:377
+msgid "True Type install done"
msgstr ""
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connect %s"
-msgstr "Lean"
+#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
+msgid "Fonts conversion"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Restarting CUPS..."
+#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:450
+msgid "type1inst building"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Ag dúnadh síos an ghreasán"
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
+msgid "Ghostscript referencing"
+msgstr ""
-#: ../../../move/move.pm:1
-#, c-format
-msgid "Continue without USB key"
+#: ../../standalone/drakfont_.c:437
+msgid "ttf fonts conversion"
msgstr ""
-#: ../../install_steps.pm:1
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Pointe taca dublach %s"
+#: ../../standalone/drakfont_.c:444
+msgid "pfm fonts conversion"
+msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run chkrootkit checks."
+#: ../../standalone/drakfont_.c:456
+msgid "Suppress temporary Files"
msgstr ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Connection Configuration"
-msgstr "Cumraíocht Idirlíon."
+#: ../../standalone/drakfont_.c:459
+msgid "Restart XFS"
+msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, fuzzy, c-format
-msgid "Unknown|Generic"
-msgstr "Gnáth"
+#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
+msgid "Suppress Fonts Files"
+msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:528
+#, fuzzy
+msgid "xfs restart"
+msgstr "teorannaigh"
+
+#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
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"
+"Before installing any fonts, be sure that you have the right to use and "
+"install them on your system.\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."
+"-You can install the fonts using the normal way. In rare cases, bogus fonts "
+"may hang up your X Server."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Myanmar"
-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
-#, c-format
-msgid "Quit"
-msgstr "Éalaigh"
+#: ../../standalone/drakfont_.c:621
+#, fuzzy
+msgid "Fonts Importation"
+msgstr "Formáidigh ranna"
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Auto allocate"
+#: ../../standalone/drakfont_.c:650
+msgid "Get Windows Fonts"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Check bad blocks?"
+#: ../../standalone/drakfont_.c:658
+msgid "Uninstall Fonts"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Other MultiMedia devices"
-msgstr "Eile"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "burner"
-msgstr "Printéir"
+#: ../../standalone/drakfont_.c:669
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Éirigh as cumraíocht"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Bug Description/System Information"
+#: ../../standalone/drakfont_.c:677
+msgid "Font List"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid " (Default is all users)"
-msgstr "Printéir áitiúl"
-
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "No remote machines"
-msgstr "Scríos Printéir"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakfont_.c:737
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+"\tDUPONT Sebastien sdupont\\@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"
+" 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"
"\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 ""
-#: ../../any.pm:1
-#, c-format
-msgid "Authentication NIS"
-msgstr "Deimniú NIS"
+#: ../../standalone/drakfont_.c:793
+msgid ""
+"drakfont Future Overview\n"
+" - Fonts import:\n"
+" pfb ( Adobe Type 1 binary )\n"
+" pfa ( Adobe Type 1 ASCII )\n"
+" ttf ( True-Type )\n"
+" pcf.gz\n"
+" Speedo\n"
+" and Bitmap (PCF, BDF, and SNF)\n"
+" - Features\n"
+" - Install fonts from any directory\n"
+" - Get windows fonts on any vfat partitions\n"
+" - Get fonts on any partitions.\n"
+" - UN-installation of any fonts (even if not installed "
+"through drakfont)\n"
+" - Support\n"
+" - Xfs\n"
+" - ghostscript & printer\n"
+" - Staroffice & printer\n"
+" - abiword\n"
+"\t - netscape\n"
+" - Koffice, Gnumeric, ... studying\n"
+" - all fonts supported by printer\n"
+" - anti-aliases by RENDER in Xfree86 .... \n"
+"\t\t\t\tsupported by KDE.\n"
+"\t\t\t\twill be supported by gnome 1.2.\n"
+"Visual Interface:\n"
+" Window interface:\n"
+" - Fontselectiondialog widget\n"
+" - Command buttons under Fontselectiondialog (like the actual "
+"frontend).\n"
+" Commands buttons:\n"
+" - import from windows partition.\n"
+" import from all fat32 partitions and look for winnt/windows/"
+"font\n"
+" and import all (delete doublon) but don't import if already "
+"exist.\n"
+" - import from directory\n"
+" look for if it exist before for each font and not delete the "
+"original.\n"
+" (replace all, no, none)\n"
+" expert options:\n"
+" ask the directory, and look for if it exist before\n"
+" if it exist ask: (replace all, no, none)\n"
+" - uninstall with list per font type\n"
+" Expert additional switch\n"
+" - option support: ghostscript, Staroffice, etc...\n"
+" check-button. (by default all check)\n"
+" - Printer Application Fonts Support...\n"
+"\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:862
+#, fuzzy
+msgid "Choose the applications that will support the fonts:"
+msgstr "Roghnaigh na ranna atá le formáidiú"
-#: ../../any.pm:1
-#, c-format
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
+#: ../../standalone/drakfont_.c:870
+msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Internet Connection Sharing currently enabled"
-msgstr ""
+#: ../../standalone/drakfont_.c:877
+#, fuzzy
+msgid "StarOffice"
+msgstr "Oifig"
-# AR
-#: ../../lang.pm:1
-#, c-format
-msgid "United Arab Emirates"
-msgstr "Aontas na nÉimíríochtaí Arabacha"
+#: ../../standalone/drakfont_.c:884
+#, fuzzy
+msgid "Abiword"
+msgstr "Tobscoir"
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_0"
-msgstr "I/A_0 Carta"
+#: ../../standalone/drakfont_.c:891
+#, fuzzy
+msgid "Generic Printers"
+msgstr "Printéir"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Disable Local Config"
+#: ../../standalone/drakfont_.c:958
+msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-# TH
-#: ../../lang.pm:1
-#, c-format
-msgid "Thailand"
-msgstr "An Téalainn"
-
-#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Card IO_1"
-msgstr "I/A_1 Carta"
+#: ../../standalone/drakfont_.c:1005
+#, fuzzy
+msgid "Install List"
+msgstr "Feistigh córas"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Search:"
-msgstr "Cuardaigh:"
+#: ../../standalone/drakfont_.c:1048
+msgid "click here if you are sure."
+msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Kazakhstan"
+#: ../../standalone/drakfont_.c:1055
+msgid "here if no."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Routers:"
+#: ../../standalone/drakfont_.c:1112
+msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Write"
-msgstr "Freastalaí XFree86: %s"
+#: ../../standalone/drakfont_.c:1116
+#, fuzzy
+msgid "Selected All"
+msgstr "Roghnaigh Comhad"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Display all available remote CUPS printers"
-msgstr ""
+#: ../../standalone/drakfont_.c:1120
+#, fuzzy
+msgid "Remove List"
+msgstr "Scríos Printéir"
-#: ../../install_steps_newt.pm:1
-#, fuzzy, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Feistiú Linux-Mandrake %s"
+#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
+#, fuzzy
+msgid "Initials tests"
+msgstr "Scéal Tosnú"
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "Unknown driver"
-msgstr ""
+#: ../../standalone/drakfont_.c:1145
+#, fuzzy
+msgid "Copy fonts on your system"
+msgstr "Níl aon gaireas ghreasán san do chorás!"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Thai keyboard"
+#: ../../standalone/drakfont_.c:1149
+msgid "Install & convert Fonts"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Bouvet Island"
-msgstr ""
+#: ../../standalone/drakfont_.c:1153
+#, fuzzy
+msgid "Post Install"
+msgstr "Feistiú"
-#: ../../network/modem.pm:1
-#, c-format
-msgid "Dialup options"
-msgstr "Roghanna 'Dialup'"
+#: ../../standalone/drakfont_.c:1178
+#, fuzzy
+msgid "Remove fonts on your system"
+msgstr "Níl aon gaireas ghreasán san do chorás!"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "If no port is given, 631 will be taken as default."
-msgstr ""
+#: ../../standalone/drakfont_.c:1182
+#, fuzzy
+msgid "Post Uninstall"
+msgstr "Eirigh as Feistiú"
-#: ../../standalone/drakTermServ:1
-#, 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."
-msgstr ""
-
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-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."
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
+msgid "Internet Connection Sharing"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Polish"
-msgstr "Polainnais"
-
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Mandrake Online"
-msgstr "Bainteach le hIdirlíon"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by webdav.\n"
+#: ../../standalone/drakgw_.c:114
+msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid ", multi-function device on a parallel port"
-msgstr "Óstainm Printéir"
+#: ../../standalone/drakgw_.c:125
+msgid "Internet Connection Sharing currently enabled"
+msgstr ""
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/drakgw_.c:126
msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-#: ../../network/network.pm:1 ../../standalone/drakconnect:1
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "Netmask"
+#: ../../standalone/drakgw_.c:130
+msgid "disable"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
-#, fuzzy, c-format
-msgid "No hard drives found"
-msgstr "Printéir áitiúl"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "2 buttons"
-msgstr "2 cnaipí"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech CC Series"
-msgstr "Luchóg Logitech CC"
-
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "What kind is your ISDN connection?"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "dismiss"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Label"
-msgstr "Lipéad"
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Save on floppy"
-msgstr "Sabháil ar dhiosca flapach"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Check open ports"
-msgstr "Pointe taca dublach %s"
+#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
+msgid "reconfigure"
+msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Edit selected printer"
-msgstr "Scrios ciú"
+#: ../../standalone/drakgw_.c:133
+msgid "Disabling servers..."
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer auto-detection"
-msgstr "Scríos Printéir"
+#: ../../standalone/drakgw_.c:142
+#, fuzzy
+msgid "Internet connection sharing is now disabled."
+msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../network/isdn.pm:1
-#, fuzzy, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Cén sort carta ISDN atá uait?"
+#: ../../standalone/drakgw_.c:149
+msgid "Internet Connection Sharing currently disabled"
+msgstr ""
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:150
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."
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Msec"
-msgstr "Luchóg"
-
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
+#: ../../standalone/drakgw_.c:154
+msgid "enable"
msgstr ""
-#: ../../harddrake/v4l.pm:1
-#, c-format
-msgid "Number of capture buffers:"
+#: ../../standalone/drakgw_.c:161
+msgid "Enabling servers..."
msgstr ""
-#: ../../interactive/stdio.pm:1
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Do rogha? (gnás %s)"
+#: ../../standalone/drakgw_.c:166
+#, fuzzy
+msgid "Internet connection sharing is now enabled."
+msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:183
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"
+"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"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
"\n"
-"Click on \"%s\" if you wish to select partitions that will be checked for\n"
-"bad blocks on the disk."
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "French"
-msgstr "Francaigh"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTY)"
-msgstr "Ceichís (QWERTY)"
-
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Allow X Window connections"
-msgstr "Cumraigh nasc ghréasán"
-
-#: ../../standalone/service_harddrake:1
-#, fuzzy, c-format
-msgid "Hardware probing in progress"
-msgstr "Pointe taca dublach %s"
-
-#: ../../network/shorewall.pm:1 ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Net Device"
-msgstr "Freastalaí Printéir"
-
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
-#, c-format
-msgid "Summary"
-msgstr "Coimriú"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/drakgw_.c:211
#, 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 "Interface %s (using module %s)"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
+#: ../../standalone/drakgw_.c:212
#, fuzzy, c-format
-msgid "Next"
-msgstr "Teacs"
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr ""
+msgid "Interface %s"
+msgstr "suimiúil"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
+#: ../../standalone/drakgw_.c:220
+msgid "No network adapter on your system!"
+msgstr "Níl aon gaireas ghreasán san do chorás!"
-#: ../../lang.pm:1
-#, c-format
-msgid "Puerto Rico"
+#: ../../standalone/drakgw_.c:221
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
msgstr ""
-#: ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp)"
+#: ../../standalone/drakgw_.c:227
+msgid "Network interface"
+msgstr "Cláréadan Gréasán"
-#: ../../standalone/drakautoinst:1
+#: ../../standalone/drakgw_.c:228
#, c-format
msgid ""
+"There is only one configured network adapter on your system:\n"
"\n"
-"Welcome.\n"
+"%s\n"
"\n"
-"The parameters of the auto-install are available in the sections on the left"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/draksplash:1
-#, c-format
+#: ../../standalone/drakgw_.c:235
msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
msgstr ""
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Telnet server"
-msgstr "X freastalaí"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr ""
+#: ../../standalone/drakgw_.c:261
+#, fuzzy
+msgid "Network interface already configured"
+msgstr "Níl aon scáileán cumraithe"
-#: ../../install_any.pm:1
+#: ../../standalone/drakgw_.c:262
#, c-format
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
+"Warning, the network adapter (%s) is already configured.\n"
"\n"
+"Do you want an automatic re-configuration?\n"
"\n"
-"Do you really want to remove these packages?\n"
+"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Anguilla"
+#: ../../standalone/drakgw_.c:267
+#, fuzzy
+msgid "Automatic reconfiguration"
+msgstr "Cumraigh ADSL"
+
+#: ../../standalone/drakgw_.c:267
+msgid "No (experts only)"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "NIS Domain"
-msgstr "Fearannas NIS"
+#: ../../standalone/drakgw_.c:268
+#, fuzzy
+msgid "Show current interface configuration"
+msgstr "Cumraigh Idirlíon"
-# AQ
-#: ../../lang.pm:1
-#, c-format
-msgid "Antarctica"
-msgstr "an tAntartasch"
+#: ../../standalone/drakgw_.c:269
+#, fuzzy
+msgid "Current interface configuration"
+msgstr "Cumraigh Idirlíon"
-#: ../../standalone/drakbackup:1
+#: ../../standalone/drakgw_.c:270
#, c-format
msgid ""
+"Current configuration of `%s':\n"
"\n"
-"- User Files:\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
-msgid "Mount options"
-msgstr "Roghachais modúil:"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Jamaica"
-msgstr "Iamáice"
-
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/drakgw_.c:283
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_gtk.pm:1
-#, c-format
-msgid "Please wait, preparing installation..."
-msgstr "Fan tamall, ag ullmhaigh feistiú"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Czech (QWERTZ)"
-msgstr "Ceichís (QWERTZ)"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "Track network card id (useful for laptops)"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The port number should be an integer!"
-msgstr ""
-
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "You must choose an image file first!"
-msgstr "Gaireas Printéir (URI)"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Restore from Hard Disk."
-msgstr "Aisig ó dhiosca flapach"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Add to LVM"
-msgstr "Cur le LVM"
-
-#: ../../network/network.pm:1
-#, c-format
-msgid "DNS server"
-msgstr "freastalaí DNS"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Trinidad and Tobago"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "LPD and LPRng do not support IPP printers.\n"
+"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"
+"Else, I can reconfigure your interface and (re)configure a DHCP server for "
+"you.\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Host name or IP."
-msgstr "ÓstAinm"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_Edit"
-msgstr "Eagar"
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "simple"
-msgstr "simplí"
-
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Clear all"
-msgstr "Glan gach ceann"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "No test pages"
-msgstr ""
+#: ../../standalone/drakgw_.c:290
+#, fuzzy
+msgid "Local Network adress"
+msgstr "ní fuaireathas cárta gréasánú"
-#: ../../lang.pm:1
-#, c-format
-msgid "Falkland Islands (Malvinas)"
+#: ../../standalone/drakgw_.c:294
+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/drakconnect:1
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
+#: ../../standalone/drakgw_.c:300
+#, fuzzy
+msgid "(This) DHCP Server IP"
+msgstr "IP freastalaí SMP"
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Boot disk creation"
-msgstr "Trialaigh an cumraíocht"
+#: ../../standalone/drakgw_.c:301
+#, fuzzy
+msgid "The DNS Server IP"
+msgstr "IP freastalaí SMP"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Monday"
-msgstr "Luain"
+#: ../../standalone/drakgw_.c:302
+#, fuzzy
+msgid "The internal domain name"
+msgstr "Gan Printéir"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Unknown model"
+#: ../../standalone/drakgw_.c:303
+msgid "The DHCP start range"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
+#: ../../standalone/drakgw_.c:304
+msgid "The DHCP end range"
msgstr ""
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "authentication"
-msgstr "Deimniú"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup Now"
-msgstr "Socraigh córas chomhad"
-
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_File"
-msgstr "/_Comhad"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+#: ../../standalone/drakgw_.c:305
+msgid "The default lease (in seconds)"
msgstr ""
-#: ../../services.pm:1
-#, 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."
+#: ../../standalone/drakgw_.c:306
+msgid "The maximum lease (in seconds)"
msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Editable"
-msgstr "Table"
-
-#: ../../network/ethernet.pm:1
-#, fuzzy, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
-msgstr "Cén rann a bhfuil tú ag iarraidh úsáid mar rann fréamhach"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Tamil (ISCII-layout)"
+#: ../../standalone/drakgw_.c:307
+msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Mayotte"
+#: ../../standalone/drakgw_.c:314
+msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../security/help.pm:1
+#: ../../standalone/drakgw_.c:325
#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
+msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "%d KB\n"
-msgstr "Méid: %d KB\n"
+#: ../../standalone/drakgw_.c:335
+#, fuzzy
+msgid "Configuring..."
+msgstr "Ag cumraigh IDE"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Creating auto install floppy..."
+#: ../../standalone/drakgw_.c:336
+msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Searching for scanners ..."
-msgstr "Printéir áitiúl"
-
-#: ../../lang.pm:1
+#: ../../standalone/drakgw_.c:372
#, fuzzy, c-format
-msgid "Russia"
-msgstr "Ruislís"
-
-#: ../../steps.pm:1
-#, fuzzy, c-format
-msgid "Partitioning"
-msgstr "Printéir"
-
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid "ethernet card(s) detected"
-msgstr ""
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Syslog"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Can't create catalog!"
-msgstr ""
+msgid "Problems installing package %s"
+msgstr "Ag feistiál pacáiste %s"
-#: ../advertising/11-mnf.pl:1
-#, c-format
+#: ../../standalone/drakgw_.c:505
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 ""
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "Not enough free space for auto-allocating"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Set root password"
-msgstr "Socraigh pasfhocal root"
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Enable IP spoofing protection"
+"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 ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid ""
-"There's no free driver for your sound card (%s), but there's a proprietary "
-"driver at \"%s\"."
+#: ../../standalone/drakgw_.c:523
+msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Group :"
-msgstr "Grupa na hOibre"
-
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
+#: ../../standalone/drakgw_.c:524
+msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Internet connection configuration"
+#: ../../standalone/drakgw_.c:525
+#, fuzzy
+msgid "No Internet Connection Sharing has ever been configured."
msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../security/help.pm:1
-#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
-msgstr ""
+#: ../../standalone/drakgw_.c:531
+#, fuzzy
+msgid "Internet connection sharing configuration"
+msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../network/isdn.pm:1
+#: ../../standalone/drakgw_.c:539
#, c-format
-msgid "USB"
+msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid "Scanning for TV channels"
-msgstr ""
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "group"
+msgstr "Grupa na hOibre"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid "Kernel:"
+#: ../../standalone/drakperm_.c:36
+msgid "path"
msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "/_About..."
-msgstr "/Cúidiú/_Faoi..."
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Bengali"
-msgstr ""
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "permissions"
+msgstr "rann %s"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Preference: "
-msgstr "Tosaíocht: "
+#: ../../standalone/drakperm_.c:36
+#, fuzzy
+msgid "user"
+msgstr "Ainm úsáideora"
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services: %d activated for %d registered"
+#: ../../standalone/drakperm_.c:43
+msgid "Up"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Create a bootdisk"
-msgstr "Cruthaigh an diosca "
+#: ../../standalone/drakperm_.c:44
+#, fuzzy
+msgid "delete"
+msgstr "Scríos"
-#: ../../lang.pm:1
-#, c-format
-msgid "Solomon Islands"
+#: ../../standalone/drakperm_.c:45
+msgid "edit"
msgstr ""
-#: ../../standalone/mousedrake:1
-#, fuzzy, c-format
-msgid "Please test your mouse:"
-msgstr "Teastáil an luchóg, le do thoil"
-
-#: ../../modules/interactive.pm:1
-#, c-format
-msgid "(module %s)"
-msgstr "(modíl %s)"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Workgroup"
-msgstr "Grupa na hOibre"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer host name or IP"
-msgstr "Óstainm Printéir"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "down"
+#: ../../standalone/drakperm_.c:46
+#, fuzzy
+msgid "Down"
msgstr "Críochnithe"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Host Path or Module"
-msgstr ""
+#: ../../standalone/drakperm_.c:47
+#, fuzzy
+msgid "add a rule"
+msgstr "Suimigh Modúil"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
+#: ../../standalone/drakperm_.c:48
+msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Show current interface configuration"
-msgstr "Cumraigh Idirlíon"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Add Printer"
-msgstr "Printéir"
-
-#: ../../security/help.pm:1
-#, c-format
+#: ../../standalone/drakperm_.c:51
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."
+"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 ""
-#: ../../help.pm:1
-#, c-format
-msgid "Development"
-msgstr "Forbairt"
-
-#: ../../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 ../../standalone/drakbackup:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Done"
-msgstr "Críochnithe"
-
-#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
-msgid "Web Server"
-msgstr "Freastalaí"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Chile"
-msgstr "An tSile"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tDo not include System Files\n"
-msgstr ""
+#: ../../standalone/drakperm_.c:56
+#, fuzzy
+msgid "Add a new rule at the end"
+msgstr "Gan Printéir"
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/drakperm_.c:57
+msgid "Edit curent rule"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, 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!"
+#: ../../standalone/drakperm_.c:58
+msgid "Up selected rule one level"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "(already added %s)"
+#: ../../standalone/drakperm_.c:59
+msgid "Down selected rule one level"
msgstr ""
-#: ../../any.pm:1
-#, fuzzy, c-format
-msgid "Bootloader installation in progress"
-msgstr "Feistiú cód tosnaithe"
+#: ../../standalone/drakperm_.c:60
+#, fuzzy
+msgid "Delete selected rule"
+msgstr "Scrios ciú"
-#: ../../printer/main.pm:1
-#, c-format
-msgid ", using command %s"
+#: ../../standalone/drakperm_.c:224
+msgid "browse"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Alt and Shift keys simultaneously"
+#: ../../standalone/drakperm_.c:231
+msgid "Current user"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Flags"
+#: ../../standalone/drakperm_.c:236
+#, fuzzy
+msgid "Permissions"
+msgstr "Leagan: %s\n"
+
+#: ../../standalone/drakperm_.c:237
+msgid "Path"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Add/Del Users"
-msgstr "Suimigh úsáideoir"
+#: ../../standalone/drakperm_.c:238
+#, fuzzy
+msgid "Property"
+msgstr "Poirt"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Host/network IP address missing."
+#: ../../standalone/drakperm_.c:240
+msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "weekly"
+#: ../../standalone/drakperm_.c:241
+msgid "Set-UID"
msgstr ""
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Settings"
-msgstr "Roghnachais"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The entered host/network IP is not correct.\n"
+#: ../../standalone/drakperm_.c:242
+msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Create/Transfer backup keys for SSH"
+#: ../../standalone/drakperm_.c:296
+msgid ""
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Here is the full list of available countries"
+#: ../../standalone/drakperm_.c:297
+msgid "Use owner id for execution"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Alternative test page (A4)"
+#: ../../standalone/drakperm_.c:298
+msgid "Use group id for execution"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, 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."
+#: ../../standalone/drakperm_.c:299
+msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, c-format
-msgid "Wait please"
-msgstr ""
+#: ../../standalone/drakperm_.c:304
+#, fuzzy
+msgid "Path selection"
+msgstr "Roghnú Grúpa Pacáistí"
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "PAP"
-msgstr "PAP"
+#: ../../standalone/drakperm_.c:350
+#, fuzzy
+msgid "user :"
+msgstr "Ainm úsáideora"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Backup user files"
-msgstr "Droch comhad chúltaca"
+#: ../../standalone/drakperm_.c:352
+#, fuzzy
+msgid "group :"
+msgstr "Grupa na hOibre"
-#: ../../diskdrake/dav.pm:1
-#, fuzzy, c-format
-msgid "New"
-msgstr "nua"
+#: ../../standalone/draksound_.c:46
+#, fuzzy
+msgid "No Sound Card detected!"
+msgstr "Cumraigh ADSL"
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/draksound_.c:47
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"
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\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"
+"You can visit our hardware database at:\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 ""
-
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Name resolution spoofing protection"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/draksound_.c:54
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."
+"\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 ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Load from floppy"
-msgstr "Aisig ó dhiosca flapach"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "The following printer was auto-detected. "
-msgstr "Níl aon gaireas ghreasán san do chorás!"
-
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Uses command %s"
-msgstr "Poirt"
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Boot Floppy"
+#: ../../standalone/draksplash_.c:21
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Norwegian"
-msgstr "Ioruais"
+#: ../../standalone/draksplash_.c:67
+#, fuzzy
+msgid "first step creation"
+msgstr "Trialaigh an cumraíocht"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Searching for new scanners ..."
-msgstr "Printéir áitiúl"
+#: ../../standalone/draksplash_.c:70
+#, fuzzy
+msgid "final resolution"
+msgstr "Réiteach"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Apache World Wide Web Server"
-msgstr ""
+#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
+#, fuzzy
+msgid "choose image file"
+msgstr "Roghnaigh gníomh"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
-msgstr ""
+#: ../../standalone/draksplash_.c:72
+#, fuzzy
+msgid "Theme name"
+msgstr "Comh. ainm"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "select path to restore (instead of /)"
-msgstr "Cén cinéal luchóg atá agat?"
+#: ../../standalone/draksplash_.c:77
+msgid "Browse"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
+#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
+#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Cumraigh seirbhisí"
-#: ../../lang.pm:1
-#, c-format
-msgid "Georgia"
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "China"
-msgstr "An tSín"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "Cén cinéal luchóg atá agat?"
-
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Reading data of installed printers..."
-msgstr "Printéir áitiúl"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid " Erase Now "
-msgstr ""
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "server"
-msgstr "Freastalaí"
-
-#: ../../install_any.pm:1
-#, fuzzy, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Cur isteach diosca sa dioscthiomant %s"
-
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
+#: ../../standalone/draksplash_.c:90
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Trialaigh an cumraíocht"
-
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-# FIXME
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Fáile go GRUB, an roghnóir Choráis "
-
-#: ../../bootloader.pm:1
-#, c-format
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "SCSI controllers"
+#: ../../standalone/draksplash_.c:91
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
+#: ../../standalone/draksplash_.c:92
+msgid "text width"
msgstr ""
-#: ../../standalone/drakedm:1
-#, c-format
-msgid "Choosing a display manager"
+#: ../../standalone/draksplash_.c:93
+msgid "text box height"
msgstr ""
-#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, fuzzy, c-format
-msgid "Zeroconf Host name"
-msgstr "ÓstAinm"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Custom setup/crontab entry:"
+#: ../../standalone/draksplash_.c:94
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
-#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
+#: ../../standalone/draksplash_.c:95
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Configure CUPS printing system"
-msgstr "Cumraigh gréasánú"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Ecuador"
-msgstr "Eacuadór"
-
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Add an item"
-msgstr "Suimigh úsáideoir"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printers on this machine are available to other computers"
+#: ../../standalone/draksplash_.c:96
+msgid "the width of the progress bar"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "China (Hong Kong)"
+#: ../../standalone/draksplash_.c:97
+msgid "the heigth of the progress bar"
msgstr ""
-#: ../../standalone/drakautoinst:1
-#, c-format
-msgid "I can't find needed image file `%s'."
+#: ../../standalone/draksplash_.c:98
+msgid "the color of the progress bar"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
+#: ../../standalone/draksplash_.c:113
+#, fuzzy
+msgid "Preview"
+msgstr "feist"
-#: ../../network/drakfirewall.pm:1
-#, 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."
-msgstr ""
+#: ../../standalone/draksplash_.c:115
+#, fuzzy
+msgid "Save theme"
+msgstr "Feistigh córas"
-#: ../../any.pm:1
-#, c-format
-msgid "Shell"
-msgstr "Blaosc"
+#: ../../standalone/draksplash_.c:116
+#, fuzzy
+msgid "Choose color"
+msgstr "Roghnaigh scáileán"
-#: ../../lang.pm:1
-#, c-format
-msgid "Sao Tome and Principe"
+#: ../../standalone/draksplash_.c:119
+msgid "Display logo on Console"
msgstr ""
-#: ../../network/isdn.pm:1
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Can't login using username %s (bad password?)"
+#: ../../standalone/draksplash_.c:120
+msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../keyboard.pm:1
+#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
#, c-format
-msgid "Azerbaidjani (latin)"
+msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Package not installed"
-msgstr "Eirigh as Feistiú"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "American Samoa"
+#: ../../standalone/draksplash_.c:205
+msgid "saving Bootsplash theme..."
msgstr ""
-#: ../advertising/12-mdkexpert.pl:1
-#, fuzzy, c-format
-msgid "Become a MandrakeExpert"
-msgstr "Saineolaí"
-
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Protocol"
-msgstr "Portráid"
+#: ../../standalone/draksplash_.c:428
+#, fuzzy
+msgid "ProgressBar color selection"
+msgstr "Nasc Printéir"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Copy fonts on your system"
-msgstr "Níl aon gaireas ghreasán san do chorás!"
+#: ../../standalone/draksplash_.c:449
+#, fuzzy
+msgid "You must choose an image file first!"
+msgstr "Gaireas Printéir (URI)"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "Harddrake help"
-msgstr ""
+#: ../../standalone/draksplash_.c:458
+#, fuzzy
+msgid "Generating preview ..."
+msgstr "Scríos Printéir"
-#: ../../standalone/harddrake2:1
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:506
#, c-format
-msgid "Bogomips"
+msgid "%s BootSplash (%s) preview"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Cumraigh Idirlíon"
-
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/drakxtv_.c:46
msgid ""
+"XawTV isn't installed!\n"
"\n"
-" DrakBackup Report Details\n"
"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Restore all backups"
+#: ../../standalone/drakxtv_.c:63
+msgid "Canada (cable)"
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid " on parallel port #%s"
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (broadcast)"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid ""
-"Set the password minimum length and minimum number of digit and minimum "
-"number of capitalized letters."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable)"
msgstr ""
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check open ports."
+#: ../../standalone/drakxtv_.c:63
+msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "This may take a moment to erase the media."
+#: ../../standalone/drakxtv_.c:64
+msgid "China (broadcast)"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "You can't select/unselect this package"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../harddrake/sound.pm:1 ../../network/modem.pm:1
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid "Warning"
-msgstr "Rabhadh"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Other Files:\n"
+#: ../../standalone/drakxtv_.c:64
+msgid "Japan (cable)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remote host name"
-msgstr "ÓstAinm"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "East Europe"
+msgstr "Eorap"
-#: ../../any.pm:1
-#, c-format
-msgid "access to X programs"
-msgstr ""
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Fraince"
-#: ../../install_interactive.pm:1
-#, fuzzy, c-format
-msgid "Computing the size of the Windows partition"
-msgstr "Cruthaigh rann nua"
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "Ireland"
+msgstr "Athlódaigh"
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Refresh"
-msgstr ""
+#: ../../standalone/drakxtv_.c:65
+#, fuzzy
+msgid "West Europe"
+msgstr "Eorap"
-#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
-#: ../../standalone/drakxtv:1
-#, fuzzy, c-format
-msgid "Italy"
-msgstr "Iodálais"
+#: ../../standalone/drakxtv_.c:66
+#, fuzzy
+msgid "Australia"
+msgstr "srathach"
-#: ../../lang.pm:1
-#, c-format
-msgid "Cayman Islands"
+#: ../../standalone/drakxtv_.c:66
+msgid "Newzealand"
msgstr ""
-#: ../../fs.pm:1 ../../partition_table.pm:1
-#, c-format
-msgid "error unmounting %s: %s"
+#: ../../standalone/drakxtv_.c:67
+msgid "South Africa"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Name of printer"
-msgstr "Ainm Printéir"
-
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "disable"
+#: ../../standalone/drakxtv_.c:68
+msgid "Argentina"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Do it!"
+#: ../../standalone/drakxtv_.c:69
+msgid "Australian Optus cable TV"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "%s not responding"
+#: ../../standalone/drakxtv_.c:102
+msgid ""
+"Please,\n"
+"type in your tv norm and country"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Select model manually"
-msgstr "Scríos Printéir"
+#: ../../standalone/drakxtv_.c:104
+msgid "TV norm:"
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Format"
-msgstr "Formáidigh"
+#: ../../standalone/drakxtv_.c:105
+msgid "Area:"
+msgstr ""
-#: ../../network/adsl.pm:1
-#, 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'"
+#: ../../standalone/drakxtv_.c:109
+msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Various"
+#: ../../standalone/drakxtv_.c:116
+msgid "Scanning for TV channels"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Zip"
+#: ../../standalone/drakxtv_.c:120
+msgid "There was an error while scanning for TV channels"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Alt key"
+#: ../../standalone/drakxtv_.c:121
+msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Load setting"
-msgstr "Ag formáidiú"
+#: ../../standalone/drakxtv_.c:124
+msgid "Have a nice day!"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please "
-"choose the correct model from the list."
+#: ../../standalone/drakxtv_.c:125
+msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "Set selected printer as the default printer"
+#: ../../standalone/drakxtv_.c:147
+msgid "No TV Card detected!"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/drakxtv_.c:148
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"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../printer/data.pm:1
-#, c-format
-msgid "PDQ"
+#: ../../standalone/harddrake2_.c:17
+msgid "Alternative drivers"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Albanian"
+#: ../../standalone/harddrake2_.c:18
+msgid "the list of alternative drivers for this sound card"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Lithuania"
+#: ../../standalone/harddrake2_.c:20
+msgid "Bus"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Compact"
-msgstr "Compact"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Detected model: %s %s"
-msgstr "Pointe taca dublach %s"
-
-#: ../advertising/03-software.pl:1
-#, c-format
-msgid "MandrakeSoft has selected the best software for you"
+#: ../../standalone/harddrake2_.c:21
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Local files"
-msgstr "Chomaid Áitiúl"
-
-#: ../../pkgs.pm:1
-#, c-format
-msgid "maybe"
-msgstr "b'fhéidir"
+#: ../../standalone/harddrake2_.c:22
+#, fuzzy
+msgid "Channel"
+msgstr "Cealaigh"
-#: ../../lang.pm:1
-#, c-format
-msgid "Panama"
+#: ../../standalone/harddrake2_.c:22
+msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Can't open %s!"
-msgstr "Earráid ag oscailt %s do scríobh: %s"
-
-#: ../../Xconfig/various.pm:1
-#, 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?"
+#: ../../standalone/harddrake2_.c:23
+msgid "Bogomips"
msgstr ""
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
-#, c-format
-msgid "Monitor"
-msgstr "Scáileán"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:23
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"
+"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
+"\t to initialize a timer counter. Its result is stored as bogomips as a way "
+"to \"benchmark\" the cpu."
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "65 thousand colors (16 bits)"
-msgstr "65 míle dath (16 giotáin)"
+#: ../../standalone/harddrake2_.c:26
+#, fuzzy
+msgid "Bus identification"
+msgstr "Deimniú"
-#: ../../standalone/drakbackup:1
-#, c-format
+#: ../../standalone/harddrake2_.c:27
msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
+"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
+"PCI/USB ids"
msgstr ""
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Remove fonts on your system"
-msgstr "Níl aon gaireas ghreasán san do chorás!"
+#: ../../standalone/harddrake2_.c:29
+msgid "Location on the bus"
+msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
+#: ../../standalone/harddrake2_.c:30
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."
+"- 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 ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "Graphical interface at startup"
-msgstr "X ag tús"
+#: ../../standalone/harddrake2_.c:33
+#, fuzzy
+msgid "Cache size"
+msgstr "méid smután"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid " adsl"
+#: ../../standalone/harddrake2_.c:33
+msgid "Size of the (second level) cpu cache"
msgstr ""
-#: ../../raid.pm:1
-#, c-format
-msgid "Not enough partitions for RAID level %d\n"
+#: ../../standalone/harddrake2_.c:34
+msgid "Coma bug:"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid "format of floppies supported by the drive"
+#: ../../standalone/harddrake2_.c:34
+msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
msgstr ""
-#: ../../network/tools.pm:1
-#, c-format
-msgid "Firmware copy failed, file %s not found"
+#: ../../standalone/harddrake2_.c:35
+msgid "Cpuid family"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "local config: true"
-msgstr "Cumraigh"
-
-#: ../../printer/printerdrake.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:35
+msgid "Family of the cpu (eg: 6 for i686 class)"
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
-#, fuzzy, c-format
-msgid "Connected"
-msgstr "Ainm Nasc"
+#: ../../standalone/harddrake2_.c:36
+#, fuzzy
+msgid "Cpuid level"
+msgstr "Roghnaigh liebhéal slándáil"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Macedonian"
+#: ../../standalone/harddrake2_.c:36
+msgid "Information level that can be obtained through the cpuid instruction"
msgstr ""
-# ML
-#: ../../lang.pm:1
-#, c-format
-msgid "Mali"
-msgstr "Mali"
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "Bridges and system controllers"
+#: ../../standalone/harddrake2_.c:37
+msgid "Frequency (MHz)"
msgstr ""
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "/File/_Save"
-msgstr "/Comhad/_Sábháil"
-
-#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
-msgid "No details"
-msgstr "Sonraí"
+#: ../../standalone/harddrake2_.c:37
+msgid ""
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
+msgstr ""
-#: ../../pkgs.pm:1
-#, c-format
-msgid "very nice"
-msgstr "an-dheas"
+#: ../../standalone/harddrake2_.c:38
+msgid "This field describes the device"
+msgstr ""
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "Preview"
-msgstr "feist"
+#: ../../standalone/harddrake2_.c:39
+#, fuzzy
+msgid "Old device file"
+msgstr "Roghnaigh Comhad"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Remote Control"
-msgstr "Scríos Printéir"
+#: ../../standalone/harddrake2_.c:40
+msgid "old static device name used in dev package"
+msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Please select media for backup..."
-msgstr "Roghnaight do theangam le do thoil."
+#: ../../standalone/harddrake2_.c:41
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gaireas na hInneal Geata"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Wrong email"
+#: ../../standalone/harddrake2_.c:42
+msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Freastalaí XFree86: %s\n"
+#: ../../standalone/harddrake2_.c:43
+#, fuzzy
+msgid "Module"
+msgstr "Luchóg"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Allow Thin Clients"
+#: ../../standalone/harddrake2_.c:43
+msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Georgian (\"Russian\" layout)"
+#: ../../standalone/harddrake2_.c:44
+msgid "CPU flags reported by the kernel"
msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
-#: ../../standalone/printerdrake:1
-#, c-format
-msgid "/_Options"
-msgstr "/_Roghanna"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Your printer model"
-msgstr "Scríos Printéir"
-
-#: ../../any.pm:1
-#, 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)."
+#: ../../standalone/harddrake2_.c:44
+msgid "Flags"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
+#: ../../standalone/harddrake2_.c:45
+msgid "Fdiv bug"
msgstr ""
-#: ../../standalone/drakpxe:1
-#, c-format
+#: ../../standalone/harddrake2_.c:46
msgid ""
-"No CD or DVD image found, please copy the installation program and rpm files."
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the attended precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-#: ../advertising/04-configuration.pl:1
-#, fuzzy, c-format
-msgid "Mandrake's multipurpose configuration tool"
-msgstr "Cumraigh Idirlíon"
-
-#: ../../standalone/drakbackup:1 ../../standalone/logdrake:1
-#, fuzzy, c-format
-msgid "Save"
-msgstr "Clár Tosnú"
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is unsupported"
+#: ../../standalone/harddrake2_.c:49
+msgid "Is FPU present"
msgstr ""
-#: ../../services.pm:1
-#, c-format
-msgid "Load the drivers for your usb devices."
+#: ../../standalone/harddrake2_.c:49
+msgid "yes means the processor has an arithmetic coprocessor"
msgstr ""
-#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
-msgid "Disk"
-msgstr "Danmharghais"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Enter a printer device URI"
-msgstr "Gaireas Printéir (URI)"
-
-#: ../advertising/01-thanks.pl:1
-#, 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."
+#: ../../standalone/harddrake2_.c:50
+msgid "Does FPU have an irq vector"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Israel"
-msgstr "Iosrael"
-
-# fr
-#: ../../lang.pm:1
-#, c-format
-msgid "French Guiana"
-msgstr "Fraincis"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "default:LTR"
-msgstr "default:LTR"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "A command line must be entered!"
+#: ../../standalone/harddrake2_.c:50
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Select user manually"
+#: ../../standalone/harddrake2_.c:51
+msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Transfer printer configuration"
-msgstr "Cumraigh Idirlíon"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
+#: ../../standalone/harddrake2_.c:51
+msgid "F00f bug"
+msgstr ""
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check additions/removals of suid root files"
+#: ../../standalone/harddrake2_.c:52
+msgid "Halt bug"
msgstr ""
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:53
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."
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "%s (Port %s)"
-msgstr "Poirt"
+#: ../../standalone/harddrake2_.c:55
+#, fuzzy
+msgid "Floppy format"
+msgstr "Formáidigh"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use network connection to backup"
-msgstr "Droch comhad chúltaca"
+#: ../../standalone/harddrake2_.c:55
+msgid "Format of floppies the drive accept"
+msgstr ""
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "Kernel version"
-msgstr "leagan `kernel'"
+#: ../../standalone/harddrake2_.c:56
+#, fuzzy
+msgid "Level"
+msgstr "leibhéal"
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:56
+msgid "Sub generation of the cpu"
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1
-#, c-format
-msgid "Accept user"
+#: ../../standalone/harddrake2_.c:57
+msgid "Media class"
msgstr ""
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
-#, c-format
-msgid "Server"
-msgstr "Freastalaí"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Left Shift key"
+#: ../../standalone/harddrake2_.c:57
+msgid "class of hardware device"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid " local network"
-msgstr "ní fuaireathas cárta gréasánú"
+#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
+#, fuzzy
+msgid "Model"
+msgstr "Luchóg"
-#: ../../interactive/stdio.pm:1
-#, c-format
-msgid "Bad choice, try again\n"
-msgstr "Droch rogha, aththrialaigh\n"
+#: ../../standalone/harddrake2_.c:58
+#, fuzzy
+msgid "hard disk model"
+msgstr "Cuimhne Charta (DMA)"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Syslog reports to console 12"
+#: ../../standalone/harddrake2_.c:59
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, fuzzy, c-format
-msgid "Search new servers"
-msgstr "freastalaí DNS"
+#: ../../standalone/harddrake2_.c:60
+#, fuzzy
+msgid "Model name"
+msgstr "Ainm Modúl"
-#: ../../lang.pm:1
-#, c-format
-msgid "Heard and McDonald Islands"
+#: ../../standalone/harddrake2_.c:60
+msgid "Official vendor name of the cpu"
msgstr ""
-#: ../../harddrake/sound.pm:1
-#, c-format
-msgid "No alternative driver"
-msgstr ""
+#: ../../standalone/harddrake2_.c:61
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 cnaipí"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Toggle to expert mode"
-msgstr ""
+#: ../../standalone/harddrake2_.c:62
+#, fuzzy
+msgid "Name"
+msgstr "Ainm: "
-#: ../../printer/cups.pm:1
-#, c-format
-msgid "(on this machine)"
-msgstr ""
+#: ../../standalone/harddrake2_.c:63
+#, fuzzy
+msgid "network printer port"
+msgstr "Printéir Gréasán (lpd)"
-#: ../../network/network.pm:1
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
+#: ../../standalone/harddrake2_.c:64
+msgid "Processor ID"
msgstr ""
-#: ../../network/modem.pm:1
-#, c-format
-msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
+#: ../../standalone/harddrake2_.c:64
+msgid "the number of the processor"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "Looking at packages already installed..."
-msgstr "Roghnaigh pacáistí ..."
+#: ../../standalone/harddrake2_.c:65
+#, fuzzy
+msgid "Model stepping"
+msgstr "Ag formáidiú"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Use Differential Backups"
+#: ../../standalone/harddrake2_.c:65
+msgid "Stepping of the cpu (sub model (generation) number)"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Driver"
-msgstr "Tiománaí"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+#: ../../standalone/harddrake2_.c:66
+msgid "The type of bus on which the mouse is connected"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "DVD-R device"
-msgstr "feist"
-
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printer on remote lpd server"
-msgstr "Scrios freastalaí lpd"
-
-#: ../../standalone/drakfont:1
-#, 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."
+#: ../../standalone/harddrake2_.c:67
+msgid "the vendor name of the device"
msgstr ""
-#: ../../help.pm:1
-#, 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."
+#: ../../standalone/harddrake2_.c:68
+msgid "the vendor name of the processor"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Wednesday"
-msgstr "Ceádaoin"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Germany"
-msgstr "Gearmáinis"
-
-#: ../../crypto.pm:1 ../../lang.pm:1
-#, fuzzy, c-format
-msgid "Austria"
-msgstr "srathach"
-
-#: ../../mouse.pm:1
-#, c-format
-msgid "No mouse"
-msgstr "Luchóg ar bith"
-
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Choose your CD/DVD media size (MB)"
-msgstr "Cén leagan amach atá ar d'eocharchlársa"
+#: ../../standalone/harddrake2_.c:82
+#, fuzzy
+msgid "/_Quit"
+msgstr "Éalaigh"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "Check permissions of files in the users' home"
-msgstr ""
+#: ../../standalone/harddrake2_.c:83
+#, fuzzy
+msgid "/Autodetect _printers"
+msgstr "Scríos Printéir"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
+#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
+#: ../../standalone/logdrake_.c:81
+msgid "/_Options"
+msgstr "/_Roghanna"
-#: ../../ugtk2.pm:1
-#, c-format
-msgid "Collapse Tree"
-msgstr ""
+#: ../../standalone/harddrake2_.c:85
+#, fuzzy
+msgid "/Autodetect _modems"
+msgstr "Scríos Printéir"
-#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
-msgid "Auto Install Configurator"
-msgstr "Cumraíocht Iar-feistú"
+#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
+#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
+#: ../../standalone/logdrake_.c:83
+msgid "/_Help"
+msgstr "/C_úidiú"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure networking"
-msgstr "Cumraigh gréasánú"
+#: ../../standalone/harddrake2_.c:89
+#, fuzzy
+msgid "/_Help..."
+msgstr "/C_úidiú"
-#: ../../any.pm:1
-#, c-format
-msgid "Where do you want to install the bootloader?"
+#: ../../standalone/harddrake2_.c:92
+msgid "Harddrake help"
msgstr ""
-#: ../../help.pm:1
-#, c-format
+#: ../../standalone/harddrake2_.c:93
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"
+"Description of the fields:\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 ""
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
+#: ../../standalone/harddrake2_.c:96
+msgid ""
+"Once you've selected a device, you'll be able to see explanations on fields "
+"displayed on the right frame (\"Information\")"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "tape"
-msgstr "Cineál"
-
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP client"
-msgstr ""
+#: ../../standalone/harddrake2_.c:96
+#, fuzzy
+msgid "Select a device !"
+msgstr "Roghnaigh carta grafachach"
-#: ../../security/l10n.pm:1
-#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr ""
+#: ../../standalone/harddrake2_.c:100
+msgid "/_Report Bug"
+msgstr "/_Tuairaisc Fabht"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Luchóg Logitech (srathach, séan cinéal C7)"
+#: ../../standalone/harddrake2_.c:102
+#, fuzzy
+msgid "/_About..."
+msgstr "/Cúidiú/_Faoi..."
-#: ../../partition_table.pm:1
-#, c-format
-msgid "Restoring from file %s failed: %s"
+#: ../../standalone/harddrake2_.c:104
+msgid "About Harddrake"
msgstr ""
-#: ../../fsedit.pm:1
-#, fuzzy, c-format
+#: ../../standalone/harddrake2_.c:105
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"
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
msgstr ""
-"Ni féidir liom an tábla rainn a léamh, tá máchaillí ann :(\n"
-"Leanfaidh mé orm ag cealú droch rainn"
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Find Package"
-msgstr "%d pacáistí"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Are you sure that you want to set up printing on this machine?\n"
+#: ../../standalone/harddrake2_.c:106
+msgid "Author:"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "New devfs device"
-msgstr "Gaireas na hInneal Geata"
+#: ../../standalone/harddrake2_.c:113
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Pointe taca dublach %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "ERROR: Cannot spawn %s."
-msgstr ""
+#: ../../standalone/harddrake2_.c:119
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "leagan `kernel'"
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Boot Style Configuration"
-msgstr "Cumraíocht Stíl Tosnú"
+#: ../../standalone/harddrake2_.c:126
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Leámh an t-eolais crua-earra"
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid "Automatic time synchronization"
-msgstr "Cumraigh ADSL"
+#: ../../standalone/harddrake2_.c:129
+#, fuzzy
+msgid "Information"
+msgstr "Taispeán Eolas"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup files not found at %s."
-msgstr ""
+#: ../../standalone/harddrake2_.c:131
+#, fuzzy
+msgid "Configure module"
+msgstr "Cumraigh luchóg"
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Armenian (phonetic)"
+#: ../../standalone/harddrake2_.c:137
+msgid "Run config tool"
msgstr ""
-#: ../../harddrake/v4l.pm:1
+#: ../../standalone/harddrake2_.c:143
#, fuzzy, c-format
-msgid "Card model:"
-msgstr "Cuimhne Charta (DMA)"
+msgid "Running \"%s\" ..."
+msgstr "Scríos Printéir"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "Thin Client"
+#: ../../standalone/harddrake2_.c:159
+msgid ""
+"Click on a device in the left tree in order to get its information displayed "
+"here."
msgstr ""
-#: ../advertising/01-thanks.pl:1
-#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
+#: ../../standalone/harddrake2_.c:231
+msgid "primary"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Start Server"
-msgstr "Freastalaí NIS"
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Turkmenistan"
-msgstr ""
+#: ../../standalone/harddrake2_.c:231
+#, fuzzy
+msgid "secondary"
+msgstr "%d siocand"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "All remote machines"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect modems"
msgstr "Scríos Printéir"
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Install themes"
-msgstr "Feistigh córas"
-
-#: ../../help.pm:1
-#, c-format
-msgid "Espanol"
-msgstr ""
-
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Preparing installation"
-msgstr "Ag Ullmhaigh feistiú"
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Edit selected host/network"
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
-msgid "Add User -->"
-msgstr "Suimigh úsáideoir"
+#: ../../standalone/harddrake2_.c:260
+#, fuzzy
+msgid "/Autodetect printers"
+msgstr "Scríos Printéir"
-# na
-#: ../../lang.pm:1
-#, c-format
-msgid "Nauru"
-msgstr "Nárúis"
+#: ../../standalone/harddrake2_.c:261
+#, fuzzy
+msgid "/Options"
+msgstr "/_Roghanna"
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "True Type fonts installation"
-msgstr "Ag Ullmhaigh feistiú"
+#: ../../standalone/keyboarddrake_.c:26
+msgid "Please, choose your keyboard layout."
+msgstr "Cén leagan amach atá ar d'eocharchlársa"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Auto-detect printers connected directly to the local network"
+#: ../../standalone/keyboarddrake_.c:35
+msgid "Do you want the BackSpace to return Delete in console?"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "LAN configuration"
-msgstr "Cumraigh ADSL"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "hard disk model"
-msgstr "Cuimhne Charta (DMA)"
+#: ../../standalone/livedrake_.c:18
+msgid "Change Cd-Rom"
+msgstr "Athraigh CD-ROM"
-#: ../../standalone/drakTermServ:1
-#, c-format
+#: ../../standalone/livedrake_.c:19
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 ""
-
-#: ../../fsedit.pm:1
-#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Get Windows Fonts"
+#: ../../standalone/livedrake_.c:29
+msgid "Unable to start live upgrade !!!\n"
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
-
-#: ../../standalone/drakclock:1
-#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
+#: ../../standalone/localedrake_.c:34
+msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Iranian"
-msgstr ""
+#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
+msgid "logdrake"
+msgstr "logdrake"
-#: ../../lang.pm:1
-#, c-format
-msgid "Croatia"
+#: ../../standalone/logdrake_.c:68
+msgid "Show only for the selected day"
msgstr ""
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "Gateway:"
-msgstr "Inneal Geata:"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Add server"
-msgstr "Suimigh úsáideoir"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Remote printer name"
-msgstr "Scríos Printéir"
-
-#: ../advertising/10-security.pl:1
-#, 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."
-msgstr ""
+#: ../../standalone/logdrake_.c:75
+msgid "/File/_New"
+msgstr "/Comhad/_Nua"
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Device: "
-msgstr "Gaireas: "
+#: ../../standalone/logdrake_.c:75
+msgid "<control>N"
+msgstr "<control>N"
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
-#, fuzzy, c-format
-msgid "Printerdrake"
-msgstr "Clódóir"
+#: ../../standalone/logdrake_.c:76
+msgid "/File/_Open"
+msgstr "/Comhad/_Oscail"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "License agreement"
-msgstr "Ceadúnas"
+#: ../../standalone/logdrake_.c:76
+msgid "<control>O"
+msgstr "<control>O"
-#: ../../standalone/draksec:1
-#, fuzzy, c-format
-msgid "System Options"
-msgstr "Roghachais modúil:"
+#: ../../standalone/logdrake_.c:77
+msgid "/File/_Save"
+msgstr "/Comhad/_Sábháil"
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid "Please choose the desired security level"
-msgstr "Roghnaigh liebhéal slándáil"
+#: ../../standalone/logdrake_.c:77
+msgid "<control>S"
+msgstr "<control>S"
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "This host is already in the list, it cannot be added again.\n"
-msgstr ""
+#: ../../standalone/logdrake_.c:78
+msgid "/File/Save _As"
+msgstr "/Comhad/Sábháil _Mar"
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid ", USB printer"
-msgstr "Gan Printéir"
+#: ../../standalone/logdrake_.c:79
+msgid "/File/-"
+msgstr "/Comhad/-"
-#: ../../standalone/drakfloppy:1
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
+#: ../../standalone/logdrake_.c:82
+msgid "/Options/Test"
+msgstr "/Roghnachais/Teastáil"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"Incremental backups only save files that have changed or are new since the "
-"last backup."
-msgstr ""
+#: ../../standalone/logdrake_.c:84
+msgid "/Help/_About..."
+msgstr "/Cúidiú/_Faoi..."
-#: ../../standalone/drakfont:1
-#, fuzzy, c-format
-msgid "Choose the applications that will support the fonts:"
-msgstr "Roghnaigh na ranna atá le formáidiú"
+#: ../../standalone/logdrake_.c:145
+#, fuzzy
+msgid "User"
+msgstr "Ainm úsáideora"
-#: ../../steps.pm:1
-#, c-format
-msgid "Configure X"
-msgstr "Cumraigh X"
+#: ../../standalone/logdrake_.c:146
+#, fuzzy
+msgid "Messages"
+msgstr "scéalaí"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "hd"
+#: ../../standalone/logdrake_.c:147
+msgid "Syslog"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Turkish (traditional \"F\" model)"
+#: ../../standalone/logdrake_.c:148
+msgid "Mandrake Tools Explanations"
msgstr ""
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "Congratulations!"
-msgstr "Comhghairdeas!"
+#: ../../standalone/logdrake_.c:151
+msgid "search"
+msgstr "faigh"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Use owner id for execution"
+#: ../../standalone/logdrake_.c:161
+msgid "A tool to monitor your logs"
msgstr ""
-#: ../../security/l10n.pm:1
-#, fuzzy, c-format
-msgid "Allow remote root login"
-msgstr "Scríos Printéir"
-
-#: ../../standalone/drakperm:1
-#, fuzzy, c-format
-msgid "Down"
-msgstr "Críochnithe"
+#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
+msgid "Settings"
+msgstr "Roghnachais"
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Raw printer (No driver)"
+#: ../../standalone/logdrake_.c:167
+msgid "matching"
msgstr ""
-#: ../../network/modem.pm:1
-#, fuzzy, c-format
-msgid "Install rpm"
-msgstr "Feistiú"
-
-#: ../../printer/printerdrake.pm:1
-#, 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"
+#: ../../standalone/logdrake_.c:168
+msgid "but not matching"
msgstr ""
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "Time remaining "
-msgstr "Am fagtha "
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "UK keyboard"
-msgstr "Méarchlár UK"
-
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
-#: ../../diskdrake/smbnfs_gtk.pm:1
-#, c-format
-msgid "Unmount"
-msgstr ""
+#: ../../standalone/logdrake_.c:172
+msgid "Choose file"
+msgstr "Tóg comhad"
-#: ../../mouse.pm:1
-#, fuzzy, c-format
-msgid "Microsoft Explorer"
-msgstr "Microsoft IntelliMouse"
+#: ../../standalone/logdrake_.c:181
+msgid "Calendar"
+msgstr "Feilire"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
+#: ../../standalone/logdrake_.c:191
+msgid "Content of the file"
msgstr ""
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Please wait, detecting and configuring devices..."
-msgstr "Roghnaigh liebhéal slándáil"
-
-#: ../../keyboard.pm:1
-#, c-format
-msgid "German (no dead keys)"
-msgstr "Gearmáinis (gach meachlár marbh)"
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\tSend mail to %s\n"
+#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
+msgid "Mail alert"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/logdrake_.c:245
#, c-format
-msgid "Transferring %s..."
-msgstr ""
+msgid "please wait, parsing file: %s"
+msgstr "Ag Parsáil an comhad %s, fan tamall"
-#: ../../Xconfig/resolution_and_depth.pm:1
-#, c-format
-msgid "32 thousand colors (15 bits)"
-msgstr "32 míle dath (15 giotáin)"
+#: ../../standalone/logdrake_.c:392
+#, fuzzy
+msgid "Mail alert configuration"
+msgstr "Cumraigh Lilo/Grub"
-#: ../../any.pm:1
-#, c-format
+#: ../../standalone/logdrake_.c:393
msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
+"Welcome to the mail configuration utility.\n"
+"\n"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Gambia"
+#: ../../standalone/logdrake_.c:400
+msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Mandrake Control Center"
-msgstr "Bainteach le hIdirlíon"
-
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Reboot"
-msgstr "Root"
-
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Multi-function device"
-msgstr ""
+#: ../../standalone/logdrake_.c:401
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Ainm Fearannas"
-#: ../../network/drakfirewall.pm:1
-#, 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."
-msgstr ""
+#: ../../standalone/logdrake_.c:402
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Freastalaí NIS"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Tape \n"
-msgstr ""
+#: ../../standalone/logdrake_.c:403
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Freastalaí Printéir"
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-"No browser is installed on your system, Please install one if you want to "
-"browse the help system"
-msgstr ""
+#: ../../standalone/logdrake_.c:404
+#, fuzzy
+msgid "Samba Server"
+msgstr "Freastalaí NIS"
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Remember this password"
-msgstr "Gan pasfhocal"
+#: ../../standalone/logdrake_.c:405
+#, fuzzy
+msgid "SSH Server"
+msgstr "Freastalaí NIS"
-#: ../../install_steps_gtk.pm:1
-#, c-format
-msgid "due to unsatisfied %s"
-msgstr ""
+#: ../../standalone/logdrake_.c:406
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Seirbishí"
-#: ../../standalone/drakgw:1
-#, fuzzy, c-format
-msgid "Internet Connection Sharing is now enabled."
-msgstr "Nasc na hIdirlíon agus cumraíocht"
+#: ../../standalone/logdrake_.c:407
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Freastalaí Printéir"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "\t-Network by SSH.\n"
-msgstr ""
+#: ../../standalone/logdrake_.c:414
+#, fuzzy
+msgid "service setting"
+msgstr "suimiúil"
-#: ../../printer/printerdrake.pm:1
-#, c-format
+#: ../../standalone/logdrake_.c:415
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."
+"You will receive an alert if one of the selected services is no more running"
msgstr ""
-#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
-msgid " cable"
-msgstr "Table"
+#: ../../standalone/logdrake_.c:428
+#, fuzzy
+msgid "load setting"
+msgstr "Ag formáidiú"
-#: ../../help.pm:1 ../../install_interactive.pm:1
-#, c-format
-msgid "Use the free space on the Windows partition"
+#: ../../standalone/logdrake_.c:429
+msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "%s found on %s, configure it automatically?"
-msgstr "An dteastaìonn uait printéir a chumrú?"
+#: ../../standalone/logdrake_.c:444
+#, fuzzy
+msgid "alert configuration"
+msgstr "Cumraigh Idirlíon"
-#: ../../Xconfig/various.pm:1
-#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Tiománaí XFree86: %s\n"
+#: ../../standalone/logdrake_.c:445
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Aththrialaigh"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr ""
+#: ../../standalone/logdrake_.c:486
+msgid "Save as.."
+msgstr "Sábháil mar..."
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, c-format
-msgid "Choose the packages you want to install"
-msgstr ""
+#: ../../standalone/mousedrake_.c:37
+msgid "Please, choose the type of your mouse."
+msgstr "Cén cinéal luchóg atá agat?"
-#: ../../lang.pm:1
-#, c-format
-msgid "Papua New Guinea"
+#: ../../standalone/mousedrake_.c:50
+msgid "Emulate third button?"
msgstr ""
-#: ../../printer/main.pm:1
-#, fuzzy, c-format
-msgid "Multi-function device on a parallel port"
-msgstr "Óstainm Printéir"
+#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Cumraíocht Gréasánú"
-#: ../../../move/tree/mdk_totem:1
-#, fuzzy, c-format
-msgid "Busy files"
-msgstr "Droch comhad chúltaca"
+#: ../../standalone/net_monitor_.c:96
+msgid "Profile "
+msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Serbian (cyrillic)"
+#: ../../standalone/net_monitor_.c:99
+msgid "Statistics"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Enter the directory where backups are stored"
-msgstr "Teastáil an luchóg, le do thoil"
+#: ../../standalone/net_monitor_.c:103
+#, fuzzy
+msgid "Sending Speed:"
+msgstr "Sabháil i gcomhad"
-#: ../../standalone/draksplash:1
-#, c-format
-msgid "Make kernel message quiet by default"
+#: ../../standalone/net_monitor_.c:104
+msgid "Receiving Speed:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr ""
+#: ../../standalone/net_monitor_.c:106
+#, fuzzy
+msgid "Connection Time: "
+msgstr "Athraigh cineál ranna"
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "The DHCP end range"
+#: ../../standalone/net_monitor_.c:113
+msgid "Logs"
msgstr ""
-#: ../../any.pm:1
-#, c-format
-msgid "Creating bootdisk..."
-msgstr "Ag Cruthaigh diosca thosnaithe"
-
-#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#: ../../standalone/net_monitor_.c:147
+#, fuzzy
msgid "Wait please, testing your connection..."
msgstr "Cumraigh nasc ghréasán"
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Bringing down the network"
-msgstr "Ag dúnadh síos an ghreasán"
-
-#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Login ID"
-msgstr "Ainm Login:"
-
-#: ../../services.pm:1
-#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
-msgstr ""
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Athraigh cineál ranna"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid "DHCP Client"
+#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
+msgid "Disconnecting from Internet "
msgstr ""
-#: ../../standalone/harddrake2:1
-#, 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"
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnection from Internet failed."
msgstr ""
-#: ../../standalone/drakgw:1
-#, c-format
-msgid "dismiss"
+#: ../../standalone/net_monitor_.c:223
+msgid "Disconnection from Internet complete."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Ag dúnadh síos an ghreasán"
-
-#: ../../standalone/drakfloppy:1
-#, fuzzy, c-format
-msgid "omit raid modules"
-msgstr "Scríos modúil"
+#: ../../standalone/net_monitor_.c:225
+#, fuzzy
+msgid "Connection complete."
+msgstr "Athraigh cineál ranna"
-#: ../../services.pm:1
-#, c-format
+#: ../../standalone/net_monitor_.c:226
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)."
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Irish"
-msgstr ""
+#: ../../standalone/net_monitor_.c:330
+#, fuzzy
+msgid "Color configuration"
+msgstr "Cumraigh Idirlíon"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Sunday"
-msgstr "Domhnaigh"
+#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
+msgid "sent: "
+msgstr ""
-#: ../../standalone/drakconnect:1
-#, fuzzy, c-format
-msgid "Internet Connection Configuration"
-msgstr "Nasc na hIdirlíon agus cumraíocht"
+#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
+msgid "received: "
+msgstr ""
-#: ../../modules/parameters.pm:1
-#, c-format
-msgid "comma separated numbers"
+#: ../../standalone/net_monitor_.c:397
+msgid "average"
msgstr ""
-#: ../../standalone/harddrake2:1
-#, 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\")"
+#: ../../standalone/net_monitor_.c:400
+#, fuzzy
+msgid "Local measure"
+msgstr "Chomaid Áitiúl"
+
+#: ../../standalone/net_monitor_.c:432
+msgid "transmitted"
msgstr ""
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Move selected rule up one level"
+#: ../../standalone/net_monitor_.c:433
+msgid "received"
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#: ../../standalone/net_monitor_.c:453
msgid ""
-"The following scanner\n"
-"\n"
-"%s\n"
-"is available on your system.\n"
-msgstr "Níl aon gaireas ghreasán san do chorás!"
+"Warning, another internet connection has been detected, maybe using your "
+"network"
+msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/net_monitor_.c:459
#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
+msgid "Connect %s"
+msgstr "Lean"
-#: ../../install_interactive.pm:1
+#: ../../standalone/net_monitor_.c:459
#, fuzzy, c-format
-msgid "I can't find any room for installing"
-msgstr "Ní féidir liom rann eile a cur isteach"
+msgid "Disconnect %s"
+msgstr "Cumraigh nasc ghréasán"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Default printer"
-msgstr "Printéir áitiúl"
+#: ../../standalone/printerdrake_.c:47
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Scríos Printéir"
-#: ../../network/netconnect.pm:1
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+#: ../../standalone/scannerdrake_.c:39
+msgid "Detecting devices ..."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "Modify RAID"
-msgstr "Athraigh RAID"
-
-#: ../../network/isdn.pm:1
-#, 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."
+#: ../../standalone/scannerdrake_.c:39
+msgid "Test ports"
msgstr ""
-#: ../../any.pm:1
+#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
+#: ../../standalone/scannerdrake_.c:79
#, c-format
-msgid "Add user"
-msgstr "Suimigh úsáideoir"
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
-#: ../../diskdrake/interactive.pm:1
-#, c-format
-msgid "RAID-disks %s\n"
-msgstr "Dioscaí RAID %s\n"
+#: ../../standalone/scannerdrake_.c:54
+#, fuzzy, c-format
+msgid "%s found on %s, configure it?"
+msgstr "An dteastaìonn uait printéir a chumrú?"
-#: ../../lang.pm:1
+#: ../../standalone/scannerdrake_.c:57
#, c-format
-msgid "Liberia"
+msgid "%s is not in the scanner database, configure it manually?"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: ../../standalone/scannerdrake_.c:63
+#, fuzzy
+msgid "Select a scanner"
+msgstr "Roghnaigh carta grafachach"
+
+#: ../../standalone/scannerdrake_.c:91
#, c-format
-msgid ""
-"Could not install the packages needed to set up a scanner with Scannerdrake."
+msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/drakgw:1
+#: ../../standalone/scannerdrake_.c:105
#, 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"
+"Scannerdrake was not able to detect your %s scanner.\n"
+"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../steps.pm:1
-#, c-format
-msgid "Choose your keyboard"
-msgstr "Roghnaigh mhéarchlár"
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Format partitions"
-msgstr "Formáidigh ranna"
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Automatic correction of CUPS configuration"
-msgstr "Cumraigh ADSL"
-
-#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
-msgid "Running \"%s\" ..."
-msgstr "Scríos Printéir"
+#: ../../standalone/scannerdrake_.c:107
+#, fuzzy
+msgid "choose device"
+msgstr "Gaireas bootáil"
-#: ../../harddrake/v4l.pm:1
+#: ../../standalone/scannerdrake_.c:113
#, c-format
-msgid "enable radio support"
+msgid ""
+"This %s scanner must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
msgstr ""
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Scanner sharing to hosts: "
-msgstr "Printéir"
-
-#: ../../diskdrake/interactive.pm:1
+#: ../../standalone/scannerdrake_.c:118
#, c-format
-msgid "Loopback file name: %s"
+msgid ""
+"Your %s scanner has been configured.\n"
+"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"applications menu."
msgstr ""
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Please choose the printer to which the print jobs should go."
-msgstr "Cén cinéal luchóg atá agat?"
-
-#: ../../printer/printerdrake.pm:1
+#: ../../standalone/service_harddrake_.c:44
#, c-format
-msgid "Do not transfer printers"
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../help.pm:1
-#, c-format
-msgid "Delay before booting the default image"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
-msgid "Use Hard Disk to backup"
-msgstr "Droch comhad chúltaca"
+#: ../../standalone/service_harddrake_.c:64
+#, fuzzy
+msgid "Hardware probing in progress"
+msgstr "Pointe taca dublach %s"
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
-#: ../../standalone/drakboot:1
-#, c-format
-msgid "Configure"
-msgstr "Cumraigh"
+#: ../../steps.pm_.c:14
+msgid "Choose your language"
+msgstr "Roghnaigh do theanga"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Scannerdrake"
-msgstr "Roghnaigh carta grafachach"
+#: ../../steps.pm_.c:15
+msgid "Select installation class"
+msgstr "Roghnaigh rang feistiú"
-#: ../../standalone/drakconnect:1
-#, c-format
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
+#: ../../steps.pm_.c:16
+msgid "Hard drive detection"
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup Users"
-msgstr ""
+#: ../../steps.pm_.c:17
+msgid "Configure mouse"
+msgstr "Cumraigh luchóg"
-#: ../../network/network.pm:1
-#, c-format
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
-msgstr ""
+#: ../../steps.pm_.c:18
+msgid "Choose your keyboard"
+msgstr "Roghnaigh mhéarchlár"
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid "Select Printer Spooler"
-msgstr "Nasc Printéir"
+#: ../../steps.pm_.c:19
+msgid "Security"
+msgstr "Slándáil"
-#: ../../standalone/drakboot:1
-#, fuzzy, c-format
-msgid "Create new theme"
-msgstr "Cruthaigh rann nua"
+#: ../../steps.pm_.c:20
+msgid "Setup filesystems"
+msgstr "Socraigh córas chomhad"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Mandrake Tools Explanation"
-msgstr ""
+#: ../../steps.pm_.c:21
+msgid "Format partitions"
+msgstr "Formáidigh ranna"
-#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
-msgid "No image found"
-msgstr "Printéir áitiúl"
+#: ../../steps.pm_.c:22
+msgid "Choose packages to install"
+msgstr "Roghnaigh pacáistí ..."
-#: ../../install_steps.pm:1
-#, 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"
-msgstr ""
+#: ../../steps.pm_.c:23
+msgid "Install system"
+msgstr "Feistigh córas"
-#: ../advertising/06-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
-msgstr ""
+#: ../../steps.pm_.c:25
+msgid "Add a user"
+msgstr "Suimigh úsáideoir"
-#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
-msgid "Detected model: %s"
-msgstr "Pointe taca dublach %s"
+#: ../../steps.pm_.c:26
+msgid "Configure networking"
+msgstr "Cumraigh gréasánú"
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "\"%s\" is not a valid email!"
-msgstr ""
+#: ../../steps.pm_.c:28
+msgid "Configure services"
+msgstr "Cumraigh seirbhisí"
-#: ../../standalone/drakedm:1
-#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
-msgstr ""
+#: ../../steps.pm_.c:29
+msgid "Install bootloader"
+msgstr "Feistigh cód tosnaithe"
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, run the daily security checks."
-msgstr ""
+#: ../../steps.pm_.c:31
+msgid "Create a bootdisk"
+msgstr "Cruthaigh an diosca "
-#: ../../lang.pm:1
-#, c-format
-msgid "Azerbaijan"
-msgstr ""
+#: ../../steps.pm_.c:33
+msgid "Configure X"
+msgstr "Cumraigh X"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Device name to use for backup"
-msgstr ""
+#: ../../steps.pm_.c:34
+#, fuzzy
+msgid "Install system updates"
+msgstr "Feistigh córas"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "No tape in %s!"
+#: ../../steps.pm_.c:35
+msgid "Exit install"
+msgstr "Eirigh as Feistiú"
+
+#: ../../ugtk.pm_.c:636
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../standalone/drakhelp:1
-#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome "
-"frontend)\n"
+#: ../../ugtk2.pm_.c:711
+msgid "utopia 25"
msgstr ""
-#: ../../keyboard.pm:1
-#, c-format
-msgid "Dvorak (US)"
-msgstr "Dvorak (Meiriceá)"
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "Greasan/FTP"
-#: ../../standalone/harddrake2:1
-#, c-format
-msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Network Computer (client)"
+msgstr "Printéir Gréasán (lpd)"
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "How is the printer connected?"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
msgstr ""
-#: ../../security/level.pm:1
-#, fuzzy, c-format
-msgid "Security level"
-msgstr "Roghnaigh liebhéal slándáil"
+#: ../../share/compssUsers:999
+msgid "Office"
+msgstr "Oifig"
-#: ../../standalone/draksplash:1
-#, fuzzy, c-format
-msgid "final resolution"
-msgstr "Réiteach"
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Stáisiún Gnome"
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
-#, c-format
-msgid "Services"
-msgstr "Seirbishí"
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
-#: ../../../move/move.pm:1
-#, fuzzy, c-format
-msgid "Auto configuration"
-msgstr "Cumraigh Idirlíon"
+#: ../../share/compssUsers:999
+msgid "Workstation"
+msgstr "Stáisiún Oibre"
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "4 MB"
-msgstr "4 MB"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Stáisiún Oibre"
+msgid "Domain Name and Network Information Server"
+msgstr ""
#: ../../share/compssUsers:999
msgid ""
@@ -18167,44 +12910,41 @@ msgid ""
msgstr ""
#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Stáisiún Cluichí"
-
-#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr ""
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia station"
-msgstr "Stáisiún Ilmheánach"
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
+msgid "Books and Howto's on Linux and Free Software"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Stáisiún Idirlíon"
+msgid "KDE Workstation"
+msgstr "Stáisiún KDE"
#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (mutt, tin..) and to browse the "
-"Web"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Network Computer (client)"
-msgstr "Printéir Gréasán (lpd)"
+msgid "Multimedia - Video"
+msgstr "Ilmheánach"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "cumraíocht"
+msgid "Database"
+msgstr ""
+
+#: ../../share/compssUsers:999
+msgid "PostgreSQL or MySQL database server"
+msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
@@ -18213,24 +12953,38 @@ msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Scientific Workstation"
-msgstr "Stáisiún Oibre"
+msgid "Multimedia - Sound"
+msgstr "Ilmheánach"
#: ../../share/compssUsers:999
-msgid "Scientific applications such as gnuplot"
-msgstr ""
+#, fuzzy
+msgid "Documentation"
+msgstr "Áit"
#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
+msgid "Postfix mail server, Inn news server"
msgstr ""
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "Stáisiún KDE"
+msgid "Internet station"
+msgstr "Stáisiún Idirlíon"
+
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Multimedia station"
+msgstr "Stáisiún Ilmheánach"
+
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "cumraíocht"
+
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
#: ../../share/compssUsers:999
msgid ""
@@ -18239,72 +12993,89 @@ msgid ""
msgstr ""
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Stáisiún Gnome"
+msgid "Graphical Environment"
+msgstr ""
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
+msgid "Development"
+msgstr "Forbairt"
+
+#: ../../share/compssUsers:999
+msgid "Apache, Pro-ftpd"
+msgstr "Apache, Pro-ftpd"
+
+#: ../../share/compssUsers:999
+msgid "Tools to create and burn CD's"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Deasc Graphaicí Eile"
+msgid "Office Workstation"
+msgstr "Stáisiún Oibre"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+
+#: ../../share/compssUsers:999
+msgid "Graphics programs such as The Gimp"
msgstr ""
#: ../../share/compssUsers:999
+msgid "DNS/NIS "
+msgstr "DNS/NIS "
+
+#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Documentation"
-msgstr "Áit"
+msgid "Network Computer server"
+msgstr "Cláréadan Gréasán"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr ""
+msgid "Mail/Groupware/News"
+msgstr "Post/Nuacht/Groupware"
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr ""
+msgid "Game station"
+msgstr "Stáisiún Cluichí"
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
+msgid "Video players and editors"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Greasan/FTP"
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "Ilmheánach"
#: ../../share/compssUsers:999
-msgid "Apache, Pro-ftpd"
-msgstr "Apache, Pro-ftpd"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Mail"
-msgstr "An Bhrasail"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Postfix mail server"
-msgstr "Freastalaí Printéir"
+msgid "Personal Finance"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "Database"
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
msgstr ""
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
+msgid "Clients for different protocols including ssh"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
+msgid "LSB"
msgstr ""
#: ../../share/compssUsers:999
@@ -18312,150 +13083,82 @@ msgid "Internet gateway"
msgstr ""
#: ../../share/compssUsers:999
-msgid "DNS/NIS "
-msgstr "DNS/NIS "
-
-#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
+msgid "Sound and video playing/editing programs"
msgstr ""
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Network Computer server"
-msgstr "Cláréadan Gréasán"
+msgid "Other Graphical Desktops"
+msgstr "Deasc Graphaicí Eile"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
+msgid "Editors, shells, file tools, terminals"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Set of tools to read and send mail and news and to browse the Web"
+msgid "Programs to manage your finance, such as gnucash"
msgstr ""
-#, fuzzy
-#~ msgid "Internet Connection Sharing configuration"
-#~ msgstr "Nasc na hIdirlíon agus cumraíocht"
+#: ../../share/compssUsers:999
+msgid "Personal Information Management"
+msgstr ""
+#: ../../share/compssUsers:999
#, fuzzy
-#~ msgid "No Internet Connection Sharing has ever been configured."
-#~ msgstr "Nasc na hIdirlíon agus cumraíocht"
-
-#~ msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--27-*-100-100-p-*-iso8859-*,*-r-*"
+msgid "Multimedia - CD Burning"
+msgstr "Ilmheánach"
+#: ../../share/compssUsers:999
#, fuzzy
-#~ msgid "Hostname configuration"
-#~ msgstr "Cumraigh Idirlíon"
+msgid "Scientific Workstation"
+msgstr "Stáisiún Oibre"
#, fuzzy
-#~ msgid "Hostname"
-#~ msgstr "ÓstAinm"
+#~ msgid "can not open /etc/inittab for reading: %s"
+#~ msgstr "Earráid ag oscailt %s do scríobh: %s"
#, fuzzy
-#~ msgid "Remote Printers"
-#~ msgstr "Scríos Printéir"
+#~ msgid "cpu number "
+#~ msgstr "Uimhir fón"
#, fuzzy
-#~ msgid "Level 1"
-#~ msgstr "leibhéal"
+#~ msgid "Proxy configuration"
+#~ msgstr "Cumraigh seach-freastalaí"
#, fuzzy
-#~ msgid "Level 2"
-#~ msgstr "leibhéal"
+#~ msgid "port"
+#~ msgstr "Poirt"
-#, fuzzy
-#~ msgid "Level 3"
-#~ msgstr "leibhéal"
+#~ msgid "login"
+#~ msgstr "Logann"
-#, fuzzy
-#~ msgid "Level 4"
-#~ msgstr "leibhéal"
+#~ msgid "password"
+#~ msgstr "Pasfhocal"
#, fuzzy
-#~ msgid "Level 5"
-#~ msgstr "leibhéal"
+#~ msgid "re-type password"
+#~ msgstr "Gan pasfhocal"
#, fuzzy
-#~ msgid "Insert floppy and press %s"
-#~ msgstr "Cur isteach diosca sa dioscthiomant %s"
-
-#~ msgid "Load"
-#~ msgstr "Lód"
+#~ msgid "The passwords don't match. Try again!"
+#~ msgstr "Ní mar a chéile na pasfhocail"
#, fuzzy
-#~ msgid "Bad Ip"
-#~ msgstr "I/A Carta"
-
-#~ msgid "Output"
-#~ msgstr "Aschur"
-
-#~ msgid "Expert Area"
-#~ msgstr "Roghnachais Saineoiaí"
-
-#~ msgid "Wizard..."
-#~ msgstr "Draíodoir..."
+#~ msgid "Can't write file %s"
+#~ msgstr "Earráidh ag scríobh comhad %s"
-#~ msgid "Name: %s\n"
-#~ msgstr "Ainm: %s\n"
+#~ msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-#~ msgid "Russian (Yawerty)"
-#~ msgstr "Rúisis (Yawerty)"
+#~ msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#~ msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-#~ msgid "Internet connection & configuration"
-#~ msgstr "Nasc na hIdirlíon agus cumraíocht"
-
-#~ msgid "Office"
-#~ msgstr "Oifig"
-
-#~ msgid "Games"
-#~ msgstr "Cluichí"
-
-#~ msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-#~ msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-
-#~ msgid "no network card found"
-#~ msgstr "ní fuaireathas cárta gréasánú"
-
-#~ msgid "DrakFloppy Error: %s"
-#~ msgstr "Earraidh DrakFloppy: %s"
-
-#~ msgid "Launch Aurora at boot time"
-#~ msgstr "Tosnaigh Aurora "
-
-#~ msgid "Traditional Gtk+ Monitor"
-#~ msgstr "Monatóir Tradisiúnta Gtk+"
-
-#~ msgid "Traditional Monitor"
-#~ msgstr "Scáileán Tradisiúnta"
-
-#~ msgid "NewStyle Monitor"
-#~ msgstr "Scáileán Stíl Nua"
-
-#~ msgid "Mail/Groupware/News"
-#~ msgstr "Post/Nuacht/Groupware"
-
-#~ msgid "/Options"
-#~ msgstr "/Roghanna"
+#, fuzzy
+#~ msgid "Please click on a medium"
+#~ msgstr "Roghnaigh rann le do thoil"
-#~ msgid ""
-#~ "The partition you've selected to add as root (/) is physically located "
-#~ "beyond\n"
-#~ "the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
-#~ "If you plan to use the LILO boot manager, be careful to add a /boot "
-#~ "partition"
-#~ msgstr ""
-#~ "Tá an rann atá roghnaithe agat don fréamh (/) suitithe i ndhiadh an "
-#~ "1024ú\n"
-#~ "sorcóir ar an dhiosca, agus níl aon rann /boot agat.\n"
-#~ "Má tá tú chun LILO a úsáid, beidh ort rann /boot a cruthú ar ball."
+#~ msgid "usage: drakfloppy\n"
+#~ msgstr "Úsáid: drakfloppy\n"
-#~ msgid ""
-#~ "Sorry I won't accept to create /boot so far onto the drive (on a cylinder "
-#~ "> 1024).\n"
-#~ "Either you use LILO and it won't work, or you don't use LILO and you "
-#~ "don't need /boot"
-#~ msgstr ""
-#~ "Níl mé sasta /boot a cruthú comh fada sin isteach sa diosca, (ar sorcóir "
-#~ "> 1024).\n"
-#~ "Má tá tú ag úsáid LILO ní oibróidh sé, nó níl /boot uait muna n-úsáideann "
-#~ "tú LILO"
+#, fuzzy
+#~ msgid "detected on interface %s"
+#~ msgstr "Cláréadan Gréasán"
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index dabebbae7..2cdb54ab0 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po